Fix bin/publish: copy docs.dist from project root

Fix bin/publish: use correct .env path for rspade_system
Fix bin/publish script: prevent grep exit code 1 from terminating script

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-10-21 02:08:33 +00:00
commit f6fac6c4bc
79758 changed files with 10547827 additions and 0 deletions

View File

@@ -0,0 +1,206 @@
<?php
namespace libphonenumber\geocoding;
use Giggsey\Locale\Locale;
use libphonenumber\NumberParseException;
use libphonenumber\PhoneNumber;
use libphonenumber\PhoneNumberType;
use libphonenumber\PhoneNumberUtil;
use libphonenumber\prefixmapper\PrefixFileReader;
class PhoneNumberOfflineGeocoder
{
/**
* @var PhoneNumberOfflineGeocoder
*/
protected static $instance;
/**
* @var PhoneNumberUtil
*/
protected $phoneUtil;
/**
* @var PrefixFileReader
*/
protected $prefixFileReader;
/**
* PhoneNumberOfflineGeocoder constructor.
* @param string|null $phonePrefixDataDirectory
*/
protected function __construct($phonePrefixDataDirectory)
{
$this->phoneUtil = PhoneNumberUtil::getInstance();
if ($phonePrefixDataDirectory === null) {
$phonePrefixDataDirectory = __DIR__ . '/data/';
}
$this->prefixFileReader = new PrefixFileReader($phonePrefixDataDirectory);
}
/**
* Gets a PhoneNumberOfflineGeocoder instance to carry out international phone number geocoding.
*
* <p>The PhoneNumberOfflineGeocoder is implemented as a singleton. Therefore, calling this method
* multiple times will only result in one instance being created.
*
* @param string|null $mappingDir (Optional) Mapping Data Directory
* @return PhoneNumberOfflineGeocoder
*/
public static function getInstance($mappingDir = null)
{
if (static::$instance === null) {
static::$instance = new static($mappingDir);
}
return static::$instance;
}
public static function resetInstance()
{
static::$instance = null;
}
/**
* As per getDescriptionForValidNumber, but explicitly checks the validity of the number
* passed in.
*
*
* @see getDescriptionForValidNumber
* @param PhoneNumber $number a valid phone number for which we want to get a text description
* @param string $locale the language code for which the description should be written
* @param string $userRegion the region code for a given user. This region will be omitted from the
* description if the phone number comes from this region. It is a two-letter uppercase CLDR region
* code.
* @return string a text description for the given language code for the given phone number, or empty
* string if the number passed in is invalid
*/
public function getDescriptionForNumber(PhoneNumber $number, $locale, $userRegion = null)
{
$numberType = $this->phoneUtil->getNumberType($number);
if ($numberType === PhoneNumberType::UNKNOWN) {
return '';
}
if (!$this->phoneUtil->isNumberGeographical($numberType, $number->getCountryCode())) {
return $this->getCountryNameForNumber($number, $locale);
}
return $this->getDescriptionForValidNumber($number, $locale, $userRegion);
}
/**
* Returns the customary display name in the given language for the given territory the phone
* number is from. If it could be from many territories, nothing is returned.
*
* @param string $locale
* @return string
*/
protected function getCountryNameForNumber(PhoneNumber $number, $locale)
{
$regionCodes = $this->phoneUtil->getRegionCodesForCountryCode($number->getCountryCode());
if (\count($regionCodes) === 1) {
return $this->getRegionDisplayName($regionCodes[0], $locale);
}
$regionWhereNumberIsValid = 'ZZ';
foreach ($regionCodes as $regionCode) {
if ($this->phoneUtil->isValidNumberForRegion($number, $regionCode)) {
// If the number has already been found valid for one region, then we don't know which
// region it belongs to so we return nothing.
if ($regionWhereNumberIsValid !== 'ZZ') {
return '';
}
$regionWhereNumberIsValid = $regionCode;
}
}
return $this->getRegionDisplayName($regionWhereNumberIsValid, $locale);
}
/**
* Returns the customary display name in the given language for the given region.
*
* @return string
*/
protected function getRegionDisplayName($regionCode, $locale)
{
if ($regionCode === null || $regionCode == 'ZZ' || $regionCode === PhoneNumberUtil::REGION_CODE_FOR_NON_GEO_ENTITY) {
return '';
}
return Locale::getDisplayRegion(
'-' . $regionCode,
$locale
);
}
/**
* Returns a text description for the given phone number, in the language provided. The
* description might consist of the name of the country where the phone number is from, or the
* name of the geographical area the phone number is from if more detailed information is
* available.
*
* <p>This method assumes the validity of the number passed in has already been checked, and that
* the number is suitable for geocoding. We consider fixed-line and mobile numbers possible
* candidates for geocoding.
*
* <p>If $userRegion is set, we also consider the region of the user. If the phone number is from
* the same region as the user, only a lower-level description will be returned, if one exists.
* Otherwise, the phone number's region will be returned, with optionally some more detailed
* information.
*
* <p>For example, for a user from the region "US" (United States), we would show "Mountain View,
* CA" for a particular number, omitting the United States from the description. For a user from
* the United Kingdom (region "GB"), for the same number we may show "Mountain View, CA, United
* States" or even just "United States".
*
* @param PhoneNumber $number a valid phone number for which we want to get a text description
* @param string $locale the language code for which the description should be written
* @param string $userRegion the region code for a given user. This region will be omitted from the
* description if the phone number comes from this region. It is a two-letter upper-case CLDR
* region code.
* @return string a text description for the given language code for the given phone number, or an
* empty string if the number could come from multiple countries, or the country code is
* in fact invalid
*/
public function getDescriptionForValidNumber(PhoneNumber $number, $locale, $userRegion = null)
{
// If the user region matches the number's region, then we just show the lower-level
// description, if one exists - if no description exists, we will show the region(country) name
// for the number.
$regionCode = $this->phoneUtil->getRegionCodeForNumber($number);
if ($userRegion == null || $userRegion == $regionCode) {
$languageStr = Locale::getPrimaryLanguage($locale);
$scriptStr = '';
$regionStr = Locale::getRegion($locale);
$mobileToken = PhoneNumberUtil::getCountryMobileToken($number->getCountryCode());
$nationalNumber = $this->phoneUtil->getNationalSignificantNumber($number);
if ($mobileToken !== '' && (!\strncmp($nationalNumber, $mobileToken, \strlen($mobileToken)))) {
// In some countries, eg. Argentina, mobile numbers have a mobile token before the national
// destination code, this should be removed before geocoding.
$nationalNumber = \substr($nationalNumber, \strlen($mobileToken));
$region = $this->phoneUtil->getRegionCodeForCountryCode($number->getCountryCode());
try {
$copiedNumber = $this->phoneUtil->parse($nationalNumber, $region);
} catch (NumberParseException $e) {
// If this happens, just reuse what we had.
$copiedNumber = $number;
}
$areaDescription = $this->prefixFileReader->getDescriptionForNumber($copiedNumber, $languageStr, $scriptStr, $regionStr);
} else {
$areaDescription = $this->prefixFileReader->getDescriptionForNumber($number, $languageStr, $scriptStr, $regionStr);
}
return (\strlen($areaDescription) > 0) ? $areaDescription : $this->getCountryNameForNumber($number, $locale);
}
// Otherwise, we just show the region(country) name for now.
return $this->getRegionDisplayName($regionCode, $locale);
// TODO: Concatenate the lower-level and country-name information in an appropriate
// way for each language.
}
}

View File

@@ -0,0 +1,412 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
'ar' =>
[
0 => 966,
],
'be' =>
[
0 => 375,
],
'bg' =>
[
0 => 359,
],
'bs' =>
[
0 => 387,
],
'de' =>
[
0 => 32,
1 => 352,
2 => 41,
3 => 43,
4 => 49,
],
'el' =>
[
0 => 30,
],
'en' =>
[
0 => 12,
1 => 13,
2 => 14,
3 => 15,
4 => 16,
5 => 17,
6 => 18,
7 => 19,
8 => 20,
9 => 212,
10 => 213,
11 => 216,
12 => 218,
13 => 220,
14 => 221,
15 => 222,
16 => 223,
17 => 224,
18 => 225,
19 => 226,
20 => 227,
21 => 228,
22 => 229,
23 => 230,
24 => 232,
25 => 233,
26 => 234,
27 => 236,
28 => 237,
29 => 238,
30 => 239,
31 => 240,
32 => 241,
33 => 242,
34 => 243,
35 => 244,
36 => 245,
37 => 247,
38 => 249,
39 => 251,
40 => 252,
41 => 254,
42 => 255,
43 => 256,
44 => 257,
45 => 258,
46 => 260,
47 => 261,
48 => 263,
49 => 264,
50 => 266,
51 => 267,
52 => 268,
53 => 269,
54 => 27,
55 => 290,
56 => 299,
57 => 30,
58 => 31,
59 => 32,
60 => 34,
61 => 351,
62 => 352,
63 => 353,
64 => 354,
65 => 355,
66 => 358,
67 => 359,
68 => 36,
69 => 370,
70 => 373,
71 => 374,
72 => 375,
73 => 380,
74 => 381,
75 => 382,
76 => 383,
77 => 385,
78 => 386,
79 => 387,
80 => 389,
81 => 39,
82 => 40,
83 => 41,
84 => 420,
85 => 421,
86 => 43,
87 => 44,
88 => 46,
89 => 47,
90 => 48,
91 => 49,
92 => 501,
93 => 504,
94 => 51,
95 => 52,
96 => 53,
97 => 54,
98 => 55,
99 => 56,
100 => 57,
101 => 58,
102 => 592,
103 => 593,
104 => 595,
105 => 598,
106 => 599,
107 => 61,
108 => 62,
109 => 63,
110 => 64,
111 => 66,
112 => 670,
113 => 672,
114 => 673,
115 => 675,
116 => 676,
117 => 678,
118 => 679,
119 => 680,
120 => 682,
121 => 685,
122 => 686,
123 => 688,
124 => 689,
125 => 690,
126 => 7,
127 => 81,
128 => 82,
129 => 84,
130 => 850,
131 => 8610,
132 => 86130,
133 => 86131,
134 => 86132,
135 => 86133,
136 => 86134,
137 => 86135,
138 => 86136,
139 => 86137,
140 => 86138,
141 => 86139,
142 => 86145,
143 => 86147,
144 => 86150,
145 => 86151,
146 => 86152,
147 => 86153,
148 => 86155,
149 => 86156,
150 => 86157,
151 => 86158,
152 => 86159,
153 => 86170,
154 => 86176,
155 => 86177,
156 => 86178,
157 => 86180,
158 => 86181,
159 => 86182,
160 => 86183,
161 => 86184,
162 => 86185,
163 => 86186,
164 => 86187,
165 => 86188,
166 => 86189,
167 => 86,
168 => 880,
169 => 886,
170 => 90,
171 => 91,
172 => 92,
173 => 93,
174 => 94,
175 => 95,
176 => 960,
177 => 961,
178 => 962,
179 => 963,
180 => 966,
181 => 967,
182 => 968,
183 => 970,
184 => 971,
185 => 972,
186 => 975,
187 => 976,
188 => 98,
189 => 992,
190 => 993,
191 => 994,
192 => 995,
193 => 996,
],
'es' =>
[
0 => 228,
1 => 230,
2 => 34,
3 => 52,
4 => 54,
5 => 56,
6 => 58,
],
'fa' =>
[
0 => 93,
1 => 98,
],
'fi' =>
[
0 => 358,
],
'fr' =>
[
0 => 212,
1 => 222,
2 => 225,
3 => 228,
4 => 229,
5 => 230,
6 => 243,
7 => 290,
8 => 32,
9 => 352,
10 => 41,
],
'hr' =>
[
0 => 387,
],
'hu' =>
[
0 => 36,
],
'hy' =>
[
0 => 374,
],
'id' =>
[
0 => 62,
],
'it' =>
[
0 => 39,
1 => 41,
],
'iw' =>
[
0 => 972,
],
'ja' =>
[
0 => 81,
],
'ko' =>
[
0 => 82,
],
'nl' =>
[
0 => 31,
1 => 32,
],
'pl' =>
[
0 => 48,
],
'pt' =>
[
0 => 238,
1 => 239,
2 => 244,
3 => 245,
4 => 258,
5 => 351,
6 => 55,
],
'ro' =>
[
0 => 373,
1 => 40,
],
'ru' =>
[
0 => 373,
1 => 374,
2 => 375,
3 => 7,
],
'sq' =>
[
0 => 383,
],
'sr' =>
[
0 => 381,
1 => 383,
2 => 387,
],
'sv' =>
[
0 => 358,
],
'th' =>
[
0 => 66,
],
'tr' =>
[
0 => 90,
],
'uk' =>
[
0 => 380,
],
'vi' =>
[
0 => 84,
],
'zh' =>
[
0 => 8610,
1 => 86130,
2 => 86131,
3 => 86132,
4 => 86133,
5 => 86134,
6 => 86135,
7 => 86136,
8 => 86137,
9 => 86138,
10 => 86139,
11 => 86145,
12 => 86147,
13 => 86150,
14 => 86151,
15 => 86152,
16 => 86153,
17 => 86155,
18 => 86156,
19 => 86157,
20 => 86158,
21 => 86159,
22 => 86170,
23 => 86176,
24 => 86177,
25 => 86178,
26 => 86180,
27 => 86181,
28 => 86182,
29 => 86183,
30 => 86184,
31 => 86185,
32 => 86186,
33 => 86187,
34 => 86188,
35 => 86189,
36 => 86,
37 => 886,
],
'zh_Hant' =>
[
0 => 886,
],
];

View File

@@ -0,0 +1,21 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
96611 => 'الرياض/الخرج',
96612 => 'مكة/جدة',
96613 => 'الدمام/الخبر/الظهران',
96614 => 'المدينة المنورة/عرعر/تبوك/ينبع البحر',
96616 => 'حائل/القصيم',
96617 => 'أبها/نجران/جازان',
];

View File

@@ -0,0 +1,134 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
3751511 => 'Вялікая Бераставіца, Гродзенская вобласць',
3751512 => 'Ваўкавыск',
3751513 => 'Свіслач, Гродзенская вобласць',
3751514 => 'Шчучын, Гродзенская вобласць',
3751515 => 'Масты, Гродзенская вобласць',
375152 => 'Гродна',
375154 => 'Ліда',
3751562 => 'Слонім',
3751563 => 'Дзятлава, Гродзенская вобласць',
3751564 => 'Зэльва, Гродзенская вобласць',
3751591 => 'Астравец, Гродзенская вобласць',
3751592 => 'Смаргонь',
3751593 => 'Ашмяны',
3751594 => 'Воранава, Гродзенская вобласць',
3751595 => 'Іўе, Гродзенская вобласць',
3751596 => 'Карэлічы, Гродзенская вобласць',
3751597 => 'Навагрудак',
375162 => 'Брэст',
375163 => 'Баранавічы',
3751631 => 'Камянец, Брэсцкая вобласць',
3751632 => 'Пружаны, Брэсцкая вобласць',
3751633 => 'Ляхавічы, Брэсцкая вобласць',
3751641 => 'Жабінка, Брэсцкая вобласць',
3751642 => 'Кобрын',
3751643 => 'Бяроза, Брэсцкая вобласць',
3751644 => 'Драгічын, Брэсцкая вобласць',
3751645 => 'Івацэвічы, Брэсцкая вобласць',
3751646 => 'Ганцавічы, Брэсцкая вобласць',
3751647 => 'Лунінец, Брэсцкая вобласць',
375165 => 'Пінск',
3751651 => 'Маларыта, Брэсцкая вобласць',
3751652 => 'Іванава, Брэсцкая вобласць',
3751655 => 'Столін, Брэсцкая вобласць',
37517 => 'Мінск',
3751713 => 'Мар’іна Горка, Мінская вобласць',
3751714 => 'Чэрвень',
3751715 => 'Беразіно, Мінская вобласць',
3751716 => 'Дзяржынск',
3751717 => 'Стаўбцы',
3751718 => 'Узда, Мінская вобласць',
3751719 => 'Капыль, Мінская вобласць',
375174 => 'Салігорск',
375176 => 'Маладзечна',
375177 => 'Барысаў',
3751770 => 'Нясвіж',
3751771 => 'Вілейка',
3751772 => 'Валожын',
3751774 => 'Лагойск',
3751775 => 'Жодзіна',
3751776 => 'Смалявічы',
3751792 => 'Старыя Дарогі, Мінская вобласць',
3751793 => 'Клецк, Мінская вобласць',
3751794 => 'Любань, Мінская вобласць',
3751795 => 'Слуцк',
3751796 => 'Крупкі, Мінская вобласць',
3751797 => 'Мядзел',
375212 => 'Віцебск',
3752130 => 'Шуміліна, Віцебская вобласць',
3752131 => 'Бешанковічы, Віцебская вобласць',
3752132 => 'Лепель',
3752133 => 'Чашнікі, Віцебская вобласць',
3752135 => 'Сянно, Віцебская вобласць',
3752136 => 'Талачын',
3752137 => 'Дуброўна, Віцебская вобласць',
3752138 => 'Лёзна, Віцебская вобласць',
3752139 => 'Гарадок, Віцебская вобласць',
375214 => 'Полацк/Наваполацк',
3752151 => 'Верхнядзвінск, Віцебская вобласць',
3752152 => 'Міёры, Віцебская вобласць',
3752153 => 'Браслаў',
3752154 => 'Шаркоўшчына, Віцебская вобласць',
3752155 => 'Паставы',
3752156 => 'Глыбокае',
3752157 => 'Докшыцы, Віцебская вобласць',
3752158 => 'Ушачы, Віцебская вобласць',
3752159 => 'Расоны, Віцебская вобласць',
375216 => 'Орша',
375222 => 'Магілёў',
3752230 => 'Глуск, Магілёўская вобласць',
3752231 => 'Быхаў, Магілёўская вобласць',
3752232 => 'Бялынічы, Магілёўская вобласць',
3752233 => 'Горкі, Магілёўская вобласць',
3752234 => 'Круглае, Магілёўская вобласць',
3752235 => 'Асіповічы',
3752236 => 'Клічаў, Магілёўская вобласць',
3752237 => 'Кіраўск, Магілёўская вобласць',
3752238 => 'Краснаполле, Магілёўская вобласць',
3752239 => 'Шклоў',
3752240 => 'Мсціслаў',
3752241 => 'Крычаў, Магілёўская вобласць',
3752242 => 'Чавусы, Магілёўская вобласць',
3752243 => 'Чэрыкаў, Магілёўская вобласць',
3752244 => 'Клімавічы, Магілёўская вобласць',
3752245 => 'Касцюковічы, Магілёўская вобласць',
3752246 => 'Слаўгарад, Магілёўская вобласць',
3752247 => 'Хоцімск, Магілёўская вобласць',
3752248 => 'Дрыбін, Магілёўская вобласць',
375225 => 'Бабруйск',
375232 => 'Гомель',
3752330 => 'Ветка, Гомельская вобласць',
3752332 => 'Чачэрск, Гомельская вобласць',
3752333 => 'Добруш, Гомельская вобласць',
3752334 => 'Жлобін',
3752336 => 'Буда-Кашалёва, Гомельская вобласць',
3752337 => 'Карма, Гомельская вобласць',
3752339 => 'Рагачоў',
3752340 => 'Рэчыца',
3752342 => 'Светлагорск',
3752344 => 'Брагін, Гомельская вобласць',
3752345 => 'Калінкавічы',
3752346 => 'Хойнікі, Гомельская вобласць',
3752347 => 'Лоеў, Гомельская вобласць',
3752350 => 'Петрыкаў, Гомельская вобласць',
3752353 => 'Жыткавічы, Гомельская вобласць',
3752354 => 'Ельск, Гомельская вобласць',
3752355 => 'Нароўля, Гомельская вобласць',
3752356 => 'Лельчыцы, Гомельская вобласць',
3752357 => 'Акцябрскі, Гомельская вобласць',
375236 => 'Мазыр',
];

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,27 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
38730 => 'Srednjobosanski kanton',
38731 => 'Posavski kanton',
38732 => 'Zeničko-dobojski kanton',
38733 => 'Kanton Sarajevo',
38734 => 'kanton 10',
38735 => 'Tuzlanski kanton',
38736 => 'Hercegovačko-neretvanski kanton',
38737 => 'Unsko-sanski kanton',
38738 => 'Bosansko-podrinjski kanton Goražde',
38739 => 'Zapadnohercegovački kanton',
3874 => 'Brčko Distrikt',
38757 => 'Istočno Sarajevo',
];

View File

@@ -0,0 +1,30 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
3212 => 'Tongern',
3215 => 'Mecheln',
3216 => 'Löwen',
322 => 'Brüssel',
323 => 'Antwerpen',
3242 => 'Lüttich',
3243 => 'Lüttich',
3250 => 'Brügge',
3257 => 'Ypern',
3259 => 'Ostende',
3263 => 'Arel',
3265 => 'Bergen',
3280 => 'Stablo',
3281 => 'Namür',
329 => 'Gent',
];

View File

@@ -0,0 +1,238 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
35222 => 'Luxemburg',
35223 => 'Bad Mondorf',
352240 => 'Luxemburg',
352241 => 'Luxemburg',
352242 => 'Luxemburg',
3522421 => 'Weicherdingen',
3522423 => 'Bad Mondorf',
3522427 => 'Belair, Luxemburg',
3522429 => 'Luxemburg/Kockelscheuer',
3522430 => 'Kanton Capellen/Kehlen',
3522431 => 'Bartringen',
3522432 => 'Lintgen/Kanton Mersch/Steinfort',
3522433 => 'Walferdingen',
3522434 => 'Rammeldingen/Senningerberg',
3522435 => 'Sandweiler/Mutfort/Roodt-sur-Syre',
3522436 => 'Hesperingen/Kockelscheuer/Roeser',
3522437 => 'Leudelingen/Ehlingen/Monnerich',
3522438 => 'Luxemburg',
3522439 => 'Windhof/Steinfort',
3522440 => 'Howald',
3522441 => 'Luxemburg',
3522442 => 'Plateau de Kirchberg',
3522443 => 'Findel/Kirchberg',
3522444 => 'Luxemburg',
3522445 => 'Diedrich',
3522446 => 'Luxemburg',
3522447 => 'Lintgen',
3522448 => 'Contern/Foetz',
3522449 => 'Howald',
3522450 => 'Bascharage/Petingen/Rodingen',
3522451 => 'Düdelingen/Bettemburg/Livingen',
3522452 => 'Düdelingen',
3522453 => 'Esch-sur-Alzette',
3522454 => 'Esch-sur-Alzette',
3522455 => 'Esch-sur-Alzette/Monnerich',
3522456 => 'Rümelingen',
3522457 => 'Esch-sur-Alzette/Schifflingen',
3522458 => 'Soleuvre/Differdingen',
3522459 => 'Soleuvre',
352246 => 'Luxemburg',
3522467 => 'Düdelingen',
3522470 => 'Luxemburg',
3522471 => 'Betzdorf',
3522472 => 'Echternach',
3522473 => 'Rosport',
3522474 => 'Wasserbillig',
3522475 => 'Distrikt Grevenmacher-sur-Moselle',
3522476 => 'Wormeldingen',
3522477 => 'Luxemburg',
3522478 => 'Junglinster',
3522479 => 'Berdorf/Consdorf',
3522480 => 'Diekirch',
3522481 => 'Ettelbrück/Reckange-sur-Mess',
3522482 => 'Luxemburg',
3522483 => 'Vianden',
3522484 => 'Han/Lesse',
3522485 => 'Bissen/Roost',
3522486 => 'Luxemburg',
3522487 => 'Fels',
3522488 => 'Mertzig/Wahl',
3522489 => 'Luxemburg',
352249 => 'Luxemburg',
3522492 => 'Kanton Clerf/Fischbach/Hosingen',
3522495 => 'Wiltz',
3522497 => 'Huldingen',
3522499 => 'Ulflingen',
35225 => 'Luxemburg',
3522621 => 'Weicherdingen',
3522622 => 'Luxemburg',
3522623 => 'Bad Mondorf',
3522625 => 'Luxemburg',
3522627 => 'Belair, Luxemburg',
3522628 => 'Luxemburg',
3522629 => 'Luxemburg/Kockelscheuer',
3522630 => 'Kanton Capellen/Kehlen',
3522631 => 'Bartringen',
3522632 => 'Lintgen/Kanton Mersch/Steinfort',
3522633 => 'Walferdingen',
3522634 => 'Rammeldingen/Senningerberg',
3522635 => 'Sandweiler/Mutfort/Roodt-sur-Syre',
3522636 => 'Hesperingen/Kockelscheuer/Roeser',
3522637 => 'Leudelingen/Ehlingen/Monnerich',
3522639 => 'Windhof/Steinfort',
3522640 => 'Howald',
3522642 => 'Plateau de Kirchberg',
3522643 => 'Findel/Kirchberg',
3522645 => 'Diedrich',
3522647 => 'Lintgen',
3522648 => 'Contern/Foetz',
3522649 => 'Howald',
3522650 => 'Bascharage/Petingen/Rodingen',
3522651 => 'Düdelingen/Bettemburg/Livingen',
3522652 => 'Düdelingen',
3522653 => 'Esch-sur-Alzette',
3522654 => 'Esch-sur-Alzette',
3522655 => 'Esch-sur-Alzette/Monnerich',
3522656 => 'Rümelingen',
3522657 => 'Esch-sur-Alzette/Schifflingen',
3522658 => 'Soleuvre/Differdingen',
3522659 => 'Soleuvre',
3522667 => 'Düdelingen',
3522671 => 'Betzdorf',
3522672 => 'Echternach',
3522673 => 'Rosport',
3522674 => 'Wasserbillig',
3522675 => 'Distrikt Grevenmacher-sur-Moselle',
3522676 => 'Wormeldingen',
3522678 => 'Junglinster',
3522679 => 'Berdorf/Consdorf',
3522680 => 'Diekirch',
3522681 => 'Ettelbrück/Reckange-sur-Mess',
3522683 => 'Vianden',
3522684 => 'Han/Lesse',
3522685 => 'Bissen/Roost',
3522687 => 'Fels',
3522688 => 'Mertzig/Wahl',
3522692 => 'Kanton Clerf/Fischbach/Hosingen',
3522695 => 'Wiltz',
3522697 => 'Huldingen',
3522699 => 'Ulflingen',
3522721 => 'Weicherdingen',
3522722 => 'Luxemburg',
3522723 => 'Bad Mondorf',
3522725 => 'Luxemburg',
3522727 => 'Belair, Luxemburg',
3522728 => 'Luxemburg',
3522729 => 'Luxemburg/Kockelscheuer',
3522730 => 'Kanton Capellen/Kehlen',
3522731 => 'Bartringen',
3522732 => 'Lintgen/Kanton Mersch/Steinfort',
3522733 => 'Walferdingen',
3522734 => 'Rammeldingen/Senningerberg',
3522735 => 'Sandweiler/Mutfort/Roodt-sur-Syre',
3522736 => 'Hesperingen/Kockelscheuer/Roeser',
3522737 => 'Leudelingen/Ehlingen/Monnerich',
3522739 => 'Windhof/Steinfort',
3522740 => 'Howald',
3522742 => 'Plateau de Kirchberg',
3522743 => 'Findel/Kirchberg',
3522745 => 'Diedrich',
3522747 => 'Lintgen',
3522748 => 'Contern/Foetz',
3522749 => 'Howald',
3522750 => 'Bascharage/Petingen/Rodingen',
3522751 => 'Düdelingen/Bettemburg/Livingen',
3522752 => 'Düdelingen',
3522753 => 'Esch-sur-Alzette',
3522754 => 'Esch-sur-Alzette',
3522755 => 'Esch-sur-Alzette/Monnerich',
3522756 => 'Rümelingen',
3522757 => 'Esch-sur-Alzette/Schifflingen',
3522758 => 'Soleuvre/Differdingen',
3522759 => 'Soleuvre',
3522767 => 'Düdelingen',
3522771 => 'Betzdorf',
3522772 => 'Echternach',
3522773 => 'Rosport',
3522774 => 'Wasserbillig',
3522775 => 'Distrikt Grevenmacher-sur-Moselle',
3522776 => 'Wormeldingen',
3522778 => 'Junglinster',
3522779 => 'Berdorf/Consdorf',
3522780 => 'Diekirch',
3522781 => 'Ettelbrück/Reckange-sur-Mess',
3522783 => 'Vianden',
3522784 => 'Han/Lesse',
3522785 => 'Bissen/Roost',
3522787 => 'Fels',
3522788 => 'Mertzig/Wahl',
3522792 => 'Kanton Clerf/Fischbach/Hosingen',
3522795 => 'Wiltz',
3522797 => 'Huldingen',
3522799 => 'Ulflingen',
35228 => 'Luxemburg',
35229 => 'Luxemburg',
35230 => 'Kanton Capellen/Kehlen',
35231 => 'Bartringen',
35232 => 'Kanton Mersch',
35233 => 'Walferdingen',
35234 => 'Rammeldingen/Senningerberg',
35235 => 'Sandweiler/Mutfort/Roodt-sur-Syre',
35236 => 'Hesperingen/Kockelscheuer/Roeser',
35237 => 'Leudelingen/Ehlingen/Monnerich',
35239 => 'Windhof/Steinfort',
35240 => 'Howald',
35241 => 'Luxemburg',
35242 => 'Plateau de Kirchberg',
35243 => 'Findel/Kirchberg',
35244 => 'Luxemburg',
35245 => 'Diedrich',
35246 => 'Luxemburg',
35247 => 'Lintgen',
35248 => 'Contern/Foetz',
35249 => 'Howald',
35250 => 'Bascharage/Petingen/Rodingen',
35251 => 'Düdelingen/Bettemburg/Livingen',
35252 => 'Düdelingen',
35253 => 'Esch-sur-Alzette',
35254 => 'Esch-sur-Alzette',
35255 => 'Esch-sur-Alzette/Monnerich',
35256 => 'Rümelingen',
35257 => 'Esch-sur-Alzette/Schifflingen',
35258 => 'Differdingen',
35259 => 'Soleuvre',
35271 => 'Betzdorf',
35272 => 'Echternach',
35273 => 'Rosport',
35274 => 'Wasserbillig',
35275 => 'Distrikt Grevenmacher',
35276 => 'Wormeldingen',
35278 => 'Junglinster',
35279 => 'Berdorf/Consdorf',
35280 => 'Diekirch',
35281 => 'Ettelbrück',
35283 => 'Vianden',
35284 => 'Han/Lesse',
35285 => 'Bissen/Roost',
35287 => 'Fels',
35288 => 'Mertzig/Wahl',
35292 => 'Kanton Clerf/Fischbach/Hosingen',
35295 => 'Wiltz',
35297 => 'Huldingen',
35299 => 'Ulflingen',
];

View File

@@ -0,0 +1,23 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
4122 => 'Genf',
4126 => 'Freiburg',
4127 => 'Sitten',
4131 => 'Bern',
4132 => 'Biel/Neuenburg/Solothurn/Jura',
4141 => 'Luzern',
4143 => 'Zürich',
4144 => 'Zürich',
];

View File

@@ -0,0 +1,137 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
4312 => 'Wien',
4313 => 'Wien',
4314 => 'Wien',
4315 => 'Wien',
4316 => 'Wien',
4317 => 'Wien',
4318 => 'Wien',
4319 => 'Wien',
432233 => 'Preßbaum',
432242 => 'Sankt Andrä-Wördern',
432249 => 'Groß-Enzersdorf',
432263 => 'Großrußbach',
432268 => 'Großmugl',
432556 => 'Großkrut',
432617 => 'Draßmarkt',
432618 => 'Markt Sankt Martin',
432629 => 'Warth, Niederösterreich',
432642 => 'Aspangberg-Sankt Peter',
432647 => 'Krumbach, Niederösterreich',
432674 => 'Weißenbach an der Triesting',
432680 => 'Sankt Margarethen im Burgenland',
432686 => 'Draßburg',
432715 => 'Weißenkirchen in der Wachau',
432719 => 'Droß',
432742 => 'Sankt Pölten',
432756 => 'Sankt Leonhard am Forst',
432763 => 'Sankt Veit an der Gölsen',
432768 => 'Sankt Aegyd am Neuwalde',
432812 => 'Groß Gerungs',
432815 => 'Großschönau',
432822 => 'Zwettl-Niederösterreich',
432823 => 'Großglobnitz',
432847 => 'Groß-Siegharts',
432857 => 'Bad Großpertholz',
432955 => 'Großweikersdorf',
432987 => 'Sankt Leonhard am Hornerwald',
433119 => 'Sankt Marein bei Graz',
433123 => 'Sankt Oswald bei Plankenwarth',
433140 => 'Sankt Martin am Wöllmißberg',
433158 => 'Sankt Anna am Aigen',
433178 => 'Sankt Ruprecht an der Raab',
433183 => 'Sankt Georgen an der Stiefing',
433327 => 'Sankt Michael im Burgenland',
433331 => 'Sankt Lorenzen am Wechsel',
433362 => 'Großpetersdorf',
433386 => 'Großsteinbach',
433464 => 'Groß Sankt Florian',
433468 => 'Sankt Oswald ob Eibiswald',
433469 => 'Sankt Oswald im Freiland',
433477 => 'Sankt Peter am Ottersbach',
433515 => 'Sankt Lorenzen bei Knittelfeld',
433536 => 'Sankt Peter am Kammersberg',
433537 => 'Sankt Georgen ob Murau',
433575 => 'Sankt Johann am Tauern',
433585 => 'Sankt Lambrecht',
433632 => 'Sankt Gallen',
433684 => 'Sankt Martin am Grimming',
433689 => 'Sankt Nikolai im Sölktal',
433834 => 'Wald am Schoberpaß',
433843 => 'Sankt Michael in Obersteiermark',
433864 => 'Sankt Marein im Mürztal',
433868 => 'Tragöß',
433869 => 'Sankt Katharein an der Laming',
434212 => 'Sankt Veit an der Glan',
434226 => 'Sankt Margareten im Rosental',
434239 => 'Sankt Kanzian am Klopeiner See',
434253 => 'Sankt Jakob im Rosental',
434264 => 'Klein Sankt Paul',
434266 => 'Straßburg',
434283 => 'Sankt Stefan im Gailtal',
434286 => 'Weißbriach',
434350 => 'Bad Sankt Leonhard im Lavanttal',
434357 => 'Sankt Paul im Lavanttal',
434358 => 'Sankt Andrä',
434783 => 'Reißeck',
434785 => 'Außerfragant',
434825 => 'Großkirchheim',
434843 => 'Außervillgraten',
434873 => 'Sankt Jakob in Defereggen',
434876 => 'Kals am Großglockner',
434877 => 'Prägraten am Großvenediger',
434879 => 'Sankt Veit in Defereggen',
435245 => 'Hinterriß',
435279 => 'Sankt Jodok am Brenner',
435352 => 'Sankt Johann in Tirol',
435413 => 'Sankt Leonhard im Pitztal',
435446 => 'Sankt Anton am Arlberg',
435449 => 'Fließ',
435557 => 'Sankt Gallenkirch',
435678 => 'Weißenbach am Lech',
436138 => 'Sankt Wolfgang im Salzkammergut',
436215 => 'Straßwalchen',
436227 => 'Sankt Gilgen',
436241 => 'Sankt Koloman',
436242 => 'Rußbach am Paß Gschütt',
436247 => 'Großgmain',
436276 => 'Nußdorf am Haunsberg',
436277 => 'Sankt Pantaleon',
436412 => 'Sankt Johann im Pongau',
436414 => 'Großarl',
436476 => 'Sankt Margarethen im Lungau',
436477 => 'Sankt Michael im Lungau',
436545 => 'Bruck an der Großglocknerstraße',
436546 => 'Fusch an der Großglocknerstraße',
436565 => 'Neukirchen am Großvenediger',
437217 => 'Sankt Veit im Mühlkreis',
437218 => 'Großtraberg',
437219 => 'Vorderweißenbach',
437224 => 'Sankt Florian',
437232 => 'Sankt Martin im Mühlkreis',
437237 => 'Sankt Georgen an der Gusen',
437254 => 'Großraming',
437435 => 'Sankt Valentin',
437477 => 'Sankt Peter in der Au',
437565 => 'Sankt Pankraz',
437566 => 'Rosenau am Hengstpaß',
437667 => 'Sankt Georgen im Attergau',
437717 => 'Sankt Aegidi',
437751 => 'Sankt Martin im Innkreis',
437945 => 'Sankt Oswald bei Freistadt',
437954 => 'Sankt Georgen am Walde',
437956 => 'Unterweißenbach',
];

View File

@@ -0,0 +1,64 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
492203 => 'Köln-Porz',
49221 => 'Köln',
492339 => 'Sprockhövel-Haßlinghausen',
4934445 => 'Stößen',
4934493 => 'Gößnitz Thüringen',
4934901 => 'Roßlau Elbe',
4935240 => 'Tauscha bei Großenhain',
4935248 => 'Schönfeld bei Großenhain',
4935726 => 'Groß Särchen',
4935753 => 'Großräschen',
4935841 => 'Großschönau Sachsen',
4935938 => 'Großpostwitz OL',
4935952 => 'Großröhrsdorf OL',
4936072 => 'Weißenborn-Lüderode',
493647 => 'Pößneck',
4936484 => 'Knau bei Pößneck',
4936705 => 'Oberweißbach Thüringer Wald',
4936949 => 'Obermaßfeld-Grimmenthal',
4938234 => 'Born Darß',
4939883 => 'Groß Dölln',
4939934 => 'Groß Plasten',
4939976 => 'Groß Bützin',
494483 => 'Ovelgönne-Großenmeer',
494497 => 'Barßel-Harkebrügge',
494509 => 'Groß Grönau',
494684 => 'Langeneß Hallig',
495053 => 'Faßberg-Müden',
495064 => 'Groß Düngen',
495384 => 'Seesen-Groß Rhüden',
495827 => 'Unterlüß',
496252 => 'Heppenheim Bergstraße',
496321 => 'Neustadt an der Weinstraße',
496364 => 'Nußbach Pfalz',
496663 => 'Steinau an der Straße',
497162 => 'Süßen',
497351 => 'Biberach an der Riß',
497355 => 'Hochdorf Riß',
498170 => 'Straßlach-Dingharting',
498367 => 'Roßhaupten Forggensee',
498536 => 'Kößlarn',
498633 => 'Tüßling',
498807 => 'Dießen am Ammersee',
4989 => 'München',
49911 => 'Nürnberg',
499141 => 'Weißenburg in Bayern',
499242 => 'Gößweinstein',
499567 => 'Seßlach-Gemünda',
499636 => 'Plößberg',
499656 => 'Moosbach bei Vohenstrauß',
];

View File

@@ -0,0 +1,255 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
3021 => 'Αθήνα/Πειραιάς/Σαλαμίνα',
302221 => 'Χαλκίδα',
302222 => 'Κύμη',
302223 => 'Αλιβέρι',
302224 => 'Κάρυστος',
302226 => 'Αιδηψός',
302227 => 'Μαντούδι',
302228 => 'Ψαχνά',
302229 => 'Ερέτρια',
302231 => 'Λαμία',
302232 => 'Δομοκός',
302233 => 'Αταλάντη',
302234 => 'Αμφίκλεια',
302235 => 'Καμμένα Βούρλα',
302236 => 'Μακρακώμη',
302237 => 'Καρπενήσι',
302238 => 'Στυλίδα',
302241 => 'Ρόδος',
302242 => 'Κως',
302243 => 'Κάλυμνος',
302244 => 'Αρχάγγελος',
302245 => 'Κάρπαθος',
302246 => 'Τήλος/Σύμη/Χάλκη/Μεγίστη',
302247 => 'Λέρος',
302251 => 'Μυτιλήνη',
302252 => 'Αγιάσος/Πλωμάρι',
302253 => 'Καλλονή/Μήθυμνα',
302254 => 'Άγιος Ευστράτιος/Μούδρος/Μύρινα',
302261 => 'Λειβαδιά',
302262 => 'Θήβα',
302263 => 'Βίλια',
302264 => 'Δόμβραινα',
302265 => 'Άμφισσα',
302266 => 'Λιδορίκι',
302267 => 'Δίστομο',
302268 => 'Αλίαρτος',
302271 => 'Χίος',
302272 => 'Καρδάμυλα',
302273 => 'Σάμος',
302274 => 'Βολισσός',
302275 => 'Άγιος Κήρυκος',
302281 => 'Σύρος',
302282 => 'Άνδρος',
302283 => 'Τήνος',
302284 => 'Πάρος',
302285 => 'Νάξος',
302286 => 'Θήρα',
302287 => 'Μήλος',
302288 => 'Κέα',
302289 => 'Μύκονος',
302291 => 'Λαγονήσι',
302292 => 'Λαύριο',
302293 => 'Άγιος Σωτήρας',
302294 => 'Ραφήνα',
302295 => 'Αφίδναι',
302296 => 'Μέγαρα/Νέα Πέραμος',
302297 => 'Αίγινα',
302298 => 'Μέθανα/Πόρος/Σπέτσες',
302299 => 'Μαρκόπουλο',
30231 => 'Θεσσαλονίκη',
302321 => 'Σέρρες',
302322 => 'Νιγρίτα',
302323 => 'Σιδηρόκαστρο',
302324 => 'Νέα Ζίχνη',
302325 => 'Ηράκλεια, Σερρών',
302327 => 'Ροδόπολη, Σερρών',
302331 => 'Βέροια',
302332 => 'Νάουσα',
302333 => 'Αλεξάνδρεια',
302341 => 'Κιλκίς',
302343 => 'Πολύκαστρο',
302351 => 'Κατερίνη',
302352 => 'Λιτόχωρο',
302353 => 'Αιγίνιο',
302371 => 'Πολύγυρος',
302372 => 'Αρναία',
302373 => 'Νέα Μουδανιά',
302374 => 'Κασσάνδρεια',
302375 => 'Νικήτη',
302376 => 'Στρατώνι',
302377 => 'Άγιον Όρος/Ιερισσός',
302381 => 'Έδεσσα',
302382 => 'Γιαννιτσά',
302384 => 'Αριδαία',
302385 => 'Φλώρινα',
302386 => 'Αμύνταιο',
302391 => 'Χαλκηδόνα',
302392 => 'Περαία',
302393 => 'Λαγκαδίκια',
302394 => 'Λαγκαδάς',
302395 => 'Σοχός',
302396 => 'Βασιλικά',
302397 => 'Ασπροβάλτα',
302399 => 'Καλλικράτεια',
30241 => 'Λάρισα',
302421 => 'Βόλος',
302422 => 'Αλμυρός',
302423 => 'Καλά Νερά',
302424 => 'Σκόπελος',
302425 => 'Βελεστίνο',
302426 => 'Ζαγορά',
302427 => 'Σκιάθος',
302431 => 'Τρίκαλα',
302432 => 'Καλαμπάκα',
302433 => 'Φαρκαδόνα',
302434 => 'Πύλη',
302441 => 'Καρδίτσα',
302443 => 'Σοφάδες',
302444 => 'Παλαμάς',
302445 => 'Μουζάκι',
302461 => 'Κοζάνη',
302462 => 'Γρεβενά',
302463 => 'Πτολεμαΐδα',
302464 => 'Σέρβια',
302465 => 'Σιάτιστα',
302467 => 'Καστοριά',
302468 => 'Νεάπολη',
302491 => 'Φάρσαλα',
302492 => 'Τύρναβος',
302493 => 'Ελασσόνα',
302494 => 'Αγιά',
302495 => 'Γόννοι/Μακρυχώρι',
30251 => 'Καβάλα',
302521 => 'Δράμα',
302522 => 'Προσοτσάνη',
302523 => 'Κάτω Νευροκόπι',
302524 => 'Παρανέστι',
302531 => 'Κομοτηνή',
302532 => 'Σάπες',
302533 => 'Ξυλαγανή',
302534 => 'Ίασμος',
302535 => 'Νέα Καλλίστη',
302541 => 'Ξάνθη',
302542 => 'Σταυρούπολη',
302544 => 'Εχίνος',
302551 => 'Αλεξανδρούπολη',
302552 => 'Ορεστιάδα',
302553 => 'Διδυμότειχο',
302554 => 'Σουφλί',
302555 => 'Φέρες',
302556 => 'Κυπρίνος',
302591 => 'Χρυσούπολη',
302592 => 'Ελευθερούπολη',
302593 => 'Θάσος',
302594 => 'Νέα Πέραμος Καβάλας',
30261 => 'Πάτρα',
302621 => 'Πύργος',
302622 => 'Αμαλιάδα',
302623 => 'Λεχαινά',
302624 => 'Αρχαία Ολυμπία',
302625 => 'Κρέστενα',
302626 => 'Ανδρίτσαινα',
302631 => 'Μεσολόγγι',
302632 => 'Αιτωλικό',
302634 => 'Ναύπακτος',
302635 => 'Ματαράγκα',
302641 => 'Αγρίνιο',
302642 => 'Αμφιλοχία',
302643 => 'Βόνιτσα',
302644 => 'Θερμό',
302645 => 'Λευκάδα',
302647 => 'Νέο Χαλκιόπουλο/Φυτείες',
302651 => 'Ιωάννινα',
302653 => 'Καρυές Ασπραγγέλων',
302655 => 'Κόνιτσα/Πέρδικα Δωδώνης',
302656 => 'Μέτσοβο',
302657 => 'Δελβινάκι',
302658 => 'Ζίτσα',
302659 => 'Καλέντζι Δωδώνης',
302661 => 'Κέρκυρα',
302662 => 'Λευκίμμη',
302663 => 'Σκριπερό',
302664 => 'Φιλιάτες',
302665 => 'Ηγουμενίτσα',
302666 => 'Παραμυθιά',
302671 => 'Αργοστόλι',
302674 => 'Σάμη',
302681 => 'Άρτα',
302682 => 'Πρέβεζα',
302683 => 'Φιλιππιάδα',
302684 => 'Καναλλάκι',
302685 => 'Βουργαρέλι',
302691 => 'Αίγιο',
302692 => 'Καλάβρυτα',
302693 => 'Κάτω Αχαΐα',
302694 => 'Χαλανδρίτσα',
302695 => 'Ζάκυνθος',
302696 => 'Ακράτα',
30271 => 'Τρίπολη',
302721 => 'Καλαμάτα',
302722 => 'Μεσσήνη',
302723 => 'Πύλος',
302724 => 'Μελιγαλάς',
302725 => 'Κορώνη Πυλίας',
302731 => 'Σπάρτη',
302732 => 'Μολάοι',
302733 => 'Γύθειο',
302734 => 'Νεάπολη',
302735 => 'Σκάλα',
302736 => 'Κύθηρα',
302741 => 'Κόρινθος',
302742 => 'Κιάτο',
302743 => 'Ξυλόκαστρο',
302744 => 'Λουτράκι',
302746 => 'Νεμέα',
302747 => 'Καλιανοί',
302751 => 'Άργος',
302752 => 'Ναύπλιο',
302753 => 'Λυγουριό',
302754 => 'Κρανίδι',
302755 => 'Άστρος',
302757 => 'Λεωνίδιο',
302761 => 'Κυπαρισσία',
302763 => 'Γαργαλιάνοι',
302765 => 'Κοπανάκι',
302791 => 'Μεγαλόπολη',
302792 => 'Καστρί Κυνουρίας',
302795 => 'Βυτίνα',
302796 => 'Λεβίδι',
302797 => 'Τροπαία',
30281 => 'Ηράκλειο',
302821 => 'Χανιά',
302822 => 'Κίσσαμος',
302823 => 'Κάντανος',
302824 => 'Κολυμβάρι',
302825 => 'Βάμος',
302831 => 'Ρέθυμνο',
302832 => 'Σπήλι',
302833 => 'Αμάρι',
302834 => 'Πέραμα Μυλοποτάμου',
302841 => 'Άγιος Νικόλαος',
302842 => 'Ιεράπετρα',
302843 => 'Σητεία',
302844 => 'Τζερμιάδο',
302891 => 'Αρκαλοχώρι',
302892 => 'Μοίρες, Ηράκλειο',
302893 => 'Πύργος, Κρήτη',
302894 => 'Αγία Βαρβάρα, Ηράκλειο Κρήτης',
302895 => 'Άνω Βιάννος',
302897 => 'Λιμένας Χερσονήσου',
];

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,43 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2013 => 'Banha',
2015 => '10th of Ramadan',
202 => 'Cairo/Giza/Qalyubia',
203 => 'Alexandria',
2040 => 'Tanta',
2045 => 'Damanhur',
2046 => 'Marsa Matruh',
2047 => 'Kafr El-Sheikh',
2048 => 'Monufia',
2050 => 'Mansoura',
2055 => 'Zagazig',
20554 => '10th of Ramadan',
2057 => 'Damietta',
2062 => 'Suez',
2064 => 'Ismailia',
2065 => 'Red Sea',
2066 => 'Port Said',
2068 => 'El-Arish',
2069 => 'El-Tor',
2082 => 'Beni Suef',
2084 => 'Fayoum',
2086 => 'Minia',
2088 => 'Assiout',
2092 => 'Wadi El-Gedid',
2093 => 'Sohag',
2095 => 'Luxor',
2096 => 'Qena',
2097 => 'Aswan',
];

View File

@@ -0,0 +1,90 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
212520 => 'Casablanca',
212521 => 'Casablanca/Central Morocco',
2125220 => 'Casablanca',
2125222 => 'Casablanca',
2125223 => 'Casablanca',
2125224 => 'Casablanca',
2125225 => 'Casablanca',
2125226 => 'Casablanca',
2125227 => 'Casablanca',
2125228 => 'Casablanca',
2125229 => 'Casablanca',
2125232 => 'Mohammedia',
2125233 => 'El Jedida/Mohammedia',
2125234 => 'Settai',
2125235 => 'Oued Zem',
2125237 => 'Settat',
2125242 => 'El Kelaa des Sraghna',
2125243 => 'Marrakech',
2125244 => 'Marrakech',
2125246 => 'El Youssoufia/Safi',
2125247 => 'Essaouira',
2125248 => 'Ouarzazate',
212525 => 'Southern Morocco',
2125282 => 'Agadir/Ait Meloul/Inezgane',
2125283 => 'Inezgane/Taroudant',
2125285 => 'Oulad Teima/Taroudant',
2125286 => 'Tiznit',
2125287 => 'Guelmim/Tan Tan',
2125288 => 'Agadir/Es-Semara/Tarfaya',
2125289 => 'Dakhla/Laayoune',
212529 => 'Casablanca',
2125296 => 'Marrakech',
2125297 => 'Agadir',
2125298 => 'Marrakech',
2125299 => 'Agadir',
212530 => 'Rabat/Kènitra',
212531 => 'Tangier/Al Hoceima/Larache/Tètouan/Chefchaouen',
212532 => 'Fès/Errachidia/Meknès/Nador/Oujda/Taza',
2125352 => 'Taza',
2125353 => 'Midelt',
2125354 => 'Meknès',
2125355 => 'Meknès',
2125356 => 'Fès',
2125357 => 'Goulmima',
2125358 => 'Ifrane',
2125359 => 'Fès',
2125362 => 'Berkane',
2125363 => 'Nador',
2125365 => 'Oujda',
2125366 => 'Figuig/Oujda',
2125367 => 'Bouarfa/Oujda',
2125368 => 'Figuig',
2125372 => 'Rabat',
2125373 => 'Kénitra',
2125374 => 'Ouazzane',
2125375 => 'Khémisset',
2125376 => 'Rabat/Témara',
2125377 => 'Rabat',
2125378 => 'Salé',
2125379 => 'Souk Larbaa',
2125380 => 'Rabat',
2125381 => 'Rabat',
2125384 => 'Tangier',
2125385 => 'Tangier',
2125386 => 'Fez/Meknes',
2125387 => 'Fez/Meknes',
2125388 => 'Tangier',
2125389 => 'Fez/Meknes',
2125393 => 'Tangier',
2125394 => 'Asilah',
2125395 => 'Larache',
2125396 => 'Fnideq/Martil/Mdiq',
2125397 => 'Tétouan',
2125398 => 'Al Hoceima/Chefchaouen',
2125399 => 'Al Hoceima/Larache/Tangier',
];

View File

@@ -0,0 +1,29 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
21321 => 'Algiers',
21327 => 'Chlef',
21329 => 'Ghardaia/Illizi/Tamanrasset',
21331 => 'Constantine',
21332 => 'El Oued',
21333 => 'Batna/Beskra',
21334 => 'Béjaïa/Jijel',
21335 => 'Bordj Bou Arreridj',
21337 => 'Tebessa',
21338 => 'Annaba/Skikda',
21341 => 'Oran',
21343 => 'Tlemcen',
21344 => 'Blida',
21349 => 'Adrar/Béchar/Tindouf',
];

View File

@@ -0,0 +1,25 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
21670 => 'Ben Arous',
21671 => 'Ariana/Ben Arous/Carthage/Tunis',
21672 => 'Bizerte/Nabeul/Zaghouan',
21673 => 'Chebba/Hamman-Sousse/Khenis/Mahdia/Monastir/Sousse',
21674 => 'Agareb/Sfax',
21675 => 'Gabes/Kebili/Medenine/Tataouine',
21676 => 'Gafsa/Sidi Bouzid/Tozeur',
21677 => 'Haffouz/Kairouan/Kasserine',
21678 => 'Beja/Jendouba/Kef/La Kef/Siliana/Tabarka',
21679 => 'Ariana/Ben Arous/Manouba/Tunis',
];

View File

@@ -0,0 +1,110 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
218205 => 'Sidiessaiah',
218206 => 'Suk Elkhamis',
21821 => 'Tripoli',
21822 => 'Ben Gashir',
218224 => 'Swajni',
21823 => 'Zawia',
21824 => 'Sabratha',
21825 => 'Zuara',
218252 => 'Zahra',
21826 => 'Taigura',
218271 => 'Hashan',
218272 => 'Azizia',
218274 => 'Abu Issa',
218275 => 'Matred',
218277 => 'Mamura',
218279 => 'Elmaya',
218281 => 'Jmail',
218282 => 'Agelat, Ajalat',
218284 => 'Hugialin',
21831 => 'Khums',
218322 => 'Bani Walid',
218323 => 'Wadi Keam',
218325 => 'Tarhuna',
218326 => 'Kussabat',
21841 => 'Garian',
218421 => 'Yefren',
218422 => 'Mizda',
218423 => 'Guassem',
218425 => 'Buzayan',
218427 => 'Kikla',
218452 => 'Rujban',
218453 => 'Reyana',
218454 => 'Al Josh',
21847 => 'Nalut',
218481 => 'Kabaw',
218482 => 'Tigi',
218484 => 'Ghadames',
21851 => 'Misratah',
218521 => 'Zliten',
218522 => 'Tawergha',
218523 => 'Dafnia',
218524 => 'Kasarahmad',
218526 => 'Zawyat Elmahjub',
218529 => 'Bugrain',
21854 => 'Sirt',
218551 => 'Sirt',
218553 => 'Abuhadi',
218554 => 'Wadi Jeref',
218555 => 'Noflia',
21857 => 'Hun',
218581 => 'Wodan',
218582 => 'Sokna',
218583 => 'Soussa',
218584 => 'Zella',
21861 => 'Benghazi',
218623 => 'Gmines',
218624 => 'Elkuwaifia',
218625 => 'Deriana',
218626 => 'Kaalifa',
218627 => 'Jerdina',
218628 => 'Seluk',
218629 => 'Elmagrun',
21863 => 'Benina',
218652 => 'Kofra',
218653 => 'Ojla',
218654 => 'Sidi Sultan Sultan',
218655 => 'Bisher',
218657 => 'Jalo',
21867 => 'Elmareg',
218681 => 'Tolmitha',
218682 => 'Jardas',
218683 => 'Taknes',
218684 => 'Elbayada',
218685 => 'Tomina',
21871 => 'Sebha',
218721 => 'Brak',
218723 => 'Edry',
218724 => 'Ghat',
218725 => 'Murzuk',
218726 => 'Um Laranib',
218727 => 'Zawaya',
218729 => 'Ghrefa',
21873 => 'Ubary',
218731 => 'Wadi Atba',
218732 => 'Bergen',
218733 => 'Garda',
218734 => 'Traghen',
21881 => 'Derna',
21882 => 'Haraua',
218821 => 'Gubba',
21884 => 'El Beida',
218851 => 'Shahat',
218852 => 'Massa',
218854 => 'Slenta',
21888 => 'Jaghbub',
];

View File

@@ -0,0 +1,61 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
22042 => 'Banjul',
22043 => 'Bundung/Serekunda',
2204410 => 'Brufut',
2204412 => 'Tanji',
2204414 => 'Sanyang',
2204416 => 'Tujereng',
2204417 => 'Sanyang',
2204419 => 'Kartong',
22044195 => 'Berending',
220446 => 'Kotu/Senegambia',
220447 => 'Yundum',
2204480 => 'Bondali',
2204481 => 'Brikama/Kanilia',
2204482 => 'Brikama/Kanilia',
2204483 => 'Brikama/Kanilia',
2204484 => 'Brikama/Kanilia',
2204485 => 'Kafuta',
2204486 => 'Gunjur',
2204487 => 'Faraba',
2204488 => 'Sibanor',
2204489 => 'Bwiam',
220449 => 'Bakau',
220553 => 'Soma',
2205540 => 'Kaiaf',
2205541 => 'Kwenella',
2205542 => 'Nyorojattaba',
2205543 => 'Japeneh/Soma',
2205544 => 'Bureng',
2205545 => 'Pakaliba',
2205546 => 'Kudang',
2205547 => 'Jareng',
220566 => 'Baja Kunda/Basse/Fatoto/Gambisara/Garawol/Misera/Sambakunda/Sudowol',
2205665 => 'Kuntaur',
2205666 => 'Numeyel',
220567 => 'Sotuma',
2205674 => 'Bansang',
2205676 => 'Georgetown',
2205678 => 'Brikama-Ba',
2205710 => 'Barra',
2205714 => 'Ndugukebbe',
2205720 => 'Kerewan',
2205723 => 'Njabakunda',
2205725 => 'Iliasa',
2205735 => 'Farafenni',
2205738 => 'Ngensanjal',
220574 => 'Kaur',
];

View File

@@ -0,0 +1,23 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
221338 => 'Dakar',
2213393 => 'Outside Dakar',
2213394 => 'Outside Dakar',
2213395 => 'Outside Dakar',
2213396 => 'Outside Dakar',
2213397 => 'Outside Dakar',
2213398 => 'Outside Dakar',
2213399 => 'Outside Dakar',
];

View File

@@ -0,0 +1,27 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
22245 => 'Nouakchott',
2224513 => 'Néma',
2224515 => 'Aioun',
2224533 => 'Kaédi',
2224534 => 'Sélibaby',
2224537 => 'Aleg',
2224544 => 'Zouérat',
2224546 => 'Atar',
2224550 => 'Boghé',
2224563 => 'Kiffa',
2224569 => 'Rosso/Tidjikja',
2224574 => 'Nouadhibou',
];

View File

@@ -0,0 +1,34 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
223202 => 'Bamako',
2232070 => 'Bamako',
2232071 => 'Bamako',
2232072 => 'Bamako',
2232073 => 'Bamako',
2232074 => 'Bamako',
2232075 => 'Bamako',
2232076 => 'Bamako',
2232077 => 'Bamako',
2232078 => 'Bamako',
223212 => 'Koulikoro',
223214 => 'Mopti',
223215 => 'Kayes',
223216 => 'Sikasso',
223218 => 'Gao/Kidal',
223219 => 'Tombouctou',
223442 => 'Bamako',
223443 => 'Bamako',
223449 => 'Bamako',
];

View File

@@ -0,0 +1,36 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
224302 => 'Fria',
2243031 => 'Boké',
2243032 => 'Kamsar',
2243041 => 'Conakry',
2243042 => 'Sangoya',
2243043 => 'Conakry',
2243045 => 'Conakry',
2243046 => 'Boussoura',
2243047 => 'Conakry',
2243051 => 'Labé',
2243053 => 'Pita',
2243061 => 'Kindia',
22430613 => 'Télimélé',
2243068 => 'Mamou',
2243069 => 'Dalaba',
224307 => 'Kankan',
224308 => 'Faranah',
2243091 => 'N\'Zérékoré',
2243094 => 'Macenta',
2243097 => 'Guéckédou',
2243098 => 'Kissidougou',
];

View File

@@ -0,0 +1,53 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2252120 => 'Plateau, Abidjan',
2252121 => 'Abidjan-sud',
2252122 => 'Cocody, Abidjan',
2252123 => 'Banco, Abidjan',
2252124 => 'Abobo, Abidjan',
2252130 => 'Yamoussoukro',
2252131 => 'Bouaké',
2252132 => 'Daloa',
2252133 => 'Man',
2252134 => 'San-Pédro',
2252135 => 'Abengourou',
2252136 => 'Korhogo',
2252520 => 'Plateau, Abidjan',
2252521 => 'Abidjan-sud',
2252522 => 'Cocody, Abidjan',
2252523 => 'Banco, Abidjan',
2252524 => 'Abobo, Abidjan',
2252530 => 'Yamoussoukro',
2252531 => 'Bouaké',
2252532 => 'Daloa',
2252533 => 'Man',
2252534 => 'San-Pédro',
2252535 => 'Abengourou',
2252536 => 'Korhogo',
2252720 => 'Plateau, Abidjan',
2252721 => 'Abidjan-sud',
22527222 => 'Abidjan-sud',
22527224 => 'Cocody, Abidjan',
22527225 => 'Cocody, Abidjan',
2252723 => 'Banco, Abidjan',
2252724 => 'Abobo, Abidjan',
2252730 => 'Yamoussoukro',
2252731 => 'Bouaké',
2252732 => 'Daloa',
2252733 => 'Man',
2252734 => 'San-Pédro',
2252735 => 'Abengourou',
2252736 => 'Korhogo',
];

View File

@@ -0,0 +1,39 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
226204 => 'Kaya',
2262052 => 'Dédougou',
2262053 => 'Boromo/Djibasso/Nouna',
2262090 => 'Gaoua',
2262091 => 'Banfora',
2262096 => 'Orodara',
2262097 => 'Bobo-Dioulasso',
2262098 => 'Bobo-Dioulasso',
2262099 => 'Béréba/Fo/Houndé',
2262445 => 'Kaya',
2262446 => 'Falagountou/Dori',
2262449 => 'Falagountou/Dori',
2262454 => 'Yako',
2262455 => 'Ouahigouya',
2262456 => 'Djibo',
2262470 => 'Pouytenga/Koupéla',
2262471 => 'Tenkodogo',
2262477 => 'Fada/Diabo',
2262479 => 'Kantchari',
226253 => 'Ouagadougou',
226254 => 'Ouagadougou',
2262540 => 'Pô/Kombissiri/Koubri',
2262541 => 'Léo/Sapouy',
2262544 => 'Koudougou',
];

View File

@@ -0,0 +1,33 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
227202 => 'Niamey',
227203 => 'Niamey',
2272041 => 'Maradi',
2272044 => 'Agadez',
2272045 => 'Arlit',
2272051 => 'Zinder',
2272054 => 'Diffa',
2272061 => 'Tahoua',
2272064 => 'Konni',
2272065 => 'Dosso',
2272068 => 'Gaya',
2272071 => 'Tillabéry',
2272072 => 'Niamey',
2272073 => 'Niamey',
2272074 => 'Niamey',
2272075 => 'Niamey',
2272077 => 'Filingué',
2272078 => 'Say',
];

View File

@@ -0,0 +1,21 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
22822 => 'Lome',
22823 => 'Maritime region',
22824 => 'Plateaux region',
22825 => 'Central region',
22826 => 'Kara region',
22827 => 'Savannah region',
];

View File

@@ -0,0 +1,52 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2292021 => 'Ongala',
2292022 => 'Kandiévé',
2292024 => 'Sèmè',
2292025 => 'Pobè/Kétou',
2292026 => 'Sakété/Igolo',
2292027 => 'Adjohoun',
2292029 => 'Ouémé/Plateau departments',
2292130 => 'Cadjehoun',
2292131 => 'Ganhi',
2292132 => 'Jéricho',
2292133 => 'Akpakpa',
2292134 => 'Ouidah',
2292135 => 'Godomey',
2292136 => 'Abomey-Calaci',
2292137 => 'Allada',
2292138 => 'Kouhounou',
2292139 => 'Littoral/Atlantique departments',
2292241 => 'Lokossa',
2292243 => 'Come',
2292246 => 'Dogbo',
2292249 => 'Mono/Kouffo/Zou/Collines departments',
2292250 => 'Abomey',
2292251 => 'Bohicon',
2292252 => 'Covè',
2292253 => 'Dassa-Zoumé',
2292254 => 'Savalou',
2292255 => 'Savè',
2292259 => 'Mono/Kouffo/Zou/Collines departments',
2292361 => 'Parakou',
2292362 => 'Nikki/Ndali',
2292363 => 'Kandi/Gogounou/Ségbana',
2292365 => 'Banikoara',
2292367 => 'Malanville',
2292380 => 'Djougou',
2292382 => 'Natitingou',
2292383 => 'Tanguiéta',
22924 => 'Tanguiéta',
];

View File

@@ -0,0 +1,20 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2302 => 'North Region',
2304 => 'Central Region',
2306 => 'South Region',
23081 => 'Agalega',
23083 => 'Rodrigues',
];

View File

@@ -0,0 +1,16 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
23222 => 'Freetown',
];

View File

@@ -0,0 +1,92 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
233302 => 'Accra',
233303 => 'Tema',
2333035 => 'Ada',
233307 => 'Greater Accra Region',
233308 => 'Greater Accra Region',
2333120 => 'Takoradi',
2333121 => 'Axim',
2333122 => 'Elubo',
2333123 => 'Tarkwa',
2333124 => 'Asankragwa',
2333125 => 'Samreboi',
2333126 => 'Enchi',
233317 => 'Western Region',
233318 => 'Western Region',
2333220 => 'Kumasi',
2333221 => 'Konongo',
2333222 => 'Ashanti Mampong',
2333223 => 'Ejura',
2333224 => 'Bekwai',
2333225 => 'Obuasi',
233327 => 'Ashanti Region',
233328 => 'Ashanti Region',
2333320 => 'Swedru',
2333321 => 'Cape Coast',
2333322 => 'Dunkwa',
2333323 => 'Winneba',
233337 => 'Central Region',
233338 => 'Central Region',
2333420 => 'Koforidua',
2333421 => 'Nsawam',
2333423 => 'Mpraeso',
2333424 => 'Donkorkrom',
2333425 => 'Suhum',
2333426 => 'Asamankese',
2333427 => 'Akuapim Mampong',
2333428 => 'Aburi',
23334292 => 'Akim Oda',
2333430 => 'Akosombo',
2333431 => 'Nkawkaw',
233347 => 'Eastern Region',
233348 => 'Eastern Region',
2333520 => 'Sunyani',
2333521 => 'Bechem',
2333522 => 'Berekum',
2333523 => 'Dormaa Ahenkro',
2333524 => 'Wenchi',
2333525 => 'Techiman',
2333526 => 'Atebubu',
2333527 => 'Yeji',
233357 => 'Brong-Ahafo Region',
233358 => 'Brong-Ahafo Region',
2333620 => 'Ho',
2333621 => 'Amedzofe',
2333622 => 'Hohoe',
2333623 => 'Kpandu',
2333624 => 'Kete-Krachi',
2333625 => 'Denu/Aflao',
2333626 => 'Keta/Akatsi',
233367 => 'Volta Region',
233368 => 'Volta Region',
2333720 => 'Tamale',
2333721 => 'Walewale',
2333722 => 'Buipe',
2333723 => 'Damongo',
2333724 => 'Yendi',
2333725 => 'Bole',
2333726 => 'Salaga',
233377 => 'Northern Region',
233378 => 'Northern Region',
2333820 => 'Bolgatanga',
2333821 => 'Navrongo',
2333822 => 'Bawku',
233387 => 'Upper East Region',
233388 => 'Upper East Region',
233392 => 'Wa',
233397 => 'Upper West Region',
233398 => 'Upper West Region',
];

View File

@@ -0,0 +1,69 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
234201 => 'Lagos',
234202 => 'Ibadan',
2342030 => 'Ado Ekiti',
2342031 => 'Ilorin',
2342033 => 'New Bussa',
2342034 => 'Akure',
2342035 => 'Osogbo',
2342036 => 'Ile Ife',
2342037 => 'Ijebu Ode',
2342038 => 'Oyo',
2342039 => 'Abeokuta',
2342041 => 'Wukari',
2342042 => 'Nsukka Enugu',
2342043 => 'Abakaliki',
2342044 => 'Makurdi',
2342045 => 'Ogoja',
2342046 => 'Onitsha',
2342047 => 'Lafia/Keffi',
2342048 => 'Awka',
2342050 => 'Ikare',
2342051 => 'Owoh',
2342052 => 'Benin',
2342053 => 'Warri',
2342054 => 'Sapele',
2342055 => 'Agbor',
2342056 => 'Asaba',
2342057 => 'Auchi',
2342058 => 'Lokoja',
2342059 => 'Okitipupa',
2342060 => 'Sokoto',
2342062 => 'Kaduna',
2342064 => 'Kano',
2342065 => 'Katsina',
2342066 => 'Minna',
2342068 => 'Birin Kebbi',
2342069 => 'Zaria',
2342071 => 'Azare',
2342072 => 'Gombe',
2342073 => 'Jos',
2342074 => 'Damaturu',
2342075 => 'Yola',
2342076 => 'Maiduguri',
2342077 => 'Bauchi',
2342079 => 'Jalingo',
2342082 => 'Aba',
2342083 => 'Owerri',
2342084 => 'Port Harcourt',
2342085 => 'Uyo',
2342086 => 'Ahoada',
2342087 => 'Calabar',
2342088 => 'Umuahia',
2342089 => 'Yenagoa',
234209 => 'Abuja',
2343 => 'Oyo',
];

View File

@@ -0,0 +1,16 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2362 => 'Bangui',
];

View File

@@ -0,0 +1,126 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
237222111 => 'Mbalmayo',
237222120 => 'Akonolinga',
237222121 => 'Ayos',
237222136 => 'Eséka/Mboumnyebel',
237222144 => 'Ngoumou',
237222180 => 'Obala',
237222182 => 'Monatélé',
237222185 => 'Bafia',
237222195 => 'Nanga Eboko',
23722220 => 'Jamot',
23722221 => 'Jamot',
23722222 => 'Yaounde',
23722223 => 'Yaounde',
237222241 => 'Bertoua',
237222242 => 'Bertoua',
237222250 => 'N\'Gaoundéré',
237222251 => 'N\'Gaoundéré',
237222252 => 'N\'Gaoundéré',
237222253 => 'N\'Gaoundéré',
237222254 => 'Dang',
237222256 => 'Beelel/Mbé',
237222262 => 'Batouri',
237222264 => 'Belabo',
23722227 => 'Garoua',
237222282 => 'Mengong',
237222283 => 'Ebolowa',
237222284 => 'Ebolowa',
23722229 => 'Maroua',
23722230 => 'Nkomo',
23722231 => 'Biyem Assi',
237222321 => 'Mfou',
237222322 => 'Soa',
237222335 => 'Abong-Bang',
237222347 => 'N\'Gaoundal',
237222348 => 'Tibati',
237222354 => 'Galim Tignère',
237222355 => 'Tignère',
237222369 => 'Banyo',
237222371 => 'Meiganga',
237222395 => 'Guider',
237222397 => 'Figuil',
237222414 => 'Kousseri',
237222426 => 'Yagoua',
237222447 => 'Mora',
237222455 => 'Mokolo',
237222461 => 'Kribi',
237222462 => 'Kribi',
237222463 => 'Lolodorf',
237222464 => 'Lolodorf',
237222478 => 'Sangmelima',
237222479 => 'Meyomessala/Efoulan',
237222482 => 'Kye-Ossie/Ambam',
237233205 => 'Wum',
237233215 => 'Nkambe',
237233221 => 'Kumbo',
237233262 => 'Foumban',
237233263 => 'Foumban',
237233267 => 'Foumbot',
237233277 => 'Bandjoun',
237233296 => 'Bafang',
237233297 => 'Bafang',
237233305 => 'Mbouda',
237233313 => 'Yabassi',
237233321 => 'Muyuka',
237233322 => 'Buéa',
237233323 => 'Buéa',
237233324 => 'Buéa',
237233325 => 'Buéa',
237233326 => 'Buéa',
237233327 => 'Buéa',
237233328 => 'Buéa',
237233329 => 'Buéa',
237233331 => 'Tiko',
237233332 => 'Limbé',
237233333 => 'Limbé',
237233334 => 'Limbé',
237233335 => 'Limbé',
237233336 => 'Limbé',
237233337 => 'Limbé',
237233338 => 'Limbé',
237233339 => 'Limbé',
237233341 => 'Manfé',
237233354 => 'Kumba',
237233355 => 'Kumba',
237233360 => 'Bamenda',
237233361 => 'Bamenda',
237233362 => 'Bamenda',
237233363 => 'Bamenda',
237233364 => 'Bamenda',
237233366 => 'Mbambili',
23723337 => 'Bassa',
23723339 => 'Bonabéri',
23723340 => 'Bepanda',
23723341 => 'Bepanda',
23723342 => 'Akwa Centre',
23723343 => 'Akwa Centre',
23723344 => 'Bafoussam',
237233451 => 'Dschang',
237233452 => 'Dschang',
237233464 => 'Edéa',
23723347 => 'Akwa North',
237233484 => 'Bangangté',
237233489 => 'Bangangté',
237233490 => 'Nkongsamba',
237233491 => 'Nkongsamba',
237233492 => 'Nkongsamba',
237233493 => 'Nkongsamba',
237233494 => 'Nkongsamba',
237233495 => 'Nkongsamba',
237233496 => 'Nkongsamba',
237233497 => 'Loum/Mbanga',
];

View File

@@ -0,0 +1,53 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
238221 => 'Ribeira Grande, Santo Antão',
238222 => 'Porto Novo, Santo Antão',
238223 => 'Paúl, Santo Antão',
238224 => 'Cocoli, Santo Antão',
238225 => 'Ponta do Sol, Santo Antão',
238226 => 'Manta Velha/Chã de Igreja (Santo Antão Island)',
238227 => 'Lajedos/Alto Mira (Santo Antão Island)',
238230 => 'Mindelo, São Vicente',
238231 => 'Mindelo, São Vicente',
238232 => 'Mindelo, São Vicente',
238235 => 'Ribeira Brava, São Nicolau',
238236 => 'Tarrafal de São Nicolau, São Nicolau',
238237 => 'Fajã, São Nicolau',
238238 => 'Praia Branca, São Nicolau',
238241 => 'Espargos, Sal',
238242 => 'Santa Maria, Sal',
238251 => 'Sal Rei, Boa Vista',
238252 => 'Funda das Figueiras, Boa Vista',
238255 => 'Vila do Maio, Maio',
238256 => 'Calheta, Maio',
238260 => 'Praia, Santiago',
238261 => 'Praia, Santiago',
238262 => 'Praia, Santiago',
238263 => 'Praia, Santiago',
238264 => 'Praia, Santiago',
238265 => 'Santa Catarina, Santiago',
238266 => 'Tarrafal, Santiago',
238267 => 'Cidade Velha, Santiago',
238268 => 'São Domingos, Santiago',
238269 => 'Pedra Badejo, Santiago',
238271 => 'Orgão/São Jorge (Santiago Island)',
238272 => 'Picos, Santiago',
238273 => 'Calheta de São Miguel, Santiago',
238281 => 'São Filipe, Fogo',
238282 => 'Cova Figueira, Fogo',
238283 => 'Mosteiros, Fogo',
238284 => 'São Jorge, Fogo',
238285 => 'Nova Sintra, Brava',
];

View File

@@ -0,0 +1,34 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2392220 => 'Santo Amaro',
2392221 => 'Água Grande',
2392222 => 'Água Grande',
2392223 => 'Água Grande',
2392224 => 'Água Grande',
2392225 => 'Água Grande',
2392226 => 'Água Grande',
2392227 => 'Água Grande',
2392228 => 'Água Grande',
2392231 => 'Guadalupe',
2392233 => 'Neves, Santa Catarina',
239224 => 'Água Grande',
2392251 => 'Autonomous Region of Príncipe',
2392261 => 'Angolares, Porto Alegre',
2392265 => 'Santana, Ribeira Afonso',
2392271 => 'Trindade',
2392272 => 'Madalena',
239228 => 'Água Grande',
239229 => 'Água Grande',
];

View File

@@ -0,0 +1,525 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
24033004 => 'Bioko',
24033006 => 'Continental Region',
24033014 => 'Bioko',
24033016 => 'Continental Region',
24033024 => 'Bioko',
24033026 => 'Continental Region',
24033034 => 'Bioko',
24033036 => 'Continental Region',
24033044 => 'Bioko',
24033046 => 'Continental Region',
24033054 => 'Bioko',
24033056 => 'Continental Region',
24033064 => 'Bioko',
24033066 => 'Continental Region',
24033074 => 'Bioko',
24033076 => 'Continental Region',
24033084 => 'Bioko',
24033086 => 'Continental Region',
24033094 => 'Bioko',
24033096 => 'Continental Region',
24033104 => 'Bioko',
24033106 => 'Continental Region',
24033114 => 'Bioko',
24033116 => 'Continental Region',
24033124 => 'Bioko',
24033126 => 'Continental Region',
24033134 => 'Bioko',
24033136 => 'Continental Region',
24033144 => 'Bioko',
24033146 => 'Continental Region',
24033154 => 'Bioko',
24033156 => 'Continental Region',
24033164 => 'Bioko',
24033166 => 'Continental Region',
24033174 => 'Bioko',
24033176 => 'Continental Region',
24033184 => 'Bioko',
24033186 => 'Continental Region',
24033194 => 'Bioko',
24033196 => 'Continental Region',
24033204 => 'Bioko',
24033206 => 'Continental Region',
24033214 => 'Bioko',
24033216 => 'Continental Region',
24033224 => 'Bioko',
24033226 => 'Continental Region',
24033234 => 'Bioko',
24033236 => 'Continental Region',
24033244 => 'Bioko',
24033246 => 'Continental Region',
24033254 => 'Bioko',
24033256 => 'Continental Region',
24033264 => 'Bioko',
24033266 => 'Continental Region',
24033274 => 'Bioko',
24033276 => 'Continental Region',
24033284 => 'Bioko',
24033286 => 'Continental Region',
24033294 => 'Bioko',
24033296 => 'Continental Region',
24033307 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24033308 => 'Litoral/Annobón',
24033309 => 'Bioko',
24033317 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24033318 => 'Litoral/Annobón',
24033319 => 'Bioko',
24033327 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24033328 => 'Litoral/Annobón',
24033329 => 'Bioko',
24033337 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24033338 => 'Litoral/Annobón',
24033339 => 'Bioko',
24033347 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24033348 => 'Litoral/Annobón',
24033349 => 'Bioko',
24033357 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24033358 => 'Litoral/Annobón',
24033359 => 'Bioko',
24033367 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24033368 => 'Litoral/Annobón',
24033369 => 'Bioko',
24033377 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24033378 => 'Litoral/Annobón',
24033379 => 'Bioko',
24033387 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24033388 => 'Litoral/Annobón',
24033389 => 'Bioko',
24033397 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24033398 => 'Litoral/Annobón',
24033399 => 'Bioko',
24033404 => 'Bioko',
24033406 => 'Continental Region',
24033414 => 'Bioko',
24033416 => 'Continental Region',
24033424 => 'Bioko',
24033426 => 'Continental Region',
24033434 => 'Bioko',
24033436 => 'Continental Region',
24033444 => 'Bioko',
24033446 => 'Continental Region',
24033454 => 'Bioko',
24033456 => 'Continental Region',
24033464 => 'Bioko',
24033466 => 'Continental Region',
24033474 => 'Bioko',
24033476 => 'Continental Region',
24033484 => 'Bioko',
24033486 => 'Continental Region',
24033494 => 'Bioko',
24033496 => 'Continental Region',
24033504 => 'Bioko',
24033506 => 'Continental Region',
24033514 => 'Bioko',
24033516 => 'Continental Region',
24033524 => 'Bioko',
24033526 => 'Continental Region',
24033534 => 'Bioko',
24033536 => 'Continental Region',
24033544 => 'Bioko',
24033546 => 'Continental Region',
24033554 => 'Bioko',
24033556 => 'Continental Region',
24033564 => 'Bioko',
24033566 => 'Continental Region',
24033574 => 'Bioko',
24033576 => 'Continental Region',
24033584 => 'Bioko',
24033586 => 'Continental Region',
24033594 => 'Bioko',
24033596 => 'Continental Region',
24033604 => 'Bioko',
24033606 => 'Continental Region',
24033614 => 'Bioko',
24033616 => 'Continental Region',
24033624 => 'Bioko',
24033626 => 'Continental Region',
24033634 => 'Bioko',
24033636 => 'Continental Region',
24033644 => 'Bioko',
24033646 => 'Continental Region',
24033654 => 'Bioko',
24033656 => 'Continental Region',
24033664 => 'Bioko',
24033666 => 'Continental Region',
24033674 => 'Bioko',
24033676 => 'Continental Region',
24033684 => 'Bioko',
24033686 => 'Continental Region',
24033694 => 'Bioko',
24033696 => 'Continental Region',
24033704 => 'Bioko',
24033706 => 'Continental Region',
24033714 => 'Bioko',
24033716 => 'Continental Region',
24033724 => 'Bioko',
24033726 => 'Continental Region',
24033734 => 'Bioko',
24033736 => 'Continental Region',
24033744 => 'Bioko',
24033746 => 'Continental Region',
24033754 => 'Bioko',
24033756 => 'Continental Region',
24033764 => 'Bioko',
24033766 => 'Continental Region',
24033774 => 'Bioko',
24033776 => 'Continental Region',
24033784 => 'Bioko',
24033786 => 'Continental Region',
24033794 => 'Bioko',
24033796 => 'Continental Region',
24033804 => 'Bioko',
24033806 => 'Continental Region',
24033814 => 'Bioko',
24033816 => 'Continental Region',
24033824 => 'Bioko',
24033826 => 'Continental Region',
24033834 => 'Bioko',
24033836 => 'Continental Region',
24033844 => 'Bioko',
24033846 => 'Continental Region',
24033854 => 'Bioko',
24033856 => 'Continental Region',
24033864 => 'Bioko',
24033866 => 'Continental Region',
24033874 => 'Bioko',
24033876 => 'Continental Region',
24033884 => 'Bioko',
24033886 => 'Continental Region',
24033894 => 'Bioko',
24033896 => 'Continental Region',
24033904 => 'Bioko',
24033906 => 'Continental Region',
24033914 => 'Bioko',
24033916 => 'Continental Region',
24033924 => 'Bioko',
24033926 => 'Continental Region',
24033934 => 'Bioko',
24033936 => 'Continental Region',
24033944 => 'Bioko',
24033946 => 'Continental Region',
24033954 => 'Bioko',
24033956 => 'Continental Region',
24033964 => 'Bioko',
24033966 => 'Continental Region',
24033974 => 'Bioko',
24033976 => 'Continental Region',
24033984 => 'Bioko',
24033986 => 'Continental Region',
24033994 => 'Bioko',
24033996 => 'Continental Region',
24035007 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035008 => 'Litoral/Annobón',
24035009 => 'Bioko',
24035017 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035018 => 'Litoral/Annobón',
24035019 => 'Bioko',
24035027 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035028 => 'Litoral/Annobón',
24035029 => 'Bioko',
24035037 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035038 => 'Litoral/Annobón',
24035039 => 'Bioko',
24035047 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035048 => 'Litoral/Annobón',
24035049 => 'Bioko',
24035057 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035058 => 'Litoral/Annobón',
24035059 => 'Bioko',
24035067 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035068 => 'Litoral/Annobón',
24035069 => 'Bioko',
24035077 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035078 => 'Litoral/Annobón',
24035079 => 'Bioko',
24035087 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035088 => 'Litoral/Annobón',
24035089 => 'Bioko',
24035097 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035098 => 'Litoral/Annobón',
24035099 => 'Bioko',
24035107 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035108 => 'Litoral/Annobón',
24035109 => 'Bioko',
24035117 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035118 => 'Litoral/Annobón',
24035119 => 'Bioko',
24035127 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035128 => 'Litoral/Annobón',
24035129 => 'Bioko',
24035137 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035138 => 'Litoral/Annobón',
24035139 => 'Bioko',
24035147 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035148 => 'Litoral/Annobón',
24035149 => 'Bioko',
24035157 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035158 => 'Litoral/Annobón',
24035159 => 'Bioko',
24035167 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035168 => 'Litoral/Annobón',
24035169 => 'Bioko',
24035177 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035178 => 'Litoral/Annobón',
24035179 => 'Bioko',
24035187 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035188 => 'Litoral/Annobón',
24035189 => 'Bioko',
24035197 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035198 => 'Litoral/Annobón',
24035199 => 'Bioko',
24035207 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035208 => 'Litoral/Annobón',
24035209 => 'Bioko',
24035217 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035218 => 'Litoral/Annobón',
24035219 => 'Bioko',
24035227 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035228 => 'Litoral/Annobón',
24035229 => 'Bioko',
24035237 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035238 => 'Litoral/Annobón',
24035239 => 'Bioko',
24035247 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035248 => 'Litoral/Annobón',
24035249 => 'Bioko',
24035257 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035258 => 'Litoral/Annobón',
24035259 => 'Bioko',
24035267 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035268 => 'Litoral/Annobón',
24035269 => 'Bioko',
24035277 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035278 => 'Litoral/Annobón',
24035279 => 'Bioko',
24035287 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035288 => 'Litoral/Annobón',
24035289 => 'Bioko',
24035297 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035298 => 'Litoral/Annobón',
24035299 => 'Bioko',
24035307 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035308 => 'Litoral/Annobón',
24035309 => 'Bioko',
24035317 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035318 => 'Litoral/Annobón',
24035319 => 'Bioko',
24035327 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035328 => 'Litoral/Annobón',
24035329 => 'Bioko',
24035337 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035338 => 'Litoral/Annobón',
24035339 => 'Bioko',
24035347 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035348 => 'Litoral/Annobón',
24035349 => 'Bioko',
24035357 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035358 => 'Litoral/Annobón',
24035359 => 'Bioko',
24035367 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035368 => 'Litoral/Annobón',
24035369 => 'Bioko',
24035377 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035378 => 'Litoral/Annobón',
24035379 => 'Bioko',
24035387 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035388 => 'Litoral/Annobón',
24035389 => 'Bioko',
24035397 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035398 => 'Litoral/Annobón',
24035399 => 'Bioko',
24035407 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035408 => 'Litoral/Annobón',
24035409 => 'Bioko',
24035417 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035418 => 'Litoral/Annobón',
24035419 => 'Bioko',
24035427 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035428 => 'Litoral/Annobón',
24035429 => 'Bioko',
24035437 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035438 => 'Litoral/Annobón',
24035439 => 'Bioko',
24035447 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035448 => 'Litoral/Annobón',
24035449 => 'Bioko',
24035457 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035458 => 'Litoral/Annobón',
24035459 => 'Bioko',
24035467 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035468 => 'Litoral/Annobón',
24035469 => 'Bioko',
24035477 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035478 => 'Litoral/Annobón',
24035479 => 'Bioko',
24035487 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035488 => 'Litoral/Annobón',
24035489 => 'Bioko',
24035497 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035498 => 'Litoral/Annobón',
24035499 => 'Bioko',
24035507 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035508 => 'Litoral/Annobón',
24035509 => 'Bioko',
24035517 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035518 => 'Litoral/Annobón',
24035519 => 'Bioko',
24035527 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035528 => 'Litoral/Annobón',
24035529 => 'Bioko',
24035537 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035538 => 'Litoral/Annobón',
24035539 => 'Bioko',
24035547 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035548 => 'Litoral/Annobón',
24035549 => 'Bioko',
24035557 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035558 => 'Litoral/Annobón',
24035559 => 'Bioko',
24035567 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035568 => 'Litoral/Annobón',
24035569 => 'Bioko',
24035577 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035578 => 'Litoral/Annobón',
24035579 => 'Bioko',
24035587 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035588 => 'Litoral/Annobón',
24035589 => 'Bioko',
24035597 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035598 => 'Litoral/Annobón',
24035599 => 'Bioko',
24035607 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035608 => 'Litoral/Annobón',
24035609 => 'Bioko',
24035617 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035618 => 'Litoral/Annobón',
24035619 => 'Bioko',
24035627 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035628 => 'Litoral/Annobón',
24035629 => 'Bioko',
24035637 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035638 => 'Litoral/Annobón',
24035639 => 'Bioko',
24035647 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035648 => 'Litoral/Annobón',
24035649 => 'Bioko',
24035657 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035658 => 'Litoral/Annobón',
24035659 => 'Bioko',
24035667 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035668 => 'Litoral/Annobón',
24035669 => 'Bioko',
24035677 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035678 => 'Litoral/Annobón',
24035679 => 'Bioko',
24035687 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035688 => 'Litoral/Annobón',
24035689 => 'Bioko',
24035697 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035698 => 'Litoral/Annobón',
24035699 => 'Bioko',
24035707 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035708 => 'Litoral/Annobón',
24035709 => 'Bioko',
24035717 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035718 => 'Litoral/Annobón',
24035719 => 'Bioko',
24035727 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035728 => 'Litoral/Annobón',
24035729 => 'Bioko',
24035737 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035738 => 'Litoral/Annobón',
24035739 => 'Bioko',
24035747 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035748 => 'Litoral/Annobón',
24035749 => 'Bioko',
24035757 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035758 => 'Litoral/Annobón',
24035759 => 'Bioko',
24035767 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035768 => 'Litoral/Annobón',
24035769 => 'Bioko',
24035777 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035778 => 'Litoral/Annobón',
24035779 => 'Bioko',
24035787 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035788 => 'Litoral/Annobón',
24035789 => 'Bioko',
24035797 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035798 => 'Litoral/Annobón',
24035799 => 'Bioko',
24035807 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035808 => 'Litoral/Annobón',
24035809 => 'Bioko',
24035817 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035818 => 'Litoral/Annobón',
24035819 => 'Bioko',
24035827 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035828 => 'Litoral/Annobón',
24035829 => 'Bioko',
24035837 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035838 => 'Litoral/Annobón',
24035839 => 'Bioko',
24035847 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035848 => 'Litoral/Annobón',
24035849 => 'Bioko',
24035857 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035858 => 'Litoral/Annobón',
24035859 => 'Bioko',
24035867 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035868 => 'Litoral/Annobón',
24035869 => 'Bioko',
24035877 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035878 => 'Litoral/Annobón',
24035879 => 'Bioko',
24035887 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035888 => 'Litoral/Annobón',
24035889 => 'Bioko',
24035897 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035898 => 'Litoral/Annobón',
24035899 => 'Bioko',
24035907 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035908 => 'Litoral/Annobón',
24035909 => 'Bioko',
24035917 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035918 => 'Litoral/Annobón',
24035919 => 'Bioko',
24035927 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035928 => 'Litoral/Annobón',
24035929 => 'Bioko',
24035937 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035938 => 'Litoral/Annobón',
24035939 => 'Bioko',
24035947 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035948 => 'Litoral/Annobón',
24035949 => 'Bioko',
24035957 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035958 => 'Litoral/Annobón',
24035959 => 'Bioko',
24035967 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035968 => 'Litoral/Annobón',
24035969 => 'Bioko',
24035977 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035978 => 'Litoral/Annobón',
24035979 => 'Bioko',
24035987 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035988 => 'Litoral/Annobón',
24035989 => 'Bioko',
24035997 => 'Centro-Sur/Kié-Ntem/Wele-Nzás',
24035998 => 'Litoral/Annobón',
24035999 => 'Bioko',
];

View File

@@ -0,0 +1,75 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2410140 => 'Kango',
24101420 => 'Ntoum',
24101424 => 'Cocobeach',
2410144 => 'Libreville',
2410145 => 'Libreville',
2410146 => 'Libreville',
2410147 => 'Libreville',
2410148 => 'Libreville',
2410150 => 'Gamba',
2410154 => 'Omboué',
2410155 => 'Port-Gentil',
2410156 => 'Port-Gentil',
2410158 => 'Lambaréné',
2410159 => 'Ndjolé',
2410160 => 'Ngouoni',
2410162 => 'Mounana',
2410164 => 'Lastoursville',
2410165 => 'Koulamoutou',
2410166 => 'Moanda',
2410167 => 'Franceville',
2410169 => 'Léconi/Akiéni/Okondja',
241017 => 'Libreville',
2410182 => 'Tchibanga',
2410183 => 'Mayumba',
2410186 => 'Mouila',
2410190 => 'Makokou',
2410192 => 'Mékambo',
2410193 => 'Booué',
2410196 => 'Bitam',
2410198 => 'Oyem',
2411140 => 'Kango',
24111420 => 'Ntoum',
24111424 => 'Cocobeach',
2411144 => 'Libreville',
2411145 => 'Libreville',
2411146 => 'Libreville',
2411147 => 'Libreville',
2411148 => 'Libreville',
2411150 => 'Gamba',
2411154 => 'Omboué',
2411155 => 'Port-Gentil',
2411156 => 'Port-Gentil',
2411158 => 'Lambaréné',
2411159 => 'Ndjolé',
2411160 => 'Ngouoni',
2411162 => 'Mounana',
2411164 => 'Lastoursville',
2411165 => 'Koulamoutou',
2411166 => 'Moanda',
2411167 => 'Franceville',
2411169 => 'Léconi/Akiéni/Okondja',
241117 => 'Libreville',
2411182 => 'Tchibanga',
2411183 => 'Mayumba',
2411186 => 'Mouila',
2411190 => 'Makokou',
2411192 => 'Mékambo',
2411193 => 'Booué',
2411196 => 'Bitam',
2411198 => 'Oyem',
];

View File

@@ -0,0 +1,22 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2422221 => 'Cuvette',
2422222 => 'Likouala/Sangha',
2422223 => 'Pool',
2422224 => 'Plateaux',
2422225 => 'Bouenza/Lekoumou/Niari',
2422228 => 'Brazzaville',
2422229 => 'Pointe-Noire',
];

View File

@@ -0,0 +1,21 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2431 => 'Kinshasa',
2432 => 'Katanga',
2433 => 'Bas-Congo/Bandundu',
2434 => 'Kasai-Oriental/Kasai-Occidental',
2435 => 'Oriental Province (Kisanga/Mbandaka)',
2436 => 'North Kivu/South Kivu/Maniema',
];

View File

@@ -0,0 +1,68 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
24422 => 'Luanda',
244231 => 'Cabinda',
244232 => 'Zaire',
2442321 => 'Soyo',
244233 => 'Uige',
2442342 => 'Bengo',
2442345 => 'Bengo',
2442346 => 'Bengo',
2442347 => 'Bengo',
2442348 => 'Caxito',
2442349 => 'Bengo',
244235 => 'Cuanza Norte',
2442358 => 'N\'Dalatando',
244236 => 'Cuanza Sul',
2442363 => 'Sumbe',
2442364 => 'Porto Amboim',
244241 => 'Huambo',
244248 => 'Bie',
2442485 => 'Kuito',
244249 => 'Cuando Cubango',
2442498 => 'Menongue',
244251 => 'Malange',
244252 => 'Lunda Norte',
2442524 => 'Lucapa',
2442526 => 'Dundo',
2442532 => 'Lunda Sul',
2442535 => 'Saurimo',
2442536 => 'Lunda Sul',
2442537 => 'Lunda Sul',
2442538 => 'Lunda Sul',
2442539 => 'Lunda Sul',
2442542 => 'Moxico',
2442545 => 'Moxico',
2442546 => 'Luena',
2442547 => 'Moxico',
2442548 => 'Moxico',
2442549 => 'Moxico',
2442612 => 'Lubango',
2442615 => 'Huila',
2442616 => 'Huila',
2442617 => 'Huila',
2442618 => 'Huila',
2442619 => 'Huila',
244264 => 'Namibe',
244265 => 'Cunene',
2442652 => 'Kuroka',
2442655 => 'Ondjiva',
244272 => 'Benguela',
2442722 => 'Lobito',
2442726 => 'Bela Vista',
2442728 => 'Baia Farta',
2442729 => 'Catumbela',
2442777 => 'Dama Universal',
];

View File

@@ -0,0 +1,36 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
24544320 => 'Bissau',
24544321 => 'Bissau',
24544322 => 'St. Luzia',
24544325 => 'Brá',
24544331 => 'Mansôa',
24544332 => 'Bissora',
24544334 => 'Mansaba',
24544335 => 'Farim',
24544341 => 'Bafatá',
24544342 => 'Bambadinca',
24544351 => 'Gabu',
24544352 => 'Sonaco',
24544353 => 'Pirada',
24544354 => 'Pitche',
24544370 => 'Buba',
24544391 => 'Canchungo',
24544392 => 'Cacheu',
24544393 => 'S. Domingos',
24544394 => 'Bula',
24544396 => 'Ingoré',
24544397 => 'Bigene',
];

View File

@@ -0,0 +1,20 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
24762 => 'US Base',
24763 => 'Travellers Hill & Airhead',
24764 => 'Two Boats',
24766 => 'Georgetown',
24767 => 'Georgetown',
];

View File

@@ -0,0 +1,23 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
249153 => 'Khartoum',
249155 => 'Khartoum North',
249156 => 'Khartoum Rural',
249157 => 'Omdurman',
249183 => 'Khartoum',
249185 => 'Khartoum North',
249186 => 'Khartoum Rural',
249187 => 'Omdurman',
];

View File

@@ -0,0 +1,367 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
25111111 => 'Arada I, Addis Ababa',
25111112 => 'Arada II, Addis Ababa',
25111114 => 'French Legasion, Addis Ababa',
25111122 => 'Sidist Kilo I, Addis Ababa',
25111123 => 'Sidist Kilo II, Addis Ababa',
25111124 => 'Sidist Kilo III, Addis Ababa',
25111125 => 'Sidist Kilo Rss I, Addis Ababa',
25111127 => 'Addisu Gebeya, Addis Ababa',
25111131 => 'Kuyu, Addis Ababa',
251111320 => 'Alem Ketema, Addis Ababa',
251111330 => 'Deber Tsige, Addis Ababa',
251111340 => 'Muke Turi, Addis Ababa',
25111135 => 'Fitche, Addis Ababa',
25111155 => 'Arada III, Addis Ababa',
25111156 => 'Arada IV, Addis Ababa',
25111157 => 'Arada V, Addis Ababa',
25111158 => 'Arada VI, Addis Ababa',
251111860 => 'Sululta, Addis Ababa',
25111187 => 'Goha Tsion, Addis Ababa',
25111188 => 'Chancho, Addis Ababa',
2511121 => 'Addis Ketema I, Addis Ababa',
25111236 => 'Hagere Hiwot, Addis Ababa',
25111237 => 'Holeta Gent, Addis Ababa',
25111238 => 'Jeldu, Addis Ababa',
251112580 => 'Ginchi, Addis Ababa',
25111259 => 'Shegole, Addis Ababa',
25111270 => 'Asko, Addis Ababa',
25111275 => 'Addis Ketema II, Addis Ababa',
25111276 => 'Addis Ketema III, Addis Ababa',
25111277 => 'Addis Ketema IV, Addis Ababa',
25111278 => 'Addis Ketema VI, Addis Ababa',
25111279 => 'Kolfe, Addis Ababa',
251112820 => 'Guder, Addis Ababa',
25111283 => 'Addis Alem, Addis Ababa',
25111284 => 'Burayu, Addis Ababa',
251112850 => 'Wolenkomi, Addis Ababa',
251112860 => 'Enchini, Addis Ababa',
25111320 => 'Old Airport I, Addis Ababa',
25111321 => 'Mekanisa, Addis Ababa',
25111330 => 'Wolkite, Addis Ababa',
251113310 => 'Endibir, Addis Ababa',
251113320 => 'Gunchire, Addis Ababa',
251113380 => 'Sebeta, Addis Ababa',
251113390 => 'Teji, Addis Ababa',
25111341 => 'Ghion, Addis Ababa',
251113420 => 'Tullu Bollo, Addis Ababa',
25111348 => 'Jimmaber (Ayer Tena), Addis Ababa',
25111349 => 'Keranyo, Addis Ababa',
25111371 => 'Old Airport II, Addis Ababa',
25111372 => 'Old Airport III, Addis Ababa',
25111373 => 'Old Airport IV, Addis Ababa',
25111374 => 'Old Airport V, Addis Ababa',
251113870 => 'Alem Gena, Addis Ababa',
25111416 => 'Keira I, Addis Ababa',
25111419 => 'Hana Mariam, Addis Ababa',
25111432 => 'Dukem, Addis Ababa',
25111433 => 'Debre Zeit, Addis Ababa',
25111434 => 'Akaki, Addis Ababa',
25111439 => 'Kaliti, Addis Ababa',
25111440 => 'Nifas Silk III, Addis Ababa',
25111442 => 'Nifas Silk I, Addis Ababa',
25111443 => 'Nifas Silk II, Addis Ababa',
25111465 => 'Keria II, Addis Ababa',
25111466 => 'Keria III, Addis Ababa',
25111467 => 'Keira IV, Addis Ababa',
25111468 => 'Keria V, Addis Ababa',
2511147 => 'Addis Ababa',
25111515 => 'Filwoha II, Addis Ababa',
25111517 => 'Sheraton/DID, Addis Ababa',
25111518 => 'Addis Ababa Region',
2511154 => 'ECA, Addis Ababa',
25111550 => 'Filwoha IV, Addis Ababa',
25111551 => 'Filwoha III, Addis Ababa',
25111552 => 'Filwha VI, Addis Ababa',
25111553 => 'Filwha V, Addis Ababa',
25111554 => 'Filwha VII, Addis Ababa',
25111618 => 'Bole I, Addis Ababa',
25111626 => 'Bole Michael, Addis Ababa',
25111629 => 'Gerji, Addis Ababa',
25111645 => 'Yeka I, Addis Ababa',
25111646 => 'Yeka II, Addis Ababa',
25111647 => 'Yeka Rss III, Addis Ababa',
25111650 => 'Addis Ababa',
25111651 => 'East Addis Ababa Zone',
25111652 => 'South Addis Ababa Zone',
25111653 => 'South-West Addis Ababa Zone',
25111654 => 'West Addis Ababa Zone',
25111655 => 'Central & North Addis Ababa Zones',
25111660 => 'Kotebe, Addis Ababa',
25111661 => 'Bole II, Addis Ababa',
25111662 => 'Bole III, Addis Ababa',
25111663 => 'Bole IV, Addis Ababa',
251116640 => 'Bole V, Addis Ababa',
251116650 => 'Civil Aviation, Addis Ababa',
25111669 => 'Bole VI, Addis Ababa',
25111680 => 'Debre Sina, Addis Ababa',
25111681 => 'Debre Birehan, Addis Ababa',
25111685 => 'Mehal Meda, Addis Ababa',
251116860 => 'Sendafa, Addis Ababa',
251116870 => 'Sheno, Addis Ababa',
251116880 => 'Enwari, Addis Ababa',
25122111 => 'Nazreth I, South-East Region',
25122112 => 'Nazreth II, South-East Region',
25122113 => 'Wolenchiti, South-East Region',
25122114 => 'Melkawarer, South-East Region',
25122115 => 'Alem Tena, South-East Region',
25122116 => 'Modjo, South-East Region',
25122118 => 'Meki, South-East Region',
25122119 => 'Nazreth, South-East Region',
25122220 => 'Wonji, South-East Region',
25122221 => 'Shoa, South-East Region',
25122223 => 'Arerti, South-East Region',
25122224 => 'Awash, South-East Region',
25122225 => 'Melkasa, South-East Region',
25122226 => 'Metehara, South-East Region',
25122227 => 'Agarfa, South-East Region',
25122330 => 'Sire, South-East Region',
25122331 => 'Asela, South-East Region',
25122332 => 'Bokoji, South-East Region',
25122333 => 'Dera, South-East Region',
25122334 => 'Huruta, South-East Region',
25122335 => 'Iteya, South-East Region',
25122336 => 'Assasa, South-East Region',
25122337 => 'Kersa, South-East Region',
25122338 => 'Sagure, South-East Region',
25122339 => 'Diksis, South-East Region',
25122441 => 'Abomsa, South-East Region',
25122444 => 'Ticho, South-East Region',
25122446 => 'Gobesa, South-East Region',
25122447 => 'Goro, South-East Region',
25122661 => 'Bale Goba, South-East Region',
25122662 => 'Gessera, South-East Region',
25122663 => 'Adaba, South-East Region',
25122664 => 'Ghinir, South-East Region',
25122665 => 'Robe, South-East Region',
25122666 => 'Dodolla, South-East Region',
25122668 => 'Dolomena, South-East Region',
25125111 => 'Dire Dawa I, East Region',
25125112 => 'Dire Dawa II, East Region',
25125114 => 'Shinile, East Region',
25125115 => 'Artshek, East Region',
25125116 => 'Melka Jeldu, East Region',
25125332 => 'Bedeno, East Region',
25125333 => 'Deder, East Region',
25125334 => 'Grawa, East Region',
25125335 => 'Chelenko, East Region',
25125336 => 'Kersa, East Region',
25125337 => 'Kobo, East Region',
25125338 => 'Kombolocha, East Region',
25125441 => 'Hirna, East Region',
25125444 => 'Miesso, East Region',
25125446 => 'Erer, East Region',
25125447 => 'Hurso, East Region',
25125551 => 'Asebe Teferi, East Region',
25125554 => 'Assebot, East Region',
25125661 => 'Alemaya, East Region',
25125662 => 'Aweday, East Region',
25125666 => 'Harar I, East Region',
25125667 => 'Harar II, East Region',
25125669 => 'Kebribeyah, East Region',
25125771 => 'Degahabur, East Region',
25125772 => 'Gursum, East Region',
25125774 => 'Kabri Dehar, East Region',
25125775 => 'Jigiga, East Region',
25125776 => 'Godie, East Region',
25125777 => 'Teferi Ber, East Region',
25125779 => 'Chinagson, East Region',
251258 => 'Kelafo, East Region',
25133110 => 'Kabe, North-East Region',
25133111 => 'Dessie I, North-East Region',
25133112 => 'Dessie II, North-East Region',
25133113 => 'Kobo Robit, North-East Region',
25133114 => 'Akesta, North-East Region',
25133116 => 'Wore-Ilu, North-East Region',
25133117 => 'Tenta, North-East Region',
25133118 => 'Senbete, North-East Region',
25133220 => 'Mekana Selam, North-East Region',
25133221 => 'Bistima, North-East Region',
25133222 => 'Hayk, North-East Region',
25133223 => 'Mille, North-East Region',
25133224 => 'Wuchale, North-East Region',
25133225 => 'Elidar, North-East Region',
25133226 => 'Jama, North-East Region',
25133330 => 'Sirinka, North-East Region',
25133331 => 'Woldia, North-East Region',
25133333 => 'Mersa, North-East Region',
25133334 => 'Kobo, North-East Region',
25133336 => 'Lalibela, North-East Region',
25133338 => 'Bure, North-East Region',
25133339 => 'Manda, North-East Region',
25133440 => 'Sekota, North-East Region',
25133444 => 'Ansokia, North-East Region',
25133550 => 'Logia, North-East Region',
25133551 => 'Kombolcha, North-East Region',
25133552 => 'Harbu, North-East Region',
25133553 => 'Bati, North-East Region',
25133554 => 'Kemise, North-East Region',
25133555 => 'Assayta, North-East Region',
25133556 => 'Dupti, North-East Region',
25133660 => 'Majate, North-East Region',
25133661 => 'Epheson, North-East Region',
25133664 => 'Shoa Robit, North-East Region',
25133666 => 'Semera, North-East Region',
25133667 => 'Decheotto, North-East Region',
25134440 => 'Mekele I, North Region',
25134441 => 'Mekele II, North Region',
25134442 => 'Quiha, North Region',
25134443 => 'Wukro, North Region',
25134444 => 'Shire Endasselassie, North Region',
25134445 => 'Adigrat, North Region',
25134446 => 'Abi Adi, North Region',
25134447 => 'Senkata, North Region',
25134448 => 'Humera, North Region',
25134550 => 'Shiraro, North Region',
25134551 => 'Korem, North Region',
25134552 => 'Betemariam, North Region',
25134554 => 'A. Selam, North Region',
25134555 => 'Rama, North Region',
25134556 => 'Adi Daero, North Region',
25134559 => 'Mekele, North Region',
25134660 => 'Adi Gudem, North Region',
25134661 => 'Endabaguna, North Region',
25134662 => 'Mai-Tebri, North Region',
25134663 => 'Waja, North Region',
25134771 => 'Adwa, North Region',
25134772 => 'Inticho, North Region',
25134773 => 'Edaga-Hamus, North Region',
25134774 => 'Alemata, North Region',
25134775 => 'Axum, North Region',
251461 => 'Shasemene',
25146220 => 'Awassa I, South Region',
25146221 => 'Awassa II, South Region',
25146222 => 'Wonda Basha, South Region',
25146224 => 'Aleta Wondo, South Region',
25146225 => 'Yirgalem, South Region',
25146226 => 'Leku, South Region',
25146227 => 'Chuko, South Region',
25146331 => 'Dilla, South Region',
25146332 => 'Yirga-Chefe, South Region',
25146333 => 'Wonago, South Region',
25146334 => 'Shakiso, South Region',
25146335 => 'Kibre-Mengist, South Region',
25146441 => 'Ziway, South Region',
25146443 => 'Hagere Mariam, South Region',
25146444 => 'Moyale, South Region',
25146445 => 'Negele Borena, South Region',
25146446 => 'Yabello, South Region',
25146449 => 'Dolo Odo, South Region',
25146551 => 'Wollayta, South Region',
25146554 => 'Durame, South Region',
25146555 => 'Hossena, South Region',
25146556 => 'Alaba Kulito, South Region',
25146558 => 'Enseno, South Region',
25146559 => 'Boditi, South Region',
251466 => 'Kebado, South Region',
25146881 => 'Arba Minch, South Region',
25146882 => 'Kibet, South Region',
25146883 => 'Buii, South Region',
25146884 => 'Arbaminch, South Region',
25147111 => 'Jimma I, South-West Region',
25147112 => 'Jimma II, South-West Region',
25147113 => 'Serbo, South-West Region',
25147114 => 'Assendabo, South-West Region',
25147115 => 'Omonada, South-West Region',
25147116 => 'Seka, South-West Region',
25147117 => 'Sekoru, South-West Region',
25147118 => 'Shebe, South-West Region',
25147119 => 'Jimma, South-West Region',
25147221 => 'Agaro, South-West Region',
25147222 => 'Ghembo, South-West Region',
25147223 => 'Dedo, South-West Region',
25147224 => 'Limmu Genet, South-West Region',
25147225 => 'Haro, South-West Region',
25147226 => 'Yebu, South-West Region',
25147228 => 'Atnago, South-West Region',
25147229 => 'Ghembe, South-West Region',
25147331 => 'Bonga, South-West Region',
25147333 => 'Yayo, South-West Region',
25147334 => 'Maji, South-West Region',
25147335 => 'Mizan Teferi, South-West Region',
25147336 => 'Aman, South-West Region',
25147337 => 'Chora, South-West Region',
25147441 => 'Metu, South-West Region',
25147443 => 'Dembi, South-West Region',
25147444 => 'Darimu, South-West Region',
25147445 => 'Bedele, South-West Region',
25147446 => 'Hurumu, South-West Region',
25147551 => 'Gambela, South-West Region',
25147552 => 'Itang, South-West Region',
25147553 => 'Jikawo, South-West Region',
25147554 => 'Gore, South-West Region',
25147556 => 'Tepi, South-West Region',
25147558 => 'Macha, South-West Region',
25147559 => 'Abebo, South-West Region',
251572 => 'Ghedo, West Region',
25157550 => 'Ejaji, West Region',
25157555 => 'Dembidolo, West Region',
25157661 => 'Nekemte, West Region',
25157664 => 'Fincha, West Region',
25157665 => 'Backo, West Region',
25157666 => 'Shambu, West Region',
25157667 => 'Arjo, West Region',
25157668 => 'Sire, West Region',
25157771 => 'Ghimbi, West Region',
25157774 => 'Nedjo, West Region',
25157775 => 'Assosa, West Region',
25157776 => 'Mendi, West Region',
25157777 => 'Billa, West Region',
25157778 => 'Guliso, West Region',
25158111 => 'Gonder, North-West Region',
25158114 => 'Azezo, North-West Region',
25158119 => 'Gilgel Beles, North-West Region',
25158220 => 'Bahir-Dar I, North-West Region',
25158221 => 'Dangla, North-West Region',
25158223 => 'Durbette/Abcheklite, North-West Region',
25158224 => 'Gimjabetmariam, North-West Region',
25158225 => 'Chagni/Metekel, North-West Region',
25158226 => 'Bahirdar II, North-West Region',
25158227 => 'Enjibara Kosober, North-West Region',
25158229 => 'Tilili, North-West Region',
25158330 => 'Merawi, North-West Region',
25158331 => 'Metema, North-West Region',
25158332 => 'Maksegnit, North-West Region',
25158333 => 'Chilga, North-West Region',
25158334 => 'Chewahit, North-West Region',
25158335 => 'Kola-Deba, North-West Region',
25158336 => 'Delgi, North-West Region',
25158338 => 'Adet, North-West Region',
25158440 => 'Ebinat, North-West Region',
25158441 => 'Debre-Tabour, North-West Region',
25158443 => 'Hamusit, North-West Region',
25158444 => 'Addis Zemen, North-West Region',
25158445 => 'Nefas Mewcha, North-West Region',
25158446 => 'Worota, North-West Region',
25158447 => 'Mekane-Eyesus, North-West Region',
25158448 => 'Teda, North-West Region',
251585 => 'Pawe, North-West Region',
25158661 => 'Motta, North-West Region',
25158662 => 'Keraniyo, North-West Region',
25158663 => 'Debre-work, North-West Region',
25158664 => 'Gunde-woin, North-West Region',
25158665 => 'Bichena, North-West Region',
25158770 => 'Mankusa, North-West Region',
25158771 => 'Debre-Markos I, North-West Region',
25158772 => 'Lumame, North-West Region',
25158773 => 'Denbecha, North-West Region',
25158774 => 'Bure, North-West Region',
25158775 => 'Finote-Selam, North-West Region',
25158776 => 'Dejen, North-West Region',
25158777 => 'Amanuel, North-West Region',
25158778 => 'Debre Markos II, North-West Region',
25158779 => 'Jiga, North-West Region',
];

View File

@@ -0,0 +1,18 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2521 => 'Mogadishu',
2523 => 'Hargeisa',
2524 => 'Garowe',
];

View File

@@ -0,0 +1,42 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2542 => 'Nairobi',
25440 => 'Kwale/Ukunda/Msambweni/Lungalunga',
25441 => 'Mombasa/Mariakani/Kilifi',
25442 => 'Malindi/Lamu/Garsen',
25443 => 'Voi/Wundanyi/Mwatate/Taveta',
25444 => 'Machakos/Makueni/Mwingi/Kitui',
25445 => 'Kajiado/Ngong/Loitokitok/Athi River',
25446 => 'Garissa/Hola/Wajir/Mandera',
25450 => 'Naivasha/Narok/Gilgil',
25451 => 'Nakuru/Njoro/Molo',
25452 => 'Kericho/Bomet',
25453 => 'Eldoret/Turbo/Kapsabet/Iten/Kabarnet',
25454 => 'Kitale/Moi\'s Bridge/Kapenguria/Lodwar',
25455 => 'Bungoma/Busia',
25456 => 'Kakamega/Mbale/Butere/Mumias/Vihiga',
25457 => 'Kisumu/Siaya/Maseno',
25458 => 'Kisii/Kilgoris/Oyugis/Nyamira',
25459 => 'Homabay/Migori',
25460 => 'Muranga/Kerugoya',
25461 => 'Nyeri/Karatina',
25462 => 'Nanyuki',
25464 => 'Meru/Maua/Chuka',
25465 => 'Nyahururu/Maralal',
25466 => 'Thika/Ruiru',
25467 => 'Kiambu/Kikuyu',
25468 => 'Embu',
25469 => 'Marsabit/Moyale',
];

View File

@@ -0,0 +1,22 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
25522 => 'Dar-Es-Salaam',
25523 => 'Coast/Morogoro/Lindi/Mtwara',
25524 => 'Zanzibar',
25525 => 'Mbeya/Songwe/Ruvuma/Katavi/Rukwa',
25526 => 'Dodoma/Iringa/Njombe/Singida/Tabora',
25527 => 'Arusha/Manyara/Kilimanjaro/Tanga',
25528 => 'Mwanza/Shinyanga/Mara/Geita/Simiyu/Kagera/Kigoma',
];

View File

@@ -0,0 +1,28 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
25641 => 'Kampala',
25643 => 'Jinja',
25645 => 'Mbale',
25646 => 'Mityana',
256464 => 'Mubende',
256465 => 'Masindi',
256471 => 'Gulu',
256473 => 'Lira',
256476 => 'Arua',
256481 => 'Masaka',
256483 => 'Fort Portal',
256485 => 'Mbarara',
256486 => 'Kabale/Rukungiri/Kisoro',
];

View File

@@ -0,0 +1,26 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2572220 => 'Bujumbura',
2572221 => 'Bujumbura',
2572222 => 'Bujumbura',
2572223 => 'Bujumbura',
2572224 => 'Bujumbura',
2572225 => 'Bujumbura',
2572226 => 'West zone',
2572227 => 'Rural areas',
2572230 => 'North zone',
2572240 => 'Central east zone',
2572250 => 'South zone',
];

View File

@@ -0,0 +1,26 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
25821 => 'Maputo',
25823 => 'Beira',
25824 => 'Quelimane',
258251 => 'Manica',
258252 => 'Tete',
25826 => 'Nampula',
258271 => 'Lichinga',
258272 => 'Pemba',
258281 => 'Chokwe',
258282 => 'Xai-Xai',
25829 => 'Inhambane',
];

View File

@@ -0,0 +1,23 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
260211 => 'Lusaka Province',
260212 => 'Ndola/Copperbelt and Luapula Provinces',
260213 => 'Livingstone/Southern Province',
260214 => 'Kasama/Northern Province',
260215 => 'Kabwe/Central Province',
260216 => 'Chipata/Eastern Province',
260217 => 'Solwezi/Western Province',
260218 => 'Mongu/North-Western Province',
];

View File

@@ -0,0 +1,36 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2612022 => 'Antananarivo',
2612044 => 'Antsirabe',
2612047 => 'Ambositra',
2612053 => 'Toamasina',
2612054 => 'Ambatondrazaka',
2612056 => 'Moramanga',
2612057 => 'Maroantsetra/Sainte Marie',
2612062 => 'Mahajanga',
2612067 => 'Antsohihy',
2612069 => 'Maintirano',
26120722 => 'Manakara',
26120729 => 'Mananjary',
2612073 => 'Farafangana',
2612075 => 'Fianarantsoa',
2612076 => 'Antananarivo',
2612082 => 'Antsiranana',
2612086 => 'Nosy Be',
2612088 => 'Sambava',
2612092 => 'Taolañaro',
2612094 => 'Toliary',
2612095 => 'Morondava',
];

View File

@@ -0,0 +1,254 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
26313 => 'Victoria Falls',
26314 => 'Rutenga',
26315 => 'Binga',
26316 => 'West Nicholson',
26317 => 'Filabusi',
26318 => 'Dete',
26319 => 'Plumtree',
2632020 => 'Mutare',
26320200 => 'Odzi',
2632021 => 'Dangamvura',
2632024 => 'Penhalonga',
263204 => 'Odzi',
263205 => 'Pengalonga',
263206 => 'Mutare',
263212 => 'Murambinda',
263213 => 'Victoria Falls',
263219 => 'Plumtree',
263220201 => 'Chikanga/Mutare',
263220202 => 'Mutare',
263220203 => 'Dangamvura',
263221 => 'Murambinda',
263222 => 'Wedza',
263225 => 'Rusape',
263227 => 'Chipinge',
263228 => 'Hauna',
263229 => 'Juliasdale',
26323 => 'Chiredzi',
263242 => 'Harare',
2632421 => 'Chitungwiza',
26324213 => 'Ruwa',
26324214 => 'Arcturus',
26324215 => 'Norton',
263242150 => 'Beatrice',
263248 => 'Birchenough Bridge',
26325 => 'Rusape',
263251 => 'Zvishavane',
263252055 => 'Nyazura',
26325206 => 'Murambinda',
26325207 => 'Headlands',
263254 => 'Gweru',
2632582 => 'Headlands',
2632583 => 'Nyazura',
26326 => 'Chimanimani',
263261 => 'Kariba',
26326208 => 'Juliasdale',
26326209 => 'Hauna',
263262098 => 'Nyanga',
263264 => 'Karoi',
263270 => 'Chitungwiza',
263271 => 'Bindura',
263272 => 'Mutoko',
26327203 => 'Birchenough Bridge',
26327204 => 'Chipinge',
263272046 => 'Chipangayi',
26327205 => 'Chimanimani',
263272317 => 'Checheche',
263273 => 'Ruwa',
263274 => 'Arcturus',
263275219 => 'Mazowe',
26327522 => 'Mt. Darwin',
26327523 => 'Mt. Darwin',
26327524 => 'Mt. Darwin',
26327525 => 'Mt. Darwin',
26327526 => 'Mt. Darwin',
26327527 => 'Mt. Darwin',
26327528 => 'Mt. Darwin',
26327529 => 'Mt. Darwin',
2632753 => 'Mt. Darwin',
26327540 => 'Mt. Darwin',
26327541 => 'Mt. Darwin',
263277 => 'Mvurwi',
263278 => 'Murewa',
263279 => 'Marondera',
263281 => 'Hwange',
263282 => 'Kezi',
263283 => 'Figtree',
263284 => 'Gwanda',
263285 => 'Turkmine',
263286 => 'Beitbridge',
263287 => 'Tsholotsho',
263288 => 'Esigodini',
263289 => 'Jotsholo',
26329 => 'Bulawayo',
26329246 => 'Bellevue',
26329252 => 'Luveve',
263292800 => 'Esigodini',
263292802 => 'Shangani',
263292803 => 'Turkmine',
263292804 => 'Figtree',
263292807 => 'Kezi',
263292809 => 'Matopos',
263292821 => 'Nyamandlovu',
263292861 => 'Tsholotsho',
26330 => 'Gutu',
263308 => 'Chatsworth',
26331 => 'Chiredzi',
26331233 => 'Triangle',
263312337 => 'Rutenga',
263312370 => 'Ngundu',
263317 => 'Checheche',
26332 => 'Mvuma',
263329 => 'Nyanga',
26333 => 'Triangle',
263337 => 'Nyaningwe',
263338 => 'Nyika',
26334 => 'Jerera',
26335 => 'Mashava',
26336 => 'Ngundu',
263371 => 'Shamva',
263375 => 'Concession',
263376 => 'Glendale',
263379 => 'Macheke',
263383 => 'Matopose',
263387 => 'Nyamandhlovu',
26339 => 'Masvingo',
26339230 => 'Gutu',
263392308 => 'Chatsworth',
263392323 => 'Nyika',
26339234 => 'Jerera',
26339235 => 'Zvishavane',
263392360 => 'Mberengwa',
263392366 => 'Mataga',
263392380 => 'Nyaningwe',
26339245 => 'Mashava',
263398 => 'Lupane',
2634 => 'Harare',
263420085 => 'Selous',
263420086 => 'Selous',
263420087 => 'Selous',
263420088 => 'Selous',
263420089 => 'Selous',
26342009 => 'Selous',
26342010 => 'Selous',
263420106 => 'Norton',
263420107 => 'Norton',
263420108 => 'Norton',
263420109 => 'Norton',
263420110 => 'Norton',
26342722 => 'Chitungwiza',
26342723 => 'Chitungwiza',
26342728 => 'Marondera',
26342729 => 'Marondera',
26350 => 'Shanagani',
263512 => 'Zvishavane',
263513 => 'Zvishavane',
263514 => 'Zvishavane',
263517 => 'Mataga',
263518 => 'Mberengwa',
26352 => 'Shurugwi',
26353 => 'Chegutu',
26354 => 'Gweru',
26354212 => 'Chivhu',
26354252 => 'Shurugwi',
263542532 => 'Mvuma',
263542548 => 'Lalapanzi',
2635483 => 'Lalapanzi',
26355 => 'Kwekwe',
2635525 => 'Battle Fields/Kwekwe/Redcliff',
263552557 => 'Munyati',
263552558 => 'Nkayi',
26355259 => 'Gokwe',
263557 => 'Munyati',
263558 => 'Nkayi',
26356 => 'Chivhu',
26357 => 'Centenary',
26358 => 'Guruve',
26359 => 'Gokwe',
26360 => 'Mhangura',
26361 => 'Kariba',
263612140 => 'Chirundu',
263612141 => 'Makuti',
26361215 => 'Karoi',
26362 => 'Norton',
263628 => 'Selous',
26363 => 'Makuti',
263637 => 'Chirundu',
26364 => 'Karoi',
26365 => 'Beatrice',
26365208 => 'Wedza',
263652080 => 'Macheke',
2636521 => 'Murewa',
26365213 => 'Mutoko',
2636523 => 'Marondera',
26366 => 'Banket',
26366210 => 'Bindura/Centenary',
26366212 => 'Mount Darwin',
263662137 => 'Shamva',
26366216 => 'Mvurwi',
26366217 => 'Guruve',
26366218 => 'Glendale',
26366219 => 'Christon Bank/Concession/Mazowe',
263667 => 'Raffingora',
263668 => 'Mutorashanga',
26367 => 'Chinhoyi',
263672136 => 'Trelawney',
26367214 => 'Banket/Mhangura',
26367215 => 'Murombedzi',
263672192 => 'Darwendale',
263672196 => 'Mutorashanga',
263672198 => 'Raffingora',
263675 => 'Murombedzi',
26368 => 'Kadoma',
2636821 => 'Kadoma/Selous',
26368215 => 'Chegutu',
26368216 => 'Sanyati',
263682189 => 'Chakari',
263687 => 'Sanyati',
263688 => 'Chakari',
26369 => 'Darwendale',
263698 => 'Trelawney',
2638128 => 'Baobab/Hwange',
263812835 => 'Dete',
263812847 => 'Binga',
263812856 => 'Lupane',
263812875 => 'Jotsholo',
26383 => 'Victoria Falls',
2638428 => 'Gwanda',
263842801 => 'Filabusi',
263842808 => 'West Nicholson',
263842835 => 'Collen Bawn',
26385 => 'BeitBridge',
26389280 => 'Plumtree',
2639 => 'Bulawayo',
263920 => 'Northend',
263921 => 'Northend',
2639226 => 'Queensdale',
2639228 => 'Queensdale',
263924 => 'Hillside',
263929 => 'Killarney',
263940 => 'Mabutewni',
263941 => 'Mabutewni',
263942 => 'Mabutewni',
263943 => 'Mabutewni',
263946 => 'Bellevue',
263947 => 'Bellevue',
263948 => 'Nkulumane',
263949 => 'Nkulumane',
263952 => 'Luveve',
263956 => 'Luveve',
];

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,16 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
26622 => 'Maseru',
];

View File

@@ -0,0 +1,55 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
26724 => 'Francistown',
26726 => 'Selebi-Phikwe',
26729 => 'Letlhakane/Orapa',
267310 => 'Gaborone (outer)',
267312 => 'Gaborone',
267313 => 'Gaborone',
267315 => 'Gaborone',
267316 => 'Gaborone',
267317 => 'Gaborone',
267318 => 'Gaborone',
267319 => 'Gaborone',
26735 => 'Gaborone',
26736 => 'Gaborone',
267370 => 'Gaborone',
267371 => 'Gaborone',
26738 => 'Gaborone',
267390 => 'Gaborone',
267391 => 'Gaborone',
267392 => 'Gaborone',
267393 => 'Gaborone',
267394 => 'Gaborone',
267395 => 'Gaborone',
267397 => 'Gaborone',
26746 => 'Serowe',
26747 => 'Mahalapye',
26749 => 'Palapye',
267530 => 'Lobatse',
267533 => 'Lobatse',
267534 => 'Lobatse',
267538 => 'Ramotswa',
267539 => 'Ramotswa',
26754 => 'Barolong/Ngwaketse',
26757 => 'Mochudi',
26758 => 'Jwaneng',
26759 => 'Molepolole',
26762 => 'Kasane',
267651 => 'Kgalagadi',
267654 => 'Kgalagadi',
267659 => 'Gantsi',
26768 => 'Maun',
];

View File

@@ -0,0 +1,55 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2682207 => 'Nhlangano, Shiselweni district',
2682217 => 'Hlathikulu, Shiselweni district',
2682227 => 'Hluthi, Shiselweni district',
2682237 => 'Mahamba, Shiselweni district',
2682303 => 'Nsoko, Lubombo district',
2682312 => 'Mhlume, Lubombo district',
2682313 => 'Mhlume, Lubombo district',
2682322 => 'Tshaneni, Lubombo district',
2682323 => 'Tshaneni, Lubombo district',
2682333 => 'Mpaka, Lubombo district',
2682343 => 'Siteki, Lubombo district',
2682344 => 'Siphofaneni, Lubombo district',
2682363 => 'Big Bend, Lubombo district',
2682364 => 'Big Bend, Lubombo district',
2682373 => 'Maphiveni, Lubombo district',
2682382 => 'Simunye, Lubombo district',
2682383 => 'Simunye, Lubombo district',
2682404 => 'Mbabane, Hhohho district',
2682405 => 'Mbabane, Hhohho district',
2682406 => 'Mbabane, Hhohho district',
2682416 => 'Lobamba, Hhohho district',
2682422 => 'Sidwashini, Hhohho district',
2682437 => 'Pigg\'s Peak, Hhohho district',
2682442 => 'Ngwenya, Hhohho district',
2682452 => 'Bhunya, Hhohho district',
2682453 => 'Bhunya, Hhohho district',
2682467 => 'Mhlambanyatsi, Hhohho district',
2682472 => 'Mahwalala, Hhohho district',
2682482 => 'Siphocosini, Hhohho district',
2682505 => 'Manzini',
2682506 => 'Manzini',
2682517 => 'Matsapha, Manzini district',
2682518 => 'Matsapha, Manzini district',
2682528 => 'Malkerns, Manzini district',
2682538 => 'Mankayane, Manzini district',
2682548 => 'Ludzeludze, Manzini district',
26832 => 'Shiselweni',
26833 => 'Lubombo',
26834 => 'Hhohho',
26835 => 'Manzini',
];

View File

@@ -0,0 +1,31 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
269760 => 'Domoni',
269761 => 'Mutsamudu',
269762 => 'Mohéli',
269763 => 'Moroni',
269767 => 'Mbéni',
269768 => 'Mitsamiouli',
269769 => 'Foumbouni',
269770 => 'Domoni',
269771 => 'Mutsamudu',
269772 => 'Mohéli',
269773 => 'Moroni',
269774 => 'Moroni',
269775 => 'Moroni',
269777 => 'Mbéni',
269778 => 'Mitsamiouli',
269779 => 'Foumbouni',
];

View File

@@ -0,0 +1,52 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
2710 => 'Johannesburg',
2711 => 'Johannesburg',
2712 => 'Brits/Tshwane',
2713 => 'Bronkhorstspruit/Eastern Gauteng/Middelburg/Nelspruit/Northern and Western Mpumalanga/Witbank',
2714 => 'Modimolle/Northern North West and Southwestern Limpopo/Rustenburg',
2715 => 'Northern and Eastern Limpopo/Polokwane',
2716 => 'Vaal Triangle',
2717 => 'Ermelo/Secunda/Southern Mpumalanga',
2718 => 'Klerksdorp/Lichtenburg/Potchefstroom',
2721 => 'Cape Town/Gordons Bay/Somerset West/Stellenbosch',
2722 => 'Boland/Malmesbury/Vredenburg/Western coast of Western Cape',
2723 => 'Beaufort West/Karoo/Robertson/Worcester',
2727 => 'Alexander Bay/Calvinia/Clanwilliam/Namaqualand/Port Nolloth/Springbok/Vredendal',
2728 => 'Caledon/Hermanus/Southern coast of Western Cape/Swellendam',
2731 => 'Durban',
2732 => 'Ballito/KwaZulu Natal coast/Stanger/Tongaat/Verulam',
2733 => 'KwaZulu Natal Midlands/Pietermaritzburg',
2734 => 'Newcastle/Northern KwaZulu Natal/Vryheid',
2735 => 'Richards Bay/St. Lucia/Ulundi/Zululand',
2736 => 'Drakensberg/Ladysmith',
2739 => 'Eastern Pondoland/Port Shepstone/Southern coast of KwaZulu Natal',
2740 => 'Alice/Bhisho',
2741 => 'Port Elizabeth/Uitenhage',
2742 => 'Jeffreys Bay/Humansdorp/Southern and central Eastern Cape',
2743 => 'East London',
2744 => 'Garden Route/George/Knysna/Mossel Bay/Oudtshoorn/Plettenberg Bay',
2745 => 'Northern and eastern parts of Eastern Cape/Queenstown',
2746 => 'Bathurst/Southern and eastern parts of Eastern Cape/Grahamstown/Kenton-on-Sea/Port Alfred',
2747 => 'Butterworth/Eastern part of Eastern Cape/Mthatha',
2748 => 'Cradock/Northern part of Eastern Cape/Steynsburg',
2749 => 'Graaff-Reinet/Western part of Eastern Cape',
2751 => 'Aliwal North/Bloemfontein/Far eastern part of Eastern Cape/Southern and Central Free State',
2753 => 'Eastern part of Northern Cape/Far western part of North West/Kimberley/Kuruman',
2754 => 'Upington/Gordonia',
2756 => 'Kroonstad/Parys/Northern Free State',
2757 => 'Northern Free State Goldfields/Welkom',
2758 => 'Bethlehem/Eastern Free State',
];

View File

@@ -0,0 +1,26 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
29022 => 'Jamestown',
29023 => 'St. Helena',
29024 => 'St. Helena',
290264 => 'St. Helena',
290265 => 'St. Helena',
290266 => 'St. Helena',
290267 => 'St. Helena',
290268 => 'St. Helena',
290269 => 'St. Helena',
29027 => 'St. Helena',
2908 => 'Tristan da Cunha',
];

View File

@@ -0,0 +1,41 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
29931 => 'Nuuk',
29932 => 'Nuuk',
29933 => 'Nuuk',
29934 => 'Nuuk',
29935 => 'Nuuk',
29936 => 'Nuuk',
29937 => 'Nuuk',
29961 => 'Nanortalik',
29964 => 'Qaqortoq',
29966 => 'Narsaq',
29968 => 'Paamiut',
299691 => 'Ivittuut',
29981 => 'Maniitsoq',
29984 => 'Kangerlussuaq',
29985 => 'Sisimiut',
29986 => 'Sisimiut',
29987 => 'Kangaatsiaq',
29989 => 'Aasiaat',
29991 => 'Qasigannguit',
29992 => 'Qeqertasuaq',
29994 => 'Ilulissat',
29995 => 'Uummannaq',
29996 => 'Upernavik',
29997 => 'Qaanaaq',
29998 => 'Tasiilaq',
29999 => 'Ittoqqortoormiit',
];

View File

@@ -0,0 +1,255 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
3021 => 'Athens/Piraeus/Salamina',
302221 => 'Chalcis',
302222 => 'Kymi',
302223 => 'Aliveri',
302224 => 'Karystos',
302226 => 'Aidipsos',
302227 => 'Kireas',
302228 => 'Messapia',
302229 => 'Eretria',
302231 => 'Lamia',
302232 => 'Domokos',
302233 => 'Atalanta',
302234 => 'Amfikleia',
302235 => 'Kamena Vourla',
302236 => 'Makrakomi',
302237 => 'Karpenisi',
302238 => 'Stylida',
302241 => 'Rhodes',
302242 => 'Kos',
302243 => 'Kalymnos',
302244 => 'Archangelos, Rhodes',
302245 => 'Karpathos',
302246 => 'Salakos, Rhodes',
302247 => 'Leros',
302251 => 'Mytilene',
302252 => 'Agiasos/Plomari',
302253 => 'Kalloni, Lesbos',
302254 => 'Agios Efstratios',
302261 => 'Livadeia',
302262 => 'Thebes',
302263 => 'Vilia',
302264 => 'Thisvi',
302265 => 'Amfissa',
302266 => 'Lidoriki',
302267 => 'Distomo',
302268 => 'Aliartos',
302271 => 'Chios',
302272 => 'Kardamyla',
302273 => 'Samos',
302274 => 'Psara, Chios',
302275 => 'Agios Kirykos',
302281 => 'Ano Syros',
302282 => 'Andros',
302283 => 'Tinos',
302284 => 'Paros',
302285 => 'Naxos',
302286 => 'Santorini',
302287 => 'Milos',
302288 => 'Kea',
302289 => 'Mykonos',
302291 => 'Lagonisi',
302292 => 'Lavrio',
302293 => 'Agia Sotira',
302294 => 'Rafina',
302295 => 'Afidnes',
302296 => 'Megara',
302297 => 'Aegina',
302298 => 'Troezen/Poros/Hydra/Spetses',
302299 => 'Markopoulo Mesogaias',
30231 => 'Thessaloniki',
302321 => 'Serres',
302322 => 'Nigrita',
302323 => 'Sidirokastro',
302324 => 'Nea Zichni',
302325 => 'Irakleia, Serres',
302327 => 'Rodopoli',
302331 => 'Veria',
302332 => 'Naousa, Imathia',
302333 => 'Alexandria',
302341 => 'Kilkis',
302343 => 'Polykastro',
302351 => 'Korinos',
302352 => 'Litochoro',
302353 => 'Aiginio',
302371 => 'Polygyros',
302372 => 'Arnaia',
302373 => 'Nea Moudania',
302374 => 'Kassandreia',
302375 => 'Nikiti',
302376 => 'Stratoni',
302377 => 'Ierissos/Mount Athos',
302381 => 'Edessa',
302382 => 'Giannitsa',
302384 => 'Aridaia',
302385 => 'Florina',
302386 => 'Amyntaio',
302391 => 'Chalkidona',
302392 => 'Peraia, Thessaloniki',
302393 => 'Lagkadikia',
302394 => 'Lagkadas',
302395 => 'Sochos',
302396 => 'Vasilika',
302397 => 'Asprovalta',
302399 => 'Kallikrateia',
30241 => 'Larissa',
302421 => 'Volos',
302422 => 'Almyros',
302423 => 'Kala Nera',
302424 => 'Skopelos',
302425 => 'Feres, Magnesia',
302426 => 'Zagora',
302427 => 'Skiathos',
302431 => 'Trikala',
302432 => 'Kalabaka',
302433 => 'Farkadona',
302434 => 'Pyli',
302441 => 'Karditsa',
302443 => 'Sofades',
302444 => 'Palamas',
302445 => 'Mouzaki',
302461 => 'Kozani',
302462 => 'Grevena',
302463 => 'Ptolemaida',
302464 => 'Servia',
302465 => 'Siatista',
302467 => 'Kastoria',
302468 => 'Neapoli',
302491 => 'Farsala',
302492 => 'Tyrnavos',
302493 => 'Elassona',
302494 => 'Agia',
302495 => 'Gonnoi/Makrychori',
30251 => 'Kavala',
302521 => 'Drama',
302522 => 'Prosotsani',
302523 => 'Kato Nevrokopi',
302524 => 'Paranesti',
302531 => 'Komotini',
302532 => 'Sapes',
302533 => 'Xylagani',
302534 => 'Iasmos',
302535 => 'Nea Kallisti',
302541 => 'Xanthi',
302542 => 'Stavroupoli',
302544 => 'Echinos',
302551 => 'Alexandroupoli',
302552 => 'Orestiada',
302553 => 'Didymoteicho',
302554 => 'Soufli',
302555 => 'Feres, Evros',
302556 => 'Kyprinos',
302591 => 'Chrysoupoli',
302592 => 'Eleftheroupoli',
302593 => 'Thasos',
302594 => 'Nea Peramos, Kavala',
30261 => 'Patras',
302621 => 'Burgas',
302622 => 'Amaliada',
302623 => 'Lechaina',
302624 => 'Olympia',
302625 => 'Krestena',
302626 => 'Andritsaina',
302631 => 'Messolonghi',
302632 => 'Aitoliko',
302634 => 'Nafpaktos',
302635 => 'Mataranga',
302641 => 'Agrinio',
302642 => 'Amfilochia',
302643 => 'Vonitsa',
302644 => 'Thermo',
302645 => 'Lefkada',
302647 => 'Fyteies',
302651 => 'Ioannina',
302653 => 'Asprangeli',
302655 => 'Konitsa',
302656 => 'Metsovo',
302657 => 'Delvinaki',
302658 => 'Zitsa',
302659 => 'Kalentzi',
302661 => 'Corfu',
302662 => 'Lefkimmi',
302663 => 'Corfu Island',
302664 => 'Filiates',
302665 => 'Igoumenitsa',
302666 => 'Paramythia',
302671 => 'Argostoli',
302674 => 'Sami, Cephalonia',
302681 => 'Arta',
302682 => 'Preveza',
302683 => 'Filippiada',
302684 => 'Kanalaki',
302685 => 'Athamania',
302691 => 'Aigio',
302692 => 'Kalavryta',
302693 => 'Kato Achaia',
302694 => 'Chalandritsa',
302695 => 'Zakynthos',
302696 => 'Akrata',
30271 => 'Tripoli',
302721 => 'Kalamata',
302722 => 'Messene',
302723 => 'Pylos',
302724 => 'Meligalas',
302725 => 'Koroni',
302731 => 'Sparti',
302732 => 'Molaoi',
302733 => 'Gytheio',
302734 => 'Neapoli, Voies',
302735 => 'Molaoi',
302736 => 'Kythera',
302741 => 'Corinth',
302742 => 'Kiato',
302743 => 'Xylokastro',
302744 => 'Loutraki',
302746 => 'Nemea',
302747 => 'Stymfalia',
302751 => 'Argos',
302752 => 'Nafplio',
302753 => 'Lygourio',
302754 => 'Kranidi',
302755 => 'Astros',
302757 => 'Leonidio',
302761 => 'Kyparissia',
302763 => 'Gargalianoi',
302765 => 'Kopanaki',
302791 => 'Megalopolis',
302792 => 'Kastri Kynourias',
302795 => 'Vytina',
302796 => 'Levidi',
302797 => 'Tropaia',
30281 => 'Heraklion',
302821 => 'Chania',
302822 => 'Kissamos',
302823 => 'Kandanos',
302824 => 'Kolymvari',
302825 => 'Vamos',
302831 => 'Rethymno',
302832 => 'Spyli',
302833 => 'Amari, Rethymno',
302834 => 'Perama Mylopotamou',
302841 => 'Agios Nikolaos',
302842 => 'Ierapetra',
302843 => 'Sitia',
302844 => 'Tzermadio',
302891 => 'Arkalochori',
302892 => 'Moires, Heraklion',
302893 => 'Pyrgos, Crete',
302894 => 'Agia Varvara',
302895 => 'Ano Viannos',
302897 => 'Limenas Chersonisou',
];

View File

@@ -0,0 +1,156 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
3110 => 'Rotterdam',
31111 => 'Zierikzee',
31113 => 'Goes',
31114 => 'Hulst',
31115 => 'Terneuzen',
31117 => 'Oostburg',
31118 => 'Middelburg',
3113 => 'Tilburg',
3115 => 'Delft',
31161 => 'Rijen',
31162 => 'Oosterhout',
31164 => 'Bergen op Zoom',
31165 => 'Roosendaal',
31166 => 'Tholen',
31167 => 'Steenbergen',
31168 => 'Zevenbergen',
31172 => 'Alphen aan den Rijn',
31174 => 'Naaldwijk',
31180 => 'Barendrecht',
31181 => 'Spijkenisse',
31182 => 'Gouda',
31183 => 'Gorinchem',
31184 => 'Sliedrecht',
31186 => 'Oud-Beijerland',
31187 => 'Middelharnis',
3120 => 'Amsterdam',
31222 => 'Den Burg',
31223 => 'Den Helder',
31224 => 'Schagen',
31226 => 'Noord Scharwoude',
31227 => 'Medemblik',
31228 => 'Enkhuizen',
31229 => 'Horn',
3123 => 'Haarlem',
3124 => 'Nijmegen',
31251 => 'Beverwijk',
31252 => 'Nieuw-Vennep',
31255 => 'IJmuiden',
3126 => 'Arnhem',
31294 => 'Weesp',
31297 => 'Aalsmeer',
31299 => 'Purmerend',
3130 => 'Utrecht',
31313 => 'Dieren',
31314 => 'Doetinchem',
31315 => 'Terborg',
31316 => 'Zevenaar',
31317 => 'Wageningen',
31318 => 'Veenendaal',
31320 => 'Lelystad',
31321 => 'Dronten',
3133 => 'Amersfoort',
31341 => 'Harderwijk',
31342 => 'Barneveld',
31343 => 'Driebergen-Rijsenburg',
31344 => 'Tiel',
31345 => 'Culemborg',
31346 => 'Maarssen',
31347 => 'Vianen',
31348 => 'Woerden',
3135 => 'Hilversum',
3136 => 'Almere',
3138 => 'Zwolle',
3140 => 'Eindhoven',
31411 => 'Boxtel',
31412 => 'Oss',
31413 => 'Uden',
31416 => 'Waalwijk',
31418 => 'Zaltbommel',
3143 => 'Maastricht',
3145 => 'Heerlen',
3146 => 'Sittard',
31475 => 'Roermond',
31478 => 'Venray',
31481 => 'Bemmel',
31485 => 'Cuyk',
31486 => 'Grave',
31487 => 'Druten',
31488 => 'Zetten',
31492 => 'Helmond',
31493 => 'Deurne',
31495 => 'Weert',
31497 => 'Eersel',
31499 => 'Best',
3150 => 'Groningen',
31511 => 'Veenwouden',
31512 => 'Drachten',
31513 => 'Heerenveen',
31514 => 'Lemmer',
31515 => 'Sneek',
31516 => 'Oosterwolde',
31517 => 'Harlingen',
31518 => 'St. Annaparochie',
31519 => 'Dokkum',
31521 => 'Steenwijk',
31522 => 'Meppel',
31523 => 'Hardenberg',
31524 => 'Coevorden',
31525 => 'Elburg',
31527 => 'Emmeloord',
31528 => 'Hoogeveen',
31529 => 'Dalfsen',
3153 => 'Enschede',
31541 => 'Oldenzaal',
31543 => 'Winterswijk',
31544 => 'Lichtenvoorde',
31545 => 'Eibergen',
31546 => 'Almelo',
31547 => 'Goor',
31548 => 'Rijssen',
3155 => 'Apeldoorn',
31561 => 'Wolvega',
31562 => 'West-Terschelling',
31566 => 'Grou',
31570 => 'Deventer',
31571 => 'Twello',
31572 => 'Raalte',
31573 => 'Lochem',
31575 => 'Zutphen',
31577 => 'Elspeet',
31578 => 'Epe',
3158 => 'Leeuwarden',
31591 => 'Emmen',
31592 => 'Assen',
31593 => 'Beilen',
31594 => 'Zuidhorn',
31595 => 'Warffum',
31596 => 'Delfzijl',
31597 => 'Winschoten',
31598 => 'Veendam',
31599 => 'Stadskanaal',
3170 => 'The Hague',
3171 => 'Leiden',
3172 => 'Alkmaar',
3173 => '\'s-Hertogenbosch',
3174 => 'Hengelo',
3175 => 'Zaandam',
3176 => 'Breda',
3177 => 'Venlo',
3178 => 'Dordrecht',
3179 => 'Zoetermeer',
];

View File

@@ -0,0 +1,56 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
3210 => 'Wavre',
3211 => 'Hasselt',
3212 => 'Tongeren',
3213 => 'Diest',
3214 => 'Herentals',
3215 => 'Mechelen',
3216 => 'Leuven',
3219 => 'Waremme',
322 => 'Brussels',
323 => 'Antwerp',
3242 => 'Liège',
3243 => 'Liège',
3250 => 'Bruges',
3251 => 'Roeselare',
3252 => 'Dendermonde',
3253 => 'Aalst',
3254 => 'Ninove',
3255 => 'Ronse',
3256 => 'Kortrijk',
3257 => 'Ypres',
3258 => 'Veurne',
3259 => 'Ostend',
3260 => 'Chimay',
3261 => 'Libramont-Chevigny',
3263 => 'Arlon',
3264 => 'La Louvière',
3265 => 'Mons',
3267 => 'Nivelles',
3268 => 'Ath',
3269 => 'Tournai',
3271 => 'Charleroi',
3280 => 'Stavelot',
3281 => 'Namur',
3282 => 'Dinant',
3283 => 'Ciney',
3284 => 'Marche-en-Famenne',
3285 => 'Huy',
3286 => 'Durbuy',
3287 => 'Verviers',
3289 => 'Genk',
329 => 'Ghent',
];

View File

@@ -0,0 +1,191 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
3481 => 'Madrid',
34820 => 'Ávila',
34821 => 'Segovia',
34822 => 'Tenerife',
34823 => 'Salamanca',
34824 => 'Badajoz',
34825 => 'Toledo',
34826 => 'Ciudad Real',
34827 => 'Cáceres',
34828 => 'Las Palmas',
3483 => 'Barcelona',
34841 => 'La Rioja',
34842 => 'Cantabria',
34843 => 'Guipúzcoa',
34844 => 'Bizkaia',
34845 => 'Araba',
34846 => 'Bizkaia',
34847 => 'Burgos',
34848 => 'Navarre',
34849 => 'Guadalajara',
34850 => 'Almería',
34851 => 'Málaga',
34852 => 'Málaga',
34853 => 'Jaén',
34854 => 'Seville',
34855 => 'Seville',
34856 => 'Cádiz',
34857 => 'Cordova',
34858 => 'Granada',
34859 => 'Huelva',
34860 => 'Valencia',
34861 => 'Valencia',
34862 => 'Valencia',
34863 => 'Valencia',
34864 => 'Castellón',
34865 => 'Alicante',
34866 => 'Alicante',
34867 => 'Albacete',
34868 => 'Murcia',
34869 => 'Cuenca',
34871 => 'Balearic Islands',
34872 => 'Girona',
34873 => 'Lleida',
34874 => 'Huesca',
34875 => 'Soria',
34876 => 'Zaragoza',
34877 => 'Tarragona',
34878 => 'Teruel',
34879 => 'Palencia',
34880 => 'Zamora',
34881 => 'La Coruña',
34882 => 'Lugo',
34883 => 'Valladolid',
34884 => 'Asturias',
34885 => 'Asturias',
34886 => 'Pontevedra',
34887 => 'León',
34888 => 'Ourense',
3491 => 'Madrid',
34920 => 'Ávila',
34921 => 'Segovia',
34922 => 'Tenerife',
34923 => 'Salamanca',
34924 => 'Badajoz',
34925 => 'Toledo',
34926 => 'Ciudad Real',
34927 => 'Cáceres',
34928 => 'Las Palmas',
3493 => 'Barcelona',
34941 => 'La Rioja',
34942 => 'Cantabria',
34943 => 'Guipúzcoa',
34944 => 'Bizkaia',
34945 => 'Araba',
34946 => 'Bizkaia',
34947 => 'Burgos',
34948 => 'Navarre',
34949 => 'Guadalajara',
34950 => 'Almería',
34951 => 'Málaga',
34952 => 'Málaga',
34953 => 'Jaén',
34954 => 'Seville',
34955 => 'Seville',
34956 => 'Cádiz',
34957 => 'Cordova',
34958 => 'Granada',
34959 => 'Huelva',
34960 => 'Valencia',
34961 => 'Valencia',
34962 => 'Valencia',
34963 => 'Valencia',
34964 => 'Castellón',
34965 => 'Alicante',
34966 => 'Alicante',
34967 => 'Albacete',
34968 => 'Murcia',
3496900 => 'Cuenca',
3496901 => 'Cuenca',
3496902 => 'Cuenca',
3496903 => 'Cuenca',
3496904 => 'Cuenca',
3496905 => 'Cuenca',
349690600 => 'Cuenca',
349690601 => 'Cuenca',
349690602 => 'Cuenca',
349690603 => 'Cuenca',
349690604 => 'Cuenca',
349690605 => 'Cuenca',
349690606 => 'Cuenca',
349690607 => 'Cuenca',
349690608 => 'Cuenca',
349690611 => 'Cuenca',
349690612 => 'Cuenca',
349690613 => 'Cuenca',
349690614 => 'Cuenca',
349690615 => 'Cuenca',
349690616 => 'Cuenca',
349690617 => 'Cuenca',
349690618 => 'Cuenca',
349690619 => 'Cuenca',
34969062 => 'Cuenca',
34969063 => 'Cuenca',
34969064 => 'Cuenca',
34969065 => 'Cuenca',
34969066 => 'Cuenca',
34969067 => 'Cuenca',
34969068 => 'Cuenca',
34969069 => 'Cuenca',
3496907 => 'Cuenca',
3496908 => 'Cuenca',
3496909 => 'Cuenca',
349691 => 'Cuenca',
349692 => 'Cuenca',
349693 => 'Cuenca',
349694 => 'Cuenca',
349695 => 'Cuenca',
349696 => 'Cuenca',
349697 => 'Cuenca',
349698 => 'Cuenca',
349699 => 'Cuenca',
34971 => 'Balearic Islands',
34972 => 'Girona',
349730 => 'Lleida',
349731 => 'Lleida',
349732 => 'Lleida',
349733 => 'Lleida',
349734 => 'Lleida',
349735 => 'Lleida',
349736 => 'Lleida',
349737 => 'Lleida',
349738 => 'Lleida',
3497391 => 'Lleida',
3497392 => 'Lleida',
3497393 => 'Lleida',
3497394 => 'Lleida',
3497395 => 'Lleida',
3497396 => 'Lleida',
3497397 => 'Lleida',
3497398 => 'Lleida',
3497399 => 'Lleida',
34974 => 'Huesca',
34975 => 'Soria',
34976 => 'Zaragoza',
34977 => 'Tarragona',
34978 => 'Teruel',
34979 => 'Palencia',
34980 => 'Zamora',
34981 => 'La Coruña',
34982 => 'Lugo',
34983 => 'Valladolid',
34984 => 'Asturias',
34985 => 'Asturias',
34986 => 'Pontevedra',
34987 => 'León',
34988 => 'Ourense',
];

View File

@@ -0,0 +1,67 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
35121 => 'Lisbon',
35122 => 'Porto',
351231 => 'Mealhada',
351232 => 'Viseu',
351233 => 'Figueira da Foz',
351234 => 'Aveiro',
351235 => 'Arganil',
351236 => 'Pombal',
351238 => 'Seia',
351239 => 'Coimbra',
351241 => 'Abrantes',
351242 => 'Ponte de Sôr',
351243 => 'Santarém',
351244 => 'Leiria',
351245 => 'Portalegre',
351249 => 'Torres Novas',
351251 => 'Valença',
351252 => 'V. N. de Famalicão',
351253 => 'Braga',
351254 => 'Peso da Régua',
351255 => 'Penafiel',
351256 => 'S. João da Madeira',
351257 => 'Braga',
351258 => 'Viana do Castelo',
351259 => 'Vila Real',
351261 => 'Torres Vedras',
351262 => 'Caldas da Rainha',
351263 => 'Vila Franca de Xira',
351265 => 'Setúbal',
351266 => 'Évora',
351268 => 'Estremoz',
351269 => 'Santiago do Cacém',
351271 => 'Guarda',
351272 => 'Castelo Branco',
351273 => 'Bragança',
351274 => 'Proença-a-Nova',
351275 => 'Covilhã',
351276 => 'Chaves',
351277 => 'Idanha-a-Nova',
351278 => 'Mirandela',
351279 => 'Moncorvo',
351281 => 'Tavira',
351282 => 'Portimão',
351283 => 'Odemira',
351284 => 'Beja',
351285 => 'Moura',
351286 => 'Castro Verde',
351289 => 'Faro',
351291 => 'Funchal',
351292 => 'Horta',
351295 => 'Angra do Heroísmo',
351296 => 'Ponta Delgada',
];

View File

@@ -0,0 +1,243 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
35222 => 'Luxembourg City',
35223 => 'Mondorf-les-Bains/Bascharage/Noerdange/Remich',
352240 => 'Luxembourg',
352241 => 'Luxembourg',
3522420 => 'Luxembourg',
3522421 => 'Weicherdange',
3522422 => 'Luxembourg City',
3522423 => 'Mondorf-les-Bains/Bascharage/Noerdange/Remich',
3522424 => 'Luxembourg',
3522425 => 'Luxembourg',
3522426 => 'Luxembourg',
3522427 => 'Belair, Luxembourg',
3522428 => 'Luxembourg City',
3522429 => 'Luxembourg/Kockelscheuer',
3522430 => 'Capellen/Kehlen',
3522431 => 'Bertrange/Mamer/Munsbach/Strassen',
3522432 => 'Lintgen/Mersch/Steinfort',
3522433 => 'Walferdange',
3522434 => 'Rameldange/Senningerberg',
3522435 => 'Sandweiler/Moutfort/Roodt-sur-Syre',
3522436 => 'Hesperange/Kockelscheuer/Roeser',
3522437 => 'Leudelange/Ehlange/Mondercange',
3522438 => 'Luxembourg',
3522439 => 'Windhof/Steinfort',
3522440 => 'Howald',
3522441 => 'Luxembourg',
3522442 => 'Plateau de Kirchberg',
3522443 => 'Findel/Kirchberg',
3522444 => 'Luxembourg',
3522445 => 'Diedrich',
3522446 => 'Luxembourg',
3522447 => 'Lintgen',
3522448 => 'Contern/Foetz',
3522449 => 'Howald',
3522450 => 'Bascharage/Petange/Rodange',
3522451 => 'Dudelange/Bettembourg/Livange',
3522452 => 'Dudelange',
3522453 => 'Esch-sur-Alzette',
3522454 => 'Esch-sur-Alzette',
3522455 => 'Esch-sur-Alzette/Mondercange',
3522456 => 'Rumelange',
3522457 => 'Esch-sur-Alzette/Schifflange',
3522458 => 'Soleuvre/Differdange',
3522459 => 'Soleuvre',
352246 => 'Luxembourg',
3522467 => 'Dudelange',
3522470 => 'Luxembourg',
3522471 => 'Betzdorf',
3522472 => 'Echternach',
3522473 => 'Rosport',
3522474 => 'Wasserbillig',
3522475 => 'Grevenmacher-sur-Moselle',
3522476 => 'Wormeldange',
3522477 => 'Luxembourg',
3522478 => 'Junglinster',
3522479 => 'Berdorf/Consdorf',
3522480 => 'Diekirch',
3522481 => 'Ettelbruck/Reckange-sur-Mess',
3522482 => 'Luxembourg',
3522483 => 'Vianden',
3522484 => 'Han/Lesse',
3522485 => 'Bissen/Roost',
3522486 => 'Luxembourg',
3522487 => 'Larochette',
3522488 => 'Mertzig/Wahl',
3522489 => 'Luxembourg',
352249 => 'Luxembourg',
3522492 => 'Clervaux/Fischbach/Hosingen',
3522495 => 'Wiltz',
3522497 => 'Huldange',
3522499 => 'Troisvierges',
35225 => 'Luxembourg',
3522621 => 'Weicherdange',
3522622 => 'Luxembourg City',
3522623 => 'Mondorf-les-Bains/Bascharage/Noerdange/Remich',
3522625 => 'Luxembourg',
3522627 => 'Belair, Luxembourg',
3522628 => 'Luxembourg City',
3522629 => 'Luxembourg/Kockelscheuer',
3522630 => 'Capellen/Kehlen',
3522631 => 'Bertrange/Mamer/Munsbach/Strassen',
3522632 => 'Lintgen/Mersch/Steinfort',
3522633 => 'Walferdange',
3522634 => 'Rameldange/Senningerberg',
3522635 => 'Sandweiler/Moutfort/Roodt-sur-Syre',
3522636 => 'Hesperange/Kockelscheuer/Roeser',
3522637 => 'Leudelange/Ehlange/Mondercange',
3522639 => 'Windhof/Steinfort',
3522640 => 'Howald',
3522642 => 'Plateau de Kirchberg',
3522643 => 'Findel/Kirchberg',
3522645 => 'Diedrich',
3522647 => 'Lintgen',
3522648 => 'Contern/Foetz',
3522649 => 'Howald',
3522650 => 'Bascharage/Petange/Rodange',
3522651 => 'Dudelange/Bettembourg/Livange',
3522652 => 'Dudelange',
3522653 => 'Esch-sur-Alzette',
3522654 => 'Esch-sur-Alzette',
3522655 => 'Esch-sur-Alzette/Mondercange',
3522656 => 'Rumelange',
3522657 => 'Esch-sur-Alzette/Schifflange',
3522658 => 'Soleuvre/Differdange',
3522659 => 'Soleuvre',
3522667 => 'Dudelange',
3522671 => 'Betzdorf',
3522672 => 'Echternach',
3522673 => 'Rosport',
3522674 => 'Wasserbillig',
3522675 => 'Grevenmacher-sur-Moselle',
3522676 => 'Wormeldange',
3522678 => 'Junglinster',
3522679 => 'Berdorf/Consdorf',
3522680 => 'Diekirch',
3522681 => 'Ettelbruck/Reckange-sur-Mess',
3522683 => 'Vianden',
3522684 => 'Han/Lesse',
3522685 => 'Bissen/Roost',
3522687 => 'Larochette',
3522688 => 'Mertzig/Wahl',
3522692 => 'Clervaux/Fischbach/Hosingen',
3522695 => 'Wiltz',
3522697 => 'Huldange',
3522699 => 'Troisvierges',
3522721 => 'Weicherdange',
3522722 => 'Luxembourg City',
3522723 => 'Mondorf-les-Bains/Bascharage/Noerdange/Remich',
3522725 => 'Luxembourg',
3522727 => 'Belair, Luxembourg',
3522728 => 'Luxembourg City',
3522729 => 'Luxembourg/Kockelscheuer',
3522730 => 'Capellen/Kehlen',
3522731 => 'Bertrange/Mamer/Munsbach/Strassen',
3522732 => 'Lintgen/Mersch/Steinfort',
3522733 => 'Walferdange',
3522734 => 'Rameldange/Senningerberg',
3522735 => 'Sandweiler/Moutfort/Roodt-sur-Syre',
3522736 => 'Hesperange/Kockelscheuer/Roeser',
3522737 => 'Leudelange/Ehlange/Mondercange',
3522739 => 'Windhof/Steinfort',
3522740 => 'Howald',
3522742 => 'Plateau de Kirchberg',
3522743 => 'Findel/Kirchberg',
3522745 => 'Diedrich',
3522747 => 'Lintgen',
3522748 => 'Contern/Foetz',
3522749 => 'Howald',
3522750 => 'Bascharage/Petange/Rodange',
3522751 => 'Dudelange/Bettembourg/Livange',
3522752 => 'Dudelange',
3522753 => 'Esch-sur-Alzette',
3522754 => 'Esch-sur-Alzette',
3522755 => 'Esch-sur-Alzette/Mondercange',
3522756 => 'Rumelange',
3522757 => 'Esch-sur-Alzette/Schifflange',
3522758 => 'Soleuvre/Differdange',
3522759 => 'Soleuvre',
3522767 => 'Dudelange',
3522771 => 'Betzdorf',
3522772 => 'Echternach',
3522773 => 'Rosport',
3522774 => 'Wasserbillig',
3522775 => 'Grevenmacher-sur-Moselle',
3522776 => 'Wormeldange',
3522778 => 'Junglinster',
3522779 => 'Berdorf/Consdorf',
3522780 => 'Diekirch',
3522781 => 'Ettelbruck/Reckange-sur-Mess',
3522783 => 'Vianden',
3522784 => 'Han/Lesse',
3522785 => 'Bissen/Roost',
3522787 => 'Larochette',
3522788 => 'Mertzig/Wahl',
3522792 => 'Clervaux/Fischbach/Hosingen',
3522795 => 'Wiltz',
3522797 => 'Huldange',
3522799 => 'Troisvierges',
35228 => 'Luxembourg City',
35229 => 'Luxembourg/Kockelscheuer',
35230 => 'Capellen/Kehlen',
35231 => 'Bertrange/Mamer/Munsbach/Strassen',
35232 => 'Mersch',
35233 => 'Walferdange',
35234 => 'Rameldange/Senningerberg',
35235 => 'Sandweiler/Moutfort/Roodt-sur-Syre',
35236 => 'Hesperange/Kockelscheuer/Roeser',
35237 => 'Leudelange/Ehlange/Mondercange',
35239 => 'Windhof/Steinfort',
35240 => 'Howald',
35241 => 'Luxembourg City',
35242 => 'Plateau de Kirchberg',
35243 => 'Findel/Kirchberg',
35244 => 'Luxembourg City',
35245 => 'Diedrich',
35246 => 'Luxembourg City',
35247 => 'Lintgen',
35248 => 'Contern/Foetz',
35249 => 'Howald',
35250 => 'Bascharage/Petange/Rodange',
35251 => 'Dudelange/Bettembourg/Livange',
35252 => 'Dudelange',
35253 => 'Esch-sur-Alzette',
35254 => 'Esch-sur-Alzette',
35255 => 'Esch-sur-Alzette/Mondercange',
35256 => 'Rumelange',
35257 => 'Esch-sur-Alzette/Schifflange',
35258 => 'Differdange',
35259 => 'Soleuvre',
35271 => 'Betzdorf',
35272 => 'Echternach',
35273 => 'Rosport',
35274 => 'Wasserbillig',
35275 => 'Grevenmacher',
35276 => 'Wormeldange',
35278 => 'Junglinster',
35279 => 'Berdorf/Consdorf',
35280 => 'Diekirch',
35281 => 'Ettelbruck',
35283 => 'Vianden',
35284 => 'Han/Lesse',
35285 => 'Bissen/Roost',
35287 => 'Larochette',
35288 => 'Mertzig/Wahl',
35292 => 'Clervaux/Fischbach/Hosingen',
35295 => 'Wiltz',
35297 => 'Huldange',
35299 => 'Troisvierges',
];

View File

@@ -0,0 +1,315 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
3531 => 'Dublin',
35321 => 'Cork',
3532140 => 'Kinsale',
3532141 => 'Kinsale',
3532147 => 'Kinsale',
353217 => 'Coachford',
353218 => 'Cork/Kinsale/Coachford',
35322 => 'Mallow',
35323 => 'Bandon',
35324 => 'Youghal',
35325 => 'Fermoy',
35326 => 'Macroom',
35327 => 'Bantry',
35328 => 'Skibbereen',
35329 => 'Kanturk',
353402 => 'Arklow',
353404 => 'Wicklow',
35341 => 'Drogheda',
3534120 => 'Drogheda/Ardee',
353416 => 'Ardee',
3534199 => 'Drogheda/Ardee',
353420 => 'Dundalk/Carrickmacross/Castleblaney',
353421 => 'Dundalk/Carrickmacross/Castleblaney',
353422 => 'Dundalk',
353423 => 'Dundalk/Carrickmacross/Castleblaney',
353424 => 'Carrickmacross',
353425 => 'Castleblaney',
353426 => 'Dundalk',
353427 => 'Dundalk',
353428 => 'Dundalk',
3534290 => 'Dundalk',
3534291 => 'Dundalk',
3534292 => 'Dundalk',
3534293 => 'Dundalk',
3534294 => 'Dundalk',
3534295 => 'Carrickmacross',
3534296 => 'Carrickmacross',
3534297 => 'Castleblaney',
3534298 => 'Castleblaney',
3534299 => 'Dundalk/Carrickmacross/Castleblaney',
35343 => 'Longford/Granard',
353432 => 'Longford',
3534330 => 'Longford',
3534331 => 'Longford',
3534332 => 'Longford',
3534333 => 'Longford',
35343666 => 'Granard',
35343667 => 'Granard',
35343668 => 'Granard',
35343669 => 'Granard',
3534367 => 'Granard',
3534368 => 'Granard',
3534369 => 'Granard',
353437 => 'Granard',
353438 => 'Granard',
35344 => 'Mullingar',
353443 => 'Mullingar/Castlepollard/Tyrrellspass',
353447 => 'Castlepollard',
353448 => 'Tyrellspass',
3534490 => 'Tyrellspass',
3534491 => 'Tyrellspass',
3534492 => 'Tyrellspass',
3534495 => 'Castlepollard',
3534496 => 'Castlepollard',
3534497 => 'Castlepollard',
3534498 => 'Castlepollard',
3534499 => 'Mullingar/Castlepollard/Tyrrellspass',
353450 => 'Naas/Kildare/Curragh',
353451 => 'Naas/Kildare/Curragh',
3534510 => 'Kildare',
353452 => 'Kildare',
353453 => 'The Curragh',
353454 => 'The Curragh',
353455 => 'Kildare',
353456 => 'Naas',
353457 => 'Naas',
353458 => 'Naas',
353459 => 'Naas',
353460 => 'Navan',
353461 => 'Navan',
353462 => 'Kells',
353463 => 'Navan/Kells/Trim/Edenderry/Enfield',
353464 => 'Trim',
353465 => 'Enfield',
353466 => 'Edenderry',
353467 => 'Navan',
353468 => 'Navan',
3534690 => 'Navan',
3534691 => 'Navan',
3534692 => 'Kells',
3534693 => 'Kells',
3534694 => 'Trim',
3534695 => 'Enfield',
3534696 => 'Enfield',
3534697 => 'Edenderry',
3534698 => 'Edenderry',
3534699 => 'Navan/Kells/Trim/Edenderry/Enfield',
353469900 => 'Navan',
353469901 => 'Navan',
353469907 => 'Edenderry',
353470 => 'Monaghan/Clones',
353471 => 'Monaghan/Clones',
353472 => 'Clones',
353473 => 'Monaghan',
353474 => 'Clones',
353475 => 'Clones',
353476 => 'Monaghan',
353477 => 'Monaghan',
353478 => 'Monaghan',
353479 => 'Monaghan',
3534791 => 'Monaghan/Clones',
3534799 => 'Monaghan/Clones',
353490 => 'Cavan/Cootehill/Oldcastle/Belturbet',
353491 => 'Cavan/Cootehill/Oldcastle/Belturbet',
353492 => 'Cootehill',
353493 => 'Belturbet',
353494 => 'Cavan',
353495 => 'Cootehill',
353496 => 'Cavan',
353497 => 'Cavan',
353498 => 'Oldcastle',
353499 => 'Belturbet',
3534999 => 'Cavan/Cootehill/Oldcastle/Belturbet',
353504 => 'Thurles',
353505 => 'Roscrea',
35351 => 'Waterford',
353512 => 'Kilmacthomas',
353514 => 'New Ross',
353516 => 'Carrick-on-Suir',
35351999 => 'Waterford/Carrick-on-Suir/New Ross/Kilmacthomas',
35352 => 'Clonmel/Cahir/Killenaule',
3535261 => 'Clonmel',
3535274 => 'Cahir',
3535291 => 'Killenaule',
35353 => 'Wexford/Enniscorthy/Ferns/Gorey',
353530 => 'Wexford',
353531 => 'Wexford',
353531202 => 'Enniscorthy',
353531203 => 'Gorey',
3535390 => 'Wexford',
3535391 => 'Wexford',
3535392 => 'Enniscorthy',
3535393 => 'Ferns',
3535394 => 'Gorey',
353539900 => 'Wexford',
353539901 => 'Wexford',
353539902 => 'Enniscorthy',
353539903 => 'Gorey',
35356 => 'Kilkenny/Castlecomer/Freshford',
353560 => 'Kilkenny',
353561 => 'Kilkenny',
3535644 => 'Castlecomer',
3535677 => 'Kilkenny',
3535678 => 'Kilkenny',
3535688 => 'Freshford',
353569900 => 'Kilkenny',
353569901 => 'Kilkenny',
35357 => 'Portlaoise/Abbeyleix/Tullamore/Birr',
353570 => 'Portlaoise',
353571 => 'Portlaoise',
35357850 => 'Portlaoise',
353578510 => 'Portlaoise',
35357859 => 'Portlaoise',
3535786 => 'Portlaoise',
3535787 => 'Abbeyleix',
3535791 => 'Birr',
3535793 => 'Tullamore',
353579900 => 'Portlaoise',
353579901 => 'Portlaoise',
35358 => 'Dungarvan',
35359 => 'Carlow/Muine Bheag/Athy/Baltinglass',
3535964 => 'Baltinglass',
3535986 => 'Athy',
3535987 => 'Athy',
3535988 => 'Athy',
3535989 => 'Athy',
3535991 => 'Carlow',
3535997 => 'Muine Bheag',
35361 => 'Limerick',
353616 => 'Scariff',
353619 => 'Scariff',
35361999 => 'Limerick/Scariff',
353620 => 'Tipperary/Cashel',
353621 => 'Tipperary/Cashel',
353622 => 'Cashel',
353623 => 'Tipperary',
353624 => 'Tipperary',
353625 => 'Tipperary',
353626 => 'Cashel',
353627 => 'Cashel',
353628 => 'Tipperary',
353629 => 'Cashel',
3536299 => 'Tipperary',
35363 => 'Rathluirc',
35364 => 'Killarney/Rathmore',
3536466 => 'Killarney',
353646700 => 'Killarney',
353646701 => 'Killarney',
3536477 => 'Rathmore',
353650 => 'Ennis/Ennistymon/Kilrush',
353651 => 'Ennis/Ennistymon/Kilrush',
353652 => 'Ennis',
353653 => 'Ennis',
353654 => 'Ennis',
353655 => 'Ennis',
353656 => 'Ennis',
353657 => 'Ennistymon',
353658 => 'Kilrush',
353659 => 'Kilrush',
3536599 => 'Ennis/Ennistymon/Kilrush',
35366 => 'Tralee',
3536670 => 'Tralee/Dingle/Killorglin/Cahersiveen',
353668 => 'Tralee/Dingle/Killorglin/Cahersiveen',
3536690 => 'Killorglin',
3536691 => 'Dingle',
353669100 => 'Killorglin',
3536692 => 'Dingle',
3536693 => 'Dingle',
3536694 => 'Cahirciveen',
3536695 => 'Cahirciveen',
3536696 => 'Cahirciveen',
3536697 => 'Killorglin',
3536698 => 'Killorglin',
3536699 => 'Tralee/Dingle/Killorglin/Cahersiveen',
35367 => 'Nenagh',
35368 => 'Listowel',
35369 => 'Newcastle West',
35371 => 'Sligo/Manorhamilton/Carrick-on-Shannon',
353710 => 'Sligo',
353711 => 'Sligo',
353719010 => 'Sligo',
3537191 => 'Sligo',
35371930 => 'Sligo',
35371931 => 'Sligo',
35371932 => 'Sligo',
353719330 => 'Sligo',
353719331 => 'Sligo',
353719332 => 'Sligo',
353719334 => 'Sligo',
353719335 => 'Sligo',
353719344 => 'Sligo',
353719401 => 'Sligo',
35371959 => 'Carrick-on-Shannon',
3537196 => 'Carrick-on-Shannon',
3537198 => 'Manorhamilton',
353719900 => 'Sligo',
35374 => 'Letterkenny/Donegal/Dungloe/Buncrana',
353740 => 'Letterkenny',
353741 => 'Letterkenny',
3537491 => 'Letterkenny',
35374920 => 'Letterkenny',
353749210 => 'Letterkenny',
353749211 => 'Letterkenny',
353749212 => 'Letterkenny',
353749214 => 'Letterkenny',
3537493 => 'Buncrana',
3537495 => 'Dungloe',
35374960 => 'Letterkenny',
3537497 => 'Donegal',
353749888 => 'Letterkenny',
353749889 => 'Letterkenny',
35374989 => 'Letterkenny',
353749900 => 'Letterkenny',
35390 => 'Athlone/Ballinasloe/Portumna/Roscommon',
353900 => 'Athlone',
353901 => 'Athlone',
3539064 => 'Athlone',
35390650 => 'Athlone',
3539066 => 'Roscommon',
3539096 => 'Ballinasloe',
3539097 => 'Portumna',
353909897 => 'Athlone',
353909900 => 'Athlone',
353909901 => 'Athlone',
353909902 => 'Ballinasloe',
353909903 => 'Ballinasloe',
35391 => 'Galway',
353912 => 'Gort',
353916 => 'Gort',
353918 => 'Loughrea',
35393 => 'Tuam',
35394 => 'Castlebar/Claremorris/Castlerea/Ballinrobe',
3539490 => 'Castlebar',
35394925 => 'Castlebar',
353949285 => 'Castlebar',
353949286 => 'Castlebar',
353949287 => 'Castlebar',
353949288 => 'Castlebar',
353949289 => 'Castlebar',
353949290 => 'Castlebar',
353949291 => 'Castlebar',
3539493 => 'Claremorris',
3539495 => 'Ballinrobe',
3539496 => 'Castlerea',
3539498 => 'Castlerea',
35395 => 'Clifden',
35396 => 'Ballina',
35397 => 'Belmullet',
35398 => 'Westport',
35399 => 'Kilronan',
];

View File

@@ -0,0 +1,20 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
35442 => 'Keflavík',
35446 => 'Akureyri',
3545 => 'Reykjavík',
35455 => 'Reykjavík/Vesturbær/Miðbærinn',
35456 => 'Reykjavík/Vesturbær/Miðbærinn',
];

View File

@@ -0,0 +1,189 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
355211 => 'Koplik',
355212 => 'Pukë',
355213 => 'Bajram Curri',
355214 => 'Krumë',
355215 => 'Lezhë',
355216 => 'Rrëshen',
355217 => 'Burrel',
355218 => 'Peshkopi',
355219 => 'Bulqizë',
35522 => 'Shkodër',
35524 => 'Kukës',
355261 => 'Vau-Dejës',
355262 => 'Rrethinat/Ana-Malit, Shkodër',
355263 => 'Pult/Shalë/Shosh/Temal/Shllak, Shkodër',
355264 => 'Postribë/Gur i Zi',
355265 => 'Vig-Mnelë/Hajmel, Shkodër',
355266 => 'Bushat/Bërdicë, Shkodër',
355267 => 'Dajç/Velipojë, Shkodër',
355268 => 'Qendër/Gruemirë, Malësi e Madhe',
355269 => 'Kastrat/Shkrel/Kelmend, Malësi e Madhe',
355270 => 'Kolsh/Surroj/Arren/Malzi, Kukës',
355271 => 'Fushë-Arrëz/Rrapë, Pukë',
355272 => 'Qerret/Qelëz/Gjegjan, Pukë',
355273 => 'Iballë/Fierzë/Blerim/Qafë-Mali, Pukë',
355274 => 'Tropojë/Llugaj/Margegaj, Tropojë',
355275 => 'Bujan/Fierzë/Bytyc/Lekbiba, Tropojë',
355276 => 'Fajza/Golaj/Gjinaj, Has',
355277 => 'Shtiqen/Tërthore/Zapod, Kukës',
355278 => 'Bicaj/Topojan/Shishtavec, Kukës',
355279 => 'Gryk-Çajë/Ujmisht/Bushtrice/Kalis, Kukës',
355281 => 'Shëngjin/Balldre, Lezhë',
355282 => 'Kallmet/Blinisht/Dajç/Ungrej, Lezhë',
355283 => 'Kolsh/Zejmen/Shënkoll, Lezhë',
355284 => 'Rubik, Mirditë',
355285 => 'Kthjellë/Selitë, Mirditë',
355286 => 'Kaçinar/Orosh/Fan, Mirditë',
355287 => 'Klos/Suç/Lis, Mat',
355288 => 'Baz/Komsi/Gurrë/Xibër, Mat',
355289 => 'Ulëz/Rukaj/Derjan/Macukull, Mat',
355291 => 'Tomin/Luzni, Dibër',
355292 => 'Maqellarë/Melan, Dibër',
355293 => 'Kastriot/Muhur/Selishtë, Dibër',
355294 => 'Arras/Fushë-Çidhën/Lurë, Dibër',
355295 => 'Sllovë/Zall-Dardhë/Zall-Reç/Kala e Dodes, Dibër',
355296 => 'Fushë-Bulqizë/Shupenzë/Zerqan, Bulqizë',
355297 => 'Gjorice/Ostren/Trebisht/Martanesh, Bulqizë',
355311 => 'Kuçovë',
355312 => 'Çorovodë, Skrapar',
355313 => 'Ballsh, Mallakastër',
35532 => 'Berat',
35533 => 'Vlorë',
35534 => 'Fier',
35535 => 'Lushnje',
355360 => 'Leshnje/Potom/Çepan/Gjerbës/Zhepë, Skrapar',
355361 => 'Ura Vajgurore, Berat',
355362 => 'Velabisht/Roshnik, Berat',
355363 => 'Otllak/Lumas, Berat',
355364 => 'Vërtop/Terpan, Berat',
355365 => 'Sinjë/Cukalat, Berat',
355366 => 'Poshnjë/Kutalli, Berat',
355367 => 'Perondi/Kozarë, Kuçovë',
355368 => 'Poliçan/Bogovë, Skrapar',
355369 => 'Qendër/Vendreshë, Skrapar',
355371 => 'Divjakë, Lushnjë',
355372 => 'Karbunarë/Fier-Shegan/Hysgjokaj/Ballagat, Lushnjë',
355373 => 'Krutje/Bubullimë/Allkaj, Lushnjë',
355374 => 'Gradishtë/Kolonjë, Lushnjë',
355375 => 'Golem/Grabian/Remas, Lushnjë',
355376 => 'Dushk/Tërbuf, Lushnjë',
355377 => 'Qendër/Greshicë/Hekal, Mallakastër',
355378 => 'Aranitas/Ngracan/Selitë/Fratar/Kutë, Mallakastër',
355381 => 'Patos, Fier',
355382 => 'Roskovec, Fier',
355383 => 'Qendër, Fier',
355384 => 'Mbrostar Ura/LIibofshë, Fier',
355385 => 'Portëz/Zharëz, Fier',
355386 => 'Kuman/Kurjan/Strum/Ruzhdie, Fier',
355387 => 'Cakran/Frakull, Fier',
355388 => 'Levan, Fier',
355389 => 'Dermenas/Topojë, Fier',
355391 => 'Orikum, Vlorë',
355392 => 'Selenicë, Vlorë',
355393 => 'Himarë, Vlorë',
355394 => 'Qendër, Vlorë',
355395 => 'Novoselë, Vlorë',
355396 => 'Shushicë/Armen, Vlorë',
355397 => 'Vllahinë/Kote, Vlorë',
355398 => 'Sevaster/Brataj/Hore-Vranisht, Vlorë',
35542 => 'Tirana',
35543 => 'Tirana',
35544 => 'Tirana',
35545 => 'Tirana',
35546 => 'Tirana',
35547 => 'Kamëz/Vorë/Paskuqan/Zall-Herr/Burxullë/Prezë, Tiranë',
35548 => 'Kashar/Vaqar/Ndroq/Pezë/Farkë/Dajt, Tiranë',
35549 => 'Petrelë/Baldushk/Bërzhitë/Krrabë/Shengjergj/Zall-Bastar, Tiranë',
355511 => 'Kruje',
355512 => 'Peqin',
355513 => 'Gramsh',
355514 => 'Librazhd',
35552 => 'Durrës',
35553 => 'Laç, Kurbin',
35554 => 'Elbasan',
35555 => 'Kavajë',
355561 => 'Mamurras, Kurbin',
355562 => 'Milot/Fushe-Kuqe, Kurbin',
355563 => 'Fushë-Krujë',
355564 => 'Nikël/Bubq, Kruje',
355565 => 'Koder-Thumane/Cudhi, Kruje',
355570 => 'Gosë/Lekaj/Sinaballaj, Kavajë',
355571 => 'Shijak, Durrës',
355572 => 'Manëz, Durrës',
355573 => 'Sukth, Durrës',
355574 => 'Rashbull/Gjepalaj, Durrës',
355575 => 'Xhafzotaj/Maminas, Durrës',
355576 => 'Katund i Ri/Ishem, Durrës',
355577 => 'Rrogozhinë, Kavajë',
355578 => 'Synej/Golem, Kavajë',
355579 => 'Luz i Vogël/Kryevidh/Helmës, Kavajë',
355580 => 'Përparim/Pajovë, Peqin',
355581 => 'Cërrik, Elbasan',
355582 => 'Belsh, Elbasan',
355583 => 'Bradashesh/Shirgjan, Elbasan',
355584 => 'Labinot-Fushë/Labinot-Mal/Funarë/Gracen, Elbasan',
355585 => 'Shushicë/Tregan/Gjinar/Zavalinë, Elbasan',
355586 => 'Gjergjan/Papër/Shalës, Elbasan',
355587 => 'Gostime/Klos/Mollas, Elbasan',
355588 => 'Rrasë/Fierzë/Kajan/Grekan, Elbasan',
355589 => 'Karinë/Gjocaj/Shezë, Peqin',
355591 => 'Përrenjas, Librazhd',
355592 => 'Qendër, Librazhd',
355593 => 'Lunik/Orenjë/Stebleve, Librazhd',
355594 => 'Hotolisht/Polis/Stravaj, Librazhd',
355595 => 'Qukës/Rajcë, Librazhd',
355596 => 'Pishaj/Sult/Tunjë/Kushovë/Skënderbegas, Gramsh',
355597 => 'Kodovjat/Poroçan/Kukur/Lenie, Gramsh',
355811 => 'Bilisht, Devoll',
355812 => 'Ersekë, Kolonjë',
355813 => 'Përmet',
355814 => 'Tepelenë',
355815 => 'Delvinë',
35582 => 'Korçë',
35583 => 'Pogradec',
35584 => 'Gjirokastër',
35585 => 'Sarandë',
355860 => 'Trebinjë/Proptisht/Velçan, Pogradec',
355861 => 'Maliq, Korçë',
355862 => 'Qendër, Korçë',
355863 => 'Drenovë/Mollaj, Korçë',
355864 => 'Voskop/Voskopojë/Vithkuq/Lekas, Korçë',
355865 => 'Gorë/Pirg/Moglicë, Korçë',
355866 => 'Libonik/Vreshtaz, Korçë',
355867 => 'Pojan/Liqenas, Korçë',
355868 => 'Buçimas/Udenisht, Pogradec',
355869 => 'Çëravë/Dardhas, Pogradec',
355871 => 'Leskovik/Barmash/Novoselë, Kolonjë',
355872 => 'Qendër Ersekë/Mollas/Çlirim, Kolonjë',
355873 => 'Qendër Bilisht/Progër, Devoll',
355874 => 'Hoçisht/Miras, Devoll',
355875 => 'Këlcyrë, Përmet',
355876 => 'Qendër/Frashër/Petran/Çarshovë, Përmet',
355877 => 'Dishnicë/Sukë/Ballaban, Përmet',
355881 => 'Libohovë/Qendër, Gjirokastër',
355882 => 'Cepo/Picar/Lazarat/Atigon, Gjirokastër',
355883 => 'Lunxheri/Odrie/Zagorie/Pogon, Gjirokastër',
355884 => 'Dropull i Poshtëm/Dropull i Sipërm, Gjirokastër',
355885 => 'Memaliaj, Tepelenë',
355886 => 'Qendër/Kurvelesh/Lopëz, Tepelenë',
355887 => 'Qesarat/Krahës/Luftinje/Buz, Tepelenë',
355891 => 'Konispol/Xare/Markat, Sarandë',
355892 => 'Aliko/Lukovë, Sarandë',
355893 => 'Ksamil, Sarandë',
355894 => 'Livadhja/Dhivër, Sarandë',
355895 => 'Finiq/Mesopotam/Vergo, Delvinë',
];

View File

@@ -0,0 +1,63 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
35813 => 'North Karelia',
35814 => 'Central Finland',
35815 => 'Mikkeli',
35816 => 'Lapland',
35817 => 'Kuopio',
35819 => 'Uusimaa',
35821 => 'Turku/Pori',
35822 => 'Turku/Pori',
35823 => 'Turku/Pori',
35824 => 'Turku/Pori',
35825 => 'Turku/Pori',
35826 => 'Turku/Pori',
35827 => 'Turku/Pori',
35828 => 'Turku/Pori',
35831 => 'Häme',
35832 => 'Häme',
35833 => 'Häme',
35834 => 'Häme',
35835 => 'Häme',
35836 => 'Häme',
35837 => 'Häme',
35838 => 'Häme',
35851 => 'Kymi',
35852 => 'Kymi',
35853 => 'Kymi',
35854 => 'Kymi',
35855 => 'Kymi',
35856 => 'Kymi',
35857 => 'Kymi',
35858 => 'Kymi',
35861 => 'Vaasa',
35862 => 'Vaasa',
35863 => 'Vaasa',
35864 => 'Vaasa',
35865 => 'Vaasa',
35866 => 'Vaasa',
35867 => 'Vaasa',
35868 => 'Vaasa',
35881 => 'Oulu',
35882 => 'Oulu',
35883 => 'Oulu',
35884 => 'Oulu',
35885 => 'Oulu',
35886 => 'Oulu',
35887 => 'Oulu',
35888 => 'Oulu',
3589 => 'Helsinki',
35890 => 'Uusimaa',
];

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,69 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
361 => 'Budapest',
3622 => 'Székesfehérvár',
3623 => 'Biatorbágy',
3624 => 'Szigetszentmiklós',
3625 => 'Dunaujvaros',
3626 => 'Szentendre',
3627 => 'Vac',
3628 => 'Godollo',
3629 => 'Monor',
3632 => 'Salgotarjan',
3633 => 'Esztergom',
3634 => 'Tatabanya',
3635 => 'Balassagyarmat',
3636 => 'Eger',
3637 => 'Gyongyos',
3642 => 'Nyiregyhaza',
3644 => 'Mátészalka',
3645 => 'Kisvarda',
3646 => 'Miskolc',
3647 => 'Szerencs',
3648 => 'Ozd',
3649 => 'Mezokovesd',
3652 => 'Debrecen',
3653 => 'Cegled',
3654 => 'Berettyoujfalu',
3656 => 'Szolnok',
3657 => 'Jaszbereny',
3659 => 'Karcag',
3662 => 'Szeged',
3663 => 'Szentes',
3666 => 'Bekescsaba',
3668 => 'Oroshaza',
3669 => 'Mohacs',
3672 => 'Pecs',
3673 => 'Szigetvar',
3674 => 'Szekszard',
3675 => 'Paks',
3676 => 'Kecskemet',
3677 => 'Kiskunhalas',
3678 => 'Kiskoros',
3679 => 'Baja',
3682 => 'Kaposvar',
3683 => 'Keszthely',
3684 => 'Siofok',
3685 => 'Marcali',
3687 => 'Tapolca',
3688 => 'Veszprem',
3689 => 'Papa',
3692 => 'Zalaegerszeg',
3693 => 'Nagykanizsa',
3694 => 'Szombathely',
3695 => 'Sarvar',
3696 => 'Gyor',
3699 => 'Sopron',
];

View File

@@ -0,0 +1,69 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
370310 => 'Varėna',
370313 => 'Druskininkai',
370315 => 'Alytus',
370318 => 'Lazdijai',
370319 => 'Birštonas/Prienai',
370340 => 'Ukmergė',
370342 => 'Vilkaviškis',
370343 => 'Marijampolė',
370345 => 'Šakiai',
370346 => 'Kaišiadorys',
370347 => 'Kėdainiai',
370349 => 'Jonava',
37037 => 'Kaunas',
370380 => 'Šalčininkai',
370381 => 'Anykščiai',
370382 => 'Širvintos',
370383 => 'Molėtai',
370385 => 'Zarasai',
370386 => 'Ignalina/Visaginas',
370387 => 'Švenčionys',
370389 => 'Utena',
37041 => 'Šiauliai',
370421 => 'Pakruojis',
370422 => 'Radviliškis',
370425 => 'Akmenė',
370426 => 'Joniškis',
370427 => 'Kelmė',
370428 => 'Raseiniai',
370440 => 'Skuodas',
370441 => 'Šilutė',
370443 => 'Mažeikiai',
370444 => 'Telšiai',
370445 => 'Kretinga',
370446 => 'Tauragė',
370447 => 'Jurbarkas',
370448 => 'Plungė',
370449 => 'Šilalė',
37045 => 'Panevėžys',
370450 => 'Biržai',
370451 => 'Pasvalys',
370458 => 'Rokiškis',
370459 => 'Kupiškis',
37046 => 'Klaipėda',
370460 => 'Palanga',
370469 => 'Neringa',
370520 => 'Vilnius',
370521 => 'Vilnius',
370522 => 'Vilnius',
370523 => 'Vilnius',
370524 => 'Vilnius',
370525 => 'Vilnius',
370526 => 'Vilnius',
370527 => 'Vilnius',
370528 => 'Trakai',
];

View File

@@ -0,0 +1,59 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
373210 => 'Grigoriopol',
373215 => 'Dubasari',
373216 => 'Camenca',
373219 => 'Dnestrovsk',
37322 => 'Chisinau',
373230 => 'Soroca',
373231 => 'Balţi',
373235 => 'Orhei',
373236 => 'Ungheni',
373237 => 'Straseni',
373241 => 'Cimislia',
373242 => 'Stefan Voda',
373243 => 'Causeni',
373244 => 'Calarasi',
373246 => 'Edineţ',
373247 => 'Briceni',
373248 => 'Criuleni',
373249 => 'Glodeni',
373250 => 'Floresti',
373251 => 'Donduseni',
373252 => 'Drochia',
373254 => 'Rezina',
373256 => 'Riscani',
373258 => 'Telenesti',
373259 => 'Falesti',
373262 => 'Singerei',
373263 => 'Leova',
373264 => 'Nisporeni',
373265 => 'Anenii Noi',
373268 => 'Ialoveni',
373269 => 'Hincesti',
373271 => 'Ocniţa',
373272 => 'Soldanesti',
373273 => 'Cantemir',
373291 => 'Ceadir Lunga',
373293 => 'Vulcanesti',
373294 => 'Taraclia',
373297 => 'Basarabeasca',
373298 => 'Comrat',
373299 => 'Cahul',
37353 => 'Tiraspol',
373552 => 'Bender',
373555 => 'Ribnita',
373557 => 'Slobozia',
];

View File

@@ -0,0 +1,520 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
37410 => 'Yerevan/Jrvezh',
37411 => 'Yerevan',
37412 => 'Yerevan',
37415 => 'Yerevan',
3742220 => 'Abovyan/Akunk/Byureghavan/Nor Gyugh/Verin Ptghni, Kotayk',
3742221 => 'Abovyan/Akunk/Byureghavan/Nor Gyugh/Verin Ptghni, Kotayk',
3742222 => 'Abovyan, Kotayk',
3742223 => 'Abovyan, Kotayk',
3742224 => 'Abovyan, Kotayk',
3742225 => 'Abovyan/Arzni/Arinj/Geghashen, Kotayk',
3742226 => 'Abovyan, Kotayk',
3742227 => 'Garni/Abovyan, Kotayk',
3742228 => 'Abovyan/Akunk/Byureghavan/Nor Gyugh/Verin Ptghni, Kotayk',
37422281 => 'Abovyan/Arzni/Arinj/Geghashen, Kotayk',
37422290 => 'Mayakovsky, Kotayk',
37422291 => 'Balahovit/Kamaris, Kotayk',
37422292 => 'Zovk/Abovyan, Kotayk',
37422293 => 'Aramus, Kotayk',
37422294 => 'Arzni, Kotayk',
37422295 => 'Zovk/Abovyan, Kotayk',
37422296 => 'Ptghni, Kotayk',
37422297 => 'Geghashen, Kotayk',
37422298 => 'Arinj, Kotayk',
37422299 => 'Kotayk',
3742230 => 'Hankavan/Hrazdan/Tsaghkadzor, Kotayk',
3742231 => 'Hankavan/Hrazdan/Tsaghkadzor, Kotayk',
3742232 => 'Hrazdan, Kotayk',
3742233 => 'Hrazdan, Kotayk',
3742234 => 'Hrazdan, Kotayk',
3742235 => 'Tsaghkadzor, Kotayk',
3742236 => 'Hrazdan, Kotayk',
37422370 => 'Hrazdan, Kotayk',
37422371 => 'Hrazdan, Kotayk',
37422372 => 'Hrazdan, Kotayk',
37422373 => 'Hrazdan, Kotayk',
37422374 => 'Hrazdan, Kotayk',
37422375 => 'Tsaghkadzor, Kotayk',
37422376 => 'Tsaghkadzor, Kotayk',
37422377 => 'Tsaghkadzor, Kotayk',
37422378 => 'Tsaghkadzor, Kotayk',
37422379 => 'Tsaghkadzor, Kotayk',
3742238 => 'Hankavan/Hrazdan/Tsaghkadzor, Kotayk',
374223810 => 'Hrazdan, Kotayk',
374223811 => 'Hrazdan, Kotayk',
374223812 => 'Hrazdan, Kotayk',
374223813 => 'Hrazdan, Kotayk',
374223814 => 'Hrazdan, Kotayk',
374223815 => 'Tsaghkadzor, Kotayk',
374223816 => 'Tsaghkadzor, Kotayk',
374223817 => 'Tsaghkadzor, Kotayk',
374223818 => 'Tsaghkadzor, Kotayk',
374223819 => 'Tsaghkadzor, Kotayk',
37422390 => 'Hrazdan, Kotayk',
37422391 => 'Lernanist, Kotayk',
37422392 => 'Hrazdan, Kotayk',
37422393 => 'Meghradzor, Kotayk',
37422394 => 'Pyunik, Kotayk',
37422395 => 'Hrazdan, Kotayk',
37422396 => 'Hrazdan, Kotayk',
37422397 => 'Solak, Kotayk',
37422398 => 'Bjni, Kotayk',
37422399 => 'Hrazdan, Kotayk',
3742240 => 'Kanakeravan/Nor Geghi/Nor Hajn/Yeghvard, Kotayk',
3742241 => 'Kanakeravan/Nor Geghi/Nor Hajn/Yeghvard, Kotayk',
3742242 => 'Yeghvard, Kotayk',
3742243 => 'Yeghvard, Kotayk',
3742244 => 'Nor Hajn, Kotayk',
3742245 => 'Yeghvard, Kotayk',
37422452 => 'Zovuni, Kotayk',
37422453 => 'Proshyan, Kotayk',
37422454 => 'Argel, Kotayk',
3742246 => 'Yeghvard, Kotayk',
3742247 => 'Yeghvard/Nor Hajn, Kotayk',
3742248 => 'Kanakeravan/Nor Geghi/Nor Hajn/Yeghvard, Kotayk',
374224810 => 'Yeghvard, Kotayk',
374224811 => 'Yeghvard, Kotayk',
374224812 => 'Yeghvard, Kotayk',
374224813 => 'Yeghvard, Kotayk',
374224814 => 'Yeghvard, Kotayk',
374224815 => 'Nor Hajn, Kotayk',
374224816 => 'Nor Hajn, Kotayk',
374224817 => 'Nor Hajn, Kotayk',
374224818 => 'Nor Hajn, Kotayk',
374224819 => 'Nor Hajn, Kotayk',
3742249 => 'Yeghvard, Kotayk',
374226 => 'Charentsavan, Kotayk',
37422672 => 'Arzakan, Kotayk',
37422675 => 'Alapars/Vardanavank, Kotayk',
3742310 => 'Echmiadzin/Musaler/Parakar/Zvartnots, Armavir',
3742311 => 'Echmiadzin/Musaler/Parakar/Zvartnots, Armavir',
3742312 => 'Echmiadzin, Armavir',
3742313 => 'Zvartnots, Armavir',
3742314 => 'Echmiadzin, Armavir',
3742315 => 'Echmiadzin, Armavir',
3742316 => 'Echmiadzin, Armavir',
3742317 => 'Zvartnots, Armavir',
3742318 => 'Echmiadzin/Musaler/Parakar/Zvartnots, Armavir',
37423181 => 'Echmiadzin, Armavir',
374231817 => 'Zvartnots, Armavir',
374231818 => 'Zvartnots, Armavir',
374231819 => 'Zvartnots, Armavir',
37423190 => 'Baghramyan, Armavir',
37423191 => 'Vache, Armavir',
37423192 => 'Echmiadzin, Armavir',
37423193 => 'Echmiadzin, Armavir',
37423194 => 'Echmiadzin, Armavir',
37423195 => 'Norakert, Armavir',
37423196 => 'Echmiadzin, Armavir',
37423197 => 'Echmiadzin, Armavir',
37423198 => 'Jrarat, Armavir',
37423199 => 'Khoronk, Armavir',
3742320 => 'Aghdzq/Ashtarak/Karbi/Oshakan, Aragatsotn',
3742321 => 'Aghdzq/Ashtarak/Karbi/Oshakan, Aragatsotn',
3742322 => 'Ashtarak, Aragatsotn',
3742323 => 'Ashtarak, Aragatsotn',
3742324 => 'Ashtarak/Byurakan/Ohanavan, Aragatsotn',
3742325 => 'Aghdzq/Ashtarak/Karbi/Oshakan, Aragatsotn',
3742326 => 'Ashtarak, Aragatsotn',
3742327 => 'Aghdzq/Ashtarak/Karbi/Oshakan, Aragatsotn',
3742328 => 'Aghdzq/Ashtarak/Karbi/Oshakan, Aragatsotn',
37423281 => 'Ashtarak/Byurakan/Ohanavan, Aragatsotn',
3742329 => 'Ashtarak, Aragatsotn',
37423290 => 'Ohanavan, Aragatsotn',
37423294 => 'Byurakan, Aragatsotn',
3742330 => 'Baghramyan/Lernagog, Armavir',
3742331 => 'Baghramyan/Lernagog, Armavir',
3742332 => 'Baghramyan, Armavir',
3742333 => 'Baghramyan/Myasnikyan, Armavir',
3742334 => 'Baghramyan/Lernagog, Armavir',
3742335 => 'Baghramyan/Lernagog, Armavir',
3742336 => 'Baghramyan, Armavir',
3742337 => 'Baghramyan, Armavir',
37423374 => 'Myasnikyan, Armavir',
37423375 => 'Karakert, Armavir',
37423376 => 'Dalarik, Armavir',
3742338 => 'Baghramyan/Lernagog, Armavir',
37423381 => 'Baghramyan/Myasnikyan, Armavir',
3742339 => 'Baghramyan, Armavir',
374234 => 'Ararat/Vedi, Ararat',
3742340 => 'Ararat/Vedi/Vosketap, Ararat',
3742341 => 'Ararat/Vedi/Vosketap, Ararat',
3742345 => 'Ararat/Vedi/Vosketap, Ararat',
374234510 => 'Vedi, Ararat',
374234511 => 'Vedi, Ararat',
374234512 => 'Vedi, Ararat',
374234513 => 'Vedi, Ararat',
374234514 => 'Vedi, Ararat',
374234515 => 'Ararat/Urtsadzor, Ararat',
374234516 => 'Ararat/Urtsadzor, Ararat',
374234517 => 'Ararat/Urtsadzor, Ararat',
374234518 => 'Ararat/Urtsadzor, Ararat',
374234519 => 'Ararat/Urtsadzor, Ararat',
37423470 => 'Vedi, Ararat',
37423471 => 'Vedi, Ararat',
37423472 => 'Vedi, Ararat',
37423473 => 'Vedi, Ararat',
37423474 => 'Vedi, Ararat',
37423475 => 'Ararat/Urtsadzor, Ararat',
37423476 => 'Ararat/Urtsadzor, Ararat',
37423477 => 'Ararat/Urtsadzor, Ararat',
37423478 => 'Ararat/Urtsadzor, Ararat',
37423479 => 'Ararat/Urtsadzor, Ararat',
37423481 => 'Aygavan, Ararat',
37423486 => 'Urtsadzor, Ararat',
37423492 => 'Martirosyan, Ararat',
37423497 => 'Pokr Vedi, Ararat',
37423498 => 'Taperakan, Ararat',
3742350 => 'Artashat/Aygezard/Dalar/Kaghtsrashen/Mkhchyan/Shahumyan, Ararat',
3742351 => 'Artashat/Aygezard/Dalar/Kaghtsrashen/Mkhchyan/Shahumyan, Ararat',
3742352 => 'Artashat, Ararat',
3742353 => 'Artashat/Norashen, Ararat',
3742354 => 'Artashat/Aygezard/Dalar/Kaghtsrashen/Mkhchyan/Shahumyan, Ararat',
3742355 => 'Artashat, Ararat',
3742356 => 'Artashat, Ararat',
3742357 => 'Artashat, Ararat',
3742358 => 'Artashat/Aygezard/Dalar/Kaghtsrashen/Mkhchyan/Shahumyan, Ararat',
37423581 => 'Artashat/Norashen, Ararat',
3742359 => 'Artashat/Norashen, Ararat',
3742360 => 'Ayntap/Masis/Nor Kharberd/Norabats, Ararat',
3742361 => 'Ayntap/Masis/Nor Kharberd/Norabats, Ararat',
3742362 => 'Masis, Ararat',
3742363 => 'Ayntap/Masis, Ararat',
3742364 => 'Masis, Ararat',
3742365 => 'Masis, Ararat',
3742366 => 'Masis, Ararat',
3742367 => 'Ayntap/Masis/Nor Kharberd/Norabats, Ararat',
3742368 => 'Ayntap/Masis/Nor Kharberd/Norabats, Ararat',
37423681 => 'Masis, Ararat',
3742369 => 'Masis, Ararat',
37423699 => 'Dashtavan, Ararat',
3742370 => 'Araks/Armavir/Hoktember/Lenughi/Metsamor/Zartonk, Armavir',
3742371 => 'Araks/Armavir/Hoktember/Lenughi/Metsamor/Zartonk, Armavir',
3742372 => 'Armavir',
3742373 => 'Metsamor, Armavir',
3742374 => 'Armavir',
37423747 => 'Araks/Armavir/Hoktember/Lenughi/Metsamor/Zartonk, Armavir',
37423748 => 'Araks/Armavir/Hoktember/Lenughi/Metsamor/Zartonk, Armavir',
37423749 => 'Araks/Armavir/Hoktember/Lenughi/Metsamor/Zartonk, Armavir',
3742375 => 'Armavir',
3742376 => 'Armavir',
3742377 => 'Armavir/Mrgashat',
37423771 => 'Armavir',
37423772 => 'Mrgashat, Armavir',
37423779 => 'Bambakashat, Armavir',
3742378 => 'Araks/Armavir/Hoktember/Lenughi/Metsamor/Zartonk, Armavir',
37423781 => 'Armavir',
3742379 => 'Armavir/Nalbandian',
37423792 => 'Nalbandian, Armavir',
37423794 => 'Margara, Armavir',
37423796 => 'Tandzut, Armavir',
37423798 => 'Shenavan, Armavir',
374238 => 'Ararat/Avshar/Surenavan/Yeraskh',
3742420 => 'Maralik/Sarnaghbyur, Shirak',
3742421 => 'Maralik/Sarnaghbyur, Shirak',
3742422 => 'Maralik, Shirak',
3742423 => 'Maralik, Shirak',
37424231 => 'Sarnaghbyur, Shirak',
3742424 => 'Maralik, Shirak',
3742425 => 'Maralik/Sarnaghbyur, Shirak',
3742426 => 'Maralik, Shirak',
3742427 => 'Maralik/Sarnaghbyur, Shirak',
3742428 => 'Maralik/Sarnaghbyur, Shirak',
3742429 => 'Maralik, Shirak',
37424293 => 'Shirakavan, Shirak',
37424297 => 'Ani Kayaran, Shirak',
37424300 => 'Akhuryan/Arapi/Kamo/Musayelyan, Shirak',
3742440 => 'Artik/Pemzashen, Shirak',
3742441 => 'Artik/Pemzashen, Shirak',
3742442 => 'Artik, Shirak',
3742443 => 'Artik, Shirak',
3742444 => 'Artik/Panik, Shirak',
3742445 => 'Artik, Shirak',
3742446 => 'Artik, Shirak',
3742447 => 'Artik/Pemzashen, Shirak',
3742448 => 'Artik/Pemzashen, Shirak',
37424481 => 'Artik/Panik, Shirak',
3742449 => 'Artik, Shirak',
37424492 => 'Panik, Shirak',
37424495 => 'Arevshat, Shirak',
37424496 => 'Mets Mantash, Shirak',
374245 => 'Ashotsk, Shirak',
374246 => 'Amasia, Shirak',
374249 => 'Talin, Aragatsotn',
3742494 => 'Talin/Aragats/Katnaghbyur/Mastara, Aragatsotn',
37424973 => 'Katnaghbyur, Aragatsotn',
37424981 => 'Talin/Aragats/Katnaghbyur/Mastara, Aragatsotn',
3742499 => 'Aragatsavan/Talin, Aragatsotn',
37424995 => 'Aragats, Aragatsotn',
37424997 => 'Mastara, Aragatsotn',
374252 => 'Aparan, Aragatsotn',
3742524 => 'Aparan/Artavan/Kuchak, Aragatsotn',
37425281 => 'Aparan/Artavan/Kuchak, Aragatsotn',
37425291 => 'Kuchak, Aragatsotn',
37425295 => 'Artavan, Aragatsotn',
3742530 => 'Alaverdi/Odzun/Tsaghkashat/Tumanyan, Lori',
3742531 => 'Alaverdi/Odzun/Tsaghkashat/Tumanyan, Lori',
3742532 => 'Alaverdi, Lori',
3742533 => 'Alaverdi, Lori',
3742534 => 'Alaverdi, Lori',
3742535 => 'Alaverdi, Lori',
37425352 => 'Akhtala, Lori',
37425353 => 'Shnogh, Lori',
37425356 => 'Chochkan, Lori',
37425357 => 'Tumanyan, Lori',
3742536 => 'Alaverdi, Lori',
3742537 => 'Alaverdi/Akhtala/Tumanyan, Lori',
3742538 => 'Alaverdi/Odzun/Tsaghkashat/Tumanyan, Lori',
37425381 => 'Alaverdi/Akhtala/Tumanyan, Lori',
3742539 => 'Alaverdi/Odzun/Tsaghkashat/Tumanyan, Lori',
374254 => 'Tashir, Lori',
3742543 => 'Tashir/Metsavan, Lori',
37425481 => 'Tashir/Metsavan, Lori',
3742549 => 'Tashir/Metsavan, Lori',
37425494 => 'Metsavan, Lori',
374255 => 'Spitak, Lori',
3742560 => 'Bovadzor/Stepanavan, Lori',
3742561 => 'Bovadzor/Stepanavan, Lori',
3742562 => 'Stepanavan, Lori',
3742563 => 'Stepanavan, Lori',
3742564 => 'Stepanavan, Lori',
3742565 => 'Bovadzor/Stepanavan, Lori',
3742566 => 'Stepanavan, Lori',
3742567 => 'Bovadzor/Stepanavan, Lori',
3742568 => 'Bovadzor/Stepanavan, Lori',
37425681 => 'Stepanavan, Lori',
3742569 => 'Stepanavan, Lori',
37425691 => 'Kurtan, Lori',
37425694 => 'Agarak, Lori',
37425695 => 'Lejan, Lori',
374257 => 'Aragats, Aragatsotn',
3742570 => 'Tsakhkahovit, Aragatsotn',
3742572 => 'Tsakhkahovit, Aragatsotn',
3742573 => 'Tsakhkahovit, Aragatsotn',
3742576 => 'Tsakhkahovit, Aragatsotn',
37425781 => 'Tsakhkahovit, Aragatsotn',
374261 => 'Sevan, Gegharkunik',
374262 => 'Martuni, Gegharkunik',
3742623 => 'Martuni/Vardenik, Gegharkunik',
37426252 => 'Vardenik, Gegharkunik',
37426253 => 'Vardenik, Gegharkunik',
37426272 => 'Lichk, Gegharkunik',
37426281 => 'Martuni/Vardenik, Gegharkunik',
37426299 => 'Eranos, Gegharkunik',
3742630 => 'Azatamut/Getahovit/Ijevan/Yenokavan, Tavush',
3742631 => 'Azatamut/Getahovit/Ijevan/Yenokavan, Tavush',
3742632 => 'Ijevan/Aygehovit/Achajur, Tavush',
3742633 => 'Ijevan, Tavush',
3742634 => 'Ijevan, Tavush',
3742635 => 'Azatamut/Getahovit/Ijevan/Yenokavan, Tavush',
3742636 => 'Ijevan, Tavush',
3742637 => 'Ijevan, Tavush',
37426374 => 'Aygehovit, Tavush',
3742638 => 'Azatamut/Getahovit/Ijevan/Yenokavan, Tavush',
37426381 => 'Ijevan/Aygehovit/Achajur, Tavush',
3742639 => 'Ijevan, Tavush',
37426392 => 'Achajur, Tavush',
37426397 => 'Azatamut, Tavush',
374264 => 'Gavar, Gegharkunik',
3742640 => 'Gavar/Sarukhan, Gegharkunik',
3742641 => 'Gavar/Sarukhan, Gegharkunik',
3742647 => 'Gavar/Sarukhan, Gegharkunik',
3742648 => 'Gavar/Sarukhan, Gegharkunik',
374265 => 'Tchambarak, Gegharkunik',
3742654 => 'Tchambarak/Vahan, Gegharkunik',
37426581 => 'Tchambarak/Vahan, Gegharkunik',
37426596 => 'Vahan, Gegharkunik',
3742660 => 'Berdavan/Koghb/Noyemberyan, Tavush',
3742661 => 'Berdavan/Koghb/Noyemberyan, Tavush',
3742662 => 'Noyemberyan, Tavush',
3742663 => 'Noyemberyan/Voskepar/Koti/Koghb, Tavush',
3742664 => 'Berdavan/Koghb/Noyemberyan, Tavush',
3742665 => 'Koghb/Noyemberyan, Tavush',
37426652 => 'Koghb, Tavush',
37426653 => 'Koghb, Tavush',
3742666 => 'Noyemberyan, Tavush',
3742667 => 'Berdavan/Noyemberyan, Tavush',
3742668 => 'Berdavan/Koghb/Noyemberyan, Tavush',
37426681 => 'Noyemberyan/Voskepar/Koti/Koghb, Tavush',
37426690 => 'Noyemberyan, Tavush',
37426691 => 'Noyemberyan, Tavush',
37426692 => 'Archis, Tavush',
37426693 => 'Baghanis, Tavush',
37426694 => 'Noyemberyan, Tavush',
37426695 => 'Zorakan, Tavush',
37426696 => 'Voskepar, Tavush',
37426697 => 'Noyemberyan, Tavush',
37426698 => 'Noyemberyan, Tavush',
37426699 => 'Koti, Tavush',
3742670 => 'Aygepar/Berd, Tavush',
3742671 => 'Aygepar/Berd, Tavush',
3742672 => 'Berd, Tavush',
3742673 => 'Berd/Mosesgegh/Navur/Norashen, Tavush',
3742674 => 'Aygepar/Berd, Tavush',
3742675 => 'Artsvaberd/Berd, Tavush',
3742676 => 'Berd, Tavush',
3742677 => 'Berd, Tavush',
3742678 => 'Aygepar/Berd, Tavush',
37426781 => 'Berd/Mosesgegh/Navur/Norashen, Tavush',
3742679 => 'Berd, Tavush',
37426791 => 'Navur, Tavush',
37426794 => 'Tovuz, Tavush',
37426796 => 'Mosesgegh, Tavush',
37426797 => 'Norashen, Tavush',
3742680 => 'Dilijan, Tavush',
3742682 => 'Dilijan, Tavush',
3742683 => 'Dilijan, Tavush',
3742684 => 'Dilijan/Haghartsin/Teghut, Tavush',
3742686 => 'Dilijan, Tavush',
37426881 => 'Dilijan/Haghartsin/Teghut, Tavush',
3742689 => 'Dilijan, Tavush',
37426895 => 'Haghartsin, Tavush',
37426897 => 'Teghut, Tavush',
374269 => 'Vardenis, Gegharkunik',
3742810 => 'Getap/Salli/Yeghegnadzor, Vayots dzor',
3742811 => 'Getap/Salli/Yeghegnadzor, Vayots dzor',
3742812 => 'Yeghegnadzor, Vayots dzor',
3742813 => 'Yeghegnadzor/Malishka/Shatin, Vayots dzor',
3742814 => 'Getap/Salli/Yeghegnadzor, Vayots dzor',
3742815 => 'Yeghegnadzor, Vayots dzor',
37428151 => 'Khachik, Vayots dzor',
3742816 => 'Yeghegnadzor, Vayots dzor',
3742817 => 'Getap/Salli/Yeghegnadzor, Vayots dzor',
3742818 => 'Getap/Salli/Yeghegnadzor, Vayots dzor',
37428181 => 'Yeghegnadzor/Malishka/Shatin, Vayots dzor',
37428190 => 'Yeghegnadzor, Vayots dzor',
37428191 => 'Arpi, Vayots dzor',
37428192 => 'Yeghegnadzor, Vayots dzor',
37428193 => 'Aghavnadzor, Vayots dzor',
37428194 => 'Areni, Vayots dzor',
37428195 => 'Malishka, Vayots dzor',
37428196 => 'Yeghegnadzor, Vayots dzor',
37428197 => 'Yelpin, Vayots dzor',
37428198 => 'Rind, Vayots dzor',
37428199 => 'Shatin, Vayots dzor',
374282 => 'Vayk, Vayots dzor',
3742830 => 'Sisian, Syunik',
3742832 => 'Sisian, Syunik',
3742833 => 'Sisian, Syunik',
37428351 => 'Sisian, Syunik',
3742836 => 'Sisian, Syunik',
3742837 => 'Sisian, Syunik',
37428375 => 'Tasik, Syunik',
3742838 => 'Sisian, Syunik',
3742839 => 'Sisian, Syunik',
37428396 => 'Angehakot, Syunik',
374284 => 'Goris, Syunik',
3742840 => 'Goris/Verishen, Syunik',
3742841 => 'Goris/Verishen, Syunik',
37428427 => 'Verishen, Syunik',
3742847 => 'Goris/Verishen, Syunik',
3742848 => 'Goris/Verishen, Syunik',
37428491 => 'Harzhis, Syunik',
37428494 => 'Khndzoresk, Syunik',
37428495 => 'Shinuhayr, Syunik',
37428499 => 'Kornidzor, Syunik',
3742850 => 'Davit Bek/Kajaran/Kapan, Syunik',
3742851 => 'Davit Bek/Kajaran/Kapan, Syunik',
3742852 => 'Kapan, Syunik',
3742853 => 'Kajaran, Syunik',
37428540 => 'Kapan, Syunik',
37428541 => 'Kapan, Syunik',
37428542 => 'Kapan, Syunik',
37428543 => 'Kapan, Syunik',
37428544 => 'Kapan, Syunik',
37428545 => 'Kajaran, Syunik',
37428546 => 'Kajaran, Syunik',
37428547 => 'Kajaran, Syunik',
37428548 => 'Kajaran, Syunik',
37428549 => 'Kajaran, Syunik',
3742855 => 'Kapan, Syunik',
3742856 => 'Kapan, Syunik',
3742857 => 'Davit Bek/Kajaran/Kapan, Syunik',
3742858 => 'Davit Bek/Kajaran/Kapan, Syunik',
374285810 => 'Kapan, Syunik',
374285811 => 'Kapan, Syunik',
374285812 => 'Kapan, Syunik',
374285813 => 'Kapan, Syunik',
374285814 => 'Kapan, Syunik',
374285815 => 'Kajaran, Syunik',
374285816 => 'Kajaran, Syunik',
374285817 => 'Kajaran, Syunik',
374285818 => 'Kajaran, Syunik',
374285819 => 'Kajaran, Syunik',
3742859 => 'Kapan, Syunik',
3742860 => 'Meghri/Agarak, Syunik',
3742861 => 'Meghri/Agarak, Syunik',
3742862 => 'Agarak, Syunik',
3742863 => 'Meghri, Syunik',
3742864 => 'Meghri, Syunik',
3742865 => 'Agarak/Shvanidzor, Syunik',
3742866 => 'Meghri, Syunik',
3742867 => 'Meghri/Agarak, Syunik',
3742868 => 'Meghri/Agarak, Syunik',
374286810 => 'Meghri, Syunik',
374286811 => 'Meghri, Syunik',
374286812 => 'Meghri, Syunik',
374286813 => 'Meghri, Syunik',
374286814 => 'Meghri, Syunik',
374286815 => 'Agarak/Meghri, Syunik',
374286816 => 'Agarak/Meghri, Syunik',
374286817 => 'Agarak/Meghri, Syunik',
374286818 => 'Agarak/Meghri, Syunik',
374286819 => 'Agarak/Meghri, Syunik',
3742869 => 'Meghri, Syunik',
37428695 => 'Shvanidzor, Syunik',
374287 => 'Jermuk, Vayots dzor',
3742873 => 'Jermuk/Gndevaz, Vayots dzor',
37428781 => 'Jermuk/Gndevaz, Vayots dzor',
37428794 => 'Gndevaz, Vayots dzor',
374312 => 'Gyumri, Shirak',
3743120 => 'Gyumri/Akhuryan, Shirak',
3743121 => 'Gyumri/Akhuryan, Shirak',
3743127 => 'Akhuryan, Shirak',
37431280 => 'Akhuryan, Shirak',
37431281 => 'Akhuryan, Shirak',
37431282 => 'Akhuryan, Shirak',
37431283 => 'Akhuryan, Shirak',
37431284 => 'Akhuryan, Shirak',
374312859 => 'Akhuryan, Shirak',
37431286 => 'Gyumri/Akhuryan, Shirak',
37431287 => 'Gyumri/Akhuryan, Shirak',
37431288 => 'Gyumri/Akhuryan, Shirak',
37431289 => 'Gyumri/Akhuryan, Shirak',
374322 => 'Vanadzor, Lori',
3743220 => 'Vanadzor/Gugark, Lori',
3743221 => 'Vanadzor/Gugark, Lori',
3743228 => 'Vanadzor/Gugark, Lori',
37432293 => 'Pambak, Lori',
37432294 => 'Lernapat, Lori',
37432295 => 'Yeghegnut, Lori',
37432296 => 'Margahovit, Lori',
37432297 => 'Dzoraget, Lori',
37432298 => 'Lermontovo, Lori',
37432299 => 'Vahagni, Lori',
374470 => 'Nagorno-Karabakh',
374471 => 'Stepanakert',
374472 => 'Nagorno-Karabakh',
374473 => 'Nagorno-Karabakh',
374474 => 'Martakert',
374475 => 'Hadrut',
374476 => 'Askeran',
374477 => 'Shushi',
37447732 => 'Berdzor/Kashatagh',
374478 => 'Martuni',
374479 => 'Stepanakert',
];

View File

@@ -0,0 +1,134 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
3751511 => 'Vyalikaya Byerastavitsa, Grodno Region',
3751512 => 'Volkovysk',
3751513 => 'Svisloch, Grodno Region',
3751514 => 'Shchuchin, Grodno Region',
3751515 => 'Mosty, Grodno Region',
375152 => 'Grodno',
375154 => 'Lida',
3751562 => 'Slonim',
3751563 => 'Dyatlovo, Grodno Region',
3751564 => 'Zelva, Grodno Region',
3751591 => 'Ostrovets, Grodno Region',
3751592 => 'Smorgon',
3751593 => 'Oshmyany',
3751594 => 'Voronovo, Grodno Region',
3751595 => 'Ivye, Grodno Region',
3751596 => 'Korelichi, Grodno Region',
3751597 => 'Novogrudok',
375162 => 'Brest',
375163 => 'Baranovichi',
3751631 => 'Kamenets, Brest Region',
3751632 => 'Pruzhany, Brest Region',
3751633 => 'Lyakhovichi, Brest Region',
3751641 => 'Zhabinka, Brest Region',
3751642 => 'Kobryn',
3751643 => 'Bereza, Brest Region',
3751644 => 'Drogichin, Brest Region',
3751645 => 'Ivatsevichi, Brest Region',
3751646 => 'Gantsevichi, Brest Region',
3751647 => 'Luninets, Brest Region',
375165 => 'Pinsk',
3751651 => 'Malorita, Brest Region',
3751652 => 'Ivanovo, Brest Region',
3751655 => 'Stolin, Brest Region',
37517 => 'Minsk',
3751713 => 'Maryina Gorka, Minsk Region',
3751714 => 'Cherven',
3751715 => 'Berezino, Minsk Region',
3751716 => 'Dzerzhinsk',
3751717 => 'Stolbtsy',
3751718 => 'Uzda, Minsk Region',
3751719 => 'Kopyl, Minsk Region',
375174 => 'Soligorsk',
375176 => 'Molodechno',
375177 => 'Borisov',
3751770 => 'Nesvizh',
3751771 => 'Vileyka',
3751772 => 'Volozhin',
3751774 => 'Lahoysk',
3751775 => 'Zhodino',
3751776 => 'Smalyavichy',
3751792 => 'Starye Dorogi, Minsk Region',
3751793 => 'Kletsk, Minsk Region',
3751794 => 'Lyuban, Minsk Region',
3751795 => 'Slutsk',
3751796 => 'Krupki, Minsk Region',
3751797 => 'Myadel',
375212 => 'Vitebsk',
3752130 => 'Shumilino, Vitebsk Region',
3752131 => 'Beshenkovichi, Vitebsk Region',
3752132 => 'Lepel',
3752133 => 'Chashniki, Vitebsk Region',
3752135 => 'Senno, Vitebsk Region',
3752136 => 'Tolochin',
3752137 => 'Dubrovno, Vitebsk Region',
3752138 => 'Liozno, Vitebsk Region',
3752139 => 'Gorodok, Vitebsk Region',
375214 => 'Polotsk/Navapolatsk',
3752151 => 'Verhnedvinsk, Vitebsk Region',
3752152 => 'Miory, Vitebsk Region',
3752153 => 'Braslav',
3752154 => 'Sharkovshchina, Vitebsk Region',
3752155 => 'Postavy',
3752156 => 'Glubokoye',
3752157 => 'Dokshitsy, Vitebsk Region',
3752158 => 'Ushachi, Vitebsk Region',
3752159 => 'Rossony, Vitebsk Region',
375216 => 'Orsha',
375222 => 'Mogilev',
3752230 => 'Glusk, Mogilev Region',
3752231 => 'Byhov, Mogilev Region',
3752232 => 'Belynichi, Mogilev Region',
3752233 => 'Gorki, Mogilev Region',
3752234 => 'Krugloye, Mogilev Region',
3752235 => 'Osipovichi',
3752236 => 'Klichev, Mogilev Region',
3752237 => 'Kirovsk, Mogilev Region',
3752238 => 'Krasnopolye, Mogilev Region',
3752239 => 'Shklov',
3752240 => 'Mstislavl',
3752241 => 'Krichev, Mogilev Region',
3752242 => 'Chausy, Mogilev Region',
3752243 => 'Cherikov, Mogilev Region',
3752244 => 'Klimovichi, Mogilev Region',
3752245 => 'Kostyukovichi, Mogilev Region',
3752246 => 'Slavgorod, Mogilev Region',
3752247 => 'Khotimsk, Mogilev Region',
3752248 => 'Dribin, Mogilev Region',
375225 => 'Babruysk',
375232 => 'Gomel',
3752330 => 'Vetka, Gomel Region',
3752332 => 'Chechersk, Gomel Region',
3752333 => 'Dobrush, Gomel Region',
3752334 => 'Zhlobin',
3752336 => 'Budo-Koshelevo, Gomel Region',
3752337 => 'Korma, Gomel Region',
3752339 => 'Rogachev',
3752340 => 'Rechitsa',
3752342 => 'Svetlogorsk',
3752344 => 'Bragin, Gomel Region',
3752345 => 'Kalinkovichi',
3752346 => 'Khoiniki, Gomel Region',
3752347 => 'Loyev, Gomel Region',
3752350 => 'Petrikov, Gomel Region',
3752353 => 'Zhitkovichi, Gomel Region',
3752354 => 'Yelsk, Gomel Region',
3752355 => 'Narovlya, Gomel Region',
3752356 => 'Lelchitsy, Gomel Region',
3752357 => 'Oktyabrskiy, Gomel Region',
375236 => 'Mozyr',
];

View File

@@ -0,0 +1,632 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
38031 => 'Zakarpattia',
380312 => 'Uzhgorod/Chop, Zakarpattia',
3803122 => 'Uzhhorod, Zakarpattia',
3803131 => 'Mukacheve, Zakarpattia',
3803132 => 'Rakhiv, Zakarpattia',
3803133 => 'Svalyava, Zakarpattia',
3803134 => 'Solotvyno/Tyachiv, Zakarpattia',
3803135 => 'Great Berezny, Zakarpattia',
3803136 => 'Volovets, Zakarpattia',
3803141 => 'Berehove, Zakarpattia',
3803142 => 'Hust, Zakarpattia',
3803143 => 'Vinogradov, Zakarpattia',
3803144 => 'Irshava, Zakarpattia',
3803145 => 'Perechyn, Zakarpattia',
3803146 => 'Mizhhirya, Zakarpattia',
380320 => 'Lviv',
380321 => 'Lviv',
380322 => 'Bryukhovichi/Lviv, Lviv',
3803230 => 'Pustomyty, Lviv',
3803231 => 'Gorodok, Lviv',
3803232 => 'Lviv',
3803233 => 'Lviv',
3803234 => 'Mostyska, Lviv',
3803235 => 'Lviv',
3803236 => 'Sambir, Lviv',
3803237 => 'Lviv',
3803238 => 'Old Sambir, Lviv',
3803239 => 'Zhidachiv, Lviv',
3803240 => 'Lviv',
3803241 => 'Nikolaev, Lviv',
3803242 => 'Lviv',
3803243 => 'Lviv',
3803244 => 'Drogobych, Lviv',
3803245 => 'Stryi, Lviv',
3803246 => 'Lviv',
3803247 => 'Truskavets, Lviv',
3803248 => 'Boryslav/Skhidnytsya, Lviv',
3803249 => 'Chervonograd, Lviv',
3803250 => 'Lviv',
3803251 => 'Skole/Slavske, Lviv',
3803252 => 'Zhovkva, Lviv',
3803253 => 'Lviv',
3803254 => 'Kamyanka-Buzka, Lviv',
3803255 => 'Radehiv, Lviv',
3803256 => 'Novoyavorivsk, Lviv',
3803257 => 'Sokal, Lviv',
3803258 => 'Lviv',
3803259 => 'Yavoriv, Lviv',
3803260 => 'Morshin, Lviv',
3803261 => 'Novy Rozdol, Lviv',
3803262 => 'Lviv',
3803263 => 'Peremyshlyany, Lviv',
3803264 => 'Busk, Lviv',
3803265 => 'Zolochiv, Lviv',
3803266 => 'Brody, Lviv',
3803267 => 'Lviv',
3803268 => 'Lviv',
3803269 => 'Turka, Lviv',
380327 => 'Lviv',
380328 => 'Lviv',
380329 => 'Lviv',
38033 => 'Volyn',
380332 => 'Lutsk, Volyn',
3803342 => 'Volodymyr-Volynsky, Volyn',
3803344 => 'Novovolynsk, Volyn',
3803346 => 'Old Vyzhivka, Volyn',
3803352 => 'Kovel, Volyn',
3803355 => 'Shatsk, Volyn',
3803357 => 'Kamin-Kashirsky, Volyn',
3803362 => 'Lubeshiv, Volyn',
3803363 => 'Turiysk, Volyn',
3803365 => 'Kivertsi/Tsuman, Volyn',
3803366 => 'Ratne, Volyn',
3803368 => 'Rozhysche, Volyn',
3803372 => 'Ivanychi, Volyn',
3803374 => 'Lokachi, Volyn',
3803376 => 'Manevichi, Volyn',
3803377 => 'Lyuboml, Volyn',
3803379 => 'Gorokhov, Volyn',
38034 => 'Ivano-Frankivsk',
3803430 => 'Gorodenka, Ivano-Frankivsk',
3803431 => 'Halych, Ivano-Frankivsk',
3803432 => 'Verkhovyna, Ivano-Frankivsk',
3803433 => 'Kolomyia, Ivano-Frankivsk',
3803434 => 'Vorokhta/Yaremche, Ivano-Frankivsk',
3803435 => 'Rohatyn, Ivano-Frankivsk',
3803436 => 'Tysmenytsia, Ivano-Frankivsk',
3803437 => 'Bolechov, Ivano-Frankivsk',
3803438 => 'Burshtyn, Ivano-Frankivsk',
3803471 => 'Bogorodchany, Ivano-Frankivsk',
3803472 => 'Kalush, Ivano-Frankivsk',
3803474 => 'Rozhnyatov, Ivano-Frankivsk',
3803475 => 'Delyatin/Nadvirna, Ivano-Frankivsk',
3803476 => 'Zabolotov/Sniatyn, Ivano-Frankivsk',
3803477 => 'Valley, Ivano-Frankivsk',
3803478 => 'Kosiv, Ivano-Frankivsk',
3803479 => 'Tlumach, Ivano-Frankivsk',
38035 => 'Ternopil',
3803540 => 'Meeting, Ternopil',
3803541 => 'Borschiv, Ternopil',
3803542 => 'Pidhaytsi, Ternopil',
3803543 => 'Podvolochisk, Ternopil',
3803544 => 'Buchach, Ternopil',
3803546 => 'Kremenets/Pochayiv, Ternopil',
3803547 => 'Kozlov/Kozova, Ternopil',
3803548 => 'Berezhany, Ternopil',
3803549 => 'Lanovtsi, Ternopil',
3803550 => 'Zbarazh, Ternopil',
3803551 => 'Terebovlya, Ternopil',
3803552 => 'Chortkiv, Ternopil',
3803554 => 'Zalishchiki, Ternopil',
3803555 => 'Monastery, Ternopil',
3803557 => 'Gusyatin, Ternopil',
3803558 => 'Shumsk, Ternopil',
38036 => 'Rivne',
3803632 => 'Zarechnaya, Rivne',
3803633 => 'Radivilov, Rivne',
3803634 => 'Volodymyrets, Rivne',
3803635 => 'Rokitne, Rivne',
3803636 => 'Kuznetsovsk, Rivne',
3803637 => 'Demidivka, Rivne',
3803650 => 'Goshcha, Rivne',
3803651 => 'Korets, Rivne',
3803652 => 'Zdolbunov, Rivne',
3803653 => 'Berezne, Rivne',
3803654 => 'Ostrog, Rivne',
3803655 => 'Sarny, Rivne',
3803656 => 'Dubno, Rivne',
3803657 => 'Kostopil, Rivne',
3803658 => 'Dubrovitsa, Rivne',
3803659 => 'Mlyniv, Rivne',
38037 => 'Chernivtsi',
3803730 => 'Vyzhnytsia, Chernivtsi',
38037312 => 'Khotin, Chernivtsi',
3803732 => 'Kelmentsi, Chernivtsi',
3803733 => 'Novoselytsia, Chernivtsi',
3803734 => 'Deep, Chernivtsi',
3803735 => 'Storozhynets, Chernivtsi',
3803736 => 'Kitsman, Chernivtsi',
3803737 => 'Zastavna, Chernivtsi',
3803738 => 'Putila, Chernivtsi',
3803739 => 'Sokyryany, Chernivtsi',
3803740 => 'Hertz, Chernivtsi',
3803741 => 'Novodnistrovsk, Chernivtsi',
38038 => 'Khmelnytskyi',
3803840 => 'Shepetovka, Khmelnytskyi',
3803841 => 'Belogorsk, Khmelnytskyi',
3803842 => 'Netishyn/Slavuta, Khmelnytskyi',
3803843 => 'Polonne, Khmelnytskyi',
3803844 => 'Theophyll, Khmelnytskyi',
3803845 => 'Volochysk, Khmelnytskyi',
3803846 => 'Vinkivtsi, Khmelnytskyi',
3803847 => 'New Ushitsa, Khmelnytskyi',
3803849 => 'Kamyanets-Podilskyi, Khmelnytskyi',
3803850 => 'Old Sinyava, Khmelnytskyi',
3803851 => 'Gorodok/Sataniv, Khmelnytskyi',
3803852 => 'Iziaslav, Khmelnytskyi',
3803853 => 'Yarmolintsy, Khmelnytskyi',
3803854 => 'Starokostiantyniv, Khmelnytskyi',
3803855 => 'Krasilov, Khmelnytskyi',
3803856 => 'Derazhnya, Khmelnytskyi',
3803857 => 'Letychiv/Medzhybizh, Khmelnytskyi',
3803858 => 'Dunaevtsi, Khmelnytskyi',
3803859 => 'Chemerivtsi, Khmelnytskyi',
38041 => 'Zhytomyr',
3804130 => 'Korostyshiv, Zhytomyr',
3804131 => 'Chervonoarmiysk, Zhytomyr',
3804132 => 'Radomyshl, Zhytomyr',
3804133 => 'Malin, Zhytomyr',
3804134 => 'Chernyakhov, Zhytomyr',
3804135 => 'Olevsk, Zhytomyr',
3804136 => 'Andrushivka, Zhytomyr',
3804137 => 'Popilnya, Zhytomyr',
3804138 => 'Ruzhin, Zhytomyr',
3804139 => 'Chudniv, Zhytomyr',
3804140 => 'Natives, Zhytomyr',
3804141 => 'Novograd-Volynsky, Zhytomyr',
3804142 => 'Korosten, Zhytomyr',
3804143 => 'Berdychiv, Zhytomyr',
3804144 => 'Baranivka, Zhytomyr',
3804145 => 'Volodarsk-Volynsky, Zhytomyr',
3804146 => 'Dzerzhinsk, Zhytomyr',
3804147 => 'Lyubar, Zhytomyr',
3804148 => 'Ovruch, Zhytomyr',
3804149 => 'Emilchine, Zhytomyr',
3804161 => 'Luginy, Zhytomyr',
3804162 => 'Brusilov, Zhytomyr',
38043 => 'Vinnytsia',
3804330 => 'Oratov, Vinnytsia',
3804331 => 'Bratslav/Nemyriv, Vinnytsia',
3804332 => 'Brailiv/Zhmerinka, Vinnytsia',
3804333 => 'Kalinovka, Vinnytsia',
3804334 => 'Haysin, Vinnytsia',
3804335 => 'Tulchin, Vinnytsia',
3804336 => 'Yampil, Vinnytsia',
3804337 => 'Mogilev-Podolsky, Vinnytsia',
3804338 => 'Khmilnyk, Vinnytsia',
3804340 => 'Kryzhopil, Vinnytsia',
3804341 => 'Bar, Vinnytsia',
3804342 => 'Kozatin, Vinnytsia',
3804343 => 'Ladyzhin/Trostyanets, Vinnytsia',
3804344 => 'Shargorod, Vinnytsia',
3804345 => 'Illintsi, Vinnytsia',
3804346 => 'Pogrebishche, Vinnytsia',
3804347 => 'Litin, Vinnytsia',
3804348 => 'Tomashpil, Vinnytsia',
3804349 => 'Pishchanka, Vinnytsia',
3804350 => 'Vapnarka, Vinnytsia',
3804351 => 'Chechelnyk, Vinnytsia',
3804352 => 'Bershad, Vinnytsia',
3804353 => 'Teplik, Vinnytsia',
3804355 => 'Hnivan/Tyvriv, Vinnytsia',
3804356 => 'Murovani Kurylivtsi, Vinnytsia',
3804358 => 'Lipovets, Vinnytsia',
38044 => 'Kyiv city',
38045 => 'Kyiv',
3804560 => 'Tetiev, Kyiv',
3804561 => 'Boguslav, Kyiv',
3804562 => 'Rokitne, Kyiv',
3804563 => 'Belaya Tserkov/Uzin, Kyiv',
3804564 => 'Stavyshche, Kyiv',
3804565 => 'Fastov, Kyiv',
3804566 => 'Tarashcha, Kyiv',
3804567 => 'Pereyaslav-Khmelnitsky, Kyiv',
3804568 => 'Skvyra, Kyiv',
3804569 => 'Volodarka, Kyiv',
3804570 => 'Zgurovka, Kyiv',
3804571 => 'Vasilkov/Glevaha/Grebinky/Kalinovka, Kyiv',
3804572 => 'Kozin/Obukhiv/Ukrainka, Kyiv',
3804573 => 'Kagarlyk/Rzhyshchiv, Kyiv',
3804574 => 'Myronivka, Kyiv',
3804575 => 'Yagotin, Kyiv',
3804576 => 'Baryshevka/Berezan, Kyiv',
3804577 => 'Borodyanka/Klavdievo-Tarasovo/Nemishaive, Kyiv',
3804578 => 'Makarov, Kyiv',
3804579 => 'Slavutych, Kyiv',
3804591 => 'Ivankiv, Kyiv',
3804594 => 'Brovary/Kalita, Kyiv',
3804595 => 'Borispol, Kyiv',
3804596 => 'Vyshgorod/Dimer/Pirnove, Kyiv',
3804597 => 'Bucha/Vorzel/Gostomel/Irpen/Kotsyubinskoe, Kyiv',
3804598 => 'Boyarka/Vishnevoe, Kyiv',
38046 => 'Chernihiv',
3804631 => 'Nizhyn, Chernihiv',
3804632 => 'Bobrovitsa, Chernihiv',
3804633 => 'Ichnya, Chernihiv',
3804634 => 'Talalayevka, Chernihiv',
3804635 => 'Baturin/Bahmach, Chernihiv',
3804636 => 'Varva, Chernihiv',
3804637 => 'Priluki, Chernihiv',
3804639 => 'Silver, Chernihiv',
3804641 => 'Rivers, Chernihiv',
3804642 => 'Sedimentary, Chernihiv',
3804643 => 'Kulikivka, Chernihiv',
3804644 => 'Mena, Chernihiv',
3804645 => 'Gorodnya, Chernihiv',
3804646 => 'Desna/Kozelets/Oster, Chernihiv',
3804653 => 'Borzna, Chernihiv',
3804654 => 'Shchors, Chernihiv',
3804655 => 'Sosnitsa, Chernihiv',
3804656 => 'Carp, Chernihiv',
3804657 => 'Koryukivka, Chernihiv',
3804658 => 'Novgorod-Seversky, Chernihiv',
3804659 => 'Semenivka, Chernihiv',
38047 => 'Cherkasy',
3804730 => 'Chigirin, Cherkasy',
3804731 => 'Talne, Cherkasy',
3804732 => 'Kamyanets, Cherkasy',
3804733 => 'Smila, Cherkasy',
3804734 => 'Chernigov region',
3804735 => 'Korsun-Shevchenkivsky, Cherkasy',
3804736 => 'Kaniv, Cherkasy',
3804737 => 'Zolotonosha, Cherkasy',
3804738 => 'Drabiv, Cherkasy',
3804739 => 'Chernobyl, Cherkasy',
3804740 => 'Vatutina/Zvenigorodka, Cherkasy',
3804741 => 'Shpola, Cherkasy',
3804742 => 'Katerinopil, Cherkasy',
3804744 => 'Uman, Cherkasy',
3804745 => 'Monastyrysche, Cherkasy',
3804746 => 'Monastyrysche, Cherkasy',
3804747 => 'Zhashkiv, Cherkasy',
3804748 => 'Mankivka, Cherkasy',
3804749 => 'Lysyanka, Cherkasy',
38048 => 'Odesa',
3804840 => 'Reni, Odesa',
3804841 => 'Izmail, Odesa',
3804843 => 'Wilkow/Kielia, Odesa',
3804844 => 'Tatarbunary, Odesa',
3804845 => 'Artsis, Odesa',
3804846 => 'Bolgrad, Odesa',
3804847 => 'Tarutino, Odesa',
3804848 => 'Saratov, Odesa',
3804849 => 'Belgorod-Dniester/Zatoka/Sergievka, Odesa',
3804850 => 'Teplodar, Odesa',
3804851 => 'Ovidiopol, Odesa',
3804852 => 'Belyaevka, Odesa',
3804853 => 'Limanske/Rozdilna, Odesa',
3804854 => 'Ivanivka, Odesa',
3804855 => 'Kominternovskoe, Odesa',
3804856 => 'Berezivka, Odesa',
3804857 => 'Nikolaevka, Odesa',
3804858 => 'Shiryaevoe, Odesa',
3804859 => 'Velikaya Mikhailovka, Odesa',
3804860 => 'Frunzivka, Odesa',
3804861 => 'Red Windows, Odesa',
3804862 => 'Kotovsk, Odesa',
3804863 => 'Ananev, Odesa',
3804864 => 'Lyubashevka, Odesa',
3804865 => 'Savran, Odesa',
3804866 => 'Balta, Odesa',
3804867 => 'Kodima, Odesa',
3804868 => 'Illichivsk, Odesa',
38051 => 'Mykolayiv',
3805131 => 'Bratsk, Mykolayiv',
3805132 => 'Arbuzinka, Mykolayiv',
3805133 => 'Creve Lake, Mykolayiv',
3805134 => 'Voznesensk, Mykolayiv',
3805135 => 'Vradievka, Mykolayiv',
3805136 => 'Yuzhnoukrainsk, Mykolayiv',
3805151 => 'Novy Buh, Mykolayiv',
3805152 => 'Domanivka, Mykolayiv',
3805153 => 'Berezanka, Mykolayiv',
3805154 => 'Ochakiv, Mykolayiv',
3805158 => 'Bashtanka, Mykolayiv',
3805159 => 'Elanets, Mykolayiv',
3805161 => 'Pervomaysk, Mykolayiv',
3805162 => 'Snigurovka, Mykolayiv',
3805163 => 'Veselinove, Mykolayiv',
3805164 => 'Kazanka, Mykolayiv',
3805167 => 'New Odesa, Mykolayiv',
3805168 => 'Bereznegovate, Mykolayiv',
38052 => 'Kirovohrad',
380522 => 'Kropyvnytskyi, Kirovohrad',
3805233 => 'Znamenka, Kirovohrad',
3805234 => 'Dolinska, Kirovohrad',
3805235 => 'Alexandria, Kirovohrad',
3805236 => 'Svetlovodsk, Kirovohrad',
3805237 => 'Petrov, Kirovohrad',
3805238 => 'Onufryevka, Kirovohrad',
3805239 => 'Ustinovka, Kirovohrad',
3805240 => 'Kompaniyivka, Kirovohrad',
3805241 => 'Novgorodka, Kirovohrad',
3805242 => 'Aleksandrovka, Kirovohrad',
3805250 => 'Vilshanka, Kirovohrad',
3805251 => 'Novoukrainka, Kirovohrad',
3805252 => 'Golovanovsk, Kirovohrad',
3805253 => 'Dobrovelichkovka, Kirovohrad',
3805254 => 'Haivoron, Kirovohrad',
3805255 => 'Novorangels\'k, Kirovohrad',
3805256 => 'Novomirgorod, Kirovohrad',
3805257 => 'Bobrinets, Kirovohrad',
3805258 => 'Malaya Vyska, Kirovohrad',
3805259 => 'Ulyanovka, Kirovohrad',
38053 => 'Poltava',
3805340 => 'Chornukhi, Poltava',
3805341 => 'Semenivka, Poltava',
3805342 => 'Kozelshchina, Poltava',
3805343 => 'Kobelyaky, Poltava',
3805344 => 'New Sanzhary, Poltava',
3805345 => 'Big Bagachka, Poltava',
3805346 => 'Karlovka, Poltava',
3805347 => 'Chutovoye, Poltava',
3805348 => 'Komsomolsk, Poltava',
3805350 => 'Kotelva, Poltava',
3805351 => 'Dikanka, Poltava',
3805352 => 'Shishaki, Poltava',
3805353 => 'Zinkiv, Poltava',
3805354 => 'Gadyach, Poltava',
3805355 => 'Mirgorod, Poltava',
3805356 => 'Lokhvytsia, Poltava',
3805357 => 'Orzhitsa, Poltava',
3805358 => 'Pyriatyn, Poltava',
3805359 => 'Hrebinka, Poltava',
3805360 => 'Kremenchug, Poltava',
3805361 => 'Lubny, Poltava',
3805362 => 'Khorol, Poltava',
3805363 => 'Reshetilivka, Poltava',
3805364 => 'Mashivka, Poltava',
3805365 => 'Globin, Poltava',
3805366 => 'Kremenchug, Poltava',
3805367 => 'Kremenchug, Poltava',
3805368 => 'Kremenchug, Poltava',
3805369 => 'Kremenchug, Poltava',
38054 => 'Sumy',
3805442 => 'Putivl, Sumy',
3805443 => 'Belopoly, Sumy',
3805444 => 'Glukhov, Sumy',
3805445 => 'Lebedin, Sumy',
3805446 => 'Tomatoes, Sumy',
3805447 => 'Konotop, Sumy',
3805448 => 'Romny, Sumy',
3805449 => 'Shostka, Sumy',
3805451 => 'Mid-Buda, Sumy',
3805452 => 'Lipova Dolina, Sumy',
3805453 => 'Krolevets, Sumy',
3805454 => 'Burin, Sumy',
3805455 => 'Nedrigailov, Sumy',
3805456 => 'Yampil, Sumy',
3805457 => 'Great Pisarivka, Sumy',
3805458 => 'Trostyanets, Sumy',
3805459 => 'Krasnopolye, Sumy',
38055 => 'Kherson',
3805530 => 'Kalanchak, Kherson',
3805531 => 'Ivanivka, Kherson',
3805532 => 'Great Aleksandrovka, Kherson',
3805533 => 'Novovorontsovka, Kherson',
3805534 => 'Genichesk, Kherson',
3805535 => 'Vysokoplylya, Kherson',
3805536 => 'Kakhovka, Kherson',
3805537 => 'Lazurne/Skadovsk, Kherson',
3805538 => 'Askania-Nova/Chaplinka, Kherson',
3805539 => 'Gola Prystan, Kherson',
3805540 => 'Lower Sirogozy, Kherson',
3805542 => 'Tsyurupinsk, Kherson',
3805543 => 'Great Lipetyha, Kherson',
3805544 => 'Gornostaevka, Kherson',
3805545 => 'Upper Rogachik, Kherson',
3805546 => 'Berislav, Kherson',
3805547 => 'Belozerka, Kherson',
3805548 => 'Novotroitsk, Kherson',
3805549 => 'New Kakhovka, Kherson',
380560 => 'Dnipropetrovsk/Dnipro',
380561 => 'Dnipropetrovsk/Dnipro',
380562 => 'Dnipropetrovsk/Dnipro',
3805630 => 'Mezhova, Dnipro',
3805631 => 'Petropavlovka, Dnipro',
3805632 => 'Pavlograd, Dnipro',
3805633 => 'Pershotravensk, Dnipro',
3805634 => 'Petrykivka, Dnipro',
3805635 => 'Yurievka, Dnipro',
3805636 => 'Ternivka, Dnipro',
3805637 => 'Pavlograd, Dnipro',
3805638 => 'Pokrovskoe, Dnipro',
3805639 => 'Vasylkivka, Dnipro',
380564 => 'Krivoy Rog, Dnipro',
3805650 => 'Sofiyivka, Dnipro',
3805651 => 'Dnipropetrovsk/Dnipro',
3805652 => 'Yellow Waters, Dnipro',
3805653 => 'Volnogirsk, Dnipro',
3805654 => 'Krynychky, Dnipro',
3805655 => 'Dnipropetrovsk/Dnipro',
3805656 => 'Apostolove, Dnipro',
3805657 => 'Broad, Dnipro',
3805658 => 'Verhnedneprovsk, Dnipro',
3805659 => 'Dnipropetrovsk/Dnipro',
3805660 => 'Nikopol, Dnipro',
3805661 => 'Nikopol, Dnipro',
3805662 => 'Nikopol, Dnipro',
3805663 => 'Sinelnikovo, Dnipro',
3805664 => 'Nikopol, Dnipro',
3805665 => 'Manganese, Dnipro',
3805666 => 'Nikopol, Dnipro',
3805667 => 'Ordzhonikidze, Dnipro',
3805668 => 'Tomakivka, Dnipro',
3805669 => 'Salt, Dnipro',
380567 => 'Dnipropetrovsk/Dnipro',
380568 => 'Dnipropetrovsk/Dnipro',
380569 => 'Dneprodzerzhinsk/Novomoskovsk, Dnipro',
3805690 => 'Tsarichanka, Dnipro',
3805691 => 'Magdalenivka, Dnipro',
3805692 => 'Dneprodzerzhinsk, Dnipro',
3805693 => 'Novomoskovsk, Dnipro',
38057 => 'Kharkiv',
380572 => 'Merefa/Kharkiv, Kharkiv',
3805740 => 'New Waterlog, Kharkiv',
3805741 => 'Vovchansk, Kharkiv',
3805742 => 'Kupyansk, Kharkiv',
3805743 => 'Izyum, Kharkiv',
3805744 => 'Krasnograd, Kharkiv',
3805745 => 'Lozova, Kharkiv',
3805746 => 'Chuguev, Kharkiv',
3805747 => 'Snakes, Kharkiv',
3805748 => 'Pervomaysk, Kharkiv',
3805749 => 'Balaklia, Kharkiv',
3805750 => 'Two years old, Kharkiv',
3805751 => 'Shevchenkovo, Kharkiv',
3805752 => 'Great Burluk, Kharkiv',
3805753 => 'Valki, Kharkiv',
3805754 => 'Gemini, Kharkiv',
3805755 => 'Kegichivka, Kharkiv',
3805756 => 'Krasnokutsk, Kharkiv',
3805757 => 'Barvinkov, Kharkiv',
3805758 => 'Bogodukhiv, Kharkiv',
3805759 => 'Borova, Kharkiv',
3805761 => 'Zachepilivka, Kharkiv',
3805762 => 'Sakhnovshchyna, Kharkiv',
3805763 => 'Carriers, Kharkiv',
3805764 => 'Zolochiv, Kharkiv',
3805765 => 'Pechenegi, Kharkiv',
3805766 => 'Kolomak, Kharkiv',
38061 => 'Zaporizhzhia',
380612 => 'Zaporozhye, Zaporizhzhia',
3806131 => 'Yakimivka, Zaporizhzhia',
3806132 => 'Mikhailivka, Zaporizhzhia',
3806133 => 'Priazovskoe, Zaporizhzhia',
3806136 => 'Веселе, Zaporizhzhia',
3806137 => 'Primorsk, Zaporizhzhia',
3806138 => 'Kamyanets\'-Dniprovs\'ka, Zaporizhzhia',
3806139 => 'Energodar, Zaporizhzhia',
3806140 => 'Chernigovka, Zaporizhzhia',
3806141 => 'Orychiv, Zaporizhzhia',
3806143 => 'Vilnyansk, Zaporizhzhia',
3806144 => 'Novomikolaevka, Zaporizhzhia',
3806145 => 'Gulyaypole, Zaporizhzhia',
3806147 => 'Kuybyshev, Zaporizhzhia',
3806153 => 'Berdyansk, Zaporizhzhia',
3806156 => 'Big Belozerka, Zaporizhzhia',
3806162 => 'Rozvku, Zaporizhzhia',
3806165 => 'Childbirth, Zaporizhzhia',
3806175 => 'Vasilivka/Dneprorudne, Zaporizhzhia',
3806178 => 'Tokmak, Zaporizhzhia',
380619 => 'Melitopol, Zaporizhzhia',
380620 => 'Donetsk',
380621 => 'Donetsk',
380622 => 'Donetsk',
380623 => 'Krasnoarmeysk/Makeyevka, Donetsk',
3806232 => 'Makeevka, Donetsk',
3806236 => 'Yasinovata, Donetsk',
3806237 => 'Selidus, Donetsk',
3806239 => 'Krasnoarmeysk, Donetsk',
3806240 => 'Gorlovka, Donetsk',
3806241 => 'Gorlovka, Donetsk',
3806242 => 'Gorlovka, Donetsk',
3806243 => 'Great Novosilka, Donetsk',
3806244 => 'Volnovaha, Donetsk',
3806245 => 'Gorlovka, Donetsk',
3806246 => 'Volodarske, Donetsk',
3806247 => 'Dzerzhinsk, Donetsk',
3806248 => 'Gorlovka, Donetsk',
3806249 => 'Debaltsevo, Donetsk',
3806250 => 'Kirovske, Donetsk',
3806251 => 'Donetsk',
3806252 => 'Yenakievo, Donetsk',
3806253 => 'Starobesheve, Donetsk',
3806254 => 'Torez, Donetsk',
3806255 => 'Shakhtarsk, Donetsk',
3806256 => 'Snizhne, Donetsk',
3806257 => 'Ilovajsk/Khartsyzsk, Donetsk',
3806258 => 'Donetsk',
3806259 => 'Amvrosievka, Donetsk',
3806260 => 'Kramatorsk/Slavyansk, Donetsk',
3806261 => 'Krasny Liman, Donetsk',
3806262 => 'Svyatogorsk/Slavyansk, Donetsk',
3806263 => 'Kramatorsk/Slavyansk, Donetsk',
3806264 => 'Kramatorsk, Donetsk',
3806265 => 'Kramatorsk/Slavyansk, Donetsk',
3806266 => 'Kramatorsk/Slavyansk, Donetsk',
3806267 => 'Druzhkovka, Donetsk',
3806268 => 'Kramatorsk/Slavyansk, Donetsk',
3806269 => 'Aleksandrovka, Donetsk',
3806270 => 'Artemivsk, Donetsk',
3806271 => 'Artemivsk, Donetsk',
3806272 => 'Kostiantynivka, Donetsk',
3806273 => 'Vugledar, Donetsk',
3806274 => 'Artemivsk/Siversk, Donetsk',
3806275 => 'Dokuchaevsk, Donetsk',
3806276 => 'Artemivsk, Donetsk',
3806277 => 'Dobropolia, Donetsk',
3806278 => 'Marinka, Donetsk',
3806279 => 'Telmanov, Donetsk',
380628 => 'Donetsk',
380629 => 'Mariupol, Donetsk',
3806296 => 'Novoazovsk, Donetsk',
3806297 => 'Mangosh/Yalta, Donetsk',
380640 => 'Luhansk',
380641 => 'Luhansk',
380642 => 'Luhansk/Oleksandrivsk, Luhansk',
3806430 => 'Luhansk',
3806431 => 'Anthracite, Luhansk',
3806432 => 'Krasnyi Luch, Luhansk',
3806433 => 'Rovenky, Luhansk',
3806434 => 'Sverdlovsk, Luhansk',
3806435 => 'Krasnodon, Luhansk',
3806436 => 'Lutugin, Luhansk',
3806437 => 'Luhansk',
3806438 => 'Luhansk',
3806439 => 'Luhansk',
3806440 => 'Luhansk',
3806441 => 'Perevalsk, Luhansk',
3806442 => 'Alchevsk, Luhansk',
3806443 => 'Bryanka, Luhansk',
3806444 => 'Stakhanov, Luhansk',
3806445 => 'Novoyadar, Luhansk',
3806446 => 'Kirovsk, Luhansk',
3806447 => 'Luhansk',
3806448 => 'Luhansk',
3806449 => 'Luhansk',
3806450 => 'Luhansk',
3806451 => 'Lisichansk, Luhansk',
3806452 => 'Severodonetsk, Luhansk',
3806453 => 'Rubizhne, Luhansk',
3806454 => 'Kremenna, Luhansk',
3806455 => 'Pervomaisk, Luhansk',
3806456 => 'Trinity Church, Luhansk',
3806457 => 'Luhansk',
3806458 => 'Luhansk',
3806459 => 'Luhansk',
3806460 => 'Luhansk',
3806461 => 'Starobilsk, Luhansk',
3806462 => 'Belokurakine, Luhansk',
3806463 => 'Novopskov, Luhansk',
3806464 => 'Markovka, Luhansk',
3806465 => 'Milow, Luhansk',
3806466 => 'Belovodsk, Luhansk',
3806467 => 'Luhansk',
3806468 => 'Luhansk',
3806469 => 'Luhansk',
380647 => 'Luhansk',
3806471 => 'Swatov, Luhansk',
3806472 => 'Stanitsa Luhansk, Luhansk',
3806473 => 'Slavyanoserbsk, Luhansk',
3806474 => 'Popasna, Luhansk',
380648 => 'Luhansk',
380649 => 'Luhansk',
38065 => 'Crimea',
38069 => 'Sevastopol city',
];

View File

@@ -0,0 +1,49 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
38110 => 'Pirot',
38111 => 'Belgrade',
38112 => 'Pozarevac',
38113 => 'Pancevo',
38114 => 'Valjevo',
38115 => 'Sabac',
38116 => 'Leskovac',
38117 => 'Vranje',
38118 => 'Nis',
38119 => 'Zajecar',
38120 => 'Novi Pazar',
38121 => 'Novi Sad',
38122 => 'Sremska Mitrovica',
38123 => 'Zrenjanin',
381230 => 'Kikinda',
38124 => 'Subotica',
38125 => 'Sombor',
38126 => 'Smederevo',
38127 => 'Prokuplje',
38128 => 'Kosovska Mitrovica',
381280 => 'Gnjilane',
38129 => 'Prizren',
381290 => 'Urosevac',
38130 => 'Bor',
38131 => 'Uzice',
38132 => 'Cacak',
38133 => 'Prijepolje',
38134 => 'Kragujevac',
38135 => 'Jagodina',
38136 => 'Kraljevo',
38137 => 'Krusevac',
38138 => 'Pristina',
38139 => 'Pec',
381390 => 'Dakovica',
];

View File

@@ -0,0 +1,25 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
3822 => 'Danilovgad/Kolasin/Podgorica',
38230 => 'Bar/Ulcinj',
38231 => 'Herceg Novi',
38232 => 'Kotor/Tivat',
38233 => 'Budva',
38240 => 'Niksic/Pluzine/Savnik',
38241 => 'Cetinje',
38250 => 'Bijelo Polje/Mojkovac',
38251 => 'Andrijevica/Berane/Blue/Gusinje/Petnitsa/Rožaje',
38252 => 'Pljevlja/Zabljak',
];

View File

@@ -0,0 +1,22 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
38328 => 'Mitrovica',
383280 => 'Gjilan',
38329 => 'Prizren',
383290 => 'Ferizaj',
38338 => 'Prishtina',
38339 => 'Peja',
383390 => 'Gjakova',
];

View File

@@ -0,0 +1,35 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
3851 => 'Zagreb',
38520 => 'Dubrovnik-Neretva',
38521 => 'Split-Dalmatia',
38522 => 'Šibenik-Knin',
38523 => 'Zadar',
38531 => 'Osijek-Baranja',
38532 => 'Vukovar-Srijem',
38533 => 'Virovitica-Podravina',
38534 => 'Požega-Slavonia',
38535 => 'Brod-Posavina',
38540 => 'Međimurje',
38542 => 'Varaždin',
38543 => 'Bjelovar-Bilogora',
38544 => 'Sisak-Moslavina',
38547 => 'Karlovac',
38548 => 'Koprivnica-Križevci',
38549 => 'Krapina-Zagorje',
38551 => 'Primorsko-goranska',
38552 => 'Istra',
38553 => 'Lika-Senj',
];

View File

@@ -0,0 +1,44 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
3861 => 'Ljubljana',
3862 => 'Maribor/Ravne na Koroškem/Murska Sobota',
38632 => 'Celje/Trbovlje',
38633 => 'Celje/Trbovlje',
38634 => 'Celje/Trbovlje',
38635 => 'Celje/Trbovlje',
38636 => 'Celje/Trbovlje',
38637 => 'Celje/Trbovlje',
38638 => 'Celje/Trbovlje',
38642 => 'Kranj',
38644 => 'Kranj',
38645 => 'Kranj',
38646 => 'Kranj',
38647 => 'Kranj',
38648 => 'Kranj',
38652 => 'Gorica/Koper/Postojna',
38653 => 'Gorica/Koper/Postojna',
38654 => 'Gorica/Koper/Postojna',
38655 => 'Gorica/Koper/Postojna',
38656 => 'Gorica/Koper/Postojna',
38657 => 'Gorica/Koper/Postojna',
38658 => 'Gorica/Koper/Postojna',
38672 => 'Novo Mesto/Krško',
38673 => 'Novo Mesto/Krško',
38674 => 'Novo Mesto/Krško',
38675 => 'Novo Mesto/Krško',
38676 => 'Novo Mesto/Krško',
38677 => 'Novo Mesto/Krško',
38678 => 'Novo Mesto/Krško',
];

View File

@@ -0,0 +1,36 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
38730 => 'Central Bosnia Canton',
38731 => 'Posavina Canton',
38732 => 'Zenica-Doboj Canton',
38733 => 'Sarajevo Canton',
38734 => 'Canton 10',
38735 => 'Tuzla Canton',
38736 => 'Herzegovina-Neretva Canton',
38737 => 'Una-Sana Canton',
38738 => 'Bosnian-Podrinje Canton Goražde',
38739 => 'West Herzegovina Canton',
3874 => 'Brčko District',
38750 => 'Mrkonjić Grad',
38751 => 'Banja Luka',
38752 => 'Prijedor',
38753 => 'Doboj',
38754 => 'Šamac',
38755 => 'Bijeljina',
38756 => 'Zvornik',
38757 => 'East Sarajevo',
38758 => 'Foča',
38759 => 'Trebinje',
];

View File

@@ -0,0 +1,54 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
3892 => 'Skopje',
38931 => 'Kumanovo/Kriva Palanka/Kratovo',
38932 => 'Stip/Probistip/Sveti Nikole/Radovis',
38933 => 'Kocani/Berovo/Delcevo/Vinica',
38934 => 'Gevgelija/Valandovo/Strumica/Dojran',
38942 => 'Gostivar',
38943 => 'Veles/Kavadarci/Negotino',
38944 => 'Tetovo',
38945 => 'Kicevo/Makedonski Brod',
38946 => 'Ohrid/Struga/Debar',
389472 => 'Bitola/Demir Hisar/Resen',
389474 => 'Bitola/Demir Hisar/Resen',
389475 => 'Bitola/Demir Hisar/Resen',
38947600 => 'Bitola/Demir Hisar/Resen',
38947608 => 'Bitola/Demir Hisar/Resen',
38947609 => 'Bitola/Demir Hisar/Resen',
3894761 => 'Bitola/Demir Hisar/Resen',
3894762 => 'Bitola/Demir Hisar/Resen',
3894763 => 'Bitola/Demir Hisar/Resen',
3894764 => 'Bitola/Demir Hisar/Resen',
3894765 => 'Bitola/Demir Hisar/Resen',
3894766 => 'Bitola/Demir Hisar/Resen',
3894767 => 'Bitola/Demir Hisar/Resen',
3894768 => 'Bitola/Demir Hisar/Resen',
3894769 => 'Bitola/Demir Hisar/Resen',
389477 => 'Bitola/Demir Hisar/Resen',
389478 => 'Bitola/Demir Hisar/Resen',
389484 => 'Prilep/Krusevo',
389485 => 'Prilep/Krusevo',
3894861 => 'Prilep/Krusevo',
3894862 => 'Prilep/Krusevo',
3894863 => 'Prilep/Krusevo',
3894864 => 'Prilep/Krusevo',
3894865 => 'Prilep/Krusevo',
3894866 => 'Prilep/Krusevo',
3894867 => 'Prilep/Krusevo',
3894868 => 'Prilep/Krusevo',
3894869 => 'Prilep/Krusevo',
389488 => 'Prilep/Krusevo',
];

View File

@@ -0,0 +1,135 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
39010 => 'Genoa',
39011 => 'Turin',
390122 => 'Turin',
390125 => 'Turin',
39013 => 'Alessandria',
390141 => 'Asti',
39015 => 'Biella',
390161 => 'Vercelli',
390165 => 'Aosta Valley',
390166 => 'Aosta Valley',
390171 => 'Cuneo',
390183 => 'Imperia',
390185 => 'Genoa',
390187 => 'La Spezia',
3902 => 'Milan',
39030 => 'Brescia',
39031 => 'Como',
390321 => 'Novara',
390322 => 'Novara',
390324 => 'Verbano-Cusio-Ossola',
39033 => 'Varese',
390341 => 'Lecco',
390342 => 'Sondrio',
390343 => 'Sondrio',
390344 => 'Como',
390346 => 'Bergamo',
39035 => 'Bergamo',
390362 => 'Cremona/Monza',
390363 => 'Bergamo',
390364 => 'Brescia',
390365 => 'Brescia',
390371 => 'Lodi',
390372 => 'Cremona',
390373 => 'Cremona',
390376 => 'Mantua',
390382 => 'Pavia',
39039 => 'Monza',
39040 => 'Trieste',
39041 => 'Venice',
390421 => 'Venice',
390422 => 'Treviso',
390423 => 'Treviso',
390424 => 'Vicenza',
390425 => 'Rovigo',
390426 => 'Rovigo',
390432 => 'Udine',
390444 => 'Vicenza',
390445 => 'Vicenza',
39045 => 'Verona',
390461 => 'Trento',
390471 => 'Bolzano/Bozen',
39048 => 'Gorizia',
39049 => 'Padova',
39050 => 'Pisa',
39051 => 'Bologna',
390521 => 'Parma',
390522 => 'Reggio Emilia',
390523 => 'Piacenza',
390532 => 'Ferrara',
390541 => 'Rimini',
390543 => 'Forlì-Cesena',
390545 => 'Ravenna',
390549 => 'San Marino',
39055 => 'Florence',
390565 => 'Livorno',
390574 => 'Prato',
390575 => 'Arezzo',
390577 => 'Siena',
390583 => 'Lucca',
390585 => 'Massa-Carrara',
390586 => 'Livorno',
39059 => 'Modena',
3906 => 'Rome',
3906698 => 'Vatican City',
39070 => 'Cagliari',
39071 => 'Ancona',
390731 => 'Ancona',
390732 => 'Ancona',
390733 => 'Macerata',
390734 => 'Fermo',
390735 => 'Ascoli Piceno',
390737 => 'Macerata',
39075 => 'Perugia',
390774 => 'Rome',
390776 => 'Frosinone',
390783 => 'Oristano',
390789 => 'Sassari',
39079 => 'Sassari',
39080 => 'Bari',
39081 => 'Naples',
390823 => 'Caserta',
390824 => 'Benevento',
390825 => 'Avellino',
390832 => 'Lecce',
39085 => 'Pescara',
390862 => 'L\'Aquila',
390865 => 'Isernia',
390874 => 'Campobasso',
390881 => 'Foggia',
390882 => 'Foggia',
390883 => 'Andria Barletta Trani',
390884 => 'Foggia',
39089 => 'Salerno',
39090 => 'Messina',
39091 => 'Palermo',
390921 => 'Palermo',
390922 => 'Agrigento',
390924 => 'Trapani',
390925 => 'Agrigento',
390933 => 'Caltanissetta',
390934 => 'Caltanissetta and Enna',
390942 => 'Catania',
39095 => 'Catania',
390961 => 'Catanzaro',
390962 => 'Crotone',
390963 => 'Vibo Valentia',
390965 => 'Reggio Calabria',
390974 => 'Salerno',
390975 => 'Potenza',
39099 => 'Taranto',
];

View File

@@ -0,0 +1,97 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
4021 => 'Bucharest and Ilfov County',
40230 => 'Suceava',
40231 => 'Botoșani',
40232 => 'Iași',
40233 => 'Neamț',
40234 => 'Bacău',
40235 => 'Vaslui',
40236 => 'Galați',
40237 => 'Vrancea',
40238 => 'Buzău',
40239 => 'Brăila',
40240 => 'Tulcea',
40241 => 'Constanța',
40242 => 'Călărași',
40243 => 'Ialomița',
40244 => 'Prahova',
40245 => 'Dâmbovița',
40246 => 'Giurgiu',
40247 => 'Teleorman',
40248 => 'Argeș',
40249 => 'Olt',
40250 => 'Vâlcea',
40251 => 'Dolj',
40252 => 'Mehedinți',
40253 => 'Gorj',
40254 => 'Hunedoara',
40255 => 'Caraș-Severin',
40256 => 'Timiș',
40257 => 'Arad',
40258 => 'Alba',
40259 => 'Bihor',
40260 => 'Sălaj',
40261 => 'Satu Mare',
40262 => 'Maramureș',
40263 => 'Bistrița-Năsăud',
40264 => 'Cluj',
40265 => 'Mureș',
40266 => 'Harghita',
40267 => 'Covasna',
40268 => 'Brașov',
40269 => 'Sibiu',
4031 => 'Bucharest and Ilfov County',
40330 => 'Suceava',
40331 => 'Botoșani',
40332 => 'Iași',
40333 => 'Neamț',
40334 => 'Bacău',
40335 => 'Vaslui',
40336 => 'Galați',
40337 => 'Vrancea',
40338 => 'Buzău',
40339 => 'Brăila',
40340 => 'Tulcea',
40341 => 'Constanța',
40342 => 'Călărași',
40343 => 'Ialomița',
40344 => 'Prahova',
40345 => 'Dâmbovița',
40346 => 'Giurgiu',
40347 => 'Teleorman',
40348 => 'Argeș',
40349 => 'Olt',
40350 => 'Vâlcea',
40351 => 'Dolj',
40352 => 'Mehedinți',
40353 => 'Gorj',
40354 => 'Hunedoara',
40355 => 'Caraș-Severin',
40356 => 'Timiș',
40357 => 'Arad',
40358 => 'Alba',
40359 => 'Bihor',
40360 => 'Sălaj',
40361 => 'Satu Mare',
40362 => 'Maramureș',
40363 => 'Bistrița-Năsăud',
40364 => 'Cluj',
40365 => 'Mureș',
40366 => 'Harghita',
40367 => 'Covasna',
40368 => 'Brașov',
40369 => 'Sibiu',
];

View File

@@ -0,0 +1,35 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
4121 => 'Lausanne',
4122 => 'Geneva',
4124 => 'Yverdon/Aigle',
4126 => 'Fribourg',
4127 => 'Sion',
4131 => 'Berne',
4132 => 'Bienne/Neuchâtel/Soleure/Jura',
4133 => 'Thun',
4134 => 'Burgdorf/Langnau i.E.',
4141 => 'Lucerne',
4143 => 'Zurich',
4144 => 'Zurich',
4152 => 'Winterthur',
4155 => 'Rapperswil',
4156 => 'Baden',
4161 => 'Basel',
4162 => 'Olten',
4171 => 'St. Gallen',
4181 => 'Chur',
4191 => 'Bellinzona',
];

View File

@@ -0,0 +1,35 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
4202 => 'Prague',
42031 => 'Central Bohemian Region',
42032 => 'Central Bohemian Region',
42035 => 'Karlovy Vary Region',
42037 => 'Plzeň Region',
42038 => 'South Bohemian Region',
42039 => 'South Bohemian Region',
42041 => 'Ústí nad Labem Region',
42046 => 'Pardubice Region',
42047 => 'Ústí nad Labem Region',
42048 => 'Liberec Region',
42049 => 'Hradec Králové Region',
42051 => 'South Moravian Region',
42053 => 'South Moravian Region',
42054 => 'South Moravian Region',
42055 => 'Moravian-Silesian Region',
42056 => 'Vysočina Region',
42057 => 'Zlín Region',
42058 => 'Olomouc Region',
42059 => 'Moravian-Silesian Region',
];

View File

@@ -0,0 +1,41 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
4212 => 'Bratislava',
42131 => 'Dunajska Streda',
42132 => 'Trencin',
42133 => 'Trnava',
42134 => 'Senica',
42135 => 'Nove Zamky',
42136 => 'Levice',
42137 => 'Nitra',
42138 => 'Topolcany',
42141 => 'Zilina',
42142 => 'Povazska Bystrica',
42143 => 'Martin',
42144 => 'Liptovsky Mikulas',
42145 => 'Zvolen',
42146 => 'Prievidza',
42147 => 'Lucenec',
42148 => 'Banska Bystrica',
42151 => 'Presov',
42152 => 'Poprad',
42153 => 'Spisska Nova Ves',
42154 => 'Bardejov',
42155 => 'Kosice',
42156 => 'Michalovce',
42157 => 'Humenne',
42158 => 'Roznava',
421601 => 'Roznava',
];

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,829 @@
<?php
/**
* This file has been @generated by a phing task by {@link GeneratePhonePrefixData}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make
* metadata changes.
*
* Do not modify this file directly!
*/
return [
44113 => 'Leeds',
441140 => 'Sheffield',
441141 => 'Sheffield',
441142 => 'Sheffield',
441143 => 'Sheffield',
441144 => 'Sheffield',
441145 => 'Sheffield',
441146 => 'Sheffield',
44114700 => 'Sheffield',
44114701 => 'Sheffield',
44114702 => 'Sheffield',
44114703 => 'Sheffield',
44114704 => 'Sheffield',
44114705 => 'Sheffield',
44114707 => 'Sheffield',
44114708 => 'Sheffield',
44114709 => 'Sheffield',
44115 => 'Nottingham',
44116 => 'Leicester',
44117 => 'Bristol',
44118 => 'Reading',
441200 => 'Clitheroe',
441202 => 'Bournemouth',
441204 => 'Bolton',
441205 => 'Boston',
441206 => 'Colchester',
441207 => 'Consett',
441208 => 'Bodmin',
441209 => 'Redruth',
44121 => 'Birmingham',
441223 => 'Cambridge',
441224 => 'Aberdeen',
441225 => 'Bath',
441226 => 'Barnsley',
441227 => 'Canterbury',
441228 => 'Carlisle',
4412290 => 'Barrow-in-Furness/Millom',
4412291 => 'Barrow-in-Furness/Millom',
4412292 => 'Barrow-in-Furness',
4412293 => 'Millom',
4412294 => 'Barrow-in-Furness',
4412295 => 'Barrow-in-Furness',
4412296 => 'Barrow-in-Furness',
4412297 => 'Millom',
4412298 => 'Barrow-in-Furness',
4412299 => 'Millom',
441233 => 'Ashford (Kent)',
441234 => 'Bedford',
441235 => 'Abingdon',
441236 => 'Coatbridge',
441237 => 'Bideford',
441239 => 'Cardigan',
441241 => 'Arbroath',
441242 => 'Cheltenham',
441243 => 'Chichester',
441244 => 'Chester',
441245 => 'Chelmsford',
441246 => 'Chesterfield',
441248 => 'Bangor (Gwynedd)',
441249 => 'Chippenham',
441250 => 'Blairgowrie',
441252 => 'Aldershot',
441253 => 'Blackpool',
441254 => 'Blackburn',
441255 => 'Clacton-on-Sea',
441256 => 'Basingstoke',
441257 => 'Coppull',
441258 => 'Blandford',
441259 => 'Alloa',
441260 => 'Congleton',
441261 => 'Banff',
441262 => 'Bridlington',
441263 => 'Cromer',
441264 => 'Andover',
441267 => 'Carmarthen',
441268 => 'Basildon',
441269 => 'Ammanford',
441270 => 'Crewe',
441271 => 'Barnstaple',
441273 => 'Brighton',
441274 => 'Bradford',
441275 => 'Clevedon',
441276 => 'Camberley',
441277 => 'Brentwood',
441278 => 'Bridgwater',
441279 => 'Bishops Stortford',
441280 => 'Buckingham',
441282 => 'Burnley',
441283 => 'Burton-on-Trent',
441284 => 'Bury St Edmunds',
441285 => 'Cirencester',
441286 => 'Caernarfon',
441287 => 'Guisborough',
441288 => 'Bude',
441289 => 'Berwick-upon-Tweed',
441290 => 'Cumnock',
441291 => 'Chepstow',
441292 => 'Ayr',
441293 => 'Crawley',
441294 => 'Ardrossan',
441295 => 'Banbury',
441296 => 'Aylesbury',
441297 => 'Axminster',
441298 => 'Buxton',
441299 => 'Bewdley',
441300 => 'Cerne Abbas',
441301 => 'Arrochar',
441302 => 'Doncaster',
441303 => 'Folkestone',
441304 => 'Dover',
441305 => 'Dorchester',
441306 => 'Dorking',
441307 => 'Forfar',
441308 => 'Bridport',
441309 => 'Forres',
44131 => 'Edinburgh',
441320 => 'Fort Augustus',
441322 => 'Dartford',
441323 => 'Eastbourne',
441324 => 'Falkirk',
441325 => 'Darlington',
441326 => 'Falmouth',
441327 => 'Daventry',
441328 => 'Fakenham',
441329 => 'Fareham',
441330 => 'Banchory',
441332 => 'Derby',
441333 => 'Peat Inn (Leven (Fife))',
441334 => 'St Andrews',
441335 => 'Ashbourne',
441337 => 'Ladybank',
4413390 => 'Aboyne/Ballater',
4413391 => 'Aboyne/Ballater',
4413392 => 'Aboyne',
4413393 => 'Aboyne',
4413394 => 'Ballater',
4413395 => 'Aboyne',
4413396 => 'Ballater',
4413397 => 'Ballater',
4413398 => 'Aboyne',
4413399 => 'Ballater',
441340 => 'Craigellachie (Aberlour)',
441341 => 'Barmouth',
441342 => 'East Grinstead',
441343 => 'Elgin',
441344 => 'Bracknell',
441346 => 'Fraserburgh',
441347 => 'Easingwold',
441348 => 'Fishguard',
441349 => 'Dingwall',
441350 => 'Dunkeld',
441352 => 'Mold',
441353 => 'Ely',
441354 => 'Chatteris',
441355 => 'East Kilbride',
441356 => 'Brechin',
441357 => 'Strathaven',
441358 => 'Ellon',
441359 => 'Pakenham',
441360 => 'Killearn',
441361 => 'Duns',
441362 => 'Dereham',
441363 => 'Crediton',
441364 => 'Ashburton',
441366 => 'Downham Market',
441367 => 'Faringdon',
441368 => 'Dunbar',
441369 => 'Dunoon',
441371 => 'Great Dunmow',
441372 => 'Esher',
441373 => 'Frome',
441375 => 'Grays Thurrock',
441376 => 'Braintree',
441377 => 'Driffield',
441379 => 'Diss',
441380 => 'Devizes',
441381 => 'Fortrose',
441382 => 'Dundee',
441383 => 'Dunfermline',
441384 => 'Dudley',
441386 => 'Evesham',
441387 => 'Dumfries',
4413873 => 'Langholm',
441388 => 'Bishop Auckland',
4413880 => 'Bishop Auckland/Stanhope (Eastgate)',
4413881 => 'Bishop Auckland/Stanhope (Eastgate)',
4413882 => 'Stanhope (Eastgate)',
4413885 => 'Stanhope (Eastgate)',
441389 => 'Dumbarton',
441392 => 'Exeter',
441394 => 'Felixstowe',
441395 => 'Budleigh Salterton',
441397 => 'Fort William',
441398 => 'Dulverton',
441400 => 'Honington',
441403 => 'Horsham',
441404 => 'Honiton',
441405 => 'Goole',
441406 => 'Holbeach',
441407 => 'Holyhead',
441408 => 'Golspie',
441409 => 'Holsworthy',
44141 => 'Glasgow',
441420 => 'Alton',
441422 => 'Halifax',
4414230 => 'Harrogate/Boroughbridge',
4414231 => 'Harrogate/Boroughbridge',
4414232 => 'Harrogate',
4414233 => 'Boroughbridge',
4414234 => 'Boroughbridge',
4414235 => 'Harrogate',
4414236 => 'Harrogate',
4414237 => 'Harrogate',
4414238 => 'Harrogate',
4414239 => 'Boroughbridge',
441424 => 'Hastings',
441425 => 'Ringwood',
441427 => 'Gainsborough',
441428 => 'Haslemere',
441429 => 'Hartlepool',
4414300 => 'North Cave/Market Weighton',
4414301 => 'North Cave/Market Weighton',
4414302 => 'North Cave',
4414303 => 'North Cave',
4414304 => 'North Cave',
4414305 => 'North Cave',
4414306 => 'Market Weighton',
4414307 => 'Market Weighton',
4414308 => 'Market Weighton',
4414309 => 'Market Weighton',
441431 => 'Helmsdale',
441432 => 'Hereford',
441433 => 'Hathersage',
4414340 => 'Bellingham/Haltwhistle/Hexham',
4414341 => 'Bellingham/Haltwhistle/Hexham',
4414342 => 'Bellingham',
4414343 => 'Haltwhistle',
4414344 => 'Bellingham',
4414345 => 'Haltwhistle',
4414346 => 'Hexham',
4414347 => 'Hexham',
4414348 => 'Hexham',
4414349 => 'Bellingham',
441435 => 'Heathfield',
441436 => 'Helensburgh',
4414370 => 'Haverfordwest/Clynderwen (Clunderwen)',
4414371 => 'Haverfordwest/Clynderwen (Clunderwen)',
4414372 => 'Clynderwen (Clunderwen)',
4414373 => 'Clynderwen (Clunderwen)',
4414374 => 'Clynderwen (Clunderwen)',
4414375 => 'Clynderwen (Clunderwen)',
4414376 => 'Haverfordwest',
4414377 => 'Haverfordwest',
4414378 => 'Haverfordwest',
4414379 => 'Haverfordwest',
441438 => 'Stevenage',
441439 => 'Helmsley',
441440 => 'Haverhill',
441442 => 'Hemel Hempstead',
441443 => 'Pontypridd',
441444 => 'Haywards Heath',
441445 => 'Gairloch',
441446 => 'Barry',
441449 => 'Stowmarket',
441450 => 'Hawick',
441451 => 'Stow-on-the-Wold',
441452 => 'Gloucester',
441453 => 'Dursley',
441454 => 'Chipping Sodbury',
441455 => 'Hinckley',
441456 => 'Glenurquhart',
441457 => 'Glossop',
441458 => 'Glastonbury',
441460 => 'Chard',
441461 => 'Gretna',
441462 => 'Hitchin',
441463 => 'Inverness',
441464 => 'Insch',
441465 => 'Girvan',
441466 => 'Huntly',
441467 => 'Inverurie',
441469 => 'Killingholme',
441470 => 'Isle of Skye - Edinbane',
441471 => 'Isle of Skye - Broadford',
441472 => 'Grimsby',
441473 => 'Ipswich',
441474 => 'Gravesend',
441475 => 'Greenock',
441476 => 'Grantham',
441477 => 'Holmes Chapel',
441478 => 'Isle of Skye - Portree',
441479 => 'Grantown-on-Spey',
441480 => 'Huntingdon',
441481 => 'Guernsey',
441482 => 'Kingston-upon-Hull',
441483 => 'Guildford',
441484 => 'Huddersfield',
441485 => 'Hunstanton',
441487 => 'Warboys',
441488 => 'Hungerford',
441489 => 'Bishops Waltham',
441490 => 'Corwen',
441491 => 'Henley-on-Thames',
441492 => 'Colwyn Bay',
441493 => 'Great Yarmouth',
441494 => 'High Wycombe',
441495 => 'Pontypool',
441496 => 'Port Ellen',
441497 => 'Hay-on-Wye',
441499 => 'Inveraray',
441501 => 'Harthill',
441502 => 'Lowestoft',
441503 => 'Looe',
441505 => 'Johnstone',
441506 => 'Bathgate',
4415070 => 'Louth/Alford (Lincs)/Spilsby (Horncastle)',
4415071 => 'Louth/Alford (Lincs)/Spilsby (Horncastle)',
4415072 => 'Spilsby (Horncastle)',
4415073 => 'Louth',
4415074 => 'Alford (Lincs)',
4415075 => 'Spilsby (Horncastle)',
4415076 => 'Louth',
4415077 => 'Louth',
4415078 => 'Alford (Lincs)',
4415079 => 'Alford (Lincs)',
441508 => 'Brooke',
441509 => 'Loughborough',
44151 => 'Liverpool',
441520 => 'Lochcarron',
441522 => 'Lincoln',
441524 => 'Lancaster',
4415242 => 'Hornby',
441525 => 'Leighton Buzzard',
441526 => 'Martin',
441527 => 'Redditch',
441528 => 'Laggan',
441529 => 'Sleaford',
441530 => 'Coalville',
441531 => 'Ledbury',
441534 => 'Jersey',
441535 => 'Keighley',
441536 => 'Kettering',
441538 => 'Ipstones',
441539 => 'Kendal',
4415394 => 'Hawkshead',
4415395 => 'Grange-over-Sands',
4415396 => 'Sedbergh',
441540 => 'Kingussie',
441542 => 'Keith',
441543 => 'Cannock',
441544 => 'Kington',
441545 => 'Llanarth',
441546 => 'Lochgilphead',
441547 => 'Knighton',
441548 => 'Kingsbridge',
441549 => 'Lairg',
441550 => 'Llandovery',
441553 => 'Kings Lynn',
441554 => 'Llanelli',
441555 => 'Lanark',
441556 => 'Castle Douglas',
441557 => 'Kirkcudbright',
441558 => 'Llandeilo',
441559 => 'Llandysul',
441560 => 'Moscow',
441561 => 'Laurencekirk',
441562 => 'Kidderminster',
441563 => 'Kilmarnock',
441564 => 'Lapworth',
441565 => 'Knutsford',
441566 => 'Launceston',
441567 => 'Killin',
441568 => 'Leominster',
441569 => 'Stonehaven',
441570 => 'Lampeter',
441571 => 'Lochinver',
441572 => 'Oakham',
441573 => 'Kelso',
441575 => 'Kirriemuir',
441576 => 'Lockerbie',
441577 => 'Kinross',
441578 => 'Lauder',
441579 => 'Liskeard',
441580 => 'Cranbrook',
441581 => 'New Luce',
441582 => 'Luton',
441583 => 'Carradale',
441584 => 'Ludlow',
441586 => 'Campbeltown',
441588 => 'Bishops Castle',
441590 => 'Lymington',
441591 => 'Llanwrtyd Wells',
441592 => 'Kirkcaldy',
441593 => 'Lybster',
441594 => 'Lydney',
441595 => 'Lerwick, Foula & Fair Isle',
441597 => 'Llandrindod Wells',
441598 => 'Lynton',
441599 => 'Kyle',
441600 => 'Monmouth',
441603 => 'Norwich',
441604 => 'Northampton',
441606 => 'Northwich',
441608 => 'Chipping Norton',
441609 => 'Northallerton',
44161 => 'Manchester',
441620 => 'North Berwick',
441621 => 'Maldon',
441622 => 'Maidstone',
441623 => 'Mansfield',
441624 => 'Isle of Man',
441625 => 'Macclesfield',
441626 => 'Newton Abbot',
441628 => 'Maidenhead',
441629 => 'Matlock',
441630 => 'Market Drayton',
441631 => 'Oban',
441633 => 'Newport',
441634 => 'Medway',
441635 => 'Newbury',
441636 => 'Newark-on-Trent',
441637 => 'Newquay',
441638 => 'Newmarket',
441639 => 'Neath',
441641 => 'Strathy',
441642 => 'Middlesbrough',
441643 => 'Minehead',
441644 => 'New Galloway',
441646 => 'Milford Haven',
441647 => 'Moretonhampstead',
441650 => 'Cemmaes Road',
441651 => 'Oldmeldrum',
441652 => 'Brigg',
441653 => 'Malton',
441654 => 'Machynlleth',
441655 => 'Maybole',
441656 => 'Bridgend',
441659 => 'Sanquhar',
441661 => 'Prudhoe',
441663 => 'New Mills',
441664 => 'Melton Mowbray',
441665 => 'Alnwick',
441666 => 'Malmesbury',
441667 => 'Nairn',
441668 => 'Bamburgh',
441669 => 'Rothbury',
441670 => 'Morpeth',
441671 => 'Newton Stewart',
441672 => 'Marlborough',
441673 => 'Market Rasen',
441674 => 'Montrose',
441675 => 'Coleshill',
441676 => 'Meriden',
441677 => 'Bedale',
441678 => 'Bala',
441680 => 'Isle of Mull - Craignure',
441681 => 'Isle of Mull - Fionnphort',
441683 => 'Moffat',
441684 => 'Malvern',
441685 => 'Merthyr Tydfil',
4416860 => 'Newtown/Llanidloes',
4416861 => 'Newtown/Llanidloes',
4416862 => 'Llanidloes',
4416863 => 'Llanidloes',
4416864 => 'Llanidloes',
4416865 => 'Newtown',
4416866 => 'Newtown',
4416867 => 'Llanidloes',
4416868 => 'Newtown',
4416869 => 'Newtown',
441687 => 'Mallaig',
441688 => 'Isle of Mull - Tobermory',
441689 => 'Orpington',
441690 => 'Betws-y-Coed',
441691 => 'Oswestry',
441692 => 'North Walsham',
441694 => 'Church Stretton',
441695 => 'Skelmersdale',
441697 => 'Brampton',
4416973 => 'Wigton',
4416974 => 'Raughton Head',
441698 => 'Motherwell',
441700 => 'Rothesay',
441702 => 'Southend-on-Sea',
441704 => 'Southport',
441706 => 'Rochdale',
441707 => 'Welwyn Garden City',
441708 => 'Romford',
441709 => 'Rotherham',
441720 => 'Isles of Scilly',
441721 => 'Peebles',
441722 => 'Salisbury',
441723 => 'Scarborough',
441724 => 'Scunthorpe',
441725 => 'Rockbourne',
441726 => 'St Austell',
441727 => 'St Albans',
441728 => 'Saxmundham',
441729 => 'Settle',
441730 => 'Petersfield',
441732 => 'Sevenoaks',
441733 => 'Peterborough',
441736 => 'Penzance',
441737 => 'Redhill',
441738 => 'Perth',
441740 => 'Sedgefield',
441743 => 'Shrewsbury',
441744 => 'St Helens',
441745 => 'Rhyl',
441746 => 'Bridgnorth',
441747 => 'Shaftesbury',
441748 => 'Richmond',
441749 => 'Shepton Mallet',
441750 => 'Selkirk',
441751 => 'Pickering',
441752 => 'Plymouth',
441753 => 'Slough',
441754 => 'Skegness',
441756 => 'Skipton',
441757 => 'Selby',
441758 => 'Pwllheli',
441759 => 'Pocklington',
441760 => 'Swaffham',
441761 => 'Temple Cloud',
441763 => 'Royston',
441764 => 'Crieff',
441765 => 'Ripon',
441766 => 'Porthmadog',
441767 => 'Sandy',
441768 => 'Penrith',
4417683 => 'Appleby',
4417684 => 'Pooley Bridge',
4417687 => 'Keswick',
441769 => 'South Molton',
441770 => 'Isle of Arran',
441771 => 'Maud',
441772 => 'Preston',
441773 => 'Ripley',
441775 => 'Spalding',
441776 => 'Stranraer',
441777 => 'Retford',
441778 => 'Bourne',
441779 => 'Peterhead',
441780 => 'Stamford',
441782 => 'Stoke-on-Trent',
441784 => 'Staines',
441785 => 'Stafford',
441786 => 'Stirling',
441787 => 'Sudbury',
441788 => 'Rugby',
441789 => 'Stratford-upon-Avon',
441790 => 'Spilsby',
441792 => 'Swansea',
441793 => 'Swindon',
441794 => 'Romsey',
441795 => 'Sittingbourne',
441796 => 'Pitlochry',
441797 => 'Rye',
441798 => 'Pulborough',
441799 => 'Saffron Walden',
441803 => 'Torquay',
441805 => 'Torrington',
441806 => 'Shetland',
441807 => 'Ballindalloch',
441808 => 'Tomatin',
441809 => 'Tomdoun',
441821 => 'Kinrossie',
441822 => 'Tavistock',
441823 => 'Taunton',
441824 => 'Ruthin',
441825 => 'Uckfield',
441827 => 'Tamworth',
441828 => 'Coupar Angus',
441829 => 'Tarporley',
441830 => 'Kirkwhelpington',
441832 => 'Clopton',
441833 => 'Barnard Castle',
441834 => 'Narberth',
441835 => 'St Boswells',
441837 => 'Okehampton',
441838 => 'Dalmally',
441840 => 'Camelford',
441841 => 'Newquay (Padstow)',
441842 => 'Thetford',
441843 => 'Thanet',
441844 => 'Thame',
441845 => 'Thirsk',
4418470 => 'Thurso/Tongue',
4418471 => 'Thurso/Tongue',
4418472 => 'Thurso',
4418473 => 'Thurso',
4418474 => 'Thurso',
4418475 => 'Thurso',
4418476 => 'Tongue',
4418477 => 'Tongue',
4418478 => 'Thurso',
4418479 => 'Tongue',
441848 => 'Thornhill',
4418510 => 'Great Bernera/Stornoway',
4418511 => 'Great Bernera/Stornoway',
4418512 => 'Stornoway',
4418513 => 'Stornoway',
4418514 => 'Great Bernera',
4418515 => 'Stornoway',
4418516 => 'Great Bernera',
4418517 => 'Stornoway',
4418518 => 'Stornoway',
4418519 => 'Great Bernera',
441852 => 'Kilmelford',
441854 => 'Ullapool',
441855 => 'Ballachulish',
441856 => 'Orkney',
441857 => 'Sanday',
441858 => 'Market Harborough',
441859 => 'Harris',
441862 => 'Tain',
441863 => 'Ardgay',
441864 => 'Abington (Crawford)',
441865 => 'Oxford',
441866 => 'Kilchrenan',
441869 => 'Bicester',
441870 => 'Isle of Benbecula',
441871 => 'Castlebay',
441872 => 'Truro',
441873 => 'Abergavenny',
441874 => 'Brecon',
441875 => 'Tranent',
441876 => 'Lochmaddy',
441877 => 'Callander',
441878 => 'Lochboisdale',
441879 => 'Scarinish',
441880 => 'Tarbert',
441882 => 'Kinloch Rannoch',
441883 => 'Caterham',
441884 => 'Tiverton',
441885 => 'Pencombe',
441886 => 'Bromyard (Knightwick/Leigh Sinton)',
441887 => 'Aberfeldy',
441888 => 'Turriff',
441889 => 'Rugeley',
4418900 => 'Coldstream/Ayton',
4418901 => 'Coldstream/Ayton',
4418902 => 'Coldstream',
4418903 => 'Coldstream',
4418904 => 'Coldstream',
4418905 => 'Ayton',
4418906 => 'Ayton',
4418907 => 'Ayton',
4418908 => 'Coldstream',
4418909 => 'Ayton',
441892 => 'Tunbridge Wells',
441895 => 'Uxbridge',
441896 => 'Galashiels',
441899 => 'Biggar',
441900 => 'Workington',
441902 => 'Wolverhampton',
441903 => 'Worthing',
441904 => 'York',
441905 => 'Worcester',
441908 => 'Milton Keynes',
441909 => 'Worksop',
441910 => 'Tyneside/Durham/Sunderland',
441911 => 'Tyneside/Durham/Sunderland',
441912 => 'Tyneside',
441913 => 'Durham',
441914 => 'Tyneside',
441915 => 'Sunderland',
441916 => 'Tyneside',
441917 => 'Sunderland',
441918 => 'Tyneside',
441919 => 'Durham',
441920 => 'Ware',
441922 => 'Walsall',
441923 => 'Watford',
441924 => 'Wakefield',
441925 => 'Warrington',
441926 => 'Warwick',
441928 => 'Runcorn',
441929 => 'Wareham',
441931 => 'Shap',
441932 => 'Weybridge',
441933 => 'Wellingborough',
441934 => 'Weston-super-Mare',
441935 => 'Yeovil',
441937 => 'Wetherby',
441938 => 'Welshpool',
441939 => 'Wem',
441942 => 'Wigan',
441943 => 'Guiseley',
441944 => 'West Heslerton',
441945 => 'Wisbech',
441946 => 'Whitehaven',
4419467 => 'Gosforth',
441947 => 'Whitby',
441948 => 'Whitchurch',
441949 => 'Whatton',
441950 => 'Sandwick',
441951 => 'Colonsay',
441952 => 'Telford',
441953 => 'Wymondham',
441954 => 'Madingley',
441955 => 'Wick',
441957 => 'Mid Yell',
441959 => 'Westerham',
441962 => 'Winchester',
441963 => 'Wincanton',
4419640 => 'Hornsea/Patrington',
4419641 => 'Hornsea/Patrington',
4419642 => 'Hornsea',
4419643 => 'Patrington',
4419644 => 'Patrington',
4419645 => 'Hornsea',
4419646 => 'Patrington',
4419647 => 'Patrington',
4419648 => 'Hornsea',
4419649 => 'Hornsea',
441967 => 'Strontian',
441968 => 'Penicuik',
441969 => 'Leyburn',
441970 => 'Aberystwyth',
441971 => 'Scourie',
441972 => 'Glenborrodale',
441974 => 'Llanon',
4419750 => 'Alford (Aberdeen)/Strathdon',
4419751 => 'Alford (Aberdeen)/Strathdon',
4419752 => 'Alford (Aberdeen)',
4419753 => 'Strathdon',
4419754 => 'Alford (Aberdeen)',
4419755 => 'Alford (Aberdeen)',
4419756 => 'Strathdon',
4419757 => 'Strathdon',
4419758 => 'Strathdon',
4419759 => 'Alford (Aberdeen)',
441977 => 'Pontefract',
441978 => 'Wrexham',
441980 => 'Amesbury',
441981 => 'Wormbridge',
441982 => 'Builth Wells',
441983 => 'Isle of Wight',
441984 => 'Watchet (Williton)',
441985 => 'Warminster',
441986 => 'Bungay',
441987 => 'Ebbsfleet',
441988 => 'Wigtown',
441989 => 'Ross-on-Wye',
441992 => 'Lea Valley',
441993 => 'Witney',
441994 => 'St Clears',
441995 => 'Garstang',
441997 => 'Strathpeffer',
4420 => 'London',
442310 => 'Portsmouth',
442311 => 'Southampton',
44238 => 'Southampton',
44239 => 'Portsmouth',
44241 => 'Coventry',
44247 => 'Coventry',
44280 => 'Northern Ireland',
44281 => 'Northern Ireland',
442820 => 'Ballycastle',
442821 => 'Martinstown',
442822 => 'Northern Ireland',
442823 => 'Northern Ireland',
442824 => 'Northern Ireland',
442825 => 'Ballymena',
442826 => 'Northern Ireland',
442827 => 'Ballymoney',
442828 => 'Larne',
442829 => 'Kilrea',
44283 => 'Northern Ireland',
442830 => 'Newry',
442837 => 'Armagh',
442838 => 'Portadown',
442840 => 'Banbridge',
442841 => 'Rostrevor',
442842 => 'Kircubbin',
442843 => 'Newcastle (Co. Down)',
442844 => 'Downpatrick',
442845 => 'Northern Ireland',
442846 => 'Northern Ireland',
442847 => 'Northern Ireland',
442848 => 'Northern Ireland',
442849 => 'Northern Ireland',
44286 => 'Northern Ireland',
442866 => 'Enniskillen',
442867 => 'Lisnaskea',
442868 => 'Kesh',
44287 => 'Northern Ireland',
442870 => 'Coleraine',
442871 => 'Londonderry',
442877 => 'Limavady',
442879 => 'Magherafelt',
442880 => 'Carrickmore',
442881 => 'Newtownstewart',
442882 => 'Omagh',
442883 => 'Northern Ireland',
442884 => 'Northern Ireland',
442885 => 'Ballygawley',
442886 => 'Cookstown',
442887 => 'Dungannon',
442888 => 'Northern Ireland',
442889 => 'Fivemiletown',
442890 => 'Belfast',
442891 => 'Bangor (Co. Down)',
442892 => 'Lisburn',
442893 => 'Ballyclare',
442894 => 'Antrim',
442895 => 'Belfast',
442896 => 'Belfast',
442897 => 'Saintfield',
442898 => 'Belfast',
442899 => 'Northern Ireland',
44291 => 'Cardiff',
44292 => 'Cardiff',
];

Some files were not shown because too many files have changed in this diff Show More