Skip to content

Instantly share code, notes, and snippets.

@AdamJonsson
Last active October 6, 2019 06:59
Show Gist options
  • Save AdamJonsson/1f826d8cc55619b5fc4138a8ea94fd23 to your computer and use it in GitHub Desktop.
Save AdamJonsson/1f826d8cc55619b5fc4138a8ea94fd23 to your computer and use it in GitHub Desktop.
The modial dtd and xml file for lab 3
<!-- XML DTD "mondial.dtd":
(Wolfgang May, may@informatik.uni-freiburg.de, March 2000, revised April 2009)
a hierarchical DTD for the MONDIAL database,
containing e.g.,
- scalar reference attributes (city/capital)
- multivalued reference attributes (organization/member/country)
- cross-references in both directions (organization/member/country,
country/memberships)
- a "boolean"/flag attribute: city/is_country_cap
- reference attributes with more than one target class
(river/to, references rivers, lakes, and seas) -->
<!ELEMENT mondial (country*,continent*,organization*,
sea*,river*,lake*,island*,mountain*,desert*,airport*)>
<!ELEMENT country (name+,localname?,population+,
population_growth?,infant_mortality?,
gdp_total?,gdp_agri?,gdp_ind?,gdp_serv?,inflation?,unemployment?,
(indep_date|dependent)?,government?,encompassed*,
ethnicgroup*,religion*,language*,border*,
(province+|city+))>
<!ATTLIST country car_code ID #IMPLIED
area CDATA #IMPLIED
capital IDREF #IMPLIED
memberships IDREFS #IMPLIED>
<!ELEMENT name (#PCDATA)>
<!ELEMENT localname (#PCDATA)>
<!ELEMENT area (#PCDATA)>
<!ELEMENT population (#PCDATA)>
<!-- note that population is also a subelement of city -->
<!ATTLIST population year CDATA #IMPLIED
measured CDATA #IMPLIED>
<!ELEMENT population_growth (#PCDATA)>
<!ELEMENT infant_mortality (#PCDATA)>
<!ELEMENT gdp_total (#PCDATA)>
<!ELEMENT gdp_ind (#PCDATA)>
<!ELEMENT gdp_agri (#PCDATA)>
<!ELEMENT gdp_serv (#PCDATA)>
<!ELEMENT inflation (#PCDATA)>
<!ELEMENT unemployment (#PCDATA)>
<!ELEMENT indep_date (#PCDATA)>
<!ATTLIST indep_date from CDATA #IMPLIED>
<!-- usually idref to a country, but not always (e.g. "Ottoman Empire") -->
<!ELEMENT dependent EMPTY>
<!ATTLIST dependent country IDREF #REQUIRED>
<!ELEMENT government (#PCDATA)>
<!ELEMENT encompassed EMPTY>
<!ATTLIST encompassed continent IDREF #REQUIRED
percentage CDATA #REQUIRED>
<!ELEMENT ethnicgroup (#PCDATA)>
<!ATTLIST ethnicgroup percentage CDATA #REQUIRED>
<!ELEMENT religion (#PCDATA)>
<!ATTLIST religion percentage CDATA #REQUIRED>
<!ELEMENT language (#PCDATA)>
<!ATTLIST language percentage CDATA #REQUIRED>
<!ELEMENT border EMPTY>
<!ATTLIST border country IDREF #REQUIRED
length CDATA #REQUIRED>
<!ELEMENT province (name+,localname?,area?,population*,city*)>
<!ATTLIST province id ID #REQUIRED
country IDREF #REQUIRED
capital IDREF #IMPLIED>
<!ELEMENT city (name+,localname?,latitude?,longitude?,elevation?,population*,
located_at*,located_on*)>
<!ATTLIST city id ID #REQUIRED
is_country_cap CDATA #IMPLIED
is_state_cap CDATA #IMPLIED
country IDREF #REQUIRED
province IDREF #IMPLIED>
<!ELEMENT longitude (#PCDATA)>
<!ELEMENT latitude (#PCDATA)>
<!ELEMENT elevation (#PCDATA)>
<!ELEMENT height (#PCDATA)> <!-- height of a dam -->
<!ELEMENT located_at EMPTY>
<!ATTLIST located_at watertype (river|sea|lake) #REQUIRED
river IDREFS #IMPLIED
sea IDREFS #IMPLIED
lake IDREFS #IMPLIED>
<!ELEMENT located_on EMPTY>
<!ATTLIST located_on island IDREF #REQUIRED>
<!ELEMENT organization (name,abbrev,established?,members*)>
<!ATTLIST organization id ID #REQUIRED
headq IDREF #IMPLIED>
<!ELEMENT abbrev (#PCDATA)>
<!ELEMENT established (#PCDATA)>
<!ELEMENT members EMPTY>
<!ATTLIST members type CDATA #REQUIRED
country IDREFS #REQUIRED>
<!ELEMENT continent (name,area)>
<!ATTLIST continent id ID #REQUIRED>
<!-- just as a pattern that is never used -->
<!ELEMENT geo (name+,islands?,mountains?,located*,to*,from?,
area?,length?,latitude?,longitude?,elevation?,depth?,height?,
source?,estuary?)>
<!ATTLIST geo id ID #REQUIRED
country IDREFS #IMPLIED
type NMTOKEN #IMPLIED
sea IDREFS #IMPLIED
lake IDREFS #IMPLIED
island IDREF #IMPLIED
bordering IDREFS #IMPLIED>
<!ELEMENT river (name+,located*,through*,to?,area?,length?,source?,estuary?)>
<!ATTLIST river id ID #REQUIRED
country IDREFS #REQUIRED
island IDREF #IMPLIED>
<!ELEMENT length (#PCDATA)>
<!ELEMENT depth (#PCDATA)>
<!ELEMENT to EMPTY>
<!ATTLIST to watertype (river|sea|lake) #REQUIRED
water IDREF #REQUIRED>
<!ELEMENT through EMPTY>
<!ATTLIST through lake IDREFS #REQUIRED>
<!ELEMENT source (mountains?,located*,from?,latitude?,longitude?,elevation?)>
<!ATTLIST source country IDREFS #REQUIRED>
<!ELEMENT from EMPTY>
<!ATTLIST from watertype (river|sea|lake) #REQUIRED
water IDREFS #REQUIRED>
<!-- a river may evolve from a lake or one or more rivers -->
<!ELEMENT estuary (located*,latitude?,longitude?,elevation?)>
<!ATTLIST estuary country IDREFS #REQUIRED>
<!ELEMENT located EMPTY>
<!ATTLIST located country IDREF #REQUIRED
province IDREFS #IMPLIED>
<!ELEMENT lake (name+,located*,to?,area?,latitude?,longitude?,elevation?,depth?,height?)>
<!ATTLIST lake id ID #REQUIRED
country IDREFS #REQUIRED
island IDREF #IMPLIED
salinity CDATA #IMPLIED
type (saline|acid|artificial|dam|caldera|crater|impact|naturaldam|asphalt) #IMPLIED>
<!ELEMENT sea (name+,located*,area?,depth?)>
<!ATTLIST sea id ID #REQUIRED
country IDREFS #REQUIRED
bordering IDREFS #IMPLIED>
<!ELEMENT desert (name+,located*,area?,latitude?,longitude?)>
<!ATTLIST desert id ID #REQUIRED
country IDREFS #REQUIRED
type (sand|rocks|lime|salt|ice) #IMPLIED>
<!ELEMENT island (name+,islands?,located*,area?,latitude?,longitude?,elevation?)>
<!ATTLIST island id ID #REQUIRED
sea IDREFS #IMPLIED
lake IDREF #IMPLIED
river IDREFS #IMPLIED
country IDREFS #REQUIRED
type (volcanic|coral|atoll|lime) #IMPLIED>
<!ELEMENT islands (#PCDATA)>
<!ELEMENT mountain (name+,mountains?,located*,latitude?,longitude?,elevation?)>
<!ATTLIST mountain id ID #REQUIRED
country IDREFS #REQUIRED
island IDREF #IMPLIED
type (volcanic|volcano|monolith|granite) #IMPLIED
last_eruption CDATA #IMPLIED>
<!ELEMENT mountains (#PCDATA)>
<!ELEMENT airport (name+,latitude,longitude,elevation?,gmtOffset,located_on?)>
<!ATTLIST airport iatacode NMTOKEN #REQUIRED
city IDREF #IMPLIED
country IDREF #REQUIRED>
<!ELEMENT gmtOffset (#PCDATA)>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mondial
SYSTEM "mondial.dtd">
<mondial>
<country car_code="AL"
area="28750"
capital="cty-Albania-Tirane"
memberships="org-BSEC org-CEI org-CD org-SELEC org-CE org-EAPC org-EBRD org-EITI org-FAO org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IFRCS org-IFC org-IFAD org-ILO org-IMO org-IMF org-IOC org-IOM org-ISO org-OIF org-ITU org-ITUC org-IDB org-MIGA org-NATO org-OSCE org-OPCW org-OAS org-OIC org-PCA org-UN org-UNCTAD org-UNESCO org-UNIDO org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO">
<name>Albania</name>
<population measured="est." year="1950">1214489</population>
<population measured="est." year="1960">1618829</population>
<population measured="est." year="1970">2138966</population>
<population measured="est." year="1980">2734776</population>
<population measured="est." year="1990">3446882</population>
<population year="1997">3249136</population>
<population measured="est." year="2000">3304948</population>
<population year="2001" measured="census">3069275</population>
<population year="2011" measured="census">2821977</population>
<population_growth>0.3</population_growth>
<infant_mortality>13.19</infant_mortality>
<gdp_total>12800</gdp_total>
<gdp_agri>19.5</gdp_agri>
<gdp_ind>12</gdp_ind>
<gdp_serv>68.5</gdp_serv>
<inflation>1.7</inflation>
<unemployment>16.9</unemployment>
<indep_date from="Ottoman Empire">1912-11-28</indep_date>
<government>parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="95">Albanian</ethnicgroup>
<ethnicgroup percentage="3">Greek</ethnicgroup>
<religion percentage="70">Muslim</religion>
<religion percentage="10">Roman Catholic</religion>
<religion percentage="20">Christian Orthodox</religion>
<language percentage="98.8">Albanian</language>
<language percentage="0.5">Greek</language>
<border country="GR" length="282"/>
<border country="MK" length="151"/>
<border country="MNE" length="172"/>
<border country="KOS" length="112"/>
<city id="cty-Albania-Tirane" country="AL">
<name>Tirana</name>
<name>Tirane</name>
<latitude>41.33</latitude>
<longitude>19.82</longitude>
<elevation>110</elevation>
<population year="1987">192000</population>
<population year="1990" measured="estimate">244153</population>
<population year="2011" measured="census">418495</population>
</city>
<city id="stadt-Shkoder-AL-AL" country="AL">
<name>Shkodër</name>
<latitude>42.07</latitude>
<longitude>19.5</longitude>
<elevation>13</elevation>
<population year="1987">62000</population>
<population year="2011" measured="census">77075</population>
<located_at watertype="lake" lake="lake-Skutarisee"/>
</city>
<city id="stadt-Durres-AL-AL" country="AL">
<name>Durrës</name>
<latitude>41.32</latitude>
<longitude>19.45</longitude>
<elevation>40</elevation>
<population year="1979">66200</population>
<population year="1989">82719</population>
<population year="2001">99546</population>
<population year="2011" measured="census">113249</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="stadt-Vlore-AL-AL" country="AL">
<name>Vlorë</name>
<latitude>40.47</latitude>
<longitude>19.49</longitude>
<elevation>25</elevation>
<population year="1987">56000</population>
<population year="2011" measured="census">79513</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="stadt-Elbasan-AL-AL" country="AL">
<name>Elbasan</name>
<latitude>41.1</latitude>
<longitude>20.07</longitude>
<elevation>150</elevation>
<population year="1987">53000</population>
<population year="2011" measured="census">78703</population>
</city>
<city id="stadt-Korce-AL-AL" country="AL">
<name>Korçë</name>
<latitude>40.62</latitude>
<longitude>20.77</longitude>
<elevation>850</elevation>
<population year="1987">52000</population>
<population year="2011" measured="census">51152</population>
</city>
</country>
<country car_code="GR"
area="131940"
capital="cty-Greece-Athens"
memberships="org-AG org-BIS org-BSEC org-CD org-SELEC org-CE org-EMU org-EAPC org-EBRD org-ECB org-EIB org-CERN org-ESA org-EU org-FATF org-FAO org-IGAD org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Greece</name>
<localname>Ελληνική Δημοκρατία</localname>
<population measured="census" year="1861">1096810</population>
<population measured="census" year="1870">1457894</population>
<population measured="census" year="1879">1679470</population>
<population measured="census" year="1896">2433806</population>
<population measured="census" year="1907">2631592</population>
<population measured="census" year="1920">5016889</population>
<population measured="census" year="1928">6204684</population>
<population measured="census" year="1940">7344860</population>
<population measured="census" year="1951">7632801</population>
<population measured="census" year="1961">8388553</population>
<population measured="census" year="1971">8768372</population>
<population measured="census" year="1981">9739589</population>
<population year="1991" measured="census">10217335</population>
<population measured="census" year="2001">10934097</population>
<population measured="census" year="2011">10816286</population>
<population_growth>0.01</population_growth>
<infant_mortality>4.78</infant_mortality>
<gdp_total>243300</gdp_total>
<gdp_agri>3.5</gdp_agri>
<gdp_ind>16</gdp_ind>
<gdp_serv>80.5</gdp_serv>
<inflation>-0.8</inflation>
<unemployment>27.9</unemployment>
<indep_date from="Ottoman Empire">1829-01-01</indep_date>
<government>parliamentary republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="93">Greek</ethnicgroup>
<religion percentage="98">Christian Orthodox</religion>
<religion percentage="1.3">Muslim</religion>
<language percentage="99">Greek</language>
<border country="AL" length="282"/>
<border country="MK" length="228"/>
<border country="BG" length="494"/>
<border country="TR" length="206"/>
<province id="prov-Greece-2" country="GR" capital="cty-Greece-Komotini">
<name>Anatolikis Makedonias kai Thrakis</name>
<localname>Ανατολικής Μακεδονίας και Θράκης</localname>
<area>14157</area>
<population measured="census" year="1991">570197</population>
<population year="1994">574308</population>
<population measured="census" year="2001">607162</population>
<population measured="census" year="2011">608182</population>
<city id="cty-Greece-Komotini" country="GR" province="prov-Greece-2">
<name>Komotini</name>
<latitude>41.1</latitude>
<longitude>25.42</longitude>
<elevation>45</elevation>
</city>
<city id="cty-Greece-9" country="GR" province="prov-Greece-2">
<name>Kavala</name>
<latitude>40.93</latitude>
<longitude>24.4</longitude>
<elevation>20</elevation>
<population year="1981">56705</population>
<population year="1991" measured="census">60187</population>
<population year="2001" measured="census">63774</population>
<population year="2011" measured="census">58790</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Greece-3" country="GR" capital="cty-Greece-Athens">
<name>Attikis</name>
<localname>Αττικής</localname>
<area>3808</area>
<population measured="census" year="1991">3594817</population>
<population year="1994">3522769</population>
<population measured="census" year="2001">3894573</population>
<population measured="census" year="2011">3828434</population>
<city id="cty-Greece-Athens" country="GR" province="prov-Greece-3">
<name>Athina</name>
<name>Athens</name>
<localname>Αθήνα</localname>
<latitude>37.97</latitude>
<longitude>23.72</longitude>
<elevation>70</elevation>
<population year="1981">885737</population>
<population year="1991" measured="census">816556</population>
<population year="2001" measured="census">789166</population>
<population year="2011" measured="census">664046</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Greece-4" country="GR" province="prov-Greece-3">
<name>Peiraias</name>
<name>Piräus</name>
<name>Piraeus</name>
<localname>Πειραιάς</localname>
<latitude>37.95</latitude>
<longitude>23.63</longitude>
<elevation>10</elevation>
<population year="1981">196389</population>
<population year="1991" measured="census">187399</population>
<population year="2001" measured="census">181933</population>
<population year="2011" measured="census">163688</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Greece-Peristeri" country="GR" province="prov-Greece-3">
<name>Peristeri</name>
<localname>Περιστέρι</localname>
<latitude>38.02</latitude>
<longitude>23.68</longitude>
<elevation>50</elevation>
<population year="1991" measured="census">141971</population>
<population year="2001" measured="census">146743</population>
<population year="2011" measured="census">139981</population>
</city>
<city id="cty-Greece-Acharnes" country="GR" province="prov-Greece-3">
<name>Acharnes</name>
<localname>Αχαρνές</localname>
<latitude>38.08</latitude>
<longitude>23.73</longitude>
<elevation>186</elevation>
<population year="1991" measured="census">65035</population>
<population year="2001" measured="census">82555</population>
<population year="2011" measured="census">106943</population>
</city>
</province>
<province id="prov-Greece-4" country="GR" capital="cty-Greece-5">
<name>Dytikis Elladas</name>
<localname>Δυτικής Ελλάδας</localname>
<area>11350</area>
<population measured="census" year="1991">695044</population>
<population year="1994">702027</population>
<population measured="census" year="2001">721541</population>
<population measured="census" year="2011">679796</population>
<city id="cty-Greece-5" country="GR" province="prov-Greece-4">
<name>Patra</name>
<name>Patras</name>
<localname>Πάτρα</localname>
<latitude>38.25</latitude>
<longitude>21.73</longitude>
<elevation>10</elevation>
<population year="1981">142163</population>
<population year="1991" measured="census">190463</population>
<population year="2001" measured="census">210494</population>
<population year="2011" measured="census">213984</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Greece-5" country="GR" capital="cty-Greece-Kozani">
<name>Dytikis Makedonias</name>
<localname>Δυτικής Μακεδονίας</localname>
<area>9451</area>
<population measured="census" year="1991">288495</population>
<population year="1994">292751</population>
<population measured="census" year="2001">294317</population>
<population measured="census" year="2011">283689</population>
<city id="cty-Greece-Kozani" country="GR" province="prov-Greece-5">
<name>Kozani</name>
<latitude>40.3</latitude>
<longitude>21.78</longitude>
<elevation>710</elevation>
</city>
</province>
<province id="prov-Greece-6" country="GR" capital="cty-Greece-Korfu">
<name>Ionion Nison</name>
<localname>Ιονίων Νήσων</localname>
<area>2306</area>
<population measured="census" year="1991">189338</population>
<population year="1994">191003</population>
<population measured="census" year="2001">209608</population>
<population measured="census" year="2011">207855</population>
<city id="cty-Greece-Korfu" country="GR" province="prov-Greece-6">
<name>Kerkyra</name>
<name>Korfu</name>
<name>Corfu</name>
<latitude>39.58</latitude>
<longitude>19.87</longitude>
<elevation>20</elevation>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Korfu"/>
</city>
</province>
<province id="prov-Greece-7" country="GR" capital="cty-Greece-Ioannina">
<name>Ipeiroy</name>
<localname>Ηπείρου</localname>
<area>9203</area>
<population measured="census" year="1991">327176</population>
<population measured="census" year="2001">336392</population>
<population measured="census" year="2011">336856</population>
<city id="cty-Greece-Ioannina" country="GR" province="prov-Greece-7">
<name>Ioannina</name>
<localname>Ιωαννιτών</localname>
<latitude>39.67</latitude>
<longitude>20.85</longitude>
<elevation>480</elevation>
<population year="1991" measured="census">92425</population>
<population year="2001" measured="census">103101</population>
<population year="2011" measured="census">112486</population>
</city>
</province>
<province id="prov-Greece-8" country="GR" capital="cty-Greece-Thessaloniki">
<name>Kentrikis Makedonias</name>
<localname>Κεντρικής Μακεδονίας</localname>
<area>18810</area>
<population measured="census" year="1991">1706338</population>
<population year="1994">1729581</population>
<population measured="census" year="2001">1874597</population>
<population measured="census" year="2011">1880297</population>
<city id="cty-Greece-Thessaloniki" country="GR" province="prov-Greece-8">
<name>Thessaloniki</name>
<localname>Θεσσαλονίκη</localname>
<latitude>40.65</latitude>
<longitude>22.9</longitude>
<elevation>5</elevation>
<population year="1981">406413</population>
<population year="1991" measured="census">424220</population>
<population year="2001" measured="census">397156</population>
<population year="2011" measured="census">325182</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Greece-9" country="GR" capital="cty-Greece-7">
<name>Kritis</name>
<localname>Κρήτης</localname>
<area>8335</area>
<population measured="census" year="1991">536633</population>
<population year="1994">537183</population>
<population measured="census" year="2001">594368</population>
<population measured="census" year="2011">623065</population>
<city id="cty-Greece-7" country="GR" province="prov-Greece-9">
<name>Iraklio</name>
<name>Iraklion</name>
<name>Irakleio</name>
<localname>Ηράκλειο</localname>
<latitude>35.33</latitude>
<longitude>25.13</longitude>
<elevation>10</elevation>
<population year="1981">102398</population>
<population year="1991" measured="census">146536</population>
<population year="2001" measured="census">163115</population>
<population year="2011" measured="census">173993</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Crete"/>
</city>
<city id="cty-Greece-Chania" country="GR" province="prov-Greece-9">
<name>Chania</name>
<localname>Χανίων</localname>
<latitude>35.52</latitude>
<longitude>24.02</longitude>
<elevation>20</elevation>
<population year="1991" measured="census">83712</population>
<population year="2001" measured="census">98202</population>
<population year="2011" measured="census">108642</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Crete"/>
</city>
</province>
<province id="prov-Greece-10" country="GR" capital="cty-Greece-Ermoupoli">
<name>Notioy Aigaioy</name>
<localname>Νότιου Αιγαίου</localname>
<area>5285</area>
<population measured="census" year="1991">255192</population>
<population year="1994">262522</population>
<population measured="census" year="2001">298462</population>
<population measured="census" year="2011">309015</population>
<city id="cty-Greece-Ermoupoli" country="GR" province="prov-Greece-10">
<name>Ermoupoli</name>
<latitude>37.43</latitude>
<longitude>24.92</longitude>
<elevation>20</elevation>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Syros"/>
</city>
<city id="cty-Greece-Rhodes" country="GR" province="prov-Greece-10">
<name>Rhodes</name>
<name>Rhodos</name>
<localname>Ρόδου</localname>
<latitude>36.43</latitude>
<longitude>28.22</longitude>
<elevation>26</elevation>
<population year="1991" measured="census">96159</population>
<population year="2001" measured="census">115334</population>
<population year="2011" measured="census">115490</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Rhodos"/>
</city>
</province>
<province id="prov-Greece-11" country="GR" capital="cty-Greece-Tripoli">
<name>Peloponnisos</name>
<localname>Πελοποννήσου</localname>
<area>15489</area>
<population measured="census" year="1991">573958</population>
<population measured="census" year="2001">597622</population>
<population measured="census" year="2011">577903</population>
<city id="cty-Greece-Tripoli" country="GR" province="prov-Greece-11">
<name>Tripoli</name>
<latitude>37.52</latitude>
<longitude>22.38</longitude>
<elevation>655</elevation>
</city>
</province>
<province id="prov-Greece-12" country="GR" capital="cty-Greece-Lamia">
<name>Stereas Elladas</name>
<localname>Στερεάς Ελλάδας</localname>
<area>15549</area>
<population measured="census" year="1991">548101</population>
<population measured="census" year="2001">558144</population>
<population measured="census" year="2011">547390</population>
<city id="cty-Greece-Lamia" country="GR" province="prov-Greece-12">
<name>Lamia</name>
<localname>Λαμία</localname>
<latitude>38.9</latitude>
<longitude>22.43</longitude>
<elevation>50</elevation>
<population year="2011" measured="census">75315</population>
</city>
<city id="cty-Greece-Chalkida" country="GR" province="prov-Greece-12">
<name>Chalkida</name>
<name>Chalkis</name>
<name>Chalcis</name>
<localname>Χαλκιδέων</localname>
<latitude>38.47</latitude>
<longitude>23.6</longitude>
<elevation>5</elevation>
<population year="1991" measured="census">85573</population>
<population year="2001" measured="census">92809</population>
<population year="2011" measured="census">102223</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Euboea"/>
</city>
</province>
<province id="prov-Greece-13" country="GR" capital="cty-Greece-6">
<name>Thessalias</name>
<localname>Θεσσαλίας</localname>
<area>14036</area>
<population measured="census" year="1991">729268</population>
<population year="1994">731030</population>
<population measured="census" year="2001">740115</population>
<population measured="census" year="2011">732762</population>
<city id="cty-Greece-6" country="GR" province="prov-Greece-13">
<name>Larissa</name>
<localname>Λάρισα</localname>
<latitude>39.64</latitude>
<longitude>22.42</longitude>
<elevation>67</elevation>
<population year="1981">102426</population>
<population year="1991" measured="census">129429</population>
<population year="2001" measured="census">145981</population>
<population year="2011" measured="census">162591</population>
</city>
<city id="cty-Greece-8" country="GR" province="prov-Greece-13">
<name>Volos</name>
<localname>Βόλος</localname>
<latitude>39.37</latitude>
<longitude>22.93</longitude>
<elevation>5</elevation>
<population year="1981">71378</population>
<population year="1991" measured="census">132917</population>
<population year="2001" measured="census">142923</population>
<population year="2011" measured="census">144449</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Greece-14" country="GR" capital="cty-Greece-Mytilini">
<name>Boreioy Aigaioy</name>
<localname>Βορείου Αιγαίου</localname>
<area>3835</area>
<population measured="census" year="1991">201363</population>
<population year="1994">189541</population>
<population measured="census" year="2001">205235</population>
<population measured="census" year="2011">199231</population>
<city id="cty-Greece-Mytilini" country="GR" province="prov-Greece-14">
<name>Mytilini</name>
<name>Mytilene</name>
<latitude>39.1</latitude>
<longitude>26.55</longitude>
<elevation>8</elevation>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Lesbos"/>
</city>
</province>
<province id="prov-Greece-15" country="GR" capital="cty-Greece-Karyes">
<name>Aghion Oros</name>
<localname>Άγιο Όρος (Αυτοδιοίκητο)</localname>
<area>335</area>
<population measured="census" year="1991">1415</population>
<population measured="census" year="2001">1961</population>
<population measured="census" year="2011">1811</population>
<city id="cty-Greece-Karyes" country="GR" province="prov-Greece-15">
<name>Karyes</name>
<latitude>40.26</latitude>
<longitude>24.24</longitude>
<elevation>370</elevation>
<population year="2014">233</population>
</city>
</province>
</country>
<country car_code="MK"
area="25333"
capital="cty-Macedonia-Skopje"
memberships="org-BIS org-CEI org-CD org-SELEC org-CE org-EAPC org-EBRD org-EU org-FAO org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IFRCS org-IFC org-IFAD org-ILO org-IMO org-IMF org-IOC org-IOM org-OIF org-ITU org-ITUC org-MIGA org-OSCE org-OPCW org-OAS org-PFP org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO">
<name>North Macedonia</name>
<localname>Република Cеверна Македонија</localname>
<population measured="census" year="1921">808724</population>
<population measured="census" year="1931">949958</population>
<population measured="census" year="1948">1152986</population>
<population measured="census" year="1953">1304514</population>
<population measured="census" year="1961">1406003</population>
<population measured="census" year="1971">1647308</population>
<population measured="census" year="1981">1909136</population>
<population measured="census" year="1991">2033964</population>
<population measured="census" year="1994">1935034</population>
<population measured="census" year="2002">2022547</population>
<population year="2011" measured="estimate">2059794</population>
<population_growth>0.21</population_growth>
<infant_mortality>7.9</infant_mortality>
<gdp_total>10650</gdp_total>
<gdp_agri>10.2</gdp_agri>
<gdp_ind>27.5</gdp_ind>
<gdp_serv>62.3</gdp_serv>
<inflation>2.8</inflation>
<unemployment>28.6</unemployment>
<indep_date from="Yugoslavia">1991-09-17</indep_date>
<government>parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="64.2">Macedonian</ethnicgroup>
<ethnicgroup percentage="25.2">Albanian</ethnicgroup>
<ethnicgroup percentage="3.9">Turkish</ethnicgroup>
<ethnicgroup percentage="2.7">Gypsy</ethnicgroup>
<ethnicgroup percentage="1.8">Serb</ethnicgroup>
<ethnicgroup percentage="0.8">Bosniak</ethnicgroup>
<religion percentage="64.7">Christian Orthodox</religion>
<religion percentage="33.3">Muslim</religion>
<religion percentage="0.2">Roman Catholic</religion>
<language percentage="66.5">Macedonian</language>
<language percentage="25.1">Albanian</language>
<language percentage="3.5">Turkish</language>
<language percentage="1.9">Roma</language>
<language percentage="1.2">Serbian</language>
<border country="AL" length="151"/>
<border country="GR" length="228"/>
<border country="SRB" length="62"/>
<border country="KOS" length="159"/>
<border country="BG" length="148"/>
<city id="cty-Macedonia-Skopje" country="MK">
<name>Skopje</name>
<localname>Град Скопје</localname>
<latitude>42</latitude>
<longitude>21.43</longitude>
<elevation>240</elevation>
<population year="2002" measured="census">506926</population>
<population year="2011" measured="estimate">514967</population>
<located_at watertype="river" river="river-Vardar"/>
</city>
<city id="cty-Macedonia-Kumanovo" country="MK">
<name>Kumanovo</name>
<localname>Град Куманово</localname>
<latitude>42.14</latitude>
<longitude>21.72</longitude>
<elevation>340</elevation>
<population year="2002" measured="census">105484</population>
<population year="2011" measured="estimate">107745</population>
</city>
</country>
<country car_code="SRB"
area="77474"
capital="city-Belgrade-SRB-SRB"
memberships="org-BIS org-BSEC org-CEI org-CD org-SELEC org-CE org-EAPC org-EBRD org-EU org-FAO org-G-9 org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IFRCS org-IFC org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NAM org-NSG org-OSCE org-OPCW org-OAS org-PFP org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-UNMIL org-UNOCI org-MONUSCO org-UNFICYP org-UNTSO org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO">
<name>Serbia</name>
<localname>Република Србија</localname>
<population measured="est." year="1950">6732256</population>
<population measured="est." year="1960">7657958</population>
<population measured="est." year="1970">8236185</population>
<population measured="est." year="1980">9057483</population>
<population measured="est." year="1990">9735429</population>
<population year="1991" measured="census">7620531</population>
<population measured="census" year="2002">7498001</population>
<population measured="census" year="2011">7120666</population>
<population_growth>-0.46</population_growth>
<infant_mortality>6.16</infant_mortality>
<gdp_total>43680</gdp_total>
<gdp_agri>7.9</gdp_agri>
<gdp_ind>31.8</gdp_ind>
<gdp_serv>60.3</gdp_serv>
<inflation>2.2</inflation>
<unemployment>20.1</unemployment>
<indep_date from="Yugoslavia">1992-04-11</indep_date>
<government>republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="82.9">Serb</ethnicgroup>
<ethnicgroup percentage="0.9">Montenegrin</ethnicgroup>
<ethnicgroup percentage="3.9">Hungarian</ethnicgroup>
<ethnicgroup percentage="1.4">Roma</ethnicgroup>
<ethnicgroup percentage="1.8">Bosniak</ethnicgroup>
<ethnicgroup percentage="1.1">Croat</ethnicgroup>
<religion percentage="85">Christian Orthodox</religion>
<religion percentage="3.2">Muslim</religion>
<religion percentage="5.5">Roman Catholic</religion>
<religion percentage="1.1">Protestant</religion>
<language percentage="88.3">Serbian</language>
<language percentage="3.8">Hungarian</language>
<language percentage="1.8">Bosnian</language>
<language percentage="1.1">Roma</language>
<border country="H" length="151"/>
<border country="RO" length="476"/>
<border country="BG" length="318"/>
<border country="MK" length="62"/>
<border country="HR" length="241"/>
<border country="BIH" length="357"/>
<border country="MNE" length="124"/>
<border country="KOS" length="352"/>
<city id="city-Belgrade-SRB-SRB" country="SRB">
<name>Beograd</name>
<name>Belgrade</name>
<localname>Београд</localname>
<latitude>44.82</latitude>
<longitude>20.47</longitude>
<elevation>117</elevation>
<population year="1987">1407073</population>
<population year="2002" measured="census">1576124</population>
<population year="2011" measured="census">1639121</population>
<located_at watertype="river" river="river-Donau"/>
<located_at watertype="river" river="river-Save"/>
</city>
<city id="city-NoviSad-SRB-SRB" country="SRB">
<name>Novi Sad</name>
<localname>Нови Сад</localname>
<latitude>45.25</latitude>
<longitude>19.85</longitude>
<elevation>72</elevation>
<population year="2002" measured="census">299294</population>
<population year="2011" measured="census">335701</population>
<located_at watertype="river" river="river-Donau"/>
</city>
<city id="city-Nis-SRB-SRB" country="SRB">
<name>Niš</name>
<localname>Ниш</localname>
<latitude>43.32</latitude>
<longitude>21.9</longitude>
<elevation>195</elevation>
<population year="2002" measured="census">250518</population>
<population year="2011" measured="census">257867</population>
<located_at watertype="river" river="river-SouthernMorava"/>
</city>
</country>
<country car_code="MNE"
area="14026"
capital="city-Podgorica-MNE-MNE"
memberships="org-CEI org-CD org-SELEC org-CE org-EAPC org-EBRD org-EU org-FAO org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IFRCS org-IFC org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ISO org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NAM org-NATO org-OSCE org-OPCW org-PFP org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNMIL org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO">
<name>Montenegro</name>
<localname>Црна Гора</localname>
<population measured="census" year="1921">311341</population>
<population measured="census" year="1931">360044</population>
<population measured="census" year="1948">377189</population>
<population measured="census" year="1953">419873</population>
<population measured="census" year="1961">471894</population>
<population measured="census" year="1971">529604</population>
<population measured="census" year="1981">584310</population>
<population measured="census" year="1991">615035</population>
<population measured="census" year="2003">620145</population>
<population year="2011" measured="census">620029</population>
<population_growth>-0.49</population_growth>
<gdp_total>4518</gdp_total>
<gdp_agri>0.8</gdp_agri>
<gdp_ind>11.3</gdp_ind>
<gdp_serv>87.9</gdp_serv>
<inflation>4</inflation>
<unemployment>19.1</unemployment>
<indep_date from="SRB">2006-06-03</indep_date>
<government>republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="43">Montenegrin</ethnicgroup>
<ethnicgroup percentage="32">Serb</ethnicgroup>
<ethnicgroup percentage="8">Bosniak</ethnicgroup>
<ethnicgroup percentage="5">Albanian</ethnicgroup>
<religion percentage="74.2">Christian Orthodox</religion>
<religion percentage="17.7">Muslim</religion>
<religion percentage="3.5">Roman Catholic</religion>
<language percentage="63.6">Serbian</language>
<language percentage="22">Montenegrin</language>
<language percentage="5.5">Bosnian</language>
<language percentage="5.3">Albanian</language>
<border country="HR" length="25"/>
<border country="SRB" length="124"/>
<border country="BIH" length="249"/>
<border country="AL" length="172"/>
<border country="KOS" length="79"/>
<city id="city-Podgorica-MNE-MNE" country="MNE">
<name>Podgorica</name>
<latitude>42.44</latitude>
<longitude>19.26</longitude>
<elevation>48</elevation>
<population year="2003" measured="census">136473</population>
<population year="2011" measured="census">150977</population>
<located_at watertype="river" river="river-Moraca"/>
</city>
</country>
<country car_code="KOS"
area="10887"
capital="city-Pristina-KOS-KOS"
memberships="org-CD org-EBRD org-IBRD org-IDA org-IFC org-IMF org-ITUC">
<name>Kosovo</name>
<localname>Republika e Kosovës</localname>
<population measured="census" year="1981">1584440</population>
<population measured="census" year="1991">1956196</population>
<population measured="census" year="2011">1733872</population>
<gdp_total>7150</gdp_total>
<gdp_agri>12.9</gdp_agri>
<gdp_ind>22.6</gdp_ind>
<gdp_serv>64.5</gdp_serv>
<inflation>1.8</inflation>
<unemployment>30.9</unemployment>
<indep_date from="SRB">2008-02-17</indep_date>
<government>republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="92">Albanian</ethnicgroup>
<ethnicgroup percentage="5">Serbian</ethnicgroup>
<religion percentage="90">Muslim</religion>
<language percentage="92">Albanian</language>
<language percentage="5">Serbian</language>
<border country="MNE" length="79"/>
<border country="SRB" length="352"/>
<border country="MK" length="159"/>
<border country="AL" length="112"/>
<city id="city-Pristina-KOS-KOS" country="KOS">
<name>Prishtine</name>
<name>Pristina</name>
<latitude>42.67</latitude>
<longitude>21.17</longitude>
<elevation>652</elevation>
<population year="1981" measured="census">148090</population>
<population year="1991" measured="census">199654</population>
<population year="2011" measured="census">198214</population>
</city>
</country>
<country car_code="AND"
area="450"
capital="cty-Andorra-Andorra-la-Vella"
memberships="org-CE org-FAO org-IPU org-ICC org-ICAO org-ICCt org-Interpol org-IFRCS org-IOC org-OIF org-ITU org-OSCE org-OPCW org-UN org-UNCTAD org-UNESCO org-WCO org-WHO org-WIPO org-UNWTO org-WTO">
<name>Andorra</name>
<localname>Principat d'Andorra</localname>
<population measured="est." year="1950">6197</population>
<population measured="est." year="1960">13414</population>
<population measured="est." year="1970">24279</population>
<population measured="est." year="1980">36063</population>
<population measured="census" year="1989">46166</population>
<population year="2001" measured="admin.">66334</population>
<population year="2006" measured="admin.">81222</population>
<population year="2011" measured="admin.">78115</population>
<population_growth>0.17</population_growth>
<infant_mortality>3.69</infant_mortality>
<gdp_total>4800</gdp_total>
<gdp_agri>14</gdp_agri>
<gdp_ind>79</gdp_ind>
<gdp_serv>6</gdp_serv>
<inflation>1.1</inflation>
<unemployment>4</unemployment>
<indep_date>1278-09-08</indep_date>
<government>parliamentary democracy that retains as its chiefs of state a co-principality</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="43">Spanish</ethnicgroup>
<ethnicgroup percentage="33">Andorran</ethnicgroup>
<ethnicgroup percentage="11">Portuguese</ethnicgroup>
<ethnicgroup percentage="2">French</ethnicgroup>
<ethnicgroup percentage="5">African</ethnicgroup>
<religion percentage="95">Roman Catholic</religion>
<language percentage="44">Catalan</language>
<language percentage="33">Spanish</language>
<language percentage="2">Galician</language>
<language percentage="11">Portuguese</language>
<language percentage="7">French</language>
<border country="F" length="60"/>
<border country="E" length="65"/>
<city id="cty-Andorra-Andorra-la-Vella" country="AND">
<name>Andorra la Vella</name>
<latitude>42.5</latitude>
<longitude>1.5</longitude>
<elevation>1023</elevation>
<population year="1987">15600</population>
<population year="2001" measured="admin.">20787</population>
<population year="2011" measured="admin.">22256</population>
</city>
</country>
<country car_code="F"
area="547030"
capital="cty-France-Paris"
memberships="org-AfDB org-ADB org-AG org-BIS org-BSEC org-BDEAC org-SICA org-SELEC org-CE org-CBSS org-EMU org-EAPC org-EBRD org-ECB org-EIB org-CERN org-ESA org-EU org-EITI org-FATF org-FAO org-FZ org-G-10 org-G-20 org-G-5 org-G-7 org-G-8 org-InOC org-IADB org-IGAD org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PIF org-PCA org-SPC org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-MINURSO org-UNMIL org-UNOCI org-MONUSCO org-UNRWA org-UNSC org-UNTSO org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>France</name>
<localname>la République française </localname>
<population measured="census" year="1946">40502513</population>
<population measured="census" year="1954">42777162</population>
<population measured="census" year="1962">46520271</population>
<population measured="census" year="1968">49778540</population>
<population measured="census" year="1975">52591584</population>
<population measured="census" year="1982">54334871</population>
<population measured="census" year="1990">56615155</population>
<population year="1999" measured="census">58518395</population>
<population measured="est." year="2007">61795238</population>
<population measured="est." year="2015">64300821</population>
<population_growth>0.45</population_growth>
<infant_mortality>3.31</infant_mortality>
<gdp_total>2739000</gdp_total>
<gdp_agri>1.9</gdp_agri>
<gdp_ind>18.7</gdp_ind>
<gdp_serv>79.4</gdp_serv>
<inflation>0.9</inflation>
<unemployment>10.2</unemployment>
<government>republic</government>
<encompassed continent="europe" percentage="100"/>
<religion percentage="51">Roman Catholic</religion>
<religion percentage="9">Muslim</religion>
<religion percentage="3">Protestant</religion>
<religion percentage="1">Christian Orthodox</religion>
<religion percentage="1">Jewish</religion>
<religion percentage="1">Buddhist</religion>
<language percentage="98">French</language>
<language percentage="0.5">Occitan</language>
<border country="AND" length="60"/>
<border country="E" length="623"/>
<border country="D" length="451"/>
<border country="I" length="488"/>
<border country="CH" length="573"/>
<border country="B" length="620"/>
<border country="L" length="73"/>
<border country="MC" length="4.4"/>
<province id="prov-France-53" country="F" capital="cty-France-Paris">
<name>Île-de-France</name>
<area>12012</area>
<population measured="census" year="1975">9878565</population>
<population measured="census" year="1982">1007305</population>
<population measured="census" year="1990">10660554</population>
<population measured="census" year="1999">10952011</population>
<population measured="est." year="2007">11598866</population>
<population measured="est." year="2015">12082144</population>
<city id="cty-France-Paris" country="F" province="prov-France-53">
<name>Paris</name>
<latitude>48.86</latitude>
<longitude>2.35</longitude>
<elevation>28</elevation>
<population year="1975" measured="census">2299830</population>
<population year="1982" measured="census">2176243</population>
<population year="1990" measured="census">2152423</population>
<population year="1999" measured="census">2125246</population>
<population year="2006" measured="admin.">2201578</population>
<population year="2011" measured="admin.">2249975</population>
<located_at watertype="river" river="river-Seine"/>
<located_at watertype="river" river="river-Marne"/>
</city>
<city id="cty-France-36" country="F" province="prov-France-53">
<name>Boulogne-Billancourt</name>
<latitude>48.84</latitude>
<longitude>2.24</longitude>
<elevation>28</elevation>
<population year="1975" measured="census">103578</population>
<population year="1982" measured="census">102582</population>
<population year="1990" measured="census">101743</population>
<population year="1999" measured="census">106367</population>
<population year="2006" measured="admin.">111280</population>
<population year="2011" measured="admin.">116220</population>
<located_at watertype="river" river="river-Seine"/>
</city>
<city id="cty-France-38" country="F" province="prov-France-53">
<name>Argenteuil</name>
<latitude>48.95</latitude>
<longitude>2.25</longitude>
<elevation>21</elevation>
<population year="1975" measured="census">102530</population>
<population year="1982" measured="census">95347</population>
<population year="1990" measured="census">93096</population>
<population year="1999" measured="census">93961</population>
<population year="2006" measured="admin.">104189</population>
<population year="2011" measured="admin.">104282</population>
<located_at watertype="river" river="river-Seine"/>
</city>
<city id="cty-France-39" country="F" province="prov-France-53">
<name>Montreuil</name>
<latitude>48.86</latitude>
<longitude>2.44</longitude>
<elevation>52</elevation>
<population year="1975" measured="census">95587</population>
<population year="1982" measured="census">93368</population>
<population year="1990" measured="census">94754</population>
<population year="1999" measured="census">90674</population>
<population year="2006" measured="admin.">102369</population>
<population year="2011" measured="admin.">103068</population>
</city>
<city id="cty-France-40" country="F" province="prov-France-53">
<name>Saint-Denis</name>
<latitude>48.95</latitude>
<longitude>2.35</longitude>
<elevation>23</elevation>
<population year="1975" measured="census">96132</population>
<population year="1982" measured="census">90829</population>
<population year="1990" measured="census">89988</population>
<population year="1999" measured="census">85832</population>
<population year="2007" measured="est.">100800</population>
<population year="2016" measured="est.">111354</population>
<located_at watertype="river" river="river-Seine"/>
</city>
</province>
<province id="prov-France-11" country="F" capital="cty-France-Lyon">
<name>Auvergne-Rhône-Alpes</name>
<area>69711</area>
<population measured="census" year="1975">6111163</population>
<population measured="census" year="1982">6348625</population>
<population measured="census" year="1990">6671915</population>
<population measured="census" year="1999">6954285</population>
<population measured="est." year="2007">7405206</population>
<population measured="est." year="2015">7877698</population>
<city id="cty-France-22" country="F" province="prov-France-11">
<name>Clermont-Ferrand</name>
<latitude>45.78</latitude>
<longitude>3.08</longitude>
<elevation>321</elevation>
<population year="1975" measured="census">156763</population>
<population year="1982" measured="census">147224</population>
<population year="1990" measured="census">136181</population>
<population year="1999" measured="census">137140</population>
<population year="2006" measured="admin.">142449</population>
<population year="2011" measured="admin.">140957</population>
</city>
<city id="cty-France-Lyon" country="F" province="prov-France-11">
<name>Lyon</name>
<latitude>45.76</latitude>
<longitude>4.84</longitude>
<elevation>162</elevation>
<population year="1975" measured="census">456716</population>
<population year="1982" measured="census">413095</population>
<population year="1990" measured="census">415487</population>
<population year="1999" measured="census">445452</population>
<population year="2006" measured="admin.">480778</population>
<population year="2011" measured="admin.">491268</population>
<located_at watertype="river" river="river-Saone"/>
<located_at watertype="river" river="river-Rhone"/>
</city>
<city id="cty-France-17" country="F" province="prov-France-11">
<name>Grenoble</name>
<latitude>45.2</latitude>
<longitude>5.72</longitude>
<elevation>212</elevation>
<population year="1975" measured="census">166037</population>
<population year="1982" measured="census">156637</population>
<population year="1990" measured="census">150758</population>
<population year="1999" measured="census">153317</population>
<population year="2006" measured="admin.">158746</population>
<population year="2011" measured="admin.">157424</population>
<located_at watertype="river" river="river-Isere"/>
</city>
<city id="cty-France-11" country="F" province="prov-France-11">
<name>Saint-Étienne</name>
<latitude>45.43</latitude>
<longitude>4.39</longitude>
<elevation>422</elevation>
<population year="1975" measured="census">220181</population>
<population year="1982" measured="census">204955</population>
<population year="1990" measured="census">199396</population>
<population year="1999" measured="census">180210</population>
<population year="2006" measured="admin.">180773</population>
<population year="2011" measured="admin.">170049</population>
</city>
<city id="cty-France-29" country="F" province="prov-France-11">
<name>Villeurbanne</name>
<latitude>45.77</latitude>
<longitude>4.88</longitude>
<elevation>165</elevation>
<population year="1975" measured="census">116535</population>
<population year="1982" measured="census">115960</population>
<population year="1990" measured="census">116872</population>
<population year="1999" measured="census">124215</population>
<population year="2006" measured="admin.">138596</population>
<population year="2011" measured="admin.">145034</population>
<located_at watertype="river" river="river-Rhone"/>
</city>
</province>
<province id="prov-France-5" country="F" capital="cty-France-9">
<name>Nouvelle-Aquitaine</name>
<area>84061</area>
<population measured="census" year="1975">4817190</population>
<population measured="census" year="1982">4961927</population>
<population measured="census" year="1990">5113789</population>
<population measured="census" year="1999">5259366</population>
<population measured="est." year="2007">5627671</population>
<population measured="est." year="2015">5911482</population>
<city id="cty-France-9" country="F" province="prov-France-5">
<name>Bordeaux</name>
<latitude>44.84</latitude>
<longitude>-0.58</longitude>
<elevation>10</elevation>
<population year="1975" measured="census">223131</population>
<population year="1982" measured="census">208159</population>
<population year="1990" measured="census">210336</population>
<population year="1999" measured="census">215363</population>
<population year="2006" measured="admin.">235878</population>
<population year="2011" measured="admin.">239399</population>
<located_at watertype="river" river="river-Garonne"/>
</city>
<city id="cty-France-23" country="F" province="prov-France-5">
<name>Limoges</name>
<latitude>45.84</latitude>
<longitude>1.26</longitude>
<elevation>209</elevation>
<population year="1975" measured="census">143725</population>
<population year="1982" measured="census">140418</population>
<population year="1990" measured="census">133464</population>
<population year="1999" measured="census">133968</population>
<population year="2006" measured="admin.">139026</population>
<population year="2011" measured="admin.">137758</population>
</city>
</province>
<province id="prov-France-86" country="F" capital="cty-France-15">
<name>Hauts-de-France</name>
<area>31813</area>
<population measured="census" year="1975">5592362</population>
<population measured="census" year="1982">5673217</population>
<population measured="census" year="1990">5775686</population>
<population measured="census" year="1999">5854014</population>
<population measured="est." year="2007">5921960</population>
<population measured="est." year="2015">6009976</population>
<city id="cty-France-15" country="F" province="prov-France-86">
<name>Lille</name>
<latitude>50.63</latitude>
<longitude>3.06</longitude>
<elevation>17</elevation>
<population year="1975" measured="census">219204</population>
<population year="1982" measured="census">196705</population>
<population year="1990" measured="census">198691</population>
<population year="1999" measured="census">212597</population>
<population year="2006" measured="admin.">232432</population>
<population year="2011" measured="admin.">227533</population>
</city>
<city id="cty-France-24" country="F" province="prov-France-86">
<name>Amiens</name>
<latitude>49.89</latitude>
<longitude>2.3</longitude>
<elevation>14</elevation>
<population year="1975" measured="census">131476</population>
<population year="1982" measured="census">131332</population>
<population year="1990" measured="census">131872</population>
<population year="1999" measured="census">135501</population>
<population year="2006" measured="admin.">139271</population>
<population year="2011" measured="admin.">133327</population>
</city>
<city id="cty-France-Calais" country="F" province="prov-France-86">
<name>Calais</name>
<latitude>50.95</latitude>
<longitude>1.85</longitude>
<elevation>6</elevation>
<population year="1975" measured="census">78820</population>
<population year="1982" measured="census">76527</population>
<population year="1990" measured="census">75309</population>
<population year="1999" measured="census">77333</population>
<population year="2006" measured="admin.">75293</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
</city>
</province>
<province id="prov-France-104" country="F" capital="cty-France-3">
<name>Provence-Alpes-Côte d'Azur</name>
<area>31399</area>
<population measured="census" year="1975">3675730</population>
<population measured="census" year="1982">3965209</population>
<population measured="census" year="1990">4257907</population>
<population measured="census" year="1999">4506151</population>
<population measured="est." year="2007">4864015</population>
<population measured="est." year="2015">5007977</population>
<city id="cty-France-3" country="F" province="prov-France-104">
<name>Marseille</name>
<latitude>43.3</latitude>
<longitude>5.37</longitude>
<elevation>10</elevation>
<population year="1975" measured="census">908600</population>
<population year="1982" measured="census">874436</population>
<population year="1990" measured="census">800550</population>
<population year="1999" measured="census">798430</population>
<population year="2006" measured="admin.">847084</population>
<population year="2011" measured="admin.">850636</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-France-Nice" country="F" province="prov-France-104">
<name>Nice</name>
<latitude>43.7</latitude>
<longitude>7.27</longitude>
<elevation>10</elevation>
<population year="1975" measured="census">344481</population>
<population year="1982" measured="census">337085</population>
<population year="1990" measured="census">342439</population>
<population year="1999" measured="census">342738</population>
<population year="2006" measured="admin.">350735</population>
<population year="2011" measured="admin.">344064</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-France-16" country="F" province="prov-France-104">
<name>Toulon</name>
<latitude>43.13</latitude>
<longitude>5.92</longitude>
<elevation>10</elevation>
<population year="1975" measured="census">181801</population>
<population year="1982" measured="census">179423</population>
<population year="1990" measured="census">167619</population>
<population year="1999" measured="census">160639</population>
<population year="2006" measured="admin.">170041</population>
<population year="2011" measured="admin.">163974</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-France-27" country="F" province="prov-France-104">
<name>Aix-en-Provence</name>
<latitude>43.53</latitude>
<longitude>5.45</longitude>
<elevation>73</elevation>
<population year="1975" measured="census">110659</population>
<population year="1982" measured="census">121327</population>
<population year="1990" measured="census">123842</population>
<population year="1999" measured="census">134222</population>
<population year="2006" measured="admin.">145721</population>
<population year="2011" measured="admin.">140684</population>
</city>
</province>
<province id="prov-France-20" country="F" capital="cty-France-12">
<name>Bretagne</name>
<area>27207</area>
<population measured="census" year="1975">2595431</population>
<population measured="census" year="1982">2707886</population>
<population measured="census" year="1990">2795638</population>
<population measured="census" year="1999">2906197</population>
<population measured="est." year="2007">3120288</population>
<population measured="est." year="2015">3293850</population>
<city id="cty-France-12" country="F" province="prov-France-20">
<name>Rennes</name>
<latitude>48.11</latitude>
<longitude>-1.68</longitude>
<elevation>20</elevation>
<population year="1975" measured="census">198305</population>
<population year="1982" measured="census">194656</population>
<population year="1990" measured="census">197536</population>
<population year="1999" measured="census">206229</population>
<population year="2006" measured="admin.">214813</population>
<population year="2011" measured="admin.">208033</population>
</city>
<city id="cty-France-18" country="F" province="prov-France-20">
<name>Brest</name>
<latitude>48.39</latitude>
<longitude>-4.49</longitude>
<elevation>10</elevation>
<population year="1975" measured="census">166826</population>
<population year="1982" measured="census">156060</population>
<population year="1990" measured="census">147956</population>
<population year="1999" measured="census">149634</population>
<population year="2006" measured="admin.">148316</population>
<population year="2011" measured="admin.">140547</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
</city>
</province>
<province id="prov-France-30" country="F" capital="cty-France-34">
<name>Centre-Val de Loire</name>
<area>39150</area>
<population measured="census" year="1975">2152500</population>
<population measured="census" year="1982">2264164</population>
<population measured="census" year="1990">2371036</population>
<population measured="census" year="1999">2440329</population>
<population measured="est." year="2007">2526919</population>
<population measured="est." year="2015">2578592</population>
<city id="cty-France-34" country="F" province="prov-France-30">
<name>Orléans</name>
<latitude>47.9</latitude>
<longitude>1.91</longitude>
<elevation>90</elevation>
<population year="1975" measured="census">106246</population>
<population year="1982" measured="census">102710</population>
<population year="1990" measured="census">105111</population>
<population year="1999" measured="census">113126</population>
<population year="2006" measured="admin.">116256</population>
<population year="2011" measured="admin.">114185</population>
<located_at watertype="river" river="river-Loire"/>
</city>
<city id="cty-France-25" country="F" province="prov-France-30">
<name>Tours</name>
<latitude>47.39</latitude>
<longitude>0.69</longitude>
<elevation>44</elevation>
<population year="1975" measured="census">140686</population>
<population year="1982" measured="census">132209</population>
<population year="1990" measured="census">129509</population>
<population year="1999" measured="census">132820</population>
<population year="2006" measured="admin.">140252</population>
<population year="2011" measured="admin.">134633</population>
<located_at watertype="river" river="river-Loire"/>
</city>
</province>
<province id="prov-France-89" country="F" capital="cty-France-Nantes">
<name>Pays de la Loire</name>
<area>32082</area>
<population measured="census" year="1975">2767163</population>
<population measured="census" year="1982">2930398</population>
<population measured="census" year="1990">3059112</population>
<population measured="census" year="1999">3222061</population>
<population measured="est." year="2007">3482594</population>
<population measured="est." year="2015">3718512</population>
<city id="cty-France-Nantes" country="F" province="prov-France-89">
<name>Nantes</name>
<latitude>47.22</latitude>
<longitude>-1.55</longitude>
<elevation>5</elevation>
<population year="1975" measured="census">256693</population>
<population year="1982" measured="census">240539</population>
<population year="1990" measured="census">244995</population>
<population year="1999" measured="census">270251</population>
<population year="2006" measured="admin.">290871</population>
<population year="2011" measured="admin.">287845</population>
<located_at watertype="river" river="river-Loire"/>
</city>
<city id="cty-France-21" country="F" province="prov-France-89">
<name>Angers</name>
<latitude>47.47</latitude>
<longitude>-0.55</longitude>
<elevation>12</elevation>
<population year="1975" measured="census">137591</population>
<population year="1982" measured="census">136038</population>
<population year="1990" measured="census">141404</population>
<population year="1999" measured="census">151279</population>
<population year="2006" measured="admin.">156965</population>
<population year="2011" measured="admin.">148803</population>
</city>
<city id="cty-France-20" country="F" province="prov-France-89">
<name>Le Mans</name>
<latitude>48.01</latitude>
<longitude>0.2</longitude>
<elevation>38</elevation>
<population year="1975" measured="census">152285</population>
<population year="1982" measured="census">147697</population>
<population year="1990" measured="census">145502</population>
<population year="1999" measured="census">146105</population>
<population year="2006" measured="admin.">148169</population>
<population year="2011" measured="admin.">143240</population>
</city>
</province>
<province id="prov-France-2" country="F" capital="cty-France-Strasbourg">
<name>Grand Est</name>
<area>57433</area>
<population measured="census" year="1975">5185039</population>
<population measured="census" year="1982">5231931</population>
<population measured="census" year="1990">5278005</population>
<population measured="census" year="1999">5386939</population>
<population measured="est." year="2007">5506686</population>
<population measured="est." year="2015">5559051</population>
<city id="cty-France-Strasbourg" country="F" province="prov-France-2">
<name>Strasbourg</name>
<latitude>48.58</latitude>
<longitude>7.75</longitude>
<elevation>132</elevation>
<population year="1975" measured="census">253384</population>
<population year="1982" measured="census">248712</population>
<population year="1990" measured="census">252338</population>
<population year="1999" measured="census">264115</population>
<population year="2006" measured="admin.">276867</population>
<population year="2011" measured="admin.">272222</population>
<located_at watertype="river" river="river-Rhein"/>
<located_at watertype="river" river="river-Ill"/>
</city>
<city id="cty-France-32" country="F" province="prov-France-2">
<name>Mulhouse</name>
<latitude>47.75</latitude>
<longitude>7.34</longitude>
<elevation>232</elevation>
<population year="1975" measured="census">117013</population>
<population year="1982" measured="census">112157</population>
<population year="1990" measured="census">108357</population>
<population year="1999" measured="census">110359</population>
<population year="2006" measured="admin.">112260</population>
<population year="2011" measured="admin.">110351</population>
<located_at watertype="river" river="river-Ill"/>
</city>
<city id="cty-France-28" country="F" province="prov-France-2">
<name>Metz</name>
<latitude>49.12</latitude>
<longitude>6.18</longitude>
<elevation>162</elevation>
<population year="1975" measured="census">111869</population>
<population year="1982" measured="census">114232</population>
<population year="1990" measured="census">119594</population>
<population year="1999" measured="census">123776</population>
<population year="2006" measured="admin.">126706</population>
<population year="2011" measured="admin.">119962</population>
<located_at watertype="river" river="river-Mosel"/>
</city>
<city id="cty-France-37" country="F" province="prov-France-2">
<name>Nancy</name>
<latitude>48.69</latitude>
<longitude>6.18</longitude>
<elevation>188</elevation>
<population year="1975" measured="census">107902</population>
<population year="1982" measured="census">96317</population>
<population year="1990" measured="census">99351</population>
<population year="1999" measured="census">103605</population>
<population year="2006" measured="admin.">107434</population>
<population year="2011" measured="admin.">105382</population>
<located_at watertype="river" river="river-Mosel"/>
</city>
<city id="cty-France-14" country="F" province="prov-France-2">
<name>Reims</name>
<latitude>49.26</latitude>
<longitude>4.03</longitude>
<elevation>80</elevation>
<population year="1975" measured="census">178381</population>
<population year="1982" measured="census">177234</population>
<population year="1990" measured="census">180620</population>
<population year="1999" measured="census">187206</population>
<population year="2006" measured="admin.">188078</population>
<population year="2011" measured="admin.">180752</population>
</city>
</province>
<province id="prov-France-50" country="F" capital="cty-France-35">
<name>Normandie</name>
<area>29906</area>
<population measured="census" year="1975">2901847</population>
<population measured="census" year="1982">3006341</population>
<population measured="census" year="1990">3128565</population>
<population measured="census" year="1999">3202385</population>
<population measured="est." year="2007">3278145</population>
<population measured="est." year="2015">3339131</population>
<city id="cty-France-35" country="F" province="prov-France-50">
<name>Rouen</name>
<latitude>49.44</latitude>
<longitude>1.1</longitude>
<elevation>2</elevation>
<population year="1975" measured="census">114834</population>
<population year="1982" measured="census">101945</population>
<population year="1990" measured="census">102723</population>
<population year="1999" measured="census">106592</population>
<population year="2006" measured="admin.">110276</population>
<population year="2011" measured="admin.">111553</population>
<located_at watertype="river" river="river-Seine"/>
</city>
<city id="cty-France-13" country="F" province="prov-France-50">
<name>Le Havre</name>
<latitude>49.49</latitude>
<longitude>0.1</longitude>
<elevation>5</elevation>
<population year="1975" measured="census">217882</population>
<population year="1982" measured="census">199388</population>
<population year="1990" measured="census">195854</population>
<population year="1999" measured="census">190905</population>
<population year="2006" measured="admin.">185311</population>
<population year="2011" measured="admin.">174156</population>
<located_at watertype="sea" sea="sea-Channel"/>
<located_at watertype="river" river="river-Seine"/>
</city>
<city id="cty-France-31" country="F" province="prov-France-50">
<name>Caen</name>
<latitude>49.18</latitude>
<longitude>-0.37</longitude>
<elevation>5</elevation>
<population year="1975" measured="census">119640</population>
<population year="1982" measured="census">114068</population>
<population year="1990" measured="census">112846</population>
<population year="1999" measured="census">113987</population>
<population year="2006" measured="admin.">113249</population>
<population year="2011" measured="admin.">108793</population>
</city>
</province>
<province id="prov-France-25" country="F" capital="cty-France-19">
<name>Bourgogne-Franche-Comté</name>
<area>47784</area>
<population measured="census" year="1975">2631260</population>
<population measured="census" year="1982">2680103</population>
<population measured="census" year="1990">2706929</population>
<population measured="census" year="1999">2727126</population>
<population measured="est." year="2007">2792562</population>
<population measured="est." year="2015">2820940</population>
<city id="cty-France-19" country="F" province="prov-France-25">
<name>Dijon</name>
<latitude>47.29</latitude>
<longitude>5.04</longitude>
<elevation>220</elevation>
<population year="1975" measured="census">151705</population>
<population year="1982" measured="census">140942</population>
<population year="1990" measured="census">146703</population>
<population year="1999" measured="census">149867</population>
<population year="2006" measured="admin.">155340</population>
<population year="2011" measured="admin.">151672</population>
</city>
<city id="cty-France-30" country="F" province="prov-France-25">
<name>Besançon</name>
<latitude>47.24</latitude>
<longitude>6.02</longitude>
<elevation>235</elevation>
<population year="1975" measured="census">120315</population>
<population year="1982" measured="census">113283</population>
<population year="1990" measured="census">113828</population>
<population year="1999" measured="census">117733</population>
<population year="2006" measured="admin.">121012</population>
<population year="2011" measured="admin.">115879</population>
<located_at watertype="river" river="river-Doubs"/>
</city>
</province>
<province id="prov-France-77" country="F" capital="cty-France-5">
<name>Occitanie</name>
<area>72724</area>
<population measured="census" year="1975">4057772</population>
<population measured="census" year="1982">4251833</population>
<population measured="census" year="1990">4545648</population>
<population measured="census" year="1999">4847335</population>
<population measured="est." year="2007">5371117</population>
<population measured="est." year="2015">5774185</population>
<city id="cty-France-5" country="F" province="prov-France-77">
<name>Toulouse</name>
<latitude>43.6</latitude>
<longitude>1.44</longitude>
<elevation>115</elevation>
<population year="1975" measured="census">373796</population>
<population year="1982" measured="census">347995</population>
<population year="1990" measured="census">358688</population>
<population year="1999" measured="census">390350</population>
<population year="2006" measured="admin.">444392</population>
<population year="2011" measured="admin.">447340</population>
<located_at watertype="river" river="river-Garonne"/>
</city>
<city id="cty-France-10" country="F" province="prov-France-77">
<name>Montpellier</name>
<latitude>43.61</latitude>
<longitude>3.88</longitude>
<elevation>7</elevation>
<population year="1975" measured="census">191354</population>
<population year="1982" measured="census">197231</population>
<population year="1990" measured="census">207996</population>
<population year="1999" measured="census">225392</population>
<population year="2006" measured="admin.">254974</population>
<population year="2011" measured="admin.">264538</population>
</city>
<city id="cty-France-26" country="F" province="prov-France-77">
<name>Nîmes</name>
<latitude>43.84</latitude>
<longitude>4.36</longitude>
<elevation>21</elevation>
<population year="1975" measured="census">127933</population>
<population year="1982" measured="census">124220</population>
<population year="1990" measured="census">128471</population>
<population year="1999" measured="census">133424</population>
<population year="2006" measured="admin.">147114</population>
<population year="2011" measured="admin.">144940</population>
</city>
<city id="cty-France-33" country="F" province="prov-France-77">
<name>Perpignan</name>
<latitude>42.7</latitude>
<longitude>2.9</longitude>
<elevation>8</elevation>
<population year="1975" measured="census">106426</population>
<population year="1982" measured="census">111669</population>
<population year="1990" measured="census">105983</population>
<population year="1999" measured="census">105115</population>
<population year="2006" measured="admin.">117500</population>
<population year="2011" measured="admin.">118238</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-France-42" country="F" capital="cty-France-Ajaccio">
<name>Corse</name>
<area>8679</area>
<population measured="census" year="1975">225562</population>
<population measured="census" year="1982">240178</population>
<population measured="census" year="1990">250371</population>
<population measured="census" year="1999">260196</population>
<population measured="est." year="2007">299209</population>
<population measured="est." year="2015">327283</population>
<city id="cty-France-Ajaccio" country="F" province="prov-France-42">
<name>Ajaccio</name>
<latitude>41.93</latitude>
<longitude>8.74</longitude>
<elevation>20</elevation>
<population year="1975" measured="census">49065</population>
<population year="1982" measured="census">54089</population>
<population year="1990" measured="census">58949</population>
<population year="1999" measured="census">52880</population>
<population year="2006" measured="admin.">64432</population>
<population year="2011" measured="admin.">66245</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Corse"/>
</city>
</province>
</country>
<country car_code="E"
area="504750"
capital="cty-Spain-Madrid"
memberships="org-AfDB org-CAN org-ADB org-AG org-BIS org-BCIE org-SICA org-CD org-SELEC org-CE org-CBSS org-EMU org-EAPC org-EBRD org-ECB org-EIB org-CERN org-ESA org-EU org-EITI org-FATF org-FAO org-IADB org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-ITUC org-LAIA org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-UNRWA org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Spain</name>
<localname>el Reino de España</localname>
<population measured="census" year="1900">18618086</population>
<population measured="census" year="1910">19995686</population>
<population measured="census" year="1920">21389842</population>
<population measured="census" year="1930">23677794</population>
<population measured="census" year="1940">25877971</population>
<population measured="census" year="1950">27976755</population>
<population measured="census" year="1960">30528539</population>
<population measured="census" year="1970">34040657</population>
<population measured="census" year="1981">37683363</population>
<population year="1991" measured="census">38871331</population>
<population measured="census" year="2001">40847371</population>
<population measured="census" year="2011">46815916</population>
<population_growth>0.78</population_growth>
<infant_mortality>2.7</infant_mortality>
<gdp_total>1356000</gdp_total>
<gdp_agri>3.1</gdp_agri>
<gdp_ind>26</gdp_ind>
<gdp_serv>70.8</gdp_serv>
<inflation>1.8</inflation>
<unemployment>26.3</unemployment>
<indep_date>1492-01-01</indep_date>
<government>parliamentary monarchy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="100">Mediterranean Nordic</ethnicgroup>
<religion percentage="68">Roman Catholic</religion>
<religion percentage="4.1">Muslim</religion>
<religion percentage="0.3">Protestant</religion>
<religion percentage="0.25">Jehovas Witnesses</religion>
<language percentage="74">Spanish</language>
<language percentage="19">Catalan</language>
<language percentage="5">Galician</language>
<language percentage="2">Basque</language>
<border country="AND" length="65"/>
<border country="F" length="623"/>
<border country="GBZ" length="1.2"/>
<border country="P" length="1214"/>
<province id="prov-Spain-2" country="E" capital="cty-Spain-5">
<name>Andalucía</name>
<area>87585</area>
<population measured="census" year="1991">6940105</population>
<population year="1994">7053043</population>
<population measured="census" year="2001">7357558</population>
<population measured="census" year="2011">8371271</population>
<city id="cty-Spain-5" country="E" province="prov-Spain-2">
<name>Sevilla</name>
<name>Seville</name>
<latitude>37.38</latitude>
<longitude>-5.99</longitude>
<elevation>12</elevation>
<population year="1991" measured="census">701927</population>
<population year="1994">714148</population>
<population year="2001" measured="census">684633</population>
<population year="2011" measured="census">698042</population>
<located_at watertype="river" river="river-Guadalquivir"/>
</city>
<city id="cty-Spain-34" country="E" province="prov-Spain-2">
<name>Almería</name>
<latitude>36.84</latitude>
<longitude>-2.47</longitude>
<elevation>27</elevation>
<population year="1991" measured="census">168025</population>
<population year="1994">167361</population>
<population year="2001" measured="census">166328</population>
<population year="2011" measured="census">189680</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Spain-39" country="E" province="prov-Spain-2">
<name>Cádiz</name>
<latitude>36.53</latitude>
<longitude>-6.28</longitude>
<elevation>11</elevation>
<population year="1991" measured="census">143129</population>
<population year="1994">155438</population>
<population year="2001" measured="census">133363</population>
<population year="2011" measured="census">124014</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
</city>
<city id="cty-Spain-13" country="E" province="prov-Spain-2">
<name>Córdoba</name>
<latitude>37.88</latitude>
<longitude>-4.77</longitude>
<elevation>120</elevation>
<population year="1991" measured="census">309961</population>
<population year="1994">315948</population>
<population year="2001" measured="census">308072</population>
<population year="2011" measured="census">328326</population>
<located_at watertype="river" river="river-Guadalquivir"/>
</city>
<city id="cty-Spain-16" country="E" province="prov-Spain-2">
<name>Granada</name>
<latitude>37.18</latitude>
<longitude>-3.6</longitude>
<elevation>738</elevation>
<population year="1991" measured="census">241471</population>
<population year="1994">271180</population>
<population year="2001" measured="census">240661</population>
<population year="2011" measured="census">241003</population>
</city>
<city id="cty-Spain-41" country="E" province="prov-Spain-2">
<name>Huelva</name>
<latitude>37.25</latitude>
<longitude>-6.95</longitude>
<elevation>54</elevation>
<population year="1991" measured="census">139991</population>
<population year="1994">145049</population>
<population year="2001" measured="census">142284</population>
<population year="2011" measured="census">147808</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
</city>
<city id="cty-Spain-7" country="E" province="prov-Spain-2">
<name>Málaga</name>
<latitude>36.72</latitude>
<longitude>-4.42</longitude>
<elevation>11</elevation>
<population year="1991" measured="census">528079</population>
<population year="1994">531443</population>
<population year="2001" measured="census">524414</population>
<population year="2011" measured="census">561435</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Spain-27" country="E" province="prov-Spain-2">
<name>Jerez de la Frontera</name>
<name>Jerez</name>
<latitude>36.7</latitude>
<longitude>-6.12</longitude>
<elevation>56</elevation>
<population year="1991" measured="census">181602</population>
<population year="2001" measured="census">183273</population>
<population year="2011" measured="census">211784</population>
</city>
<city id="cty-Spain-52" country="E" province="prov-Spain-2">
<name>Jaén</name>
<latitude>37.77</latitude>
<longitude>-3.77</longitude>
<elevation>573</elevation>
<population year="1991" measured="census">107184</population>
<population year="1994">112772</population>
<population year="2001" measured="census">112590</population>
<population year="2011" measured="census">116469</population>
</city>
<city id="cty-Spain-54" country="E" province="prov-Spain-2">
<name>Algeciras</name>
<latitude>36.13</latitude>
<longitude>-5.45</longitude>
<elevation>20</elevation>
<population year="1991" measured="census">101972</population>
<population year="1994">103787</population>
<population year="2001" measured="census">101468</population>
<population year="2011" measured="census">117695</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Spain-57" country="E" province="prov-Spain-2">
<name>Marbella</name>
<latitude>36.52</latitude>
<longitude>-4.88</longitude>
<elevation>27</elevation>
<population year="1991" measured="census">98377</population>
<population year="2001" measured="census">100036</population>
<population year="2011" measured="census">135124</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Spain-58" country="E" province="prov-Spain-2">
<name>Dos Hermanas</name>
<latitude>37.28</latitude>
<longitude>-5.92</longitude>
<elevation>42</elevation>
<population year="1991" measured="census">92506</population>
<population year="2001" measured="census">101988</population>
<population year="2011" measured="census">128433</population>
</city>
</province>
<province id="prov-Spain-3" country="E" capital="cty-Spain-6">
<name>Aragón</name>
<area>47721</area>
<population measured="census" year="1991">1188817</population>
<population year="1994">1183576</population>
<population measured="census" year="2001">1204215</population>
<population measured="census" year="2011">1344509</population>
<city id="cty-Spain-6" country="E" province="prov-Spain-3">
<name>Zaragoza</name>
<latitude>41.65</latitude>
<longitude>-0.88</longitude>
<elevation>243</elevation>
<population year="1991" measured="census">603367</population>
<population year="1994">606620</population>
<population year="2001" measured="census">614905</population>
<population year="2011" measured="census">678115</population>
<located_at watertype="river" river="river-Ebro"/>
</city>
</province>
<province id="prov-Spain-4" country="E" capital="cty-Spain-23">
<name>Asturias</name>
<area>10603</area>
<population measured="census" year="1991">1093937</population>
<population year="1994">1083388</population>
<population measured="census" year="2001">1062998</population>
<population measured="census" year="2011">1075183</population>
<city id="cty-Spain-23" country="E" province="prov-Spain-4">
<name>Oviedo</name>
<latitude>43.36</latitude>
<longitude>-5.84</longitude>
<elevation>232</elevation>
<population year="1991" measured="census">199549</population>
<population year="1994">201712</population>
<population year="2001" measured="census">201154</population>
<population year="2011" measured="census">225005</population>
</city>
<city id="cty-Spain-17" country="E" province="prov-Spain-4">
<name>Gijón</name>
<latitude>43.53</latitude>
<longitude>-5.7</longitude>
<elevation>14</elevation>
<population year="1991" measured="census">265491</population>
<population year="1994">269644</population>
<population year="2001" measured="census">266419</population>
<population year="2011" measured="census">276969</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
</city>
</province>
<province id="prov-Spain-5" country="E" capital="cty-Spain-12">
<name>Illes Balears</name>
<area>4991</area>
<population measured="census" year="1991">709138</population>
<population year="1994">736865</population>
<population measured="census" year="2001">841669</population>
<population measured="census" year="2011">1100503</population>
<city id="cty-Spain-12" country="E" province="prov-Spain-5">
<name>Palma de Mallorca</name>
<name>Palma</name>
<latitude>39.57</latitude>
<longitude>2.65</longitude>
<elevation>13</elevation>
<population year="1991" measured="census">319181</population>
<population year="1994">322008</population>
<population year="2001" measured="census">333801</population>
<population year="2011" measured="census">402044</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Mallorca"/>
</city>
</province>
<province id="prov-Spain-6" country="E" capital="cty-Spain-21">
<name>Euskadi</name>
<name>País Vasco</name>
<area>7237</area>
<population measured="census" year="1991">2104041</population>
<population year="1994">2075561</population>
<population measured="census" year="2001">2082587</population>
<population measured="census" year="2011">2185393</population>
<city id="cty-Spain-21" country="E" province="prov-Spain-6">
<name>Vitoria-Gasteiz</name>
<latitude>42.85</latitude>
<longitude>-2.68</longitude>
<elevation>525</elevation>
<population year="1991" measured="census">216527</population>
<population year="1994">214148</population>
<population year="2001" measured="census">216852</population>
<population year="2011" measured="census">240753</population>
</city>
<city id="cty-Spain-8" country="E" province="prov-Spain-6">
<name>Bilbao</name>
<latitude>43.26</latitude>
<longitude>-2.92</longitude>
<elevation>19</elevation>
<population year="1991" measured="census">358467</population>
<population year="1994">371876</population>
<population year="2001" measured="census">349972</population>
<population year="2011" measured="census">351356</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
</city>
<city id="cty-Spain-55" country="E" province="prov-Spain-6">
<name>Barakaldo</name>
<latitude>43.3</latitude>
<longitude>-2.99</longitude>
<elevation>39</elevation>
<population year="1991" measured="census">98649</population>
<population year="1994">103594</population>
<population year="2001" measured="census">94478</population>
<population year="2011" measured="census">100064</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
</city>
<city id="cty-Spain-32" country="E" province="prov-Spain-6">
<name>Donostia</name>
<name>San Sebastián</name>
<name>Donostia-San Sebastián</name>
<latitude>43.32</latitude>
<longitude>-1.99</longitude>
<elevation>6</elevation>
<population year="1991" measured="census">178229</population>
<population year="1994">177929</population>
<population year="2001" measured="census">178377</population>
<population year="2011" measured="census">185512</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
</city>
</province>
<province id="prov-Spain-7" country="E" capital="cty-Spain-22">
<name>Canarias</name>
<area>7447</area>
<population measured="census" year="1991">1493784</population>
<population year="1994">1534897</population>
<population measured="census" year="2001">1694477</population>
<population measured="census" year="2011">2082654</population>
<city id="cty-Spain-22" country="E" province="prov-Spain-7">
<name>Santa Cruz de Tenerife</name>
<latitude>28.47</latitude>
<longitude>-16.25</longitude>
<elevation>4</elevation>
<population year="1991" measured="census">211930</population>
<population year="1994">203929</population>
<population year="2001" measured="census">188477</population>
<population year="2011" measured="census">204476</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-Teneriffa"/>
</city>
<city id="cty-Spain-48" country="E" province="prov-Spain-7">
<name>San Cristóbal de La Laguna</name>
<name>La Laguna</name>
<latitude>28.48</latitude>
<longitude>-16.3</longitude>
<elevation>543</elevation>
<population year="1991" measured="census">127945</population>
<population year="1994">125183</population>
<population year="2001" measured="census">128822</population>
<population year="2011" measured="census">152025</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-Teneriffa"/>
</city>
<city id="cty-Spain-9" country="E" province="prov-Spain-7">
<name>Las Palmas de Gran Canaria</name>
<name>Las Palmas</name>
<latitude>28.15</latitude>
<longitude>-15.42</longitude>
<elevation>8</elevation>
<population year="1991" measured="census">352641</population>
<population year="1994">371787</population>
<population year="2001" measured="census">354863</population>
<population year="2011" measured="census">381271</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-Gran_Canaria"/>
</city>
<city id="cty-Spain-63" country="E" province="prov-Spain-7">
<name>Telde</name>
<latitude>27.98</latitude>
<longitude>-15.42</longitude>
<elevation>130</elevation>
<population year="1991" measured="census">83733</population>
<population year="2001" measured="census">87949</population>
<population year="2011" measured="census">101080</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-Gran_Canaria"/>
</city>
</province>
<province id="prov-Spain-8" country="E" capital="cty-Spain-25">
<name>Cantabria</name>
<area>5323</area>
<population measured="census" year="1991">527326</population>
<population year="1994">526090</population>
<population measured="census" year="2001">535131</population>
<population measured="census" year="2011">592542</population>
<city id="cty-Spain-25" country="E" province="prov-Spain-8">
<name>Santander</name>
<latitude>43.46</latitude>
<longitude>-3.8</longitude>
<elevation>15</elevation>
<population year="1991" measured="census">184165</population>
<population year="1994">194822</population>
<population year="2001" measured="census">180717</population>
<population year="2011" measured="census">178095</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
</city>
</province>
<province id="prov-Spain-9" country="E" capital="cty-Spain-11">
<name>Castilla y León</name>
<area>94351</area>
<population measured="census" year="1991">2545926</population>
<population year="1994">2504371</population>
<population measured="census" year="2001">2456474</population>
<population measured="census" year="2011">2540187</population>
<city id="cty-Spain-11" country="E" province="prov-Spain-9">
<name>Valladolid</name>
<latitude>41.63</latitude>
<longitude>-4.72</longitude>
<elevation>698</elevation>
<population year="1991" measured="census">319946</population>
<population year="1994">336917</population>
<population year="2001" measured="census">316580</population>
<population year="2011" measured="census">311682</population>
<located_at watertype="river" river="river-Douro"/>
</city>
<city id="cty-Spain-35" country="E" province="prov-Spain-9">
<name>Burgos</name>
<latitude>42.35</latitude>
<longitude>-3.71</longitude>
<elevation>859</elevation>
<population year="1991" measured="census">161984</population>
<population year="1994">166251</population>
<population year="2001" measured="census">166187</population>
<population year="2011" measured="census">178864</population>
</city>
<city id="cty-Spain-40" country="E" province="prov-Spain-9">
<name>León</name>
<latitude>42.61</latitude>
<longitude>-5.57</longitude>
<elevation>837</elevation>
<population year="1991" measured="census">139809</population>
<population year="1994">147311</population>
<population year="2001" measured="census">130916</population>
<population year="2011" measured="census">131411</population>
</city>
<city id="cty-Spain-33" country="E" province="prov-Spain-9">
<name>Salamanca</name>
<latitude>40.97</latitude>
<longitude>-5.67</longitude>
<elevation>802</elevation>
<population year="1991" measured="census">158457</population>
<population year="1994">167382</population>
<population year="2001" measured="census">156368</population>
<population year="2011" measured="census">151658</population>
</city>
</province>
<province id="prov-Spain-10" country="E" capital="cty-Spain-Toledo">
<name>Castilla-La Mancha</name>
<area>79408</area>
<population measured="census" year="1991">1658446</population>
<population year="1994">1656179</population>
<population measured="census" year="2001">1760516</population>
<population measured="census" year="2011">2106331</population>
<city id="cty-Spain-Toledo" country="E" province="prov-Spain-10">
<name>Toledo</name>
<latitude>39.86</latitude>
<longitude>-4.02</longitude>
<elevation>529</elevation>
<located_at watertype="river" river="river-Tajo"/>
</city>
<city id="cty-Spain-44" country="E" province="prov-Spain-10">
<name>Albacete</name>
<latitude>39</latitude>
<longitude>-1.86</longitude>
<elevation>686</elevation>
<population year="1991" measured="census">145454</population>
<population year="1994">141179</population>
<population year="2001" measured="census">148934</population>
<population year="2011" measured="census">171999</population>
</city>
</province>
<province id="prov-Spain-11" country="E" capital="cty-Spain-Barcelona">
<name>Catalunya</name>
<name>Cataluña</name>
<name>Catalonia</name>
<area>32163</area>
<population measured="census" year="1991">6059443</population>
<population year="1994">6090107</population>
<population measured="census" year="2001">6343110</population>
<population measured="census" year="2011">7519843</population>
<city id="cty-Spain-Barcelona" country="E" province="prov-Spain-11">
<name>Barcelona</name>
<latitude>41.38</latitude>
<longitude>2.18</longitude>
<elevation>12</elevation>
<population year="1991" measured="census">1505581</population>
<population year="1994">1630867</population>
<population year="2001" measured="census">1503884</population>
<population year="2011" measured="census">1611013</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Spain-51" country="E" province="prov-Spain-11">
<name>Lleida</name>
<latitude>41.62</latitude>
<longitude>0.63</longitude>
<elevation>155</elevation>
<population year="1991" measured="census">112207</population>
<population year="1994">114234</population>
<population year="2001" measured="census">112199</population>
<population year="2011" measured="census">137283</population>
</city>
<city id="cty-Spain-50" country="E" province="prov-Spain-11">
<name>Tarragona</name>
<latitude>41.12</latitude>
<longitude>1.25</longitude>
<elevation>68</elevation>
<population year="1991" measured="census">112795</population>
<population year="1994">114630</population>
<population year="2001" measured="census">113129</population>
<population year="2011" measured="census">133223</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Spain-61" country="E" province="prov-Spain-11">
<name>Reus</name>
<latitude>41.15</latitude>
<longitude>1.12</longitude>
<elevation>134</elevation>
<population year="1991" measured="census">89034</population>
<population year="2001" measured="census">89006</population>
<population year="2011" measured="census">106849</population>
</city>
<city id="cty-Spain-18" country="E" province="prov-Spain-11">
<name>Hospitalet de Llobregat</name>
<name>L'Hospitalet de Llobregat</name>
<latitude>41.36</latitude>
<longitude>2.1</longitude>
<elevation>8</elevation>
<population year="1991" measured="census">248521</population>
<population year="1994">266242</population>
<population year="2001" measured="census">239019</population>
<population year="2011" measured="census">256509</population>
</city>
<city id="cty-Spain-20" country="E" province="prov-Spain-11">
<name>Badalona</name>
<latitude>41.45</latitude>
<longitude>2.25</longitude>
<elevation>12</elevation>
<population year="1991" measured="census">209606</population>
<population year="1994">219340</population>
<population year="2001" measured="census">205836</population>
<population year="2011" measured="census">219241</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Spain-28" country="E" province="prov-Spain-11">
<name>Sabadell</name>
<latitude>41.55</latitude>
<longitude>2.11</longitude>
<elevation>190</elevation>
<population year="1991" measured="census">184859</population>
<population year="1994">189006</population>
<population year="2001" measured="census">183788</population>
<population year="2011" measured="census">206949</population>
</city>
<city id="cty-Spain-37" country="E" province="prov-Spain-11">
<name>Terrassa</name>
<latitude>41.56</latitude>
<longitude>2.01</longitude>
<elevation>286</elevation>
<population year="1991" measured="census">165654</population>
<population year="1994">161428</population>
<population year="2001" measured="census">173775</population>
<population year="2011" measured="census">214406</population>
</city>
<city id="cty-Spain-46" country="E" province="prov-Spain-11">
<name>Santa Coloma de Gramenet</name>
<latitude>41.47</latitude>
<longitude>2.22</longitude>
<elevation>56</elevation>
<population year="1991" measured="census">120958</population>
<population year="1994">131764</population>
<population year="2001" measured="census">112992</population>
<population year="2011" measured="census">119391</population>
</city>
<city id="cty-Spain-56" country="E" province="prov-Spain-11">
<name>Mataró</name>
<latitude>41.53</latitude>
<longitude>2.45</longitude>
<elevation>28</elevation>
<population year="1991" measured="census">103265</population>
<population year="1994">102117</population>
<population year="2001" measured="census">106358</population>
<population year="2011" measured="census">123367</population>
</city>
</province>
<province id="prov-Spain-12" country="E" capital="cty-Spain-Merida">
<name>Extremadura</name>
<area>41634</area>
<population measured="census" year="1991">1061852</population>
<population year="1994">1050590</population>
<population measured="census" year="2001">1058503</population>
<population measured="census" year="2011">1104500</population>
<city id="cty-Spain-47" country="E" province="prov-Spain-12">
<name>Badajoz</name>
<latitude>38.88</latitude>
<longitude>-6.97</longitude>
<elevation>185</elevation>
<population year="1991" measured="census">134710</population>
<population year="1994">130153</population>
<population year="2001" measured="census">133519</population>
<population year="2011" measured="census">151214</population>
<located_at watertype="river" river="river-Guadiana"/>
</city>
<city id="cty-Spain-Merida" country="E" province="prov-Spain-12">
<name>Merida</name>
<latitude>38.9</latitude>
<longitude>-6.33</longitude>
<elevation>217</elevation>
</city>
</province>
<province id="prov-Spain-13"
country="E"
capital="cty-Spain-Santiago-de-Compostela">
<name>Galicia</name>
<area>29559</area>
<population measured="census" year="1991">2731669</population>
<population year="1994">2720761</population>
<population measured="census" year="2001">2695880</population>
<population measured="census" year="2011">2772927</population>
<city id="cty-Spain-19" country="E" province="prov-Spain-13">
<name>A Coruña</name>
<name>La Coruna</name>
<latitude>43.37</latitude>
<longitude>-8.41</longitude>
<elevation>21</elevation>
<population year="1991" measured="census">243134</population>
<population year="2001" measured="census">236379</population>
<population year="2011" measured="census">245053</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
</city>
<city id="cty-Spain-14" country="E" province="prov-Spain-13">
<name>Vigo</name>
<latitude>42.23</latitude>
<longitude>-8.71</longitude>
<elevation>62</elevation>
<population year="1991" measured="census">283110</population>
<population year="1994">288573</population>
<population year="2001" measured="census">280186</population>
<population year="2011" measured="census">295623</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
</city>
<city id="cty-Spain-53" country="E" province="prov-Spain-13">
<name>Ourense</name>
<latitude>42.34</latitude>
<longitude>-7.86</longitude>
<elevation>132</elevation>
<population year="1991" measured="census">107965</population>
<population year="1994">108547</population>
<population year="2001" measured="census">107510</population>
<population year="2011" measured="census">107314</population>
</city>
<city id="cty-Spain-Santiago-de-Compostela"
country="E"
province="prov-Spain-13">
<name>Santiago de Compostela</name>
<latitude>42.88</latitude>
<longitude>-8.54</longitude>
<elevation>260</elevation>
</city>
</province>
<province id="prov-Spain-14" country="E" capital="cty-Spain-Madrid">
<name>Madrid</name>
<area>8022</area>
<population measured="census" year="1991">4947555</population>
<population year="1994">5034548</population>
<population measured="census" year="2001">5423384</population>
<population measured="census" year="2011">6421874</population>
<city id="cty-Spain-Madrid" country="E" province="prov-Spain-14">
<name>Madrid</name>
<latitude>40.38</latitude>
<longitude>-3.72</longitude>
<elevation>667</elevation>
<population year="1991" measured="census">2881506</population>
<population year="1994">3041101</population>
<population year="2001" measured="census">2938723</population>
<population year="2011" measured="census">3198645</population>
</city>
<city id="cty-Spain-24" country="E" province="prov-Spain-14">
<name>Móstoles</name>
<latitude>40.33</latitude>
<longitude>-3.87</longitude>
<elevation>620</elevation>
<population year="1991" measured="census">195311</population>
<population year="1994">199141</population>
<population year="2001" measured="census">196524</population>
<population year="2011" measured="census">203493</population>
</city>
<city id="cty-Spain-31" country="E" province="prov-Spain-14">
<name>Leganés</name>
<latitude>40.33</latitude>
<longitude>-3.76</longitude>
<elevation>666.22</elevation>
<population year="1991" measured="census">173163</population>
<population year="1994">178162</population>
<population year="2001" measured="census">173584</population>
<population year="2011" measured="census">185758</population>
</city>
<city id="cty-Spain-36" country="E" province="prov-Spain-14">
<name>Alcalá de Henares</name>
<latitude>40.47</latitude>
<longitude>-3.37</longitude>
<elevation>588</elevation>
<population year="1991" measured="census">163831</population>
<population year="1994">166250</population>
<population year="2001" measured="census">176434</population>
<population year="2011" measured="census">200505</population>
</city>
<city id="cty-Spain-38" country="E" province="prov-Spain-14">
<name>Fuenlabrada</name>
<latitude>40.28</latitude>
<longitude>-3.8</longitude>
<elevation>664</elevation>
<population year="1991" measured="census">167458</population>
<population year="1994">158212</population>
<population year="2001" measured="census">182705</population>
<population year="2011" measured="census">196986</population>
</city>
<city id="cty-Spain-42" country="E" province="prov-Spain-14">
<name>Getafe</name>
<latitude>40.3</latitude>
<longitude>-3.73</longitude>
<elevation>622</elevation>
<population year="1991" measured="census">143629</population>
<population year="1994">144368</population>
<population year="2001" measured="census">151479</population>
<population year="2011" measured="census">168642</population>
</city>
<city id="cty-Spain-43" country="E" province="prov-Spain-14">
<name>Alcorcón</name>
<latitude>40.35</latitude>
<longitude>-3.83</longitude>
<elevation>695</elevation>
<population year="1991" measured="census">143970</population>
<population year="1994">142165</population>
<population year="2001" measured="census">153100</population>
<population year="2011" measured="census">167217</population>
</city>
<city id="cty-Spain-59" country="E" province="prov-Spain-14">
<name>Torrejón de Ardoz</name>
<latitude>40.46</latitude>
<longitude>-3.5</longitude>
<elevation>568</elevation>
<population year="1991" measured="census">91186</population>
<population year="2001" measured="census">97887</population>
<population year="2011" measured="census">123213</population>
</city>
<city id="cty-Spain-60" country="E" province="prov-Spain-14">
<name>Parla</name>
<latitude>40.24</latitude>
<longitude>-3.77</longitude>
<elevation>648.5</elevation>
<population year="2001" measured="census">79213</population>
<population year="2011" measured="census">122045</population>
</city>
<city id="cty-Spain-62" country="E" province="prov-Spain-14">
<name>Alcobendas</name>
<latitude>40.53</latitude>
<longitude>-3.63</longitude>
<elevation>700</elevation>
<population year="1991" measured="census">86146</population>
<population year="2001" measured="census">92090</population>
<population year="2011" measured="census">110351</population>
</city>
</province>
<province id="prov-Spain-15" country="E" capital="cty-Spain-10">
<name>Murcia</name>
<area>11312</area>
<population measured="census" year="1991">1045601</population>
<population year="1994">1070401</population>
<population measured="census" year="2001">1197646</population>
<population measured="census" year="2011">1462128</population>
<city id="cty-Spain-10" country="E" province="prov-Spain-15">
<name>Murcia</name>
<latitude>37.99</latitude>
<longitude>-1.13</longitude>
<elevation>43</elevation>
<population year="1991" measured="census">349040</population>
<population year="1994">341531</population>
<population year="2001" measured="census">370745</population>
<population year="2011" measured="census">437667</population>
</city>
<city id="cty-Spain-30" country="E" province="prov-Spain-15">
<name>Cartagena</name>
<latitude>37.6</latitude>
<longitude>-0.98</longitude>
<elevation>10</elevation>
<population year="1991" measured="census">175628</population>
<population year="1994">179659</population>
<population year="2001" measured="census">184686</population>
<population year="2011" measured="census">215757</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Spain-16" country="E" capital="cty-Spain-29">
<name>Navarra</name>
<area>10573</area>
<population measured="census" year="1991">519277</population>
<population year="1994">523614</population>
<population measured="census" year="2001">555829</population>
<population measured="census" year="2011">640129</population>
<city id="cty-Spain-29" country="E" province="prov-Spain-16">
<name>Pamplona</name>
<name>Iruña</name>
<latitude>42.82</latitude>
<longitude>-1.65</longitude>
<elevation>446</elevation>
<population year="1991" measured="census">171150</population>
<population year="1994">182465</population>
<population year="2001" measured="census">183964</population>
<population year="2011" measured="census">195943</population>
</city>
</province>
<province id="prov-Spain-17" country="E" capital="cty-Spain-49">
<name>La Rioja</name>
<area>5045</area>
<population measured="census" year="1991">263434</population>
<population year="1994">263437</population>
<population measured="census" year="2001">276702</population>
<population measured="census" year="2011">321173</population>
<city id="cty-Spain-49" country="E" province="prov-Spain-17">
<name>Logroño</name>
<latitude>42.47</latitude>
<longitude>-2.45</longitude>
<elevation>384</elevation>
<population year="1991" measured="census">125617</population>
<population year="1994">124823</population>
<population year="2001" measured="census">133058</population>
<population year="2011" measured="census">152698</population>
<located_at watertype="river" river="river-Ebro"/>
</city>
</province>
<province id="prov-Spain-18" country="E" capital="cty-Spain-Valencia">
<name>Valenciana</name>
<area>23253</area>
<population measured="census" year="1991">3856765</population>
<population year="1994">3909047</population>
<population measured="census" year="2001">4162776</population>
<population measured="census" year="2011">5009931</population>
<city id="cty-Spain-Valencia" country="E" province="prov-Spain-18">
<name>Valencia</name>
<latitude>39.47</latitude>
<longitude>-0.38</longitude>
<elevation>15</elevation>
<population year="1991" measured="census">739412</population>
<population year="1994">764293</population>
<population year="2001" measured="census">738441</population>
<population year="2011" measured="census">792054</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Spain-15" country="E" province="prov-Spain-18">
<name>Alicante</name>
<name>Alacant</name>
<latitude>38.35</latitude>
<longitude>-0.48</longitude>
<elevation>5</elevation>
<population year="1991" measured="census">272432</population>
<population year="1994">274964</population>
<population year="2001" measured="census">284580</population>
<population year="2011" measured="census">329325</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Spain-26" country="E" province="prov-Spain-18">
<name>Elche</name>
<name>Elx</name>
<latitude>38.27</latitude>
<longitude>-0.7</longitude>
<elevation>86</elevation>
<population year="1991" measured="census">191713</population>
<population year="1994">191305</population>
<population year="2001" measured="census">194767</population>
<population year="2011" measured="census">227417</population>
</city>
<city id="cty-Spain-45" country="E" province="prov-Spain-18">
<name>Castellón de la Plana</name>
<name>Castelló de la Plana</name>
<latitude>39.98</latitude>
<longitude>-0.03</longitude>
<elevation>30</elevation>
<population year="1991" measured="census">137741</population>
<population year="1994">139094</population>
<population year="2001" measured="census">147667</population>
<population year="2011" measured="census">176298</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
</country>
<country car_code="A"
area="83850"
capital="cty-Austria-Vienna"
memberships="org-AfDB org-ADB org-AG org-BIS org-BSEC org-CEI org-CD org-SELEC org-CE org-EMU org-EAPC org-EBRD org-ECB org-EIB org-CERN org-ESA org-EU org-FATF org-FAO org-G-9 org-IADB org-IGAD org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-ILO org-IMO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PFP org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-MINURSO org-UNFICYP org-UNTSO org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Austria</name>
<localname>Republik Österreich (die)</localname>
<population measured="census" year="1869">4497873</population>
<population measured="census" year="1910">6648310</population>
<population measured="census" year="1934">6760233</population>
<population measured="census" year="1951">6933905</population>
<population measured="census" year="1961">7073807</population>
<population measured="census" year="1971">7491526</population>
<population measured="census" year="1981">7555338</population>
<population measured="census" year="1991">7795786</population>
<population measured="census" year="2001">8032926</population>
<population year="2010" measured="admin.">8375290</population>
<population year="2013" measured="admin.">8499759</population>
<population_growth>0.01</population_growth>
<infant_mortality>4.16</infant_mortality>
<gdp_total>417900</gdp_total>
<gdp_agri>1.6</gdp_agri>
<gdp_ind>28.6</gdp_ind>
<gdp_serv>69.8</gdp_serv>
<inflation>2.1</inflation>
<unemployment>4.9</unemployment>
<indep_date from="Austria-Hungary">1918-11-12</indep_date>
<government>federal republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="91.1">Austrian</ethnicgroup>
<ethnicgroup percentage="1.6">Turkish</ethnicgroup>
<ethnicgroup percentage="1">Slovene</ethnicgroup>
<ethnicgroup percentage="2">Croat</ethnicgroup>
<ethnicgroup percentage="2">Serbs</ethnicgroup>
<ethnicgroup percentage="0.9">German</ethnicgroup>
<religion percentage="73.6">Roman Catholic</religion>
<religion percentage="4.7">Protestant</religion>
<religion percentage="2.2">Christian Orthodox</religion>
<religion percentage="8.2">Muslim</religion>
<language percentage="88.6">German</language>
<language percentage="2.3">Turkish</language>
<language percentage="2.2">Serbian</language>
<language percentage="2.5">Croatian</language>
<language percentage="0.3">Slovene</language>
<language percentage="0.1">Hungarian</language>
<border country="CZ" length="362"/>
<border country="D" length="784"/>
<border country="H" length="366"/>
<border country="I" length="430"/>
<border country="FL" length="37"/>
<border country="SK" length="91"/>
<border country="SLO" length="324"/>
<border country="CH" length="164"/>
<province id="prov-Austria-2" country="A" capital="cty-Austria-Eisenstadt">
<name>Burgenland</name>
<area>3961</area>
<population measured="census" year="2001">277569</population>
<population measured="admin." year="2010">283965</population>
<population measured="admin." year="2013">287470</population>
<city id="cty-Austria-Eisenstadt" country="A" province="prov-Austria-2">
<name>Eisenstadt</name>
<latitude>47.85</latitude>
<longitude>16.52</longitude>
<elevation>182</elevation>
<population year="1981" measured="census">10102</population>
<population year="1991" measured="census">10349</population>
<population year="2001" measured="census">11332</population>
<population year="2010" measured="admin.">13101</population>
<population year="2013" measured="admin.">13485</population>
</city>
</province>
<province id="prov-Austria-3" country="A" capital="cty-Austria-Klagenfurt">
<name>Kärnten</name>
<area>9538</area>
<population measured="census" year="2001">559404</population>
<population measured="admin." year="2010">559315</population>
<population measured="admin." year="2013">555969</population>
<city id="cty-Austria-Klagenfurt" country="A" province="prov-Austria-3">
<name>Klagenfurt</name>
<latitude>46.62</latitude>
<longitude>14.3</longitude>
<elevation>446</elevation>
<population year="1981" measured="census">87321</population>
<population year="1991" measured="census">89415</population>
<population year="2001" measured="census">90141</population>
<population year="2010" measured="admin.">93949</population>
<population year="2013" measured="admin.">96531</population>
</city>
<city id="cty-Austria-Villach" country="A" province="prov-Austria-3">
<name>Villach</name>
<latitude>46.62</latitude>
<longitude>13.85</longitude>
<elevation>501</elevation>
<population year="1981" measured="census">52692</population>
<population year="1991" measured="census">54640</population>
<population year="2001" measured="census">57497</population>
<population year="2010" measured="admin.">59089</population>
<population year="2013" measured="admin.">59942</population>
<located_at watertype="river" river="river-Drau"/>
<located_at watertype="river" river="river-Gail"/>
</city>
</province>
<province id="prov-Austria-4" country="A" capital="cty-Austria-Bregenz">
<name>Vorarlberg</name>
<area>2601</area>
<population measured="census" year="2001">351095</population>
<population measured="admin." year="2010">368868</population>
<population measured="admin." year="2013">374861</population>
<city id="cty-Austria-Bregenz" country="A" province="prov-Austria-4">
<name>Bregenz</name>
<latitude>47.51</latitude>
<longitude>9.75</longitude>
<elevation>427</elevation>
<population year="1981" measured="census">24561</population>
<population year="1991" measured="census">27097</population>
<population year="2001" measured="census">26752</population>
<population year="2011" measured="admin.">27831</population>
<located_at watertype="river" lake="river-BregenzerAch"/>
<located_at watertype="lake" lake="lake-Bodensee"/>
</city>
<city id="cty-Austria-Dornbirn" country="A" province="prov-Austria-4">
<name>Dornbirn</name>
<latitude>47.41</latitude>
<longitude>9.74</longitude>
<elevation>437</elevation>
<population year="1981" measured="census">38641</population>
<population year="1991" measured="census">40735</population>
<population year="2001" measured="census">42301</population>
<population year="2011" measured="admin.">45922</population>
</city>
</province>
<province id="prov-Austria-5" country="A" capital="cty-Austria-Vienna">
<name>Wien</name>
<area>414</area>
<population measured="census" year="2001">1550123</population>
<population measured="admin." year="2010">1698822</population>
<population measured="admin." year="2013">1761738</population>
<city id="cty-Austria-Vienna" country="A" province="prov-Austria-5">
<name>Wien</name>
<name>Vienna</name>
<latitude>48.2</latitude>
<longitude>16.37</longitude>
<elevation>151</elevation>
<population year="1981" measured="census">1531346</population>
<population year="1991" measured="census">1539848</population>
<population year="2001" measured="census">1550123</population>
<population year="2010" measured="admin.">1698822</population>
<population year="2013" measured="admin.">1761738</population>
<located_at watertype="river" river="river-Donau"/>
</city>
</province>
<province id="prov-Austria-6" country="A" capital="cty-Austria-4">
<name>Oberösterreich</name>
<area>11979</area>
<population measured="census" year="2001">1376797</population>
<population measured="admin." year="2010">1411238</population>
<population measured="admin." year="2013">1424910</population>
<city id="cty-Austria-4" country="A" province="prov-Austria-6">
<name>Linz</name>
<latitude>48.3</latitude>
<longitude>14.28</longitude>
<elevation>266</elevation>
<population year="1981" measured="census">199910</population>
<population year="1991" measured="census">203044</population>
<population year="2001" measured="census">183904</population>
<population year="2010" measured="admin.">189311</population>
<population year="2013" measured="admin.">193511</population>
<located_at watertype="river" river="river-Donau"/>
</city>
<city id="cty-Austria-Wels" country="A" province="prov-Austria-6">
<name>Wels</name>
<latitude>48.15</latitude>
<longitude>14.02</longitude>
<elevation>317</elevation>
<population year="1981" measured="census">51060</population>
<population year="1991" measured="census">52594</population>
<population year="2001" measured="census">56478</population>
<population year="2010" measured="admin.">58574</population>
<population year="2013" measured="admin.">59239</population>
</city>
</province>
<province id="prov-Austria-7" country="A" capital="cty-Austria-6">
<name>Tirol</name>
<area>12640</area>
<population measured="census" year="2001">673504</population>
<population measured="admin." year="2010">706873</population>
<population measured="admin." year="2013">720436</population>
<city id="cty-Austria-6" country="A" province="prov-Austria-7">
<name>Innsbruck</name>
<latitude>47.27</latitude>
<longitude>11.38</longitude>
<elevation>574</elevation>
<population year="1981" measured="census">117287</population>
<population year="1991" measured="census">118112</population>
<population year="2001" measured="census">113392</population>
<population year="2010" measured="admin.">119249</population>
<population year="2013" measured="admin.">124386</population>
<located_at watertype="river" river="river-Inn"/>
</city>
<city id="cty-Austria-Lienz" country="A" province="prov-Austria-7">
<name>Lienz</name>
<latitude>46.83</latitude>
<longitude>12.77</longitude>
<elevation>673</elevation>
<population year="1981" measured="census">11661</population>
<population year="1991" measured="census">11864</population>
<population year="2001" measured="census">12079</population>
<population year="2016" measured="admin.">12046</population>
<located_at watertype="river" river="river-Drau"/>
</city>
</province>
<province id="prov-Austria-8" country="A" capital="cty-Austria-3">
<name>Steiermark</name>
<area>16401</area>
<population measured="census" year="2001">1183303</population>
<population measured="admin." year="2010">1208372</population>
<population measured="admin." year="2013">1214945</population>
<city id="cty-Austria-3" country="A" province="prov-Austria-8">
<name>Graz</name>
<latitude>47.07</latitude>
<longitude>15.43</longitude>
<elevation>353</elevation>
<population year="1981" measured="census">243166</population>
<population year="1991" measured="census">237810</population>
<population year="2001" measured="census">226244</population>
<population year="2010" measured="admin.">257328</population>
<population year="2013" measured="admin.">269211</population>
<located_at watertype="river" river="river-Mur"/>
</city>
</province>
<province id="prov-Austria-9" country="A" capital="cty-Austria-5">
<name>Salzburg</name>
<area>7156</area>
<population measured="census" year="2001">515327</population>
<population measured="admin." year="2010">529861</population>
<population measured="admin." year="2013">534030</population>
<city id="cty-Austria-5" country="A" province="prov-Austria-9">
<name>Salzburg</name>
<latitude>47.8</latitude>
<longitude>13.03</longitude>
<elevation>424</elevation>
<population year="1981" measured="census">139426</population>
<population year="1991" measured="census">143978</population>
<population year="2001" measured="census">142662</population>
<population year="2010" measured="admin.">147571</population>
<population year="2013" measured="admin.">146676</population>
<located_at watertype="river" river="river-Salzach"/>
</city>
</province>
<province id="prov-Austria-10" country="A" capital="cty-Austria-St-Polten">
<name>Niederösterreich</name>
<area>19186</area>
<population measured="census" year="2001">1545804</population>
<population measured="admin." year="2010">1607976</population>
<population measured="admin." year="2013">1625400</population>
<city id="cty-Austria-St-Polten" country="A" province="prov-Austria-10">
<name>St. Pölten</name>
<latitude>48.2</latitude>
<longitude>15.62</longitude>
<elevation>267</elevation>
<population measured="census" year="1981">50419</population>
<population measured="census" year="1991">50026</population>
<population measured="census" year="2001">49121</population>
<population year="2011" measured="admin.">51955</population>
<population year="2013" measured="admin.">52100</population>
</city>
</province>
</country>
<country car_code="CZ"
area="78703"
capital="cty-Czech-2"
memberships="org-AG org-BIS org-BSEC org-CEI org-CD org-CE org-EAPC org-EBRD org-EIB org-CERN org-ESA org-EU org-FAO org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNIDO org-MONUSCO org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Czech Republic</name>
<population measured="est." year="1950">8876260</population>
<population measured="est." year="1960">9577974</population>
<population measured="est." year="1970">9827923</population>
<population measured="est." year="1980">10313309</population>
<population measured="est." year="1990">10325976</population>
<population year="1997">10321120</population>
<population measured="est." year="2000">10250398</population>
<population year="2001" measured="census">10230060</population>
<population year="2011" measured="census">10562214</population>
<population_growth>0.17</population_growth>
<infant_mortality>2.63</infant_mortality>
<gdp_total>194800</gdp_total>
<gdp_agri>2.4</gdp_agri>
<gdp_ind>37.3</gdp_ind>
<gdp_serv>60.3</gdp_serv>
<inflation>1.4</inflation>
<unemployment>7.1</unemployment>
<indep_date from="Czechoslovakia">1993-01-01</indep_date>
<government>parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="90.4">Czech</ethnicgroup>
<ethnicgroup percentage="3.7">Moravian</ethnicgroup>
<ethnicgroup percentage="1.9">Slovak</ethnicgroup>
<ethnicgroup percentage="0.5">German</ethnicgroup>
<ethnicgroup percentage="0.6">Polish</ethnicgroup>
<ethnicgroup percentage="0.3">Roma</ethnicgroup>
<ethnicgroup percentage="0.2">Hungarian</ethnicgroup>
<religion percentage="26.8">Roman Catholic</religion>
<religion percentage="2.1">Protestant</religion>
<language percentage="94.9">Czech</language>
<language percentage="2">Slovak</language>
<border country="A" length="362"/>
<border country="D" length="646"/>
<border country="SK" length="215"/>
<border country="PL" length="658"/>
<province id="prov-Czech-1" country="CZ" capital="cty-Czech-2">
<name>Praha</name>
<area>496</area>
<population measured="census" year="2001">1169106</population>
<population measured="census" year="2011">1272690</population>
<city id="cty-Czech-2" country="CZ" province="prov-Czech-1">
<name>Praha</name>
<name>Prague</name>
<latitude>50.08</latitude>
<longitude>14.42</longitude>
<elevation>399</elevation>
<population year="1990">1215000</population>
<population year="2001" measured="census">1169106</population>
<population year="2011" measured="estimate">1289556</population>
<located_at watertype="river" river="river-Moldau"/>
</city>
</province>
<province id="prov-Czech-2" country="CZ" capital="cty-Czech-8">
<name>Jihočeský</name>
<area>10056</area>
<population measured="census" year="2001">625267</population>
<population measured="census" year="2011">637460</population>
<city id="cty-Czech-8" country="CZ" province="prov-Czech-2">
<name>České Budějovice</name>
<latitude>48.97</latitude>
<longitude>14.47</longitude>
<elevation>381</elevation>
<population year="1990">174000</population>
<population year="2001" measured="census">97339</population>
<population year="2011" measured="estimate">95589</population>
<located_at watertype="river" river="river-Moldau"/>
</city>
</province>
<province id="prov-Czech-3" country="CZ" capital="cty-Czech-3">
<name>Jihomoravský</name>
<area>7194</area>
<population measured="census" year="2001">1134786</population>
<population measured="census" year="2011">1169788</population>
<city id="cty-Czech-3" country="CZ" province="prov-Czech-3">
<name>Brno</name>
<latitude>49.2</latitude>
<longitude>16.62</longitude>
<elevation>237</elevation>
<population year="1990">393000</population>
<population year="2001" measured="census">376172</population>
<population year="2011" measured="estimate">404820</population>
</city>
</province>
<province id="prov-Czech-4" country="CZ" capital="cty-Czech-Karlovy">
<name>Karlovarský</name>
<area>3314</area>
<population measured="census" year="2001">304343</population>
<population measured="census" year="2011">310245</population>
<city id="cty-Czech-Karlovy" country="CZ" province="prov-Czech-4">
<name>Karlovy Vary</name>
<latitude>50.23</latitude>
<longitude>12.87</longitude>
<elevation>447</elevation>
<population year="2001" measured="census">53358</population>
<population year="2011" measured="estimate">53310</population>
</city>
</province>
<province id="prov-Czech-5" country="CZ" capital="cty-Czech-Jihlava">
<name>Vysočina</name>
<area>6795</area>
<population measured="census" year="2001">512143</population>
<population measured="census" year="2011">512727</population>
<city id="cty-Czech-Jihlava" country="CZ" province="prov-Czech-5">
<name>Jihlava</name>
<latitude>49.4</latitude>
<longitude>15.59</longitude>
<elevation>525</elevation>
<population year="2001" measured="census">50702</population>
<population year="2011" measured="estimate">51162</population>
</city>
</province>
<province id="prov-Czech-6" country="CZ" capital="cty-Czech-9">
<name>Královéhradecký</name>
<area>4758</area>
<population measured="census" year="2001">550724</population>
<population measured="census" year="2011">555683</population>
<city id="cty-Czech-9" country="CZ" province="prov-Czech-6">
<name>Hradec Králové</name>
<latitude>50.21</latitude>
<longitude>15.83</longitude>
<elevation>235</elevation>
<population year="1990">164000</population>
<population year="2001" measured="census">97155</population>
<population year="2011" measured="estimate">95594</population>
<located_at watertype="river" river="river-Elbe"/>
</city>
</province>
<province id="prov-Czech-7" country="CZ" capital="cty-Czech-11">
<name>Liberecký</name>
<area>3162</area>
<population measured="census" year="2001">428184</population>
<population measured="census" year="2011">439262</population>
<city id="cty-Czech-11" country="CZ" province="prov-Czech-7">
<name>Liberec</name>
<latitude>50.72</latitude>
<longitude>15.07</longitude>
<elevation>374</elevation>
<population year="1990">160000</population>
<population year="2001" measured="census">99102</population>
<population year="2011" measured="estimate">104973</population>
<located_at watertype="river" river="river-Neisse"/>
</city>
</province>
<province id="prov-Czech-8" country="CZ" capital="cty-Czech-4">
<name>Moravskoslezský</name>
<area>5426</area>
<population measured="census" year="2001">1265019</population>
<population measured="census" year="2011">1236028</population>
<city id="cty-Czech-4" country="CZ" province="prov-Czech-8">
<name>Ostrava</name>
<latitude>49.84</latitude>
<longitude>18.29</longitude>
<elevation>335</elevation>
<population year="1990">331466</population>
<population year="2001" measured="census">316744</population>
<population year="2011" measured="estimate">311508</population>
<located_at watertype="river" river="river-Oder"/>
</city>
</province>
<province id="prov-Czech-9" country="CZ" capital="cty-Czech-5">
<name>Olomoucký</name>
<area>5266</area>
<population measured="census" year="2001">643817</population>
<population measured="census" year="2011">639946</population>
<city id="cty-Czech-5" country="CZ" province="prov-Czech-9">
<name>Olomouc</name>
<latitude>49.6</latitude>
<longitude>17.25</longitude>
<elevation>219</elevation>
<population year="1970">49407</population>
<population year="1979">102501</population>
<population year="1985">105513</population>
<population year="2001" measured="census">102607</population>
<population year="2011" measured="estimate">101954</population>
<located_at watertype="river" river="river-March"/>
</city>
</province>
<province id="prov-Czech-10" country="CZ" capital="cty-Czech-10">
<name>Pardubický</name>
<area>4518</area>
<population measured="census" year="2001">508281</population>
<population measured="census" year="2011">518228</population>
<city id="cty-Czech-10" country="CZ" province="prov-Czech-10">
<name>Pardubice</name>
<latitude>50.04</latitude>
<longitude>15.78</longitude>
<elevation>237</elevation>
<population year="1990">163000</population>
<population year="2001" measured="census">90889</population>
<population year="2011" measured="estimate">90844</population>
<located_at watertype="river" river="river-Elbe"/>
</city>
</province>
<province id="prov-Czech-11" country="CZ" capital="cty-Czech-7">
<name>Plzeňský</name>
<area>7560</area>
<population measured="census" year="2001">550688</population>
<population measured="census" year="2011">574694</population>
<city id="cty-Czech-7" country="CZ" province="prov-Czech-11">
<name>Plzeň</name>
<latitude>49.75</latitude>
<longitude>13.38</longitude>
<elevation>308</elevation>
<population year="1990">175000</population>
<population year="2001" measured="census">166118</population>
<population year="2011" measured="estimate">171346</population>
</city>
</province>
<province id="prov-Czech-12" country="CZ" capital="cty-Czech-2">
<name>Středočeský</name>
<area>11014</area>
<population measured="census" year="2001">1122473</population>
<population measured="census" year="2011">1274633</population>
</province>
<province id="prov-Czech-13" country="CZ" capital="cty-Czech-Usti-nad-Labem">
<name>Ústecký</name>
<area>5334</area>
<population measured="census" year="2001">820219</population>
<population measured="census" year="2011">830371</population>
<city id="cty-Czech-Usti-nad-Labem" country="CZ" province="prov-Czech-13">
<name>Ústí nad Labem</name>
<latitude>50.66</latitude>
<longitude>14.04</longitude>
<elevation>218</elevation>
<population year="2001" measured="census">95436</population>
<population year="2011" measured="estimate">98596</population>
<located_at watertype="river" river="river-Elbe"/>
</city>
</province>
<province id="prov-Czech-14" country="CZ" capital="cty-Czech-6">
<name>Zlínský</name>
<area>3963</area>
<population measured="census" year="2001">595010</population>
<population measured="census" year="2011">590459</population>
<city id="cty-Czech-6" country="CZ" province="prov-Czech-14">
<name>Zlín</name>
<latitude>49.23</latitude>
<longitude>17.67</longitude>
<elevation>230</elevation>
<population year="1990">198000</population>
<population year="2001" measured="census">78833</population>
<population year="2011" measured="estimate">77137</population>
</city>
</province>
</country>
<country car_code="D"
area="356910"
capital="cty-Germany-Berlin"
memberships="org-AfDB org-UNAMID org-ADB org-AG org-BIS org-BSEC org-CDB org-SICA org-CD org-SELEC org-CE org-CBSS org-EMU org-EAPC org-EBRD org-ECB org-EIB org-CERN org-ESA org-EU org-EITI org-FATF org-FAO org-G-10 org-G-20 org-G-5 org-G-7 org-G-8 org-IADB org-IGAD org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-ITUC org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-UNMISS org-UNRWA org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Germany</name>
<localname>Bundesrepublik Deutschland (die)</localname>
<population measured="census" year="1950">
68230796</population>
<population year="1997" measured="admin.">82501000</population>
<population year="2007" measured="admin.">82217837</population>
<population year="2011" measured="census">80219695</population>
<population year="2016" measured="admin.">82521653</population>
<population_growth>-0.18</population_growth>
<infant_mortality>3.46</infant_mortality>
<gdp_total>3593000</gdp_total>
<gdp_agri>0.8</gdp_agri>
<gdp_ind>30.1</gdp_ind>
<gdp_serv>69</gdp_serv>
<inflation>1.6</inflation>
<unemployment>5.3</unemployment>
<indep_date>1871-01-18</indep_date>
<government>federal republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="91.5">German</ethnicgroup>
<ethnicgroup percentage="2.4">Turkish</ethnicgroup>
<religion percentage="28.9">Roman Catholic</religion>
<religion percentage="27.1">Protestant</religion>
<religion percentage="5.5">Muslim</religion>
<religion percentage="0.3">Buddhist</religion>
<language percentage="100">German</language>
<border country="F" length="451"/>
<border country="A" length="784"/>
<border country="CZ" length="646"/>
<border country="CH" length="334"/>
<border country="PL" length="456"/>
<border country="B" length="167"/>
<border country="L" length="138"/>
<border country="NL" length="577"/>
<border country="DK" length="68"/>
<province id="prov-Germany-2" country="D" capital="cty-Germany-9">
<name>Baden-Württemberg</name>
<area>35751</area>
<population year="1995">10272069</population>
<population measured="admin." year="1997">10396610</population>
<population measured="admin." year="2007">10749755</population>
<population measured="census" year="2011">10486660</population>
<population year="2016" measured="admin.">10951893</population>
<city id="cty-Germany-9" country="D" province="prov-Germany-2">
<name>Stuttgart</name>
<latitude>48.78</latitude>
<longitude>9.18</longitude>
<elevation>247</elevation>
<population measured="census" year="1987">551904</population>
<population year="1992" measured="admin.">599415</population>
<population year="2000" measured="admin.">582443</population>
<population year="2011" measured="census">585890</population>
<located_at watertype="river" river="river-Neckar"/>
</city>
<city id="cty-Germany-Mannheim" country="D" province="prov-Germany-2">
<name>Mannheim</name>
<latitude>49.49</latitude>
<longitude>8.47</longitude>
<elevation>97</elevation>
<population measured="census" year="1987">295191</population>
<population year="1992" measured="admin.">318446</population>
<population year="2000" measured="admin.">307730</population>
<population year="2011" measured="census">290117</population>
<located_at watertype="river" river="river-Rhein"/>
<located_at watertype="river" river="river-Neckar"/>
</city>
<city id="cty-Germany-24" country="D" province="prov-Germany-2">
<name>Karlsruhe</name>
<latitude>49.01</latitude>
<longitude>8.4</longitude>
<elevation>115</elevation>
<population measured="census" year="1987">260591</population>
<population year="1992" measured="admin.">279329</population>
<population year="2000" measured="admin.">277204</population>
<population year="2011" measured="census">289173</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
<city id="cty-Germany-41" country="D" province="prov-Germany-2">
<name>Freiburg</name>
<name>Freiburg im Breisgau</name>
<latitude>47.98</latitude>
<longitude>7.85</longitude>
<elevation>278</elevation>
<population measured="census" year="1987">178672</population>
<population measured="census" year="2011">209628</population>
</city>
<city id="cty-Germany-54" country="D" province="prov-Germany-2">
<name>Heidelberg</name>
<latitude>49.42</latitude>
<longitude>8.72</longitude>
<elevation>114</elevation>
<population measured="census" year="1987">127768</population>
<population measured="census" year="2011">146751</population>
<located_at watertype="river" river="river-Neckar"/>
</city>
<city id="cty-Germany-66" country="D" province="prov-Germany-2">
<name>Heilbronn</name>
<latitude>49.15</latitude>
<longitude>9.22</longitude>
<elevation>157</elevation>
<population measured="census" year="1987">110970</population>
<population measured="census" year="2011">116059</population>
<located_at watertype="river" river="river-Neckar"/>
</city>
<city id="cty-Germany-69" country="D" province="prov-Germany-2">
<name>Pforzheim</name>
<latitude>48.9</latitude>
<longitude>8.72</longitude>
<elevation>261</elevation>
<population measured="census" year="1987">106530</population>
<population measured="census" year="2011">114411</population>
<located_at watertype="river" river="river-Enz"/>
</city>
<city id="cty-Germany-72" country="D" province="prov-Germany-2">
<name>Ulm</name>
<latitude>48.4</latitude>
<longitude>9.98</longitude>
<elevation>478</elevation>
<population measured="census" year="1987">103494</population>
<population measured="census" year="2011">116761</population>
<located_at watertype="river" river="river-Donau"/>
<located_at watertype="river" river="river-Iller"/>
</city>
<city id="cty-Germany-77" country="D" province="prov-Germany-2">
<name>Reutlingen</name>
<latitude>48.48</latitude>
<longitude>9.22</longitude>
<elevation>382</elevation>
<population measured="census" year="1987">98853</population>
<population measured="census" year="2011">109799</population>
</city>
</province>
<province id="prov-Germany-3" country="D" capital="cty-Germany-Munich">
<name>Bayern</name>
<area>70550</area>
<population year="1995">11921944</population>
<population measured="admin." year="1997">12055123</population>
<population measured="admin." year="2007">12520332</population>
<population measured="census" year="2011">12397614</population>
<population year="2016" measured="admin.">12930751</population>
<city id="cty-Germany-Munich" country="D" province="prov-Germany-3">
<name>München</name>
<name>Munich</name>
<latitude>48.13</latitude>
<longitude>11.57</longitude>
<elevation>519</elevation>
<population measured="census" year="1987">1185421</population>
<population year="1992" measured="admin.">1256638</population>
<population year="2000" measured="admin.">1210223</population>
<population year="2011" measured="census">1348335</population>
<located_at watertype="river" river="river-Isar"/>
</city>
<city id="cty-Germany-14" country="D" province="prov-Germany-3">
<name>Nürnberg</name>
<name>Nuremberg</name>
<latitude>49.45</latitude>
<longitude>11.08</longitude>
<elevation>309</elevation>
<population measured="census" year="1987">470943</population>
<population year="1992" measured="admin.">500198</population>
<population year="2000" measured="admin.">488400</population>
<population year="2011" measured="census">486314</population>
</city>
<city id="cty-Germany-30" country="D" province="prov-Germany-3">
<name>Augsburg</name>
<latitude>48.37</latitude>
<longitude>10.9</longitude>
<elevation>494</elevation>
<population measured="census" year="1987">242819</population>
<population year="1992" measured="admin.">264852</population>
<population year="2000" measured="admin.">254982</population>
<population year="2011" measured="census">267767</population>
<located_at watertype="river" river="river-Lech"/>
</city>
<city id="cty-Germany-58" country="D" province="prov-Germany-3">
<name>Würzburg</name>
<latitude>49.78</latitude>
<longitude>9.93</longitude>
<elevation>177</elevation>
<population measured="census" year="1987">123378</population>
<population measured="census" year="2011">124297</population>
<located_at watertype="river" river="river-Main"/>
</city>
<city id="cty-Germany-64" country="D" province="prov-Germany-3">
<name>Regensburg</name>
<latitude>49.02</latitude>
<longitude>12.08</longitude>
<elevation>337</elevation>
<population measured="census" year="1987">118639</population>
<population measured="census" year="2011">135403</population>
<located_at watertype="river" river="river-Donau"/>
<located_at watertype="river" river="river-Regen"/>
</city>
<city id="cty-Germany-74" country="D" province="prov-Germany-3">
<name>Ingolstadt</name>
<latitude>48.77</latitude>
<longitude>11.43</longitude>
<elevation>374</elevation>
<population measured="census" year="1987">96071</population>
<population measured="census" year="2011">124927</population>
<located_at watertype="river" river="river-Donau"/>
</city>
<city id="cty-Germany-76" country="D" province="prov-Germany-3">
<name>Fürth</name>
<latitude>49.47</latitude>
<longitude>11</longitude>
<elevation>294</elevation>
<population measured="census" year="1987">97480</population>
<population measured="census" year="2011">115613</population>
</city>
<city id="cty-Germany-85" country="D" province="prov-Germany-3">
<name>Erlangen</name>
<latitude>49.58</latitude>
<longitude>11.02</longitude>
<elevation>279</elevation>
<population measured="census" year="1987">99808</population>
<population measured="census" year="2011">103719</population>
</city>
</province>
<province id="prov-Germany-4" country="D" capital="cty-Germany-Berlin">
<name>Berlin</name>
<area>891</area>
<population measured="admin." year="1997">3445033</population>
<population measured="admin." year="2007">3416255</population>
<population measured="census" year="2011">3292365</population>
<population year="2016" measured="admin.">3574830</population>
<city id="cty-Germany-Berlin" country="D" province="prov-Germany-4">
<name>Berlin</name>
<latitude>52.52</latitude>
<longitude>13.38</longitude>
<elevation>34</elevation>
<population measured="census" year="1987">3260000</population>
<population year="1992" measured="admin.">3465748</population>
<population year="2000" measured="admin.">3382169</population>
<population year="2011" measured="census">3292365</population>
<located_at watertype="river" river="river-Havel"/>
<located_at watertype="river" river="river-Spree"/>
</city>
</province>
<province id="prov-Germany-5" country="D" capital="cty-Germany-55">
<name>Brandenburg</name>
<area>29483</area>
<population year="1995">2536747</population>
<population measured="admin." year="1997">2563407</population>
<population measured="admin." year="2007">2535737</population>
<population measured="census" year="2011">2455780</population>
<population year="2016" measured="admin.">2494648</population>
<city id="cty-Germany-55" country="D" province="prov-Germany-5">
<name>Potsdam</name>
<latitude>52.4</latitude>
<longitude>13.07</longitude>
<elevation>32</elevation>
<population measured="census" year="2011">156021</population>
<located_at watertype="river" river="river-Havel"/>
</city>
<city id="cty-Germany-63" country="D" province="prov-Germany-5">
<name>Cottbus</name>
<latitude>51.76</latitude>
<longitude>14.33</longitude>
<elevation>75</elevation>
<population measured="census" year="2011">99984</population>
<located_at watertype="river" river="river-Spree"/>
</city>
</province>
<province id="prov-Germany-6" country="D" capital="cty-Germany-11">
<name>Bremen</name>
<area>419</area>
<population measured="admin." year="1997">676069</population>
<population measured="admin." year="2007">663082</population>
<population measured="census" year="2011">650863</population>
<population year="2016" measured="admin.">678753</population>
<city id="cty-Germany-11" country="D" province="prov-Germany-6">
<name>Bremen</name>
<latitude>53.08</latitude>
<longitude>8.8</longitude>
<elevation>11</elevation>
<population measured="census" year="1987">533455</population>
<population year="1992" measured="admin.">554377</population>
<population year="2000" measured="admin.">539403</population>
<population year="2011" measured="census">542707</population>
<located_at watertype="river" river="river-Weser"/>
</city>
<city id="cty-Germany-57" country="D" province="prov-Germany-6">
<name>Bremerhaven</name>
<latitude>53.55</latitude>
<longitude>8.58</longitude>
<elevation>2</elevation>
<population measured="census" year="1987">126629</population>
<population measured="census" year="2011">108156</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
<located_at watertype="river" river="river-Weser"/>
</city>
</province>
<province id="prov-Germany-7" country="D" capital="cty-Germany-Hamburg">
<name>Hamburg</name>
<area>755</area>
<population year="1995">1705872</population>
<population measured="admin." year="1997">1707356</population>
<population measured="admin." year="2007">1770629</population>
<population measured="census" year="2011">1706696</population>
<population year="2016" measured="admin.">1810438</population>
<city id="cty-Germany-Hamburg" country="D" province="prov-Germany-7">
<name>Hamburg</name>
<latitude>53.57</latitude>
<longitude>10</longitude>
<elevation>6</elevation>
<population measured="census" year="1987">1592770</population>
<population year="1992" measured="admin.">1688785</population>
<population year="2000" measured="admin.">1715392</population>
<population year="2011" measured="census">1706696</population>
<located_at watertype="river" river="river-Elbe"/>
</city>
</province>
<province id="prov-Germany-8" country="D" capital="cty-Germany-26">
<name>Hessen</name>
<area>21114</area>
<population year="1995">5980693</population>
<population measured="admin." year="1997">6031350</population>
<population measured="admin." year="2007">6072555</population>
<population measured="census" year="2011">5971816</population>
<population year="2016" measured="admin.">6213088</population>
<city id="cty-Germany-26" country="D" province="prov-Germany-8">
<name>Wiesbaden</name>
<latitude>50.08</latitude>
<longitude>8.24</longitude>
<elevation>117</elevation>
<population measured="census" year="1987">251871</population>
<population year="1992" measured="admin.">268069</population>
<population year="2000" measured="admin.">270109</population>
<population year="2011" measured="census">269121</population>
<located_at watertype="river" river="river-Rhein"/>
<located_at watertype="river" river="river-Main"/>
</city>
<city id="cty-Germany-6" country="D" province="prov-Germany-8">
<name>Frankfurt am Main</name>
<name>Frankfurt</name>
<latitude>50.12</latitude>
<longitude>8.68</longitude>
<elevation>112</elevation>
<population measured="census" year="1987">618266</population>
<population year="1992" measured="admin.">663952</population>
<population year="2000" measured="admin.">646550</population>
<population year="2011" measured="census">667925</population>
<located_at watertype="river" river="river-Main"/>
</city>
<city id="cty-Germany-40" country="D" province="prov-Germany-8">
<name>Kassel</name>
<latitude>51.32</latitude>
<longitude>9.5</longitude>
<elevation>167</elevation>
<population measured="census" year="1987">187288</population>
<population measured="census" year="2011">190765</population>
<located_at watertype="river" river="river-Fulda"/>
</city>
<city id="cty-Germany-53" country="D" province="prov-Germany-8">
<name>Darmstadt</name>
<latitude>49.87</latitude>
<longitude>8.65</longitude>
<elevation>144</elevation>
<population measured="census" year="1987">134272</population>
<population measured="census" year="2011">143499</population>
</city>
<city id="cty-Germany-71" country="D" province="prov-Germany-8">
<name>Offenbach am Main</name>
<name>Offenbach</name>
<latitude>50.1</latitude>
<longitude>8.8</longitude>
<elevation>98</elevation>
<population measured="census" year="1987">111386</population>
<population measured="census" year="2011">113443</population>
<located_at watertype="river" river="river-Main"/>
</city>
</province>
<province id="prov-Germany-9" country="D" capital="cty-Germany-68">
<name>Mecklenburg-Vorpommern</name>
<area>23194</area>
<population measured="admin." year="1997">1812506</population>
<population measured="admin." year="2007">1679682</population>
<population measured="census" year="2011">1609982</population>
<population year="2016" measured="admin.">1610674</population>
<city id="cty-Germany-68" country="D" province="prov-Germany-9">
<name>Schwerin</name>
<latitude>53.63</latitude>
<longitude>11.42</longitude>
<elevation>44</elevation>
<population measured="census" year="1987">128328</population>
<population measured="census" year="2011">91293</population>
</city>
<city id="cty-Germany-35" country="D" province="prov-Germany-9">
<name>Rostock</name>
<latitude>54.08</latitude>
<longitude>12.13</longitude>
<elevation>14</elevation>
<population measured="census" year="1987">249349</population>
<population measured="census" year="2011">200265</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-Germany-10" country="D" capital="cty-Germany-Hannover">
<name>Niedersachsen</name>
<area>47613</area>
<population year="1995">7715363</population>
<population measured="admin." year="1997">7830274</population>
<population measured="admin." year="2007">7971684</population>
<population measured="census" year="2011">7777992</population>
<population year="2016" measured="admin.">7945685</population>
<city id="cty-Germany-Hannover" country="D" province="prov-Germany-10">
<name>Hannover</name>
<name>Hanover</name>
<latitude>52.37</latitude>
<longitude>9.72</longitude>
<elevation>55</elevation>
<population measured="census" year="1987">494864</population>
<population year="1992" measured="admin.">523627</population>
<population year="2000" measured="admin.">515001</population>
<population year="2011" measured="census">506416</population>
<located_at watertype="river" river="river-Leine"/>
</city>
<city id="cty-Germany-31" country="D" province="prov-Germany-10">
<name>Braunschweig</name>
<latitude>52.27</latitude>
<longitude>10.52</longitude>
<elevation>75</elevation>
<population measured="census" year="1987">252351</population>
<population measured="census" year="2011">242537</population>
</city>
<city id="cty-Germany-47" country="D" province="prov-Germany-10">
<name>Osnabrück</name>
<latitude>52.28</latitude>
<longitude>8.05</longitude>
<elevation>63</elevation>
<population measured="census" year="1987">150807</population>
<population measured="census" year="2011">153699</population>
</city>
<city id="cty-Germany-51" country="D" province="prov-Germany-10">
<name>Oldenburg</name>
<latitude>53.14</latitude>
<longitude>8.21</longitude>
<elevation>5</elevation>
<population measured="census" year="1987">140149</population>
<population measured="census" year="2011">157267</population>
</city>
<city id="cty-Germany-59" country="D" province="prov-Germany-10">
<name>Göttingen</name>
<latitude>51.53</latitude>
<longitude>9.94</longitude>
<elevation>150</elevation>
<population measured="census" year="1987">114698</population>
<population measured="census" year="2011">115843</population>
<located_at watertype="river" river="river-Leine"/>
</city>
<city id="cty-Germany-61" country="D" province="prov-Germany-10">
<name>Wolfsburg</name>
<latitude>52.42</latitude>
<longitude>10.79</longitude>
<elevation>63</elevation>
<population measured="census" year="1987">124896</population>
<population measured="census" year="2011">119984</population>
<located_at watertype="river" river="river-Aller"/>
</city>
<city id="cty-Germany-70" country="D" province="prov-Germany-10">
<name>Salzgitter</name>
<latitude>52.15</latitude>
<longitude>10.33</longitude>
<elevation>90</elevation>
<population measured="census" year="1987">111069</population>
<population measured="census" year="2011">98895</population>
</city>
<city id="cty-Germany-79" country="D" province="prov-Germany-10">
<name>Hildesheim</name>
<latitude>52.15</latitude>
<longitude>9.95</longitude>
<elevation>81</elevation>
<population measured="census" year="1987">103449</population>
<population measured="census" year="2011">99554</population>
</city>
</province>
<province id="prov-Germany-11" country="D" capital="cty-Germany-10">
<name>Nordrhein-Westfalen</name>
<area>34097</area>
<population year="1995">17816079</population>
<population measured="admin." year="1997">17961101</population>
<population measured="admin." year="2007">17996621</population>
<population measured="census" year="2011">17538251</population>
<population year="2016" measured="admin.">17890100</population>
<city id="cty-Germany-10" country="D" province="prov-Germany-11">
<name>Düsseldorf</name>
<latitude>51.23</latitude>
<longitude>6.78</longitude>
<elevation>38</elevation>
<population measured="census" year="1987">563531</population>
<population year="1992" measured="admin.">578135</population>
<population year="2000" measured="admin.">569364</population>
<population year="2011" measured="census">586291</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
<city id="cty-Germany-5" country="D" province="prov-Germany-11">
<name>Köln</name>
<name>Cologne</name>
<latitude>50.94</latitude>
<longitude>6.95</longitude>
<elevation>53</elevation>
<population measured="census" year="1987">928309</population>
<population year="1992" measured="admin.">960631</population>
<population year="2000" measured="admin.">962884</population>
<population year="2011" measured="census">1005775</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
<city id="cty-Germany-7" country="D" province="prov-Germany-11">
<name>Essen</name>
<latitude>51.45</latitude>
<longitude>7.01</longitude>
<elevation>116</elevation>
<population measured="census" year="1987">623427</population>
<population year="1992" measured="admin.">627269</population>
<population year="2000" measured="admin.">595243</population>
<population year="2011" measured="census">566201</population>
<located_at watertype="river" river="river-Ruhr"/>
</city>
<city id="cty-Germany-8" country="D" province="prov-Germany-11">
<name>Dortmund</name>
<latitude>51.52</latitude>
<longitude>7.47</longitude>
<elevation>86</elevation>
<population measured="census" year="1987">584089</population>
<population year="1992" measured="admin.">600669</population>
<population year="2000" measured="admin.">588994</population>
<population year="2011" measured="census">571143</population>
<located_at watertype="river" river="river-Ruhr"/>
</city>
<city id="cty-Germany-12" country="D" province="prov-Germany-11">
<name>Duisburg</name>
<latitude>51.44</latitude>
<longitude>6.76</longitude>
<elevation>33</elevation>
<population measured="census" year="1987">525378</population>
<population year="1992" measured="admin.">539094</population>
<population year="2000" measured="admin.">514915</population>
<population year="2011" measured="census">488468</population>
<located_at watertype="river" river="river-Rhein"/>
<located_at watertype="river" river="river-Ruhr"/>
</city>
<city id="cty-Germany-17" country="D" province="prov-Germany-11">
<name>Bochum</name>
<latitude>51.48</latitude>
<longitude>7.22</longitude>
<elevation>100</elevation>
<population measured="census" year="1987">386271</population>
<population year="1992" measured="admin.">400356</population>
<population year="2000" measured="admin.">391147</population>
<population year="2011" measured="census">362286</population>
<located_at watertype="river" river="river-Ruhr"/>
</city>
<city id="cty-Germany-18" country="D" province="prov-Germany-11">
<name>Wuppertal</name>
<latitude>51.27</latitude>
<longitude>7.18</longitude>
<elevation>160</elevation>
<population measured="census" year="1987">365662</population>
<population year="1992" measured="admin.">388102</population>
<population year="2000" measured="admin.">366434</population>
<population year="2011" measured="census">342661</population>
</city>
<city id="cty-Germany-19" country="D" province="prov-Germany-11">
<name>Bielefeld</name>
<latitude>52.02</latitude>
<longitude>8.52</longitude>
<elevation>118</elevation>
<population measured="census" year="1987">305566</population>
<population year="1992" measured="admin.">324287</population>
<population year="2000" measured="admin.">321758</population>
<population year="2011" measured="census">326870</population>
</city>
<city id="cty-Germany-21" country="D" province="prov-Germany-11">
<name>Gelsenkirchen</name>
<latitude>51.52</latitude>
<longitude>7.1</longitude>
<elevation>48</elevation>
<population measured="census" year="1987">287508</population>
<population year="1992" measured="admin.">295368</population>
<population year="2000" measured="admin.">278695</population>
<population year="2011" measured="census">258766</population>
</city>
<city id="cty-Germany-22" country="D" province="prov-Germany-11">
<name>Bonn</name>
<latitude>50.73</latitude>
<longitude>7.1</longitude>
<elevation>60</elevation>
<population measured="census" year="1987">276653</population>
<population year="1992" measured="admin.">298227</population>
<population year="2000" measured="admin.">302247</population>
<population year="2011" measured="census">305765</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
<city id="cty-Germany-27" country="D" province="prov-Germany-11">
<name>Mönchengladbach</name>
<latitude>51.2</latitude>
<longitude>6.43</longitude>
<elevation>70</elevation>
<population measured="census" year="1987">249587</population>
<population year="1992" measured="admin.">265069</population>
<population year="2000" measured="admin.">263014</population>
<population year="2011" measured="census">255188</population>
</city>
<city id="cty-Germany-29" country="D" province="prov-Germany-11">
<name>Münster</name>
<latitude>51.97</latitude>
<longitude>7.63</longitude>
<elevation>60</elevation>
<population measured="census" year="1987">246186</population>
<population year="1992" measured="admin.">267072</population>
<population year="2000" measured="admin.">265609</population>
<population year="2011" measured="census">289576</population>
</city>
<city id="cty-Germany-32" country="D" province="prov-Germany-11">
<name>Krefeld</name>
<latitude>51.33</latitude>
<longitude>6.57</longitude>
<elevation>38</elevation>
<population measured="census" year="1987">232261</population>
<population measured="census" year="2011">222247</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
<city id="cty-Germany-33" country="D" province="prov-Germany-11">
<name>Aachen</name>
<latitude>50.78</latitude>
<longitude>6.08</longitude>
<elevation>173</elevation>
<population measured="census" year="1987">229740</population>
<population measured="census" year="2011">236420</population>
</city>
<city id="cty-Germany-36" country="D" province="prov-Germany-11">
<name>Oberhausen</name>
<latitude>51.55</latitude>
<longitude>6.85</longitude>
<elevation>35</elevation>
<population measured="census" year="1987">220286</population>
<population measured="census" year="2011">210216</population>
<located_at watertype="river" river="river-Ruhr"/>
</city>
<city id="cty-Germany-38" country="D" province="prov-Germany-11">
<name>Hagen</name>
<latitude>51.37</latitude>
<longitude>7.48</longitude>
<elevation>106</elevation>
<population measured="census" year="1987">209363</population>
<population measured="census" year="2011">187944</population>
<located_at watertype="river" river="river-Ruhr"/>
</city>
<city id="cty-Germany-44" country="D" province="prov-Germany-11">
<name>Hamm</name>
<latitude>51.68</latitude>
<longitude>7.82</longitude>
<elevation>63</elevation>
<population measured="census" year="1987">171170</population>
<population measured="census" year="2011">176037</population>
<located_at watertype="river" river="river-Lippe"/>
</city>
<city id="cty-Germany-45" country="D" province="prov-Germany-11">
<name>Herne</name>
<latitude>51.55</latitude>
<longitude>7.22</longitude>
<elevation>65</elevation>
<population measured="census" year="1987">174238</population>
<population measured="census" year="2011">155160</population>
</city>
<city id="cty-Germany-46" country="D" province="prov-Germany-11">
<name>Mülheim</name>
<name>Mülheim an der Ruhr</name>
<latitude>51.43</latitude>
<longitude>6.88</longitude>
<elevation>40</elevation>
<population measured="census" year="1987">176423</population>
<population measured="census" year="2011">166865</population>
<located_at watertype="river" river="river-Ruhr"/>
</city>
<city id="cty-Germany-49" country="D" province="prov-Germany-11">
<name>Solingen</name>
<latitude>51.17</latitude>
<longitude>7.08</longitude>
<elevation>221</elevation>
<population measured="census" year="1987">159103</population>
<population measured="census" year="2011">155265</population>
</city>
<city id="cty-Germany-50" country="D" province="prov-Germany-11">
<name>Leverkusen</name>
<latitude>51.03</latitude>
<longitude>6.98</longitude>
<elevation>60</elevation>
<population measured="census" year="1987">154692</population>
<population measured="census" year="2011">158984</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
<city id="cty-Germany-52" country="D" province="prov-Germany-11">
<name>Neuss</name>
<latitude>51.2</latitude>
<longitude>6.7</longitude>
<elevation>40</elevation>
<population measured="census" year="1987">142178</population>
<population measured="census" year="2011">150568</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
<city id="cty-Germany-56" country="D" province="prov-Germany-11">
<name>Paderborn</name>
<latitude>51.72</latitude>
<longitude>8.77</longitude>
<elevation>110</elevation>
<population measured="census" year="1987">110715</population>
<population measured="census" year="2011">142365</population>
<located_at watertype="river" river="river-Lippe"/>
</city>
<city id="cty-Germany-60" country="D" province="prov-Germany-11">
<name>Recklinghausen</name>
<latitude>51.59</latitude>
<longitude>7.16</longitude>
<elevation>85</elevation>
<population measured="census" year="1987">119991</population>
<population measured="census" year="2011">115958</population>
</city>
<city id="cty-Germany-65" country="D" province="prov-Germany-11">
<name>Remscheid</name>
<latitude>51.18</latitude>
<longitude>7.2</longitude>
<elevation>365</elevation>
<population measured="census" year="1987">120132</population>
<population measured="census" year="2011">110708</population>
</city>
<city id="cty-Germany-67" country="D" province="prov-Germany-11">
<name>Bottrop</name>
<latitude>51.52</latitude>
<longitude>6.92</longitude>
<elevation>55</elevation>
<population measured="census" year="1987">114640</population>
<population measured="census" year="2011">117311</population>
</city>
<city id="cty-Germany-73" country="D" province="prov-Germany-11">
<name>Siegen</name>
<latitude>50.88</latitude>
<longitude>8.02</longitude>
<elevation>267</elevation>
<population measured="census" year="1987">106384</population>
<population measured="census" year="2011">99187</population>
<located_at watertype="river" river="river-Sieg"/>
</city>
<city id="cty-Germany-78" country="D" province="prov-Germany-11">
<name>Moers</name>
<latitude>51.46</latitude>
<longitude>6.62</longitude>
<elevation>30</elevation>
<population measured="census" year="1987">100872</population>
<population measured="census" year="2011">104009</population>
</city>
<city id="cty-Germany-80" country="D" province="prov-Germany-11">
<name>Witten</name>
<latitude>51.43</latitude>
<longitude>7.33</longitude>
<elevation>104</elevation>
<population measured="census" year="1987">102902</population>
<population measured="census" year="2011">96382</population>
<located_at watertype="river" river="river-Ruhr"/>
</city>
<city id="cty-Germany-81" country="D" province="prov-Germany-11">
<name>Bergisch Gladbach</name>
<latitude>51.1</latitude>
<longitude>7.12</longitude>
<elevation>100</elevation>
<population measured="census" year="1987">100589</population>
<population measured="census" year="2011">108878</population>
</city>
</province>
<province id="prov-Germany-12" country="D" capital="cty-Germany-43">
<name>Rheinland-Pfalz</name>
<area>19854</area>
<population year="1995">3951573</population>
<population measured="admin." year="1997">4010059</population>
<population measured="admin." year="2007">4045643</population>
<population measured="census" year="2011">3989808</population>
<population year="2016" measured="admin.">4066053</population>
<city id="cty-Germany-43" country="D" province="prov-Germany-12">
<name>Mainz</name>
<latitude>50</latitude>
<longitude>8.27</longitude>
<elevation>89</elevation>
<population measured="census" year="1987">172529</population>
<population measured="census" year="2011">200344</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
<city id="cty-Germany-48" country="D" province="prov-Germany-12">
<name>Ludwigshafen</name>
<name>Ludwigshafen am Rhein</name>
<latitude>49.48</latitude>
<longitude>8.44</longitude>
<elevation>95</elevation>
<population measured="census" year="1987">156601</population>
<population measured="census" year="2011">157584</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
<city id="cty-Germany-75" country="D" province="prov-Germany-12">
<name>Koblenz</name>
<latitude>50.36</latitude>
<longitude>7.6</longitude>
<elevation>73</elevation>
<population measured="census" year="1987">108246</population>
<population measured="census" year="2011">107825</population>
<located_at watertype="river" river="river-Rhein"/>
<located_at watertype="river" river="river-Mosel"/>
</city>
<city id="cty-Germany-84" country="D" province="prov-Germany-12">
<name>Kaiserslautern</name>
<latitude>49.44</latitude>
<longitude>7.77</longitude>
<elevation>251</elevation>
<population measured="census" year="1987">97326</population>
<population measured="census" year="2011">96340</population>
</city>
<city id="cty-Germany-Trier" country="D" province="prov-Germany-12">
<name>Trier</name>
<latitude>49.75</latitude>
<longitude>6.63</longitude>
<elevation>137</elevation>
<population measured="census" year="1987">94118</population>
<population measured="census" year="2011">105671</population>
<located_at watertype="river" river="river-Mosel"/>
</city>
</province>
<province id="prov-Germany-13" country="D" capital="cty-Germany-42">
<name>Saarland</name>
<area>2568</area>
<population measured="admin." year="1997">1082487</population>
<population measured="admin." year="2007">1036598</population>
<population measured="census" year="2011">999623</population>
<population year="2016" measured="admin.">996651</population>
<city id="cty-Germany-42" country="D" province="prov-Germany-13">
<name>Saarbrücken</name>
<latitude>49.23</latitude>
<longitude>7</longitude>
<elevation>230</elevation>
<population measured="census" year="1987">188702</population>
<population measured="census" year="2011">175853</population>
<located_at watertype="river" river="river-Saar"/>
</city>
</province>
<province id="prov-Germany-14" country="D" capital="cty-Germany-16">
<name>Sachsen</name>
<area>18419</area>
<population measured="admin." year="1997">4536172</population>
<population measured="admin." year="2007">4220200</population>
<population measured="census" year="2011">4056799</population>
<population year="2016" measured="admin.">4081783</population>
<city id="cty-Germany-16" country="D" province="prov-Germany-14">
<name>Dresden</name>
<latitude>51.03</latitude>
<longitude>13.73</longitude>
<elevation>112</elevation>
<population measured="census" year="1987">542252</population>
<population year="1992" measured="admin.">481676</population>
<population year="2000" measured="admin.">477807</population>
<population year="2011" measured="census">512354</population>
<located_at watertype="river" river="river-Elbe"/>
</city>
<city id="cty-Germany-15" country="D" province="prov-Germany-14">
<name>Leipzig</name>
<latitude>51.33</latitude>
<longitude>12.38</longitude>
<elevation>113</elevation>
<population measured="census" year="1987">600543</population>
<population year="1992" measured="admin.">496647</population>
<population year="2000" measured="admin.">493208</population>
<population year="2011" measured="census">502979</population>
<located_at watertype="river" river="river-WeisseElster"/>
</city>
<city id="cty-Germany-25" country="D" province="prov-Germany-14">
<name>Chemnitz</name>
<latitude>50.83</latitude>
<longitude>12.92</longitude>
<elevation>298</elevation>
<population measured="census" year="1987">335983</population>
<population measured="census" year="2011">240253</population>
</city>
<city id="cty-Germany-82" country="D" province="prov-Germany-14">
<name>Zwickau</name>
<latitude>50.72</latitude>
<longitude>12.5</longitude>
<elevation>267</elevation>
<population measured="census" year="1987">130455</population>
<population measured="census" year="2011">93081</population>
<located_at watertype="river" river="river-Mulde"/>
</city>
</province>
<province id="prov-Germany-15" country="D" capital="cty-Germany-28">
<name>Sachsen-Anhalt</name>
<area>20450</area>
<population measured="admin." year="1997">2714267</population>
<population measured="admin." year="2007">2412472</population>
<population measured="census" year="2011">2287040</population>
<population year="2016" measured="admin.">2236252</population>
<city id="cty-Germany-28" country="D" province="prov-Germany-15">
<name>Magdeburg</name>
<latitude>52.13</latitude>
<longitude>11.62</longitude>
<elevation>55</elevation>
<population measured="census" year="1987">288975</population>
<population measured="census" year="2011">228144</population>
<located_at watertype="river" river="river-Elbe"/>
</city>
<city id="cty-Germany-23" country="D" province="prov-Germany-15">
<name>Halle</name>
<latitude>51.48</latitude>
<longitude>11.97</longitude>
<elevation>88</elevation>
<population measured="census" year="1987">329625</population>
<population measured="census" year="2011">229153</population>
<located_at watertype="river" river="river-Saale"/>
<located_at watertype="river" river="river-WeisseElster"/>
</city>
</province>
<province id="prov-Germany-16" country="D" capital="cty-Germany-34">
<name>Schleswig-Holstein</name>
<area>15799</area>
<population year="1995">2708392</population>
<population measured="admin." year="1997">2749383</population>
<population measured="admin." year="2007">2837373</population>
<population measured="census" year="2011">2800119</population>
<population year="2016" measured="admin.">2881926</population>
<city id="cty-Germany-34" country="D" province="prov-Germany-16">
<name>Kiel</name>
<latitude>54.33</latitude>
<longitude>10.13</longitude>
<elevation>5</elevation>
<population measured="census" year="1987">237767</population>
<population measured="census" year="2011">235782</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
<city id="cty-Germany-37" country="D" province="prov-Germany-16">
<name>Lübeck</name>
<latitude>53.87</latitude>
<longitude>10.69</longitude>
<elevation>13</elevation>
<population measured="census" year="1987">210497</population>
<population measured="census" year="2011">210305</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-Germany-17" country="D" capital="cty-Germany-39">
<name>Thüringen</name>
<area>16172</area>
<population measured="admin." year="1997">2484538</population>
<population measured="admin." year="2007">2289219</population>
<population measured="census" year="2011">2188589</population>
<population year="2016" measured="admin.">2158128</population>
<city id="cty-Germany-39" country="D" province="prov-Germany-17">
<name>Erfurt</name>
<latitude>50.98</latitude>
<longitude>11.03</longitude>
<elevation>194</elevation>
<population measured="census" year="2011">200868</population>
</city>
<city id="cty-Germany-62" country="D" province="prov-Germany-17">
<name>Gera</name>
<latitude>50.88</latitude>
<longitude>12.08</longitude>
<elevation>194</elevation>
<population measured="census" year="2011">96067</population>
<located_at watertype="river" river="river-WeisseElster"/>
</city>
<city id="cty-Germany-83" country="D" province="prov-Germany-17">
<name>Jena</name>
<latitude>50.93</latitude>
<longitude>11.59</longitude>
<elevation>143</elevation>
<population measured="census" year="2011">105739</population>
<located_at watertype="river" river="river-Saale"/>
</city>
</province>
</country>
<country car_code="H"
area="93030"
capital="cty-Hungary-Budapest"
memberships="org-AG org-BIS org-CEI org-CD org-SELEC org-CE org-EAPC org-EBRD org-EIB org-CERN org-ESA org-EU org-FAO org-G-9 org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-MINURSO org-UNFICYP org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Hungary</name>
<localname>Magyar Köztársaság (a)</localname>
<population measured="census" year="1949">9204799</population>
<population measured="census" year="1960">9961044</population>
<population measured="census" year="1970">10322099</population>
<population measured="census" year="1980">10709463</population>
<population measured="census" year="1990">10374823</population>
<population measured="census" year="2001">10198315</population>
<population measured="census" year="2011">9937628</population>
<population_growth>-0.21</population_growth>
<infant_mortality>5.09</infant_mortality>
<gdp_total>130600</gdp_total>
<gdp_agri>3.4</gdp_agri>
<gdp_ind>28</gdp_ind>
<gdp_serv>68.7</gdp_serv>
<inflation>1.9</inflation>
<unemployment>10.5</unemployment>
<indep_date from="Austria-Hungary">1918-11-18</indep_date>
<government>parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="92.3">Hungarian</ethnicgroup>
<ethnicgroup percentage="1.9">Roma</ethnicgroup>
<ethnicgroup percentage="2">Serb</ethnicgroup>
<ethnicgroup percentage="2.6">German</ethnicgroup>
<ethnicgroup percentage="0.8">Slovak</ethnicgroup>
<ethnicgroup percentage="0.7">Romanian</ethnicgroup>
<religion percentage="51.9">Roman Catholic</religion>
<religion percentage="18.9">Protestant</religion>
<language percentage="93.6">Hungarian</language>
<border country="SRB" length="151"/>
<border country="A" length="366"/>
<border country="SK" length="515"/>
<border country="SLO" length="102"/>
<border country="UA" length="103"/>
<border country="HR" length="329"/>
<border country="RO" length="443"/>
<province id="prov-Hungary-2" country="H" capital="cty-Hungary-6">
<name>Baranya</name>
<area>4429</area>
<population measured="census" year="1990">417400</population>
<population measured="census" year="2001">407448</population>
<population measured="census" year="2011">386441</population>
<city id="cty-Hungary-6" country="H" province="prov-Hungary-2">
<name>Pécs</name>
<latitude>46.07</latitude>
<longitude>18.23</longitude>
<elevation>153</elevation>
<population year="1990" measured="census">170039</population>
<population year="1992">171000</population>
<population year="2001" measured="census">162498</population>
<population year="2011" measured="census">156049</population>
</city>
</province>
<province id="prov-Hungary-3" country="H" capital="cty-Hungary-10">
<name>Bács-Kiskun</name>
<area>8444</area>
<population measured="census" year="1990">546898</population>
<population measured="census" year="2001">546517</population>
<population measured="census" year="2011">520331</population>
<city id="cty-Hungary-10" country="H" province="prov-Hungary-3">
<name>Kecskemét</name>
<latitude>46.91</latitude>
<longitude>19.69</longitude>
<elevation>105</elevation>
<population year="1990" measured="census">102516</population>
<population year="1992">105000</population>
<population year="2001" measured="census">107749</population>
<population year="2011" measured="census">111411</population>
</city>
</province>
<province id="prov-Hungary-4" country="H" capital="cty-Hungary-Bekescaba">
<name>Békés</name>
<area>5629</area>
<population measured="census" year="1990">411887</population>
<population measured="census" year="2001">397791</population>
<population measured="census" year="2011">359948</population>
<city id="cty-Hungary-Bekescaba" country="H" province="prov-Hungary-4">
<name>Békéscsaba</name>
<latitude>46.68</latitude>
<longitude>21.09</longitude>
<elevation>89</elevation>
<population year="1990" measured="census">67157</population>
<population year="2001" measured="census">67968</population>
<population year="2011" measured="census">62050</population>
</city>
</province>
<province id="prov-Hungary-5" country="H" capital="cty-Hungary-4">
<name>Borsod-Abaúj-Zemplén</name>
<area>7249</area>
<population measured="census" year="1990">761963</population>
<population measured="census" year="2001">744404</population>
<population measured="census" year="2011">686266</population>
<city id="cty-Hungary-4" country="H" province="prov-Hungary-5">
<name>Miskolc</name>
<latitude>48.1</latitude>
<longitude>20.79</longitude>
<elevation>131</elevation>
<population year="1990" measured="census">196442</population>
<population year="1992">192000</population>
<population year="2001" measured="census">184125</population>
<population year="2011" measured="census">167754</population>
</city>
</province>
<province id="prov-Hungary-6"
country="H"
capital="cty-Hungary-Hodmezovasarhely">
<name>Csongrád</name>
<area>4262</area>
<population measured="census" year="1990">438842</population>
<population measured="census" year="2001">433344</population>
<population measured="census" year="2011">417456</population>
<city id="cty-Hungary-5" country="H" province="prov-Hungary-6">
<name>Szeged</name>
<latitude>46.26</latitude>
<longitude>20.15</longitude>
<elevation>75</elevation>
<population year="1990" measured="census">169930</population>
<population year="1992">178000</population>
<population year="2001" measured="census">168273</population>
<population year="2011" measured="census">168048</population>
<located_at watertype="river" river="river-Theiss"/>
<located_at watertype="river" river="river-Mures"/>
</city>
<city id="cty-Hungary-Hodmezovasarhely"
country="H"
province="prov-Hungary-6">
<name>Hódmezővásárhely</name>
<latitude>46.43</latitude>
<longitude>20.32</longitude>
</city>
</province>
<province id="prov-Hungary-7" country="H" capital="cty-Hungary-9">
<name>Fejér</name>
<area>4358</area>
<population measured="census" year="1990">418852</population>
<population measured="census" year="2001">434317</population>
<population measured="census" year="2011">425847</population>
<city id="cty-Hungary-9" country="H" province="prov-Hungary-7">
<name>Székesfehérvár</name>
<latitude>47.19</latitude>
<longitude>18.41</longitude>
<elevation>118</elevation>
<population year="1990" measured="census">108958</population>
<population year="1992">109000</population>
<population year="2001" measured="census">106346</population>
<population year="2011" measured="census">100570</population>
</city>
</province>
<province id="prov-Hungary-8" country="H" capital="cty-Hungary-7">
<name>Győr-Moson-Sopron</name>
<area>4208</area>
<population measured="census" year="1990">432126</population>
<population measured="census" year="2001">438773</population>
<population measured="census" year="2011">447985</population>
<city id="cty-Hungary-7" country="H" province="prov-Hungary-8">
<name>Győr</name>
<latitude>47.68</latitude>
<longitude>17.63</longitude>
<elevation>108</elevation>
<population year="1990" measured="census">129331</population>
<population year="1992">130000</population>
<population year="2001" measured="census">129412</population>
<population year="2011" measured="census">129527</population>
<located_at watertype="river" river="river-Raab"/>
</city>
</province>
<province id="prov-Hungary-9" country="H" capital="cty-Hungary-3">
<name>Hajdú-Bihar</name>
<area>6210</area>
<population measured="census" year="1990">548728</population>
<population measured="census" year="2001">552998</population>
<population measured="census" year="2011">546721</population>
<city id="cty-Hungary-3" country="H" province="prov-Hungary-9">
<name>Debrecen</name>
<latitude>47.53</latitude>
<longitude>21.64</longitude>
<elevation>121</elevation>
<population year="1990" measured="census">212235</population>
<population year="1992">216000</population>
<population year="2001" measured="census">211034</population>
<population year="2011" measured="census">211320</population>
</city>
</province>
<province id="prov-Hungary-10" country="H" capital="cty-Hungary-Eger">
<name>Heves</name>
<area>3637</area>
<population measured="census" year="1990">334408</population>
<population measured="census" year="2001">325727</population>
<population measured="census" year="2011">308882</population>
<city id="cty-Hungary-Eger" country="H" province="prov-Hungary-10">
<name>Eger</name>
<latitude>47.9</latitude>
<longitude>20.37</longitude>
<elevation>165</elevation>
<population year="1990" measured="census">61892</population>
<population year="2001" measured="census">58331</population>
<population year="2011" measured="census">56569</population>
</city>
</province>
<province id="prov-Hungary-11" country="H" capital="cty-Hungary-Tatabanya">
<name>Komárom-Esztergom</name>
<area>2264</area>
<population measured="census" year="1990">316984</population>
<population measured="census" year="2001">316590</population>
<population measured="census" year="2011">304568</population>
<city id="cty-Hungary-Tatabanya" country="H" province="prov-Hungary-11">
<name>Tatabánya</name>
<latitude>47.59</latitude>
<longitude>18.39</longitude>
<elevation>167</elevation>
<population year="1990" measured="census">74277</population>
<population year="2001" measured="census">72470</population>
<population year="2011" measured="census">67753</population>
</city>
</province>
<province id="prov-Hungary-12" country="H" capital="cty-Hungary-Salgotarjan">
<name>Nógrád</name>
<area>2545</area>
<population measured="census" year="1990">227137</population>
<population measured="census" year="2001">220261</population>
<population measured="census" year="2011">202427</population>
<city id="cty-Hungary-Salgotarjan" country="H" province="prov-Hungary-12">
<name>Salgótarján</name>
<latitude>48.09</latitude>
<longitude>19.79</longitude>
<elevation>299</elevation>
</city>
</province>
<province id="prov-Hungary-13" country="H" capital="cty-Hungary-Budapest">
<name>Pest</name>
<area>6391</area>
<population measured="census" year="1990">949842</population>
<population measured="census" year="2001">1083877</population>
<population measured="census" year="2011">1217476</population>
</province>
<province id="prov-Hungary-14" country="H" capital="cty-Hungary-Kaposvar">
<name>Somogy</name>
<area>6065</area>
<population measured="census" year="1990">346099</population>
<population measured="census" year="2001">336391</population>
<population measured="census" year="2011">317307</population>
<city id="cty-Hungary-Kaposvar" country="H" province="prov-Hungary-14">
<name>Kaposvár</name>
<latitude>46.36</latitude>
<longitude>17.78</longitude>
<elevation>153</elevation>
<population year="1990" measured="census">71788</population>
<population year="2001" measured="census">68697</population>
<population year="2011" measured="census">66245</population>
</city>
</province>
<province id="prov-Hungary-15" country="H" capital="cty-Hungary-8">
<name>Szabolcs-Szatmár-Bereg</name>
<area>5935</area>
<population measured="census" year="1990">572301</population>
<population measured="census" year="2001">582256</population>
<population measured="census" year="2011">559272</population>
<city id="cty-Hungary-8" country="H" province="prov-Hungary-15">
<name>Nyíregyháza</name>
<latitude>47.95</latitude>
<longitude>21.73</longitude>
<elevation>116</elevation>
<population year="1990" measured="census">114152</population>
<population year="1992">115000</population>
<population year="2001" measured="census">118795</population>
<population year="2011" measured="census">119746</population>
</city>
</province>
<province id="prov-Hungary-16" country="H" capital="cty-Hungary-Szolnok">
<name>Jász-Nagykun-Szolnok</name>
<area>5581</area>
<population measured="census" year="1990">425583</population>
<population measured="census" year="2001">415917</population>
<population measured="census" year="2011">386594</population>
<city id="cty-Hungary-Szolnok" country="H" province="prov-Hungary-16">
<name>Szolnok</name>
<latitude>47.17</latitude>
<longitude>20.18</longitude>
<elevation>68</elevation>
<population year="1990" measured="census">78328</population>
<population year="2001" measured="census">77631</population>
<population year="2011" measured="census">72953</population>
<located_at watertype="river" river="river-Theiss"/>
</city>
</province>
<province id="prov-Hungary-17" country="H" capital="cty-Hungary-Szekszard">
<name>Tolna</name>
<area>3703</area>
<population measured="census" year="1990">253675</population>
<population measured="census" year="2001">249683</population>
<population measured="census" year="2011">230361</population>
<city id="cty-Hungary-Szekszard" country="H" province="prov-Hungary-17">
<name>Szekszárd</name>
<latitude>46.36</latitude>
<longitude>18.7</longitude>
<elevation>83</elevation>
</city>
</province>
<province id="prov-Hungary-18" country="H" capital="cty-Hungary-Szombathely">
<name>Vas</name>
<area>3336</area>
<population measured="census" year="1990">275944</population>
<population measured="census" year="2001">268123</population>
<population measured="census" year="2011">256629</population>
<city id="cty-Hungary-Szombathely" country="H" province="prov-Hungary-18">
<name>Szombathely</name>
<latitude>47.24</latitude>
<longitude>16.62</longitude>
<elevation>209</elevation>
<population year="1990" measured="census">85617</population>
<population year="2001" measured="census">81920</population>
<population year="2011" measured="census">78884</population>
</city>
</province>
<province id="prov-Hungary-19" country="H" capital="cty-Hungary-Veszprem">
<name>Veszprém</name>
<area>4463</area>
<population measured="census" year="1990">373075</population>
<population measured="census" year="2001">368573</population>
<population measured="census" year="2011">351898</population>
<city id="cty-Hungary-Veszprem" country="H" province="prov-Hungary-19">
<name>Veszprém</name>
<latitude>47.09</latitude>
<longitude>17.91</longitude>
<elevation>266</elevation>
<population year="1990" measured="census">63867</population>
<population year="2001" measured="census">62851</population>
<population year="2011" measured="census">61721</population>
</city>
</province>
<province id="prov-Hungary-20" country="H" capital="cty-Hungary-Zalaegerszeg">
<name>Zala</name>
<area>3783</area>
<population measured="census" year="1990">306398</population>
<population measured="census" year="2001">297404</population>
<population measured="census" year="2011">282179</population>
<city id="cty-Hungary-Zalaegerszeg"
country="H"
province="prov-Hungary-20">
<name>Zalaegerszeg</name>
<latitude>46.85</latitude>
<longitude>16.85</longitude>
<elevation>166</elevation>
<population year="1990" measured="census">62212</population>
<population year="2001" measured="census">61654</population>
<population year="2011" measured="census">59499</population>
</city>
</province>
<province id="prov-Hungary-21" country="H" capital="cty-Hungary-Budapest">
<name>Budapest</name>
<area>525</area>
<population measured="census" year="1990">2016681</population>
<population measured="census" year="2001">1777921</population>
<population measured="census" year="2011">1729040</population>
<city id="cty-Hungary-Budapest" country="H" province="prov-Hungary-21">
<name>Budapest</name>
<latitude>47.49</latitude>
<longitude>19.05</longitude>
<elevation>102</elevation>
<population year="1990" measured="census">2016681</population>
<population year="1992">2016000</population>
<population year="2001" measured="census">1777921</population>
<population year="2011" measured="census">1729040</population>
<located_at watertype="river" river="river-Donau"/>
</city>
</province>
</country>
<country car_code="I"
area="301230"
capital="cty-Italy-Rome"
memberships="org-AfDB org-ADB org-AG org-BIS org-BSEC org-CDB org-SICA org-CEI org-CD org-SELEC org-CE org-CBSS org-EMU org-EAPC org-EBRD org-ECB org-EIB org-CERN org-ESA org-EU org-EITI org-FATF org-FAO org-G-10 org-G-20 org-G-7 org-G-8 org-IADB org-IGAD org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-ITUC org-LAIA org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PIF org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-UNMOGIP org-MINURSO org-UNMISS org-UNRWA org-UNTSO org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Italy</name>
<localname>Repubblica Italiana (la)</localname>
<population measured="census" year="1861">22182377</population>
<population measured="census" year="1871">27303509</population>
<population measured="census" year="1881">28953480</population>
<population measured="census" year="1901">32965504</population>
<population measured="census" year="1911">35845048</population>
<population measured="census" year="1921">39943528</population>
<population measured="census" year="1931">41651000</population>
<population measured="census" year="1936">42943602</population>
<population measured="census" year="1951">47515537</population>
<population measured="census" year="1961">50623569</population>
<population measured="census" year="1971">54136547</population>
<population measured="census" year="1981">56556911</population>
<population measured="census" year="1991">56778031</population>
<population measured="census" year="2001">56995744</population>
<population measured="census" year="2011">59433744</population>
<population_growth>0.3</population_growth>
<infant_mortality>3.31</infant_mortality>
<gdp_total>2068000</gdp_total>
<gdp_agri>2</gdp_agri>
<gdp_ind>24.4</gdp_ind>
<gdp_serv>73.5</gdp_serv>
<inflation>1.2</inflation>
<unemployment>12.4</unemployment>
<indep_date>1861-03-17</indep_date>
<government>republic</government>
<encompassed continent="europe" percentage="100"/>
<religion percentage="84.6">Roman Catholic</religion>
<religion percentage="2.0">Christian Orthodox</religion>
<religion percentage="0.9">Protestant</religion>
<religion percentage="2.1">Muslim</religion>
<religion percentage="0.3">Buddhist</religion>
<religion percentage="0.2">Hindu</religion>
<language percentage="98">Italian</language>
<language percentage="0.7">German</language>
<language percentage="0.2">French</language>
<language percentage="0.2">Slovenian</language>
<language percentage="0.1">Albanian</language>
<border country="F" length="488"/>
<border country="A" length="430"/>
<border country="SLO" length="235"/>
<border country="CH" length="740"/>
<border country="V" length="3.2"/>
<border country="RSM" length="39"/>
<province id="prov-Italy-2" country="I" capital="cty-Italy-5">
<name>Piemonte</name>
<area>25402</area>
<population measured="census" year="2001">4214677</population>
<population measured="census" year="2011">4363916</population>
<city id="cty-Italy-44" country="I" province="prov-Italy-2">
<name>Novara</name>
<latitude>45.45</latitude>
<longitude>8.62</longitude>
<elevation>162</elevation>
<population year="1991" measured="census">102473</population>
<population year="2001" measured="census">101921</population>
<population year="2011" measured="census">101952</population>
</city>
<city id="cty-Italy-5" country="I" province="prov-Italy-2">
<name>Torino</name>
<name>Turin</name>
<latitude>45.07</latitude>
<longitude>7.7</longitude>
<elevation>239</elevation>
<population year="1991" measured="census">961916</population>
<population year="2001" measured="census">857433</population>
<population year="2011" measured="census">872367</population>
<located_at watertype="river" river="river-Po"/>
</city>
</province>
<province id="prov-Italy-9" country="I" capital="cty-Italy-Aosta">
<name>Valle d'Aosta</name>
<area>3263</area>
<population measured="census" year="2001">119548</population>
<population measured="census" year="2011">126806</population>
<city id="cty-Italy-Aosta" country="I" province="prov-Italy-9">
<name>Aosta</name>
<latitude>45.73</latitude>
<longitude>7.32</longitude>
<elevation>583</elevation>
<population year="1991" measured="census">36214</population>
<population year="2001" measured="census">34063</population>
<population year="2011" measured="census">34102</population>
<located_at watertype="river" river="river-DoraBaltea"/>
</city>
</province>
<province id="prov-Italy-10" country="I" capital="cty-Italy-Milan">
<name>Lombardia</name>
<area>23862</area>
<population measured="census" year="2001">9032554</population>
<population measured="census" year="2011">9704151</population>
<city id="cty-Italy-36" country="I" province="prov-Italy-10">
<name>Bérgamo</name>
<latitude>45.7</latitude>
<longitude>9.67</longitude>
<elevation>249</elevation>
<population year="1991" measured="census">115655</population>
<population year="2001" measured="census">110691</population>
<population year="2011" measured="census">115349</population>
</city>
<city id="cty-Italy-19" country="I" province="prov-Italy-10">
<name>Bréscia</name>
<latitude>45.54</latitude>
<longitude>10.22</longitude>
<elevation>149</elevation>
<population year="1991" measured="census">200722</population>
<population year="2001" measured="census">187865</population>
<population year="2011" measured="census">189902</population>
</city>
<city id="cty-Italy-Milan" country="I" province="prov-Italy-10">
<name>Milano</name>
<name>Milan</name>
<latitude>45.47</latitude>
<longitude>9.18</longitude>
<elevation>120</elevation>
<population year="1991" measured="census">1371008</population>
<population year="2001" measured="census">1182693</population>
<population year="2011" measured="census">1242123</population>
</city>
<city id="cty-Italy-34" country="I" province="prov-Italy-10">
<name>Monza</name>
<latitude>45.58</latitude>
<longitude>9.27</longitude>
<elevation>162</elevation>
<population year="1991" measured="census">121151</population>
<population year="2001" measured="census">117068</population>
<population year="2011" measured="census">119856</population>
</city>
</province>
<province id="prov-Italy-20" country="I" capital="cty-Italy-51">
<name>Trentino-Alto Adige</name>
<area>13606</area>
<population measured="census" year="2001">940016</population>
<population measured="census" year="2011">1029475</population>
<city id="cty-Italy-51" country="I" province="prov-Italy-20">
<name>Bolzano</name>
<name>Bozen</name>
<latitude>46.5</latitude>
<longitude>11.35</longitude>
<elevation>262</elevation>
<population year="1991" measured="census">98233</population>
<population year="2001" measured="census">93079</population>
<population year="2011" measured="census">102575</population>
<located_at watertype="river" river="river-Etsch"/>
</city>
<city id="cty-Italy-49" country="I" province="prov-Italy-20">
<name>Trento</name>
<latitude>46.07</latitude>
<longitude>11.12</longitude>
<elevation>190</elevation>
<population year="1991" measured="census">101545</population>
<population year="2001" measured="census">104844</population>
<population year="2011" measured="census">114198</population>
<located_at watertype="river" river="river-Etsch"/>
</city>
</province>
<province id="prov-Italy-23" country="I" capital="cty-Italy-12">
<name>Veneto</name>
<area>18398</area>
<population measured="census" year="2001">4527694</population>
<population measured="census" year="2011">4857210</population>
<city id="cty-Italy-17" country="I" province="prov-Italy-23">
<name>Pádova</name>
<name>Padua</name>
<latitude>45.42</latitude>
<longitude>11.87</longitude>
<elevation>12</elevation>
<population year="1991" measured="census">215025</population>
<population year="2001" measured="census">203350</population>
<population year="2011" measured="census">206192</population>
</city>
<city id="cty-Italy-14" country="I" province="prov-Italy-23">
<name>Verona</name>
<latitude>45.43</latitude>
<longitude>10.98</longitude>
<elevation>59</elevation>
<population year="1991" measured="census">252689</population>
<population year="2001" measured="census">243474</population>
<population year="2011" measured="census">252520</population>
<located_at watertype="river" river="river-Etsch"/>
</city>
<city id="cty-Italy-39" country="I" province="prov-Italy-23">
<name>Vicenza</name>
<latitude>45.55</latitude>
<longitude>11.55</longitude>
<elevation>39</elevation>
<population year="1991" measured="census">107076</population>
<population year="2001" measured="census">106069</population>
<population year="2011" measured="census">111500</population>
</city>
<city id="cty-Italy-12" country="I" province="prov-Italy-23">
<name>Venézia</name>
<name>Venice</name>
<latitude>45.44</latitude>
<longitude>12.34</longitude>
<elevation>1</elevation>
<population year="1991" measured="census">308717</population>
<population year="2001" measured="census">266181</population>
<population year="2011" measured="census">261362</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Italy-31" country="I" capital="cty-Italy-16">
<name>Friuli-Venezia Giulia</name>
<area>7858</area>
<population measured="census" year="2001">1183764</population>
<population measured="census" year="2011">1218985</population>
<city id="cty-Italy-16" country="I" province="prov-Italy-31">
<name>Trieste</name>
<latitude>45.63</latitude>
<longitude>13.8</longitude>
<elevation>2</elevation>
<population year="1991" measured="census">229216</population>
<population year="2001" measured="census">209520</population>
<population year="2011" measured="census">202123</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Italy-36" country="I" capital="cty-Italy-7">
<name>Liguria</name>
<area>5421</area>
<population measured="census" year="2001">1571783</population>
<population measured="census" year="2011">1570694</population>
<city id="cty-Italy-46" country="I" province="prov-Italy-36">
<name>La Spezia</name>
<latitude>44.1</latitude>
<longitude>9.82</longitude>
<elevation>10</elevation>
<population year="1991" measured="census">101442</population>
<population year="2001" measured="census">91391</population>
<population year="2011" measured="census">92659</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Italy-7" country="I" province="prov-Italy-36">
<name>Génova</name>
<name>Genoa</name>
<latitude>44.41</latitude>
<longitude>8.93</longitude>
<elevation>20</elevation>
<population year="1991" measured="census">675659</population>
<population year="2001" measured="census">603560</population>
<population year="2011" measured="census">586180</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Italy-41" country="I" capital="cty-Italy-8">
<name>Emilia-Romagna</name>
<area>22445</area>
<population measured="census" year="2001">4000703</population>
<population measured="census" year="2011">4342135</population>
<city id="cty-Italy-8" country="I" province="prov-Italy-41">
<name>Bologna</name>
<latitude>44.51</latitude>
<longitude>11.35</longitude>
<elevation>54</elevation>
<population year="1991" measured="census">404322</population>
<population year="2001" measured="census">369955</population>
<population year="2011" measured="census">371337</population>
</city>
<city id="cty-Italy-28" country="I" province="prov-Italy-41">
<name>Ferrara</name>
<latitude>44.83</latitude>
<longitude>11.62</longitude>
<elevation>9</elevation>
<population year="1991" measured="census">137336</population>
<population year="2001" measured="census">130461</population>
<population year="2011" measured="census">132545</population>
</city>
<city id="cty-Italy-38" country="I" province="prov-Italy-41">
<name>Forlí</name>
<latitude>44.23</latitude>
<longitude>12.05</longitude>
<elevation>34</elevation>
<population year="1991" measured="census">109228</population>
<population year="2001" measured="census">108363</population>
<population year="2011" measured="census">116434</population>
</city>
<city id="cty-Italy-21" country="I" province="prov-Italy-41">
<name>Módena</name>
<latitude>44.65</latitude>
<longitude>10.93</longitude>
<elevation>34</elevation>
<population year="1991" measured="census">176148</population>
<population year="2001" measured="census">175442</population>
<population year="2011" measured="census">179149</population>
</city>
<city id="cty-Italy-22" country="I" province="prov-Italy-41">
<name>Parma</name>
<latitude>44.8</latitude>
<longitude>10.33</longitude>
<elevation>55</elevation>
<population year="1991" measured="census">168905</population>
<population year="2001" measured="census">156172</population>
<population year="2011" measured="census">175895</population>
</city>
<city id="cty-Italy-43" country="I" province="prov-Italy-41">
<name>Piacenza</name>
<latitude>45.05</latitude>
<longitude>9.7</longitude>
<elevation>61</elevation>
<population year="1991" measured="census">102252</population>
<population year="2001" measured="census">95132</population>
<population year="2011" measured="census">100311</population>
<located_at watertype="river" river="river-Po"/>
</city>
<city id="cty-Italy-29" country="I" province="prov-Italy-41">
<name>Ravenna</name>
<latitude>44.42</latitude>
<longitude>12.2</longitude>
<elevation>4</elevation>
<population year="1991" measured="census">135435</population>
<population year="2001" measured="census">138204</population>
<population year="2011" measured="census">153740</population>
</city>
<city id="cty-Italy-30" country="I" province="prov-Italy-41">
<name>Reggio nell'Emilia</name>
<name>Reggio Emilia</name>
<latitude>44.7</latitude>
<longitude>10.63</longitude>
<elevation>58</elevation>
<population year="1991" measured="census">132030</population>
<population year="2001" measured="census">141877</population>
<population year="2011" measured="census">162082</population>
</city>
<city id="cty-Italy-31" country="I" province="prov-Italy-41">
<name>Rímini</name>
<latitude>44.05</latitude>
<longitude>12.57</longitude>
<elevation>6</elevation>
<population year="1991" measured="census">128119</population>
<population year="2001" measured="census">128301</population>
<population year="2011" measured="census">139601</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Italy-50" country="I" capital="cty-Italy-9">
<name>Toscana</name>
<area>22993</area>
<population measured="census" year="2001">3497806</population>
<population measured="census" year="2011">3672202</population>
<city id="cty-Italy-23" country="I" province="prov-Italy-50">
<name>Livorno</name>
<latitude>43.55</latitude>
<longitude>10.32</longitude>
<elevation>3</elevation>
<population year="1991" measured="census">167445</population>
<population year="2001" measured="census">148143</population>
<population year="2011" measured="census">157052</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Italy-50" country="I" province="prov-Italy-50">
<name>Pisa</name>
<latitude>43.72</latitude>
<longitude>10.4</longitude>
<elevation>4</elevation>
<population year="1991" measured="census">98928</population>
<population year="2001" measured="census">89694</population>
<population year="2011" measured="census">85858</population>
<located_at watertype="river" river="river-Arno"/>
</city>
<city id="cty-Italy-9" country="I" province="prov-Italy-50">
<name>Firenze</name>
<name>Florence</name>
<latitude>43.78</latitude>
<longitude>11.25</longitude>
<elevation>50</elevation>
<population year="1991" measured="census">402316</population>
<population year="2001" measured="census">352227</population>
<population year="2011" measured="census">358079</population>
<located_at watertype="river" river="river-Arno"/>
</city>
<city id="cty-Italy-24" country="I" province="prov-Italy-50">
<name>Prato</name>
<latitude>43.88</latitude>
<longitude>11.1</longitude>
<elevation>65</elevation>
<population year="1991" measured="census">165364</population>
<population year="2001" measured="census">170388</population>
<population year="2011" measured="census">185456</population>
</city>
</province>
<province id="prov-Italy-60" country="I" capital="cty-Italy-27">
<name>Umbria</name>
<area>8456</area>
<population measured="census" year="2001">825826</population>
<population measured="census" year="2011">884268</population>
<city id="cty-Italy-27" country="I" province="prov-Italy-60">
<name>Perúgia</name>
<latitude>43.11</latitude>
<longitude>12.39</longitude>
<elevation>493</elevation>
<population year="1991" measured="census">143698</population>
<population year="2001" measured="census">148575</population>
<population year="2011" measured="census">162449</population>
</city>
<city id="cty-Italy-37" country="I" province="prov-Italy-60">
<name>Terni</name>
<latitude>42.57</latitude>
<longitude>12.65</longitude>
<elevation>130</elevation>
<population year="1991" measured="census">107333</population>
<population year="2001" measured="census">103964</population>
<population year="2011" measured="census">109193</population>
</city>
</province>
<province id="prov-Italy-63" country="I" capital="cty-Italy-45">
<name>Marche</name>
<area>9365</area>
<population measured="census" year="2001">1453224</population>
<population measured="census" year="2011">1541319</population>
<city id="cty-Italy-45" country="I" province="prov-Italy-63">
<name>Ancona</name>
<latitude>43.62</latitude>
<longitude>13.52</longitude>
<elevation>16</elevation>
<population year="1991" measured="census">101179</population>
<population year="2001" measured="census">100402</population>
<population year="2011" measured="census">100497</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Italy-68" country="I" capital="cty-Italy-Rome">
<name>Lazio</name>
<area>17235</area>
<population measured="census" year="2001">5112413</population>
<population measured="census" year="2011">5502886</population>
<city id="cty-Italy-Rome" country="I" province="prov-Italy-68">
<name>Roma</name>
<name>Rome</name>
<latitude>41.9</latitude>
<longitude>12.5</longitude>
<elevation>21</elevation>
<population year="1991" measured="census">2693383</population>
<population year="2001" measured="census">2459776</population>
<population year="2011" measured="census">2617175</population>
<located_at watertype="river" river="river-Tiber"/>
</city>
<city id="cty-Italy-42" country="I" province="prov-Italy-68">
<name>Latina</name>
<latitude>41.47</latitude>
<longitude>12.9</longitude>
<elevation>21</elevation>
<population year="1991" measured="census">105543</population>
<population year="2001" measured="census">108711</population>
<population year="2011" measured="census">117892</population>
</city>
</province>
<province id="prov-Italy-74" country="I" capital="cty-Italy-LAquila">
<name>Abruzzo</name>
<area>10762</area>
<population measured="census" year="2001">1262392</population>
<population measured="census" year="2011">1307309</population>
<city id="cty-Italy-32" country="I" province="prov-Italy-74">
<name>Pescara</name>
<latitude>42.46</latitude>
<longitude>14.21</longitude>
<elevation>4</elevation>
<population year="1991" measured="census">121367</population>
<population year="2001" measured="census">115197</population>
<population year="2011" measured="census">117166</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Italy-LAquila" country="I" province="prov-Italy-74">
<name>L'Aquila</name>
<latitude>42.35</latitude>
<longitude>13.4</longitude>
<elevation>714</elevation>
<population year="1991" measured="census">66813</population>
<population year="2001" measured="census">68503</population>
<population year="2011" measured="census">66964</population>
</city>
</province>
<province id="prov-Italy-79" country="I" capital="cty-Italy-Campobasso">
<name>Molise</name>
<area>4437</area>
<population measured="census" year="2001">320601</population>
<population measured="census" year="2011">313660</population>
<city id="cty-Italy-Campobasso" country="I" province="prov-Italy-79">
<name>Campobasso</name>
<latitude>41.57</latitude>
<longitude>14.67</longitude>
<elevation>701</elevation>
<population year="1991" measured="census">50941</population>
<population year="2001" measured="census">50762</population>
<population year="2011" measured="census">48747</population>
</city>
</province>
<province id="prov-Italy-82" country="I" capital="cty-Italy-4">
<name>Campania</name>
<area>13590</area>
<population measured="census" year="2001">5701931</population>
<population measured="census" year="2011">5766810</population>
<city id="cty-Italy-26" country="I" province="prov-Italy-82">
<name>Salerno</name>
<latitude>40.68</latitude>
<longitude>14.77</longitude>
<elevation>4</elevation>
<population year="1991" measured="census">153436</population>
<population year="2001" measured="census">144078</population>
<population year="2011" measured="census">132608</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Italy-4" country="I" province="prov-Italy-82">
<name>Nápoli</name>
<name>Naples</name>
<latitude>40.83</latitude>
<longitude>14.25</longitude>
<elevation>17</elevation>
<population year="1991" measured="census">1054601</population>
<population year="2001" measured="census">993386</population>
<population year="2011" measured="census">962003</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Italy-47" country="I" province="prov-Italy-82">
<name>Torre del Greco</name>
<latitude>40.78</latitude>
<longitude>14.37</longitude>
<population year="1991" measured="census">101361</population>
<population year="2001" measured="census">90607</population>
<population year="2011" measured="census">85922</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Italy-52" country="I" province="prov-Italy-82">
<name>Giugliano in Campania</name>
<latitude>40.93</latitude>
<longitude>14.2</longitude>
<population year="1991" measured="census">60096</population>
<population year="2001" measured="census">91265</population>
<population year="2011" measured="census">108793</population>
</city>
</province>
<province id="prov-Italy-88" country="I" capital="cty-Italy-11">
<name>Puglia</name>
<area>19357</area>
<population measured="census" year="2001">4020707</population>
<population measured="census" year="2011">4052566</population>
<city id="cty-Italy-11" country="I" province="prov-Italy-88">
<name>Bari</name>
<latitude>41.13</latitude>
<longitude>16.87</longitude>
<elevation>5</elevation>
<population year="1991" measured="census">341273</population>
<population year="2001" measured="census">312452</population>
<population year="2011" measured="census">315933</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Italy-25" country="I" province="prov-Italy-88">
<name>Fóggia</name>
<latitude>41.46</latitude>
<longitude>15.55</longitude>
<elevation>76</elevation>
<population year="1991" measured="census">155042</population>
<population year="2001" measured="census">146072</population>
<population year="2011" measured="census">147036</population>
</city>
<city id="cty-Italy-48" country="I" province="prov-Italy-88">
<name>Lecce</name>
<latitude>40.35</latitude>
<longitude>18.17</longitude>
<elevation>49</elevation>
<population year="1991" measured="census">100884</population>
<population year="2001" measured="census">83303</population>
<population year="2011" measured="census">89916</population>
</city>
<city id="cty-Italy-53" country="I" province="prov-Italy-88">
<name>Andria</name>
<latitude>41.22</latitude>
<longitude>16.3</longitude>
<elevation>151</elevation>
<population year="1991" measured="census">90063</population>
<population year="2001" measured="census">95653</population>
<population year="2011" measured="census">100052</population>
</city>
<city id="cty-Italy-15" country="I" province="prov-Italy-88">
<name>Táranto</name>
<latitude>40.47</latitude>
<longitude>17.23</longitude>
<elevation>15</elevation>
<population year="1991" measured="census">232200</population>
<population year="2001" measured="census">201349</population>
<population year="2011" measured="census">200154</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Italy-94" country="I" capital="cty-Italy-Potenza">
<name>Basilicata</name>
<area>9994</area>
<population measured="census" year="2001">597768</population>
<population measured="census" year="2011">578036</population>
<city id="cty-Italy-Potenza" country="I" province="prov-Italy-94">
<name>Potenza</name>
<latitude>40.63</latitude>
<longitude>15.8</longitude>
<elevation>819</elevation>
<population year="1991" measured="census">65714</population>
<population year="2001" measured="census">69060</population>
<population year="2011" measured="census">66777</population>
</city>
</province>
<province id="prov-Italy-97" country="I" capital="cty-Italy-41">
<name>Calabria</name>
<area>15080</area>
<population measured="census" year="2001">2011466</population>
<population measured="census" year="2011">1959050</population>
<city id="cty-Italy-41" country="I" province="prov-Italy-97">
<name>Catanzaro</name>
<latitude>38.9</latitude>
<longitude>16.6</longitude>
<elevation>342</elevation>
<population year="1991" measured="census">96614</population>
<population year="2001" measured="census">95251</population>
<population year="2011" measured="census">89364</population>
</city>
<city id="cty-Italy-40" country="I" province="prov-Italy-97">
<name>Cosenza</name>
<latitude>39.3</latitude>
<longitude>16.25</longitude>
<elevation>238</elevation>
<population year="1991" measured="census">86664</population>
<population year="2001" measured="census">72998</population>
<population year="2011" measured="census">69484</population>
</city>
<city id="cty-Italy-20" country="I" province="prov-Italy-97">
<name>Réggio di Calabria</name>
<name>Reggio Calabria</name>
<latitude>38.11</latitude>
<longitude>15.66</longitude>
<elevation>31</elevation>
<population year="1991" measured="census">169709</population>
<population year="2001" measured="census">179384</population>
<population year="2011" measured="census">180817</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Italy-101" country="I" capital="cty-Italy-6">
<name>Sicilia</name>
<area>25711</area>
<population measured="census" year="2001">4968991</population>
<population measured="census" year="2011">5002904</population>
<city id="cty-Italy-6" country="I" province="prov-Italy-101">
<name>Palermo</name>
<latitude>38.12</latitude>
<longitude>13.37</longitude>
<elevation>14</elevation>
<population year="1991" measured="census">697162</population>
<population year="2001" measured="census">652640</population>
<population year="2011" measured="census">657561</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Sicilia"/>
</city>
<city id="cty-Italy-13" country="I" province="prov-Italy-101">
<name>Messina</name>
<latitude>38.18</latitude>
<longitude>15.55</longitude>
<elevation>3</elevation>
<population year="1991" measured="census">272461</population>
<population year="2001" measured="census">236621</population>
<population year="2011" measured="census">243262</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Sicilia"/>
</city>
<city id="cty-Italy-10" country="I" province="prov-Italy-101">
<name>Catánia</name>
<latitude>37.5</latitude>
<longitude>15.09</longitude>
<elevation>7</elevation>
<population year="1991" measured="census">330037</population>
<population year="2001" measured="census">306464</population>
<population year="2011" measured="census">293902</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Sicilia"/>
</city>
<city id="cty-Italy-33" country="I" province="prov-Italy-101">
<name>Siracusa</name>
<name>Syracuse</name>
<latitude>37.08</latitude>
<longitude>15.28</longitude>
<elevation>17</elevation>
<population year="1991" measured="census">126136</population>
<population year="2001" measured="census">121000</population>
<population year="2011" measured="census">118385</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Sicilia"/>
</city>
</province>
<province id="prov-Italy-111" country="I" capital="cty-Italy-18">
<name>Sardegna</name>
<area>24089</area>
<population measured="census" year="2001">1631880</population>
<population measured="census" year="2011">1639362</population>
<city id="cty-Italy-18" country="I" province="prov-Italy-111">
<name>Cágliari</name>
<latitude>39.25</latitude>
<longitude>9.05</longitude>
<elevation>4</elevation>
<population year="1991" measured="census">203254</population>
<population year="2001" measured="census">158351</population>
<population year="2011" measured="census">149883</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Sardegna"/>
</city>
<city id="cty-Italy-35" country="I" province="prov-Italy-111">
<name>Sássari</name>
<latitude>40.73</latitude>
<longitude>8.57</longitude>
<elevation>225</elevation>
<population year="1991" measured="census">116989</population>
<population year="2001" measured="census">112959</population>
<population year="2011" measured="census">123782</population>
<located_on island="island-Sardegna"/>
</city>
</province>
</country>
<country car_code="FL"
area="160"
capital="cty-Liechtenstein-Vaduz"
memberships="org-CD org-CE org-EBRD org-EFTA org-IPU org-IAEA org-ICJ org-ICCt org-Interpol org-IFRCS org-IOC org-ITSO org-ITU org-ITUC org-OSCE org-OPCW org-PCA org-UN org-UNCTAD org-UPU org-WIPO org-WTO">
<name>Liechtenstein</name>
<localname>Fürstentum Liechtenstein (das)</localname>
<population measured="census" year="1950">13757</population>
<population measured="census" year="1960">16628</population>
<population measured="census" year="1970">21350</population>
<population measured="census" year="1980">25215</population>
<population measured="census" year="1990">29032</population>
<population year="2000" measured="census">33307</population>
<population year="2010" measured="admin.">36149</population>
<population_growth>0.82</population_growth>
<infant_mortality>4.33</infant_mortality>
<gdp_total>5113</gdp_total>
<gdp_agri>8</gdp_agri>
<gdp_ind>37</gdp_ind>
<gdp_serv>55</gdp_serv>
<inflation>-0.7</inflation>
<unemployment>2.3</unemployment>
<indep_date from="Holy Roman Empire">1806-07-12</indep_date>
<government>hereditary constitutional monarchy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="5">Italian</ethnicgroup>
<ethnicgroup percentage="95">Alemannic</ethnicgroup>
<religion percentage="76.2">Roman Catholic</religion>
<religion percentage="7">Protestant</religion>
<language percentage="100">German</language>
<border country="A" length="37"/>
<border country="CH" length="41"/>
<city id="cty-Liechtenstein-Vaduz" country="FL">
<name>Vaduz</name>
<latitude>47.14</latitude>
<longitude>9.52</longitude>
<elevation>455</elevation>
<population measured="census" year="1980">4606</population>
<population measured="census" year="1990">4897</population>
<population measured="census" year="2000">5045</population>
<population measured="census" year="2010">5207</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
</country>
<country car_code="SK"
area="48845"
capital="cty-Slovakia-Bratislava"
memberships="org-AG org-BIS org-BSEC org-CEI org-CD org-CE org-CBSS org-EMU org-EAPC org-EBRD org-ECB org-EIB org-CERN org-EU org-FAO org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITU org-ITUC org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNIDO org-UNFICYP org-UNTSO org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Slovakia</name>
<population measured="est." year="1950">3436574</population>
<population measured="est." year="1960">4137224</population>
<population measured="est." year="1970">4531874</population>
<population measured="est." year="1980">4988654</population>
<population measured="est." year="1990">5277709</population>
<population measured="est." year="2000">5388010</population>
<population year="2001" measured="census">5379455</population>
<population year="2011" measured="census">5397036</population>
<population_growth>0.03</population_growth>
<infant_mortality>5.35</infant_mortality>
<gdp_total>96960</gdp_total>
<gdp_agri>3.1</gdp_agri>
<gdp_ind>30.8</gdp_ind>
<gdp_serv>67</gdp_serv>
<inflation>1.7</inflation>
<unemployment>14.4</unemployment>
<indep_date from="Czechoslovakia">1993-01-01</indep_date>
<government>parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="85.7">Slovak</ethnicgroup>
<ethnicgroup percentage="9.7">Hungarian</ethnicgroup>
<ethnicgroup percentage="1.7">Roma</ethnicgroup>
<ethnicgroup percentage="1">Czech</ethnicgroup>
<ethnicgroup percentage="0.3">Ukrainian</ethnicgroup>
<ethnicgroup percentage="0.3">Ruthenian</ethnicgroup>
<ethnicgroup percentage="0.1">German</ethnicgroup>
<ethnicgroup percentage="0.1">Polish</ethnicgroup>
<religion percentage="68.9">Roman Catholic</religion>
<religion percentage="10.8">Protestant</religion>
<religion percentage="4.1">Christian Orthodox</religion>
<language percentage="83.8">Slovak</language>
<language percentage="10.7">Hungarian</language>
<language percentage="1.8">Roma</language>
<language percentage="1">Ukrainian</language>
<border country="A" length="91"/>
<border country="CZ" length="215"/>
<border country="H" length="515"/>
<border country="PL" length="444"/>
<border country="UA" length="90"/>
<province id="prov-Slovakia-1" country="SK" capital="cty-Slovakia-Bratislava">
<name>Bratislavský</name>
<area>2052</area>
<population measured="census" year="2001">599015</population>
<population year="2011" measured="census">602436</population>
<city id="cty-Slovakia-Bratislava"
country="SK"
province="prov-Slovakia-1">
<name>Bratislava</name>
<latitude>48.14</latitude>
<longitude>17.11</longitude>
<elevation>134</elevation>
<population year="2001" measured="census">428672</population>
<population year="2011" measured="census">411228</population>
<located_at watertype="river" river="river-Donau"/>
<located_at watertype="river" river="river-March"/>
</city>
</province>
<province id="prov-Slovakia-2" country="SK" capital="cty-Slovakia-2">
<name>Banskobystrický</name>
<area>9453</area>
<population measured="census" year="2001">662121</population>
<population year="2011" measured="census">660563</population>
<city id="cty-Slovakia-2" country="SK" province="prov-Slovakia-2">
<name>Banská Bystrica</name>
<latitude>48.73</latitude>
<longitude>19.15</longitude>
<elevation>362</elevation>
<population year="2001" measured="census">83056</population>
<population year="2011" measured="census">80003</population>
</city>
</province>
<province id="prov-Slovakia-3" country="SK" capital="cty-Slovakia-3">
<name>Žilinský</name>
<area>6808</area>
<population measured="census" year="2001">692332</population>
<population year="2011" measured="census">688851</population>
<city id="cty-Slovakia-3" country="SK" province="prov-Slovakia-3">
<name>Žilina</name>
<latitude>49.22</latitude>
<longitude>18.74</longitude>
<elevation>342</elevation>
<population year="2001" measured="census">85400</population>
<population year="2011" measured="census">81494</population>
<located_at watertype="river" river="river-Waag"/>
</city>
</province>
<province id="prov-Slovakia-4" country="SK" capital="cty-Slovakia-4">
<name>Košický</name>
<area>6753</area>
<population measured="census" year="2001">766012</population>
<population year="2011" measured="census">791723</population>
<city id="cty-Slovakia-4" country="SK" province="prov-Slovakia-4">
<name>Košice</name>
<latitude>48.72</latitude>
<longitude>21.25</longitude>
<elevation>206</elevation>
<population year="2001" measured="census">236093</population>
<population year="2011" measured="census">240433</population>
</city>
</province>
<province id="prov-Slovakia-5" country="SK" capital="cty-Slovakia-5">
<name>Prešovský</name>
<area>8973</area>
<population measured="census" year="2001">789968</population>
<population year="2011" measured="census">814527</population>
<city id="cty-Slovakia-5" country="SK" province="prov-Slovakia-5">
<name>Prešov</name>
<latitude>49</latitude>
<longitude>21.24</longitude>
<elevation>250</elevation>
<population year="2001" measured="census">92786</population>
<population year="2011" measured="census">91782</population>
</city>
</province>
<province id="prov-Slovakia-6" country="SK" capital="cty-Slovakia-6">
<name>Nitriansky</name>
<area>6343</area>
<population measured="census" year="2001">713422</population>
<population year="2011" measured="census">689867</population>
<city id="cty-Slovakia-6" country="SK" province="prov-Slovakia-6">
<name>Nitra</name>
<latitude>48.31</latitude>
<longitude>18.09</longitude>
<elevation>190</elevation>
<population year="2001" measured="census">87285</population>
<population year="2011" measured="census">78916</population>
</city>
</province>
<province id="prov-Slovakia-7" country="SK" capital="cty-Slovakia-7">
<name>Trenčiansky</name>
<area>4502</area>
<population measured="census" year="2001">605582</population>
<population year="2011" measured="census">594328</population>
<city id="cty-Slovakia-7" country="SK" province="prov-Slovakia-7">
<name>Trenčín</name>
<latitude>48.89</latitude>
<longitude>18.04</longitude>
<elevation>211</elevation>
<population year="2001" measured="census">57854</population>
<population year="2011" measured="census">55877</population>
<located_at watertype="river" river="river-Waag"/>
</city>
</province>
<province id="prov-Slovakia-8" country="SK" capital="cty-Slovakia-8">
<name>Trnavský</name>
<area>4145</area>
<population measured="census" year="2001">551003</population>
<population year="2011" measured="census">554741</population>
<city id="cty-Slovakia-8" country="SK" province="prov-Slovakia-8">
<name>Trnava</name>
<latitude>48.38</latitude>
<longitude>17.59</longitude>
<elevation>146</elevation>
<population year="2001" measured="census">70286</population>
<population year="2011" measured="census">66358</population>
</city>
</province>
</country>
<country car_code="SLO"
area="20256"
capital="cty-Slovenia-Ljubljana"
memberships="org-AG org-BIS org-CEI org-CD org-SELEC org-CE org-EMU org-EAPC org-EBRD org-ECB org-EIB org-ESA org-EU org-FAO org-IADB org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IFRCS org-IFC org-IHO org-ILO org-IMO org-IMF org-IOC org-IOM org-OIF org-ITU org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-UNTSO org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Slovenia</name>
<localname>Republika Slovenija</localname>
<population measured="census" year="1857">1101854</population>
<population measured="census" year="1869">1128768</population>
<population measured="census" year="1880">1182223</population>
<population measured="census" year="1890">1234056</population>
<population measured="census" year="1900">1268055</population>
<population measured="census" year="1910">1321098</population>
<population measured="census" year="1921">1054919</population>
<population measured="census" year="1931">1144298</population>
<population measured="census" year="1948">1391873</population>
<population measured="census" year="1953">1466425</population>
<population measured="census" year="1961">1591523</population>
<population measured="census" year="1971">1727137</population>
<population measured="census" year="1981">1891864</population>
<population measured="census" year="1991">1913355</population>
<population year="2002" measured="census">1964036</population>
<population year="2010" measured="admin.">2046976</population>
<population measured="census" year="2011">2050189</population>
<population year="2013" measured="admin.">2058821</population>
<population_growth>-0.23</population_growth>
<infant_mortality>4.04</infant_mortality>
<gdp_total>46820</gdp_total>
<gdp_agri>2.8</gdp_agri>
<gdp_ind>28.9</gdp_ind>
<gdp_serv>68.3</gdp_serv>
<inflation>1.8</inflation>
<unemployment>13.1</unemployment>
<indep_date from="Yugoslavia">1991-06-25</indep_date>
<government>parliamentary republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="91">Slovene</ethnicgroup>
<ethnicgroup percentage="3">Croat</ethnicgroup>
<ethnicgroup percentage="2">Serb</ethnicgroup>
<ethnicgroup percentage="1">Bosniak</ethnicgroup>
<religion percentage="1">Muslim</religion>
<religion percentage="96">Roman Catholic</religion>
<language percentage="91">Slovenian</language>
<language percentage="7">Croatian</language>
<border country="A" length="324"/>
<border country="H" length="102"/>
<border country="I" length="235"/>
<border country="HR" length="546"/>
<city id="cty-Slovenia-Ljubljana" country="SLO">
<name>Ljubljana</name>
<latitude>46.06</latitude>
<longitude>14.51</longitude>
<elevation>295</elevation>
<population year="1991" measured="census">276133</population>
<population year="2002" measured="census">257338</population>
<population year="2010" measured="admin.">279653</population>
<population year="2013" measured="admin.">282994</population>
<located_at watertype="river" river="river-Save"/>
</city>
<city id="cty-Slovenia-Maribor" country="SLO">
<name>Maribor</name>
<latitude>46.55</latitude>
<longitude>15.65</longitude>
<elevation>275</elevation>
<population year="1991" measured="census">108122</population>
<population year="2002" measured="census">92284</population>
<population year="2010" measured="admin.">112364</population>
<population year="2013" measured="admin.">111374</population>
<located_at watertype="river" river="river-Drau"/>
</city>
</country>
<country car_code="CH"
area="41290"
capital="cty-Switzerland-5"
memberships="org-AfDB org-ADB org-AG org-BIS org-CD org-CE org-EAPC org-EBRD org-EFTA org-CERN org-ESA org-EITI org-FATF org-FAO org-G-10 org-IADB org-IGAD org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-LAIA org-MIGA org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PFP org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNITAR org-UNMISS org-MONUSCO org-UNRWA org-UNTSO org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Switzerland</name>
<population measured="est." year="1950">4668088</population>
<population measured="est." year="1960">5296120</population>
<population measured="est." year="1970">6169357</population>
<population measured="est." year="1980">6303608</population>
<population measured="est." year="1990">6673920</population>
<population year="2000" measured="admin.">7204055</population>
<population year="2009" measured="admin.">7785806</population>
<population year="2013" measured="admin.">8139631</population>
<population_growth>0.78</population_growth>
<infant_mortality>3.73</infant_mortality>
<gdp_total>646200</gdp_total>
<gdp_agri>0.7</gdp_agri>
<gdp_ind>26.8</gdp_ind>
<gdp_serv>72.5</gdp_serv>
<inflation>-0.4</inflation>
<unemployment>3.2</unemployment>
<indep_date>1291-01-01</indep_date>
<government>formally a confederation but similar in structure to a federal republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="65">German</ethnicgroup>
<ethnicgroup percentage="22">French</ethnicgroup>
<ethnicgroup percentage="8">Italian</ethnicgroup>
<ethnicgroup percentage="1">Romansch</ethnicgroup>
<religion percentage="37.9">Roman Catholic</religion>
<religion percentage="25.5">Protestant</religion>
<religion percentage="1.8">Christian Orthodox</religion>
<religion percentage="5.1">Muslim</religion>
<religion percentage="0.3">Buddhist</religion>
<religion percentage="0.2">Jewish</religion>
<language percentage="20">French</language>
<language percentage="64">German</language>
<language percentage="7">Italian</language>
<language percentage="1">Romansch</language>
<border country="F" length="573"/>
<border country="A" length="164"/>
<border country="D" length="334"/>
<border country="I" length="740"/>
<border country="FL" length="41"/>
<province id="prov-Switzerland-2"
country="CH"
capital="cty-Switzerland-Aarau">
<name>Aargau</name>
<area>1403</area>
<population year="1991">528887</population>
<population measured="admin." year="2000">544300</population>
<population measured="admin." year="2009">600040</population>
<population measured="admin." year="2013">636362</population>
<city id="cty-Switzerland-Aarau"
country="CH"
province="prov-Switzerland-2">
<name>Aarau</name>
<latitude>47.4</latitude>
<longitude>8.05</longitude>
<elevation>381</elevation>
<located_at watertype="river" river="river-Aare"/>
</city>
</province>
<province id="prov-Switzerland-3"
country="CH"
capital="cty-Switzerland-Herisau">
<name>Appenzell Ausserrhoden</name>
<area>242</area>
<population measured="admin." year="2000">53500</population>
<population measured="admin." year="2009">53043</population>
<population measured="admin." year="2013">53691</population>
<city id="cty-Switzerland-Herisau"
country="CH"
province="prov-Switzerland-3">
<name>Herisau</name>
<latitude>47.38</latitude>
<longitude>9.27</longitude>
<elevation>771</elevation>
</city>
</province>
<province id="prov-Switzerland-4"
country="CH"
capital="cty-Switzerland-Appenzell">
<name>Appenzell Innerrhoden</name>
<area>172</area>
<population year="1991">14750</population>
<population measured="admin." year="2000">15000</population>
<population measured="admin." year="2009">15681</population>
<population measured="admin." year="2013">15778</population>
<city id="cty-Switzerland-Appenzell"
country="CH"
province="prov-Switzerland-4">
<name>Appenzell</name>
<latitude>47.33</latitude>
<longitude>9.42</longitude>
<elevation>780</elevation>
</city>
</province>
<province id="prov-Switzerland-5"
country="CH"
capital="cty-Switzerland-Liestal">
<name>Basel-Landschaft</name>
<area>517</area>
<population year="1991">252331</population>
<population measured="admin." year="2000">260000</population>
<population measured="admin." year="2009">272815</population>
<population measured="admin." year="2013">278656</population>
<city id="cty-Switzerland-Liestal"
country="CH"
province="prov-Switzerland-5">
<name>Liestal</name>
<latitude>47.47</latitude>
<longitude>7.73</longitude>
<elevation>327</elevation>
</city>
</province>
<province id="prov-Switzerland-6" country="CH" capital="cty-Switzerland-3">
<name>Basel-Stadt</name>
<area>37</area>
<population measured="admin." year="2000">187700</population>
<population measured="admin." year="2009">187898</population>
<population measured="admin." year="2013">189335</population>
<city id="cty-Switzerland-3" country="CH" province="prov-Switzerland-6">
<name>Basel</name>
<latitude>47.57</latitude>
<longitude>7.6</longitude>
<elevation>260</elevation>
<population year="1990" measured="est.">171000</population>
<population year="1991">172768</population>
<population year="2002" measured="est.">165051</population>
<population year="2009" measured="admin.">166173</population>
<population year="2013" measured="admin.">167386</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
</province>
<province id="prov-Switzerland-7" country="CH" capital="cty-Switzerland-5">
<name>Bern</name>
<area>5959</area>
<population year="1991">941952</population>
<population measured="admin." year="2000">943700</population>
<population measured="admin." year="2009">974235</population>
<population measured="admin." year="2013">1001281</population>
<city id="cty-Switzerland-5" country="CH" province="prov-Switzerland-7">
<name>Bern</name>
<latitude>46.95</latitude>
<longitude>7.45</longitude>
<elevation>542</elevation>
<population year="1990" measured="est.">134600</population>
<population year="1991">134393</population>
<population year="2002" measured="est.">122707</population>
<population year="2009" measured="admin.">123466</population>
<population year="2013" measured="admin.">128848</population>
<located_at watertype="river" river="river-Aare"/>
</city>
<city id="cty-Switzerland-10" country="CH" province="prov-Switzerland-7">
<name>Biel</name>
<name>Bienne</name>
<latitude>47.13</latitude>
<longitude>7.25</longitude>
<elevation>434</elevation>
<population year="1991">53308</population>
<population year="2009" measured="admin.">50455</population>
<population year="2013" measured="admin.">53031</population>
</city>
</province>
<province id="prov-Switzerland-8"
country="CH"
capital="cty-Switzerland-Fribourg">
<name>Fribourg</name>
<name>Freiburg</name>
<area>1670</area>
<population year="1991">224552</population>
<population measured="admin." year="2000">236300</population>
<population measured="admin." year="2009">273159</population>
<population measured="admin." year="2013">297622</population>
<city id="cty-Switzerland-Fribourg"
country="CH"
province="prov-Switzerland-8">
<name>Fribourg</name>
<name>Freiburg</name>
<latitude>46.8</latitude>
<longitude>7.15</longitude>
<elevation>610</elevation>
</city>
</province>
<province id="prov-Switzerland-9" country="CH" capital="cty-Switzerland-4">
<name>Genève</name>
<name>Genf</name>
<area>282</area>
<population year="1991">395466</population>
<population measured="admin." year="2000">408800</population>
<population measured="admin." year="2009">453292</population>
<population measured="admin." year="2013">469433</population>
<city id="cty-Switzerland-4" country="CH" province="prov-Switzerland-9">
<name>Genève</name>
<name>Geneva</name>
<name>Genf</name>
<latitude>46.2</latitude>
<longitude>6.15</longitude>
<elevation>375</elevation>
<population year="1990" measured="est.">167200</population>
<population year="1991">167697</population>
<population year="2002" measured="est.">177535</population>
<population year="2009" measured="admin.">185958</population>
<population year="2013" measured="admin.">191557</population>
<located_at watertype="river" river="river-Rhone"/>
<located_at watertype="lake" lake="lake-Genfer_See"/>
</city>
</province>
<province id="prov-Switzerland-10"
country="CH"
capital="cty-Switzerland-Glarus">
<name>Glarus</name>
<area>685</area>
<population year="1991">39410</population>
<population measured="admin." year="2000">38500</population>
<population measured="admin." year="2009">38479</population>
<population measured="admin." year="2013">39593</population>
<city id="cty-Switzerland-Glarus"
country="CH"
province="prov-Switzerland-10">
<name>Glarus</name>
<latitude>47.03</latitude>
<longitude>9.07</longitude>
<elevation>472</elevation>
</city>
</province>
<province id="prov-Switzerland-11"
country="CH"
capital="cty-Switzerland-Chur">
<name>Graubünden</name>
<area>7105</area>
<population year="1991">185063</population>
<population measured="admin." year="2000">186700</population>
<population measured="admin." year="2009">191861</population>
<population measured="admin." year="2013">194959</population>
<city id="cty-Switzerland-Chur"
country="CH"
province="prov-Switzerland-11">
<name>Chur</name>
<latitude>46.85</latitude>
<longitude>9.53</longitude>
<elevation>593</elevation>
<located_at watertype="river" river="river-Rhein"/>
</city>
</province>
<province id="prov-Switzerland-12"
country="CH"
capital="cty-Switzerland-Delemont">
<name>Jura</name>
<area>838</area>
<population year="1991">69188</population>
<population measured="admin." year="2000">68800</population>
<population measured="admin." year="2009">70134</population>
<population measured="admin." year="2013">71738</population>
<city id="cty-Switzerland-Delemont"
country="CH"
province="prov-Switzerland-12">
<name>Delemont</name>
<latitude>47.37</latitude>
<longitude>7.35</longitude>
<elevation>435</elevation>
</city>
</province>
<province id="prov-Switzerland-13" country="CH" capital="cty-Switzerland-9">
<name>Luzern</name>
<area>1493</area>
<population year="1991">340536</population>
<population measured="admin." year="2000">347200</population>
<population measured="admin." year="2009">372964</population>
<population measured="admin." year="2013">390349</population>
<city id="cty-Switzerland-9" country="CH" province="prov-Switzerland-13">
<name>Luzern</name>
<name>Lucerne</name>
<latitude>47.05</latitude>
<longitude>8.3</longitude>
<elevation>436</elevation>
<population year="1991">59811</population>
<population year="2002" measured="est.">57393</population>
<population year="2009" measured="admin.">76733</population>
<population year="2013" measured="admin.">80501</population>
<located_at watertype="river" river="river-Reuss"/>
<located_at watertype="lake" lake="lake-Vierwaldstattersee"/>
</city>
</province>
<province id="prov-Switzerland-14"
country="CH"
capital="cty-Switzerland-Neuchatel">
<name>Neuchâtel</name>
<name>Neuenburg</name>
<area>803</area>
<population year="1991">165258</population>
<population measured="admin." year="2000">165700</population>
<population measured="admin." year="2009">171647</population>
<population measured="admin." year="2013">176402</population>
<city id="cty-Switzerland-Neuchatel"
country="CH"
province="prov-Switzerland-14">
<name>Neuchatel</name>
<name>Neuenburg</name>
<latitude>47</latitude>
<longitude>6.93</longitude>
<elevation>430</elevation>
</city>
</province>
<province id="prov-Switzerland-15"
country="CH"
capital="cty-Switzerland-Stans">
<name>Nidwalden</name>
<area>276</area>
<population year="1991">36466</population>
<population measured="admin." year="2000">38000</population>
<population measured="admin." year="2009">40794</population>
<population measured="admin." year="2013">41888</population>
<city id="cty-Switzerland-Stans"
country="CH"
province="prov-Switzerland-15">
<name>Stans</name>
<latitude>46.95</latitude>
<longitude>8.35</longitude>
<elevation>452</elevation>
</city>
</province>
<province id="prov-Switzerland-16"
country="CH"
capital="cty-Switzerland-Sarnen">
<name>Obwalden</name>
<area>490</area>
<population year="1991">31310</population>
<population measured="admin." year="2000">32400</population>
<population measured="admin." year="2009">35032</population>
<population measured="admin." year="2013">36507</population>
<city id="cty-Switzerland-Sarnen"
country="CH"
province="prov-Switzerland-16">
<name>Sarnen</name>
<latitude>46.88</latitude>
<longitude>8.23</longitude>
<elevation>473</elevation>
</city>
</province>
<province id="prov-Switzerland-17" country="CH" capital="cty-Switzerland-8">
<name>Sankt Gallen</name>
<area>2025</area>
<population year="1991">442350</population>
<population measured="admin." year="2000">449400</population>
<population measured="admin." year="2009">474676</population>
<population measured="admin." year="2013">491699</population>
<city id="cty-Switzerland-8" country="CH" province="prov-Switzerland-17">
<name>Sankt Gallen</name>
<name>St. Gallen</name>
<latitude>47.42</latitude>
<longitude>9.37</longitude>
<elevation>675</elevation>
<population year="1991">74106</population>
<population year="2002" measured="est.">70492</population>
<population year="2009" measured="admin.">72642</population>
<population year="2013" measured="admin.">74581</population>
</city>
</province>
<province id="prov-Switzerland-18"
country="CH"
capital="cty-Switzerland-Schaffhausen">
<name>Schaffhausen</name>
<area>298</area>
<population year="1991">74035</population>
<population measured="admin." year="2000">73300</population>
<population measured="admin." year="2009">75657</population>
<population measured="admin." year="2013">78783</population>
<city id="cty-Switzerland-Schaffhausen"
country="CH"
province="prov-Switzerland-18">
<name>Schaffhausen</name>
<latitude>47.7</latitude>
<longitude>8.63</longitude>
<elevation>403</elevation>
<located_at watertype="river" river="river-Rhein"/>
</city>
</province>
<province id="prov-Switzerland-19"
country="CH"
capital="cty-Switzerland-Schwyz">
<name>Schwyz</name>
<area>908</area>
<population year="1991">122409</population>
<population measured="admin." year="2000">130200</population>
<population measured="admin." year="2009">144686</population>
<population measured="admin." year="2013">151396</population>
<city id="cty-Switzerland-Schwyz"
country="CH"
province="prov-Switzerland-19">
<name>Schwyz</name>
<latitude>47.02</latitude>
<longitude>8.65</longitude>
<elevation>516</elevation>
</city>
</province>
<province id="prov-Switzerland-20"
country="CH"
capital="cty-Switzerland-Solothurn">
<name>Solothurn</name>
<area>790</area>
<population year="1991">239264</population>
<population measured="admin." year="2000">244000</population>
<population measured="admin." year="2009">252748</population>
<population measured="admin." year="2013">261437</population>
<city id="cty-Switzerland-Solothurn"
country="CH"
province="prov-Switzerland-20">
<name>Solothurn</name>
<latitude>47.22</latitude>
<longitude>7.53</longitude>
<elevation>430</elevation>
<located_at watertype="river" river="river-Aare"/>
</city>
</province>
<province id="prov-Switzerland-21"
country="CH"
capital="cty-Switzerland-Frauenfeld">
<name>Thurgau</name>
<area>990</area>
<population year="1991">223372</population>
<population measured="admin." year="2000">227300</population>
<population measured="admin." year="2009">244805</population>
<population measured="admin." year="2013">260278</population>
<city id="cty-Switzerland-Frauenfeld"
country="CH"
province="prov-Switzerland-21">
<name>Frauenfeld</name>
<latitude>47.55</latitude>
<longitude>8.9</longitude>
<elevation>417</elevation>
</city>
</province>
<province id="prov-Switzerland-22"
country="CH"
capital="cty-Switzerland-Bellinzona">
<name>Ticino</name>
<name>Tessin</name>
<area>2812</area>
<population year="1991">305199</population>
<population measured="admin." year="2000">310200</population>
<population measured="admin." year="2009">335720</population>
<population measured="admin." year="2013">346539</population>
<city id="cty-Switzerland-Bellinzona"
country="CH"
province="prov-Switzerland-22">
<name>Bellinzona</name>
<latitude>46.2</latitude>
<longitude>9.02</longitude>
<elevation>238</elevation>
<located_at watertype="river" river="river-Ticino"/>
</city>
<city id="cty-Switzerland-Lugano"
country="CH"
province="prov-Switzerland-22">
<name>Lugano</name>
<latitude>46</latitude>
<longitude>8.95</longitude>
<elevation>273</elevation>
<population year="2009" measured="admin.">55060</population>
<population year="2013" measured="admin.">62792</population>
</city>
</province>
<province id="prov-Switzerland-23"
country="CH"
capital="cty-Switzerland-Altdorf">
<name>Uri</name>
<area>1076</area>
<population measured="admin." year="2000">35200</population>
<population measured="admin." year="2009">35335</population>
<population measured="admin." year="2013">35865</population>
<city id="cty-Switzerland-Altdorf"
country="CH"
province="prov-Switzerland-23">
<name>Altdorf</name>
<latitude>46.87</latitude>
<longitude>8.63</longitude>
<elevation>458</elevation>
<located_at watertype="river" river="river-Reuss"/>
</city>
</province>
<province id="prov-Switzerland-24"
country="CH"
capital="cty-Switzerland-Sion">
<name>Valais</name>
<name>Wallis</name>
<area>5224</area>
<population year="1991">271291</population>
<population measured="admin." year="2000">276200</population>
<population measured="admin." year="2009">307392</population>
<population measured="admin." year="2013">327011</population>
<city id="cty-Switzerland-Sion"
country="CH"
province="prov-Switzerland-24">
<name>Sion</name>
<name>Sitten</name>
<latitude>46.23</latitude>
<longitude>7.37</longitude>
<elevation>500</elevation>
<located_at watertype="river" river="river-Rhone"/>
</city>
</province>
<province id="prov-Switzerland-25" country="CH" capital="cty-Switzerland-6">
<name>Vaud</name>
<name>Waadt</name>
<area>3212</area>
<population year="1991">605677</population>
<population measured="admin." year="2000">620300</population>
<population measured="admin." year="2009">701526</population>
<population measured="admin." year="2013">749373</population>
<city id="cty-Switzerland-6" country="CH" province="prov-Switzerland-25">
<name>Lausanne</name>
<latitude>46.52</latitude>
<longitude>6.63</longitude>
<elevation>495</elevation>
<population year="1990" measured="est.">123200</population>
<population year="1991">123149</population>
<population year="2002" measured="est.">116332</population>
<population year="2009" measured="admin.">125885</population>
<population year="2013" measured="admin.">132788</population>
<located_at watertype="lake" lake="lake-Genfer_See"/>
</city>
</province>
<province id="prov-Switzerland-26" country="CH" capital="cty-Switzerland-Zug">
<name>Zug</name>
<area>238</area>
<population year="1991">92392</population>
<population measured="admin." year="2000">99300</population>
<population measured="admin." year="2009">110890</population>
<population measured="admin." year="2013">118118</population>
<city id="cty-Switzerland-Zug"
country="CH"
province="prov-Switzerland-26">
<name>Zug</name>
<latitude>47.17</latitude>
<longitude>8.52</longitude>
<elevation>425</elevation>
</city>
</province>
<province id="prov-Switzerland-27" country="CH" capital="cty-Switzerland-2">
<name>Zürich</name>
<area>1728</area>
<population year="1991">1175457</population>
<population measured="admin." year="2000">1211600</population>
<population measured="admin." year="2009">1351297</population>
<population measured="admin." year="2013">1425538</population>
<city id="cty-Switzerland-2" country="CH" province="prov-Switzerland-27">
<name>Zürich</name>
<latitude>47.37</latitude>
<longitude>8.55</longitude>
<elevation>408</elevation>
<population year="1990" measured="est.">341300</population>
<population year="1991">343106</population>
<population year="2002" measured="est.">342518</population>
<population year="2009" measured="admin.">368677</population>
<population year="2013" measured="admin.">384786</population>
<located_at watertype="river" river="river-Limmat"/>
<located_at watertype="lake" lake="lake-Zurichsee"/>
</city>
<city id="cty-Switzerland-7" country="CH" province="prov-Switzerland-27">
<name>Winterthur</name>
<latitude>47.5</latitude>
<longitude>8.75</longitude>
<elevation>439</elevation>
<population year="1991">86340</population>
<population year="2002" measured="est.">90152</population>
<population year="2009" measured="admin.">99377</population>
<population year="2013" measured="admin.">105676</population>
</city>
</province>
</country>
<country car_code="BY"
area="207600"
capital="cty-Belarus-Minsk"
memberships="org-BSEC org-CEI org-CSTO org-CIS org-CBSS org-EurasEC org-EAPC org-EBRD org-FAO org-GCTU org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-Interpol org-IFRCS org-IFC org-ILO org-IMSO org-IMF org-IOC org-IOM org-ITU org-ITUC org-MIGA org-NAM org-NSG org-OSCE org-OPCW org-PFP org-PCA org-SCO org-UN org-UNCTAD org-UNESCO org-UNIDO org-UNIFIL org-UNMISS org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Belarus</name>
<localname>Рэспубліка Беларусь</localname>
<population measured="est." year="1950">7745003</population>
<population measured="census" year="1959">8054648</population>
<population measured="census" year="1970">9002338</population>
<population measured="census" year="1979">9532516</population>
<population measured="census" year="1989">10151806</population>
<population measured="census" year="1999">10045237</population>
<population measured="census" year="2009">9503807</population>
<population year="2013" measured="estimate">9460692</population>
<population_growth>-0.19</population_growth>
<infant_mortality>3.64</infant_mortality>
<gdp_total>69240</gdp_total>
<gdp_agri>9.2</gdp_agri>
<gdp_ind>46.2</gdp_ind>
<gdp_serv>44.7</gdp_serv>
<inflation>19</inflation>
<unemployment>1</unemployment>
<indep_date from="Soviet Union">1991-08-25</indep_date>
<government>republic in name, although in fact a dictatorship</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="81.2">Belorussian</ethnicgroup>
<ethnicgroup percentage="11.4">Russian</ethnicgroup>
<ethnicgroup percentage="3.9">Polish</ethnicgroup>
<ethnicgroup percentage="2.4">Ukrainian</ethnicgroup>
<religion percentage="80">Christian Orthodox</religion>
<religion percentage="10">Roman Catholic</religion>
<religion percentage="2.6">Protestant</religion>
<language percentage="62.8">Russian</language>
<language percentage="36.7">Belorussian</language>
<border country="LV" length="141"/>
<border country="LT" length="502"/>
<border country="PL" length="605"/>
<border country="UA" length="891"/>
<border country="R" length="959"/>
<province id="prov-Belarus-1" country="BY" capital="cty-Belarus-1">
<name>Brest</name>
<localname>Брестской</localname>
<area>32790</area>
<population measured="census" year="1999">1485100</population>
<population year="2009" measured="census">1401177</population>
<population measured="estimate" year="2013">1389782</population>
<city id="cty-Belarus-1" country="BY" province="prov-Belarus-1">
<name>Brest</name>
<localname>Брест</localname>
<latitude>52.13</latitude>
<longitude>23.67</longitude>
<elevation>280.4</elevation>
<population year="1999" measured="census">286400</population>
<population year="2009" measured="census">309764</population>
<located_at watertype="river" river="river-WesternBug"/>
</city>
</province>
<province id="prov-Belarus-2" country="BY" capital="cty-Belarus-2">
<name>Vitebsk</name>
<localname>Витебской</localname>
<area>40049</area>
<population measured="census" year="1999">1377200</population>
<population year="2009" measured="census">1230821</population>
<population measured="estimate" year="2013">1206022</population>
<city id="cty-Belarus-2" country="BY" province="prov-Belarus-2">
<name>Vitebsk</name>
<localname>Витебск</localname>
<latitude>55.18</latitude>
<longitude>30.17</longitude>
<elevation>172</elevation>
<population year="1999" measured="census">340700</population>
<population year="2009" measured="census">347928</population>
<located_at watertype="river" river="river-Westliche_Dwina"/>
</city>
</province>
<province id="prov-Belarus-3" country="BY" capital="cty-Belarus-3">
<name>Gomel</name>
<localname>Гомельской</localname>
<area>40361</area>
<population measured="census" year="1999">1545100</population>
<population year="2009" measured="census">1440718</population>
<population measured="estimate" year="2013">1426674</population>
<city id="cty-Belarus-3" country="BY" province="prov-Belarus-3">
<name>Gomel</name>
<localname>Гомель</localname>
<latitude>52.45</latitude>
<longitude>30.98</longitude>
<elevation>138</elevation>
<population year="1999" measured="census">475500</population>
<population year="2009" measured="census">482652</population>
</city>
</province>
<province id="prov-Belarus-4" country="BY" capital="cty-Belarus-4">
<name>Grodno</name>
<localname>Гродненской</localname>
<area>25118</area>
<population measured="census" year="1999">1185200</population>
<population year="2009" measured="census">1072381</population>
<population measured="estimate" year="2013">1056955</population>
<city id="cty-Belarus-4" country="BY" province="prov-Belarus-4">
<name>Grodno</name>
<name>Hrodna</name>
<localname>Гродно</localname>
<latitude>53.67</latitude>
<longitude>23.83</longitude>
<elevation>137</elevation>
<population year="1999" measured="census">301600</population>
<population year="2009" measured="census">327540</population>
<located_at watertype="river" river="river-Memel"/>
</city>
</province>
<province id="prov-Belarus-5" country="BY" capital="cty-Belarus-5">
<name>Mogilev</name>
<localname>Могилевской</localname>
<area>29079</area>
<population measured="census" year="1999">1213500</population>
<population year="2009" measured="census">1099374</population>
<population measured="estimate" year="2013">1075067</population>
<city id="cty-Belarus-5" country="BY" province="prov-Belarus-5">
<name>Mogilev</name>
<localname>Могилев</localname>
<latitude>53.9</latitude>
<longitude>30.33</longitude>
<elevation>192</elevation>
<population year="1999" measured="census">356500</population>
<population year="2009" measured="census">358279</population>
<located_at watertype="river" river="river-Dnepr"/>
</city>
<city id="cty-Belarus-6" country="BY" province="prov-Belarus-5">
<name>Bobruysk</name>
<localname>Бобруйск</localname>
<latitude>53.15</latitude>
<longitude>29.23</longitude>
<elevation>157</elevation>
<population year="1999" measured="census">220700</population>
<population year="2009" measured="census">215092</population>
</city>
</province>
<province id="prov-Belarus-6" country="BY" capital="cty-Belarus-Minsk">
<name>Minsk</name>
<localname>Минской</localname>
<area>39912</area>
<population measured="census" year="1999">1558632</population>
<population year="2009" measured="census">1422528</population>
<population measured="estimate" year="2013">1400717</population>
</province>
<province id="prov-Belarus-7" country="BY" capital="cty-Belarus-Minsk">
<name>Minsk City</name>
<localname>Мінск</localname>
<area>305</area>
<population measured="census" year="1999">1680468</population>
<population year="2009" measured="census">1836808</population>
<population measured="estimate" year="2013">1905475</population>
<city id="cty-Belarus-Minsk" country="BY" province="prov-Belarus-7">
<name>Minsk</name>
<localname>Мінск</localname>
<latitude>53.9</latitude>
<longitude>27.57</longitude>
<elevation>280.6</elevation>
<population year="1987">1540000</population>
<population year="1999" measured="census">1680500</population>
<population year="2009" measured="census">1836808</population>
</city>
</province>
</country>
<country car_code="LV"
area="64100"
capital="cty-Latvia-Riga"
memberships="org-AG org-BA org-BIS org-CD org-CE org-CBSS org-EMU org-EAPC org-EBRD org-ECB org-EIB org-EU org-FAO org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IFRCS org-IFC org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ISO org-OIF org-ITU org-ITUC org-MIGA org-NC org-NIB org-NATO org-NSG org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UPU org-WCO org-WHO org-WIPO org-WMO org-WTO">
<name>Latvia</name>
<localname>Latvijas Republika</localname>
<population measured="census" year="1897">1929387</population>
<population measured="census" year="1920">1596131</population>
<population measured="census" year="1925">1844805</population>
<population measured="census" year="1930">1900045</population>
<population measured="census" year="1935">1950502</population>
<population measured="census" year="1959">2093458</population>
<population measured="census" year="1979">2502816</population>
<population measured="census" year="1989">2666567</population>
<population measured="census" year="2000">2377383</population>
<population measured="census" year="2011">2070371</population>
<population year="2013" measured="estimate">2201196</population>
<population_growth>-0.62</population_growth>
<infant_mortality>7.91</infant_mortality>
<gdp_total>30380</gdp_total>
<gdp_agri>4.9</gdp_agri>
<gdp_ind>25.7</gdp_ind>
<gdp_serv>69.4</gdp_serv>
<inflation>0.2</inflation>
<unemployment>9.8</unemployment>
<indep_date from="Soviet Union">1991-09-06</indep_date>
<government>parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="59.3">Latvian</ethnicgroup>
<ethnicgroup percentage="27.8">Russian</ethnicgroup>
<ethnicgroup percentage="3.6">Belorussian</ethnicgroup>
<ethnicgroup percentage="2.5">Ukrainian</ethnicgroup>
<ethnicgroup percentage="2.4">Polish</ethnicgroup>
<ethnicgroup percentage="1.3">Lithuanian</ethnicgroup>
<religion percentage="19.6">Protestant</religion>
<religion percentage="15.3">Christian Orthodox</religion>
<language percentage="58.2">Latvian</language>
<language percentage="37.5">Russian</language>
<border country="BY" length="141"/>
<border country="LT" length="453"/>
<border country="R" length="217"/>
<border country="EW" length="267"/>
<city id="cty-Latvia-Riga" country="LV">
<name>Rīga</name>
<latitude>56.95</latitude>
<longitude>24.11</longitude>
<elevation>7</elevation>
<population year="1987">900000</population>
<population year="2000" measured="census">764329</population>
<population year="2011" measured="census">658640</population>
<population year="2013" measured="estimate">696618</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
<located_at watertype="river" river="river-Westliche_Dwina"/>
</city>
</country>
<country car_code="LT"
area="65200"
capital="cty-Lithuania-1"
memberships="org-AG org-BA org-BIS org-CD org-CE org-CBSS org-EAPC org-EBRD org-EIB org-EU org-FAO org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IFRCS org-IFC org-ILO org-IMO org-IMF org-IOC org-IOM org-OIF org-ITU org-ITUC org-MIGA org-NC org-NIB org-NATO org-NSG org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNIDO org-UNSC org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO">
<name>Lithuania</name>
<localname>Lietuvos Respublika</localname>
<population measured="est." year="1950">2567402</population>
<population measured="census" year="1959">2696700</population>
<population measured="census" year="1970">3118900</population>
<population measured="census" year="1979">3391490</population>
<population measured="census" year="1989">3674802</population>
<population measured="census" year="2001">3483972</population>
<population measured="census" year="2011">3043429</population>
<population year="2013" measured="estimate">2979310</population>
<population_growth>-0.29</population_growth>
<infant_mortality>6</infant_mortality>
<gdp_total>46710</gdp_total>
<gdp_agri>3.7</gdp_agri>
<gdp_ind>28.3</gdp_ind>
<gdp_serv>68</gdp_serv>
<inflation>1.2</inflation>
<unemployment>12.4</unemployment>
<indep_date from="Soviet Union">1991-09-06</indep_date>
<government>parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="84">Lithuanian</ethnicgroup>
<ethnicgroup percentage="6.1">Polish</ethnicgroup>
<ethnicgroup percentage="4.9">Russian</ethnicgroup>
<ethnicgroup percentage="1.1">Belorussian</ethnicgroup>
<religion percentage="79">Roman Catholic</religion>
<religion percentage="4.1">Christian Orthodox</religion>
<religion percentage="1.9">Protestant</religion>
<language percentage="82">Lithuanian</language>
<language percentage="8">Russian</language>
<language percentage="5.6">Polish</language>
<border country="BY" length="502"/>
<border country="LV" length="453"/>
<border country="PL" length="91"/>
<border country="R" length="227"/>
<city id="cty-Lithuania-1" country="LT">
<name>Vilnius</name>
<latitude>54.68</latitude>
<longitude>25.28</longitude>
<elevation>112</elevation>
<population year="1987">566000</population>
<population year="2001" measured="census">553904</population>
<population year="2011" measured="census">535631</population>
<population year="2013" measured="estimate">538747</population>
</city>
<city id="cty-Lithuania-2" country="LT">
<name>Kaunas</name>
<latitude>54.9</latitude>
<longitude>23.89</longitude>
<elevation>48</elevation>
<population year="2001" measured="census">378943</population>
<population year="2011" measured="census">315993</population>
<population year="2013" measured="estimate">307498</population>
<located_at watertype="river" river="river-Memel"/>
</city>
<city id="cty-Lithuania-3" country="LT">
<name>Klaipeda</name>
<latitude>55.71</latitude>
<longitude>21.13</longitude>
<elevation>21</elevation>
<population year="2001" measured="census">192954</population>
<population year="2011" measured="census">162360</population>
<population year="2013" measured="estimate">158891</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</country>
<country car_code="PL"
area="312683"
capital="cty-PL-Warsaw"
memberships="org-AG org-BIS org-BSEC org-CEI org-CD org-CE org-CBSS org-EAPC org-EBRD org-EIB org-CERN org-ESA org-EU org-FAO org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-MINURSO org-UNMIL org-UNMISS org-UNOCI org-MONUSCO org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Poland</name>
<localname>Rzeczpospolita Polska</localname>
<population measured="census" year="1946">23929757</population>
<population measured="census" year="1950">24613684</population>
<population measured="census" year="1960">29405729</population>
<population measured="census" year="1970">32749400</population>
<population measured="census" year="1978">35061450</population>
<population measured="census" year="1988">37878641</population>
<population measured="census" year="2002">38230000</population>
<population year="2005" measured="estimate">38167786</population>
<population year="2009" measured="estimate">38153389</population>
<population measured="census" year="2011">38501000</population>
<population year="2012" measured="estimate">38533789</population>
<population_growth>-0.11</population_growth>
<infant_mortality>6.19</infant_mortality>
<gdp_total>513900</gdp_total>
<gdp_agri>4</gdp_agri>
<gdp_ind>33.3</gdp_ind>
<gdp_serv>62.7</gdp_serv>
<inflation>1</inflation>
<unemployment>10.3</unemployment>
<indep_date>1918-11-11</indep_date>
<government>republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="1.3">German</ethnicgroup>
<ethnicgroup percentage="97.6">Polish</ethnicgroup>
<ethnicgroup percentage="0.6">Ukrainian</ethnicgroup>
<ethnicgroup percentage="0.5">Byelorussian</ethnicgroup>
<religion percentage="95">Roman Catholic</religion>
<language percentage="100">Polish</language>
<border country="CZ" length="658"/>
<border country="D" length="456"/>
<border country="SK" length="444"/>
<border country="BY" length="605"/>
<border country="LT" length="91"/>
<border country="UA" length="428"/>
<border country="R" length="206"/>
<province id="prov-PL-1" country="PL" capital="cty-PL-5">
<name>Dolnośląskie</name>
<area>19946</area>
<population measured="estimate" year="2005">2893055</population>
<population measured="estimate" year="2009">2876641</population>
<population measured="estimate" year="2012">2915245</population>
<city id="cty-PL-5" country="PL" province="prov-PL-1">
<name>Wrocław</name>
<latitude>51.1</latitude>
<longitude>17.03</longitude>
<elevation>105</elevation>
<population year="1990">642000</population>
<population year="2002" measured="census">640367</population>
<population year="2005" measured="estimate">636268</population>
<population year="2009" measured="estimate">632240</population>
<population year="2012" measured="estimate">631377</population>
<located_at watertype="river" river="river-Oder"/>
</city>
<city id="cty-PL-41" country="PL" province="prov-PL-1">
<name>Legnica</name>
<latitude>51.21</latitude>
<longitude>16.16</longitude>
<elevation>113</elevation>
<population year="1990">104000</population>
<population year="2002" measured="census">107100</population>
<population year="2005" measured="estimate">106143</population>
<population year="2009" measured="estimate">104393</population>
<population year="2012" measured="estimate">102708</population>
</city>
<city id="cty-PL-28" country="PL" province="prov-PL-1">
<name>Wałbrzych</name>
<latitude>50.77</latitude>
<longitude>16.28</longitude>
<elevation>350</elevation>
<population year="1990">141000</population>
<population year="2002" measured="census">130268</population>
<population year="2005" measured="estimate">127841</population>
<population year="2009" measured="estimate">121919</population>
<population year="2012" measured="estimate">119216</population>
</city>
</province>
<province id="prov-PL-2" country="PL" capital="cty-PL-9">
<name>Kujawsko-Pomorskie</name>
<area>17971</area>
<population measured="estimate" year="2005">2068258</population>
<population measured="estimate" year="2009">2068809</population>
<population measured="estimate" year="2012">2097818</population>
<city id="cty-PL-9" country="PL" province="prov-PL-2">
<name>Bydgoszcz</name>
<latitude>53.12</latitude>
<longitude>18</longitude>
<elevation>60</elevation>
<population year="1990">380000</population>
<population year="2002" measured="census">373804</population>
<population year="2005" measured="estimate">368235</population>
<population year="2009" measured="estimate">358029</population>
<population year="2012" measured="estimate">362286</population>
<located_at watertype="river" river="river-Weichsel"/>
</city>
<city id="cty-PL-21" country="PL" province="prov-PL-2">
<name>Toruń</name>
<latitude>53.03</latitude>
<longitude>18.62</longitude>
<elevation>65</elevation>
<population year="1990">201000</population>
<population year="2002" measured="census">211243</population>
<population year="2005" measured="estimate">208278</population>
<population year="2009" measured="estimate">205934</population>
<population year="2012" measured="estimate">204847</population>
<located_at watertype="river" river="river-Weichsel"/>
</city>
<city id="cty-PL-43" country="PL" province="prov-PL-2">
<name>Grudziadz</name>
<latitude>53.49</latitude>
<longitude>18.78</longitude>
<elevation>50</elevation>
<population year="1990">101000</population>
<population year="2002" measured="census">100376</population>
<population year="2012" measured="estimate">98726</population>
<located_at watertype="river" river="river-Weichsel"/>
</city>
<city id="cty-PL-35" country="PL" province="prov-PL-2">
<name>Włocławek</name>
<latitude>52.66</latitude>
<longitude>19.07</longitude>
<population year="1990">121000</population>
<population year="2002" measured="census">121229</population>
<population year="2005" measured="estimate">120369</population>
<population year="2009" measured="estimate">117785</population>
<population year="2012" measured="estimate">115982</population>
<located_at watertype="river" river="river-Weichsel"/>
</city>
</province>
<province id="prov-PL-3" country="PL" capital="cty-PL-11">
<name>Lubelskie</name>
<area>25122</area>
<population measured="estimate" year="2005">2185562</population>
<population measured="estimate" year="2009">2159800</population>
<population measured="estimate" year="2012">2168616</population>
<city id="cty-PL-11" country="PL" province="prov-PL-3">
<name>Lublin</name>
<latitude>51.25</latitude>
<longitude>22.57</longitude>
<elevation>168</elevation>
<population year="1990">350000</population>
<population year="2002" measured="census">357110</population>
<population year="2005" measured="estimate">355998</population>
<population year="2009" measured="estimate">350392</population>
<population year="2012" measured="estimate">348120</population>
</city>
</province>
<province id="prov-PL-4" country="PL" capital="cty-PL-37">
<name>Lubuskie</name>
<area>13987</area>
<population measured="estimate" year="2005">1009168</population>
<population measured="estimate" year="2009">1009621</population>
<population measured="estimate" year="2012">1023102</population>
<city id="cty-PL-37" country="PL" province="prov-PL-4">
<name>Zielona Góra</name>
<latitude>51.93</latitude>
<longitude>15.5</longitude>
<elevation>71</elevation>
<population year="1990">113000</population>
<population year="2002" measured="census">118293</population>
<population year="2005" measured="estimate">118516</population>
<population year="2009" measured="estimate">117557</population>
<population year="2012" measured="estimate">119182</population>
</city>
<city id="cty-PL-Gorzow-Wielkopolski" country="PL" province="prov-PL-4">
<name>Gorzów Wielkopolski</name>
<latitude>52.73</latitude>
<longitude>15.25</longitude>
<elevation>19</elevation>
<population year="1990">123000</population>
<population year="2002" measured="census">125914</population>
<population year="2005" measured="estimate">125578</population>
<population year="2009" measured="estimate">125149</population>
<population year="2012" measured="estimate">124470</population>
<located_at watertype="river" river="river-Warta"/>
</city>
</province>
<province id="prov-PL-5" country="PL" capital="cty-PL-3">
<name>Łódzkie</name>
<area>18218</area>
<population measured="estimate" year="2005">2587702</population>
<population measured="estimate" year="2009">2545493</population>
<population measured="estimate" year="2012">2528632</population>
<city id="cty-PL-3" country="PL" province="prov-PL-5">
<name>Łódź</name>
<latitude>51.78</latitude>
<longitude>19.47</longitude>
<elevation>162</elevation>
<population year="1990">852000</population>
<population year="2002" measured="census">789318</population>
<population year="2005" measured="estimate">774004</population>
<population year="2009" measured="estimate">744541</population>
<population year="2012" measured="estimate">722022</population>
</city>
</province>
<province id="prov-PL-6" country="PL" capital="cty-PL-Krakow">
<name>Małopolskie</name>
<area>15182</area>
<population measured="estimate" year="2005">3254152</population>
<population measured="estimate" year="2009">3292805</population>
<population measured="estimate" year="2012">3350350</population>
<city id="cty-PL-Krakow" country="PL" province="prov-PL-6">
<name>Kraków</name>
<latitude>50.06</latitude>
<longitude>19.94</longitude>
<elevation>219</elevation>
<population year="2002" measured="census">758544</population>
<population year="2005" measured="estimate">757430</population>
<population year="2009" measured="estimate">754854</population>
<population year="2012" measured="estimate">759131</population>
<located_at watertype="river" river="river-Weichsel"/>
</city>
<city id="cty-PL-36" country="PL" province="prov-PL-6">
<name>Tarnów</name>
<latitude>50.01</latitude>
<longitude>20.99</longitude>
<elevation>190</elevation>
<population year="1990">120000</population>
<population year="2002" measured="census">119913</population>
<population year="2005" measured="estimate">118267</population>
<population year="2009" measured="estimate">115341</population>
<population year="2012" measured="estimate">113188</population>
</city>
</province>
<province id="prov-PL-7" country="PL" capital="cty-PL-Warsaw">
<name>Mazowieckie</name>
<area>35558</area>
<population measured="estimate" year="2005">5145591</population>
<population measured="estimate" year="2009">5213855</population>
<population measured="estimate" year="2012">5293224</population>
<city id="cty-PL-Warsaw" country="PL" province="prov-PL-7">
<name>Warszawa</name>
<name>Warsaw</name>
<latitude>52.23</latitude>
<longitude>21.02</longitude>
<elevation>78</elevation>
<population year="1990">1655000</population>
<population year="2002" measured="census">1671670</population>
<population year="2005" measured="estimate">1692854</population>
<population year="2009" measured="estimate">1711466</population>
<population year="2012" measured="estimate">1711324</population>
<located_at watertype="river" river="river-Weichsel"/>
</city>
<city id="cty-PL-34" country="PL" province="prov-PL-7">
<name>Płock</name>
<latitude>52.55</latitude>
<longitude>19.7</longitude>
<elevation>60</elevation>
<population year="1990">122000</population>
<population year="2002" measured="census">128361</population>
<population year="2005" measured="estimate">127655</population>
<population year="2009" measured="estimate">126675</population>
<population year="2012" measured="estimate">124048</population>
<located_at watertype="river" river="river-Weichsel"/>
</city>
<city id="cty-PL-17" country="PL" province="prov-PL-7">
<name>Radom</name>
<latitude>51.4</latitude>
<longitude>21.17</longitude>
<elevation>130</elevation>
<population year="1990">226000</population>
<population year="2002" measured="census">229699</population>
<population year="2005" measured="estimate">228192</population>
<population year="2009" measured="estimate">223914</population>
<population year="2012" measured="estimate">220062</population>
</city>
</province>
<province id="prov-PL-8" country="PL" capital="cty-PL-31">
<name>Opolskie</name>
<area>9411</area>
<population measured="estimate" year="2005">1051531</population>
<population measured="estimate" year="2009">1031922</population>
<population measured="estimate" year="2012">1012296</population>
<city id="cty-PL-31" country="PL" province="prov-PL-8">
<name>Opole</name>
<latitude>50.67</latitude>
<longitude>17.93</longitude>
<elevation>176</elevation>
<population year="1990">128000</population>
<population year="2002" measured="census">129946</population>
<population year="2005" measured="estimate">128864</population>
<population year="2009" measured="estimate">125992</population>
<population year="2012" measured="estimate">122120</population>
<located_at watertype="river" river="river-Oder"/>
</city>
</province>
<province id="prov-PL-9" country="PL" capital="cty-PL-26">
<name>Podkarpackie</name>
<area>17845</area>
<population measured="estimate" year="2005">2097975</population>
<population measured="estimate" year="2009">2100389</population>
<population measured="estimate" year="2012">2128921</population>
<city id="cty-PL-26" country="PL" province="prov-PL-9">
<name>Rzeszów</name>
<latitude>50.03</latitude>
<longitude>22</longitude>
<elevation>221</elevation>
<population year="1990">151000</population>
<population year="2002" measured="census">160376</population>
<population year="2005" measured="estimate">159020</population>
<population year="2009" measured="estimate">172813</population>
<population year="2012" measured="estimate">180776</population>
</city>
</province>
<province id="prov-PL-10" country="PL" capital="cty-PL-12">
<name>Podlaskie</name>
<area>20187</area>
<population measured="estimate" year="2005">1202425</population>
<population measured="estimate" year="2009">1190828</population>
<population measured="estimate" year="2012">1199724</population>
<city id="cty-PL-12" country="PL" province="prov-PL-10">
<name>Białystok</name>
<latitude>53.12</latitude>
<longitude>23.15</longitude>
<elevation>120</elevation>
<population year="1990">268000</population>
<population year="2002" measured="census">291383</population>
<population year="2005" measured="estimate">292150</population>
<population year="2009" measured="estimate">294399</population>
<population year="2012" measured="estimate">294675</population>
</city>
</province>
<province id="prov-PL-11" country="PL" capital="cty-PL-7">
<name>Pomorskie</name>
<area>18310</area>
<population measured="estimate" year="2005">2194041</population>
<population measured="estimate" year="2009">2224942</population>
<population measured="estimate" year="2012">2286746</population>
<city id="cty-PL-7" country="PL" province="prov-PL-11">
<name>Gdańsk</name>
<latitude>54.37</latitude>
<longitude>18.63</longitude>
<elevation>3</elevation>
<population year="1990">465000</population>
<population year="2002" measured="census">461334</population>
<population year="2005" measured="estimate">459072</population>
<population year="2009" measured="estimate">455830</population>
<population year="2012" measured="estimate">460354</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
<located_at watertype="river" river="river-Weichsel"/>
</city>
<city id="cty-PL-15" country="PL" province="prov-PL-11">
<name>Gdynia</name>
<latitude>54.5</latitude>
<longitude>18.53</longitude>
<elevation>3</elevation>
<population year="1990">251000</population>
<population year="2002" measured="census">253458</population>
<population year="2005" measured="estimate">253324</population>
<population year="2009" measured="estimate">248889</population>
<population year="2012" measured="estimate">248574</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-PL-12" country="PL" capital="cty-PL-10">
<name>Śląskie</name>
<area>12333</area>
<population measured="estimate" year="2005">4700771</population>
<population measured="estimate" year="2009">4642942</population>
<population measured="estimate" year="2012">4620624</population>
<city id="cty-PL-10" country="PL" province="prov-PL-12">
<name>Katowice</name>
<latitude>50.25</latitude>
<longitude>19</longitude>
<elevation>266</elevation>
<population year="1990">367000</population>
<population year="2002" measured="census">327222</population>
<population year="2005" measured="estimate">319904</population>
<population year="2009" measured="estimate">308724</population>
<population year="2012" measured="estimate">308269</population>
</city>
<city id="cty-PL-42" country="PL" province="prov-PL-12">
<name>Jastrzebie Zdroj</name>
<latitude>49.95</latitude>
<longitude>18.58</longitude>
<elevation>259</elevation>
<population year="1990">103000</population>
<population year="2002" measured="census">97116</population>
<population year="2012" measured="estimate">92465</population>
</city>
<city id="cty-PL-13" country="PL" province="prov-PL-12">
<name>Sosnowiec</name>
<latitude>50.3</latitude>
<longitude>19.17</longitude>
<elevation>250</elevation>
<population year="1990">259000</population>
<population year="2002" measured="census">232622</population>
<population year="2005" measured="estimate">227613</population>
<population year="2009" measured="estimate">220450</population>
<population year="2012" measured="estimate">214488</population>
</city>
<city id="cty-PL-29" country="PL" province="prov-PL-12">
<name>Dąbrowa Górnicza</name>
<latitude>50.32</latitude>
<longitude>19.27</longitude>
<population year="1990">136000</population>
<population year="2002" measured="census">132236</population>
<population year="2005" measured="estimate">130789</population>
<population year="2009" measured="estimate">128040</population>
<population year="2012" measured="estimate">125063</population>
</city>
<city id="cty-PL-16" country="PL" province="prov-PL-12">
<name>Bytom</name>
<latitude>50.38</latitude>
<longitude>18.9</longitude>
<elevation>249</elevation>
<population year="1990">230000</population>
<population year="2002" measured="census">193546</population>
<population year="2005" measured="estimate">189535</population>
<population year="2009" measured="estimate">183251</population>
<population year="2012" measured="estimate">175377</population>
</city>
<city id="cty-PL-18" country="PL" province="prov-PL-12">
<name>Gliwice</name>
<latitude>50.28</latitude>
<longitude>18.67</longitude>
<elevation>200</elevation>
<population year="1990">216000</population>
<population year="2002" measured="census">203814</population>
<population year="2005" measured="estimate">200361</population>
<population year="2009" measured="estimate">196361</population>
<population year="2012" measured="estimate">186347</population>
</city>
<city id="cty-PL-20" country="PL" province="prov-PL-12">
<name>Zabrze</name>
<latitude>50.3</latitude>
<longitude>18.78</longitude>
<population year="1990">203000</population>
<population year="2002" measured="census">195293</population>
<population year="2005" measured="estimate">192546</population>
<population year="2009" measured="estimate">188122</population>
<population year="2012" measured="estimate">179861</population>
</city>
<city id="cty-PL-22" country="PL" province="prov-PL-12">
<name>Tychy</name>
<latitude>50.13</latitude>
<longitude>18.98</longitude>
<population year="1990">190000</population>
<population year="2002" measured="census">132816</population>
<population year="2005" measured="estimate">131547</population>
<population year="2009" measured="estimate">129527</population>
<population year="2012" measured="estimate">129087</population>
</city>
<city id="cty-PL-24" country="PL" province="prov-PL-12">
<name>Ruda Śląska</name>
<latitude>50.27</latitude>
<longitude>18.7</longitude>
<elevation>272</elevation>
<population year="1990">170000</population>
<population year="2002" measured="census">150595</population>
<population year="2005" measured="estimate">147403</population>
<population year="2009" measured="estimate">143583</population>
<population year="2012" measured="estimate">142672</population>
</city>
<city id="cty-PL-27" country="PL" province="prov-PL-12">
<name>Rybnik</name>
<latitude>50.08</latitude>
<longitude>18.55</longitude>
<elevation>210</elevation>
<population year="1990">143000</population>
<population year="2002" measured="census">142731</population>
<population year="2005" measured="estimate">141755</population>
<population year="2009" measured="estimate">141387</population>
<population year="2012" measured="estimate">140863</population>
</city>
<city id="cty-PL-30" country="PL" province="prov-PL-12">
<name>Chorzów</name>
<latitude>50.3</latitude>
<longitude>18.95</longitude>
<population year="1990">133000</population>
<population year="2002" measured="census">117430</population>
<population year="2005" measured="estimate">115241</population>
<population year="2009" measured="estimate">113162</population>
<population year="2012" measured="estimate">111314</population>
</city>
<city id="cty-PL-14" country="PL" province="prov-PL-12">
<name>Częstochowa</name>
<latitude>50.8</latitude>
<longitude>19.12</longitude>
<population year="1990">258000</population>
<population year="2002" measured="census">251436</population>
<population year="2005" measured="estimate">248032</population>
<population year="2009" measured="estimate">240027</population>
<population year="2012" measured="estimate">235156</population>
<located_at watertype="river" river="river-Warta"/>
</city>
<city id="cty-PL-33" country="PL" province="prov-PL-12">
<name>Bielsko-Biała</name>
<latitude>49.82</latitude>
<longitude>19.04</longitude>
<elevation>300</elevation>
<population year="2002" measured="census">178028</population>
<population year="2005" measured="estimate">176987</population>
<population year="2009" measured="estimate">175513</population>
<population year="2012" measured="estimate">174291</population>
</city>
</province>
<province id="prov-PL-13" country="PL" capital="cty-PL-19">
<name>Świętokrzyskie</name>
<area>11710</area>
<population measured="estimate" year="2005">1288693</population>
<population measured="estimate" year="2009">1271213</population>
<population measured="estimate" year="2012">1275511</population>
<city id="cty-PL-19" country="PL" province="prov-PL-13">
<name>Kielce</name>
<latitude>50.88</latitude>
<longitude>20.62</longitude>
<elevation>260</elevation>
<population year="1990">213000</population>
<population year="2002" measured="census">212429</population>
<population year="2005" measured="estimate">209455</population>
<population year="2009" measured="estimate">204891</population>
<population year="2012" measured="estimate">201363</population>
</city>
</province>
<province id="prov-PL-14" country="PL" capital="cty-PL-25">
<name>Warmińsko-Mazurskie</name>
<area>24173</area>
<population measured="estimate" year="2005">1428714</population>
<population measured="estimate" year="2009">1427671</population>
<population measured="estimate" year="2012">1451950</population>
<city id="cty-PL-25" country="PL" province="prov-PL-14">
<name>Olsztyn</name>
<latitude>53.78</latitude>
<longitude>20.5</longitude>
<elevation>90</elevation>
<population year="1990">161000</population>
<population year="2002" measured="census">173102</population>
<population year="2005" measured="estimate">173850</population>
<population year="2009" measured="estimate">176387</population>
<population year="2012" measured="estimate">175482</population>
</city>
<city id="cty-PL-32" country="PL" province="prov-PL-14">
<name>Elbląg</name>
<latitude>54.17</latitude>
<longitude>19.4</longitude>
<population year="1990">125000</population>
<population year="2002" measured="census">128134</population>
<population year="2005" measured="estimate">127566</population>
<population year="2009" measured="estimate">126432</population>
<population year="2012" measured="estimate">123977</population>
</city>
</province>
<province id="prov-PL-15" country="PL" capital="cty-PL-6">
<name>Wielkopolskie</name>
<area>29826</area>
<population measured="estimate" year="2005">3365283</population>
<population measured="estimate" year="2009">3403174</population>
<population measured="estimate" year="2012">3458881</population>
<city id="cty-PL-6" country="PL" province="prov-PL-15">
<name>Poznań</name>
<latitude>52.4</latitude>
<longitude>16.92</longitude>
<elevation>60</elevation>
<population year="1990">589000</population>
<population year="2002" measured="census">578886</population>
<population year="2005" measured="estimate">570828</population>
<population year="2009" measured="estimate">556022</population>
<population year="2012" measured="estimate">552393</population>
<located_at watertype="river" river="river-Warta"/>
</city>
<city id="cty-PL-40" country="PL" province="prov-PL-15">
<name>Kalisz</name>
<latitude>51.76</latitude>
<longitude>18.08</longitude>
<elevation>144</elevation>
<population year="1990">106000</population>
<population year="2002" measured="census">109498</population>
<population year="2005" measured="estimate">108792</population>
<population year="2009" measured="estimate">106829</population>
<population year="2012" measured="estimate">104867</population>
</city>
</province>
<province id="prov-PL-16" country="PL" capital="cty-PL-8">
<name>Zachodniopomorskie</name>
<area>22892</area>
<population measured="estimate" year="2005">1694865</population>
<population measured="estimate" year="2009">1693284</population>
<population measured="estimate" year="2012">1722149</population>
<city id="cty-PL-8" country="PL" province="prov-PL-16">
<name>Szczecin</name>
<latitude>53.43</latitude>
<longitude>14.55</longitude>
<elevation>1</elevation>
<population year="1990">412000</population>
<population year="2002" measured="census">415399</population>
<population year="2005" measured="estimate">411900</population>
<population year="2009" measured="estimate">406427</population>
<population year="2012" measured="estimate">409211</population>
<located_at watertype="river" river="river-Oder"/>
</city>
<city id="cty-PL-39" country="PL" province="prov-PL-16">
<name>Koszalin</name>
<latitude>54.18</latitude>
<longitude>16.18</longitude>
<elevation>32</elevation>
<population year="1990">108000</population>
<population year="2002" measured="census">108709</population>
<population year="2005" measured="estimate">107773</population>
<population year="2009" measured="estimate">107217</population>
<population year="2012" measured="estimate">109183</population>
</city>
</province>
</country>
<country car_code="UA"
area="603700"
capital="cty-Ukraine-Kiev"
memberships="org-AG org-BSEC org-CEI org-CIS org-CD org-CICA org-SELEC org-CE org-CBSS org-EurasEC org-EAPC org-EBRD org-EITI org-FAO org-GCTU org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-Interpol org-IDA org-IFRCS org-IFC org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITU org-ITUC org-LAIA org-MIGA org-NAM org-NSG org-GUAM org-OSCE org-OPCW org-OAS org-PFP org-PCA org-UN org-UNCTAD org-UNESCO org-UNIDO org-UNISFA org-UNMIL org-UNMISS org-UNOCI org-MONUSCO org-UNFICYP org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Ukraine</name>
<localname>Украïна</localname>
<population measured="est." year="1950">37297652</population>
<population measured="census" year="1959">41869046</population>
<population measured="census" year="1970">47126517</population>
<population measured="census" year="1979">49609333</population>
<population measured="census" year="1989">51706742</population>
<population measured="census" year="2001">48457102</population>
<population year="2011" measured="estimate">45778534</population>
<population year="2012" measured="estimate">45633637</population>
<population_growth>-0.64</population_growth>
<infant_mortality>8.1</infant_mortality>
<gdp_total>175500</gdp_total>
<gdp_agri>9.9</gdp_agri>
<gdp_ind>29.6</gdp_ind>
<gdp_serv>60.5</gdp_serv>
<inflation>0.7</inflation>
<unemployment>8</unemployment>
<indep_date from="Soviet Union">1991-12-01</indep_date>
<government>republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="77.8">Ukrainian</ethnicgroup>
<ethnicgroup percentage="17.3">Russian</ethnicgroup>
<ethnicgroup percentage="0.6">Belorussian</ethnicgroup>
<ethnicgroup percentage="0.5">Moldovan</ethnicgroup>
<ethnicgroup percentage="0.5">Crimean Tatar</ethnicgroup>
<ethnicgroup percentage="0.4">Bulgarian</ethnicgroup>
<ethnicgroup percentage="0.3">Hungarian</ethnicgroup>
<ethnicgroup percentage="0.3">Romanian</ethnicgroup>
<ethnicgroup percentage="0.3">Polish</ethnicgroup>
<ethnicgroup percentage="0.2">Jewish</ethnicgroup>
<religion percentage="83.5">Christian Orthodox</religion>
<religion percentage="8">Ukrainian Greek Catholic</religion>
<religion percentage="2.2">Roman Catholic</religion>
<religion percentage="2.2">Protestant</religion>
<religion percentage="0.6">Jewish</religion>
<language percentage="67">Ukrainian</language>
<language percentage="24">Russian</language>
<border country="H" length="103"/>
<border country="SK" length="90"/>
<border country="BY" length="891"/>
<border country="PL" length="428"/>
<border country="R" length="1576"/>
<border country="RO" length="531"/>
<border country="MD" length="939"/>
<province id="prov-Ukraine-2" country="UA" capital="cty-Ukraine-21">
<name>Cherkaska</name>
<localname>Черкаська</localname>
<area>20916</area>
<population measured="census" year="2001">1402969</population>
<population measured="estimate" year="2011">1285384</population>
<population measured="estimate" year="2012">1277303</population>
<city id="cty-Ukraine-21" country="UA" province="prov-Ukraine-2">
<name>Cherkasy</name>
<localname>Черкаси</localname>
<latitude>49.44</latitude>
<longitude>32.06</longitude>
<elevation>110</elevation>
<population year="1989" measured="census">290000</population>
<population year="1990">297000</population>
<population year="2001" measured="census">295414</population>
<population year="2012" measured="estimate">286163</population>
<located_at watertype="river" river="river-Dnepr"/>
<located_at watertype="lake" lake="lake-KremenchukReservoir"/>
</city>
</province>
<province id="prov-Ukraine-3" country="UA" capital="cty-Ukraine-20">
<name>Chernihivska</name>
<localname>Чернігівська</localname>
<area>31903</area>
<population year="1996">938600</population>
<population measured="census" year="2001">1245260</population>
<population measured="estimate" year="2011">1098209</population>
<population measured="estimate" year="2012">1088509</population>
<city id="cty-Ukraine-20" country="UA" province="prov-Ukraine-3">
<name>Chernihiv</name>
<localname>Чернігів</localname>
<latitude>51.5</latitude>
<longitude>31.3</longitude>
<elevation>136</elevation>
<population year="1989" measured="census">296000</population>
<population year="1990">301000</population>
<population year="2001" measured="census">304994</population>
<population year="2012" measured="estimate">296723</population>
</city>
</province>
<province id="prov-Ukraine-4" country="UA" capital="cty-Ukraine-26">
<name>Chernivetska</name>
<localname>Чернівецька</localname>
<area>8096</area>
<population measured="census" year="2001">922817</population>
<population measured="estimate" year="2011">904277</population>
<population measured="estimate" year="2012">905264</population>
<city id="cty-Ukraine-26" country="UA" province="prov-Ukraine-4">
<name>Chernivtsi</name>
<localname>Чернівці</localname>
<latitude>48.3</latitude>
<longitude>25.93</longitude>
<elevation>248</elevation>
<population year="1989" measured="census">257000</population>
<population year="1990">257000</population>
<population year="2001" measured="census">240621</population>
<population year="2012" measured="estimate">255929</population>
<located_at watertype="river" river="river-Pruth"/>
</city>
</province>
<province id="prov-Ukraine-5" country="UA" capital="cty-Ukraine-4">
<name>Dnipropetrovska</name>
<localname>Дніпропетровська</localname>
<area>31923</area>
<population measured="census" year="2001">3561224</population>
<population measured="estimate" year="2011">3336504</population>
<population measured="estimate" year="2012">3320299</population>
<city id="cty-Ukraine-4" country="UA" province="prov-Ukraine-5">
<name>Dnipropetrovsk</name>
<name>Dnipro</name>
<localname>Дніпропетровськ</localname>
<latitude>48.45</latitude>
<longitude>34.98</longitude>
<elevation>155</elevation>
<population year="1989" measured="census">1178000</population>
<population year="1990">1187000</population>
<population year="2001" measured="census">1065008</population>
<population year="2012" measured="estimate">999577</population>
<located_at watertype="river" river="river-Dnepr"/>
</city>
<city id="cty-Ukraine-9" country="UA" province="prov-Ukraine-5">
<name>Kryvyi Rih</name>
<localname>Кривий Ріг</localname>
<latitude>47.92</latitude>
<longitude>33.25</longitude>
<elevation>84</elevation>
<population year="1989" measured="census">726000</population>
<population year="1990">717000</population>
<population year="2001" measured="census">668980</population>
<population year="2012" measured="estimate">660203</population>
</city>
<city id="cty-Ukraine-24" country="UA" province="prov-Ukraine-5">
<name>Dniprodzerzhynsk</name>
<localname>Дніпродзержинськ</localname>
<latitude>48.52</latitude>
<longitude>34.62</longitude>
<elevation>120</elevation>
<population year="1989" measured="census">282000</population>
<population year="1990">284000</population>
<population year="2001" measured="census">255841</population>
<population year="2012" measured="estimate">242646</population>
<located_at watertype="river" river="river-Dnepr"/>
</city>
<city id="cty-Ukraine-Nikopol" country="UA" province="prov-Ukraine-5">
<name>Nikopol</name>
<localname>Нікополь</localname>
<latitude>47.57</latitude>
<longitude>34.4</longitude>
<elevation>51</elevation>
<population year="1989" measured="census">158000</population>
<population year="2001" measured="census">136280</population>
<population year="2012" measured="estimate">120000</population>
<located_at watertype="lake" lake="lake-KakhovkaReservoir"/>
</city>
</province>
<province id="prov-Ukraine-6" country="UA" capital="cty-Ukraine-5">
<name>Donetska</name>
<localname>Донецька</localname>
<area>26517</area>
<population measured="census" year="2001">4825563</population>
<population measured="estimate" year="2011">4433011</population>
<population measured="estimate" year="2012">4403178</population>
<city id="cty-Ukraine-5" country="UA" province="prov-Ukraine-6">
<name>Donetsk</name>
<localname>Донецьк</localname>
<latitude>48</latitude>
<longitude>37.81</longitude>
<elevation>169</elevation>
<population year="1989" measured="census">1113000</population>
<population year="1990">1117000</population>
<population year="2001" measured="census">1016194</population>
<population year="2012" measured="estimate">955041</population>
</city>
<city id="cty-Ukraine-10" country="UA" province="prov-Ukraine-6">
<name>Mariupol</name>
<localname>Маріуполь</localname>
<latitude>47.1</latitude>
<longitude>37.55</longitude>
<elevation>22</elevation>
<population year="1989" measured="census">519000</population>
<population year="1990">520000</population>
<population year="2001" measured="census">492176</population>
<population year="2012" measured="estimate">464457</population>
</city>
<city id="cty-Ukraine-13" country="UA" province="prov-Ukraine-6">
<name>Makiïvka</name>
<localname>Макіївка</localname>
<latitude>48.08</latitude>
<longitude>38.07</longitude>
<elevation>169</elevation>
<population year="1989" measured="census">425000</population>
<population year="1990">427000</population>
<population year="2001" measured="census">389589</population>
<population year="2012" measured="estimate">356118</population>
</city>
<city id="cty-Ukraine-18" country="UA" province="prov-Ukraine-6">
<name>Horlivka</name>
<localname>Горлівка</localname>
<latitude>48.3</latitude>
<longitude>38.05</longitude>
<elevation>215</elevation>
<population year="1989" measured="census">338000</population>
<population year="1990">338000</population>
<population year="2001" measured="census">292250</population>
<population year="2012" measured="estimate">258879</population>
</city>
<city id="cty-Ukraine-Kramatorsk" country="UA" province="prov-Ukraine-6">
<name>Kramatorsk</name>
<localname>Краматорськ</localname>
<latitude>48.72</latitude>
<longitude>37.53</longitude>
<population year="1989" measured="census">198000</population>
<population year="2001" measured="census">181025</population>
<population year="2012" measured="estimate">165469</population>
</city>
</province>
<province id="prov-Ukraine-7" country="UA" capital="cty-Ukraine-30">
<name>Ivano-Frankivska</name>
<localname>Івано-Франківська</localname>
<area>13927</area>
<population measured="census" year="2001">1409760</population>
<population measured="estimate" year="2011">1379766</population>
<population measured="estimate" year="2012">1380128</population>
<city id="cty-Ukraine-30" country="UA" province="prov-Ukraine-7">
<name>Ivano-Frankivsk</name>
<localname>Івано-Франківськ</localname>
<latitude>48.92</latitude>
<longitude>24.71</longitude>
<elevation>244</elevation>
<population year="1989" measured="census">214000</population>
<population year="1990">220000</population>
<population year="2001" measured="census">218359</population>
<population year="2012" measured="estimate">224660</population>
</city>
</province>
<province id="prov-Ukraine-8" country="UA" capital="cty-Ukraine-Kharkiv">
<name>Kharkivska</name>
<localname>Харківська</localname>
<area>31418</area>
<population measured="census" year="2001">2914212</population>
<population measured="estimate" year="2011">2755108</population>
<population measured="estimate" year="2012">2742180</population>
<city id="cty-Ukraine-Kharkiv" country="UA" province="prov-Ukraine-8">
<name>Kharkiv</name>
<name>Kharkov</name>
<localname>Харків</localname>
<latitude>50</latitude>
<longitude>36.23</longitude>
<elevation>152</elevation>
<population year="1989" measured="census">1610000</population>
<population year="1990">1618000</population>
<population year="2001" measured="census">1470902</population>
<population year="2012" measured="estimate">1441362</population>
</city>
</province>
<province id="prov-Ukraine-9" country="UA" capital="cty-Ukraine-16">
<name>Khersonska</name>
<localname>Херсонська</localname>
<area>28461</area>
<population measured="census" year="2001">1175122</population>
<population measured="estimate" year="2011">1088237</population>
<population measured="estimate" year="2012">1083367</population>
<city id="cty-Ukraine-16" country="UA" province="prov-Ukraine-9">
<name>Kherson</name>
<localname>Херсон</localname>
<latitude>46.63</latitude>
<longitude>32.58</longitude>
<elevation>43</elevation>
<population year="1989" measured="census">355000</population>
<population year="1990">361000</population>
<population year="2001" measured="census">328360</population>
<population year="2012" measured="estimate">300666</population>
<located_at watertype="river" river="river-Dnepr"/>
<located_at watertype="lake" lake="lake-KakhovkaReservoir"/>
</city>
</province>
<province id="prov-Ukraine-10" country="UA" capital="cty-Ukraine-27">
<name>Khmelnytska</name>
<localname>Хмельницька</localname>
<area>20629</area>
<population measured="census" year="2001">1430775</population>
<population measured="estimate" year="2011">1326926</population>
<population measured="estimate" year="2012">1320171</population>
<city id="cty-Ukraine-27" country="UA" province="prov-Ukraine-10">
<name>Khmelnytskyi</name>
<localname>Хмельницький</localname>
<latitude>49.42</latitude>
<longitude>27</longitude>
<elevation>275</elevation>
<population year="1989" measured="census">237000</population>
<population year="1990">241000</population>
<population year="2001" measured="census">253994</population>
<population year="2012" measured="estimate">263703</population>
</city>
</province>
<province id="prov-Ukraine-11" country="UA" capital="cty-Ukraine-Kiev">
<name>Kyïvska</name>
<localname>Київська</localname>
<area>28121</area>
<population measured="census" year="2001">1827894</population>
<population measured="estimate" year="2011">1717649</population>
<population measured="estimate" year="2012">1719558</population>
<city id="cty-Ukraine-Prypjat" country="UA" province="prov-Ukraine-11">
<name>Prypjat</name>
<name>Pripyat</name>
<latitude>51.4</latitude>
<longitude>30.06</longitude>
<elevation>120</elevation>
<population year="1970">0</population>
<population year="1986">49360</population>
<population year="1990">0</population>
<population year="2001">0</population>
<located_at watertype="river" river="river-Prypjat"/>
</city>
</province>
<province id="prov-Ukraine-12" country="UA" capital="cty-Ukraine-25">
<name>Kirovohradska</name>
<localname>Кіровоградська</localname>
<area>24588</area>
<population measured="census" year="2001">1133052</population>
<population measured="estimate" year="2011">1009987</population>
<population measured="estimate" year="2012">1002420</population>
<city id="cty-Ukraine-25" country="UA" province="prov-Ukraine-12">
<name>Kirovohrad</name>
<localname>Кіровоград</localname>
<latitude>48.5</latitude>
<longitude>32.27</longitude>
<elevation>124</elevation>
<population year="1989" measured="census">270000</population>
<population year="1990">274000</population>
<population year="2001" measured="census">254103</population>
<population year="2012" measured="estimate">234919</population>
</city>
</province>
<province id="prov-Ukraine-13" country="UA" capital="cty-Ukraine-12">
<name>Luhanska</name>
<localname>Луганська</localname>
<area>26683</area>
<population measured="census" year="2001">2546178</population>
<population measured="estimate" year="2011">2291271</population>
<population measured="estimate" year="2012">2272676</population>
<city id="cty-Ukraine-12" country="UA" province="prov-Ukraine-13">
<name>Luhansk</name>
<localname>Луганськ</localname>
<latitude>48.57</latitude>
<longitude>39.3</longitude>
<elevation>105</elevation>
<population year="1989" measured="census">497000</population>
<population year="1990">501000</population>
<population year="2001" measured="census">463097</population>
<population year="2012" measured="estimate">427187</population>
</city>
</province>
<province id="prov-Ukraine-14" country="UA" capital="cty-Ukraine-8">
<name>Lvivska</name>
<localname>Львівська</localname>
<area>21831</area>
<population measured="census" year="2001">2626543</population>
<population measured="estimate" year="2011">2544748</population>
<population measured="estimate" year="2012">2540938</population>
<city id="cty-Ukraine-8" country="UA" province="prov-Ukraine-14">
<name>Lviv</name>
<localname>Львів</localname>
<latitude>49.85</latitude>
<longitude>24.02</longitude>
<elevation>296</elevation>
<population year="1989" measured="census">791000</population>
<population year="1990">798000</population>
<population year="2001" measured="census">732818</population>
<population year="2012" measured="estimate">729842</population>
</city>
</province>
<province id="prov-Ukraine-15" country="UA" capital="cty-Ukraine-11">
<name>Mykolaïvska</name>
<localname>Миколаївська</localname>
<area>24585</area>
<population measured="census" year="2001">1264743</population>
<population measured="estimate" year="2011">1183282</population>
<population measured="estimate" year="2012">1178223</population>
<city id="cty-Ukraine-11" country="UA" province="prov-Ukraine-15">
<name>Mykolaïv</name>
<localname>Миколаїв</localname>
<latitude>46.97</latitude>
<longitude>32</longitude>
<elevation>42</elevation>
<population year="1989" measured="census">524000</population>
<population year="1990">508000</population>
<population year="2001" measured="census">514136</population>
<population year="2012" measured="estimate">497032</population>
</city>
</province>
<province id="prov-Ukraine-16" country="UA" capital="cty-Ukraine-Odesa">
<name>Odeska</name>
<localname>Одеська</localname>
<area>33313</area>
<population measured="census" year="2001">2469057</population>
<population measured="estimate" year="2011">2388670</population>
<population measured="estimate" year="2012">2388297</population>
<city id="cty-Ukraine-Odesa" country="UA" province="prov-Ukraine-16">
<name>Odesa</name>
<name>Odessa</name>
<localname>Одеса</localname>
<latitude>46.47</latitude>
<longitude>30.73</longitude>
<elevation>40</elevation>
<population year="1989" measured="census">1115000</population>
<population year="1990">1106000</population>
<population year="2001" measured="census">1029049</population>
<population year="2012" measured="estimate">1008162</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
</province>
<province id="prov-Ukraine-17" country="UA" capital="cty-Ukraine-19">
<name>Poltavska</name>
<localname>Полтавська</localname>
<area>28750</area>
<population measured="census" year="2001">1630092</population>
<population measured="estimate" year="2011">1487751</population>
<population measured="estimate" year="2012">1477195</population>
<city id="cty-Ukraine-19" country="UA" province="prov-Ukraine-17">
<name>Poltava</name>
<localname>Полтава</localname>
<latitude>49.59</latitude>
<longitude>34.55</longitude>
<elevation>132</elevation>
<population year="1989" measured="census">315000</population>
<population year="1990">317000</population>
<population year="2001" measured="census">317998</population>
<population year="2012" measured="estimate">297589</population>
</city>
<city id="cty-Ukraine-28" country="UA" province="prov-Ukraine-17">
<name>Kremenchuk</name>
<localname>Кременчук</localname>
<latitude>49.07</latitude>
<longitude>33.42</longitude>
<elevation>80</elevation>
<population year="1989" measured="census">237000</population>
<population year="1990">238000</population>
<population year="2001" measured="census">234073</population>
<population year="2012" measured="estimate">226434</population>
<located_at watertype="river" river="river-Dnepr"/>
<located_at watertype="lake" lake="lake-KremenchukReservoir"/>
</city>
</province>
<province id="prov-Ukraine-18" country="UA" capital="cty-Ukraine-29">
<name>Rivnenska</name>
<localname>Рівненська</localname>
<area>20051</area>
<population measured="census" year="2001">1173304</population>
<population measured="estimate" year="2011">1152526</population>
<population measured="estimate" year="2012">1154256</population>
<city id="cty-Ukraine-29" country="UA" province="prov-Ukraine-18">
<name>Rivne</name>
<name>Rovno</name>
<localname>Рівне</localname>
<latitude>50.62</latitude>
<longitude>26.25</longitude>
<elevation>136</elevation>
<population year="1989" measured="census">228000</population>
<population year="1990">233000</population>
<population year="2001" measured="census">248813</population>
<population year="2012" measured="estimate">250174</population>
</city>
</province>
<province id="prov-Ukraine-19" country="UA" capital="cty-Ukraine-23">
<name>Sumska</name>
<localname>Сумська</localname>
<area>23832</area>
<population measured="census" year="2001">1299746</population>
<population measured="estimate" year="2011">1161544</population>
<population measured="estimate" year="2012">1152333</population>
<city id="cty-Ukraine-23" country="UA" province="prov-Ukraine-19">
<name>Sumy</name>
<localname>Суми</localname>
<latitude>50.92</latitude>
<longitude>34.75</longitude>
<elevation>166</elevation>
<population year="1989" measured="census">291000</population>
<population year="1990">296000</population>
<population year="2001" measured="census">293141</population>
<population year="2012" measured="estimate">269663</population>
</city>
</province>
<province id="prov-Ukraine-20" country="UA" capital="cty-Ukraine-31">
<name>Ternopilska</name>
<localname>Тернопільська</localname>
<area>13824</area>
<population measured="census" year="2001">1142416</population>
<population measured="estimate" year="2011">1084127</population>
<population measured="estimate" year="2012">1080431</population>
<city id="cty-Ukraine-31" country="UA" province="prov-Ukraine-20">
<name>Ternopil</name>
<localname>Тернопіль</localname>
<latitude>49.57</latitude>
<longitude>25.6</longitude>
<elevation>320</elevation>
<population year="1989" measured="census">206000</population>
<population year="1990">212000</population>
<population year="2001" measured="census">227755</population>
<population year="2012" measured="estimate">217300</population>
</city>
</province>
<province id="prov-Ukraine-21" country="UA" capital="cty-Ukraine-14">
<name>Vinnytska</name>
<localname>Вінницька</localname>
<area>26492</area>
<population measured="census" year="2001">1772371</population>
<population measured="estimate" year="2011">1641201</population>
<population measured="estimate" year="2012">1634187</population>
<city id="cty-Ukraine-14" country="UA" province="prov-Ukraine-21">
<name>Vinnytsia</name>
<localname>Вінниця</localname>
<latitude>49.23</latitude>
<longitude>28.48</longitude>
<population year="1989" measured="census">374000</population>
<population year="1990">379000</population>
<population year="2001" measured="census">356665</population>
<population year="2012" measured="estimate">370814</population>
</city>
</province>
<province id="prov-Ukraine-22" country="UA" capital="cty-Ukraine-32">
<name>Volynska</name>
<localname>Волинська</localname>
<area>20144</area>
<population measured="census" year="2001">1060694</population>
<population measured="estimate" year="2011">1037149</population>
<population measured="estimate" year="2012">1038598</population>
<city id="cty-Ukraine-32" country="UA" province="prov-Ukraine-22">
<name>Lutsk</name>
<localname>Луцьк</localname>
<latitude>50.75</latitude>
<longitude>25.34</longitude>
<elevation>174</elevation>
<population year="1989" measured="census">198000</population>
<population year="1990">204000</population>
<population year="2001" measured="census">208816</population>
<population year="2012" measured="estimate">213063</population>
</city>
</province>
<province id="prov-Ukraine-23" country="UA" capital="cty-Ukraine-Uzhhorod">
<name>Zakarpatska</name>
<localname>Закарпатська</localname>
<area>12753</area>
<population measured="census" year="2001">1258264</population>
<population measured="estimate" year="2011">1247350</population>
<population measured="estimate" year="2012">1250759</population>
<city id="cty-Ukraine-Uzhhorod" country="UA" province="prov-Ukraine-23">
<name>Uzhhorod</name>
<name>Uzhgorod</name>
<localname>Ужгород</localname>
<latitude>48.62</latitude>
<longitude>22.3</longitude>
<elevation>169</elevation>
<population year="1989" measured="census">117000</population>
<population year="2001" measured="census">117317</population>
<population year="2012" measured="estimate">116556</population>
</city>
</province>
<province id="prov-Ukraine-24" country="UA" capital="cty-Ukraine-7">
<name>Zaporizka</name>
<localname>Запорізька</localname>
<area>27183</area>
<population measured="census" year="2001">1929171</population>
<population measured="estimate" year="2011">1801315</population>
<population measured="estimate" year="2012">1791668</population>
<city id="cty-Ukraine-7" country="UA" province="prov-Ukraine-24">
<name>Zaporizhzhia</name>
<name>Zaporizhia</name>
<localname>Запоріжжя</localname>
<latitude>47.83</latitude>
<longitude>35.17</longitude>
<elevation>86</elevation>
<population year="1989" measured="census">881000</population>
<population year="1990">891000</population>
<population year="2001" measured="census">815256</population>
<population year="2012" measured="estimate">772627</population>
<located_at watertype="river" river="river-Dnepr"/>
</city>
<city id="cty-Ukraine-Melitopol" country="UA" province="prov-Ukraine-24">
<name>Melitopol</name>
<localname>Мелітополь</localname>
<latitude>46.83</latitude>
<longitude>35.37</longitude>
<population year="1989" measured="census">173000</population>
<population year="2001" measured="census">160657</population>
<population year="2012" measured="estimate">156885</population>
</city>
</province>
<province id="prov-Ukraine-25" country="UA" capital="cty-Ukraine-22">
<name>Zhytomyrska</name>
<localname>Житомирська</localname>
<area>29827</area>
<population measured="census" year="2001">1389466</population>
<population measured="estimate" year="2011">1279008</population>
<population measured="estimate" year="2012">1273199</population>
<city id="cty-Ukraine-22" country="UA" province="prov-Ukraine-25">
<name>Zhytomyr</name>
<localname>Житомир</localname>
<latitude>50.25</latitude>
<longitude>28.67</longitude>
<elevation>221</elevation>
<population year="1989" measured="census">292000</population>
<population year="1990">296000</population>
<population year="2001" measured="census">284236</population>
<population year="2012" measured="estimate">271895</population>
</city>
</province>
<province id="prov-Ukraine-27" country="UA" capital="cty-Ukraine-17">
<name>Krym</name>
<localname>Крим</localname>
<area>26080</area>
<population measured="census" year="2001">2033736</population>
<population measured="estimate" year="2011">1963514</population>
<population measured="estimate" year="2012">1963008</population>
<city id="cty-Ukraine-17" country="UA" province="prov-Ukraine-27">
<name>Simferopol</name>
<localname>Сімферополь</localname>
<latitude>44.95</latitude>
<longitude>34.1</longitude>
<elevation>350</elevation>
<population year="1989" measured="census">345000</population>
<population year="1990">349000</population>
<population year="2001" measured="census">343644</population>
<population year="2012" measured="estimate">335582</population>
</city>
<city id="cty-Ukraine-Kerch" country="UA" province="prov-Ukraine-27">
<name>Kerch</name>
<localname>Керч</localname>
<latitude>45.36</latitude>
<longitude>36.47</longitude>
<elevation>10</elevation>
<population year="1989" measured="census">174000</population>
<population year="2001" measured="census">157007</population>
<population year="2012" measured="estimate">145845</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
<located_at watertype="sea" sea="sea-Asowsches_Meer"/>
</city>
</province>
<province id="prov-Ukraine-28" country="UA" capital="cty-Ukraine-Kiev">
<name>Kyïv</name>
<localname>Київ</localname>
<area>836</area>
<population measured="census" year="2001">2611327</population>
<population measured="estimate" year="2011">2799199</population>
<population measured="estimate" year="2012">2814258</population>
<city id="cty-Ukraine-Kiev" country="UA" province="prov-Ukraine-28">
<name>Kyïv</name>
<name>Kiev</name>
<localname>Київ</localname>
<latitude>50.45</latitude>
<longitude>30.52</longitude>
<elevation>179</elevation>
<population year="1989" measured="census">2595000</population>
<population year="1990">2616000</population>
<population year="2001" measured="census">2611327</population>
<population year="2012" measured="estimate">2814258</population>
<located_at watertype="river" river="river-Dnepr"/>
</city>
<city id="cty-Ukraine-BilaTserkva"
country="UA"
province="prov-Ukraine-28">
<name>Bila Tserkva</name>
<localname>Біла Церква</localname>
<latitude>49.8</latitude>
<longitude>30.12</longitude>
<elevation>148</elevation>
<population year="1989" measured="census">199000</population>
<population year="2001" measured="census">200131</population>
<population year="2012" measured="estimate">210551</population>
</city>
</province>
<province id="prov-Ukraine-29" country="UA" capital="cty-Ukraine-15">
<name>Sevastopol</name>
<localname>Севастополь</localname>
<area>864</area>
<population measured="census" year="2001">379492</population>
<population measured="estimate" year="2011">380821</population>
<population measured="estimate" year="2012">381234</population>
<city id="cty-Ukraine-15" country="UA" province="prov-Ukraine-29">
<name>Sevastopol</name>
<localname>Севастополь</localname>
<latitude>44.6</latitude>
<longitude>33.53</longitude>
<elevation>100</elevation>
<population year="1989" measured="census">356000</population>
<population year="1990">361000</population>
<population year="2001" measured="census">342451</population>
<population year="2012" measured="estimate">340559</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
</province>
</country>
<country car_code="R"
area="17075200"
capital="cty-Russia-Moscow"
memberships="org-ARF org-APEC org-ASEAN org-BIS org-BSEC org-CSTO org-CIS org-CD org-CICA org-CE org-CBSS org-EAS org-EurasEC org-EAPC org-EBRD org-CERN org-FATF org-FAO org-GCTU org-G-20 org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-Interpol org-IDA org-IFRCS org-IFC org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-ITUC org-LAIA org-MIGA org-NEA org-NSG org-OSCE org-OPCW org-OAS org-OIC org-PFP org-PCA org-SCO org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNITAR org-UNISFA org-MINURSO org-UNMIL org-UNMISS org-UNOCI org-MONUSCO org-UNSC org-UNTSO org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Russia</name>
<population measured="est." year="1950">102798657</population>
<population measured="est." year="1960">120057109</population>
<population measured="est." year="1970">130357806</population>
<population measured="est." year="1980">138535754</population>
<population measured="est." year="1990">148148752</population>
<population year="1997">148178487</population>
<population measured="est." year="2000">146762881</population>
<population year="2010" measured="census">142856536</population>
<population year="2013" measured="estimate">143347059</population>
<population year="2014" measured="estimate">143666931</population>
<population_growth>-0.03</population_growth>
<infant_mortality>7.08</infant_mortality>
<gdp_total>2113000</gdp_total>
<gdp_agri>4.2</gdp_agri>
<gdp_ind>37.5</gdp_ind>
<gdp_serv>58.3</gdp_serv>
<inflation>6.8</inflation>
<unemployment>5.8</unemployment>
<indep_date from="Soviet Union">1991-08-24</indep_date>
<government>federation</government>
<encompassed continent="europe" percentage="25"/>
<encompassed continent="asia" percentage="75"/>
<ethnicgroup percentage="79.8">Russian</ethnicgroup>
<ethnicgroup percentage="3.8">Tatar</ethnicgroup>
<ethnicgroup percentage="2">Ukrainian</ethnicgroup>
<ethnicgroup percentage="1.2">Bashkir</ethnicgroup>
<ethnicgroup percentage="1.1">Chuvash</ethnicgroup>
<religion percentage="20">Christian Orthodox</religion>
<religion percentage="15">Muslim</religion>
<language percentage="100">Russian</language>
<border country="BY" length="959"/>
<border country="LV" length="217"/>
<border country="LT" length="227"/>
<border country="PL" length="206"/>
<border country="UA" length="1576"/>
<border country="EW" length="290"/>
<border country="SF" length="1313"/>
<border country="N" length="167"/>
<border country="CN" length="3645"/>
<border country="GE" length="723"/>
<border country="AZ" length="284"/>
<border country="KAZ" length="6846"/>
<border country="NOK" length="19"/>
<border country="MNG" length="3441"/>
<province id="prov-Russia-3" country="R" capital="cty-Russia-71">
<name>Karelia</name>
<localname>Карелия</localname>
<area>172400</area>
<population measured="census" year="2010">643548</population>
<population measured="estimate" year="2013">636932</population>
<population measured="estimate" year="2014">634402</population>
<city id="cty-Russia-71" country="R" province="prov-Russia-3">
<name>Petrozavodsk</name>
<localname>Петрозаводск</localname>
<latitude>61.78</latitude>
<longitude>34.33</longitude>
<elevation>60</elevation>
<population measured="census" year="1979">234103</population>
<population measured="census" year="1989">269485</population>
<population year="2002" measured="census">266160</population>
<population measured="census" year="2010">261987</population>
<population year="2013" measured="estimate">268946</population>
<located_at watertype="lake" lake="lake-Onegasee"/>
</city>
</province>
<province id="prov-Russia-4" country="R" capital="cty-Russia-85">
<name>Komi</name>
<localname>Коми</localname>
<area>415900</area>
<population measured="census" year="2010">901189</population>
<population measured="estimate" year="2013">880639</population>
<population measured="estimate" year="2014">872057</population>
<city id="cty-Russia-85" country="R" province="prov-Russia-4">
<name>Syktyvkar</name>
<latitude>61.67</latitude>
<longitude>50.82</longitude>
<elevation>130</elevation>
<population measured="census" year="1979">170980</population>
<population measured="census" year="1989">232117</population>
<population measured="census" year="2002">230011</population>
<population measured="census" year="2010">235006</population>
</city>
<city id="cty-Russia-161" country="R" province="prov-Russia-4">
<name>Ukhta</name>
<latitude>63.57</latitude>
<longitude>53.7</longitude>
<elevation>100</elevation>
<population year="1979" measured="census">87467</population>
<population year="1989" measured="census">110548</population>
<population year="2002" measured="census">103340</population>
<population year="2010" measured="census">99591</population>
</city>
<city id="cty-Russia-163" country="R" province="prov-Russia-4">
<name>Vorkuta</name>
<latitude>67.5</latitude>
<longitude>64.03</longitude>
<elevation>180</elevation>
<population year="1979" measured="census">100210</population>
<population year="1989" measured="census">115646</population>
<population year="2002" measured="census">84917</population>
<population year="2010" measured="census">70548</population>
</city>
</province>
<province id="prov-Russia-5" country="R" capital="cty-Russia-Arkhangelsk">
<name>Arkhangelskaya</name>
<localname>Архангельская</localname>
<area>587400</area>
<population measured="census" year="2010">1227626</population>
<population measured="estimate" year="2013">1202295</population>
<population measured="estimate" year="2014">1191785</population>
<city id="cty-Russia-Arkhangelsk" country="R" province="prov-Russia-5">
<name>Arkhangelsk</name>
<name>Archangelsk</name>
<localname>Архангельск</localname>
<latitude>64.53</latitude>
<longitude>40.53</longitude>
<elevation>5</elevation>
<population measured="census" year="1979">385028</population>
<population measured="census" year="1989">415921</population>
<population year="2002" measured="census">356051</population>
<population measured="census" year="2010">348783</population>
<population year="2013" measured="estimate">350985</population>
<located_at watertype="river" river="river-Noerdliche_Dwina"/>
<located_at watertype="sea" sea="sea-WhiteSea"/>
</city>
<city id="cty-Russia-80" country="R" province="prov-Russia-5">
<name>Severodvinsk</name>
<latitude>64.57</latitude>
<longitude>39.87</longitude>
<elevation>7</elevation>
<population measured="census" year="1979">197232</population>
<population measured="census" year="1989">248670</population>
<population measured="census" year="2002">201551</population>
<population measured="census" year="2010">192353</population>
<located_at watertype="river" river="river-Noerdliche_Dwina"/>
<located_at watertype="sea" sea="sea-WhiteSea"/>
</city>
</province>
<province id="prov-Russia-7" country="R" capital="cty-Russia-66">
<name>Vologodskaya</name>
<localname>Вологодская</localname>
<area>145700</area>
<population measured="census" year="2010">1202444</population>
<population measured="estimate" year="2013">1196196</population>
<population measured="estimate" year="2014">1193371</population>
<city id="cty-Russia-66" country="R" province="prov-Russia-7">
<name>Vologda</name>
<localname>Вологда</localname>
<latitude>59.22</latitude>
<longitude>39.9</longitude>
<elevation>120</elevation>
<population measured="census" year="1979">236537</population>
<population measured="census" year="1989">282802</population>
<population year="2002" measured="census">293046</population>
<population measured="census" year="2010">301755</population>
<population year="2013" measured="estimate">306487</population>
</city>
<city id="cty-Russia-62" country="R" province="prov-Russia-7">
<name>Cherepovets</name>
<name>Čerepovec</name>
<localname>Череповец</localname>
<latitude>59.2</latitude>
<longitude>37.9</longitude>
<elevation>130</elevation>
<population measured="census" year="1979">265933</population>
<population measured="census" year="1989">310463</population>
<population year="2002" measured="census">311869</population>
<population measured="census" year="2010">312310</population>
<population year="2013" measured="estimate">315738</population>
<located_at watertype="lake" lake="lake-RybinskReservoir"/>
</city>
</province>
<province id="prov-Russia-8" country="R" capital="cty-Russia-47">
<name>Murmanskaya</name>
<localname>Мурманская</localname>
<area>144900</area>
<population measured="census" year="2010">795409</population>
<population measured="estimate" year="2013">780401</population>
<population measured="estimate" year="2014">771058</population>
<city id="cty-Russia-47" country="R" province="prov-Russia-8">
<name>Murmansk</name>
<localname>Мурманск</localname>
<latitude>68.97</latitude>
<longitude>33.08</longitude>
<elevation>50</elevation>
<population measured="census" year="1979">380817</population>
<population measured="census" year="1989">468039</population>
<population year="2002" measured="census">336137</population>
<population measured="census" year="2010">307257</population>
<population year="2013" measured="estimate">302468</population>
<located_at watertype="sea" sea="sea-BarentsSea"/>
</city>
</province>
<province id="prov-Russia-9" country="R" capital="cty-Russia-Kaliningrad">
<name>Kaliningradskaya</name>
<localname>Калининградская</localname>
<area>15100</area>
<population year="1997">932200</population>
<population measured="census" year="2010">941873</population>
<population measured="estimate" year="2013">954773</population>
<population measured="estimate" year="2014">963128</population>
<city id="cty-Russia-Kaliningrad" country="R" province="prov-Russia-9">
<name>Kaliningrad</name>
<localname>Калининград</localname>
<latitude>54.7</latitude>
<longitude>20.45</longitude>
<population measured="census" year="1979">354788</population>
<population measured="census" year="1989">401280</population>
<population year="2002" measured="census">430003</population>
<population measured="census" year="2010">431902</population>
<population year="2013" measured="estimate">441376</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-Russia-10" country="R" capital="cty-Russia-3">
<name>Sankt-Peterburg</name>
<name>St. Peterburg</name>
<name>Sankt Petersburg</name>
<name>Saint Petersburg</name>
<localname>Санкт-Петербург</localname>
<area>1431</area>
<population year="1997">4838000</population>
<population measured="census" year="2010">4879566</population>
<population measured="estimate" year="2013">5028000</population>
<population measured="estimate" year="2014">5131942</population>
<city id="cty-Russia-3" country="R" province="prov-Russia-10">
<name>Sankt Peterburg</name>
<name>Sankt-Peterburg</name>
<name>St. Peterburg</name>
<name>Sankt Petersburg</name>
<name>Saint Petersburg</name>
<localname>Санкт-Петербург</localname>
<latitude>59.95</latitude>
<longitude>30.3</longitude>
<elevation>3</elevation>
<population measured="census" year="1979">4588183</population>
<population measured="census" year="1989">5023506</population>
<population year="2002" measured="census">4661219</population>
<population measured="census" year="2010">4879566</population>
<population year="2013" measured="estimate">5028000</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-Russia-11" country="R" capital="cty-Russia-3">
<name>Leningradskaya</name>
<localname>Ленинградская</localname>
<area>83908</area>
<population year="1997">1675900</population>
<population measured="census" year="2010">1716868</population>
<population measured="estimate" year="2013">1751135</population>
<population measured="estimate" year="2014">1763924</population>
</province>
<province id="prov-Russia-12" country="R" capital="cty-Russia-83">
<name>Novgorodskaya</name>
<localname>Новгородская</localname>
<area>55300</area>
<population measured="census" year="2010">634111</population>
<population measured="estimate" year="2013">625855</population>
<population measured="estimate" year="2014">622430</population>
<city id="cty-Russia-83" country="R" province="prov-Russia-12">
<name>Velikij Novgorod</name>
<name>Novgorod</name>
<name>Veliky Novgorod</name>
<latitude>58.55</latitude>
<longitude>31.27</longitude>
<elevation>25</elevation>
<population measured="census" year="1979">186003</population>
<population measured="census" year="1989">229126</population>
<population measured="census" year="2002">223263</population>
<population measured="census" year="2010">218717</population>
</city>
</province>
<province id="prov-Russia-13" country="R" capital="cty-Russia-90">
<name>Pskovskaya</name>
<localname>Псковская</localname>
<area>55300</area>
<population measured="census" year="2010">673423</population>
<population measured="estimate" year="2013">661507</population>
<population measured="estimate" year="2014">656561</population>
<city id="cty-Russia-90" country="R" province="prov-Russia-13">
<name>Pskov</name>
<latitude>57.82</latitude>
<longitude>28.33</longitude>
<elevation>45</elevation>
<population measured="census" year="1979">175724</population>
<population measured="census" year="1989">203789</population>
<population measured="census" year="2002">202780</population>
<population measured="census" year="2010">203279</population>
<located_at watertype="lake" lake="lake-Pskowsee"/>
</city>
</province>
<province id="prov-Russia-14" country="R" capital="cty-Russia-40">
<name>Bryanskaya</name>
<localname>Брянская</localname>
<area>34857</area>
<population measured="census" year="2010">1278217</population>
<population measured="estimate" year="2013">1253666</population>
<population measured="estimate" year="2014">1242599</population>
<city id="cty-Russia-40" country="R" province="prov-Russia-14">
<name>Bryansk</name>
<name>Brjansk</name>
<localname>Брянск</localname>
<latitude>53.23</latitude>
<longitude>34.37</longitude>
<elevation>190</elevation>
<population measured="census" year="1979">394210</population>
<population measured="census" year="1989">452160</population>
<population year="2002" measured="census">431526</population>
<population measured="census" year="2010">415721</population>
<population year="2013" measured="estimate">410837</population>
</city>
</province>
<province id="prov-Russia-15" country="R" capital="cty-Russia-57">
<name>Vladimirskaya</name>
<localname>Владимирская</localname>
<area>29084</area>
<population measured="census" year="2010">1443693</population>
<population measured="estimate" year="2013">1421742</population>
<population measured="estimate" year="2014">1413321</population>
<city id="cty-Russia-57" country="R" province="prov-Russia-15">
<name>Vladimir</name>
<localname>Владимир</localname>
<latitude>56.13</latitude>
<longitude>40.42</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">296371</population>
<population measured="census" year="1989">349702</population>
<population year="2002" measured="census">315954</population>
<population measured="census" year="2010">345373</population>
<population year="2013" measured="estimate">347930</population>
</city>
<city id="cty-Russia-110" country="R" province="prov-Russia-15">
<name>Kovrov</name>
<latitude>56.37</latitude>
<longitude>41.33</longitude>
<elevation>125</elevation>
<population measured="census" year="1979">142860</population>
<population measured="census" year="1989">159942</population>
<population measured="census" year="2002">155499</population>
<population measured="census" year="2010">145214</population>
</city>
<city id="cty-Russia-133" country="R" province="prov-Russia-15">
<name>Murom</name>
<latitude>55.57</latitude>
<longitude>42.03</longitude>
<elevation>115</elevation>
<population measured="census" year="1979">114270</population>
<population measured="census" year="1989">124229</population>
<population measured="census" year="2002">126901</population>
<population measured="census" year="2010">116075</population>
</city>
</province>
<province id="prov-Russia-16" country="R" capital="cty-Russia-36">
<name>Ivanovskaya</name>
<localname>Ивановская</localname>
<area>23900</area>
<population measured="census" year="2010">1061651</population>
<population measured="estimate" year="2013">1048961</population>
<population measured="estimate" year="2014">1043130</population>
<city id="cty-Russia-36" country="R" province="prov-Russia-16">
<name>Ivanovo</name>
<localname>Иваново</localname>
<latitude>57</latitude>
<longitude>40.98</longitude>
<elevation>120</elevation>
<population measured="census" year="1979">464526</population>
<population measured="census" year="1989">481042</population>
<population year="2002" measured="census">431721</population>
<population measured="census" year="2010">408330</population>
<population year="2013" measured="estimate">409075</population>
</city>
</province>
<province id="prov-Russia-17" country="R" capital="cty-Russia-55">
<name>Kaluzhskaya</name>
<localname>Калужская</localname>
<area>29900</area>
<population measured="census" year="2010">1010930</population>
<population measured="estimate" year="2013">1005585</population>
<population measured="estimate" year="2014">1004544</population>
<city id="cty-Russia-55" country="R" province="prov-Russia-17">
<name>Kaluga</name>
<localname>Калуга</localname>
<latitude>54.55</latitude>
<longitude>36.28</longitude>
<elevation>190</elevation>
<population measured="census" year="1979">265013</population>
<population measured="census" year="1989">311399</population>
<population year="2002" measured="census">334751</population>
<population measured="census" year="2010">324698</population>
<population year="2013" measured="estimate">331351</population>
<located_at watertype="river" river="river-Oka"/>
</city>
<city id="cty-Russia-155" country="R" province="prov-Russia-17">
<name>Obninsk</name>
<latitude>55.09</latitude>
<longitude>36.61</longitude>
<elevation>175</elevation>
<population measured="census" year="1979">73402</population>
<population measured="census" year="1989">100178</population>
<population measured="census" year="2002">105706</population>
<population measured="census" year="2010">104739</population>
</city>
</province>
<province id="prov-Russia-18" country="R" capital="cty-Russia-70">
<name>Kostromskaya</name>
<localname>Костромская</localname>
<area>60100</area>
<population measured="census" year="2010">667562</population>
<population measured="estimate" year="2013">658906</population>
<population measured="estimate" year="2014">656389</population>
<city id="cty-Russia-70" country="R" province="prov-Russia-18">
<name>Kostroma</name>
<localname>Кострома</localname>
<latitude>57.77</latitude>
<longitude>40.93</longitude>
<elevation>110</elevation>
<population measured="census" year="1979">254725</population>
<population measured="census" year="1989">278414</population>
<population year="2002" measured="census">278750</population>
<population measured="census" year="2010">268742</population>
<population year="2013" measured="estimate">271445</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
</province>
<province id="prov-Russia-19" country="R" capital="cty-Russia-Moscow">
<name>Moscow</name>
<localname>Москва</localname>
<area>1100</area>
<population year="1997">8717000</population>
<population measured="census" year="2010">11503501</population>
<population measured="estimate" year="2013">11979529</population>
<population measured="estimate" year="2014">12108257</population>
<city id="cty-Russia-Moscow" country="R" province="prov-Russia-19">
<name>Moskva</name>
<name>Moscow</name>
<localname>Москва</localname>
<latitude>55.75</latitude>
<longitude>37.62</longitude>
<elevation>156</elevation>
<population measured="census" year="1979">8010954</population>
<population measured="census" year="1989">8967232</population>
<population measured="census" year="2002">10382754</population>
<population measured="census" year="2010">11612885</population>
<population year="2013" measured="estimate">11979529</population>
</city>
</province>
<province id="prov-Russia-20" country="R" capital="cty-Russia-Moscow">
<name>Moskovskaya</name>
<localname>Московская</localname>
<area>45900</area>
<population year="1997">6596600</population>
<population measured="census" year="2010">7095120</population>
<population measured="estimate" year="2013">7048084</population>
<population measured="estimate" year="2014">7133620</population>
<city id="cty-Russia-94" country="R" province="prov-Russia-20">
<name>Podolsk</name>
<latitude>55.42</latitude>
<longitude>37.53</longitude>
<elevation>160</elevation>
<population measured="census" year="1979">201769</population>
<population measured="census" year="1989">209178</population>
<population measured="census" year="2002">180963</population>
<population measured="census" year="2010">187961</population>
</city>
<city id="cty-Russia-98" country="R" province="prov-Russia-20">
<name>Železnodorožnyj</name>
<name>Zheleznodorozhny</name>
<latitude>55.75</latitude>
<longitude>38.02</longitude>
<elevation>145</elevation>
<population measured="census" year="1979">76455</population>
<population measured="census" year="1989">97426</population>
<population measured="census" year="2002">110622</population>
<population measured="census" year="2010">131257</population>
</city>
<city id="cty-Russia-Krasnogorsk" country="R" province="prov-Russia-20">
<name>Krasnogorsk</name>
<latitude>55.83</latitude>
<longitude>37.32</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">77370</population>
<population measured="census" year="1989">90477</population>
<population measured="census" year="2002">92545</population>
<population measured="census" year="2010">116896</population>
</city>
<city id="cty-Russia-106" country="R" province="prov-Russia-20">
<name>Lubercy</name>
<name>Lyubertsy</name>
<latitude>55.67</latitude>
<longitude>37.93</longitude>
<elevation>130</elevation>
<population measured="census" year="1979">159563</population>
<population measured="census" year="1989">165478</population>
<population measured="census" year="2002">156691</population>
<population measured="census" year="2010">172525</population>
</city>
<city id="cty-Russia-116" country="R" province="prov-Russia-20">
<name>Kolomna</name>
<latitude>55.08</latitude>
<longitude>38.78</longitude>
<elevation>125</elevation>
<population measured="census" year="1979">147295</population>
<population measured="census" year="1989">161881</population>
<population measured="census" year="2002">150129</population>
<population measured="census" year="2010">144589</population>
<located_at watertype="river" river="river-Oka"/>
</city>
<city id="cty-Russia-117" country="R" province="prov-Russia-20">
<name>Mytišči</name>
<name>Mytishchi</name>
<latitude>55.92</latitude>
<longitude>37.77</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">140656</population>
<population measured="census" year="1989">154068</population>
<population measured="census" year="2002">159900</population>
<population measured="census" year="2010">173160</population>
</city>
<city id="cty-Russia-118" country="R" province="prov-Russia-20">
<name>Elektrostal</name>
<latitude>55.78</latitude>
<longitude>38.47</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">139272</population>
<population measured="census" year="1989">152463</population>
<population measured="census" year="2002">146294</population>
<population measured="census" year="2010">155196</population>
</city>
<city id="cty-Russia-121" country="R" province="prov-Russia-20">
<name>Serpuchov</name>
<name>Serpukhov</name>
<latitude>54.92</latitude>
<longitude>37.4</longitude>
<elevation>140</elevation>
<population measured="census" year="1979">139717</population>
<population measured="census" year="1989">143618</population>
<population measured="census" year="2002">131097</population>
<population measured="census" year="2010">127041</population>
<located_at watertype="river" river="river-Oka"/>
</city>
<city id="cty-Russia-124" country="R" province="prov-Russia-20">
<name>Balašicha</name>
<name>Balashikha</name>
<latitude>55.82</latitude>
<longitude>37.97</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">117906</population>
<population measured="census" year="1989">135841</population>
<population measured="census" year="2002">147909</population>
<population measured="census" year="2010">215494</population>
</city>
<city id="cty-Russia-127" country="R" province="prov-Russia-20">
<name>Chimki</name>
<name>Khimki</name>
<latitude>55.9</latitude>
<longitude>37.45</longitude>
<elevation>180</elevation>
<population measured="census" year="1979">117974</population>
<population measured="census" year="1989">132902</population>
<population measured="census" year="2002">141000</population>
<population measured="census" year="2010">207425</population>
</city>
<city id="cty-Russia-130" country="R" province="prov-Russia-20">
<name>Odincovo</name>
<name>Odintsovo</name>
<latitude>55.67</latitude>
<longitude>37.27</longitude>
<elevation>190</elevation>
<population measured="census" year="1979">101365</population>
<population measured="census" year="1989">125149</population>
<population measured="census" year="2002">134844</population>
<population measured="census" year="2010">138930</population>
</city>
<city id="cty-Russia-134" country="R" province="prov-Russia-20">
<name>Orechovo-Zujevo</name>
<name>Orekhovo Zuyevo</name>
<latitude>55.8</latitude>
<longitude>38.97</longitude>
<elevation>120</elevation>
<population measured="census" year="1979">132301</population>
<population measured="census" year="1989">137198</population>
<population measured="census" year="2002">122248</population>
<population measured="census" year="2010">120670</population>
</city>
<city id="cty-Russia-140" country="R" province="prov-Russia-20">
<name>Noginsk</name>
<latitude>55.85</latitude>
<longitude>38.43</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">118750</population>
<population measured="census" year="1989">123020</population>
<population measured="census" year="2002">117555</population>
<population measured="census" year="2010">100072</population>
</city>
<city id="cty-Russia-157" country="R" province="prov-Russia-20">
<name>Ščëlkovo</name>
<name>Shchyolkovo</name>
<latitude>55.92</latitude>
<longitude>38</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">100281</population>
<population measured="census" year="1989">109225</population>
<population measured="census" year="2002">112865</population>
<population measured="census" year="2010">110411</population>
</city>
<city id="cty-Russia-146" country="R" province="prov-Russia-20">
<name>Sergijev Posad</name>
<name>Zagorsk</name>
<name>Sergiyev Posad</name>
<latitude>56.3</latitude>
<longitude>38.13</longitude>
<elevation>210</elevation>
<population measured="census" year="1979">107144</population>
<population measured="census" year="1989">114696</population>
<population measured="census" year="2002">113581</population>
<population measured="census" year="2010">111179</population>
</city>
<city id="cty-Russia-Koroljow" country="R" province="prov-Russia-20">
<name>Korolëv</name>
<name>Korolyov</name>
<latitude>55.92</latitude>
<longitude>37.82</longitude>
<elevation>160</elevation>
<population measured="census" year="1979">133470</population>
<population measured="census" year="1989">159363</population>
<population measured="census" year="2002">170558</population>
<population measured="census" year="2010">183402</population>
</city>
<city id="cty-Russia-Zhukovsky" country="R" province="prov-Russia-20">
<name>Žukovskij</name>
<name>Zhukovsky</name>
<name>Zhukovskij</name>
<latitude>55.6</latitude>
<longitude>38.12</longitude>
<elevation>130</elevation>
<population measured="census" year="1979">90288</population>
<population measured="census" year="1989">100609</population>
<population measured="census" year="2002">101328</population>
<population measured="census" year="2010">104736</population>
</city>
<city id="cty-Russia-Pushkino" country="R" province="prov-Russia-20">
<name>Puškino</name>
<name>Pushkino</name>
<latitude>56.02</latitude>
<longitude>37.83</longitude>
<elevation>160</elevation>
<population measured="census" year="1979">68518</population>
<population measured="census" year="1989">75847</population>
<population measured="census" year="2002">72425</population>
<population measured="census" year="2010">102874</population>
</city>
</province>
<province id="prov-Russia-21" country="R" capital="cty-Russia-54">
<name>Orlovskaya</name>
<localname>Орловская</localname>
<area>24700</area>
<population measured="census" year="2010">786935</population>
<population measured="estimate" year="2013">775826</population>
<population measured="estimate" year="2014">769980</population>
<city id="cty-Russia-54" country="R" province="prov-Russia-21">
<name>Orel</name>
<name>Orël</name>
<name>Oryol</name>
<localname>Орел</localname>
<latitude>52.97</latitude>
<longitude>36.07</longitude>
<elevation>170</elevation>
<population measured="census" year="1979">304971</population>
<population measured="census" year="1989">336862</population>
<population year="2002" measured="census">333310</population>
<population measured="census" year="2010">317747</population>
<population year="2013" measured="estimate">318136</population>
<located_at watertype="river" river="river-Oka"/>
</city>
</province>
<province id="prov-Russia-22" country="R" capital="cty-Russia-28">
<name>Ryazanskaya</name>
<localname>Рязанская</localname>
<area>39600</area>
<population measured="census" year="2010">1154114</population>
<population measured="estimate" year="2013">1144650</population>
<population measured="estimate" year="2014">1140844</population>
<city id="cty-Russia-28" country="R" province="prov-Russia-22">
<name>Ryazan</name>
<name>Rjazan</name>
<localname>Рязань</localname>
<latitude>54.6</latitude>
<longitude>39.7</longitude>
<elevation>130</elevation>
<population measured="census" year="1979">453267</population>
<population measured="census" year="1989">514638</population>
<population measured="census" year="2002">524104</population>
<population measured="census" year="2010">524927</population>
<population year="2013" measured="estimate">527905</population>
<located_at watertype="river" river="river-Oka"/>
</city>
</province>
<province id="prov-Russia-23" country="R" capital="cty-Russia-52">
<name>Smolenskaya</name>
<localname>Смоленская</localname>
<area>49800</area>
<population measured="census" year="2010">985537</population>
<population measured="estimate" year="2013">975188</population>
<population measured="estimate" year="2014">967896</population>
<city id="cty-Russia-52" country="R" province="prov-Russia-23">
<name>Smolensk</name>
<localname>Смоленск</localname>
<latitude>54.78</latitude>
<longitude>32.05</longitude>
<elevation>242</elevation>
<population measured="census" year="1979">276402</population>
<population measured="census" year="1989">341483</population>
<population year="2002" measured="census">325137</population>
<population measured="census" year="2010">326861</population>
<population year="2013" measured="estimate">330970</population>
<located_at watertype="river" river="river-Dnepr"/>
</city>
</province>
<province id="prov-Russia-24" country="R" capital="cty-Russia-41">
<name>Tverskaya</name>
<localname>Тверская</localname>
<area>84100</area>
<population measured="census" year="2010">1353392</population>
<population measured="estimate" year="2013">1334061</population>
<population measured="estimate" year="2014">1325249</population>
<city id="cty-Russia-41" country="R" province="prov-Russia-24">
<name>Tver</name>
<localname>Тверь</localname>
<latitude>56.86</latitude>
<longitude>35.92</longitude>
<elevation>135</elevation>
<population measured="census" year="1979">411548</population>
<population measured="census" year="1989">450941</population>
<population year="2002" measured="census">408903</population>
<population measured="census" year="2010">403606</population>
<population year="2013" measured="estimate">408877</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
</province>
<province id="prov-Russia-25" country="R" capital="cty-Russia-31">
<name>Tulskaya</name>
<localname>Тульская</localname>
<area>25700</area>
<population measured="census" year="2010">1553925</population>
<population measured="estimate" year="2013">1532436</population>
<population measured="estimate" year="2014">1521497</population>
<city id="cty-Russia-31" country="R" province="prov-Russia-25">
<name>Tula</name>
<localname>Тула</localname>
<latitude>54.2</latitude>
<longitude>37.62</longitude>
<elevation>170</elevation>
<population measured="census" year="1979">514008</population>
<population measured="census" year="1989">539980</population>
<population year="2002" measured="census">481216</population>
<population measured="census" year="2010">501169</population>
<population year="2013" measured="estimate">493813</population>
</city>
<city id="cty-Russia-119" country="R" province="prov-Russia-25">
<name>Novomoskovsk</name>
<latitude>54.08</latitude>
<longitude>38.22</longitude>
<elevation>220</elevation>
<population measured="census" year="1979">146807</population>
<population measured="census" year="1989">146302</population>
<population measured="census" year="2002">134081</population>
<population measured="census" year="2010">131386</population>
</city>
</province>
<province id="prov-Russia-26" country="R" capital="cty-Russia-23">
<name>Yaroslavskaya</name>
<localname>Ярославская</localname>
<area>36400</area>
<population measured="census" year="2010">1272468</population>
<population measured="estimate" year="2013">1271672</population>
<population measured="estimate" year="2014">1271766</population>
<city id="cty-Russia-23" country="R" province="prov-Russia-26">
<name>Yaroslavl</name>
<name>Jaroslavl</name>
<localname>Ярославль</localname>
<latitude>57.62</latitude>
<longitude>39.85</longitude>
<elevation>100</elevation>
<population measured="census" year="1979">596951</population>
<population measured="census" year="1989">632991</population>
<population year="2002" measured="census">613088</population>
<population year="2010" measured="census">591486</population>
<population year="2013" measured="estimate">599169</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
<city id="cty-Russia-79" country="R" province="prov-Russia-26">
<name>Rybinsk</name>
<latitude>58.05</latitude>
<longitude>38.83</longitude>
<elevation>100</elevation>
<population measured="census" year="1979">238579</population>
<population measured="census" year="1989">251442</population>
<population measured="census" year="2002">222653</population>
<population measured="census" year="2010">200771</population>
<located_at watertype="lake" lake="lake-RybinskReservoir"/>
<located_at watertype="river" river="river-Wolga"/>
</city>
</province>
<province id="prov-Russia-27" country="R" capital="cty-Russia-78">
<name>Mariy-El</name>
<localname>Марий Эл</localname>
<area>23200</area>
<population measured="census" year="2010">696459</population>
<population measured="estimate" year="2013">690349</population>
<population measured="estimate" year="2014">688686</population>
<city id="cty-Russia-78" country="R" province="prov-Russia-27">
<name>Yoshkar-Ola</name>
<name>Joškar-Ola</name>
<localname>Йошкар-Ола</localname>
<latitude>56.65</latitude>
<longitude>47.88</longitude>
<elevation>100</elevation>
<population measured="census" year="1979">201371</population>
<population measured="census" year="1989">241601</population>
<population measured="census" year="2002">256719</population>
<population measured="census" year="2010">248782</population>
<population year="2013" measured="estimate">257015</population>
</city>
</province>
<province id="prov-Russia-28" country="R" capital="cty-Russia-61">
<name>Mordoviya</name>
<localname>Мордовия</localname>
<area>26200</area>
<population measured="census" year="2010">834755</population>
<population measured="estimate" year="2013">818566</population>
<population measured="estimate" year="2014">812156</population>
<city id="cty-Russia-61" country="R" province="prov-Russia-28">
<name>Saransk</name>
<localname>Саранск</localname>
<latitude>54.18</latitude>
<longitude>45.18</longitude>
<elevation>160</elevation>
<population measured="census" year="1979">263337</population>
<population measured="census" year="1989">312128</population>
<population year="2002" measured="census">304866</population>
<population measured="census" year="2010">297415</population>
<population year="2013" measured="estimate">298287</population>
</city>
</province>
<province id="prov-Russia-29" country="R" capital="cty-Russia-42">
<name>Chuvashia</name>
<localname>Чувашская</localname>
<area>18300</area>
<population measured="census" year="2010">1251619</population>
<population measured="estimate" year="2013">1243431</population>
<population measured="estimate" year="2014">1239984</population>
<city id="cty-Russia-42" country="R" province="prov-Russia-29">
<name>Cheboksary</name>
<name>Čeboksary</name>
<localname>Чебоксары</localname>
<latitude>56.15</latitude>
<longitude>47.23</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">307599</population>
<population measured="census" year="1989">419592</population>
<population year="2002" measured="census">440621</population>
<population measured="census" year="2010">453721</population>
<population year="2013" measured="estimate">464940</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
<city id="cty-Russia-136" country="R" province="prov-Russia-29">
<name>Novočeboksarsk</name>
<name>Novocheboksarsk</name>
<latitude>56.13</latitude>
<longitude>47.5</longitude>
<elevation>90</elevation>
<population measured="census" year="1979">85307</population>
<population measured="census" year="1989">114760</population>
<population measured="census" year="2002">125857</population>
<population measured="census" year="2010">124097</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
</province>
<province id="prov-Russia-30" country="R" capital="cty-Russia-39">
<name>Kirovskaya</name>
<localname>Кировская</localname>
<area>120800</area>
<population measured="census" year="2010">1341312</population>
<population measured="estimate" year="2013">1319076</population>
<population measured="estimate" year="2014">1310929</population>
<city id="cty-Russia-39" country="R" province="prov-Russia-30">
<name>Kirov</name>
<localname>Киров</localname>
<latitude>58.6</latitude>
<longitude>49.65</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">389533</population>
<population measured="census" year="1989">440240</population>
<population year="2002" measured="census">457578</population>
<population measured="census" year="2010">473695</population>
<population year="2013" measured="estimate">483176</population>
</city>
</province>
<province id="prov-Russia-31" country="R" capital="cty-Russia-4">
<name>Nizhnii Novgorodskaya</name>
<name>Nizhny Novgorodskaya</name>
<localname>Нижегородская</localname>
<area>74800</area>
<population measured="census" year="2010">3310597</population>
<population measured="estimate" year="2013">3289841</population>
<population measured="estimate" year="2014">3281496</population>
<city id="cty-Russia-4" country="R" province="prov-Russia-31">
<name>Nizhnii Novgorod</name>
<name>Nižnij Novgorod</name>
<name>Nizhny Novgorod</name>
<localname>Нижний Новгород</localname>
<latitude>56.33</latitude>
<longitude>44.01</longitude>
<elevation>78</elevation>
<population measured="census" year="1979">1344474</population>
<population measured="census" year="1989">1438133</population>
<population year="2002" measured="census">1311252</population>
<population measured="census" year="2010">1250619</population>
<population year="2013" measured="estimate">1259921</population>
<located_at watertype="river" river="river-Wolga"/>
<located_at watertype="river" river="river-Oka"/>
</city>
<city id="cty-Russia-69" country="R" province="prov-Russia-31">
<name>Dzeržinsk</name>
<name>Dzerzhinsk</name>
<latitude>56.23</latitude>
<longitude>43.45</longitude>
<elevation>90</elevation>
<population measured="census" year="1979">257119</population>
<population measured="census" year="1989">285071</population>
<population measured="census" year="2002">261334</population>
<population measured="census" year="2010">240742</population>
<located_at watertype="river" river="river-Oka"/>
</city>
<city id="cty-Russia-147" country="R" province="prov-Russia-31">
<name>Arzamas</name>
<latitude>55.4</latitude>
<longitude>43.82</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">93251</population>
<population measured="census" year="1989">108951</population>
<population measured="census" year="2002">109432</population>
<population measured="census" year="2010">106362</population>
</city>
</province>
<province id="prov-Russia-32" country="R" capital="cty-Russia-59">
<name>Belgorodskaya</name>
<localname>Белгородская</localname>
<area>27134</area>
<population year="1997">1469100</population>
<population measured="census" year="2010">1532526</population>
<population measured="estimate" year="2013">1540985</population>
<population measured="estimate" year="2014">1544108</population>
<city id="cty-Russia-59" country="R" province="prov-Russia-32">
<name>Belgorod</name>
<localname>Белгород</localname>
<latitude>50.6</latitude>
<longitude>36.6</longitude>
<elevation>130</elevation>
<population measured="census" year="1979">239814</population>
<population measured="census" year="1989">300408</population>
<population year="2002" measured="census">337030</population>
<population measured="census" year="2010">356402</population>
<population year="2013" measured="estimate">373528</population>
</city>
<city id="cty-Russia-95" country="R" province="prov-Russia-32">
<name>Staryj Oskol</name>
<name>Stary Oskol</name>
<latitude>51.3</latitude>
<longitude>37.83</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">114946</population>
<population measured="census" year="1989">173917</population>
<population measured="census" year="2002">215898</population>
<population measured="census" year="2010">221085</population>
</city>
</province>
<province id="prov-Russia-33" country="R" capital="cty-Russia-15">
<name>Voronezhskaya</name>
<localname>Воронежская</localname>
<area>52400</area>
<population measured="census" year="2010">2335380</population>
<population measured="estimate" year="2013">2330377</population>
<population measured="estimate" year="2014">2328959</population>
<city id="cty-Russia-15" country="R" province="prov-Russia-33">
<name>Voronezh</name>
<name>Voronež</name>
<localname>Воронеж</localname>
<latitude>51.67</latitude>
<longitude>39.21</longitude>
<elevation>154</elevation>
<population measured="census" year="1979">824172</population>
<population measured="census" year="2002">928410</population>
<population measured="census" year="2010">975373</population>
<population year="2013" measured="estimate">1003638</population>
<located_at watertype="river" river="river-Don"/>
</city>
</province>
<province id="prov-Russia-34" country="R" capital="cty-Russia-43">
<name>Kurskaya</name>
<localname>Курская</localname>
<area>29800</area>
<population measured="census" year="2010">1127081</population>
<population measured="estimate" year="2013">1119262</population>
<population measured="estimate" year="2014">1118915</population>
<city id="cty-Russia-43" country="R" province="prov-Russia-34">
<name>Kursk</name>
<localname>Курск</localname>
<latitude>51.72</latitude>
<longitude>36.18</longitude>
<elevation>250</elevation>
<population measured="census" year="1979">375345</population>
<population measured="census" year="1989">424239</population>
<population year="2002" measured="census">412442</population>
<population measured="census" year="2010">415159</population>
<population year="2013" measured="estimate">428741</population>
</city>
</province>
<province id="prov-Russia-35" country="R" capital="cty-Russia-37">
<name>Lipetskaya</name>
<localname>Липецкая</localname>
<area>24100</area>
<population measured="census" year="2010">1173513</population>
<population measured="estimate" year="2013">1162235</population>
<population measured="estimate" year="2014">1159866</population>
<city id="cty-Russia-37" country="R" province="prov-Russia-35">
<name>Lipetsk</name>
<name>Lipeck</name>
<localname>Липецк</localname>
<latitude>52.62</latitude>
<longitude>39.6</longitude>
<elevation>160</elevation>
<population measured="census" year="1979">395638</population>
<population measured="census" year="1989">449635</population>
<population year="2002" measured="census">506114</population>
<population measured="census" year="2010">508887</population>
<population year="2013" measured="estimate">509098</population>
</city>
<city id="cty-Russia-139" country="R" province="prov-Russia-35">
<name>Jelec</name>
<name>Yelets</name>
<latitude>52.62</latitude>
<longitude>38.47</longitude>
<elevation>140</elevation>
<population measured="census" year="1979">111773</population>
<population measured="census" year="1989">120261</population>
<population measured="census" year="2002">116726</population>
<population measured="census" year="2010">108404</population>
<located_at watertype="river" river="river-Don"/>
</city>
</province>
<province id="prov-Russia-36" country="R" capital="cty-Russia-63">
<name>Tambovskaya</name>
<localname>Тамбовская</localname>
<area>34300</area>
<population measured="census" year="2010">1091994</population>
<population measured="estimate" year="2013">1075748</population>
<population measured="estimate" year="2014">1068934</population>
<city id="cty-Russia-63" country="R" province="prov-Russia-36">
<name>Tambov</name>
<localname>Тамбов</localname>
<latitude>52.72</latitude>
<longitude>41.43</longitude>
<elevation>130</elevation>
<population measured="census" year="1979">270073</population>
<population measured="census" year="1989">304600</population>
<population year="2002" measured="census">293658</population>
<population measured="census" year="2010">280161</population>
<population year="2013" measured="estimate">281834</population>
</city>
</province>
<province id="prov-Russia-37" country="R" capital="cty-Russia-Elista">
<name>Kalmykiya</name>
<localname>Калмыкия</localname>
<area>76100</area>
<population measured="census" year="2010">289481</population>
<population measured="estimate" year="2013">284140</population>
<population measured="estimate" year="2014">282021</population>
<city id="cty-Russia-Elista" country="R" province="prov-Russia-37">
<name>Elista</name>
<latitude>46.32</latitude>
<longitude>44.27</longitude>
<elevation>120</elevation>
<population measured="census" year="1979">70282</population>
<population measured="census" year="1989">89695</population>
<population measured="census" year="2002">104254</population>
<population measured="census" year="2010">103749</population>
</city>
</province>
<province id="prov-Russia-38" country="R" capital="cty-Russia-11">
<name>Tatarstan</name>
<localname>Татарстан</localname>
<area>68000</area>
<population year="1997">3760500</population>
<population measured="census" year="2010">3786488</population>
<population measured="estimate" year="2013">3822038</population>
<population measured="estimate" year="2014">3838230</population>
<city id="cty-Russia-11" country="R" province="prov-Russia-38">
<name>Kazan</name>
<name>Kazan</name>
<localname>Казань</localname>
<latitude>55.79</latitude>
<longitude>49.13</longitude>
<elevation>116</elevation>
<population measured="census" year="1979">992675</population>
<population measured="census" year="1989">1094378</population>
<population year="2002" measured="census">1105289</population>
<population measured="census" year="2010">1143535</population>
<population year="2013" measured="estimate">1176187</population>
<located_at watertype="lake" lake="lake-KuybyshevReservoir"/>
</city>
<city id="cty-Russia-32" country="R" province="prov-Russia-38">
<name>Naberezhnye Tchelny</name>
<name>Naberežnyje Čelny</name>
<name>Naberezhnye Chelny</name>
<localname>Набережные Челны</localname>
<latitude>55.68</latitude>
<longitude>52.32</longitude>
<elevation>100</elevation>
<population measured="census" year="1979">301381</population>
<population measured="census" year="1989">500309</population>
<population year="2002" measured="census">509870</population>
<population measured="census" year="2010">513193</population>
<population year="2013" measured="estimate">519025</population>
<located_at watertype="river" river="river-Kama"/>
</city>
<city id="cty-Russia-88" country="R" province="prov-Russia-38">
<name>Nižnekamsk</name>
<name>Nizhnekamsk</name>
<latitude>55.63</latitude>
<longitude>51.82</longitude>
<elevation>110</elevation>
<population measured="census" year="1979">134199</population>
<population measured="census" year="1989">190793</population>
<population measured="census" year="2002">225399</population>
<population measured="census" year="2010">234044</population>
<located_at watertype="river" river="river-Kama"/>
</city>
<city id="cty-Russia-122" country="R" province="prov-Russia-38">
<name>Almetjevsk</name>
<name>Almetyevsk</name>
<latitude>54.9</latitude>
<longitude>52.3</longitude>
<elevation>110</elevation>
<population measured="census" year="1979">109579</population>
<population measured="census" year="1989">129008</population>
<population measured="census" year="2002">140437</population>
<population measured="census" year="2010">146393</population>
</city>
</province>
<province id="prov-Russia-39" country="R" capital="cty-Russia-35">
<name>Astrakhanskaya</name>
<localname>Астраханская</localname>
<area>44100</area>
<population measured="census" year="2010">1010073</population>
<population measured="estimate" year="2013">1013840</population>
<population measured="estimate" year="2014">1016516</population>
<city id="cty-Russia-35" country="R" province="prov-Russia-39">
<name>Astrakhan</name>
<name>Astrachan</name>
<localname>Астрахань</localname>
<latitude>46.35</latitude>
<longitude>48.05</longitude>
<elevation>-28</elevation>
<population measured="census" year="1979">461003</population>
<population measured="census" year="1989">509210</population>
<population year="2002" measured="census">504501</population>
<population measured="census" year="2010">520339</population>
<population year="2013" measured="estimate">527345</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
</province>
<province id="prov-Russia-40" country="R" capital="cty-Russia-Volgograd">
<name>Volgogradskaya</name>
<localname>Волгоградская</localname>
<area>113900</area>
<population measured="census" year="2010">2610161</population>
<population measured="estimate" year="2013">2583002</population>
<population measured="estimate" year="2014">2569126</population>
<city id="cty-Russia-Volgograd" country="R" province="prov-Russia-40">
<name>Volgograd</name>
<localname>Волгоград</localname>
<latitude>48.7</latitude>
<longitude>44.52</longitude>
<elevation>80</elevation>
<population measured="census" year="1979">928692</population>
<population measured="census" year="1989">998894</population>
<population year="2002" measured="census">1011417</population>
<population measured="census" year="2010">1021215</population>
<population year="2013" measured="estimate">1018790</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
<city id="cty-Russia-68" country="R" province="prov-Russia-40">
<name>Volzhsky</name>
<name>Volžskij</name>
<localname>Волжский</localname>
<latitude>48.81</latitude>
<longitude>44.74</longitude>
<elevation>20</elevation>
<population measured="census" year="1989">277284</population>
<population measured="census" year="2002">324224</population>
<population measured="census" year="2010">327089</population>
<population year="2013" measured="estimate">327356</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
<city id="cty-Russia-131" country="R" province="prov-Russia-40">
<name>Kamyšin</name>
<name>Kamyshin</name>
<latitude>50.08</latitude>
<longitude>45.4</longitude>
<elevation>50</elevation>
<population measured="census" year="1979">111565</population>
<population measured="census" year="1989">122463</population>
<population measured="census" year="2002">127891</population>
<population measured="census" year="2010">119565</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
</province>
<province id="prov-Russia-41" country="R" capital="cty-Russia-29">
<name>Penzenskaya</name>
<name>Penza</name>
<localname>Пензенская</localname>
<area>43200</area>
<population measured="census" year="2010">1386186</population>
<population measured="estimate" year="2013">1368657</population>
<population measured="estimate" year="2014">1360587</population>
<city id="cty-Russia-29" country="R" province="prov-Russia-41">
<name>Penza</name>
<localname>Пенза</localname>
<latitude>53.2</latitude>
<longitude>45</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">482916</population>
<population measured="census" year="1989">542612</population>
<population year="2002" measured="census">518025</population>
<population measured="census" year="2010">517311</population>
<population year="2013" measured="estimate">519900</population>
</city>
</province>
<province id="prov-Russia-42" country="R" capital="cty-Russia-7">
<name>Samarskaya</name>
<name>Samara</name>
<localname>Самарская</localname>
<area>53600</area>
<population measured="census" year="2010">3215532</population>
<population measured="estimate" year="2013">3213289</population>
<population measured="estimate" year="2014">3211187</population>
<city id="cty-Russia-7" country="R" province="prov-Russia-42">
<name>Samara</name>
<localname>Самара</localname>
<latitude>53.2</latitude>
<longitude>50.14</longitude>
<elevation>100</elevation>
<population measured="census" year="1979">1216233</population>
<population measured="census" year="1989">1254460</population>
<population year="2002" measured="census">1157880</population>
<population measured="census" year="2010">1164685</population>
<population year="2013" measured="estimate">1171598</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
<city id="cty-Russia-18" country="R" province="prov-Russia-42">
<name>Tolyatti</name>
<name>Toljatti</name>
<localname>Тольятти</localname>
<latitude>53.51</latitude>
<longitude>49.42</longitude>
<elevation>90</elevation>
<population measured="census" year="1979">502036</population>
<population measured="census" year="1989">630543</population>
<population year="2002" measured="census">702879</population>
<population measured="census" year="2010">719632</population>
<population year="2013" measured="estimate">719149</population>
<located_at watertype="lake" lake="lake-KuybyshevReservoir"/>
</city>
<city id="cty-Russia-103" country="R" province="prov-Russia-42">
<name>Syzran</name>
<latitude>53.17</latitude>
<longitude>48.47</longitude>
<elevation>50</elevation>
<population measured="census" year="1979">178498</population>
<population measured="census" year="1989">174335</population>
<population measured="census" year="2002">188107</population>
<population measured="census" year="2010">178750</population>
<located_at watertype="lake" lake="lake-KuybyshevReservoir"/>
</city>
<city id="cty-Russia-145" country="R" province="prov-Russia-42">
<name>Novokujbyševsk</name>
<name>Novokuybyshevsk</name>
<latitude>53.1</latitude>
<longitude>49.93</longitude>
<elevation>90</elevation>
<population measured="census" year="1979">109029</population>
<population measured="census" year="1989">112987</population>
<population measured="census" year="2002">112973</population>
<population measured="census" year="2010">108438</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
</province>
<province id="prov-Russia-43" country="R" capital="cty-Russia-16">
<name>Saratovskaya</name>
<name>Saratov</name>
<localname>Саратовская</localname>
<area>100200</area>
<population measured="census" year="2010">2521892</population>
<population measured="estimate" year="2013">2503305</population>
<population measured="estimate" year="2014">2496552</population>
<city id="cty-Russia-16" country="R" province="prov-Russia-43">
<name>Saratov</name>
<localname>Саратов</localname>
<latitude>51.53</latitude>
<longitude>46.02</longitude>
<elevation>50</elevation>
<population measured="census" year="1979">855702</population>
<population measured="census" year="1989">904643</population>
<population year="2002" measured="census">873055</population>
<population measured="census" year="2010">837900</population>
<population year="2013" measured="estimate">839755</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
<city id="cty-Russia-91" country="R" province="prov-Russia-43">
<name>Balakovo</name>
<latitude>52.03</latitude>
<longitude>47.78</longitude>
<elevation>24</elevation>
<population measured="census" year="1979">151560</population>
<population measured="census" year="1989">197391</population>
<population measured="census" year="2002">200470</population>
<population measured="census" year="2010">199690</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
<city id="cty-Russia-100" country="R" province="prov-Russia-43">
<name>Ėngels</name>
<latitude>51.5</latitude>
<longitude>46.12</longitude>
<elevation>20</elevation>
<population measured="census" year="1979">161349</population>
<population measured="census" year="1989">181201</population>
<population measured="census" year="2002">193984</population>
<population measured="census" year="2010">202419</population>
<located_at watertype="river" river="river-Wolga"/>
</city>
</province>
<province id="prov-Russia-44" country="R" capital="cty-Russia-19">
<name>Ulyanovskaya</name>
<localname>Ульяновская</localname>
<area>37300</area>
<population measured="census" year="2010">1292799</population>
<population measured="estimate" year="2013">1274487</population>
<population measured="estimate" year="2014">1267561</population>
<city id="cty-Russia-19" country="R" province="prov-Russia-44">
<name>Ulyanovsk</name>
<name>Uljanovsk</name>
<localname>Ульяновск</localname>
<latitude>54.32</latitude>
<longitude>48.37</longitude>
<elevation>140</elevation>
<population measured="census" year="1979">463964</population>
<population measured="census" year="1989">625155</population>
<population year="2002" measured="census">635947</population>
<population measured="census" year="2010">614786</population>
<population year="2013" measured="estimate">615306</population>
<located_at watertype="lake" lake="lake-KuybyshevReservoir"/>
</city>
<city id="cty-Russia-125" country="R" province="prov-Russia-44">
<name>Dimitrovgrad</name>
<latitude>54.18</latitude>
<longitude>49.58</longitude>
<elevation>60</elevation>
<population measured="census" year="1979">105958</population>
<population measured="census" year="1989">123570</population>
<population measured="census" year="2002">130871</population>
<population measured="census" year="2010">122580</population>
<located_at watertype="lake" lake="lake-KuybyshevReservoir"/>
</city>
</province>
<province id="prov-Russia-45" country="R" capital="cty-Russia-13">
<name>Rostovskaya</name>
<localname>Ростовская</localname>
<area>100800</area>
<population measured="census" year="2010">4277976</population>
<population measured="estimate" year="2013">4254613</population>
<population measured="estimate" year="2014">4245532</population>
<city id="cty-Russia-13" country="R" province="prov-Russia-45">
<name>Rostov-na-Donu</name>
<name>Rostov</name>
<name>Rostov on Don</name>
<localname>Ростов-на-Дону</localname>
<latitude>47.23</latitude>
<longitude>39.7</longitude>
<elevation>70</elevation>
<population measured="census" year="1979">934095</population>
<population measured="census" year="1989">1019305</population>
<population year="2002" measured="census">1068267</population>
<population measured="census" year="2010">1089261</population>
<population year="2013" measured="estimate">1103733</population>
<located_at watertype="river" river="river-Don"/>
</city>
<city id="cty-Russia-Bataisk" country="R" province="prov-Russia-45">
<name>Batajsk</name>
<name>Bataisk</name>
<name>Bataysk</name>
<latitude>47.17</latitude>
<longitude>39.73</longitude>
<elevation>5</elevation>
<population measured="census" year="1979">90123</population>
<population measured="census" year="1989">91930</population>
<population measured="census" year="2002">107438</population>
<population measured="census" year="2010">111843</population>
<located_at watertype="river" river="river-Don"/>
</city>
<city id="cty-Russia-67" country="R" province="prov-Russia-45">
<name>Taganrog</name>
<localname>Таганрог</localname>
<latitude>47.22</latitude>
<longitude>38.92</longitude>
<elevation>30</elevation>
<population measured="census" year="1979">276444</population>
<population measured="census" year="1989">291622</population>
<population year="2002" measured="census">281947</population>
<population measured="census" year="2010">257681</population>
<population year="2013" measured="estimate">254783</population>
<located_at watertype="sea" sea="sea-Asowsches_Meer"/>
</city>
<city id="cty-Russia-84" country="R" province="prov-Russia-45">
<name>Šachty</name>
<name>Shakhty</name>
<latitude>47.7</latitude>
<longitude>40.23</longitude>
<elevation>100</elevation>
<population measured="census" year="1979">209495</population>
<population measured="census" year="1989">225797</population>
<population measured="census" year="2002">254721</population>
<population measured="census" year="2010">239987</population>
</city>
<city id="cty-Russia-99" country="R" province="prov-Russia-45">
<name>Novočerkassk</name>
<name>Novocherkassk</name>
<latitude>47.42</latitude>
<longitude>40.08</longitude>
<elevation>80</elevation>
<population measured="census" year="1979">183055</population>
<population measured="census" year="1989">187973</population>
<population measured="census" year="2002">184470</population>
<population measured="census" year="2010">168746</population>
</city>
<city id="cty-Russia-102" country="R" province="prov-Russia-45">
<name>Volgodonsk</name>
<latitude>47.52</latitude>
<longitude>42.15</longitude>
<elevation>50</elevation>
<population measured="census" year="1979">91313</population>
<population measured="census" year="1989">175593</population>
<population measured="census" year="2002">172401</population>
<population measured="census" year="2010">170841</population>
<located_at watertype="river" river="river-Don"/>
</city>
<city id="cty-Russia-159" country="R" province="prov-Russia-45">
<name>Novošachtinsk</name>
<name>Novoshakhtinsk</name>
<latitude>47.75</latitude>
<longitude>39.93</longitude>
<elevation>130</elevation>
<population measured="census" year="1979">104152</population>
<population measured="census" year="1989">107772</population>
<population measured="census" year="2002">117689</population>
<population measured="census" year="2010">111075</population>
</city>
</province>
<province id="prov-Russia-46" country="R" capital="cty-Russia-9">
<name>Bashkortostan</name>
<localname>Башкортостан</localname>
<area>143600</area>
<population measured="census" year="2010">4072292</population>
<population measured="estimate" year="2013">4060957</population>
<population measured="estimate" year="2014">4069698</population>
<city id="cty-Russia-9" country="R" province="prov-Russia-46">
<name>Ufa</name>
<localname>Уфа</localname>
<latitude>54.75</latitude>
<longitude>55.97</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">969289</population>
<population measured="census" year="1989">1082052</population>
<population year="2002" measured="census">1042437</population>
<population measured="census" year="2010">1062319</population>
<population year="2013" measured="estimate">1077719</population>
</city>
<city id="cty-Russia-75" country="R" province="prov-Russia-46">
<name>Sterlitamak</name>
<localname>Стерлитамак</localname>
<latitude>53.63</latitude>
<longitude>55.95</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">220122</population>
<population measured="census" year="1989">247457</population>
<population year="2002" measured="census">264362</population>
<population measured="census" year="2010">273486</population>
<population year="2013" measured="estimate">275798</population>
</city>
<city id="cty-Russia-115" country="R" province="prov-Russia-46">
<name>Salavat</name>
<latitude>53.37</latitude>
<longitude>55.93</longitude>
<elevation>156</elevation>
<population measured="census" year="1979">137237</population>
<population measured="census" year="1989">149627</population>
<population measured="census" year="2002">158600</population>
<population measured="census" year="2010">156095</population>
</city>
<city id="cty-Russia-149" country="R" province="prov-Russia-46">
<name>Oktjabrskij</name>
<name>Oktyabrsky</name>
<latitude>54.47</latitude>
<longitude>53.47</longitude>
<elevation>140</elevation>
<population measured="census" year="1979">88030</population>
<population measured="census" year="1989">104732</population>
<population measured="census" year="2002">108647</population>
<population measured="census" year="2010">109474</population>
</city>
</province>
<province id="prov-Russia-47" country="R" capital="cty-Russia-20">
<name>Udmurtskaya</name>
<localname>Удмуртская</localname>
<area>42100</area>
<population measured="census" year="2010">1521420</population>
<population measured="estimate" year="2013">1517692</population>
<population measured="estimate" year="2014">1517050</population>
<city id="cty-Russia-20" country="R" province="prov-Russia-47">
<name>Izhevsk</name>
<name>Iževsk</name>
<localname>Ижевск</localname>
<latitude>56.83</latitude>
<longitude>53.18</longitude>
<elevation>140</elevation>
<population measured="census" year="1979">548721</population>
<population measured="census" year="1989">635109</population>
<population year="2002" measured="census">632140</population>
<population measured="census" year="2010">627734</population>
<population year="2013" measured="estimate">632913</population>
</city>
<city id="cty-Russia-153" country="R" province="prov-Russia-47">
<name>Sarapul</name>
<latitude>56.47</latitude>
<longitude>53.8</longitude>
<elevation>80</elevation>
<population year="1979" measured="census">106649</population>
<population year="1989" measured="census">110381</population>
<population year="2002" measured="census">103141</population>
<population year="2010" measured="census">101381</population>
<located_at watertype="river" river="river-Kama"/>
</city>
</province>
<province id="prov-Russia-48" country="R" capital="cty-Russia-30">
<name>Orenburgskaya</name>
<localname>Оренбургская</localname>
<area>124000</area>
<population measured="census" year="2010">2033072</population>
<population measured="estimate" year="2013">2016086</population>
<population measured="estimate" year="2014">2008566</population>
<city id="cty-Russia-30" country="R" province="prov-Russia-48">
<name>Orenburg</name>
<localname>Оренбург</localname>
<latitude>51.78</latitude>
<longitude>55.1</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">458747</population>
<population measured="census" year="1989">546501</population>
<population year="2002" measured="census">549361</population>
<population measured="census" year="2010">548331</population>
<population year="2013" measured="estimate">556127</population>
<located_at watertype="river" river="river-Ural"/>
</city>
<city id="cty-Russia-72" country="R" province="prov-Russia-48">
<name>Orsk</name>
<latitude>51.2</latitude>
<longitude>58.57</longitude>
<elevation>200</elevation>
<population measured="census" year="1979">246667</population>
<population measured="census" year="1989">270711</population>
<population measured="census" year="2002">250963</population>
<population measured="census" year="2010">239800</population>
<located_at watertype="river" river="river-Ural"/>
</city>
</province>
<province id="prov-Russia-49" country="R" capital="cty-Russia-12">
<name>Permskij</name>
<name>Permskiy</name>
<localname>Пермский</localname>
<area>160600</area>
<population measured="census" year="2010">2635276</population>
<population measured="estimate" year="2013">2634461</population>
<population measured="estimate" year="2014">2636154</population>
<city id="cty-Russia-12" country="R" province="prov-Russia-49">
<name>Perm</name>
<localname>Пермь</localname>
<latitude>58</latitude>
<longitude>56.32</longitude>
<elevation>171</elevation>
<population measured="census" year="1979">999157</population>
<population measured="census" year="1989">1090944</population>
<population year="2002" measured="census">1001653</population>
<population measured="census" year="2010">991162</population>
<population year="2013" measured="estimate">1013887</population>
<located_at watertype="river" river="river-Kama"/>
</city>
<city id="cty-Russia-101" country="R" province="prov-Russia-49">
<name>Berezniki</name>
<latitude>59.42</latitude>
<longitude>56.78</longitude>
<elevation>130</elevation>
<population measured="census" year="1979">185395</population>
<population measured="census" year="1989">201213</population>
<population measured="census" year="2002">173077</population>
<population measured="census" year="2010">156466</population>
<located_at watertype="river" river="river-Kama"/>
</city>
</province>
<province id="prov-Russia-52" country="R" capital="cty-Russia-107">
<name>Adygeya</name>
<localname>Адыгея</localname>
<area>7600</area>
<population measured="census" year="2010">439996</population>
<population measured="estimate" year="2013">444403</population>
<population measured="estimate" year="2014">446406</population>
<city id="cty-Russia-107" country="R" province="prov-Russia-52">
<name>Majkop</name>
<name>Maykop</name>
<latitude>44.6</latitude>
<longitude>40.08</longitude>
<elevation>220</elevation>
<population measured="census" year="1979">127828</population>
<population measured="census" year="1989">148608</population>
<population measured="census" year="2002">156931</population>
<population measured="census" year="2010">144249</population>
</city>
</province>
<province id="prov-Russia-53" country="R" capital="cty-Russia-58">
<name>Dagestan</name>
<localname>Дагестан</localname>
<area>50300</area>
<population year="1997">2097500</population>
<population measured="census" year="2010">2910249</population>
<population measured="estimate" year="2013">2946035</population>
<population measured="estimate" year="2014">2963918</population>
<city id="cty-Russia-58" country="R" province="prov-Russia-53">
<name>Makhachkala</name>
<name>Machačkala</name>
<localname>Махачкала</localname>
<latitude>42.97</latitude>
<longitude>47.5</longitude>
<elevation>10</elevation>
<population measured="census" year="1979">251371</population>
<population measured="census" year="1989">317475</population>
<population year="2002" measured="census">462412</population>
<population measured="census" year="2010">572076</population>
<population year="2013" measured="estimate">576194</population>
<located_at watertype="lake" lake="lake-KaspischesMeer"/>
</city>
<city id="cty-Russia-Derbent" country="R" province="prov-Russia-53">
<name>Derbent</name>
<latitude>42.05</latitude>
<longitude>48.3</longitude>
<elevation>0</elevation>
<population measured="census" year="1979">69575</population>
<population measured="census" year="1989">78371</population>
<population measured="census" year="2002">101031</population>
<population measured="census" year="2010">119200</population>
<located_at watertype="lake" lake="lake-KaspischesMeer"/>
</city>
<city id="cty-Russia-Kaspijsk" country="R" province="prov-Russia-53">
<name>Kaspijsk</name>
<name>Kaspiysk</name>
<latitude>42.88</latitude>
<longitude>47.64</longitude>
<elevation>0</elevation>
<population measured="census" year="1979">49382</population>
<population measured="census" year="1989">60069</population>
<population measured="census" year="2002">77650</population>
<population measured="census" year="2010">100129</population>
<located_at watertype="lake" lake="lake-KaspischesMeer"/>
</city>
<city id="cty-Russia-Khasavyurt" country="R" province="prov-Russia-53">
<name>Chasavjurt</name>
<name>Khasavyurt</name>
<latitude>43.25</latitude>
<longitude>46.58</longitude>
<elevation>130</elevation>
<population measured="census" year="1979">65114</population>
<population measured="census" year="1989">70514</population>
<population measured="census" year="2002">121817</population>
<population measured="census" year="2010">131187</population>
</city>
</province>
<province id="prov-Russia-54" country="R" capital="cty-Russia-Nazran">
<name>Ingushskaya</name>
<localname>Ингушетия</localname>
<area>3750</area>
<population year="1997">299700</population>
<population measured="census" year="2010">412529</population>
<population measured="estimate" year="2013">442255</population>
<population measured="estimate" year="2014">453010</population>
<city id="cty-Russia-Nazran" country="R" province="prov-Russia-54">
<name>Nazran</name>
<latitude>43.22</latitude>
<longitude>44.77</longitude>
<elevation>520</elevation>
<population measured="census" year="1979">14945</population>
<population measured="census" year="1989">18246</population>
<population measured="census" year="2002">125066</population>
<population measured="census" year="2010">93335</population>
</city>
</province>
<province id="prov-Russia-55" country="R" capital="cty-Russia-81">
<name>Kabardino-Balkarskaya</name>
<localname>Кабардино-Балкарская</localname>
<area>12500</area>
<population year="1997">789900</population>
<population measured="census" year="2010">859939</population>
<population measured="estimate" year="2013">858946</population>
<population measured="estimate" year="2014">858397</population>
<city id="cty-Russia-81" country="R" province="prov-Russia-55">
<name>Nalčik</name>
<name>Nalchik</name>
<latitude>43.48</latitude>
<longitude>43.62</longitude>
<elevation>480</elevation>
<population measured="census" year="1979">207406</population>
<population measured="census" year="1989">234547</population>
<population measured="census" year="2002">274974</population>
<population measured="census" year="2010">240203</population>
</city>
</province>
<province id="prov-Russia-56" country="R" capital="cty-Russia-141">
<name>Karachayevo-Cherkesskaya</name>
<localname>Карачаево-Черкесская</localname>
<area>14100</area>
<population year="1997">436300</population>
<population measured="census" year="2010">477859</population>
<population measured="estimate" year="2013">471847</population>
<population measured="estimate" year="2014">469837</population>
<city id="cty-Russia-141" country="R" province="prov-Russia-56">
<name>Čerkessk</name>
<name>Cherkessk</name>
<latitude>44.22</latitude>
<longitude>42.05</longitude>
<elevation>530</elevation>
<population measured="census" year="1979">90833</population>
<population measured="census" year="1989">113060</population>
<population measured="census" year="2002">116244</population>
<population measured="census" year="2010">129069</population>
<located_at watertype="river" river="river-Kuban"/>
</city>
</province>
<province id="prov-Russia-57" country="R" capital="cty-Russia-64">
<name>North Ossetia-Alania</name>
<localname>Северная Осетия-Алания</localname>
<area>8000</area>
<population year="1997">662600</population>
<population measured="census" year="2010">712980</population>
<population measured="estimate" year="2013">706123</population>
<population measured="estimate" year="2014">703977</population>
<city id="cty-Russia-64" country="R" province="prov-Russia-57">
<name>Vladikavkaz</name>
<localname>Владикавказ</localname>
<latitude>43.02</latitude>
<longitude>44.65</longitude>
<elevation>680</elevation>
<population measured="census" year="1979">278930</population>
<population measured="census" year="1989">300198</population>
<population year="2002" measured="census">315608</population>
<population measured="census" year="2010">311693</population>
<population year="2013" measured="estimate">308285</population>
</city>
</province>
<province id="prov-Russia-58" country="R" capital="cty-Russia-50">
<name>Chechenskaya</name>
<localname>Чеченская</localname>
<area>12300</area>
<population year="1997">865100</population>
<population measured="census" year="2010">1268989</population>
<population measured="estimate" year="2013">1324767</population>
<population measured="estimate" year="2014">1346438</population>
<city id="cty-Russia-50" country="R" province="prov-Russia-58">
<name>Grozny</name>
<name>Groznyj</name>
<localname>Грозный</localname>
<latitude>43.32</latitude>
<longitude>45.72</longitude>
<elevation>130</elevation>
<population measured="census" year="1979">375326</population>
<population measured="census" year="1989">399688</population>
<population measured="census" year="2002">210720</population>
<population measured="census" year="2010">271573</population>
<population year="2013" measured="estimate">277414</population>
</city>
</province>
<province id="prov-Russia-59" country="R" capital="cty-Russia-21">
<name>Krasnodarskiy</name>
<localname>Краснодарский край</localname>
<area>76000</area>
<population year="1997">5043900</population>
<population measured="census" year="2010">5226647</population>
<population measured="estimate" year="2013">5330181</population>
<population measured="estimate" year="2014">5404273</population>
<city id="cty-Russia-21" country="R" province="prov-Russia-59">
<name>Krasnodar</name>
<localname>Краснодар</localname>
<latitude>45.03</latitude>
<longitude>38.97</longitude>
<elevation>25</elevation>
<population year="2002" measured="census">646175</population>
<population measured="census" year="2010">744995</population>
<population year="2013" measured="estimate">784048</population>
<located_at watertype="river" river="river-Kuban"/>
</city>
<city id="cty-Russia-53" country="R" province="prov-Russia-59">
<name>Sochi</name>
<name>Soči</name>
<localname>Сочи</localname>
<latitude>43.59</latitude>
<longitude>39.72</longitude>
<elevation>30</elevation>
<population measured="census" year="1979">287353</population>
<population measured="census" year="1989">336514</population>
<population year="2002" measured="census">328809</population>
<population measured="census" year="2010">343334</population>
<population year="2013" measured="estimate">368011</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
<city id="cty-Russia-93" country="R" province="prov-Russia-59">
<name>Novorossiysk</name>
<name>Novorossijsk</name>
<localname>Новороссийск</localname>
<latitude>44.72</latitude>
<longitude>37.75</longitude>
<elevation>20</elevation>
<population measured="census" year="1979">159135</population>
<population measured="census" year="1989">185938</population>
<population measured="census" year="2002">232079</population>
<population measured="census" year="2010">241952</population>
<population year="2013" measured="estimate">251013</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
<city id="cty-Russia-108" country="R" province="prov-Russia-59">
<name>Armavir</name>
<latitude>45</latitude>
<longitude>41.12</longitude>
<elevation>190</elevation>
<population measured="census" year="1979">161539</population>
<population measured="census" year="1989">160983</population>
<population measured="census" year="2002">193964</population>
<population measured="census" year="2010">188832</population>
<located_at watertype="river" river="river-Kuban"/>
</city>
</province>
<province id="prov-Russia-60" country="R" capital="cty-Russia-56">
<name>Stavropolskiy</name>
<localname>Ставропольский</localname>
<area>66500</area>
<population year="1997">2667000</population>
<population measured="census" year="2010">2786281</population>
<population measured="estimate" year="2013">2790785</population>
<population measured="estimate" year="2014">2794508</population>
<city id="cty-Russia-56" country="R" province="prov-Russia-60">
<name>Stavropol</name>
<localname>Ставрополь</localname>
<latitude>45.05</latitude>
<longitude>41.98</longitude>
<elevation>550</elevation>
<population measured="census" year="1979">258233</population>
<population measured="census" year="1989">318298</population>
<population year="2002" measured="census">354867</population>
<population measured="census" year="2010">398539</population>
<population year="2013" measured="estimate">412116</population>
</city>
<city id="cty-Russia-128" country="R" province="prov-Russia-60">
<name>Pyatigorsk</name>
<latitude>44.05</latitude>
<longitude>43.07</longitude>
<elevation>600</elevation>
<population measured="census" year="1979">109901</population>
<population measured="census" year="1989">129499</population>
<population measured="census" year="2002">140559</population>
<population measured="census" year="2010">142511</population>
</city>
<city id="cty-Russia-129" country="R" province="prov-Russia-60">
<name>Nevinnomyssk</name>
<latitude>44.63</latitude>
<longitude>41.93</longitude>
<elevation>320</elevation>
<population measured="census" year="1979">103708</population>
<population measured="census" year="1989">121355</population>
<population measured="census" year="2002">132141</population>
<population measured="census" year="2010">118360</population>
<located_at watertype="river" river="river-Kuban"/>
</city>
<city id="cty-Russia-138" country="R" province="prov-Russia-60">
<name>Kislovodsk</name>
<latitude>43.92</latitude>
<longitude>42.72</longitude>
<elevation>810</elevation>
<population measured="census" year="1979">100932</population>
<population measured="census" year="1989">114414</population>
<population measured="census" year="2002">129788</population>
<population measured="census" year="2010">128553</population>
</city>
<city id="cty-Russia-Jessentuki" country="R" province="prov-Russia-60">
<name>Jessentuki</name>
<name>Yessentuki</name>
<latitude>44.03</latitude>
<longitude>42.85</longitude>
<elevation>610</elevation>
<population measured="census" year="1979">77686</population>
<population measured="census" year="1989">85082</population>
<population measured="census" year="2002">81758</population>
<population measured="census" year="2010">100996</population>
</city>
<city id="cty-Russia-142" country="R" province="prov-Russia-60">
<name>Neftekamsk</name>
<latitude>56.14</latitude>
<longitude>54.47</longitude>
<elevation>100</elevation>
<population measured="census" year="1979">69586</population>
<population measured="census" year="1989">106801</population>
<population measured="census" year="2002">122290</population>
<population measured="census" year="2010">121733</population>
</city>
</province>
<province id="prov-Russia-61" country="R" capital="cty-Russia-51">
<name>Kurganskaya</name>
<localname>Курганская</localname>
<area>71000</area>
<population measured="census" year="2010">910807</population>
<population measured="estimate" year="2013">896611</population>
<population measured="estimate" year="2014">877149</population>
<city id="cty-Russia-51" country="R" province="prov-Russia-61">
<name>Kurgan</name>
<localname>Курган</localname>
<latitude>55.47</latitude>
<longitude>65.35</longitude>
<elevation>75</elevation>
<population measured="census" year="1979">309863</population>
<population measured="census" year="1989">355517</population>
<population year="2002" measured="census">345515</population>
<population measured="census" year="2010">333606</population>
<population year="2013" measured="estimate">325565</population>
<located_at watertype="river" river="river-Tobol"/>
</city>
</province>
<province id="prov-Russia-62" country="R" capital="cty-Russia-6">
<name>Sverdlovskaya</name>
<localname>Свердловская</localname>
<area>194300</area>
<population measured="census" year="2010">4297747</population>
<population measured="estimate" year="2013">4307037</population>
<population measured="estimate" year="2014">4320677</population>
<city id="cty-Russia-6" country="R" province="prov-Russia-62">
<name>Yekaterinburg</name>
<name>Jekaterinburg</name>
<localname>Екатеринбург</localname>
<latitude>56.83</latitude>
<longitude>60.58</longitude>
<elevation>237</elevation>
<population measured="census" year="1979">1211172</population>
<population measured="census" year="1989">1364621</population>
<population year="2002" measured="census">1293537</population>
<population measured="census" year="2010">1349772</population>
<population year="2013" measured="estimate">1396074</population>
</city>
<city id="cty-Russia-46" country="R" province="prov-Russia-62">
<name>Nizhny Tagil</name>
<name>Nižnij Tagil</name>
<localname>Нижний Тагил</localname>
<latitude>57.92</latitude>
<longitude>59.97</longitude>
<elevation>200</elevation>
<population measured="census" year="1979">398146</population>
<population measured="census" year="1989">439521</population>
<population year="2002" measured="census">390498</population>
<population measured="census" year="2010">361811</population>
<population year="2013" measured="estimate">358378</population>
</city>
<city id="cty-Russia-96" country="R" province="prov-Russia-62">
<name>Kamensk-Uralskij</name>
<name>Kamensk Uralsky</name>
<latitude>56.4</latitude>
<longitude>61.93</longitude>
<elevation>160</elevation>
<population measured="census" year="1979">187401</population>
<population measured="census" year="1989">207780</population>
<population measured="census" year="2002">186153</population>
<population measured="census" year="2010">174689</population>
</city>
<city id="cty-Russia-123" country="R" province="prov-Russia-62">
<name>Pervouralsk</name>
<latitude>56.92</latitude>
<longitude>59.93</longitude>
<elevation>283</elevation>
<population measured="census" year="1979">129189</population>
<population measured="census" year="1989">142193</population>
<population measured="census" year="2002">132277</population>
<population measured="census" year="2010">124528</population>
</city>
</province>
<province id="prov-Russia-63" country="R" capital="cty-Russia-10">
<name>Chelyabinskaya</name>
<localname>Челябинская</localname>
<area>87900</area>
<population measured="census" year="2010">3476217</population>
<population measured="estimate" year="2013">3479578</population>
<population measured="estimate" year="2014">3490053</population>
<city id="cty-Russia-10" country="R" province="prov-Russia-63">
<name>Chelyabinsk</name>
<name>Čelabinsk</name>
<localname>Челябинск</localname>
<latitude>55.15</latitude>
<longitude>61.38</longitude>
<elevation>220</elevation>
<population measured="census" year="1979">1029522</population>
<population measured="census" year="1989">1141777</population>
<population measured="census" year="2002">1104648</population>
<population measured="census" year="2010">1130132</population>
<population year="2013" measured="estimate">1156201</population>
</city>
<city id="cty-Russia-44" country="R" province="prov-Russia-63">
<name>Magnitogorsk</name>
<localname>Магнитогорск</localname>
<latitude>53.38</latitude>
<longitude>59.03</longitude>
<elevation>310</elevation>
<population measured="census" year="1979">406074</population>
<population measured="census" year="1989">440321</population>
<population year="2002" measured="census">418545</population>
<population measured="census" year="2010">407775</population>
<population year="2013" measured="estimate">411880</population>
<located_at watertype="river" river="river-Ural"/>
</city>
<city id="cty-Russia-92" country="R" province="prov-Russia-63">
<name>Zlatoust</name>
<latitude>55.17</latitude>
<longitude>59.67</longitude>
<elevation>440</elevation>
<population measured="census" year="1979">197760</population>
<population measured="census" year="1989">207794</population>
<population measured="census" year="2002">194551</population>
<population measured="census" year="2010">174962</population>
</city>
<city id="cty-Russia-105" country="R" province="prov-Russia-63">
<name>Miass</name>
<latitude>55</latitude>
<longitude>60.1</longitude>
<elevation>340</elevation>
<population measured="census" year="1979">150179</population>
<population measured="census" year="1989">167839</population>
<population measured="census" year="2002">158420</population>
<population measured="census" year="2010">151751</population>
</city>
<city id="cty-Russia-Kopejsk" country="R" province="prov-Russia-63">
<name>Kopejsk</name>
<name>Kopeysk</name>
<latitude>55.1</latitude>
<longitude>61.62</longitude>
<elevation>200</elevation>
<population measured="census" year="1979">145905</population>
<population measured="census" year="1989">146180</population>
<population measured="census" year="2002">140876</population>
<population measured="census" year="2010">137601</population>
</city>
</province>
<province id="prov-Russia-64" country="R" capital="cty-Russia-Gorno-Altaysk">
<name>Altay</name>
<localname>Алтай</localname>
<area>92600</area>
<population year="1997">201600</population>
<population measured="census" year="2010">206168</population>
<population measured="estimate" year="2013">210344</population>
<population measured="estimate" year="2014">211645</population>
<city id="cty-Russia-Gorno-Altaysk" country="R" province="prov-Russia-64">
<name>Gorno Altaysk</name>
<latitude>51.95</latitude>
<longitude>85.97</longitude>
<elevation>300</elevation>
<population year="1979" measured="census">40296</population>
<population year="1989" measured="census">46436</population>
<population year="2002" measured="census">53538</population>
<population year="2010" measured="census">56933</population>
</city>
</province>
<province id="prov-Russia-65" country="R" capital="cty-Russia-25">
<name>Altayskiy</name>
<localname>Алтайский</localname>
<area>169100</area>
<population measured="census" year="2010">2419755</population>
<population measured="estimate" year="2013">2398751</population>
<population measured="estimate" year="2014">2390638</population>
<city id="cty-Russia-25" country="R" province="prov-Russia-65">
<name>Barnaul</name>
<localname>Барнаул</localname>
<latitude>53.33</latitude>
<longitude>83.75</longitude>
<elevation>180</elevation>
<population measured="census" year="1979">533263</population>
<population measured="census" year="1989">601811</population>
<population year="2002" measured="census">600749</population>
<population measured="census" year="2010">612401</population>
<population year="2013" measured="estimate">629681</population>
<located_at watertype="river" river="river-Ob"/>
</city>
<city id="cty-Russia-86" country="R" province="prov-Russia-65">
<name>Bijsk</name>
<name>Biysk</name>
<latitude>52.53</latitude>
<longitude>85.22</longitude>
<elevation>180</elevation>
<population measured="census" year="1979">211567</population>
<population measured="census" year="1989">233238</population>
<population measured="census" year="2002">232932</population>
<population measured="census" year="2010">210115</population>
<located_at watertype="river" river="river-Katun"/>
</city>
<city id="cty-Russia-104" country="R" province="prov-Russia-65">
<name>Rubcovsk</name>
<name>Rubtsovsk</name>
<latitude>51.52</latitude>
<longitude>81.2</longitude>
<elevation>210</elevation>
<population measured="census" year="1979">157082</population>
<population measured="census" year="1989">171792</population>
<population measured="census" year="2002">163063</population>
<population measured="census" year="2010">147002</population>
</city>
</province>
<province id="prov-Russia-66" country="R" capital="cty-Russia-33">
<name>Kemerovskaya</name>
<localname>Кемеровская</localname>
<area>95500</area>
<population measured="census" year="2010">2763135</population>
<population measured="estimate" year="2013">2742450</population>
<population measured="estimate" year="2014">2734075</population>
<city id="cty-Russia-33" country="R" province="prov-Russia-66">
<name>Kemerovo</name>
<localname>Кемерово</localname>
<latitude>55.37</latitude>
<longitude>86.07</longitude>
<elevation>140</elevation>
<population measured="census" year="1979">470640</population>
<population measured="census" year="1989">520263</population>
<population measured="census" year="2002">529934</population>
<population measured="census" year="2010">532981</population>
<population year="2013" measured="estimate">540095</population>
<located_at watertype="river" river="river-Tom"/>
</city>
<city id="cty-Russia-27" country="R" province="prov-Russia-66">
<name>Novokuznetsk</name>
<name>Novokuzneck</name>
<localname>Новокузнецк</localname>
<latitude>53.75</latitude>
<longitude>87.12</longitude>
<elevation>200</elevation>
<population measured="census" year="1979">541356</population>
<population measured="census" year="1989">599947</population>
<population measured="census" year="2002">565680</population>
<population measured="census" year="2010">547904</population>
<population year="2013" measured="estimate">549182</population>
<located_at watertype="river" river="river-Tom"/>
</city>
<city id="cty-Russia-77" country="R" province="prov-Russia-66">
<name>Prokopjevsk</name>
<name>Prokopyevsk</name>
<latitude>53.88</latitude>
<longitude>86.72</longitude>
<elevation>280</elevation>
<population measured="census" year="1979">266167</population>
<population measured="census" year="1989">273838</population>
<population measured="census" year="2002">224597</population>
<population measured="census" year="2010">210130</population>
</city>
</province>
<province id="prov-Russia-67" country="R" capital="cty-Russia-5">
<name>Novosibirskaya</name>
<localname>Новосибирская</localname>
<area>178200</area>
<population measured="census" year="2010">2665911</population>
<population measured="estimate" year="2013">2709461</population>
<population measured="estimate" year="2014">2731176</population>
<city id="cty-Russia-5" country="R" province="prov-Russia-67">
<name>Novosibirsk</name>
<localname>Новосибирск</localname>
<latitude>55.02</latitude>
<longitude>82.93</longitude>
<elevation>177</elevation>
<population measured="census" year="1979">1312480</population>
<population measured="census" year="1989">1436516</population>
<population year="2002" measured="census">1425508</population>
<population measured="census" year="2010">1473754</population>
<population year="2013" measured="estimate">1523801</population>
<located_at watertype="river" river="river-Ob"/>
</city>
</province>
<province id="prov-Russia-68" country="R" capital="cty-Russia-8">
<name>Omskaya</name>
<localname>Омская</localname>
<area>139700</area>
<population measured="census" year="2010">1977665</population>
<population measured="estimate" year="2013">1973985</population>
<population measured="estimate" year="2014">1973876</population>
<city id="cty-Russia-8" country="R" province="prov-Russia-68">
<name>Omsk</name>
<localname>Омск</localname>
<latitude>54.98</latitude>
<longitude>73.37</longitude>
<elevation>90</elevation>
<population measured="census" year="1979">1014246</population>
<population measured="census" year="1989">1148418</population>
<population measured="census" year="2002">1156849</population>
<population measured="census" year="2010">1154116</population>
<population year="2013" measured="estimate">1160670</population>
<located_at watertype="river" river="river-Irtysch"/>
</city>
</province>
<province id="prov-Russia-69" country="R" capital="cty-Russia-38">
<name>Tomskaya</name>
<localname>Томская</localname>
<area>316900</area>
<population measured="census" year="2010">1047394</population>
<population measured="estimate" year="2013">1064245</population>
<population measured="estimate" year="2014">1070128</population>
<city id="cty-Russia-38" country="R" province="prov-Russia-69">
<name>Tomsk</name>
<localname>Томск</localname>
<latitude>56.5</latitude>
<longitude>84.97</longitude>
<elevation>110</elevation>
<population measured="census" year="1979">420730</population>
<population measured="census" year="1989">501963</population>
<population year="2002" measured="census">487838</population>
<population measured="census" year="2010">524669</population>
<population year="2013" measured="estimate">547989</population>
<located_at watertype="river" river="river-Tom"/>
</city>
<city id="cty-Russia-150" country="R" province="prov-Russia-69">
<name>Seversk</name>
<latitude>56.6</latitude>
<longitude>84.85</longitude>
<elevation>90</elevation>
<population measured="census" year="2002">109106</population>
<population measured="census" year="2010">108590</population>
<located_at watertype="river" river="river-Tom"/>
</city>
</province>
<province id="prov-Russia-70" country="R" capital="cty-Russia-34">
<name>Tyumenskaya</name>
<localname>Тюменская</localname>
<area>150100</area>
<population year="2002">1325018</population>
<population measured="census" year="2010">1340608</population>
<city id="cty-Russia-34" country="R" province="prov-Russia-70">
<name>Tyumen</name>
<name>Tumen</name>
<localname>Тюмень</localname>
<latitude>57.15</latitude>
<longitude>65.53</longitude>
<elevation>70</elevation>
<population measured="census" year="1979">358992</population>
<population measured="census" year="1989">476869</population>
<population year="2002" measured="census">510719</population>
<population measured="census" year="2010">581907</population>
<population year="2013" measured="estimate">634171</population>
</city>
</province>
<province id="prov-Russia-72" country="R" capital="cty-Russia-49">
<name>Buryatiya</name>
<localname>Бурятия</localname>
<area>351300</area>
<population measured="census" year="2010">972021</population>
<population measured="estimate" year="2013">971810</population>
<population measured="estimate" year="2014">973860</population>
<city id="cty-Russia-49" country="R" province="prov-Russia-72">
<name>Ulan-Ude</name>
<localname>Улан-Удэ</localname>
<latitude>51.83</latitude>
<longitude>107.6</longitude>
<elevation>530</elevation>
<population measured="census" year="1979">300370</population>
<population measured="census" year="1989">352530</population>
<population year="2002" measured="census">359391</population>
<population measured="census" year="2010">404426</population>
<population year="2013" measured="estimate">416079</population>
<located_at watertype="river" river="river-Selenge"/>
</city>
</province>
<province id="prov-Russia-73" country="R" capital="cty-Russia-Kyzyl">
<name>Tyva</name>
<localname>Тыва</localname>
<area>170500</area>
<population year="1997">309700</population>
<population measured="census" year="2010">307930</population>
<population measured="estimate" year="2013">310460</population>
<population measured="estimate" year="2014">311761</population>
<city id="cty-Russia-Kyzyl" country="R" province="prov-Russia-73">
<name>Kyzyl</name>
<latitude>51.72</latitude>
<longitude>94.45</longitude>
<elevation>631</elevation>
<population measured="census" year="1979">66027</population>
<population measured="census" year="1989">84641</population>
<population measured="census" year="2002">104105</population>
<population measured="census" year="2010">109918</population>
<located_at watertype="river" river="river-Jenissej"/>
</city>
</province>
<province id="prov-Russia-74" country="R" capital="cty-Russia-112">
<name>Khakasiya</name>
<localname>Хакасия</localname>
<area>61900</area>
<population measured="census" year="2010">532403</population>
<population measured="estimate" year="2013">533025</population>
<population measured="estimate" year="2014">534079</population>
<city id="cty-Russia-112" country="R" province="prov-Russia-74">
<name>Abakan</name>
<latitude>53.72</latitude>
<longitude>91.47</longitude>
<elevation>245</elevation>
<population measured="census" year="1979">128311</population>
<population measured="census" year="1989">154092</population>
<population measured="census" year="2002">165197</population>
<population measured="census" year="2010">165214</population>
<located_at watertype="river" river="river-Jenissej"/>
</city>
</province>
<province id="prov-Russia-75" country="R" capital="cty-Russia-Krasnoyarsk">
<name>Krasnoyarsk</name>
<localname>Красноярский</localname>
<area>2339700</area>
<population measured="census" year="2010">2828187</population>
<population measured="estimate" year="2013">2846475</population>
<population measured="estimate" year="2014">2852810</population>
<city id="cty-Russia-Krasnoyarsk" country="R" province="prov-Russia-75">
<name>Krasnoyarsk</name>
<name>Krasnojarsk</name>
<localname>Красноярск</localname>
<latitude>56.02</latitude>
<longitude>93.07</longitude>
<elevation>259</elevation>
<population measured="census" year="1979">796305</population>
<population measured="census" year="1989">912629</population>
<population year="2002" measured="census">909341</population>
<population measured="census" year="2010">973826</population>
<population year="2013" measured="estimate">1016385</population>
<located_at watertype="river" river="river-Jenissej"/>
</city>
<city id="cty-Russia-114" country="R" province="prov-Russia-75">
<name>Norilsk</name>
<latitude>69.33</latitude>
<longitude>88.22</longitude>
<elevation>90</elevation>
<population measured="census" year="1979">180358</population>
<population measured="census" year="1989">174673</population>
<population measured="census" year="2002">134832</population>
<population measured="census" year="2010">175365</population>
</city>
<city id="cty-Russia-135" country="R" province="prov-Russia-75">
<name>Ačinsk</name>
<name>Achinsk</name>
<latitude>56.25</latitude>
<longitude>90.5</longitude>
<elevation>220</elevation>
<population measured="census" year="1979">116854</population>
<population measured="census" year="1989">121572</population>
<population measured="census" year="2002">118744</population>
<population measured="census" year="2010">109155</population>
</city>
</province>
<province id="prov-Russia-77" country="R" capital="cty-Russia-26">
<name>Irkutskaya</name>
<localname>Иркутская</localname>
<area>767900</area>
<population measured="census" year="2010">2428750</population>
<population measured="estimate" year="2013">2422026</population>
<population measured="estimate" year="2014">2418348</population>
<city id="cty-Russia-26" country="R" province="prov-Russia-77">
<name>Irkutsk</name>
<localname>Иркутск</localname>
<latitude>52.31</latitude>
<longitude>104.3</longitude>
<elevation>444</elevation>
<population measured="census" year="1979">549787</population>
<population measured="census" year="1989">626135</population>
<population year="2002" measured="census">593604</population>
<population measured="census" year="2010">587891</population>
<population year="2013" measured="estimate">606137</population>
<located_at watertype="river" river="river-Angara"/>
</city>
<city id="cty-Russia-73" country="R" province="prov-Russia-77">
<name>Angarsk</name>
<latitude>52.55</latitude>
<longitude>103.9</longitude>
<elevation>430</elevation>
<population measured="census" year="1979">238802</population>
<population measured="census" year="1989">265835</population>
<population measured="census" year="2002">251176</population>
<population measured="census" year="2010">233567</population>
<located_at watertype="river" river="river-Angara"/>
</city>
<city id="cty-Russia-76" country="R" province="prov-Russia-77">
<name>Bratsk</name>
<latitude>56.12</latitude>
<longitude>101.6</longitude>
<elevation>450</elevation>
<population measured="census" year="1979">213725</population>
<population measured="census" year="1989">255705</population>
<population measured="census" year="2002">259335</population>
<population measured="census" year="2010">246319</population>
<located_at watertype="river" river="river-Angara"/>
</city>
</province>
<province id="prov-Russia-79" country="R" capital="cty-Russia-60">
<name>Zabaykalskiy</name>
<localname>Забайкальский</localname>
<area>431500</area>
<population measured="census" year="2010">1107107</population>
<population measured="estimate" year="2013">1095169</population>
<population measured="estimate" year="2014">1090344</population>
<city id="cty-Russia-60" country="R" province="prov-Russia-79">
<name>Chita</name>
<name>Čita</name>
<localname>Чита</localname>
<latitude>52.05</latitude>
<longitude>113.47</longitude>
<elevation>650</elevation>
<population measured="census" year="1979">302577</population>
<population measured="census" year="1989">365754</population>
<population year="2002" measured="census">316643</population>
<population measured="census" year="2010">324444</population>
<population year="2013" measured="estimate">331346</population>
<located_at watertype="river" river="river-Ingoda"/>
</city>
</province>
<province id="prov-Russia-81" country="R" capital="cty-Russia-97">
<name>Sakha</name>
<name>Jakutiya</name>
<localname>Саха (Якутия)</localname>
<area>3083523</area>
<population measured="census" year="2010">958528</population>
<population measured="estimate" year="2013">955580</population>
<population measured="estimate" year="2014">954803</population>
<city id="cty-Russia-97" country="R" province="prov-Russia-81">
<name>Yakutsk</name>
<name>Jakutsk</name>
<localname>Якутск</localname>
<latitude>62.03</latitude>
<longitude>129.73</longitude>
<elevation>120</elevation>
<population measured="census" year="1979">152368</population>
<population measured="census" year="1989">186626</population>
<population measured="census" year="2002">210642</population>
<population measured="census" year="2010">269601</population>
<population year="2013" measured="estimate">286456</population>
<located_at watertype="river" river="river-Lena"/>
</city>
</province>
<province id="prov-Russia-82" country="R" capital="cty-Russia-Birobidzhan">
<name>Jewish Autonomous Oblast</name>
<localname>Еврейская</localname>
<area>36266</area>
<population measured="census" year="2010">176558</population>
<population measured="estimate" year="2013">172671</population>
<population measured="estimate" year="2014">170377</population>
<city id="cty-Russia-Birobidzhan" country="R" province="prov-Russia-82">
<name>Birobidzhan</name>
<latitude>48.8</latitude>
<longitude>132.93</longitude>
<elevation>80</elevation>
<population year="1979" measured="census">68630</population>
<population year="1989" measured="census">83667</population>
<population year="2002" measured="census">77250</population>
<population year="2010" measured="census">75413</population>
</city>
</province>
<province id="prov-Russia-83" country="R" capital="cty-Russia-Anadyr">
<name>Chukotka</name>
<localname>Чукотский</localname>
<area>737700</area>
<population measured="census" year="2010">50526</population>
<population measured="estimate" year="2013">50780</population>
<population measured="estimate" year="2014">50555</population>
<city id="cty-Russia-Anadyr" country="R" province="prov-Russia-83">
<name>Anadyr</name>
<latitude>64.73</latitude>
<longitude>177.52</longitude>
<elevation>20</elevation>
<population year="1979" measured="census">12241</population>
<population year="1989" measured="census">17094</population>
<population year="2002" measured="census">11038</population>
<population year="2010" measured="census">13045</population>
<located_at watertype="sea" sea="sea-BeringSea"/>
</city>
</province>
<province id="prov-Russia-84" country="R" capital="cty-Russia-Vladivostok">
<name>Primorskiy</name>
<localname>Приморский</localname>
<area>165900</area>
<population measured="census" year="2010">1956497</population>
<population measured="estimate" year="2013">1947263</population>
<population measured="estimate" year="2014">1938516</population>
<city id="cty-Russia-Vladivostok" country="R" province="prov-Russia-84">
<name>Vladivostok</name>
<localname>Владивосток</localname>
<latitude>43.13</latitude>
<longitude>131.9</longitude>
<elevation>40</elevation>
<population measured="census" year="1979">549789</population>
<population measured="census" year="1989">633838</population>
<population year="2002" measured="census">594701</population>
<population measured="census" year="2010">592034</population>
<population year="2013" measured="estimate">600378</population>
<located_at watertype="sea" sea="sea-JapanSea"/>
</city>
<city id="cty-Russia-109" country="R" province="prov-Russia-84">
<name>Nachodka</name>
<name>Nakhodka</name>
<latitude>42.82</latitude>
<longitude>132.87</longitude>
<elevation>8</elevation>
<population measured="census" year="1979">133201</population>
<population measured="census" year="1989">160056</population>
<population measured="census" year="2002">178813</population>
<population measured="census" year="2010">159719</population>
<located_at watertype="sea" sea="sea-JapanSea"/>
</city>
<city id="cty-Russia-111" country="R" province="prov-Russia-84">
<name>Ussurijsk</name>
<name>Ussuriysk</name>
<latitude>43.8</latitude>
<longitude>131.97</longitude>
<elevation>20</elevation>
<population measured="census" year="1979">146782</population>
<population measured="census" year="1989">158016</population>
<population measured="census" year="2002">157759</population>
<population measured="census" year="2010">158004</population>
</city>
</province>
<province id="prov-Russia-85" country="R" capital="cty-Russia-24">
<name>Khabarovskiy</name>
<localname>Хабаровский</localname>
<area>752600</area>
<population measured="census" year="2010">1343869</population>
<population measured="estimate" year="2013">1342083</population>
<population measured="estimate" year="2014">1339912</population>
<city id="cty-Russia-24" country="R" province="prov-Russia-85">
<name>Khabarovsk</name>
<name>Chabarovsk</name>
<localname>Хабаровск</localname>
<latitude>48.48</latitude>
<longitude>135.07</longitude>
<elevation>72</elevation>
<population measured="census" year="1979">527848</population>
<population measured="census" year="1989">600623</population>
<population year="2002" measured="census">583072</population>
<population measured="census" year="2010">577441</population>
<population year="2013" measured="estimate">593636</population>
<located_at watertype="river" river="river-Amur"/>
</city>
<city id="cty-Russia-65" country="R" province="prov-Russia-85">
<name>Komsomolsk-na-Amure</name>
<name>Komsomolsk on Amur</name>
<localname>Комсомольск-на-Амуре</localname>
<latitude>50.57</latitude>
<longitude>137</longitude>
<elevation>30</elevation>
<population measured="census" year="1979">263950</population>
<population measured="census" year="1989">315325</population>
<population year="2002" measured="census">281035</population>
<population year="2010" measured="census">263906</population>
<population year="2013" measured="estimate">257891</population>
<located_at watertype="river" river="river-Amur"/>
</city>
</province>
<province id="prov-Russia-86" country="R" capital="cty-Russia-87">
<name>Amurskaya</name>
<localname>Амурская</localname>
<area>363700</area>
<population measured="census" year="2010">830103</population>
<population measured="estimate" year="2013">816910</population>
<population measured="estimate" year="2014">811274</population>
<city id="cty-Russia-87" country="R" province="prov-Russia-86">
<name>Blagoveščensk</name>
<name>Blagoveshchensk</name>
<latitude>50.25</latitude>
<longitude>127.53</longitude>
<elevation>130</elevation>
<population measured="census" year="1979">171997</population>
<population measured="census" year="1989">205553</population>
<population measured="census" year="2002">219221</population>
<population measured="census" year="2010">214390</population>
<located_at watertype="river" river="river-Amur"/>
</city>
</province>
<province id="prov-Russia-87" country="R" capital="cty-Russia-89">
<name>Kamchatka</name>
<localname>Камчатский</localname>
<area>472300</area>
<population measured="census" year="2010">322079</population>
<population measured="estimate" year="2013">320549</population>
<population measured="estimate" year="2014">319864</population>
<city id="cty-Russia-89" country="R" province="prov-Russia-87">
<name>Petropavlovsk-Kamčatskij</name>
<name>Petropavlovsk Kamchatsky</name>
<latitude>53.02</latitude>
<longitude>158.65</longitude>
<elevation>150</elevation>
<population measured="census" year="1979">214977</population>
<population measured="census" year="1989">268747</population>
<population measured="census" year="2002">198028</population>
<population measured="census" year="2010">179780</population>
<located_at watertype="sea" sea="sea-Pacific"/>
</city>
</province>
<province id="prov-Russia-89" country="R" capital="cty-Russia-132">
<name>Magadanskaya</name>
<localname>Магаданская</localname>
<area>461400</area>
<population measured="census" year="2010">156996</population>
<population measured="estimate" year="2013">152358</population>
<population measured="estimate" year="2014">150312</population>
<city id="cty-Russia-132" country="R" province="prov-Russia-89">
<name>Magadan</name>
<latitude>59.57</latitude>
<longitude>150.8</longitude>
<elevation>70</elevation>
<population year="1979" measured="census">121250</population>
<population year="1989" measured="census">151652</population>
<population year="2002" measured="census">99399</population>
<population year="2010" measured="census">95982</population>
<located_at watertype="sea" sea="sea-OchotskSea"/>
</city>
<city id="cty-Russia-Okhotsk" country="R" province="prov-Russia-89">
<name>Okhotsk</name>
<latitude>59.37</latitude>
<longitude>143.26</longitude>
<elevation>10</elevation>
<population year="1979" measured="census">9193</population>
<population year="1989" measured="census">9298</population>
<population year="2002" measured="census">5738</population>
<population year="2010" measured="census">4215</population>
<located_at watertype="sea" sea="sea-OchotskSea"/>
</city>
</province>
<province id="prov-Russia-90" country="R" capital="cty-Russia-113">
<name>Sakhalin</name>
<localname>Сахалинская</localname>
<area>87100</area>
<population measured="census" year="2010">497973</population>
<population measured="estimate" year="2013">493302</population>
<population measured="estimate" year="2014">491027</population>
<city id="cty-Russia-113" country="R" province="prov-Russia-90">
<name>Južno-Sachalinsk</name>
<name>Yuzhno Sakhalinsk</name>
<latitude>46.97</latitude>
<longitude>142.73</longitude>
<elevation>40</elevation>
<population measured="census" year="1979">139861</population>
<population measured="census" year="1989">159299</population>
<population measured="census" year="2002">175085</population>
<population measured="census" year="2010">181728</population>
<located_on island="island-Sachalin"/>
</city>
</province>
<province id="prov-Russia-91" country="R" capital="cty-Russia-KhantyMansijsk">
<name>Khanty Mansi ao</name>
<localname>Ханты-Мансийский автономный округ — Югра</localname>
<area>534800</area>
<population measured="census" year="2010">1532243</population>
<city id="cty-Russia-KhantyMansijsk"
country="R"
province="prov-Russia-91">
<name>Khanty Mansijsk</name>
<name>Khanty Mansiysk</name>
<latitude>61</latitude>
<longitude>69</longitude>
<elevation>50</elevation>
<population year="1979" measured="census">28266</population>
<population year="1989" measured="census">34462</population>
<population year="2002" measured="census">53953</population>
<population year="2010" measured="census">80151</population>
<located_at watertype="river" river="river-Ob"/>
</city>
<city id="cty-Russia-74" country="R" province="prov-Russia-91">
<name>Surgut</name>
<localname>Сургут</localname>
<latitude>61.25</latitude>
<longitude>73.43</longitude>
<elevation>40</elevation>
<population measured="census" year="1979">107343</population>
<population measured="census" year="1989">247823</population>
<population year="2002" measured="census">285027</population>
<population measured="census" year="2010">306675</population>
<population year="2013" measured="estimate">325511</population>
<located_at watertype="river" river="river-Ob"/>
</city>
<city id="cty-Russia-82" country="R" province="prov-Russia-91">
<name>Nizhnevartovsk</name>
<name>Nižnevartovsk</name>
<localname>Нижневартовск</localname>
<latitude>60.95</latitude>
<longitude>76.55</longitude>
<elevation>45</elevation>
<population measured="census" year="1979">108740</population>
<population measured="census" year="1989">241457</population>
<population measured="census" year="2002">239044</population>
<population measured="census" year="2010">251694</population>
<population year="2013" measured="estimate">263228</population>
<located_at watertype="river" river="river-Ob"/>
</city>
<city id="cty-Russia-Neftejugansk" country="R" province="prov-Russia-91">
<name>Neftejugansk</name>
<name>Nefteyugansk</name>
<latitude>61.08</latitude>
<longitude>72.7</longitude>
<elevation>40</elevation>
<population measured="census" year="1979">52393</population>
<population measured="census" year="1989">93930</population>
<population measured="census" year="2002">107830</population>
<population measured="census" year="2010">122855</population>
<located_at watertype="river" river="river-Ob"/>
</city>
</province>
<province id="prov-Russia-92" country="R" capital="cty-Russia-Salekhard">
<name>Yamalo Nenets ao</name>
<localname>Ямало-Ненецкий автономный округ</localname>
<area>750300</area>
<population measured="census" year="2010">522904</population>
<city id="cty-Russia-Salekhard" country="R" province="prov-Russia-92">
<name>Salekhard</name>
<latitude>66.53</latitude>
<longitude>66.6</longitude>
<elevation>15</elevation>
<population year="1979" measured="census">24935</population>
<population year="1989" measured="census">32334</population>
<population year="2002" measured="census">36827</population>
<population year="2010" measured="census">42544</population>
<located_at watertype="river" river="river-Ob"/>
</city>
<city id="cty-Russia-Nojabrsk" country="R" province="prov-Russia-92">
<name>Nojabrsk</name>
<name>Noyabrsk</name>
<latitude>63.2</latitude>
<longitude>75.45</longitude>
<elevation>115</elevation>
<population measured="census" year="2002">102949</population>
<population measured="census" year="2010">110620</population>
</city>
<city id="cty-Russia-NovyUrengoy" country="R" province="prov-Russia-92">
<name>Novyj Urengoj</name>
<name>Novy Urengoy</name>
<latitude>66.08</latitude>
<longitude>76.68</longitude>
<elevation>40</elevation>
<population measured="census" year="2002">104269</population>
<population measured="census" year="2010">104107</population>
</city>
</province>
</country>
<country car_code="B"
area="30510"
capital="cty-Belgium-Brussels"
memberships="org-AfDB org-ADB org-AG org-BIS org-Benelux org-CD org-SELEC org-CE org-EMU org-EAPC org-EBRD org-ECB org-EIB org-CERN org-ESA org-EU org-EITI org-FATF org-FAO org-G-10 org-G-9 org-IADB org-IGAD org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-MONUSCO org-UNRWA org-UNTSO org-UPU org-WCO org-WHO org-WIPO org-WMO org-WTO org-ZC">
<name>Belgium</name>
<localname>Koninkrijk België (het)</localname>
<population measured="census" year="1947">8879814</population>
<population measured="census" year="1961">9189741</population>
<population measured="census" year="1970">9650944</population>
<population measured="census" year="1981">9963374</population>
<population year="1990" measured="admin.">9947782</population>
<population measured="census" year="1991">9978681</population>
<population year="2000" measured="admin.">10239085</population>
<population measured="census" year="2001">10296350</population>
<population year="2013" measured="admin.">11099554</population>
<population_growth>0.05</population_growth>
<infant_mortality>4.18</infant_mortality>
<gdp_total>507400</gdp_total>
<gdp_agri>0.8</gdp_agri>
<gdp_ind>22.6</gdp_ind>
<gdp_serv>76.6</gdp_serv>
<inflation>1.3</inflation>
<unemployment>8.8</unemployment>
<indep_date from="NL">1830-10-04</indep_date>
<government>federal parliamentary democracy under a constitutional monarchy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="58">Fleming</ethnicgroup>
<ethnicgroup percentage="31">Walloon</ethnicgroup>
<religion percentage="75">Roman Catholic</religion>
<religion percentage="1">Protestant</religion>
<religion percentage="8">Muslim</religion>
<language percentage="32">French</language>
<language percentage="1">German</language>
<language percentage="56">Dutch</language>
<border country="F" length="620"/>
<border country="D" length="167"/>
<border country="L" length="148"/>
<border country="NL" length="450"/>
<province id="prov-Belgium-1" country="B" capital="cty-Belgium-Brussels">
<name>Bruxelles</name>
<area>161</area>
<population measured="admin." year="1990">959318</population>
<population measured="admin." year="2000">1114042</population>
<population measured="admin." year="2013">1154635</population>
<city id="cty-Belgium-Brussels" country="B" province="prov-Belgium-1">
<name>Bruxelles</name>
<name>Brussel</name>
<name>Brussels</name>
<latitude>50.85</latitude>
<longitude>4.35</longitude>
<elevation>13</elevation>
<population year="1990" measured="admin.">136706</population>
<population year="1995">951580</population>
<population year="2000" measured="admin.">133859</population>
<population year="2010" measured="admin.">164233</population>
<population year="2013" measured="admin.">168576</population>
</city>
<city id="cty-Belgium-Schaarbeek" country="B" province="prov-Belgium-1">
<name>Schaerbeek</name>
<name>Schaarbeek</name>
<latitude>50.87</latitude>
<longitude>4.38</longitude>
<population year="1990" measured="admin.">104768</population>
<population year="2000" measured="admin.">105692</population>
<population year="2010" measured="admin.">125672</population>
<population year="2013" measured="admin.">130587</population>
</city>
<city id="cty-Belgium-Molenbeek" country="B" province="prov-Belgium-1">
<name>Molenbeek-Saint-Jean</name>
<name>Sint-Jans-Molenbeek</name>
<latitude>50.85</latitude>
<longitude>4.33</longitude>
<population year="1990" measured="admin.">68904</population>
<population year="2000" measured="admin.">71219</population>
<population year="2010" measured="admin.">91407</population>
<population year="2013" measured="admin.">94653</population>
</city>
<city id="cty-Belgium-Anderlecht" country="B" province="prov-Belgium-1">
<name>Anderlecht</name>
<latitude>50.83</latitude>
<longitude>4.33</longitude>
<population year="1990" measured="admin.">89231</population>
<population year="2000" measured="admin.">87812</population>
<population year="2010" measured="admin.">106985</population>
<population year="2013" measured="admin.">113462</population>
</city>
</province>
<province id="prov-Belgium-2" country="B" capital="cty-Belgium-3-0">
<name>Antwerpen</name>
<area>2867</area>
<population measured="admin." year="1990">1597310</population>
<population measured="admin." year="2000">1643972</population>
<population measured="admin." year="2013">1793377</population>
<city id="cty-Belgium-3-0" country="B" province="prov-Belgium-2">
<name>Antwerpen</name>
<name>Anvers</name>
<name>Antwerp</name>
<latitude>51.22</latitude>
<longitude>4.4</longitude>
<population year="1990" measured="admin.">470349</population>
<population year="1995">459072</population>
<population year="2000" measured="admin.">446525</population>
<population year="2010" measured="admin.">493643</population>
<population year="2013" measured="admin.">507911</population>
<located_at watertype="river" river="river-Schelde"/>
</city>
</province>
<province id="prov-Belgium-4" country="B" capital="cty-Belgium-4-0">
<name>Oost-Vlaanderen</name>
<area>2982</area>
<population measured="admin." year="1990">1331608</population>
<population measured="admin." year="2000">1361623</population>
<population measured="admin." year="2013">1460944</population>
<city id="cty-Belgium-4-0" country="B" province="prov-Belgium-4">
<name>Gent</name>
<name>Gand</name>
<name>Ghent</name>
<latitude>51.05</latitude>
<longitude>3.73</longitude>
<population year="1990" measured="admin.">230543</population>
<population year="1995">227483</population>
<population year="2000" measured="admin.">224180</population>
<population year="2010" measured="admin.">245876</population>
<population year="2013" measured="admin.">248813</population>
<located_at watertype="river" river="river-Schelde"/>
</city>
</province>
<province id="prov-Belgium-5" country="B" capital="cty-Belgium-Mons">
<name>Hainaut</name>
<area>3785</area>
<population measured="admin." year="1990">1279467</population>
<population measured="admin." year="2000">1315088</population>
<population measured="admin." year="2013">1328760</population>
<city id="cty-Belgium-5-0" country="B" province="prov-Belgium-5">
<name>Charleroi</name>
<latitude>50.4</latitude>
<longitude>4.43</longitude>
<population year="1990" measured="admin.">206779</population>
<population year="1995">206491</population>
<population year="2000" measured="admin.">200827</population>
<population year="2010" measured="admin.">203495</population>
<population year="2013" measured="admin.">203753</population>
</city>
<city id="cty-Belgium-Mons" country="B" province="prov-Belgium-5">
<name>Mons</name>
<name>Bergen</name>
<latitude>50.45</latitude>
<longitude>3.95</longitude>
<population year="1987">90720</population>
<population year="1990" measured="admin.">91867</population>
<population year="2000" measured="admin.">90935</population>
<population year="2010" measured="admin.">92046</population>
<population year="2013" measured="admin.">93941</population>
</city>
</province>
<province id="prov-Belgium-6" country="B" capital="cty-Belgium-6-0">
<name>Liège</name>
<name>Luik</name>
<area>3862</area>
<population measured="admin." year="1990">1019442</population>
<population measured="admin." year="2000">1076038</population>
<population measured="admin." year="2013">1087729</population>
<city id="cty-Belgium-6-0" country="B" province="prov-Belgium-6">
<name>Liège</name>
<name>Luik</name>
<latitude>50.63</latitude>
<longitude>5.57</longitude>
<population year="1990" measured="admin.">196825</population>
<population year="1995">192393</population>
<population year="2000" measured="admin.">185639</population>
<population year="2010" measured="admin.">194594</population>
<population year="2013" measured="admin.">195931</population>
<located_at watertype="river" river="river-Maas"/>
</city>
</province>
<province id="prov-Belgium-7" country="B" capital="cty-Belgium-Hasselt">
<name>Limburg</name>
<area>2422</area>
<population measured="admin." year="1990">745034</population>
<population measured="admin." year="2000">791178</population>
<population measured="admin." year="2013">853239</population>
<city id="cty-Belgium-Hasselt" country="B" province="prov-Belgium-7">
<name>Hasselt</name>
<latitude>50.93</latitude>
<longitude>5.34</longitude>
<population year="1987">65348</population>
<population year="2013" measured="admin.">75579</population>
</city>
</province>
<province id="prov-Belgium-8" country="B" capital="cty-Belgium-Arlon">
<name>Luxembourg</name>
<area>4439</area>
<population measured="admin." year="1990">246820</population>
<population measured="admin." year="2000">271776</population>
<population measured="admin." year="2013">275594</population>
<city id="cty-Belgium-Arlon" country="B" province="prov-Belgium-8">
<name>Arlon</name>
<latitude>49.68</latitude>
<longitude>5.82</longitude>
<population year="1990" measured="admin.">23325</population>
<population year="1995">24172</population>
<population year="2000" measured="admin.">24791</population>
<population year="2010" measured="admin.">27763</population>
<population year="2013" measured="admin.">28759</population>
</city>
</province>
<province id="prov-Belgium-9" country="B" capital="cty-Belgium-8-0">
<name>Namur</name>
<area>3666</area>
<population measured="admin." year="1990">443903</population>
<population measured="admin." year="2000">476543</population>
<population measured="admin." year="2013">482451</population>
<city id="cty-Belgium-8-0" country="B" province="prov-Belgium-9">
<name>Namur</name>
<name>Namen</name>
<latitude>50.47</latitude>
<longitude>4.87</longitude>
<population year="1990" measured="admin.">103466</population>
<population year="1995">105014</population>
<population year="2000" measured="admin.">105419</population>
<population year="2010" measured="admin.">109464</population>
<population year="2013" measured="admin.">110500</population>
<located_at watertype="river" river="river-Maas"/>
</city>
</province>
<province id="prov-Belgium-10" country="B" capital="cty-Belgium-7-0">
<name>West-Vlaanderen</name>
<area>3144</area>
<population measured="admin." year="1990">1102501</population>
<population measured="admin." year="2000">1128774</population>
<population measured="admin." year="2013">1173019</population>
<city id="cty-Belgium-7-0" country="B" province="prov-Belgium-10">
<name>Brugge</name>
<name>Bruges</name>
<latitude>51.22</latitude>
<longitude>3.23</longitude>
<elevation>2</elevation>
<population year="1990" measured="admin.">117460</population>
<population year="1995">116273</population>
<population year="2000" measured="admin.">116246</population>
<population year="2010" measured="admin.">116978</population>
<population year="2013" measured="admin.">117577</population>
</city>
<city id="cty-Belgium-Ostende" country="B" province="prov-Belgium-10">
<name>Ostende</name>
<name>Oostende</name>
<latitude>51.22</latitude>
<longitude>2.9</longitude>
<elevation>2</elevation>
<population year="1984" measured="est.">69039</population>
<population year="1990" measured="est.">68527</population>
<population year="2000" measured="admin.">67279</population>
<population year="2010" measured="admin.">69064</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
</city>
</province>
<province id="prov-Belgium-11" country="B" capital="cty-Belgium-Wavre">
<name>Brabant Wallon</name>
<area>1090</area>
<population measured="admin." year="1990">349884</population>
<population measured="admin." year="2000">381193</population>
<population measured="admin." year="2013">388526</population>
<city id="cty-Belgium-Wavre" country="B" province="prov-Belgium-11">
<name>Wavre</name>
<latitude>50.72</latitude>
<longitude>4.6</longitude>
</city>
</province>
<province id="prov-Belgium-12" country="B" capital="cty-Belgium-Leuven">
<name>Vlaams-Brabant</name>
<area>2106</area>
<population measured="admin." year="1990">963283</population>
<population measured="admin." year="2000">1014704</population>
<population measured="admin." year="2013">1101280</population>
<city id="cty-Belgium-Leuven" country="B" province="prov-Belgium-12">
<name>Leuven</name>
<name>Louvain</name>
<latitude>50.88</latitude>
<longitude>4.7</longitude>
<population year="1990" measured="admin.">85193</population>
<population year="2000" measured="admin.">88014</population>
<population year="2010" measured="admin.">96474</population>
<population year="2013" measured="admin.">97692</population>
</city>
</province>
</country>
<country car_code="L"
area="2586"
capital="cty-Luxembourg-Luxembourg"
memberships="org-ADB org-AG org-BIS org-Benelux org-CD org-CE org-EMU org-EAPC org-EBRD org-ECB org-EIB org-ESA org-EU org-FATF org-FAO org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-ILO org-IMO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNRWA org-UNSC org-UPU org-WCO org-WHO org-WIPO org-WMO org-WTO org-ZC">
<name>Luxembourg</name>
<localname>le Grand-Duché de Luxembourg </localname>
<population measured="census" year="1947">290992</population>
<population measured="census" year="1960">314889</population>
<population measured="census" year="1966">334790</population>
<population measured="census" year="1970">339841</population>
<population measured="census" year="1981">364602</population>
<population measured="census" year="1991">384634</population>
<population year="2000" measured="admin.">435479</population>
<population measured="census" year="2001">439539</population>
<population year="2006" measured="admin.">469086</population>
<population year="2012" measured="admin.">524853</population>
<population_growth>1.12</population_growth>
<infant_mortality>4.28</infant_mortality>
<gdp_total>60540</gdp_total>
<gdp_agri>0.3</gdp_agri>
<gdp_ind>13.3</gdp_ind>
<gdp_serv>86.4</gdp_serv>
<inflation>1.8</inflation>
<unemployment>4.9</unemployment>
<indep_date from="NL">1890-11-24</indep_date>
<government>constitutional monarchy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="63.1">Luxembourgish</ethnicgroup>
<ethnicgroup percentage="13.3">Portuguese</ethnicgroup>
<ethnicgroup percentage="4.5">French</ethnicgroup>
<ethnicgroup percentage="4.3">Italian</ethnicgroup>
<ethnicgroup percentage="2.3">German</ethnicgroup>
<religion percentage="68.7">Roman Catholic</religion>
<religion percentage="3.7">Protestant</religion>
<religion percentage="2">Muslim</religion>
<religion percentage="0.6">Jewish</religion>
<language percentage="77">Luxembourgish</language>
<language percentage="8">Portuguese</language>
<language percentage="6">French</language>
<language percentage="4">German</language>
<language percentage="1">English</language>
<border country="F" length="73"/>
<border country="D" length="138"/>
<border country="B" length="148"/>
<city id="cty-Luxembourg-Luxembourg" country="L">
<name>Luxembourg</name>
<latitude>49.61</latitude>
<longitude>6.13</longitude>
<elevation>230</elevation>
<population year="1987">76600</population>
<population year="2000" measured="admin.">80670</population>
<population year="2006" measured="admin.">82509</population>
<population year="2012" measured="admin.">99852</population>
<located_at watertype="river" river="river-Alzette"/>
</city>
</country>
<country car_code="NL"
area="37330"
capital="cty-Netherlands-Amsterdam"
memberships="org-AfDB org-ADB org-AG org-BIS org-Benelux org-CD org-SELEC org-CE org-CBSS org-EMU org-EAPC org-EBRD org-ECB org-EIB org-CERN org-ESA org-EU org-EITI org-FATF org-FAO org-G-10 org-IADB org-IGAD org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-ITUC org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNDOF org-UNESCO org-UNHCR org-UNIDO org-UNMISS org-UNRWA org-UNTSO org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Netherlands</name>
<localname>Koninkrijk der Nederlanden (het)</localname>
<population measured="census" year="1795">2078487</population>
<population measured="census" year="1815">2202191</population>
<population measured="census" year="1830">
2613487
</population>
<population measured="census" year="1840">2860559</population>
<population measured="census" year="1849">3056879</population>
<population measured="census" year="1859">3309128</population>
<population measured="census" year="1869">3579529</population>
<population measured="census" year="1879">4012693</population>
<population measured="census" year="1889">4511415</population>
<population measured="census" year="1899">5104137</population>
<population measured="census" year="1909">5858175</population>
<population measured="census" year="1920">6865314</population>
<population measured="census" year="1930">7935565</population>
<population measured="census" year="1947">9625499</population>
<population measured="census" year="1960">11461964</population>
<population measured="census" year="1971">13060115</population>
<population year="1997">15568034</population>
<population measured="census" year="2002">16105285</population>
<population year="2004" measured="admin.">16208562</population>
<population year="2010" measured="admin.">16577516</population>
<population year="2014" measured="estimate">16843181</population>
<population_growth>0.42</population_growth>
<infant_mortality>3.66</infant_mortality>
<gdp_total>722300</gdp_total>
<gdp_agri>2.6</gdp_agri>
<gdp_ind>25.4</gdp_ind>
<gdp_serv>72.1</gdp_serv>
<inflation>2.5</inflation>
<unemployment>8.3</unemployment>
<indep_date from="E">1579-01-01</indep_date>
<government>constitutional monarchy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="80.7">Dutch</ethnicgroup>
<ethnicgroup percentage="2.4">Indonesian</ethnicgroup>
<ethnicgroup percentage="2.2">Turkish</ethnicgroup>
<ethnicgroup percentage="2">Moroccan</ethnicgroup>
<ethnicgroup percentage="2">Surinamese</ethnicgroup>
<ethnicgroup percentage="0.8">Caribbean</ethnicgroup>
<religion percentage="23.3">Roman Catholic</religion>
<religion percentage="15">Protestant</religion>
<religion percentage="5.7">Muslim</religion>
<religion percentage="1.3">Hindu</religion>
<religion percentage="1">Buddhist</religion>
<language percentage="100">Dutch</language>
<border country="D" length="577"/>
<border country="B" length="450"/>
<province id="prov-Netherlands-2" country="NL" capital="cty-Netherlands-14">
<name>Groningen</name>
<area>2959</area>
<population year="1997">557995</population>
<population measured="admin." year="2004">574384</population>
<population measured="admin." year="2010">577014</population>
<population measured="estimate" year="2014">582156</population>
<city id="cty-Netherlands-14" country="NL" province="prov-Netherlands-2">
<name>Groningen</name>
<latitude>53.22</latitude>
<longitude>6.57</longitude>
<elevation>7</elevation>
<population year="1995">210708</population>
<population year="2004" measured="admin.">179185</population>
<population year="2010" measured="admin.">187622</population>
<population year="2014" measured="estimate">198023</population>
</city>
</province>
<province id="prov-Netherlands-3"
country="NL"
capital="cty-Netherlands-Leeuwarden">
<name>Friesland</name>
<area>5748</area>
<population year="1997">609579</population>
<population measured="admin." year="2004">642066</population>
<population measured="admin." year="2010">646333</population>
<population measured="estimate" year="2014">646452</population>
<city id="cty-Netherlands-Leeuwarden"
country="NL"
province="prov-Netherlands-3">
<name>Leeuwarden</name>
<latitude>53.2</latitude>
<longitude>5.78</longitude>
<elevation>3</elevation>
<population year="2004" measured="admin.">91354</population>
<population year="2010" measured="admin.">94131</population>
<population year="2014" measured="estimate">108145</population>
</city>
</province>
<province id="prov-Netherlands-4"
country="NL"
capital="cty-Netherlands-Assen">
<name>Drenthe</name>
<area>2680</area>
<population year="1997">454864</population>
<population measured="admin." year="2004">482415</population>
<population measured="admin." year="2010">491019</population>
<population measured="estimate" year="2014">488876</population>
<city id="cty-Netherlands-Assen"
country="NL"
province="prov-Netherlands-4">
<name>Assen</name>
<latitude>53</latitude>
<longitude>6.57</longitude>
<elevation>10</elevation>
</city>
</province>
<province id="prov-Netherlands-5"
country="NL"
capital="cty-Netherlands-Zwolle">
<name>Overijssel</name>
<area>3420</area>
<population year="1997">1050389</population>
<population measured="admin." year="2004">1105512</population>
<population measured="admin." year="2010">1130664</population>
<population measured="estimate" year="2014">1140310</population>
<city id="cty-Netherlands-9" country="NL" province="prov-Netherlands-5">
<name>Enschede</name>
<latitude>52.22</latitude>
<longitude>6.9</longitude>
<elevation>42</elevation>
<population year="1995">254480</population>
<population year="2004" measured="admin.">152989</population>
<population year="2010" measured="admin.">157321</population>
<population year="2014" measured="estimate">158494</population>
</city>
<city id="cty-Netherlands-Zwolle"
country="NL"
province="prov-Netherlands-5">
<name>Zwolle</name>
<latitude>52.52</latitude>
<longitude>6.1</longitude>
<elevation>4</elevation>
<population year="2004" measured="admin.">110880</population>
<population year="2010" measured="admin.">118943</population>
<population year="2014" measured="estimate">123440</population>
</city>
</province>
<province id="prov-Netherlands-6"
country="NL"
capital="cty-Netherlands-Lelystad">
<name>Flevoland</name>
<area>2412</area>
<population year="1997">262325</population>
<population measured="admin." year="2004">359904</population>
<population measured="admin." year="2010">388063</population>
<population measured="estimate" year="2014">400398</population>
<city id="cty-Netherlands-Lelystad"
country="NL"
province="prov-Netherlands-6">
<name>Lelystad</name>
<latitude>52.5</latitude>
<longitude>5.48</longitude>
<elevation>-3</elevation>
<population year="2004" measured="admin.">69640</population>
<population year="2010" measured="admin.">74682</population>
<population year="2014" measured="estimate">76252</population>
</city>
<city id="cty-Netherlands-Almere"
country="NL"
province="prov-Netherlands-6">
<name>Almere</name>
<latitude>52.37</latitude>
<longitude>5.22</longitude>
<elevation>-3</elevation>
<population year="2004" measured="admin.">170704</population>
<population year="2010" measured="admin.">188209</population>
<population year="2014" measured="estimate">196244</population>
</city>
</province>
<province id="prov-Netherlands-7" country="NL" capital="cty-Netherlands-7">
<name>Gelderland</name>
<area>5136</area>
<population year="1997">1864732</population>
<population measured="admin." year="2004">1966929</population>
<population measured="admin." year="2010">1999462</population>
<population measured="estimate" year="2014">2020754</population>
<city id="cty-Netherlands-7" country="NL" province="prov-Netherlands-7">
<name>Arnhem</name>
<latitude>51.98</latitude>
<longitude>5.92</longitude>
<elevation>13</elevation>
<population year="1995">314159</population>
<population year="2004" measured="admin.">141601</population>
<population year="2010" measured="admin.">147244</population>
<population year="2014" measured="estimate">150989</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
<city id="cty-Netherlands-10" country="NL" province="prov-Netherlands-7">
<name>Nijmegen</name>
<latitude>51.85</latitude>
<longitude>5.87</longitude>
<elevation>29</elevation>
<population year="1995">249490</population>
<population year="2004" measured="admin.">157466</population>
<population year="2010" measured="admin.">162932</population>
<population year="2014" measured="estimate">168810</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
<city id="cty-Netherlands-Apeldoorn"
country="NL"
province="prov-Netherlands-7">
<name>Apeldoorn</name>
<latitude>52.22</latitude>
<longitude>5.97</longitude>
<elevation>16</elevation>
<population year="2004" measured="admin.">156000</population>
<population year="2010" measured="admin.">155775</population>
<population year="2014" measured="estimate">157540</population>
</city>
</province>
<province id="prov-Netherlands-8" country="NL" capital="cty-Netherlands-5">
<name>Utrecht</name>
<area>1449</area>
<population year="1997">1063460</population>
<population measured="admin." year="2004">1112788</population>
<population measured="admin." year="2010">1220912</population>
<population measured="estimate" year="2014">1255661</population>
<city id="cty-Netherlands-5" country="NL" province="prov-Netherlands-8">
<name>Utrecht</name>
<latitude>52.08</latitude>
<longitude>5.12</longitude>
<elevation>5</elevation>
<population year="1995">547070</population>
<population year="2004" measured="admin.">270244</population>
<population year="2010" measured="admin.">306731</population>
<population year="2014" measured="estimate">330081</population>
</city>
<city id="cty-Netherlands-Amersfoort"
country="NL"
province="prov-Netherlands-8">
<name>Amersfoort</name>
<latitude>52.15</latitude>
<longitude>5.38</longitude>
<elevation>3</elevation>
<population year="2004" measured="admin.">132851</population>
<population year="2010" measured="admin.">144879</population>
<population year="2014" measured="estimate">151270</population>
</city>
</province>
<province id="prov-Netherlands-9" country="NL" capital="cty-Netherlands-13">
<name>Noord-Holland</name>
<area>4090</area>
<population year="1997">2463611</population>
<population measured="admin." year="2004">2587265</population>
<population measured="admin." year="2010">2669772</population>
<population measured="estimate" year="2014">2745613</population>
<city id="cty-Netherlands-Amsterdam"
country="NL"
province="prov-Netherlands-9">
<name>Amsterdam</name>
<latitude>52.37</latitude>
<longitude>4.9</longitude>
<elevation>2</elevation>
<population year="1995">1101407</population>
<population year="2004" measured="admin.">739104</population>
<population year="2010" measured="admin.">767849</population>
<population year="2014" measured="estimate">812895</population>
</city>
<city id="cty-Netherlands-13" country="NL" province="prov-Netherlands-9">
<name>Haarlem</name>
<latitude>52.38</latitude>
<longitude>4.63</longitude>
<elevation>2</elevation>
<population year="1995">212631</population>
<population year="2004" measured="admin.">147343</population>
<population year="2010" measured="admin.">149516</population>
<population year="2014" measured="estimate">155361</population>
</city>
<city id="cty-Netherlands-20" country="NL" province="prov-Netherlands-9">
<name>Zaanstad</name>
<latitude>52.43</latitude>
<longitude>4.82</longitude>
<elevation>1</elevation>
<population year="2004" measured="admin.">139774</population>
<population year="2010" measured="admin.">145282</population>
<population year="2014" measured="estimate">151058</population>
</city>
<city id="cty-Netherlands-22" country="NL" province="prov-Netherlands-9">
<name>Hilversum</name>
<latitude>52.23</latitude>
<longitude>5.17</longitude>
<elevation>15</elevation>
<population year="1995">102023</population>
<population year="2004" measured="admin.">83454</population>
<population year="2010" measured="admin.">84573</population>
<population year="2014" measured="estimate">86738</population>
</city>
</province>
<province id="prov-Netherlands-10" country="NL" capital="cty-Netherlands-4">
<name>Zuid-Holland</name>
<area>3418</area>
<population year="1997">3325064</population>
<population measured="admin." year="2004">3451942</population>
<population measured="admin." year="2010">3504636</population>
<population measured="estimate" year="2014">3580735</population>
<city id="cty-Netherlands-4" country="NL" province="prov-Netherlands-10">
<name>Den Haag</name>
<name>'s-Gravenhage</name>
<name>The Hague</name>
<latitude>52.08</latitude>
<longitude>4.32</longitude>
<elevation>1</elevation>
<population year="1995">694249</population>
<population year="2004" measured="admin.">469059</population>
<population year="2010" measured="admin.">489375</population>
<population year="2014" measured="estimate">509623</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
</city>
<city id="cty-Netherlands-3" country="NL" province="prov-Netherlands-10">
<name>Rotterdam</name>
<latitude>51.92</latitude>
<longitude>4.5</longitude>
<elevation>0</elevation>
<population year="1995">1078747</population>
<population year="2004" measured="admin.">598923</population>
<population year="2010" measured="admin.">590131</population>
<population year="2014" measured="estimate">619180</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
<city id="cty-Netherlands-12" country="NL" province="prov-Netherlands-10">
<name>Dordrecht</name>
<latitude>51.82</latitude>
<longitude>4.67</longitude>
<elevation>1</elevation>
<population year="1995">213963</population>
<population year="2004" measured="admin.">119649</population>
<population year="2010" measured="admin.">118607</population>
<population year="2014" measured="estimate">118780</population>
<located_at watertype="river" river="river-Rhein"/>
</city>
<city id="cty-Netherlands-16" country="NL" province="prov-Netherlands-10">
<name>Leiden</name>
<latitude>52.17</latitude>
<longitude>4.48</longitude>
<elevation>0</elevation>
<population year="1995">194935</population>
<population year="2004" measured="admin.">118702</population>
<population year="2010" measured="admin.">117342</population>
<population year="2014" measured="estimate">121387</population>
</city>
</province>
<province id="prov-Netherlands-11"
country="NL"
capital="cty-Netherlands-Middelburg">
<name>Zeeland</name>
<area>2933</area>
<population year="1997">365846</population>
<population measured="admin." year="2004">379028</population>
<population measured="admin." year="2010">381507</population>
<population measured="estimate" year="2014">380735</population>
<city id="cty-Netherlands-Middelburg"
country="NL"
province="prov-Netherlands-11">
<name>Middelburg</name>
<latitude>51.5</latitude>
<longitude>3.62</longitude>
<elevation>3</elevation>
</city>
</province>
<province id="prov-Netherlands-12" country="NL" capital="cty-Netherlands-15">
<name>Noord-Brabant</name>
<area>5081</area>
<population year="1997">2276207</population>
<population measured="admin." year="2004">2406994</population>
<population measured="admin." year="2010">2445358</population>
<population measured="estimate" year="2014">2482079</population>
<city id="cty-Netherlands-15" country="NL" province="prov-Netherlands-12">
<name>'s-Hertogenbosch</name>
<latitude>51.68</latitude>
<longitude>5.3</longitude>
<elevation>6</elevation>
<population year="1995">199127</population>
<population year="2004" measured="admin.">133511</population>
<population year="2010" measured="admin.">139754</population>
<population year="2014" measured="estimate">143822</population>
</city>
<city id="cty-Netherlands-6" country="NL" province="prov-Netherlands-12">
<name>Eindhoven</name>
<latitude>51.43</latitude>
<longitude>5.48</longitude>
<elevation>17</elevation>
<population year="1995">395612</population>
<population year="2004" measured="admin.">207870</population>
<population year="2010" measured="admin.">214036</population>
<population year="2014" measured="estimate">221279</population>
</city>
<city id="cty-Netherlands-11" country="NL" province="prov-Netherlands-12">
<name>Tilburg</name>
<latitude>51.55</latitude>
<longitude>5.08</longitude>
<elevation>14</elevation>
<population year="1995">237958</population>
<population year="2004" measured="admin.">198767</population>
<population year="2010" measured="admin.">204924</population>
<population year="2014" measured="estimate">210283</population>
</city>
<city id="cty-Netherlands-18" country="NL" province="prov-Netherlands-12">
<name>Breda</name>
<latitude>51.58</latitude>
<longitude>4.78</longitude>
<elevation>3</elevation>
<population year="1995">166616</population>
<population year="2004" measured="admin.">166035</population>
<population year="2010" measured="admin.">173445</population>
<population year="2014" measured="estimate">180263</population>
</city>
</province>
<province id="prov-Netherlands-13" country="NL" capital="cty-Netherlands-19">
<name>Limburg</name>
<area>2208</area>
<population year="1997">1130050</population>
<population measured="admin." year="2004">1139335</population>
<population measured="admin." year="2010">1122776</population>
<population measured="estimate" year="2014">1119412</population>
<city id="cty-Netherlands-19" country="NL" province="prov-Netherlands-13">
<name>Maastricht</name>
<latitude>50.85</latitude>
<longitude>5.68</longitude>
<elevation>49</elevation>
<population year="1995">164701</population>
<population year="2004" measured="admin.">122183</population>
<population year="2010" measured="admin.">118597</population>
<population year="2014" measured="estimate">122243</population>
<located_at watertype="river" river="river-Maas"/>
</city>
<city id="cty-Netherlands-8" country="NL" province="prov-Netherlands-13">
<name>Heerlen</name>
<latitude>50.88</latitude>
<longitude>5.98</longitude>
<elevation>113</elevation>
<population year="1995">270952</population>
<population year="2004" measured="admin.">93523</population>
<population year="2010" measured="admin.">89267</population>
<population year="2014" measured="estimate">88139</population>
</city>
<city id="cty-Netherlands-17" country="NL" province="prov-Netherlands-13">
<name>Sittard-Geleen</name>
<latitude>51</latitude>
<longitude>5.87</longitude>
<elevation>47</elevation>
<population year="1995">186011</population>
<population year="2004" measured="admin.">97487</population>
<population year="2010" measured="admin.">95213</population>
<population year="2014" measured="estimate">93726</population>
</city>
</province>
</country>
<country car_code="BIH"
area="51233"
capital="cty-BIH-1"
memberships="org-BIS org-CEI org-CD org-SELEC org-CE org-EAPC org-EBRD org-FAO org-G-77 org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IFRCS org-IFC org-IFAD org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NAM org-OSCE org-OPCW org-OAS org-OIC org-PFP org-UN org-UNCTAD org-UNESCO org-UNIDO org-MONUSCO org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO">
<name>Bosnia and Herzegovina</name>
<localname>Bosna i Hercegovina</localname>
<population measured="census" year="1948">2565277</population>
<population measured="census" year="1953">2847790</population>
<population measured="census" year="1961">3277948</population>
<population measured="census" year="1971">3746111</population>
<population measured="census" year="1981">4124256</population>
<population measured="census" year="1991">4377033</population>
<population measured="census" year="2013">3791622</population>
<population_growth>-0.11</population_growth>
<infant_mortality>5.84</infant_mortality>
<gdp_total>18870</gdp_total>
<gdp_agri>8.1</gdp_agri>
<gdp_ind>26.4</gdp_ind>
<gdp_serv>65.5</gdp_serv>
<inflation>0.2</inflation>
<unemployment>44.3</unemployment>
<indep_date from="Yugoslavia">1992-04-01</indep_date>
<government>emerging federal democratic republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="48">Muslim</ethnicgroup>
<ethnicgroup percentage="37.1">Bosniak</ethnicgroup>
<ethnicgroup percentage="14.3">Croat</ethnicgroup>
<religion percentage="40">Muslim</religion>
<religion percentage="31">Christian Orthodox</religion>
<religion percentage="15">Roman Catholic</religion>
<religion percentage="4">Protestant</religion>
<language percentage="99">Serbo-Croatian</language>
<border country="SRB" length="357"/>
<border country="MNE" length="249"/>
<border country="HR" length="932"/>
<province id="prov-BIH-1" country="BIH" capital="cty-BIH-1">
<name>Federacija Bosne i Hercegovine</name>
<area>26110</area>
<population measured="prelim. census" year="2013">2371603</population>
<city id="cty-BIH-1" country="BIH" province="prov-BIH-1">
<name>Sarajevo</name>
<latitude>43.87</latitude>
<longitude>18.42</longitude>
<elevation>518</elevation>
<population year="1991" measured="estimate">529021</population>
<population year="2013" measured="prelim. census">291422</population>
</city>
<city id="cty-BIH-4" country="BIH" province="prov-BIH-1">
<name>Tuzla</name>
<latitude>44.54</latitude>
<longitude>18.68</longitude>
<elevation>245</elevation>
<population year="1991" measured="estimate">131866</population>
<population year="2013" measured="prelim. census">120441</population>
</city>
<city id="cty-BIH-5" country="BIH" province="prov-BIH-1">
<name>Zenica</name>
<latitude>44.2</latitude>
<longitude>17.91</longitude>
<elevation>316</elevation>
<population year="1991" measured="estimate">145837</population>
<population year="2013" measured="prelim. census">115134</population>
</city>
<city id="cty-BIH-6" country="BIH" province="prov-BIH-1">
<name>Mostar</name>
<latitude>43.33</latitude>
<longitude>17.8</longitude>
<elevation>60</elevation>
<population year="1991" measured="estimate">127034</population>
<population year="2013" measured="prelim. census">113169</population>
<located_at watertype="river" river="river-Neretva"/>
</city>
</province>
<province id="prov-BIH-2" country="BIH" capital="cty-BIH-2">
<name>Republika Srpska</name>
<area>24857</area>
<population measured="prelim. census" year="2013">1326991</population>
<city id="cty-BIH-2" country="BIH" province="prov-BIH-2">
<name>Banja Luka</name>
<latitude>44.77</latitude>
<longitude>17.18</longitude>
<elevation>163</elevation>
<population year="1991" measured="estimate">195994</population>
<population year="2013" measured="prelim. census">199191</population>
</city>
<city id="cty-BIH-7" country="BIH" province="prov-BIH-2">
<name>Bijeljina</name>
<latitude>44.75</latitude>
<longitude>19.22</longitude>
<elevation>90</elevation>
<population year="2013" measured="prelim. census">114663</population>
</city>
</province>
<province id="prov-BIH-3" country="BIH" capital="cty-BIH-3">
<name>Brčko</name>
<area>493</area>
<population measured="prelim. census" year="2013">93028</population>
<city id="cty-BIH-3" country="BIH" province="prov-BIH-3">
<name>Brčko</name>
<latitude>44.87</latitude>
<longitude>18.81</longitude>
<elevation>92</elevation>
<population year="1991">41406</population>
<population year="2013" measured="prelim. census">93028</population>
<located_at watertype="river" river="river-Save"/>
</city>
</province>
</country>
<country car_code="HR"
area="56538"
capital="cty-Croatia-1"
memberships="org-AG org-BIS org-BSEC org-CEI org-CD org-SELEC org-CE org-EAPC org-EBRD org-EIB org-EU org-FAO org-G-11 org-IADB org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NAM org-NATO org-NSG org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-UNMOGIP org-MINURSO org-UNMIL org-UNFICYP org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Croatia</name>
<localname>Republika Hrvatska</localname>
<population measured="est." year="1950">3850295</population>
<population measured="est." year="1960">4059048</population>
<population measured="est." year="1970">4171014</population>
<population measured="census" year="1971">4426221</population>
<population measured="census" year="1981">4601469</population>
<population measured="census" year="1991">4784265</population>
<population year="2001" measured="census">4437460</population>
<population measured="census" year="2011">4290612</population>
<population_growth>-0.12</population_growth>
<infant_mortality>5.87</infant_mortality>
<gdp_total>59140</gdp_total>
<gdp_agri>5</gdp_agri>
<gdp_ind>25.8</gdp_ind>
<gdp_serv>69.2</gdp_serv>
<inflation>2.2</inflation>
<unemployment>21.6</unemployment>
<indep_date from="Yugoslavia">1991-06-25</indep_date>
<government>parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="89.6">Croat</ethnicgroup>
<ethnicgroup percentage="4.5">Serb</ethnicgroup>
<ethnicgroup percentage="0.5">Hungarian</ethnicgroup>
<ethnicgroup percentage="0.9">Muslim</ethnicgroup>
<ethnicgroup percentage="0.5">Slovene</ethnicgroup>
<religion percentage="87.8">Roman Catholic</religion>
<religion percentage="4.4">Christian Orthodox</religion>
<religion percentage="0.4">Protestant</religion>
<religion percentage="1.3">Muslim</religion>
<language percentage="96.1">Croatian</language>
<language percentage="1.0">Serbian</language>
<border country="SRB" length="241"/>
<border country="MNE" length="25"/>
<border country="H" length="329"/>
<border country="SLO" length="546"/>
<border country="BIH" length="932"/>
<city id="cty-Croatia-1" country="HR">
<name>Zagreb</name>
<latitude>45.82</latitude>
<longitude>15.98</longitude>
<elevation>158</elevation>
<population year="1991" measured="census">706770</population>
<population year="2001" measured="census">691724</population>
<population year="2011" measured="census">686568</population>
<located_at watertype="river" river="river-Save"/>
</city>
<city id="cty-Croatia-2" country="HR">
<name>Split</name>
<latitude>43.51</latitude>
<longitude>16.45</longitude>
<elevation>10</elevation>
<population year="1991" measured="census">189388</population>
<population year="2001" measured="census">188694</population>
<population year="2011" measured="census">165893</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Croatia-3" country="HR">
<name>Rijeka</name>
<latitude>45.32</latitude>
<longitude>14.42</longitude>
<elevation>10</elevation>
<population year="1991" measured="census">167964</population>
<population year="2001" measured="census">143800</population>
<population year="2011" measured="census">127498</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Croatia-4" country="HR">
<name>Osijek</name>
<latitude>45.56</latitude>
<longitude>18.68</longitude>
<elevation>94</elevation>
<population year="1991" measured="census">104761</population>
<population year="2001" measured="census">90411</population>
<population year="2011" measured="census">83496</population>
<located_at watertype="river" river="river-Drau"/>
</city>
<city id="cty-Croatia-5" country="HR">
<name>Zadar</name>
<latitude>44.11</latitude>
<longitude>15.23</longitude>
<elevation>10</elevation>
<population year="1991" measured="census">76343</population>
<population year="2001" measured="census">69556</population>
<population year="2011" measured="census">70674</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</country>
<country car_code="BG"
area="110910"
capital="cty-Bulgaria-1"
memberships="org-AG org-BIS org-BSEC org-CEI org-CD org-SELEC org-CE org-EAPC org-EBRD org-EIB org-CERN org-EU org-FAO org-G-9 org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IFRCS org-IFC org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NATO org-NSG org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNMIL org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Bulgaria</name>
<localname>Република България</localname>
<population measured="census" year="1887">3154375</population>
<population measured="census" year="1892">3310713</population>
<population measured="census" year="1900">3744283</population>
<population measured="census" year="1905">4035575</population>
<population measured="census" year="1910">4337513</population>
<population measured="census" year="1920">4846971</population>
<population measured="census" year="1926">5528741</population>
<population measured="census" year="1934">6077939</population>
<population measured="census" year="1946">7029349</population>
<population measured="census" year="1956">7613709</population>
<population measured="census" year="1965">8227866</population>
<population measured="census" year="1975">8727771</population>
<population measured="census" year="1985">8948649</population>
<population measured="census" year="1992">8487317</population>
<population measured="census" year="2001">7932984</population>
<population measured="census" year="2011">7351234</population>
<population year="2012" measured="estimate">7284552</population>
<population_growth>-0.83</population_growth>
<infant_mortality>15.08</infant_mortality>
<gdp_total>53700</gdp_total>
<gdp_agri>6.7</gdp_agri>
<gdp_ind>30.3</gdp_ind>
<gdp_serv>63</gdp_serv>
<inflation>1.5</inflation>
<unemployment>11.6</unemployment>
<indep_date from="Ottoman Empire">1908-09-22</indep_date>
<government>parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="76.9">Bulgarian</ethnicgroup>
<ethnicgroup percentage="8">Turkish</ethnicgroup>
<ethnicgroup percentage="4.4">Roma</ethnicgroup>
<ethnicgroup percentage="2.5">Macedonian</ethnicgroup>
<ethnicgroup percentage="0.2">Russian</ethnicgroup>
<ethnicgroup percentage="0.3">Armenian</ethnicgroup>
<religion percentage="59.4">Christian Orthodox</religion>
<religion percentage="7.8">Muslim</religion>
<religion percentage="0.8">Jewish</religion>
<religion percentage="0.7">Roman Catholic</religion>
<language percentage="76.8">Bulgarian</language>
<language percentage="8.2">Turkish</language>
<language percentage="3.8">Roma</language>
<border country="GR" length="494"/>
<border country="MK" length="148"/>
<border country="SRB" length="318"/>
<border country="RO" length="608"/>
<border country="TR" length="240"/>
<city id="cty-Bulgaria-1" country="BG">
<name>Sofia</name>
<localname>София</localname>
<latitude>42.7</latitude>
<longitude>23.33</longitude>
<elevation>500</elevation>
<population year="1987">1300000</population>
<population year="2001" measured="census">1091772</population>
<population year="2011" measured="census">1270284</population>
<located_at watertype="river" river="river-Iskar"/>
</city>
<city id="cty-Bulgaria-2" country="BG">
<name>Plovdiv</name>
<localname>Пловдив</localname>
<latitude>42.15</latitude>
<longitude>24.75</longitude>
<elevation>164</elevation>
<population year="2001" measured="census">338224</population>
<population year="2011" measured="census">331796</population>
<located_at watertype="river" river="river-Maritsa"/>
</city>
<city id="cty-Bulgaria-3" country="BG">
<name>Varna</name>
<localname>Варна</localname>
<latitude>43.22</latitude>
<longitude>27.92</longitude>
<elevation>80</elevation>
<population year="2001" measured="census">312889</population>
<population year="2011" measured="census">330486</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
<city id="cty-Bulgaria-4" country="BG">
<name>Burgas</name>
<localname>Бургас</localname>
<latitude>42.5</latitude>
<longitude>27.47</longitude>
<elevation>30</elevation>
<population year="2001" measured="census">192390</population>
<population year="2011" measured="census">197301</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
<city id="cty-Bulgaria-5" country="BG">
<name>Ruse</name>
<localname>Русе</localname>
<latitude>43.82</latitude>
<longitude>25.95</longitude>
<elevation>45</elevation>
<population year="2001" measured="census">161453</population>
<population year="2011" measured="census">146609</population>
<located_at watertype="river" river="river-Donau"/>
</city>
<city id="cty-Bulgaria-6" country="BG">
<name>Stara Zagora</name>
<localname>Стара Загора</localname>
<latitude>42.43</latitude>
<longitude>25.65</longitude>
<elevation>196</elevation>
<population year="2001" measured="census">143420</population>
<population year="2011" measured="census">136363</population>
</city>
</country>
<country car_code="RO"
area="237500"
capital="cty-Romania-2"
memberships="org-AG org-BIS org-BSEC org-CEI org-CD org-SELEC org-CE org-CBSS org-EAPC org-EBRD org-EIB org-ESA org-EU org-FAO org-G-9 org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-LAIA org-MIGA org-NATO org-NSG org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNMIL org-UNMISS org-UNOCI org-MONUSCO org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Romania</name>
<localname>România</localname>
<population measured="census" year="1948">15872624</population>
<population measured="census" year="1956">17489450</population>
<population measured="census" year="1966">19103163</population>
<population measured="census" year="1977">21559910</population>
<population measured="census" year="1992">22810035</population>
<population year="1996">21657162</population>
<population measured="census" year="2002">21680974</population>
<population year="2009" measured="estimate">21498616</population>
<population measured="census" year="2011">20121641</population>
<population_growth>-0.29</population_growth>
<infant_mortality>10.16</infant_mortality>
<gdp_total>188900</gdp_total>
<gdp_agri>6.4</gdp_agri>
<gdp_ind>34.2</gdp_ind>
<gdp_serv>59.4</gdp_serv>
<inflation>3.2</inflation>
<unemployment>7.3</unemployment>
<indep_date from="Ottoman Empire">1877-05-09</indep_date>
<government>republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="89.1">Romanian</ethnicgroup>
<ethnicgroup percentage="6.6">Hungarian</ethnicgroup>
<ethnicgroup percentage="2.5">Roma</ethnicgroup>
<ethnicgroup percentage="0.3">German</ethnicgroup>
<ethnicgroup percentage="0.3">Ukrainian</ethnicgroup>
<ethnicgroup percentage="0.2">Russian</ethnicgroup>
<ethnicgroup percentage="0.2">Turkish</ethnicgroup>
<religion percentage="86.8">Christian Orthodox</religion>
<religion percentage="7.5">Protestant</religion>
<religion percentage="4.7">Roman Catholic</religion>
<language percentage="91">Romanian</language>
<language percentage="6.7">Hungarian</language>
<language percentage="1.1">Roma</language>
<border country="SRB" length="476"/>
<border country="H" length="443"/>
<border country="UA" length="531"/>
<border country="BG" length="608"/>
<border country="MD" length="450"/>
<province id="prov-Romania-2" country="RO" capital="cty-Romania-Alba-Iulia">
<name>Alba</name>
<area>6241</area>
<population measured="census" year="2002">382999</population>
<population measured="estimate" year="2009">374535</population>
<population measured="census" year="2011">342376</population>
<city id="cty-Romania-Alba-Iulia" country="RO" province="prov-Romania-2">
<name>Alba Iulia</name>
<latitude>46.07</latitude>
<longitude>23.57</longitude>
<elevation>230</elevation>
<located_at watertype="river" river="river-Mures"/>
</city>
</province>
<province id="prov-Romania-3" country="RO" capital="cty-Romania-12">
<name>Arad</name>
<area>7754</area>
<population measured="census" year="2002">461791</population>
<population measured="estimate" year="2009">457306</population>
<population measured="census" year="2011">430629</population>
<city id="cty-Romania-12" country="RO" province="prov-Romania-3">
<name>Arad</name>
<latitude>46.17</latitude>
<longitude>21.32</longitude>
<elevation>117</elevation>
<population year="1989">191000</population>
<population year="2002" measured="census">172827</population>
<population year="2007" measured="estimate">167238</population>
<population year="2011" measured="census">159074</population>
<located_at watertype="river" river="river-Mures"/>
</city>
</province>
<province id="prov-Romania-4" country="RO" capital="cty-Romania-16">
<name>Argeş</name>
<area>6826</area>
<population measured="census" year="2002">652625</population>
<population measured="estimate" year="2009">642359</population>
<population measured="census" year="2011">612431</population>
<city id="cty-Romania-16" country="RO" province="prov-Romania-4">
<name>Piteşti</name>
<latitude>44.86</latitude>
<longitude>24.87</longitude>
<elevation>300</elevation>
<population year="1989">162000</population>
<population year="2002" measured="census">168458</population>
<population year="2007" measured="estimate">168958</population>
<population year="2011" measured="census">155383</population>
<located_at watertype="river" river="river-Arges"/>
</city>
</province>
<province id="prov-Romania-5" country="RO" capital="cty-Romania-13">
<name>Bacău</name>
<area>6620</area>
<population measured="census" year="2002">706623</population>
<population measured="estimate" year="2009">718165</population>
<population measured="census" year="2011">616168</population>
<city id="cty-Romania-13" country="RO" province="prov-Romania-5">
<name>Bacău</name>
<latitude>46.58</latitude>
<longitude>26.92</longitude>
<elevation>165</elevation>
<population year="1989">193000</population>
<population year="2002" measured="census">175500</population>
<population year="2007" measured="estimate">178203</population>
<population year="2011" measured="census">144307</population>
</city>
</province>
<province id="prov-Romania-6" country="RO" capital="cty-Romania-11">
<name>Bihor</name>
<area>7544</area>
<population measured="census" year="2002">600246</population>
<population measured="estimate" year="2009">593606</population>
<population measured="census" year="2011">575398</population>
<city id="cty-Romania-11" country="RO" province="prov-Romania-6">
<name>Oradea</name>
<latitude>47.07</latitude>
<longitude>21.92</longitude>
<elevation>142</elevation>
<population year="1989">225000</population>
<population year="2002" measured="census">206614</population>
<population year="2007" measured="estimate">205077</population>
<population year="2011" measured="census">196367</population>
</city>
</province>
<province id="prov-Romania-7" country="RO" capital="cty-Romania-Bistrita">
<name>Bistriţa-Năsăud</name>
<area>5355</area>
<population measured="census" year="2002">311657</population>
<population measured="estimate" year="2009">317346</population>
<population measured="census" year="2011">286225</population>
<city id="cty-Romania-Bistrita" country="RO" province="prov-Romania-7">
<name>Bistrita</name>
<latitude>47.13</latitude>
<longitude>24.5</longitude>
<elevation>356</elevation>
</city>
</province>
<province id="prov-Romania-8" country="RO" capital="cty-Romania-Botosani">
<name>Botoşani</name>
<area>4985</area>
<population measured="census" year="2002">452834</population>
<population measured="estimate" year="2009">451193</population>
<population measured="census" year="2011">412626</population>
<city id="cty-Romania-Botosani" country="RO" province="prov-Romania-8">
<name>Botoşani</name>
<latitude>47.75</latitude>
<longitude>26.67</longitude>
<elevation>170</elevation>
<population year="2002" measured="census">115070</population>
<population year="2007" measured="estimate">115739</population>
<population year="2011" measured="census">106847</population>
</city>
</province>
<province id="prov-Romania-9" country="RO" capital="cty-Romania-10">
<name>Brăila</name>
<area>4765</area>
<population measured="census" year="2002">373174</population>
<population measured="estimate" year="2009">361414</population>
<population measured="census" year="2011">321212</population>
<city id="cty-Romania-10" country="RO" province="prov-Romania-9">
<name>Brăila</name>
<latitude>45.27</latitude>
<longitude>27.96</longitude>
<elevation>25</elevation>
<population year="1989">243000</population>
<population year="2002" measured="census">216292</population>
<population year="2007" measured="estimate">215316</population>
<population year="2011" measured="census">180302</population>
<located_at watertype="river" river="river-Donau"/>
</city>
</province>
<province id="prov-Romania-10" country="RO" capital="cty-Romania-3">
<name>Braşov</name>
<area>5363</area>
<population measured="census" year="2002">589028</population>
<population measured="estimate" year="2009">596853</population>
<population measured="census" year="2011">549217</population>
<city id="cty-Romania-3" country="RO" province="prov-Romania-10">
<name>Braşov</name>
<latitude>45.67</latitude>
<longitude>25.62</longitude>
<elevation>600</elevation>
<population year="1989">353000</population>
<population year="2002" measured="census">284596</population>
<population year="2007" measured="estimate">277945</population>
<population year="2011" measured="census">253200</population>
</city>
</province>
<province id="prov-Romania-11" country="RO" capital="cty-Romania-2">
<name>Bucureşti</name>
<area>237</area>
<population measured="census" year="2002">1926334</population>
<population measured="estimate" year="2009">1944367</population>
<population measured="census" year="2011">1883425</population>
<city id="cty-Romania-2" country="RO" province="prov-Romania-11">
<name>Bucureşti</name>
<name>Bucarest</name>
<name>Bucharest</name>
<latitude>44.43</latitude>
<longitude>26.1</longitude>
<elevation>55.8</elevation>
<population year="1989">2037000</population>
<population year="2002" measured="census">1926334</population>
<population year="2007" measured="estimate">1931838</population>
<population year="2011" measured="census">1883425</population>
<located_at watertype="river" river="river-Dambovita"/>
</city>
</province>
<province id="prov-Romania-12" country="RO" capital="cty-Romania-18">
<name>Buzău</name>
<area>6102</area>
<population measured="census" year="2002">496214</population>
<population measured="estimate" year="2009">483988</population>
<population measured="census" year="2011">451069</population>
<city id="cty-Romania-18" country="RO" province="prov-Romania-12">
<name>Buzău</name>
<latitude>45.17</latitude>
<longitude>26.82</longitude>
<elevation>95</elevation>
<population year="1989">145000</population>
<population year="2002" measured="census">134227</population>
<population year="2007" measured="estimate">134619</population>
<population year="2011" measured="census">115494</population>
</city>
</province>
<province id="prov-Romania-13" country="RO" capital="cty-Romania-Calarasi">
<name>Călăraşi</name>
<area>5087</area>
<population measured="census" year="2002">324617</population>
<population measured="estimate" year="2009">313460</population>
<population measured="census" year="2011">306691</population>
<city id="cty-Romania-Calarasi" country="RO" province="prov-Romania-13">
<name>Calarasi</name>
<latitude>44.2</latitude>
<longitude>27.33</longitude>
<elevation>26</elevation>
<located_at watertype="river" river="river-Donau"/>
</city>
</province>
<province id="prov-Romania-14" country="RO" capital="cty-Romania-Resita">
<name>Caraş-Severin</name>
<area>8519</area>
<population measured="census" year="2002">333219</population>
<population measured="estimate" year="2009">324236</population>
<population measured="census" year="2011">295579</population>
<city id="cty-Romania-Resita" country="RO" province="prov-Romania-14">
<name>Resita</name>
<latitude>45.3</latitude>
<longitude>21.89</longitude>
<elevation>208</elevation>
</city>
</province>
<province id="prov-Romania-15" country="RO" capital="cty-Romania-7">
<name>Cluj</name>
<area>6674</area>
<population measured="census" year="2002">702755</population>
<population measured="estimate" year="2009">690590</population>
<population measured="census" year="2011">691106</population>
<city id="cty-Romania-7" country="RO" province="prov-Romania-15">
<name>Cluj-Napoca</name>
<latitude>46.77</latitude>
<longitude>23.58</longitude>
<elevation>340</elevation>
<population year="1989">318000</population>
<population year="2002" measured="census">317953</population>
<population year="2007" measured="estimate">310243</population>
<population year="2011" measured="census">324576</population>
</city>
</province>
<province id="prov-Romania-16" country="RO" capital="cty-Romania-4">
<name>Constanţa</name>
<area>7071</area>
<population measured="census" year="2002">715151</population>
<population measured="estimate" year="2009">721896</population>
<population measured="census" year="2011">684082</population>
<city id="cty-Romania-4" country="RO" province="prov-Romania-16">
<name>Constanţa</name>
<latitude>44.17</latitude>
<longitude>28.64</longitude>
<elevation>25</elevation>
<population year="1989">316000</population>
<population year="2002" measured="census">310471</population>
<population year="2007" measured="estimate">304279</population>
<population year="2011" measured="census">283872</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
</province>
<province id="prov-Romania-17"
country="RO"
capital="cty-Romania-Sfintu-Gheorghe">
<name>Covasna</name>
<area>3709</area>
<population measured="census" year="2002">222449</population>
<population measured="estimate" year="2009">222846</population>
<population measured="census" year="2011">210177</population>
<city id="cty-Romania-Sfintu-Gheorghe"
country="RO"
province="prov-Romania-17">
<name>Sfintu Gheorghe</name>
<name>Sfântu Gheorghe</name>
<latitude>45.86</latitude>
<longitude>25.79</longitude>
<elevation>555</elevation>
<located_at watertype="river" river="river-Olt"/>
</city>
</province>
<province id="prov-Romania-18" country="RO" capital="cty-Romania-Targoviste">
<name>Dâmboviţa</name>
<area>4054</area>
<population measured="census" year="2002">541763</population>
<population measured="estimate" year="2009">531011</population>
<population measured="census" year="2011">518745</population>
<city id="cty-Romania-Targoviste" country="RO" province="prov-Romania-18">
<name>Targoviste</name>
<latitude>44.92</latitude>
<longitude>25.46</longitude>
<elevation>292</elevation>
</city>
</province>
<province id="prov-Romania-19" country="RO" capital="cty-Romania-9">
<name>Dolj</name>
<area>7414</area>
<population measured="census" year="2002">734231</population>
<population measured="estimate" year="2009">707629</population>
<population measured="census" year="2011">660544</population>
<city id="cty-Romania-9" country="RO" province="prov-Romania-19">
<name>Craiova</name>
<latitude>44.33</latitude>
<longitude>23.82</longitude>
<elevation>100</elevation>
<population year="1989">300000</population>
<population year="2002" measured="census">302601</population>
<population year="2007" measured="estimate">299429</population>
<population year="2011" measured="census">269506</population>
</city>
</province>
<province id="prov-Romania-20" country="RO" capital="cty-Romania-8">
<name>Galaţi</name>
<area>4466</area>
<population measured="census" year="2002">619556</population>
<population measured="estimate" year="2009">611040</population>
<population measured="census" year="2011">536167</population>
<city id="cty-Romania-8" country="RO" province="prov-Romania-20">
<name>Galaţi</name>
<latitude>45.42</latitude>
<longitude>28.04</longitude>
<elevation>55</elevation>
<population year="1989">307000</population>
<population year="2002" measured="census">298861</population>
<population year="2007" measured="estimate">293523</population>
<population year="2011" measured="census">249432</population>
<located_at watertype="river" river="river-Donau"/>
<located_at watertype="river" river="river-Sereth"/>
</city>
</province>
<province id="prov-Romania-21" country="RO" capital="cty-Romania-Giurgiu">
<name>Giurgiu</name>
<area>3526</area>
<population measured="census" year="2002">297859</population>
<population measured="estimate" year="2009">282322</population>
<population measured="census" year="2011">281422</population>
<city id="cty-Romania-Giurgiu" country="RO" province="prov-Romania-21">
<name>Giurgiu</name>
<latitude>43.9</latitude>
<longitude>25.97</longitude>
<elevation>25</elevation>
<located_at watertype="river" river="river-Donau"/>
</city>
</province>
<province id="prov-Romania-22" country="RO" capital="cty-Romania-Tirgu-Jiu">
<name>Gorj</name>
<area>5601</area>
<population measured="census" year="2002">387308</population>
<population measured="estimate" year="2009">378310</population>
<population measured="census" year="2011">341594</population>
<city id="cty-Romania-Tirgu-Jiu" country="RO" province="prov-Romania-22">
<name>Tirgu Jiu</name>
<name>Târgu Jiu</name>
<latitude>45.03</latitude>
<longitude>23.27</longitude>
</city>
</province>
<province id="prov-Romania-23"
country="RO"
capital="cty-Romania-Miercurea-Ciuc">
<name>Harghita</name>
<area>6638</area>
<population measured="census" year="2002">326222</population>
<population measured="estimate" year="2009">325345</population>
<population measured="census" year="2011">310867</population>
<city id="cty-Romania-Miercurea-Ciuc"
country="RO"
province="prov-Romania-23">
<name>Miercurea Ciuc</name>
<latitude>46.36</latitude>
<longitude>25.8</longitude>
<elevation>662</elevation>
<located_at watertype="river" river="river-Olt"/>
</city>
</province>
<province id="prov-Romania-24" country="RO" capital="cty-Romania-Deva">
<name>Hunedoara</name>
<area>7062</area>
<population measured="census" year="2002">485712</population>
<population measured="estimate" year="2009">466586</population>
<population measured="census" year="2011">418565</population>
<city id="cty-Romania-Deva" country="RO" province="prov-Romania-24">
<name>Deva</name>
<latitude>45.88</latitude>
<longitude>22.91</longitude>
<elevation>187</elevation>
<located_at watertype="river" river="river-Mures"/>
</city>
</province>
<province id="prov-Romania-25" country="RO" capital="cty-Romania-Slobozia">
<name>Ialomiţa</name>
<area>4452</area>
<population measured="census" year="2002">296572</population>
<population measured="estimate" year="2009">288472</population>
<population measured="census" year="2011">274148</population>
<city id="cty-Romania-Slobozia" country="RO" province="prov-Romania-25">
<name>Slobozia</name>
<latitude>44.56</latitude>
<longitude>27.37</longitude>
</city>
</province>
<province id="prov-Romania-26" country="RO" capital="cty-Romania-6">
<name>Iaşi</name>
<area>5475</area>
<population year="1996">810000</population>
<population measured="census" year="2002">816910</population>
<population measured="estimate" year="2009">823388</population>
<population measured="census" year="2011">772348</population>
<city id="cty-Romania-6" country="RO" province="prov-Romania-26">
<name>Iaşi</name>
<latitude>47.16</latitude>
<longitude>27.59</longitude>
<elevation>60</elevation>
<population year="1989">330000</population>
<population year="2002" measured="census">320888</population>
<population year="2007" measured="estimate">315214</population>
<population year="2011" measured="census">290422</population>
</city>
</province>
<province id="prov-Romania-27" country="RO" capital="cty-Romania-17">
<name>Maramureş</name>
<area>6304</area>
<population measured="census" year="2002">510110</population>
<population measured="estimate" year="2009">511946</population>
<population measured="census" year="2011">478659</population>
<city id="cty-Romania-17" country="RO" province="prov-Romania-27">
<name>Baia Mare</name>
<latitude>47.67</latitude>
<longitude>23.58</longitude>
<elevation>228</elevation>
<population year="1989">150000</population>
<population year="2002" measured="census">137921</population>
<population year="2007" measured="estimate">139870</population>
<population year="2011" measured="census">123738</population>
</city>
</province>
<province id="prov-Romania-28"
country="RO"
capital="cty-Romania-Drobeta-Turnu-Severin">
<name>Mehedinţi</name>
<area>4932</area>
<population measured="census" year="2002">306732</population>
<population measured="estimate" year="2009">294364</population>
<population measured="census" year="2011">265390</population>
<city id="cty-Romania-Drobeta-Turnu-Severin"
country="RO"
province="prov-Romania-28">
<name>Drobeta-Turnu Severin</name>
<latitude>44.57</latitude>
<longitude>22.67</longitude>
<elevation>50</elevation>
<population year="2002" measured="census">104557</population>
<population year="2007" measured="estimate">107882</population>
<population year="2011" measured="census">92617</population>
<located_at watertype="river" river="river-Donau"/>
</city>
</province>
<province id="prov-Romania-29" country="RO" capital="cty-Romania-15">
<name>Mureş</name>
<area>6713</area>
<population measured="census" year="2002">580851</population>
<population measured="estimate" year="2009">581628</population>
<population measured="census" year="2011">550846</population>
<city id="cty-Romania-15" country="RO" province="prov-Romania-29">
<name>Târgu Mureş</name>
<latitude>46.55</latitude>
<longitude>24.56</longitude>
<elevation>320</elevation>
<population year="1989">165000</population>
<population year="2002" measured="census">150041</population>
<population year="2007" measured="estimate">145943</population>
<population year="2011" measured="census">134290</population>
<located_at watertype="river" river="river-Mures"/>
</city>
</province>
<province id="prov-Romania-30"
country="RO"
capital="cty-Romania-Piatra-Neamt">
<name>Neamţ</name>
<area>5896</area>
<population measured="census" year="2002">554516</population>
<population measured="estimate" year="2009">564471</population>
<population measured="census" year="2011">470766</population>
<city id="cty-Romania-Piatra-Neamt"
country="RO"
province="prov-Romania-30">
<name>Piatra-Neamţ</name>
<latitude>46.93</latitude>
<longitude>26.37</longitude>
<elevation>310</elevation>
<population year="2002" measured="census">104914</population>
<population year="2007" measured="estimate">108085</population>
<population year="2011" measured="census">85055</population>
</city>
</province>
<province id="prov-Romania-31" country="RO" capital="cty-Romania-Slatina">
<name>Olt</name>
<area>5498</area>
<population measured="census" year="2002">489274</population>
<population measured="estimate" year="2009">468931</population>
<population measured="census" year="2011">436400</population>
<city id="cty-Romania-Slatina" country="RO" province="prov-Romania-31">
<name>Slatina</name>
<latitude>44.43</latitude>
<longitude>24.36</longitude>
<elevation>155</elevation>
<located_at watertype="river" river="river-Olt"/>
</city>
</province>
<province id="prov-Romania-32" country="RO" capital="cty-Romania-Ploiesti">
<name>Prahova</name>
<area>4715</area>
<population measured="census" year="2002">829945</population>
<population measured="estimate" year="2009">817092</population>
<population measured="census" year="2011">762886</population>
<city id="cty-Romania-Ploiesti" country="RO" province="prov-Romania-32">
<name>Ploieşti</name>
<latitude>44.93</latitude>
<longitude>26.03</longitude>
<elevation>160</elevation>
<population year="2002" measured="census">232527</population>
<population year="2007" measured="estimate">230240</population>
<population year="2011" measured="census">209945</population>
</city>
</province>
<province id="prov-Romania-33" country="RO" capital="cty-Romania-Zalau">
<name>Sălaj</name>
<area>3864</area>
<population measured="census" year="2002">248015</population>
<population measured="estimate" year="2009">242472</population>
<population measured="census" year="2011">224384</population>
<city id="cty-Romania-Zalau" country="RO" province="prov-Romania-33">
<name>Zalau</name>
<latitude>47.19</latitude>
<longitude>23.06</longitude>
<elevation>275</elevation>
</city>
</province>
<province id="prov-Romania-34" country="RO" capital="cty-Romania-19">
<name>Satu-Mare</name>
<area>4417</area>
<population measured="census" year="2002">367281</population>
<population measured="estimate" year="2009">365508</population>
<population measured="census" year="2011">344360</population>
<city id="cty-Romania-19" country="RO" province="prov-Romania-34">
<name>Satu Mare</name>
<latitude>47.79</latitude>
<longitude>22.89</longitude>
<elevation>127</elevation>
<population year="1989">137000</population>
<population year="2002" measured="census">115142</population>
<population year="2007" measured="estimate">113688</population>
<population year="2011" measured="census">102411</population>
</city>
</province>
<province id="prov-Romania-35" country="RO" capital="cty-Romania-14">
<name>Sibiu</name>
<area>5432</area>
<population measured="census" year="2002">421724</population>
<population measured="estimate" year="2009">424855</population>
<population measured="census" year="2011">397322</population>
<city id="cty-Romania-14" country="RO" province="prov-Romania-35">
<name>Sibiu</name>
<latitude>45.8</latitude>
<longitude>24.15</longitude>
<elevation>415</elevation>
<population year="1989">184000</population>
<population year="2002" measured="census">154892</population>
<population year="2007" measured="estimate">154458</population>
<population year="2011" measured="census">147245</population>
</city>
</province>
<province id="prov-Romania-36" country="RO" capital="cty-Romania-Suceava">
<name>Suceava</name>
<area>8553</area>
<population year="1996">699000</population>
<population measured="census" year="2002">688435</population>
<population measured="estimate" year="2009">707588</population>
<population measured="census" year="2011">634810</population>
<city id="cty-Romania-Suceava" country="RO" province="prov-Romania-36">
<name>Suceava</name>
<latitude>47.65</latitude>
<longitude>26.26</longitude>
<elevation>300</elevation>
<population year="2002" measured="census">105865</population>
<population year="2007" measured="estimate">106397</population>
<population year="2011" measured="census">92121</population>
</city>
</province>
<province id="prov-Romania-37" country="RO" capital="cty-Romania-Alexandria">
<name>Teleorman</name>
<area>5789</area>
<population measured="census" year="2002">436025</population>
<population measured="estimate" year="2009">405070</population>
<population measured="census" year="2011">380123</population>
<city id="cty-Romania-Alexandria" country="RO" province="prov-Romania-37">
<name>Alexandria</name>
<latitude>43.97</latitude>
<longitude>25.33</longitude>
<elevation>41</elevation>
</city>
</province>
<province id="prov-Romania-38" country="RO" capital="cty-Romania-5">
<name>Timiş</name>
<area>8696</area>
<population measured="census" year="2002">677926</population>
<population measured="estimate" year="2009">676360</population>
<population measured="census" year="2011">683540</population>
<city id="cty-Romania-5" country="RO" province="prov-Romania-38">
<name>Timişoara</name>
<latitude>45.76</latitude>
<longitude>21.23</longitude>
<elevation>90</elevation>
<population year="1989">333000</population>
<population year="2002" measured="census">317660</population>
<population year="2007" measured="estimate">307347</population>
<population year="2011" measured="census">319279</population>
</city>
</province>
<province id="prov-Romania-39" country="RO" capital="cty-Romania-Tulcea">
<name>Tulcea</name>
<area>8498</area>
<population measured="census" year="2002">256492</population>
<population measured="estimate" year="2009">248367</population>
<population measured="census" year="2011">213083</population>
<city id="cty-Romania-Tulcea" country="RO" province="prov-Romania-39">
<name>Tulcea</name>
<latitude>45.19</latitude>
<longitude>28.8</longitude>
<elevation>30</elevation>
<located_at watertype="river" river="river-Donau"/>
</city>
</province>
<province id="prov-Romania-40" country="RO" capital="cty-Romania-Vaslui">
<name>Vaslui</name>
<area>5318</area>
<population measured="census" year="2002">455049</population>
<population measured="estimate" year="2009">452816</population>
<population measured="census" year="2011">395499</population>
<city id="cty-Romania-Vaslui" country="RO" province="prov-Romania-40">
<name>Vaslui</name>
<latitude>46.64</latitude>
<longitude>27.73</longitude>
<elevation>110</elevation>
</city>
</province>
<province id="prov-Romania-41"
country="RO"
capital="cty-Romania-Ramnicu-Valcea">
<name>Vâlcea</name>
<area>5764</area>
<population measured="census" year="2002">413247</population>
<population measured="estimate" year="2009">408518</population>
<population measured="census" year="2011">371714</population>
<city id="cty-Romania-Ramnicu-Valcea"
country="RO"
province="prov-Romania-41">
<name>Râmnicu Vâlcea</name>
<latitude>45.1</latitude>
<longitude>24.38</longitude>
<population year="2002" measured="census">107726</population>
<population year="2007" measured="estimate">111342</population>
<population year="2011" measured="census">98776</population>
</city>
</province>
<province id="prov-Romania-42" country="RO" capital="cty-Romania-Focsani">
<name>Vrancea</name>
<area>4857</area>
<population measured="census" year="2002">387632</population>
<population measured="estimate" year="2009">391641</population>
<population measured="census" year="2011">340310</population>
<city id="cty-Romania-Focsani" country="RO" province="prov-Romania-42">
<name>Focsani</name>
<latitude>45.7</latitude>
<longitude>27.18</longitude>
<elevation>55</elevation>
</city>
</province>
<province id="prov-Romania-43" country="RO" capital="cty-Romania-Buftea">
<name>Ilfov</name>
<area>1583</area>
<population measured="census" year="2002">300123</population>
<population measured="estimate" year="2009">308726</population>
<population measured="census" year="2011">388738</population>
<city id="cty-Romania-Buftea" country="RO" province="prov-Romania-43">
<name>Buftea</name>
<latitude>44.57</latitude>
<longitude>25.95</longitude>
</city>
</province>
</country>
<country car_code="TR"
area="780580"
capital="cty-Turkey-Ankara"
memberships="org-UNAMID org-ADB org-AG org-BIS org-BSEC org-CD org-CICA org-SELEC org-CE org-D-8 org-ECO org-EAPC org-EBRD org-CERN org-EU org-FATF org-FAO org-G-20 org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-ITUC org-IDB org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-OIC org-PCA org-SCO org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-UNRWA org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Turkey</name>
<localname>Türkiye Cumhuriyeti</localname>
<population measured="census" year="1927">13648270</population>
<population measured="census" year="1935">16158018</population>
<population measured="census" year="1940">17820950</population>
<population measured="census" year="1945">18790174</population>
<population measured="census" year="1950">20947188</population>
<population measured="census" year="1955">24064763</population>
<population measured="census" year="1960">27754820</population>
<population measured="census" year="1965">31391421</population>
<population measured="census" year="1970">35605176</population>
<population measured="census" year="1975">40347719</population>
<population measured="census" year="1980">44736957</population>
<population measured="census" year="1985">50664458</population>
<population measured="census" year="1990">56473035</population>
<population year="1997">62484478</population>
<population year="2000" measured="census">67808719</population>
<population measured="census" year="2007">70586256</population>
<population year="2012" measured="admin.">75627384</population>
<population_growth>1.12</population_growth>
<infant_mortality>21.43</infant_mortality>
<gdp_total>821800</gdp_total>
<gdp_agri>8.9</gdp_agri>
<gdp_ind>27.3</gdp_ind>
<gdp_serv>63.8</gdp_serv>
<inflation>7.6</inflation>
<unemployment>9.3</unemployment>
<indep_date from="Ottoman Empire">1923-10-29</indep_date>
<government>republican parliamentary democracy</government>
<encompassed continent="europe" percentage="3"/>
<encompassed continent="asia" percentage="97"/>
<ethnicgroup percentage="71.4">Turkish</ethnicgroup>
<ethnicgroup percentage="12.5">Kurdish</ethnicgroup>
<ethnicgroup percentage="1.1">Arab</ethnicgroup>
<religion percentage="99.8">Muslim</religion>
<language percentage="80">Turkish</language>
<language percentage="15">Kurdish</language>
<border country="GR" length="206"/>
<border country="BG" length="240"/>
<border country="IR" length="499"/>
<border country="ARM" length="268"/>
<border country="GE" length="252"/>
<border country="AZ" length="9"/>
<border country="IRQ" length="331"/>
<border country="SYR" length="822"/>
<province id="prov-Turkey-2" country="TR" capital="cty-Turkey-Adana">
<name>Adana</name>
<area>14045</area>
<population measured="census" year="2000">1854270</population>
<population measured="census" year="2007">2006650</population>
<population measured="admin." year="2012">2125635</population>
<city id="cty-Turkey-Adana" country="TR" province="prov-Turkey-2">
<name>Adana</name>
<latitude>37</latitude>
<longitude>35.32</longitude>
<elevation>23</elevation>
<population year="1990" measured="census">916150</population>
<population year="1994">1047300</population>
<population year="2000" measured="census">1130710</population>
<population year="2012" measured="admin.">1636229</population>
</city>
</province>
<province id="prov-Turkey-3" country="TR" capital="cty-Turkey-40">
<name>Adıyaman</name>
<area>7606</area>
<population year="1994">513131</population>
<population measured="census" year="2000">623811</population>
<population measured="census" year="2007">582762</population>
<population measured="admin." year="2012">595261</population>
<city id="cty-Turkey-40" country="TR" province="prov-Turkey-3">
<name>Adiyaman</name>
<latitude>37.76</latitude>
<longitude>38.28</longitude>
<elevation>764</elevation>
<population year="1990" measured="census">100045</population>
<population year="1994">128000</population>
<population year="2000" measured="census">178538</population>
<population year="2012" measured="admin.">217463</population>
</city>
</province>
<province id="prov-Turkey-4" country="TR" capital="cty-Turkey-Afyonkarahisar">
<name>Afyonkarahisar</name>
<name>Afyon</name>
<area>14718</area>
<population year="1994">739223</population>
<population measured="census" year="2000">812416</population>
<population measured="census" year="2007">701572</population>
<population measured="admin." year="2012">703948</population>
<city id="cty-Turkey-Afyonkarahisar"
country="TR"
province="prov-Turkey-4">
<name>Afyonkarahisar</name>
<name>Afyon</name>
<latitude>38.76</latitude>
<longitude>30.54</longitude>
<elevation>1021</elevation>
<population year="1990" measured="census">95643</population>
<population year="2000" measured="census">128516</population>
<population year="2012" measured="admin.">186991</population>
</city>
</province>
<province id="prov-Turkey-5" country="TR" capital="cty-Turkey-Agri">
<name>Ağrı</name>
<area>11498</area>
<population year="1994">437093</population>
<population measured="census" year="2000">528744</population>
<population measured="census" year="2007">530879</population>
<population measured="admin." year="2012">552404</population>
<city id="cty-Turkey-Agri" country="TR" province="prov-Turkey-5">
<name>Agri</name>
<latitude>39.72</latitude>
<longitude>43.05</longitude>
<population year="1990" measured="census">58038</population>
<population year="2000" measured="census">79764</population>
<population year="2012" measured="admin.">107839</population>
</city>
</province>
<province id="prov-Turkey-6" country="TR" capital="cty-Turkey-Aksaray">
<name>Aksaray</name>
<area>7965</area>
<population year="1994">326399</population>
<population measured="census" year="2000">396084</population>
<population measured="census" year="2007">366109</population>
<population measured="admin." year="2012">379915</population>
<city id="cty-Turkey-Aksaray" country="TR" province="prov-Turkey-6">
<name>Aksaray</name>
<latitude>38.37</latitude>
<longitude>34.03</longitude>
<elevation>980</elevation>
<population year="1990" measured="census">90698</population>
<population year="2000" measured="census">129949</population>
<population year="2012" measured="admin.">186599</population>
</city>
</province>
<province id="prov-Turkey-7" country="TR" capital="cty-Turkey-Amasya">
<name>Amasya</name>
<area>5703</area>
<population year="1994">357191</population>
<population measured="census" year="2000">365231</population>
<population measured="census" year="2007">328674</population>
<population measured="admin." year="2012">322283</population>
<city id="cty-Turkey-Amasya" country="TR" province="prov-Turkey-7">
<name>Amasya</name>
<latitude>40.65</latitude>
<longitude>35.83</longitude>
<elevation>40</elevation>
<population year="1990" measured="census">57087</population>
<population year="2000" measured="census">74393</population>
<population year="2012" measured="admin.">91874</population>
</city>
</province>
<province id="prov-Turkey-8" country="TR" capital="cty-Turkey-Ankara">
<name>Ankara</name>
<area>25401</area>
<population year="1994">3236626</population>
<population measured="census" year="2000">4007860</population>
<population measured="census" year="2007">4466756</population>
<population measured="admin." year="2012">4965542</population>
<city id="cty-Turkey-Ankara" country="TR" province="prov-Turkey-8">
<name>Ankara</name>
<latitude>39.93</latitude>
<longitude>32.87</longitude>
<elevation>938</elevation>
<population year="1994">2782200</population>
<population year="2000" measured="census">3203362</population>
<population year="2012" measured="admin.">4630735</population>
</city>
</province>
<province id="prov-Turkey-9" country="TR" capital="cty-Turkey-10">
<name>Antalya</name>
<area>20790</area>
<population year="1994">1132211</population>
<population measured="census" year="2000">1719751</population>
<population measured="census" year="2007">1789295</population>
<population measured="admin." year="2012">2092537</population>
<city id="cty-Turkey-10" country="TR" province="prov-Turkey-9">
<name>Antalya</name>
<latitude>36.9</latitude>
<longitude>30.68</longitude>
<elevation>30</elevation>
<population year="1990" measured="census">378208</population>
<population year="1994">497200</population>
<population year="2000" measured="census">603190</population>
<population year="2012" measured="admin.">1073794</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Turkey-10" country="TR" capital="cty-Turkey-Artvin">
<name>Artvin</name>
<area>7367</area>
<population measured="census" year="2000">191934</population>
<population measured="census" year="2007">168092</population>
<population measured="admin." year="2012">167082</population>
<city id="cty-Turkey-Artvin" country="TR" province="prov-Turkey-10">
<name>Artvin</name>
<latitude>41.18</latitude>
<longitude>41.82</longitude>
<elevation>345</elevation>
</city>
</province>
<province id="prov-Turkey-11" country="TR" capital="cty-Turkey-42">
<name>Aydın</name>
<area>7904</area>
<population year="1994">824816</population>
<population measured="census" year="2000">950757</population>
<population measured="census" year="2007">946971</population>
<population measured="admin." year="2012">1006541</population>
<city id="cty-Turkey-42" country="TR" province="prov-Turkey-11">
<name>Aydin</name>
<latitude>37.85</latitude>
<longitude>27.85</longitude>
<elevation>67</elevation>
<population year="1990" measured="census">107011</population>
<population year="1994">121200</population>
<population year="2000" measured="census">143267</population>
<population year="2012" measured="admin.">195951</population>
</city>
</province>
<province id="prov-Turkey-12" country="TR" capital="cty-Turkey-28">
<name>Balıkesir</name>
<area>14472</area>
<population year="1994">973314</population>
<population measured="census" year="2000">1076347</population>
<population measured="census" year="2007">1118313</population>
<population measured="admin." year="2012">1160731</population>
<city id="cty-Turkey-28" country="TR" province="prov-Turkey-12">
<name>Balikesir</name>
<latitude>39.39</latitude>
<longitude>27.53</longitude>
<elevation>70</elevation>
<population year="1990" measured="census">170589</population>
<population year="1994">187600</population>
<population year="2000" measured="census">215436</population>
<population year="2012" measured="admin.">267903</population>
</city>
</province>
<province id="prov-Turkey-13" country="TR" capital="cty-Turkey-31">
<name>Batman</name>
<area>4659</area>
<population year="1994">344669</population>
<population measured="census" year="2000">456734</population>
<population measured="census" year="2007">472487</population>
<population measured="admin." year="2012">534205</population>
<city id="cty-Turkey-31" country="TR" province="prov-Turkey-13">
<name>Batman</name>
<latitude>37.88</latitude>
<longitude>41.13</longitude>
<elevation>540</elevation>
<population year="1990" measured="census">147347</population>
<population year="1994">182800</population>
<population year="2000" measured="census">246678</population>
<population year="2012" measured="admin.">348963</population>
</city>
</province>
<province id="prov-Turkey-14" country="TR" capital="cty-Turkey-Bayburt">
<name>Bayburt</name>
<area>3739</area>
<population measured="census" year="2000">97358</population>
<population measured="census" year="2007">76609</population>
<population measured="admin." year="2012">75797</population>
<city id="cty-Turkey-Bayburt" country="TR" province="prov-Turkey-14">
<name>Bayburt</name>
<latitude>40.26</latitude>
<longitude>40.23</longitude>
<elevation>1550</elevation>
</city>
</province>
<province id="prov-Turkey-15" country="TR" capital="cty-Turkey-Bilecik">
<name>Bilecik</name>
<area>4306</area>
<population year="1994">175526</population>
<population measured="census" year="2000">194326</population>
<population measured="census" year="2007">203777</population>
<population measured="admin." year="2012">204116</population>
<city id="cty-Turkey-Bilecik" country="TR" province="prov-Turkey-15">
<name>Bilecik</name>
<latitude>40.14</latitude>
<longitude>29.98</longitude>
</city>
</province>
<province id="prov-Turkey-16" country="TR" capital="cty-Turkey-Bingol">
<name>Bingöl</name>
<area>8253</area>
<population year="1994">250966</population>
<population measured="census" year="2000">253739</population>
<population measured="census" year="2007">251552</population>
<population measured="admin." year="2012">262507</population>
<city id="cty-Turkey-Bingol" country="TR" province="prov-Turkey-16">
<name>Bingol</name>
<latitude>38.89</latitude>
<longitude>40.5</longitude>
<elevation>1151</elevation>
<population year="1990" measured="census">41590</population>
<population year="2000" measured="census">68876</population>
<population year="2012" measured="admin.">98424</population>
</city>
</province>
<province id="prov-Turkey-17" country="TR" capital="cty-Turkey-Bitlis">
<name>Bitlis</name>
<area>7094</area>
<population year="1994">330115</population>
<population measured="census" year="2000">388678</population>
<population measured="census" year="2007">327886</population>
<population measured="admin." year="2012">337253</population>
<city id="cty-Turkey-Bitlis" country="TR" province="prov-Turkey-17">
<name>Bitlis</name>
<latitude>38.4</latitude>
<longitude>42.11</longitude>
<elevation>1500</elevation>
</city>
</province>
<province id="prov-Turkey-18" country="TR" capital="cty-Turkey-Bolu">
<name>Bolu</name>
<area>8323</area>
<population measured="census" year="2000">270654</population>
<population measured="census" year="2007">270417</population>
<population measured="admin." year="2012">281080</population>
<city id="cty-Turkey-Bolu" country="TR" province="prov-Turkey-18">
<name>Bolu</name>
<latitude>40.73</latitude>
<longitude>31.61</longitude>
<elevation>725</elevation>
<population year="1990" measured="census">61509</population>
<population year="2000" measured="census">84565</population>
<population year="2012" measured="admin.">131264</population>
</city>
</province>
<province id="prov-Turkey-19" country="TR" capital="cty-Turkey-Burdur">
<name>Burdur</name>
<area>7134</area>
<population year="1994">254899</population>
<population measured="census" year="2000">256803</population>
<population measured="census" year="2007">251181</population>
<population measured="admin." year="2012">254341</population>
<city id="cty-Turkey-Burdur" country="TR" province="prov-Turkey-19">
<name>Burdur</name>
<latitude>37.72</latitude>
<longitude>30.28</longitude>
</city>
</province>
<province id="prov-Turkey-20" country="TR" capital="cty-Turkey-6">
<name>Bursa</name>
<area>10886</area>
<population year="1994">1603137</population>
<population measured="census" year="2000">2125140</population>
<population measured="census" year="2007">2439876</population>
<population measured="admin." year="2012">2688171</population>
<city id="cty-Turkey-6" country="TR" province="prov-Turkey-20">
<name>Bursa</name>
<latitude>40.18</latitude>
<longitude>29.05</longitude>
<elevation>100</elevation>
<population year="1990" measured="census">834576</population>
<population year="1994">996600</population>
<population year="2000" measured="census">1194687</population>
<population year="2012" measured="admin.">1734705</population>
</city>
<city id="cty-Turkey-Inegol" country="TR" province="prov-Turkey-20">
<name>İnegöl</name>
<latitude>40.08</latitude>
<longitude>29.51</longitude>
<population year="1990" measured="census">71120</population>
<population year="2000" measured="census">105959</population>
<population year="2012" measured="admin.">177617</population>
</city>
</province>
<province id="prov-Turkey-21" country="TR" capital="cty-Turkey-Canakkale">
<name>Çanakkale</name>
<area>9950</area>
<population year="1994">432263</population>
<population measured="census" year="2000">464975</population>
<population measured="census" year="2007">476128</population>
<population measured="admin." year="2012">493691</population>
<city id="cty-Turkey-Canakkale" country="TR" province="prov-Turkey-21">
<name>Canakkale</name>
<latitude>40.16</latitude>
<longitude>26.41</longitude>
<population year="1990" measured="census">53995</population>
<population year="2000" measured="census">75810</population>
<population year="2012" measured="admin.">111137</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_at watertype="sea" sea="sea-Marmarameer"/>
</city>
</province>
<province id="prov-Turkey-22" country="TR" capital="cty-Turkey-Cankiri">
<name>Çankırı</name>
<area>7491</area>
<population measured="census" year="2000">270355</population>
<population measured="census" year="2007">174012</population>
<population measured="admin." year="2012">184406</population>
<city id="cty-Turkey-Cankiri" country="TR" province="prov-Turkey-22">
<name>Cankiri</name>
<latitude>40.6</latitude>
<longitude>33.62</longitude>
<elevation>800</elevation>
</city>
</province>
<province id="prov-Turkey-23" country="TR" capital="cty-Turkey-Corum">
<name>Çorum</name>
<area>12796</area>
<population measured="census" year="2000">597065</population>
<population measured="census" year="2007">549828</population>
<population measured="admin." year="2012">529975</population>
<city id="cty-Turkey-Corum" country="TR" province="prov-Turkey-23">
<name>Corum</name>
<latitude>40.55</latitude>
<longitude>34.95</longitude>
<elevation>801</elevation>
<population year="1990" measured="census">116810</population>
<population year="2000" measured="census">161321</population>
<population year="2012" measured="admin.">231146</population>
</city>
</province>
<province id="prov-Turkey-24" country="TR" capital="cty-Turkey-24">
<name>Denizli</name>
<area>11804</area>
<population year="1994">750882</population>
<population measured="census" year="2000">850029</population>
<population measured="census" year="2007">907325</population>
<population measured="admin." year="2012">950557</population>
<city id="cty-Turkey-24" country="TR" province="prov-Turkey-24">
<name>Denizli</name>
<latitude>37.77</latitude>
<longitude>29.08</longitude>
<elevation>324</elevation>
<population year="1990" measured="census">203741</population>
<population year="1994">234500</population>
<population year="2000" measured="census">275480</population>
<population year="2012" measured="admin.">525497</population>
</city>
</province>
<province id="prov-Turkey-25" country="TR" capital="cty-Turkey-13">
<name>Diyarbakır</name>
<area>15204</area>
<population year="1994">1094996</population>
<population measured="census" year="2000">1362708</population>
<population measured="census" year="2007">1460714</population>
<population measured="admin." year="2012">1592167</population>
<city id="cty-Turkey-13" country="TR" province="prov-Turkey-25">
<name>Diyarbakir</name>
<latitude>37.91</latitude>
<longitude>40.24</longitude>
<elevation>675</elevation>
<population year="1990" measured="census">373810</population>
<population year="1994">448300</population>
<population year="2000" measured="census">545983</population>
<population year="2012" measured="admin.">892713</population>
<located_at watertype="river" river="river-Tigris"/>
</city>
</province>
<province id="prov-Turkey-26" country="TR" capital="cty-Turkey-45">
<name>Edirne</name>
<area>6097</area>
<population measured="census" year="2000">402606</population>
<population measured="census" year="2007">396462</population>
<population measured="admin." year="2012">399708</population>
<city id="cty-Turkey-45" country="TR" province="prov-Turkey-26">
<name>Edirne</name>
<latitude>41.68</latitude>
<longitude>26.56</longitude>
<elevation>42</elevation>
<population year="1990" measured="census">102345</population>
<population year="1994">115500</population>
<population year="2000" measured="census">119298</population>
<population year="2012" measured="admin.">148474</population>
<located_at watertype="river" river="river-Maritsa"/>
</city>
</province>
<province id="prov-Turkey-27" country="TR" capital="cty-Turkey-26">
<name>Elazığ</name>
<area>9281</area>
<population year="1994">498225</population>
<population measured="census" year="2000">569616</population>
<population measured="census" year="2007">541258</population>
<population measured="admin." year="2012">562703</population>
<city id="cty-Turkey-26" country="TR" province="prov-Turkey-27">
<name>Elazig</name>
<latitude>38.67</latitude>
<longitude>39.22</longitude>
<elevation>1067</elevation>
<population year="1990" measured="census">204603</population>
<population year="1994">222800</population>
<population year="2000" measured="census">266495</population>
<population year="2012" measured="admin.">347857</population>
</city>
</province>
<province id="prov-Turkey-28" country="TR" capital="cty-Turkey-Erzincan">
<name>Erzincan</name>
<area>11727</area>
<population year="1994">299251</population>
<population measured="census" year="2000">316841</population>
<population measured="census" year="2007">213538</population>
<population measured="admin." year="2012">217886</population>
<city id="cty-Turkey-Erzincan" country="TR" province="prov-Turkey-28">
<name>Erzincan</name>
<latitude>39.75</latitude>
<longitude>39.49</longitude>
<elevation>1185</elevation>
<population year="1990" measured="census">91772</population>
<population year="2000" measured="census">107175</population>
<population year="2012" measured="admin.">96474</population>
<located_at watertype="river" river="river-Karasu"/>
</city>
</province>
<province id="prov-Turkey-29" country="TR" capital="cty-Turkey-20">
<name>Erzurum</name>
<area>25330</area>
<population year="1994">848201</population>
<population measured="census" year="2000">937389</population>
<population measured="census" year="2007">784941</population>
<population measured="admin." year="2012">778195</population>
<city id="cty-Turkey-20" country="TR" province="prov-Turkey-29">
<name>Erzurum</name>
<latitude>39.91</latitude>
<longitude>41.28</longitude>
<elevation>1900</elevation>
<population year="1990" measured="census">242391</population>
<population year="1994">250100</population>
<population year="2000" measured="census">361235</population>
<population year="2012" measured="admin.">384399</population>
<located_at watertype="river" river="river-Karasu"/>
</city>
</province>
<province id="prov-Turkey-30" country="TR" capital="cty-Turkey-12">
<name>Eskişehir</name>
<area>13902</area>
<population year="1994">641057</population>
<population measured="census" year="2000">706009</population>
<population measured="census" year="2007">724849</population>
<population measured="admin." year="2012">789750</population>
<city id="cty-Turkey-12" country="TR" province="prov-Turkey-30">
<name>Eskisehir</name>
<latitude>39.78</latitude>
<longitude>30.52</longitude>
<elevation>788</elevation>
<population year="1990" measured="census">413082</population>
<population year="1994">451000</population>
<population year="2000" measured="census">482793</population>
<population year="2012" measured="admin.">659924</population>
</city>
</province>
<province id="prov-Turkey-31" country="TR" capital="cty-Turkey-7">
<name>Gaziantep</name>
<area>6844</area>
<population measured="census" year="2000">1285249</population>
<population measured="census" year="2007">1560023</population>
<population measured="admin." year="2012">1799558</population>
<city id="cty-Turkey-7" country="TR" province="prov-Turkey-31">
<name>Gaziantep</name>
<latitude>37.07</latitude>
<longitude>37.38</longitude>
<elevation>850</elevation>
<population year="1990" measured="census">603434</population>
<population year="1994">716000</population>
<population year="2000" measured="census">853513</population>
<population year="2012" measured="admin.">1438373</population>
</city>
</province>
<province id="prov-Turkey-32" country="TR" capital="cty-Turkey-Giresun">
<name>Giresun</name>
<area>6831</area>
<population year="1994">499087</population>
<population measured="census" year="2000">523819</population>
<population measured="census" year="2007">417505</population>
<population measured="admin." year="2012">419555</population>
<city id="cty-Turkey-Giresun" country="TR" province="prov-Turkey-32">
<name>Giresun</name>
<latitude>40.92</latitude>
<longitude>38.39</longitude>
<elevation>10</elevation>
<population year="1990" measured="census">67604</population>
<population year="2000" measured="census">83636</population>
<population year="2012" measured="admin.">100712</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
</province>
<province id="prov-Turkey-33" country="TR" capital="cty-Turkey-Gumushane">
<name>Gümüşhane</name>
<area>6437</area>
<population year="1994">169375</population>
<population measured="census" year="2000">186953</population>
<population measured="census" year="2007">130825</population>
<population measured="admin." year="2012">135216</population>
<city id="cty-Turkey-Gumushane" country="TR" province="prov-Turkey-33">
<name>Gümüşhane</name>
<latitude>40.46</latitude>
<longitude>39.48</longitude>
</city>
</province>
<province id="prov-Turkey-34" country="TR" capital="cty-Turkey-Hakkari">
<name>Hakkari</name>
<area>7178</area>
<population year="1994">172479</population>
<population measured="census" year="2000">236581</population>
<population measured="census" year="2007">246469</population>
<population measured="admin." year="2012">279982</population>
<city id="cty-Turkey-Hakkari" country="TR" province="prov-Turkey-34">
<name>Hakkari</name>
<latitude>37.58</latitude>
<longitude>43.74</longitude>
</city>
</province>
<province id="prov-Turkey-35" country="TR" capital="cty-Turkey-37">
<name>Hatay</name>
<area>5831</area>
<population year="1994">1109754</population>
<population measured="census" year="2000">1253726</population>
<population measured="census" year="2007">1386224</population>
<population measured="admin." year="2012">1483674</population>
<city id="cty-Turkey-33" country="TR" province="prov-Turkey-35">
<name>Iskenderun</name>
<latitude>36.58</latitude>
<longitude>36.17</longitude>
<elevation>4</elevation>
<population year="1990" measured="census">154807</population>
<population year="1994">156800</population>
<population year="2000" measured="census">159149</population>
<population year="2012" measured="admin.">184833</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Turkey-37" country="TR" province="prov-Turkey-35">
<name>Hatay</name>
<name>Antakya</name>
<latitude>36.2</latitude>
<longitude>36.15</longitude>
<elevation>67</elevation>
<population year="1990" measured="census">123871</population>
<population year="1994">137200</population>
<population year="2000" measured="census">144910</population>
<population year="2012" measured="admin.">216960</population>
<located_at watertype="river" river="river-Orontes"/>
</city>
</province>
<province id="prov-Turkey-36" country="TR" capital="cty-Turkey-9">
<name>Mersin</name>
<area>15512</area>
<population year="1994">1266995</population>
<population measured="census" year="2000">1651400</population>
<population measured="census" year="2007">1595938</population>
<population measured="admin." year="2012">1682848</population>
<city id="cty-Turkey-9" country="TR" province="prov-Turkey-36">
<name>Mersin</name>
<name>Icel</name>
<latitude>36.8</latitude>
<longitude>34.63</longitude>
<elevation>10</elevation>
<population year="1990" measured="census">422357</population>
<population year="1994">523000</population>
<population year="2000" measured="census">537842</population>
<population year="2012" measured="admin.">876958</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
<city id="cty-Turkey-25" country="TR" province="prov-Turkey-36">
<name>Tarsus</name>
<latitude>36.92</latitude>
<longitude>34.9</longitude>
<population year="1990" measured="census">187508</population>
<population year="1994">225000</population>
<population year="2000" measured="census">216382</population>
<population year="2012" measured="admin.">245671</population>
</city>
</province>
<province id="prov-Turkey-37" country="TR" capital="cty-Turkey-39">
<name>Isparta</name>
<area>8871</area>
<population year="1994">434771</population>
<population measured="census" year="2000">513681</population>
<population measured="census" year="2007">419845</population>
<population measured="admin." year="2012">416663</population>
<city id="cty-Turkey-39" country="TR" province="prov-Turkey-37">
<name>Isparta</name>
<latitude>37.76</latitude>
<longitude>30.56</longitude>
<elevation>1049</elevation>
<population year="1990" measured="census">112117</population>
<population year="1994">120900</population>
<population year="2000" measured="census">148496</population>
<population year="2012" measured="admin.">198385</population>
</city>
</province>
<province id="prov-Turkey-38" country="TR" capital="cty-Turkey-Istanbul">
<name>İstanbul</name>
<area>5315</area>
<population year="1994">7615500</population>
<population measured="census" year="2000">10018735</population>
<population measured="census" year="2007">12573836</population>
<population measured="admin." year="2012">13854740</population>
<city id="cty-Turkey-Istanbul" country="TR" province="prov-Turkey-38">
<name>İstanbul</name>
<latitude>41.01</latitude>
<longitude>28.96</longitude>
<elevation>40</elevation>
<population year="1990" measured="census">6629431</population>
<population year="1994">7615500</population>
<population year="2000" measured="census">8803468</population>
<population year="2012" measured="admin.">13710512</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
<located_at watertype="sea" sea="sea-Marmarameer"/>
</city>
</province>
<province id="prov-Turkey-39" country="TR" capital="cty-Turkey-Izmir">
<name>İzmir</name>
<area>12015</area>
<population year="1994">2694770</population>
<population measured="census" year="2000">3370866</population>
<population measured="census" year="2007">3739353</population>
<population measured="admin." year="2012">4005459</population>
<city id="cty-Turkey-Izmir" country="TR" province="prov-Turkey-39">
<name>İzmir</name>
<latitude>38.42</latitude>
<longitude>27.13</longitude>
<elevation>25</elevation>
<population year="1990" measured="census">1758780</population>
<population year="1994">1985300</population>
<population year="2000" measured="census">2232265</population>
<population year="2012" measured="admin.">3401994</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</province>
<province id="prov-Turkey-40" country="TR" capital="cty-Turkey-Karaman">
<name>Karaman</name>
<area>8868</area>
<population year="1994">217536</population>
<population measured="census" year="2000">243210</population>
<population measured="census" year="2007">226049</population>
<population measured="admin." year="2012">235424</population>
<city id="cty-Turkey-Karaman" country="TR" province="prov-Turkey-40">
<name>Karaman</name>
<latitude>37.18</latitude>
<longitude>33.22</longitude>
<population year="1990" measured="census">76525</population>
<population year="2000" measured="census">105384</population>
<population year="2012" measured="admin.">141630</population>
</city>
</province>
<province id="prov-Turkey-41" country="TR" capital="cty-Turkey-21">
<name>Kahramanmaraş</name>
<area>14456</area>
<population year="1994">892952</population>
<population measured="census" year="2000">1002384</population>
<population measured="census" year="2007">1004414</population>
<population measured="admin." year="2012">1063174</population>
<city id="cty-Turkey-21" country="TR" province="prov-Turkey-41">
<name>Kahramanmaraş</name>
<latitude>37.58</latitude>
<longitude>36.93</longitude>
<elevation>67</elevation>
<population year="1990" measured="census">228129</population>
<population year="1994">242200</population>
<population year="2000" measured="census">326198</population>
<population year="2012" measured="admin.">443575</population>
</city>
</province>
<province id="prov-Turkey-42" country="TR" capital="cty-Turkey-Kars">
<name>Kars</name>
<area>10139</area>
<population measured="census" year="2000">325016</population>
<population measured="census" year="2007">312205</population>
<population measured="admin." year="2012">304821</population>
<city id="cty-Turkey-Kars" country="TR" province="prov-Turkey-42">
<name>Kars</name>
<latitude>40.62</latitude>
<longitude>43.1</longitude>
<elevation>1768</elevation>
<population year="1990" measured="census">78455</population>
<population year="2000" measured="census">78473</population>
<population year="2012" measured="admin.">78100</population>
</city>
</province>
<province id="prov-Turkey-43" country="TR" capital="cty-Turkey-Kastamonu">
<name>Kastamonu</name>
<area>13157</area>
<population measured="census" year="2000">375476</population>
<population measured="census" year="2007">360366</population>
<population measured="admin." year="2012">359808</population>
<city id="cty-Turkey-Kastamonu" country="TR" province="prov-Turkey-43">
<name>Kastamonu</name>
<latitude>41.38</latitude>
<longitude>33.78</longitude>
<elevation>800</elevation>
<population year="1990" measured="census">51560</population>
<population year="2000" measured="census">64606</population>
<population year="2012" measured="admin.">96217</population>
</city>
</province>
<province id="prov-Turkey-44" country="TR" capital="cty-Turkey-11">
<name>Kayseri</name>
<area>17109</area>
<population year="1994">943484</population>
<population measured="census" year="2000">1060432</population>
<population measured="census" year="2007">1165088</population>
<population measured="admin." year="2012">1274968</population>
<city id="cty-Turkey-11" country="TR" province="prov-Turkey-44">
<name>Kayseri</name>
<latitude>38.73</latitude>
<longitude>35.48</longitude>
<elevation>1050</elevation>
<population year="1990" measured="census">425776</population>
<population year="1994">454000</population>
<population year="2000" measured="census">536392</population>
<population year="2012" measured="admin.">1004276</population>
</city>
</province>
<province id="prov-Turkey-45" country="TR" capital="cty-Turkey-32">
<name>Kırıkkale</name>
<area>4569</area>
<population year="1994">349396</population>
<population measured="census" year="2000">383508</population>
<population measured="census" year="2007">280234</population>
<population measured="admin." year="2012">274727</population>
<city id="cty-Turkey-32" country="TR" province="prov-Turkey-45">
<name>Kirikkale</name>
<latitude>39.84</latitude>
<longitude>33.51</longitude>
<population year="1990" measured="census">185431</population>
<population year="1994">170300</population>
<population year="2000" measured="census">205078</population>
<population year="2012" measured="admin.">192473</population>
</city>
</province>
<province id="prov-Turkey-46" country="TR" capital="cty-Turkey-Kirklareli">
<name>Kırklareli</name>
<area>6299</area>
<population year="1994">309512</population>
<population measured="census" year="2000">328461</population>
<population measured="census" year="2007">333256</population>
<population measured="admin." year="2012">341218</population>
<city id="cty-Turkey-Kirklareli" country="TR" province="prov-Turkey-46">
<name>Kirklareli</name>
<latitude>41.73</latitude>
<longitude>27.23</longitude>
<elevation>203</elevation>
</city>
<city id="cty-Turkey-Luleburgaz" country="TR" province="prov-Turkey-46">
<name>Lüleburgaz</name>
<latitude>41.41</latitude>
<longitude>27.36</longitude>
<elevation>30</elevation>
<population year="1990" measured="census">52384</population>
<population year="2000" measured="census">79002</population>
<population year="2012" measured="admin.">105279</population>
</city>
</province>
<province id="prov-Turkey-47" country="TR" capital="cty-Turkey-Kirsehir">
<name>Kırşehir</name>
<area>6530</area>
<population measured="census" year="2000">253239</population>
<population measured="census" year="2007">223170</population>
<population measured="admin." year="2012">221209</population>
<city id="cty-Turkey-Kirsehir" country="TR" province="prov-Turkey-47">
<name>Kirsehir</name>
<latitude>39.15</latitude>
<longitude>34.16</longitude>
<population year="1990" measured="census">73538</population>
<population year="2000" measured="census">88105</population>
<population year="2012" measured="admin.">114244</population>
</city>
</province>
<province id="prov-Turkey-48" country="TR" capital="cty-Turkey-18">
<name>Kocaeli</name>
<area>3625</area>
<population year="1994">955982</population>
<population measured="census" year="2000">1206085</population>
<population measured="census" year="2007">1437926</population>
<population measured="admin." year="2012">1634691</population>
<city id="cty-Turkey-18" country="TR" province="prov-Turkey-48">
<name>Kocaeli</name>
<name>Izmit</name>
<latitude>40.77</latitude>
<longitude>29.92</longitude>
<elevation>100</elevation>
<population year="1990" measured="census">190741</population>
<population year="1994">275800</population>
<population year="2000" measured="census">195699</population>
<population year="2012" measured="admin.">1527407</population>
<located_at watertype="sea" sea="sea-Marmarameer"/>
</city>
<city id="cty-Turkey-23" country="TR" province="prov-Turkey-48">
<name>Gebze</name>
<latitude>40.8</latitude>
<longitude>29.43</longitude>
<population year="1990" measured="census">159116</population>
<population year="1994">237300</population>
<population year="2000" measured="census">253487</population>
<population year="2010" measured="admin.">290868</population>
<located_at watertype="sea" sea="sea-Marmarameer"/>
</city>
</province>
<province id="prov-Turkey-49" country="TR" capital="cty-Turkey-8">
<name>Konya</name>
<area>40813</area>
<population year="1994">1750303</population>
<population measured="census" year="2000">2192166</population>
<population measured="census" year="2007">1959082</population>
<population measured="admin." year="2012">2052281</population>
<city id="cty-Turkey-8" country="TR" province="prov-Turkey-49">
<name>Konya</name>
<latitude>37.87</latitude>
<longitude>32.48</longitude>
<elevation>1200</elevation>
<population year="1990" measured="census">513346</population>
<population year="1994">576000</population>
<population year="2000" measured="census">742690</population>
<population year="2012" measured="admin.">1107886</population>
</city>
</province>
<province id="prov-Turkey-50" country="TR" capital="cty-Turkey-35">
<name>Kütahya</name>
<area>12013</area>
<population year="1994">578020</population>
<population measured="census" year="2000">656903</population>
<population measured="census" year="2007">583910</population>
<population measured="admin." year="2012">573421</population>
<city id="cty-Turkey-35" country="TR" province="prov-Turkey-50">
<name>Kütahya</name>
<latitude>39.42</latitude>
<longitude>29.98</longitude>
<elevation>930</elevation>
<population year="1990" measured="census">130944</population>
<population year="1994">140700</population>
<population year="2000" measured="census">166665</population>
<population year="2012" measured="admin.">224898</population>
</city>
</province>
<province id="prov-Turkey-51" country="TR" capital="cty-Turkey-17">
<name>Malatya</name>
<area>12102</area>
<population year="1994">702055</population>
<population measured="census" year="2000">853658</population>
<population measured="census" year="2007">722065</population>
<population measured="admin." year="2012">762366</population>
<city id="cty-Turkey-17" country="TR" province="prov-Turkey-51">
<name>Malatya</name>
<latitude>38.35</latitude>
<longitude>38.3</longitude>
<elevation>954</elevation>
<population year="1990" measured="census">270412</population>
<population year="1994">319700</population>
<population year="2000" measured="census">381081</population>
<population year="2012" measured="admin.">426381</population>
</city>
</province>
<province id="prov-Turkey-52" country="TR" capital="cty-Turkey-29">
<name>Manisa</name>
<area>13228</area>
<population year="1994">1154418</population>
<population measured="census" year="2000">1260169</population>
<population measured="census" year="2007">1319920</population>
<population measured="admin." year="2012">1346162</population>
<city id="cty-Turkey-29" country="TR" province="prov-Turkey-52">
<name>Manisa</name>
<latitude>38.63</latitude>
<longitude>27.42</longitude>
<population year="1990" measured="census">158928</population>
<population year="1994">187500</population>
<population year="2000" measured="census">214345</population>
<population year="2012" measured="admin.">309050</population>
</city>
</province>
<province id="prov-Turkey-53" country="TR" capital="cty-Turkey-Mardin">
<name>Mardin</name>
<area>8806</area>
<population year="1994">557727</population>
<population measured="census" year="2000">705098</population>
<population measured="census" year="2007">745778</population>
<population measured="admin." year="2012">773026</population>
<city id="cty-Turkey-Mardin" country="TR" province="prov-Turkey-53">
<name>Mardin</name>
<latitude>37.32</latitude>
<longitude>40.74</longitude>
<elevation>1083</elevation>
<population year="1990" measured="census">53005</population>
<population year="2000" measured="census">65072</population>
<population year="2012" measured="admin.">86948</population>
</city>
<city id="cty-Turkey-Kiziltepe" country="TR" province="prov-Turkey-53">
<name>Kızıltepe</name>
<latitude>37.19</latitude>
<longitude>40.59</longitude>
<population year="1990" measured="census">60134</population>
<population year="2000" measured="census">113143</population>
<population year="2012" measured="admin.">147585</population>
</city>
</province>
<province id="prov-Turkey-54" country="TR" capital="cty-Turkey-Mugla">
<name>Muğla</name>
<area>12949</area>
<population year="1994">562809</population>
<population measured="census" year="2000">715328</population>
<population measured="census" year="2007">766156</population>
<population measured="admin." year="2012">851145</population>
<city id="cty-Turkey-Mugla" country="TR" province="prov-Turkey-54">
<name>Mugla</name>
<latitude>37.22</latitude>
<longitude>28.37</longitude>
<elevation>660</elevation>
</city>
</province>
<province id="prov-Turkey-55" country="TR" capital="cty-Turkey-Mus">
<name>Muş</name>
<area>8067</area>
<population year="1994">376543</population>
<population measured="census" year="2000">453654</population>
<population measured="census" year="2007">405509</population>
<population measured="admin." year="2012">413260</population>
<city id="cty-Turkey-Mus" country="TR" province="prov-Turkey-55">
<name>Mus</name>
<latitude>38.73</latitude>
<longitude>41.49</longitude>
<population year="1990" measured="census">44019</population>
<population year="2000" measured="census">67927</population>
<population year="2012" measured="admin.">81764</population>
<located_at watertype="river" river="river-Murat"/>
</city>
</province>
<province id="prov-Turkey-56" country="TR" capital="cty-Turkey-Nevsehir">
<name>Nevşehir</name>
<area>5391</area>
<population year="1994">289509</population>
<population measured="census" year="2000">309914</population>
<population measured="census" year="2007">280058</population>
<population measured="admin." year="2012">285190</population>
<city id="cty-Turkey-Nevsehir" country="TR" province="prov-Turkey-56">
<name>Nevsehir</name>
<latitude>38.63</latitude>
<longitude>34.71</longitude>
<population year="1990" measured="census">52719</population>
<population year="2000" measured="census">67864</population>
<population year="2012" measured="admin.">92068</population>
</city>
</province>
<province id="prov-Turkey-57" country="TR" capital="cty-Turkey-Nigde">
<name>Niğde</name>
<area>7365</area>
<population year="1994">305861</population>
<population measured="census" year="2000">348081</population>
<population measured="census" year="2007">331677</population>
<population measured="admin." year="2012">340270</population>
<city id="cty-Turkey-Nigde" country="TR" province="prov-Turkey-57">
<name>Nigde</name>
<latitude>37.97</latitude>
<longitude>34.68</longitude>
<elevation>1229</elevation>
<population year="1990" measured="census">55035</population>
<population year="2000" measured="census">78088</population>
<population year="2012" measured="admin.">118186</population>
</city>
</province>
<province id="prov-Turkey-58" country="TR" capital="cty-Turkey-41">
<name>Ordu</name>
<area>5952</area>
<population year="1994">830105</population>
<population measured="census" year="2000">887765</population>
<population measured="census" year="2007">715409</population>
<population measured="admin." year="2012">741371</population>
<city id="cty-Turkey-41" country="TR" province="prov-Turkey-58">
<name>Ordu</name>
<latitude>40.98</latitude>
<longitude>37.88</longitude>
<elevation>5</elevation>
<population year="1990" measured="census">102107</population>
<population year="1994">121300</population>
<population year="2000" measured="census">112525</population>
<population year="2012" measured="admin.">147913</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
</province>
<province id="prov-Turkey-59" country="TR" capital="cty-Turkey-Rize">
<name>Rize</name>
<area>3921</area>
<population year="1994">348776</population>
<population measured="census" year="2000">365938</population>
<population measured="census" year="2007">316252</population>
<population measured="admin." year="2012">324152</population>
<city id="cty-Turkey-Rize" country="TR" province="prov-Turkey-59">
<name>Rize</name>
<latitude>41.02</latitude>
<longitude>40.52</longitude>
<elevation>6</elevation>
<population year="1990" measured="census">52743</population>
<population year="2000" measured="census">78144</population>
<population year="2012" measured="admin.">104508</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
</province>
<province id="prov-Turkey-60" country="TR" capital="cty-Turkey-30">
<name>Sakarya</name>
<area>4880</area>
<population year="1994">683061</population>
<population measured="census" year="2000">756168</population>
<population measured="census" year="2007">835222</population>
<population measured="admin." year="2012">902267</population>
<city id="cty-Turkey-30" country="TR" province="prov-Turkey-60">
<name>Sakarya</name>
<name>Adapazari</name>
<latitude>40.78</latitude>
<longitude>30.4</longitude>
<elevation>31</elevation>
<population year="1990" measured="census">272039</population>
<population year="1994">186000</population>
<population year="2000" measured="census">283752</population>
<population year="2012" measured="admin.">590498</population>
</city>
</province>
<province id="prov-Turkey-61" country="TR" capital="cty-Turkey-16">
<name>Samsun</name>
<area>9364</area>
<population year="1994">1158400</population>
<population measured="census" year="2000">1209137</population>
<population measured="census" year="2007">1228959</population>
<population measured="admin." year="2012">1251722</population>
<city id="cty-Turkey-16" country="TR" province="prov-Turkey-61">
<name>Samsun</name>
<latitude>41.28</latitude>
<longitude>36.33</longitude>
<population year="1990" measured="census">304176</population>
<population year="1994">326900</population>
<population year="2000" measured="census">363180</population>
<population year="2012" measured="admin.">547778</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
</province>
<province id="prov-Turkey-62" country="TR" capital="cty-Turkey-15">
<name>Şanlıurfa</name>
<area>19336</area>
<population year="1994">1001455</population>
<population measured="census" year="2000">1443422</population>
<population measured="census" year="2007">1523099</population>
<population measured="admin." year="2012">1762075</population>
<city id="cty-Turkey-15" country="TR" province="prov-Turkey-62">
<name>Şanlıurfa</name>
<name>Urfa</name>
<latitude>37.16</latitude>
<longitude>38.79</longitude>
<elevation>477</elevation>
<population year="1990" measured="census">276528</population>
<population year="1994">357900</population>
<population year="2000" measured="census">385588</population>
<population year="2012" measured="admin.">526247</population>
</city>
</province>
<province id="prov-Turkey-63" country="TR" capital="cty-Turkey-Siirt">
<name>Siirt</name>
<area>5473</area>
<population year="1994">243435</population>
<population measured="census" year="2000">263676</population>
<population measured="census" year="2007">291528</population>
<population measured="admin." year="2012">310879</population>
<city id="cty-Turkey-Siirt" country="TR" province="prov-Turkey-63">
<name>Siirt</name>
<latitude>37.92</latitude>
<longitude>41.95</longitude>
<elevation>895</elevation>
<population year="1990" measured="census">68320</population>
<population year="2000" measured="census">98281</population>
<population year="2012" measured="admin.">135350</population>
</city>
</province>
<province id="prov-Turkey-64" country="TR" capital="cty-Turkey-Sinop">
<name>Sinop</name>
<area>5816</area>
<population measured="census" year="2000">225574</population>
<population measured="census" year="2007">198412</population>
<population measured="admin." year="2012">201311</population>
<city id="cty-Turkey-Sinop" country="TR" province="prov-Turkey-64">
<name>Sinop</name>
<latitude>42.03</latitude>
<longitude>35.15</longitude>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
</province>
<province id="prov-Turkey-65" country="TR" capital="cty-Turkey-Sirnak">
<name>Şırnak</name>
<area>7151</area>
<population year="1994">262006</population>
<population measured="census" year="2000">353197</population>
<population measured="census" year="2007">416001</population>
<population measured="admin." year="2012">466982</population>
<city id="cty-Turkey-Sirnak" country="TR" province="prov-Turkey-65">
<name>Sirnak</name>
<latitude>37.52</latitude>
<longitude>42.46</longitude>
<elevation>1650</elevation>
</city>
</province>
<province id="prov-Turkey-66" country="TR" capital="cty-Turkey-22">
<name>Sivas</name>
<area>28567</area>
<population measured="census" year="2000">755091</population>
<population measured="census" year="2007">638464</population>
<population measured="admin." year="2012">623535</population>
<city id="cty-Turkey-22" country="TR" province="prov-Turkey-66">
<name>Sivas</name>
<latitude>39.75</latitude>
<longitude>37.02</longitude>
<elevation>1285</elevation>
<population year="1990" measured="census">223115</population>
<population year="1994">240100</population>
<population year="2000" measured="census">251776</population>
<population year="2012" measured="admin.">312587</population>
</city>
</province>
<province id="prov-Turkey-67" country="TR" capital="cty-Turkey-Tekirdag">
<name>Tekirdağ</name>
<area>6342</area>
<population year="1994">468842</population>
<population measured="census" year="2000">623591</population>
<population measured="census" year="2007">728396</population>
<population measured="admin." year="2012">852321</population>
<city id="cty-Turkey-Tekirdag" country="TR" province="prov-Turkey-67">
<name>Tekirdag</name>
<latitude>40.98</latitude>
<longitude>27.52</longitude>
<population year="1990" measured="census">80442</population>
<population year="2000" measured="census">107191</population>
<population year="2012" measured="admin.">150112</population>
<located_at watertype="sea" sea="sea-Marmarameer"/>
</city>
<city id="cty-Turkey-Corlu" country="TR" province="prov-Turkey-67">
<name>Çorlu</name>
<latitude>41.15</latitude>
<longitude>27.8</longitude>
<elevation>10</elevation>
<population year="1990" measured="census">74681</population>
<population year="2000" measured="census">141525</population>
<population year="2012" measured="admin.">235354</population>
<located_at watertype="sea" sea="sea-Marmarameer"/>
</city>
</province>
<province id="prov-Turkey-68" country="TR" capital="cty-Turkey-Tokat">
<name>Tokat</name>
<area>10072</area>
<population year="1994">719251</population>
<population measured="census" year="2000">828027</population>
<population measured="census" year="2007">620722</population>
<population measured="admin." year="2012">613990</population>
<city id="cty-Turkey-Tokat" country="TR" province="prov-Turkey-68">
<name>Tokat</name>
<latitude>40.31</latitude>
<longitude>36.55</longitude>
<elevation>623</elevation>
<population year="1990" measured="census">83058</population>
<population year="2000" measured="census">113100</population>
<population year="2012" measured="admin.">132437</population>
</city>
</province>
<province id="prov-Turkey-69" country="TR" capital="cty-Turkey-34">
<name>Trabzon</name>
<area>4664</area>
<population year="1994">795849</population>
<population measured="census" year="2000">975137</population>
<population measured="census" year="2007">740569</population>
<population measured="admin." year="2012">757898</population>
<city id="cty-Turkey-34" country="TR" province="prov-Turkey-69">
<name>Trabzon</name>
<latitude>41</latitude>
<longitude>39.73</longitude>
<elevation>5</elevation>
<population year="1990" measured="census">161886</population>
<population year="1994">145400</population>
<population year="2000" measured="census">214949</population>
<population year="2012" measured="admin.">243735</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
</province>
<province id="prov-Turkey-70" country="TR" capital="cty-Turkey-Tunceli">
<name>Tunceli</name>
<area>7685</area>
<population measured="census" year="2000">93584</population>
<population measured="census" year="2007">84022</population>
<population measured="admin." year="2012">86276</population>
<city id="cty-Turkey-Tunceli" country="TR" province="prov-Turkey-70">
<name>Tunceli</name>
<latitude>39.1</latitude>
<longitude>39.55</longitude>
<elevation>940</elevation>
</city>
</province>
<province id="prov-Turkey-71" country="TR" capital="cty-Turkey-43">
<name>Uşak</name>
<area>5363</area>
<population year="1994">290283</population>
<population measured="census" year="2000">322313</population>
<population measured="census" year="2007">334115</population>
<population measured="admin." year="2012">342269</population>
<city id="cty-Turkey-43" country="TR" province="prov-Turkey-71">
<name>Usak</name>
<latitude>38.68</latitude>
<longitude>29.4</longitude>
<elevation>890</elevation>
<population year="1990" measured="census">105270</population>
<population year="1994">119900</population>
<population year="2000" measured="census">137001</population>
<population year="2012" measured="admin.">187886</population>
</city>
</province>
<province id="prov-Turkey-72" country="TR" capital="cty-Turkey-27">
<name>Van</name>
<area>19414</area>
<population year="1994">637433</population>
<population measured="census" year="2000">877524</population>
<population measured="census" year="2007">979671</population>
<population measured="admin." year="2012">1051975</population>
<city id="cty-Turkey-27" country="TR" province="prov-Turkey-72">
<name>Van</name>
<latitude>38.49</latitude>
<longitude>43.38</longitude>
<elevation>1730</elevation>
<population year="1990" measured="census">155623</population>
<population year="1994">194600</population>
<population year="2000" measured="census">284464</population>
<population year="2012" measured="admin.">370190</population>
<located_at watertype="lake" lake="lake-Vansee"/>
</city>
</province>
<province id="prov-Turkey-73" country="TR" capital="cty-Turkey-Yozgat">
<name>Yozgat</name>
<area>14074</area>
<population year="1994">579150</population>
<population measured="census" year="2000">682919</population>
<population measured="census" year="2007">492127</population>
<population measured="admin." year="2012">453211</population>
<city id="cty-Turkey-Yozgat" country="TR" province="prov-Turkey-73">
<name>Yozgat</name>
<latitude>39.82</latitude>
<longitude>34.81</longitude>
<elevation>1300</elevation>
<population year="1990" measured="census">50335</population>
<population year="2000" measured="census">73930</population>
<population year="2012" measured="admin.">78328</population>
</city>
</province>
<province id="prov-Turkey-74" country="TR" capital="cty-Turkey-44">
<name>Zonguldak</name>
<area>3309</area>
<population measured="census" year="2000">615599</population>
<population measured="census" year="2007">615890</population>
<population measured="admin." year="2012">606527</population>
<city id="cty-Turkey-44" country="TR" province="prov-Turkey-74">
<name>Zonguldak</name>
<latitude>41.46</latitude>
<longitude>31.8</longitude>
<elevation>60</elevation>
<population year="1990" measured="census">117975</population>
<population year="1994">115900</population>
<population year="2000" measured="census">104276</population>
<population year="2012" measured="admin.">109080</population>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
</province>
<province id="prov-Turkey-75" country="TR" capital="cty-Turkey-Bartin">
<name>Bartın</name>
<area>2080</area>
<population measured="census" year="2000">184178</population>
<population measured="census" year="2007">182131</population>
<population measured="admin." year="2012">188436</population>
<city id="cty-Turkey-Bartin" country="TR" province="prov-Turkey-75">
<name>Bartin</name>
<latitude>41.63</latitude>
<longitude>32.34</longitude>
<elevation>25</elevation>
<located_at watertype="sea" sea="sea-Schwarzes_Meer"/>
</city>
</province>
<province id="prov-Turkey-76" country="TR" capital="cty-Turkey-Karabuk">
<name>Karabük</name>
<area>4108</area>
<population measured="census" year="2000">225102</population>
<population measured="census" year="2007">218463</population>
<population measured="admin." year="2012">225145</population>
<city id="cty-Turkey-Karabuk" country="TR" province="prov-Turkey-76">
<name>Karabük</name>
<latitude>41.2</latitude>
<longitude>32.63</longitude>
<population year="1990" measured="census">105373</population>
<population year="1994">113900</population>
<population year="2000" measured="census">100749</population>
<population year="2012" measured="admin.">110537</population>
</city>
</province>
<province id="prov-Turkey-77" country="TR" capital="cty-Turkey-Ardahan">
<name>Ardahan</name>
<area>4967</area>
<population measured="census" year="2000">133756</population>
<population measured="census" year="2007">112721</population>
<population measured="admin." year="2012">106643</population>
<city id="cty-Turkey-Ardahan" country="TR" province="prov-Turkey-77">
<name>Ardahan</name>
<latitude>41.11</latitude>
<longitude>42.7</longitude>
<elevation>1900</elevation>
</city>
</province>
<province id="prov-Turkey-78" country="TR" capital="cty-Turkey-Igdir">
<name>Iğdır</name>
<area>3587</area>
<population measured="census" year="2000">168634</population>
<population measured="census" year="2007">181866</population>
<population measured="admin." year="2012">190409</population>
<city id="cty-Turkey-Igdir" country="TR" province="prov-Turkey-78">
<name>Iğdır</name>
<latitude>39.92</latitude>
<longitude>44.04</longitude>
<elevation>861</elevation>
<population year="1990" measured="census">38917</population>
<population year="2000" measured="census">59880</population>
<population year="2012" measured="admin.">82656</population>
</city>
</province>
<province id="prov-Turkey-79" country="TR" capital="cty-Turkey-Yalova">
<name>Yalova</name>
<area>850</area>
<population measured="census" year="2000">168593</population>
<population measured="census" year="2007">181758</population>
<population measured="admin." year="2012">211799</population>
<city id="cty-Turkey-Yalova" country="TR" province="prov-Turkey-79">
<name>Yalova</name>
<latitude>40.66</latitude>
<longitude>29.28</longitude>
<population year="1990" measured="census">65823</population>
<population year="2000" measured="census">70118</population>
<population year="2012" measured="admin.">102874</population>
<located_at watertype="sea" sea="sea-Marmarameer"/>
</city>
</province>
<province id="prov-Turkey-80" country="TR" capital="cty-Turkey-Kilis">
<name>Kilis</name>
<area>1427</area>
<population measured="census" year="2000">114724</population>
<population measured="census" year="2007">118457</population>
<population measured="admin." year="2012">124320</population>
<city id="cty-Turkey-Kilis" country="TR" province="prov-Turkey-80">
<name>Kilis</name>
<latitude>36.72</latitude>
<longitude>37.12</longitude>
<elevation>663</elevation>
<population year="1990" measured="census">84077</population>
<population year="2000" measured="census">70670</population>
<population year="2012" measured="admin.">85119</population>
</city>
</province>
<province id="prov-Turkey-81" country="TR" capital="cty-Turkey-Duzce">
<name>Düzce</name>
<area>2592</area>
<population measured="census" year="2000">314266</population>
<population measured="census" year="2007">323328</population>
<population measured="admin." year="2012">346493</population>
<city id="cty-Turkey-Duzce" country="TR" province="prov-Turkey-81">
<name>Düzce</name>
<latitude>40.84</latitude>
<longitude>31.16</longitude>
<population year="1990" measured="census">65209</population>
<population year="2000" measured="census">56649</population>
<population year="2012" measured="admin.">135557</population>
</city>
</province>
<province id="prov-Turkey-82" country="TR" capital="cty-Turkey-Osmaniye">
<name>Osmaniye</name>
<area>3195</area>
<population measured="census" year="2000">458782</population>
<population measured="census" year="2007">452880</population>
<population measured="admin." year="2012">492135</population>
<city id="cty-Turkey-Osmaniye" country="TR" province="prov-Turkey-82">
<name>Osmaniye</name>
<latitude>37.08</latitude>
<longitude>36.25</longitude>
<population year="1990" measured="census">122307</population>
<population year="1994">138000</population>
<population year="2000" measured="census">173977</population>
<population year="2012" measured="admin.">209255</population>
</city>
</province>
</country>
<country car_code="DK"
area="43070"
capital="cty-Denmark-Copenhagen"
memberships="org-AfDB org-ADB org-AG org-BIS org-CD org-CE org-CBSS org-EAPC org-EBRD org-EIB org-CERN org-ESA org-EU org-EITI org-FATF org-FAO org-G-9 org-IADB org-IGAD org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-ITUC org-MIGA org-NC org-NIB org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNMIL org-UNMISS org-UNRWA org-UNTSO org-UPU org-WCO org-WHO org-WIPO org-WMO org-WTO org-ZC">
<name>Denmark</name>
<localname>Kongeriget Danmark</localname>
<population measured="census" year="1950">4281275</population>
<population measured="census" year="1955">4448401</population>
<population measured="census" year="1960">4585256</population>
<population measured="census" year="1965">4767597</population>
<population measured="census" year="1970">4937579</population>
<population measured="census" year="1981">5123989</population>
<population measured="census" year="1991">5146469</population>
<population measured="census" year="2001">5349212</population>
<population year="2006" measured="admin.">5427459</population>
<population year="2010" measured="admin.">5534738</population>
<population year="2012" measured="admin.">5580516</population>
<population year="2015" measured="admin.">5678348</population>
<population_growth>0.22</population_growth>
<infant_mortality>4.1</infant_mortality>
<gdp_total>324300</gdp_total>
<gdp_agri>1.5</gdp_agri>
<gdp_ind>21.7</gdp_ind>
<gdp_serv>76.8</gdp_serv>
<inflation>0.8</inflation>
<unemployment>6</unemployment>
<government>constitutional monarchy</government>
<encompassed continent="europe" percentage="100"/>
<religion percentage="95">Protestant</religion>
<religion percentage="2">Roman Catholic</religion>
<religion percentage="2">Muslim</religion>
<language percentage="98">Danish</language>
<language percentage="0.4">German</language>
<border country="D" length="68"/>
<province id="prov-DK-1" country="DK" capital="stadt-Aalborg-DK-DK">
<name>Nordjylland</name>
<area>7933</area>
<population measured="admin." year="2006">576802</population>
<population measured="admin." year="2010">579628</population>
<population measured="admin." year="2012">579996</population>
<population measured="admin." year="2015">583471</population>
<city id="stadt-Aalborg-DK-DK" country="DK" province="prov-DK-1">
<name>Ålborg</name>
<name>Aalborg</name>
<latitude>57.05</latitude>
<longitude>9.92</longitude>
<elevation>5</elevation>
<population year="1987">113865</population>
<population year="2001" measured="admin.">119996</population>
<population year="2010" measured="admin.">102312</population>
<population year="2012" measured="admin.">104885</population>
<population year="2015" measured="admin.">110495</population>
</city>
</province>
<province id="prov-DK-2" country="DK" capital="stadt-Viborg-DK-DK">
<name>Midtjylland</name>
<area>13124</area>
<population measured="admin." year="2006">1219741</population>
<population measured="admin." year="2010">1253998</population>
<population measured="admin." year="2012">1266682</population>
<population measured="admin." year="2015">1286679</population>
<city id="stadt-Viborg-DK-DK" country="DK" province="prov-DK-2">
<name>Viborg</name>
<latitude>56.45</latitude>
<longitude>9.4</longitude>
<elevation>51</elevation>
</city>
<city id="stadt-Aarhus-DK-DK" country="DK" province="prov-DK-2">
<name>Århus</name>
<name>Aarhus</name>
<latitude>56.15</latitude>
<longitude>10.22</longitude>
<elevation>5</elevation>
<population year="1987">194345</population>
<population year="2001" measured="admin.">218380</population>
<population year="2010" measured="admin.">242914</population>
<population year="2012" measured="admin.">252213</population>
<population year="2015" measured="admin.">261570</population>
<located_at watertype="sea" sea="sea-Kattegat"/>
</city>
<city id="stadt-Randers-DK-DK" country="DK" province="prov-DK-2">
<name>Randers</name>
<latitude>56.46</latitude>
<longitude>10.04</longitude>
<elevation>56</elevation>
<population year="1987">55780</population>
<population year="2001" measured="admin.">56008</population>
<population year="2010" measured="admin.">60227</population>
<population year="2012" measured="admin.">61121</population>
<population year="2015" measured="admin.">61664</population>
<located_at watertype="sea" sea="sea-Kattegat"/>
</city>
</province>
<province id="prov-DK-3" country="DK" capital="stadt-Vejle-DK-DK">
<name>Syddanmark</name>
<area>12206</area>
<population measured="admin." year="2006">1185840</population>
<population measured="admin." year="2010">1200277</population>
<population measured="admin." year="2012">1201342</population>
<population measured="admin." year="2015">1208520</population>
<city id="stadt-Vejle-DK-DK" country="DK" province="prov-DK-3">
<name>Vejle</name>
<latitude>55.72</latitude>
<longitude>9.53</longitude>
<elevation>8</elevation>
<population year="2001" measured="admin.">48402</population>
<population year="2010" measured="admin.">50832</population>
<population year="2012" measured="admin.">51804</population>
<population year="2015" measured="admin.">53975</population>
<located_at watertype="sea" sea="sea-Kattegat"/>
</city>
<city id="stadt-Odense-DK-DK" country="DK" province="prov-DK-3">
<name>Odense</name>
<latitude>55.4</latitude>
<longitude>10.39</longitude>
<elevation>13</elevation>
<population year="1987">136803</population>
<population year="2001" measured="admin.">144849</population>
<population year="2010" measured="admin.">166305</population>
<population year="2012" measured="admin.">168798</population>
<population year="2015" measured="admin.">173814</population>
<located_on island="island-Fuenen"/>
</city>
<city id="stadt-Esbjerg-DK-DK" country="DK" province="prov-DK-3">
<name>Esbjerg</name>
<latitude>55.48</latitude>
<longitude>8.45</longitude>
<elevation>11</elevation>
<population year="1987">70975</population>
<population year="2001" measured="admin.">73046</population>
<population year="2010" measured="admin.">71459</population>
<population year="2012" measured="admin.">71579</population>
<population year="2015" measured="admin.">72060</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
</city>
</province>
<province id="prov-DK-4" country="DK" capital="stadt-Hilleroed-DK-DK">
<name>Hovedstaden</name>
<area>2561</area>
<population measured="admin." year="2006">1633565</population>
<population measured="admin." year="2010">1680271</population>
<population measured="admin." year="2012">1714589</population>
<population measured="admin." year="2015">1775479</population>
<city id="stadt-Hilleroed-DK-DK" country="DK" province="prov-DK-4">
<name>Hillerød</name>
<latitude>55.93</latitude>
<longitude>12.31</longitude>
<elevation>41</elevation>
<located_on island="island-Seeland"/>
</city>
<city id="cty-Denmark-Copenhagen" is_country_cap="yes" country="DK"
province="prov-DK-4">
<name>Copenhagen</name>
<name>København</name>
<name>Kopenhagen</name>
<latitude>55.6833</latitude>
<longitude>12.55</longitude>
<elevation>24</elevation>
<population year="2001" measured="admin.">499148</population>
<population year="2010" measured="admin.">528208</population>
<population year="2012" measured="admin.">549050</population>
<population year="2015" measured="admin.">580184</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
<located_on island="island-Seeland"/>
</city>
<city id="stadt-Helsingor-DK-DK" country="DK" province="prov-DK-4">
<name>Helsingør</name>
<name>Helsingör</name>
<name>Elsinore</name>
<latitude>56.03</latitude>
<longitude>12.62</longitude>
<elevation>8</elevation>
<located_at watertype="sea" sea="sea-Kattegat"/>
<located_at watertype="sea" sea="sea-Ostsee"/>
<located_on island="island-Seeland"/>
</city>
<city id="stadt-Ronne-DK-DK" country="DK" province="prov-DK-4">
<name>Ronne</name>
<name>Rønne</name>
<latitude>55.1</latitude>
<longitude>14.7</longitude>
<elevation>15</elevation>
<located_at watertype="sea" sea="sea-Ostsee"/>
<located_on island="island-Bornholm"/>
</city>
</province>
<province id="prov-DK-5" country="DK" capital="stadt-Soroe-DK-DK">
<name>Sjælland</name>
<area>7273</area>
<population measured="admin." year="2006">811511</population>
<population measured="admin." year="2010">820564</population>
<population measured="admin." year="2012">817907</population>
<population measured="admin." year="2015">824199</population>
<city id="stadt-Soroe-DK-DK" country="DK" province="prov-DK-5">
<name>Sorø</name>
<latitude>55.43</latitude>
<longitude>11.57</longitude>
<located_on island="island-Seeland"/>
</city>
</province>
</country>
<country car_code="EW"
area="45100"
capital="cty-Estonia-Tallinn"
memberships="org-AG org-BA org-BIS org-CD org-CE org-CBSS org-EMU org-EAPC org-EBRD org-ECB org-EIB org-ESA org-EU org-FAO org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMF org-IOC org-IOM org-OIF org-ITSO org-ITU org-ITUC org-MIGA org-NC org-NIB org-NATO org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNTSO org-UPU org-WCO org-WHO org-WIPO org-WMO org-WTO">
<name>Estonia</name>
<localname>Eesti Vabariik</localname>
<population measured="census" year="1881">881455</population>
<population measured="census" year="1897">958351</population>
<population measured="census" year="1922">1107059</population>
<population measured="census" year="1934">1126413</population>
<population measured="census" year="1959">1196791</population>
<population measured="census" year="1970">1356079</population>
<population measured="census" year="1979">1464476</population>
<population measured="census" year="1989">1565662</population>
<population measured="census" year="2000">1370052</population>
<population year="2010" measured="estimate">1340127</population>
<population measured="census" year="2011">1294455</population>
<population_growth>-0.68</population_growth>
<infant_mortality>6.7</infant_mortality>
<gdp_total>24280</gdp_total>
<gdp_agri>3.9</gdp_agri>
<gdp_ind>30</gdp_ind>
<gdp_serv>66.2</gdp_serv>
<inflation>3.4</inflation>
<unemployment>10.9</unemployment>
<indep_date from="Soviet Union">1991-09-06</indep_date>
<government>parliamentary republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="68.7">Estonian</ethnicgroup>
<ethnicgroup percentage="25.6">Russian</ethnicgroup>
<ethnicgroup percentage="2.1">Ukrainian</ethnicgroup>
<ethnicgroup percentage="1.2">Belorussian</ethnicgroup>
<ethnicgroup percentage="0.8">Finn</ethnicgroup>
<religion percentage="13.6">Protestant</religion>
<religion percentage="12.8">Christian Orthodox</religion>
<language percentage="67.3">Estonian</language>
<language percentage="29.7">Russian</language>
<border country="LV" length="267"/>
<border country="R" length="290"/>
<city id="cty-Estonia-Tallinn" country="EW">
<name>Tallinn</name>
<latitude>59.44</latitude>
<longitude>24.75</longitude>
<elevation>9</elevation>
<population year="1987">478000</population>
<population year="2000" measured="census">400378</population>
<population year="2007" measured="estimate">396852</population>
<population year="2010" measured="estimate">399340</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
<city id="cty-Estonia-Tartu" country="EW">
<name>Tartu</name>
<latitude>58.38</latitude>
<longitude>26.72</longitude>
<elevation>57.2</elevation>
<population year="2000" measured="census">100100</population>
<population year="2007" measured="estimate">101965</population>
<population year="2010" measured="estimate">103284</population>
</city>
</country>
<country car_code="FARX"
area="1400"
capital="cty-Faroe-Islands-Torshavn"
memberships="org-FAO org-IMO org-NC org-UNESCO org-UPU">
<name>Faroe Islands</name>
<localname>Føroyar</localname>
<population measured="census" year="1950">31781</population>
<population measured="census" year="1955">32456</population>
<population measured="census" year="1960">34596</population>
<population measured="census" year="1966">37122</population>
<population measured="census" year="1970">38612</population>
<population measured="census" year="1977">41969</population>
<population year="1997">43857</population>
<population year="2009" measured="admin.">48668</population>
<population year="2018" measured="admin.">50494</population>
<population_growth>0.49</population_growth>
<infant_mortality>5.71</infant_mortality>
<gdp_total>2320</gdp_total>
<gdp_agri>16</gdp_agri>
<gdp_ind>29</gdp_ind>
<gdp_serv>55</gdp_serv>
<inflation>2.3</inflation>
<unemployment>6.8</unemployment>
<dependent country="DK"/>
<government>part of the Danish realm</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="100">Scandinavian</ethnicgroup>
<religion percentage="100">Protestant</religion>
<city id="cty-Faroe-Islands-Torshavn" country="FARX">
<name>Tórshavn</name>
<latitude>62</latitude>
<longitude>-7</longitude>
<population year="2009" measured="admin.">12346</population>
<population year="2018" measured="admin.">13130</population>
<located_at watertype="sea" sea="sea-NorwegianSea"/>
<located_on island="island-Streymoy"/>
</city>
</country>
<country car_code="SF"
area="337030"
capital="cty-Finland-Helsinki"
memberships="org-AfDB org-ADB org-AG org-BIS org-CD org-CE org-CBSS org-EMU org-EAPC org-EBRD org-ECB org-EIB org-CERN org-ESA org-EU org-EITI org-FATF org-FAO org-G-9 org-IADB org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-ITUC org-MIGA org-NC org-NIB org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PFP org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNIFIL org-UNMOGIP org-UNMIL org-UNRWA org-UNTSO org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-WTO org-ZC">
<name>Finland</name>
<localname>Suomen tasavalta</localname>
<population measured="est." year="1950">4008299</population>
<population measured="est." year="1960">4430228</population>
<population measured="est." year="1970">4606740</population>
<population measured="est." year="1980">4779454</population>
<population measured="census" year="1990">4998478</population>
<population measured="census" year="2000">5181115</population>
<population year="2010" measured="est.">5375276</population>
<population year="2017" measured="admin.">5513130</population>
<population_growth>0.05</population_growth>
<infant_mortality>3.36</infant_mortality>
<gdp_total>259600</gdp_total>
<gdp_agri>2.9</gdp_agri>
<gdp_ind>25.1</gdp_ind>
<gdp_serv>71.9</gdp_serv>
<inflation>2.2</inflation>
<unemployment>8.1</unemployment>
<indep_date from="R">1917-12-06</indep_date>
<government>republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="93.4">Finn</ethnicgroup>
<ethnicgroup percentage="5.6">Swede</ethnicgroup>
<ethnicgroup percentage="0.5">Russian</ethnicgroup>
<ethnicgroup percentage="0.3">Estonian</ethnicgroup>
<religion percentage="82.5">Protestant</religion>
<religion percentage="1.1">Christian Orthodox</religion>
<language percentage="90.0">Finnish</language>
<language percentage="5.4">Swedish</language>
<language percentage="1.8">Russian</language>
<language percentage="0.6">Estonian</language>
<language percentage="0.3">English</language>
<language percentage="0.3">Arabic</language>
<language percentage="0.3">Somali</language>
<border country="R" length="1313"/>
<border country="N" length="729"/>
<border country="S" length="586"/>
<province id="prov-SF-1" country="SF" capital="city-Mariehamn-SF">
<name>Åland</name>
<area>1553</area>
<population measured="census" year="1990">24604</population>
<population measured="census" year="2000">25776</population>
<population measured="admin." year="2017">29214</population>
<city id="city-Mariehamn-SF" country="SF" province="prov-SF-1">
<name>Mariehamn</name>
<latitude>60.1</latitude>
<longitude>19.93</longitude>
<population year="1987">9600</population>
<population year="2007" measured="admin.">10851</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-SF-6" country="SF" capital="city-Haemeenlinna-SF">
<name>Kanta-Häme</name>
<area>5199</area>
<population measured="census" year="1990">162248</population>
<population measured="census" year="2000">165307</population>
<population measured="admin." year="2017">173781</population>
<city id="city-Haemeenlinna-SF" country="SF" province="prov-SF-6">
<name>Hämeenlinna</name>
<latitude>61</latitude>
<longitude>24.47</longitude>
<population year="1987">42000</population>
<population year="2007" measured="admin.">65421</population>
<population year="2009" measured="admin.">66455</population>
<population year="2012" measured="admin.">67270</population>
<population year="2014" measured="admin.">67803</population>
</city>
</province>
<province id="prov-SF-16" country="SF" capital="city-Lahti-SF">
<name>Päijät-Häme</name>
<area>5125</area>
<population measured="census" year="1990">197012</population>
<population measured="census" year="2000">197378</population>
<population measured="admin." year="2017">201685</population>
<city id="city-Lahti-SF" country="SF" province="prov-SF-16">
<name>Lahti</name>
<latitude>60.98</latitude>
<longitude>25.65</longitude>
<population year="1987">94234</population>
<population year="2007" measured="admin.">99308</population>
<population year="2009" measured="admin.">100854</population>
<population year="2012" measured="admin.">102308</population>
<population year="2014" measured="admin.">103396</population>
<located_at watertype="lake" lake="lake-Paeijaenne"/>
</city>
</province>
<province id="prov-SF-11" country="SF" capital="city-Tampere-SF">
<name>Pirkanmaa</name>
<area>12585</area>
<population measured="census" year="1990">427223</population>
<population measured="census" year="2000">450346</population>
<population measured="admin." year="2017">509356</population>
<city id="city-Tampere-SF" country="SF" province="prov-SF-11">
<name>Tampere</name>
<latitude>61.5</latitude>
<longitude>23.77</longitude>
<population year="2007" measured="admin.">207866</population>
<population year="2009" measured="admin.">211507</population>
<population year="2012" measured="admin.">215168</population>
<population year="2014" measured="admin.">220678</population>
<located_at watertype="river" river="river-Kokemaeenjoki"/>
</city>
</province>
<province id="prov-SF-15" country="SF" capital="city-Kuopio-SF">
<name>Pohjois-Savo</name>
<area>16768</area>
<population measured="census" year="1990">258633</population>
<population measured="census" year="2000">253759</population>
<population measured="admin." year="2017">247776</population>
<city id="city-Kuopio-SF" country="SF" province="prov-SF-15">
<name>Kuopio</name>
<latitude>62.89</latitude>
<longitude>27.68</longitude>
<population year="1987">78571</population>
<population year="2007" measured="admin.">91320</population>
<population year="2009" measured="admin.">92626</population>
<population year="2012" measured="admin.">97433</population>
<population year="2014" measured="admin.">106475</population>
</city>
</province>
<province id="prov-SF-2" country="SF" capital="city-Lappeenranta-SF">
<name>Etelä-Karjala</name>
<area>5327</area>
<population measured="census" year="1990">140244</population>
<population measured="census" year="2000">136299</population>
<population measured="admin." year="2017">130506</population>
<city id="city-Lappeenranta-SF" country="SF" province="prov-SF-2">
<name>Lappeenranta</name>
<latitude>61.07</latitude>
<longitude>28.18</longitude>
<population year="1987">53922</population>
<population year="2007" measured="admin.">71475</population>
<population year="2009" measured="admin.">71814</population>
<population year="2012" measured="admin.">72133</population>
<population year="2014" measured="admin.">72617</population>
<located_at watertype="lake" lake="lake-Saimaa"/>
</city>
</province>
<province id="prov-SF-9" country="SF" capital="city-Kouvola-SF">
<name>Kymenlaakso</name>
<area>5149</area>
<population measured="census" year="1990">193919</population>
<population measured="census" year="2000">187474</population>
<population measured="admin." year="2017">177659</population>
<city id="city-Kouvola-SF" country="SF" province="prov-SF-9">
<name>Kouvola</name>
<latitude>60.87</latitude>
<longitude>26.7</longitude>
<population year="2016" measured="admin.">85306</population>
<located_at watertype="river" river="river-Kymijoki"/>
</city>
</province>
<province id="prov-SF-10" country="SF" capital="city-Rovaniemi-SF">
<name>Lappia</name>
<area>92674</area>
<population measured="census" year="1990">200674</population>
<population measured="census" year="2000">191768</population>
<population measured="admin." year="2017">180207</population>
<city id="city-Rovaniemi-SF" country="SF" province="prov-SF-10">
<name>Rovaniemi</name>
<latitude>66.5</latitude>
<longitude>25.73</longitude>
<population year="2007" measured="admin.">58825</population>
<population year="2008">58825</population>
<population year="2009" measured="admin.">59848</population>
<population year="2012" measured="admin.">60637</population>
<population year="2014" measured="admin.">61244</population>
<located_at watertype="river" river="river-Ounasjoki river-Kemijoki"/>
</city>
</province>
<province id="prov-SF-4" country="SF" capital="city-Mikkeli-SF">
<name>Etelä-Savo</name>
<area>14257</area>
<population measured="census" year="1990">175233</population>
<population measured="census" year="2000">166575</population>
<population measured="admin." year="2017">148975</population>
<city id="city-Mikkeli-SF" country="SF" province="prov-SF-4">
<name>Mikkeli</name>
<latitude>61.68</latitude>
<longitude>27.27</longitude>
<population year="1987">28000</population>
<population year="2014" measured="admin.">54633</population>
<located_at watertype="lake" lake="lake-Saimaa"/>
</city>
</province>
<province id="prov-SF-8" country="SF" capital="city-Jyvaeskylae-SF">
<name>Keski-Suomi</name>
<area>16703</area>
<population measured="census" year="1990">257967</population>
<population measured="census" year="2000">265683</population>
<population measured="admin." year="2017">276196</population>
<city id="city-Jyvaeskylae-SF" country="SF" province="prov-SF-8">
<name>Jyväskylä</name>
<latitude>62.24</latitude>
<longitude>25.74</longitude>
<population year="1987">65511</population>
<population year="2007" measured="admin.">126546</population>
<population year="2009" measured="admin.">129623</population>
<population year="2012" measured="admin.">132062</population>
<population year="2014" measured="admin.">134862</population>
<located_at watertype="lake" lake="lake-Paeijaenne"/>
</city>
</province>
<province id="prov-SF-13" country="SF" capital="city-Joensuu-SF">
<name>Pohjols-Karjala</name>
<area>17761</area>
<population measured="census" year="1990">176836</population>
<population measured="census" year="2000">171609</population>
<population measured="admin." year="2017">164085</population>
<city id="city-Joensuu-SF" country="SF" province="prov-SF-13">
<name>Joensuu</name>
<latitude>62.6</latitude>
<longitude>29.75</longitude>
<population year="1987">44000</population>
<population year="2007" measured="admin.">72105</population>
<population year="2009" measured="admin.">72704</population>
<population year="2012" measured="admin.">73758</population>
<population year="2014" measured="admin.">74332</population>
</city>
</province>
<province id="prov-SF-5" country="SF" capital="city-Oulu-SF">
<name>Pohjois-Pohjanmaa</name>
<area>36815</area>
<population measured="census" year="1990">350799</population>
<population measured="census" year="2000">372639</population>
<population measured="admin." year="2017">411159</population>
<city id="city-Oulu-SF" country="SF" province="prov-SF-5">
<name>Oulu</name>
<latitude>65.02</latitude>
<longitude>25.47</longitude>
<population year="1987">97898</population>
<population year="2007" measured="admin.">135055</population>
<population year="2009" measured="admin.">139133</population>
<population year="2012" measured="admin.">143909</population>
<population year="2014" measured="admin.">194181</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
<located_at watertype="river" river="river-Oulujoki"/>
</city>
</province>
<province id="prov-SF-14" country="SF" capital="city-Kajaani-SF">
<name>Kainuu</name>
<area>20197</area>
<population measured="census" year="1990">92459</population>
<population measured="census" year="2000">85736</population>
<population measured="admin." year="2017">74803</population>
<city id="city-Kajaani-SF" country="SF" province="prov-SF-14">
<name>Kajaani</name>
<latitude>64.2</latitude>
<longitude>25.7</longitude>
<population year="1987">36056</population>
<population year="2017" measured="admin.">37304</population>
<located_at watertype="lake" lake="lake-Oulujaervi"/>
</city>
</province>
<province id="prov-SF-17" country="SF" capital="city-Pori-SF">
<name>Satakunta</name>
<area>7820</area>
<population measured="census" year="1990">240777</population>
<population measured="census" year="2000">232569</population>
<population measured="admin." year="2017">221740</population>
<city id="city-Pori-SF" country="SF" province="prov-SF-17">
<name>Pori</name>
<latitude>61.48</latitude>
<longitude>21.8</longitude>
<population year="2007" measured="admin.">82413</population>
<population year="2009" measured="admin.">82786</population>
<population year="2012" measured="admin.">83133</population>
<population year="2014" measured="admin.">83457</population>
<located_at watertype="river" river="river-Kokemaeenjoki"/>
</city>
</province>
<province id="prov-SF-19" country="SF" capital="city-Turku-SF">
<name>Varsinais-Suomi</name>
<area>10663</area>
<population measured="census" year="1990">425282</population>
<population measured="census" year="2000">447103</population>
<population measured="admin." year="2017">475543</population>
<city id="city-Turku-SF" country="SF" province="prov-SF-19">
<name>Turku</name>
<latitude>60.45</latitude>
<longitude>22.27</longitude>
<population year="1987">161292</population>
<population year="2007" measured="admin.">175286</population>
<population year="2009" measured="admin.">176087</population>
<population year="2012" measured="admin.">178630</population>
<population year="2014" measured="admin.">182154</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-SF-18" country="SF" capital="cty-Finland-Helsinki">
<name>Uusimaa</name>
<area>9097</area>
<population measured="census" year="1990">1232236</population>
<population measured="census" year="2000">1394199</population>
<population measured="admin." year="2017">1638293</population>
<city id="cty-Finland-Helsinki" country="SF" province="prov-SF-18">
<name>Helsinki</name>
<latitude>60.17</latitude>
<longitude>24.94</longitude>
<population year="1987">487428</population>
<population year="2007" measured="admin.">568531</population>
<population year="2009" measured="admin.">583350</population>
<population year="2012" measured="admin.">595384</population>
<population year="2014" measured="admin.">614535</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
<city id="city-Espoo-SF" country="SF" province="prov-SF-18">
<name>Espoo</name>
<latitude>60.21</latitude>
<longitude>24.66</longitude>
<population year="1987">160480</population>
<population year="2007" measured="admin.">238047</population>
<population year="2009" measured="admin.">244330</population>
<population year="2012" measured="admin.">252439</population>
<population year="2014" measured="admin.">261654</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-SF-12" country="SF" capital="city-Vaasa-SF">
<name>Pohjanmaa</name>
<area>7753</area>
<population measured="census" year="1990">172448</population>
<population measured="census" year="2000">173228</population>
<population measured="admin." year="2017">181441</population>
<city id="city-Vaasa-SF" country="SF" province="prov-SF-12">
<name>Vaasa</name>
<latitude>63.1</latitude>
<longitude>21.62</longitude>
<population year="2007" measured="admin.">57998</population>
<population year="2009" measured="admin.">59175</population>
<population year="2012" measured="admin.">60398</population>
<population year="2014" measured="admin.">66415</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-SF-3" country="SF" capital="city-Seinaejoki-SF">
<name>Etelä-Pohjanmaa</name>
<area>13444</area>
<population measured="census" year="1990">201670</population>
<population measured="census" year="2000">195615</population>
<population measured="admin." year="2017">191860</population>
<city id="city-Seinaejoki-SF" country="SF" province="prov-SF-3">
<name>Seinäjoki</name>
<latitude>62.8</latitude>
<longitude>22.73</longitude>
<population year="2016" measured="admin.">62052</population>
</city>
</province>
<province id="prov-SF-7" country="SF" capital="city-Kokkola-SF">
<name>Keski-Pohjanmaa</name>
<area>5020</area>
<population measured="census" year="1990">68214</population>
<population measured="census" year="2000">68052</population>
<population measured="admin." year="2017">69027</population>
<city id="city-Kokkola-SF" country="SF" province="prov-SF-7">
<name>Kokkola</name>
<latitude>63.87</latitude>
<longitude>21.13</longitude>
<population year="2016" measured="admin.">47723</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
</country>
<country car_code="N"
area="324220"
capital="cty-Norway-Oslo"
memberships="org-AfDB org-ADB org-AG org-BIS org-CD org-CE org-CBSS org-EAPC org-EBRD org-EFTA org-CERN org-ESA org-EITI org-FATF org-FAO org-IADB org-IGAD org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-ITUC org-MIGA org-NC org-NIB org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNITAR org-UNMISS org-UNRWA org-UNTSO org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Norway</name>
<population measured="est." year="1950">3265278</population>
<population measured="est." year="1960">3582016</population>
<population measured="est." year="1970">3875719</population>
<population measured="est." year="1980">4082525</population>
<population measured="est." year="1990">4240375</population>
<population year="1997">4383807</population>
<population measured="est." year="2000">4491572</population>
<population year="2001" measured="census">4520947</population>
<population year="2011" measured="admin.">4920305</population>
<population year="2013" measured="admin.">5051275</population>
<population_growth>1.19</population_growth>
<infant_mortality>2.48</infant_mortality>
<gdp_total>515800</gdp_total>
<gdp_agri>1.2</gdp_agri>
<gdp_ind>42.3</gdp_ind>
<gdp_serv>56.5</gdp_serv>
<inflation>1.9</inflation>
<unemployment>3.6</unemployment>
<indep_date from="S">1905-10-26</indep_date>
<government>constitutional monarchy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="82.5">Norwegian</ethnicgroup>
<ethnicgroup percentage="1.5">Sami</ethnicgroup>
<religion percentage="86.7">Protestant</religion>
<religion percentage="1">Roman Catholic</religion>
<religion percentage="1.8">Muslim</religion>
<language percentage="99">Norwegian</language>
<border country="R" length="167"/>
<border country="SF" length="729"/>
<border country="S" length="1619"/>
<province id="lteil-OS-N" country="N" capital="cty-Norway-Oslo">
<name>Oslo</name>
<area>454</area>
<population year="1987">449337</population>
<population measured="census" year="2001">512093</population>
<population measured="admin." year="2011">599230</population>
<population measured="admin." year="2013">623966</population>
<city id="cty-Norway-Oslo" country="N" province="lteil-OS-N">
<name>Oslo</name>
<latitude>59.95</latitude>
<longitude>10.75</longitude>
<elevation>23</elevation>
<population year="1987">449337</population>
<population year="1990" measured="admin.">461190</population>
<population year="2005" measured="admin.">529454</population>
<population year="2011" measured="admin.">599230</population>
<population year="2013" measured="admin.">623966</population>
<located_at watertype="sea" sea="sea-Skagerrak"/>
</city>
</province>
<province id="lteil-AK-N" country="N" capital="cty-Norway-Oslo">
<name>Akershus</name>
<area>4917</area>
<population year="1987">393217</population>
<population measured="census" year="2001">476440</population>
<population measured="admin." year="2011">545653</population>
<population measured="admin." year="2013">566399</population>
<city id="cty-N-Sandvika" country="N" province="lteil-AK-N">
<name>Sandvika</name>
<latitude>59.88</latitude>
<longitude>10.52</longitude>
<elevation>12</elevation>
<population year="2005" measured="admin.">104819</population>
<population year="2011" measured="admin.">112789</population>
<population year="2013" measured="admin.">116677</population>
<located_at watertype="sea" sea="sea-Skagerrak"/>
</city>
</province>
<province id="lteil-OES-N" country="N" capital="stadt-Moss-N-OES">
<name>Østfold</name>
<area>4180</area>
<population year="1987">234941</population>
<population measured="census" year="2001">252520</population>
<population measured="admin." year="2011">274827</population>
<population measured="admin." year="2013">282000</population>
<city id="stadt-Moss-N-OES" country="N" province="lteil-OES-N">
<name>Moss</name>
<latitude>59.46</latitude>
<longitude>10.7</longitude>
<elevation>14</elevation>
<population year="1987">24517</population>
<located_at watertype="sea" sea="sea-Skagerrak"/>
</city>
</province>
<province id="lteil-HE-N" country="N" capital="stadt-Hamar-N-HE">
<name>Hedmark</name>
<area>27397</area>
<population year="1987">186355</population>
<population measured="census" year="2001">187878</population>
<population measured="admin." year="2011">191622</population>
<population measured="admin." year="2013">193719</population>
<city id="stadt-Hamar-N-HE" country="N" province="lteil-HE-N">
<name>Hamar</name>
<latitude>60.8</latitude>
<longitude>11.06</longitude>
<elevation>134</elevation>
<population year="1987">15685</population>
<located_at watertype="lake" lake="lake-MjoesaSee"/>
</city>
</province>
<province id="lteil-OP-N" country="N" capital="stadt-Lillehammer-N-OP">
<name>Oppland</name>
<area>25192</area>
<population year="1987">181791</population>
<population measured="census" year="2001">183302</population>
<population measured="admin." year="2011">186087</population>
<population measured="admin." year="2013">187254</population>
<city id="stadt-Lillehammer-N-OP" country="N" province="lteil-OP-N">
<name>Lillehammer</name>
<latitude>61.12</latitude>
<longitude>10.47</longitude>
<elevation>440</elevation>
<population year="1987">22118</population>
<located_at watertype="lake" lake="lake-MjoesaSee"/>
</city>
</province>
<province id="lteil-BU-N" country="N" capital="stadt-Drammen-N-BU">
<name>Buskerud</name>
<area>14910</area>
<population year="1987">219967</population>
<population measured="census" year="2001">239591</population>
<population measured="admin." year="2011">261110</population>
<population measured="admin." year="2013">269003</population>
<city id="stadt-Drammen-N-BU" country="N" province="lteil-BU-N">
<name>Drammen</name>
<latitude>59.74</latitude>
<longitude>10.21</longitude>
<elevation>5</elevation>
<population year="1987">50855</population>
<population year="1990" measured="admin.">51880</population>
<population year="2005" measured="admin.">57017</population>
<population year="2011" measured="admin.">63582</population>
<population year="2013" measured="admin.">65473</population>
</city>
</province>
<province id="lteil-VE-N" country="N" capital="stadt-Tonsberg-N-VE">
<name>Vestfold</name>
<area>2225</area>
<population year="1987">191600</population>
<population measured="census" year="2001">216333</population>
<population measured="admin." year="2011">233705</population>
<population measured="admin." year="2013">238748</population>
<city id="stadt-Tonsberg-N-VE" country="N" province="lteil-VE-N">
<name>Tonsberg</name>
<latitude>59.3</latitude>
<longitude>10.42</longitude>
<population year="1987">8984</population>
<located_at watertype="sea" sea="sea-Skagerrak"/>
</city>
</province>
<province id="lteil-TE-N" country="N" capital="stadt-Skien-N-TE">
<name>Telemark</name>
<area>15296</area>
<population year="1987">162547</population>
<population measured="census" year="2001">165732</population>
<population measured="admin." year="2011">169185</population>
<population measured="admin." year="2013">170902</population>
<city id="stadt-Skien-N-TE" country="N" province="lteil-TE-N">
<name>Skien</name>
<latitude>59.21</latitude>
<longitude>9.55</longitude>
<population year="1987">47010</population>
<population year="1990" measured="admin.">47870</population>
<population year="2005" measured="admin.">50691</population>
<population year="2011" measured="admin.">52077</population>
<population year="2013" measured="admin.">53015</population>
</city>
</province>
<province id="lteil-AA-N" country="N" capital="stadt-Arendal-N-AA">
<name>Aust-Agder</name>
<area>9157</area>
<population year="1987">94688</population>
<population measured="census" year="2001">102848</population>
<population measured="admin." year="2011">110048</population>
<population measured="admin." year="2013">112772</population>
<city id="stadt-Arendal-N-AA" country="N" province="lteil-AA-N">
<name>Arendal</name>
<latitude>58.48</latitude>
<longitude>8.78</longitude>
<elevation>3</elevation>
<population year="1987">12174</population>
<located_at watertype="sea" sea="sea-Skagerrak"/>
</city>
</province>
<province id="lteil-VA-N" country="N" capital="stadt-Kristiansand-N-VA">
<name>Vest-Agder</name>
<area>7276</area>
<population year="1987">140232</population>
<population measured="census" year="2001">157697</population>
<population measured="admin." year="2011">172408</population>
<population measured="admin." year="2013">176353</population>
<city id="stadt-Kristiansand-N-VA" country="N" province="lteil-VA-N">
<name>Kristiansand</name>
<latitude>58.15</latitude>
<longitude>8</longitude>
<population year="1987">62640</population>
<population year="1990" measured="admin.">65543</population>
<population year="2005" measured="admin.">76020</population>
<population year="2011" measured="admin.">82394</population>
<population year="2013" measured="admin.">84476</population>
<located_at watertype="sea" sea="sea-Skagerrak"/>
</city>
</province>
<province id="lteil-RO-N" country="N" capital="stadt-Stavanger-N-RO">
<name>Rogaland</name>
<area>9375</area>
<population year="1987">323365</population>
<population measured="census" year="2001">377579</population>
<population measured="admin." year="2011">436087</population>
<population measured="admin." year="2013">452159</population>
<city id="stadt-Stavanger-N-RO" country="N" province="lteil-RO-N">
<name>Stavanger</name>
<latitude>58.96</latitude>
<longitude>5.72</longitude>
<population year="1987">95089</population>
<population year="1990" measured="admin.">98109</population>
<population year="2005" measured="admin.">113932</population>
<population year="2011" measured="admin.">126021</population>
<population year="2013" measured="admin.">129191</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
</city>
</province>
<province id="lteil-HO-N" country="N" capital="stadt-Bergen-N-HO">
<name>Hordaland</name>
<area>15438</area>
<population year="1987">399702</population>
<population measured="census" year="2001">441100</population>
<population measured="admin." year="2011">484240</population>
<population measured="admin." year="2013">498135</population>
<city id="stadt-Bergen-N-HO" country="N" province="lteil-HO-N">
<name>Bergen</name>
<latitude>60.39</latitude>
<longitude>5.33</longitude>
<elevation>5</elevation>
<population year="1987">207916</population>
<population year="1990" measured="admin.">212944</population>
<population year="2005" measured="admin.">239494</population>
<population year="2011" measured="admin.">260392</population>
<population year="2013" measured="admin.">267950</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
</city>
</province>
<province id="lteil-SF-N" country="N" capital="stadt-Hermansverk-N-SF">
<name>Sogn og Fjordane</name>
<area>18623</area>
<population year="1987">106116</population>
<population measured="census" year="2001">107261</population>
<population measured="admin." year="2011">107742</population>
<population measured="admin." year="2013">108700</population>
<city id="stadt-Hermansverk-N-SF" country="N" province="lteil-SF-N">
<name>Hermansverk</name>
<latitude>61.18</latitude>
<longitude>6.85</longitude>
<elevation>6</elevation>
<located_at watertype="sea" sea="sea-Nordsee"/>
</city>
</province>
<province id="lteil-MR-N" country="N" capital="stadt-Molde-N-MR">
<name>Møre og Romsdal</name>
<area>15101</area>
<population year="1987">237290</population>
<population measured="census" year="2001">243888</population>
<population measured="admin." year="2011">253904</population>
<population measured="admin." year="2013">259404</population>
<city id="stadt-Molde-N-MR" country="N" province="lteil-MR-N">
<name>Molde</name>
<latitude>62.76</latitude>
<longitude>7.24</longitude>
<elevation>130</elevation>
<population year="1987">21448</population>
<located_at watertype="sea" sea="sea-NorwegianSea"/>
</city>
</province>
<province id="lteil-ST-N" country="N" capital="stadt-Trondheim-N-ST">
<name>Sør-Trøndelag</name>
<area>18839</area>
<population year="1987">246824</population>
<population measured="census" year="2001">266098</population>
<population measured="admin." year="2011">294066</population>
<population measured="admin." year="2013">302755</population>
<city id="stadt-Trondheim-N-ST" country="N" province="lteil-ST-N">
<name>Trondheim</name>
<latitude>63.43</latitude>
<longitude>10.39</longitude>
<elevation>3</elevation>
<population year="1987">134426</population>
<population year="1990" measured="admin.">137846</population>
<population year="2005" measured="admin.">156095</population>
<population year="2011" measured="admin.">173486</population>
<population year="2013" measured="admin.">179692</population>
<located_at watertype="sea" sea="sea-NorwegianSea"/>
</city>
</province>
<province id="lteil-NT-N" country="N" capital="stadt-Steinkjer-N-NT">
<name>Nord-Trøndelag</name>
<area>22414</area>
<population year="1987">126692</population>
<population measured="census" year="2001">127444</population>
<population measured="admin." year="2011">132140</population>
<population measured="admin." year="2013">134443</population>
<city id="stadt-Steinkjer-N-NT" country="N" province="lteil-NT-N">
<name>Steinkjer</name>
<latitude>64.06</latitude>
<longitude>11.72</longitude>
<population year="1987">20480</population>
<located_at watertype="sea" sea="sea-NorwegianSea"/>
</city>
</province>
<province id="lteil-NO-N" country="N" capital="stadt-Bodoe-N-NO">
<name>Nordland</name>
<area>38482</area>
<population measured="census" year="2001">237561</population>
<population measured="admin." year="2011">237280</population>
<population measured="admin." year="2013">239611</population>
<city id="stadt-Narvik-N-NO" country="N" province="lteil-NO-N">
<name>Narvik</name>
<latitude>68.42</latitude>
<longitude>17.56</longitude>
<population year="1987">18754</population>
<located_at watertype="sea" sea="sea-NorwegianSea"/>
</city>
<city id="stadt-Bodoe-N-NO" country="N" province="lteil-NO-N">
<name>Bodø</name>
<name>Bodoe</name>
<latitude>67.28</latitude>
<longitude>14.4</longitude>
<population year="1987">34479</population>
<located_at watertype="sea" sea="sea-NorwegianSea"/>
</city>
</province>
<province id="lteil-TR-N" country="N" capital="stadt-Tromsoe-N-TR">
<name>Troms</name>
<area>25862</area>
<population year="1987">146736</population>
<population measured="census" year="2001">151646</population>
<population measured="admin." year="2011">157554</population>
<population measured="admin." year="2013">160418</population>
<city id="stadt-Tromsoe-N-TR" country="N" province="lteil-TR-N">
<name>Tromsø</name>
<name>Tromsoe</name>
<latitude>69.68</latitude>
<longitude>18.94</longitude>
<population year="1987">48109</population>
<located_at watertype="sea" sea="sea-NorwegianSea"/>
</city>
</province>
<province id="lteil-FI-N" country="N" capital="stadt-Vadsoe-N-FI">
<name>Finnmark</name>
<area>48631</area>
<population measured="census" year="2001">73936</population>
<population measured="admin." year="2011">73417</population>
<population measured="admin." year="2013">74534</population>
<city id="stadt-Hammerfest-N-FI" country="N" province="lteil-FI-N">
<name>Hammerfest</name>
<latitude>70.66</latitude>
<longitude>23.68</longitude>
<elevation>2</elevation>
<population year="1987">7089</population>
<located_at watertype="sea" sea="sea-BarentsSea"/>
</city>
<city id="stadt-Vadsoe-N-FI" country="N" province="lteil-FI-N">
<name>Vadsø</name>
<name>Vadsoe</name>
<latitude>70.08</latitude>
<longitude>29.73</longitude>
<elevation>6</elevation>
<population year="1987">5961</population>
<located_at watertype="sea" sea="sea-BarentsSea"/>
</city>
</province>
</country>
<country car_code="S"
area="449964"
capital="cty-Sweden-Stockholm"
memberships="org-AfDB org-ADB org-AG org-BIS org-CD org-CE org-CBSS org-EAPC org-EBRD org-EIB org-CERN org-ESA org-EU org-EITI org-FATF org-FAO org-G-10 org-G-9 org-IADB org-IGAD org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-ITUC org-MIGA org-NC org-NIB org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PFP org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNMOGIP org-UNMISS org-MONUSCO org-UNRWA org-UNTSO org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-WTO org-ZC">
<name>Sweden</name>
<population measured="est." year="1950">7009913</population>
<population measured="est." year="1960">7479602</population>
<population measured="est." year="1970">8049049</population>
<population measured="est." year="1980">8310915</population>
<population measured="est." year="1990">8559107</population>
<population year="1997">8900954</population>
<population measured="est." year="2000">8872284</population>
<population year="2004" measured="admin.">9011392</population>
<population year="2009" measured="admin.">9340682</population>
<population year="2012" measured="admin.">9555893</population>
<population_growth>0.79</population_growth>
<infant_mortality>2.6</infant_mortality>
<gdp_total>552000</gdp_total>
<gdp_agri>2</gdp_agri>
<gdp_ind>31.3</gdp_ind>
<gdp_serv>66.8</gdp_serv>
<inflation>0</inflation>
<unemployment>8.1</unemployment>
<government>constitutional monarchy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="83">Swede</ethnicgroup>
<ethnicgroup percentage="5">Finn</ethnicgroup>
<religion percentage="87">Protestant</religion>
<religion percentage="1.5">Roman Catholic</religion>
<language percentage="96">Swedish</language>
<language percentage="2.6">Finnish</language>
<border country="SF" length="586"/>
<border country="N" length="1619"/>
<province id="prov-Sweden-5" country="S" capital="cty-Sweden-3">
<name>Västra Götaland</name>
<area>23948</area>
<population year="1991">1464971</population>
<population measured="admin." year="2004">1521895</population>
<population measured="admin." year="2009">1569458</population>
<population measured="admin." year="2012">1600447</population>
<city id="cty-Sweden-3" country="S" province="prov-Sweden-5">
<name>Göteborg</name>
<name>Göteborg</name>
<name>Gothenburg</name>
<latitude>57.7</latitude>
<longitude>11.97</longitude>
<elevation>12</elevation>
<population year="1987">429339</population>
<population year="1995">449189</population>
<population year="2002" measured="admin.">474921</population>
<population year="2009" measured="admin.">507330</population>
<population year="2012" measured="admin.">526089</population>
<located_at watertype="sea" sea="sea-Kattegat"/>
<located_at watertype="river" river="river-Goetaaelv"/>
</city>
<city id="cty-Sweden-Vanersborg" country="S" province="prov-Sweden-5">
<name>Vänersborg</name>
<latitude>58.38</latitude>
<longitude>12.33</longitude>
<population year="1987">35804</population>
<located_at watertype="river" river="river-Goetaaelv"/>
<located_at watertype="lake" lake="lake-Vaenersee"/>
</city>
<city id="cty-Sweden-Mariestad" country="S" province="prov-Sweden-5">
<name>Mariestad</name>
<latitude>58.7</latitude>
<longitude>13.82</longitude>
<population year="1987">24255</population>
<located_at watertype="lake" lake="lake-Vaenersee"/>
</city>
<city id="cty-Sweden-Boras" country="S" province="prov-Sweden-5">
<name>Borås</name>
<latitude>57.72</latitude>
<longitude>12.94</longitude>
<elevation>143</elevation>
<population year="2002" measured="admin.">98150</population>
<population year="2009" measured="admin.">102458</population>
<population year="2012" measured="admin.">104867</population>
</city>
</province>
<province id="prov-Sweden-3" country="S" capital="cty-Sweden-Karlskrona">
<name>Blekinge</name>
<area>2946</area>
<population year="1991">151168</population>
<population measured="admin." year="2004">150335</population>
<population measured="admin." year="2009">152591</population>
<population measured="admin." year="2012">152315</population>
<city id="cty-Sweden-Karlskrona" country="S" province="prov-Sweden-3">
<name>Karlskrona</name>
<latitude>56.16</latitude>
<longitude>15.59</longitude>
<elevation>16</elevation>
<population year="1987">59007</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-Sweden-4" country="S" capital="cty-Sweden-Gavle">
<name>Gävleborg</name>
<area>18198</area>
<population measured="admin." year="2004">276599</population>
<population measured="admin." year="2009">276220</population>
<population measured="admin." year="2012">276637</population>
<city id="cty-Sweden-Gavle" country="S" province="prov-Sweden-4">
<name>Gävle</name>
<latitude>60.67</latitude>
<longitude>17.14</longitude>
<elevation>8</elevation>
<population year="1987">87431</population>
<population year="2002" measured="admin.">91276</population>
<population year="2009" measured="admin.">94352</population>
<population year="2012" measured="admin.">96170</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-Sweden-6" country="S" capital="cty-Sweden-Visby">
<name>Gotland</name>
<area>3151</area>
<population year="1991">57383</population>
<population measured="admin." year="2004">57661</population>
<population measured="admin." year="2009">57221</population>
<population measured="admin." year="2012">57241</population>
<city id="cty-Sweden-Visby" country="S" province="prov-Sweden-6">
<name>Visby</name>
<latitude>57.63</latitude>
<longitude>18.3</longitude>
<population year="1987">20000</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-Sweden-7" country="S" capital="cty-Sweden-Halmstad">
<name>Halland</name>
<area>5460</area>
<population year="1991">257874</population>
<population measured="admin." year="2004">283788</population>
<population measured="admin." year="2009">296825</population>
<population measured="admin." year="2012">304116</population>
<city id="cty-Sweden-Halmstad" country="S" province="prov-Sweden-7">
<name>Halmstad</name>
<latitude>56.67</latitude>
<longitude>12.86</longitude>
<elevation>11</elevation>
<population year="1987">77601</population>
<population year="2002" measured="admin.">86585</population>
<population year="2009" measured="admin.">91087</population>
<population year="2012" measured="admin.">93231</population>
<located_at watertype="sea" sea="sea-Kattegat"/>
</city>
</province>
<province id="prov-Sweden-8" country="S" capital="cty-Sweden-Ostersund">
<name>Jämtland</name>
<area>49341</area>
<population measured="admin." year="2004">127424</population>
<population measured="admin." year="2009">126666</population>
<population measured="admin." year="2012">126201</population>
<city id="cty-Sweden-Ostersund" country="S" province="prov-Sweden-8">
<name>Ostersund</name>
<latitude>63.18</latitude>
<longitude>14.64</longitude>
<elevation>312</elevation>
<population year="1987">56662</population>
</city>
</province>
<province id="prov-Sweden-9" country="S" capital="cty-Sweden-10">
<name>Jönköping</name>
<area>10495</area>
<population year="1991">309738</population>
<population measured="admin." year="2004">329297</population>
<population measured="admin." year="2009">336044</population>
<population measured="admin." year="2012">339116</population>
<city id="cty-Sweden-10" country="S" province="prov-Sweden-9">
<name>Jönköping</name>
<latitude>57.78</latitude>
<longitude>14.16</longitude>
<elevation>104</elevation>
<population year="1995">115429</population>
<population year="2002" measured="admin.">118581</population>
<population year="2009" measured="admin.">126331</population>
<population year="2012" measured="admin.">129478</population>
<located_at watertype="lake" lake="lake-Vaetternsee"/>
</city>
</province>
<province id="prov-Sweden-10" country="S" capital="cty-Sweden-Kalmar">
<name>Kalmar</name>
<area>11217</area>
<population measured="admin." year="2004">234496</population>
<population measured="admin." year="2009">233639</population>
<population measured="admin." year="2012">233548</population>
<city id="cty-Sweden-Kalmar" country="S" province="prov-Sweden-10">
<name>Kalmar</name>
<latitude>56.66</latitude>
<longitude>16.36</longitude>
<elevation>8</elevation>
<population year="1987">54554</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-Sweden-11" country="S" capital="cty-Sweden-Falun">
<name>Dalarna</name>
<area>28188</area>
<population measured="admin." year="2004">276042</population>
<population measured="admin." year="2009">276454</population>
<population measured="admin." year="2012">276555</population>
<city id="cty-Sweden-Falun" country="S" province="prov-Sweden-11">
<name>Falun</name>
<latitude>60.61</latitude>
<longitude>15.63</longitude>
<elevation>110</elevation>
<population year="1987">51900</population>
</city>
</province>
<province id="prov-Sweden-12" country="S" capital="cty-Sweden-4">
<name>Skåne</name>
<area>11034</area>
<population measured="admin." year="2004">1160919</population>
<population measured="admin." year="2009">1231062</population>
<population measured="admin." year="2012">1263088</population>
<city id="cty-Sweden-4" country="S" province="prov-Sweden-12">
<name>Malmö</name>
<latitude>55.61</latitude>
<longitude>13.04</longitude>
<elevation>12</elevation>
<population year="1995">245699</population>
<population year="2002" measured="admin.">265481</population>
<population year="2009" measured="admin.">293909</population>
<population year="2012" measured="admin.">307758</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
<city id="cty-Sweden-11" country="S" province="prov-Sweden-12">
<name>Helsingborg</name>
<latitude>56.05</latitude>
<longitude>12.72</longitude>
<elevation>10</elevation>
<population year="1995">114339</population>
<population year="2002" measured="admin.">119406</population>
<population year="2009" measured="admin.">128359</population>
<population year="2012" measured="admin.">132011</population>
<located_at watertype="sea" sea="sea-Kattegat"/>
</city>
<city id="cty-Sweden-Kristianstad" country="S" province="prov-Sweden-12">
<name>Kristianstad</name>
<latitude>56.03</latitude>
<longitude>14.16</longitude>
<population year="1987">69941</population>
<population year="2002" measured="admin.">74951</population>
<population year="2009" measured="admin.">78788</population>
<population year="2012" measured="admin.">80507</population>
</city>
<city id="cty-Sweden-Lund" country="S" province="prov-Sweden-12">
<name>Lund</name>
<latitude>55.7</latitude>
<longitude>13.2</longitude>
<population year="2002" measured="admin.">100402</population>
<population year="2009" measured="admin.">109147</population>
<population year="2012" measured="admin.">112950</population>
</city>
</province>
<province id="prov-Sweden-13" country="S" capital="cty-Sweden-Vaxjo">
<name>Kronoberg</name>
<area>8466</area>
<population year="1991">178612</population>
<population measured="admin." year="2004">178285</population>
<population measured="admin." year="2009">183162</population>
<population measured="admin." year="2012">185887</population>
<city id="cty-Sweden-Vaxjo" country="S" province="prov-Sweden-13">
<name>Växjö</name>
<latitude>56.88</latitude>
<longitude>14.81</longitude>
<elevation>167</elevation>
<population year="1987">66925</population>
<population year="2002" measured="admin.">75036</population>
<population year="2009" measured="admin.">82023</population>
<population year="2012" measured="admin.">84800</population>
</city>
</province>
<province id="prov-Sweden-15" country="S" capital="cty-Sweden-Lulea">
<name>Norrbotten</name>
<area>98244</area>
<population measured="admin." year="2004">252585</population>
<population measured="admin." year="2009">249019</population>
<population measured="admin." year="2012">248637</population>
<city id="cty-Sweden-Lulea" country="S" province="prov-Sweden-15">
<name>Lulea</name>
<latitude>65.58</latitude>
<longitude>22.15</longitude>
<elevation>6</elevation>
<population year="1987">66526</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-Sweden-16" country="S" capital="cty-Sweden-9">
<name>Örebro</name>
<area>8545</area>
<population year="1991">273608</population>
<population measured="admin." year="2004">273920</population>
<population measured="admin." year="2009">278882</population>
<population measured="admin." year="2012">283113</population>
<city id="cty-Sweden-9" country="S" province="prov-Sweden-16">
<name>Örebro</name>
<latitude>59.27</latitude>
<longitude>15.21</longitude>
<elevation>34</elevation>
<population year="1995">119635</population>
<population year="2002" measured="admin.">125520</population>
<population year="2009" measured="admin.">134006</population>
<population year="2012" measured="admin.">138952</population>
</city>
</province>
<province id="prov-Sweden-17" country="S" capital="cty-Sweden-6">
<name>Östergötland</name>
<area>10602</area>
<population year="1991">406100</population>
<population measured="admin." year="2004">415990</population>
<population measured="admin." year="2009">427106</population>
<population measured="admin." year="2012">433784</population>
<city id="cty-Sweden-6" country="S" province="prov-Sweden-17">
<name>Linköping</name>
<latitude>58.42</latitude>
<longitude>15.63</longitude>
<elevation>45</elevation>
<population year="1995">131370</population>
<population year="2002" measured="admin.">135066</population>
<population year="2009" measured="admin.">144690</population>
<population year="2012" measured="admin.">148521</population>
</city>
<city id="cty-Sweden-7" country="S" province="prov-Sweden-17">
<name>Norrköping</name>
<latitude>58.6</latitude>
<longitude>16.2</longitude>
<population year="1995">123795</population>
<population year="2002" measured="admin.">123303</population>
<population year="2009" measured="admin.">129254</population>
<population year="2012" measured="admin.">132124</population>
</city>
</province>
<province id="prov-Sweden-19" country="S" capital="cty-Sweden-Nykoping">
<name>Södermanland</name>
<area>6102</area>
<population year="1991">256818</population>
<population measured="admin." year="2004">261070</population>
<population measured="admin." year="2009">269053</population>
<population measured="admin." year="2012">274723</population>
<city id="cty-Sweden-Nykoping" country="S" province="prov-Sweden-19">
<name>Nykoping</name>
<latitude>58.75</latitude>
<longitude>17.01</longitude>
<elevation>20</elevation>
<population year="1987">64199</population>
</city>
<city id="cty-Sweden-Eskilstuna" country="S" province="prov-Sweden-19">
<name>Eskilstuna</name>
<latitude>59.37</latitude>
<longitude>16.51</longitude>
<elevation>26</elevation>
<population year="2002" measured="admin.">90089</population>
<population year="2009" measured="admin.">95577</population>
<population year="2012" measured="admin.">98765</population>
</city>
</province>
<province id="prov-Sweden-20" country="S" capital="cty-Sweden-Stockholm">
<name>Stockholm</name>
<area>6519</area>
<population year="1991">1654511</population>
<population measured="admin." year="2004">1872900</population>
<population measured="admin." year="2009">2019182</population>
<population measured="admin." year="2012">2127006</population>
<city id="cty-Sweden-Stockholm" country="S" province="prov-Sweden-20">
<name>Stockholm</name>
<latitude>59.33</latitude>
<longitude>18.07</longitude>
<elevation>2</elevation>
<population year="1995">711119</population>
<population year="2002" measured="admin.">758148</population>
<population year="2009" measured="admin.">829417</population>
<population year="2012" measured="admin.">881235</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
<located_at watertype="lake" lake="lake-Maelarsee"/>
</city>
<city id="cty-Sweden-Huddinge" country="S" province="prov-Sweden-20">
<name>Huddinge</name>
<latitude>59.23</latitude>
<longitude>17.98</longitude>
<population year="2002" measured="admin.">86457</population>
<population year="2009" measured="admin.">95798</population>
<population year="2012" measured="admin.">101010</population>
<located_at watertype="lake" lake="lake-Maelarsee"/>
</city>
</province>
<province id="prov-Sweden-21" country="S" capital="cty-Sweden-5">
<name>Uppsala</name>
<area>8207</area>
<population year="1991">273918</population>
<population measured="admin." year="2004">316335</population>
<population measured="admin." year="2009">331898</population>
<population measured="admin." year="2012">341977</population>
<city id="cty-Sweden-5" country="S" province="prov-Sweden-21">
<name>Uppsala</name>
<latitude>59.86</latitude>
<longitude>17.64</longitude>
<elevation>15</elevation>
<population year="1995">183472</population>
<population year="2002" measured="admin.">179673</population>
<population year="2009" measured="admin.">194751</population>
<population year="2012" measured="admin.">202625</population>
</city>
</province>
<province id="prov-Sweden-22" country="S" capital="cty-Sweden-Karlstad">
<name>Värmland</name>
<area>17591</area>
<population measured="admin." year="2004">273547</population>
<population measured="admin." year="2009">273257</population>
<population measured="admin." year="2012">273080</population>
<city id="cty-Sweden-Karlstad" country="S" province="prov-Sweden-22">
<name>Karlstad</name>
<latitude>59.38</latitude>
<longitude>13.5</longitude>
<elevation>64</elevation>
<population year="1987">74669</population>
<population year="2002" measured="admin.">80934</population>
<population year="2009" measured="admin.">84736</population>
<population year="2012" measured="admin.">86929</population>
<located_at watertype="river" river="river-Klaraelv"/>
<located_at watertype="lake" lake="lake-Vaenersee"/>
</city>
</province>
<province id="prov-Sweden-23" country="S" capital="cty-Sweden-Umea">
<name>Västerbotten</name>
<area>55186</area>
<population year="1991">253835</population>
<population measured="admin." year="2004">256875</population>
<population measured="admin." year="2009">258548</population>
<population measured="admin." year="2012">260217</population>
<city id="cty-Sweden-Umea" country="S" province="prov-Sweden-23">
<name>Umeå</name>
<latitude>63.83</latitude>
<longitude>20.26</longitude>
<elevation>12</elevation>
<population year="1987">85698</population>
<population year="2002" measured="admin.">106525</population>
<population year="2009" measured="admin.">114075</population>
<population year="2012" measured="admin.">117294</population>
<located_at watertype="river" river="river-Umeaelv"/>
</city>
</province>
<province id="prov-Sweden-24" country="S" capital="cty-Sweden-Harnosand">
<name>Västernorrland</name>
<area>21683</area>
<population measured="admin." year="2004">244195</population>
<population measured="admin." year="2009">243042</population>
<population measured="admin." year="2012">241981</population>
<city id="cty-Sweden-Harnosand" country="S" province="prov-Sweden-24">
<name>Härnösand</name>
<latitude>62.64</latitude>
<longitude>17.94</longitude>
<elevation>1</elevation>
<population year="1987">27287</population>
<located_at watertype="sea" sea="sea-Ostsee"/>
</city>
</province>
<province id="prov-Sweden-25" country="S" capital="cty-Sweden-8">
<name>Västmanland</name>
<area>5145</area>
<population measured="admin." year="2004">247234</population>
<population measured="admin." year="2009">251353</population>
<population measured="admin." year="2012">256224</population>
<city id="cty-Sweden-8" country="S" province="prov-Sweden-25">
<name>Västerås</name>
<latitude>59.62</latitude>
<longitude>16.55</longitude>
<elevation>17</elevation>
<population year="1995">123728</population>
<population year="2002" measured="admin.">128902</population>
<population year="2009" measured="admin.">135936</population>
<population year="2012" measured="admin.">140499</population>
<located_at watertype="lake" lake="lake-Maelarsee"/>
</city>
</province>
</country>
<country car_code="MC"
area="1.9"
capital="cty-Monaco-Monaco"
memberships="org-CD org-CE org-FAO org-IPU org-IAEA org-ICC org-ICAO org-Interpol org-IFRCS org-IHO org-IMO org-IMSO org-IOC org-OIF org-ITSO org-ITU org-OSCE org-OPCW org-OAS org-UN org-UNCTAD org-UNESCO org-UNIDO org-UPU org-WHO org-WIPO org-WMO org-UNWTO">
<name>Monaco</name>
<localname>la Principauté de Monaco </localname>
<population measured="est." year="1950">20000</population>
<population measured="census" year="1951">20202</population>
<population measured="census" year="1956">20422</population>
<population measured="census" year="1961">22297</population>
<population measured="census" year="1962">21783</population>
<population measured="census" year="1968">23035</population>
<population measured="census" year="1975">25029</population>
<population measured="census" year="1982">27063</population>
<population measured="census" year="1990">29972</population>
<population measured="census" year="2000">32020</population>
<population measured="census" year="2008">31109</population>
<population measured="est." year="2010">36845</population>
<population_growth>0.06</population_growth>
<infant_mortality>1.81</infant_mortality>
<gdp_total>5748</gdp_total>
<gdp_agri>0</gdp_agri>
<gdp_ind>10</gdp_ind>
<gdp_serv>90</gdp_serv>
<inflation>1.5</inflation>
<unemployment>2</unemployment>
<indep_date>1419-01-01</indep_date>
<government>constitutional monarchy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="47">French</ethnicgroup>
<ethnicgroup percentage="21.6">Monegasque</ethnicgroup>
<ethnicgroup percentage="19">Italian</ethnicgroup>
<religion percentage="90">Roman Catholic</religion>
<language percentage="50">French</language>
<language percentage="21.6">Monegasque</language>
<language percentage="19">Italian</language>
<language percentage="8.5">English</language>
<language percentage="3.5">German</language>
<language percentage="2">Dutch</language>
<border country="F" length="4.4"/>
<city id="cty-Monaco-Monaco" country="MC">
<name>Monaco</name>
<name>Monaco-Ville</name>
<latitude>43.73</latitude>
<longitude>7.42</longitude>
<population year="1987">1234</population>
<population year="2000" measured="census">1034</population>
<population year="2008" measured="census">975</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</country>
<country car_code="GBZ"
area="6.5"
capital="cty-Gibraltar-Gibraltar"
memberships="org-ICC org-Interpol org-UPU">
<name>Gibraltar</name>
<population measured="census" year="1753">1816</population>
<population measured="census" year="1767">2710</population>
<population measured="census" year="1777">3201</population>
<population measured="census" year="1787">3386</population>
<population measured="census" year="1791">2890</population>
<population measured="census" year="1814">10136</population>
<population measured="census" year="1834">15002</population>
<population measured="census" year="1844">15823</population>
<population measured="census" year="1871">18695</population>
<population measured="census" year="1878">18014</population>
<population measured="census" year="1881">18381</population>
<population measured="census" year="1891">19100</population>
<population measured="census" year="1901">20355</population>
<population measured="census" year="1911">19120</population>
<population measured="census" year="1921">18061</population>
<population measured="census" year="1931">17405</population>
<population measured="census" year="1951">20845</population>
<population measured="census" year="1961">23926</population>
<population measured="census" year="1970">26818</population>
<population measured="census" year="1981">28719</population>
<population measured="census" year="1991">28074</population>
<population measured="census" year="2001">28240</population>
<population measured="census" year="2012">32577</population>
<population_growth>0.25</population_growth>
<infant_mortality>6.29</infant_mortality>
<gdp_total>1106</gdp_total>
<gdp_agri>0</gdp_agri>
<gdp_ind>0</gdp_ind>
<gdp_serv>100</gdp_serv>
<inflation>2.8</inflation>
<unemployment>3</unemployment>
<dependent country="GB"/>
<government>dependent territory of the UK</government>
<encompassed continent="europe" percentage="100"/>
<religion percentage="8">Muslim</religion>
<religion percentage="2">Jewish</religion>
<religion percentage="74">Roman Catholic</religion>
<religion percentage="11">Protestant</religion>
<border country="E" length="1.2"/>
<city id="cty-Gibraltar-Gibraltar" country="GBZ">
<name>Gibraltar</name>
<latitude>36.12</latitude>
<longitude>-5.25</longitude>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</country>
<country car_code="GBG"
area="194"
capital="cty-Guernsey-Saint-Peter-Port"
memberships="org-UPU">
<name>Guernsey</name>
<localname>the Bailiwick of Guernsey</localname>
<population measured="census" year="1951">43652</population>
<population measured="census" year="1961">45068</population>
<population measured="census" year="1971">51458</population>
<population measured="census" year="1976">53637</population>
<population measured="census" year="1981">55950</population>
<population measured="census" year="1991">61700</population>
<population measured="census" year="1996">61378</population>
<population measured="census" year="2001">62692</population>
<population measured="census" year="2017">64540</population>
<population_growth>0.36</population_growth>
<infant_mortality>3.47</infant_mortality>
<gdp_total>2742</gdp_total>
<gdp_agri>3</gdp_agri>
<gdp_ind>10</gdp_ind>
<gdp_serv>87</gdp_serv>
<inflation>3.4</inflation>
<unemployment>0.9</unemployment>
<dependent country="GB"/>
<government>parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="100">Norman-French</ethnicgroup>
<city id="cty-Guernsey-Saint-Peter-Port" country="GBG">
<name>Saint Peter Port</name>
<latitude>49.6</latitude>
<longitude>-2.6</longitude>
<located_at watertype="sea" sea="sea-Channel"/>
<located_on island="island-Guernsey"/>
</city>
</country>
<country car_code="V"
area="0.44"
capital="cty-Holy-See-Vatican-City"
memberships="org-SICA org-CE org-IAEA org-Interpol org-IFRCS org-IOM org-ITSO org-ITU org-ITUC org-OSCE org-OPCW org-OAS org-UN org-UNCTAD org-UNHCR org-UPU org-WIPO org-UNWTO org-WTO">
<name>Holy See</name>
<population year="1997">840</population>
<population year="2014">842</population>
<indep_date from="I">1929-02-11</indep_date>
<government>monarchical sacerdotal state</government>
<encompassed continent="europe" percentage="100"/>
<religion percentage="100">Roman Catholic</religion>
<border country="I" length="3.2"/>
<city id="cty-Holy-See-Vatican-City" is_country_cap="yes" country="V">
<name>Vatican City</name>
<latitude>41.9</latitude>
<longitude>12.45</longitude>
<population year="1997">840</population>
<population year="2014">842</population>
</city>
</country>
<country car_code="CEU" area="18" capital="cty-Ceuta-Ceuta">
<name>Ceuta</name>
<population year="1960" measured="census">73182</population>
<population year="1970" measured="census">67187</population>
<population year="1981" measured="census">70864</population>
<population year="1991" measured="census">73208</population>
<population year="2001" measured="census">75694</population>
<population year="2011" measured="census">82376</population>
<dependent country="E"/>
<government>dependent territory of Spain</government>
<encompassed continent="africa" percentage="100"/>
<border country="MA" length="6.3"/>
<city id="cty-Ceuta-Ceuta" is_country_cap="yes" country="CEU">
<name>Ceuta</name>
<latitude>35.9</latitude>
<longitude>-5.3</longitude>
<population year="1960" measured="census">73182</population>
<population year="1970" measured="census">67187</population>
<population year="1981" measured="census">70864</population>
<population year="1991" measured="census">73208</population>
<population year="2001" measured="census">75694</population>
<population year="2011" measured="census">82376</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</country>
<country car_code="MEL" area="12" capital="cty-Melilla-Melilla">
<name>Melilla</name>
<population year="1960" measured="census">79056</population>
<population year="1970" measured="census">64642</population>
<population year="1981" measured="census">58449</population>
<population year="1991" measured="census">63670</population>
<population year="2001" measured="census">66411</population>
<population year="2011" measured="census">78476</population>
<dependent country="E"/>
<government>dependent territory of Spain</government>
<encompassed continent="africa" percentage="100"/>
<border country="MA" length="9.6"/>
<city id="cty-Melilla-Melilla" is_country_cap="yes" country="MEL">
<name>Melilla</name>
<latitude>35.3</latitude>
<longitude>-2.95</longitude>
<population year="1960" measured="census">79056</population>
<population year="1970" measured="census">64642</population>
<population year="1981" measured="census">58449</population>
<population year="1991" measured="census">63670</population>
<population year="2001" measured="census">66411</population>
<population year="2011" measured="census">78476</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
</city>
</country>
<country car_code="IS"
area="103000"
capital="cty-Iceland-Reykjavik"
memberships="org-AG org-BIS org-CD org-CE org-CBSS org-EAPC org-EBRD org-EFTA org-EU org-FATF org-FAO org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-ITSO org-ITU org-ITUC org-MIGA org-NC org-NIB org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UPU org-WCO org-WHO org-WIPO org-WMO org-WTO">
<name>Iceland</name>
<localname>Lýðveldið Ísland</localname>
<population measured="census" year="1901">78470</population>
<population measured="census" year="1910">85183</population>
<population measured="census" year="1920">94690</population>
<population measured="census" year="1930">108861</population>
<population measured="census" year="1940">121474</population>
<population measured="census" year="1950">143973</population>
<population measured="census" year="1960">175680</population>
<population measured="census" year="1970">204578</population>
<population measured="census" year="1980">229187</population>
<population measured="census" year="1990">255708</population>
<population measured="census" year="2000">282849</population>
<population year="2005" measured="admin.">293577</population>
<population year="2010" measured="admin.">317630</population>
<population year="2015" measured="admin.">329100</population>
<population_growth>0.65</population_growth>
<infant_mortality>3.15</infant_mortality>
<gdp_total>14590</gdp_total>
<gdp_agri>5.9</gdp_agri>
<gdp_ind>22.9</gdp_ind>
<gdp_serv>71.2</gdp_serv>
<inflation>3.9</inflation>
<unemployment>4.5</unemployment>
<indep_date from="DK">1944-06-17</indep_date>
<government>constitutional republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="100">Celt</ethnicgroup>
<religion percentage="96">Protestant</religion>
<religion percentage="3">Roman Catholic</religion>
<language percentage="100">Icelandic</language>
<city id="cty-Iceland-Reykjavik" country="IS">
<name>Reykjavik</name>
<localname>Reykjavík</localname>
<latitude>64.13</latitude>
<longitude>-21.93</longitude>
<population year="1980" measured="census">83766</population>
<population year="2000" measured="admin.">109268</population>
<population year="2005" measured="admin.">113022</population>
<population year="2010" measured="admin.">117505</population>
<population year="2015" measured="admin.">120879</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-Iceland"/>
</city>
<city id="stadt-Keflavik-IS-IS" country="IS">
<name>Keflavik</name>
<localname>Keflavík og Njarðvíkurþéttbýli</localname>
<latitude>64.02</latitude>
<longitude>-22.57</longitude>
<population year="1980" measured="census">83766</population>
<population year="2000" measured="admin.">10512</population>
<population year="2005" measured="admin.">10832</population>
<population year="2010" measured="admin.">13972</population>
<population year="2015" measured="admin.">14821</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-Iceland"/>
</city>
<city id="stadt-Hafnarfjoerdur-IS-IS" country="IS">
<name>Hafnarfjordur</name>
<localname>Hafnarfjörður</localname>
<latitude>64.07</latitude>
<longitude>-21.95</longitude>
<population year="1980" measured="census">12205</population>
<population year="2000" measured="admin.">19158</population>
<population year="2005" measured="admin.">22000</population>
<population year="2010" measured="admin.">25913</population>
<population year="2015" measured="admin.">27870</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-Iceland"/>
</city>
<city id="stadt-Akureyri-IS-IS" country="IS">
<name>Akureyri</name>
<localname>Akureyri</localname>
<latitude>65.68</latitude>
<longitude>-18.1</longitude>
<population year="1980" measured="census">13420</population>
<population year="2000" measured="admin.">15143</population>
<population year="2005" measured="admin.">16308</population>
<population year="2010" measured="admin.">17295</population>
<population year="2015" measured="admin.">17195</population>
<located_at watertype="sea" sea="sea-Greenlandsea"/>
<located_on island="island-Iceland"/>
</city>
</country>
<country car_code="IRL"
area="70280"
capital="cty-Ireland-Dublin"
memberships="org-ADB org-AG org-BIS org-CD org-CE org-EMU org-EAPC org-EBRD org-ECB org-EIB org-ESA org-EU org-FATF org-IGAD org-IPU org-IAEA org-ICC org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFAD org-IHO org-IOC org-IOM org-ITSO org-ITUC org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PFP org-PCA org-UN org-UNDOF org-UNESCO org-UNHCR org-UNIFIL org-MINURSO org-UNOCI org-MONUSCO org-UNRWA org-UNTSO org-WCO org-WTO org-ZC">
<name>Ireland</name>
<localname>Ireland</localname>
<population measured="census" year="1901">3221823</population>
<population measured="census" year="1911">3139688</population>
<population measured="census" year="1926">2971992</population>
<population measured="census" year="1936">2968420</population>
<population measured="census" year="1946">2955107</population>
<population measured="census" year="1951">2960593</population>
<population measured="census" year="1956">2898264</population>
<population measured="census" year="1961">2818341</population>
<population measured="census" year="1966">2884002</population>
<population measured="census" year="1971">2978248</population>
<population measured="census" year="1979">3368217</population>
<population measured="census" year="1981">3443405</population>
<population measured="census" year="1986">3540643</population>
<population measured="census" year="1991">3525719</population>
<population measured="census" year="1996">3626087</population>
<population measured="census" year="2002">3917203</population>
<population measured="census" year="2006">4239848</population>
<population year="2011" measured="census">4588252</population>
<population_growth>1.2</population_growth>
<infant_mortality>3.74</infant_mortality>
<gdp_total>220900</gdp_total>
<gdp_agri>1.6</gdp_agri>
<gdp_ind>28</gdp_ind>
<gdp_serv>70.4</gdp_serv>
<inflation>0.6</inflation>
<unemployment>13.5</unemployment>
<indep_date from="GB">1921-12-06</indep_date>
<government>republic, parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="87.4">Irish</ethnicgroup>
<ethnicgroup percentage="1.3">Asian</ethnicgroup>
<ethnicgroup percentage="1.1">African</ethnicgroup>
<religion percentage="90">Roman Catholic</religion>
<religion percentage="3">Anglican</religion>
<language percentage="95">English</language>
<border country="GB" length="360"/>
<city id="cty-Ireland-Dublin" country="IRL">
<name>Dublin</name>
<latitude>53.35</latitude>
<longitude>-6.26</longitude>
<elevation>20</elevation>
<population year="2002" measured="census">495781</population>
<population year="2006" measured="census">506211</population>
<population year="2011" measured="census">525383</population>
<located_at watertype="sea" sea="sea-Irische_See"/>
<located_on island="island-Ireland"/>
</city>
<city id="cty-IRL-2" country="IRL">
<name>Cork</name>
<latitude>51.9</latitude>
<longitude>-8.47</longitude>
<elevation>9</elevation>
<population year="2002" measured="census">123062</population>
<population year="2006" measured="census">119418</population>
<population year="2011" measured="census">118912</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-Ireland"/>
</city>
<city id="cty-IRL-3" country="IRL">
<name>Galway</name>
<latitude>53.27</latitude>
<longitude>-9.05</longitude>
<elevation>25</elevation>
<population year="2002" measured="census">65832</population>
<population year="2006" measured="census">72414</population>
<population year="2011" measured="census">75414</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-Ireland"/>
</city>
<city id="cty-IRL-" country="IRL">
<name>Limerick</name>
<latitude>52.67</latitude>
<longitude>-8.62</longitude>
<elevation>10</elevation>
<population year="2002" measured="census">54023</population>
<population year="2006" measured="census">52539</population>
<population year="2011" measured="census">56779</population>
<located_at watertype="river" river="river-Shannon"/>
<located_on island="island-Ireland"/>
</city>
</country>
<country car_code="RSM"
area="60"
capital="cty-San-Marino-San-Marino"
memberships="org-CE org-FAO org-IPU org-IAEA org-IBRD org-ICAO org-ICCt org-Interpol org-IFRCS org-ILO org-IMO org-IMF org-IOC org-IOM org-ITU org-ITUC org-LAIA org-OSCE org-OPCW org-UN org-UNCTAD org-UNESCO org-UPU org-WHO org-WIPO org-UNWTO">
<name>San Marino</name>
<localname>Repubblica di San Marino (la)</localname>
<population measured="est." year="1950">12781</population>
<population measured="est." year="1960">15393</population>
<population measured="est." year="1970">19136</population>
<population measured="census" year="1976">19149</population>
<population year="1997">24521</population>
<population year="2000" measured="admin.">26941</population>
<population year="2010" measured="admin.">31851</population>
<population year="2012" measured="admin.">32440</population>
<population_growth>0.87</population_growth>
<infant_mortality>4.52</infant_mortality>
<gdp_total>1866</gdp_total>
<gdp_agri>0.1</gdp_agri>
<gdp_ind>39.2</gdp_ind>
<gdp_serv>60.7</gdp_serv>
<inflation>2.8</inflation>
<unemployment>7</unemployment>
<indep_date>0301-01-01</indep_date>
<government>republic</government>
<encompassed continent="europe" percentage="100"/>
<religion percentage="100">Roman Catholic</religion>
<language percentage="100">Italian</language>
<border country="I" length="39"/>
<city id="cty-San-Marino-San-Marino" country="RSM">
<name>San Marino</name>
<latitude>43.93</latitude>
<longitude>12.45</longitude>
<elevation>749</elevation>
<population year="2000" measured="admin.">4442</population>
<population year="2012" measured="admin.">4227</population>
</city>
</country>
<country car_code="GBJ"
area="117"
capital="cty-Jersey-Saint-Helier"
memberships="org-UPU">
<name>Jersey</name>
<localname>the Bailiwick of Jersey</localname>
<population measured="census" year="1821">28600</population>
<population measured="census" year="1831">36582</population>
<population measured="census" year="1841">47544</population>
<population measured="census" year="1851">57020</population>
<population measured="census" year="1861">55613</population>
<population measured="census" year="1871">56627</population>
<population measured="census" year="1881">52445</population>
<population measured="census" year="1891">54518</population>
<population measured="census" year="1901">52576</population>
<population measured="census" year="1911">51898</population>
<population measured="census" year="1921">49701</population>
<population measured="census" year="1931">50462</population>
<population measured="census" year="1939">51080</population>
<population measured="census" year="1951">57310</population>
<population measured="census" year="1961">59489</population>
<population measured="census" year="1971">69329</population>
<population measured="census" year="1976">71018</population>
<population measured="census" year="1981">76050</population>
<population measured="census" year="1986">80212</population>
<population measured="census" year="1989">82809</population>
<population measured="census" year="1991">84082</population>
<population measured="census" year="1996">85150</population>
<population measured="census" year="2001">87186</population>
<population measured="census" year="2011">97857</population>
<population_growth>0.81</population_growth>
<infant_mortality>3.86</infant_mortality>
<gdp_total>5100</gdp_total>
<gdp_agri>2</gdp_agri>
<gdp_ind>2</gdp_ind>
<gdp_serv>96</gdp_serv>
<inflation>3.7</inflation>
<unemployment>1.7</unemployment>
<dependent country="GB"/>
<government>parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="100">Norman-French</ethnicgroup>
<language percentage="94.5">English</language>
<language percentage="4.6">Portuguese</language>
<city id="cty-Jersey-Saint-Helier" country="GBJ">
<name>Saint Helier</name>
<latitude>49.2</latitude>
<longitude>-2.1</longitude>
<located_at watertype="sea" sea="sea-Channel"/>
<located_on island="island-Jersey"/>
</city>
</country>
<country car_code="M"
area="316"
capital="cty-Malta-Valletta"
memberships="org-AG org-C org-CD org-CE org-EMU org-EAPC org-EBRD org-ECB org-EIB org-EU org-FAO org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IFRCS org-IFC org-IFAD org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-ITUC org-MIGA org-NSG org-OSCE org-OPCW org-OAS org-PFP org-PCA org-UN org-UNCTAD org-UNESCO org-UNIDO org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO">
<name>Malta</name>
<localname>the Republic of Malta </localname>
<population measured="census" year="1948">305991</population>
<population measured="census" year="1957">319620</population>
<population measured="census" year="1967">314216</population>
<population measured="census" year="1985">345418</population>
<population measured="census" year="1995">378132</population>
<population measured="census" year="2005">404962</population>
<population measured="census" year="2011">417432</population>
<population_growth>0.33</population_growth>
<infant_mortality>3.59</infant_mortality>
<gdp_total>9541</gdp_total>
<gdp_agri>1.4</gdp_agri>
<gdp_ind>25.3</gdp_ind>
<gdp_serv>73.3</gdp_serv>
<inflation>1</inflation>
<unemployment>6.4</unemployment>
<indep_date from="GB">1964-09-21</indep_date>
<government>republic</government>
<encompassed continent="europe" percentage="100"/>
<religion percentage="98">Roman Catholic</religion>
<language percentage="90.2">Maltese</language>
<language percentage="6">English</language>
<city id="cty-Malta-Valletta" country="M">
<name>Valletta</name>
<latitude>35.9</latitude>
<longitude>14.51</longitude>
<elevation>56</elevation>
<population year="1995" measured="census">7262</population>
<population year="2010" measured="census">5748</population>
<located_at watertype="sea" sea="sea-Mittelmeer"/>
<located_on island="island-Malta"/>
</city>
<city id="cty-Malta-Victoria" country="M">
<name>Victoria</name>
<latitude>36.04</latitude>
<longitude>14.24</longitude>
<population year="1995" measured="census">6524</population>
<population year="2010" measured="census">6252</population>
<located_on island="island-Gozo"/>
</city>
</country>
<country car_code="GBM"
area="588"
capital="cty-Man-Douglas"
memberships="org-UPU">
<name>Isle of Man</name>
<localname>the Isle of Man</localname>
<population measured="est." year="1950">55253</population>
<population measured="census" year="1951">54024</population>
<population measured="census" year="1961">47166</population>
<population measured="census" year="1966">49312</population>
<population measured="census" year="1971">53228</population>
<population measured="census" year="1976">60496</population>
<population measured="census" year="1981">64679</population>
<population measured="census" year="1986">64282</population>
<population measured="census" year="1991">69788</population>
<population measured="census" year="1996">71714</population>
<population measured="census" year="2001">76315</population>
<population measured="census" year="2006">80058</population>
<population measured="census" year="2011">84497</population>
<population_growth>0.8</population_growth>
<infant_mortality>4.17</infant_mortality>
<gdp_total>4076</gdp_total>
<gdp_agri>1</gdp_agri>
<gdp_ind>11</gdp_ind>
<gdp_serv>88</gdp_serv>
<inflation>5</inflation>
<unemployment>2</unemployment>
<dependent country="GB"/>
<government>parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<language percentage="100">English</language>
<city id="cty-Man-Douglas" country="GBM">
<name>Douglas</name>
<latitude>54.15</latitude>
<longitude>-4.6</longitude>
<located_at watertype="sea" sea="sea-Irische_See"/>
<located_on island="island-Isle_of_Man"/>
</city>
</country>
<country car_code="MD"
area="33700"
capital="cty-Moldova-Chisinau"
memberships="org-BSEC org-CEI org-CIS org-CD org-SELEC org-CE org-EurasEC org-EAPC org-EBRD org-FAO org-GCTU org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IFRCS org-IFC org-IFAD org-ILO org-IMO org-IMF org-IOC org-IOM org-ISO org-OIF org-ITU org-ITUC org-MIGA org-GUAM org-OSCE org-OPCW org-PFP org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNMIL org-UNMISS org-UNOCI org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO">
<name>Moldova</name>
<localname>Republica Moldova</localname>
<population measured="est." year="1950">2341003</population>
<population measured="census" year="1959">
2513483
</population>
<population measured="census" year="1970">
3085080
</population>
<population measured="census" year="1979">
3372051
</population>
<population year="1989" measured="census">3657665</population>
<population measured="census" year="2004">
3383332
</population>
<population year="2012" measured="estimate">3559541</population>
<population_growth>-1.02</population_growth>
<infant_mortality>12.93</infant_mortality>
<gdp_total>7932</gdp_total>
<gdp_agri>13.8</gdp_agri>
<gdp_ind>19.9</gdp_ind>
<gdp_serv>66.2</gdp_serv>
<inflation>4.6</inflation>
<unemployment>5.8</unemployment>
<indep_date from="Soviet Union">1991-08-27</indep_date>
<government>republic</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="78.2">Moldavian/Romanian</ethnicgroup>
<ethnicgroup percentage="8.4">Ukrainian</ethnicgroup>
<ethnicgroup percentage="5.8">Russian</ethnicgroup>
<ethnicgroup percentage="4.4">Gagauz</ethnicgroup>
<ethnicgroup percentage="1.9">Bulgarian</ethnicgroup>
<religion percentage="98">Christian Orthodox</religion>
<religion percentage="1.5">Jewish</religion>
<language percentage="75.8">Romanian</language>
<language percentage="16">Russian</language>
<language percentage="3">Gagauz</language>
<language percentage="4">Ukrainian</language>
<border country="UA" length="939"/>
<border country="RO" length="450"/>
<city id="cty-Moldova-Chisinau" country="MD">
<name>Chişinău</name>
<latitude>47</latitude>
<longitude>28.92</longitude>
<elevation>85</elevation>
<population year="1987">663000</population>
<population year="2004" measured="census">589445</population>
<population year="2010" measured="estimate">663400</population>
</city>
<city id="cty-Moldova-Tiraspol" country="MD">
<name>Tiraspol</name>
<latitude>46.85</latitude>
<longitude>29.63</longitude>
<population year="2004" measured="census">145293</population>
<population year="2010">148917</population>
<located_at watertype="river" river="river-Dnister"/>
</city>
<city id="cty-Moldova-Balti" country="MD">
<name>Bălţi</name>
<latitude>47.77</latitude>
<longitude>27.92</longitude>
<elevation>59</elevation>
<population year="2004" measured="census">122669</population>
<population year="2010" measured="estimate">143300</population>
</city>
</country>
<country car_code="P"
area="92080"
capital="cty-Portugal-Lisbon"
memberships="org-AfDB org-ADB org-AG org-BIS org-CD org-CPLP org-SELEC org-CE org-EMU org-EAPC org-EBRD org-ECB org-EIB org-CERN org-ESA org-EU org-FATF org-FAO org-IADB org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-ITUC org-LAIA org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNMIT org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>Portugal</name>
<localname>República Portuguesa (a)</localname>
<population measured="census" year="1864">3829618</population>
<population measured="census" year="1878">4550699</population>
<population measured="census" year="1890">5049729</population>
<population measured="census" year="1900">5423132</population>
<population measured="census" year="1911">5960056</population>
<population measured="census" year="1920">6032991</population>
<population measured="census" year="1930">6825883</population>
<population measured="census" year="1940">7755423</population>
<population measured="census" year="1950">8510240</population>
<population measured="census" year="1960">8889392</population>
<population measured="census" year="1970">8611125</population>
<population measured="census" year="1981">9833014</population>
<population measured="census" year="1991">9862540</population>
<population year="2001" measured="census">10356117</population>
<population measured="census" year="2011">10561614</population>
<population_growth>0.12</population_growth>
<infant_mortality>4.48</infant_mortality>
<gdp_total>219300</gdp_total>
<gdp_agri>2.6</gdp_agri>
<gdp_ind>22.2</gdp_ind>
<gdp_serv>75.2</gdp_serv>
<inflation>0.4</inflation>
<unemployment>16.8</unemployment>
<indep_date from="E">1139-07-25</indep_date>
<government>republic; parliamentary democracy</government>
<encompassed continent="europe" percentage="100"/>
<religion percentage="84.5">Roman Catholic</religion>
<religion percentage="1">Protestant</religion>
<language percentage="100">Portuguese</language>
<border country="E" length="1214"/>
<province id="prov-Portugal-2" country="P" capital="cty-Portugal-Aveiro">
<name>Aveiro</name>
<area>2808</area>
<population year="1985">656000</population>
<city id="cty-Portugal-Aveiro" country="P" province="prov-Portugal-2">
<name>Aveiro</name>
<latitude>40.63</latitude>
<longitude>-8.65</longitude>
<population year="2001" measured="census">53496</population>
</city>
</province>
<province id="prov-Portugal-3" country="P" capital="cty-Portugal-Beja">
<name>Beja</name>
<area>10225</area>
<population year="1985">167900</population>
<city id="cty-Portugal-Beja" country="P" province="prov-Portugal-3">
<name>Beja</name>
<latitude>38.03</latitude>
<longitude>-7.88</longitude>
</city>
</province>
<province id="prov-Portugal-4" country="P" capital="cty-Portugal-7">
<name>Braga</name>
<area>2673</area>
<population year="1985">746100</population>
<city id="cty-Portugal-7" country="P" province="prov-Portugal-4">
<name>Braga</name>
<latitude>41.55</latitude>
<longitude>-8.43</longitude>
<elevation>200</elevation>
<population year="1981">63033</population>
<population year="2001" measured="census">114003</population>
</city>
</province>
<province id="prov-Portugal-5" country="P" capital="cty-Portugal-Braganca">
<name>Braganca</name>
<area>6608</area>
<population year="1985">158300</population>
<city id="cty-Portugal-Braganca" country="P" province="prov-Portugal-5">
<name>Braganca</name>
<latitude>41.81</latitude>
<longitude>-6.76</longitude>
<elevation>674</elevation>
</city>
</province>
<province id="prov-Portugal-6"
country="P"
capital="cty-Portugal-CasteloBranco">
<name>Castelo Branco</name>
<area>6675</area>
<population year="1985">214700</population>
<city id="cty-Portugal-CasteloBranco"
country="P"
province="prov-Portugal-6">
<name>Castelo Branco</name>
<latitude>39.82</latitude>
<longitude>-7.5</longitude>
</city>
</province>
<province id="prov-Portugal-7" country="P" capital="cty-Portugal-6">
<name>Coimbra</name>
<area>3947</area>
<population year="1985">427600</population>
<city id="cty-Portugal-6" country="P" province="prov-Portugal-7">
<name>Coimbra</name>
<latitude>40.21</latitude>
<longitude>-8.43</longitude>
<elevation>34</elevation>
<population year="2001" measured="census">118016</population>
<located_at watertype="river" river="river-Mondego"/>
</city>
</province>
<province id="prov-Portugal-8" country="P" capital="cty-Portugal-Evora">
<name>Evora</name>
<area>7393</area>
<population year="1985">173500</population>
<city id="cty-Portugal-Evora" country="P" province="prov-Portugal-8">
<name>Evora</name>
<name>Évora</name>
<latitude>38.57</latitude>
<longitude>-7.9</longitude>
<elevation>300</elevation>
</city>
</province>
<province id="prov-Portugal-9" country="P" capital="cty-Portugal-Faro">
<name>Algarve</name>
<area>4960</area>
<population year="1985">340100</population>
<city id="cty-Portugal-Faro" country="P" province="prov-Portugal-9">
<name>Faro</name>
<latitude>37.03</latitude>
<longitude>-7.92</longitude>
<elevation>6</elevation>
<located_at watertype="sea" sea="sea-Atlantic"/>
</city>
</province>
<province id="prov-Portugal-10" country="P" capital="cty-Portugal-Guarda">
<name>Guarda</name>
<area>5518</area>
<population year="1985">187800</population>
<city id="cty-Portugal-Guarda" country="P" province="prov-Portugal-10">
<name>Guarda</name>
<latitude>40.53</latitude>
<longitude>-7.33</longitude>
<elevation>1056</elevation>
</city>
</province>
<province id="prov-Portugal-11" country="P" capital="cty-Portugal-Leiria">
<name>Leiria</name>
<area>3515</area>
<population year="1985">427800</population>
<city id="cty-Portugal-Leiria" country="P" province="prov-Portugal-11">
<name>Leiria</name>
<latitude>39.75</latitude>
<longitude>-8.8</longitude>
<population year="2001" measured="census">50608</population>
</city>
</province>
<province id="prov-Portugal-12" country="P" capital="cty-Portugal-Lisbon">
<name>Lisboa</name>
<area>2761</area>
<population year="1985">2063800</population>
<city id="cty-Portugal-Lisbon" country="P" province="prov-Portugal-12">
<name>Lisboa</name>
<latitude>38.71</latitude>
<longitude>-9.14</longitude>
<elevation>5</elevation>
<population year="1981">807937</population>
<population year="1991" measured="census">663394</population>
<population year="2001" measured="census">559248</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_at watertype="river" river="river-Tajo"/>
</city>
<city id="cty-Portugal-4" country="P" province="prov-Portugal-12">
<name>Amadora</name>
<latitude>38.73</latitude>
<longitude>-9.23</longitude>
<population year="1981">163878</population>
<population year="1991" measured="census">181774</population>
<population year="2001" measured="census">89232</population>
<population year="2011">175136</population>
</city>
<city id="cty-Portugal-9" country="P" province="prov-Portugal-12">
<name>Barreiro</name>
<latitude>38.67</latitude>
<longitude>-9.07</longitude>
<elevation>3</elevation>
<population year="1981">50863</population>
<population year="2011">79042</population>
<located_at watertype="river" river="river-Tajo"/>
</city>
<city id="cty-Portugal-11" country="P" province="prov-Portugal-12">
<name>Almada</name>
<latitude>38.68</latitude>
<longitude>-9.16</longitude>
<elevation>50</elevation>
<population year="1981">42607</population>
<population year="2011">49578</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_at watertype="river" river="river-Tajo"/>
</city>
</province>
<province id="prov-Portugal-13" country="P" capital="cty-Portugal-Portalegre">
<name>Portalegre</name>
<area>6065</area>
<population year="1985">134300</population>
<city id="cty-Portugal-Portalegre"
country="P"
province="prov-Portugal-13">
<name>Portalegre</name>
<latitude>39.32</latitude>
<longitude>-7.42</longitude>
</city>
</province>
<province id="prov-Portugal-14" country="P" capital="cty-Portugal-3">
<name>Porto</name>
<area>2395</area>
<population year="1985">1622300</population>
<city id="cty-Portugal-3" country="P" province="prov-Portugal-14">
<name>Oporto</name>
<name>Porto</name>
<latitude>41.16</latitude>
<longitude>-8.62</longitude>
<population year="1981">327368</population>
<population year="1991" measured="census">302472</population>
<population year="2001" measured="census">266790</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_at watertype="river" river="river-Douro"/>
</city>
<city id="cty-Portugal-8" country="P" province="prov-Portugal-14">
<name>Vila Nova de Gaia</name>
<latitude>41.13</latitude>
<longitude>-8.62</longitude>
<population year="1981">62468</population>
<population year="2001" measured="census">72576</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_at watertype="river" river="river-Douro"/>
</city>
</province>
<province id="prov-Portugal-15" country="P" capital="cty-Portugal-Santarem">
<name>Santarem</name>
<name>Santarém</name>
<area>6747</area>
<population year="1985">442700</population>
<city id="cty-Portugal-Santarem" country="P" province="prov-Portugal-15">
<name>Santarem</name>
<name>Santarém</name>
<latitude>39.23</latitude>
<longitude>-8.68</longitude>
<located_at watertype="river" river="river-Tajo"/>
</city>
</province>
<province id="prov-Portugal-16" country="P" capital="cty-Portugal-5">
<name>Setubal</name>
<area>5064</area>
<population year="1985">713700</population>
<city id="cty-Portugal-5" country="P" province="prov-Portugal-16">
<name>Setúbal</name>
<latitude>38.53</latitude>
<longitude>-8.88</longitude>
<population year="1981">77885</population>
<population year="1991" measured="census">103634</population>
<population year="2001" measured="census">91108</population>
<located_at watertype="river" river="river-Sado"/>
<located_at watertype="sea" sea="sea-Atlantic"/>
</city>
</province>
<province id="prov-Portugal-17" country="P" capital="cty-Portugal-Viana">
<name>Viana do Castelo</name>
<area>2255</area>
<population year="1985">248700</population>
<city id="cty-Portugal-Viana" country="P" province="prov-Portugal-17">
<name>Viana do Castelo</name>
<latitude>41.7</latitude>
<longitude>-8.83</longitude>
<elevation>15</elevation>
<located_at watertype="sea" sea="sea-Atlantic"/>
</city>
</province>
<province id="prov-Portugal-18" country="P" capital="cty-Portugal-VilaReal">
<name>Vila Real</name>
<area>4328</area>
<population year="1985">237100</population>
<city id="cty-Portugal-VilaReal" country="P" province="prov-Portugal-18">
<name>Vila Real</name>
<latitude>41.3</latitude>
<longitude>-7.75</longitude>
<elevation>450</elevation>
</city>
</province>
<province id="prov-Portugal-19" country="P" capital="cty-Portugal-Viseu">
<name>Viseu</name>
<area>5007</area>
<population year="1985">401000</population>
<city id="cty-Portugal-Viseu" country="P" province="prov-Portugal-19">
<name>Viseu</name>
<latitude>40.67</latitude>
<longitude>-7.92</longitude>
</city>
</province>
<province id="prov-Portugal-21"
country="P"
capital="cty-Portugal-PontaDelgada">
<name>Azores</name>
<area>2247</area>
<population year="1985">236700</population>
<city id="cty-Portugal-PontaDelgada"
country="P"
province="prov-Portugal-21">
<name>Ponta Delgada</name>
<latitude>37.82</latitude>
<longitude>-25.75</longitude>
<population year="2002">46102</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-Sao_Miguel"/>
</city>
</province>
<province id="prov-Portugal-22" country="P" capital="cty-Portugal-10">
<name>Madeira</name>
<area>794</area>
<population year="1985">253000</population>
<city id="cty-Portugal-10" country="P" province="prov-Portugal-22">
<name>Funchal</name>
<name>Madeira</name>
<latitude>32.65</latitude>
<longitude>-16.92</longitude>
<population year="1981">44111</population>
<population year="1991" measured="census">115403</population>
<population year="2001" measured="census">112362</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-Madeira"/>
</city>
</province>
</country>
<country car_code="SVAX" area="62049" capital="city-Longyearbyen-SVAX-SVAX">
<name>Svalbard</name>
<localname>Svalbard</localname>
<population year="1987">2116</population>
<population year="2014">1872</population>
<population_growth>-0.03</population_growth>
<dependent country="N"/>
<government>territory of Norway administered by the Ministry of Industry</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="55.4">Norwegian</ethnicgroup>
<ethnicgroup percentage="44.3">Russian Ukrainian</ethnicgroup>
<city id="city-Longyearbyen-SVAX-SVAX" country="SVAX">
<name>Longyearbyen</name>
<latitude>78.13</latitude>
<longitude>15.33</longitude>
<located_at watertype="sea" sea="sea-NorwegianSea"/>
<located_on island="island-Svalbard"/>
</city>
</country>
<country car_code="GB"
area="244820"
capital="cty-United-Kingdom-2"
memberships="org-AfDB org-ADB org-AG org-BIS org-CDB org-C org-CD org-SELEC org-CE org-CBSS org-EAPC org-EBRD org-EIB org-CERN org-ESA org-EU org-EITI org-FATF org-FAO org-G-10 org-G-20 org-G-5 org-G-7 org-G-8 org-IADB org-IGAD org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICJ org-ICCt org-Interpol org-IDA org-IEA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-ITUC org-MIGA org-NATO org-NEA org-NSG org-OECD org-OSCE org-OPCW org-OAS org-PIF org-PCA org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNMISS org-MONUSCO org-UNFICYP org-UNRWA org-UNSC org-UPU org-WCO org-WHO org-WIPO org-WMO org-WTO org-ZC">
<name>United Kingdom</name>
<localname>the United Kingdom of Great Britain and Northern Ireland</localname>
<population measured="est." year="1950">50616012</population>
<population measured="est." year="1960">52544326</population>
<population measured="est." year="1970">55645296</population>
<population measured="est." year="1980">56302877</population>
<population measured="est." year="1990">57214478</population>
<population measured="census" year="1991">54888844</population>
<population measured="census" year="2001">58789194</population>
<population measured="census" year="2011">63182178</population>
<population year="2013" measured="estimate">64105654</population>
<population_growth>0.54</population_growth>
<infant_mortality>4.44</infant_mortality>
<gdp_total>2490000</gdp_total>
<gdp_agri>0.7</gdp_agri>
<gdp_ind>20.5</gdp_ind>
<gdp_serv>78.9</gdp_serv>
<inflation>2</inflation>
<unemployment>7.2</unemployment>
<indep_date>1801-01-01</indep_date>
<government>constitutional monarchy and Commonwealth realm</government>
<encompassed continent="europe" percentage="100"/>
<ethnicgroup percentage="83.6">English</ethnicgroup>
<ethnicgroup percentage="8.6">Scottish</ethnicgroup>
<ethnicgroup percentage="4.9">Welsh</ethnicgroup>
<ethnicgroup percentage="2.9">Northern Irish</ethnicgroup>
<ethnicgroup percentage="2">African</ethnicgroup>
<ethnicgroup percentage="1.8">Indian</ethnicgroup>
<ethnicgroup percentage="1.3">Pakistani</ethnicgroup>
<religion percentage="45">Anglican</religion>
<religion percentage="19">Protestant</religion>
<religion percentage="6">Roman Catholic</religion>
<religion percentage="2.7">Muslim</religion>
<religion percentage="1.0">Hindu</religion>
<religion percentage="0.6">Sikh</religion>
<religion percentage="0.5">Jewish</religion>
<religion percentage="0.3">Buddhist</religion>
<language percentage="95">English</language>
<border country="IRL" length="360"/>
<province id="prov-gb-1" country="GB" capital="cty-United-Kingdom-Newcastle">
<name>North East</name>
<area>8573</area>
<population year="2001" measured="census">2515442</population>
<population measured="census" year="2011">2596886</population>
<population measured="estimate" year="2013">2610481</population>
<city id="cty-United-Kingdom-Newcastle" country="GB" province="prov-gb-1">
<name>Newcastle upon Tyne</name>
<name>Newcastle</name>
<latitude>54.97</latitude>
<longitude>-1.6</longitude>
<population measured="census" year="1991">255362</population>
<population measured="census" year="2001">254777</population>
<population measured="census" year="2011">268064</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-22" country="GB" province="prov-gb-1">
<name>Sunderland</name>
<latitude>54.91</latitude>
<longitude>-1.38</longitude>
<population measured="census" year="1991">183310</population>
<population measured="census" year="2001">177739</population>
<population measured="census" year="2011">174286</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-41" country="GB" province="prov-gb-1">
<name>Gateshead</name>
<latitude>54.95</latitude>
<longitude>-1.6</longitude>
<population measured="census" year="1991">118212</population>
<population measured="census" year="2001">112599</population>
<population measured="census" year="2011">120046</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-72" country="GB" province="prov-gb-1">
<name>Middlesbrough</name>
<latitude>54.58</latitude>
<longitude>-1.24</longitude>
<population measured="census" year="1991">184773</population>
<population measured="census" year="2001">175479</population>
<population measured="census" year="2011">174700</population>
<located_on island="island-GreatBritain"/>
</city>
</province>
<province id="prov-gb-2" country="GB" capital="cty-United-Kingdom-8">
<name>North West</name>
<area>14105</area>
<population year="2001" measured="census">6729764</population>
<population measured="census" year="2011">7052177</population>
<population measured="estimate" year="2013">7103260</population>
<city id="cty-United-Kingdom-8" country="GB" province="prov-gb-2">
<name>Manchester</name>
<latitude>53.47</latitude>
<longitude>-2.23</longitude>
<elevation>38</elevation>
<population measured="census" year="1991">447863</population>
<population measured="census" year="2001">438752</population>
<population measured="census" year="2011">510746</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-14" country="GB" province="prov-gb-2">
<name>Wigan</name>
<latitude>53.54</latitude>
<longitude>-2.63</longitude>
<population measured="census" year="1991">98070</population>
<population measured="census" year="2001">92415</population>
<population measured="census" year="2011">103608</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-23" country="GB" province="prov-gb-2">
<name>Stockport</name>
<latitude>53.41</latitude>
<longitude>-2.15</longitude>
<population measured="census" year="2011">105878</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-26" country="GB" province="prov-gb-2">
<name>Bolton</name>
<latitude>53.58</latitude>
<longitude>-2.43</longitude>
<population measured="census" year="2011">194189</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-33" country="GB" province="prov-gb-2">
<name>Salford</name>
<latitude>53.51</latitude>
<longitude>-2.33</longitude>
<elevation>68</elevation>
<population measured="census" year="2011">103886</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-37" country="GB" province="prov-gb-2">
<name>Oldham</name>
<latitude>53.54</latitude>
<longitude>-2.12</longitude>
<population measured="census" year="1991">103931</population>
<population measured="census" year="2001">103544</population>
<population measured="census" year="2011">96555</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-40" country="GB" province="prov-gb-2">
<name>Rochdale</name>
<latitude>53.61</latitude>
<longitude>-2.16</longitude>
<population measured="census" year="1991">100935</population>
<population measured="census" year="2001">102888</population>
<population measured="census" year="2011">107926</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-49" country="GB" province="prov-gb-2">
<name>Warrington</name>
<latitude>53.39</latitude>
<longitude>-2.6</longitude>
<population measured="census" year="1991">152458</population>
<population measured="census" year="2001">158195</population>
<population measured="census" year="2011">165456</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-64" country="GB" province="prov-gb-2">
<name>Blackpool</name>
<latitude>53.81</latitude>
<longitude>-3.05</longitude>
<elevation>5</elevation>
<population measured="census" year="1991">146262</population>
<population measured="census" year="2001">142283</population>
<population measured="census" year="2011">147663</population>
<located_at watertype="sea" sea="sea-Irische_See"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-75" country="GB" province="prov-gb-2">
<name>Blackburn</name>
<latitude>53.74</latitude>
<longitude>-2.48</longitude>
<population measured="census" year="2011">117963</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-7" country="GB" province="prov-gb-2">
<name>Liverpool</name>
<latitude>53.4</latitude>
<longitude>-2.98</longitude>
<elevation>70</elevation>
<population measured="census" year="1991">538386</population>
<population measured="census" year="2001">523783</population>
<population measured="census" year="2011">552267</population>
<located_at watertype="sea" sea="sea-Irische_See"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-11" country="GB" province="prov-gb-2">
<name>Birkenhead</name>
<latitude>53.39</latitude>
<longitude>-3.01</longitude>
<population measured="census" year="1991">149164</population>
<population measured="census" year="2001">137634</population>
<population measured="census" year="2011">142968</population>
<located_at watertype="sea" sea="sea-Irische_See"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-52" country="GB" province="prov-gb-2">
<name>St Helens</name>
<latitude>53.45</latitude>
<longitude>-2.75</longitude>
<population measured="census" year="1991">106293</population>
<population measured="census" year="2001">102629</population>
<population measured="census" year="2011">102885</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-84" country="GB" province="prov-gb-2">
<name>Preston</name>
<latitude>53.76</latitude>
<longitude>-2.7</longitude>
<population measured="census" year="2011">97886</population>
<located_on island="island-GreatBritain"/>
</city>
</province>
<province id="prov-gb-3" country="GB" capital="cty-United-Kingdom-4">
<name>Yorkshire and the Humber</name>
<area>15407</area>
<population year="2001" measured="census">4964833</population>
<population measured="census" year="2011">5283733</population>
<population measured="estimate" year="2013">5337710</population>
<city id="cty-United-Kingdom-4" country="GB" province="prov-gb-3">
<name>Leeds</name>
<latitude>53.8</latitude>
<longitude>-1.55</longitude>
<elevation>9</elevation>
<population measured="census" year="1991">424194</population>
<population measured="census" year="2001">445795</population>
<population measured="census" year="2011">474632</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-12" country="GB" province="prov-gb-3">
<name>Wakefield</name>
<latitude>53.68</latitude>
<longitude>-1.5</longitude>
<population measured="census" year="1991">93091</population>
<population measured="census" year="2001">99833</population>
<population measured="census" year="2011">99251</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-6" country="GB" province="prov-gb-3">
<name>Bradford</name>
<latitude>53.79</latitude>
<longitude>-1.75</longitude>
<population measured="census" year="1991">305101</population>
<population measured="census" year="2001">311130</population>
<population measured="census" year="2011">349561</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-10" country="GB" province="prov-gb-3">
<name>Huddersfield</name>
<latitude>53.65</latitude>
<longitude>-1.78</longitude>
<population measured="census" year="1991">147847</population>
<population measured="census" year="2001">149938</population>
<population measured="census" year="2011">162949</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-5" country="GB" province="prov-gb-3">
<name>Sheffield</name>
<latitude>53.38</latitude>
<longitude>-1.47</longitude>
<population measured="census" year="1991">457805</population>
<population measured="census" year="2001">469127</population>
<population measured="census" year="2011">518090</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-20" country="GB" province="prov-gb-3">
<name>Doncaster</name>
<latitude>53.52</latitude>
<longitude>-1.13</longitude>
<population measured="census" year="1991">103580</population>
<population measured="census" year="2001">101056</population>
<population measured="census" year="2011">109805</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-29" country="GB" province="prov-gb-3">
<name>Rotherham</name>
<latitude>53.43</latitude>
<longitude>-1.36</longitude>
<population measured="census" year="2011">109691</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-120" country="GB" province="prov-gb-3">
<name>York</name>
<latitude>53.96</latitude>
<longitude>-1.08</longitude>
<population measured="census" year="1991">124609</population>
<population measured="census" year="2001">137505</population>
<population measured="census" year="2011">152841</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-28" country="GB" province="prov-gb-3">
<name>Kingston upon Hull</name>
<name>Hull</name>
<latitude>53.75</latitude>
<longitude>-0.33</longitude>
<population measured="census" year="1991">310636</population>
<population measured="census" year="2001">301416</population>
<population measured="census" year="2011">284321</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
<located_on island="island-GreatBritain"/>
</city>
</province>
<province id="prov-gb-4" country="GB" capital="cty-United-Kingdom-25">
<name>East Midlands</name>
<area>15606</area>
<population year="2001" measured="census">4172174</population>
<population measured="census" year="2011">4533222</population>
<population measured="estimate" year="2013">4598729</population>
<city id="cty-United-Kingdom-25" country="GB" province="prov-gb-4">
<name>Nottingham</name>
<latitude>52.95</latitude>
<longitude>-1.13</longitude>
<elevation>61</elevation>
<population measured="census" year="1991">270222</population>
<population measured="census" year="2001">249584</population>
<population measured="census" year="2011">289301</population>
<located_at watertype="river" river="river-Trent"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-48" country="GB" province="prov-gb-4">
<name>Northampton</name>
<latitude>52.23</latitude>
<longitude>-0.89</longitude>
<population measured="census" year="1991">183082</population>
<population measured="census" year="2001">197199</population>
<population measured="census" year="2011">215173</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Leicester" country="GB" province="prov-gb-4">
<name>Leicester</name>
<latitude>52.63</latitude>
<longitude>-1.13</longitude>
<population measured="census" year="1991">377700</population>
<population measured="census" year="2001">401448</population>
<population measured="census" year="2011">443760</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-34" country="GB" province="prov-gb-4">
<name>Derby</name>
<latitude>52.92</latitude>
<longitude>-1.48</longitude>
<population measured="census" year="1991">223836</population>
<population measured="census" year="2001">229407</population>
<population measured="census" year="2011">255394</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Lincoln" country="GB" province="prov-gb-4">
<name>Lincoln</name>
<latitude>53.23</latitude>
<longitude>-0.54</longitude>
<population measured="census" year="1991">97996</population>
<population measured="census" year="2001">104221</population>
<population measured="census" year="2011">100160</population>
<located_on island="island-GreatBritain"/>
</city>
</province>
<province id="prov-gb-5" country="GB" capital="cty-United-Kingdom-3">
<name>West Midlands</name>
<area>12998</area>
<population year="2001" measured="census">5267308</population>
<population measured="census" year="2011">5601847</population>
<population measured="estimate" year="2013">5674712</population>
<city id="cty-United-Kingdom-3" country="GB" province="prov-gb-5">
<name>Birmingham</name>
<latitude>52.48</latitude>
<longitude>-1.89</longitude>
<elevation>140</elevation>
<population measured="census" year="1991">965928</population>
<population measured="census" year="2001">970892</population>
<population measured="census" year="2011">1085810</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-15" country="GB" province="prov-gb-5">
<name>Coventry</name>
<latitude>52.41</latitude>
<longitude>-1.51</longitude>
<population measured="census" year="1991">299316</population>
<population measured="census" year="2001">305854</population>
<population measured="census" year="2011">325949</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-32" country="GB" province="prov-gb-5">
<name>Wolverhampton</name>
<latitude>52.58</latitude>
<longitude>-2.13</longitude>
<population measured="census" year="2011">210319</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-42" country="GB" province="prov-gb-5">
<name>Solihull</name>
<latitude>52.41</latitude>
<longitude>-1.78</longitude>
<population measured="census" year="1991">118103</population>
<population measured="census" year="2001">118907</population>
<population measured="census" year="2011">123187</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-31" country="GB" province="prov-gb-5">
<name>Stoke-on-Trent</name>
<latitude>53</latitude>
<longitude>-2.18</longitude>
<elevation>107</elevation>
<population measured="census" year="1991">266543</population>
<population measured="census" year="2001">259252</population>
<population measured="census" year="2011">270726</population>
<located_at watertype="river" river="river-Trent"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Worcester" country="GB" province="prov-gb-5">
<name>Worcester</name>
<latitude>52.19</latitude>
<longitude>-2.22</longitude>
<population measured="census" year="1991">82661</population>
<population measured="census" year="2001">94029</population>
<population measured="census" year="2011">100153</population>
<located_at watertype="river" river="river-Severn"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Sutton" country="GB" province="prov-gb-5">
<name>Sutton Coldfield</name>
<name>Sutton</name>
<latitude>52.56</latitude>
<longitude>-1.82</longitude>
<population measured="census" year="1991">106001</population>
<population measured="census" year="2001">105452</population>
<population measured="census" year="2011">109015</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Telford" country="GB" province="prov-gb-5">
<name>Telford</name>
<latitude>52.68</latitude>
<longitude>-2.45</longitude>
<population measured="census" year="1991">114251</population>
<population measured="census" year="2001">131489</population>
<population measured="census" year="2011">142723</population>
<located_on island="island-GreatBritain"/>
</city>
</province>
<province id="prov-gb-6" country="GB" capital="cty-United-Kingdom-104">
<name>East of England</name>
<area>19108</area>
<population year="2001" measured="census">5388140</population>
<population measured="census" year="2011">5846965</population>
<population measured="estimate" year="2013">5954169</population>
<city id="cty-United-Kingdom-104" country="GB" province="prov-gb-6">
<name>Cambridge</name>
<latitude>52.21</latitude>
<longitude>0.12</longitude>
<elevation>6</elevation>
<population measured="census" year="1991">109912</population>
<population measured="census" year="2001">127713</population>
<population measured="census" year="2011">145818</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-59" country="GB" province="prov-gb-6">
<name>Peterborough</name>
<latitude>52.58</latitude>
<longitude>-0.25</longitude>
<population measured="census" year="1991">134788</population>
<population measured="census" year="2001">136292</population>
<population measured="census" year="2011">161707</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-103" country="GB" province="prov-gb-6">
<name>Ipswich</name>
<latitude>52.06</latitude>
<longitude>1.16</longitude>
<population measured="census" year="1991">130157</population>
<population measured="census" year="2001">138718</population>
<population measured="census" year="2011">144957</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-60" country="GB" province="prov-gb-6">
<name>Chelmsford</name>
<latitude>51.92</latitude>
<longitude>0.47</longitude>
<population measured="census" year="1991">97451</population>
<population measured="census" year="2001">99962</population>
<population measured="census" year="2011">110507</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Watford" country="GB" province="prov-gb-6">
<name>Watford</name>
<latitude>51.66</latitude>
<longitude>-0.4</longitude>
<elevation>71</elevation>
<population measured="census" year="1991">113080</population>
<population measured="census" year="2001">120960</population>
<population measured="census" year="2011">131982</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-55" country="GB" province="prov-gb-6">
<name>Southend-on-Sea</name>
<latitude>51.54</latitude>
<longitude>0.71</longitude>
<population measured="census" year="1991">158517</population>
<population measured="census" year="2001">160257</population>
<population measured="census" year="2011">175547</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
<located_at watertype="river" river="river-Themse"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-56" country="GB" province="prov-gb-6">
<name>Basildon</name>
<latitude>51.58</latitude>
<longitude>0.49</longitude>
<population measured="census" year="1991">100924</population>
<population measured="census" year="2001">99876</population>
<population measured="census" year="2011">107123</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-67" country="GB" province="prov-gb-6">
<name>Colchester</name>
<latitude>51.89</latitude>
<longitude>0.9</longitude>
<population measured="census" year="1991">96063</population>
<population measured="census" year="2001">104390</population>
<population measured="census" year="2011">119441</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-87" country="GB" province="prov-gb-6">
<name>Norwich</name>
<latitude>52.63</latitude>
<longitude>1.3</longitude>
<population measured="census" year="1991">171304</population>
<population measured="census" year="2001">174047</population>
<population measured="census" year="2011">186682</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-53" country="GB" province="prov-gb-6">
<name>Luton</name>
<latitude>51.9</latitude>
<longitude>-0.43</longitude>
<population measured="census" year="1991">171671</population>
<population measured="census" year="2001">185543</population>
<population measured="census" year="2011">211228</population>
<located_on island="island-GreatBritain"/>
</city>
</province>
<province id="prov-gb-7" country="GB" capital="cty-United-Kingdom-2">
<name>London</name>
<area>1572</area>
<population year="2001" measured="census">7172091</population>
<population measured="census" year="2011">8173941</population>
<population measured="estimate" year="2013">8416535</population>
<city id="cty-United-Kingdom-2" country="GB" province="prov-gb-7">
<name>London</name>
<latitude>51.52</latitude>
<longitude>-0.09</longitude>
<elevation>11</elevation>
<population measured="census" year="1991">6715769</population>
<population measured="census" year="2001">7208384</population>
<population measured="census" year="2011">8250205</population>
<located_at watertype="river" river="river-Themse"/>
<located_on island="island-GreatBritain"/>
</city>
</province>
<province id="prov-gb-8" country="GB" capital="cty-United-Kingdom-39">
<name>South East</name>
<area>19069</area>
<population year="2001" measured="census">8000645</population>
<population measured="census" year="2011">8634750</population>
<population measured="estimate" year="2013">8792626</population>
<city id="cty-United-Kingdom-39" country="GB" province="prov-gb-8">
<name>Southampton</name>
<latitude>50.9</latitude>
<longitude>-1.4</longitude>
<population measured="census" year="1991">210138</population>
<population measured="census" year="2001">234224</population>
<population measured="census" year="2011">253651</population>
<located_at watertype="sea" sea="sea-Channel"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-47" country="GB" province="prov-gb-8">
<name>Portsmouth</name>
<latitude>50.82</latitude>
<longitude>-1.08</longitude>
<population measured="census" year="2011">238137</population>
<located_at watertype="sea" sea="sea-Channel"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-70" country="GB" province="prov-gb-8">
<name>Basingstoke</name>
<latitude>51.27</latitude>
<longitude>-1.09</longitude>
<population measured="census" year="1991">81228</population>
<population measured="census" year="2001">93963</population>
<population measured="census" year="2011">107355</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-50" country="GB" province="prov-gb-8">
<name>Milton Keynes</name>
<latitude>52.04</latitude>
<longitude>-0.76</longitude>
<population measured="census" year="1991">102428</population>
<population measured="census" year="2001">122041</population>
<population measured="census" year="2011">171750</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-57" country="GB" province="prov-gb-8">
<name>High Wycombe</name>
<latitude>51.63</latitude>
<longitude>-0.75</longitude>
<population measured="census" year="1991">106123</population>
<population measured="census" year="2001">110473</population>
<population measured="census" year="2011">120256</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-63" country="GB" province="prov-gb-8">
<name>Brighton and Hove</name>
<latitude>50.83</latitude>
<longitude>-0.15</longitude>
<population measured="census" year="1991">192453</population>
<population measured="census" year="2001">206628</population>
<population measured="census" year="2011">229700</population>
<located_at watertype="sea" sea="sea-Channel"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-76" country="GB" province="prov-gb-8">
<name>Maidstone</name>
<latitude>51.27</latitude>
<longitude>0.53</longitude>
<population measured="census" year="2011">107627</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-85" country="GB" province="prov-gb-8">
<name>Oxford</name>
<latitude>51.75</latitude>
<longitude>-1.26</longitude>
<population measured="census" year="1991">118795</population>
<population measured="census" year="2001">143016</population>
<population measured="census" year="2011">159994</population>
<located_at watertype="river" river="river-Themse"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-77" country="GB" province="prov-gb-8">
<name>Reading</name>
<latitude>51.45</latitude>
<longitude>-0.97</longitude>
<elevation>61</elevation>
<population measured="census" year="1991">213474</population>
<population measured="census" year="2011">218705</population>
<located_at watertype="river" river="river-Themse"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-121" country="GB" province="prov-gb-8">
<name>Slough</name>
<latitude>51.51</latitude>
<longitude>-0.59</longitude>
<population measured="census" year="1991">121811</population>
<population measured="census" year="2001">137736</population>
<population measured="census" year="2011">155298</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Eastbourne"
country="GB"
province="prov-gb-8">
<name>Eastbourne</name>
<latitude>50.77</latitude>
<longitude>0.28</longitude>
<population measured="census" year="1991">94793</population>
<population measured="census" year="2001">106562</population>
<population measured="census" year="2011">109185</population>
<located_at watertype="sea" sea="sea-Channel"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Gillingham"
country="GB"
province="prov-gb-8">
<name>Gillingham</name>
<latitude>51.38</latitude>
<longitude>0.55</longitude>
<population measured="census" year="1991">94923</population>
<population measured="census" year="2001">98403</population>
<population measured="census" year="2011">104157</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Crawley" country="GB" province="prov-gb-8">
<name>Crawley</name>
<latitude>51.11</latitude>
<longitude>-0.19</longitude>
<population measured="census" year="1991">88203</population>
<population measured="census" year="2001">100547</population>
<population measured="census" year="2011">106943</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Worthing" country="GB" province="prov-gb-8">
<name>Worthing</name>
<latitude>50.81</latitude>
<longitude>-0.37</longitude>
<elevation>7</elevation>
<population measured="census" year="2011">109120</population>
<located_at watertype="sea" sea="sea-Channel"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Woking" country="GB" province="prov-gb-8">
<name>Woking</name>
<latitude>51.32</latitude>
<longitude>-0.56</longitude>
<population measured="census" year="1991">101484</population>
<population measured="census" year="2001">105262</population>
<population measured="census" year="2011">105367</population>
<located_on island="island-GreatBritain"/>
</city>
</province>
<province id="prov-gb-9" country="GB" capital="cty-United-Kingdom-9">
<name>South West</name>
<area>23837</area>
<population year="2001" measured="census">4928434</population>
<population measured="census" year="2011">5288935</population>
<population measured="estimate" year="2013">5377595</population>
<city id="cty-United-Kingdom-9" country="GB" province="prov-gb-9">
<name>Bristol</name>
<latitude>51.45</latitude>
<longitude>-2.58</longitude>
<elevation>11</elevation>
<population measured="census" year="1991">496044</population>
<population measured="census" year="2001">516997</population>
<population measured="census" year="2011">535907</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-30" country="GB" province="prov-gb-9">
<name>Plymouth</name>
<latitude>50.37</latitude>
<longitude>-4.14</longitude>
<elevation>20</elevation>
<population measured="census" year="2011">234982</population>
<located_at watertype="sea" sea="sea-Channel"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-116" country="GB" province="prov-gb-9">
<name>Exeter</name>
<latitude>50.72</latitude>
<longitude>-3.53</longitude>
<population measured="census" year="1991">94717</population>
<population measured="census" year="2001">106772</population>
<population measured="census" year="2011">113507</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-58" country="GB" province="prov-gb-9">
<name>Bournemouth</name>
<latitude>50.72</latitude>
<longitude>-1.88</longitude>
<population measured="census" year="1991">155488</population>
<population measured="census" year="2001">167527</population>
<population measured="census" year="2011">187503</population>
<located_at watertype="sea" sea="sea-Channel"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-79" country="GB" province="prov-gb-9">
<name>Poole</name>
<latitude>50.72</latitude>
<longitude>-1.98</longitude>
<population measured="census" year="1991">138479</population>
<population measured="census" year="2001">144800</population>
<population measured="census" year="2011">154718</population>
<located_at watertype="sea" sea="sea-Channel"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-113" country="GB" province="prov-gb-9">
<name>Cheltenham</name>
<latitude>51.88</latitude>
<longitude>-2.07</longitude>
<population measured="census" year="1991">102633</population>
<population measured="census" year="2001">110320</population>
<population measured="census" year="2011">116447</population>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Gloucester"
country="GB"
province="prov-gb-9">
<name>Gloucester</name>
<latitude>51.87</latitude>
<longitude>-2.24</longitude>
<population measured="census" year="1991">114003</population>
<population measured="census" year="2001">123205</population>
<population measured="census" year="2011">136362</population>
<located_at watertype="river" river="river-Severn"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Swindon" country="GB" province="prov-gb-9">
<name>Swindon</name>
<latitude>51.56</latitude>
<longitude>-1.78</longitude>
<population measured="census" year="1991">145236</population>
<population measured="census" year="2001">155432</population>
<population measured="census" year="2011">182441</population>
<located_at watertype="river" river="river-Themse"/>
<located_on island="island-GreatBritain"/>
</city>
</province>
<province id="prov-gb-10" country="GB" capital="cty-United-Kingdom-134">
<name>Scotland</name>
<area>78133</area>
<population year="2001" measured="census">5062011</population>
<population measured="census" year="2011">5295403</population>
<population measured="estimate" year="2013">5327700</population>
<city id="cty-United-Kingdom-134" country="GB" province="prov-gb-10">
<name>Edinburgh</name>
<latitude>55.95</latitude>
<longitude>-3.19</longitude>
<elevation>47</elevation>
<population measured="census" year="1991">400632</population>
<population measured="census" year="2001">431393</population>
<population measured="census" year="2011">459366</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-133" country="GB" province="prov-gb-10">
<name>Glasgow</name>
<latitude>55.86</latitude>
<longitude>-4.26</longitude>
<population measured="census" year="2001">575132</population>
<population measured="census" year="2011">590507</population>
<located_at watertype="river" river="river-Clyde"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-135" country="GB" province="prov-gb-10">
<name>Aberdeen</name>
<latitude>57.15</latitude>
<longitude>-2.11</longitude>
<population measured="census" year="1991">182133</population>
<population measured="census" year="2001">185226</population>
<population measured="census" year="2011">195021</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-136" country="GB" province="prov-gb-10">
<name>Dundee</name>
<latitude>56.46</latitude>
<longitude>-2.97</longitude>
<population measured="census" year="2001">145817</population>
<population measured="census" year="2011">147285</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-Kirkwall" country="GB" province="prov-gb-10">
<name>Kirkwall</name>
<latitude>58.98</latitude>
<longitude>-2.96</longitude>
<population year="2004">6330</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
<located_on island="island-Orkney_Mainland"/>
</city>
<city id="cty-United-Kingdom-Lerwick" country="GB" province="prov-gb-10">
<name>Lerwick</name>
<latitude>60.16</latitude>
<longitude>-1.14</longitude>
<population year="2004">6570</population>
<located_at watertype="sea" sea="sea-Nordsee"/>
<located_on island="island-Shetland_Mainland"/>
</city>
</province>
<province id="prov-gb-11" country="GB" capital="cty-United-Kingdom-16">
<name>Wales</name>
<area>20735</area>
<population year="2001" measured="census">2903085</population>
<population measured="census" year="2011">3063456</population>
<population measured="estimate" year="2013">3082412</population>
<city id="cty-United-Kingdom-16" country="GB" province="prov-gb-11">
<name>Cardiff</name>
<latitude>51.48</latitude>
<longitude>-3.18</longitude>
<population measured="census" year="1991">276464</population>
<population measured="census" year="2001">296808</population>
<population measured="census" year="2011">335145</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-46" country="GB" province="prov-gb-11">
<name>Swansea</name>
<latitude>51.62</latitude>
<longitude>-3.95</longitude>
<population measured="census" year="1991">171038</population>
<population measured="census" year="2001">169880</population>
<population measured="census" year="2011">179485</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-GreatBritain"/>
</city>
<city id="cty-United-Kingdom-80" country="GB" province="prov-gb-11">
<name>Newport</name>
<latitude>51.58</latitude>
<longitude>-3</longitude>
<population measured="census" year="1991">115522</population>
<population measured="census" year="2001">118323</population>
<population measured="census" year="2011">128060</population>
<located_at watertype="sea" sea="sea-Atlantic"/>
<located_on island="island-GreatBritain"/>
</city>
</province>
<province id="prov-gb-12" country="GB" capital="cty-United-Kingdom-17">
<name>Northern Ireland</name>
<area>14130</area>
<population measured="census" year="2001">1685267</population>
<population measured="census" year="2011">1810863</population>
<population measured="estimate" year="2013">1829725</population>
<city id="cty-United-Kingdom-17" country="GB" province="prov-gb-12">
<name>Belfast</name>
<latitude>54.6</latitude>
<longitude>-5.93</longitude>
<population measured="census" year="1991">279237</population>
<population measured="census" year="2001">276705</population>
<population measured="census" year="2011">280561</population>
<located_at watertype="sea" sea="sea-Irische_See"/>
<located_on island="island-Ireland"/>
</city>
</province>
</country>
<country car_code="AFG"
area="647500"
capital="cty-Afghanistan-Kabul"
memberships="org-ADB org-CP org-CICA org-ECO org-EITI org-FAO org-G-77 org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-ICCt org-Interpol org-IDA org-IFRCS org-IFC org-IFAD org-ILO org-IMF org-IOC org-IOM org-ISO org-ITSO org-ITU org-IDB org-MIGA org-NAM org-OPCW org-OIC org-SCO org-SACEP org-SAARC org-UN org-UNCTAD org-UNESCO org-UNIDO org-UPU org-WCO org-WFTU org-WHO org-WIPO org-WMO org-UNWTO org-WTO">
<name>Afghanistan</name>
<localname>جُمْهُورِئ إِسْلامِئ أَفْغَانِسْتَان</localname>
<population measured="est." year="1950">7450738</population>
<population measured="est." year="1960">8774440</population>
<population measured="est." year="1970">11015621</population>
<population measured="census" year="1979">13051358</population>
<population year="2006" measured="estimate">22575900</population>
<population year="2009" measured="estimate">24485600</population>
<population year="2013" measured="estimate">26023100</population>
<population_growth>2.29</population_growth>
<infant_mortality>117.23</infant_mortality>
<gdp_total>20650</gdp_total>
<gdp_agri>20</gdp_agri>
<gdp_ind>25.6</gdp_ind>
<gdp_serv>54.4</gdp_serv>
<inflation>6.8</inflation>
<unemployment>35</unemployment>
<indep_date from="GB">1919-08-19</indep_date>
<government>Islamic republic</government>
<encompassed continent="asia" percentage="100"/>
<ethnicgroup percentage="25">Tajik</ethnicgroup>
<ethnicgroup percentage="38">Pashtun</ethnicgroup>
<ethnicgroup percentage="6">Uzbek</ethnicgroup>
<ethnicgroup percentage="19">Hazara</ethnicgroup>
<religion percentage="99">Muslim</religion>
<language percentage="11">Turkic</language>
<language percentage="35">Pashtu</language>
<language percentage="50">Afghan Persian</language>
<border country="CN" length="76"/>
<border country="IR" length="936"/>
<border country="PK" length="2430"/>
<border country="TAD" length="1206"/>
<border country="TM" length="744"/>
<border country="UZB" length="137"/>
<city id="cty-Afghanistan-Kabul" country="AFG">
<name>Kabul</name>
<localname>کابل</localname>
<latitude>34.53</latitude>
<longitude>69.17</longitude>
<elevation>1791</elevation>
<population year="1987">892000</population>
<population year="2004" measured="estimate">2435400</population>
</city>
<city id="cty-Afghanistan-2" country="AFG">
<name>Herat</name>
<localname>هرات</localname>
<latitude>34.34</latitude>
<longitude>62.2</longitude>
<elevation>920</elevation>
<population year="2004" measured="estimate">335200</population>
</city>
<city id="cty-Afghanistan-3" country="AFG">
<name>Kandahar</name>
<localname>کندهار</localname>
<latitude>31.62</latitude>
<longitude>65.72</longitude>
<elevation>1010</elevation>
<population year="2004" measured="estimate">311800</population>
</city>
<city id="cty-Afghanistan-4" country="AFG">
<name>Mazar-i-Sharif</name>
<localname>مزار شریف</localname>
<latitude>36.7</latitude>
<longitude>67.12</longitude>
<elevation>357</elevation>
<population year="2004" measured="estimate">288700</population>
</city>
</country>
<country car_code="CN"
area="9596960"
capital="cty-China-3"
memberships="org-AfDB org-UNAMID org-ARF org-APEC org-ADB org-ASEAN org-BIS org-CDB org-SICA org-CICA org-EAS org-FATF org-FAO org-G-20 org-G-24 org-G-77 org-IADB org-IPU org-IAEA org-IBRD org-ICC org-ICAO org-Interpol org-IDA org-IFRCS org-IFC org-IFAD org-IHO org-ILO org-IMO org-IMSO org-IMF org-IOC org-IOM org-ITSO org-ITU org-LAIA org-MIGA org-NAM org-NSG org-OPCW org-OAS org-PIF org-PCA org-SCO org-SAARC org-UN org-UNCTAD org-UNESCO org-UNHCR org-UNIDO org-UNMIT org-UNIFIL org-MINURSO org-UNMIL org-UNMISS org-UNOCI org-MONUSCO org-UNFICYP org-UNSC org-UNTSO org-UPU org-WCO org-WHO org-WIPO org-WMO org-UNWTO org-WTO org-ZC">
<name>China</name>
<population measured="est." year="1950">543776080</population>
<population measured="est." year="1960">650680114</population>
<population measured="est." year="1970">814377714</population>
<population measured="est." year="1980">984015677</population>
<population measured="est." year="1990">1165428967</population>
<population year="2000" measured="census">1242612226</population>
<population year="2010" measured="census">1339724852</population>
<population year="2013" measured="estimate">1360720000</population>
<population_growth>0.44</population_growth>
<infant_mortality>14.79</infant_mortality>
<gdp_total>9330000</gdp_total>
<gdp_agri>10</gdp_agri>
<gdp_ind>43.9</gdp_ind>
<gdp_serv>46.1</gdp_serv>
<inflation>2.6</inflation>
<unemployment>4.1</unemployment>
<government>Communist state</government>
<encompassed continent="asia" percentage="100"/>
<ethnicgroup percentage="91.5">Han Chinese</ethnicgroup>
<religion percentage="2">Muslim</religion>
<religion percentage="4">Christian</religion>
<border country="R" length="3645"/>
<border country="AFG" length="76"/>
<border country="PK" length="523"/>
<border country="TAD" length="414"/>
<border country="MYA" length="2185"/>
<border country="IND" length="3380"/>
<border country="NEP" length="1236"/>
<border country="BHT" length="470"/>
<border country="LAO" length="423"/>
<border country="VN" length="1281"/>
<border country="KAZ" length="1533"/>
<border country="NOK" length="1416"/>
<border country="KGZ" length="858"/>
<border country="MNG" length="4673"/>
<border country="MACX" length="0.34"/>
<border country="HONX" length="30"/>
<province id="prov-China-2" country="CN" capital="cty-China-42">
<name>Anhui</name>
<localname>安徽</localname>
<area>139900</area>
<population measured="census" year="1982">49665724</population>
<population measured="census" year="1990">56181005</population>
<population year="1996">59550000</population>
<population measured="census" year="2000">58999948</population>
<population measured="census" year="2010">59500468</population>
<population measured="estimate" year="2013">60298000</population>
<city id="cty-China-42" country="CN" province="prov-China-2">
<name>Hefei</name>
<localname>合肥市</localname>
<latitude>31.87</latitude>
<longitude>117.28</longitude>
<elevation>37</elevation>
<population year="1990" measured="census">1099523</population>
<population year="1991">1000000</population>
<population year="2000" measured="census">1659075</population>
<population year="2010" measured="census">3310268</population>
</city>
<city id="cty-China-34" country="CN" province="prov-China-2">
<name>Huainan</name>
<latitude>32.62</latitude>
<longitude>116.98</longitude>
<population year="1991">1200000</population>
<located_at watertype="river" river="river-Huai"/>
</city>
<city id="cty-China-73" country="CN" province="prov-China-2">
<name>Bengbu</name>
<latitude>32.92</latitude>
<longitude>117.38</longitude>
<population year="1990">449245</population>
<located_at watertype="river" river="river-Huai"/>
</city>
<city id="cty-China-76" country="CN" province="prov-China-2">
<name>Wuhu</name>
<latitude>31.37</latitude>
<longitude>118.39</longitude>
<elevation>7.9</elevation>
<population year="1990">425740</population>
<located_at watertype="river" river="river-Jangtse"/>
</city>
<city id="cty-China-94" country="CN" province="prov-China-2">
<name>Huaibei</name>
<latitude>33.58</latitude>
<longitude>116.47</longitude>
<population year="1990">366549</population>
</city>
<city id="cty-China-120" country="CN" province="prov-China-2">
<name>Maanshan</name>
<latitude>31.7</latitude>
<longitude>118.35</longitude>
<population year="1990">305421</population>
<located_at watertype="river" river="river-Jangtse"/>
</city>
<city id="cty-China-147" country="CN" province="prov-China-2">
<name>Anqing</name>
<latitude>30.5</latitude>
<longitude>117.03</longitude>
<population year="1990">250718</population>
<located_at watertype="river" river="river-Jangtse"/>
</city>
<city id="cty-China-159" country="CN" province="prov-China-2">
<name>Tongling</name>
<latitude>30.93</latitude>
<longitude>117.77</longitude>
<population year="1990">228017</population>
<located_at watertype="river" river="river-Jangtse"/>
</city>
<city id="cty-China-213" country="CN" province="prov-China-2">
<name>Fuyang</name>
<latitude>32.9</latitude>
<longitude>115.82</longitude>
<population year="1990">179572</population>
</city>
<city id="cty-China-257" country="CN" province="prov-China-2">
<name>Luan</name>
<latitude>31.75</latitude>
<longitude>116.51</longitude>
<population year="1990">144248</population>
</city>
<city id="cty-China-311" country="CN" province="prov-China-2">
<name>Xuancheng</name>
<latitude>30.93</latitude>
<longitude>118.73</longitude>
<population year="1990">112673</population>
</city>
</province>
<province id="prov-China-3" country="CN" capital="cty-China-45">
<name>Fujian</name>
<localname>福建</localname>
<area>123100</area>
<population measured="census" year="1982">25873259</population>
<population measured="census" year="1990">30048275</population>
<population year="1996">31830000</population>
<population measured="census" year="2000">34097947</population>
<population measured="census" year="2010">36894217</population>
<population measured="estimate" year="2013">37740000</population>
<city id="cty-China-45" country="CN" province="prov-China-3">
<name>Fuzhou</name>
<latitude>26.08</latitude>
<longitude>119.31</longitude>
<population year="1990" measured="census">1395739</population>
<population year="2000" measured="census">2124435</population>
<population year="2010" measured="census">2921762</population>
<located_at watertype="sea" sea="sea-EastChinaSea"/>
</city>
<city id="cty-China-92" country="CN" province="prov-China-3">
<name>Xiamen</name>
<name>Amoy</name>
<localname>厦门市</localname>
<latitude>24.48</latitude>
<longitude>118.09</longitude>
<population year="1990" measured="census">639436</population>
<population year="2000" measured="census">2053070</population>
<population year="2010" measured="census">3531347</population>
<located_at watertype="sea" sea="sea-SouthChinaSea"/>
<located_on island="island-Xiamen"/>
</city>
<city id="cty-China-187" country="CN" province="prov-China-3">
<name>Nanping</name>
<latitude>26.65</latitude>
<longitude>118.18</longitude>
<elevation>89</elevation>
<population year="1990">195064</population>
</city>
<city id="cty-China-202" country="CN" province="prov-China-3">
<name>Quanzhou</name>
<latitude>24.92</latitude>
<longitude>118.58</longitude>
<population year="1990">185154</population>
</city>
<city id="cty-China-207" country="CN" province="prov-China-3">
<name>Zhangzhou</name>
<latitude>24.52</latitude>
<longitude>117.65</longitude>
<population year="1990">181424</population>
</city>
<city id="cty-China-237" country="CN" province="prov-China-3">
<name>Sanming</name>
<latitude>26.25</latitude>
<longitude>117.62</longitude>
<population year="1990">160691</population>
</city>
<city id="cty-China-269" country="CN" province="prov-China-3">
<name>Longyan</name>
<latitude>25.08</latitude>
<longitude>117.02</longitude>
<population year="1990">134481</population>
</city>
<city id="cty-China-314" country="CN" province="prov-China-3">
<name>Yongan</name>
<latitude>25.98</latitude>
<longitude>117.37</longitude>
<population year="1990">111762</population>
</city>
</province>
<province id="prov-China-4" country="CN" capital="cty-China-23">
<name>Gansu</name>
<localname>甘肃</localname>
<area>366500</area>
<population measured="census" year="1982">19569261</population>
<population measured="census" year="1990">22371085</population>
<population year="1996">23780000</population>
<population measured="census" year="2000">25124282</population>
<population measured="census" year="2010">25575263</population>
<population measured="estimate" year="2013">25821800</population>
<city id="cty-China-23" country="CN" province="prov-China-4">
<name>Lanzhou</name>
<localname>兰州市</localname>
<latitude>36.03</latitude>
<longitude>103.8</longitude>
<elevation>1518</elevation>
<population year="1990" measured="census">1617761</population>
<population year="1991">1510000</population>
<population year="2000" measured="census">2087703</population>
<population year="2010" measured="census">2628426</population>
<located_at watertype="river" river="river-Hwangho"/>
</city>
<city id="cty-China-151" country="CN" province="prov-China-4">
<name>Tianshui</name>
<latitude>34.58</latitude>
<longitude>105.73</longitude>
<elevation>1171</elevation>
<population year="1990">244974</population>
</city>
<city id="cty-China-180" country="CN" province="prov-China-4">
<name>Baiyin</name>
<latitude>36.56</latitude>
<longitude>104.21</longitude>
<elevation>1698</elevation>
<population year="1990">204970</population>
</city>
<city id="cty-China-275" country="CN" province="prov-China-4">
<name>Wuwei</name>
<latitude>37.93</latitude>
<longitude>102.64</longitude>
<population year="1990">133101</population>
</city>
<city id="cty-China-318" country="CN" province="prov-China-4">
<name>Yumen</name>
<latitude>39.83</latitude>
<longitude>97.57</longitude>
<elevation>1507</elevation>
<population year="1990">109234</population>
</city>
</province>
<province id="prov-China-5" country="CN" capital="cty-China-8">
<name>Guangdong</name>
<localname>广东</localname>
<area>197100</area>
<population measured="census" year="1990">62829741</population>
<population year="1996">66890000</population>
<population measured="census" year="2000">85225007</population>
<population measured="census" year="2010">104320459</population>
<population measured="estimate" year="2013">106440000</population>
<city id="cty-China-8" country="CN" province="prov-China-5">
<name>Guangzhou</name>
<localname>广州市</localname>
<latitude>23.13</latitude>
<longitude>113.27</longitude>
<elevation>21</elevation>
<population year="1990" measured="census">3918010</population>
<population year="1991">3580000</population>
<population year="2000" measured="census">8524826</population>
<population year="2010" measured="census">11071424</population>
<located_at watertype="river" river="river-PearlRiver"/>
</city>
<city id="cty-China-56" country="CN" province="prov-China-5">
<name>Shantou</name>
<localname>汕头市</localname>
<latitude>23.35</latitude>
<longitude>116.67</longitude>
<elevation>51</elevation>
<population year="1990" measured="census">884543</population>
<population year="2000" measured="census">4600927</population>
<population year="2010" measured="census">5329024</population>
<located_at watertype="sea" sea="sea-SouthChinaSea"/>
</city>
<city id="cty-China-86" country="CN" province="prov-China-5">
<name>Zhanjiang</name>
<latitude>21.2</latitude>
<longitude>110.4</longitude>
<elevation>21</elevation>
<population year="1990">400997</population>
<located_at watertype="sea" sea="sea-SouthChinaSea"/>
</city>
<city id="cty-China-105" country="CN" province="prov-China-5">
<name>Shenzhen</name>
<localname>深圳市</localname>
<latitude>22.55</latitude>
<longitude>114.1</longitude>
<elevation>2</elevation>
<population year="1980" measured="census">332900</population>
<population year="1990" measured="census">1214800</population>
<population year="2000" measured="census">7008831</population>
<population year="2010" measured="census">10358381</population>
<located_at watertype="river" river="river-PearlRiver"/>
<located_at watertype="sea" sea="sea-SouthChinaSea"/>
</city>
<city id="cty-China-108" country="CN" province="prov-China-5">
<name>Shaoguan</name>
<latitude>24.82</latitude>
<longitude>113.6</longitude>
<elevation>59</elevation>
<population year="1990">350043</population>
<located_at watertype="river" river="river-BeiJiang"/>
</city>
<city id="cty-China-117" country="CN" province="prov-China-5">
<name>Chaozhou</name>
<latitude>23.67</latitude>
<longitude>116.63</longitude>
<elevation>10</elevation>
<population year="1990">313469</population>
</city>
<city id="cty-China-119" country="CN" province="prov-China-5">
<name>Dongguan</name>
<localname>东莞市</localname>
<latitude>23.03</latitude>
<longitude>113.72</longitude>
<elevation>8</elevation>
<population year="1990">308669</population>
<population year="2000" measured="census">6445777</population>
<population year="2010" measured="census">8220207</population>
<located_at watertype="river" river="river-PearlRiver"/>
<located_at watertype="river" river="river-DongJiang"/>
</city>
<city id="cty-China-121" country="CN" province="prov-China-5">
<name>Foshan</name>
<localname>佛山市</localname>
<latitude>23.02</latitude>
<longitude>113.12</longitude>
<elevation>16</elevation>
<population year="1990" measured="census">429410</population>
<population year="2000" measured="census">5337709</population>
<population year="2010" measured="census">7194311</population>
<located_at watertype="river" river="river-XiJiang"/>
</city>
<city id="cty-China-134" country="CN" province="prov-China-5">
<name>Zhongshan</name>
<localname>珠海市</localname>
<latitude>22.53</latitude>
<longitude>113.35</longitude>
<elevation>11</elevation>
<population year="1990">278829</population>
<population year="2000" measured="census">2363322</population>
<population year="2010" measured="census">3121275</population>
<located_at watertype="river" river="river-PearlRiver"/>
<located_at watertype="sea" sea="sea-SouthChinaSea"/>
</city>
<city id="cty-China-158" country="CN" province="prov-China-5">
<name>Jiangmen</name>
<latitude>22.57</latitude>
<longitude>113.07</longitude>
<elevation>10</elevation>
<population year="1990">230587</population>
<located_at watertype="river" river="river-XiJiang"/>
</city>
<city id="cty-China-168" country="CN" province="prov-China-5">
<name>Yangjiang</name>
<latitude>21.85</latitude>
<longitude>111.97</longitude>
<elevation>4</elevation>
<population year="1990">215196</population>
<located_at watertype="sea" sea="sea-SouthChinaSea"/>
</city>
<city id="cty-China-188" country="CN" province="prov-China-5">
<name>Zhaoqing</name>
<latitude>23.05</latitude>
<longitude>112.47</longitude>
<elevation>12</elevation>
<population year="1990">194784</population>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment