////////////////////////////////////////////////////////////////
// ジャンプ用 javascript 
// 作成　2004.03.03 ukegawa takayuki
////////////////////////////////////////////////////////////////

function submit_search() {
	var		i;
	var		ele,ele2;

	document.kantan.object_type.value = "";
	with( document.kantan ) {
		back_chk.value = "1";

		ele = eval( "region1.options" );
		ele2 = eval( "region1_idx" );
		ele2.value = ele.selectedIndex;
		ele = eval( "country1.options" );
		ele2 = eval( "contry1_idx" );
		ele2.value = ele.selectedIndex;
		ele = eval( "city1.options" );
		ele2 = eval( "city1_idx" );
		ele2.value = ele.selectedIndex;

		submit();
	}
	if( navigator.appName != "Netscape" ) {
		document.kantan.back_chk.value = "1";
	}
}


function check_easy_search(url) {
	if( Selected_Check() == false ) {
		return;
	}
	document.kantan.action = url;
	submit_search();
}


function goAreaPage(){
	if( Selected_Check() == false ) {
		return false;
	}

	disableButton();

	var url;
    var f = this.document.forms[place.formName];
	var region = f[place.areaName].value;
	var country = f[place.countryName].value;
	var city = f[place.cityName].value;
	var child = f["children"].value;
	
	if ( city == ""){
		url = "http://go.travel.mag2.com/e/mag2hotel/ab/" + region + "/" + country + "/";
	}
	else {
		url = "http://go.travel.mag2.com/e/mag2hotel/ab/" + region + "/" + country + "/" + city + "/";
	}
	
	if (child != ""){
		url = url + child + "/";
	}
	location.href=url;

}

function disableButton() {
	if(document.all){
	  myArray=document.all;
	} else {
	  myArray=document.getElementsByTagName('*');
	}
	len = myArray.length;
	for(i=0; i<len; i++){
	  if(myArray[i].type=='button'){
	    myArray[i].disabled = true;
	  }
	}
}


function PlaceObject( a, co, ci, f, document  ) {

    this.areaName = a;
    this.countryName = co;
    this.cityName = ci;
    this.formName = f;

    this.document = document;
    this.initialArea = initialArea;
    this.initialCountry = initialCountry;
    this.initialCity = initialCity;
    this.setArea = setArea;
    this.changeArea = changeArea;
    this.changeCountry = changeCountry;
    this.setData = setData;
}


function setArea() {
    var f = this.document.forms[this.formName];

    f[this.areaName].options[0] = new Option( "方面の選択", "",true,true );
    for( i=0 ; i<region.length ; i++ ) {
        f[this.areaName].options[i+1] = new Option( region[i].name, region[i].code );
    }
}

function initialCountry() {
    var f = this.document.forms[this.formName];
    f[this.countryName].options[0] = new Option( "-------------------", "",true,true );
}

function initialCity() {
    var     f = this.document.forms[this.formName];
    f[this.cityName].options[0] = new Option( "-------------------", "", true, true);
}

function initialArea() {
    this.setArea();
    this.initialCountry();
    this.initialCity();
}

function changeArea( idx ) {
    var     i,j;
    var     f = this.document.forms[this.formName];

    f[this.countryName].options[0].selected = true;
    f[this.countryName].options.length = 1;
    f[this.cityName].options.length = 1;

    if( f[this.areaName].options[idx].value == "" ) {
        this.initialCountry();
    }
    else {
        for( i=1 ; i<f[this.countryName].options.length ; i++ ) {
            f[this.countryName].options[i].value = "";
            f[this.countryName].options[i].text = "";
        }
        f[this.countryName].options[0].selected = true;
        f[this.countryName].options[0] = new Option( "国の選択", "", true, true );
        for( i=0,j=1 ; i<country.length ; i++ ) {
            if( country[i].area == f[this.areaName].options[idx].value ) {
                f[this.countryName].options[j] = new Option( country[i].name, country[i].code );
                j++;
            }
        }
    }
    this.initialCity();
}

function changeCountry( idx ) {
    var     i,j;
    var     f = this.document.forms[this.formName];

    f[this.cityName].options.length = 1;
    f[this.cityName].options[0].selected = true;
    if( f[this.countryName].options[idx].value == "" ) {
        this.initialCity();
    }
    else {
        f[this.cityName].options[0] = new Option( "都市・観光地の選択", "",true,true );
        j = 1;
        for( i=0 ; i<city.length ; i++ ) {
            if( city[i].country == f[this.countryName].options[idx].value ) {
                f[this.cityName].options[j] = new Option( city[i].name, city[i].code );
                j++;
            }
        }
    }
}

function setData(area_cd, country_cd, city_cd){
    var area_index = 0;
    var country_index = 0;
    var city_index = 0;
    var f = this.document.forms[this.formName];

    if(area_cd != ""){
        for( i=0; i<f[this.areaName].length; i++){
            if(area_cd == f[this.areaName][i].value){
                area_index = i;
            }
        }
        f[this.areaName].options[area_index].selected = true;
        place.changeArea(area_index);

        if(country_cd != ""){
            for( i=0; i<f[this.countryName].length; i++){
                if(country_cd == f[this.countryName][i].value){
                    country_index = i;
                }
            }
            f[this.countryName].options[country_index].selected = true;
            place.changeCountry(country_index, 1);

            if(city_cd != ""){
                for( i=0; i<f[this.cityName].length; i++){
                    if(city_cd == f[this.cityName][i].value){
                        city_index = i;
                    }
                }
                f[this.cityName].options[city_index].selected = true;
            }
        }
    }
}


var place;

function initialize() {

    place = new PlaceObject("region1","country1","city1","kantan",document);
    place.initialArea();

    var f = this.document.forms[place.formName];
	var area_cd = f["region1_code"].value;
	var country_cd = f["contry1_code"].value;
	var city_cd = f["city1_code"].value;

    place.setData(area_cd, country_cd, city_cd);
}


function call_changeRegion( obj, idx ) {
    obj.changeArea(idx);
}


function call_changeContry( obj, idx ) {
    obj.changeCountry(idx)
}

function Selected_Check() {
    var f = this.document.forms[place.formName];
    var areaCodeOK = "NG";
    var countryCodeOK = "NG";
    var cityCodeOK = "NG";

    if (f[place.areaName].value != "") {
        areaCodeOK = "OK";
    }
    if (f[place.countryName].value != "") {
        countryCodeOK = "OK";
    }
    if (f[place.cityName].value != "") {
        cityCodeOK = "OK";
    }
    if (areaCodeOK == "OK" && countryCodeOK == "OK") {
        return true;
    } else {
        alert("方面と国は必ず選択してください");
        return false;
    }
}


/////////////////////////////////////////////////////////////////
// ジャンプ用 javascript 都市データ
// 作成　2004.03.03 ukegawa takayuki
// 修正　2004.09.03 ukegawa takayuki 国・都市追加
/////////////////////////////////////////////////////////////////
function RegionObject( c, n ) {
    this.name = n;
    this.code = c;
}
function CountryObject( c, n, a ) {
    this.name = n;
    this.code = c;
    this.area = a;
}
function CityObject( cd, n, co ) {
    this.code = cd;
    this.name = n;
    this.country = co;
}

var region = new Array(8);
region[0] = new RegionObject('asia','アジア');
region[1] = new RegionObject('europe','ヨーロッパ');
region[2] = new RegionObject('north_america','北米');
region[3] = new RegionObject('latin_america','中南米');
region[4] = new RegionObject('oceania_micronesia','オセアニア・ミクロネシア');
region[5] = new RegionObject('middle_east','中近東');
region[6] = new RegionObject('africa','アフリカ');
region[7] = new RegionObject('northpole_southpole','北極・南極');

var country = new Array(219);
country[0] = new CountryObject('algeria','アルジェリア','africa');
country[1] = new CountryObject('angola','アンゴラ','africa');
country[2] = new CountryObject('uganda','ウガンダ','africa');
country[3] = new CountryObject('egypt','エジプト','africa');
country[4] = new CountryObject('ethiopia','エチオピア','africa');
country[5] = new CountryObject('eritrea','エリトリア','africa');
country[6] = new CountryObject('ghana','ガーナ','africa');
country[7] = new CountryObject('cape_verde','カーボベルデ','africa');
country[8] = new CountryObject('gabon','ガボン','africa');
country[9] = new CountryObject('cameroon','カメルーン','africa');
country[10] = new CountryObject('gambia','ガンビア','africa');
country[11] = new CountryObject('guinea','ギニア','africa');
country[12] = new CountryObject('guinea-bissau','ギニアビサウ','africa');
country[13] = new CountryObject('kenya','ケニア','africa');
country[14] = new CountryObject('cote_d_ivoire','コートジボワール','africa');
country[15] = new CountryObject('comoros','コモロ','africa');
country[16] = new CountryObject('republic_of_congo','コンゴ共和国','africa');
country[17] = new CountryObject('democratic_republic_of_congo','コンゴ民主共和国','africa');
country[18] = new CountryObject('sao_tome_and_principe','サントメプリンシペ','africa');
country[19] = new CountryObject('zambia','ザンビア','africa');
country[20] = new CountryObject('sierra_leone','シエラレオネ','africa');
country[21] = new CountryObject('djibouti','ジブチ','africa');
country[22] = new CountryObject('zimbabwe','ジンバブエ','africa');
country[23] = new CountryObject('sudan','スーダン','africa');
country[24] = new CountryObject('swaziland','スワジランド','africa');
country[25] = new CountryObject('seychelles','セーシェル','africa');
country[26] = new CountryObject('equatorial_guinea','赤道ギニア','africa');
country[27] = new CountryObject('senegal','セネガル','africa');
country[28] = new CountryObject('somalia','ソマリア','africa');
country[29] = new CountryObject('tanzania','タンザニア','africa');
country[30] = new CountryObject('chad','チャド','africa');
country[31] = new CountryObject('central_africa','中央アフリカ','africa');
country[32] = new CountryObject('tunisia','チュニジア','africa');
country[33] = new CountryObject('togo','トーゴ','africa');
country[34] = new CountryObject('nigeria','ナイジェリア','africa');
country[35] = new CountryObject('namibia','ナミビア','africa');
country[36] = new CountryObject('niger','ニジェール','africa');
country[37] = new CountryObject('burkino_faso','ブルキナファソ','africa');
country[38] = new CountryObject('burundi','ブルンジ','africa');
country[39] = new CountryObject('benin','ベナン','africa');
country[40] = new CountryObject('botswana','ボツワナ','africa');
country[41] = new CountryObject('mayotte_island','マイヨット島','africa');
country[42] = new CountryObject('madagascar','マダガスカル','africa');
country[43] = new CountryObject('malawi','マラウイ','africa');
country[44] = new CountryObject('mali','マリ','africa');
country[45] = new CountryObject('south_africa','南アフリカ','africa');
country[46] = new CountryObject('mauritius','モーリシャス','africa');
country[47] = new CountryObject('mauritania','モーリタニア','africa');
country[48] = new CountryObject('mozambique','モザンビーク','africa');
country[49] = new CountryObject('morocco','モロッコ','africa');
country[50] = new CountryObject('libya','リビア','africa');
country[51] = new CountryObject('liberia','リベリア','africa');
country[52] = new CountryObject('rwanda','ルワンダ','africa');
country[53] = new CountryObject('lesotho','レソト','africa');
country[54] = new CountryObject('reunion_island','レユニオン島','africa');
country[55] = new CountryObject('afghanistan','アフガニスタン','asia');
country[56] = new CountryObject('india','インド','asia');
country[57] = new CountryObject('indonesia','インドネシア','asia');
country[58] = new CountryObject('korea','韓国','asia');
country[59] = new CountryObject('cambodia','カンボジア','asia');
country[60] = new CountryObject('north_korea','北朝鮮','asia');
country[61] = new CountryObject('singapore','シンガポール','asia');
country[62] = new CountryObject('sri_lanka','スリランカ','asia');
country[63] = new CountryObject('thailand','タイ','asia');
country[64] = new CountryObject('taiwan','台湾','asia');
country[65] = new CountryObject('china','中国','asia');
country[66] = new CountryObject('nepal','ネパール','asia');
country[67] = new CountryObject('pakistan','パキスタン','asia');
country[68] = new CountryObject('bangladesh','バングラデシュ','asia');
country[69] = new CountryObject('timor-leste','東ティモール','asia');
country[70] = new CountryObject('philippines','フィリピン','asia');
country[71] = new CountryObject('bhutan','ブータン','asia');
country[72] = new CountryObject('brunei','ブルネイ','asia');
country[73] = new CountryObject('vietnam','ベトナム','asia');
country[74] = new CountryObject('hong_kong','香港','asia');
country[75] = new CountryObject('macau','マカオ','asia');
country[76] = new CountryObject('malaysia','マレーシア','asia');
country[77] = new CountryObject('myanmar','ミャンマー','asia');
country[78] = new CountryObject('maldives','モルディブ','asia');
country[79] = new CountryObject('mongolia','モンゴル','asia');
country[80] = new CountryObject('laos','ラオス','asia');
country[81] = new CountryObject('japan','日本','asia');
country[82] = new CountryObject('iceland','アイスランド','europe');
country[83] = new CountryObject('ireland','アイルランド','europe');
country[84] = new CountryObject('azerbaijan','アゼルバイジャン','europe');
country[85] = new CountryObject('albania','アルバニア','europe');
country[86] = new CountryObject('armenia','アルメニア','europe');
country[87] = new CountryObject('andorra','アンドラ','europe');
country[88] = new CountryObject('united_kingdom','イギリス','europe');
country[89] = new CountryObject('italy','イタリア','europe');
country[90] = new CountryObject('ukraine','ウクライナ','europe');
country[91] = new CountryObject('uzbekistan','ウズベキスタン','europe');
country[92] = new CountryObject('estonia','エストニア','europe');
country[93] = new CountryObject('austria','オーストリア','europe');
country[94] = new CountryObject('netherlands','オランダ','europe');
country[95] = new CountryObject('kazakhstan','カザフスタン','europe');
country[96] = new CountryObject('cyprus','キプロス','europe');
country[97] = new CountryObject('greece','ギリシャ','europe');
country[98] = new CountryObject('kyrgyz','キルギス','europe');
country[99] = new CountryObject('georgia','グルジア','europe');
country[100] = new CountryObject('croatia','クロアチア','europe');
country[101] = new CountryObject('san_marino','サンマリノ','europe');
country[102] = new CountryObject('switzerland','スイス','europe');
country[103] = new CountryObject('sweden','スウェーデン','europe');
country[104] = new CountryObject('spain','スペイン','europe');
country[105] = new CountryObject('slovak','スロバキア','europe');
country[106] = new CountryObject('slovenia','スロベニア','europe');
country[107] = new CountryObject('serbia_montenegro','セルビアモンテネグロ','europe');
country[108] = new CountryObject('tajikistan','タジキスタン','europe');
country[109] = new CountryObject('czech_republic','チェコ','europe');
country[110] = new CountryObject('denmark','デンマーク','europe');
country[111] = new CountryObject('germany','ドイツ','europe');
country[112] = new CountryObject('turkmenistan','トルクメニスタン','europe');
country[113] = new CountryObject('turkey','トルコ','europe');
country[114] = new CountryObject('norway','ノルウェー','europe');
country[115] = new CountryObject('vatican','バチカン','europe');
country[116] = new CountryObject('hungary','ハンガリー','europe');
country[117] = new CountryObject('finland','フィンランド','europe');
country[118] = new CountryObject('france','フランス','europe');
country[119] = new CountryObject('bulgaria','ブルガリア','europe');
country[120] = new CountryObject('belarus','ベラルーシ','europe');
country[121] = new CountryObject('belgium','ベルギー','europe');
country[122] = new CountryObject('poland','ポーランド','europe');
country[123] = new CountryObject('bosnia_and_herzegovina','ボスニアヘルツェゴビナ','europe');
country[124] = new CountryObject('portugal','ポルトガル','europe');
country[125] = new CountryObject('former_yugoslav_republic_of_macedonia','マケドニア・旧ユーゴスラビア','europe');
country[126] = new CountryObject('malta','マルタ','europe');
country[127] = new CountryObject('monaco','モナコ','europe');
country[128] = new CountryObject('moldova','モルドバ','europe');
country[129] = new CountryObject('latvia','ラトビア','europe');
country[130] = new CountryObject('lithuania','リトアニア','europe');
country[131] = new CountryObject('liechtenstein','リヒテンシュタイン','europe');
country[132] = new CountryObject('romania','ルーマニア','europe');
country[133] = new CountryObject('luxembourg','ルクセンブルグ','europe');
country[134] = new CountryObject('russia','ロシア','europe');
country[135] = new CountryObject('argentine','アルゼンチン','latin_america');
country[136] = new CountryObject('aruba','アルバ','latin_america');
country[137] = new CountryObject('antigua_and_barbuda','アンティグアバーブーダ','latin_america');
country[138] = new CountryObject('uruguay','ウルグアイ','latin_america');
country[139] = new CountryObject('british_virgin_islands','英領ヴァージン諸島','latin_america');
country[140] = new CountryObject('ecuador','エクアドル','latin_america');
country[141] = new CountryObject('el_salvador','エルサルバドル','latin_america');
country[142] = new CountryObject('guyana','ガイアナ','latin_america');
country[143] = new CountryObject('cuba','キューバ','latin_america');
country[144] = new CountryObject('curacao','キュラソー','latin_america');
country[145] = new CountryObject('guatemala','グアテマラ','latin_america');
country[146] = new CountryObject('grenada','グレナダ','latin_america');
country[147] = new CountryObject('cayman_islands','ケイマン諸島','latin_america');
country[148] = new CountryObject('costa_rica','コスタリカ','latin_america');
country[149] = new CountryObject('colombia','コロンビア','latin_america');
country[150] = new CountryObject('jamaica','ジャマイカ','latin_america');
country[151] = new CountryObject('suriname','スリナム','latin_america');
country[152] = new CountryObject('saint_martin','セント・マーチン','latin_america');
country[153] = new CountryObject('st_christopher_and_nevis','セントクリストファーネービス','latin_america');
country[154] = new CountryObject('st_vincent_and_the_grenadines','セントビンセントグレナディーン','latin_america');
country[155] = new CountryObject('st_lucia','セントルシア','latin_america');
country[156] = new CountryObject('chile','チリ','latin_america');
country[157] = new CountryObject('dominican_republic','ドミニカ共和国','latin_america');
country[158] = new CountryObject('dominica','ドミニカ国','latin_america');
country[159] = new CountryObject('trinidad_and_tobago','トリニダードトバゴ','latin_america');
country[160] = new CountryObject('nicaragua','ニカラグア','latin_america');
country[161] = new CountryObject('haiti','ハイチ','latin_america');
country[162] = new CountryObject('panama','パナマ','latin_america');
country[163] = new CountryObject('bahamas','バハマ','latin_america');
country[164] = new CountryObject('bernyda','バミューダ','latin_america');
country[165] = new CountryObject('paraguay','パラグアイ','latin_america');
country[166] = new CountryObject('barbados','バルバドス','latin_america');
country[167] = new CountryObject('puerto_rico','プエルト・リコ','latin_america');
country[168] = new CountryObject('guiana_francaise','仏領ギアナ','latin_america');
country[169] = new CountryObject('brazil','ブラジル','latin_america');
country[170] = new CountryObject('virgin_islands','米領ヴァージン諸島','latin_america');
country[171] = new CountryObject('venezuela','ベネズエラ','latin_america');
country[172] = new CountryObject('belize','ベリーズ','latin_america');
country[173] = new CountryObject('peru','ペルー','latin_america');
country[174] = new CountryObject('bonaire','ボネア','latin_america');
country[175] = new CountryObject('bolivia','ボリビア','latin_america');
country[176] = new CountryObject('honduras','ホンジュラス','latin_america');
country[177] = new CountryObject('martinique','マルチニーク','latin_america');
country[178] = new CountryObject('mexico','メキシコ','latin_america');
country[179] = new CountryObject('uae','アラブ首長国連邦','middle_east');
country[180] = new CountryObject('yemen','イエメン','middle_east');
country[181] = new CountryObject('israel','イスラエル','middle_east');
country[182] = new CountryObject('iraq','イラク','middle_east');
country[183] = new CountryObject('iran','イラン','middle_east');
country[184] = new CountryObject('oman','オマーン','middle_east');
country[185] = new CountryObject('qatar','カタール','middle_east');
country[186] = new CountryObject('kuwait','クウェート','middle_east');
country[187] = new CountryObject('saudi_arabia','サウジアラビア','middle_east');
country[188] = new CountryObject('syria','シリア','middle_east');
country[189] = new CountryObject('bahrain','バーレーン','middle_east');
country[190] = new CountryObject('jordan','ヨルダン','middle_east');
country[191] = new CountryObject('lebanon','レバノン','middle_east');
country[192] = new CountryObject('america','アメリカ','north_america');
country[193] = new CountryObject('canada','カナダ','north_america');
country[194] = new CountryObject('hawaii','ハワイ','north_america');
country[195] = new CountryObject('south_pole','南極','northpole_southpole');
country[196] = new CountryObject('north_pole','北極','northpole_southpole');
country[197] = new CountryObject('wallis_futuna','ウォリス＆フトゥナ','oceania_micronesia');
country[198] = new CountryObject('australia','オーストラリア','oceania_micronesia');
country[199] = new CountryObject('kiribati','キリバス','oceania_micronesia');
country[200] = new CountryObject('guam','グアム','oceania_micronesia');
country[201] = new CountryObject('cook_islands','クック諸島','oceania_micronesia');
country[202] = new CountryObject('saipan','サイパン','oceania_micronesia');
country[203] = new CountryObject('samoa','サモア','oceania_micronesia');
country[204] = new CountryObject('solomon_islands','ソロモン諸島','oceania_micronesia');
country[205] = new CountryObject('french_polynesia','タヒチ','oceania_micronesia');
country[206] = new CountryObject('tuvalu','ツバル','oceania_micronesia');
country[207] = new CountryObject('tonga','トンガ','oceania_micronesia');
country[208] = new CountryObject('nauru','ナウル','oceania_micronesia');
country[209] = new CountryObject('niue','ニウエ','oceania_micronesia');
country[210] = new CountryObject('new_caledonia','ニューカレドニア','oceania_micronesia');
country[211] = new CountryObject('new_zealand','ニュージーランド','oceania_micronesia');
country[212] = new CountryObject('vanuatu','バヌアツ','oceania_micronesia');
country[213] = new CountryObject('papua_new_guinea','パプアニューギニア','oceania_micronesia');
country[214] = new CountryObject('palau','パラオ','oceania_micronesia');
country[215] = new CountryObject('fiji_islands','フィジー','oceania_micronesia');
country[216] = new CountryObject('american_samoa','米領サモア','oceania_micronesia');
country[217] = new CountryObject('marshall_islands','マーシャル諸島','oceania_micronesia');
country[218] = new CountryObject('micronesia','ミクロネシア','oceania_micronesia');


var city = new Array(3032);
city[0] = new CityObject('andorra_la_vella','アンドラ・ラ・ヴェリャ','andorra');
city[1] = new CityObject('the_other_cities_of_andorra','その他の都市','andorra');
city[2] = new CityObject('abu_dhabi','アブダビ','uae');
city[3] = new CityObject('al_ain','アル・アイン','uae');
city[4] = new CityObject('sharjah','シャルジャ','uae');
city[5] = new CityObject('dubai','ドバイ','uae');
city[6] = new CityObject('hatta','ハッタ','uae');
city[7] = new CityObject('the_other_cities_of_uae','その他の都市','uae');
city[8] = new CityObject('kabul','カブール','afghanistan');
city[9] = new CityObject('heart','ヘラート','afghanistan');
city[10] = new CityObject('the_other_cities_of_afghanistan','その他の都市','afghanistan');
city[11] = new CityObject('st_johns_ag','セント・ジョンズ','antigua_and_barbuda');
city[12] = new CityObject('the_other_cities_of_antigua_and_barbuda','その他の都市','antigua_and_barbuda');
city[13] = new CityObject('tirana','ティラナ','albania');
city[14] = new CityObject('the_other_cities_of_albania','その他の都市','albania');
city[15] = new CityObject('yerevan','エレヴァン','armenia');
city[16] = new CityObject('the_other_cities_of_armenia','その他の都市','armenia');
city[17] = new CityObject('luanda','ルアンダ','angola');
city[18] = new CityObject('the_other_cities_of_angola','その他の都市','angola');
city[19] = new CityObject('iguassu_falls_ar','イグアスの滝','argentine');
city[20] = new CityObject('ushuaia','ウシュアイア','argentine');
city[21] = new CityObject('el_chalten','エル・チャルテン','argentine');
city[22] = new CityObject('calafate','カラファテ','argentine');
city[23] = new CityObject('cordoba_ar','コルドバ','argentine');
city[24] = new CityObject('salta','サルタ','argentine');
city[25] = new CityObject('sancarlos_de_bariloche','サン・カルロス・デ・バリローチェ','argentine');
city[26] = new CityObject('san_salvador_de_jujuy','サン・サルバドール・デ・フフイ','argentine');
city[27] = new CityObject('trelew','トレレウ','argentine');
city[28] = new CityObject('buenosaires','ブエノスアイレス','argentine');
city[29] = new CityObject('mar_del_plata','マル・デル・プラタ','argentine');
city[30] = new CityObject('mendoza','メンドーサ','argentine');
city[31] = new CityObject('rio_gallegos','リオ・ガジェゴス','argentine');
city[32] = new CityObject('the_other_cities_of_argentine','その他の都市','argentine');
city[33] = new CityObject('peninsula_valdes','バルデス半島','argentine');
city[34] = new CityObject('los_glaciares_national_park','ロス・グラシアレス国立公園','argentine');
city[35] = new CityObject('the_other_spots_of_argentine','その他の観光地','argentine');
city[36] = new CityObject('apia','アピア','samoa');
city[37] = new CityObject('the_other_cities_of_samoa','その他の都市','samoa');
city[38] = new CityObject('upolu_island','ウポル島','samoa');
city[39] = new CityObject('savaii_island','サバイィ島','samoa');
city[40] = new CityObject('the_other_spots_of_samoa','その他の観光地','samoa');
city[41] = new CityObject('eisenstadt','アイゼンシュタット','austria');
city[42] = new CityObject('alpbach','アルプバッハ','austria');
city[43] = new CityObject('innsbruck','インスブルック','austria');
city[44] = new CityObject('wien','ウィーン','austria');
city[45] = new CityObject('ehrwald','エーアヴァルト','austria');
city[46] = new CityObject('obergurgl','オーバーグルグル','austria');
city[47] = new CityObject('kitzbuhel','キッツビュール','austria');
city[48] = new CityObject('kufstein','クーフシュタイン','austria');
city[49] = new CityObject('gmunden','グムンデン','austria');
city[50] = new CityObject('klagenfurt','クラーゲンフルト','austria');
city[51] = new CityObject('graz','グラーツ','austria');
city[52] = new CityObject('krems','クレムス','austria');
city[53] = new CityObject('salzburg','ザルツブルク','austria');
city[54] = new CityObject('st_anton','ザンクト・アントン','austria');
city[55] = new CityObject('st_wolfgang','ザンクト・ヴォルフガング','austria');
city[56] = new CityObject('st_gilgen','ザンクト・ギルゲン','austria');
city[57] = new CityObject('st_polten','ザンクト・ペルテン','austria');
city[58] = new CityObject('schwaz','シュヴァーツ','austria');
city[59] = new CityObject('steyr','シュタイヤー','austria');
city[60] = new CityObject('stubaital','シュトゥバイタール','austria');
city[61] = new CityObject('seefeld','ゼーフェルト','austria');
city[62] = new CityObject('tirol','チロル','austria');
city[63] = new CityObject('zell_am_see','ツェル・アム・ゼー','austria');
city[64] = new CityObject('durnstein','デュルンシュタイン','austria');
city[65] = new CityObject('bad_ischl','バート・イシュル','austria');
city[66] = new CityObject('bad_gastein','バート・ガスタイン','austria');
city[67] = new CityObject('heiligenblut','ハイリゲンブルート','austria');
city[68] = new CityObject('hall_in_tirol','ハル','austria');
city[69] = new CityObject('hallstatt','ハルシュタット','austria');
city[70] = new CityObject('villach','フィラッハ','austria');
city[71] = new CityObject('feldkirch','フェルトキルヒ','austria');
city[72] = new CityObject('bregenz','ブレゲンツ','austria');
city[73] = new CityObject('mayrhofen','マイアーホーフェン','austria');
city[74] = new CityObject('melk','メルク','austria');
city[75] = new CityObject('morbisch_am_see','メルビュッシュ','austria');
city[76] = new CityObject('mondsee','モントゼー','austria');
city[77] = new CityObject('rattenberg','ラッテンベルク','austria');
city[78] = new CityObject('landeck','ランディック','austria');
city[79] = new CityObject('lienz','リエンツ','austria');
city[80] = new CityObject('linz','リンツ','austria');
city[81] = new CityObject('rust','ルスト','austria');
city[82] = new CityObject('lech','レッヒ','austria');
city[83] = new CityObject('reutte_in_tirol','ロイッテ','austria');
city[84] = new CityObject('the_other_cities_of_austria','その他の都市','austria');
city[85] = new CityObject('attersee','アッター湖','austria');
city[86] = new CityObject('achensee','アッヘン湖','austria');
city[87] = new CityObject('wachau','ヴァッハウ渓谷','austria');
city[88] = new CityObject('grobglockner','グロースグロックナー','austria');
city[89] = new CityObject('salzkammergut','ザルツカンマーグート','austria');
city[90] = new CityObject('the_other_spots_of_austria','その他の観光地','austria');
city[91] = new CityObject('airlie_beach','アーリービーチ','australia');
city[92] = new CityObject('adelaide','アデレード','australia');
city[93] = new CityObject('alice_springs','アリススプリングス','australia');
city[94] = new CityObject('wollongong','ウロンゴン','australia');
city[95] = new CityObject('ayers_rock','エアーズロック','australia');
city[96] = new CityObject('cowra','カウラ','australia');
city[97] = new CityObject('katherine','キャサリン','australia');
city[98] = new CityObject('canberra','キャンベラ','australia');
city[99] = new CityObject('coober_pedy','クーバーピディ','australia');
city[100] = new CityObject('cooktown','クックタウン','australia');
city[101] = new CityObject('gladstone','グラッドストーン','australia');
city[102] = new CityObject('kuranda','クランダ','australia');
city[103] = new CityObject('cairns','ケアンズ','australia');
city[104] = new CityObject('coles_bay','コールスベイ','australia');
city[105] = new CityObject('goldcoast','ゴールドコースト','australia');
city[106] = new CityObject('sydney','シドニー','australia');
city[107] = new CityObject('darwin','ダーウィン','australia');
city[108] = new CityObject('townsville','タウンズビル','australia');
city[109] = new CityObject('devonport','デボンポート','australia');
city[110] = new CityObject('newcastle','ニューキャッスル','australia');
city[111] = new CityObject('perth','パース','australia');
city[112] = new CityObject('hervey_bay','ハービーベイ','australia');
city[113] = new CityObject('ballarat','バララット','australia');
city[114] = new CityObject('barossa_valley','バロッサバレー','australia');
city[115] = new CityObject('bundaberg','バンダバーグ','australia');
city[116] = new CityObject('brisbane','ブリスベン','australia');
city[117] = new CityObject('broome','ブルーム','australia');
city[118] = new CityObject('bendigo','ベンディゴ','australia');
city[119] = new CityObject('portdouglas','ポートダグラス','australia');
city[120] = new CityObject('hobart','ホバート','australia');
city[121] = new CityObject('mount_gambier','マウントガンビア','australia');
city[122] = new CityObject('mackay','マッカイ','australia');
city[123] = new CityObject('melbourne','メルボルン','australia');
city[124] = new CityObject('monkey_mia','モンキーマイア','australia');
city[125] = new CityObject('yeppoon','ヤプーン','australia');
city[126] = new CityObject('launceston','ローンセストン','australia');
city[127] = new CityObject('rockhampton','ロックハンプトン','australia');
city[128] = new CityObject('the_other_cities_of_australia','その他の都市','australia');
city[129] = new CityObject('atherton_tableland','アサートンテーブルランド','australia');
city[130] = new CityObject('adelaide_hills','アデレードヒルズ','australia');
city[131] = new CityObject('whitsunday_group','ウィットサンデー諸島','australia');
city[132] = new CityObject('kakadu_national_park','カカドゥ国立公園','australia');
city[133] = new CityObject('kangaroo_island','カンガルー島','australia');
city[134] = new CityObject('the_kimberley','キンバリー','australia');
city[135] = new CityObject('coonawarra','クーナワーラ','australia');
city[136] = new CityObject('the_grampians_national_park','グランピアンズ国立公園','australia');
city[137] = new CityObject('green_island','グリーン島','australia');
city[138] = new CityObject('cradle_mountain','クレイドル山','australia');
city[139] = new CityObject('great_ocean_road','グレートオーシャンロード','australia');
city[140] = new CityObject('great_keppel_island','グレートケッペル島','australia');
city[141] = new CityObject('the_great_barrier_reef','グレートバリアリーフ','australia');
city[142] = new CityObject('south_coast','サウスコースト','australia');
city[143] = new CityObject('sunshine_coast','サンシャインコースト','australia');
city[144] = new CityObject('snowy_mountains','スノーウィマウンテンズ','australia');
city[145] = new CityObject('lake_st_clair_national_park','セントクレア湖国立公園','australia');
city[146] = new CityObject('central_coast','セントラルコースト','australia');
city[147] = new CityObject('tasmania','タスマニア','australia');
city[148] = new CityObject('dunk_island','ダンク島','australia');
city[149] = new CityObject('daintree_national_park','デインツリー国立公園','australia');
city[150] = new CityObject('nitmiluk_national_park','ニトミルク国立公園','australia');
city[151] = new CityObject('hamilton_island','ハミルトン島','australia');
city[152] = new CityObject('hunter_valley','ハンターバレー','australia');
city[153] = new CityObject('the_victorian_alps','ビクトリアンアルプス','australia');
city[154] = new CityObject('hinchinbrook_island','ヒンチンブルック島','australia');
city[155] = new CityObject('fitzroy_island','フィッツロイ島','australia');
city[156] = new CityObject('brampton_island','ブランプトン島','australia');
city[157] = new CityObject('blue_mountains','ブルーマウンテンズ','australia');
city[158] = new CityObject('fleurieu_peninsula','フルリオ半島','australia');
city[159] = new CityObject('fraser_island','フレーザー島','australia');
city[160] = new CityObject('freycinet_national_park','フレシネ国立公園','australia');
city[161] = new CityObject('heron_island','ヘロン島','australia');
city[162] = new CityObject('holiday_coast','ホリデーコースト','australia');
city[163] = new CityObject('magnetic_island','マグネティック島','australia');
city[164] = new CityObject('mission_beach','ミッションビーチ','australia');
city[165] = new CityObject('moreton_island','モートン島','australia');
city[166] = new CityObject('lizard_island','リザート島','australia');
city[167] = new CityObject('litchfield_national_park','リッチフィールド国立公園','australia');
city[168] = new CityObject('lindeman_island','リンデマン島','australia');
city[169] = new CityObject('lady_elliot_island','レディエリオット島','australia');
city[170] = new CityObject('the_other_spots_of_australia','その他の観光地','australia');
city[171] = new CityObject('australian_capital_territory','オーストラリア首都特別地域','australia');
city[172] = new CityObject('queensland_state','クイーンズランド州','australia');
city[173] = new CityObject('new_south_wales_state','ニューサウスウェールズ州','australia');
city[174] = new CityObject('victoria_state','ビクトリア州','australia');
city[175] = new CityObject('tasmania_state','タスマニア州','australia');
city[176] = new CityObject('western_australia_state','西オーストラリア州','australia');
city[177] = new CityObject('south_australia_state','南オーストラリア州','australia');
city[178] = new CityObject('northern_territory_state','ノーザンテリトリー準州','australia');
city[179] = new CityObject('baku','バクー','azerbaijan');
city[180] = new CityObject('the_other_cities_of_azerbaijan','その他の都市','azerbaijan');
city[181] = new CityObject('sarajevo','サラエヴォ','bosnia_and_herzegovina');
city[182] = new CityObject('mostar','モスタル','bosnia_and_herzegovina');
city[183] = new CityObject('the_other_cities_of_bosnia_and_herzegovina','その他の都市','bosnia_and_herzegovina');
city[184] = new CityObject('bridgetown','バルバドス','barbados');
city[185] = new CityObject('the_other_cities_of_barbados','その他の都市','barbados');
city[186] = new CityObject('khulna','クルナ','bangladesh');
city[187] = new CityObject('dhaka','ダッカ','bangladesh');
city[188] = new CityObject('chittagong','チッタゴン','bangladesh');
city[189] = new CityObject('the_other_cities_of_bangladesh','その他の都市','bangladesh');
city[190] = new CityObject('han-sur-lesse','アン・シュール・レッス','belgium');
city[191] = new CityObject('antwerpen','アントワープ','belgium');
city[192] = new CityObject('ieper','イーペル','belgium');
city[193] = new CityObject('oostende','オステンド','belgium');
city[194] = new CityObject('gent','ゲント','belgium');
city[195] = new CityObject('spa','スパ','belgium');
city[196] = new CityObject('dinant','ディナン','belgium');
city[197] = new CityObject('durbuy','デュルビュイ','belgium');
city[198] = new CityObject('tournai','トゥルネー','belgium');
city[199] = new CityObject('namur','ナミュール','belgium');
city[200] = new CityObject('hasselt','ハッセルト','belgium');
city[201] = new CityObject('brussels','ブリュッセル','belgium');
city[202] = new CityObject('brugge','ブルージュ','belgium');
city[203] = new CityObject('mechelen','メッヘレン','belgium');
city[204] = new CityObject('mons','モンス','belgium');
city[205] = new CityObject('lier','リール','belgium');
city[206] = new CityObject('liege','リエージュ','belgium');
city[207] = new CityObject('leuven','ルーヴェン','belgium');
city[208] = new CityObject('the_other_cities_of_belgium','その他の都市','belgium');
city[209] = new CityObject('chateau_dannevoie','アンヌヴォワ城','belgium');
city[210] = new CityObject('chateau_de_veves','ヴェーヴ城','belgium');
city[211] = new CityObject('chateau_de_freyr','フレイエル城','belgium');
city[212] = new CityObject('chateau_de_modave','モダーヴ城','belgium');
city[213] = new CityObject('chateau_de_lavaux-ste-anne','ラヴォー・サンタンヌ城','belgium');
city[214] = new CityObject('the_other_spots_of_belgium','その他の観光地','belgium');
city[215] = new CityObject('ouagadougou','ワガドゥグー','burkino_faso');
city[216] = new CityObject('the_other_cities_of_burkino_faso','その他の都市','burkino_faso');
city[217] = new CityObject('sofiya','ソフィア','bulgaria');
city[218] = new CityObject('plovdiv','プロブディフ','bulgaria');
city[219] = new CityObject('veliko_tarnovo','ベリコ・タルノボ','bulgaria');
city[220] = new CityObject('the_other_cities_of_bulgaria','その他の都市','bulgaria');
city[221] = new CityObject('valley_of_the_rose','バラの谷','bulgaria');
city[222] = new CityObject('rilski_manastie','リラの僧院','bulgaria');
city[223] = new CityObject('the_other_spots_of_bulgaria','その他の観光地','bulgaria');
city[224] = new CityObject('manama','マナーマ','bahrain');
city[225] = new CityObject('muharraq','ムハラク','bahrain');
city[226] = new CityObject('the_other_cities_of_bahrain','その他の都市','bahrain');
city[227] = new CityObject('bujumbura','ブジュンブラ','burundi');
city[228] = new CityObject('the_other_cities_of_burundi','その他の都市','burundi');
city[229] = new CityObject('port_novo','ポルトノボ','benin');
city[230] = new CityObject('cotonou','コトヌー','benin');
city[231] = new CityObject('the_other_cities_of_benin','その他の都市','benin');
city[232] = new CityObject('bandar_seri_begawan','バンダルスリブガワン','brunei');
city[233] = new CityObject('the_other_cities_of_brunei','その他の都市','brunei');
city[234] = new CityObject('uyuni','ウユニ','bolivia');
city[235] = new CityObject('oruro','オルーロ','bolivia');
city[236] = new CityObject('cochabamba','コチャバンバ','bolivia');
city[237] = new CityObject('coroico','コロイコ','bolivia');
city[238] = new CityObject('santa_cruz_bo','サンタクルス','bolivia');
city[239] = new CityObject('sucre','スクレ','bolivia');
city[240] = new CityObject('trinidad','トリニダー','bolivia');
city[241] = new CityObject('potosi','ポトシ','bolivia');
city[242] = new CityObject('lapaz','ラパス','bolivia');
city[243] = new CityObject('the_other_cities_of_bolivia','その他の都市','bolivia');
city[244] = new CityObject('tiwanaku','ティワナク遺跡','bolivia');
city[245] = new CityObject('the_other_spots_of_bolivia','その他の観光地','bolivia');
city[246] = new CityObject('ouro_preto','オーロ・プレット','brazil');
city[247] = new CityObject('olinda','オリンダ','brazil');
city[248] = new CityObject('curitiba','クリチバ','brazil');
city[249] = new CityObject('corumba','コルンバ','brazil');
city[250] = new CityObject('salvador','サルバドール','brazil');
city[251] = new CityObject('sao_joao_del_rei','サン・ジョアン・デル・ヘイ','brazil');
city[252] = new CityObject('sao_luis','サン・ルイス','brazil');
city[253] = new CityObject('santarem','サンタレン','brazil');
city[254] = new CityObject('santos','サントス','brazil');
city[255] = new CityObject('san_paulo','サンパウロ','brazil');
city[256] = new CityObject('natal','ナタル','brazil');
city[257] = new CityObject('paraty','パラチー','brazil');
city[258] = new CityObject('paranagua','パラナグア','brazil');
city[259] = new CityObject('iguassu_falls_br','フォス・ド・イグアス','brazil');
city[260] = new CityObject('fortaleza','フォルタレーザ','brazil');
city[261] = new CityObject('brasilia','ブラジリア','brazil');
city[262] = new CityObject('blumenau','ブルメナウ','brazil');
city[263] = new CityObject('florianopolis','フロリアノポリス','brazil');
city[264] = new CityObject('belem','ベレン','brazil');
city[265] = new CityObject('belo_horizonte','ベロ・オリゾンチ','brazil');
city[266] = new CityObject('boa_vista','ボア・ビスタ','brazil');
city[267] = new CityObject('porto_alegre','ポルト・アレグレ','brazil');
city[268] = new CityObject('porto_seguro','ポルト・セグーロ','brazil');
city[269] = new CityObject('maceio','マセイオ','brazil');
city[270] = new CityObject('manacapuru','マナウス','brazil');
city[271] = new CityObject('rio_de_janeiro','リオデジャネイロ','brazil');
city[272] = new CityObject('recife','レシフェ','brazil');
city[273] = new CityObject('the_other_cities_of_brazil','その他の都市','brazil');
city[274] = new CityObject('amazon_br','アマゾン','brazil');
city[275] = new CityObject('iguazu','イグアスの滝','brazil');
city[276] = new CityObject('north_pantanal','北パンタナール','brazil');
city[277] = new CityObject('south_pantanal','南パンタナール','brazil');
city[278] = new CityObject('the_other_spots_of_brazil','その他の観光地','brazil');
city[279] = new CityObject('nassau','ナッソー','bahamas');
city[280] = new CityObject('the_other_cities_of_bahamas','その他の都市','bahamas');
city[281] = new CityObject('andros_island','アンドロス島','bahamas');
city[282] = new CityObject('eleuthera','エルーセラ島','bahamas');
city[283] = new CityObject('grand_bahama_island','グランド・バハマ島','bahamas');
city[284] = new CityObject('turks_and_caicos_islands','タークス＆ケイコス諸島','bahamas');
city[285] = new CityObject('the_other_spots_of_bahamas','その他の観光地','bahamas');
city[286] = new CityObject('thimphu','ティンプー','bhutan');
city[287] = new CityObject('trongsa','トンサ','bhutan');
city[288] = new CityObject('paro','パロ','bhutan');
city[289] = new CityObject('wangdue_phodrang','ワンデュ・ポダン','bhutan');
city[290] = new CityObject('the_other_cities_of_bhutan','その他の都市','bhutan');
city[291] = new CityObject('bumthang','ブムタン地方','bhutan');
city[292] = new CityObject('the_other_spots_of_bhutan','その他の観光地','bhutan');
city[293] = new CityObject('chobe','チョベ','botswana');
city[294] = new CityObject('gaborone','ハボロネ','botswana');
city[295] = new CityObject('the_other_cities_of_botswana','その他の都市','botswana');
city[296] = new CityObject('brest_by','ブレスト','belarus');
city[297] = new CityObject('minsk','ミンスク','belarus');
city[298] = new CityObject('the_other_cities_of_belarus','その他の都市','belarus');
city[299] = new CityObject('belize_city','ベリーズ・シティ','belize');
city[300] = new CityObject('belmopan','ベルモパン','belize');
city[301] = new CityObject('corozal','コロザル','belize');
city[302] = new CityObject('san_ignacio','サン・イグナシオ','belize');
city[303] = new CityObject('punta_gorda','プンタ・ゴルダ','belize');
city[304] = new CityObject('dangriga','ダンリガ','belize');
city[305] = new CityObject('the_other_cities_of_belize','その他の都市','belize');
city[306] = new CityObject('caye_caulker','キー・カーカー','belize');
city[307] = new CityObject('san_pedro','サン・ペドロ','belize');
city[308] = new CityObject('placencia','プラセンシア','belize');
city[309] = new CityObject('the_other_spots_of_belize','その他の観光地','belize');
city[310] = new CityObject('yellowknife','イエローナイフ','canada');
city[311] = new CityObject('iqaluit','イカルイット','canada');
city[312] = new CityObject('whistler','ウィスラー','canada');
city[313] = new CityObject('winnipeg','ウィニペグ','canada');
city[314] = new CityObject('edmonton','エドモントン','canada');
city[315] = new CityObject('ottawa','オタワ','canada');
city[316] = new CityObject('gaspe','ガスペ','canada');
city[317] = new CityObject('kamloops','カムループス','canada');
city[318] = new CityObject('calgary','カルガリー','canada');
city[319] = new CityObject('kingston_ca','キングストン','canada');
city[320] = new CityObject('quebec','ケベック','canada');
city[321] = new CityObject('kelowna','ケロウナ','canada');
city[322] = new CityObject('canmore','ケンモア','canada');
city[323] = new CityObject('corner_brook','コーナー・ブルック','canada');
city[324] = new CityObject('saskatoon','サスカトゥーン','canada');
city[325] = new CityObject('chibougamau','シブーガムー','canada');
city[326] = new CityObject('charrottetown','シャーロットタウン','canada');
city[327] = new CityObject('jasper','ジャスパー','canada');
city[328] = new CityObject('st.john','セントジョン','canada');
city[329] = new CityObject('st_johns','セントジョンズ','canada');
city[330] = new CityObject('churchill','チャーチル','canada');
city[331] = new CityObject('tofino','トフィーノ','canada');
city[332] = new CityObject('trois_rivieres','トロワ・リヴィエール','canada');
city[333] = new CityObject('toronto','トロント','canada');
city[334] = new CityObject('niagara_on_the_lake','ナイアガラ・オン・ザ・レイク','canada');
city[335] = new CityObject('niagara_falls_ca','ナイアガラ・フォールズ','canada');
city[336] = new CityObject('nanaimo','ナナイモ','canada');
city[337] = new CityObject('halifax','ハリファックス','canada');
city[338] = new CityObject('vancouver','バンクーバー','canada');
city[339] = new CityObject('huntsville','ハンツビル','canada');
city[340] = new CityObject('banff','バンフ','canada');
city[341] = new CityObject('victoria','ビクトリア','canada');
city[342] = new CityObject('prince_rupert','プリンスルパート','canada');
city[343] = new CityObject('fredericton','フレデリクトン','canada');
city[344] = new CityObject('whitehorse','ホワイトホース','canada');
city[345] = new CityObject('moncton','モンクトン','canada');
city[346] = new CityObject('montreal','モントリオール','canada');
city[347] = new CityObject('regina','レジャイナ','canada');
city[348] = new CityObject('the_other_cities_of_canada','その他の都市','canada');
city[349] = new CityObject('green_gables','赤毛のアンの家','canada');
city[350] = new CityObject('algonquin_provincial_park','アルゴンキン州立公園','canada');
city[351] = new CityObject('eastern_townships','イースタン・タウンシップス','canada');
city[352] = new CityObject('waterton_lakes_national_park','ウォータートン湖','canada');
city[353] = new CityObject('okanagan_wine_route','オカナガン・ワインルート','canada');
city[354] = new CityObject('canadian_rockies','カナディアンロッキー','canada');
city[355] = new CityObject('kootenay_national_park','クートニィ国立公園','canada');
city[356] = new CityObject('gros_morne_national_park','グロス・モーン国立公園','canada');
city[357] = new CityObject('cape_breton','ケープ・ブレトン','canada');
city[358] = new CityObject('niagara_wine_route','ナイアガラ・ワインルート','canada');
city[359] = new CityObject('niagara_link','ナイアガラの滝','canada');
city[360] = new CityObject('badland','バッドランド','canada');
city[361] = new CityObject('vancouver_island','バンクーバー島','canada');
city[362] = new CityObject('prince_edward_island','プリンスエドワード島','canada');
city[363] = new CityObject('madeleine_island','マドレーヌ島','canada');
city[364] = new CityObject('maple_route','メープル街道','canada');
city[365] = new CityObject('yoho_national_park','ヨーホー国立公園','canada');
city[366] = new CityObject('lighthouse_route','ライトハウス・ルート','canada');
city[367] = new CityObject('lake_louise','レイク・ルイーズ','canada');
city[368] = new CityObject('laurentians','ローレンシャン高原','canada');
city[369] = new CityObject('the_other_spots_of_canada','その他の観光地','canada');
city[370] = new CityObject('alberta_state','アルバータ州','canada');
city[371] = new CityObject('ontario_state','オンタリオ州','canada');
city[372] = new CityObject('quebec_state','ケベック州','canada');
city[373] = new CityObject('saskatchewan_state','サスカチュワン州','canada');
city[374] = new CityObject('new_foundland_state','ニューファンドランド州','canada');
city[375] = new CityObject('new_brunswick_state','ニューブランズウィック州','canada');
city[376] = new CityObject('nunabut_state','ヌナブト準州','canada');
city[377] = new CityObject('north_west_territories_state','ノースウェスト準州','canada');
city[378] = new CityObject('novascotia_state','ノバスコシア州','canada');
city[379] = new CityObject('british_columbia_state','ブリティッシュコロンビア州','canada');
city[380] = new CityObject('prince_edward_island_state','プリンスエドワードアイランド州','canada');
city[381] = new CityObject('manitoba_state','マニトバ州','canada');
city[382] = new CityObject('yukon_state','ユーコン準州','canada');
city[383] = new CityObject('kinshasa','キンシャサ','democratic_republic_of_congo');
city[384] = new CityObject('the_other_cities_of_democratic_republic_of_congo','その他の都市','democratic_republic_of_congo');
city[385] = new CityObject('bangui','バンギ','central_africa');
city[386] = new CityObject('the_other_cities_of_central_africa','その他の都市','central_africa');
city[387] = new CityObject('brazzaville','ブラザビル','republic_of_congo');
city[388] = new CityObject('the_other_cities_of_republic_of_congo','その他の都市','republic_of_congo');
city[389] = new CityObject('ascona','アスコーナ','switzerland');
city[390] = new CityObject('appenzel','アッペンツェル','switzerland');
city[391] = new CityObject('arosa','アローザ','switzerland');
city[392] = new CityObject('andermatt','アンデルマット','switzerland');
city[393] = new CityObject('yverdon_les_bains','イヴェルドン・レ・バン','switzerland');
city[394] = new CityObject('interlaken','インターラーケン','switzerland');
city[395] = new CityObject('winterthur','ヴィンタートゥール','switzerland');
city[396] = new CityObject('vevey','ヴヴェイ','switzerland');
city[397] = new CityObject('verbier','ヴェルビエ','switzerland');
city[398] = new CityObject('wengen','ヴェンゲン','switzerland');
city[399] = new CityObject('kandersteg','カンデルシュテーク','switzerland');
city[400] = new CityObject('guarda','グアルダ','switzerland');
city[401] = new CityObject('chur','クール','switzerland');
city[402] = new CityObject('gstaad','グシュタード','switzerland');
city[403] = new CityObject('kleine_scheidegg','クライネ・シャイデック','switzerland');
city[404] = new CityObject('gruyeres','グリュイエール','switzerland');
city[405] = new CityObject('grindelwald','グリンデルワルト','switzerland');
city[406] = new CityObject('saas_fee','サース・フェー','switzerland');
city[407] = new CityObject('st_gallen','ザンクトガレン','switzerland');
city[408] = new CityObject('st.moritz','サンモリッツ','switzerland');
city[409] = new CityObject('sion','シオン','switzerland');
city[410] = new CityObject('schaffhausen','シャフハウゼン','switzerland');
city[411] = new CityObject('chamonix_mont_blanc','シャモニ・モン・ブラン','switzerland');
city[412] = new CityObject('scuok','シュクオル','switzerland');
city[413] = new CityObject('stein_am_rhein','シュタイン・アム・ライン','switzerland');
city[414] = new CityObject('geneve','ジュネーブ','switzerland');
city[415] = new CityObject('spiez','シュピーツ','switzerland');
city[416] = new CityObject('solothurn','ソロトゥルン','switzerland');
city[417] = new CityObject('davos','ダボス','switzerland');
city[418] = new CityObject('zurlch','チューリッヒ','switzerland');
city[419] = new CityObject('zermatt','ツェルマット','switzerland');
city[420] = new CityObject('thun','トゥーン','switzerland');
city[421] = new CityObject('trun','トゥルン','switzerland');
city[422] = new CityObject('nyon','ニヨン','switzerland');
city[423] = new CityObject('neuchatel','ヌーシャテル','switzerland');
city[424] = new CityObject('basle','バーゼル','switzerland');
city[425] = new CityObject('baden','バーデン','switzerland');
city[426] = new CityObject('badragaz','バートラガーツ','switzerland');
city[427] = new CityObject('bienne','ビエンヌ','switzerland');
city[428] = new CityObject('brienz','ブリエンツ','switzerland');
city[429] = new CityObject('fribourg','フリブール','switzerland');
city[430] = new CityObject('bellinzona','ベリンツォーナ','switzerland');
city[431] = new CityObject('bern','ベルン','switzerland');
city[432] = new CityObject('maienfeld','マイエンフェルト','switzerland');
city[433] = new CityObject('meiringen','マイリンゲン','switzerland');
city[434] = new CityObject('martigny','マルティニ','switzerland');
city[435] = new CityObject('murren','ミューレン','switzerland');
city[436] = new CityObject('mustair','ミュスタイア','switzerland');
city[437] = new CityObject('murten','ムルテン','switzerland');
city[438] = new CityObject('montreux','モントルー','switzerland');
city[439] = new CityObject('la_chaux_de_fonds','ラ・ショウ・ド・フォン','switzerland');
city[440] = new CityObject('lauterbrunnen','ラウターブルンネン','switzerland');
city[441] = new CityObject('lugano','ルガーノ','switzerland');
city[442] = new CityObject('luzern','ルツェルン','switzerland');
city[443] = new CityObject('leukerbad','ロイカーバート','switzerland');
city[444] = new CityObject('lausanne','ローザンヌ','switzerland');
city[445] = new CityObject('locarno','ロカルノ','switzerland');
city[446] = new CityObject('the_other_cities_of_switzerland','その他の都市','switzerland');
city[447] = new CityObject('anniviers_valley','アニヴィエの谷','switzerland');
city[448] = new CityObject('aletsch_gletscher','アレッチ氷河','switzerland');
city[449] = new CityObject('engadin','エンガディン','switzerland');
city[450] = new CityObject('golden_pass','ゴールデンパス','switzerland');
city[451] = new CityObject('gornergrat','ゴルナーグラード','switzerland');
city[452] = new CityObject('schynige_platte','シーニゲプラッテ','switzerland');
city[453] = new CityObject('titlis_mountain','ティトゥリス山','switzerland');
city[454] = new CityObject('pilatus','ピラトゥス山','switzerland');
city[455] = new CityObject('bernina_express','ベルニナ急行','switzerland');
city[456] = new CityObject('glacier_express','氷河急行','switzerland');
city[457] = new CityObject('mannlichen','メンリッヒェン','switzerland');
city[458] = new CityObject('jungfrau','ユングフラウ','switzerland');
city[459] = new CityObject('rigi_mountain','リギ山','switzerland');
city[460] = new CityObject('lake_leman','レマン湖','switzerland');
city[461] = new CityObject('the_other_spots_of_switzerland','その他の観光地','switzerland');
city[462] = new CityObject('abidjan','アビジャン','cote_d_ivoire');
city[463] = new CityObject('yamoussoukro','ヤムスクロ','cote_d_ivoire');
city[464] = new CityObject('the_other_cities_of_cote_divoire','その他の都市','cote_d_ivoire');
city[465] = new CityObject('avarua','アバルア','cook_islands');
city[466] = new CityObject('the_other_cities_of_cook_islands','その他の都市','cook_islands');
city[467] = new CityObject('aitutaki_island','アイツタキ島','cook_islands');
city[468] = new CityObject('atiu_island','アチウ島','cook_islands');
city[469] = new CityObject('mangaia_island','マンガイア島','cook_islands');
city[470] = new CityObject('rarotonga_island','ラロトンガ島','cook_islands');
city[471] = new CityObject('the_other_spots_of_cook_islands','その他の観光地','cook_islands');
city[472] = new CityObject('arica','アリカ','chile');
city[473] = new CityObject('antofagasta','アントファガスタ','chile');
city[474] = new CityObject('iquique','イキケ','chile');
city[475] = new CityObject('calama','カラマ','chile');
city[476] = new CityObject('san_pedro_de_atacama','サン・ペドロ・デ・アタカマ','chile');
city[477] = new CityObject('santiago','サンチアゴ','chile');
city[478] = new CityObject('valparaiso','バルパライソ','chile');
city[479] = new CityObject('vina_del_mar','ビーニャ・デル・マル','chile');
city[480] = new CityObject('puerto_natales','プエルト・ナタレス','chile');
city[481] = new CityObject('puertomontt','プエルト・モン','chile');
city[482] = new CityObject('punta_arenas','プンタ・アレーナス','chile');
city[483] = new CityObject('la_serena','ラ・セレナ','chile');
city[484] = new CityObject('the_other_cities_of_chile','その他の都市','chile');
city[485] = new CityObject('easter_island','イースター島','chile');
city[486] = new CityObject('paine_national_park','パイネ国立公園','chile');
city[487] = new CityObject('the_other_spots_of_chile','その他の観光地','chile');
city[488] = new CityObject('douala','ドゥアラ','cameroon');
city[489] = new CityObject('yaounde','ヤウンデ','cameroon');
city[490] = new CityObject('the_other_cities_of_cameroon','その他の都市','cameroon');
city[491] = new CityObject('amoy','厦門','china');
city[492] = new CityObject('urumqi','烏魯木斉','china');
city[493] = new CityObject('erlianhaote','エレンホト','china');
city[494] = new CityObject('yantai','煙台','china');
city[495] = new CityObject('haikou','海口','china');
city[496] = new CityObject('kaifeng','開封','china');
city[497] = new CityObject('kaili','凱里','china');
city[498] = new CityObject('kaxga','喀什','china');
city[499] = new CityObject('emeishan','峨眉山','china');
city[500] = new CityObject('jilin','吉林','china');
city[501] = new CityObject('jiuzhaigou','九寨溝','china');
city[502] = new CityObject('guiyang','貴陽','china');
city[503] = new CityObject('qufu','曲阜','china');
city[504] = new CityObject('yinchuan','銀川','china');
city[505] = new CityObject('kuqa','庫車','china');
city[506] = new CityObject('jinghong','景洪','china');
city[507] = new CityObject('jingzhou','荊州','china');
city[508] = new CityObject('jingdezhen','景徳鎮','china');
city[509] = new CityObject('guilin','桂林','china');
city[510] = new CityObject('shijiazhuang','石家荘','china');
city[511] = new CityObject('huangshan','黄山','china');
city[512] = new CityObject('guangzhou','広州','china');
city[513] = new CityObject('hangzhou','杭州','china');
city[514] = new CityObject('hefei','合肥','china');
city[515] = new CityObject('huanglong','黄龍','china');
city[516] = new CityObject('wutaishan','五台山','china');
city[517] = new CityObject('geermu','ゴルムド','china');
city[518] = new CityObject('kunming','昆明','china');
city[519] = new CityObject('jinan','済南','china');
city[520] = new CityObject('sanya','三亜','china');
city[521] = new CityObject('sanjiang','三江','china');
city[522] = new CityObject('sanmenxia','三門峡','china');
city[523] = new CityObject('sisangpanna','西双版納','china');
city[524] = new CityObject('shanghai','上海','china');
city[525] = new CityObject('guyang','重慶','china');
city[526] = new CityObject('zhouzhuang','周庄','china');
city[527] = new CityObject('jining','集寧','china');
city[528] = new CityObject('shangqiu','商丘','china');
city[529] = new CityObject('shaoxing','紹興','china');
city[530] = new CityObject('chengde','承徳','china');
city[531] = new CityObject('xiangfan','襄樊','china');
city[532] = new CityObject('shenzhen','深セン','china');
city[533] = new CityObject('shennongjia','神農架','china');
city[534] = new CityObject('qinhuangdao','泰皇島','china');
city[535] = new CityObject('shenyang','瀋陽','china');
city[536] = new CityObject('songshan','嵩山','china');
city[537] = new CityObject('xian','西安','china');
city[538] = new CityObject('chengdu','成都','china');
city[539] = new CityObject('xining','西寧','china');
city[540] = new CityObject('suzhou','蘇州','china');
city[541] = new CityObject('taiyuan','太原','china');
city[542] = new CityObject('taishan','泰山','china');
city[543] = new CityObject('dazu','大足','china');
city[544] = new CityObject('datong','大同','china');
city[545] = new CityObject('dali','大理','china');
city[546] = new CityObject('dalian','大連','china');
city[547] = new CityObject('qiqihaer','チチハル','china');
city[548] = new CityObject('zhangjiajie','張家界','china');
city[549] = new CityObject('zhangjiakou','張家口','china');
city[550] = new CityObject('changsha','長沙','china');
city[551] = new CityObject('changchun','長春','china');
city[552] = new CityObject('zhenjiang','鎮江','china');
city[553] = new CityObject('qingdao','青島','china');
city[554] = new CityObject('zhengzhou','鄭州','china');
city[555] = new CityObject('tianjin','天津','china');
city[556] = new CityObject('tiantaishan','天台山','china');
city[557] = new CityObject('turpan','吐魯番','china');
city[558] = new CityObject('tunxi','屯渓','china');
city[559] = new CityObject('dunhuang','敦煌','china');
city[560] = new CityObject('nanjing','南京','china');
city[561] = new CityObject('nanchang','南昌','china');
city[562] = new CityObject('ningbo','寧波','china');
city[563] = new CityObject('baotou','包頭','china');
city[564] = new CityObject('harbin','哈爾濱','china');
city[565] = new CityObject('wuyishan','武夷山','china');
city[566] = new CityObject('wuhan','武漢','china');
city[567] = new CityObject('fuzhou','福州','china');
city[568] = new CityObject('putuoshan','普陀山','china');
city[569] = new CityObject('wudangshan','武当山','china');
city[570] = new CityObject('hohhot','呼和浩特','china');
city[571] = new CityObject('pingyao','平遙','china');
city[572] = new CityObject('peking','北京','china');
city[573] = new CityObject('khotan','和田','china');
city[574] = new CityObject('wuxi','無錫','china');
city[575] = new CityObject('yangshuo','陽朔','china');
city[576] = new CityObject('yangzhou','揚州','china');
city[577] = new CityObject('laizhou','莱州','china');
city[578] = new CityObject('leshan','楽山','china');
city[579] = new CityObject('luoyang','洛陽','china');
city[580] = new CityObject('lhasa','拉薩','china');
city[581] = new CityObject('lanzhou','蘭州','china');
city[582] = new CityObject('lijiang','麗江','china');
city[583] = new CityObject('lushan','廬山','china');
city[584] = new CityObject('the_other_cities_of_china','その他の都市','china');
city[585] = new CityObject('jiayuguan','嘉峪関','china');
city[586] = new CityObject('mausoleum_of_the_first_qin_emporer','秦の始皇陵','china');
city[587] = new CityObject('the_great_wall_of_china','万里の長城','china');
city[588] = new CityObject('potala_palace','ラサのポタラ宮歴史地区群','china');
city[589] = new CityObject('the_other_spots_of_china','その他の観光地','china');
city[590] = new CityObject('anhui_province','安徽省','china');
city[591] = new CityObject('yunnan_province','雲南省','china');
city[592] = new CityObject('hainan_province','海南省','china');
city[593] = new CityObject('henan_province','河南省','china');
city[594] = new CityObject('hebei_province','河北省','china');
city[595] = new CityObject('gansu_province','甘粛省','china');
city[596] = new CityObject('guangdong_province','広東省','china');
city[597] = new CityObject('guizhou_province','貴州省','china');
city[598] = new CityObject('jilin_province','吉林省','china');
city[599] = new CityObject('jiangxi_province','江西省','china');
city[600] = new CityObject('guangxichuangzu_autonomous_region','広西壮族自治区','china');
city[601] = new CityObject('jiangsu_province','江蘇省','china');
city[602] = new CityObject('heilongjiang_province','黒龍江省','china');
city[603] = new CityObject('hunan_province','湖南省','china');
city[604] = new CityObject('hubei_province','湖北省','china');
city[605] = new CityObject('shanxi_province','山西省','china');
city[606] = new CityObject('shandong_province','山東省','china');
city[607] = new CityObject('sichuan_province','四川省','china');
city[608] = new CityObject('xinjiangweiwuerzu_autonomous_region','新疆ウイグル自治区','china');
city[609] = new CityObject('qinghai_province','青海省','china');
city[610] = new CityObject('zhejiang_province','浙江省','china');
city[611] = new CityObject('shaanxi_province','陜西省','china');
city[612] = new CityObject('xizang_autonomous_region','チベット自治区','china');
city[613] = new CityObject('ningxiahuizu_autonomous_region','寧夏回族自治区','china');
city[614] = new CityObject('fujian_province','福建省','china');
city[615] = new CityObject('neimenggu_autonomous_region','内蒙古自治区','china');
city[616] = new CityObject('liaoning_province','遼寧省','china');
city[617] = new CityObject('armenia','アルメニア','colombia');
city[618] = new CityObject('cali','カリ','colombia');
city[619] = new CityObject('cartagena','カルタヘナ','colombia');
city[620] = new CityObject('bogota','ボゴタ','colombia');
city[621] = new CityObject('the_other_cities_of_colombia','その他の都市','colombia');
city[622] = new CityObject('alajuela','アラフエラ','costa_rica');
city[623] = new CityObject('cartago','カルタゴ','costa_rica');
city[624] = new CityObject('san_jose_of_cr','サンホセ','costa_rica');
city[625] = new CityObject('puntarenas','プンタレナス','costa_rica');
city[626] = new CityObject('liberia','リベリア','costa_rica');
city[627] = new CityObject('the_other_cities_of_costa_rica','その他の都市','costa_rica');
city[628] = new CityObject('arenal_volcanic_national_park','アレナル火山国立公園','costa_rica');
city[629] = new CityObject('cano_negro_wildlife_sanctuary','カーニョ・ネグロ野生保護区','costa_rica');
city[630] = new CityObject('cahuita_national_park','カウイータ国立公園','costa_rica');
city[631] = new CityObject('coco_island','ココ島','costa_rica');
city[632] = new CityObject('corcovado_national_park','コルコバード国立公園','costa_rica');
city[633] = new CityObject('chirripo_national_park','チリポ国立公園','costa_rica');
city[634] = new CityObject('tortuguero_national_park','トルトゥゲーロ国立公園','costa_rica');
city[635] = new CityObject('nicoya_peninsula','ニコヤ半島','costa_rica');
city[636] = new CityObject('barra_del_colorado_national_park','バラ・デル・コロラド野生保護区','costa_rica');
city[637] = new CityObject('manuel_antonio_national_park','マヌエル・アントニオ国立公園','costa_rica');
city[638] = new CityObject('monteverde_nature_reserve','モンテベルデ自然保護区','costa_rica');
city[639] = new CityObject('the_other_spots_of_costa_rica','その他の観光地','costa_rica');
city[640] = new CityObject('santiago_de_cuba','サンティアゴ・デ・クーバ','cuba');
city[641] = new CityObject('trinidad_cu','トリニダー','cuba');
city[642] = new CityObject('habana','ハバナ','cuba');
city[643] = new CityObject('varadero','バラデロ','cuba');
city[644] = new CityObject('the_other_cities_of_cuba','その他の都市','cuba');
city[645] = new CityObject('praia','プライア','cape_verde');
city[646] = new CityObject('the_other_cities_of_cape_verde','その他の都市','cape_verde');
city[647] = new CityObject('agia_napa','アイヤ・ナパ','cyprus');
city[648] = new CityObject('akamas','アカマス','cyprus');
city[649] = new CityObject('troodos','トロードス','cyprus');
city[650] = new CityObject('nicisia','ニコシア','cyprus');
city[651] = new CityObject('pafos','パフォス','cyprus');
city[652] = new CityObject('larnaka','ラルナカ','cyprus');
city[653] = new CityObject('lemesos','レメソス','cyprus');
city[654] = new CityObject('the_other_cities_of_cyprus','その他の都市','cyprus');
city[655] = new CityObject('olomouc','オロモウツ','czech_republic');
city[656] = new CityObject('karlovy_vary','カルロビバリ','czech_republic');
city[657] = new CityObject('kutna_hora','クトナー・ホラ','czech_republic');
city[658] = new CityObject('ceske_budejovice','チェスキー・ブジョヴィツェ','czech_republic');
city[659] = new CityObject('cesky_krumlov','チェスキー・クルムロフ','czech_republic');
city[660] = new CityObject('praha','プラハ','czech_republic');
city[661] = new CityObject('plzen','プルゼニュ','czech_republic');
city[662] = new CityObject('brno','ブルノ','czech_republic');
city[663] = new CityObject('the_other_cities_of_czech_republic','その他の都市','czech_republic');
city[664] = new CityObject('aachen','アーヘン','germany');
city[665] = new CityObject('eisenach','アイゼナッハ','germany');
city[666] = new CityObject('augsburg','アウクスブルク','germany');
city[667] = new CityObject('aschaffenburg','アシャッフェンブルク','germany');
city[668] = new CityObject('alsfeld','アルスフェルト','germany');
city[669] = new CityObject('ansbach','アンスバッハ','germany');
city[670] = new CityObject('idar-oberstein','イーダー・オーバーシュタイン','germany');
city[671] = new CityObject('jena','イエナ','germany');
city[672] = new CityObject('weikersheim','ヴァイカースハイム','germany');
city[673] = new CityObject('wiesbaden','ヴィースバーデン','germany');
city[674] = new CityObject('wismar','ヴィスマール','germany');
city[675] = new CityObject('wittenberg','ヴィッテンベルク','germany');
city[676] = new CityObject('wernigerode','ヴェルニゲローデ','germany');
city[677] = new CityObject('worpswede','ヴォルプスヴェーデ','germany');
city[678] = new CityObject('worms','ヴォルムス','germany');
city[679] = new CityObject('wuerzburg','ヴュルツブルク','germany');
city[680] = new CityObject('ulm','ウルム','germany');
city[681] = new CityObject('eberbach','エーベルバッハ','germany');
city[682] = new CityObject('essen','エッセン','germany');
city[683] = new CityObject('erfurt','エルフルト','germany');
city[684] = new CityObject('oberammergau','オーバーアマガウ','germany');
city[685] = new CityObject('karlsruhe','カールスルーエ','germany');
city[686] = new CityObject('kassel','カッセル','germany');
city[687] = new CityObject('calw','カルフ','germany');
city[688] = new CityObject('germisch-partenkirchen','ガルミッシュ・パルテンキルヘン','germany');
city[689] = new CityObject('kiel','キール','germany');
city[690] = new CityObject('quedlinburg','クヴェトリンブルク','germany');
city[691] = new CityObject('kulmbach','クルムバッハ','germany');
city[692] = new CityObject('creglingen','クレクリンゲン','germany');
city[693] = new CityObject('gottingen','ゲッティンゲン','germany');
city[694] = new CityObject('koln','ケルン','germany');
city[695] = new CityObject('goslar','ゴスラー','germany');
city[696] = new CityObject('cochem','コッヘム','germany');
city[697] = new CityObject('koblenz','コブレンツ','germany');
city[698] = new CityObject('konstanz','コンスタンツ','germany');
city[699] = new CityObject('saarbrucken','ザールブリュッケン','germany');
city[700] = new CityObject('seiffen','ザイフェン','germany');
city[701] = new CityObject('siegen','ジーゲン','germany');
city[702] = new CityObject('schwabisch_hall','シュヴェービッシュ・ハル','germany');
city[703] = new CityObject('schwerin','シュヴェリーン','germany');
city[704] = new CityObject('steinau','シュタイナウ','germany');
city[705] = new CityObject('stuttgart','シュツットガルト','germany');
city[706] = new CityObject('stralsund','シュトラールズント','germany');
city[707] = new CityObject('schwangau','シュバンガウ','germany');
city[708] = new CityObject('sylt','ズィルト','germany');
city[709] = new CityObject('soest','ゾースト','germany');
city[710] = new CityObject('thale','ターレ','germany');
city[711] = new CityObject('darmstadt','ダルムシュタット','germany');
city[712] = new CityObject('celle','ツェレ','germany');
city[713] = new CityObject('dinkelsbuhl','ディンケルスビュール','germany');
city[714] = new CityObject('dessau','デッサウ','germany');
city[715] = new CityObject('tuebingen','テュービンゲン','germany');
city[716] = new CityObject('dusseldorf','デュッセルドルフ','germany');
city[717] = new CityObject('donaueschingen','ドナウエッシンゲン','germany');
city[718] = new CityObject('trier','トリアー','germany');
city[719] = new CityObject('dortmund','ドルトムント','germany');
city[720] = new CityObject('dresden','ドレスデン','germany');
city[721] = new CityObject('naumburg','ナウムブルク','germany');
city[722] = new CityObject('nurnberg','ニュルンベルク','germany');
city[723] = new CityObject('nordlingen','ネルトリンゲン','germany');
city[724] = new CityObject('baden_baden','バーデン・バーデン','germany');
city[725] = new CityObject('bad_wimpfen','バード・ヴィンプフェン','germany');
city[726] = new CityObject('bad_mergentheim','バード・メルゲントハイム','germany');
city[727] = new CityObject('hanau','ハーナウ','germany');
city[728] = new CityObject('hameln','ハーメルン','germany');
city[729] = new CityObject('heidelberg','ハイデルベルク','germany');
city[730] = new CityObject('heilbronn_am_neckar','ハイルブロン','germany');
city[731] = new CityObject('bayreuth','バイロイト','germany');
city[732] = new CityObject('passau','パッサウ','germany');
city[733] = new CityObject('hannover','ハノーバー','germany');
city[734] = new CityObject('halle','ハレ','germany');
city[735] = new CityObject('hann_munden','ハン・ミュンデン','germany');
city[736] = new CityObject('hamburg','ハンブルク','germany');
city[737] = new CityObject('bamberg','バンベルク','germany');
city[738] = new CityObject('husum','フーズム','germany');
city[739] = new CityObject('fussen','フュッセン','germany');
city[740] = new CityObject('freiburg','フライブルク','germany');
city[741] = new CityObject('braunschweig','ブラウンシュヴァイク','germany');
city[742] = new CityObject('frankfurt','フランクフルト','germany');
city[743] = new CityObject('friedrichshafen','フリードリヒスハーフェン','germany');
city[744] = new CityObject('prien','プリーン','germany');
city[745] = new CityObject('fulda','フルダ','germany');
city[746] = new CityObject('bremerhaven','ブレーマーハーフェン','germany');
city[747] = new CityObject('bremen','ブレーメン','germany');
city[748] = new CityObject('flensburg','フレンスブルク','germany');
city[749] = new CityObject('berchtesgaden','ベルヒテスガーデン','germany');
city[750] = new CityObject('berlin','ベルリン','germany');
city[751] = new CityObject('bernkastel-kues','ベルンカステル・クース','germany');
city[752] = new CityObject('hohenschwangau','ホーエンシュバンガウ','germany');
city[753] = new CityObject('bochum','ボーフム','germany');
city[754] = new CityObject('potsdam','ポツダム','germany');
city[755] = new CityObject('bonn','ボン','germany');
city[756] = new CityObject('marburg','マールブルク','germany');
city[757] = new CityObject('meissen','マイセン','germany');
city[758] = new CityObject('mainz','マインツ','germany');
city[759] = new CityObject('mannheim','マンハイム','germany');
city[760] = new CityObject('mittenwald','ミッテンヴァルト','germany');
city[761] = new CityObject('michelstadt','ミッヒェルシュタット','germany');
city[762] = new CityObject('munster','ミュンスター','germany');
city[763] = new CityObject('munchen','ミュンヘン','germany');
city[764] = new CityObject('miltenberg','ミルテンベルク','germany');
city[765] = new CityObject('meersburg','メーアスブルク','germany');
city[766] = new CityObject('molln','メルン','germany');
city[767] = new CityObject('monchengladbach','メンヒェングラートバッハ','germany');
city[768] = new CityObject('leipzig','ライプチヒ','germany');
city[769] = new CityObject('ratzeburg','ラッツェブルク','germany');
city[770] = new CityObject('rudesheim','リューデスハイム','germany');
city[771] = new CityObject('luneburg','リューネブルク','germany');
city[772] = new CityObject('lubeck','リューベック','germany');
city[773] = new CityObject('lindau','リンダウ','germany');
city[774] = new CityObject('limburg_an_der_lahn','リンブルク','germany');
city[775] = new CityObject('regensburg','レーゲンスブルク','germany');
city[776] = new CityObject('rothenburg','ローテンブルク','germany');
city[777] = new CityObject('rostock','ロストック','germany');
city[778] = new CityObject('weimar','ワイマール','germany');
city[779] = new CityObject('the_other_cities_of_germany','その他の都市','germany');
city[780] = new CityObject('burgerstrasse','古城街道','germany');
city[781] = new CityObject('schwarzwald','シュヴァルツヴァルト','germany');
city[782] = new CityObject('rhein','ライン川流域','germany');
city[783] = new CityObject('romantic_road','ロマンチック街道','germany');
city[784] = new CityObject('the_other_spots_of_germany','その他の観光地','germany');
city[785] = new CityObject('saarland','ザールラント州','germany');
city[786] = new CityObject('sachsen_anhalt','ザクセン・アンハルト州','germany');
city[787] = new CityObject('sachsen','ザクセン州','germany');
city[788] = new CityObject('schleswig_holstein','シュレスヴィッヒ・ホルシュタイン州','germany');
city[789] = new CityObject('thuringen','チューリンゲン州','germany');
city[790] = new CityObject('niedersachsen','ニーダーザクセン州','germany');
city[791] = new CityObject('nordrhein_westfalen','ノルトライン・ヴェストファーレン州','germany');
city[792] = new CityObject('baden_wurttemberg','バーデン・ビュルテンベルク州','germany');
city[793] = new CityObject('bayern','バイエルン州','germany');
city[794] = new CityObject('hamburg_state','ハンブルク州','germany');
city[795] = new CityObject('brandenburg','ブランデンブルク州','germany');
city[796] = new CityObject('bremen_state','ブレーメン州','germany');
city[797] = new CityObject('hessen','ヘッセン州','germany');
city[798] = new CityObject('berlin_state','ベルリン州','germany');
city[799] = new CityObject('mecklenburg_vorpommern','メクレンブルク・フォアポンメルン州','germany');
city[800] = new CityObject('rheinland_pfalz','ラインラント・プファルツ州','germany');
city[801] = new CityObject('dibouti','ジブチ','djibouti');
city[802] = new CityObject('the_other_cities_of_djibouti','その他の都市','djibouti');
city[803] = new CityObject('ebeltoft','エーベルトフト','denmark');
city[804] = new CityObject('aarhus','オーフス','denmark');
city[805] = new CityObject('aalborg','オールボルグ','denmark');
city[806] = new CityObject('odense','オデンセ','denmark');
city[807] = new CityObject('copenhagen','コペンハーゲン','denmark');
city[808] = new CityObject('skagen','スケーエン','denmark');
city[809] = new CityObject('frederiikshavn','フレデリクスハウン','denmark');
city[810] = new CityObject('helsingor','ヘルシンオア','denmark');
city[811] = new CityObject('ribe','リーベ','denmark');
city[812] = new CityObject('roskilde','ロスキレ','denmark');
city[813] = new CityObject('the_other_cities_of_denmark','その他の都市','denmark');
city[814] = new CityObject('greenland','グリーンランド','denmark');
city[815] = new CityObject('bornholm_island','ボーンホルム島','denmark');
city[816] = new CityObject('the_other_spots_of_denmark','その他の観光地','denmark');
city[817] = new CityObject('roseau','ロゾー','dominica');
city[818] = new CityObject('the_other_cities_of_dominica','その他の都市','dominica');
city[819] = new CityObject('santo_domingo','サント・ドミンゴ','dominican_republic');
city[820] = new CityObject('puerto_plata','プエルト・プラタ','dominican_republic');
city[821] = new CityObject('the_other_cities_of_dominican_republic','その他の都市','dominican_republic');
city[822] = new CityObject('alger','アルジェ','algeria');
city[823] = new CityObject('oran','オラン','algeria');
city[824] = new CityObject('the_other_cities_of_algeria','その他の都市','algeria');
city[825] = new CityObject('galapagos','ガラパゴス','ecuador');
city[826] = new CityObject('quito','キト','ecuador');
city[827] = new CityObject('guayaquil','グアヤキル','ecuador');
city[828] = new CityObject('cuenca','クエンカ','ecuador');
city[829] = new CityObject('riobamba','リオバンバ','ecuador');
city[830] = new CityObject('the_other_cities_of_ecuador','その他の都市','ecuador');
city[831] = new CityObject('napo_river','ナポ川','ecuador');
city[832] = new CityObject('the_other_spots_of_ecuador','その他の観光地','ecuador');
city[833] = new CityObject('tallin','タリン','estonia');
city[834] = new CityObject('tartu','タルトゥ','estonia');
city[835] = new CityObject('narva','ナルヴァ','estonia');
city[836] = new CityObject('haapsalu','ハープサル','estonia');
city[837] = new CityObject('parnu','パルヌ','estonia');
city[838] = new CityObject('the_other_cities_of_estonia','その他の都市','estonia');
city[839] = new CityObject('saaremaa','サーレマー島','estonia');
city[840] = new CityObject('hiiumaa','ヒーウマー島','estonia');
city[841] = new CityObject('lahemaa_rahvuspark','ラヘマー国立公園','estonia');
city[842] = new CityObject('the_other_spots_of_estonia','その他の観光地','estonia');
city[843] = new CityObject('aswan','アスワン','egypt');
city[844] = new CityObject('alexandria','アレキサンドリア','egypt');
city[845] = new CityObject('edfu','エドフ','egypt');
city[846] = new CityObject('cairo','カイロ','egypt');
city[847] = new CityObject('giza','ギザ','egypt');
city[848] = new CityObject('san_el_hagar','サーン・イル・ハガル','egypt');
city[849] = new CityObject('sharmelsheikh','シャルム・エル・シェイク','egypt');
city[850] = new CityObject('siwa_oasis','スィーワ・オアシス','egypt');
city[851] = new CityObject('suez','スエズ','egypt');
city[852] = new CityObject('st.katherina','セントカタリナ','egypt');
city[853] = new CityObject('taba','ターバー','egypt');
city[854] = new CityObject('tahab','ダハブ','egypt');
city[855] = new CityObject('dakhla_oasis','ダフラ・オアシス','egypt');
city[856] = new CityObject('tanta','タンタ','egypt');
city[857] = new CityObject('nuweiba','ヌエバア','egypt');
city[858] = new CityObject('bahariyya_oasis','バフレイヤ・オアシス','egypt');
city[859] = new CityObject('kharga_oasis','ハルガ・オアシス','egypt');
city[860] = new CityObject('hurghada','ハルガダ','egypt');
city[861] = new CityObject('fayyum','ファイユーム','egypt');
city[862] = new CityObject('farafra_oasis','ファラフラ・オアシス','egypt');
city[863] = new CityObject('port_said','ポート・サイド','egypt');
city[864] = new CityObject('luxor','ルクソール','egypt');
city[865] = new CityObject('the_other_cities_of_egypt','その他の都市','egypt');
city[866] = new CityObject('abu_simbel','アブ・シンベル','egypt');
city[867] = new CityObject('il-mathaf_il-masri','考古学博物館','egypt');
city[868] = new CityObject('il-mathaf_il-qubti','コプト博物館','egypt');
city[869] = new CityObject('kom_ombo','コム・オンボ','egypt');
city[870] = new CityObject('saqqara','サッカーラ','egypt');
city[871] = new CityObject('sinai_peninsula','シナイ半島','egypt');
city[872] = new CityObject('dahshur','ダフシュール','egypt');
city[873] = new CityObject('nile_valley','ナイル川流域','egypt');
city[874] = new CityObject('meidum','メイドゥーム','egypt');
city[875] = new CityObject('memphis_eg','メンフィス','egypt');
city[876] = new CityObject('the_other_spots_of_egypt','その他の観光地','egypt');
city[877] = new CityObject('asmara','アスマラ','eritrea');
city[878] = new CityObject('the_other_cities_of_eritrea','その他の都市','eritrea');
city[879] = new CityObject('avila','アビラ','spain');
city[880] = new CityObject('aranjuez','アランフェス','spain');
city[881] = new CityObject('alicante','アリカンテ','spain');
city[882] = new CityObject('arcos_de_la_frontera','アルコス・デ・ラ・フロンテーラ','spain');
city[883] = new CityObject('las_alpujarras','アルプラハ','spain');
city[884] = new CityObject('algeciras','アルヘシラス','spain');
city[885] = new CityObject('almagro','アルマグロ','spain');
city[886] = new CityObject('almunecar','アルムニェーカル','spain');
city[887] = new CityObject('andorra','アンドラ','spain');
city[888] = new CityObject('ubeda','ウベタ','spain');
city[889] = new CityObject('estepona','エステポナ','spain');
city[890] = new CityObject('oviedo','オビエド','spain');
city[891] = new CityObject('olvera','オルベラ','spain');
city[892] = new CityObject('casares','カサレス','spain');
city[893] = new CityObject('caceres','カセレス','spain');
city[894] = new CityObject('cadiz','カディス','spain');
city[895] = new CityObject('carmona','カルモナ','spain');
city[896] = new CityObject('campo_de_criptana','カンポ・デ・クリプターナ','spain');
city[897] = new CityObject('guadalupe','グアダルーペ','spain');
city[898] = new CityObject('cuenca_es','クエンカ','spain');
city[899] = new CityObject('grazalema','グラサレマ','spain');
city[900] = new CityObject('granada','グラナダ','spain');
city[901] = new CityObject('gernika','ゲルニカ','spain');
city[902] = new CityObject('cordoba','コルドバ','spain');
city[903] = new CityObject('consuegra','コンスエグラ','spain');
city[904] = new CityObject('zahara_de_la_sierra','サアラ・デ・ラ・シエラ','spain');
city[905] = new CityObject('zafra','サフラ','spain');
city[906] = new CityObject('zaragoza','サラゴサ','spain');
city[907] = new CityObject('salamanca','サラマンカ','spain');
city[908] = new CityObject('san_sebastian','サンセバスチャン','spain');
city[909] = new CityObject('santander','サンタンデル','spain');
city[910] = new CityObject('santiago_de_compostela','サンチアゴ・デ・コンポステーラ','spain');
city[911] = new CityObject('santillana_del_mar','サンティリャーナ・デル・マル','spain');
city[912] = new CityObject('sanlucar_de_barrameda','サンルーカル・デ・バラメダ','spain');
city[913] = new CityObject('sitges','シッチェス','spain');
city[914] = new CityObject('girona','ジローナ','spain');
city[915] = new CityObject('segovia','セゴビア','spain');
city[916] = new CityObject('setenil','セテニル','spain');
city[917] = new CityObject('sevilla','セビリア','spain');
city[918] = new CityObject('tarragona','タラゴナ','spain');
city[919] = new CityObject('tarifa','タリファ','spain');
city[920] = new CityObject('chinchon','チンチョン','spain');
city[921] = new CityObject('teruel','テルエル','spain');
city[922] = new CityObject('trujillo_es','トルヒーリョ','spain');
city[923] = new CityObject('toledo','トレド','spain');
city[924] = new CityObject('torremolinos','トレモリノス','spain');
city[925] = new CityObject('nerja','ネルハ','spain');
city[926] = new CityObject('baeza','バエサ','spain');
city[927] = new CityObject('valladolid','バリャドリッド','spain');
city[928] = new CityObject('barcelona','バルセロナ','spain');
city[929] = new CityObject('palma_de','パルマ・デ・マヨルカ','spain');
city[930] = new CityObject('valencia','バレンシア','spain');
city[931] = new CityObject('pamplona','パンプローナ','spain');
city[932] = new CityObject('vigo','ビーゴ','spain');
city[933] = new CityObject('vitoria','ビトリア','spain');
city[934] = new CityObject('bilbao','ビルバオ','spain');
city[935] = new CityObject('figueres','フィゲラス','spain');
city[936] = new CityObject('fuengirola','フエンヒローラ','spain');
city[937] = new CityObject('frigiliana','フリヒリアナ','spain');
city[938] = new CityObject('burgos','ブルゴス','spain');
city[939] = new CityObject('peniscola','ペニスコラ','spain');
city[940] = new CityObject('vejer_de_la_frontera','ベヘール・デ・ラ・フロンテーラ','spain');
city[941] = new CityObject('jerez_de_la_frontera','ヘレス・デ・ラ・フロンテーラ','spain');
city[942] = new CityObject('madrid','マドリード','spain');
city[943] = new CityObject('malaga','マラガ','spain');
city[944] = new CityObject('marbella','マルベージャ','spain');
city[945] = new CityObject('mijas','ミハス','spain');
city[946] = new CityObject('merida_es','メリダ','spain');
city[947] = new CityObject('montserrat','モンセラット','spain');
city[948] = new CityObject('la_coruna','ラコルーニャ','spain');
city[949] = new CityObject('leon_es','レオン','spain');
city[950] = new CityObject('ronda','ロンダ','spain');
city[951] = new CityObject('the_other_cities_of_spain','その他の都市','spain');
city[952] = new CityObject('ibiza','イビサ島','spain');
city[953] = new CityObject('costa_de_sol','コスタ・デル・ソル','spain');
city[954] = new CityObject('mallorca','マヨルカ島','spain');
city[955] = new CityObject('the_other_spots_of_spain','その他の観光地','spain');
city[956] = new CityObject('asturias','アストゥリアス地方','spain');
city[957] = new CityObject('aragon','アラゴン地方','spain');
city[958] = new CityObject('andalucia','アンダルシア地方','spain');
city[959] = new CityObject('extremadura','エストレマドゥーラ地方','spain');
city[960] = new CityObject('castilla_la_mancha','カスティーリャ・ラマンチャ地方','spain');
city[961] = new CityObject('castilla_y_leon','カスティーリャ・レオン地方','spain');
city[962] = new CityObject('catalunya','カタルーニャ地方','spain');
city[963] = new CityObject('canary_islands','カナリア諸島','spain');
city[964] = new CityObject('galicia','ガリーシア地方','spain');
city[965] = new CityObject('cantabria','カンタブリア地方','spain');
city[966] = new CityObject('navarra','ナバーラ地方','spain');
city[967] = new CityObject('basque_country','バスク地方','spain');
city[968] = new CityObject('balearic_islands','バレアレス地方','spain');
city[969] = new CityObject('comunidad_valenciana','バレンシアーナ地方','spain');
city[970] = new CityObject('comunidad_de_madrid','マドリード地方','spain');
city[971] = new CityObject('murcia','ムルシア地方','spain');
city[972] = new CityObject('la_rioja','ラリオハ地方','spain');
city[973] = new CityObject('axsum','アクスム','ethiopia');
city[974] = new CityObject('addis_ababa','アジスアベバ','ethiopia');
city[975] = new CityObject('arba_minch','アルバ・ミンチ','ethiopia');
city[976] = new CityObject('awasa','アワサ','ethiopia');
city[977] = new CityObject('gondar','ゴンダル','ethiopia');
city[978] = new CityObject('jinka','ジンカ','ethiopia');
city[979] = new CityObject('bahar_dar','バハルダール','ethiopia');
city[980] = new CityObject('hararu','ハラル','ethiopia');
city[981] = new CityObject('moyalle','モヤレ','ethiopia');
city[982] = new CityObject('lalibela','ラリベラ','ethiopia');
city[983] = new CityObject('the_other_cities_of_ethiopia','その他の都市','ethiopia');
city[984] = new CityObject('abijatta-shalla_national_park','アビヤタ・シャラ国立公園','ethiopia');
city[985] = new CityObject('awash_national_park','アワシ国立公園','ethiopia');
city[986] = new CityObject('semien_mountains_national_park','セミエン山国立公園','ethiopia');
city[987] = new CityObject('nechisar_national_park','ナッチサハル国立公園','ethiopia');
city[988] = new CityObject('the_other_spots_of_ethiopia','その他の観光地','ethiopia');
city[989] = new CityObject('saariselka','サーリセルカ','finland');
city[990] = new CityObject('savonlinna','サヴォンリンナ','finland');
city[991] = new CityObject('tampere','タンペレ','finland');
city[992] = new CityObject('turku','トゥルク','finland');
city[993] = new CityObject('naantali','ナーンタリ','finland');
city[994] = new CityObject('hameenlinna','ハメーンリンナ','finland');
city[995] = new CityObject('helsinki','ヘルシンキ','finland');
city[996] = new CityObject('jyvaskyla','ユーバスキューラ','finland');
city[997] = new CityObject('joensuu','ヨエンスー','finland');
city[998] = new CityObject('levi','レヴィ','finland');
city[999] = new CityObject('rovaniemi','ロバニエミ','finland');
city[1000] = new CityObject('the_other_cities_of_finland','その他の都市','finland');
city[1001] = new CityObject('aland_island','オーランド島','finland');
city[1002] = new CityObject('lapland','ラップランド','finland');
city[1003] = new CityObject('the_other_spots_of_finland','その他の観光地','finland');
city[1004] = new CityObject('sigatoka','シンガトカ','fiji_islands');
city[1005] = new CityObject('suva','スバ','fiji_islands');
city[1006] = new CityObject('nausori','ナウソリ','fiji_islands');
city[1007] = new CityObject('nandi','ナンディ','fiji_islands');
city[1008] = new CityObject('lautoka','ラウトカ','fiji_islands');
city[1009] = new CityObject('the_other_cities_of_fiji_islands','その他の都市','fiji_islands');
city[1010] = new CityObject('ovalau_island','オパラウ島','fiji_islands');
city[1011] = new CityObject('kadavu_island','カンダブ島','fiji_islands');
city[1012] = new CityObject('taveuni_island','タベウニ島','fiji_islands');
city[1013] = new CityObject('vanua_levu_island','バヌアレブ島','fiji_islands');
city[1014] = new CityObject('vitilevu_island','ビチレブ島','fiji_islands');
city[1015] = new CityObject('yasawa_group','ヤサワ諸島','fiji_islands');
city[1016] = new CityObject('the_other_spots_of_fiji_islands','その他の観光地','fiji_islands');
city[1017] = new CityObject('chuuk','チュック（トラック）','micronesia');
city[1018] = new CityObject('ponape','ポナペ（ポンペイ）','micronesia');
city[1019] = new CityObject('the_other_cities_of_micronesia','その他の都市','micronesia');
city[1020] = new CityObject('kosrae_island','コスラエ島','micronesia');
city[1021] = new CityObject('yap_island','ヤップ島','micronesia');
city[1022] = new CityObject('the_other_spots_of_micronesia','その他の観光地','micronesia');
city[1023] = new CityObject('avignon','アヴィニヨン','france');
city[1024] = new CityObject('annecy','アヌシー','france');
city[1025] = new CityObject('amiens','アミアン','france');
city[1026] = new CityObject('albi','アルビ','france');
city[1027] = new CityObject('arles','アルル','france');
city[1028] = new CityObject('angers','アンジェ','france');
city[1029] = new CityObject('amboise','アンボワーズ','france');
city[1030] = new CityObject('vannes','ヴァンヌ','france');
city[1031] = new CityObject('vezelay','ヴェズレー','france');
city[1032] = new CityObject('aix_en_provence','エクスアンプロヴァンス','france');
city[1033] = new CityObject('auvers-sur-oise','オーヴェル・シュル・オワーズ','france');
city[1034] = new CityObject('auxerre','オーセール','france');
city[1035] = new CityObject('autun','オータン','france');
city[1036] = new CityObject('orange','オランジュ','france');
city[1037] = new CityObject('orleans','オルレアン','france');
city[1038] = new CityObject('onflour','オンフルール','france');
city[1039] = new CityObject('caen','カーン','france');
city[1040] = new CityObject('cahors','カオール','france');
city[1041] = new CityObject('carcassonne','カルカソンヌ','france');
city[1042] = new CityObject('carnac','カルナック','france');
city[1043] = new CityObject('cannes','カンヌ','france');
city[1044] = new CityObject('quimper','カンペール','france');
city[1045] = new CityObject('quiberon','キブロン','france');
city[1046] = new CityObject('grenoble','グルノーブル','france');
city[1047] = new CityObject('clermont_ferrand','クレルモンフェラン','france');
city[1048] = new CityObject('colmar','コルマール','france');
city[1049] = new CityObject('compiegne','コンピエーニュ','france');
city[1050] = new CityObject('sarlat','サルラ','france');
city[1051] = new CityObject('st-germain-en-laye','サン・ジェルマン・アン・レー','france');
city[1052] = new CityObject('st.malo','サンマロ','france');
city[1053] = new CityObject('cherbourg','シェルブール','france');
city[1054] = new CityObject('chamonix','シャモニー','france');
city[1055] = new CityObject('chartres','シャルトル','france');
city[1056] = new CityObject('chantilly','シャンティイ','france');
city[1057] = new CityObject('strasbourg','ストラスブール','france');
city[1058] = new CityObject('saumur','ソーミュール','france');
city[1059] = new CityObject('tours','ツール','france');
city[1060] = new CityObject('dijon','ディジョン','france');
city[1061] = new CityObject('toulouse','トゥールーズ','france');
city[1062] = new CityObject('deauville','ドービル','france');
city[1063] = new CityObject('nancy','ナンシー','france');
city[1064] = new CityObject('nantes','ナント','france');
city[1065] = new CityObject('nice','ニース','france');
city[1066] = new CityObject('nimes','ニーム','france');
city[1067] = new CityObject('bayonne','バイヨンヌ','france');
city[1068] = new CityObject('paris','パリ','france');
city[1069] = new CityObject('figeac','フィジャック','france');
city[1070] = new CityObject('fontainebleau','フォンテーヌブロー','france');
city[1071] = new CityObject('besancon','ブザンソン','france');
city[1072] = new CityObject('bourges','ブルージュ','france');
city[1073] = new CityObject('blois','ブロワ','france');
city[1074] = new CityObject('versailles','ベルサイユ','france');
city[1075] = new CityObject('perpignan','ペルピニャン','france');
city[1076] = new CityObject('pau','ポー','france');
city[1077] = new CityObject('beaune','ボーヌ','france');
city[1078] = new CityObject('bordeaux','ボルドー','france');
city[1079] = new CityObject('poitiers','ポワティエ','france');
city[1080] = new CityObject('marseille','マルセイユ','france');
city[1081] = new CityObject('mulhouse','ミュールーズ','france');
city[1082] = new CityObject('montpellier','モンペリエ','france');
city[1083] = new CityObject('la_rochell','ラ・ロシェル','france');
city[1084] = new CityObject('reims','ランス','france');
city[1085] = new CityObject('lille','リール','france');
city[1086] = new CityObject('limoges','リモージュ','france');
city[1087] = new CityObject('lyon','リヨン','france');
city[1088] = new CityObject('le_puy-en-velay','ル・ピュイ・アン・ヴレイ','france');
city[1089] = new CityObject('rouen','ルーアン','france');
city[1090] = new CityObject('lourdes','ルルド','france');
city[1091] = new CityObject('rennes','レンヌ','france');
city[1092] = new CityObject('the_other_cities_of_france','その他の都市','france');
city[1093] = new CityObject('disneyland_resort_paris','ディズニーランド・リゾート・パリ','france');
city[1094] = new CityObject('perigord','ペリゴール地方','france');
city[1095] = new CityObject('mont_st_michael','モンサンミッシェル','france');
city[1096] = new CityObject('chateaux_de_la_loire','ロワールの古城','france');
city[1097] = new CityObject('the_other_spots_of_france','その他の観光地','france');
city[1098] = new CityObject('aquitaine','アキテーヌ地方','france');
city[1099] = new CityObject('alsace','アルザス地方','france');
city[1100] = new CityObject('ile_de_france','イルドフランス地方','france');
city[1101] = new CityObject('auvergne','オーヴェルニュ地方','france');
city[1102] = new CityObject('haute_normandie','オートノルマンディ地方','france');
city[1103] = new CityObject('corsica','コルス地方','france');
city[1104] = new CityObject('champagne_ardenne','シャンパーニュアルデンヌ地方','france');
city[1105] = new CityObject('nord_pas_de_calais','ノールパドカレー地方','france');
city[1106] = new CityObject('basse_normandie','バスノルマンディ地方','france');
city[1107] = new CityObject('picardie','ピカルディ地方','france');
city[1108] = new CityObject('franche_comte','フランシュコンテ地方','france');
city[1109] = new CityObject('bourgogne','ブルゴーニュ地方','france');
city[1110] = new CityObject('bretagne','ブルターニュ地方','france');
city[1111] = new CityObject('provence_alpes_cote_dazur','プロヴァンスアルプコートダジュール地方','france');
city[1112] = new CityObject('pays_de_la_loire','ペイドラロアール地方','france');
city[1113] = new CityObject('poitou_charentes','ポアトゥーシャラント地方','france');
city[1114] = new CityObject('midi_pyrenees','ミディピレネー地方','france');
city[1115] = new CityObject('languedoc_roussillon','ラングドックルーション地方','france');
city[1116] = new CityObject('limousin','リムーザン地方','france');
city[1117] = new CityObject('rhone_alpes','ローヌアルプ地方','france');
city[1118] = new CityObject('lorraine','ロレーヌ地方','france');
city[1119] = new CityObject('centre_val_de_loire','ロワール地方','france');
city[1120] = new CityObject('libreville','リーブルビル','gabon');
city[1121] = new CityObject('the_other_cities_of_gabon','その他の都市','gabon');
city[1122] = new CityObject('aberdeen','アバディーン','united_kingdom');
city[1123] = new CityObject('ely','イーリー','united_kingdom');
city[1124] = new CityObject('ipswich','イプスウィッチ','united_kingdom');
city[1125] = new CityObject('inverness','インバネス','united_kingdom');
city[1126] = new CityObject('windsor','ウィンザー','united_kingdom');
city[1127] = new CityObject('windermere','ウィンダミア','united_kingdom');
city[1128] = new CityObject('winchester','ウィンチェスター','united_kingdom');
city[1129] = new CityObject('wimbledon','ウィンブルドン','united_kingdom');
city[1130] = new CityObject('exeter','エクセター','united_kingdom');
city[1131] = new CityObject('edinburgh','エジンバラ','united_kingdom');
city[1132] = new CityObject('oxford','オックスフォード','united_kingdom');
city[1133] = new CityObject('cardiff','カーディフ','united_kingdom');
city[1134] = new CityObject('carlisle','カーライル','united_kingdom');
city[1135] = new CityObject('caernarfon','カナーヴォン','united_kingdom');
city[1136] = new CityObject('canterbury','カンタベリー','united_kingdom');
city[1137] = new CityObject('glasgow','グラスゴー','united_kingdom');
city[1138] = new CityObject('greenwich','グリニッジ','united_kingdom');
city[1139] = new CityObject('gloucester','グロスター','united_kingdom');
city[1140] = new CityObject('cambridge','ケンブリッジ','united_kingdom');
city[1141] = new CityObject('coventry','コベントリー','united_kingdom');
city[1142] = new CityObject('colchester','コルチェスター','united_kingdom');
city[1143] = new CityObject('conwy','コンウィ','united_kingdom');
city[1144] = new CityObject('southernpton','サザンプトン','united_kingdom');
city[1145] = new CityObject('shrewsbury','シュルーズベリー','united_kingdom');
city[1146] = new CityObject('swansea','スウォンジー','united_kingdom');
city[1147] = new CityObject('stirling','スターリング','united_kingdom');
city[1148] = new CityObject('stoke-on-trent','ストーク・オン・トレント','united_kingdom');
city[1149] = new CityObject('stratford-upon-avon','ストラトフォードアポンエイボン','united_kingdom');
city[1150] = new CityObject('st_andrews','セント・アンドリューズ','united_kingdom');
city[1151] = new CityObject('salisbury','ソールズベーリ','united_kingdom');
city[1152] = new CityObject('durham','ダラム','united_kingdom');
city[1153] = new CityObject('chester','チェスター','united_kingdom');
city[1154] = new CityObject('cheltenham','チェルトナム','united_kingdom');
city[1155] = new CityObject('derry','デリー','united_kingdom');
city[1156] = new CityObject('dover','ドーヴァー','united_kingdom');
city[1157] = new CityObject('docklands','ドックランズ','united_kingdom');
city[1158] = new CityObject('newcastle_gb','ニューキャッスル','united_kingdom');
city[1159] = new CityObject('norwich','ノーリッジ','united_kingdom');
city[1160] = new CityObject('nottingham','ノッティンガム','united_kingdom');
city[1161] = new CityObject('bath','バース','united_kingdom');
city[1162] = new CityObject('parth','パース','united_kingdom');
city[1163] = new CityObject('birminghm','バーミンガム','united_kingdom');
city[1164] = new CityObject('harrogate','ハロゲイト','united_kingdom');
city[1165] = new CityObject('haworth','ハワース','united_kingdom');
city[1166] = new CityObject('bangor','バンガー','united_kingdom');
city[1167] = new CityObject('pitlochry','ピトロッホリー','united_kingdom');
city[1168] = new CityObject('pooh_country','プー・カントリー','united_kingdom');
city[1169] = new CityObject('fort_willam','フォート・ウィリアム','united_kingdom');
city[1170] = new CityObject('brighton','ブライトン','united_kingdom');
city[1171] = new CityObject('bristol','ブリストル','united_kingdom');
city[1172] = new CityObject('plymouth','プリマス','united_kingdom');
city[1173] = new CityObject('hastings','ヘイスティングズ','united_kingdom');
city[1174] = new CityObject('belfast','ベルファスト','united_kingdom');
city[1175] = new CityObject('penzance','ペンザンス','united_kingdom');
city[1176] = new CityObject('portsmouth','ポーツマス','united_kingdom');
city[1177] = new CityObject('bournemouth','ボーンマス','united_kingdom');
city[1178] = new CityObject('manchester','マンチェスター','united_kingdom');
city[1179] = new CityObject('york','ヨーク','united_kingdom');
city[1180] = new CityObject('rye','ライ','united_kingdom');
city[1181] = new CityObject('leeds','リーズ','united_kingdom');
city[1182] = new CityObject('richmond_gb','リッチモンド','united_kingdom');
city[1183] = new CityObject('liverpool','リバプール','united_kingdom');
city[1184] = new CityObject('london','ロンドン','united_kingdom');
city[1185] = new CityObject('the_other_cities_of_united_kingdom','その他の都市','united_kingdom');
city[1186] = new CityObject('kew_gardens','キュー・ガーデンズ','united_kingdom');
city[1187] = new CityObject('lake_district','湖水地方','united_kingdom');
city[1188] = new CityObject('cotswolds','コッツウォルズ地方','united_kingdom');
city[1189] = new CityObject('gibraltar','ジブラルタル','united_kingdom');
city[1190] = new CityObject('isle_of_skye','スカイ島','united_kingdom');
city[1191] = new CityObject('snowdonia_national_park','スノードニア国立公園','united_kingdom');
city[1192] = new CityObject('seven_sisters','セブン・シスターズ','united_kingdom');
city[1193] = new CityObject('north_york_moors_national_park','ノース・ヨーク・ムーアズ国立公園','united_kingdom');
city[1194] = new CityObject('hampton_court_palace','ハンプトン・コート・パレス','united_kingdom');
city[1195] = new CityObject('isle_of_man','マン島','united_kingdom');
city[1196] = new CityObject('yorkshire_dales_national_park','ヨークシャー・デイルズ国立公園','united_kingdom');
city[1197] = new CityObject('leeds_castle','リーズ城','united_kingdom');
city[1198] = new CityObject('isle_of_wight','ワイト島','united_kingdom');
city[1199] = new CityObject('the_other_spots_of_united_kingdom','その他の観光地','united_kingdom');
city[1200] = new CityObject('england','イングランド','united_kingdom');
city[1201] = new CityObject('wales','ウェールズ','united_kingdom');
city[1202] = new CityObject('scotland','スコットランド','united_kingdom');
city[1203] = new CityObject('northern_ireland','北アイルランド','united_kingdom');
city[1204] = new CityObject('st_georges','セントジョージズ','grenada');
city[1205] = new CityObject('the_other_cities_of_grenada','その他の都市','grenada');
city[1206] = new CityObject('tbilisi','トビリシ','georgia');
city[1207] = new CityObject('gori','ゴリ','georgia');
city[1208] = new CityObject('telavi','テラヴィ','georgia');
city[1209] = new CityObject('the_other_cities_of_georgia','その他の都市','georgia');
city[1210] = new CityObject('georgian_military_highway','グルジア軍用道路','georgia');
city[1211] = new CityObject('the_other_spots_of_georgia','その他の観光地','georgia');
city[1212] = new CityObject('accra','アクラ','ghana');
city[1213] = new CityObject('the_other_cities_of_ghana','その他の都市','ghana');
city[1214] = new CityObject('banjul','バンジュール','gambia');
city[1215] = new CityObject('the_other_cities_of_gambia','その他の都市','gambia');
city[1216] = new CityObject('conakry','コナクリ','guinea');
city[1217] = new CityObject('the_other_cities_of_guinea','その他の都市','guinea');
city[1218] = new CityObject('malabo','マラボ','equatorial_guinea');
city[1219] = new CityObject('the_other_cities_of_equatorial_guinea','その他の都市','equatorial_guinea');
city[1220] = new CityObject('athens','アテネ','greece');
city[1221] = new CityObject('alexandroupoli','アレクサンドゥルポリ','greece');
city[1222] = new CityObject('ioannina','イオアニナ','greece');
city[1223] = new CityObject('heraklion','イラクリオン','greece');
city[1224] = new CityObject('volos','ヴォロス','greece');
city[1225] = new CityObject('epidavros','エピダヴロス','greece');
city[1226] = new CityObject('elefsina','エレフシナ','greece');
city[1227] = new CityObject('olympia','オリンピア','greece');
city[1228] = new CityObject('kavala','カヴァラ','greece');
city[1229] = new CityObject('kastoria','カストリア','greece');
city[1230] = new CityObject('kalambaka','カランバカ','greece');
city[1231] = new CityObject('korinthos','コリントス','greece');
city[1232] = new CityObject('sparti','スパルタ','greece');
city[1233] = new CityObject('dafni','ダフニ','greece');
city[1234] = new CityObject('thessaloniki','テッサロニキ','greece');
city[1235] = new CityObject('delfi','デルフィ','greece');
city[1236] = new CityObject('nafplion','ナフプリオン','greece');
city[1237] = new CityObject('patra','パトラ','greece');
city[1238] = new CityObject('hania','ハニア','greece');
city[1239] = new CityObject('pireas','ピレウス','greece');
city[1240] = new CityObject('marathonas','マラトン','greece');
city[1241] = new CityObject('mikines','ミケーネ','greece');
city[1242] = new CityObject('mistra','ミストラ','greece');
city[1243] = new CityObject('monemvassia','モネンヴァシア','greece');
city[1244] = new CityObject('lamia','ラミア','greece');
city[1245] = new CityObject('rethimno','レシムノ','greece');
city[1246] = new CityObject('the_other_cities_of_greece','その他の都市','greece');
city[1247] = new CityObject('acropolis','アクロポリス遺跡','greece');
city[1248] = new CityObject('athos','アトス山','greece');
city[1249] = new CityObject('apollo_coast','アポロ・コースト','greece');
city[1250] = new CityObject('alonissos_island','アロニソス島','greece');
city[1251] = new CityObject('hydra_island','イドラ島','greece');
city[1252] = new CityObject('aegina_island','エギナ島','greece');
city[1253] = new CityObject('spetses_island','エペツェス島','greece');
city[1254] = new CityObject('crete_island','クレタ島','greece');
city[1255] = new CityObject('kerkira_island','ケルキラ島','greece');
city[1256] = new CityObject('national_archaeological_museum','国立考古学博物館','greece');
city[1257] = new CityObject('kos_island','コス島','greece');
city[1258] = new CityObject('samos_island','サモス島','greece');
city[1259] = new CityObject('santrini','サントリーニ島','greece');
city[1260] = new CityObject('skiathos_island','スキアトス島','greece');
city[1261] = new CityObject('skyros_island','スキロス島','greece');
city[1262] = new CityObject('skopelos_island','スコペロス島','greece');
city[1263] = new CityObject('cape_sounion','スニオン岬','greece');
city[1264] = new CityObject('tinos_island','ティノス島','greece');
city[1265] = new CityObject('delos_island','ディロス島','greece');
city[1266] = new CityObject('naxos_island','ナクソス島','greece');
city[1267] = new CityObject('patmos_island','パトモス島','greece');
city[1268] = new CityObject('halkidiki','ハルキディキ半島','greece');
city[1269] = new CityObject('paros_island','パロス島','greece');
city[1270] = new CityObject('hios_island','ヒオス島','greece');
city[1271] = new CityObject('peloponnese','ペロポネソス半島','greece');
city[1272] = new CityObject('poros_island','ポロス島','greece');
city[1273] = new CityObject('mykonos','ミコノス島','greece');
city[1274] = new CityObject('milos_island','ミロス島','greece');
city[1275] = new CityObject('meteora','メテオラ','greece');
city[1276] = new CityObject('limnos_island','リムノス島','greece');
city[1277] = new CityObject('lesvos_island','レスヴォス島','greece');
city[1278] = new CityObject('rodos','ロードス島','greece');
city[1279] = new CityObject('the_other_spots_of_greece','その他の観光地','greece');
city[1280] = new CityObject('antigua','アンティグア','guatemala');
city[1281] = new CityObject('huehuetenango','ウエウエテナンゴ','guatemala');
city[1282] = new CityObject('esquipulas','エスキプーラス','guatemala');
city[1283] = new CityObject('quirigua','キリグア','guatemala');
city[1284] = new CityObject('guatemalacity','グアテマラシティ','guatemala');
city[1285] = new CityObject('quetzaltenango','ケツァルテナンゴ','guatemala');
city[1286] = new CityObject('coban','コバン','guatemala');
city[1287] = new CityObject('chiquimula','チキムラ','guatemala');
city[1288] = new CityObject('chichicastenango','チチカステナンゴ','guatemala');
city[1289] = new CityObject('todos_santos_cuchumatan','トドス・サントス・クチュマタン','guatemala');
city[1290] = new CityObject('panajachel','パナハッチェル','guatemala');
city[1291] = new CityObject('puerto_barrios','プエルト・バリオス','guatemala');
city[1292] = new CityObject('flores','フローレス','guatemala');
city[1293] = new CityObject('livingston','リビングストン','guatemala');
city[1294] = new CityObject('the_other_cities_of_guatemala','その他の都市','guatemala');
city[1295] = new CityObject('ruinas_de_tikal','ティカル遺跡','guatemala');
city[1296] = new CityObject('the_other_spots_of_guatemala','その他の観光地','guatemala');
city[1297] = new CityObject('guam','グアム','guam');
city[1298] = new CityObject('the_other_cities_of_guam','その他の都市','guam');
city[1299] = new CityObject('two_lovers_point','恋人岬','guam');
city[1300] = new CityObject('cocos_island','ココス島','guam');
city[1301] = new CityObject('the_other_spots_of_guam','その他の観光地','guam');
city[1302] = new CityObject('bissau','ビサウ','guinea-bissau');
city[1303] = new CityObject('the_other_cities_of_guinea_bissau','その他の都市','guinea-bissau');
city[1304] = new CityObject('georgetown','ジョージタウン','guyana');
city[1305] = new CityObject('the_other_cities_of_guyana','その他の都市','guyana');
city[1306] = new CityObject('hongkong','香港','hong_kong');
city[1307] = new CityObject('the_other_cities_of_hong_kong','その他の都市','hong_kong');
city[1308] = new CityObject('copan','コパン','honduras');
city[1309] = new CityObject('san_pedro_sula','サン・ペドロ・スーラ','honduras');
city[1310] = new CityObject('tegucigalpa','テグシガルパ','honduras');
city[1311] = new CityObject('trujillo_hn','トルヒーリョ','honduras');
city[1312] = new CityObject('la_ceiba','ラ・セイバ','honduras');
city[1313] = new CityObject('the_other_cities_of_honduras','その他の都市','honduras');
city[1314] = new CityObject('utila_island','ウティラ島','honduras');
city[1315] = new CityObject('guanaja_island','グアナハ島','honduras');
city[1316] = new CityObject('roatan_island','ロアタン島','honduras');
city[1317] = new CityObject('the_other_spots_of_honduras','その他の観光地','honduras');
city[1318] = new CityObject('varazdin','ヴァラジュディン','croatia');
city[1319] = new CityObject('osijek','オシイェク','croatia');
city[1320] = new CityObject('korcula','コルチュラ','croatia');
city[1321] = new CityObject('zagreb','ザグレブ','croatia');
city[1322] = new CityObject('zadar','ザダール','croatia');
city[1323] = new CityObject('sibenik','シベニク','croatia');
city[1324] = new CityObject('split','スプリット','croatia');
city[1325] = new CityObject('doubrovnik','ドブロブニーク','croatia');
city[1326] = new CityObject('trogir','トロギール','croatia');
city[1327] = new CityObject('hvar','フヴァル','croatia');
city[1328] = new CityObject('pula','プーラ','croatia');
city[1329] = new CityObject('porec','ポレチュ','croatia');
city[1330] = new CityObject('rijeka','リエカ','croatia');
city[1331] = new CityObject('the_other_cities_of_croatia','その他の都市','croatia');
city[1332] = new CityObject('port_au_prince','ポルトープランス','haiti');
city[1333] = new CityObject('the_other_cities_of_haiti','その他の都市','haiti');
city[1334] = new CityObject('eger','エゲル','hungary');
city[1335] = new CityObject('kecskemet','ケチケメート','hungary');
city[1336] = new CityObject('budapest','ブダペスト','hungary');
city[1337] = new CityObject('holloko','ホッロークー','hungary');
city[1338] = new CityObject('the_other_cities_of_hungary','その他の都市','hungary');
city[1339] = new CityObject('dunakanyar','ドナウベンド','hungary');
city[1340] = new CityObject('balaton','バラトン湖','hungary');
city[1341] = new CityObject('puszta','プスタ','hungary');
city[1342] = new CityObject('the_other_spots_of_hungary','その他の観光地','hungary');
city[1343] = new CityObject('kaanapali','カアナパリ','hawaii');
city[1344] = new CityObject('kailua_kona','カイルア・コナ','hawaii');
city[1345] = new CityObject('kaunakakai','カウナカカイ','hawaii');
city[1346] = new CityObject('japalua','カパルア','hawaii');
city[1347] = new CityObject('kahului','カフルイ','hawaii');
city[1348] = new CityObject('kalapana','カラパナ','hawaii');
city[1349] = new CityObject('kihei','キヘイ','hawaii');
city[1350] = new CityObject('kula','クラ','hawaii');
city[1351] = new CityObject('keauhou','ケアウホウ','hawaii');
city[1352] = new CityObject('south_kohara_coast','サウス・コハラ・コースト','hawaii');
city[1353] = new CityObject('naalehu','ナアレフ','hawaii');
city[1354] = new CityObject('north_kohara','ノース・コハラ','hawaii');
city[1355] = new CityObject('paia','パイア','hawaii');
city[1356] = new CityObject('hana','ハナ','hawaii');
city[1357] = new CityObject('hanalei','ハナレイ','hawaii');
city[1358] = new CityObject('hiro','ヒロ','hawaii');
city[1359] = new CityObject('puuwai','プウワイ','hawaii');
city[1360] = new CityObject('princeville','プリンスヴィル','hawaii');
city[1361] = new CityObject('poipu','ポイプ','hawaii');
city[1362] = new CityObject('honollu','ホノルル','hawaii');
city[1363] = new CityObject('maalaea','マアラエア','hawaii');
city[1364] = new CityObject('maunaloa','マウナロア','hawaii');
city[1365] = new CityObject('makawao','マカワオ','hawaii');
city[1366] = new CityObject('makena','マケナ','hawaii');
city[1367] = new CityObject('lanai_city','ラナイ・シティ','hawaii');
city[1368] = new CityObject('lahaina','ラハイナ','hawaii');
city[1369] = new CityObject('lihue','リフエ','hawaii');
city[1370] = new CityObject('waimea_in_kauai_island','ワイメア（カウアイ島）','hawaii');
city[1371] = new CityObject('waimea_in_hawaii_island','ワイメア（ハワイ島）','hawaii');
city[1372] = new CityObject('wailuku','ワイルク','hawaii');
city[1373] = new CityObject('wailea','ワイレア','hawaii');
city[1374] = new CityObject('the_other_cities_of_hawaii','その他の都市','hawaii');
city[1375] = new CityObject('garden_of_the_gods','神々の庭園','hawaii');
city[1376] = new CityObject('kalaupapa_lookout','カラウパパ展望台','hawaii');
city[1377] = new CityObject('diamond_head','ダイヤモンド・ヘッド','hawaii');
city[1378] = new CityObject('na_pali_coast','ナ・パリ・コースト','hawaii');
city[1379] = new CityObject('pearl_harbor','パール・ハーバー','hawaii');
city[1380] = new CityObject('hanauma_bay','ハナウマ・ベイ','hawaii');
city[1381] = new CityObject('halawa_valley','ハラワ渓谷','hawaii');
city[1382] = new CityObject('haleakala_national_park','ハレアカラ国立公園','hawaii');
city[1383] = new CityObject('hawaii_volcanoes_national_park','ハワイ火山国立公園','hawaii');
city[1384] = new CityObject('polynesian_culture_center','ポリネシア・カルチャー・センター','hawaii');
city[1385] = new CityObject('mauna_kea_mountain','マウナ・ケア山','hawaii');
city[1386] = new CityObject('molokini_island','モロキニ島','hawaii');
city[1387] = new CityObject('waipio_valley','ワイピオ渓谷','hawaii');
city[1388] = new CityObject('waimea_canyon_state_park','ワイメア渓谷州立公園','hawaii');
city[1389] = new CityObject('wailua_river_state_park','ワイルア川州立公園','hawaii');
city[1390] = new CityObject('the_other_spots_of_hawaii','その他の観光地','hawaii');
city[1391] = new CityObject('oahu_island','オアフ島','hawaii');
city[1392] = new CityObject('kauai_island','カウアイ島','hawaii');
city[1393] = new CityObject('kahoolawe_island','カホラヴェ島','hawaii');
city[1394] = new CityObject('niihau_island','ニイハウ島','hawaii');
city[1395] = new CityObject('hawaii_island','ハワイ島','hawaii');
city[1396] = new CityObject('maui_island','マウイ島','hawaii');
city[1397] = new CityObject('molokai_island','モロカイ島','hawaii');
city[1398] = new CityObject('lanai_island','ラナイ島','hawaii');
city[1399] = new CityObject('jakart','ジャカルタ','indonesia');
city[1400] = new CityObject('yogyakart','ジョグジャカルタ','indonesia');
city[1401] = new CityObject('surabaya','スラバヤ','indonesia');
city[1402] = new CityObject('solo','ソロ','indonesia');
city[1403] = new CityObject('the_other_cities_of_indonesia','その他の都市','indonesia');
city[1404] = new CityObject('kalimantan_island','カリマンタン','indonesia');
city[1405] = new CityObject('java_island','ジャワ島','indonesia');
city[1406] = new CityObject('sumatera_island','スマトラ島','indonesia');
city[1407] = new CityObject('sulawesi_island','スラウェシ島','indonesia');
city[1408] = new CityObject('nusa_tenggara_islands','ヌサ・トゥンガラ諸島','indonesia');
city[1409] = new CityObject('batam','バタム島','indonesia');
city[1410] = new CityObject('papua','パプア','indonesia');
city[1411] = new CityObject('bali','バリ島','indonesia');
city[1412] = new CityObject('bintan','ビンタン島','indonesia');
city[1413] = new CityObject('prambanan','プランバナン','indonesia');
city[1414] = new CityObject('borobudur','ボロブドゥール','indonesia');
city[1415] = new CityObject('lombok','ロンボク島','indonesia');
city[1416] = new CityObject('the_other_spots_of_indonesia','その他の観光地','indonesia');
city[1417] = new CityObject('athlone','アスローン','ireland');
city[1418] = new CityObject('wicklow','ウィックロウ','ireland');
city[1419] = new CityObject('westport','ウエストポート','ireland');
city[1420] = new CityObject('wexford','ウェックスフォード','ireland');
city[1421] = new CityObject('waterford','ウォーターフォード','ireland');
city[1422] = new CityObject('ennis','エニス','ireland');
city[1423] = new CityObject('cashel','キャッシェル','ireland');
city[1424] = new CityObject('killarney','キラニー','ireland');
city[1425] = new CityObject('kilkenny','キルケニー','ireland');
city[1426] = new CityObject('kinsale','キンセール','ireland');
city[1427] = new CityObject('clifden','クリフトゥン','ireland');
city[1428] = new CityObject('cobh','コーヴ','ireland');
city[1429] = new CityObject('cork','コーク','ireland');
city[1430] = new CityObject('galway','ゴールウェイ','ireland');
city[1431] = new CityObject('cong','コング','ireland');
city[1432] = new CityObject('shannon','シャノン','ireland');
city[1433] = new CityObject('sligo','スライゴ','ireland');
city[1434] = new CityObject('dublin','ダブリン','ireland');
city[1435] = new CityObject('dingle','ディングル','ireland');
city[1436] = new CityObject('doolin','ドゥーラン','ireland');
city[1437] = new CityObject('donegal','ドネゴール','ireland');
city[1438] = new CityObject('trim','トリム','ireland');
city[1439] = new CityObject('drogheda','ドロヘダ','ireland');
city[1440] = new CityObject('blarney','ブラーニー','ireland');
city[1441] = new CityObject('boyle','ボイル','ireland');
city[1442] = new CityObject('midleton','ミドルトン','ireland');
city[1443] = new CityObject('youghal','ヨール','ireland');
city[1444] = new CityObject('limerick','リマリック','ireland');
city[1445] = new CityObject('letterkenny','レタケニー','ireland');
city[1446] = new CityObject('the_other_cities_of_ireland','その他の都市','ireland');
city[1447] = new CityObject('aran_islands','アラン諸島','ireland');
city[1448] = new CityObject('west_cork','ウエストコーク','ireland');
city[1449] = new CityObject('killarney_national_park','キラーニー国立公園','ireland');
city[1450] = new CityObject('glenveagh_national_park','グレンヴェー国立公園','ireland');
city[1451] = new CityObject('glendalough','グレンダーロッホ','ireland');
city[1452] = new CityObject('connemara_national_park','コネマラ国立公園','ireland');
city[1453] = new CityObject('newgrange','ニューグレンジ','ireland');
city[1454] = new CityObject('the_burren','バレン高原','ireland');
city[1455] = new CityObject('blackwater','ブラックウォーター川流域','ireland');
city[1456] = new CityObject('the_other_spots_of_ireland','その他の観光地','ireland');
city[1457] = new CityObject('jerusalem','エルサレム','israel');
city[1458] = new CityObject('tel_aviv','テルアビブ','israel');
city[1459] = new CityObject('the_other_cities_of_israel','その他の都市','israel');
city[1460] = new CityObject('lake_tiberias','ガリラヤ湖','israel');
city[1461] = new CityObject('dead_sea','死海周辺','israel');
city[1462] = new CityObject('the_other_spots_of_israel','その他の観光地','israel');
city[1463] = new CityObject('ahmedabad','アーメダバード','india');
city[1464] = new CityObject('aurangabad','アウランガバード','india');
city[1465] = new CityObject('agra','アグラ','india');
city[1466] = new CityObject('ajanta','アジャンター','india');
city[1467] = new CityObject('amritsar','アムリトサル','india');
city[1468] = new CityObject('vadodara','ヴィドーダラー','india');
city[1469] = new CityObject('ooty','ウーティ','india');
city[1470] = new CityObject('udaipur','ウダイプール','india');
city[1471] = new CityObject('ellora','エローラ','india');
city[1472] = new CityObject('kanchipuram','カーンチープラム','india');
city[1473] = new CityObject('khajuraho','カジュラホ','india');
city[1474] = new CityObject('kanniakumari','カニヤークマリ','india');
city[1475] = new CityObject('calcuta','カルカッタ','india');
city[1476] = new CityObject('goa','ゴア','india');
city[1477] = new CityObject('cochin_in','コーチン','india');
city[1478] = new CityObject('sanchi','サーンチー','india');
city[1479] = new CityObject('jaisalmer','ジャイサルメール','india');
city[1480] = new CityObject('jaipur','ジャイプール','india');
city[1481] = new CityObject('jodhpur','ジョドプール','india');
city[1482] = new CityObject('dharamsala','ダラムシャーラー','india');
city[1483] = new CityObject('thanjavur','タンジャーヴール','india');
city[1484] = new CityObject('tiruchirappalli','ティルチラパッリ','india');
city[1485] = new CityObject('delhi','デリー','india');
city[1486] = new CityObject('trivandrum','トリバンドラム','india');
city[1487] = new CityObject('hyderabad','ハイデラバード','india');
city[1488] = new CityObject('pattaadakal','パッタダカル','india');
city[1489] = new CityObject('hardwar','ハルドワール','india');
city[1490] = new CityObject('bangalore','バンガロール','india');
city[1491] = new CityObject('hampi','ハンピ','india');
city[1492] = new CityObject('pushkar','プシュカル','india');
city[1493] = new CityObject('buddagaya','ブッダガヤ','india');
city[1494] = new CityObject('pune','プネー','india');
city[1495] = new CityObject('bhubaneswar','ブバネシュワル','india');
city[1496] = new CityObject('puri','プリー','india');
city[1497] = new CityObject('varanasi','ベナレス','india');
city[1498] = new CityObject('bombay','ボンベイ','india');
city[1499] = new CityObject('mysore','マイソール','india');
city[1500] = new CityObject('mathura','マトゥラー','india');
city[1501] = new CityObject('madurai','マドライ','india');
city[1502] = new CityObject('chennai','チェンナイ','india');
city[1503] = new CityObject('mahabalipuram','マハーバリプラム','india');
city[1504] = new CityObject('mandu','マンドゥ','india');
city[1505] = new CityObject('rishikes','リシケシ','india');
city[1506] = new CityObject('lothal','ロータル','india');
city[1507] = new CityObject('the_other_cities_of_india','その他の都市','india');
city[1508] = new CityObject('covaram','コヴァラムビーチ','india');
city[1509] = new CityObject('the_other_spots_of_india','その他の観光地','india');
city[1510] = new CityObject('baghdad','バグダード','iraq');
city[1511] = new CityObject('the_other_cities_of_iraq','その他の都市','iraq');
city[1512] = new CityObject('ahvaz','アフヴァーズ','iran');
city[1513] = new CityObject('ardabil','アルダビール','iran');
city[1514] = new CityObject('isfahan','イスファハン','iran');
city[1515] = new CityObject('orumiye','オルーミーイェ','iran');
city[1516] = new CityObject('kashan','カシャーン','iran');
city[1517] = new CityObject('ghazvin','カズヴィーン','iran');
city[1518] = new CityObject('kish','キーシュ','iran');
city[1519] = new CityObject('kermanshah','ケルマーンシャー','iran');
city[1520] = new CityObject('kerman','ケルマン','iran');
city[1521] = new CityObject('ghom','ゴム','iran');
city[1522] = new CityObject('gorgan','ゴルガーン','iran');
city[1523] = new CityObject('sari','サーリー','iran');
city[1524] = new CityObject('shiraz','シラーズ','iran');
city[1525] = new CityObject('tabriz','タブリーズ','iran');
city[1526] = new CityObject('tehran','テヘラン','iran');
city[1527] = new CityObject('hamadan','ハマダーン','iran');
city[1528] = new CityObject('bam','パム','iran');
city[1529] = new CityObject('bandar_addas','バンダル・アッバース','iran');
city[1530] = new CityObject('bandar_e_lange','バンダレ・アンザリー','iran');
city[1531] = new CityObject('bushehr','ブーシェフル','iran');
city[1532] = new CityObject('persepolis','ペルセポリス','iran');
city[1533] = new CityObject('maku','マークー','iran');
city[1534] = new CityObject('mashhad','マシュハド','iran');
city[1535] = new CityObject('yazd','ヤズド','iran');
city[1536] = new CityObject('ramsar','ラームサル','iran');
city[1537] = new CityObject('rasht','ラシュト','iran');
city[1538] = new CityObject('the_other_cities_of_iran','その他の都市','iran');
city[1539] = new CityObject('akureyri','アークレイリ','iceland');
city[1540] = new CityObject('myvatn','ミーバトン','iceland');
city[1541] = new CityObject('reykjavik','レイキャビク','iceland');
city[1542] = new CityObject('the_other_cities_of_iceland','その他の都市','iceland');
city[1543] = new CityObject('golden_circle','ゴールデンサークル','iceland');
city[1544] = new CityObject('blue_lagoon','ブルーラグーン','iceland');
city[1545] = new CityObject('the_other_spots_of_iceland','その他の観光地','iceland');
city[1546] = new CityObject('aosta','アオスタ','italy');
city[1547] = new CityObject('agrigento','アグリジェント','italy');
city[1548] = new CityObject('assisi','アッシジ','italy');
city[1549] = new CityObject('amalfi','アマルフィ','italy');
city[1550] = new CityObject('alba','アルバ','italy');
city[1551] = new CityObject('alberobello','アルベロベッロ','italy');
city[1552] = new CityObject('arezzo','アレッツオ','italy');
city[1553] = new CityObject('ancona','アンコーナ','italy');
city[1554] = new CityObject('vicenza','ヴィチェンツァ','italy');
city[1555] = new CityObject('enna','エンナ','italy');
city[1556] = new CityObject('catania','カターニア','italy');
city[1557] = new CityObject('cagliari','カリアリ','italy');
city[1558] = new CityObject('como','コモ','italy');
city[1559] = new CityObject('cortina_d_ampezzo','コルチナダンペッツオ','italy');
city[1560] = new CityObject('sangimignano','サンジミニャーノ','italy');
city[1561] = new CityObject('sanremo','サンレモ','italy');
city[1562] = new CityObject('siena','シエナ','italy');
city[1563] = new CityObject('genova','ジェノバ','italy');
city[1564] = new CityObject('siracusa','シラクサ','italy');
city[1565] = new CityObject('sirmione','シルミオーネ','italy');
city[1566] = new CityObject('stresa','ストレーザ','italy');
city[1567] = new CityObject('sorrento','ソレント','italy');
city[1568] = new CityObject('taormina','タオルミナ','italy');
city[1569] = new CityObject('desenzano_del_garda','デセンツァーノ・デル・ガルーダ','italy');
city[1570] = new CityObject('trieste','トリエステ','italy');
city[1571] = new CityObject('trino','トリノ','italy');
city[1572] = new CityObject('napori','ナポリ','italy');
city[1573] = new CityObject('bari','バーリ','italy');
city[1574] = new CityObject('parma','パルマ','italy');
city[1575] = new CityObject('palermo','パレルモ','italy');
city[1576] = new CityObject('pisa','ピサ','italy');
city[1577] = new CityObject('firenze','フィレンツェ','italy');
city[1578] = new CityObject('venezia','ベネチア','italy');
city[1579] = new CityObject('perugia','ペルージア','italy');
city[1580] = new CityObject('bergamo','ベルガモ','italy');
city[1581] = new CityObject('verona','ベローナ','italy');
city[1582] = new CityObject('positano','ポジターノ','italy');
city[1583] = new CityObject('bolzano','ボルツァーノ','italy');
city[1584] = new CityObject('bologna','ボローニャ','italy');
city[1585] = new CityObject('pompei','ポンペイ','italy');
city[1586] = new CityObject('matera','マテーラ','italy');
city[1587] = new CityObject('milano','ミラノ','italy');
city[1588] = new CityObject('messina','メッシーナ','italy');
city[1589] = new CityObject('montecatini','モンティカティーニ','italy');
city[1590] = new CityObject('la_spezia','ラ・スペツィア','italy');
city[1591] = new CityObject('ravenna','ラベンナ','italy');
city[1592] = new CityObject('riviera','リヴィエラ','italy');
city[1593] = new CityObject('rimini','リミニ','italy');
city[1594] = new CityObject('lucca','ルッカ','italy');
city[1595] = new CityObject('reggio_calabria','レジョジカラブリア','italy');
city[1596] = new CityObject('roma','ローマ','italy');
city[1597] = new CityObject('the_other_cities_of_italy','その他の都市','italy');
city[1598] = new CityObject('capri','カプリ島','italy');
city[1599] = new CityObject('sicilia_island','シチリア島','italy');
city[1600] = new CityObject('maggiore','マジョーレ湖','italy');
city[1601] = new CityObject('the_other_spots_of_italy','その他の観光地','italy');
city[1602] = new CityObject('abruzzo','アブルッツォ州','italy');
city[1603] = new CityObject('valle_d_aosta','ヴァッレダオスタ州','italy');
city[1604] = new CityObject('veneto','ヴェネト州','italy');
city[1605] = new CityObject('umbria','ウンブリア州','italy');
city[1606] = new CityObject('emilia_romagna','エミリア・ロマーニャ州','italy');
city[1607] = new CityObject('calabria','カラブリア州','italy');
city[1608] = new CityObject('campania','カンパニア州','italy');
city[1609] = new CityObject('sardegna','サルデーニャ州','italy');
city[1610] = new CityObject('sicilia','シチリア州','italy');
city[1611] = new CityObject('tuscany','トスカーナ州','italy');
city[1612] = new CityObject('trentinoalto_adige','トレンティーノ・アルト アディジェ州','italy');
city[1613] = new CityObject('basilicata','バジリカータ州','italy');
city[1614] = new CityObject('piedmont','ピエモンテ州','italy');
city[1615] = new CityObject('puglia','プーリア州','italy');
city[1616] = new CityObject('friuli_venezia_giulia','フリウリ・ヴェネツィア ジュリア州','italy');
city[1617] = new CityObject('marche','マルケ州','italy');
city[1618] = new CityObject('molise','モリーゼ州','italy');
city[1619] = new CityObject('lazio','ラツィオ州','italy');
city[1620] = new CityObject('liguria','リグーリア州','italy');
city[1621] = new CityObject('lombardy','ロンバルディア州','italy');
city[1622] = new CityObject('ocho_rios','オーチョリオス','jamaica');
city[1623] = new CityObject('kingston','キングストン','jamaica');
city[1624] = new CityObject('negril','ネグリル','jamaica');
city[1625] = new CityObject('port_antonio','ポート・アントニオ','jamaica');
city[1626] = new CityObject('montego_bay','モンテゴベイ','jamaica');
city[1627] = new CityObject('the_other_cities_of_jamaica','その他の都市','jamaica');
city[1628] = new CityObject('aqaba','アカバ','jordan');
city[1629] = new CityObject('ajlun','アジュルン','jordan');
city[1630] = new CityObject('azraq','アズラック','jordan');
city[1631] = new CityObject('amman','アンマン','jordan');
city[1632] = new CityObject('irbid','イルビッド','jordan');
city[1633] = new CityObject('umm_qais','ウム・カイス','jordan');
city[1634] = new CityObject('karak','カラク','jordan');
city[1635] = new CityObject('salt','サルト','jordan');
city[1636] = new CityObject('jerash','ジェラシュ','jordan');
city[1637] = new CityObject('hamamat_main','ハママート・マイーン','jordan');
city[1638] = new CityObject('petra','ペトラ','jordan');
city[1639] = new CityObject('maan','マアーン','jordan');
city[1640] = new CityObject('madaba','マダバ','jordan');
city[1641] = new CityObject('wadi_rum','ワディ・ラム','jordan');
city[1642] = new CityObject('the_other_cities_of_jordan','その他の都市','jordan');
city[1643] = new CityObject('aberdare','アバーディア','kenya');
city[1644] = new CityObject('amboseri','アンボセリ','kenya');
city[1645] = new CityObject('kisumu','キスム','kenya');
city[1646] = new CityObject('kitale','キタレ','kenya');
city[1647] = new CityObject('naivasha','ナイバシャ','kenya');
city[1648] = new CityObject('nairobi','ナイロビ','kenya');
city[1649] = new CityObject('namanga','ナマンガ','kenya');
city[1650] = new CityObject('malindi','マリンディ','kenya');
city[1651] = new CityObject('mombasa','モンバサ','kenya');
city[1652] = new CityObject('lamu','ラム','kenya');
city[1653] = new CityObject('watamu','ワタム','kenya');
city[1654] = new CityObject('the_other_cities_of_kenya','その他の都市','kenya');
city[1655] = new CityObject('mtkenya','ケニア山国立公園','kenya');
city[1656] = new CityObject('samburu_national_reserve','サンブル国立保護区','kenya');
city[1657] = new CityObject('tsavo_national_park','ツァボ国立公園','kenya');
city[1658] = new CityObject('lake_nakuru','ナクル湖国立公園','kenya');
city[1659] = new CityObject('masaimara','マサイマラ国立保護区','kenya');
city[1660] = new CityObject('the_other_spots_of_kenya','その他の観光地','kenya');
city[1661] = new CityObject('oshu','オシュ','kyrgyz');
city[1662] = new CityObject('bishkek','ビシュケク','kyrgyz');
city[1663] = new CityObject('the_other_cities_of_kyrgyz','その他の都市','kyrgyz');
city[1664] = new CityObject('isikukuru','イシククル湖','kyrgyz');
city[1665] = new CityObject('the_other_spots_of_kyrgyz','その他の観光地','kyrgyz');
city[1666] = new CityObject('kompongsom','シアヌークビル','cambodia');
city[1667] = new CityObject('siem_reap','シェムリアプ','cambodia');
city[1668] = new CityObject('phnom_penh','プノンペン','cambodia');
city[1669] = new CityObject('the_other_cities_of_cambodia','その他の都市','cambodia');
city[1670] = new CityObject('angkor_thom','アンコールトム','cambodia');
city[1671] = new CityObject('angkor_wat','アンコールワット','cambodia');
city[1672] = new CityObject('the_other_spots_of_cambodia','その他の観光地','cambodia');
city[1673] = new CityObject('tarawa','タラワ','kiribati');
city[1674] = new CityObject('the_other_cities_of_kiribati','その他の都市','kiribati');
city[1675] = new CityObject('christmas_island','クリスマス島','kiribati');
city[1676] = new CityObject('the_other_spots_of_kiribati','その他の観光地','kiribati');
city[1677] = new CityObject('moroni','モロニ','comoros');
city[1678] = new CityObject('the_other_cities_of_comoros','その他の都市','comoros');
city[1679] = new CityObject('basseterre','バセテール','st_christopher_and_nevis');
city[1680] = new CityObject('the_other_cities_of_st_christopher_and_nevis','その他の都市','st_christopher_and_nevis');
city[1681] = new CityObject('pyongyang','ピョンヤン','north_korea');
city[1682] = new CityObject('the_other_cities_of_north_korea','その他の都市','north_korea');
city[1683] = new CityObject('panmunjom','板門店','north_korea');
city[1684] = new CityObject('the_other_spots_of_north_korea','その他の観光地','north_korea');
city[1685] = new CityObject('andon','アンドン','korea');
city[1686] = new CityObject('icheon','イチョン','korea');
city[1687] = new CityObject('incheon','インチョン','korea');
city[1688] = new CityObject('ulsan','ウルサン','korea');
city[1689] = new CityObject('gangnung','カンヌン','korea');
city[1690] = new CityObject('kyongju','キョンジュ','korea');
city[1691] = new CityObject('gwangju','クァンジュ','korea');
city[1692] = new CityObject('gunsan','クンサン','korea');
city[1693] = new CityObject('gongju','コンジュ','korea');
city[1694] = new CityObject('samcheok','サムチョク','korea');
city[1695] = new CityObject('suwon','スウォン','korea');
city[1696] = new CityObject('seoul','ソウル','korea');
city[1697] = new CityObject('sokcho','ソクチョ','korea');
city[1698] = new CityObject('chuncheon','チュンチョン','korea');
city[1699] = new CityObject('cheonan','チョナン','korea');
city[1700] = new CityObject('jeonju','チョンジュ','korea');
city[1701] = new CityObject('jinju','チンジュ','korea');
city[1702] = new CityObject('jindo','チンド','korea');
city[1703] = new CityObject('taegu','テグ','korea');
city[1704] = new CityObject('taejon','テジョン','korea');
city[1705] = new CityObject('donghae','トンヘ','korea');
city[1706] = new CityObject('tongyeong','トンヨン','korea');
city[1707] = new CityObject('namwon','ナムウォン','korea');
city[1708] = new CityObject('pusan','プサン','korea');
city[1709] = new CityObject('buyeo','プヨ','korea');
city[1710] = new CityObject('miryang','ミリャン','korea');
city[1711] = new CityObject('mokpo','モッポ','korea');
city[1712] = new CityObject('yeosu','ヨス','korea');
city[1713] = new CityObject('the_other_cities_of_korea','その他の都市','korea');
city[1714] = new CityObject('onyang_oncheon','温陽温泉','korea');
city[1715] = new CityObject('ganghwado','カンファド','korea');
city[1716] = new CityObject('suanbo_oncheon','水安堡温泉','korea');
city[1717] = new CityObject('jeju','チェジュ','korea');
city[1718] = new CityObject('the_other_spots_of_korea','その他の観光地','korea');
city[1719] = new CityObject('Kuwait','クウェート','kuwait');
city[1720] = new CityObject('The_Other_Cities_of_kuwait','その他の都市','kuwait');
city[1721] = new CityObject('astana','アスタナ','kazakhstan');
city[1722] = new CityObject('almaata','アルマトゥ','kazakhstan');
city[1723] = new CityObject('simukent','シムケント','kazakhstan');
city[1724] = new CityObject('the_other_cities_of_kazakhstan','その他の都市','kazakhstan');
city[1725] = new CityObject('champasak','チャムパーサック','laos');
city[1726] = new CityObject('pakse','パクセ','laos');
city[1727] = new CityObject('vientiane','ビエンチャン','laos');
city[1728] = new CityObject('phone_savan','ポーンサワン','laos');
city[1729] = new CityObject('luangprabang','ルアンプラバン','laos');
city[1730] = new CityObject('the_other_cities_of_laos','その他の都市','laos');
city[1731] = new CityObject('plain_of_jars','ジャール平原','laos');
city[1732] = new CityObject('the_other_spots_of_laos','その他の観光地','laos');
city[1733] = new CityObject('angar','アンジャル','lebanon');
city[1734] = new CityObject('saida','サイダ','lebanon');
city[1735] = new CityObject('zahle','ザハレ','lebanon');
city[1736] = new CityObject('sour','スール','lebanon');
city[1737] = new CityObject('tripoli_lb','トリポリ','lebanon');
city[1738] = new CityObject('baalbek','バールベック','lebanon');
city[1739] = new CityObject('byblos','ビブロス','lebanon');
city[1740] = new CityObject('bayrut','ベイルート','lebanon');
city[1741] = new CityObject('the_other_cities_of_lebanon','その他の都市','lebanon');
city[1742] = new CityObject('castries','カストリーズ','st_lucia');
city[1743] = new CityObject('the_other_cities_of_st_lucia','その他の都市','st_lucia');
city[1744] = new CityObject('vaduz','ファドゥーツ','liechtenstein');
city[1745] = new CityObject('the_other_cities_of_liechtenstein','その他の都市','liechtenstein');
city[1746] = new CityObject('anuradahapura','アヌラダプーラ','sri_lanka');
city[1747] = new CityObject('candy','キャンディ','sri_lanka');
city[1748] = new CityObject('galle','ゴール','sri_lanka');
city[1749] = new CityObject('colombo','コロンボ','sri_lanka');
city[1750] = new CityObject('sigiriya','シギリヤ','sri_lanka');
city[1751] = new CityObject('dambulla','ダンブラ','sri_lanka');
city[1752] = new CityObject('nuwaraeliya','ヌワラエリヤ','sri_lanka');
city[1753] = new CityObject('negombo','ネゴンボ','sri_lanka');
city[1754] = new CityObject('bentota','ベントータ','sri_lanka');
city[1755] = new CityObject('poronalwa','ポロンナルワ','sri_lanka');
city[1756] = new CityObject('the_other_cities_of_sri_lanka','その他の都市','sri_lanka');
city[1757] = new CityObject('mount_lavinia','マウント・ラヴィニヤ','sri_lanka');
city[1758] = new CityObject('the_other_spots_of_sri_lanka','その他の観光地','sri_lanka');
city[1759] = new CityObject('monrovia','モンロビア','liberia');
city[1760] = new CityObject('the_other_cities_of_liberia','その他の都市','liberia');
city[1761] = new CityObject('semonkong','セモンコン','lesotho');
city[1762] = new CityObject('malealea','マレアレア','lesotho');
city[1763] = new CityObject('the_other_cities_of_lesotho','その他の都市','lesotho');
city[1764] = new CityObject('kaunas','カウナス','lithuania');
city[1765] = new CityObject('klaipeda','クライペダ','lithuania');
city[1766] = new CityObject('nida','ニダ','lithuania');
city[1767] = new CityObject('vilnius','ビリニュス','lithuania');
city[1768] = new CityObject('the_other_cities_of_lithuania','その他の都市','lithuania');
city[1769] = new CityObject('aukstaitijos_nacionalinis_park','アウクシュタイティヤ国立公園','lithuania');
city[1770] = new CityObject('the_other_spots_of_lithuania','その他の観光地','lithuania');
city[1771] = new CityObject('vianden','ヴィアンデン','luxembourg');
city[1772] = new CityObject('clervaux','クレルボー','luxembourg');
city[1773] = new CityObject('luxembourg','ルクセンブルク','luxembourg');
city[1774] = new CityObject('the_other_cities_of_luxembourg','その他の都市','luxembourg');
city[1775] = new CityObject('ventspils','ヴェンツピルス','latvia');
city[1776] = new CityObject('kuldiga','クルディーガ','latvia');
city[1777] = new CityObject('sigulda','スィグルダ','latvia');
city[1778] = new CityObject('cesis','ツェースィス','latvia');
city[1779] = new CityObject('liepaja','リエパーヤ','latvia');
city[1780] = new CityObject('ligo','リガ','latvia');
city[1781] = new CityObject('the_other_cities_of_latvia','その他の都市','latvia');
city[1782] = new CityObject('gadamis','ガダメス','libya');
city[1783] = new CityObject('tripoli','トリポリ','libya');
city[1784] = new CityObject('banghazi','ベンガジ','libya');
city[1785] = new CityObject('the_other_cities_of_libya','その他の都市','libya');
city[1786] = new CityObject('agadir','アガディール','morocco');
city[1787] = new CityObject('asilah','アシラ','morocco');
city[1788] = new CityObject('azrou','アズルー','morocco');
city[1789] = new CityObject('el_jadida','アル・ジャディーダ','morocco');
city[1790] = new CityObject('al-hoceima','アル・ホセイマ','morocco');
city[1791] = new CityObject('ifrane','イフレン','morocco');
city[1792] = new CityObject('oujida','ウジダ','morocco');
city[1793] = new CityObject('essaouira','エッサウィラ','morocco');
city[1794] = new CityObject('erfoud','エルフード','morocco');
city[1795] = new CityObject('er_rachidia','エルラシディア','morocco');
city[1796] = new CityObject('casablanca','カサブランカ','morocco');
city[1797] = new CityObject('zagora','ザゴラ','morocco');
city[1798] = new CityObject('safi','サフィ','morocco');
city[1799] = new CityObject('sale','サレ','morocco');
city[1800] = new CityObject('chefchaouen','シャウエン','morocco');
city[1801] = new CityObject('ceuta','セウタ','morocco');
city[1802] = new CityObject('tafraoute','タフロウト','morocco');
city[1803] = new CityObject('taroudant','タルーダント','morocco');
city[1804] = new CityObject('tanger','タンジェ','morocco');
city[1805] = new CityObject('tiznit','ディズニット','morocco');
city[1806] = new CityObject('tetouan','ティトゥアン','morocco');
city[1807] = new CityObject('nador','ナドール','morocco');
city[1808] = new CityObject('fez','フェズ','morocco');
city[1809] = new CityObject('marra_cash','マラケシュ','morocco');
city[1810] = new CityObject('midelt','ミデルト','morocco');
city[1811] = new CityObject('moukay_idriss','ムーレイ・イドリス','morocco');
city[1812] = new CityObject('meknes','メクネス','morocco');
city[1813] = new CityObject('melilla','メリリャ','morocco');
city[1814] = new CityObject('rabat','ラバト','morocco');
city[1815] = new CityObject('ouarzazate','ワルザザート','morocco');
city[1816] = new CityObject('the_other_cities_of_morocco','その他の都市','morocco');
city[1817] = new CityObject('route_des_kasbahs','カスバ街道','morocco');
city[1818] = new CityObject('les_vallee_du_draa','ドラア谷','morocco');
city[1819] = new CityObject('the_other_spots_of_morocco','その他の観光地','morocco');
city[1820] = new CityObject('monte_carlo','モンテカルロ','monaco');
city[1821] = new CityObject('the_other_cities_of_monaco','その他の都市','monaco');
city[1822] = new CityObject('kishnev','キシニョウ','moldova');
city[1823] = new CityObject('the_other_cities_of_moldova','その他の都市','moldova');
city[1824] = new CityObject('antananarivo','アンタナナリボ','madagascar');
city[1825] = new CityObject('morondava','モロンダバ','madagascar');
city[1826] = new CityObject('the_other_cities_of_madagascar','その他の都市','madagascar');
city[1827] = new CityObject('perinet','ペリネ特別保護区','madagascar');
city[1828] = new CityObject('berenty','ベレンティ・プライベート保護区','madagascar');
city[1829] = new CityObject('the_other_spots_of_madagascar','その他の観光地','madagascar');
city[1830] = new CityObject('majuro','マジュロ','marshall_islands');
city[1831] = new CityObject('the_other_cities_of_marshall_islands','その他の都市','marshall_islands');
city[1832] = new CityObject('ohrid','オフリド','former_yugoslav_republic_of_macedonia');
city[1833] = new CityObject('skopje','スコピエ','former_yugoslav_republic_of_macedonia');
city[1834] = new CityObject('the_other_cities_of_macedonia','その他の都市','former_yugoslav_republic_of_macedonia');
city[1835] = new CityObject('gao','ガオ','mali');
city[1836] = new CityObject('segou','セグー','mali');
city[1837] = new CityObject('timbuktu','トンブクトゥ','mali');
city[1838] = new CityObject('bamako','バマコ','mali');
city[1839] = new CityObject('mopti','モプティ','mali');
city[1840] = new CityObject('the_other_cities_of_mali','その他の都市','mali');
city[1841] = new CityObject('ngapali','ガパリ','myanmar');
city[1842] = new CityObject('kalaw','カロー','myanmar');
city[1843] = new CityObject('kyaikhtiyo','チャイティヨ','myanmar');
city[1844] = new CityObject('bangan','パガン','myanmar');
city[1845] = new CityObject('mandalay','マンダレー','myanmar');
city[1846] = new CityObject('yangon','ヤンゴン','myanmar');
city[1847] = new CityObject('the_other_cities_of_myanmar','その他の都市','myanmar');
city[1848] = new CityObject('inle_lake','インレー湖','myanmar');
city[1849] = new CityObject('the_other_spots_of_myanmar','その他の観光地','myanmar');
city[1850] = new CityObject('ukan_batoru','ウランバートル','mongolia');
city[1851] = new CityObject('olgij','ウルギー','mongolia');
city[1852] = new CityObject('olaangom','オラーンゴム','mongolia');
city[1853] = new CityObject('karakorumu','カラコルム','mongolia');
city[1854] = new CityObject('zamin_ud','ザミーン・ウード','mongolia');
city[1855] = new CityObject('suhbaatar','スフバートル','mongolia');
city[1856] = new CityObject('zuunmod','ゾーンモド','mongolia');
city[1857] = new CityObject('dadal','ダダル','mongolia');
city[1858] = new CityObject('dalanzadgad','ダランザドガド','mongolia');
city[1859] = new CityObject('darhan','ダルハン','mongolia');
city[1860] = new CityObject('cojbalsan','チョイバルサン','mongolia');
city[1861] = new CityObject('cecerleg','ツェツェルレグ','mongolia');
city[1862] = new CityObject('teleruji','テレルジ','mongolia');
city[1863] = new CityObject('hovd','ホブド','mongolia');
city[1864] = new CityObject('niren_hoto','二連浩特','mongolia');
city[1865] = new CityObject('the_other_cities_of_mongolia','その他の都市','mongolia');
city[1866] = new CityObject('haruha_river','ハルハ川','mongolia');
city[1867] = new CityObject('hovsgol_lake','フブスグル湖','mongolia');
city[1868] = new CityObject('south_gobi','南ゴビ','mongolia');
city[1869] = new CityObject('the_other_spots_of_mongolia','その他の観光地','mongolia');
city[1870] = new CityObject('macau','マカオ','macau');
city[1871] = new CityObject('the_other_cities_of_macau','その他の都市','macau');
city[1872] = new CityObject('saipa','サイパン','saipan');
city[1873] = new CityObject('tinian','テニアン','saipan');
city[1874] = new CityObject('the_other_cities_of_saipan','その他の都市','saipan');
city[1875] = new CityObject('managaha_island','マニャガハ島','saipan');
city[1876] = new CityObject('rota_island','ロタ島','saipan');
city[1877] = new CityObject('the_other_spots_of_saipan','その他の観光地','saipan');
city[1878] = new CityObject('nouakchott','ヌアクショット','mauritania');
city[1879] = new CityObject('the_other_cities_of_mauritania','その他の都市','mauritania');
city[1880] = new CityObject('mdina','イムジーナ','malta');
city[1881] = new CityObject('tarxien','タルシーン','malta');
city[1882] = new CityObject('valetta','バレッタ','malta');
city[1883] = new CityObject('marsaxlokk','マルサシュロック','malta');
city[1884] = new CityObject('rabat_mt','ラバト','malta');
city[1885] = new CityObject('the_other_cities_of_malta','その他の都市','malta');
city[1886] = new CityObject('blue_grotta','青の洞窟','malta');
city[1887] = new CityObject('gozo','ゴゾ島','malta');
city[1888] = new CityObject('the_other_spots_of_malta','その他の観光地','malta');
city[1889] = new CityObject('port_louis','ポートルイス','mauritius');
city[1890] = new CityObject('the_other_cities_of_mauritius','その他の都市','mauritius');
city[1891] = new CityObject('male','マーレ','maldives');
city[1892] = new CityObject('the_other_cities_of_maldives','その他の都市','maldives');
city[1893] = new CityObject('addu_atoll','アッドゥ環礁','maldives');
city[1894] = new CityObject('ari_atoll','アリ環礁','maldives');
city[1895] = new CityObject('north_male_atoll','北マーレ環礁','maldives');
city[1896] = new CityObject('dhaalu_atoll','ダール環礁','maldives');
city[1897] = new CityObject('baa_atoll','バア環礁','maldives');
city[1898] = new CityObject('faafu_atoll','ファーフ環礁','maldives');
city[1899] = new CityObject('felidhe_atoll','フェリドゥ環礁','maldives');
city[1900] = new CityObject('south_male_atoll','南マーレ環礁','maldives');
city[1901] = new CityObject('meemu_atoll','ミーム環礁','maldives');
city[1902] = new CityObject('raa_atoll','ラア環礁','maldives');
city[1903] = new CityObject('laviyani_atoll','ラヴィヤニ環礁','maldives');
city[1904] = new CityObject('rasdhoo_atoll','ラスドゥ環礁','maldives');
city[1905] = new CityObject('lilongwe','リロングウェ','malawi');
city[1906] = new CityObject('blantyre','ブランタイヤ','malawi');
city[1907] = new CityObject('the_other_cities_of_malawi','その他の都市','malawi');
city[1908] = new CityObject('lake_malawi','マラウイ湖','malawi');
city[1909] = new CityObject('the_other_spots_of_malawi','その他の観光地','malawi');
city[1910] = new CityObject('acapulco','アカプルコ','mexico');
city[1911] = new CityObject('aguascalientes','アグアスカリエンテス','mexico');
city[1912] = new CityObject('ixtapa','イスタパ','mexico');
city[1913] = new CityObject('uruapan','ウルアパン','mexico');
city[1914] = new CityObject('oaxaca','オアハカ','mexico');
city[1915] = new CityObject('cancun','カンクン','mexico');
city[1916] = new CityObject('campeche','カンペチェ','mexico');
city[1917] = new CityObject('guadalajara','グアダラハラ','mexico');
city[1918] = new CityObject('guanajuato','グアナファト','mexico');
city[1919] = new CityObject('cuernavaca','クエルナバカ','mexico');
city[1920] = new CityObject('queretaro','ケレタロ','mexico');
city[1921] = new CityObject('cozumel','コスメル','mexico');
city[1922] = new CityObject('zacatecas','サカテカス','mexico');
city[1923] = new CityObject('san_miguel_de_allende','サン・ミゲル・デ・アジェンデ','mexico');
city[1924] = new CityObject('san_cristobal_de_las_casas','サンクリストバル・デ・ラスカサス','mexico');
city[1925] = new CityObject('zihuatanejo','シワタネホ','mexico');
city[1926] = new CityObject('taxco','タスコ','mexico');
city[1927] = new CityObject('chichen_itza','チェチェンイッツア','mexico');
city[1928] = new CityObject('chihuahua','チワワ','mexico');
city[1929] = new CityObject('tijuana','ティファナ','mexico');
city[1930] = new CityObject('tlacotalpan','トラコタルパン','mexico');
city[1931] = new CityObject('toluca','トルーカ','mexico');
city[1932] = new CityObject('patzcuaro','パツクアロ','mexico');
city[1933] = new CityObject('papantla','パパントラ','mexico');
city[1934] = new CityObject('villahermosa','ビジャエルモサ','mexico');
city[1935] = new CityObject('puebla','プエブラ','mexico');
city[1936] = new CityObject('puerto_escondido','プエルト・エスコンディード','mexico');
city[1937] = new CityObject('puerto_vallarta','プエルトバラータ','mexico');
city[1938] = new CityObject('playa_del_carmen','プラヤ・デル・カルメン','mexico');
city[1939] = new CityObject('veracruz','ベラクルス','mexico');
city[1940] = new CityObject('mazatolan','マサトラン','mexico');
city[1941] = new CityObject('mexico_city','メキシコシティ','mexico');
city[1942] = new CityObject('merida_mx','メリダ','mexico');
city[1943] = new CityObject('morelia','モレーリア','mexico');
city[1944] = new CityObject('monterrey','モンテレイ','mexico');
city[1945] = new CityObject('la_pas','ラパス','mexico');
city[1946] = new CityObject('the_other_cities_of_mexico','その他の都市','mexico');
city[1947] = new CityObject('isla_mujeres','イスラ・ムヘーレス','mexico');
city[1948] = new CityObject('uxmal','ウシュマル遺跡','mexico');
city[1949] = new CityObject('el_tajin','エルタヒン遺跡','mexico');
city[1950] = new CityObject('teotifuacan','テオティワカン遺跡','mexico');
city[1951] = new CityObject('tulum','トゥルム遺跡','mexico');
city[1952] = new CityObject('palenque','パレンケ遺跡','mexico');
city[1953] = new CityObject('bonampak_and_yaxchilan','ボナンパック＆ヤシュチラン遺跡','mexico');
city[1954] = new CityObject('mitla_and_yagul','ミトラ＆ヤグール遺跡','mexico');
city[1955] = new CityObject('monte_alban','モンテ・アルバン遺跡','mexico');
city[1956] = new CityObject('los_cabos','ロスカボス','mexico');
city[1957] = new CityObject('the_other_spots_of_mexico','その他の観光地','mexico');
city[1958] = new CityObject('alor_setar','アロースター','malaysia');
city[1959] = new CityObject('ipoh','イポー','malaysia');
city[1960] = new CityObject('kuala_terengganu','クアラトレンガヌー','malaysia');
city[1961] = new CityObject('kuala_lumpur','クアラルンプール','malaysia');
city[1962] = new CityObject('kuantan','クアンタン','malaysia');
city[1963] = new CityObject('kuching','クチン','malaysia');
city[1964] = new CityObject('kota_kinabalu','コタキナバル','malaysia');
city[1965] = new CityObject('kota_bharu','コタバル','malaysia');
city[1966] = new CityObject('sandakan','サンダカン','malaysia');
city[1967] = new CityObject('johor_bahr','ジョホールバル','malaysia');
city[1968] = new CityObject('taman_negawa','タマンネガラ','malaysia');
city[1969] = new CityObject('malacca','マラッカ','malaysia');
city[1970] = new CityObject('miri','ミリ','malaysia');
city[1971] = new CityObject('the_other_cities_of_malaysia','その他の都市','malaysia');
city[1972] = new CityObject('kaparai_island','カパライ島','malaysia');
city[1973] = new CityObject('kinabalu','キナバル公園','malaysia');
city[1974] = new CityObject('cameron_highlands','キャメロン・ハイランド','malaysia');
city[1975] = new CityObject('gunung_mulu_national_park','グヌン・ムル国立公園','malaysia');
city[1976] = new CityObject('sabah','サバ州','malaysia');
city[1977] = new CityObject('tioman','ティオマン島','malaysia');
city[1978] = new CityObject('pangkor_laut','パンコール・ラウ島','malaysia');
city[1979] = new CityObject('pangkor_island','パンコール島','malaysia');
city[1980] = new CityObject('penang','ペナン島','malaysia');
city[1981] = new CityObject('perhentian_island','ペルヘンティアン島','malaysia');
city[1982] = new CityObject('borneo_island','ボルネオ島','malaysia');
city[1983] = new CityObject('palau_mabul','マブール島','malaysia');
city[1984] = new CityObject('mantanani_island','マンタナニ島','malaysia');
city[1985] = new CityObject('layang_layang_island','ラヤンラヤン島','malaysia');
city[1986] = new CityObject('langkawi','ランカウイ島','malaysia');
city[1987] = new CityObject('lankayan_island','ランカヤン島','malaysia');
city[1988] = new CityObject('lang_tengah_island','ランテンガ島','malaysia');
city[1989] = new CityObject('redang','レダン島','malaysia');
city[1990] = new CityObject('the_other_spots_of_malaysia','その他の観光地','malaysia');
city[1991] = new CityObject('maputo','マプート','mozambique');
city[1992] = new CityObject('the_other_cities_of_mozambique','その他の都市','mozambique');
city[1993] = new CityObject('windhoek','ウィントフック','namibia');
city[1994] = new CityObject('etosha','エトーシャ','namibia');
city[1995] = new CityObject('swakopmund','スワコプムンド','namibia');
city[1996] = new CityObject('damaraland','ダマラランド','namibia');
city[1997] = new CityObject('the_other_cities_of_namibia','その他の都市','namibia');
city[1998] = new CityObject('namib_naukluft_national_park','ナミブ・ナウクルフト','namibia');
city[1999] = new CityObject('namib_desert','ナミブ砂漠','namibia');
city[2000] = new CityObject('the_other_spots_of_namibia','その他の観光地','namibia');
city[2001] = new CityObject('noumea','ヌメア','new_caledonia');
city[2002] = new CityObject('the_other_cities_of_new_caledonia','その他の都市','new_caledonia');
city[2003] = new CityObject('ilot_amedee','アメデ島','new_caledonia');
city[2004] = new CityObject('anse_vata','アンスバタ','new_caledonia');
city[2005] = new CityObject('ile_des_pins','イル・デ・パン','new_caledonia');
city[2006] = new CityObject('ile_ouvea','ウベア島','new_caledonia');
city[2007] = new CityObject('ile_grande_terre','グランドテール島','new_caledonia');
city[2008] = new CityObject('ile_mare','マレ島','new_caledonia');
city[2009] = new CityObject('ilot_maitre','メトル島','new_caledonia');
city[2010] = new CityObject('ile_lifou','リフー島','new_caledonia');
city[2011] = new CityObject('the_other_spots_of_new_caledonia','その他の観光地','new_caledonia');
city[2012] = new CityObject('niamey','ニアメ','niger');
city[2013] = new CityObject('the_other_cities_of_niger','その他の都市','niger');
city[2014] = new CityObject('abuja','アブジャ','nigeria');
city[2015] = new CityObject('lagos_ng','ラゴス','nigeria');
city[2016] = new CityObject('the_other_cities_of_nigeria','その他の都市','nigeria');
city[2017] = new CityObject('granada_ni','グラナダ','nicaragua');
city[2018] = new CityObject('managua','マナグア','nicaragua');
city[2019] = new CityObject('leon','レオン','nicaragua');
city[2020] = new CityObject('the_other_cities_of_nicaragua','その他の都市','nicaragua');
city[2021] = new CityObject('corn_island','コーン島','nicaragua');
city[2022] = new CityObject('the_other_spots_of_nicaragua','その他の観光地','nicaragua');
city[2023] = new CityObject('arnhem','アーネム','netherlands');
city[2024] = new CityObject('assen','アッセン','netherlands');
city[2025] = new CityObject('apeldoorn','アッペルドールン','netherlands');
city[2026] = new CityObject('amsterdam','アムステルダム','netherlands');
city[2027] = new CityObject('alkmaar','アルクマール','netherlands');
city[2028] = new CityObject('edam','エダム','netherlands');
city[2029] = new CityObject('enkhuizen','エンクハイゼン','netherlands');
city[2030] = new CityObject('keukenhof','キューケンホフ','netherlands');
city[2031] = new CityObject('groningen','グローニンゲン','netherlands');
city[2032] = new CityObject('gouda','ゴーダ','netherlands');
city[2033] = new CityObject('zaanse_schans','ザーンセ・スカンス','netherlands');
city[2034] = new CityObject('texel','テクセル','netherlands');
city[2035] = new CityObject('delft','デルフト','netherlands');
city[2036] = new CityObject('thorn','トールン','netherlands');
city[2037] = new CityObject('dordrecht','ドルドレヒト','netherlands');
city[2038] = new CityObject('naarden','ナールデン','netherlands');
city[2039] = new CityObject('haag','ハーグ','netherlands');
city[2040] = new CityObject('haarlem','ハーレム','netherlands');
city[2041] = new CityObject('giethoorn','ヒートホールン','netherlands');
city[2042] = new CityObject('hindeloopen','ヒンデローペン','netherlands');
city[2043] = new CityObject('volendam','フォーレンダム','netherlands');
city[2044] = new CityObject('breda','ブレダ','netherlands');
city[2045] = new CityObject('hoorn','ホールン','netherlands');
city[2046] = new CityObject('maastricht','マーストリヒト','netherlands');
city[2047] = new CityObject('muiden','マウデン','netherlands');
city[2048] = new CityObject('makkum','マッカム','netherlands');
city[2049] = new CityObject('marken','マルケン','netherlands');
city[2050] = new CityObject('middelburg_nl','ミデルブルグ','netherlands');
city[2051] = new CityObject('utrecht','ユトレヒト','netherlands');
city[2052] = new CityObject('leiden','ライデン','netherlands');
city[2053] = new CityObject('leeuwarden','レーワルデン','netherlands');
city[2054] = new CityObject('rotterdam','ロッテルダム','netherlands');
city[2055] = new CityObject('the_other_cities_of_netherlands','その他の都市','netherlands');
city[2056] = new CityObject('de_hoge_veluwe','デ・ホーヘ・フェルウェ国立公園','netherlands');
city[2057] = new CityObject('the_other_spots_of_netherlands','その他の観光地','netherlands');
city[2058] = new CityObject('alta','アルタ','norway');
city[2059] = new CityObject('alesund','オーレスン','norway');
city[2060] = new CityObject('oslo','オスロ','norway');
city[2061] = new CityObject('karasjok','カラショク','norway');
city[2062] = new CityObject('kristiansand','クリスチャンサン','norway');
city[2063] = new CityObject('stavanger','スタヴァンゲル','norway');
city[2064] = new CityObject('tromso','トロムソ','norway');
city[2065] = new CityObject('trondheim','トロンハイム','norway');
city[2066] = new CityObject('narvik','ナルヴィーク','norway');
city[2067] = new CityObject('hmmerfest','ハンメルフェスト','norway');
city[2068] = new CityObject('kirkenes','ヒルケネス','norway');
city[2069] = new CityObject('flam','フロム','norway');
city[2070] = new CityObject('bergen','ベルゲン','norway');
city[2071] = new CityObject('bodo','ボードー','norway');
city[2072] = new CityObject('voss','ボス','norway');
city[2073] = new CityObject('honningsvaag','ホニングスボーグ（ノールカップ）','norway');
city[2074] = new CityObject('the_other_cities_of_norway','その他の都市','norway');
city[2075] = new CityObject('geiranger','ガイランゲルフィヨルド','norway');
city[2076] = new CityObject('sognefjord','ソグネフィヨルド','norway');
city[2077] = new CityObject('hardangerfjord','ハルダンゲルフィヨルド','norway');
city[2078] = new CityObject('lysefjord','リーセフィヨルド','norway');
city[2079] = new CityObject('lofoten','ロフォーテン諸島','norway');
city[2080] = new CityObject('the_other_spots_of_norway','その他の観光地','norway');
city[2081] = new CityObject('kakani','カカニ','nepal');
city[2082] = new CityObject('katomans','カトマンズ','nepal');
city[2083] = new CityObject('kirtipur','キルティプル','nepal');
city[2084] = new CityObject('godavari','ゴダヴァリ','nepal');
city[2085] = new CityObject('gorkha','ゴルカ','nepal');
city[2086] = new CityObject('sankhu','サンクー','nepal');
city[2087] = new CityObject('dakshinkali','ダクシンカリ','nepal');
city[2088] = new CityObject('changu_narayan','チャング・ナラヤン','nepal');
city[2089] = new CityObject('thimi','ティミ','nepal');
city[2090] = new CityObject('devghat','デブガート','nepal');
city[2091] = new CityObject('nagarkot','ナガルコット','nepal');
city[2092] = new CityObject('bhaktapur','バクタプル','nepal');
city[2093] = new CityObject('patan','パタン','nepal');
city[2094] = new CityObject('panauti','バナウティ','nepal');
city[2095] = new CityObject('budhanilkantha','ブダニールカンタ','nepal');
city[2096] = new CityObject('pokara','ポカラ','nepal');
city[2097] = new CityObject('manakamna','マナカマナ','nepal');
city[2098] = new CityObject('lumbini','ルンビニ','nepal');
city[2099] = new CityObject('the_other_cities_of_nepal','その他の都市','nepal');
city[2100] = new CityObject('mt_everest','エベレスト山','nepal');
city[2101] = new CityObject('chitwan','チトワン国立公園','nepal');
city[2102] = new CityObject('himalaya','ヒマラヤ','nepal');
city[2103] = new CityObject('the_other_spots_of_nepal','その他の観光地','nepal');
city[2104] = new CityObject('yaren','ヤレン','nauru');
city[2105] = new CityObject('the_other_cities_of_nauru','その他の都市','nauru');
city[2106] = new CityObject('aoraki','アオラキ','new_zealand');
city[2107] = new CityObject('invercargill','インバーカーギル','new_zealand');
city[2108] = new CityObject('wellington','ウェリントン','new_zealand');
city[2109] = new CityObject('auckland','オークランド','new_zealand');
city[2110] = new CityObject('omaru','オマル','new_zealand');
city[2111] = new CityObject('kaikoura','カイコウラ','new_zealand');
city[2112] = new CityObject('gisborne','ギズボーン','new_zealand');
city[2113] = new CityObject('queenstown','クイーンズタウン','new_zealand');
city[2114] = new CityObject('christchurch','クライストチャーチ','new_zealand');
city[2115] = new CityObject('coromandel','コロマンデル・タウン','new_zealand');
city[2116] = new CityObject('taupo','タウポ','new_zealand');
city[2117] = new CityObject('tauranga','タウランガ','new_zealand');
city[2118] = new CityObject('dunedin','ダニーデン','new_zealand');
city[2119] = new CityObject('te_anau','テアナウ','new_zealand');
city[2120] = new CityObject('timaru','ティマル','new_zealand');
city[2121] = new CityObject('tekapo','テカポ','new_zealand');
city[2122] = new CityObject('new_plymouth','ニュープリマス','new_zealand');
city[2123] = new CityObject('nepier','ネイピア','new_zealand');
city[2124] = new CityObject('nelson','ネルソン','new_zealand');
city[2125] = new CityObject('palmerston_north','パーマーストンノース','new_zealand');
city[2126] = new CityObject('paihia','パイヒア','new_zealand');
city[2127] = new CityObject('hamilton','ハミルトン','new_zealand');
city[2128] = new CityObject('picton','ピクトン','new_zealand');
city[2129] = new CityObject('blenheim','ブレナム','new_zealand');
city[2130] = new CityObject('hokitika','ホキティカ','new_zealand');
city[2131] = new CityObject('mount_maunganui','マウント・マウンガヌイ','new_zealand');
city[2132] = new CityObject('methven','メスベン','new_zealand');
city[2133] = new CityObject('rotorua','ロトルア','new_zealand');
city[2134] = new CityObject('waitomo_caves','ワイトモ・ケーブ','new_zealand');
city[2135] = new CityObject('wanaka','ワナカ','new_zealand');
city[2136] = new CityObject('wanganui','ワンガヌイ','new_zealand');
city[2137] = new CityObject('the_other_cities_of_new_zealand','その他の都市','new_zealand');
city[2138] = new CityObject('arthurs_pass_national_park','アーサーズ・パス国立公園','new_zealand');
city[2139] = new CityObject('west_coast','ウエストコースト','new_zealand');
city[2140] = new CityObject('westland_national_park','ウエストランド国立公園','new_zealand');
city[2141] = new CityObject('abel_tasman_national_park','エイベル・タズマン国立公園','new_zealand');
city[2142] = new CityObject('coromandel_peninsula','コロマンデル半島','new_zealand');
city[2143] = new CityObject('stewart_island','スチュワート島','new_zealand');
city[2144] = new CityObject('tongariro_national_park','トンガリロ国立公園','new_zealand');
city[2145] = new CityObject('northland','ノースランド','new_zealand');
city[2146] = new CityObject('fiordland_national_park','フィヨルドランド国立公園','new_zealand');
city[2147] = new CityObject('mt_cook','マウントクック国立公園','new_zealand');
city[2148] = new CityObject('the_other_spots_of_new_zealand','その他の観光地','new_zealand');
city[2149] = new CityObject('salalah','サラーラ','oman');
city[2150] = new CityObject('sur','スール','oman');
city[2151] = new CityObject('sohar','ソハール','oman');
city[2152] = new CityObject('nizwa','ニズワ','oman');
city[2153] = new CityObject('khasab','ハッサブ','oman');
city[2154] = new CityObject('bahla','バハラァ','oman');
city[2155] = new CityObject('barka','バルカ','oman');
city[2156] = new CityObject('muscat','マスカット','oman');
city[2157] = new CityObject('the_other_cities_of_oman','その他の都市','oman');
city[2158] = new CityObject('el_valle','エル・バジェ','panama');
city[2159] = new CityObject('colon','コロン','panama');
city[2160] = new CityObject('david','ダビ','panama');
city[2161] = new CityObject('panama_city','パナマシティ','panama');
city[2162] = new CityObject('bocas_del_toro','ボカス・デル・トーロ','panama');
city[2163] = new CityObject('the_other_cities_of_panama','その他の都市','panama');
city[2164] = new CityObject('san_blas_islands','サン・ブラス諸島','panama');
city[2165] = new CityObject('the_other_spots_of_panama','その他の観光地','panama');
city[2166] = new CityObject('aguas_caliente','アグアスカリエンテス','peru');
city[2167] = new CityObject('arequipa','アレキパ','peru');
city[2168] = new CityObject('iquitos','イキトス','peru');
city[2169] = new CityObject('cajamarca','カハマルカ','peru');
city[2170] = new CityObject('cusco','クスコ','peru');
city[2171] = new CityObject('chiclayo','チクライヨ','peru');
city[2172] = new CityObject('trujillo','トルヒーヨ','peru');
city[2173] = new CityObject('nasca','ナスカ','peru');
city[2174] = new CityObject('palacas','パラカス','peru');
city[2175] = new CityObject('puno','プーノ','peru');
city[2176] = new CityObject('puerto_maldonado','プエルト・マルドナード','peru');
city[2177] = new CityObject('lima','リマ','peru');
city[2178] = new CityObject('huas','ワラス','peru');
city[2179] = new CityObject('the_other_cities_of_peru','その他の都市','peru');
city[2180] = new CityObject('lake_titicaca','チチカカ湖','peru');
city[2181] = new CityObject('machupicchu','マチュピチュ','peru');
city[2182] = new CityObject('the_other_spots_of_peru','その他の観光地','peru');
city[2183] = new CityObject('papeete','パペーテ','french_polynesia');
city[2184] = new CityObject('the_other_cities_of_french_polynesia','その他の都市','french_polynesia');
city[2185] = new CityObject('tahaa_island','タハア島','french_polynesia');
city[2186] = new CityObject('tahiti_island','タヒチ島','french_polynesia');
city[2187] = new CityObject('tikehau_island','ティケハウ島','french_polynesia');
city[2188] = new CityObject('huahine_island_polynesia','フアヒネ島','french_polynesia');
city[2189] = new CityObject('borabora_island','ボラボラ島','french_polynesia');
city[2190] = new CityObject('maupiti_island','マウピティ島','french_polynesia');
city[2191] = new CityObject('manihi_island','マニヒ島','french_polynesia');
city[2192] = new CityObject('iles_marquises','マルケサス諸島','french_polynesia');
city[2193] = new CityObject('moorea_island','モーレア島','french_polynesia');
city[2194] = new CityObject('raiatea_island','ライアテア島','french_polynesia');
city[2195] = new CityObject('rangiroa_island','ランギロア島','french_polynesia');
city[2196] = new CityObject('the_other_spots_of_french_polynesia','その他の観光地','french_polynesia');
city[2197] = new CityObject('alotau','アロタウ','papua_new_guinea');
city[2198] = new CityObject('kimbe','キンベ','papua_new_guinea');
city[2199] = new CityObject('goroka','ゴロカ','papua_new_guinea');
city[2200] = new CityObject('tari','タリ','papua_new_guinea');
city[2201] = new CityObject('tufi','トゥフィ','papua_new_guinea');
city[2202] = new CityObject('port_moresby','ポートモレスビー','papua_new_guinea');
city[2203] = new CityObject('madang','マダン','papua_new_guinea');
city[2204] = new CityObject('rabaul','ラバウル','papua_new_guinea');
city[2205] = new CityObject('loloat','ロロアタ','papua_new_guinea');
city[2206] = new CityObject('the_other_cities_of_papua_new_guinea','その他の都市','papua_new_guinea');
city[2207] = new CityObject('mt_hagen','マウント・ハーゲン','papua_new_guinea');
city[2208] = new CityObject('the_other_spots_of_papua_new_guinea','その他の観光地','papua_new_guinea');
city[2209] = new CityObject('manila','マニラ','philippines');
city[2210] = new CityObject('el_nido_ph','エルニド','philippines');
city[2211] = new CityObject('the_other_cities_of_philippines','その他の都市','philippines');
city[2212] = new CityObject('apulit','アプリット島','philippines');
city[2213] = new CityObject('samar_island','サマール島','philippines');
city[2214] = new CityObject('cebu','セブ島','philippines');
city[2215] = new CityObject('negros','ネグロス島','philippines');
city[2216] = new CityObject('panay_island','パナイ島','philippines');
city[2217] = new CityObject('el_nido','パラワン島','philippines');
city[2218] = new CityObject('panglao_island','パングラオ島','philippines');
city[2219] = new CityObject('bohol','ボホール島','philippines');
city[2220] = new CityObject('boracay','ボラカイ島','philippines');
city[2221] = new CityObject('mindanao_island','ミンダナオ島','philippines');
city[2222] = new CityObject('luzon_island','ルソン島','philippines');
city[2223] = new CityObject('layte_island','レイテ島','philippines');
city[2224] = new CityObject('the_other_spots_of_philippines','その他の観光地','philippines');
city[2225] = new CityObject('iskamabad','イスラマバード','pakistan');
city[2226] = new CityObject('karachi','カラチ','pakistan');
city[2227] = new CityObject('gilgit','ギルギット','pakistan');
city[2228] = new CityObject('chilas','チラース','pakistan');
city[2229] = new CityObject('hunza','フンザ','pakistan');
city[2230] = new CityObject('pesham','ベシャム','pakistan');
city[2231] = new CityObject('peshawar','ペシャワル','pakistan');
city[2232] = new CityObject('lahore','ラホール','pakistan');
city[2233] = new CityObject('the_other_cities_of_pakistan','その他の都市','pakistan');
city[2234] = new CityObject('gdansk','グダンスク','poland');
city[2235] = new CityObject('krakow','クラクフ','poland');
city[2236] = new CityObject('torun','トルン','poland');
city[2237] = new CityObject('wroclaw','ブロツラフ','poland');
city[2238] = new CityObject('poznan','ポズナニ','poland');
city[2239] = new CityObject('warsaw','ワルシャワ','poland');
city[2240] = new CityObject('the_other_cities_of_poland','その他の都市','poland');
city[2241] = new CityObject('auschwitz','アウシュビッツ','poland');
city[2242] = new CityObject('the_other_spots_of_poland','その他の観光地','poland');
city[2243] = new CityObject('aveiro','アヴェイロ','portugal');
city[2244] = new CityObject('azeitao','アゼイタオン','portugal');
city[2245] = new CityObject('amarante','アマランテ','portugal');
city[2246] = new CityObject('arraiolos','アライオロス','portugal');
city[2247] = new CityObject('algarve','アルガルヴェ','portugal');
city[2248] = new CityObject('alcobaca','アルコバサ','portugal');
city[2249] = new CityObject('albufeira','アルブフェイラ','portugal');
city[2250] = new CityObject('vaina_do_castelo','ヴァイナ・ド・カステロ','portugal');
city[2251] = new CityObject('viseu','ヴィゼウ','portugal');
city[2252] = new CityObject('vila_vicosa','ヴィラ・ヴィソーザ','portugal');
city[2253] = new CityObject('vila_real_de_santo_antonio','ヴィラ・レアル・デ・サント・アントニオ','portugal');
city[2254] = new CityObject('estonl','エストリル','portugal');
city[2255] = new CityObject('estremoz','エストレモス','portugal');
city[2256] = new CityObject('evora','エボラ','portugal');
city[2257] = new CityObject('elvas','エルヴァス','portugal');
city[2258] = new CityObject('obidos','オビドス','portugal');
city[2259] = new CityObject('cascais','カスカイス','portugal');
city[2260] = new CityObject('castelo_branco','カステロ・ブランコ','portugal');
city[2261] = new CityObject('caldas_da_rainha','カルダス・ダ・ライーニャ','portugal');
city[2262] = new CityObject('guimaraes','ギマランイス','portugal');
city[2263] = new CityObject('queluz','ケルース','portugal');
city[2264] = new CityObject('coimbra','コインブラ','portugal');
city[2265] = new CityObject('sagres','サグレス','portugal');
city[2266] = new CityObject('santa_cruz_pt','サンタ・クルス','portugal');
city[2267] = new CityObject('sintra','シントラ','portugal');
city[2268] = new CityObject('sesimbra','セジンブラ','portugal');
city[2269] = new CityObject('setubal','セトゥーバル','portugal');
city[2270] = new CityObject('tavila','タヴィラ','portugal');
city[2271] = new CityObject('tomar','トマール','portugal');
city[2272] = new CityObject('nazare','ナザレ','portugal');
city[2273] = new CityObject('batalha','バターリャ','portugal');
city[2274] = new CityObject('barcelos','バルセロス','portugal');
city[2275] = new CityObject('palmela','パルメラ','portugal');
city[2276] = new CityObject('fatima','ファティマ','portugal');
city[2277] = new CityObject('faro','ファロ','portugal');
city[2278] = new CityObject('braga','ブラガ','portugal');
city[2279] = new CityObject('braganca','ブラガンサ','portugal');
city[2280] = new CityObject('portalegre','ポルタレグレ','portugal');
city[2281] = new CityObject('porto','ポルト','portugal');
city[2282] = new CityObject('mafra','マフラ','portugal');
city[2283] = new CityObject('marvao','マルヴァオン','portugal');
city[2284] = new CityObject('monsaraz','モンサラーシュ','portugal');
city[2285] = new CityObject('monsanto','モンサント','portugal');
city[2286] = new CityObject('lagos','ラーゴス','portugal');
city[2287] = new CityObject('lamego','ラメーゴ','portugal');
city[2288] = new CityObject('lisboa','リスボン','portugal');
city[2289] = new CityObject('redondo','ルドンド','portugal');
city[2290] = new CityObject('leiria','レイリア','portugal');
city[2291] = new CityObject('the_other_cities_of_portugal','その他の都市','portugal');
city[2292] = new CityObject('mata_nacional_do_bussaco','ブサコ国立公園','portugal');
city[2293] = new CityObject('madeira_lsland','マデイラ島','portugal');
city[2294] = new CityObject('cabo_da_roca','ロカ岬','portugal');
city[2295] = new CityObject('the_other_spots_of_portugal','その他の観光地','portugal');
city[2296] = new CityObject('palau','パラオ','palau');
city[2297] = new CityObject('the_other_cities_of_palau','その他の都市','palau');
city[2298] = new CityObject('asuncion','アスンシオン','paraguay');
city[2299] = new CityObject('encarnacion','エンカルナシオン','paraguay');
city[2300] = new CityObject('ciudad_del_este','シウダー・デル・エステ','paraguay');
city[2301] = new CityObject('the_other_cities_of_paraguay','その他の都市','paraguay');
city[2302] = new CityObject('doha','ドーハ','qatar');
city[2303] = new CityObject('the_other_cities_of_oqatar','その他の都市','qatar');
city[2304] = new CityObject('sinaia','シナイア','romania');
city[2305] = new CityObject('bucharest','ブカレスト','romania');
city[2306] = new CityObject('brasov','ブラショフ','romania');
city[2307] = new CityObject('the_other_cities_of_romania','その他の都市','romania');
city[2308] = new CityObject('irkutsk','イルクーツク','russia');
city[2309] = new CityObject('volgograd','ヴォルゴグラード','russia');
city[2310] = new CityObject('vladivostok','ウラジオストック','russia');
city[2311] = new CityObject('st.petersburg','サンクトペテルブルク','russia');
city[2312] = new CityObject('novgorod','ノブゴロド','russia');
city[2313] = new CityObject('khabarovsk','ハバロフスク','russia');
city[2314] = new CityObject('petrozavodsk','ペトロザヴォーツク','russia');
city[2315] = new CityObject('petropavlovsk','ペトロパブロフスクカムチャッカ','russia');
city[2316] = new CityObject('murmansk','ムルマンスク','russia');
city[2317] = new CityObject('moscow','モスクワ','russia');
city[2318] = new CityObject('yuzhno-sakhalinsk','ユージノサハリンスク','russia');
city[2319] = new CityObject('the_other_cities_of_russia','その他の都市','russia');
city[2320] = new CityObject('khzh','キジー島','russia');
city[2321] = new CityObject('siberia','シベリア','russia');
city[2322] = new CityObject('the_other_spots_of_russia','その他の観光地','russia');
city[2323] = new CityObject('kigali','キガリ','rwanda');
city[2324] = new CityObject('the_other_cities_of_rwanda','その他の都市','rwanda');
city[2325] = new CityObject('abha','アブハ','saudi_arabia');
city[2326] = new CityObject('al_khobar','アル・コバール','saudi_arabia');
city[2327] = new CityObject('qatif','カティフ','saudi_arabia');
city[2328] = new CityObject('jeddah','ジェッダ','saudi_arabia');
city[2329] = new CityObject('jizan','ジザン','saudi_arabia');
city[2330] = new CityObject('dhahran','ダーラン','saudi_arabia');
city[2331] = new CityObject('taif','タイフ','saudi_arabia');
city[2332] = new CityObject('damman','ダンマン','saudi_arabia');
city[2333] = new CityObject('najran','ナジラン','saudi_arabia');
city[2334] = new CityObject('mecca','メッカ','saudi_arabia');
city[2335] = new CityObject('medina','メディナ','saudi_arabia');
city[2336] = new CityObject('riyadh','リヤド','saudi_arabia');
city[2337] = new CityObject('the_other_cities_of_saudi_arabia','その他の都市','saudi_arabia');
city[2338] = new CityObject('honiara','ホニアラ','solomon_islands');
city[2339] = new CityObject('the_other_cities_of_solomon_islands','その他の都市','solomon_islands');
city[2340] = new CityObject('victoria_sc','ビクトリア','seychelles');
city[2341] = new CityObject('the_other_cities_of_seychelles','その他の都市','seychelles');
city[2342] = new CityObject('khartoum','ハルツーム','sudan');
city[2343] = new CityObject('the_other_cities_of_sudan','その他の都市','sudan');
city[2344] = new CityObject('gothenburg','イエテボリ','sweden');
city[2345] = new CityObject('gallivare','イエリバーレ','sweden');
city[2346] = new CityObject('vaxjo','ヴェクショー','sweden');
city[2347] = new CityObject('uppsala','ウプサラ','sweden');
city[2348] = new CityObject('kalmar','カルマル','sweden');
city[2349] = new CityObject('kiruna','キルナ','sweden');
city[2350] = new CityObject('stockholm','ストックホルム','sweden');
city[2351] = new CityObject('tallberg','テルベリー','sweden');
city[2352] = new CityObject('dundred','ドゥンドレッド','sweden');
city[2353] = new CityObject('falun','ファールン','sweden');
city[2354] = new CityObject('helsingborg','ヘルシンボリ','sweden');
city[2355] = new CityObject('malmo','マルメ','sweden');
city[2356] = new CityObject('mora','ムーラ','sweden');
city[2357] = new CityObject('goteborg','ヨーテボリ','sweden');
city[2358] = new CityObject('lund','ルンド','sweden');
city[2359] = new CityObject('rattvik','レートヴィーク','sweden');
city[2360] = new CityObject('leksand','レクサンド','sweden');
city[2361] = new CityObject('the_other_cities_of_sweden','その他の都市','sweden');
city[2362] = new CityObject('oland_island','エーランド島','sweden');
city[2363] = new CityObject('gotland_island','ゴットランド島','sweden');
city[2364] = new CityObject('the_other_spots_of_sweden','その他の観光地','sweden');
city[2365] = new CityObject('singapore','シンガポール','singapore');
city[2366] = new CityObject('the_other_cities_of_singapore','その他の都市','singapore');
city[2367] = new CityObject('sentosa','セントーサ島','singapore');
city[2368] = new CityObject('the_other_spots_of_singapore','その他の観光地','singapore');
city[2369] = new CityObject('piran','ピラン','slovenia');
city[2370] = new CityObject('ljubljana','リュブリャナ','slovenia');
city[2371] = new CityObject('the_other_cities_of_slovenia','その他の都市','slovenia');
city[2372] = new CityObject('lake_bled','ブレッド湖','slovenia');
city[2373] = new CityObject('the_other_spots_of_slovenia','その他の観光地','slovenia');
city[2374] = new CityObject('kosice','コシツェ','slovak');
city[2375] = new CityObject('trencin','トレンチーン','slovak');
city[2376] = new CityObject('bratislava','ブラチスラバ','slovak');
city[2377] = new CityObject('levoca','レヴォチャ','slovak');
city[2378] = new CityObject('the_other_cities_of_slovak','その他の都市','slovak');
city[2379] = new CityObject('spissky_hrad','スピシュ城','slovak');
city[2380] = new CityObject('the_other_spots_of_slovak','その他の観光地','slovak');
city[2381] = new CityObject('freetown','フリータウン','sierra_leone');
city[2382] = new CityObject('the_other_cities_of_sierra_leone','その他の都市','sierra_leone');
city[2383] = new CityObject('san_marino','サンマリノ','san_marino');
city[2384] = new CityObject('the_other_cities_of_san_marino','その他の都市','san_marino');
city[2385] = new CityObject('st.louis','サンルイ','senegal');
city[2386] = new CityObject('dakar','ダカール','senegal');
city[2387] = new CityObject('the_other_cities_of_senegal','その他の都市','senegal');
city[2388] = new CityObject('mogadishu','モガディシュ','somalia');
city[2389] = new CityObject('the_other_cities_of_somalia','その他の都市','somalia');
city[2390] = new CityObject('paramaribo','パラマリボ','suriname');
city[2391] = new CityObject('the_other_cities_of_suriname','その他の都市','suriname');
city[2392] = new CityObject('sao_tome','サントメ','sao_tome_and_principe');
city[2393] = new CityObject('the_other_cities_of_sao_tome_and_principe','その他の都市','sao_tome_and_principe');
city[2394] = new CityObject('san_salvador','サン・サルバドル','el_salvador');
city[2395] = new CityObject('santa_ana','サンタ・アナ','el_salvador');
city[2396] = new CityObject('san_miguel','サン・ミゲル','el_salvador');
city[2397] = new CityObject('the_other_cities_of_el_salvador','その他の都市','el_salvador');
city[2398] = new CityObject('ain_dara','アイン・ダラー','syria');
city[2399] = new CityObject('aleppo','アレッポ','syria');
city[2400] = new CityObject('qalaat_samaan','カラート・サマーン','syria');
city[2401] = new CityObject('crac_des_chevalies','クラック・デ・シュバリエ','syria');
city[2402] = new CityObject('shahba','シャハバ','syria');
city[2403] = new CityObject('damascus','ダマスカス','syria');
city[2404] = new CityObject('tartus','タルトゥース','syria');
city[2405] = new CityObject('dayr_az_zawr','デリゾール','syria');
city[2406] = new CityObject('doura_europos','ドゥラ・エウロポス','syria');
city[2407] = new CityObject('hassake','ハッサケ','syria');
city[2408] = new CityObject('hama','ハマ','syria');
city[2409] = new CityObject('palmyra','パルミラ','syria');
city[2410] = new CityObject('bosra','ボスラ','syria');
city[2411] = new CityObject('homs','ホムス','syria');
city[2412] = new CityObject('maalula','マアルーラ','syria');
city[2413] = new CityObject('mari','マリ','syria');
city[2414] = new CityObject('lattakia','ラタキア','syria');
city[2415] = new CityObject('raqqa','ラッカ','syria');
city[2416] = new CityObject('the_other_cities_of_syria','その他の都市','syria');
city[2417] = new CityObject('manzani','マンザニ','swaziland');
city[2418] = new CityObject('mbabane','ムババーネ','swaziland');
city[2419] = new CityObject('the_other_cities_of_swaziland','その他の都市','swaziland');
city[2420] = new CityObject('n_djamena','ンジャメナ','chad');
city[2421] = new CityObject('the_other_cities_of_chad','その他の都市','chad');
city[2422] = new CityObject('lome','ロメ','togo');
city[2423] = new CityObject('the_other_cities_of_togo','その他の都市','togo');
city[2424] = new CityObject('ayutthaya','アユタヤ','thailand');
city[2425] = new CityObject('aranyaprathet','アランヤプラテート','thailand');
city[2426] = new CityObject('udon_thani','ウドーン・ターニー','thailand');
city[2427] = new CityObject('ubon','ウボン・ラチャタニ','thailand');
city[2428] = new CityObject('kanchanaburi','カンチャナブリ','thailand');
city[2429] = new CityObject('kanphaeng_phet','カンペーン・ペッ','thailand');
city[2430] = new CityObject('khon_kaen','コーンケン','thailand');
city[2431] = new CityObject('satun','サトゥン','thailand');
city[2432] = new CityObject('sangkhlaburi','サンクラブリー','thailand');
city[2433] = new CityObject('sri_saket','シー・サケット','thailand');
city[2434] = new CityObject('sri_chiangmai','シー・チェンマイ','thailand');
city[2435] = new CityObject('sukhothai','スコータイ','thailand');
city[2436] = new CityObject('surat_thani','スラー・ターニー','thailand');
city[2437] = new CityObject('sungai_kolok','スンガイ・コーロク','thailand');
city[2438] = new CityObject('songkhla','ソンクラー','thailand');
city[2439] = new CityObject('that_phanom','タート・パノム','thailand');
city[2440] = new CityObject('chiang_khong','チェンコーン','thailand');
city[2441] = new CityObject('chiang_saen','チェンセーン','thailand');
city[2442] = new CityObject('chiangmai','チェンマイ','thailand');
city[2443] = new CityObject('chiangrai','チェンライ','thailand');
city[2444] = new CityObject('chanthaburi','チャンタブリー','thailand');
city[2445] = new CityObject('chumphon','チュンポン','thailand');
city[2446] = new CityObject('trat','トラート','thailand');
city[2447] = new CityObject('trang','トラン','thailand');
city[2448] = new CityObject('nan','ナーン','thailand');
city[2449] = new CityObject('nakhon_ratchasima','ナコーン・ラチャシーマ','thailand');
city[2450] = new CityObject('nakhon_sri_thammarat','ナコーン・シー・タマラート','thailand');
city[2451] = new CityObject('nakhon_pathom','ナコーン・パトム','thailand');
city[2452] = new CityObject('nakhon_phanom','ナコーン・パノム','thailand');
city[2453] = new CityObject('narathiwat','ナラーティワート','thailand');
city[2454] = new CityObject('nong_khai','ノーンカーイ','thailand');
city[2455] = new CityObject('pai','パーイ','thailand');
city[2456] = new CityObject('hat_yai','ハート・ヤイ','thailand');
city[2457] = new CityObject('pattaya','パタヤ','thailand');
city[2458] = new CityObject('pattani','パッタニー','thailand');
city[2459] = new CityObject('bangkok','バンコク','thailand');
city[2460] = new CityObject('phitsanuloke','ピッサヌローク','thailand');
city[2461] = new CityObject('phimai','ピマーイ','thailand');
city[2462] = new CityObject('phrae','プレー','thailand');
city[2463] = new CityObject('phetchaburi','ペッチャブリー','thailand');
city[2464] = new CityObject('huahia','ホアヒン','thailand');
city[2465] = new CityObject('mukdahan','ムクダーハーン','thailand');
city[2466] = new CityObject('mae_sai','メーサーイ','thailand');
city[2467] = new CityObject('mae_salong','メーサローン','thailand');
city[2468] = new CityObject('mae_sot','メーソート','thailand');
city[2469] = new CityObject('maehong','メーホンソン','thailand');
city[2470] = new CityObject('yasothon','ヤソートーン','thailand');
city[2471] = new CityObject('yala_th','ヤラー','thailand');
city[2472] = new CityObject('ranong','ラノーン','thailand');
city[2473] = new CityObject('rayong','ラヨーン','thailand');
city[2474] = new CityObject('lampang','ランパーン','thailand');
city[2475] = new CityObject('lamphun','ランプーン','thailand');
city[2476] = new CityObject('roi-et','ローイエット','thailand');
city[2477] = new CityObject('lopburi','ロッブリー','thailand');
city[2478] = new CityObject('the_other_cities_of_thailand','その他の都市','thailand');
city[2479] = new CityObject('khao_phra_wiharn','カオ・プラ・ウィハーン遺跡','thailand');
city[2480] = new CityObject('krabi','クラビ','thailand');
city[2481] = new CityObject('golden_triangle','ゴールデントライアングル','thailand');
city[2482] = new CityObject('samui','サムイ島','thailand');
city[2483] = new CityObject('samet_island','サメット島','thailand');
city[2484] = new CityObject('sri_satchanalai_historical_park','シー・サッチャナーライ遺跡公園','thailand');
city[2485] = new CityObject('surin','スリン','thailand');
city[2486] = new CityObject('tao','タオ島','thailand');
city[2487] = new CityObject('chang_island','チャーン島','thailand');
city[2488] = new CityObject('prasat_hin_khao_phanom_rung','パノム・ルン遺跡','thailand');
city[2489] = new CityObject('pha-ngan_island','パンガン島','thailand');
city[2490] = new CityObject('phi_phi','ピピ島','thailand');
city[2491] = new CityObject('phuket','プーケット','thailand');
city[2492] = new CityObject('lanta','ランタ島','thailand');
city[2493] = new CityObject('the_other_spots_of_thailand','その他の観光地','thailand');
city[2494] = new CityObject('dushanbe','ドゥシャンベ','tajikistan');
city[2495] = new CityObject('the_other_cities_of_tajikistan','その他の都市','tajikistan');
city[2496] = new CityObject('ashkhabad','アシハバード','turkmenistan');
city[2497] = new CityObject('the_other_cities_of_turkmenistan','その他の都市','turkmenistan');
city[2498] = new CityObject('ain_draham','アイン・ドラハム','tunisia');
city[2499] = new CityObject('el_djem','エル・ジェム','tunisia');
city[2500] = new CityObject('el_haouaria','エル・ハワリア','tunisia');
city[2501] = new CityObject('gafsa','ガフサ','tunisia');
city[2502] = new CityObject('gabes','ガベス','tunisia');
city[2503] = new CityObject('carthago','カルタゴ','tunisia');
city[2504] = new CityObject('ksar_ghielene','クサール・ギレン','tunisia');
city[2505] = new CityObject('kelibia','ケリビア','tunisia');
city[2506] = new CityObject('kerkouane','ケルクアン','tunisia');
city[2507] = new CityObject('kairouan','ケロアン','tunisia');
city[2508] = new CityObject('zarzis','ザルジス','tunisia');
city[2509] = new CityObject('sidi_bou_said','シディ・ブ・サイド','tunisia');
city[2510] = new CityObject('jendouba','ジャンドゥーバ','tunisia');
city[2511] = new CityObject('chott_el_jerid','ショット・エル・ジェリド','tunisia');
city[2512] = new CityObject('sousse','スース','tunisia');
city[2513] = new CityObject('sfax','スファクス','tunisia');
city[2514] = new CityObject('sbeitla','スベイトラ','tunisia');
city[2515] = new CityObject('tataouine','タタウィン','tunisia');
city[2516] = new CityObject('tabarka','タバルカ','tunisia');
city[2517] = new CityObject('tunis','チュニス','tunisia');
city[2518] = new CityObject('thuburbo_majus','チュブルボ・マジュス','tunisia');
city[2519] = new CityObject('teboursouk','テブルスーク','tunisia');
city[2520] = new CityObject('douz','ドゥーズ','tunisia');
city[2521] = new CityObject('dougga','ドゥッガ','tunisia');
city[2522] = new CityObject('tozeur','トズル','tunisia');
city[2523] = new CityObject('nabeul','ナブール','tunisia');
city[2524] = new CityObject('nefta','ネフタ','tunisia');
city[2525] = new CityObject('hammamet','ハマメット','tunisia');
city[2526] = new CityObject('bizerte','ビゼルト','tunisia');
city[2527] = new CityObject('bulla_regia','ブラ・レジア','tunisia');
city[2528] = new CityObject('port_el_kantaoui','ポート・エル・カンタウイ','tunisia');
city[2529] = new CityObject('makthar','マクタール','tunisia');
city[2530] = new CityObject('matmata','マトマタ','tunisia');
city[2531] = new CityObject('mahdia','マハディア','tunisia');
city[2532] = new CityObject('medenine','メドニン','tunisia');
city[2533] = new CityObject('monastir','モナスティール','tunisia');
city[2534] = new CityObject('le_kef','ル・ケフ','tunisia');
city[2535] = new CityObject('the_other_cities_of_tunisia','その他の都市','tunisia');
city[2536] = new CityObject('iles_kerkennah','ケルケナ諸島','tunisia');
city[2537] = new CityObject('ile_de_djerba','ジェルバ島','tunisia');
city[2538] = new CityObject('gorges_de_tamerza','タメルザ峡谷','tunisia');
city[2539] = new CityObject('houmt_souk','フームスーク','tunisia');
city[2540] = new CityObject('the_other_spots_of_tunisia','その他の観光地','tunisia');
city[2541] = new CityObject('nukualofa','ヌクァロファ','tonga');
city[2542] = new CityObject('the_other_cities_of_tonga','その他の都市','tonga');
city[2543] = new CityObject('eua_island','エウア島','tonga');
city[2544] = new CityObject('tongatapu_island','トンガタプ島','tonga');
city[2545] = new CityObject('haapai_group','ハァアパイ諸島','tonga');
city[2546] = new CityObject('vavau_group','ババウ諸島','tonga');
city[2547] = new CityObject('lifuka_island','リフカ島','tonga');
city[2548] = new CityObject('the_other_spots_of_tonga','その他の観光地','tonga');
city[2549] = new CityObject('dili','ディリ','timor-leste');
city[2550] = new CityObject('the_other_cities_of_timor-leste','その他の都市','timor-leste');
city[2551] = new CityObject('ayder','アイデル','turkey');
city[2552] = new CityObject('ayvalik','アイワルック','turkey');
city[2553] = new CityObject('assos','アソス','turkey');
city[2554] = new CityObject('adana','アダナ','turkey');
city[2555] = new CityObject('amasya','アマスヤ','turkey');
city[2556] = new CityObject('alanya','アランヤ','turkey');
city[2557] = new CityObject('ankara','アンカラ','turkey');
city[2558] = new CityObject('antakya','アンタクヤ','turkey');
city[2559] = new CityObject('antalya','アンタルヤ','turkey');
city[2560] = new CityObject('istabul','イスタンブール','turkey');
city[2561] = new CityObject('iznik','イズニック','turkey');
city[2562] = new CityObject('izmir','イズミール','turkey');
city[2563] = new CityObject('van','ヴァン','turkey');
city[2564] = new CityObject('uzungol','ウズンギョル','turkey');
city[2565] = new CityObject('egirdir','エイルディル','turkey');
city[2566] = new CityObject('eskisehir','エスキシェヒル','turkey');
city[2567] = new CityObject('edirne','エディルネ','turkey');
city[2568] = new CityObject('erzurum','エルズルム','turkey');
city[2569] = new CityObject('kayseri','カイセリ','turkey');
city[2570] = new CityObject('kas','カシュ','turkey');
city[2571] = new CityObject('gazi_antep','ガズィアンテップ','turkey');
city[2572] = new CityObject('cappadocia','カッパドキア','turkey');
city[2573] = new CityObject('kars','カルス','turkey');
city[2574] = new CityObject('kahta','キャフタ','turkey');
city[2575] = new CityObject('kutafya','キュタフヤ','turkey');
city[2576] = new CityObject('kusadasi','クサダシ','turkey');
city[2577] = new CityObject('xanthos','クサントス','turkey');
city[2578] = new CityObject('konya','コンヤ','turkey');
city[2579] = new CityObject('safranbolu','サフランボル','turkey');
city[2580] = new CityObject('samsun','サムスン','turkey');
city[2581] = new CityObject('sanli_urfa','シャンルウルファ','turkey');
city[2582] = new CityObject('side','スィデ','turkey');
city[2583] = new CityObject('sinop','スィノップ','turkey');
city[2584] = new CityObject('silifke','スィリフケ','turkey');
city[2585] = new CityObject('sivas','スィワス','turkey');
city[2586] = new CityObject('selcuk','セルチュク','turkey');
city[2587] = new CityObject('datca','ダッチャ','turkey');
city[2588] = new CityObject('tatvan','タトワン','turkey');
city[2589] = new CityObject('cesme','チェシメ','turkey');
city[2590] = new CityObject('canakkale','チャナッカレ','turkey');
city[2591] = new CityObject('divrigi','ディヴリイ','turkey');
city[2592] = new CityObject('diyarbakir','ディヤルバクル','turkey');
city[2593] = new CityObject('doubayajito','ドゥバヤジット','turkey');
city[2594] = new CityObject('trabzon','トラブゾン','turkey');
city[2595] = new CityObject('nemrutdagi','ネムルトダーゥ','turkey');
city[2596] = new CityObject('pamukkale','パムッカレ','turkey');
city[2597] = new CityObject('fethiye','フェティエ','turkey');
city[2598] = new CityObject('bursa','ブルサ','turkey');
city[2599] = new CityObject('bergama','ベルガマ','turkey');
city[2600] = new CityObject('bogazkale','ボアズカレ','turkey');
city[2601] = new CityObject('bodrum','ボドルム','turkey');
city[2602] = new CityObject('malatya','マラテヤ','turkey');
city[2603] = new CityObject('mardin','マルディン','turkey');
city[2604] = new CityObject('marmaris','マルマリス','turkey');
city[2605] = new CityObject('mersin','メルスィン','turkey');
city[2606] = new CityObject('the_other_cities_of_turkey','その他の都市','turkey');
city[2607] = new CityObject('afrodisias_orenyeri','アフロディスィアス','turkey');
city[2608] = new CityObject('efes_orenyeri','エフェス遺跡','turkey');
city[2609] = new CityObject('kuzey_kibris','北キプロス','turkey');
city[2610] = new CityObject('knidos','クニドス遺跡','turkey');
city[2611] = new CityObject('didim','ディディム遺跡','turkey');
city[2612] = new CityObject('truva_arkeolojik_kenti','トロイ遺跡','turkey');
city[2613] = new CityObject('priene','プリエネ遺跡','turkey');
city[2614] = new CityObject('milet','ミレト遺跡','turkey');
city[2615] = new CityObject('the_other_spots_of_turkey','その他の観光地','turkey');
city[2616] = new CityObject('port_of_spain','ポート・オブ・スペイン','trinidad_and_tobago');
city[2617] = new CityObject('the_other_cities_of_trinidad_and_tobago','その他の都市','trinidad_and_tobago');
city[2618] = new CityObject('tobago_island','トバゴ島','trinidad_and_tobago');
city[2619] = new CityObject('trinidad_island','トリニダード島','trinidad_and_tobago');
city[2620] = new CityObject('the_other_spots_of_trinidad_and_tobago','その他の観光地','trinidad_and_tobago');
city[2621] = new CityObject('funafuti','フナフチ','tuvalu');
city[2622] = new CityObject('the_other_cities_of_tuvalu','その他の都市','tuvalu');
city[2623] = new CityObject('kagi','嘉義','taiwan');
city[2624] = new CityObject('hualien','花蓮','taiwan');
city[2625] = new CityObject('kiirun','基隆','taiwan');
city[2626] = new CityObject('giran','宜蘭','taiwan');
city[2627] = new CityObject('shouka','彰化','taiwan');
city[2628] = new CityObject('shinchiku','新竹','taiwan');
city[2629] = new CityObject('taichung','台中','taiwan');
city[2630] = new CityObject('taiton','台東','taiwan');
city[2631] = new CityObject('tainan','台南','taiwan');
city[2632] = new CityObject('taipei','台北','taiwan');
city[2633] = new CityObject('kaohsiung','高雄','taiwan');
city[2634] = new CityObject('byouritsu','苗栗','taiwan');
city[2635] = new CityObject('heitou','屏東','taiwan');
city[2636] = new CityObject('the_other_cities_of_taiwan','その他の都市','taiwan');
city[2637] = new CityObject('alishana','阿里山','taiwan');
city[2638] = new CityObject('katou_kouro','花東公路','taiwan');
city[2639] = new CityObject('kontei_national_park','墾丁国家公園','taiwan');
city[2640] = new CityObject('kyuufun','九分','taiwan');
city[2641] = new CityObject('shuushuusen','集集線','taiwan');
city[2642] = new CityObject('shoukei_onsen','礁渓温泉','taiwan');
city[2643] = new CityObject('taroko','太魯閣','taiwan');
city[2644] = new CityObject('chimoto_onsen','知本温泉','taiwan');
city[2645] = new CityObject('nanbu_oukan_kouro','南部横貫公路','taiwan');
city[2646] = new CityObject('nichigetsutan','日月潭','taiwan');
city[2647] = new CityObject('hori','埔里','taiwan');
city[2648] = new CityObject('rozan_onsen','廬山温泉','taiwan');
city[2649] = new CityObject('rokkou','鹿港','taiwan');
city[2650] = new CityObject('the_other_spots_of_taiwan','その他の観光地','taiwan');
city[2651] = new CityObject('arusha','アルーシャ','tanzania');
city[2652] = new CityObject('kigoma','キゴマ','tanzania');
city[2653] = new CityObject('zanzibar','ザンジバル','tanzania');
city[2654] = new CityObject('daressalaam','ダルエスサラーム','tanzania');
city[2655] = new CityObject('tanga','タンガ','tanzania');
city[2656] = new CityObject('dodoma','ドドマ','tanzania');
city[2657] = new CityObject('bagamoyo','バガモヨ','tanzania');
city[2658] = new CityObject('musoma','ムソマ','tanzania');
city[2659] = new CityObject('mtwara','ムツワラ','tanzania');
city[2660] = new CityObject('mwanza','ムワンザ','tanzania');
city[2661] = new CityObject('moshi','モシ','tanzania');
city[2662] = new CityObject('lindi','リンディ','tanzania');
city[2663] = new CityObject('lushoto','ルショト','tanzania');
city[2664] = new CityObject('the_other_cities_of_tanzania','その他の都市','tanzania');
city[2665] = new CityObject('arusha_national_park','アルーシャ国立公園','tanzania');
city[2666] = new CityObject('kilimanjaro','キリマンジャロ国立公園','tanzania');
city[2667] = new CityObject('serengeti_national_park','セレンゲティ国立公園','tanzania');
city[2668] = new CityObject('lake_manyara','マニャラ湖国立公園','tanzania');
city[2669] = new CityObject('ngorongoro','ンゴロンゴロ自然保護区','tanzania');
city[2670] = new CityObject('the_other_spots_of_tanzania','その他の観光地','tanzania');
city[2671] = new CityObject('kiev','キエフ','ukraine');
city[2672] = new CityObject('odessa','オデッサ','ukraine');
city[2673] = new CityObject('jalta','ヤルタ','ukraine');
city[2674] = new CityObject('lviv','リヴィウ','ukraine');
city[2675] = new CityObject('the_other_cities_of_ukraine','その他の都市','ukraine');
city[2676] = new CityObject('kasese','カセセ','uganda');
city[2677] = new CityObject('kanpala','カンパラ','uganda');
city[2678] = new CityObject('jinja','ジンジャ','uganda');
city[2679] = new CityObject('tororo','トロロ','uganda');
city[2680] = new CityObject('fort_portal','フォート・ポータル','uganda');
city[2681] = new CityObject('mbale','ムバレ','uganda');
city[2682] = new CityObject('the_other_cities_of_uganda','その他の都市','uganda');
city[2683] = new CityObject('mount_elgon_national_park','エルゴン山国立公園','uganda');
city[2684] = new CityObject('queen_elizabeth_national_park','クイーン・エリザベス国立公園','uganda');
city[2685] = new CityObject('sipi_falls','シピ滝','uganda');
city[2686] = new CityObject('ssese_islands','セセ諸島','uganda');
city[2687] = new CityObject('bwindi_immpenetrable_national_park','ブウィンディ国立公園','uganda');
city[2688] = new CityObject('rwenzori_mountains_national_park','ルウェンゾリ山地国立公園','uganda');
city[2689] = new CityObject('the_other_spots_of_uganda','その他の観光地','uganda');
city[2690] = new CityObject('asheville','アッシュビル','america');
city[2691] = new CityObject('atlanta','アトランタ','america');
city[2692] = new CityObject('atlantic_city','アトランティックシティ','america');
city[2693] = new CityObject('anaheim','アナハイム','america');
city[2694] = new CityObject('albuquerque','アルバカーキ','america');
city[2695] = new CityObject('anchorage','アンカレジ','america');
city[2696] = new CityObject('indianapolis','インディアナポリス','america');
city[2697] = new CityObject('wichita','ウィチタ','america');
city[2698] = new CityObject('el_paso','エルパソ','america');
city[2699] = new CityObject('oakland','オークランド','america');
city[2700] = new CityObject('austin','オースティン','america');
city[2701] = new CityObject('orlando','オーランド','america');
city[2702] = new CityObject('oklahoma_city','オクラホマシティ','america');
city[2703] = new CityObject('omaha','オマハ','america');
city[2704] = new CityObject('carmel','カーメル','america');
city[2705] = new CityObject('carlsbad','カールスバッド','america');
city[2706] = new CityObject('galveston','ガルベストン','america');
city[2707] = new CityObject('kansas_city_mo','カンザスシティ','america');
city[2708] = new CityObject('key_west','キーウエスト','america');
city[2709] = new CityObject('grand_rapids','グランドラピッズ','america');
city[2710] = new CityObject('cleveland','クリーブランド','america');
city[2711] = new CityObject('ketchikan','ケチカン','america');
city[2712] = new CityObject('colorado_springs','コロラドスプリングス','america');
city[2713] = new CityObject('sacramento','サクラメント','america');
city[2714] = new CityObject('savannah','サバンナ','america');
city[2715] = new CityObject('san_antonio','サンアントニオ','america');
city[2716] = new CityObject('santa_cruz','サンタクルーズ','america');
city[2717] = new CityObject('santa_barbara','サンタバーバラ','america');
city[2718] = new CityObject('santa_fe','サンタフェ','america');
city[2719] = new CityObject('san_diego','サンディエゴ','america');
city[2720] = new CityObject('san_jose','サンノゼ','america');
city[2721] = new CityObject('san_francisco','サンフランシスコ','america');
city[2722] = new CityObject('san_luis_obispo','サンルイーズオビスポ','america');
city[2723] = new CityObject('seattle','シアトル','america');
city[2724] = new CityObject('chicago','シカゴ','america');
city[2725] = new CityObject('juneau','ジュノー','america');
city[2726] = new CityObject('cincinnati','シンシナティ','america');
city[2727] = new CityObject('skagway','スキャグウェイ','america');
city[2728] = new CityObject('scottsdale','スコッツデール','america');
city[2729] = new CityObject('seward','スワード','america');
city[2730] = new CityObject('sedona','セドナ','america');
city[2731] = new CityObject('st_paul','セントポール','america');
city[2732] = new CityObject('st._louis','セントルイス','america');
city[2733] = new CityObject('salt_lake_city','ソルトレイクシティ','america');
city[2734] = new CityObject('dallas','ダラス','america');
city[2735] = new CityObject('talkeetna','タルキートナ','america');
city[2736] = new CityObject('tulsa','タルサ','america');
city[2737] = new CityObject('tampa','タンパ','america');
city[2738] = new CityObject('tucson','ツーソン','america');
city[2739] = new CityObject('daytona_beach','デイトナビーチ','america');
city[2740] = new CityObject('detroit','デトロイト','america');
city[2741] = new CityObject('denver','デンバー','america');
city[2742] = new CityObject('niagara_falls','ナイアガラフォールズ','america');
city[2743] = new CityObject('nashville','ナッシュビル','america');
city[2744] = new CityObject('napa','ナパ','america');
city[2745] = new CityObject('new_orleans','ニューオーリンズ','america');
city[2746] = new CityObject('new_york','ニューヨーク','america');
city[2747] = new CityObject('nome','ノーム','america');
city[2748] = new CityObject('barkeley','バークレー','america');
city[2749] = new CityObject('palm_springs','パームスプリングス','america');
city[2750] = new CityObject('buffalo','バッファロー','america');
city[2751] = new CityObject('baton_rouge','バトンルージュ','america');
city[2752] = new CityObject('harrisburg','ハリスバーグ','america');
city[2753] = new CityObject('valdez','バルディーズ','america');
city[2754] = new CityObject('barrow','バロー','america');
city[2755] = new CityObject('bismarck','ビスマーク','america');
city[2756] = new CityObject('pittsburgh','ピッツバーグ','america');
city[2757] = new CityObject('houston','ヒューストン','america');
city[2758] = new CityObject('philadelphia','フィラデルフィア','america');
city[2759] = new CityObject('fairbanks','フェアバンクス','america');
city[2760] = new CityObject('phoenix','フェニックス','america');
city[2761] = new CityObject('fort_myers','フォートマイヤーズ','america');
city[2762] = new CityObject('fort_lauderdale','フォートローダーデール','america');
city[2763] = new CityObject('fort_worth','フォートワース','america');
city[2764] = new CityObject('flagstaff','フラッグスタッフ','america');
city[2765] = new CityObject('page','ページ','america');
city[2766] = new CityObject('boise','ボイジー','america');
city[2767] = new CityObject('portland','ポートランド','america');
city[2768] = new CityObject('boston','ボストン','america');
city[2769] = new CityObject('baltimore','ボルチモア','america');
city[2770] = new CityObject('miami','マイアミ','america');
city[2771] = new CityObject('minneapolis','ミネアポリス','america');
city[2772] = new CityObject('milwaukee','ミルウォーキー','america');
city[2773] = new CityObject('memphis','メンフィス','america');
city[2774] = new CityObject('monterey','モントレー','america');
city[2775] = new CityObject('eugene','ユージーン','america');
city[2776] = new CityObject('las_vegas','ラスベガス','america');
city[2777] = new CityObject('rapid_city','ラピッドシティ','america');
city[2778] = new CityObject('lafayette','ラファイエット','america');
city[2779] = new CityObject('lancaster','ランカスター','america');
city[2780] = new CityObject('reno','リノ','america');
city[2781] = new CityObject('lake_tahoe','レイクタホ','america');
city[2782] = new CityObject('los_angeles','ロサンゼルス','america');
city[2783] = new CityObject('rochester','ロチェスター','america');
city[2784] = new CityObject('washington','ワシントンＤ.Ｃ.','america');
city[2785] = new CityObject('the_other_cities_of_america','その他の都市','america');
city[2786] = new CityObject('arches_national_park','アーチーズ','america');
city[2787] = new CityObject('yellowstone_national_park','イエローストーン','america');
city[2788] = new CityObject('evergrades_national_park','エバーグレーズ','america');
city[2789] = new CityObject('olympic_national_park','オリンピック','america');
city[2790] = new CityObject('carlsbad_caverns_national_park','カールスバッド洞穴群','america');
city[2791] = new CityObject('petrified_forest_national_park','化石の森','america');
city[2792] = new CityObject('katmai_national_park','カトマイ国立公園','america');
city[2793] = new CityObject('canyon_de_chelly_national_monument','キャニオン・デ・シェイ','america');
city[2794] = new CityObject('canyonlands_national_park','キャニオンランズ','america');
city[2795] = new CityObject('capitol_reef_national_park','キャピトルリーフ','america');
city[2796] = new CityObject('grand_canyon_national_park','グランドキャニオン','america');
city[2797] = new CityObject('grand_teton_national_park','グランドティトン','america');
city[2798] = new CityObject('glacier_national_park','グレイシャー','america');
city[2799] = new CityObject('glacier_bay_national_park','グレイシャー・ベイ国立公園','america');
city[2800] = new CityObject('crater_lake_national_park','クレーターレイク','america');
city[2801] = new CityObject('kodiak_island','コディアック島','america');
city[2802] = new CityObject('zion_national_park','ザイオン','america');
city[2803] = new CityObject('saguaro_national_park','サワロ','america');
city[2804] = new CityObject('silicon_valley','シリコンバレー','america');
city[2805] = new CityObject('sequoia_and_kings_canyon_national_park','セコイア・キングスキャニオン','america');
city[2806] = new CityObject('mount_st_helens_national_volcanic_monument','セントヘレンズ','america');
city[2807] = new CityObject('disneyland_resort','ディズニーランド','america');
city[2808] = new CityObject('walt_disney_world','ディズニーワールド','america');
city[2809] = new CityObject('death_valley_national_park','デスバレー','america');
city[2810] = new CityObject('denali_national_park','デナリ国立公園','america');
city[2811] = new CityObject('devils_tower_national_monument','デビルスタワー','america');
city[2812] = new CityObject('north_cascades_national_park','ノースカスケード','america');
city[2813] = new CityObject('badlands_national_park','バッドランズ','america');
city[2814] = new CityObject('bryce_canyon_national_park','ブライスキャニオン','america');
city[2815] = new CityObject('gate_of_arctic_national_park','北極圏の扉国立公園','america');
city[2816] = new CityObject('white_sands_national_park','ホワイトサンズ','america');
city[2817] = new CityObject('mount_rainier_national_park','マウントレニエ','america');
city[2818] = new CityObject('mesa_verde_national_park','メサベルデ','america');
city[2819] = new CityObject('monument_valley','モニュメントバレー','america');
city[2820] = new CityObject('yosemite_national_park','ヨセミテ','america');
city[2821] = new CityObject('route_66','ルート６６','america');
city[2822] = new CityObject('rainbow_bridge_national_monument','レインボーブリッジ','america');
city[2823] = new CityObject('redwood_national_and_state_parks','レッドウッド','america');
city[2824] = new CityObject('rocky_mountain_national_park','ロッキーマウンテン','america');
city[2825] = new CityObject('the_other_spots_of_america','その他の観光地','america');
city[2826] = new CityObject('arkansas_state','アーカンソー州','america');
city[2827] = new CityObject('iowa_state','アイオワ州','america');
city[2828] = new CityObject('idaho_state','アイダホ州','america');
city[2829] = new CityObject('alaska_state','アラスカ州','america');
city[2830] = new CityObject('alabama_state','アラバマ州','america');
city[2831] = new CityObject('arizona_state','アリゾナ州','america');
city[2832] = new CityObject('illinois_state','イリノイ州','america');
city[2833] = new CityObject('indiana_state','インディアナ州','america');
city[2834] = new CityObject('wisconsin_state','ウイスコンシン州','america');
city[2835] = new CityObject('west_virginia_state','ウエストバージニア州','america');
city[2836] = new CityObject('oklahoma_state','オクラホマ州','america');
city[2837] = new CityObject('ohio_state','オハイオ州','america');
city[2838] = new CityObject('oregon_state','オレゴン州','america');
city[2839] = new CityObject('california_state','カリフォルニア州','america');
city[2840] = new CityObject('kansas_state','カンザス州','america');
city[2841] = new CityObject('kentucky_state','ケンタッキー州','america');
city[2842] = new CityObject('connecticut_state','コネチカット州','america');
city[2843] = new CityObject('colorado_state','コロラド州','america');
city[2844] = new CityObject('district_of_columbia','コロンビア特別区','america');
city[2845] = new CityObject('south_carolina_state','サウスカロライナ州','america');
city[2846] = new CityObject('south_dakota_state','サウスダコタ州','america');
city[2847] = new CityObject('georgia_state','ジョージア州','america');
city[2848] = new CityObject('texas_state','テキサス州','america');
city[2849] = new CityObject('tennessee_state','テネシー州','america');
city[2850] = new CityObject('delaware_state','デラウエア州','america');
city[2851] = new CityObject('new_jersey_state','ニュージャージー州','america');
city[2852] = new CityObject('new_hampshire_state','ニューハンプシャー州','america');
city[2853] = new CityObject('new_mexico_state','ニューメキシコ州','america');
city[2854] = new CityObject('new_york_state','ニューヨーク州','america');
city[2855] = new CityObject('nevada_state','ネバダ州','america');
city[2856] = new CityObject('nebraska_state','ネブラスカ州','america');
city[2857] = new CityObject('north_carolina_state','ノースカロライナ州','america');
city[2858] = new CityObject('north_dakota_state','ノースダコタ州','america');
city[2859] = new CityObject('virginia_state','バージニア州','america');
city[2860] = new CityObject('vermont_state','バーモント州','america');
city[2861] = new CityObject('florida_state','フロリダ州','america');
city[2862] = new CityObject('pennsylvania_state','ペンシルベニア州','america');
city[2863] = new CityObject('massachusetts_state','マサチューセッツ州','america');
city[2864] = new CityObject('michigan_state','ミシガン州','america');
city[2865] = new CityObject('mississippi_state','ミシシッピ州','america');
city[2866] = new CityObject('missouri_state','ミズーリ州','america');
city[2867] = new CityObject('minnesota_state','ミネソタ州','america');
city[2868] = new CityObject('maine_state','メイン州','america');
city[2869] = new CityObject('maryland_state','メリーランド州','america');
city[2870] = new CityObject('montana_state','モンタナ州','america');
city[2871] = new CityObject('utah_state','ユタ州','america');
city[2872] = new CityObject('louisiana_state','ルイジアナ州','america');
city[2873] = new CityObject('rhodeisland_state','ロードアイランド州','america');
city[2874] = new CityObject('wyoming_state','ワイオミング州','america');
city[2875] = new CityObject('washington_state','ワシントン州','america');
city[2876] = new CityObject('colonia','コロニア','uruguay');
city[2877] = new CityObject('punta_del_este','プンタ・デル・エステ','uruguay');
city[2878] = new CityObject('montevideo','モンテビデオ','uruguay');
city[2879] = new CityObject('the_other_cities_of_uruguay','その他の都市','uruguay');
city[2880] = new CityObject('urugenchi','ウルゲンチ','uzbekistan');
city[2881] = new CityObject('qoqon','コーカンド','uzbekistan');
city[2882] = new CityObject('samarkand','サマルカンド','uzbekistan');
city[2883] = new CityObject('shahrisabz','シャフリサーブズ','uzbekistan');
city[2884] = new CityObject('tashkent','タシケント','uzbekistan');
city[2885] = new CityObject('khiva','ヒワ','uzbekistan');
city[2886] = new CityObject('farghona','フェルガナ','uzbekistan');
city[2887] = new CityObject('bukhara','ブハラ','uzbekistan');
city[2888] = new CityObject('the_other_cities_of_uzbekistan','その他の都市','uzbekistan');
city[2889] = new CityObject('kingstown','キングスタウン','st_vincent_and_the_grenadines');
city[2890] = new CityObject('the_other_cities_of_st_vincent_and_the_grenadines','その他の都市','st_vincent_and_the_grenadines');
city[2891] = new CityObject('canaima','カナイマ','venezuela');
city[2892] = new CityObject('caracas','カラカス','venezuela');
city[2893] = new CityObject('santa_elena_de_uairen','サンタ・エレナ・デ・ウアイレン','venezuela');
city[2894] = new CityObject('ciudad_bolivar','シウダー・ボリーバル','venezuela');
city[2895] = new CityObject('puerto_la_cruz','プエルト・ラ・クルス','venezuela');
city[2896] = new CityObject('merida_ve','メリダ','venezuela');
city[2897] = new CityObject('the_other_cities_of_venezuela','その他の都市','venezuela');
city[2898] = new CityObject('guiana_highlands','ギアナ高地','venezuela');
city[2899] = new CityObject('margarita_island','マルガリータ島','venezuela');
city[2900] = new CityObject('the_other_spots_of_venezuela','その他の観光地','venezuela');
city[2901] = new CityObject('charlotte_amalie','シャーロット・アマリィ','virgin_islands');
city[2902] = new CityObject('the_other_cities_of_virgin_islands','その他の都市','virgin_islands');
city[2903] = new CityObject('saint_croix','セント・クロイ','virgin_islands');
city[2904] = new CityObject('saint_john','セント・ジョン','virgin_islands');
city[2905] = new CityObject('saint_thomas','セント・トーマス','virgin_islands');
city[2906] = new CityObject('the_other_spots_of_virgin_islands','その他の観光地','virgin_islands');
city[2907] = new CityObject('vinh_long','ヴィンロン','vietnam');
city[2908] = new CityObject('cao_bang','カオバン','vietnam');
city[2909] = new CityObject('can_tho','カントー','vietnam');
city[2910] = new CityObject('cu_chi','クチ','vietnam');
city[2911] = new CityObject('sapa','サパ','vietnam');
city[2912] = new CityObject('tay_ninh','タイニン','vietnam');
city[2913] = new CityObject('danang','ダナン','vietnam');
city[2914] = new CityObject('dalat','ダラット','vietnam');
city[2915] = new CityObject('chaudoc','チャウドック','vietnam');
city[2916] = new CityObject('dien_bien_phu','ディエンビエンフー','vietnam');
city[2917] = new CityObject('dong_dang','ドンダン','vietnam');
city[2918] = new CityObject('nha-trang','ニャチャン','vietnam');
city[2919] = new CityObject('ninh_binh','ニンビン','vietnam');
city[2920] = new CityObject('ha_tien','ハーティエン','vietnam');
city[2921] = new CityObject('hai_phong','ハイフォン','vietnam');
city[2922] = new CityObject('hanoi','ハノイ','vietnam');
city[2923] = new CityObject('buon_ma_thuot','バンメトート','vietnam');
city[2924] = new CityObject('phanthie','ファンティエット','vietnam');
city[2925] = new CityObject('phan_rang','ファンラン','vietnam');
city[2926] = new CityObject('hue','フエ','vietnam');
city[2927] = new CityObject('vung_tau','ブンタウ','vietnam');
city[2928] = new CityObject('hoi_an','ホイアン','vietnam');
city[2929] = new CityObject('ho_chi_minh','ホーチミン','vietnam');
city[2930] = new CityObject('mytho','ミト','vietnam');
city[2931] = new CityObject('mong_cai','モンカイ','vietnam');
city[2932] = new CityObject('lao_cai','ラオカイ','vietnam');
city[2933] = new CityObject('lang_son','ランソン','vietnam');
city[2934] = new CityObject('long_xuyen','ロンスエン','vietnam');
city[2935] = new CityObject('the_other_cities_of_vietnam','その他の都市','vietnam');
city[2936] = new CityObject('bai_vien_ca_na','カーナービーチ','vietnam');
city[2937] = new CityObject('ha_long','ハロン湾','vietnam');
city[2938] = new CityObject('dao_phu_quoc','フーコック島','vietnam');
city[2939] = new CityObject('the_other_spots_of_vietnam','その他の観光地','vietnam');
city[2940] = new CityObject('port_vila','ポートビラ','vanuatu');
city[2941] = new CityObject('luganville','ルーガンビル','vanuatu');
city[2942] = new CityObject('the_other_cities_of_vanuatu','その他の都市','vanuatu');
city[2943] = new CityObject('espiritu_santo_island','エスピリッツサント島','vanuatu');
city[2944] = new CityObject('efate_island','エファテ島','vanuatu');
city[2945] = new CityObject('tanna_island','タンナ島','vanuatu');
city[2946] = new CityObject('the_other_spots_of_vanuatu','その他の観光地','vanuatu');
city[2947] = new CityObject('aden','アデン','yemen');
city[2948] = new CityObject('amran','アムラン','yemen');
city[2949] = new CityObject('ibb','イッブ','yemen');
city[2950] = new CityObject('kawkaban','コーカバン','yemen');
city[2951] = new CityObject('khokha','コーハ','yemen');
city[2952] = new CityObject('sada','サーダ','yemen');
city[2953] = new CityObject('sana_a','サナア','yemen');
city[2954] = new CityObject('zabid','ザビード','yemen');
city[2955] = new CityObject('sayun','サユーン','yemen');
city[2956] = new CityObject('shibam','シバーム','yemen');
city[2957] = new CityObject('jibla','ジブラ','yemen');
city[2958] = new CityObject('shahara','シャハラ','yemen');
city[2959] = new CityObject('thula','スーラ','yemen');
city[2960] = new CityObject('taiz','タイズ','yemen');
city[2961] = new CityObject('tarim','タリム','yemen');
city[2962] = new CityObject('hajjara','ハジャラ','yemen');
city[2963] = new CityObject('hajjah','ハッジャ','yemen');
city[2964] = new CityObject('bayt_al_faqih','ベルト・アル・ファキーフ','yemen');
city[2965] = new CityObject('hodeidah','ホデイダ','yemen');
city[2966] = new CityObject('marib','マーリブ','yemen');
city[2967] = new CityObject('manakha','マナハ','yemen');
city[2968] = new CityObject('wadi_dahar','ワディ・ダハール','yemen');
city[2969] = new CityObject('the_other_cities_of_yemen','その他の都市','yemen');
city[2970] = new CityObject('beograd','ベオグラード','serbia_montenegro');
city[2971] = new CityObject('the_other_cities_of_serbia_montenegro','その他の都市','serbia_montenegro');
city[2972] = new CityObject('upington','アピントン','south_africa');
city[2973] = new CityObject('east_london','イーストロンドン','south_africa');
city[2974] = new CityObject('umtata','ウムタタ','south_africa');
city[2975] = new CityObject('eshowe','エショウエ','south_africa');
city[2976] = new CityObject('oudtshoorn','オーツホーン','south_africa');
city[2977] = new CityObject('kimberley','キンバリー','south_africa');
city[2978] = new CityObject('graaff_reinet','グラーフライネ','south_africa');
city[2979] = new CityObject('grahamstown','グラハムズタウン','south_africa');
city[2980] = new CityObject('cape_town','ケープタウン','south_africa');
city[2981] = new CityObject('coffee_bay','コーヒー・ベイ','south_africa');
city[2982] = new CityObject('sun_city','サンシティ','south_africa');
city[2983] = new CityObject('shakaland','シャカランド','south_africa');
city[2984] = new CityObject('george','ジョージ','south_africa');
city[2985] = new CityObject('stellenbosch','ステレンボッシュ','south_africa');
city[2986] = new CityObject('springbok','スプリングボック','south_africa');
city[2987] = new CityObject('durban','ダーバン','south_africa');
city[2988] = new CityObject('transkei','トランスカイ','south_africa');
city[2989] = new CityObject('knysna','ナイズナ','south_africa');
city[2990] = new CityObject('namaqualand','ナマクアランド','south_africa');
city[2991] = new CityObject('nelspruit','ネルスプリット','south_africa');
city[2992] = new CityObject('barberton','バーバトン','south_africa');
city[2993] = new CityObject('paarl','パール','south_africa');
city[2994] = new CityObject('hermanus','ハマナス','south_africa');
city[2995] = new CityObject('pietermaritzburg','ピーターマリッツバーグ','south_africa');
city[2996] = new CityObject('piet_retief','ピート・レティーフ','south_africa');
city[2997] = new CityObject('bloemfontein','ブルームフォンテン','south_africa');
city[2998] = new CityObject('pretoria','プレトリア','south_africa');
city[2999] = new CityObject('bela-bela','ベラ・ベラ','south_africa');
city[3000] = new CityObject('port_elizabeth','ポート・エリザベス','south_africa');
city[3001] = new CityObject('port_sf_johns','ポート・セント・ジョーンズ','south_africa');
city[3002] = new CityObject('beaufort_west','ボーフォート・ウエスト','south_africa');
city[3003] = new CityObject('polokwane','ポロクワネ','south_africa');
city[3004] = new CityObject('makhado','マカド','south_africa');
city[3005] = new CityObject('middelburg','ミデルバーグ','south_africa');
city[3006] = new CityObject('mossel_bay','モッセル・ベイ','south_africa');
city[3007] = new CityObject('johannesburg','ヨハネスブルグ','south_africa');
city[3008] = new CityObject('rustenburg','ラステンバーグ','south_africa');
city[3009] = new CityObject('ladysmith','レディスミス','south_africa');
city[3010] = new CityObject('the_other_cities_of_south_africa','その他の都市','south_africa');
city[3011] = new CityObject('addo_elephant_national_park','アドゥ・エレファント国立公園','south_africa');
city[3012] = new CityObject('west_coast_national_park','ウエスト・コースト国立公園','south_africa');
city[3013] = new CityObject('ukhalamba-drakensberg_park','ウカランバ・ドラケンスバーグ公園','south_africa');
city[3014] = new CityObject('augrabies_falls_national_park','オーグラビース・フォールズ国立公園','south_africa');
city[3015] = new CityObject('kgalagadi_transfrontier_park','カラハリ・トランスフロンティア公園','south_africa');
city[3016] = new CityObject('karoo_national_park','カルー国立公園','south_africa');
city[3017] = new CityObject('cape_of_good_hope_nature_reserve','喜望峰自然保護区','south_africa');
city[3018] = new CityObject('kruger_national_park','クルーガー国立公園','south_africa');
city[3019] = new CityObject('the_greater_st_lucia_wetlank_park','グレーター・セント・ルシア湿地公園','south_africa');
city[3020] = new CityObject('cape_peninsula','ケープ半島','south_africa');
city[3021] = new CityObject('hluhluwe-umfolozi_park','シュルシュルウエ・ウンフォロージ公園','south_africa');
city[3022] = new CityObject('blyde_river_canyon_nature_reserve','ブライデ・リバー・キャニオン自然保護区','south_africa');
city[3023] = new CityObject('the_other_spots_of_south_africa','その他の観光地','south_africa');
city[3024] = new CityObject('lusaka','ルサカ','zambia');
city[3025] = new CityObject('the_other_cities_of_zambia','その他の都市','zambia');
city[3026] = new CityObject('victria_falls_zm','ビクトリアの滝','zambia');
city[3027] = new CityObject('the_other_spots_of_zambia','その他の観光地','zambia');
city[3028] = new CityObject('harare','ハラレ','zimbabwe');
city[3029] = new CityObject('the_other_cities_of_zimbabwe','その他の都市','zimbabwe');
city[3030] = new CityObject('victria_falls','ビクトリアの滝','zimbabwe');
city[3031] = new CityObject('the_other_spots_of_zimbabwe','その他の観光地','zimbabwe');

