diff --git a/.gitignore b/.gitignore index c9d24e72e..75847b355 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,5 @@ Homestead.json /public/uploads /public/photos/ /app/FaveoJob + +.env diff --git a/.travis.yml b/.travis.yml index 99c90bc91..077ea260c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ script: phpunit # fast_finish: If your build fails do not continue trying to build, just stop. matrix: allow_failures: - - php: 5.6 + - php: 5.5 - php: hhvm fast_finish: true diff --git a/DB/demodatabase.sql b/DB/demodatabase.sql index 68284ba4d..2aef04abd 100644 --- a/DB/demodatabase.sql +++ b/DB/demodatabase.sql @@ -2036,10 +2036,10 @@ CREATE TABLE IF NOT EXISTS `ticket_priority` ( -- INSERT INTO `ticket_priority` (`priority_id`, `priority`, `priority_desc`, `priority_color`, `priority_urgency`, `ispublic`, `status`, `is_default`) VALUES -(1, 'Low', 'Low', '#00a65a', 4, 1, 0, NULL), -(2, 'Normal', 'Normal', '#00bfef', 3, 1, 1, NULL), -(3, 'High', 'High', '#f39c11', 2, 1, 0, NULL), -(4, 'Emergency', 'Emergency', '#dd4b38', 1, 1, 0, NULL); +(1, 'Low', 'Low', '#00a65a', 4, 1, 0, 0), +(2, 'Normal', 'Normal', '#00bfef', 3, 1, 1, 1), +(3, 'High', 'High', '#f39c11', 2, 1, 0, 0), +(4, 'Emergency', 'Emergency', '#dd4b38', 1, 1, 0, 0); -- -------------------------------------------------------- diff --git a/DB/dummy-data.sql b/DB/dummy-data.sql index 68284ba4d..2aef04abd 100644 --- a/DB/dummy-data.sql +++ b/DB/dummy-data.sql @@ -2036,10 +2036,10 @@ CREATE TABLE IF NOT EXISTS `ticket_priority` ( -- INSERT INTO `ticket_priority` (`priority_id`, `priority`, `priority_desc`, `priority_color`, `priority_urgency`, `ispublic`, `status`, `is_default`) VALUES -(1, 'Low', 'Low', '#00a65a', 4, 1, 0, NULL), -(2, 'Normal', 'Normal', '#00bfef', 3, 1, 1, NULL), -(3, 'High', 'High', '#f39c11', 2, 1, 0, NULL), -(4, 'Emergency', 'Emergency', '#dd4b38', 1, 1, 0, NULL); +(1, 'Low', 'Low', '#00a65a', 4, 1, 0, 0), +(2, 'Normal', 'Normal', '#00bfef', 3, 1, 1, 1), +(3, 'High', 'High', '#f39c11', 2, 1, 0, 0), +(4, 'Emergency', 'Emergency', '#dd4b38', 1, 1, 0, 0); -- -------------------------------------------------------- diff --git a/README.md b/README.md index e606c703d..ccce45507 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Faveo is designed & developed by message($messages, $email); } } @@ -339,22 +340,19 @@ class MailController extends Controller */ public function get_data($id) { - $attachments = \App\Model\helpdesk\Ticket\Ticket_attachments::where('id', '=', $id)->get(); - foreach ($attachments as $attachment) { - header('Content-type: application/'.$attachment->type.''); - header('Content-Disposition: inline; filename='.$attachment->name.''); - header('Content-Transfer-Encoding: binary'); - $headers = [ - 'Content-type: application/'.$attachment->type.'', - 'Content-Disposition: inline; filename='.$attachment->name.'', - 'Content-Transfer-Encoding: binary', - ]; - $file = $attachment->file; - echo $file; -// return response($file) -// ->header('Content-Type', $attachment->type) -// ->header('Content-Disposition', 'inline; filename='.$attachment->name.'') -// ->header('Content-Transfer-Encoding', 'binary'); + $attachment = \App\Model\helpdesk\Ticket\Ticket_attachments::where('id', '=', $id)->first(); + if (mime($attachment->type) == true) { + echo "type;base64,".$attachment->file.'>'; + } else { + $file = base64_decode($attachment->file); + + return response($file) + ->header('Cache-Control', 'no-cache private') + ->header('Content-Description', 'File Transfer') + ->header('Content-Type', $attachment->type) + ->header('Content-length', strlen($file)) + ->header('Content-Disposition', 'attachment; filename='.$attachment->name) + ->header('Content-Transfer-Encoding', 'binary'); } } } diff --git a/app/Http/Controllers/Agent/helpdesk/TicketController.php b/app/Http/Controllers/Agent/helpdesk/TicketController.php index b8a52c02c..35aad3df7 100644 --- a/app/Http/Controllers/Agent/helpdesk/TicketController.php +++ b/app/Http/Controllers/Agent/helpdesk/TicketController.php @@ -281,7 +281,7 @@ class TicketController extends Controller public function newticket(CountryCode $code) { $location = GeoIP::getLocation(); - $phonecode = $code->where('iso', '=', $location['isoCode'])->first(); + $phonecode = $code->where('iso', '=', $location->iso_code)->first(); $settings = CommonSettings::select('status')->where('option_name', '=', 'send_otp')->first(); $email_mandatory = CommonSettings::select('status')->where('option_name', '=', 'email_mandatory')->first(); @@ -330,7 +330,7 @@ class TicketController extends Controller $status = 1; if ($phone != null || $mobile_number != null) { $location = GeoIP::getLocation(); - $geoipcode = $code->where('iso', '=', $location['isoCode'])->first(); + $geoipcode = $code->where('iso', '=', $location->iso_code)->first(); if ($phonecode == null) { $data = [ 'fails' => Lang::get('lang.country-code-required-error'), @@ -383,7 +383,7 @@ class TicketController extends Controller return Redirect('newticket')->with('fails', Lang::get('lang.failed-to-create-user-tcket-as-mobile-has-been-taken'))->withInput($request->except('password')); } } catch (Exception $e) { - dd($e); + // dd($e); if ($api != false) { return $e->getMessage(); } @@ -566,7 +566,7 @@ class TicketController extends Controller $attachment_files = null; } - $thread = Ticket_Thread::where('ticket_id', '=', $ticket_id)->first(); + $thread = Ticket_Thread::where('ticket_id', '=', $ticket_id)->orderBy('id')->first(); $ticket_subject = $thread->title; $user_id = $tickets->user_id; $user = User::where('id', '=', $user_id)->first(); @@ -960,7 +960,7 @@ class TicketController extends Controller try { $this->PhpMailController->sendmail($from = $this->PhpMailController->mailfrom('0', $ticketdata->dept_id), $to = ['user' => $email_data['to_user'], 'email' => $email_data['to_email']], $message = ['subject' => $updated_subject, 'body' => $body, 'scenario' => $mail], $template_variables = ['ticket_agent_name' => $email_data['to_user_name'], 'ticket_client_name' => $username, 'ticket_client_email' => $emailadd, 'user' => $email_data['to_user_name'], 'ticket_number' => $ticket_number2, 'email_address' => $emailadd, 'name' => $ticket_creator]); } catch (\Exception $e) { - dd($e); + // dd($e); } } $data = [ @@ -2477,7 +2477,7 @@ class TicketController extends Controller return ""; }) ->addColumn('subject', function ($ticket) { - $subject = Ticket_Thread::where('ticket_id', '=', $ticket->id)->first(); + $subject = Ticket_Thread::where('ticket_id', '=', $ticket->id)->orderBy('id')->first(); if (isset($subject->title)) { $string = str_limit($subject->getSubject(), 20); } else { diff --git a/app/Http/Controllers/Agent/helpdesk/UserController.php b/app/Http/Controllers/Agent/helpdesk/UserController.php index 97c2b9205..c1c9b2f0e 100644 --- a/app/Http/Controllers/Agent/helpdesk/UserController.php +++ b/app/Http/Controllers/Agent/helpdesk/UserController.php @@ -188,7 +188,7 @@ class UserController extends Controller $settings = CommonSettings::select('status')->where('option_name', '=', 'send_otp')->first(); $email_mandatory = CommonSettings::select('status')->where('option_name', '=', 'email_mandatory')->first(); $location = GeoIP::getLocation(); - $phonecode = $code->where('iso', '=', $location['isoCode'])->first(); + $phonecode = $code->where('iso', '=', $location->iso_code)->first(); $org = Organization::lists('name', 'id')->toArray(); return view('themes.default1.agent.helpdesk.user.create', compact('org', 'settings', 'email_mandatory'))->with('phonecode', $phonecode->phonecode); @@ -575,7 +575,7 @@ class UserController extends Controller /* select the field where id = $id(request Id) */ $users = $user->whereId($id)->first(); $location = GeoIP::getLocation(); - $phonecode = $code->where('iso', '=', $location['isoCode'])->first(); + $phonecode = $code->where('iso', '=', $location->iso_code)->first(); $org = Organization::lists('name', 'id')->toArray(); return view('themes.default1.agent.helpdesk.user.edit', compact('users', 'org', '$settings', '$email_mandatory'))->with('phonecode', $phonecode->phonecode); @@ -651,7 +651,7 @@ class UserController extends Controller { $user = Auth::user(); $location = GeoIP::getLocation(); - $phonecode = $code->where('iso', '=', $location['isoCode'])->first(); + $phonecode = $code->where('iso', '=', $location->iso_code)->first(); $settings = CommonSettings::select('status')->where('option_name', '=', 'send_otp')->first(); $status = $settings->status; try { diff --git a/app/Http/Controllers/Client/helpdesk/FormController.php b/app/Http/Controllers/Client/helpdesk/FormController.php index 7c4534b78..3bbfa019e 100644 --- a/app/Http/Controllers/Client/helpdesk/FormController.php +++ b/app/Http/Controllers/Client/helpdesk/FormController.php @@ -68,7 +68,7 @@ class FormController extends Controller return redirect('auth/login')->with(['login_require' => 'Please login to your account for submitting a ticket', 'referer' => 'form']); } $location = GeoIP::getLocation(); - $phonecode = $code->where('iso', '=', $location['isoCode'])->first(); + $phonecode = $code->where('iso', '=', $location->iso_code)->first(); if (System::first()->status == 1) { $topics = $topic->get(); $codes = $code->get(); @@ -199,7 +199,7 @@ class FormController extends Controller $team_assign = null; if ($phone != null || $mobile_number != null) { $location = GeoIP::getLocation(); - $geoipcode = $code->where('iso', '=', $location['isoCode'])->first(); + $geoipcode = $code->where('iso', '=', $location->iso_code)->first(); if ($phonecode == null) { $data = [ 'fails' => Lang::get('lang.country-code-required-error'), diff --git a/app/Http/Controllers/Client/helpdesk/GuestController.php b/app/Http/Controllers/Client/helpdesk/GuestController.php index 5be2e258c..0b1281d8d 100644 --- a/app/Http/Controllers/Client/helpdesk/GuestController.php +++ b/app/Http/Controllers/Client/helpdesk/GuestController.php @@ -61,7 +61,7 @@ class GuestController extends Controller { $user = Auth::user(); $location = GeoIP::getLocation(); - $phonecode = $code->where('iso', '=', $location['isoCode'])->first(); + $phonecode = $code->where('iso', '=', $location->iso_code)->first(); $settings = CommonSettings::select('status')->where('option_name', '=', 'send_otp')->first(); $status = $settings->status; diff --git a/app/Http/Requests/helpdesk/ProfileRequest.php b/app/Http/Requests/helpdesk/ProfileRequest.php index 11b4da3d4..3b995c906 100644 --- a/app/Http/Requests/helpdesk/ProfileRequest.php +++ b/app/Http/Requests/helpdesk/ProfileRequest.php @@ -31,7 +31,21 @@ class ProfileRequest extends Request return [ 'first_name' => 'required', 'profile_pic' => 'mimes:png,jpeg', - // 'mobile' => 'unique:users,mobile', + 'mobile' => $this->checkMobile(), ]; } + + /** + *Check the mobile number is unique or not. + * + *@return string + */ + public function checkMobile() + { + if (\Auth::user()->mobile === Request::get('mobile')) { + return ''; + } else { + return 'unique:users'; + } + } } diff --git a/app/Model/helpdesk/Ticket/Ticket_Thread.php b/app/Model/helpdesk/Ticket/Ticket_Thread.php index e822dc3df..54f4c219e 100644 --- a/app/Model/helpdesk/Ticket/Ticket_Thread.php +++ b/app/Model/helpdesk/Ticket/Ticket_Thread.php @@ -118,7 +118,7 @@ class Ticket_Thread extends Model if ($this->attach()->where('poster', 'INLINE')->get()->count() > 0) { $search = $this->attach()->where('poster', 'INLINE')->lists('name')->toArray(); foreach ($this->attach()->where('poster', 'INLINE')->get() as $key => $attach) { - $replace[$key] = "data:$attach->type;base64,".base64_encode($attach->file); + $replace[$key] = "data:$attach->type;base64,".$attach->file; } $body = str_replace($search, $replace, $body); } diff --git a/app/Model/helpdesk/Ticket/Ticket_attachments.php b/app/Model/helpdesk/Ticket/Ticket_attachments.php index 33de6ad66..da680a731 100644 --- a/app/Model/helpdesk/Ticket/Ticket_attachments.php +++ b/app/Model/helpdesk/Ticket/Ticket_attachments.php @@ -10,4 +10,29 @@ class Ticket_attachments extends Model protected $fillable = [ 'id', 'thread_id', 'name', 'size', 'type', 'file', 'data', 'poster', 'updated_at', 'created_at', ]; + + public function setFileAttribute($value) + { + $this->attributes['file'] = base64_encode($value); + } + + public function getFile() + { + $size = $this->size; + $units = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; + $power = $size > 0 ? floor(log($size, 1024)) : 0; + $value = number_format($size / pow(1024, $power), 2, '.', ',').' '.$units[$power]; + if ($this->poster == 'ATTACHMENT') { + if (mime($this->type) == true) { + $var = ''; + + return '
  • '.$var.'
    '.$this->name.'

    '.$value.'

  • '; + } else { + //$var = ''; + $var = ''.strtoupper($this->type).'
    '.$this->name.'

    '.$value.'

    '; + + return '
  • '.$var.'
  • '; + } + } + } } diff --git a/composer.json b/composer.json index aa0a1be3e..858935671 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ "tymon/jwt-auth": "0.5.*", "php": ">=5.5.9", "davejamesmiller/laravel-breadcrumbs": "^3.0", - "torann/geoip": "0.2.*@dev", + "torann/geoip": "1.0.*", "davibennun/laravel-push-notification": "dev-laravel5", "brozot/laravel-fcm": "^1.0", "barryvdh/laravel-debugbar": "^2.2", @@ -34,7 +34,9 @@ "mremi/url-shortener": "^1.0", "maatwebsite/excel": "~2.1.0", "laravelcollective/bus": "^5.2", - "laravel/socialite": "^2.0" + "laravel/socialite": "^2.0", + "unisharp/laravel-ckeditor": "^4.5", + "tedivm/fetch": "0.6.*" }, "require-dev": { "phpunit/phpunit": "~4.0", diff --git a/composer.lock b/composer.lock index f6ee6ceef..352e53bc4 100644 --- a/composer.lock +++ b/composer.lock @@ -4,21 +4,21 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "hash": "7e6a0ceab6cc073ac4245dc5aa0702a5", - "content-hash": "acea0125dd7385620621534e5bb6c75e", + "hash": "f0d25300aea06d3f8f01b956096ac641", + "content-hash": "0501535d018ba0aa2cd290c8be4bcb93", "packages": [ { "name": "aws/aws-sdk-php", - "version": "3.18.36", + "version": "3.19.23", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "48362bce008fa9c20a71dfa6a68aebac65a8ab1b" + "reference": "fbfb87734e5d298b40354ac7fb3f95d0f72ad16e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/48362bce008fa9c20a71dfa6a68aebac65a8ab1b", - "reference": "48362bce008fa9c20a71dfa6a68aebac65a8ab1b", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/fbfb87734e5d298b40354ac7fb3f95d0f72ad16e", + "reference": "fbfb87734e5d298b40354ac7fb3f95d0f72ad16e", "shasum": "" }, "require": { @@ -85,32 +85,32 @@ "s3", "sdk" ], - "time": "2016-08-02 20:49:01" + "time": "2016-11-03 20:28:28" }, { "name": "barryvdh/laravel-debugbar", - "version": "v2.2.2", + "version": "v2.3.0", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "c291e58d0a13953e0f68d99182ee77ebc693edc0" + "reference": "0c87981df959c7c1943abe227baf607c92f204f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/c291e58d0a13953e0f68d99182ee77ebc693edc0", - "reference": "c291e58d0a13953e0f68d99182ee77ebc693edc0", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/0c87981df959c7c1943abe227baf607c92f204f9", + "reference": "0c87981df959c7c1943abe227baf607c92f204f9", "shasum": "" }, "require": { - "illuminate/support": "5.1.*|5.2.*", - "maximebf/debugbar": "~1.11.0", + "illuminate/support": "5.1.*|5.2.*|5.3.*", + "maximebf/debugbar": "~1.13.0", "php": ">=5.5.9", "symfony/finder": "~2.7|~3.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-master": "2.3-dev" } }, "autoload": { @@ -139,20 +139,20 @@ "profiler", "webprofiler" ], - "time": "2016-05-11 13:54:43" + "time": "2016-09-15 14:05:56" }, { "name": "brozot/laravel-fcm", - "version": "v1.2.0", + "version": "v1.2.1", "source": { "type": "git", "url": "https://github.com/brozot/Laravel-FCM.git", - "reference": "aa85deca61a8ad58631def7793607fb544afc199" + "reference": "112152af74d32304e74b96bd1afc7cbd99e2bc5c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brozot/Laravel-FCM/zipball/aa85deca61a8ad58631def7793607fb544afc199", - "reference": "aa85deca61a8ad58631def7793607fb544afc199", + "url": "https://api.github.com/repos/brozot/Laravel-FCM/zipball/112152af74d32304e74b96bd1afc7cbd99e2bc5c", + "reference": "112152af74d32304e74b96bd1afc7cbd99e2bc5c", "shasum": "" }, "require": { @@ -194,7 +194,7 @@ "notification", "push" ], - "time": "2016-07-31 10:19:58" + "time": "2016-08-08 19:43:05" }, { "name": "bugsnag/bugsnag", @@ -486,16 +486,16 @@ }, { "name": "davejamesmiller/laravel-breadcrumbs", - "version": "3.0.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/davejamesmiller/laravel-breadcrumbs.git", - "reference": "5a5d5d1b1f5780359604f7fde11bbf810ff3e9e4" + "reference": "460bf79e83ff9e3db1e3f1c40169d8893893f8ff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/davejamesmiller/laravel-breadcrumbs/zipball/5a5d5d1b1f5780359604f7fde11bbf810ff3e9e4", - "reference": "5a5d5d1b1f5780359604f7fde11bbf810ff3e9e4", + "url": "https://api.github.com/repos/davejamesmiller/laravel-breadcrumbs/zipball/460bf79e83ff9e3db1e3f1c40169d8893893f8ff", + "reference": "460bf79e83ff9e3db1e3f1c40169d8893893f8ff", "shasum": "" }, "require": { @@ -505,7 +505,7 @@ }, "require-dev": { "mockery/mockery": "0.9.*", - "orchestra/testbench": "3.0.*", + "orchestra/testbench": "3.2.*|3.3.*", "phpunit/phpunit": "4.*", "satooshi/php-coveralls": "0.6.*" }, @@ -527,11 +527,11 @@ } ], "description": "A simple Laravel-style way to create breadcrumbs in Laravel 4+.", - "homepage": "https://github.com/davejamesmiller/laravel-breadcrumbs", + "homepage": "http://laravel-breadcrumbs.davejamesmiller.com", "keywords": [ "laravel" ], - "time": "2015-02-08 21:44:39" + "time": "2016-08-28 16:57:03" }, { "name": "davibennun/laravel-push-notification", @@ -774,86 +774,33 @@ ], "time": "2015-06-29 05:42:04" }, - { - "name": "geoip2/geoip2", - "version": "v2.4.1", - "source": { - "type": "git", - "url": "https://github.com/maxmind/GeoIP2-php.git", - "reference": "241e4442e0469d70043805ef699290616d53ce41" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/241e4442e0469d70043805ef699290616d53ce41", - "reference": "241e4442e0469d70043805ef699290616d53ce41", - "shasum": "" - }, - "require": { - "maxmind-db/reader": "~1.0", - "maxmind/web-service-common": "~0.2", - "php": ">=5.3.1" - }, - "require-dev": { - "phpunit/phpunit": "4.2.*", - "squizlabs/php_codesniffer": "2.*" - }, - "type": "library", - "autoload": { - "psr-4": { - "GeoIp2\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Gregory J. Oschwald", - "email": "goschwald@maxmind.com", - "homepage": "http://www.maxmind.com/" - } - ], - "description": "MaxMind GeoIP2 PHP API", - "homepage": "https://github.com/maxmind/GeoIP2-php", - "keywords": [ - "IP", - "geoip", - "geoip2", - "geolocation", - "maxmind" - ], - "time": "2016-06-10 22:32:01" - }, { "name": "giggsey/libphonenumber-for-php", - "version": "7.4.5", + "version": "7.7.3", "source": { "type": "git", "url": "https://github.com/giggsey/libphonenumber-for-php.git", - "reference": "a138adeb07233059c2a8d3caea7b6a6bcbee6765" + "reference": "e55e956a7a8211af3dfbd9dd5372ccc5eb79e495" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/a138adeb07233059c2a8d3caea7b6a6bcbee6765", - "reference": "a138adeb07233059c2a8d3caea7b6a6bcbee6765", + "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/e55e956a7a8211af3dfbd9dd5372ccc5eb79e495", + "reference": "e55e956a7a8211af3dfbd9dd5372ccc5eb79e495", "shasum": "" }, "require": { "ext-mbstring": "*", - "php": ">=5.3" + "giggsey/locale": "^1.0", + "php": ">=5.3.2" }, "require-dev": { "pear/pear-core-minimal": "^1.9", "pear/pear_exception": "^1.0", "pear/versioncontrol_git": "dev-master", - "phing/phing": "~2.7", - "phpunit/phpunit": "~4.0", - "satooshi/php-coveralls": "~0.6", - "symfony/console": "^2.5" - }, - "suggest": { - "ext-intl": "To use the geocoder and carrier mapping" + "phing/phing": "^2.7", + "phpunit/phpunit": "^4.8|^5.0", + "satooshi/php-coveralls": "^1.0", + "symfony/console": "^2.8|^3.0" }, "type": "library", "extra": { @@ -887,7 +834,56 @@ "phonenumber", "validation" ], - "time": "2016-07-14 10:56:47" + "time": "2016-10-26 13:35:16" + }, + { + "name": "giggsey/locale", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/giggsey/Locale.git", + "reference": "8238764fa3f2c5bd8bdf981e2e019401d49229e3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/giggsey/Locale/zipball/8238764fa3f2c5bd8bdf981e2e019401d49229e3", + "reference": "8238764fa3f2c5bd8bdf981e2e019401d49229e3", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "require-dev": { + "pear/pear-core-minimal": "^1.9", + "pear/pear_exception": "^1.0", + "pear/versioncontrol_git": "dev-master", + "phing/phing": "~2.7", + "phpunit/phpunit": "^4.8|^5.0", + "satooshi/php-coveralls": "^1.0", + "symfony/console": "^2.8|^3.0", + "symfony/filesystem": "^2.8|^3.0", + "symfony/finder": "^2.8|^3.0", + "symfony/process": "^2.8|^3.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Giggsey\\Locale\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Joshua Gigg", + "email": "giggsey@gmail.com", + "homepage": "http://giggsey.com/" + } + ], + "description": "Locale functions required by libphonenumber-for-php", + "time": "2016-10-24 20:49:55" }, { "name": "guzzle/guzzle", @@ -984,16 +980,16 @@ }, { "name": "guzzlehttp/guzzle", - "version": "6.2.1", + "version": "6.2.2", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "3f808fba627f2c5b69e2501217bf31af349c1427" + "reference": "ebf29dee597f02f09f4d5bbecc68230ea9b08f60" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/3f808fba627f2c5b69e2501217bf31af349c1427", - "reference": "3f808fba627f2c5b69e2501217bf31af349c1427", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/ebf29dee597f02f09f4d5bbecc68230ea9b08f60", + "reference": "ebf29dee597f02f09f4d5bbecc68230ea9b08f60", "shasum": "" }, "require": { @@ -1042,7 +1038,7 @@ "rest", "web service" ], - "time": "2016-07-15 17:22:37" + "time": "2016-10-08 15:01:37" }, { "name": "guzzlehttp/promises", @@ -1202,16 +1198,16 @@ }, { "name": "intervention/image", - "version": "2.3.7", + "version": "2.3.8", "source": { "type": "git", "url": "https://github.com/Intervention/image.git", - "reference": "22088b04728a039bd1fc32f7e79a89a118b78698" + "reference": "4064a980324f6c3bfa2bd981dfb247afa705ec3c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Intervention/image/zipball/22088b04728a039bd1fc32f7e79a89a118b78698", - "reference": "22088b04728a039bd1fc32f7e79a89a118b78698", + "url": "https://api.github.com/repos/Intervention/image/zipball/4064a980324f6c3bfa2bd981dfb247afa705ec3c", + "reference": "4064a980324f6c3bfa2bd981dfb247afa705ec3c", "shasum": "" }, "require": { @@ -1260,7 +1256,7 @@ "thumbnail", "watermark" ], - "time": "2016-04-26 14:08:40" + "time": "2016-09-01 17:04:03" }, { "name": "jakub-onderka/php-console-color", @@ -1442,16 +1438,16 @@ }, { "name": "laravel/framework", - "version": "5.2.41", + "version": "v5.2.45", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "29ba2e310cfeb42ab6545bcd81ff4c2ec1f6b5c2" + "reference": "2a79f920d5584ec6df7cf996d922a742d11095d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/29ba2e310cfeb42ab6545bcd81ff4c2ec1f6b5c2", - "reference": "29ba2e310cfeb42ab6545bcd81ff4c2ec1f6b5c2", + "url": "https://api.github.com/repos/laravel/framework/zipball/2a79f920d5584ec6df7cf996d922a742d11095d1", + "reference": "2a79f920d5584ec6df7cf996d922a742d11095d1", "shasum": "" }, "require": { @@ -1532,7 +1528,7 @@ "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~2.0).", "symfony/css-selector": "Required to use some of the crawler integration testing tools (2.8.*|3.0.*).", "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (2.8.*|3.0.*).", - "symfony/psr-http-message-bridge": "Required to psr7 bridging features (0.2.*)." + "symfony/psr-http-message-bridge": "Required to use psr7 bridging features (0.2.*)." }, "type": "library", "extra": { @@ -1568,20 +1564,20 @@ "framework", "laravel" ], - "time": "2016-07-20 13:13:06" + "time": "2016-08-26 11:44:52" }, { "name": "laravel/socialite", - "version": "v2.0.18", + "version": "v2.0.20", "source": { "type": "git", "url": "https://github.com/laravel/socialite.git", - "reference": "76ee5397fcdea5a062361392abca4eb397e519a3" + "reference": "aca8de9a93a28a119714e289c8bc599bd81aa88d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/socialite/zipball/76ee5397fcdea5a062361392abca4eb397e519a3", - "reference": "76ee5397fcdea5a062361392abca4eb397e519a3", + "url": "https://api.github.com/repos/laravel/socialite/zipball/aca8de9a93a28a119714e289c8bc599bd81aa88d", + "reference": "aca8de9a93a28a119714e289c8bc599bd81aa88d", "shasum": "" }, "require": { @@ -1622,7 +1618,7 @@ "laravel", "oauth" ], - "time": "2016-06-22 12:40:16" + "time": "2016-11-01 18:49:10" }, { "name": "laravelcollective/bus", @@ -1671,20 +1667,20 @@ }, { "name": "league/flysystem", - "version": "1.0.26", + "version": "1.0.32", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "fb3b30dca320b36931ea878fea17ebe136fba1b0" + "reference": "1b5c4a0031697f46e779a9d1b309c2e1b24daeab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/fb3b30dca320b36931ea878fea17ebe136fba1b0", - "reference": "fb3b30dca320b36931ea878fea17ebe136fba1b0", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/1b5c4a0031697f46e779a9d1b309c2e1b24daeab", + "reference": "1b5c4a0031697f46e779a9d1b309c2e1b24daeab", "shasum": "" }, "require": { - "php": ">=5.4.0" + "php": ">=5.5.9" }, "conflict": { "league/flysystem-sftp": "<1.0.6" @@ -1750,30 +1746,30 @@ "sftp", "storage" ], - "time": "2016-08-03 09:49:11" + "time": "2016-10-19 20:38:46" }, { "name": "league/oauth1-client", - "version": "1.6.1", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth1-client.git", - "reference": "cef3ceda13c78f89c323e4d5e6301c0eb7cea422" + "reference": "fca5f160650cb74d23fc11aa570dd61f86dcf647" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/cef3ceda13c78f89c323e4d5e6301c0eb7cea422", - "reference": "cef3ceda13c78f89c323e4d5e6301c0eb7cea422", + "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/fca5f160650cb74d23fc11aa570dd61f86dcf647", + "reference": "fca5f160650cb74d23fc11aa570dd61f86dcf647", "shasum": "" }, "require": { - "guzzle/guzzle": "3.*", - "php": ">=5.3.0" + "guzzlehttp/guzzle": "^6.0", + "php": ">=5.5.0" }, "require-dev": { - "mockery/mockery": "~0.9", - "phpunit/phpunit": "~4.0", - "squizlabs/php_codesniffer": "~2.0" + "mockery/mockery": "^0.9", + "phpunit/phpunit": "^4.0", + "squizlabs/php_codesniffer": "^2.0" }, "type": "library", "extra": { @@ -1813,27 +1809,27 @@ "tumblr", "twitter" ], - "time": "2015-10-23 04:02:07" + "time": "2016-08-17 00:36:58" }, { "name": "maatwebsite/excel", - "version": "v2.1.3", + "version": "2.1.6", "source": { "type": "git", "url": "https://github.com/Maatwebsite/Laravel-Excel.git", - "reference": "c6ab521e8a5f2a4acc83cb575c4a09733a5e17c9" + "reference": "700eba02f76f2971c81726a4f6a04121c1977e64" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/c6ab521e8a5f2a4acc83cb575c4a09733a5e17c9", - "reference": "c6ab521e8a5f2a4acc83cb575c4a09733a5e17c9", + "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/700eba02f76f2971c81726a4f6a04121c1977e64", + "reference": "700eba02f76f2971c81726a4f6a04121c1977e64", "shasum": "" }, "require": { - "illuminate/cache": "5.0.*|5.1.*|5.2.*", - "illuminate/config": "5.0.*|5.1.*|5.2.*", - "illuminate/filesystem": "5.0.*|5.1.*|5.2.*", - "illuminate/support": "5.0.*|5.1.*|5.2.*", + "illuminate/cache": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/config": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/filesystem": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*", "nesbot/carbon": "~1.0", "php": ">=5.5", "phpoffice/phpexcel": "1.8.*", @@ -1846,10 +1842,10 @@ "phpunit/phpunit": "~4.0" }, "suggest": { - "illuminate/http": "5.0.*|5.1.*|5.2.*", - "illuminate/queue": "5.0.*|5.1.*|5.2.*", - "illuminate/routing": "5.0.*|5.1.*|5.2.*", - "illuminate/view": "5.0.*|5.1.*|5.2.*" + "illuminate/http": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/queue": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/routing": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/view": "5.0.*|5.1.*|5.2.*|5.3.*" }, "type": "library", "autoload": { @@ -1880,20 +1876,20 @@ "import", "laravel" ], - "time": "2016-07-09 09:40:10" + "time": "2016-09-15 21:03:21" }, { "name": "maximebf/debugbar", - "version": "v1.11.1", + "version": "v1.13.0", "source": { "type": "git", "url": "https://github.com/maximebf/php-debugbar.git", - "reference": "d9302891c1f0a0ac5a4f66725163a00537c6359f" + "reference": "5f49a5ed6cfde81d31d89378806670d77462526e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/d9302891c1f0a0ac5a4f66725163a00537c6359f", - "reference": "d9302891c1f0a0ac5a4f66725163a00537c6359f", + "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/5f49a5ed6cfde81d31d89378806670d77462526e", + "reference": "5f49a5ed6cfde81d31d89378806670d77462526e", "shasum": "" }, "require": { @@ -1912,7 +1908,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.11-dev" + "dev-master": "1.13-dev" } }, "autoload": { @@ -1941,100 +1937,7 @@ "debug", "debugbar" ], - "time": "2016-01-22 12:22:23" - }, - { - "name": "maxmind-db/reader", - "version": "v1.1.0", - "source": { - "type": "git", - "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git", - "reference": "1383655533aa2f13a990b27b075fdde8b7bdd5ff" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/1383655533aa2f13a990b27b075fdde8b7bdd5ff", - "reference": "1383655533aa2f13a990b27b075fdde8b7bdd5ff", - "shasum": "" - }, - "require": { - "php": ">=5.3.1" - }, - "require-dev": { - "phpunit/phpunit": "4.2.*", - "satooshi/php-coveralls": "dev-master", - "squizlabs/php_codesniffer": "2.*" - }, - "type": "library", - "autoload": { - "psr-0": { - "MaxMind": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Gregory J. Oschwald", - "email": "goschwald@maxmind.com", - "homepage": "http://www.maxmind.com/" - } - ], - "description": "MaxMind DB Reader API", - "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php", - "keywords": [ - "database", - "geoip", - "geoip2", - "geolocation", - "maxmind" - ], - "time": "2016-01-04 15:38:11" - }, - { - "name": "maxmind/web-service-common", - "version": "v0.2.1", - "source": { - "type": "git", - "url": "https://github.com/maxmind/web-service-common-php.git", - "reference": "436bebacf4e74651b383435822c472f3e0f2a28a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/436bebacf4e74651b383435822c472f3e0f2a28a", - "reference": "436bebacf4e74651b383435822c472f3e0f2a28a", - "shasum": "" - }, - "require": { - "ext-curl": "*", - "ext-json": "*", - "php": ">=5.3" - }, - "require-dev": { - "phpunit/phpunit": "4.*", - "squizlabs/php_codesniffer": "2.*" - }, - "type": "library", - "autoload": { - "psr-4": { - "MaxMind\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Gregory Oschwald", - "email": "goschwald@maxmind.com" - } - ], - "description": "Internal MaxMind Web Service API", - "homepage": "https://github.com/maxmind/mm-web-service-api-php", - "time": "2016-06-13 19:55:20" + "time": "2016-09-15 14:01:59" }, { "name": "monolog/monolog", @@ -2435,16 +2338,16 @@ }, { "name": "nikic/php-parser", - "version": "v2.1.0", + "version": "v2.1.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "47b254ea51f1d6d5dc04b9b299e88346bf2369e3" + "reference": "4dd659edadffdc2143e4753df655d866dbfeedf0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/47b254ea51f1d6d5dc04b9b299e88346bf2369e3", - "reference": "47b254ea51f1d6d5dc04b9b299e88346bf2369e3", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4dd659edadffdc2143e4753df655d866dbfeedf0", + "reference": "4dd659edadffdc2143e4753df655d866dbfeedf0", "shasum": "" }, "require": { @@ -2482,7 +2385,7 @@ "parser", "php" ], - "time": "2016-04-19 13:41:41" + "time": "2016-09-16 12:04:44" }, { "name": "paragonie/random_compat", @@ -2568,16 +2471,16 @@ }, { "name": "php-imap/php-imap", - "version": "2.0.7", + "version": "2.0.8", "source": { "type": "git", "url": "https://github.com/barbushin/php-imap.git", - "reference": "6378f19249047d56469056ecec0f55c26be44aa0" + "reference": "949826c9b109113ec93a5214e85afce31cba000c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barbushin/php-imap/zipball/6378f19249047d56469056ecec0f55c26be44aa0", - "reference": "6378f19249047d56469056ecec0f55c26be44aa0", + "url": "https://api.github.com/repos/barbushin/php-imap/zipball/949826c9b109113ec93a5214e85afce31cba000c", + "reference": "949826c9b109113ec93a5214e85afce31cba000c", "shasum": "" }, "require": { @@ -2608,7 +2511,7 @@ "mail", "php" ], - "time": "2016-07-18 08:05:59" + "time": "2016-08-13 15:39:00" }, { "name": "phpmailer/phpmailer", @@ -2877,27 +2780,28 @@ }, { "name": "propaganistas/laravel-phone", - "version": "2.7.4", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/Propaganistas/Laravel-Phone.git", - "reference": "5fe3af2794433fa721c6bfdc0fffc7faebc56754" + "reference": "7741a06965bd93b0a247fd596119674a1940d571" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Propaganistas/Laravel-Phone/zipball/5fe3af2794433fa721c6bfdc0fffc7faebc56754", - "reference": "5fe3af2794433fa721c6bfdc0fffc7faebc56754", + "url": "https://api.github.com/repos/Propaganistas/Laravel-Phone/zipball/7741a06965bd93b0a247fd596119674a1940d571", + "reference": "7741a06965bd93b0a247fd596119674a1940d571", "shasum": "" }, "require": { - "giggsey/libphonenumber-for-php": "~7.0", - "illuminate/support": "~4.0|~5.0", - "illuminate/validation": "~4.0|~5.0", - "julien-c/iso3166": "~2.0", + "giggsey/libphonenumber-for-php": "^7.0", + "illuminate/support": "^4.0|^5.0", + "illuminate/validation": "^4.0|^5.0", + "julien-c/iso3166": "^2.0", "php": ">=5.4.0" }, "require-dev": { - "orchestra/testbench": "^3.1" + "orchestra/testbench": "^2.0|^3.0", + "phpunit/phpunit": "^4.0|^5.0" }, "suggest": { "monarobase/country-list": "Adds a compatible (and fully translated) country list API." @@ -2921,27 +2825,28 @@ "email": "Propaganistas@users.noreply.github.com" } ], - "description": "Adds a phone validator to Laravel based on Google's libphonenumber API.", + "description": "Adds a phone validator to Laravel and Lumen based on Google's libphonenumber API.", "keywords": [ "laravel", "libphonenumber", + "lumen", "phone", "validation" ], - "time": "2016-05-20 10:27:25" + "time": "2016-10-01 10:04:04" }, { "name": "psr/http-message", - "version": "1.0", + "version": "1.0.1", "source": { "type": "git", "url": "https://github.com/php-fig/http-message.git", - "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298" + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/85d63699f0dbedb190bbd4b0d2b9dc707ea4c298", - "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", "shasum": "" }, "require": { @@ -2969,6 +2874,7 @@ } ], "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", "keywords": [ "http", "http-message", @@ -2977,26 +2883,34 @@ "request", "response" ], - "time": "2015-05-04 20:22:00" + "time": "2016-08-06 14:39:51" }, { "name": "psr/log", - "version": "1.0.0", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b" + "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b", - "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b", + "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", + "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", "shasum": "" }, + "require": { + "php": ">=5.3.0" + }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, "autoload": { - "psr-0": { - "Psr\\Log\\": "" + "psr-4": { + "Psr\\Log\\": "Psr/Log/" } }, "notification-url": "https://packagist.org/downloads/", @@ -3010,12 +2924,13 @@ } ], "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", "keywords": [ "log", "psr", "psr-3" ], - "time": "2012-12-21 11:40:51" + "time": "2016-10-10 12:19:37" }, { "name": "psy/psysh", @@ -3091,35 +3006,37 @@ }, { "name": "sly/notification-pusher", - "version": "v2.2.2", + "version": "v2.2.13", "source": { "type": "git", "url": "https://github.com/Ph3nol/NotificationPusher.git", - "reference": "6112841c4b679bc4f6cf01f6cf655e24794bc670" + "reference": "3542d8bc8cf622568b85392e83141bfdeee7e6ff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Ph3nol/NotificationPusher/zipball/6112841c4b679bc4f6cf01f6cf655e24794bc670", - "reference": "6112841c4b679bc4f6cf01f6cf655e24794bc670", + "url": "https://api.github.com/repos/Ph3nol/NotificationPusher/zipball/3542d8bc8cf622568b85392e83141bfdeee7e6ff", + "reference": "3542d8bc8cf622568b85392e83141bfdeee7e6ff", "shasum": "" }, "require": { - "php": ">=5.3.2", - "symfony/console": ">=2.3", - "symfony/options-resolver": ">=2.3", - "symfony/process": ">=2.3", - "zendframework/zendservice-apple-apns": "1.*", + "doctrine/inflector": "~1.0", + "php": ">=5.5", + "symfony/console": "~2.3|~3.0", + "symfony/options-resolver": "~2.3|~3.0", + "symfony/process": "~2.3|~3.0", + "zendframework/zendservice-apple-apns": "^1.1.0", "zendframework/zendservice-google-gcm": "1.*" }, "require-dev": { "atoum/atoum": "dev-master" }, + "bin": [ + "np" + ], "type": "standalone", "autoload": { "psr-0": { - "Sly": [ - "src/" - ] + "Sly": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -3149,7 +3066,7 @@ "push", "pusher" ], - "time": "2013-12-08 20:35:03" + "time": "2016-10-10 07:02:47" }, { "name": "swiftmailer/swiftmailer", @@ -3266,16 +3183,16 @@ }, { "name": "symfony/css-selector", - "version": "v3.1.3", + "version": "v3.1.6", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "2851e1932d77ce727776154d659b232d061e816a" + "reference": "ca809c64072e0fe61c1c7fb3c76cdc32265042ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/2851e1932d77ce727776154d659b232d061e816a", - "reference": "2851e1932d77ce727776154d659b232d061e816a", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/ca809c64072e0fe61c1c7fb3c76cdc32265042ac", + "reference": "ca809c64072e0fe61c1c7fb3c76cdc32265042ac", "shasum": "" }, "require": { @@ -3315,7 +3232,7 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2016-06-29 05:41:56" + "time": "2016-09-06 11:02:40" }, { "name": "symfony/debug", @@ -3376,16 +3293,16 @@ }, { "name": "symfony/event-dispatcher", - "version": "v3.1.3", + "version": "v3.1.6", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5" + "reference": "28b0832b2553ffb80cabef6a7a812ff1e670c0bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c0c00c80b3a69132c4e55c3e7db32b4a387615e5", - "reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/28b0832b2553ffb80cabef6a7a812ff1e670c0bc", + "reference": "28b0832b2553ffb80cabef6a7a812ff1e670c0bc", "shasum": "" }, "require": { @@ -3432,7 +3349,7 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2016-07-19 10:45:57" + "time": "2016-10-13 06:28:43" }, { "name": "symfony/finder", @@ -3620,7 +3537,7 @@ }, { "name": "symfony/options-resolver", - "version": "v3.1.3", + "version": "v3.1.6", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", @@ -4090,6 +4007,55 @@ ], "time": "2016-07-26 08:03:56" }, + { + "name": "tedivm/fetch", + "version": "v0.6.1", + "source": { + "type": "git", + "url": "https://github.com/tedious/Fetch.git", + "reference": "154a84fdfa0d045c2871dd9f8708362fb9ea4acf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tedious/Fetch/zipball/154a84fdfa0d045c2871dd9f8708362fb9ea4acf", + "reference": "154a84fdfa0d045c2871dd9f8708362fb9ea4acf", + "shasum": "" + }, + "require": { + "ext-imap": "*", + "php": ">=5.3.0" + }, + "require-dev": { + "fabpot/php-cs-fixer": "0.5.*", + "phpunit/phpunit": "4.2.*", + "satooshi/php-coveralls": "dev-master", + "tedivm/dovecottesting": "1.2.3" + }, + "type": "library", + "autoload": { + "psr-0": { + "Fetch": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Robert Hafner", + "email": "tedivm@tedivm.com" + } + ], + "description": "A PHP IMAP Library", + "homepage": "http://github.com/tedious/Fetch", + "keywords": [ + "email", + "imap", + "pop3" + ], + "time": "2015-01-08 03:22:20" + }, { "name": "thomaswelton/gravatarlib", "version": "0.1.0", @@ -4249,40 +4215,44 @@ }, { "name": "torann/geoip", - "version": "dev-master", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/Torann/laravel-geoip.git", - "reference": "f16f839160b1ab1fe41382e18ec9a32dd09b10fd" + "reference": "ae77f4ad99926fa35c89378f00a6a7295a7246ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Torann/laravel-geoip/zipball/f16f839160b1ab1fe41382e18ec9a32dd09b10fd", - "reference": "f16f839160b1ab1fe41382e18ec9a32dd09b10fd", + "url": "https://api.github.com/repos/Torann/laravel-geoip/zipball/ae77f4ad99926fa35c89378f00a6a7295a7246ea", + "reference": "ae77f4ad99926fa35c89378f00a6a7295a7246ea", "shasum": "" }, "require": { - "geoip2/geoip2": "~2.1", - "illuminate/config": "~5.0", "illuminate/console": "~5.0", - "illuminate/session": "~5.0", "illuminate/support": "~5.0", - "monolog/monolog": "~1.11", - "php": ">=5.3.0" + "php": ">=5.5.9" }, "require-dev": { - "phpspec/phpspec": "~2.1", - "phpunit/phpunit": "~4.0" + "geoip2/geoip2": "~2.1", + "mockery/mockery": "^0.9.4", + "phpunit/phpunit": "^4.8" + }, + "suggest": { + "geoip2/geoip2": "Required to use the MaxMind database or web service with GeoIP (~2.1).", + "monolog/monolog": "Allows for storing location not found errors to the log" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "0.2-dev" + "dev-master": "1.0-dev" } }, "autoload": { + "files": [ + "src/helpers.php" + ], "psr-4": { - "Torann\\GeoIP\\": "src/Torann/GeoIP" + "Torann\\GeoIP\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -4292,18 +4262,21 @@ "authors": [ { "name": "Daniel Stainback", - "email": "daniel@lyften.com" + "email": "torann@gmail.com" } ], - "description": "Supports the two main GeoIP services (infoDB and Maxmind).", + "description": "Support for multiple GeoIP services.", "keywords": [ + "IP API", "geoip", "geolocation", + "infoDB", "laravel", "laravel 5", - "location" + "location", + "maxmind" ], - "time": "2015-06-30 16:13:35" + "time": "2016-10-17 17:29:40" }, { "name": "tymon/jwt-auth", @@ -4369,17 +4342,71 @@ "time": "2016-02-18 09:22:36" }, { - "name": "unisharp/laravel-filemanager", - "version": "1.6.0", + "name": "unisharp/laravel-ckeditor", + "version": "4.5.7", "source": { "type": "git", - "url": "https://github.com/UniSharp/laravel-filemanager.git", - "reference": "8ffe49ae2b0b371c40563c37c0356ec484ff2ee9" + "url": "https://github.com/UniSharp/laravel-ckeditor.git", + "reference": "cc9a5505dc3c3a060944aa8b5ce13515547263ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/UniSharp/laravel-filemanager/zipball/8ffe49ae2b0b371c40563c37c0356ec484ff2ee9", - "reference": "8ffe49ae2b0b371c40563c37c0356ec484ff2ee9", + "url": "https://api.github.com/repos/UniSharp/laravel-ckeditor/zipball/cc9a5505dc3c3a060944aa8b5ce13515547263ec", + "reference": "cc9a5505dc3c3a060944aa8b5ce13515547263ec", + "shasum": "" + }, + "require": { + "illuminate/support": "~5.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Unisharp\\Ckeditor\\": "./" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0+", + "LGPL-2.1+", + "MPL-1.1+" + ], + "authors": [ + { + "name": "CKSource", + "homepage": "http://cksource.com" + }, + { + "name": "UniSharp Ltd. (Composer Package Maintainer)", + "homepage": "http://www.unisharp.com" + } + ], + "description": "JavaScript WYSIWYG web text editor (for laravel).", + "homepage": "http://ckeditor.com", + "keywords": [ + "CKEditor", + "editor", + "fckeditor", + "html", + "javascript", + "laravel", + "richtext", + "text", + "wysiwyg" + ], + "time": "2016-02-16 05:56:20" + }, + { + "name": "unisharp/laravel-filemanager", + "version": "1.6.1", + "source": { + "type": "git", + "url": "https://github.com/UniSharp/laravel-filemanager.git", + "reference": "ce305e54ca144a0d6fcfa5715dce56771b20ff58" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/UniSharp/laravel-filemanager/zipball/ce305e54ca144a0d6fcfa5715dce56771b20ff58", + "reference": "ce305e54ca144a0d6fcfa5715dce56771b20ff58", "shasum": "" }, "require": { @@ -4422,20 +4449,20 @@ "tinymce", "upload" ], - "time": "2016-08-03 12:18:58" + "time": "2016-09-12 02:53:19" }, { "name": "vlucas/phpdotenv", - "version": "v2.3.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "9ca5644c536654e9509b9d257f53c58630eb2a6a" + "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/9ca5644c536654e9509b9d257f53c58630eb2a6a", - "reference": "9ca5644c536654e9509b9d257f53c58630eb2a6a", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c", + "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c", "shasum": "" }, "require": { @@ -4447,7 +4474,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.3-dev" + "dev-master": "2.4-dev" } }, "autoload": { @@ -4472,7 +4499,7 @@ "env", "environment" ], - "time": "2016-06-14 14:14:52" + "time": "2016-09-01 10:05:43" }, { "name": "vsmoraes/laravel-pdf", @@ -4565,16 +4592,16 @@ }, { "name": "zendframework/zend-http", - "version": "2.5.4", + "version": "2.5.5", "source": { "type": "git", "url": "https://github.com/zendframework/zend-http.git", - "reference": "7b920b4ec34b5ee58f76eb4e8c408b083121953c" + "reference": "98b1cac0bc7a91497c5898184281abcd0e24c8d6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/zend-http/zipball/7b920b4ec34b5ee58f76eb4e8c408b083121953c", - "reference": "7b920b4ec34b5ee58f76eb4e8c408b083121953c", + "url": "https://api.github.com/repos/zendframework/zend-http/zipball/98b1cac0bc7a91497c5898184281abcd0e24c8d6", + "reference": "98b1cac0bc7a91497c5898184281abcd0e24c8d6", "shasum": "" }, "require": { @@ -4611,7 +4638,7 @@ "http", "zf2" ], - "time": "2016-02-04 20:36:48" + "time": "2016-08-08 15:01:54" }, { "name": "zendframework/zend-json", @@ -4714,31 +4741,31 @@ }, { "name": "zendframework/zend-stdlib", - "version": "3.0.1", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/zendframework/zend-stdlib.git", - "reference": "8bafa58574204bdff03c275d1d618aaa601588ae" + "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/8bafa58574204bdff03c275d1d618aaa601588ae", - "reference": "8bafa58574204bdff03c275d1d618aaa601588ae", + "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/debedcfc373a293f9250cc9aa03cf121428c8e78", + "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78", "shasum": "" }, "require": { - "php": "^5.5 || ^7.0" + "php": "^5.6 || ^7.0" }, "require-dev": { "athletic/athletic": "~0.1", - "fabpot/php-cs-fixer": "1.7.*", - "phpunit/phpunit": "~4.0" + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "^2.6.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev", - "dev-develop": "3.1-dev" + "dev-master": "3.1-dev", + "dev-develop": "3.2-dev" } }, "autoload": { @@ -4755,7 +4782,7 @@ "stdlib", "zf2" ], - "time": "2016-04-12 21:19:36" + "time": "2016-09-13 14:38:50" }, { "name": "zendframework/zend-uri", @@ -5074,16 +5101,16 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "3.1.0", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "9270140b940ff02e58ec577c237274e92cd40cdd" + "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9270140b940ff02e58ec577c237274e92cd40cdd", - "reference": "9270140b940ff02e58ec577c237274e92cd40cdd", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/8331b5efe816ae05461b7ca1e721c01b46bafb3e", + "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e", "shasum": "" }, "require": { @@ -5115,7 +5142,7 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2016-06-10 09:48:41" + "time": "2016-09-30 07:12:33" }, { "name": "phpdocumentor/type-resolver", @@ -5200,16 +5227,16 @@ }, { "name": "phpspec/phpspec", - "version": "2.5.1", + "version": "2.5.3", "source": { "type": "git", "url": "https://github.com/phpspec/phpspec.git", - "reference": "531d00ee76e9ae98279ed4dbb2419e5e0f7fb82d" + "reference": "153ebd99d9b842e0c99a024c41f970d79db46475" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/phpspec/zipball/531d00ee76e9ae98279ed4dbb2419e5e0f7fb82d", - "reference": "531d00ee76e9ae98279ed4dbb2419e5e0f7fb82d", + "url": "https://api.github.com/repos/phpspec/phpspec/zipball/153ebd99d9b842e0c99a024c41f970d79db46475", + "reference": "153ebd99d9b842e0c99a024c41f970d79db46475", "shasum": "" }, "require": { @@ -5274,7 +5301,7 @@ "testing", "tests" ], - "time": "2016-07-16 08:34:07" + "time": "2016-09-26 20:28:11" }, { "name": "phpspec/prophecy", @@ -5827,23 +5854,23 @@ }, { "name": "sebastian/environment", - "version": "1.3.7", + "version": "1.3.8", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "4e8f0da10ac5802913afc151413bc8c53b6c2716" + "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/4e8f0da10ac5802913afc151413bc8c53b6c2716", - "reference": "4e8f0da10ac5802913afc151413bc8c53b6c2716", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea", + "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": "^5.3.3 || ^7.0" }, "require-dev": { - "phpunit/phpunit": "~4.4" + "phpunit/phpunit": "^4.8 || ^5.0" }, "type": "library", "extra": { @@ -5873,7 +5900,7 @@ "environment", "hhvm" ], - "time": "2016-05-17 03:18:57" + "time": "2016-08-18 05:49:44" }, { "name": "sebastian/exporter", @@ -6083,16 +6110,16 @@ }, { "name": "symfony/dom-crawler", - "version": "v3.1.3", + "version": "v3.1.6", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "c7b9b8db3a6f2bac76dcd9a9db5446f2591897f9" + "reference": "59eee3c76eb89f21857798620ebdad7a05ad14f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/c7b9b8db3a6f2bac76dcd9a9db5446f2591897f9", - "reference": "c7b9b8db3a6f2bac76dcd9a9db5446f2591897f9", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/59eee3c76eb89f21857798620ebdad7a05ad14f4", + "reference": "59eee3c76eb89f21857798620ebdad7a05ad14f4", "shasum": "" }, "require": { @@ -6135,20 +6162,20 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2016-07-26 08:04:17" + "time": "2016-10-18 15:46:07" }, { "name": "symfony/yaml", - "version": "v3.1.3", + "version": "v3.1.6", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "1819adf2066880c7967df7180f4f662b6f0567ac" + "reference": "7ff51b06c6c3d5cc6686df69004a42c69df09e27" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/1819adf2066880c7967df7180f4f662b6f0567ac", - "reference": "1819adf2066880c7967df7180f4f662b6f0567ac", + "url": "https://api.github.com/repos/symfony/yaml/zipball/7ff51b06c6c3d5cc6686df69004a42c69df09e27", + "reference": "7ff51b06c6c3d5cc6686df69004a42c69df09e27", "shasum": "" }, "require": { @@ -6184,32 +6211,33 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2016-07-17 14:02:08" + "time": "2016-10-24 18:41:13" }, { "name": "webmozart/assert", - "version": "1.0.2", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "30eed06dd6bc88410a4ff7f77b6d22f3ce13dbde" + "reference": "bb2d123231c095735130cc8f6d31385a44c7b308" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/30eed06dd6bc88410a4ff7f77b6d22f3ce13dbde", - "reference": "30eed06dd6bc88410a4ff7f77b6d22f3ce13dbde", + "url": "https://api.github.com/repos/webmozart/assert/zipball/bb2d123231c095735130cc8f6d31385a44c7b308", + "reference": "bb2d123231c095735130cc8f6d31385a44c7b308", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": "^5.3.3|^7.0" }, "require-dev": { - "phpunit/phpunit": "^4.6" + "phpunit/phpunit": "^4.6", + "sebastian/version": "^1.0.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "1.2-dev" } }, "autoload": { @@ -6233,7 +6261,7 @@ "check", "validate" ], - "time": "2015-08-24 13:29:44" + "time": "2016-08-09 15:02:57" } ], "aliases": [], @@ -6241,7 +6269,6 @@ "stability-flags": { "neitanod/forceutf8": 20, "chumper/datatable": 20, - "torann/geoip": 20, "davibennun/laravel-push-notification": 20 }, "prefer-stable": false, diff --git a/config/app.php b/config/app.php index 39bf3cb04..4e7802cdc 100644 --- a/config/app.php +++ b/config/app.php @@ -245,7 +245,7 @@ return [ 'JWTAuth' => 'Tymon\JWTAuth\Facades\JWTAuth', 'JWTFactory' => 'Tymon\JWTAuth\Facades\JWTFactory', 'Breadcrumbs' => 'DaveJamesMiller\Breadcrumbs\Facade', - 'GeoIP' => 'Torann\GeoIP\GeoIPFacade', + 'GeoIP' => \Torann\GeoIP\Facades\GeoIP::class, 'Image' => Intervention\Image\Facades\Image::class, 'FCM' => LaravelFCM\Facades\FCM::class, 'FCMGroup' => LaravelFCM\Facades\FCMGroup::class, diff --git a/config/geoip.php b/config/geoip.php index 23374b319..98f8a171a 100644 --- a/config/geoip.php +++ b/config/geoip.php @@ -1,35 +1,101 @@ 'maxmind', - + 'log_failures' => true, /* |-------------------------------------------------------------------------- - | Services settings + | Include Currency in Results |-------------------------------------------------------------------------- | - | Service specific settings. + | When enabled the system will do it's best in deciding the user's currency + | by matching their ISO code to a preset list of currencies. | */ - - 'maxmind' => [ - 'type' => env('GEOIP_DRIVER', 'database'), // database or web_service - 'user_id' => env('GEOIP_USER_ID'), - 'license_key' => env('GEOIP_LICENSE_KEY'), - 'database_path' => storage_path('app/geoip.mmdb'), - 'update_url' => 'https://geolite.maxmind.com/download/geoip/database/GeoLite2-City.mmdb.gz', + 'include_currency' => true, + /* + |-------------------------------------------------------------------------- + | Default Service + |-------------------------------------------------------------------------- + | + | Here you may specify the default storage driver that should be used + | by the framework. + | + | Supported: "maxmind_database", "maxmind_api", "ipapi" + | + */ + 'service' => 'ipapi', + /* + |-------------------------------------------------------------------------- + | Storage Specific Configuration + |-------------------------------------------------------------------------- + | + | Here you may configure as many storage drivers as you wish. + | + */ + 'services' => [ + 'maxmind_database' => [ + 'class' => \Torann\GeoIP\Services\MaxMindDatabase::class, + 'database_path' => storage_path('app/geoip.mmdb'), + 'update_url' => 'https://geolite.maxmind.com/download/geoip/database/GeoLite2-City.mmdb.gz', + 'locales' => ['en'], + ], + 'maxmind_api' => [ + 'class' => \Torann\GeoIP\Services\MaxMindWebService::class, + 'user_id' => env('MAXMIND_USER_ID'), + 'license_key' => env('MAXMIND_LICENSE_KEY'), + 'locales' => ['en'], + ], + 'ipapi' => [ + 'class' => \Torann\GeoIP\Services\IPApi::class, + 'secure' => true, + 'key' => env('IPAPI_KEY'), + 'continent_path' => storage_path('app/continents.json'), + ], ], - + /* + |-------------------------------------------------------------------------- + | Default Cache Driver + |-------------------------------------------------------------------------- + | + | Here you may specify the type of caching that should be used + | by the package. + | + | Options: + | + | all - All location are cached + | some - Cache only the requesting user + | none - Disable cached + | + */ + 'cache' => 'all', + /* + |-------------------------------------------------------------------------- + | Cache Tags + |-------------------------------------------------------------------------- + | + | Cache tags are not supported when using the file or database cache + | drivers in Laravel. This is done so that only locations can be cleared. + | + */ + 'cache_tags' => '', + /* + |-------------------------------------------------------------------------- + | Cache Expiration + |-------------------------------------------------------------------------- + | + | Define how long cached location are valid. + | + */ + 'cache_expires' => 30, /* |-------------------------------------------------------------------------- | Default Location @@ -38,18 +104,19 @@ return [ | Return when a location is not found. | */ - 'default_location' => [ - 'ip' => '127.0.0.0', - 'isoCode' => 'IN', - 'country' => 'INDIA', - 'city' => 'Bangalore', - 'state' => 'KT', - 'postal_code' => '06510', - 'lat' => 41.31, - 'lon' => -72.92, - 'timezone' => 'America/New_York', - 'continent' => 'NA', + 'ip' => '127.0.0.0', + 'iso_code' => 'IN', + 'country' => 'INDIA', + 'city' => 'Bangalore', + 'state' => 'KA', + 'state_name' => 'Connecticut', + 'postal_code' => '06510', + 'lat' => 41.31, + 'lon' => -72.92, + 'timezone' => 'Asia/Kolkata', + 'continent' => 'NA', + 'default' => true, + 'currency' => 'USD', ], - ]; diff --git a/database/seeds/DatabaseSeeder.php b/database/seeds/DatabaseSeeder.php index 37934fa52..3eecd9d3d 100644 --- a/database/seeds/DatabaseSeeder.php +++ b/database/seeds/DatabaseSeeder.php @@ -215,10 +215,10 @@ class DatabaseSeeder extends Seeder Ticket_status::create(['name' => 'Request Approval', 'state' => 'unverified', 'mode' => '3', 'message' => 'Approval requested by', 'flags' => '0', 'sort' => '7', 'properties' => 'Ticket will be approve after Admin verifies this ticket']); /* Ticket priority */ - Ticket_priority::create(['priority' => 'Low', 'status' => 1, 'priority_desc' => 'Low', 'priority_color' => '#00a65a', 'priority_urgency' => '4', 'ispublic' => '1']); - Ticket_priority::create(['priority' => 'Normal', 'status' => 1, 'priority_desc' => 'Normal', 'priority_color' => '#00bfef', 'priority_urgency' => '3', 'ispublic' => '1', 'is_default' => '1']); - Ticket_priority::create(['priority' => 'High', 'status' => 1, 'priority_desc' => 'High', 'priority_color' => '#f39c11', 'priority_urgency' => '2', 'ispublic' => '1']); - Ticket_priority::create(['priority' => 'Emergency', 'status' => 1, 'priority_desc' => 'Emergency', 'priority_color' => '#dd4b38', 'priority_urgency' => '1', 'ispublic' => '1']); + Ticket_priority::create(['priority' => 'Low', 'status' => 1, 'priority_desc' => 'Low', 'priority_color' => '#00a65a', 'priority_urgency' => '4', 'ispublic' => 1, 'is_default' => 0]); + Ticket_priority::create(['priority' => 'Normal', 'status' => 1, 'priority_desc' => 'Normal', 'priority_color' => '#00bfef', 'priority_urgency' => '3', 'ispublic' => 1, 'is_default' => 1]); + Ticket_priority::create(['priority' => 'High', 'status' => 1, 'priority_desc' => 'High', 'priority_color' => '#f39c11', 'priority_urgency' => '2', 'ispublic' => 1, 'is_default' => 0]); + Ticket_priority::create(['priority' => 'Emergency', 'status' => 1, 'priority_desc' => 'Emergency', 'priority_color' => '#dd4b38', 'priority_urgency' => '1', 'ispublic' => 1, 'is_default' => 0]); /* Approval */ Approval::create(['name' => 'approval', 'status' => '0']); diff --git a/resources/views/themes/default1/admin/helpdesk/manage/ticket_priority/index.blade.php b/resources/views/themes/default1/admin/helpdesk/manage/ticket_priority/index.blade.php index 9b89af90d..9f4c47e8a 100644 --- a/resources/views/themes/default1/admin/helpdesk/manage/ticket_priority/index.blade.php +++ b/resources/views/themes/default1/admin/helpdesk/manage/ticket_priority/index.blade.php @@ -125,7 +125,7 @@ class="active" $.ajax({ type: 'post', url: '{{route("user.priority.index")}}', - data: {user_settings_priority: user_settings_priority}, + data: {user_settings_priority: user_settings_priority}, success: function (result) { // with('success', Lang::get('lang.approval_settings-created-successfully')); // alert("Hi, testing"); diff --git a/resources/views/themes/default1/agent/helpdesk/ticket/timeline.blade.php b/resources/views/themes/default1/agent/helpdesk/ticket/timeline.blade.php index 28dbf070d..64b7e4b44 100644 --- a/resources/views/themes/default1/agent/helpdesk/ticket/timeline.blade.php +++ b/resources/views/themes/default1/agent/helpdesk/ticket/timeline.blade.php @@ -566,65 +566,7 @@ if ($thread->title != "") { id)->first(); - if ($attachment == null) { - $body = $conversation->body; - $body = $conversation->thread($body); - } else { - // dd($attachment->file); - // print $attachment->file; - // header("Content-type: image/jpeg"); - // echo " "; - $body = $conversation->body; - $body = $conversation->thread($body); - $attachments = App\Model\helpdesk\Ticket\Ticket_attachments::where('thread_id', '=', $conversation->id)->orderBy('id', 'DESC')->get(); - // $i = 0; - foreach ($attachments as $attachment) { - // $i++; - if (mime($attachment->type)==true) { - $image = @imagecreatefromstring($attachment->file); - ob_start(); - imagejpeg($image, null, 80); - $data = ob_get_contents(); - ob_end_clean(); - $var = ''; - // echo $var; - // echo $attachment->name; - // $body = explode($attachment->name, $body); - $body = str_replace($attachment->name, "data:image/" . $attachment->type . ";base64," . base64_encode($data), $body); - - $string = $body; - $start = ""; - $end = ""; - if (strpos($string, $start) == false || strpos($string, $start) == false) { - - } else { - $ini = strpos($string, $start); - $ini += strlen($start); - $len = strpos($string, $end, $ini) - $ini; - $parsed = substr($string, $ini, $len); - $body2 = $parsed; - $body = str_replace($body2, " ", $body); - } - } else { - } - } - // echo $body; - // $body = explode($attachment->file, $body); - // $body = $body[0]; - } - $string = $body; - $start = ""; - $end = ""; - if (strpos($string, $start) == false || strpos($string, $start) == false) { - } else { - $ini = strpos($string, $start); - $ini += strlen($start); - $len = strpos($string, $end, $ini) - $ini; - $parsed = substr($string, $ini, $len); - $body2 = $parsed; - $body = str_replace($body2, " ", $body); - } + if($conversation->user_id != null) { if ($conversation->is_internal) { $color = '#A19CFF'; @@ -713,7 +655,7 @@ if ($thread->title != "") { $('#loader_frame{{$conversation->id}}')[0].contentDocument.body.innerHTML = '{!!$conversation->purify()!!}'; @else - {!! $body !!} + {!! $conversation->body !!} @endif @if($conversation->id == $ij->id) @@ -757,29 +699,11 @@ if ($thread->title != "") { } ?> @@ -874,7 +798,8 @@ if ($thread->title != "") {
    - get() ?> + + get(); ?> '; - $("#newtextarea1").empty(); - var div1 = document.getElementById('newtextarea1'); - div1.innerHTML = div1.innerHTML + ''; - var wysihtml5Editor = $('textarea').wysihtml5().data("wysihtml5").editor; - setInterval(function(){ - var head= document.getElementsByTagName('head')[0]; - var script= document.createElement('script'); - script.type= 'text/javascript'; - script.src= '{{asset("lb-faveo/js/jquery.rating.pack.js")}}'; - head.appendChild(script); -// $('.rating-cancel').hide(); -// $(".star-rating-control").attr("disabled", "disabled").off('hover'); -// $(".star-rating-control").addClass("disabled") - }, 4000); + location.reload(); +// $("#refresh1").load("../thread/{{$tickets->id}} #refresh1"); +// var message = "{{ Lang::get('lang.you_have_successfully_replied_to_your_ticket') }}"; +// $("#alert21").show(); +// $('#message-success2').html(message); +// setInterval(function(){$("#alert21").hide(); }, 4000); +// $("#newtextarea").empty(); +// var div = document.getElementById('newtextarea'); +// div.innerHTML = div.innerHTML + ''; +// $("#newtextarea1").empty(); +// var div1 = document.getElementById('newtextarea1'); +// div1.innerHTML = div1.innerHTML + ''; +// var wysihtml5Editor = $('textarea').wysihtml5().data("wysihtml5").editor; +// setInterval(function(){ +// var head= document.getElementsByTagName('head')[0]; +// var script= document.createElement('script'); +// script.type= 'text/javascript'; +// script.src= '{{asset("lb-faveo/js/jquery.rating.pack.js")}}'; +// head.appendChild(script); +//// $('.rating-cancel').hide(); +//// $(".star-rating-control").attr("disabled", "disabled").off('hover'); +//// $(".star-rating-control").addClass("disabled") +// }, 4000); + } else { // alert('fail'); // $( "#dismis4" ).trigger( "click" ); diff --git a/resources/views/themes/default1/agent/helpdesk/user/profile-edit.blade.php b/resources/views/themes/default1/agent/helpdesk/user/profile-edit.blade.php index d368e15f6..df6e26c88 100644 --- a/resources/views/themes/default1/agent/helpdesk/user/profile-edit.blade.php +++ b/resources/views/themes/default1/agent/helpdesk/user/profile-edit.blade.php @@ -46,17 +46,19 @@ class="active" @endif @if(Session::has('errors')) - @if($errors->first('first_name'))
    {!! Lang::get('lang.alert') !!}!
    + @if($errors->first('first_name'))
  • {!! $errors->first('first_name', ':message') !!}
  • + @endif + @if($errors->first('mobile'))
  • {!! $errors->first('mobile', ':message') !!}
  • + @endif
    @endif - @endif
    {!! Form::label('first_name',Lang::get('lang.first_name')) !!} * diff --git a/resources/views/themes/default1/client/helpdesk/mytickets.blade.php b/resources/views/themes/default1/client/helpdesk/mytickets.blade.php index dd7d5943d..0e72af7d8 100644 --- a/resources/views/themes/default1/client/helpdesk/mytickets.blade.php +++ b/resources/views/themes/default1/client/helpdesk/mytickets.blade.php @@ -71,7 +71,7 @@ class="active" ?> > id)->first(); + $title = App\Model\helpdesk\Ticket\Ticket_Thread::where('ticket_id', '=', $ticket->id)->orderBy('id')->first(); $string = strip_tags($title->title); if (strlen($string) > 40) { $stringCut = substr($string, 0, 40); diff --git a/vendor/aws/aws-sdk-php/src/Acm/AcmClient.php b/vendor/aws/aws-sdk-php/src/Acm/AcmClient.php index f80b97399..af32df9a6 100644 --- a/vendor/aws/aws-sdk-php/src/Acm/AcmClient.php +++ b/vendor/aws/aws-sdk-php/src/Acm/AcmClient.php @@ -14,6 +14,8 @@ use Aws\AwsClient; * @method \GuzzleHttp\Promise\Promise describeCertificateAsync(array $args = []) * @method \Aws\Result getCertificate(array $args = []) * @method \GuzzleHttp\Promise\Promise getCertificateAsync(array $args = []) + * @method \Aws\Result importCertificate(array $args = []) + * @method \GuzzleHttp\Promise\Promise importCertificateAsync(array $args = []) * @method \Aws\Result listCertificates(array $args = []) * @method \GuzzleHttp\Promise\Promise listCertificatesAsync(array $args = []) * @method \Aws\Result listTagsForCertificate(array $args = []) diff --git a/vendor/aws/aws-sdk-php/src/Budgets/BudgetsClient.php b/vendor/aws/aws-sdk-php/src/Budgets/BudgetsClient.php new file mode 100644 index 000000000..70e57b9ca --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/Budgets/BudgetsClient.php @@ -0,0 +1,35 @@ + true, - 'DeleteBucket' => true, - 'ListBuckets' => true, - ]; - /** @var bool */ - private $accelerateByDefault; - /** @var callable */ - private $nextHandler; - - /** - * Create a middleware wrapper function. - * - * @param bool $accelerateByDefault - * - * @return callable - */ - public static function wrap($accelerateByDefault = false) - { - return function (callable $handler) use ($accelerateByDefault) { - return new self($handler, $accelerateByDefault); - }; - } - - public function __construct(callable $nextHandler, $accelerateByDefault = false) - { - $this->accelerateByDefault = (bool) $accelerateByDefault; - $this->nextHandler = $nextHandler; - } - - public function __invoke(CommandInterface $command, RequestInterface $request) - { - if ($this->shouldAccelerate($command)) { - $request = $request->withUri( - $request->getUri() - ->withHost($this->getAccelerateHost($command)) - ->withPath($this->getBucketlessPath( - $request->getUri()->getPath(), - $command - )) - ); - } - - $nextHandler = $this->nextHandler; - return $nextHandler($command, $request); - } - - private function shouldAccelerate(CommandInterface $command) - { - if ($this->canAccelerate($command)) { - return isset($command['@use_accelerate_endpoint']) - ? $command['@use_accelerate_endpoint'] - : $this->accelerateByDefault; - } - - return false; - } - - private function canAccelerate(CommandInterface $command) - { - return empty(self::$exclusions[$command->getName()]) - && S3Client::isBucketDnsCompatible($command['Bucket']); - } - - private function getAccelerateHost(CommandInterface $command) - { - return "{$command['Bucket']}.s3-accelerate.amazonaws.com"; - } - - private function getBucketlessPath($path, CommandInterface $command) - { - $pattern = '/^\\/' . preg_quote($command['Bucket'], '/') . '/'; - return preg_replace($pattern, '', $path) ?: '/'; - } -} diff --git a/vendor/aws/aws-sdk-php/src/S3/DualStackMiddleware.php b/vendor/aws/aws-sdk-php/src/S3/DualStackMiddleware.php deleted file mode 100644 index d229b74a6..000000000 --- a/vendor/aws/aws-sdk-php/src/S3/DualStackMiddleware.php +++ /dev/null @@ -1,67 +0,0 @@ -dualStackByDefault = (bool) $dualStackByDefault; - $this->region = (string) $region; - $this->nextHandler = $nextHandler; - } - - public function __invoke(CommandInterface $command, RequestInterface $request) - { - if ($this->shouldApplyDualStack($command)) { - $request = $request->withUri( - $request->getUri() - ->withHost($this->getDualStackHost()) - ); - } - - $nextHandler = $this->nextHandler; - return $nextHandler($command, $request); - } - - private function shouldApplyDualStack(CommandInterface $command) - { - return isset($command['@use_dual_stack_endpoint']) - ? $command['@use_dual_stack_endpoint'] - : $this->dualStackByDefault; - } - - private function getDualStackHost() - { - return "s3.dualstack.{$this->region}.amazonaws.com"; - } -} diff --git a/vendor/aws/aws-sdk-php/src/S3/PostObjectV4.php b/vendor/aws/aws-sdk-php/src/S3/PostObjectV4.php index bad249b08..360fabb9b 100644 --- a/vendor/aws/aws-sdk-php/src/S3/PostObjectV4.php +++ b/vendor/aws/aws-sdk-php/src/S3/PostObjectV4.php @@ -4,7 +4,6 @@ namespace Aws\S3; use Aws\Credentials\CredentialsInterface; use GuzzleHttp\Psr7\Uri; use Aws\Signature\SignatureTrait; -use Aws\Common\Enum\DateFormat; use Aws\Signature\SignatureV4 as SignatureV4; use Aws\Api\TimestampShape as TimestampShape; @@ -55,6 +54,14 @@ class PostObjectV4 'enctype' => 'multipart/form-data' ]; + $credentials = $this->client->getCredentials()->wait(); + $securityToken = $credentials->getSecurityToken(); + + if (null !== $securityToken) { + array_push($options, ['x-amz-security-token' => $securityToken]); + $formInputs['X-Amz-Security-Token'] = $securityToken; + } + // setup basic policy $policy = [ 'expiration' => TimestampShape::format($expiration, 'iso8601'), @@ -65,7 +72,7 @@ class PostObjectV4 $this->formInputs = $formInputs + ['key' => '${filename}']; // finalize policy and signature - $credentials = $this->client->getCredentials()->wait(); + $this->formInputs += $this->getPolicyAndSignature( $credentials, $policy diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Client.php b/vendor/aws/aws-sdk-php/src/S3/S3Client.php index 4ddb395bd..6d638d916 100644 --- a/vendor/aws/aws-sdk-php/src/S3/S3Client.php +++ b/vendor/aws/aws-sdk-php/src/S3/S3Client.php @@ -176,8 +176,7 @@ class S3Client extends AwsClient implements S3ClientInterface 'doc' => 'Set to true to send requests to an S3 Dual Stack' . ' endpoint by default, which enables IPv6 Protocol.' . ' Can be enabled or disabled on individual operations by setting' - . ' \'@use_dual_stack_endpoint\' to true or false. Note:' - . ' you cannot use it together with an accelerate endpoint.', + . ' \'@use_dual_stack_endpoint\' to true or false.', 'default' => false, ], ]; @@ -219,17 +218,18 @@ class S3Client extends AwsClient implements S3ClientInterface Middleware::contentType(['PutObject', 'UploadPart']), 's3.content_type' ); + $stack->appendBuild( - AccelerateMiddleware::wrap($this->getConfig('use_accelerate_endpoint')), - 's3.use_accelerate_endpoint' - ); - $stack->appendBuild( - DualStackMiddleware::wrap( + S3EndpointMiddleware::wrap( $this->getRegion(), - $this->getConfig('use_dual_stack_endpoint') + [ + 'dual_stack' => $this->getConfig('use_dual_stack_endpoint'), + 'accelerate' => $this->getConfig('use_accelerate_endpoint') + ] ), - 's3.use_dual_stack_endpoint' + 's3.endpoint_middleware' ); + // Use the bucket style middleware when using a "bucket_endpoint" (for cnames) if ($this->getConfig('bucket_endpoint')) { $stack->appendBuild(BucketEndpointMiddleware::wrap(), 's3.bucket_endpoint'); diff --git a/vendor/aws/aws-sdk-php/src/S3/S3ClientTrait.php b/vendor/aws/aws-sdk-php/src/S3/S3ClientTrait.php index 984d0a2fb..c03d42fe8 100644 --- a/vendor/aws/aws-sdk-php/src/S3/S3ClientTrait.php +++ b/vendor/aws/aws-sdk-php/src/S3/S3ClientTrait.php @@ -2,6 +2,7 @@ namespace Aws\S3; use Aws\CommandInterface; +use Aws\Exception\AwsException; use Aws\HandlerList; use Aws\ResultInterface; use Aws\S3\Exception\S3Exception; @@ -174,6 +175,12 @@ trait S3ClientTrait return $handler($command) ->then(static function (ResultInterface $result) { return $result['@metadata']['headers']['x-amz-bucket-region']; + }, static function (AwsException $exception) { + $response = $exception->getResponse(); + if ($response === null) { + throw $exception; + } + return $response->getHeaderLine('x-amz-bucket-region'); }); } diff --git a/vendor/aws/aws-sdk-php/src/S3/S3EndpointMiddleware.php b/vendor/aws/aws-sdk-php/src/S3/S3EndpointMiddleware.php new file mode 100644 index 000000000..a65471152 --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/S3/S3EndpointMiddleware.php @@ -0,0 +1,161 @@ + true, + 'DeleteBucket' => true, + 'ListBuckets' => true, + ]; + + const NO_PATTERN = 0; + const DUALSTACK = 1; + const ACCELERATE = 2; + const ACCELERATE_DUALSTACK = 3; + + /** @var bool */ + private $accelerateByDefault; + /** @var bool */ + private $dualStackByDefault; + /** @var string */ + private $region; + /** @var callable */ + private $nextHandler; + + /** + * Create a middleware wrapper function + * + * @param string $region + * @param array $options + * + * @return callable + */ + public static function wrap($region, array $options) + { + return function (callable $handler) use ($region, $options) { + return new self($handler, $region, $options); + }; + } + + public function __construct( + callable $nextHandler, + $region, + array $options + ) { + $this->dualStackByDefault = isset($options['dual_stack']) + ? (bool) $options['dual_stack'] : false; + $this->accelerateByDefault = isset($options['accelerate']) + ? (bool) $options['accelerate'] : false; + $this->region = (string) $region; + $this->nextHandler = $nextHandler; + } + + public function __invoke(CommandInterface $command, RequestInterface $request) + { + $endpointPattern = $this->endpointPatternDecider($command); + switch ($endpointPattern) { + case self::NO_PATTERN: + break; + case self::DUALSTACK: + $request = $this->applyDualStackEndpoint($request); + break; + case self::ACCELERATE: + $request = $this->applyAccelerateEndpoint( + $command, + $request, + 's3-accelerate' + ); + break; + case self::ACCELERATE_DUALSTACK: + $request = $this->applyAccelerateEndpoint( + $command, + $request, + 's3-accelerate.dualstack' + ); + break; + } + + $nextHandler = $this->nextHandler; + return $nextHandler($command, $request); + } + + private function endpointPatternDecider(CommandInterface $command) + { + $accelerate = isset($command['@use_accelerate_endpoint']) + ? $command['@use_accelerate_endpoint'] : $this->accelerateByDefault; + $dualStack = isset($command['@use_dual_stack_endpoint']) + ? $command['@use_dual_stack_endpoint'] : $this->dualStackByDefault; + + if ($accelerate && $dualStack) { + // When try to enable both for operations excluded from s3-accelerate, + // only dualstack endpoints will be enabled. + return $this->canAccelerate($command) + ? self::ACCELERATE_DUALSTACK + : self::DUALSTACK; + } elseif ($accelerate && $this->canAccelerate($command)) { + return self::ACCELERATE; + } elseif ($dualStack) { + return self::DUALSTACK; + } + return self::NO_PATTERN; + } + + private function canAccelerate(CommandInterface $command) + { + return empty(self::$exclusions[$command->getName()]) + && S3Client::isBucketDnsCompatible($command['Bucket']); + } + + private function applyDualStackEndpoint(RequestInterface $request) + { + $request = $request->withUri( + $request->getUri() + ->withHost($this->getDualStackHost()) + ); + return $request; + } + + private function getDualStackHost() + { + return "s3.dualstack.{$this->region}.amazonaws.com"; + } + + private function applyAccelerateEndpoint( + CommandInterface $command, + RequestInterface $request, + $pattern + ) { + $request = $request->withUri( + $request->getUri() + ->withHost($this->getAccelerateHost($command, $pattern)) + ->withPath($this->getBucketlessPath( + $request->getUri()->getPath(), + $command + )) + ); + return $request; + } + + private function getAccelerateHost(CommandInterface $command, $pattern) + { + return "{$command['Bucket']}.{$pattern}.amazonaws.com"; + } + + private function getBucketlessPath($path, CommandInterface $command) + { + $pattern = '/^\\/' . preg_quote($command['Bucket'], '/') . '/'; + return preg_replace($pattern, '', $path) ?: '/'; + } +} diff --git a/vendor/aws/aws-sdk-php/src/Sdk.php b/vendor/aws/aws-sdk-php/src/Sdk.php index f8dc23ad1..bdb486a08 100644 --- a/vendor/aws/aws-sdk-php/src/Sdk.php +++ b/vendor/aws/aws-sdk-php/src/Sdk.php @@ -14,6 +14,8 @@ namespace Aws; * @method \Aws\MultiRegionClient createMultiRegionApplicationDiscoveryService(array $args = []) * @method \Aws\AutoScaling\AutoScalingClient createAutoScaling(array $args = []) * @method \Aws\MultiRegionClient createMultiRegionAutoScaling(array $args = []) + * @method \Aws\Budgets\BudgetsClient createBudgets(array $args = []) + * @method \Aws\MultiRegionClient createMultiRegionBudgets(array $args = []) * @method \Aws\CloudFormation\CloudFormationClient createCloudFormation(array $args = []) * @method \Aws\MultiRegionClient createMultiRegionCloudFormation(array $args = []) * @method \Aws\CloudFront\CloudFrontClient createCloudFront(array $args = []) @@ -128,6 +130,8 @@ namespace Aws; * @method \Aws\MultiRegionClient createMultiRegionServiceCatalog(array $args = []) * @method \Aws\Ses\SesClient createSes(array $args = []) * @method \Aws\MultiRegionClient createMultiRegionSes(array $args = []) + * @method \Aws\Sms\SmsClient createSms(array $args = []) + * @method \Aws\MultiRegionClient createMultiRegionSms(array $args = []) * @method \Aws\SnowBall\SnowBallClient createSnowBall(array $args = []) * @method \Aws\MultiRegionClient createMultiRegionSnowBall(array $args = []) * @method \Aws\Sns\SnsClient createSns(array $args = []) @@ -151,7 +155,7 @@ namespace Aws; */ class Sdk { - const VERSION = '3.19.5'; + const VERSION = '3.19.23'; /** @var array Arguments for creating clients */ private $args; diff --git a/vendor/aws/aws-sdk-php/src/Ses/SesClient.php b/vendor/aws/aws-sdk-php/src/Ses/SesClient.php index a6e8ad131..e78b15412 100644 --- a/vendor/aws/aws-sdk-php/src/Ses/SesClient.php +++ b/vendor/aws/aws-sdk-php/src/Ses/SesClient.php @@ -8,12 +8,20 @@ use Aws\Credentials\CredentialsInterface; * * @method \Aws\Result cloneReceiptRuleSet(array $args = []) * @method \GuzzleHttp\Promise\Promise cloneReceiptRuleSetAsync(array $args = []) + * @method \Aws\Result createConfigurationSet(array $args = []) + * @method \GuzzleHttp\Promise\Promise createConfigurationSetAsync(array $args = []) + * @method \Aws\Result createConfigurationSetEventDestination(array $args = []) + * @method \GuzzleHttp\Promise\Promise createConfigurationSetEventDestinationAsync(array $args = []) * @method \Aws\Result createReceiptFilter(array $args = []) * @method \GuzzleHttp\Promise\Promise createReceiptFilterAsync(array $args = []) * @method \Aws\Result createReceiptRule(array $args = []) * @method \GuzzleHttp\Promise\Promise createReceiptRuleAsync(array $args = []) * @method \Aws\Result createReceiptRuleSet(array $args = []) * @method \GuzzleHttp\Promise\Promise createReceiptRuleSetAsync(array $args = []) + * @method \Aws\Result deleteConfigurationSet(array $args = []) + * @method \GuzzleHttp\Promise\Promise deleteConfigurationSetAsync(array $args = []) + * @method \Aws\Result deleteConfigurationSetEventDestination(array $args = []) + * @method \GuzzleHttp\Promise\Promise deleteConfigurationSetEventDestinationAsync(array $args = []) * @method \Aws\Result deleteIdentity(array $args = []) * @method \GuzzleHttp\Promise\Promise deleteIdentityAsync(array $args = []) * @method \Aws\Result deleteIdentityPolicy(array $args = []) @@ -28,6 +36,8 @@ use Aws\Credentials\CredentialsInterface; * @method \GuzzleHttp\Promise\Promise deleteVerifiedEmailAddressAsync(array $args = []) * @method \Aws\Result describeActiveReceiptRuleSet(array $args = []) * @method \GuzzleHttp\Promise\Promise describeActiveReceiptRuleSetAsync(array $args = []) + * @method \Aws\Result describeConfigurationSet(array $args = []) + * @method \GuzzleHttp\Promise\Promise describeConfigurationSetAsync(array $args = []) * @method \Aws\Result describeReceiptRule(array $args = []) * @method \GuzzleHttp\Promise\Promise describeReceiptRuleAsync(array $args = []) * @method \Aws\Result describeReceiptRuleSet(array $args = []) @@ -46,6 +56,8 @@ use Aws\Credentials\CredentialsInterface; * @method \GuzzleHttp\Promise\Promise getSendQuotaAsync(array $args = []) * @method \Aws\Result getSendStatistics(array $args = []) * @method \GuzzleHttp\Promise\Promise getSendStatisticsAsync(array $args = []) + * @method \Aws\Result listConfigurationSets(array $args = []) + * @method \GuzzleHttp\Promise\Promise listConfigurationSetsAsync(array $args = []) * @method \Aws\Result listIdentities(array $args = []) * @method \GuzzleHttp\Promise\Promise listIdentitiesAsync(array $args = []) * @method \Aws\Result listIdentityPolicies(array $args = []) @@ -80,6 +92,8 @@ use Aws\Credentials\CredentialsInterface; * @method \GuzzleHttp\Promise\Promise setIdentityNotificationTopicAsync(array $args = []) * @method \Aws\Result setReceiptRulePosition(array $args = []) * @method \GuzzleHttp\Promise\Promise setReceiptRulePositionAsync(array $args = []) + * @method \Aws\Result updateConfigurationSetEventDestination(array $args = []) + * @method \GuzzleHttp\Promise\Promise updateConfigurationSetEventDestinationAsync(array $args = []) * @method \Aws\Result updateReceiptRule(array $args = []) * @method \GuzzleHttp\Promise\Promise updateReceiptRuleAsync(array $args = []) * @method \Aws\Result verifyDomainDkim(array $args = []) diff --git a/vendor/aws/aws-sdk-php/src/Sms/Exception/SmsException.php b/vendor/aws/aws-sdk-php/src/Sms/Exception/SmsException.php new file mode 100644 index 000000000..2da68c287 --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/Sms/Exception/SmsException.php @@ -0,0 +1,9 @@ + '2.0', 'metadata' => [ 'apiVersion' => '2015-12-08', 'endpointPrefix' => 'acm', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'ACM', 'serviceFullName' => 'AWS Certificate Manager', 'signatureVersion' => 'v4', 'targetPrefix' => 'CertificateManager', ], 'operations' => [ 'AddTagsToCertificate' => [ 'name' => 'AddTagsToCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddTagsToCertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'InvalidTagException', ], [ 'shape' => 'TooManyTagsException', ], ], ], 'DeleteCertificate' => [ 'name' => 'DeleteCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArnException', ], ], ], 'DescribeCertificate' => [ 'name' => 'DescribeCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCertificateRequest', ], 'output' => [ 'shape' => 'DescribeCertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidArnException', ], ], ], 'GetCertificate' => [ 'name' => 'GetCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCertificateRequest', ], 'output' => [ 'shape' => 'GetCertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'RequestInProgressException', ], [ 'shape' => 'InvalidArnException', ], ], ], 'ListCertificates' => [ 'name' => 'ListCertificates', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListCertificatesRequest', ], 'output' => [ 'shape' => 'ListCertificatesResponse', ], ], 'ListTagsForCertificate' => [ 'name' => 'ListTagsForCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListTagsForCertificateRequest', ], 'output' => [ 'shape' => 'ListTagsForCertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidArnException', ], ], ], 'RemoveTagsFromCertificate' => [ 'name' => 'RemoveTagsFromCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveTagsFromCertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'InvalidTagException', ], ], ], 'RequestCertificate' => [ 'name' => 'RequestCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RequestCertificateRequest', ], 'output' => [ 'shape' => 'RequestCertificateResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidDomainValidationOptionsException', ], ], ], 'ResendValidationEmail' => [ 'name' => 'ResendValidationEmail', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResendValidationEmailRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidStateException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'InvalidDomainValidationOptionsException', ], ], ], ], 'shapes' => [ 'AddTagsToCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', 'Tags', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'Arn' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, 'pattern' => 'arn:[\\w+=/,.@-]+:[\\w+=/,.@-]+:[\\w+=/,.@-]*:[0-9]+:[\\w+=,.@-]+(/[\\w+=/,.@-]+)*', ], 'CertificateBody' => [ 'type' => 'string', 'max' => 524288, 'min' => 1, 'pattern' => '-{5}BEGIN CERTIFICATE-{5}\\u000D?\\u000A([A-Za-z0-9/+]{64}\\u000D?\\u000A)*[A-Za-z0-9/+]{1,64}={0,2}\\u000D?\\u000A-{5}END CERTIFICATE-{5}(\\u000D?\\u000A)?', ], 'CertificateChain' => [ 'type' => 'string', 'max' => 2097152, 'min' => 1, 'pattern' => '(-{5}BEGIN CERTIFICATE-{5}\\u000D?\\u000A([A-Za-z0-9/+]{64}\\u000D?\\u000A)*[A-Za-z0-9/+]{1,64}={0,2}\\u000D?\\u000A-{5}END CERTIFICATE-{5}\\u000D?\\u000A)*-{5}BEGIN CERTIFICATE-{5}\\u000D?\\u000A([A-Za-z0-9/+]{64}\\u000D?\\u000A)*[A-Za-z0-9/+]{1,64}={0,2}\\u000D?\\u000A-{5}END CERTIFICATE-{5}(\\u000D?\\u000A)?', ], 'CertificateDetail' => [ 'type' => 'structure', 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], 'DomainName' => [ 'shape' => 'DomainNameString', ], 'SubjectAlternativeNames' => [ 'shape' => 'DomainList', ], 'DomainValidationOptions' => [ 'shape' => 'DomainValidationList', ], 'Serial' => [ 'shape' => 'String', ], 'Subject' => [ 'shape' => 'String', ], 'Issuer' => [ 'shape' => 'String', ], 'CreatedAt' => [ 'shape' => 'TStamp', ], 'IssuedAt' => [ 'shape' => 'TStamp', ], 'Status' => [ 'shape' => 'CertificateStatus', ], 'RevokedAt' => [ 'shape' => 'TStamp', ], 'RevocationReason' => [ 'shape' => 'RevocationReason', ], 'NotBefore' => [ 'shape' => 'TStamp', ], 'NotAfter' => [ 'shape' => 'TStamp', ], 'KeyAlgorithm' => [ 'shape' => 'KeyAlgorithm', ], 'SignatureAlgorithm' => [ 'shape' => 'String', ], 'InUseBy' => [ 'shape' => 'InUseList', ], 'FailureReason' => [ 'shape' => 'FailureReason', ], ], ], 'CertificateStatus' => [ 'type' => 'string', 'enum' => [ 'PENDING_VALIDATION', 'ISSUED', 'INACTIVE', 'EXPIRED', 'VALIDATION_TIMED_OUT', 'REVOKED', 'FAILED', ], ], 'CertificateStatuses' => [ 'type' => 'list', 'member' => [ 'shape' => 'CertificateStatus', ], ], 'CertificateSummary' => [ 'type' => 'structure', 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], 'DomainName' => [ 'shape' => 'DomainNameString', ], ], ], 'CertificateSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CertificateSummary', ], ], 'DeleteCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], ], ], 'DescribeCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], ], ], 'DescribeCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'Certificate' => [ 'shape' => 'CertificateDetail', ], ], ], 'DomainList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DomainNameString', ], 'max' => 100, 'min' => 1, ], 'DomainNameString' => [ 'type' => 'string', 'max' => 253, 'min' => 1, 'pattern' => '^(\\*\\.)?(((?!-)[A-Za-z0-9-]{0,62}[A-Za-z0-9])\\.)+((?!-)[A-Za-z0-9-]{1,62}[A-Za-z0-9])$', ], 'DomainValidation' => [ 'type' => 'structure', 'required' => [ 'DomainName', ], 'members' => [ 'DomainName' => [ 'shape' => 'DomainNameString', ], 'ValidationEmails' => [ 'shape' => 'ValidationEmailList', ], 'ValidationDomain' => [ 'shape' => 'DomainNameString', ], ], ], 'DomainValidationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DomainValidation', ], 'max' => 1000, 'min' => 1, ], 'DomainValidationOption' => [ 'type' => 'structure', 'required' => [ 'DomainName', 'ValidationDomain', ], 'members' => [ 'DomainName' => [ 'shape' => 'DomainNameString', ], 'ValidationDomain' => [ 'shape' => 'DomainNameString', ], ], ], 'DomainValidationOptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DomainValidationOption', ], 'max' => 100, 'min' => 1, ], 'FailureReason' => [ 'type' => 'string', 'enum' => [ 'NO_AVAILABLE_CONTACTS', 'ADDITIONAL_VERIFICATION_REQUIRED', 'DOMAIN_NOT_ALLOWED', 'INVALID_PUBLIC_DOMAIN', 'OTHER', ], ], 'GetCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], ], ], 'GetCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'Certificate' => [ 'shape' => 'CertificateBody', ], 'CertificateChain' => [ 'shape' => 'CertificateChain', ], ], ], 'IdempotencyToken' => [ 'type' => 'string', 'max' => 32, 'min' => 1, 'pattern' => '\\w+', ], 'InUseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'InvalidArnException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'InvalidDomainValidationOptionsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'InvalidStateException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'InvalidTagException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'KeyAlgorithm' => [ 'type' => 'string', 'enum' => [ 'RSA_2048', 'EC_prime256v1', ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'ListCertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'CertificateStatuses' => [ 'shape' => 'CertificateStatuses', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxItems' => [ 'shape' => 'MaxItems', ], ], ], 'ListCertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', ], 'CertificateSummaryList' => [ 'shape' => 'CertificateSummaryList', ], ], ], 'ListTagsForCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], ], ], 'ListTagsForCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'Tags' => [ 'shape' => 'TagList', ], ], ], 'MaxItems' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'NextToken' => [ 'type' => 'string', 'max' => 320, 'min' => 1, 'pattern' => '[\\u0009\\u000A\\u000D\\u0020-\\u00FF]*', ], 'RemoveTagsFromCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', 'Tags', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'RequestCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'DomainName', ], 'members' => [ 'DomainName' => [ 'shape' => 'DomainNameString', ], 'SubjectAlternativeNames' => [ 'shape' => 'DomainList', ], 'IdempotencyToken' => [ 'shape' => 'IdempotencyToken', ], 'DomainValidationOptions' => [ 'shape' => 'DomainValidationOptionList', ], ], ], 'RequestCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], ], ], 'RequestInProgressException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'ResendValidationEmailRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', 'Domain', 'ValidationDomain', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], 'Domain' => [ 'shape' => 'DomainNameString', ], 'ValidationDomain' => [ 'shape' => 'DomainNameString', ], ], ], 'ResourceInUseException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'RevocationReason' => [ 'type' => 'string', 'enum' => [ 'UNSPECIFIED', 'KEY_COMPROMISE', 'CA_COMPROMISE', 'AFFILIATION_CHANGED', 'SUPERCEDED', 'CESSATION_OF_OPERATION', 'CERTIFICATE_HOLD', 'REMOVE_FROM_CRL', 'PRIVILEGE_WITHDRAWN', 'A_A_COMPROMISE', ], ], 'String' => [ 'type' => 'string', ], 'TStamp' => [ 'type' => 'timestamp', ], 'Tag' => [ 'type' => 'structure', 'required' => [ 'Key', ], 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@]*', ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], 'max' => 50, 'min' => 1, ], 'TagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 0, 'pattern' => '[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@]*', ], 'TooManyTagsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'ValidationEmailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2015-12-08', 'endpointPrefix' => 'acm', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'ACM', 'serviceFullName' => 'AWS Certificate Manager', 'signatureVersion' => 'v4', 'targetPrefix' => 'CertificateManager', ], 'operations' => [ 'AddTagsToCertificate' => [ 'name' => 'AddTagsToCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddTagsToCertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'InvalidTagException', ], [ 'shape' => 'TooManyTagsException', ], ], ], 'DeleteCertificate' => [ 'name' => 'DeleteCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArnException', ], ], ], 'DescribeCertificate' => [ 'name' => 'DescribeCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCertificateRequest', ], 'output' => [ 'shape' => 'DescribeCertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidArnException', ], ], ], 'GetCertificate' => [ 'name' => 'GetCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCertificateRequest', ], 'output' => [ 'shape' => 'GetCertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'RequestInProgressException', ], [ 'shape' => 'InvalidArnException', ], ], ], 'ImportCertificate' => [ 'name' => 'ImportCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportCertificateRequest', ], 'output' => [ 'shape' => 'ImportCertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'ListCertificates' => [ 'name' => 'ListCertificates', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListCertificatesRequest', ], 'output' => [ 'shape' => 'ListCertificatesResponse', ], ], 'ListTagsForCertificate' => [ 'name' => 'ListTagsForCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListTagsForCertificateRequest', ], 'output' => [ 'shape' => 'ListTagsForCertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidArnException', ], ], ], 'RemoveTagsFromCertificate' => [ 'name' => 'RemoveTagsFromCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveTagsFromCertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'InvalidTagException', ], ], ], 'RequestCertificate' => [ 'name' => 'RequestCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RequestCertificateRequest', ], 'output' => [ 'shape' => 'RequestCertificateResponse', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidDomainValidationOptionsException', ], ], ], 'ResendValidationEmail' => [ 'name' => 'ResendValidationEmail', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResendValidationEmailRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidStateException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'InvalidDomainValidationOptionsException', ], ], ], ], 'shapes' => [ 'AddTagsToCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', 'Tags', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'Arn' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, 'pattern' => 'arn:[\\w+=/,.@-]+:[\\w+=/,.@-]+:[\\w+=/,.@-]*:[0-9]+:[\\w+=,.@-]+(/[\\w+=/,.@-]+)*', ], 'CertificateBody' => [ 'type' => 'string', 'max' => 32768, 'min' => 1, 'pattern' => '-{5}BEGIN CERTIFICATE-{5}\\u000D?\\u000A([A-Za-z0-9/+]{64}\\u000D?\\u000A)*[A-Za-z0-9/+]{1,64}={0,2}\\u000D?\\u000A-{5}END CERTIFICATE-{5}(\\u000D?\\u000A)?', ], 'CertificateBodyBlob' => [ 'type' => 'blob', 'max' => 32768, 'min' => 1, ], 'CertificateChain' => [ 'type' => 'string', 'max' => 2097152, 'min' => 1, 'pattern' => '(-{5}BEGIN CERTIFICATE-{5}\\u000D?\\u000A([A-Za-z0-9/+]{64}\\u000D?\\u000A)*[A-Za-z0-9/+]{1,64}={0,2}\\u000D?\\u000A-{5}END CERTIFICATE-{5}\\u000D?\\u000A)*-{5}BEGIN CERTIFICATE-{5}\\u000D?\\u000A([A-Za-z0-9/+]{64}\\u000D?\\u000A)*[A-Za-z0-9/+]{1,64}={0,2}\\u000D?\\u000A-{5}END CERTIFICATE-{5}(\\u000D?\\u000A)?', ], 'CertificateChainBlob' => [ 'type' => 'blob', 'max' => 2097152, 'min' => 1, ], 'CertificateDetail' => [ 'type' => 'structure', 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], 'DomainName' => [ 'shape' => 'DomainNameString', ], 'SubjectAlternativeNames' => [ 'shape' => 'DomainList', ], 'DomainValidationOptions' => [ 'shape' => 'DomainValidationList', ], 'Serial' => [ 'shape' => 'String', ], 'Subject' => [ 'shape' => 'String', ], 'Issuer' => [ 'shape' => 'String', ], 'CreatedAt' => [ 'shape' => 'TStamp', ], 'IssuedAt' => [ 'shape' => 'TStamp', ], 'ImportedAt' => [ 'shape' => 'TStamp', ], 'Status' => [ 'shape' => 'CertificateStatus', ], 'RevokedAt' => [ 'shape' => 'TStamp', ], 'RevocationReason' => [ 'shape' => 'RevocationReason', ], 'NotBefore' => [ 'shape' => 'TStamp', ], 'NotAfter' => [ 'shape' => 'TStamp', ], 'KeyAlgorithm' => [ 'shape' => 'KeyAlgorithm', ], 'SignatureAlgorithm' => [ 'shape' => 'String', ], 'InUseBy' => [ 'shape' => 'InUseList', ], 'FailureReason' => [ 'shape' => 'FailureReason', ], 'Type' => [ 'shape' => 'CertificateType', ], ], ], 'CertificateStatus' => [ 'type' => 'string', 'enum' => [ 'PENDING_VALIDATION', 'ISSUED', 'INACTIVE', 'EXPIRED', 'VALIDATION_TIMED_OUT', 'REVOKED', 'FAILED', ], ], 'CertificateStatuses' => [ 'type' => 'list', 'member' => [ 'shape' => 'CertificateStatus', ], ], 'CertificateSummary' => [ 'type' => 'structure', 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], 'DomainName' => [ 'shape' => 'DomainNameString', ], ], ], 'CertificateSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CertificateSummary', ], ], 'CertificateType' => [ 'type' => 'string', 'enum' => [ 'IMPORTED', 'AMAZON_ISSUED', ], ], 'DeleteCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], ], ], 'DescribeCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], ], ], 'DescribeCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'Certificate' => [ 'shape' => 'CertificateDetail', ], ], ], 'DomainList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DomainNameString', ], 'max' => 100, 'min' => 1, ], 'DomainNameString' => [ 'type' => 'string', 'max' => 253, 'min' => 1, 'pattern' => '^(\\*\\.)?(((?!-)[A-Za-z0-9-]{0,62}[A-Za-z0-9])\\.)+((?!-)[A-Za-z0-9-]{1,62}[A-Za-z0-9])$', ], 'DomainValidation' => [ 'type' => 'structure', 'required' => [ 'DomainName', ], 'members' => [ 'DomainName' => [ 'shape' => 'DomainNameString', ], 'ValidationEmails' => [ 'shape' => 'ValidationEmailList', ], 'ValidationDomain' => [ 'shape' => 'DomainNameString', ], ], ], 'DomainValidationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DomainValidation', ], 'max' => 1000, 'min' => 1, ], 'DomainValidationOption' => [ 'type' => 'structure', 'required' => [ 'DomainName', 'ValidationDomain', ], 'members' => [ 'DomainName' => [ 'shape' => 'DomainNameString', ], 'ValidationDomain' => [ 'shape' => 'DomainNameString', ], ], ], 'DomainValidationOptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DomainValidationOption', ], 'max' => 100, 'min' => 1, ], 'FailureReason' => [ 'type' => 'string', 'enum' => [ 'NO_AVAILABLE_CONTACTS', 'ADDITIONAL_VERIFICATION_REQUIRED', 'DOMAIN_NOT_ALLOWED', 'INVALID_PUBLIC_DOMAIN', 'OTHER', ], ], 'GetCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], ], ], 'GetCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'Certificate' => [ 'shape' => 'CertificateBody', ], 'CertificateChain' => [ 'shape' => 'CertificateChain', ], ], ], 'IdempotencyToken' => [ 'type' => 'string', 'max' => 32, 'min' => 1, 'pattern' => '\\w+', ], 'ImportCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'Certificate', 'PrivateKey', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], 'Certificate' => [ 'shape' => 'CertificateBodyBlob', ], 'PrivateKey' => [ 'shape' => 'PrivateKeyBlob', ], 'CertificateChain' => [ 'shape' => 'CertificateChainBlob', ], ], ], 'ImportCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], ], ], 'InUseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'InvalidArnException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'InvalidDomainValidationOptionsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'InvalidStateException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'InvalidTagException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'KeyAlgorithm' => [ 'type' => 'string', 'enum' => [ 'RSA_2048', 'RSA_1024', 'EC_prime256v1', ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'ListCertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'CertificateStatuses' => [ 'shape' => 'CertificateStatuses', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxItems' => [ 'shape' => 'MaxItems', ], ], ], 'ListCertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', ], 'CertificateSummaryList' => [ 'shape' => 'CertificateSummaryList', ], ], ], 'ListTagsForCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], ], ], 'ListTagsForCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'Tags' => [ 'shape' => 'TagList', ], ], ], 'MaxItems' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'NextToken' => [ 'type' => 'string', 'max' => 320, 'min' => 1, 'pattern' => '[\\u0009\\u000A\\u000D\\u0020-\\u00FF]*', ], 'PrivateKeyBlob' => [ 'type' => 'blob', 'max' => 524288, 'min' => 1, 'sensitive' => true, ], 'RemoveTagsFromCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', 'Tags', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'RequestCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'DomainName', ], 'members' => [ 'DomainName' => [ 'shape' => 'DomainNameString', ], 'SubjectAlternativeNames' => [ 'shape' => 'DomainList', ], 'IdempotencyToken' => [ 'shape' => 'IdempotencyToken', ], 'DomainValidationOptions' => [ 'shape' => 'DomainValidationOptionList', ], ], ], 'RequestCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], ], ], 'RequestInProgressException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'ResendValidationEmailRequest' => [ 'type' => 'structure', 'required' => [ 'CertificateArn', 'Domain', 'ValidationDomain', ], 'members' => [ 'CertificateArn' => [ 'shape' => 'Arn', ], 'Domain' => [ 'shape' => 'DomainNameString', ], 'ValidationDomain' => [ 'shape' => 'DomainNameString', ], ], ], 'ResourceInUseException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'RevocationReason' => [ 'type' => 'string', 'enum' => [ 'UNSPECIFIED', 'KEY_COMPROMISE', 'CA_COMPROMISE', 'AFFILIATION_CHANGED', 'SUPERCEDED', 'CESSATION_OF_OPERATION', 'CERTIFICATE_HOLD', 'REMOVE_FROM_CRL', 'PRIVILEGE_WITHDRAWN', 'A_A_COMPROMISE', ], ], 'String' => [ 'type' => 'string', ], 'TStamp' => [ 'type' => 'timestamp', ], 'Tag' => [ 'type' => 'structure', 'required' => [ 'Key', ], 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@]*', ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], 'max' => 50, 'min' => 1, ], 'TagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 0, 'pattern' => '[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@]*', ], 'TooManyTagsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'exception' => true, ], 'ValidationEmailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/api-2.json.php index d4169d5d9..f298213dc 100644 --- a/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2015-07-09', 'endpointPrefix' => 'apigateway', 'protocol' => 'rest-json', 'serviceFullName' => 'Amazon API Gateway', 'signatureVersion' => 'v4', ], 'operations' => [ 'CreateApiKey' => [ 'name' => 'CreateApiKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/apikeys', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateApiKeyRequest', ], 'output' => [ 'shape' => 'ApiKey', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], ], ], 'CreateAuthorizer' => [ 'name' => 'CreateAuthorizer', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/authorizers', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateAuthorizerRequest', ], 'output' => [ 'shape' => 'Authorizer', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateBasePathMapping' => [ 'name' => 'CreateBasePathMapping', 'http' => [ 'method' => 'POST', 'requestUri' => '/domainnames/{domain_name}/basepathmappings', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateBasePathMappingRequest', ], 'output' => [ 'shape' => 'BasePathMapping', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateDeployment' => [ 'name' => 'CreateDeployment', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/deployments', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateDeploymentRequest', ], 'output' => [ 'shape' => 'Deployment', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'CreateDomainName' => [ 'name' => 'CreateDomainName', 'http' => [ 'method' => 'POST', 'requestUri' => '/domainnames', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateDomainNameRequest', ], 'output' => [ 'shape' => 'DomainName', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateModel' => [ 'name' => 'CreateModel', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/models', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateModelRequest', ], 'output' => [ 'shape' => 'Model', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateResource' => [ 'name' => 'CreateResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/resources/{parent_id}', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateResourceRequest', ], 'output' => [ 'shape' => 'Resource', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateRestApi' => [ 'name' => 'CreateRestApi', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateRestApiRequest', ], 'output' => [ 'shape' => 'RestApi', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateStage' => [ 'name' => 'CreateStage', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/stages', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateStageRequest', ], 'output' => [ 'shape' => 'Stage', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateUsagePlan' => [ 'name' => 'CreateUsagePlan', 'http' => [ 'method' => 'POST', 'requestUri' => '/usageplans', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateUsagePlanRequest', ], 'output' => [ 'shape' => 'UsagePlan', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ConflictException', ], ], ], 'CreateUsagePlanKey' => [ 'name' => 'CreateUsagePlanKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/usageplans/{usageplanId}/keys', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateUsagePlanKeyRequest', ], 'output' => [ 'shape' => 'UsagePlanKey', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'DeleteApiKey' => [ 'name' => 'DeleteApiKey', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/apikeys/{api_Key}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteApiKeyRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'DeleteAuthorizer' => [ 'name' => 'DeleteAuthorizer', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/authorizers/{authorizer_id}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteAuthorizerRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], ], ], 'DeleteBasePathMapping' => [ 'name' => 'DeleteBasePathMapping', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/domainnames/{domain_name}/basepathmappings/{base_path}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteBasePathMappingRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'DeleteClientCertificate' => [ 'name' => 'DeleteClientCertificate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/clientcertificates/{clientcertificate_id}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteClientCertificateRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], ], ], 'DeleteDeployment' => [ 'name' => 'DeleteDeployment', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/deployments/{deployment_id}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteDeploymentRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'DeleteDomainName' => [ 'name' => 'DeleteDomainName', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/domainnames/{domain_name}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteDomainNameRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'DeleteIntegration' => [ 'name' => 'DeleteIntegration', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteIntegrationRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'DeleteIntegrationResponse' => [ 'name' => 'DeleteIntegrationResponse', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteIntegrationResponseRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], ], ], 'DeleteMethod' => [ 'name' => 'DeleteMethod', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteMethodRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'DeleteMethodResponse' => [ 'name' => 'DeleteMethodResponse', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteMethodResponseRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], ], ], 'DeleteModel' => [ 'name' => 'DeleteModel', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/models/{model_name}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteModelRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], ], ], 'DeleteResource' => [ 'name' => 'DeleteResource', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteResourceRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'DeleteRestApi' => [ 'name' => 'DeleteRestApi', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteRestApiRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], ], ], 'DeleteStage' => [ 'name' => 'DeleteStage', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteStageRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], ], ], 'DeleteUsagePlan' => [ 'name' => 'DeleteUsagePlan', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/usageplans/{usageplanId}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteUsagePlanRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], ], ], 'DeleteUsagePlanKey' => [ 'name' => 'DeleteUsagePlanKey', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/usageplans/{usageplanId}/keys/{keyId}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteUsagePlanKeyRequest', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'FlushStageAuthorizersCache' => [ 'name' => 'FlushStageAuthorizersCache', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}/cache/authorizers', 'responseCode' => 202, ], 'input' => [ 'shape' => 'FlushStageAuthorizersCacheRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'FlushStageCache' => [ 'name' => 'FlushStageCache', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}/cache/data', 'responseCode' => 202, ], 'input' => [ 'shape' => 'FlushStageCacheRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GenerateClientCertificate' => [ 'name' => 'GenerateClientCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/clientcertificates', 'responseCode' => 201, ], 'input' => [ 'shape' => 'GenerateClientCertificateRequest', ], 'output' => [ 'shape' => 'ClientCertificate', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'GetAccount' => [ 'name' => 'GetAccount', 'http' => [ 'method' => 'GET', 'requestUri' => '/account', ], 'input' => [ 'shape' => 'GetAccountRequest', ], 'output' => [ 'shape' => 'Account', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetApiKey' => [ 'name' => 'GetApiKey', 'http' => [ 'method' => 'GET', 'requestUri' => '/apikeys/{api_Key}', ], 'input' => [ 'shape' => 'GetApiKeyRequest', ], 'output' => [ 'shape' => 'ApiKey', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetApiKeys' => [ 'name' => 'GetApiKeys', 'http' => [ 'method' => 'GET', 'requestUri' => '/apikeys', ], 'input' => [ 'shape' => 'GetApiKeysRequest', ], 'output' => [ 'shape' => 'ApiKeys', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetAuthorizer' => [ 'name' => 'GetAuthorizer', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/authorizers/{authorizer_id}', ], 'input' => [ 'shape' => 'GetAuthorizerRequest', ], 'output' => [ 'shape' => 'Authorizer', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetAuthorizers' => [ 'name' => 'GetAuthorizers', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/authorizers', ], 'input' => [ 'shape' => 'GetAuthorizersRequest', ], 'output' => [ 'shape' => 'Authorizers', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetBasePathMapping' => [ 'name' => 'GetBasePathMapping', 'http' => [ 'method' => 'GET', 'requestUri' => '/domainnames/{domain_name}/basepathmappings/{base_path}', ], 'input' => [ 'shape' => 'GetBasePathMappingRequest', ], 'output' => [ 'shape' => 'BasePathMapping', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetBasePathMappings' => [ 'name' => 'GetBasePathMappings', 'http' => [ 'method' => 'GET', 'requestUri' => '/domainnames/{domain_name}/basepathmappings', ], 'input' => [ 'shape' => 'GetBasePathMappingsRequest', ], 'output' => [ 'shape' => 'BasePathMappings', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetClientCertificate' => [ 'name' => 'GetClientCertificate', 'http' => [ 'method' => 'GET', 'requestUri' => '/clientcertificates/{clientcertificate_id}', ], 'input' => [ 'shape' => 'GetClientCertificateRequest', ], 'output' => [ 'shape' => 'ClientCertificate', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetClientCertificates' => [ 'name' => 'GetClientCertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/clientcertificates', ], 'input' => [ 'shape' => 'GetClientCertificatesRequest', ], 'output' => [ 'shape' => 'ClientCertificates', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetDeployment' => [ 'name' => 'GetDeployment', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/deployments/{deployment_id}', ], 'input' => [ 'shape' => 'GetDeploymentRequest', ], 'output' => [ 'shape' => 'Deployment', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'GetDeployments' => [ 'name' => 'GetDeployments', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/deployments', ], 'input' => [ 'shape' => 'GetDeploymentsRequest', ], 'output' => [ 'shape' => 'Deployments', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'GetDomainName' => [ 'name' => 'GetDomainName', 'http' => [ 'method' => 'GET', 'requestUri' => '/domainnames/{domain_name}', ], 'input' => [ 'shape' => 'GetDomainNameRequest', ], 'output' => [ 'shape' => 'DomainName', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetDomainNames' => [ 'name' => 'GetDomainNames', 'http' => [ 'method' => 'GET', 'requestUri' => '/domainnames', ], 'input' => [ 'shape' => 'GetDomainNamesRequest', ], 'output' => [ 'shape' => 'DomainNames', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetExport' => [ 'name' => 'GetExport', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}/exports/{export_type}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'GetExportRequest', ], 'output' => [ 'shape' => 'ExportResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetIntegration' => [ 'name' => 'GetIntegration', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration', ], 'input' => [ 'shape' => 'GetIntegrationRequest', ], 'output' => [ 'shape' => 'Integration', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetIntegrationResponse' => [ 'name' => 'GetIntegrationResponse', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}', ], 'input' => [ 'shape' => 'GetIntegrationResponseRequest', ], 'output' => [ 'shape' => 'IntegrationResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetMethod' => [ 'name' => 'GetMethod', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}', ], 'input' => [ 'shape' => 'GetMethodRequest', ], 'output' => [ 'shape' => 'Method', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetMethodResponse' => [ 'name' => 'GetMethodResponse', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}', ], 'input' => [ 'shape' => 'GetMethodResponseRequest', ], 'output' => [ 'shape' => 'MethodResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetModel' => [ 'name' => 'GetModel', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/models/{model_name}', ], 'input' => [ 'shape' => 'GetModelRequest', ], 'output' => [ 'shape' => 'Model', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetModelTemplate' => [ 'name' => 'GetModelTemplate', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/models/{model_name}/default_template', ], 'input' => [ 'shape' => 'GetModelTemplateRequest', ], 'output' => [ 'shape' => 'Template', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetModels' => [ 'name' => 'GetModels', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/models', ], 'input' => [ 'shape' => 'GetModelsRequest', ], 'output' => [ 'shape' => 'Models', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetResource' => [ 'name' => 'GetResource', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}', ], 'input' => [ 'shape' => 'GetResourceRequest', ], 'output' => [ 'shape' => 'Resource', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetResources' => [ 'name' => 'GetResources', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/resources', ], 'input' => [ 'shape' => 'GetResourcesRequest', ], 'output' => [ 'shape' => 'Resources', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetRestApi' => [ 'name' => 'GetRestApi', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}', ], 'input' => [ 'shape' => 'GetRestApiRequest', ], 'output' => [ 'shape' => 'RestApi', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetRestApis' => [ 'name' => 'GetRestApis', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis', ], 'input' => [ 'shape' => 'GetRestApisRequest', ], 'output' => [ 'shape' => 'RestApis', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetSdk' => [ 'name' => 'GetSdk', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}/sdks/{sdk_type}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'GetSdkRequest', ], 'output' => [ 'shape' => 'SdkResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetStage' => [ 'name' => 'GetStage', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}', ], 'input' => [ 'shape' => 'GetStageRequest', ], 'output' => [ 'shape' => 'Stage', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetStages' => [ 'name' => 'GetStages', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/stages', ], 'input' => [ 'shape' => 'GetStagesRequest', ], 'output' => [ 'shape' => 'Stages', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetUsage' => [ 'name' => 'GetUsage', 'http' => [ 'method' => 'GET', 'requestUri' => '/usageplans/{usageplanId}/usage', ], 'input' => [ 'shape' => 'GetUsageRequest', ], 'output' => [ 'shape' => 'Usage', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetUsagePlan' => [ 'name' => 'GetUsagePlan', 'http' => [ 'method' => 'GET', 'requestUri' => '/usageplans/{usageplanId}', ], 'input' => [ 'shape' => 'GetUsagePlanRequest', ], 'output' => [ 'shape' => 'UsagePlan', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetUsagePlanKey' => [ 'name' => 'GetUsagePlanKey', 'http' => [ 'method' => 'GET', 'requestUri' => '/usageplans/{usageplanId}/keys/{keyId}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'GetUsagePlanKeyRequest', ], 'output' => [ 'shape' => 'UsagePlanKey', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetUsagePlanKeys' => [ 'name' => 'GetUsagePlanKeys', 'http' => [ 'method' => 'GET', 'requestUri' => '/usageplans/{usageplanId}/keys', ], 'input' => [ 'shape' => 'GetUsagePlanKeysRequest', ], 'output' => [ 'shape' => 'UsagePlanKeys', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetUsagePlans' => [ 'name' => 'GetUsagePlans', 'http' => [ 'method' => 'GET', 'requestUri' => '/usageplans', ], 'input' => [ 'shape' => 'GetUsagePlansRequest', ], 'output' => [ 'shape' => 'UsagePlans', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'ImportApiKeys' => [ 'name' => 'ImportApiKeys', 'http' => [ 'method' => 'POST', 'requestUri' => '/apikeys?mode=import', 'responseCode' => 201, ], 'input' => [ 'shape' => 'ImportApiKeysRequest', ], 'output' => [ 'shape' => 'ApiKeyIds', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], ], ], 'ImportRestApi' => [ 'name' => 'ImportRestApi', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis?mode=import', 'responseCode' => 201, ], 'input' => [ 'shape' => 'ImportRestApiRequest', ], 'output' => [ 'shape' => 'RestApi', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'PutIntegration' => [ 'name' => 'PutIntegration', 'http' => [ 'method' => 'PUT', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration', 'responseCode' => 201, ], 'input' => [ 'shape' => 'PutIntegrationRequest', ], 'output' => [ 'shape' => 'Integration', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'PutIntegrationResponse' => [ 'name' => 'PutIntegrationResponse', 'http' => [ 'method' => 'PUT', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}', 'responseCode' => 201, ], 'input' => [ 'shape' => 'PutIntegrationResponseRequest', ], 'output' => [ 'shape' => 'IntegrationResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'PutMethod' => [ 'name' => 'PutMethod', 'http' => [ 'method' => 'PUT', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}', 'responseCode' => 201, ], 'input' => [ 'shape' => 'PutMethodRequest', ], 'output' => [ 'shape' => 'Method', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'PutMethodResponse' => [ 'name' => 'PutMethodResponse', 'http' => [ 'method' => 'PUT', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}', 'responseCode' => 201, ], 'input' => [ 'shape' => 'PutMethodResponseRequest', ], 'output' => [ 'shape' => 'MethodResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'PutRestApi' => [ 'name' => 'PutRestApi', 'http' => [ 'method' => 'PUT', 'requestUri' => '/restapis/{restapi_id}', ], 'input' => [ 'shape' => 'PutRestApiRequest', ], 'output' => [ 'shape' => 'RestApi', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'TestInvokeAuthorizer' => [ 'name' => 'TestInvokeAuthorizer', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/authorizers/{authorizer_id}', ], 'input' => [ 'shape' => 'TestInvokeAuthorizerRequest', ], 'output' => [ 'shape' => 'TestInvokeAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'TestInvokeMethod' => [ 'name' => 'TestInvokeMethod', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}', ], 'input' => [ 'shape' => 'TestInvokeMethodRequest', ], 'output' => [ 'shape' => 'TestInvokeMethodResponse', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateAccount' => [ 'name' => 'UpdateAccount', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/account', ], 'input' => [ 'shape' => 'UpdateAccountRequest', ], 'output' => [ 'shape' => 'Account', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateApiKey' => [ 'name' => 'UpdateApiKey', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/apikeys/{api_Key}', ], 'input' => [ 'shape' => 'UpdateApiKeyRequest', ], 'output' => [ 'shape' => 'ApiKey', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'UpdateAuthorizer' => [ 'name' => 'UpdateAuthorizer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/authorizers/{authorizer_id}', ], 'input' => [ 'shape' => 'UpdateAuthorizerRequest', ], 'output' => [ 'shape' => 'Authorizer', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateBasePathMapping' => [ 'name' => 'UpdateBasePathMapping', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/domainnames/{domain_name}/basepathmappings/{base_path}', ], 'input' => [ 'shape' => 'UpdateBasePathMappingRequest', ], 'output' => [ 'shape' => 'BasePathMapping', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateClientCertificate' => [ 'name' => 'UpdateClientCertificate', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/clientcertificates/{clientcertificate_id}', ], 'input' => [ 'shape' => 'UpdateClientCertificateRequest', ], 'output' => [ 'shape' => 'ClientCertificate', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], ], ], 'UpdateDeployment' => [ 'name' => 'UpdateDeployment', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/deployments/{deployment_id}', ], 'input' => [ 'shape' => 'UpdateDeploymentRequest', ], 'output' => [ 'shape' => 'Deployment', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'UpdateDomainName' => [ 'name' => 'UpdateDomainName', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/domainnames/{domain_name}', ], 'input' => [ 'shape' => 'UpdateDomainNameRequest', ], 'output' => [ 'shape' => 'DomainName', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateIntegration' => [ 'name' => 'UpdateIntegration', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration', ], 'input' => [ 'shape' => 'UpdateIntegrationRequest', ], 'output' => [ 'shape' => 'Integration', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'UpdateIntegrationResponse' => [ 'name' => 'UpdateIntegrationResponse', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}', ], 'input' => [ 'shape' => 'UpdateIntegrationResponseRequest', ], 'output' => [ 'shape' => 'IntegrationResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateMethod' => [ 'name' => 'UpdateMethod', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}', ], 'input' => [ 'shape' => 'UpdateMethodRequest', ], 'output' => [ 'shape' => 'Method', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateMethodResponse' => [ 'name' => 'UpdateMethodResponse', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}', 'responseCode' => 201, ], 'input' => [ 'shape' => 'UpdateMethodResponseRequest', ], 'output' => [ 'shape' => 'MethodResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateModel' => [ 'name' => 'UpdateModel', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/models/{model_name}', ], 'input' => [ 'shape' => 'UpdateModelRequest', ], 'output' => [ 'shape' => 'Model', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateResource' => [ 'name' => 'UpdateResource', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}', ], 'input' => [ 'shape' => 'UpdateResourceRequest', ], 'output' => [ 'shape' => 'Resource', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateRestApi' => [ 'name' => 'UpdateRestApi', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}', ], 'input' => [ 'shape' => 'UpdateRestApiRequest', ], 'output' => [ 'shape' => 'RestApi', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateStage' => [ 'name' => 'UpdateStage', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}', ], 'input' => [ 'shape' => 'UpdateStageRequest', ], 'output' => [ 'shape' => 'Stage', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateUsage' => [ 'name' => 'UpdateUsage', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/usageplans/{usageplanId}/keys/{keyId}/usage', ], 'input' => [ 'shape' => 'UpdateUsageRequest', ], 'output' => [ 'shape' => 'Usage', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], ], ], 'UpdateUsagePlan' => [ 'name' => 'UpdateUsagePlan', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/usageplans/{usageplanId}', ], 'input' => [ 'shape' => 'UpdateUsagePlanRequest', ], 'output' => [ 'shape' => 'UsagePlan', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], ], ], ], 'shapes' => [ 'Account' => [ 'type' => 'structure', 'members' => [ 'cloudwatchRoleArn' => [ 'shape' => 'String', ], 'throttleSettings' => [ 'shape' => 'ThrottleSettings', ], 'features' => [ 'shape' => 'ListOfString', ], 'apiKeyVersion' => [ 'shape' => 'String', ], ], ], 'ApiKey' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'enabled' => [ 'shape' => 'Boolean', ], 'createdDate' => [ 'shape' => 'Timestamp', ], 'lastUpdatedDate' => [ 'shape' => 'Timestamp', ], 'stageKeys' => [ 'shape' => 'ListOfString', ], ], ], 'ApiKeyIds' => [ 'type' => 'structure', 'members' => [ 'ids' => [ 'shape' => 'ListOfString', ], 'warnings' => [ 'shape' => 'ListOfString', ], ], ], 'ApiKeys' => [ 'type' => 'structure', 'members' => [ 'warnings' => [ 'shape' => 'ListOfString', ], 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfApiKey', 'locationName' => 'item', ], ], ], 'ApiKeysFormat' => [ 'type' => 'string', 'enum' => [ 'csv', ], ], 'ApiStage' => [ 'type' => 'structure', 'members' => [ 'apiId' => [ 'shape' => 'String', ], 'stage' => [ 'shape' => 'String', ], ], ], 'Authorizer' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'AuthorizerType', ], 'providerARNs' => [ 'shape' => 'ListOfARNs', ], 'authType' => [ 'shape' => 'String', ], 'authorizerUri' => [ 'shape' => 'String', ], 'authorizerCredentials' => [ 'shape' => 'String', ], 'identitySource' => [ 'shape' => 'String', ], 'identityValidationExpression' => [ 'shape' => 'String', ], 'authorizerResultTtlInSeconds' => [ 'shape' => 'NullableInteger', ], ], ], 'AuthorizerType' => [ 'type' => 'string', 'enum' => [ 'TOKEN', 'COGNITO_USER_POOLS', ], ], 'Authorizers' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfAuthorizer', 'locationName' => 'item', ], ], ], 'BadRequestException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'BasePathMapping' => [ 'type' => 'structure', 'members' => [ 'basePath' => [ 'shape' => 'String', ], 'restApiId' => [ 'shape' => 'String', ], 'stage' => [ 'shape' => 'String', ], ], ], 'BasePathMappings' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfBasePathMapping', 'locationName' => 'item', ], ], ], 'Blob' => [ 'type' => 'blob', ], 'Boolean' => [ 'type' => 'boolean', ], 'CacheClusterSize' => [ 'type' => 'string', 'enum' => [ '0.5', '1.6', '6.1', '13.5', '28.4', '58.2', '118', '237', ], ], 'CacheClusterStatus' => [ 'type' => 'string', 'enum' => [ 'CREATE_IN_PROGRESS', 'AVAILABLE', 'DELETE_IN_PROGRESS', 'NOT_AVAILABLE', 'FLUSH_IN_PROGRESS', ], ], 'ClientCertificate' => [ 'type' => 'structure', 'members' => [ 'clientCertificateId' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'pemEncodedCertificate' => [ 'shape' => 'String', ], 'createdDate' => [ 'shape' => 'Timestamp', ], 'expirationDate' => [ 'shape' => 'Timestamp', ], ], ], 'ClientCertificates' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfClientCertificate', 'locationName' => 'item', ], ], ], 'ConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'CreateApiKeyRequest' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'enabled' => [ 'shape' => 'Boolean', ], 'generateDistinctId' => [ 'shape' => 'Boolean', ], 'value' => [ 'shape' => 'String', ], 'stageKeys' => [ 'shape' => 'ListOfStageKeys', ], ], ], 'CreateAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'name', 'type', 'identitySource', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'name' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'AuthorizerType', ], 'providerARNs' => [ 'shape' => 'ListOfARNs', ], 'authType' => [ 'shape' => 'String', ], 'authorizerUri' => [ 'shape' => 'String', ], 'authorizerCredentials' => [ 'shape' => 'String', ], 'identitySource' => [ 'shape' => 'String', ], 'identityValidationExpression' => [ 'shape' => 'String', ], 'authorizerResultTtlInSeconds' => [ 'shape' => 'NullableInteger', ], ], ], 'CreateBasePathMappingRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', 'restApiId', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], 'basePath' => [ 'shape' => 'String', ], 'restApiId' => [ 'shape' => 'String', ], 'stage' => [ 'shape' => 'String', ], ], ], 'CreateDeploymentRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', ], 'stageDescription' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'cacheClusterEnabled' => [ 'shape' => 'NullableBoolean', ], 'cacheClusterSize' => [ 'shape' => 'CacheClusterSize', ], 'variables' => [ 'shape' => 'MapOfStringToString', ], ], ], 'CreateDomainNameRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', 'certificateName', 'certificateBody', 'certificatePrivateKey', 'certificateChain', ], 'members' => [ 'domainName' => [ 'shape' => 'String', ], 'certificateName' => [ 'shape' => 'String', ], 'certificateBody' => [ 'shape' => 'String', ], 'certificatePrivateKey' => [ 'shape' => 'String', ], 'certificateChain' => [ 'shape' => 'String', ], ], ], 'CreateModelRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'name', 'contentType', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'schema' => [ 'shape' => 'String', ], 'contentType' => [ 'shape' => 'String', ], ], ], 'CreateResourceRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'parentId', 'pathPart', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'parentId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'parent_id', ], 'pathPart' => [ 'shape' => 'String', ], ], ], 'CreateRestApiRequest' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'cloneFrom' => [ 'shape' => 'String', ], ], ], 'CreateStageRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', 'deploymentId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', ], 'deploymentId' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'cacheClusterEnabled' => [ 'shape' => 'Boolean', ], 'cacheClusterSize' => [ 'shape' => 'CacheClusterSize', ], 'variables' => [ 'shape' => 'MapOfStringToString', ], ], ], 'CreateUsagePlanKeyRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', 'keyId', 'keyType', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'keyId' => [ 'shape' => 'String', ], 'keyType' => [ 'shape' => 'String', ], ], ], 'CreateUsagePlanRequest' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'apiStages' => [ 'shape' => 'ListOfApiStage', ], 'throttle' => [ 'shape' => 'ThrottleSettings', ], 'quota' => [ 'shape' => 'QuotaSettings', ], ], ], 'DeleteApiKeyRequest' => [ 'type' => 'structure', 'required' => [ 'apiKey', ], 'members' => [ 'apiKey' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'api_Key', ], ], ], 'DeleteAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'authorizerId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'authorizerId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'authorizer_id', ], ], ], 'DeleteBasePathMappingRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', 'basePath', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], 'basePath' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'base_path', ], ], ], 'DeleteClientCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'clientCertificateId', ], 'members' => [ 'clientCertificateId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'clientcertificate_id', ], ], ], 'DeleteDeploymentRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'deploymentId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'deploymentId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'deployment_id', ], ], ], 'DeleteDomainNameRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], ], ], 'DeleteIntegrationRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], ], ], 'DeleteIntegrationResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], ], ], 'DeleteMethodRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], ], ], 'DeleteMethodResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], ], ], 'DeleteModelRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'modelName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'modelName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'model_name', ], ], ], 'DeleteResourceRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], ], ], 'DeleteRestApiRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], ], ], 'DeleteStageRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], ], ], 'DeleteUsagePlanKeyRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', 'keyId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'keyId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'keyId', ], ], ], 'DeleteUsagePlanRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], ], ], 'Deployment' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'createdDate' => [ 'shape' => 'Timestamp', ], 'apiSummary' => [ 'shape' => 'PathToMapOfMethodSnapshot', ], ], ], 'Deployments' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfDeployment', 'locationName' => 'item', ], ], ], 'DomainName' => [ 'type' => 'structure', 'members' => [ 'domainName' => [ 'shape' => 'String', ], 'certificateName' => [ 'shape' => 'String', ], 'certificateUploadDate' => [ 'shape' => 'Timestamp', ], 'distributionDomainName' => [ 'shape' => 'String', ], ], ], 'DomainNames' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfDomainName', 'locationName' => 'item', ], ], ], 'Double' => [ 'type' => 'double', ], 'ExportResponse' => [ 'type' => 'structure', 'members' => [ 'contentType' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Content-Type', ], 'contentDisposition' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'body' => [ 'shape' => 'Blob', ], ], 'payload' => 'body', ], 'FlushStageAuthorizersCacheRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], ], ], 'FlushStageCacheRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], ], ], 'GenerateClientCertificateRequest' => [ 'type' => 'structure', 'members' => [ 'description' => [ 'shape' => 'String', ], ], ], 'GetAccountRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetApiKeyRequest' => [ 'type' => 'structure', 'required' => [ 'apiKey', ], 'members' => [ 'apiKey' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'api_Key', ], 'includeValue' => [ 'shape' => 'Boolean', 'location' => 'querystring', 'locationName' => 'includeValue', ], ], ], 'GetApiKeysRequest' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], 'nameQuery' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'name', ], 'includeValues' => [ 'shape' => 'Boolean', 'location' => 'querystring', 'locationName' => 'includeValues', ], ], ], 'GetAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'authorizerId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'authorizerId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'authorizer_id', ], ], ], 'GetAuthorizersRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetBasePathMappingRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', 'basePath', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], 'basePath' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'base_path', ], ], ], 'GetBasePathMappingsRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetClientCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'clientCertificateId', ], 'members' => [ 'clientCertificateId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'clientcertificate_id', ], ], ], 'GetClientCertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetDeploymentRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'deploymentId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'deploymentId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'deployment_id', ], ], ], 'GetDeploymentsRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetDomainNameRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], ], ], 'GetDomainNamesRequest' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetExportRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', 'exportType', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], 'exportType' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'export_type', ], 'parameters' => [ 'shape' => 'MapOfStringToString', 'location' => 'querystring', ], 'accepts' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Accept', ], ], ], 'GetIntegrationRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], ], ], 'GetIntegrationResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], ], ], 'GetMethodRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], ], ], 'GetMethodResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], ], ], 'GetModelRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'modelName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'modelName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'model_name', ], 'flatten' => [ 'shape' => 'Boolean', 'location' => 'querystring', 'locationName' => 'flatten', ], ], ], 'GetModelTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'modelName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'modelName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'model_name', ], ], ], 'GetModelsRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetResourceRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], ], ], 'GetResourcesRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetRestApiRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], ], ], 'GetRestApisRequest' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetSdkRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', 'sdkType', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], 'sdkType' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'sdk_type', ], 'parameters' => [ 'shape' => 'MapOfStringToString', 'location' => 'querystring', ], ], ], 'GetStageRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], ], ], 'GetStagesRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'deploymentId' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'deploymentId', ], ], ], 'GetUsagePlanKeyRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', 'keyId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'keyId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'keyId', ], ], ], 'GetUsagePlanKeysRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], 'nameQuery' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'name', ], ], ], 'GetUsagePlanRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], ], ], 'GetUsagePlansRequest' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'keyId' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'keyId', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetUsageRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', 'startDate', 'endDate', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'keyId' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'keyId', ], 'startDate' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'startDate', ], 'endDate' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'endDate', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'ImportApiKeysRequest' => [ 'type' => 'structure', 'required' => [ 'body', 'format', ], 'members' => [ 'body' => [ 'shape' => 'Blob', ], 'format' => [ 'shape' => 'ApiKeysFormat', 'location' => 'querystring', 'locationName' => 'format', ], 'failOnWarnings' => [ 'shape' => 'Boolean', 'location' => 'querystring', 'locationName' => 'failonwarnings', ], ], 'payload' => 'body', ], 'ImportRestApiRequest' => [ 'type' => 'structure', 'required' => [ 'body', ], 'members' => [ 'failOnWarnings' => [ 'shape' => 'Boolean', 'location' => 'querystring', 'locationName' => 'failonwarnings', ], 'parameters' => [ 'shape' => 'MapOfStringToString', 'location' => 'querystring', ], 'body' => [ 'shape' => 'Blob', ], ], 'payload' => 'body', ], 'Integer' => [ 'type' => 'integer', ], 'Integration' => [ 'type' => 'structure', 'members' => [ 'type' => [ 'shape' => 'IntegrationType', ], 'httpMethod' => [ 'shape' => 'String', ], 'uri' => [ 'shape' => 'String', ], 'credentials' => [ 'shape' => 'String', ], 'requestParameters' => [ 'shape' => 'MapOfStringToString', ], 'requestTemplates' => [ 'shape' => 'MapOfStringToString', ], 'passthroughBehavior' => [ 'shape' => 'String', ], 'cacheNamespace' => [ 'shape' => 'String', ], 'cacheKeyParameters' => [ 'shape' => 'ListOfString', ], 'integrationResponses' => [ 'shape' => 'MapOfIntegrationResponse', ], ], ], 'IntegrationResponse' => [ 'type' => 'structure', 'members' => [ 'statusCode' => [ 'shape' => 'StatusCode', ], 'selectionPattern' => [ 'shape' => 'String', ], 'responseParameters' => [ 'shape' => 'MapOfStringToString', ], 'responseTemplates' => [ 'shape' => 'MapOfStringToString', ], ], ], 'IntegrationType' => [ 'type' => 'string', 'enum' => [ 'HTTP', 'AWS', 'MOCK', ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'retryAfterSeconds' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Retry-After', ], 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], 'ListOfARNs' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProviderARN', ], ], 'ListOfApiKey' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApiKey', ], ], 'ListOfApiStage' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApiStage', ], ], 'ListOfAuthorizer' => [ 'type' => 'list', 'member' => [ 'shape' => 'Authorizer', ], ], 'ListOfBasePathMapping' => [ 'type' => 'list', 'member' => [ 'shape' => 'BasePathMapping', ], ], 'ListOfClientCertificate' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientCertificate', ], ], 'ListOfDeployment' => [ 'type' => 'list', 'member' => [ 'shape' => 'Deployment', ], ], 'ListOfDomainName' => [ 'type' => 'list', 'member' => [ 'shape' => 'DomainName', ], ], 'ListOfLong' => [ 'type' => 'list', 'member' => [ 'shape' => 'Long', ], ], 'ListOfModel' => [ 'type' => 'list', 'member' => [ 'shape' => 'Model', ], ], 'ListOfPatchOperation' => [ 'type' => 'list', 'member' => [ 'shape' => 'PatchOperation', ], ], 'ListOfResource' => [ 'type' => 'list', 'member' => [ 'shape' => 'Resource', ], ], 'ListOfRestApi' => [ 'type' => 'list', 'member' => [ 'shape' => 'RestApi', ], ], 'ListOfStage' => [ 'type' => 'list', 'member' => [ 'shape' => 'Stage', ], ], 'ListOfStageKeys' => [ 'type' => 'list', 'member' => [ 'shape' => 'StageKey', ], ], 'ListOfString' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ListOfUsage' => [ 'type' => 'list', 'member' => [ 'shape' => 'ListOfLong', ], ], 'ListOfUsagePlan' => [ 'type' => 'list', 'member' => [ 'shape' => 'UsagePlan', ], ], 'ListOfUsagePlanKey' => [ 'type' => 'list', 'member' => [ 'shape' => 'UsagePlanKey', ], ], 'Long' => [ 'type' => 'long', ], 'MapOfHeaderValues' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'MapOfIntegrationResponse' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'IntegrationResponse', ], ], 'MapOfKeyUsages' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'ListOfUsage', ], ], 'MapOfMethod' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'Method', ], ], 'MapOfMethodResponse' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'MethodResponse', ], ], 'MapOfMethodSettings' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'MethodSetting', ], ], 'MapOfMethodSnapshot' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'MethodSnapshot', ], ], 'MapOfStringToBoolean' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'NullableBoolean', ], ], 'MapOfStringToList' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'ListOfString', ], ], 'MapOfStringToString' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'Method' => [ 'type' => 'structure', 'members' => [ 'httpMethod' => [ 'shape' => 'String', ], 'authorizationType' => [ 'shape' => 'String', ], 'authorizerId' => [ 'shape' => 'String', ], 'apiKeyRequired' => [ 'shape' => 'NullableBoolean', ], 'requestParameters' => [ 'shape' => 'MapOfStringToBoolean', ], 'requestModels' => [ 'shape' => 'MapOfStringToString', ], 'methodResponses' => [ 'shape' => 'MapOfMethodResponse', ], 'methodIntegration' => [ 'shape' => 'Integration', ], ], ], 'MethodResponse' => [ 'type' => 'structure', 'members' => [ 'statusCode' => [ 'shape' => 'StatusCode', ], 'responseParameters' => [ 'shape' => 'MapOfStringToBoolean', ], 'responseModels' => [ 'shape' => 'MapOfStringToString', ], ], ], 'MethodSetting' => [ 'type' => 'structure', 'members' => [ 'metricsEnabled' => [ 'shape' => 'Boolean', ], 'loggingLevel' => [ 'shape' => 'String', ], 'dataTraceEnabled' => [ 'shape' => 'Boolean', ], 'throttlingBurstLimit' => [ 'shape' => 'Integer', ], 'throttlingRateLimit' => [ 'shape' => 'Double', ], 'cachingEnabled' => [ 'shape' => 'Boolean', ], 'cacheTtlInSeconds' => [ 'shape' => 'Integer', ], 'cacheDataEncrypted' => [ 'shape' => 'Boolean', ], 'requireAuthorizationForCacheControl' => [ 'shape' => 'Boolean', ], 'unauthorizedCacheControlHeaderStrategy' => [ 'shape' => 'UnauthorizedCacheControlHeaderStrategy', ], ], ], 'MethodSnapshot' => [ 'type' => 'structure', 'members' => [ 'authorizationType' => [ 'shape' => 'String', ], 'apiKeyRequired' => [ 'shape' => 'Boolean', ], ], ], 'Model' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'schema' => [ 'shape' => 'String', ], 'contentType' => [ 'shape' => 'String', ], ], ], 'Models' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfModel', 'locationName' => 'item', ], ], ], 'NotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NullableBoolean' => [ 'type' => 'boolean', ], 'NullableInteger' => [ 'type' => 'integer', ], 'PatchOperation' => [ 'type' => 'structure', 'members' => [ 'op' => [ 'shape' => 'op', ], 'path' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], 'from' => [ 'shape' => 'String', ], ], ], 'PathToMapOfMethodSnapshot' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'MapOfMethodSnapshot', ], ], 'ProviderARN' => [ 'type' => 'string', ], 'PutIntegrationRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'type', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'type' => [ 'shape' => 'IntegrationType', ], 'integrationHttpMethod' => [ 'shape' => 'String', 'locationName' => 'httpMethod', ], 'uri' => [ 'shape' => 'String', ], 'credentials' => [ 'shape' => 'String', ], 'requestParameters' => [ 'shape' => 'MapOfStringToString', ], 'requestTemplates' => [ 'shape' => 'MapOfStringToString', ], 'passthroughBehavior' => [ 'shape' => 'String', ], 'cacheNamespace' => [ 'shape' => 'String', ], 'cacheKeyParameters' => [ 'shape' => 'ListOfString', ], ], ], 'PutIntegrationResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], 'selectionPattern' => [ 'shape' => 'String', ], 'responseParameters' => [ 'shape' => 'MapOfStringToString', ], 'responseTemplates' => [ 'shape' => 'MapOfStringToString', ], ], ], 'PutMethodRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'authorizationType', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'authorizationType' => [ 'shape' => 'String', ], 'authorizerId' => [ 'shape' => 'String', ], 'apiKeyRequired' => [ 'shape' => 'Boolean', ], 'requestParameters' => [ 'shape' => 'MapOfStringToBoolean', ], 'requestModels' => [ 'shape' => 'MapOfStringToString', ], ], ], 'PutMethodResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], 'responseParameters' => [ 'shape' => 'MapOfStringToBoolean', ], 'responseModels' => [ 'shape' => 'MapOfStringToString', ], ], ], 'PutMode' => [ 'type' => 'string', 'enum' => [ 'merge', 'overwrite', ], ], 'PutRestApiRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'body', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'mode' => [ 'shape' => 'PutMode', 'location' => 'querystring', 'locationName' => 'mode', ], 'failOnWarnings' => [ 'shape' => 'Boolean', 'location' => 'querystring', 'locationName' => 'failonwarnings', ], 'parameters' => [ 'shape' => 'MapOfStringToString', 'location' => 'querystring', ], 'body' => [ 'shape' => 'Blob', ], ], 'payload' => 'body', ], 'QuotaPeriodType' => [ 'type' => 'string', 'enum' => [ 'DAY', 'WEEK', 'MONTH', ], ], 'QuotaSettings' => [ 'type' => 'structure', 'members' => [ 'limit' => [ 'shape' => 'Integer', ], 'offset' => [ 'shape' => 'Integer', ], 'period' => [ 'shape' => 'QuotaPeriodType', ], ], ], 'Resource' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'parentId' => [ 'shape' => 'String', ], 'pathPart' => [ 'shape' => 'String', ], 'path' => [ 'shape' => 'String', ], 'resourceMethods' => [ 'shape' => 'MapOfMethod', ], ], ], 'Resources' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfResource', 'locationName' => 'item', ], ], ], 'RestApi' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'createdDate' => [ 'shape' => 'Timestamp', ], 'warnings' => [ 'shape' => 'ListOfString', ], ], ], 'RestApis' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfRestApi', 'locationName' => 'item', ], ], ], 'SdkResponse' => [ 'type' => 'structure', 'members' => [ 'contentType' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Content-Type', ], 'contentDisposition' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'body' => [ 'shape' => 'Blob', ], ], 'payload' => 'body', ], 'ServiceUnavailableException' => [ 'type' => 'structure', 'members' => [ 'retryAfterSeconds' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Retry-After', ], 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], 'Stage' => [ 'type' => 'structure', 'members' => [ 'deploymentId' => [ 'shape' => 'String', ], 'clientCertificateId' => [ 'shape' => 'String', ], 'stageName' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'cacheClusterEnabled' => [ 'shape' => 'Boolean', ], 'cacheClusterSize' => [ 'shape' => 'CacheClusterSize', ], 'cacheClusterStatus' => [ 'shape' => 'CacheClusterStatus', ], 'methodSettings' => [ 'shape' => 'MapOfMethodSettings', ], 'variables' => [ 'shape' => 'MapOfStringToString', ], 'createdDate' => [ 'shape' => 'Timestamp', ], 'lastUpdatedDate' => [ 'shape' => 'Timestamp', ], ], ], 'StageKey' => [ 'type' => 'structure', 'members' => [ 'restApiId' => [ 'shape' => 'String', ], 'stageName' => [ 'shape' => 'String', ], ], ], 'Stages' => [ 'type' => 'structure', 'members' => [ 'item' => [ 'shape' => 'ListOfStage', ], ], ], 'StatusCode' => [ 'type' => 'string', 'pattern' => '[1-5]\\d\\d', ], 'String' => [ 'type' => 'string', ], 'Template' => [ 'type' => 'structure', 'members' => [ 'value' => [ 'shape' => 'String', ], ], ], 'TestInvokeAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'authorizerId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'authorizerId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'authorizer_id', ], 'headers' => [ 'shape' => 'MapOfHeaderValues', ], 'pathWithQueryString' => [ 'shape' => 'String', ], 'body' => [ 'shape' => 'String', ], 'stageVariables' => [ 'shape' => 'MapOfStringToString', ], 'additionalContext' => [ 'shape' => 'MapOfStringToString', ], ], ], 'TestInvokeAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'clientStatus' => [ 'shape' => 'Integer', ], 'log' => [ 'shape' => 'String', ], 'latency' => [ 'shape' => 'Long', ], 'principalId' => [ 'shape' => 'String', ], 'policy' => [ 'shape' => 'String', ], 'authorization' => [ 'shape' => 'MapOfStringToList', ], 'claims' => [ 'shape' => 'MapOfStringToString', ], ], ], 'TestInvokeMethodRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'pathWithQueryString' => [ 'shape' => 'String', ], 'body' => [ 'shape' => 'String', ], 'headers' => [ 'shape' => 'MapOfHeaderValues', ], 'clientCertificateId' => [ 'shape' => 'String', ], 'stageVariables' => [ 'shape' => 'MapOfStringToString', ], ], ], 'TestInvokeMethodResponse' => [ 'type' => 'structure', 'members' => [ 'status' => [ 'shape' => 'Integer', ], 'body' => [ 'shape' => 'String', ], 'headers' => [ 'shape' => 'MapOfHeaderValues', ], 'log' => [ 'shape' => 'String', ], 'latency' => [ 'shape' => 'Long', ], ], ], 'ThrottleSettings' => [ 'type' => 'structure', 'members' => [ 'burstLimit' => [ 'shape' => 'Integer', ], 'rateLimit' => [ 'shape' => 'Double', ], ], ], 'Timestamp' => [ 'type' => 'timestamp', ], 'TooManyRequestsException' => [ 'type' => 'structure', 'members' => [ 'retryAfterSeconds' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Retry-After', ], 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], 'UnauthorizedCacheControlHeaderStrategy' => [ 'type' => 'string', 'enum' => [ 'FAIL_WITH_403', 'SUCCEED_WITH_RESPONSE_HEADER', 'SUCCEED_WITHOUT_RESPONSE_HEADER', ], ], 'UnauthorizedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], 'UpdateAccountRequest' => [ 'type' => 'structure', 'members' => [ 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateApiKeyRequest' => [ 'type' => 'structure', 'required' => [ 'apiKey', ], 'members' => [ 'apiKey' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'api_Key', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'authorizerId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'authorizerId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'authorizer_id', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateBasePathMappingRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', 'basePath', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], 'basePath' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'base_path', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateClientCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'clientCertificateId', ], 'members' => [ 'clientCertificateId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'clientcertificate_id', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateDeploymentRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'deploymentId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'deploymentId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'deployment_id', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateDomainNameRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateIntegrationRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateIntegrationResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateMethodRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateMethodResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateModelRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'modelName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'modelName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'model_name', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateResourceRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateRestApiRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateStageRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateUsagePlanRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateUsageRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', 'keyId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'keyId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'keyId', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'Usage' => [ 'type' => 'structure', 'members' => [ 'usagePlanId' => [ 'shape' => 'String', ], 'startDate' => [ 'shape' => 'String', ], 'endDate' => [ 'shape' => 'String', ], 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'MapOfKeyUsages', 'locationName' => 'values', ], ], ], 'UsagePlan' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'apiStages' => [ 'shape' => 'ListOfApiStage', ], 'throttle' => [ 'shape' => 'ThrottleSettings', ], 'quota' => [ 'shape' => 'QuotaSettings', ], ], ], 'UsagePlanKey' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], ], ], 'UsagePlanKeys' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfUsagePlanKey', 'locationName' => 'item', ], ], ], 'UsagePlans' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfUsagePlan', 'locationName' => 'item', ], ], ], 'op' => [ 'type' => 'string', 'enum' => [ 'add', 'remove', 'replace', 'move', 'copy', 'test', ], ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2015-07-09', 'endpointPrefix' => 'apigateway', 'protocol' => 'rest-json', 'serviceFullName' => 'Amazon API Gateway', 'signatureVersion' => 'v4', ], 'operations' => [ 'CreateApiKey' => [ 'name' => 'CreateApiKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/apikeys', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateApiKeyRequest', ], 'output' => [ 'shape' => 'ApiKey', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], ], ], 'CreateAuthorizer' => [ 'name' => 'CreateAuthorizer', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/authorizers', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateAuthorizerRequest', ], 'output' => [ 'shape' => 'Authorizer', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateBasePathMapping' => [ 'name' => 'CreateBasePathMapping', 'http' => [ 'method' => 'POST', 'requestUri' => '/domainnames/{domain_name}/basepathmappings', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateBasePathMappingRequest', ], 'output' => [ 'shape' => 'BasePathMapping', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateDeployment' => [ 'name' => 'CreateDeployment', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/deployments', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateDeploymentRequest', ], 'output' => [ 'shape' => 'Deployment', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'CreateDomainName' => [ 'name' => 'CreateDomainName', 'http' => [ 'method' => 'POST', 'requestUri' => '/domainnames', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateDomainNameRequest', ], 'output' => [ 'shape' => 'DomainName', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateModel' => [ 'name' => 'CreateModel', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/models', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateModelRequest', ], 'output' => [ 'shape' => 'Model', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateResource' => [ 'name' => 'CreateResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/resources/{parent_id}', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateResourceRequest', ], 'output' => [ 'shape' => 'Resource', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateRestApi' => [ 'name' => 'CreateRestApi', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateRestApiRequest', ], 'output' => [ 'shape' => 'RestApi', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateStage' => [ 'name' => 'CreateStage', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/stages', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateStageRequest', ], 'output' => [ 'shape' => 'Stage', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'CreateUsagePlan' => [ 'name' => 'CreateUsagePlan', 'http' => [ 'method' => 'POST', 'requestUri' => '/usageplans', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateUsagePlanRequest', ], 'output' => [ 'shape' => 'UsagePlan', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ConflictException', ], ], ], 'CreateUsagePlanKey' => [ 'name' => 'CreateUsagePlanKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/usageplans/{usageplanId}/keys', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateUsagePlanKeyRequest', ], 'output' => [ 'shape' => 'UsagePlanKey', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'DeleteApiKey' => [ 'name' => 'DeleteApiKey', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/apikeys/{api_Key}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteApiKeyRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'DeleteAuthorizer' => [ 'name' => 'DeleteAuthorizer', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/authorizers/{authorizer_id}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteAuthorizerRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], ], ], 'DeleteBasePathMapping' => [ 'name' => 'DeleteBasePathMapping', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/domainnames/{domain_name}/basepathmappings/{base_path}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteBasePathMappingRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'DeleteClientCertificate' => [ 'name' => 'DeleteClientCertificate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/clientcertificates/{clientcertificate_id}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteClientCertificateRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], ], ], 'DeleteDeployment' => [ 'name' => 'DeleteDeployment', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/deployments/{deployment_id}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteDeploymentRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'DeleteDomainName' => [ 'name' => 'DeleteDomainName', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/domainnames/{domain_name}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteDomainNameRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'DeleteIntegration' => [ 'name' => 'DeleteIntegration', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteIntegrationRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'DeleteIntegrationResponse' => [ 'name' => 'DeleteIntegrationResponse', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteIntegrationResponseRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], ], ], 'DeleteMethod' => [ 'name' => 'DeleteMethod', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteMethodRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'DeleteMethodResponse' => [ 'name' => 'DeleteMethodResponse', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteMethodResponseRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], ], ], 'DeleteModel' => [ 'name' => 'DeleteModel', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/models/{model_name}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteModelRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], ], ], 'DeleteResource' => [ 'name' => 'DeleteResource', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteResourceRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'DeleteRestApi' => [ 'name' => 'DeleteRestApi', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteRestApiRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], ], ], 'DeleteStage' => [ 'name' => 'DeleteStage', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteStageRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], ], ], 'DeleteUsagePlan' => [ 'name' => 'DeleteUsagePlan', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/usageplans/{usageplanId}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteUsagePlanRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], ], ], 'DeleteUsagePlanKey' => [ 'name' => 'DeleteUsagePlanKey', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/usageplans/{usageplanId}/keys/{keyId}', 'responseCode' => 202, ], 'input' => [ 'shape' => 'DeleteUsagePlanKeyRequest', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'FlushStageAuthorizersCache' => [ 'name' => 'FlushStageAuthorizersCache', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}/cache/authorizers', 'responseCode' => 202, ], 'input' => [ 'shape' => 'FlushStageAuthorizersCacheRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'FlushStageCache' => [ 'name' => 'FlushStageCache', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}/cache/data', 'responseCode' => 202, ], 'input' => [ 'shape' => 'FlushStageCacheRequest', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GenerateClientCertificate' => [ 'name' => 'GenerateClientCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/clientcertificates', 'responseCode' => 201, ], 'input' => [ 'shape' => 'GenerateClientCertificateRequest', ], 'output' => [ 'shape' => 'ClientCertificate', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'GetAccount' => [ 'name' => 'GetAccount', 'http' => [ 'method' => 'GET', 'requestUri' => '/account', ], 'input' => [ 'shape' => 'GetAccountRequest', ], 'output' => [ 'shape' => 'Account', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetApiKey' => [ 'name' => 'GetApiKey', 'http' => [ 'method' => 'GET', 'requestUri' => '/apikeys/{api_Key}', ], 'input' => [ 'shape' => 'GetApiKeyRequest', ], 'output' => [ 'shape' => 'ApiKey', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetApiKeys' => [ 'name' => 'GetApiKeys', 'http' => [ 'method' => 'GET', 'requestUri' => '/apikeys', ], 'input' => [ 'shape' => 'GetApiKeysRequest', ], 'output' => [ 'shape' => 'ApiKeys', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetAuthorizer' => [ 'name' => 'GetAuthorizer', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/authorizers/{authorizer_id}', ], 'input' => [ 'shape' => 'GetAuthorizerRequest', ], 'output' => [ 'shape' => 'Authorizer', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetAuthorizers' => [ 'name' => 'GetAuthorizers', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/authorizers', ], 'input' => [ 'shape' => 'GetAuthorizersRequest', ], 'output' => [ 'shape' => 'Authorizers', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetBasePathMapping' => [ 'name' => 'GetBasePathMapping', 'http' => [ 'method' => 'GET', 'requestUri' => '/domainnames/{domain_name}/basepathmappings/{base_path}', ], 'input' => [ 'shape' => 'GetBasePathMappingRequest', ], 'output' => [ 'shape' => 'BasePathMapping', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetBasePathMappings' => [ 'name' => 'GetBasePathMappings', 'http' => [ 'method' => 'GET', 'requestUri' => '/domainnames/{domain_name}/basepathmappings', ], 'input' => [ 'shape' => 'GetBasePathMappingsRequest', ], 'output' => [ 'shape' => 'BasePathMappings', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetClientCertificate' => [ 'name' => 'GetClientCertificate', 'http' => [ 'method' => 'GET', 'requestUri' => '/clientcertificates/{clientcertificate_id}', ], 'input' => [ 'shape' => 'GetClientCertificateRequest', ], 'output' => [ 'shape' => 'ClientCertificate', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetClientCertificates' => [ 'name' => 'GetClientCertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/clientcertificates', ], 'input' => [ 'shape' => 'GetClientCertificatesRequest', ], 'output' => [ 'shape' => 'ClientCertificates', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetDeployment' => [ 'name' => 'GetDeployment', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/deployments/{deployment_id}', ], 'input' => [ 'shape' => 'GetDeploymentRequest', ], 'output' => [ 'shape' => 'Deployment', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'GetDeployments' => [ 'name' => 'GetDeployments', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/deployments', ], 'input' => [ 'shape' => 'GetDeploymentsRequest', ], 'output' => [ 'shape' => 'Deployments', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'GetDomainName' => [ 'name' => 'GetDomainName', 'http' => [ 'method' => 'GET', 'requestUri' => '/domainnames/{domain_name}', ], 'input' => [ 'shape' => 'GetDomainNameRequest', ], 'output' => [ 'shape' => 'DomainName', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ServiceUnavailableException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetDomainNames' => [ 'name' => 'GetDomainNames', 'http' => [ 'method' => 'GET', 'requestUri' => '/domainnames', ], 'input' => [ 'shape' => 'GetDomainNamesRequest', ], 'output' => [ 'shape' => 'DomainNames', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetExport' => [ 'name' => 'GetExport', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}/exports/{export_type}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'GetExportRequest', ], 'output' => [ 'shape' => 'ExportResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetIntegration' => [ 'name' => 'GetIntegration', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration', ], 'input' => [ 'shape' => 'GetIntegrationRequest', ], 'output' => [ 'shape' => 'Integration', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetIntegrationResponse' => [ 'name' => 'GetIntegrationResponse', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}', ], 'input' => [ 'shape' => 'GetIntegrationResponseRequest', ], 'output' => [ 'shape' => 'IntegrationResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetMethod' => [ 'name' => 'GetMethod', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}', ], 'input' => [ 'shape' => 'GetMethodRequest', ], 'output' => [ 'shape' => 'Method', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetMethodResponse' => [ 'name' => 'GetMethodResponse', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}', ], 'input' => [ 'shape' => 'GetMethodResponseRequest', ], 'output' => [ 'shape' => 'MethodResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetModel' => [ 'name' => 'GetModel', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/models/{model_name}', ], 'input' => [ 'shape' => 'GetModelRequest', ], 'output' => [ 'shape' => 'Model', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetModelTemplate' => [ 'name' => 'GetModelTemplate', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/models/{model_name}/default_template', ], 'input' => [ 'shape' => 'GetModelTemplateRequest', ], 'output' => [ 'shape' => 'Template', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetModels' => [ 'name' => 'GetModels', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/models', ], 'input' => [ 'shape' => 'GetModelsRequest', ], 'output' => [ 'shape' => 'Models', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetResource' => [ 'name' => 'GetResource', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}', ], 'input' => [ 'shape' => 'GetResourceRequest', ], 'output' => [ 'shape' => 'Resource', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetResources' => [ 'name' => 'GetResources', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/resources', ], 'input' => [ 'shape' => 'GetResourcesRequest', ], 'output' => [ 'shape' => 'Resources', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetRestApi' => [ 'name' => 'GetRestApi', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}', ], 'input' => [ 'shape' => 'GetRestApiRequest', ], 'output' => [ 'shape' => 'RestApi', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetRestApis' => [ 'name' => 'GetRestApis', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis', ], 'input' => [ 'shape' => 'GetRestApisRequest', ], 'output' => [ 'shape' => 'RestApis', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetSdk' => [ 'name' => 'GetSdk', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}/sdks/{sdk_type}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'GetSdkRequest', ], 'output' => [ 'shape' => 'SdkResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetStage' => [ 'name' => 'GetStage', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}', ], 'input' => [ 'shape' => 'GetStageRequest', ], 'output' => [ 'shape' => 'Stage', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetStages' => [ 'name' => 'GetStages', 'http' => [ 'method' => 'GET', 'requestUri' => '/restapis/{restapi_id}/stages', ], 'input' => [ 'shape' => 'GetStagesRequest', ], 'output' => [ 'shape' => 'Stages', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetUsage' => [ 'name' => 'GetUsage', 'http' => [ 'method' => 'GET', 'requestUri' => '/usageplans/{usageplanId}/usage', ], 'input' => [ 'shape' => 'GetUsageRequest', ], 'output' => [ 'shape' => 'Usage', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetUsagePlan' => [ 'name' => 'GetUsagePlan', 'http' => [ 'method' => 'GET', 'requestUri' => '/usageplans/{usageplanId}', ], 'input' => [ 'shape' => 'GetUsagePlanRequest', ], 'output' => [ 'shape' => 'UsagePlan', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetUsagePlanKey' => [ 'name' => 'GetUsagePlanKey', 'http' => [ 'method' => 'GET', 'requestUri' => '/usageplans/{usageplanId}/keys/{keyId}', 'responseCode' => 200, ], 'input' => [ 'shape' => 'GetUsagePlanKeyRequest', ], 'output' => [ 'shape' => 'UsagePlanKey', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetUsagePlanKeys' => [ 'name' => 'GetUsagePlanKeys', 'http' => [ 'method' => 'GET', 'requestUri' => '/usageplans/{usageplanId}/keys', ], 'input' => [ 'shape' => 'GetUsagePlanKeysRequest', ], 'output' => [ 'shape' => 'UsagePlanKeys', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'GetUsagePlans' => [ 'name' => 'GetUsagePlans', 'http' => [ 'method' => 'GET', 'requestUri' => '/usageplans', ], 'input' => [ 'shape' => 'GetUsagePlansRequest', ], 'output' => [ 'shape' => 'UsagePlans', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'ImportApiKeys' => [ 'name' => 'ImportApiKeys', 'http' => [ 'method' => 'POST', 'requestUri' => '/apikeys?mode=import', 'responseCode' => 201, ], 'input' => [ 'shape' => 'ImportApiKeysRequest', ], 'output' => [ 'shape' => 'ApiKeyIds', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], ], ], 'ImportRestApi' => [ 'name' => 'ImportRestApi', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis?mode=import', 'responseCode' => 201, ], 'input' => [ 'shape' => 'ImportRestApiRequest', ], 'output' => [ 'shape' => 'RestApi', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'PutIntegration' => [ 'name' => 'PutIntegration', 'http' => [ 'method' => 'PUT', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration', 'responseCode' => 201, ], 'input' => [ 'shape' => 'PutIntegrationRequest', ], 'output' => [ 'shape' => 'Integration', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'PutIntegrationResponse' => [ 'name' => 'PutIntegrationResponse', 'http' => [ 'method' => 'PUT', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}', 'responseCode' => 201, ], 'input' => [ 'shape' => 'PutIntegrationResponseRequest', ], 'output' => [ 'shape' => 'IntegrationResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'PutMethod' => [ 'name' => 'PutMethod', 'http' => [ 'method' => 'PUT', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}', 'responseCode' => 201, ], 'input' => [ 'shape' => 'PutMethodRequest', ], 'output' => [ 'shape' => 'Method', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'PutMethodResponse' => [ 'name' => 'PutMethodResponse', 'http' => [ 'method' => 'PUT', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}', 'responseCode' => 201, ], 'input' => [ 'shape' => 'PutMethodResponseRequest', ], 'output' => [ 'shape' => 'MethodResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'PutRestApi' => [ 'name' => 'PutRestApi', 'http' => [ 'method' => 'PUT', 'requestUri' => '/restapis/{restapi_id}', ], 'input' => [ 'shape' => 'PutRestApiRequest', ], 'output' => [ 'shape' => 'RestApi', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'TestInvokeAuthorizer' => [ 'name' => 'TestInvokeAuthorizer', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/authorizers/{authorizer_id}', ], 'input' => [ 'shape' => 'TestInvokeAuthorizerRequest', ], 'output' => [ 'shape' => 'TestInvokeAuthorizerResponse', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'TestInvokeMethod' => [ 'name' => 'TestInvokeMethod', 'http' => [ 'method' => 'POST', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}', ], 'input' => [ 'shape' => 'TestInvokeMethodRequest', ], 'output' => [ 'shape' => 'TestInvokeMethodResponse', ], 'errors' => [ [ 'shape' => 'BadRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateAccount' => [ 'name' => 'UpdateAccount', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/account', ], 'input' => [ 'shape' => 'UpdateAccountRequest', ], 'output' => [ 'shape' => 'Account', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateApiKey' => [ 'name' => 'UpdateApiKey', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/apikeys/{api_Key}', ], 'input' => [ 'shape' => 'UpdateApiKeyRequest', ], 'output' => [ 'shape' => 'ApiKey', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'UpdateAuthorizer' => [ 'name' => 'UpdateAuthorizer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/authorizers/{authorizer_id}', ], 'input' => [ 'shape' => 'UpdateAuthorizerRequest', ], 'output' => [ 'shape' => 'Authorizer', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateBasePathMapping' => [ 'name' => 'UpdateBasePathMapping', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/domainnames/{domain_name}/basepathmappings/{base_path}', ], 'input' => [ 'shape' => 'UpdateBasePathMappingRequest', ], 'output' => [ 'shape' => 'BasePathMapping', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateClientCertificate' => [ 'name' => 'UpdateClientCertificate', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/clientcertificates/{clientcertificate_id}', ], 'input' => [ 'shape' => 'UpdateClientCertificateRequest', ], 'output' => [ 'shape' => 'ClientCertificate', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], ], ], 'UpdateDeployment' => [ 'name' => 'UpdateDeployment', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/deployments/{deployment_id}', ], 'input' => [ 'shape' => 'UpdateDeploymentRequest', ], 'output' => [ 'shape' => 'Deployment', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ServiceUnavailableException', ], ], ], 'UpdateDomainName' => [ 'name' => 'UpdateDomainName', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/domainnames/{domain_name}', ], 'input' => [ 'shape' => 'UpdateDomainNameRequest', ], 'output' => [ 'shape' => 'DomainName', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateIntegration' => [ 'name' => 'UpdateIntegration', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration', ], 'input' => [ 'shape' => 'UpdateIntegrationRequest', ], 'output' => [ 'shape' => 'Integration', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'ConflictException', ], ], ], 'UpdateIntegrationResponse' => [ 'name' => 'UpdateIntegrationResponse', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}', ], 'input' => [ 'shape' => 'UpdateIntegrationResponseRequest', ], 'output' => [ 'shape' => 'IntegrationResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateMethod' => [ 'name' => 'UpdateMethod', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}', ], 'input' => [ 'shape' => 'UpdateMethodRequest', ], 'output' => [ 'shape' => 'Method', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateMethodResponse' => [ 'name' => 'UpdateMethodResponse', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}', 'responseCode' => 201, ], 'input' => [ 'shape' => 'UpdateMethodResponseRequest', ], 'output' => [ 'shape' => 'MethodResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateModel' => [ 'name' => 'UpdateModel', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/models/{model_name}', ], 'input' => [ 'shape' => 'UpdateModelRequest', ], 'output' => [ 'shape' => 'Model', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateResource' => [ 'name' => 'UpdateResource', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/resources/{resource_id}', ], 'input' => [ 'shape' => 'UpdateResourceRequest', ], 'output' => [ 'shape' => 'Resource', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateRestApi' => [ 'name' => 'UpdateRestApi', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}', ], 'input' => [ 'shape' => 'UpdateRestApiRequest', ], 'output' => [ 'shape' => 'RestApi', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateStage' => [ 'name' => 'UpdateStage', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/restapis/{restapi_id}/stages/{stage_name}', ], 'input' => [ 'shape' => 'UpdateStageRequest', ], 'output' => [ 'shape' => 'Stage', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'TooManyRequestsException', ], ], ], 'UpdateUsage' => [ 'name' => 'UpdateUsage', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/usageplans/{usageplanId}/keys/{keyId}/usage', ], 'input' => [ 'shape' => 'UpdateUsageRequest', ], 'output' => [ 'shape' => 'Usage', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], ], ], 'UpdateUsagePlan' => [ 'name' => 'UpdateUsagePlan', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/usageplans/{usageplanId}', ], 'input' => [ 'shape' => 'UpdateUsagePlanRequest', ], 'output' => [ 'shape' => 'UsagePlan', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'BadRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], ], ], ], 'shapes' => [ 'Account' => [ 'type' => 'structure', 'members' => [ 'cloudwatchRoleArn' => [ 'shape' => 'String', ], 'throttleSettings' => [ 'shape' => 'ThrottleSettings', ], 'features' => [ 'shape' => 'ListOfString', ], 'apiKeyVersion' => [ 'shape' => 'String', ], ], ], 'ApiKey' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'enabled' => [ 'shape' => 'Boolean', ], 'createdDate' => [ 'shape' => 'Timestamp', ], 'lastUpdatedDate' => [ 'shape' => 'Timestamp', ], 'stageKeys' => [ 'shape' => 'ListOfString', ], ], ], 'ApiKeyIds' => [ 'type' => 'structure', 'members' => [ 'ids' => [ 'shape' => 'ListOfString', ], 'warnings' => [ 'shape' => 'ListOfString', ], ], ], 'ApiKeys' => [ 'type' => 'structure', 'members' => [ 'warnings' => [ 'shape' => 'ListOfString', ], 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfApiKey', 'locationName' => 'item', ], ], ], 'ApiKeysFormat' => [ 'type' => 'string', 'enum' => [ 'csv', ], ], 'ApiStage' => [ 'type' => 'structure', 'members' => [ 'apiId' => [ 'shape' => 'String', ], 'stage' => [ 'shape' => 'String', ], ], ], 'Authorizer' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'AuthorizerType', ], 'providerARNs' => [ 'shape' => 'ListOfARNs', ], 'authType' => [ 'shape' => 'String', ], 'authorizerUri' => [ 'shape' => 'String', ], 'authorizerCredentials' => [ 'shape' => 'String', ], 'identitySource' => [ 'shape' => 'String', ], 'identityValidationExpression' => [ 'shape' => 'String', ], 'authorizerResultTtlInSeconds' => [ 'shape' => 'NullableInteger', ], ], ], 'AuthorizerType' => [ 'type' => 'string', 'enum' => [ 'TOKEN', 'COGNITO_USER_POOLS', ], ], 'Authorizers' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfAuthorizer', 'locationName' => 'item', ], ], ], 'BadRequestException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'BasePathMapping' => [ 'type' => 'structure', 'members' => [ 'basePath' => [ 'shape' => 'String', ], 'restApiId' => [ 'shape' => 'String', ], 'stage' => [ 'shape' => 'String', ], ], ], 'BasePathMappings' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfBasePathMapping', 'locationName' => 'item', ], ], ], 'Blob' => [ 'type' => 'blob', ], 'Boolean' => [ 'type' => 'boolean', ], 'CacheClusterSize' => [ 'type' => 'string', 'enum' => [ '0.5', '1.6', '6.1', '13.5', '28.4', '58.2', '118', '237', ], ], 'CacheClusterStatus' => [ 'type' => 'string', 'enum' => [ 'CREATE_IN_PROGRESS', 'AVAILABLE', 'DELETE_IN_PROGRESS', 'NOT_AVAILABLE', 'FLUSH_IN_PROGRESS', ], ], 'ClientCertificate' => [ 'type' => 'structure', 'members' => [ 'clientCertificateId' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'pemEncodedCertificate' => [ 'shape' => 'String', ], 'createdDate' => [ 'shape' => 'Timestamp', ], 'expirationDate' => [ 'shape' => 'Timestamp', ], ], ], 'ClientCertificates' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfClientCertificate', 'locationName' => 'item', ], ], ], 'ConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'CreateApiKeyRequest' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'enabled' => [ 'shape' => 'Boolean', ], 'generateDistinctId' => [ 'shape' => 'Boolean', ], 'value' => [ 'shape' => 'String', ], 'stageKeys' => [ 'shape' => 'ListOfStageKeys', ], ], ], 'CreateAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'name', 'type', 'identitySource', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'name' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'AuthorizerType', ], 'providerARNs' => [ 'shape' => 'ListOfARNs', ], 'authType' => [ 'shape' => 'String', ], 'authorizerUri' => [ 'shape' => 'String', ], 'authorizerCredentials' => [ 'shape' => 'String', ], 'identitySource' => [ 'shape' => 'String', ], 'identityValidationExpression' => [ 'shape' => 'String', ], 'authorizerResultTtlInSeconds' => [ 'shape' => 'NullableInteger', ], ], ], 'CreateBasePathMappingRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', 'restApiId', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], 'basePath' => [ 'shape' => 'String', ], 'restApiId' => [ 'shape' => 'String', ], 'stage' => [ 'shape' => 'String', ], ], ], 'CreateDeploymentRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', ], 'stageDescription' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'cacheClusterEnabled' => [ 'shape' => 'NullableBoolean', ], 'cacheClusterSize' => [ 'shape' => 'CacheClusterSize', ], 'variables' => [ 'shape' => 'MapOfStringToString', ], ], ], 'CreateDomainNameRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', 'certificateName', 'certificateBody', 'certificatePrivateKey', 'certificateChain', ], 'members' => [ 'domainName' => [ 'shape' => 'String', ], 'certificateName' => [ 'shape' => 'String', ], 'certificateBody' => [ 'shape' => 'String', ], 'certificatePrivateKey' => [ 'shape' => 'String', ], 'certificateChain' => [ 'shape' => 'String', ], ], ], 'CreateModelRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'name', 'contentType', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'schema' => [ 'shape' => 'String', ], 'contentType' => [ 'shape' => 'String', ], ], ], 'CreateResourceRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'parentId', 'pathPart', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'parentId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'parent_id', ], 'pathPart' => [ 'shape' => 'String', ], ], ], 'CreateRestApiRequest' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'cloneFrom' => [ 'shape' => 'String', ], ], ], 'CreateStageRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', 'deploymentId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', ], 'deploymentId' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'cacheClusterEnabled' => [ 'shape' => 'Boolean', ], 'cacheClusterSize' => [ 'shape' => 'CacheClusterSize', ], 'variables' => [ 'shape' => 'MapOfStringToString', ], ], ], 'CreateUsagePlanKeyRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', 'keyId', 'keyType', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'keyId' => [ 'shape' => 'String', ], 'keyType' => [ 'shape' => 'String', ], ], ], 'CreateUsagePlanRequest' => [ 'type' => 'structure', 'required' => [ 'name', ], 'members' => [ 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'apiStages' => [ 'shape' => 'ListOfApiStage', ], 'throttle' => [ 'shape' => 'ThrottleSettings', ], 'quota' => [ 'shape' => 'QuotaSettings', ], ], ], 'DeleteApiKeyRequest' => [ 'type' => 'structure', 'required' => [ 'apiKey', ], 'members' => [ 'apiKey' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'api_Key', ], ], ], 'DeleteAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'authorizerId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'authorizerId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'authorizer_id', ], ], ], 'DeleteBasePathMappingRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', 'basePath', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], 'basePath' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'base_path', ], ], ], 'DeleteClientCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'clientCertificateId', ], 'members' => [ 'clientCertificateId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'clientcertificate_id', ], ], ], 'DeleteDeploymentRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'deploymentId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'deploymentId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'deployment_id', ], ], ], 'DeleteDomainNameRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], ], ], 'DeleteIntegrationRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], ], ], 'DeleteIntegrationResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], ], ], 'DeleteMethodRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], ], ], 'DeleteMethodResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], ], ], 'DeleteModelRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'modelName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'modelName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'model_name', ], ], ], 'DeleteResourceRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], ], ], 'DeleteRestApiRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], ], ], 'DeleteStageRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], ], ], 'DeleteUsagePlanKeyRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', 'keyId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'keyId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'keyId', ], ], ], 'DeleteUsagePlanRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], ], ], 'Deployment' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'createdDate' => [ 'shape' => 'Timestamp', ], 'apiSummary' => [ 'shape' => 'PathToMapOfMethodSnapshot', ], ], ], 'Deployments' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfDeployment', 'locationName' => 'item', ], ], ], 'DomainName' => [ 'type' => 'structure', 'members' => [ 'domainName' => [ 'shape' => 'String', ], 'certificateName' => [ 'shape' => 'String', ], 'certificateUploadDate' => [ 'shape' => 'Timestamp', ], 'distributionDomainName' => [ 'shape' => 'String', ], ], ], 'DomainNames' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfDomainName', 'locationName' => 'item', ], ], ], 'Double' => [ 'type' => 'double', ], 'ExportResponse' => [ 'type' => 'structure', 'members' => [ 'contentType' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Content-Type', ], 'contentDisposition' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'body' => [ 'shape' => 'Blob', ], ], 'payload' => 'body', ], 'FlushStageAuthorizersCacheRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], ], ], 'FlushStageCacheRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], ], ], 'GenerateClientCertificateRequest' => [ 'type' => 'structure', 'members' => [ 'description' => [ 'shape' => 'String', ], ], ], 'GetAccountRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetApiKeyRequest' => [ 'type' => 'structure', 'required' => [ 'apiKey', ], 'members' => [ 'apiKey' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'api_Key', ], 'includeValue' => [ 'shape' => 'Boolean', 'location' => 'querystring', 'locationName' => 'includeValue', ], ], ], 'GetApiKeysRequest' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], 'nameQuery' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'name', ], 'includeValues' => [ 'shape' => 'Boolean', 'location' => 'querystring', 'locationName' => 'includeValues', ], ], ], 'GetAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'authorizerId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'authorizerId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'authorizer_id', ], ], ], 'GetAuthorizersRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetBasePathMappingRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', 'basePath', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], 'basePath' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'base_path', ], ], ], 'GetBasePathMappingsRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetClientCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'clientCertificateId', ], 'members' => [ 'clientCertificateId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'clientcertificate_id', ], ], ], 'GetClientCertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetDeploymentRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'deploymentId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'deploymentId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'deployment_id', ], ], ], 'GetDeploymentsRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetDomainNameRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], ], ], 'GetDomainNamesRequest' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetExportRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', 'exportType', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], 'exportType' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'export_type', ], 'parameters' => [ 'shape' => 'MapOfStringToString', 'location' => 'querystring', ], 'accepts' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Accept', ], ], ], 'GetIntegrationRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], ], ], 'GetIntegrationResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], ], ], 'GetMethodRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], ], ], 'GetMethodResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], ], ], 'GetModelRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'modelName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'modelName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'model_name', ], 'flatten' => [ 'shape' => 'Boolean', 'location' => 'querystring', 'locationName' => 'flatten', ], ], ], 'GetModelTemplateRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'modelName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'modelName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'model_name', ], ], ], 'GetModelsRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetResourceRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], ], ], 'GetResourcesRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetRestApiRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], ], ], 'GetRestApisRequest' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetSdkRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', 'sdkType', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], 'sdkType' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'sdk_type', ], 'parameters' => [ 'shape' => 'MapOfStringToString', 'location' => 'querystring', ], ], ], 'GetStageRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], ], ], 'GetStagesRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'deploymentId' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'deploymentId', ], ], ], 'GetUsagePlanKeyRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', 'keyId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'keyId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'keyId', ], ], ], 'GetUsagePlanKeysRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], 'nameQuery' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'name', ], ], ], 'GetUsagePlanRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], ], ], 'GetUsagePlansRequest' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'keyId' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'keyId', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'GetUsageRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', 'startDate', 'endDate', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'keyId' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'keyId', ], 'startDate' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'startDate', ], 'endDate' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'endDate', ], 'position' => [ 'shape' => 'String', 'location' => 'querystring', 'locationName' => 'position', ], 'limit' => [ 'shape' => 'NullableInteger', 'location' => 'querystring', 'locationName' => 'limit', ], ], ], 'ImportApiKeysRequest' => [ 'type' => 'structure', 'required' => [ 'body', 'format', ], 'members' => [ 'body' => [ 'shape' => 'Blob', ], 'format' => [ 'shape' => 'ApiKeysFormat', 'location' => 'querystring', 'locationName' => 'format', ], 'failOnWarnings' => [ 'shape' => 'Boolean', 'location' => 'querystring', 'locationName' => 'failonwarnings', ], ], 'payload' => 'body', ], 'ImportRestApiRequest' => [ 'type' => 'structure', 'required' => [ 'body', ], 'members' => [ 'failOnWarnings' => [ 'shape' => 'Boolean', 'location' => 'querystring', 'locationName' => 'failonwarnings', ], 'parameters' => [ 'shape' => 'MapOfStringToString', 'location' => 'querystring', ], 'body' => [ 'shape' => 'Blob', ], ], 'payload' => 'body', ], 'Integer' => [ 'type' => 'integer', ], 'Integration' => [ 'type' => 'structure', 'members' => [ 'type' => [ 'shape' => 'IntegrationType', ], 'httpMethod' => [ 'shape' => 'String', ], 'uri' => [ 'shape' => 'String', ], 'credentials' => [ 'shape' => 'String', ], 'requestParameters' => [ 'shape' => 'MapOfStringToString', ], 'requestTemplates' => [ 'shape' => 'MapOfStringToString', ], 'passthroughBehavior' => [ 'shape' => 'String', ], 'cacheNamespace' => [ 'shape' => 'String', ], 'cacheKeyParameters' => [ 'shape' => 'ListOfString', ], 'integrationResponses' => [ 'shape' => 'MapOfIntegrationResponse', ], ], ], 'IntegrationResponse' => [ 'type' => 'structure', 'members' => [ 'statusCode' => [ 'shape' => 'StatusCode', ], 'selectionPattern' => [ 'shape' => 'String', ], 'responseParameters' => [ 'shape' => 'MapOfStringToString', ], 'responseTemplates' => [ 'shape' => 'MapOfStringToString', ], ], ], 'IntegrationType' => [ 'type' => 'string', 'enum' => [ 'HTTP', 'AWS', 'MOCK', 'HTTP_PROXY', 'AWS_PROXY', ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'retryAfterSeconds' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Retry-After', ], 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], 'ListOfARNs' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProviderARN', ], ], 'ListOfApiKey' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApiKey', ], ], 'ListOfApiStage' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApiStage', ], ], 'ListOfAuthorizer' => [ 'type' => 'list', 'member' => [ 'shape' => 'Authorizer', ], ], 'ListOfBasePathMapping' => [ 'type' => 'list', 'member' => [ 'shape' => 'BasePathMapping', ], ], 'ListOfClientCertificate' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientCertificate', ], ], 'ListOfDeployment' => [ 'type' => 'list', 'member' => [ 'shape' => 'Deployment', ], ], 'ListOfDomainName' => [ 'type' => 'list', 'member' => [ 'shape' => 'DomainName', ], ], 'ListOfLong' => [ 'type' => 'list', 'member' => [ 'shape' => 'Long', ], ], 'ListOfModel' => [ 'type' => 'list', 'member' => [ 'shape' => 'Model', ], ], 'ListOfPatchOperation' => [ 'type' => 'list', 'member' => [ 'shape' => 'PatchOperation', ], ], 'ListOfResource' => [ 'type' => 'list', 'member' => [ 'shape' => 'Resource', ], ], 'ListOfRestApi' => [ 'type' => 'list', 'member' => [ 'shape' => 'RestApi', ], ], 'ListOfStage' => [ 'type' => 'list', 'member' => [ 'shape' => 'Stage', ], ], 'ListOfStageKeys' => [ 'type' => 'list', 'member' => [ 'shape' => 'StageKey', ], ], 'ListOfString' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ListOfUsage' => [ 'type' => 'list', 'member' => [ 'shape' => 'ListOfLong', ], ], 'ListOfUsagePlan' => [ 'type' => 'list', 'member' => [ 'shape' => 'UsagePlan', ], ], 'ListOfUsagePlanKey' => [ 'type' => 'list', 'member' => [ 'shape' => 'UsagePlanKey', ], ], 'Long' => [ 'type' => 'long', ], 'MapOfHeaderValues' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'MapOfIntegrationResponse' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'IntegrationResponse', ], ], 'MapOfKeyUsages' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'ListOfUsage', ], ], 'MapOfMethod' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'Method', ], ], 'MapOfMethodResponse' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'MethodResponse', ], ], 'MapOfMethodSettings' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'MethodSetting', ], ], 'MapOfMethodSnapshot' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'MethodSnapshot', ], ], 'MapOfStringToBoolean' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'NullableBoolean', ], ], 'MapOfStringToList' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'ListOfString', ], ], 'MapOfStringToString' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'Method' => [ 'type' => 'structure', 'members' => [ 'httpMethod' => [ 'shape' => 'String', ], 'authorizationType' => [ 'shape' => 'String', ], 'authorizerId' => [ 'shape' => 'String', ], 'apiKeyRequired' => [ 'shape' => 'NullableBoolean', ], 'requestParameters' => [ 'shape' => 'MapOfStringToBoolean', ], 'requestModels' => [ 'shape' => 'MapOfStringToString', ], 'methodResponses' => [ 'shape' => 'MapOfMethodResponse', ], 'methodIntegration' => [ 'shape' => 'Integration', ], ], ], 'MethodResponse' => [ 'type' => 'structure', 'members' => [ 'statusCode' => [ 'shape' => 'StatusCode', ], 'responseParameters' => [ 'shape' => 'MapOfStringToBoolean', ], 'responseModels' => [ 'shape' => 'MapOfStringToString', ], ], ], 'MethodSetting' => [ 'type' => 'structure', 'members' => [ 'metricsEnabled' => [ 'shape' => 'Boolean', ], 'loggingLevel' => [ 'shape' => 'String', ], 'dataTraceEnabled' => [ 'shape' => 'Boolean', ], 'throttlingBurstLimit' => [ 'shape' => 'Integer', ], 'throttlingRateLimit' => [ 'shape' => 'Double', ], 'cachingEnabled' => [ 'shape' => 'Boolean', ], 'cacheTtlInSeconds' => [ 'shape' => 'Integer', ], 'cacheDataEncrypted' => [ 'shape' => 'Boolean', ], 'requireAuthorizationForCacheControl' => [ 'shape' => 'Boolean', ], 'unauthorizedCacheControlHeaderStrategy' => [ 'shape' => 'UnauthorizedCacheControlHeaderStrategy', ], ], ], 'MethodSnapshot' => [ 'type' => 'structure', 'members' => [ 'authorizationType' => [ 'shape' => 'String', ], 'apiKeyRequired' => [ 'shape' => 'Boolean', ], ], ], 'Model' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'schema' => [ 'shape' => 'String', ], 'contentType' => [ 'shape' => 'String', ], ], ], 'Models' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfModel', 'locationName' => 'item', ], ], ], 'NotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NullableBoolean' => [ 'type' => 'boolean', ], 'NullableInteger' => [ 'type' => 'integer', ], 'Op' => [ 'type' => 'string', 'enum' => [ 'add', 'remove', 'replace', 'move', 'copy', 'test', ], ], 'PatchOperation' => [ 'type' => 'structure', 'members' => [ 'op' => [ 'shape' => 'Op', ], 'path' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], 'from' => [ 'shape' => 'String', ], ], ], 'PathToMapOfMethodSnapshot' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'MapOfMethodSnapshot', ], ], 'ProviderARN' => [ 'type' => 'string', ], 'PutIntegrationRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'type', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'type' => [ 'shape' => 'IntegrationType', ], 'integrationHttpMethod' => [ 'shape' => 'String', 'locationName' => 'httpMethod', ], 'uri' => [ 'shape' => 'String', ], 'credentials' => [ 'shape' => 'String', ], 'requestParameters' => [ 'shape' => 'MapOfStringToString', ], 'requestTemplates' => [ 'shape' => 'MapOfStringToString', ], 'passthroughBehavior' => [ 'shape' => 'String', ], 'cacheNamespace' => [ 'shape' => 'String', ], 'cacheKeyParameters' => [ 'shape' => 'ListOfString', ], ], ], 'PutIntegrationResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], 'selectionPattern' => [ 'shape' => 'String', ], 'responseParameters' => [ 'shape' => 'MapOfStringToString', ], 'responseTemplates' => [ 'shape' => 'MapOfStringToString', ], ], ], 'PutMethodRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'authorizationType', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'authorizationType' => [ 'shape' => 'String', ], 'authorizerId' => [ 'shape' => 'String', ], 'apiKeyRequired' => [ 'shape' => 'Boolean', ], 'requestParameters' => [ 'shape' => 'MapOfStringToBoolean', ], 'requestModels' => [ 'shape' => 'MapOfStringToString', ], ], ], 'PutMethodResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], 'responseParameters' => [ 'shape' => 'MapOfStringToBoolean', ], 'responseModels' => [ 'shape' => 'MapOfStringToString', ], ], ], 'PutMode' => [ 'type' => 'string', 'enum' => [ 'merge', 'overwrite', ], ], 'PutRestApiRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'body', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'mode' => [ 'shape' => 'PutMode', 'location' => 'querystring', 'locationName' => 'mode', ], 'failOnWarnings' => [ 'shape' => 'Boolean', 'location' => 'querystring', 'locationName' => 'failonwarnings', ], 'parameters' => [ 'shape' => 'MapOfStringToString', 'location' => 'querystring', ], 'body' => [ 'shape' => 'Blob', ], ], 'payload' => 'body', ], 'QuotaPeriodType' => [ 'type' => 'string', 'enum' => [ 'DAY', 'WEEK', 'MONTH', ], ], 'QuotaSettings' => [ 'type' => 'structure', 'members' => [ 'limit' => [ 'shape' => 'Integer', ], 'offset' => [ 'shape' => 'Integer', ], 'period' => [ 'shape' => 'QuotaPeriodType', ], ], ], 'Resource' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'parentId' => [ 'shape' => 'String', ], 'pathPart' => [ 'shape' => 'String', ], 'path' => [ 'shape' => 'String', ], 'resourceMethods' => [ 'shape' => 'MapOfMethod', ], ], ], 'Resources' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfResource', 'locationName' => 'item', ], ], ], 'RestApi' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'createdDate' => [ 'shape' => 'Timestamp', ], 'warnings' => [ 'shape' => 'ListOfString', ], ], ], 'RestApis' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfRestApi', 'locationName' => 'item', ], ], ], 'SdkResponse' => [ 'type' => 'structure', 'members' => [ 'contentType' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Content-Type', ], 'contentDisposition' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'body' => [ 'shape' => 'Blob', ], ], 'payload' => 'body', ], 'ServiceUnavailableException' => [ 'type' => 'structure', 'members' => [ 'retryAfterSeconds' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Retry-After', ], 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], 'Stage' => [ 'type' => 'structure', 'members' => [ 'deploymentId' => [ 'shape' => 'String', ], 'clientCertificateId' => [ 'shape' => 'String', ], 'stageName' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'cacheClusterEnabled' => [ 'shape' => 'Boolean', ], 'cacheClusterSize' => [ 'shape' => 'CacheClusterSize', ], 'cacheClusterStatus' => [ 'shape' => 'CacheClusterStatus', ], 'methodSettings' => [ 'shape' => 'MapOfMethodSettings', ], 'variables' => [ 'shape' => 'MapOfStringToString', ], 'createdDate' => [ 'shape' => 'Timestamp', ], 'lastUpdatedDate' => [ 'shape' => 'Timestamp', ], ], ], 'StageKey' => [ 'type' => 'structure', 'members' => [ 'restApiId' => [ 'shape' => 'String', ], 'stageName' => [ 'shape' => 'String', ], ], ], 'Stages' => [ 'type' => 'structure', 'members' => [ 'item' => [ 'shape' => 'ListOfStage', ], ], ], 'StatusCode' => [ 'type' => 'string', 'pattern' => '[1-5]\\d\\d', ], 'String' => [ 'type' => 'string', ], 'Template' => [ 'type' => 'structure', 'members' => [ 'value' => [ 'shape' => 'String', ], ], ], 'TestInvokeAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'authorizerId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'authorizerId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'authorizer_id', ], 'headers' => [ 'shape' => 'MapOfHeaderValues', ], 'pathWithQueryString' => [ 'shape' => 'String', ], 'body' => [ 'shape' => 'String', ], 'stageVariables' => [ 'shape' => 'MapOfStringToString', ], 'additionalContext' => [ 'shape' => 'MapOfStringToString', ], ], ], 'TestInvokeAuthorizerResponse' => [ 'type' => 'structure', 'members' => [ 'clientStatus' => [ 'shape' => 'Integer', ], 'log' => [ 'shape' => 'String', ], 'latency' => [ 'shape' => 'Long', ], 'principalId' => [ 'shape' => 'String', ], 'policy' => [ 'shape' => 'String', ], 'authorization' => [ 'shape' => 'MapOfStringToList', ], 'claims' => [ 'shape' => 'MapOfStringToString', ], ], ], 'TestInvokeMethodRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'pathWithQueryString' => [ 'shape' => 'String', ], 'body' => [ 'shape' => 'String', ], 'headers' => [ 'shape' => 'MapOfHeaderValues', ], 'clientCertificateId' => [ 'shape' => 'String', ], 'stageVariables' => [ 'shape' => 'MapOfStringToString', ], ], ], 'TestInvokeMethodResponse' => [ 'type' => 'structure', 'members' => [ 'status' => [ 'shape' => 'Integer', ], 'body' => [ 'shape' => 'String', ], 'headers' => [ 'shape' => 'MapOfHeaderValues', ], 'log' => [ 'shape' => 'String', ], 'latency' => [ 'shape' => 'Long', ], ], ], 'ThrottleSettings' => [ 'type' => 'structure', 'members' => [ 'burstLimit' => [ 'shape' => 'Integer', ], 'rateLimit' => [ 'shape' => 'Double', ], ], ], 'Timestamp' => [ 'type' => 'timestamp', ], 'TooManyRequestsException' => [ 'type' => 'structure', 'members' => [ 'retryAfterSeconds' => [ 'shape' => 'String', 'location' => 'header', 'locationName' => 'Retry-After', ], 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], 'UnauthorizedCacheControlHeaderStrategy' => [ 'type' => 'string', 'enum' => [ 'FAIL_WITH_403', 'SUCCEED_WITH_RESPONSE_HEADER', 'SUCCEED_WITHOUT_RESPONSE_HEADER', ], ], 'UnauthorizedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'String', ], ], 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], 'UpdateAccountRequest' => [ 'type' => 'structure', 'members' => [ 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateApiKeyRequest' => [ 'type' => 'structure', 'required' => [ 'apiKey', ], 'members' => [ 'apiKey' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'api_Key', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateAuthorizerRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'authorizerId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'authorizerId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'authorizer_id', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateBasePathMappingRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', 'basePath', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], 'basePath' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'base_path', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateClientCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'clientCertificateId', ], 'members' => [ 'clientCertificateId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'clientcertificate_id', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateDeploymentRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'deploymentId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'deploymentId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'deployment_id', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateDomainNameRequest' => [ 'type' => 'structure', 'required' => [ 'domainName', ], 'members' => [ 'domainName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'domain_name', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateIntegrationRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateIntegrationResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateMethodRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateMethodResponseRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', 'httpMethod', 'statusCode', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'httpMethod' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'http_method', ], 'statusCode' => [ 'shape' => 'StatusCode', 'location' => 'uri', 'locationName' => 'status_code', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateModelRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'modelName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'modelName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'model_name', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateResourceRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'resourceId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'resourceId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'resource_id', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateRestApiRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateStageRequest' => [ 'type' => 'structure', 'required' => [ 'restApiId', 'stageName', ], 'members' => [ 'restApiId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'restapi_id', ], 'stageName' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'stage_name', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateUsagePlanRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'UpdateUsageRequest' => [ 'type' => 'structure', 'required' => [ 'usagePlanId', 'keyId', ], 'members' => [ 'usagePlanId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'usageplanId', ], 'keyId' => [ 'shape' => 'String', 'location' => 'uri', 'locationName' => 'keyId', ], 'patchOperations' => [ 'shape' => 'ListOfPatchOperation', ], ], ], 'Usage' => [ 'type' => 'structure', 'members' => [ 'usagePlanId' => [ 'shape' => 'String', ], 'startDate' => [ 'shape' => 'String', ], 'endDate' => [ 'shape' => 'String', ], 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'MapOfKeyUsages', 'locationName' => 'values', ], ], ], 'UsagePlan' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'apiStages' => [ 'shape' => 'ListOfApiStage', ], 'throttle' => [ 'shape' => 'ThrottleSettings', ], 'quota' => [ 'shape' => 'QuotaSettings', ], ], ], 'UsagePlanKey' => [ 'type' => 'structure', 'members' => [ 'id' => [ 'shape' => 'String', ], 'type' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], ], ], 'UsagePlanKeys' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfUsagePlanKey', 'locationName' => 'item', ], ], ], 'UsagePlans' => [ 'type' => 'structure', 'members' => [ 'position' => [ 'shape' => 'String', ], 'items' => [ 'shape' => 'ListOfUsagePlan', 'locationName' => 'item', ], ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/budgets/2016-10-20/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/budgets/2016-10-20/api-2.json.php new file mode 100644 index 000000000..e7aaae0ea --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/budgets/2016-10-20/api-2.json.php @@ -0,0 +1,3 @@ + '2.0', 'metadata' => [ 'apiVersion' => '2016-10-20', 'endpointPrefix' => 'budgets', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'AWSBudgets', 'serviceFullName' => 'AWS Budgets', 'signatureVersion' => 'v4', 'targetPrefix' => 'AWSBudgetServiceGateway', ], 'operations' => [ 'CreateBudget' => [ 'name' => 'CreateBudget', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateBudgetRequest', ], 'output' => [ 'shape' => 'CreateBudgetResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'CreationLimitExceededException', ], [ 'shape' => 'DuplicateRecordException', ], ], ], 'CreateNotification' => [ 'name' => 'CreateNotification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNotificationRequest', ], 'output' => [ 'shape' => 'CreateNotificationResponse', ], 'errors' => [ [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'CreationLimitExceededException', ], [ 'shape' => 'DuplicateRecordException', ], ], ], 'CreateSubscriber' => [ 'name' => 'CreateSubscriber', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSubscriberRequest', ], 'output' => [ 'shape' => 'CreateSubscriberResponse', ], 'errors' => [ [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'CreationLimitExceededException', ], [ 'shape' => 'DuplicateRecordException', ], ], ], 'DeleteBudget' => [ 'name' => 'DeleteBudget', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteBudgetRequest', ], 'output' => [ 'shape' => 'DeleteBudgetResponse', ], 'errors' => [ [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotFoundException', ], ], ], 'DeleteNotification' => [ 'name' => 'DeleteNotification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNotificationRequest', ], 'output' => [ 'shape' => 'DeleteNotificationResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'NotFoundException', ], ], ], 'DeleteSubscriber' => [ 'name' => 'DeleteSubscriber', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSubscriberRequest', ], 'output' => [ 'shape' => 'DeleteSubscriberResponse', ], 'errors' => [ [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotFoundException', ], ], ], 'DescribeBudget' => [ 'name' => 'DescribeBudget', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeBudgetRequest', ], 'output' => [ 'shape' => 'DescribeBudgetResponse', ], 'errors' => [ [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotFoundException', ], ], ], 'DescribeBudgets' => [ 'name' => 'DescribeBudgets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeBudgetsRequest', ], 'output' => [ 'shape' => 'DescribeBudgetsResponse', ], 'errors' => [ [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'ExpiredNextTokenException', ], ], ], 'DescribeNotificationsForBudget' => [ 'name' => 'DescribeNotificationsForBudget', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNotificationsForBudgetRequest', ], 'output' => [ 'shape' => 'DescribeNotificationsForBudgetResponse', ], 'errors' => [ [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'ExpiredNextTokenException', ], ], ], 'DescribeSubscribersForNotification' => [ 'name' => 'DescribeSubscribersForNotification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSubscribersForNotificationRequest', ], 'output' => [ 'shape' => 'DescribeSubscribersForNotificationResponse', ], 'errors' => [ [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'ExpiredNextTokenException', ], ], ], 'UpdateBudget' => [ 'name' => 'UpdateBudget', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateBudgetRequest', ], 'output' => [ 'shape' => 'UpdateBudgetResponse', ], 'errors' => [ [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotFoundException', ], ], ], 'UpdateNotification' => [ 'name' => 'UpdateNotification', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateNotificationRequest', ], 'output' => [ 'shape' => 'UpdateNotificationResponse', ], 'errors' => [ [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotFoundException', ], ], ], 'UpdateSubscriber' => [ 'name' => 'UpdateSubscriber', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateSubscriberRequest', ], 'output' => [ 'shape' => 'UpdateSubscriberResponse', ], 'errors' => [ [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotFoundException', ], ], ], ], 'shapes' => [ 'AccountId' => [ 'type' => 'string', 'max' => 12, 'min' => 12, ], 'Budget' => [ 'type' => 'structure', 'required' => [ 'BudgetName', 'BudgetLimit', 'CostTypes', 'TimeUnit', 'TimePeriod', 'BudgetType', ], 'members' => [ 'BudgetName' => [ 'shape' => 'BudgetName', ], 'BudgetLimit' => [ 'shape' => 'Spend', ], 'CostFilters' => [ 'shape' => 'CostFilters', ], 'CostTypes' => [ 'shape' => 'CostTypes', ], 'TimeUnit' => [ 'shape' => 'TimeUnit', ], 'TimePeriod' => [ 'shape' => 'TimePeriod', ], 'CalculatedSpend' => [ 'shape' => 'CalculatedSpend', ], 'BudgetType' => [ 'shape' => 'BudgetType', ], ], ], 'BudgetName' => [ 'type' => 'string', 'max' => 100, 'pattern' => '[^:]+', ], 'BudgetType' => [ 'type' => 'string', 'enum' => [ 'USAGE', 'COST', ], ], 'Budgets' => [ 'type' => 'list', 'member' => [ 'shape' => 'Budget', ], ], 'CalculatedSpend' => [ 'type' => 'structure', 'required' => [ 'ActualSpend', ], 'members' => [ 'ActualSpend' => [ 'shape' => 'Spend', ], 'ForecastedSpend' => [ 'shape' => 'Spend', ], ], ], 'ComparisonOperator' => [ 'type' => 'string', 'enum' => [ 'GREATER_THAN', 'LESS_THAN', 'EQUAL_TO', ], ], 'CostFilters' => [ 'type' => 'map', 'key' => [ 'shape' => 'GenericString', ], 'value' => [ 'shape' => 'DimensionValues', ], ], 'CostTypes' => [ 'type' => 'structure', 'required' => [ 'IncludeTax', 'IncludeSubscription', 'UseBlended', ], 'members' => [ 'IncludeTax' => [ 'shape' => 'GenericBoolean', ], 'IncludeSubscription' => [ 'shape' => 'GenericBoolean', ], 'UseBlended' => [ 'shape' => 'GenericBoolean', ], ], ], 'CreateBudgetRequest' => [ 'type' => 'structure', 'required' => [ 'AccountId', 'Budget', ], 'members' => [ 'AccountId' => [ 'shape' => 'AccountId', ], 'Budget' => [ 'shape' => 'Budget', ], 'NotificationsWithSubscribers' => [ 'shape' => 'NotificationWithSubscribersList', ], ], ], 'CreateBudgetResponse' => [ 'type' => 'structure', 'members' => [], ], 'CreateNotificationRequest' => [ 'type' => 'structure', 'required' => [ 'AccountId', 'BudgetName', 'Notification', 'Subscribers', ], 'members' => [ 'AccountId' => [ 'shape' => 'AccountId', ], 'BudgetName' => [ 'shape' => 'BudgetName', ], 'Notification' => [ 'shape' => 'Notification', ], 'Subscribers' => [ 'shape' => 'Subscribers', ], ], ], 'CreateNotificationResponse' => [ 'type' => 'structure', 'members' => [], ], 'CreateSubscriberRequest' => [ 'type' => 'structure', 'required' => [ 'AccountId', 'BudgetName', 'Notification', 'Subscriber', ], 'members' => [ 'AccountId' => [ 'shape' => 'AccountId', ], 'BudgetName' => [ 'shape' => 'BudgetName', ], 'Notification' => [ 'shape' => 'Notification', ], 'Subscriber' => [ 'shape' => 'Subscriber', ], ], ], 'CreateSubscriberResponse' => [ 'type' => 'structure', 'members' => [], ], 'CreationLimitExceededException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'DeleteBudgetRequest' => [ 'type' => 'structure', 'required' => [ 'AccountId', 'BudgetName', ], 'members' => [ 'AccountId' => [ 'shape' => 'AccountId', ], 'BudgetName' => [ 'shape' => 'BudgetName', ], ], ], 'DeleteBudgetResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteNotificationRequest' => [ 'type' => 'structure', 'required' => [ 'AccountId', 'BudgetName', 'Notification', ], 'members' => [ 'AccountId' => [ 'shape' => 'AccountId', ], 'BudgetName' => [ 'shape' => 'BudgetName', ], 'Notification' => [ 'shape' => 'Notification', ], ], ], 'DeleteNotificationResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteSubscriberRequest' => [ 'type' => 'structure', 'required' => [ 'AccountId', 'BudgetName', 'Notification', 'Subscriber', ], 'members' => [ 'AccountId' => [ 'shape' => 'AccountId', ], 'BudgetName' => [ 'shape' => 'BudgetName', ], 'Notification' => [ 'shape' => 'Notification', ], 'Subscriber' => [ 'shape' => 'Subscriber', ], ], ], 'DeleteSubscriberResponse' => [ 'type' => 'structure', 'members' => [], ], 'DescribeBudgetRequest' => [ 'type' => 'structure', 'required' => [ 'AccountId', 'BudgetName', ], 'members' => [ 'AccountId' => [ 'shape' => 'AccountId', ], 'BudgetName' => [ 'shape' => 'BudgetName', ], ], ], 'DescribeBudgetResponse' => [ 'type' => 'structure', 'members' => [ 'Budget' => [ 'shape' => 'Budget', ], ], ], 'DescribeBudgetsRequest' => [ 'type' => 'structure', 'required' => [ 'AccountId', ], 'members' => [ 'AccountId' => [ 'shape' => 'AccountId', ], 'MaxResults' => [ 'shape' => 'MaxResults', ], 'NextToken' => [ 'shape' => 'GenericString', ], ], ], 'DescribeBudgetsResponse' => [ 'type' => 'structure', 'members' => [ 'Budgets' => [ 'shape' => 'Budgets', ], 'NextToken' => [ 'shape' => 'GenericString', ], ], ], 'DescribeNotificationsForBudgetRequest' => [ 'type' => 'structure', 'required' => [ 'AccountId', 'BudgetName', ], 'members' => [ 'AccountId' => [ 'shape' => 'AccountId', ], 'BudgetName' => [ 'shape' => 'BudgetName', ], 'MaxResults' => [ 'shape' => 'MaxResults', ], 'NextToken' => [ 'shape' => 'GenericString', ], ], ], 'DescribeNotificationsForBudgetResponse' => [ 'type' => 'structure', 'members' => [ 'Notifications' => [ 'shape' => 'Notifications', ], 'NextToken' => [ 'shape' => 'GenericString', ], ], ], 'DescribeSubscribersForNotificationRequest' => [ 'type' => 'structure', 'required' => [ 'AccountId', 'BudgetName', 'Notification', ], 'members' => [ 'AccountId' => [ 'shape' => 'AccountId', ], 'BudgetName' => [ 'shape' => 'BudgetName', ], 'Notification' => [ 'shape' => 'Notification', ], 'MaxResults' => [ 'shape' => 'MaxResults', ], 'NextToken' => [ 'shape' => 'GenericString', ], ], ], 'DescribeSubscribersForNotificationResponse' => [ 'type' => 'structure', 'members' => [ 'Subscribers' => [ 'shape' => 'Subscribers', ], 'NextToken' => [ 'shape' => 'GenericString', ], ], ], 'DimensionValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'GenericString', ], ], 'DuplicateRecordException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'ExpiredNextTokenException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'GenericBoolean' => [ 'type' => 'boolean', ], 'GenericString' => [ 'type' => 'string', ], 'GenericTimestamp' => [ 'type' => 'timestamp', ], 'InternalErrorException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'InvalidNextTokenException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'InvalidParameterException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'MaxResults' => [ 'type' => 'integer', 'box' => true, 'max' => 100, 'min' => 1, ], 'NotFoundException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'Notification' => [ 'type' => 'structure', 'required' => [ 'NotificationType', 'ComparisonOperator', 'Threshold', ], 'members' => [ 'NotificationType' => [ 'shape' => 'NotificationType', ], 'ComparisonOperator' => [ 'shape' => 'ComparisonOperator', ], 'Threshold' => [ 'shape' => 'NotificationThreshold', ], ], ], 'NotificationThreshold' => [ 'type' => 'double', 'max' => 100, 'min' => 0.10000000000000001, ], 'NotificationType' => [ 'type' => 'string', 'enum' => [ 'ACTUAL', 'FORECASTED', ], ], 'NotificationWithSubscribers' => [ 'type' => 'structure', 'required' => [ 'Notification', 'Subscribers', ], 'members' => [ 'Notification' => [ 'shape' => 'Notification', ], 'Subscribers' => [ 'shape' => 'Subscribers', ], ], ], 'NotificationWithSubscribersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NotificationWithSubscribers', ], 'max' => 5, ], 'Notifications' => [ 'type' => 'list', 'member' => [ 'shape' => 'Notification', ], ], 'NumericValue' => [ 'type' => 'string', 'pattern' => '[0-9]+(\\.)?[0-9]*', ], 'Spend' => [ 'type' => 'structure', 'required' => [ 'Amount', 'Unit', ], 'members' => [ 'Amount' => [ 'shape' => 'NumericValue', ], 'Unit' => [ 'shape' => 'GenericString', ], ], ], 'Subscriber' => [ 'type' => 'structure', 'required' => [ 'SubscriptionType', 'Address', ], 'members' => [ 'SubscriptionType' => [ 'shape' => 'SubscriptionType', ], 'Address' => [ 'shape' => 'GenericString', ], ], ], 'Subscribers' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subscriber', ], 'max' => 11, 'min' => 1, ], 'SubscriptionType' => [ 'type' => 'string', 'enum' => [ 'SNS', 'EMAIL', ], ], 'TimePeriod' => [ 'type' => 'structure', 'required' => [ 'Start', 'End', ], 'members' => [ 'Start' => [ 'shape' => 'GenericTimestamp', ], 'End' => [ 'shape' => 'GenericTimestamp', ], ], ], 'TimeUnit' => [ 'type' => 'string', 'enum' => [ 'MONTHLY', 'QUARTERLY', 'ANNUALLY', ], ], 'UpdateBudgetRequest' => [ 'type' => 'structure', 'required' => [ 'AccountId', 'NewBudget', ], 'members' => [ 'AccountId' => [ 'shape' => 'AccountId', ], 'NewBudget' => [ 'shape' => 'Budget', ], ], ], 'UpdateBudgetResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateNotificationRequest' => [ 'type' => 'structure', 'required' => [ 'AccountId', 'BudgetName', 'OldNotification', 'NewNotification', ], 'members' => [ 'AccountId' => [ 'shape' => 'AccountId', ], 'BudgetName' => [ 'shape' => 'BudgetName', ], 'OldNotification' => [ 'shape' => 'Notification', ], 'NewNotification' => [ 'shape' => 'Notification', ], ], ], 'UpdateNotificationResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateSubscriberRequest' => [ 'type' => 'structure', 'required' => [ 'AccountId', 'BudgetName', 'Notification', 'OldSubscriber', 'NewSubscriber', ], 'members' => [ 'AccountId' => [ 'shape' => 'AccountId', ], 'BudgetName' => [ 'shape' => 'BudgetName', ], 'Notification' => [ 'shape' => 'Notification', ], 'OldSubscriber' => [ 'shape' => 'Subscriber', ], 'NewSubscriber' => [ 'shape' => 'Subscriber', ], ], ], 'UpdateSubscriberResponse' => [ 'type' => 'structure', 'members' => [], ], 'errorMessage' => [ 'type' => 'string', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/api-2.json.php index 608cd0d28..78e5dd9ff 100644 --- a/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2010-05-15', 'endpointPrefix' => 'cloudformation', 'protocol' => 'query', 'serviceFullName' => 'AWS CloudFormation', 'signatureVersion' => 'v4', 'xmlNamespace' => 'http://cloudformation.amazonaws.com/doc/2010-05-15/', ], 'operations' => [ 'CancelUpdateStack' => [ 'name' => 'CancelUpdateStack', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelUpdateStackInput', ], ], 'ContinueUpdateRollback' => [ 'name' => 'ContinueUpdateRollback', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ContinueUpdateRollbackInput', ], 'output' => [ 'shape' => 'ContinueUpdateRollbackOutput', 'resultWrapper' => 'ContinueUpdateRollbackResult', ], ], 'CreateChangeSet' => [ 'name' => 'CreateChangeSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateChangeSetInput', ], 'output' => [ 'shape' => 'CreateChangeSetOutput', 'resultWrapper' => 'CreateChangeSetResult', ], 'errors' => [ [ 'shape' => 'AlreadyExistsException', ], [ 'shape' => 'InsufficientCapabilitiesException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateStack' => [ 'name' => 'CreateStack', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateStackInput', ], 'output' => [ 'shape' => 'CreateStackOutput', 'resultWrapper' => 'CreateStackResult', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'AlreadyExistsException', ], [ 'shape' => 'InsufficientCapabilitiesException', ], ], ], 'DeleteChangeSet' => [ 'name' => 'DeleteChangeSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteChangeSetInput', ], 'output' => [ 'shape' => 'DeleteChangeSetOutput', 'resultWrapper' => 'DeleteChangeSetResult', ], 'errors' => [ [ 'shape' => 'InvalidChangeSetStatusException', ], ], ], 'DeleteStack' => [ 'name' => 'DeleteStack', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteStackInput', ], ], 'DescribeAccountLimits' => [ 'name' => 'DescribeAccountLimits', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAccountLimitsInput', ], 'output' => [ 'shape' => 'DescribeAccountLimitsOutput', 'resultWrapper' => 'DescribeAccountLimitsResult', ], ], 'DescribeChangeSet' => [ 'name' => 'DescribeChangeSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeChangeSetInput', ], 'output' => [ 'shape' => 'DescribeChangeSetOutput', 'resultWrapper' => 'DescribeChangeSetResult', ], 'errors' => [ [ 'shape' => 'ChangeSetNotFoundException', ], ], ], 'DescribeStackEvents' => [ 'name' => 'DescribeStackEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStackEventsInput', ], 'output' => [ 'shape' => 'DescribeStackEventsOutput', 'resultWrapper' => 'DescribeStackEventsResult', ], ], 'DescribeStackResource' => [ 'name' => 'DescribeStackResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStackResourceInput', ], 'output' => [ 'shape' => 'DescribeStackResourceOutput', 'resultWrapper' => 'DescribeStackResourceResult', ], ], 'DescribeStackResources' => [ 'name' => 'DescribeStackResources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStackResourcesInput', ], 'output' => [ 'shape' => 'DescribeStackResourcesOutput', 'resultWrapper' => 'DescribeStackResourcesResult', ], ], 'DescribeStacks' => [ 'name' => 'DescribeStacks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStacksInput', ], 'output' => [ 'shape' => 'DescribeStacksOutput', 'resultWrapper' => 'DescribeStacksResult', ], ], 'EstimateTemplateCost' => [ 'name' => 'EstimateTemplateCost', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EstimateTemplateCostInput', ], 'output' => [ 'shape' => 'EstimateTemplateCostOutput', 'resultWrapper' => 'EstimateTemplateCostResult', ], ], 'ExecuteChangeSet' => [ 'name' => 'ExecuteChangeSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ExecuteChangeSetInput', ], 'output' => [ 'shape' => 'ExecuteChangeSetOutput', 'resultWrapper' => 'ExecuteChangeSetResult', ], 'errors' => [ [ 'shape' => 'InvalidChangeSetStatusException', ], [ 'shape' => 'ChangeSetNotFoundException', ], ], ], 'GetStackPolicy' => [ 'name' => 'GetStackPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetStackPolicyInput', ], 'output' => [ 'shape' => 'GetStackPolicyOutput', 'resultWrapper' => 'GetStackPolicyResult', ], ], 'GetTemplate' => [ 'name' => 'GetTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTemplateInput', ], 'output' => [ 'shape' => 'GetTemplateOutput', 'resultWrapper' => 'GetTemplateResult', ], ], 'GetTemplateSummary' => [ 'name' => 'GetTemplateSummary', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTemplateSummaryInput', ], 'output' => [ 'shape' => 'GetTemplateSummaryOutput', 'resultWrapper' => 'GetTemplateSummaryResult', ], ], 'ListChangeSets' => [ 'name' => 'ListChangeSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListChangeSetsInput', ], 'output' => [ 'shape' => 'ListChangeSetsOutput', 'resultWrapper' => 'ListChangeSetsResult', ], ], 'ListStackResources' => [ 'name' => 'ListStackResources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListStackResourcesInput', ], 'output' => [ 'shape' => 'ListStackResourcesOutput', 'resultWrapper' => 'ListStackResourcesResult', ], ], 'ListStacks' => [ 'name' => 'ListStacks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListStacksInput', ], 'output' => [ 'shape' => 'ListStacksOutput', 'resultWrapper' => 'ListStacksResult', ], ], 'SetStackPolicy' => [ 'name' => 'SetStackPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetStackPolicyInput', ], ], 'SignalResource' => [ 'name' => 'SignalResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SignalResourceInput', ], ], 'UpdateStack' => [ 'name' => 'UpdateStack', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateStackInput', ], 'output' => [ 'shape' => 'UpdateStackOutput', 'resultWrapper' => 'UpdateStackResult', ], 'errors' => [ [ 'shape' => 'InsufficientCapabilitiesException', ], ], ], 'ValidateTemplate' => [ 'name' => 'ValidateTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ValidateTemplateInput', ], 'output' => [ 'shape' => 'ValidateTemplateOutput', 'resultWrapper' => 'ValidateTemplateResult', ], ], ], 'shapes' => [ 'AccountLimit' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'LimitName', ], 'Value' => [ 'shape' => 'LimitValue', ], ], ], 'AccountLimitList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountLimit', ], ], 'AllowedValue' => [ 'type' => 'string', ], 'AllowedValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedValue', ], ], 'AlreadyExistsException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AlreadyExistsException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CancelUpdateStackInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], ], ], 'Capabilities' => [ 'type' => 'list', 'member' => [ 'shape' => 'Capability', ], ], 'CapabilitiesReason' => [ 'type' => 'string', ], 'Capability' => [ 'type' => 'string', 'enum' => [ 'CAPABILITY_IAM', 'CAPABILITY_NAMED_IAM', ], ], 'CausingEntity' => [ 'type' => 'string', ], 'Change' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'ChangeType', ], 'ResourceChange' => [ 'shape' => 'ResourceChange', ], ], ], 'ChangeAction' => [ 'type' => 'string', 'enum' => [ 'Add', 'Modify', 'Remove', ], ], 'ChangeSetId' => [ 'type' => 'string', 'min' => 1, 'pattern' => 'arn:[-a-zA-Z0-9:/]*', ], 'ChangeSetName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z][-a-zA-Z0-9]*', ], 'ChangeSetNameOrId' => [ 'type' => 'string', 'max' => 1600, 'min' => 1, 'pattern' => '[a-zA-Z][-a-zA-Z0-9]*|arn:[-a-zA-Z0-9:/]*', ], 'ChangeSetNotFoundException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ChangeSetNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ChangeSetStatus' => [ 'type' => 'string', 'enum' => [ 'CREATE_PENDING', 'CREATE_IN_PROGRESS', 'CREATE_COMPLETE', 'DELETE_COMPLETE', 'FAILED', ], ], 'ChangeSetStatusReason' => [ 'type' => 'string', ], 'ChangeSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ChangeSetSummary', ], ], 'ChangeSetSummary' => [ 'type' => 'structure', 'members' => [ 'StackId' => [ 'shape' => 'StackId', ], 'StackName' => [ 'shape' => 'StackName', ], 'ChangeSetId' => [ 'shape' => 'ChangeSetId', ], 'ChangeSetName' => [ 'shape' => 'ChangeSetName', ], 'ExecutionStatus' => [ 'shape' => 'ExecutionStatus', ], 'Status' => [ 'shape' => 'ChangeSetStatus', ], 'StatusReason' => [ 'shape' => 'ChangeSetStatusReason', ], 'CreationTime' => [ 'shape' => 'CreationTime', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'ChangeSource' => [ 'type' => 'string', 'enum' => [ 'ResourceReference', 'ParameterReference', 'ResourceAttribute', 'DirectModification', 'Automatic', ], ], 'ChangeType' => [ 'type' => 'string', 'enum' => [ 'Resource', ], ], 'Changes' => [ 'type' => 'list', 'member' => [ 'shape' => 'Change', ], ], 'ClientToken' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'ContinueUpdateRollbackInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackNameOrId', ], ], ], 'ContinueUpdateRollbackOutput' => [ 'type' => 'structure', 'members' => [], ], 'CreateChangeSetInput' => [ 'type' => 'structure', 'required' => [ 'StackName', 'ChangeSetName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackNameOrId', ], 'TemplateBody' => [ 'shape' => 'TemplateBody', ], 'TemplateURL' => [ 'shape' => 'TemplateURL', ], 'UsePreviousTemplate' => [ 'shape' => 'UsePreviousTemplate', ], 'Parameters' => [ 'shape' => 'Parameters', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'ResourceTypes' => [ 'shape' => 'ResourceTypes', ], 'NotificationARNs' => [ 'shape' => 'NotificationARNs', ], 'Tags' => [ 'shape' => 'Tags', ], 'ChangeSetName' => [ 'shape' => 'ChangeSetName', ], 'ClientToken' => [ 'shape' => 'ClientToken', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'CreateChangeSetOutput' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'ChangeSetId', ], ], ], 'CreateStackInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'TemplateBody' => [ 'shape' => 'TemplateBody', ], 'TemplateURL' => [ 'shape' => 'TemplateURL', ], 'Parameters' => [ 'shape' => 'Parameters', ], 'DisableRollback' => [ 'shape' => 'DisableRollback', ], 'TimeoutInMinutes' => [ 'shape' => 'TimeoutMinutes', ], 'NotificationARNs' => [ 'shape' => 'NotificationARNs', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'ResourceTypes' => [ 'shape' => 'ResourceTypes', ], 'OnFailure' => [ 'shape' => 'OnFailure', ], 'StackPolicyBody' => [ 'shape' => 'StackPolicyBody', ], 'StackPolicyURL' => [ 'shape' => 'StackPolicyURL', ], 'Tags' => [ 'shape' => 'Tags', ], ], ], 'CreateStackOutput' => [ 'type' => 'structure', 'members' => [ 'StackId' => [ 'shape' => 'StackId', ], ], ], 'CreationTime' => [ 'type' => 'timestamp', ], 'DeleteChangeSetInput' => [ 'type' => 'structure', 'required' => [ 'ChangeSetName', ], 'members' => [ 'ChangeSetName' => [ 'shape' => 'ChangeSetNameOrId', ], 'StackName' => [ 'shape' => 'StackNameOrId', ], ], ], 'DeleteChangeSetOutput' => [ 'type' => 'structure', 'members' => [], ], 'DeleteStackInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'RetainResources' => [ 'shape' => 'RetainResources', ], ], ], 'DeletionTime' => [ 'type' => 'timestamp', ], 'DescribeAccountLimitsInput' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeAccountLimitsOutput' => [ 'type' => 'structure', 'members' => [ 'AccountLimits' => [ 'shape' => 'AccountLimitList', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeChangeSetInput' => [ 'type' => 'structure', 'required' => [ 'ChangeSetName', ], 'members' => [ 'ChangeSetName' => [ 'shape' => 'ChangeSetNameOrId', ], 'StackName' => [ 'shape' => 'StackNameOrId', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeChangeSetOutput' => [ 'type' => 'structure', 'members' => [ 'ChangeSetName' => [ 'shape' => 'ChangeSetName', ], 'ChangeSetId' => [ 'shape' => 'ChangeSetId', ], 'StackId' => [ 'shape' => 'StackId', ], 'StackName' => [ 'shape' => 'StackName', ], 'Description' => [ 'shape' => 'Description', ], 'Parameters' => [ 'shape' => 'Parameters', ], 'CreationTime' => [ 'shape' => 'CreationTime', ], 'ExecutionStatus' => [ 'shape' => 'ExecutionStatus', ], 'Status' => [ 'shape' => 'ChangeSetStatus', ], 'StatusReason' => [ 'shape' => 'ChangeSetStatusReason', ], 'NotificationARNs' => [ 'shape' => 'NotificationARNs', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'Tags' => [ 'shape' => 'Tags', ], 'Changes' => [ 'shape' => 'Changes', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeStackEventsInput' => [ 'type' => 'structure', 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeStackEventsOutput' => [ 'type' => 'structure', 'members' => [ 'StackEvents' => [ 'shape' => 'StackEvents', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeStackResourceInput' => [ 'type' => 'structure', 'required' => [ 'StackName', 'LogicalResourceId', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], ], ], 'DescribeStackResourceOutput' => [ 'type' => 'structure', 'members' => [ 'StackResourceDetail' => [ 'shape' => 'StackResourceDetail', ], ], ], 'DescribeStackResourcesInput' => [ 'type' => 'structure', 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'PhysicalResourceId' => [ 'shape' => 'PhysicalResourceId', ], ], ], 'DescribeStackResourcesOutput' => [ 'type' => 'structure', 'members' => [ 'StackResources' => [ 'shape' => 'StackResources', ], ], ], 'DescribeStacksInput' => [ 'type' => 'structure', 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeStacksOutput' => [ 'type' => 'structure', 'members' => [ 'Stacks' => [ 'shape' => 'Stacks', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'Description' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'DisableRollback' => [ 'type' => 'boolean', ], 'EstimateTemplateCostInput' => [ 'type' => 'structure', 'members' => [ 'TemplateBody' => [ 'shape' => 'TemplateBody', ], 'TemplateURL' => [ 'shape' => 'TemplateURL', ], 'Parameters' => [ 'shape' => 'Parameters', ], ], ], 'EstimateTemplateCostOutput' => [ 'type' => 'structure', 'members' => [ 'Url' => [ 'shape' => 'Url', ], ], ], 'EvaluationType' => [ 'type' => 'string', 'enum' => [ 'Static', 'Dynamic', ], ], 'EventId' => [ 'type' => 'string', ], 'ExecuteChangeSetInput' => [ 'type' => 'structure', 'required' => [ 'ChangeSetName', ], 'members' => [ 'ChangeSetName' => [ 'shape' => 'ChangeSetNameOrId', ], 'StackName' => [ 'shape' => 'StackNameOrId', ], ], ], 'ExecuteChangeSetOutput' => [ 'type' => 'structure', 'members' => [], ], 'ExecutionStatus' => [ 'type' => 'string', 'enum' => [ 'UNAVAILABLE', 'AVAILABLE', 'EXECUTE_IN_PROGRESS', 'EXECUTE_COMPLETE', 'EXECUTE_FAILED', 'OBSOLETE', ], ], 'GetStackPolicyInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], ], ], 'GetStackPolicyOutput' => [ 'type' => 'structure', 'members' => [ 'StackPolicyBody' => [ 'shape' => 'StackPolicyBody', ], ], ], 'GetTemplateInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], ], ], 'GetTemplateOutput' => [ 'type' => 'structure', 'members' => [ 'TemplateBody' => [ 'shape' => 'TemplateBody', ], ], ], 'GetTemplateSummaryInput' => [ 'type' => 'structure', 'members' => [ 'TemplateBody' => [ 'shape' => 'TemplateBody', ], 'TemplateURL' => [ 'shape' => 'TemplateURL', ], 'StackName' => [ 'shape' => 'StackNameOrId', ], ], ], 'GetTemplateSummaryOutput' => [ 'type' => 'structure', 'members' => [ 'Parameters' => [ 'shape' => 'ParameterDeclarations', ], 'Description' => [ 'shape' => 'Description', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'CapabilitiesReason' => [ 'shape' => 'CapabilitiesReason', ], 'ResourceTypes' => [ 'shape' => 'ResourceTypes', ], 'Version' => [ 'shape' => 'Version', ], 'Metadata' => [ 'shape' => 'Metadata', ], ], ], 'InsufficientCapabilitiesException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientCapabilitiesException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidChangeSetStatusException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidChangeSetStatus', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'LastUpdatedTime' => [ 'type' => 'timestamp', ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'LimitExceededException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'LimitName' => [ 'type' => 'string', ], 'LimitValue' => [ 'type' => 'integer', ], 'ListChangeSetsInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackNameOrId', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListChangeSetsOutput' => [ 'type' => 'structure', 'members' => [ 'Summaries' => [ 'shape' => 'ChangeSetSummaries', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListStackResourcesInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListStackResourcesOutput' => [ 'type' => 'structure', 'members' => [ 'StackResourceSummaries' => [ 'shape' => 'StackResourceSummaries', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListStacksInput' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', ], 'StackStatusFilter' => [ 'shape' => 'StackStatusFilter', ], ], ], 'ListStacksOutput' => [ 'type' => 'structure', 'members' => [ 'StackSummaries' => [ 'shape' => 'StackSummaries', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'LogicalResourceId' => [ 'type' => 'string', ], 'Metadata' => [ 'type' => 'string', ], 'NextToken' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'NoEcho' => [ 'type' => 'boolean', ], 'NotificationARN' => [ 'type' => 'string', ], 'NotificationARNs' => [ 'type' => 'list', 'member' => [ 'shape' => 'NotificationARN', ], 'max' => 5, ], 'OnFailure' => [ 'type' => 'string', 'enum' => [ 'DO_NOTHING', 'ROLLBACK', 'DELETE', ], ], 'Output' => [ 'type' => 'structure', 'members' => [ 'OutputKey' => [ 'shape' => 'OutputKey', ], 'OutputValue' => [ 'shape' => 'OutputValue', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'OutputKey' => [ 'type' => 'string', ], 'OutputValue' => [ 'type' => 'string', ], 'Outputs' => [ 'type' => 'list', 'member' => [ 'shape' => 'Output', ], ], 'Parameter' => [ 'type' => 'structure', 'members' => [ 'ParameterKey' => [ 'shape' => 'ParameterKey', ], 'ParameterValue' => [ 'shape' => 'ParameterValue', ], 'UsePreviousValue' => [ 'shape' => 'UsePreviousValue', ], ], ], 'ParameterConstraints' => [ 'type' => 'structure', 'members' => [ 'AllowedValues' => [ 'shape' => 'AllowedValues', ], ], ], 'ParameterDeclaration' => [ 'type' => 'structure', 'members' => [ 'ParameterKey' => [ 'shape' => 'ParameterKey', ], 'DefaultValue' => [ 'shape' => 'ParameterValue', ], 'ParameterType' => [ 'shape' => 'ParameterType', ], 'NoEcho' => [ 'shape' => 'NoEcho', ], 'Description' => [ 'shape' => 'Description', ], 'ParameterConstraints' => [ 'shape' => 'ParameterConstraints', ], ], ], 'ParameterDeclarations' => [ 'type' => 'list', 'member' => [ 'shape' => 'ParameterDeclaration', ], ], 'ParameterKey' => [ 'type' => 'string', ], 'ParameterType' => [ 'type' => 'string', ], 'ParameterValue' => [ 'type' => 'string', ], 'Parameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'Parameter', ], ], 'PhysicalResourceId' => [ 'type' => 'string', ], 'PropertyName' => [ 'type' => 'string', ], 'Replacement' => [ 'type' => 'string', 'enum' => [ 'True', 'False', 'Conditional', ], ], 'RequiresRecreation' => [ 'type' => 'string', 'enum' => [ 'Never', 'Conditionally', 'Always', ], ], 'ResourceAttribute' => [ 'type' => 'string', 'enum' => [ 'Properties', 'Metadata', 'CreationPolicy', 'UpdatePolicy', 'DeletionPolicy', 'Tags', ], ], 'ResourceChange' => [ 'type' => 'structure', 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'PhysicalResourceId' => [ 'shape' => 'PhysicalResourceId', ], 'ResourceType' => [ 'shape' => 'ResourceType', ], 'Replacement' => [ 'shape' => 'Replacement', ], 'Scope' => [ 'shape' => 'Scope', ], 'Details' => [ 'shape' => 'ResourceChangeDetails', ], ], ], 'ResourceChangeDetail' => [ 'type' => 'structure', 'members' => [ 'Target' => [ 'shape' => 'ResourceTargetDefinition', ], 'Evaluation' => [ 'shape' => 'EvaluationType', ], 'ChangeSource' => [ 'shape' => 'ChangeSource', ], 'CausingEntity' => [ 'shape' => 'CausingEntity', ], ], ], 'ResourceChangeDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceChangeDetail', ], ], 'ResourceProperties' => [ 'type' => 'string', ], 'ResourceSignalStatus' => [ 'type' => 'string', 'enum' => [ 'SUCCESS', 'FAILURE', ], ], 'ResourceSignalUniqueId' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'ResourceStatus' => [ 'type' => 'string', 'enum' => [ 'CREATE_IN_PROGRESS', 'CREATE_FAILED', 'CREATE_COMPLETE', 'DELETE_IN_PROGRESS', 'DELETE_FAILED', 'DELETE_COMPLETE', 'DELETE_SKIPPED', 'UPDATE_IN_PROGRESS', 'UPDATE_FAILED', 'UPDATE_COMPLETE', ], ], 'ResourceStatusReason' => [ 'type' => 'string', ], 'ResourceTargetDefinition' => [ 'type' => 'structure', 'members' => [ 'Attribute' => [ 'shape' => 'ResourceAttribute', ], 'Name' => [ 'shape' => 'PropertyName', ], 'RequiresRecreation' => [ 'shape' => 'RequiresRecreation', ], ], ], 'ResourceType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'ResourceTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceType', ], ], 'RetainResources' => [ 'type' => 'list', 'member' => [ 'shape' => 'LogicalResourceId', ], ], 'Scope' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceAttribute', ], ], 'SetStackPolicyInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'StackPolicyBody' => [ 'shape' => 'StackPolicyBody', ], 'StackPolicyURL' => [ 'shape' => 'StackPolicyURL', ], ], ], 'SignalResourceInput' => [ 'type' => 'structure', 'required' => [ 'StackName', 'LogicalResourceId', 'UniqueId', 'Status', ], 'members' => [ 'StackName' => [ 'shape' => 'StackNameOrId', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'UniqueId' => [ 'shape' => 'ResourceSignalUniqueId', ], 'Status' => [ 'shape' => 'ResourceSignalStatus', ], ], ], 'Stack' => [ 'type' => 'structure', 'required' => [ 'StackName', 'CreationTime', 'StackStatus', ], 'members' => [ 'StackId' => [ 'shape' => 'StackId', ], 'StackName' => [ 'shape' => 'StackName', ], 'Description' => [ 'shape' => 'Description', ], 'Parameters' => [ 'shape' => 'Parameters', ], 'CreationTime' => [ 'shape' => 'CreationTime', ], 'LastUpdatedTime' => [ 'shape' => 'LastUpdatedTime', ], 'StackStatus' => [ 'shape' => 'StackStatus', ], 'StackStatusReason' => [ 'shape' => 'StackStatusReason', ], 'DisableRollback' => [ 'shape' => 'DisableRollback', ], 'NotificationARNs' => [ 'shape' => 'NotificationARNs', ], 'TimeoutInMinutes' => [ 'shape' => 'TimeoutMinutes', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'Outputs' => [ 'shape' => 'Outputs', ], 'Tags' => [ 'shape' => 'Tags', ], ], ], 'StackEvent' => [ 'type' => 'structure', 'required' => [ 'StackId', 'EventId', 'StackName', 'Timestamp', ], 'members' => [ 'StackId' => [ 'shape' => 'StackId', ], 'EventId' => [ 'shape' => 'EventId', ], 'StackName' => [ 'shape' => 'StackName', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'PhysicalResourceId' => [ 'shape' => 'PhysicalResourceId', ], 'ResourceType' => [ 'shape' => 'ResourceType', ], 'Timestamp' => [ 'shape' => 'Timestamp', ], 'ResourceStatus' => [ 'shape' => 'ResourceStatus', ], 'ResourceStatusReason' => [ 'shape' => 'ResourceStatusReason', ], 'ResourceProperties' => [ 'shape' => 'ResourceProperties', ], ], ], 'StackEvents' => [ 'type' => 'list', 'member' => [ 'shape' => 'StackEvent', ], ], 'StackId' => [ 'type' => 'string', ], 'StackName' => [ 'type' => 'string', ], 'StackNameOrId' => [ 'type' => 'string', 'min' => 1, 'pattern' => '([a-zA-Z][-a-zA-Z0-9]*)|(arn:\\b(aws|aws-us-gov|aws-cn)\\b:[-a-zA-Z0-9:/._+]*)', ], 'StackPolicyBody' => [ 'type' => 'string', 'max' => 16384, 'min' => 1, ], 'StackPolicyDuringUpdateBody' => [ 'type' => 'string', 'max' => 16384, 'min' => 1, ], 'StackPolicyDuringUpdateURL' => [ 'type' => 'string', 'max' => 1350, 'min' => 1, ], 'StackPolicyURL' => [ 'type' => 'string', 'max' => 1350, 'min' => 1, ], 'StackResource' => [ 'type' => 'structure', 'required' => [ 'LogicalResourceId', 'ResourceType', 'Timestamp', 'ResourceStatus', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'StackId' => [ 'shape' => 'StackId', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'PhysicalResourceId' => [ 'shape' => 'PhysicalResourceId', ], 'ResourceType' => [ 'shape' => 'ResourceType', ], 'Timestamp' => [ 'shape' => 'Timestamp', ], 'ResourceStatus' => [ 'shape' => 'ResourceStatus', ], 'ResourceStatusReason' => [ 'shape' => 'ResourceStatusReason', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'StackResourceDetail' => [ 'type' => 'structure', 'required' => [ 'LogicalResourceId', 'ResourceType', 'LastUpdatedTimestamp', 'ResourceStatus', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'StackId' => [ 'shape' => 'StackId', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'PhysicalResourceId' => [ 'shape' => 'PhysicalResourceId', ], 'ResourceType' => [ 'shape' => 'ResourceType', ], 'LastUpdatedTimestamp' => [ 'shape' => 'Timestamp', ], 'ResourceStatus' => [ 'shape' => 'ResourceStatus', ], 'ResourceStatusReason' => [ 'shape' => 'ResourceStatusReason', ], 'Description' => [ 'shape' => 'Description', ], 'Metadata' => [ 'shape' => 'Metadata', ], ], ], 'StackResourceSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'StackResourceSummary', ], ], 'StackResourceSummary' => [ 'type' => 'structure', 'required' => [ 'LogicalResourceId', 'ResourceType', 'LastUpdatedTimestamp', 'ResourceStatus', ], 'members' => [ 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'PhysicalResourceId' => [ 'shape' => 'PhysicalResourceId', ], 'ResourceType' => [ 'shape' => 'ResourceType', ], 'LastUpdatedTimestamp' => [ 'shape' => 'Timestamp', ], 'ResourceStatus' => [ 'shape' => 'ResourceStatus', ], 'ResourceStatusReason' => [ 'shape' => 'ResourceStatusReason', ], ], ], 'StackResources' => [ 'type' => 'list', 'member' => [ 'shape' => 'StackResource', ], ], 'StackStatus' => [ 'type' => 'string', 'enum' => [ 'CREATE_IN_PROGRESS', 'CREATE_FAILED', 'CREATE_COMPLETE', 'ROLLBACK_IN_PROGRESS', 'ROLLBACK_FAILED', 'ROLLBACK_COMPLETE', 'DELETE_IN_PROGRESS', 'DELETE_FAILED', 'DELETE_COMPLETE', 'UPDATE_IN_PROGRESS', 'UPDATE_COMPLETE_CLEANUP_IN_PROGRESS', 'UPDATE_COMPLETE', 'UPDATE_ROLLBACK_IN_PROGRESS', 'UPDATE_ROLLBACK_FAILED', 'UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS', 'UPDATE_ROLLBACK_COMPLETE', ], ], 'StackStatusFilter' => [ 'type' => 'list', 'member' => [ 'shape' => 'StackStatus', ], ], 'StackStatusReason' => [ 'type' => 'string', ], 'StackSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'StackSummary', ], ], 'StackSummary' => [ 'type' => 'structure', 'required' => [ 'StackName', 'CreationTime', 'StackStatus', ], 'members' => [ 'StackId' => [ 'shape' => 'StackId', ], 'StackName' => [ 'shape' => 'StackName', ], 'TemplateDescription' => [ 'shape' => 'TemplateDescription', ], 'CreationTime' => [ 'shape' => 'CreationTime', ], 'LastUpdatedTime' => [ 'shape' => 'LastUpdatedTime', ], 'DeletionTime' => [ 'shape' => 'DeletionTime', ], 'StackStatus' => [ 'shape' => 'StackStatus', ], 'StackStatusReason' => [ 'shape' => 'StackStatusReason', ], ], ], 'Stacks' => [ 'type' => 'list', 'member' => [ 'shape' => 'Stack', ], ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', ], 'TagValue' => [ 'type' => 'string', ], 'Tags' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], ], 'TemplateBody' => [ 'type' => 'string', 'min' => 1, ], 'TemplateDescription' => [ 'type' => 'string', ], 'TemplateParameter' => [ 'type' => 'structure', 'members' => [ 'ParameterKey' => [ 'shape' => 'ParameterKey', ], 'DefaultValue' => [ 'shape' => 'ParameterValue', ], 'NoEcho' => [ 'shape' => 'NoEcho', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'TemplateParameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'TemplateParameter', ], ], 'TemplateURL' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'TimeoutMinutes' => [ 'type' => 'integer', 'min' => 1, ], 'Timestamp' => [ 'type' => 'timestamp', ], 'UpdateStackInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'TemplateBody' => [ 'shape' => 'TemplateBody', ], 'TemplateURL' => [ 'shape' => 'TemplateURL', ], 'UsePreviousTemplate' => [ 'shape' => 'UsePreviousTemplate', ], 'StackPolicyDuringUpdateBody' => [ 'shape' => 'StackPolicyDuringUpdateBody', ], 'StackPolicyDuringUpdateURL' => [ 'shape' => 'StackPolicyDuringUpdateURL', ], 'Parameters' => [ 'shape' => 'Parameters', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'ResourceTypes' => [ 'shape' => 'ResourceTypes', ], 'StackPolicyBody' => [ 'shape' => 'StackPolicyBody', ], 'StackPolicyURL' => [ 'shape' => 'StackPolicyURL', ], 'NotificationARNs' => [ 'shape' => 'NotificationARNs', ], 'Tags' => [ 'shape' => 'Tags', ], ], ], 'UpdateStackOutput' => [ 'type' => 'structure', 'members' => [ 'StackId' => [ 'shape' => 'StackId', ], ], ], 'Url' => [ 'type' => 'string', ], 'UsePreviousTemplate' => [ 'type' => 'boolean', ], 'UsePreviousValue' => [ 'type' => 'boolean', ], 'ValidateTemplateInput' => [ 'type' => 'structure', 'members' => [ 'TemplateBody' => [ 'shape' => 'TemplateBody', ], 'TemplateURL' => [ 'shape' => 'TemplateURL', ], ], ], 'ValidateTemplateOutput' => [ 'type' => 'structure', 'members' => [ 'Parameters' => [ 'shape' => 'TemplateParameters', ], 'Description' => [ 'shape' => 'Description', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'CapabilitiesReason' => [ 'shape' => 'CapabilitiesReason', ], ], ], 'Version' => [ 'type' => 'string', ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2010-05-15', 'endpointPrefix' => 'cloudformation', 'protocol' => 'query', 'serviceFullName' => 'AWS CloudFormation', 'signatureVersion' => 'v4', 'xmlNamespace' => 'http://cloudformation.amazonaws.com/doc/2010-05-15/', ], 'operations' => [ 'CancelUpdateStack' => [ 'name' => 'CancelUpdateStack', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelUpdateStackInput', ], ], 'ContinueUpdateRollback' => [ 'name' => 'ContinueUpdateRollback', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ContinueUpdateRollbackInput', ], 'output' => [ 'shape' => 'ContinueUpdateRollbackOutput', 'resultWrapper' => 'ContinueUpdateRollbackResult', ], ], 'CreateChangeSet' => [ 'name' => 'CreateChangeSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateChangeSetInput', ], 'output' => [ 'shape' => 'CreateChangeSetOutput', 'resultWrapper' => 'CreateChangeSetResult', ], 'errors' => [ [ 'shape' => 'AlreadyExistsException', ], [ 'shape' => 'InsufficientCapabilitiesException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateStack' => [ 'name' => 'CreateStack', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateStackInput', ], 'output' => [ 'shape' => 'CreateStackOutput', 'resultWrapper' => 'CreateStackResult', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'AlreadyExistsException', ], [ 'shape' => 'InsufficientCapabilitiesException', ], ], ], 'DeleteChangeSet' => [ 'name' => 'DeleteChangeSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteChangeSetInput', ], 'output' => [ 'shape' => 'DeleteChangeSetOutput', 'resultWrapper' => 'DeleteChangeSetResult', ], 'errors' => [ [ 'shape' => 'InvalidChangeSetStatusException', ], ], ], 'DeleteStack' => [ 'name' => 'DeleteStack', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteStackInput', ], ], 'DescribeAccountLimits' => [ 'name' => 'DescribeAccountLimits', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAccountLimitsInput', ], 'output' => [ 'shape' => 'DescribeAccountLimitsOutput', 'resultWrapper' => 'DescribeAccountLimitsResult', ], ], 'DescribeChangeSet' => [ 'name' => 'DescribeChangeSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeChangeSetInput', ], 'output' => [ 'shape' => 'DescribeChangeSetOutput', 'resultWrapper' => 'DescribeChangeSetResult', ], 'errors' => [ [ 'shape' => 'ChangeSetNotFoundException', ], ], ], 'DescribeStackEvents' => [ 'name' => 'DescribeStackEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStackEventsInput', ], 'output' => [ 'shape' => 'DescribeStackEventsOutput', 'resultWrapper' => 'DescribeStackEventsResult', ], ], 'DescribeStackResource' => [ 'name' => 'DescribeStackResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStackResourceInput', ], 'output' => [ 'shape' => 'DescribeStackResourceOutput', 'resultWrapper' => 'DescribeStackResourceResult', ], ], 'DescribeStackResources' => [ 'name' => 'DescribeStackResources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStackResourcesInput', ], 'output' => [ 'shape' => 'DescribeStackResourcesOutput', 'resultWrapper' => 'DescribeStackResourcesResult', ], ], 'DescribeStacks' => [ 'name' => 'DescribeStacks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStacksInput', ], 'output' => [ 'shape' => 'DescribeStacksOutput', 'resultWrapper' => 'DescribeStacksResult', ], ], 'EstimateTemplateCost' => [ 'name' => 'EstimateTemplateCost', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EstimateTemplateCostInput', ], 'output' => [ 'shape' => 'EstimateTemplateCostOutput', 'resultWrapper' => 'EstimateTemplateCostResult', ], ], 'ExecuteChangeSet' => [ 'name' => 'ExecuteChangeSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ExecuteChangeSetInput', ], 'output' => [ 'shape' => 'ExecuteChangeSetOutput', 'resultWrapper' => 'ExecuteChangeSetResult', ], 'errors' => [ [ 'shape' => 'InvalidChangeSetStatusException', ], [ 'shape' => 'ChangeSetNotFoundException', ], ], ], 'GetStackPolicy' => [ 'name' => 'GetStackPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetStackPolicyInput', ], 'output' => [ 'shape' => 'GetStackPolicyOutput', 'resultWrapper' => 'GetStackPolicyResult', ], ], 'GetTemplate' => [ 'name' => 'GetTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTemplateInput', ], 'output' => [ 'shape' => 'GetTemplateOutput', 'resultWrapper' => 'GetTemplateResult', ], ], 'GetTemplateSummary' => [ 'name' => 'GetTemplateSummary', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetTemplateSummaryInput', ], 'output' => [ 'shape' => 'GetTemplateSummaryOutput', 'resultWrapper' => 'GetTemplateSummaryResult', ], ], 'ListChangeSets' => [ 'name' => 'ListChangeSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListChangeSetsInput', ], 'output' => [ 'shape' => 'ListChangeSetsOutput', 'resultWrapper' => 'ListChangeSetsResult', ], ], 'ListExports' => [ 'name' => 'ListExports', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListExportsInput', ], 'output' => [ 'shape' => 'ListExportsOutput', 'resultWrapper' => 'ListExportsResult', ], ], 'ListStackResources' => [ 'name' => 'ListStackResources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListStackResourcesInput', ], 'output' => [ 'shape' => 'ListStackResourcesOutput', 'resultWrapper' => 'ListStackResourcesResult', ], ], 'ListStacks' => [ 'name' => 'ListStacks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListStacksInput', ], 'output' => [ 'shape' => 'ListStacksOutput', 'resultWrapper' => 'ListStacksResult', ], ], 'SetStackPolicy' => [ 'name' => 'SetStackPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetStackPolicyInput', ], ], 'SignalResource' => [ 'name' => 'SignalResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SignalResourceInput', ], ], 'UpdateStack' => [ 'name' => 'UpdateStack', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateStackInput', ], 'output' => [ 'shape' => 'UpdateStackOutput', 'resultWrapper' => 'UpdateStackResult', ], 'errors' => [ [ 'shape' => 'InsufficientCapabilitiesException', ], ], ], 'ValidateTemplate' => [ 'name' => 'ValidateTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ValidateTemplateInput', ], 'output' => [ 'shape' => 'ValidateTemplateOutput', 'resultWrapper' => 'ValidateTemplateResult', ], ], ], 'shapes' => [ 'AccountLimit' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'LimitName', ], 'Value' => [ 'shape' => 'LimitValue', ], ], ], 'AccountLimitList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountLimit', ], ], 'AllowedValue' => [ 'type' => 'string', ], 'AllowedValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedValue', ], ], 'AlreadyExistsException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AlreadyExistsException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CancelUpdateStackInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], ], ], 'Capabilities' => [ 'type' => 'list', 'member' => [ 'shape' => 'Capability', ], ], 'CapabilitiesReason' => [ 'type' => 'string', ], 'Capability' => [ 'type' => 'string', 'enum' => [ 'CAPABILITY_IAM', 'CAPABILITY_NAMED_IAM', ], ], 'CausingEntity' => [ 'type' => 'string', ], 'Change' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'ChangeType', ], 'ResourceChange' => [ 'shape' => 'ResourceChange', ], ], ], 'ChangeAction' => [ 'type' => 'string', 'enum' => [ 'Add', 'Modify', 'Remove', ], ], 'ChangeSetId' => [ 'type' => 'string', 'min' => 1, 'pattern' => 'arn:[-a-zA-Z0-9:/]*', ], 'ChangeSetName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z][-a-zA-Z0-9]*', ], 'ChangeSetNameOrId' => [ 'type' => 'string', 'max' => 1600, 'min' => 1, 'pattern' => '[a-zA-Z][-a-zA-Z0-9]*|arn:[-a-zA-Z0-9:/]*', ], 'ChangeSetNotFoundException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ChangeSetNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ChangeSetStatus' => [ 'type' => 'string', 'enum' => [ 'CREATE_PENDING', 'CREATE_IN_PROGRESS', 'CREATE_COMPLETE', 'DELETE_COMPLETE', 'FAILED', ], ], 'ChangeSetStatusReason' => [ 'type' => 'string', ], 'ChangeSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ChangeSetSummary', ], ], 'ChangeSetSummary' => [ 'type' => 'structure', 'members' => [ 'StackId' => [ 'shape' => 'StackId', ], 'StackName' => [ 'shape' => 'StackName', ], 'ChangeSetId' => [ 'shape' => 'ChangeSetId', ], 'ChangeSetName' => [ 'shape' => 'ChangeSetName', ], 'ExecutionStatus' => [ 'shape' => 'ExecutionStatus', ], 'Status' => [ 'shape' => 'ChangeSetStatus', ], 'StatusReason' => [ 'shape' => 'ChangeSetStatusReason', ], 'CreationTime' => [ 'shape' => 'CreationTime', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'ChangeSetType' => [ 'type' => 'string', 'enum' => [ 'CREATE', 'UPDATE', ], ], 'ChangeSource' => [ 'type' => 'string', 'enum' => [ 'ResourceReference', 'ParameterReference', 'ResourceAttribute', 'DirectModification', 'Automatic', ], ], 'ChangeType' => [ 'type' => 'string', 'enum' => [ 'Resource', ], ], 'Changes' => [ 'type' => 'list', 'member' => [ 'shape' => 'Change', ], ], 'ClientToken' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'ContinueUpdateRollbackInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackNameOrId', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], 'ResourcesToSkip' => [ 'shape' => 'ResourcesToSkip', ], ], ], 'ContinueUpdateRollbackOutput' => [ 'type' => 'structure', 'members' => [], ], 'CreateChangeSetInput' => [ 'type' => 'structure', 'required' => [ 'StackName', 'ChangeSetName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackNameOrId', ], 'TemplateBody' => [ 'shape' => 'TemplateBody', ], 'TemplateURL' => [ 'shape' => 'TemplateURL', ], 'UsePreviousTemplate' => [ 'shape' => 'UsePreviousTemplate', ], 'Parameters' => [ 'shape' => 'Parameters', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'ResourceTypes' => [ 'shape' => 'ResourceTypes', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], 'NotificationARNs' => [ 'shape' => 'NotificationARNs', ], 'Tags' => [ 'shape' => 'Tags', ], 'ChangeSetName' => [ 'shape' => 'ChangeSetName', ], 'ClientToken' => [ 'shape' => 'ClientToken', ], 'Description' => [ 'shape' => 'Description', ], 'ChangeSetType' => [ 'shape' => 'ChangeSetType', ], ], ], 'CreateChangeSetOutput' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'ChangeSetId', ], 'StackId' => [ 'shape' => 'StackId', ], ], ], 'CreateStackInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'TemplateBody' => [ 'shape' => 'TemplateBody', ], 'TemplateURL' => [ 'shape' => 'TemplateURL', ], 'Parameters' => [ 'shape' => 'Parameters', ], 'DisableRollback' => [ 'shape' => 'DisableRollback', ], 'TimeoutInMinutes' => [ 'shape' => 'TimeoutMinutes', ], 'NotificationARNs' => [ 'shape' => 'NotificationARNs', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'ResourceTypes' => [ 'shape' => 'ResourceTypes', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], 'OnFailure' => [ 'shape' => 'OnFailure', ], 'StackPolicyBody' => [ 'shape' => 'StackPolicyBody', ], 'StackPolicyURL' => [ 'shape' => 'StackPolicyURL', ], 'Tags' => [ 'shape' => 'Tags', ], ], ], 'CreateStackOutput' => [ 'type' => 'structure', 'members' => [ 'StackId' => [ 'shape' => 'StackId', ], ], ], 'CreationTime' => [ 'type' => 'timestamp', ], 'DeleteChangeSetInput' => [ 'type' => 'structure', 'required' => [ 'ChangeSetName', ], 'members' => [ 'ChangeSetName' => [ 'shape' => 'ChangeSetNameOrId', ], 'StackName' => [ 'shape' => 'StackNameOrId', ], ], ], 'DeleteChangeSetOutput' => [ 'type' => 'structure', 'members' => [], ], 'DeleteStackInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'RetainResources' => [ 'shape' => 'RetainResources', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'DeletionTime' => [ 'type' => 'timestamp', ], 'DescribeAccountLimitsInput' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeAccountLimitsOutput' => [ 'type' => 'structure', 'members' => [ 'AccountLimits' => [ 'shape' => 'AccountLimitList', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeChangeSetInput' => [ 'type' => 'structure', 'required' => [ 'ChangeSetName', ], 'members' => [ 'ChangeSetName' => [ 'shape' => 'ChangeSetNameOrId', ], 'StackName' => [ 'shape' => 'StackNameOrId', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeChangeSetOutput' => [ 'type' => 'structure', 'members' => [ 'ChangeSetName' => [ 'shape' => 'ChangeSetName', ], 'ChangeSetId' => [ 'shape' => 'ChangeSetId', ], 'StackId' => [ 'shape' => 'StackId', ], 'StackName' => [ 'shape' => 'StackName', ], 'Description' => [ 'shape' => 'Description', ], 'Parameters' => [ 'shape' => 'Parameters', ], 'CreationTime' => [ 'shape' => 'CreationTime', ], 'ExecutionStatus' => [ 'shape' => 'ExecutionStatus', ], 'Status' => [ 'shape' => 'ChangeSetStatus', ], 'StatusReason' => [ 'shape' => 'ChangeSetStatusReason', ], 'NotificationARNs' => [ 'shape' => 'NotificationARNs', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'Tags' => [ 'shape' => 'Tags', ], 'Changes' => [ 'shape' => 'Changes', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeStackEventsInput' => [ 'type' => 'structure', 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeStackEventsOutput' => [ 'type' => 'structure', 'members' => [ 'StackEvents' => [ 'shape' => 'StackEvents', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeStackResourceInput' => [ 'type' => 'structure', 'required' => [ 'StackName', 'LogicalResourceId', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], ], ], 'DescribeStackResourceOutput' => [ 'type' => 'structure', 'members' => [ 'StackResourceDetail' => [ 'shape' => 'StackResourceDetail', ], ], ], 'DescribeStackResourcesInput' => [ 'type' => 'structure', 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'PhysicalResourceId' => [ 'shape' => 'PhysicalResourceId', ], ], ], 'DescribeStackResourcesOutput' => [ 'type' => 'structure', 'members' => [ 'StackResources' => [ 'shape' => 'StackResources', ], ], ], 'DescribeStacksInput' => [ 'type' => 'structure', 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeStacksOutput' => [ 'type' => 'structure', 'members' => [ 'Stacks' => [ 'shape' => 'Stacks', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'Description' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'DisableRollback' => [ 'type' => 'boolean', ], 'EstimateTemplateCostInput' => [ 'type' => 'structure', 'members' => [ 'TemplateBody' => [ 'shape' => 'TemplateBody', ], 'TemplateURL' => [ 'shape' => 'TemplateURL', ], 'Parameters' => [ 'shape' => 'Parameters', ], ], ], 'EstimateTemplateCostOutput' => [ 'type' => 'structure', 'members' => [ 'Url' => [ 'shape' => 'Url', ], ], ], 'EvaluationType' => [ 'type' => 'string', 'enum' => [ 'Static', 'Dynamic', ], ], 'EventId' => [ 'type' => 'string', ], 'ExecuteChangeSetInput' => [ 'type' => 'structure', 'required' => [ 'ChangeSetName', ], 'members' => [ 'ChangeSetName' => [ 'shape' => 'ChangeSetNameOrId', ], 'StackName' => [ 'shape' => 'StackNameOrId', ], ], ], 'ExecuteChangeSetOutput' => [ 'type' => 'structure', 'members' => [], ], 'ExecutionStatus' => [ 'type' => 'string', 'enum' => [ 'UNAVAILABLE', 'AVAILABLE', 'EXECUTE_IN_PROGRESS', 'EXECUTE_COMPLETE', 'EXECUTE_FAILED', 'OBSOLETE', ], ], 'Export' => [ 'type' => 'structure', 'members' => [ 'ExportingStackId' => [ 'shape' => 'StackId', ], 'Name' => [ 'shape' => 'ExportName', ], 'Value' => [ 'shape' => 'ExportValue', ], ], ], 'ExportName' => [ 'type' => 'string', ], 'ExportValue' => [ 'type' => 'string', ], 'Exports' => [ 'type' => 'list', 'member' => [ 'shape' => 'Export', ], ], 'GetStackPolicyInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], ], ], 'GetStackPolicyOutput' => [ 'type' => 'structure', 'members' => [ 'StackPolicyBody' => [ 'shape' => 'StackPolicyBody', ], ], ], 'GetTemplateInput' => [ 'type' => 'structure', 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'ChangeSetName' => [ 'shape' => 'ChangeSetNameOrId', ], 'TemplateStage' => [ 'shape' => 'TemplateStage', ], ], ], 'GetTemplateOutput' => [ 'type' => 'structure', 'members' => [ 'TemplateBody' => [ 'shape' => 'TemplateBody', ], 'StagesAvailable' => [ 'shape' => 'StageList', ], ], ], 'GetTemplateSummaryInput' => [ 'type' => 'structure', 'members' => [ 'TemplateBody' => [ 'shape' => 'TemplateBody', ], 'TemplateURL' => [ 'shape' => 'TemplateURL', ], 'StackName' => [ 'shape' => 'StackNameOrId', ], ], ], 'GetTemplateSummaryOutput' => [ 'type' => 'structure', 'members' => [ 'Parameters' => [ 'shape' => 'ParameterDeclarations', ], 'Description' => [ 'shape' => 'Description', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'CapabilitiesReason' => [ 'shape' => 'CapabilitiesReason', ], 'ResourceTypes' => [ 'shape' => 'ResourceTypes', ], 'Version' => [ 'shape' => 'Version', ], 'Metadata' => [ 'shape' => 'Metadata', ], 'DeclaredTransforms' => [ 'shape' => 'TransformsList', ], ], ], 'InsufficientCapabilitiesException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientCapabilitiesException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidChangeSetStatusException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidChangeSetStatus', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'LastUpdatedTime' => [ 'type' => 'timestamp', ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'LimitExceededException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'LimitName' => [ 'type' => 'string', ], 'LimitValue' => [ 'type' => 'integer', ], 'ListChangeSetsInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackNameOrId', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListChangeSetsOutput' => [ 'type' => 'structure', 'members' => [ 'Summaries' => [ 'shape' => 'ChangeSetSummaries', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListExportsInput' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListExportsOutput' => [ 'type' => 'structure', 'members' => [ 'Exports' => [ 'shape' => 'Exports', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListStackResourcesInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListStackResourcesOutput' => [ 'type' => 'structure', 'members' => [ 'StackResourceSummaries' => [ 'shape' => 'StackResourceSummaries', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListStacksInput' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', ], 'StackStatusFilter' => [ 'shape' => 'StackStatusFilter', ], ], ], 'ListStacksOutput' => [ 'type' => 'structure', 'members' => [ 'StackSummaries' => [ 'shape' => 'StackSummaries', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'LogicalResourceId' => [ 'type' => 'string', ], 'Metadata' => [ 'type' => 'string', ], 'NextToken' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'NoEcho' => [ 'type' => 'boolean', ], 'NotificationARN' => [ 'type' => 'string', ], 'NotificationARNs' => [ 'type' => 'list', 'member' => [ 'shape' => 'NotificationARN', ], 'max' => 5, ], 'OnFailure' => [ 'type' => 'string', 'enum' => [ 'DO_NOTHING', 'ROLLBACK', 'DELETE', ], ], 'Output' => [ 'type' => 'structure', 'members' => [ 'OutputKey' => [ 'shape' => 'OutputKey', ], 'OutputValue' => [ 'shape' => 'OutputValue', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'OutputKey' => [ 'type' => 'string', ], 'OutputValue' => [ 'type' => 'string', ], 'Outputs' => [ 'type' => 'list', 'member' => [ 'shape' => 'Output', ], ], 'Parameter' => [ 'type' => 'structure', 'members' => [ 'ParameterKey' => [ 'shape' => 'ParameterKey', ], 'ParameterValue' => [ 'shape' => 'ParameterValue', ], 'UsePreviousValue' => [ 'shape' => 'UsePreviousValue', ], ], ], 'ParameterConstraints' => [ 'type' => 'structure', 'members' => [ 'AllowedValues' => [ 'shape' => 'AllowedValues', ], ], ], 'ParameterDeclaration' => [ 'type' => 'structure', 'members' => [ 'ParameterKey' => [ 'shape' => 'ParameterKey', ], 'DefaultValue' => [ 'shape' => 'ParameterValue', ], 'ParameterType' => [ 'shape' => 'ParameterType', ], 'NoEcho' => [ 'shape' => 'NoEcho', ], 'Description' => [ 'shape' => 'Description', ], 'ParameterConstraints' => [ 'shape' => 'ParameterConstraints', ], ], ], 'ParameterDeclarations' => [ 'type' => 'list', 'member' => [ 'shape' => 'ParameterDeclaration', ], ], 'ParameterKey' => [ 'type' => 'string', ], 'ParameterType' => [ 'type' => 'string', ], 'ParameterValue' => [ 'type' => 'string', ], 'Parameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'Parameter', ], ], 'PhysicalResourceId' => [ 'type' => 'string', ], 'PropertyName' => [ 'type' => 'string', ], 'Replacement' => [ 'type' => 'string', 'enum' => [ 'True', 'False', 'Conditional', ], ], 'RequiresRecreation' => [ 'type' => 'string', 'enum' => [ 'Never', 'Conditionally', 'Always', ], ], 'ResourceAttribute' => [ 'type' => 'string', 'enum' => [ 'Properties', 'Metadata', 'CreationPolicy', 'UpdatePolicy', 'DeletionPolicy', 'Tags', ], ], 'ResourceChange' => [ 'type' => 'structure', 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'PhysicalResourceId' => [ 'shape' => 'PhysicalResourceId', ], 'ResourceType' => [ 'shape' => 'ResourceType', ], 'Replacement' => [ 'shape' => 'Replacement', ], 'Scope' => [ 'shape' => 'Scope', ], 'Details' => [ 'shape' => 'ResourceChangeDetails', ], ], ], 'ResourceChangeDetail' => [ 'type' => 'structure', 'members' => [ 'Target' => [ 'shape' => 'ResourceTargetDefinition', ], 'Evaluation' => [ 'shape' => 'EvaluationType', ], 'ChangeSource' => [ 'shape' => 'ChangeSource', ], 'CausingEntity' => [ 'shape' => 'CausingEntity', ], ], ], 'ResourceChangeDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceChangeDetail', ], ], 'ResourceProperties' => [ 'type' => 'string', ], 'ResourceSignalStatus' => [ 'type' => 'string', 'enum' => [ 'SUCCESS', 'FAILURE', ], ], 'ResourceSignalUniqueId' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'ResourceStatus' => [ 'type' => 'string', 'enum' => [ 'CREATE_IN_PROGRESS', 'CREATE_FAILED', 'CREATE_COMPLETE', 'DELETE_IN_PROGRESS', 'DELETE_FAILED', 'DELETE_COMPLETE', 'DELETE_SKIPPED', 'UPDATE_IN_PROGRESS', 'UPDATE_FAILED', 'UPDATE_COMPLETE', ], ], 'ResourceStatusReason' => [ 'type' => 'string', ], 'ResourceTargetDefinition' => [ 'type' => 'structure', 'members' => [ 'Attribute' => [ 'shape' => 'ResourceAttribute', ], 'Name' => [ 'shape' => 'PropertyName', ], 'RequiresRecreation' => [ 'shape' => 'RequiresRecreation', ], ], ], 'ResourceToSkip' => [ 'type' => 'string', 'pattern' => '[a-zA-Z0-9]+|[a-zA-Z][-a-zA-Z0-9]*\\.[a-zA-Z0-9]+', ], 'ResourceType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'ResourceTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceType', ], ], 'ResourcesToSkip' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceToSkip', ], ], 'RetainResources' => [ 'type' => 'list', 'member' => [ 'shape' => 'LogicalResourceId', ], ], 'RoleARN' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, ], 'Scope' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceAttribute', ], ], 'SetStackPolicyInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'StackPolicyBody' => [ 'shape' => 'StackPolicyBody', ], 'StackPolicyURL' => [ 'shape' => 'StackPolicyURL', ], ], ], 'SignalResourceInput' => [ 'type' => 'structure', 'required' => [ 'StackName', 'LogicalResourceId', 'UniqueId', 'Status', ], 'members' => [ 'StackName' => [ 'shape' => 'StackNameOrId', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'UniqueId' => [ 'shape' => 'ResourceSignalUniqueId', ], 'Status' => [ 'shape' => 'ResourceSignalStatus', ], ], ], 'Stack' => [ 'type' => 'structure', 'required' => [ 'StackName', 'CreationTime', 'StackStatus', ], 'members' => [ 'StackId' => [ 'shape' => 'StackId', ], 'StackName' => [ 'shape' => 'StackName', ], 'ChangeSetId' => [ 'shape' => 'ChangeSetId', ], 'Description' => [ 'shape' => 'Description', ], 'Parameters' => [ 'shape' => 'Parameters', ], 'CreationTime' => [ 'shape' => 'CreationTime', ], 'LastUpdatedTime' => [ 'shape' => 'LastUpdatedTime', ], 'StackStatus' => [ 'shape' => 'StackStatus', ], 'StackStatusReason' => [ 'shape' => 'StackStatusReason', ], 'DisableRollback' => [ 'shape' => 'DisableRollback', ], 'NotificationARNs' => [ 'shape' => 'NotificationARNs', ], 'TimeoutInMinutes' => [ 'shape' => 'TimeoutMinutes', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'Outputs' => [ 'shape' => 'Outputs', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], 'Tags' => [ 'shape' => 'Tags', ], ], ], 'StackEvent' => [ 'type' => 'structure', 'required' => [ 'StackId', 'EventId', 'StackName', 'Timestamp', ], 'members' => [ 'StackId' => [ 'shape' => 'StackId', ], 'EventId' => [ 'shape' => 'EventId', ], 'StackName' => [ 'shape' => 'StackName', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'PhysicalResourceId' => [ 'shape' => 'PhysicalResourceId', ], 'ResourceType' => [ 'shape' => 'ResourceType', ], 'Timestamp' => [ 'shape' => 'Timestamp', ], 'ResourceStatus' => [ 'shape' => 'ResourceStatus', ], 'ResourceStatusReason' => [ 'shape' => 'ResourceStatusReason', ], 'ResourceProperties' => [ 'shape' => 'ResourceProperties', ], ], ], 'StackEvents' => [ 'type' => 'list', 'member' => [ 'shape' => 'StackEvent', ], ], 'StackId' => [ 'type' => 'string', ], 'StackName' => [ 'type' => 'string', ], 'StackNameOrId' => [ 'type' => 'string', 'min' => 1, 'pattern' => '([a-zA-Z][-a-zA-Z0-9]*)|(arn:\\b(aws|aws-us-gov|aws-cn)\\b:[-a-zA-Z0-9:/._+]*)', ], 'StackPolicyBody' => [ 'type' => 'string', 'max' => 16384, 'min' => 1, ], 'StackPolicyDuringUpdateBody' => [ 'type' => 'string', 'max' => 16384, 'min' => 1, ], 'StackPolicyDuringUpdateURL' => [ 'type' => 'string', 'max' => 1350, 'min' => 1, ], 'StackPolicyURL' => [ 'type' => 'string', 'max' => 1350, 'min' => 1, ], 'StackResource' => [ 'type' => 'structure', 'required' => [ 'LogicalResourceId', 'ResourceType', 'Timestamp', 'ResourceStatus', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'StackId' => [ 'shape' => 'StackId', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'PhysicalResourceId' => [ 'shape' => 'PhysicalResourceId', ], 'ResourceType' => [ 'shape' => 'ResourceType', ], 'Timestamp' => [ 'shape' => 'Timestamp', ], 'ResourceStatus' => [ 'shape' => 'ResourceStatus', ], 'ResourceStatusReason' => [ 'shape' => 'ResourceStatusReason', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'StackResourceDetail' => [ 'type' => 'structure', 'required' => [ 'LogicalResourceId', 'ResourceType', 'LastUpdatedTimestamp', 'ResourceStatus', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'StackId' => [ 'shape' => 'StackId', ], 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'PhysicalResourceId' => [ 'shape' => 'PhysicalResourceId', ], 'ResourceType' => [ 'shape' => 'ResourceType', ], 'LastUpdatedTimestamp' => [ 'shape' => 'Timestamp', ], 'ResourceStatus' => [ 'shape' => 'ResourceStatus', ], 'ResourceStatusReason' => [ 'shape' => 'ResourceStatusReason', ], 'Description' => [ 'shape' => 'Description', ], 'Metadata' => [ 'shape' => 'Metadata', ], ], ], 'StackResourceSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'StackResourceSummary', ], ], 'StackResourceSummary' => [ 'type' => 'structure', 'required' => [ 'LogicalResourceId', 'ResourceType', 'LastUpdatedTimestamp', 'ResourceStatus', ], 'members' => [ 'LogicalResourceId' => [ 'shape' => 'LogicalResourceId', ], 'PhysicalResourceId' => [ 'shape' => 'PhysicalResourceId', ], 'ResourceType' => [ 'shape' => 'ResourceType', ], 'LastUpdatedTimestamp' => [ 'shape' => 'Timestamp', ], 'ResourceStatus' => [ 'shape' => 'ResourceStatus', ], 'ResourceStatusReason' => [ 'shape' => 'ResourceStatusReason', ], ], ], 'StackResources' => [ 'type' => 'list', 'member' => [ 'shape' => 'StackResource', ], ], 'StackStatus' => [ 'type' => 'string', 'enum' => [ 'CREATE_IN_PROGRESS', 'CREATE_FAILED', 'CREATE_COMPLETE', 'ROLLBACK_IN_PROGRESS', 'ROLLBACK_FAILED', 'ROLLBACK_COMPLETE', 'DELETE_IN_PROGRESS', 'DELETE_FAILED', 'DELETE_COMPLETE', 'UPDATE_IN_PROGRESS', 'UPDATE_COMPLETE_CLEANUP_IN_PROGRESS', 'UPDATE_COMPLETE', 'UPDATE_ROLLBACK_IN_PROGRESS', 'UPDATE_ROLLBACK_FAILED', 'UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS', 'UPDATE_ROLLBACK_COMPLETE', 'REVIEW_IN_PROGRESS', ], ], 'StackStatusFilter' => [ 'type' => 'list', 'member' => [ 'shape' => 'StackStatus', ], ], 'StackStatusReason' => [ 'type' => 'string', ], 'StackSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'StackSummary', ], ], 'StackSummary' => [ 'type' => 'structure', 'required' => [ 'StackName', 'CreationTime', 'StackStatus', ], 'members' => [ 'StackId' => [ 'shape' => 'StackId', ], 'StackName' => [ 'shape' => 'StackName', ], 'TemplateDescription' => [ 'shape' => 'TemplateDescription', ], 'CreationTime' => [ 'shape' => 'CreationTime', ], 'LastUpdatedTime' => [ 'shape' => 'LastUpdatedTime', ], 'DeletionTime' => [ 'shape' => 'DeletionTime', ], 'StackStatus' => [ 'shape' => 'StackStatus', ], 'StackStatusReason' => [ 'shape' => 'StackStatusReason', ], ], ], 'Stacks' => [ 'type' => 'list', 'member' => [ 'shape' => 'Stack', ], ], 'StageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TemplateStage', ], ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', ], 'TagValue' => [ 'type' => 'string', ], 'Tags' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], ], 'TemplateBody' => [ 'type' => 'string', 'min' => 1, ], 'TemplateDescription' => [ 'type' => 'string', ], 'TemplateParameter' => [ 'type' => 'structure', 'members' => [ 'ParameterKey' => [ 'shape' => 'ParameterKey', ], 'DefaultValue' => [ 'shape' => 'ParameterValue', ], 'NoEcho' => [ 'shape' => 'NoEcho', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'TemplateParameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'TemplateParameter', ], ], 'TemplateStage' => [ 'type' => 'string', 'enum' => [ 'Original', 'Processed', ], ], 'TemplateURL' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'TimeoutMinutes' => [ 'type' => 'integer', 'min' => 1, ], 'Timestamp' => [ 'type' => 'timestamp', ], 'TransformName' => [ 'type' => 'string', ], 'TransformsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TransformName', ], ], 'UpdateStackInput' => [ 'type' => 'structure', 'required' => [ 'StackName', ], 'members' => [ 'StackName' => [ 'shape' => 'StackName', ], 'TemplateBody' => [ 'shape' => 'TemplateBody', ], 'TemplateURL' => [ 'shape' => 'TemplateURL', ], 'UsePreviousTemplate' => [ 'shape' => 'UsePreviousTemplate', ], 'StackPolicyDuringUpdateBody' => [ 'shape' => 'StackPolicyDuringUpdateBody', ], 'StackPolicyDuringUpdateURL' => [ 'shape' => 'StackPolicyDuringUpdateURL', ], 'Parameters' => [ 'shape' => 'Parameters', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'ResourceTypes' => [ 'shape' => 'ResourceTypes', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], 'StackPolicyBody' => [ 'shape' => 'StackPolicyBody', ], 'StackPolicyURL' => [ 'shape' => 'StackPolicyURL', ], 'NotificationARNs' => [ 'shape' => 'NotificationARNs', ], 'Tags' => [ 'shape' => 'Tags', ], ], ], 'UpdateStackOutput' => [ 'type' => 'structure', 'members' => [ 'StackId' => [ 'shape' => 'StackId', ], ], ], 'Url' => [ 'type' => 'string', ], 'UsePreviousTemplate' => [ 'type' => 'boolean', ], 'UsePreviousValue' => [ 'type' => 'boolean', ], 'ValidateTemplateInput' => [ 'type' => 'structure', 'members' => [ 'TemplateBody' => [ 'shape' => 'TemplateBody', ], 'TemplateURL' => [ 'shape' => 'TemplateURL', ], ], ], 'ValidateTemplateOutput' => [ 'type' => 'structure', 'members' => [ 'Parameters' => [ 'shape' => 'TemplateParameters', ], 'Description' => [ 'shape' => 'Description', ], 'Capabilities' => [ 'shape' => 'Capabilities', ], 'CapabilitiesReason' => [ 'shape' => 'CapabilitiesReason', ], 'DeclaredTransforms' => [ 'shape' => 'TransformsList', ], ], ], 'Version' => [ 'type' => 'string', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/waiters-2.json.php index 295814194..a39f22e6c 100644 --- a/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/waiters-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/waiters-2.json.php @@ -1,3 +1,3 @@ 2, 'waiters' => [ 'StackExists' => [ 'delay' => 5, 'operation' => 'DescribeStacks', 'maxAttempts' => 20, 'acceptors' => [ [ 'matcher' => 'status', 'expected' => 200, 'state' => 'success', ], [ 'matcher' => 'error', 'expected' => 'ValidationError', 'state' => 'retry', ], ], ], 'StackCreateComplete' => [ 'delay' => 30, 'operation' => 'DescribeStacks', 'maxAttempts' => 120, 'description' => 'Wait until stack status is CREATE_COMPLETE.', 'acceptors' => [ [ 'expected' => 'CREATE_COMPLETE', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'Stacks[].StackStatus', ], [ 'expected' => 'CREATE_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Stacks[].StackStatus', ], [ 'expected' => 'DELETE_COMPLETE', 'matcher' => 'pathAny', 'argument' => 'Stacks[].StackStatus', 'state' => 'failure', ], [ 'expected' => 'DELETE_IN_PROGRESS', 'matcher' => 'pathAny', 'argument' => 'Stacks[].StackStatus', 'state' => 'failure', ], [ 'expected' => 'DELETE_FAILED', 'matcher' => 'pathAny', 'argument' => 'Stacks[].StackStatus', 'state' => 'failure', ], [ 'expected' => 'ROLLBACK_COMPLETE', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Stacks[].StackStatus', ], [ 'expected' => 'ROLLBACK_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Stacks[].StackStatus', ], [ 'expected' => 'ROLLBACK_IN_PROGRESS', 'matcher' => 'pathAny', 'argument' => 'Stacks[].StackStatus', 'state' => 'failure', ], [ 'expected' => 'ValidationError', 'matcher' => 'error', 'state' => 'failure', ], ], ], 'StackDeleteComplete' => [ 'delay' => 30, 'operation' => 'DescribeStacks', 'maxAttempts' => 120, 'description' => 'Wait until stack status is DELETE_COMPLETE.', 'acceptors' => [ [ 'expected' => 'DELETE_COMPLETE', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'Stacks[].StackStatus', ], [ 'expected' => 'ValidationError', 'matcher' => 'error', 'state' => 'success', ], [ 'expected' => 'DELETE_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Stacks[].StackStatus', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'CREATE_COMPLETE', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'CREATE_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'CREATE_IN_PROGRESS', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'ROLLBACK_COMPLETE', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'ROLLBACK_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'ROLLBACK_IN_PROGRESS', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'UPDATE_COMPLETE', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'UPDATE_COMPLETE_CLEANUP_IN_PROGRESS', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'UPDATE_IN_PROGRESS', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'UPDATE_ROLLBACK_COMPLETE', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'UPDATE_ROLLBACK_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'UPDATE_ROLLBACK_IN_PROGRESS', 'matcher' => 'pathAny', 'state' => 'failure', ], ], ], 'StackUpdateComplete' => [ 'delay' => 30, 'maxAttempts' => 120, 'operation' => 'DescribeStacks', 'description' => 'Wait until stack status is UPDATE_COMPLETE.', 'acceptors' => [ [ 'expected' => 'UPDATE_COMPLETE', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'Stacks[].StackStatus', ], [ 'expected' => 'UPDATE_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Stacks[].StackStatus', ], [ 'expected' => 'UPDATE_ROLLBACK_COMPLETE', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Stacks[].StackStatus', ], [ 'expected' => 'UPDATE_ROLLBACK_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Stacks[].StackStatus', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'UPDATE_ROLLBACK_IN_PROGRESS', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'expected' => 'ValidationError', 'matcher' => 'error', 'state' => 'failure', ], ], ], ],]; +return [ 'version' => 2, 'waiters' => [ 'StackExists' => [ 'delay' => 5, 'operation' => 'DescribeStacks', 'maxAttempts' => 20, 'acceptors' => [ [ 'matcher' => 'status', 'expected' => 200, 'state' => 'success', ], [ 'matcher' => 'error', 'expected' => 'ValidationError', 'state' => 'retry', ], ], ], 'StackCreateComplete' => [ 'delay' => 30, 'operation' => 'DescribeStacks', 'maxAttempts' => 120, 'description' => 'Wait until stack status is CREATE_COMPLETE.', 'acceptors' => [ [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'CREATE_COMPLETE', 'matcher' => 'pathAll', 'state' => 'success', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'CREATE_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'DELETE_COMPLETE', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'DELETE_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'ROLLBACK_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'ROLLBACK_COMPLETE', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'expected' => 'ValidationError', 'matcher' => 'error', 'state' => 'failure', ], ], ], 'StackDeleteComplete' => [ 'delay' => 30, 'operation' => 'DescribeStacks', 'maxAttempts' => 120, 'description' => 'Wait until stack status is DELETE_COMPLETE.', 'acceptors' => [ [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'DELETE_COMPLETE', 'matcher' => 'pathAll', 'state' => 'success', ], [ 'expected' => 'ValidationError', 'matcher' => 'error', 'state' => 'success', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'DELETE_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'CREATE_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'ROLLBACK_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'UPDATE_ROLLBACK_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'UPDATE_ROLLBACK_IN_PROGRESS', 'matcher' => 'pathAny', 'state' => 'failure', ], ], ], 'StackUpdateComplete' => [ 'delay' => 30, 'maxAttempts' => 120, 'operation' => 'DescribeStacks', 'description' => 'Wait until stack status is UPDATE_COMPLETE.', 'acceptors' => [ [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'UPDATE_COMPLETE', 'matcher' => 'pathAll', 'state' => 'success', ], [ 'expected' => 'UPDATE_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Stacks[].StackStatus', ], [ 'argument' => 'Stacks[].StackStatus', 'expected' => 'UPDATE_ROLLBACK_FAILED', 'matcher' => 'pathAny', 'state' => 'failure', ], [ 'expected' => 'UPDATE_ROLLBACK_COMPLETE', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Stacks[].StackStatus', ], [ 'expected' => 'ValidationError', 'matcher' => 'error', 'state' => 'failure', ], ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/api-2.json.php new file mode 100644 index 000000000..53267cc6f --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/api-2.json.php @@ -0,0 +1,3 @@ + '2.0', 'metadata' => [ 'apiVersion' => '2016-09-07', 'endpointPrefix' => 'cloudfront', 'globalEndpoint' => 'cloudfront.amazonaws.com', 'protocol' => 'rest-xml', 'serviceAbbreviation' => 'CloudFront', 'serviceFullName' => 'Amazon CloudFront', 'signatureVersion' => 'v4', ], 'operations' => [ 'CreateCloudFrontOriginAccessIdentity' => [ 'name' => 'CreateCloudFrontOriginAccessIdentity2016_09_07', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-07/origin-access-identity/cloudfront', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateCloudFrontOriginAccessIdentityRequest', ], 'output' => [ 'shape' => 'CreateCloudFrontOriginAccessIdentityResult', ], 'errors' => [ [ 'shape' => 'CloudFrontOriginAccessIdentityAlreadyExists', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'TooManyCloudFrontOriginAccessIdentities', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InconsistentQuantities', ], ], ], 'CreateDistribution' => [ 'name' => 'CreateDistribution2016_09_07', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-07/distribution', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateDistributionRequest', ], 'output' => [ 'shape' => 'CreateDistributionResult', ], 'errors' => [ [ 'shape' => 'CNAMEAlreadyExists', ], [ 'shape' => 'DistributionAlreadyExists', ], [ 'shape' => 'InvalidOrigin', ], [ 'shape' => 'InvalidOriginAccessIdentity', ], [ 'shape' => 'AccessDenied', ], [ 'shape' => 'TooManyTrustedSigners', ], [ 'shape' => 'TrustedSignerDoesNotExist', ], [ 'shape' => 'InvalidViewerCertificate', ], [ 'shape' => 'InvalidMinimumProtocolVersion', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'TooManyDistributionCNAMEs', ], [ 'shape' => 'TooManyDistributions', ], [ 'shape' => 'InvalidDefaultRootObject', ], [ 'shape' => 'InvalidRelativePath', ], [ 'shape' => 'InvalidErrorCode', ], [ 'shape' => 'InvalidResponseCode', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidRequiredProtocol', ], [ 'shape' => 'NoSuchOrigin', ], [ 'shape' => 'TooManyOrigins', ], [ 'shape' => 'TooManyCacheBehaviors', ], [ 'shape' => 'TooManyCookieNamesInWhiteList', ], [ 'shape' => 'InvalidForwardCookies', ], [ 'shape' => 'TooManyHeadersInForwardedValues', ], [ 'shape' => 'InvalidHeadersForS3Origin', ], [ 'shape' => 'InconsistentQuantities', ], [ 'shape' => 'TooManyCertificates', ], [ 'shape' => 'InvalidLocationCode', ], [ 'shape' => 'InvalidGeoRestrictionParameter', ], [ 'shape' => 'InvalidProtocolSettings', ], [ 'shape' => 'InvalidTTLOrder', ], [ 'shape' => 'InvalidWebACLId', ], [ 'shape' => 'TooManyOriginCustomHeaders', ], [ 'shape' => 'TooManyQueryStringParameters', ], [ 'shape' => 'InvalidQueryStringParameters', ], ], ], 'CreateDistributionWithTags' => [ 'name' => 'CreateDistributionWithTags2016_09_07', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-07/distribution?WithTags', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateDistributionWithTagsRequest', ], 'output' => [ 'shape' => 'CreateDistributionWithTagsResult', ], 'errors' => [ [ 'shape' => 'CNAMEAlreadyExists', ], [ 'shape' => 'DistributionAlreadyExists', ], [ 'shape' => 'InvalidOrigin', ], [ 'shape' => 'InvalidOriginAccessIdentity', ], [ 'shape' => 'AccessDenied', ], [ 'shape' => 'TooManyTrustedSigners', ], [ 'shape' => 'TrustedSignerDoesNotExist', ], [ 'shape' => 'InvalidViewerCertificate', ], [ 'shape' => 'InvalidMinimumProtocolVersion', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'TooManyDistributionCNAMEs', ], [ 'shape' => 'TooManyDistributions', ], [ 'shape' => 'InvalidDefaultRootObject', ], [ 'shape' => 'InvalidRelativePath', ], [ 'shape' => 'InvalidErrorCode', ], [ 'shape' => 'InvalidResponseCode', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidRequiredProtocol', ], [ 'shape' => 'NoSuchOrigin', ], [ 'shape' => 'TooManyOrigins', ], [ 'shape' => 'TooManyCacheBehaviors', ], [ 'shape' => 'TooManyCookieNamesInWhiteList', ], [ 'shape' => 'InvalidForwardCookies', ], [ 'shape' => 'TooManyHeadersInForwardedValues', ], [ 'shape' => 'InvalidHeadersForS3Origin', ], [ 'shape' => 'InconsistentQuantities', ], [ 'shape' => 'TooManyCertificates', ], [ 'shape' => 'InvalidLocationCode', ], [ 'shape' => 'InvalidGeoRestrictionParameter', ], [ 'shape' => 'InvalidProtocolSettings', ], [ 'shape' => 'InvalidTTLOrder', ], [ 'shape' => 'InvalidWebACLId', ], [ 'shape' => 'TooManyOriginCustomHeaders', ], [ 'shape' => 'InvalidTagging', ], [ 'shape' => 'TooManyQueryStringParameters', ], [ 'shape' => 'InvalidQueryStringParameters', ], ], ], 'CreateInvalidation' => [ 'name' => 'CreateInvalidation2016_09_07', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-07/distribution/{DistributionId}/invalidation', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateInvalidationRequest', ], 'output' => [ 'shape' => 'CreateInvalidationResult', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'BatchTooLarge', ], [ 'shape' => 'TooManyInvalidationsInProgress', ], [ 'shape' => 'InconsistentQuantities', ], ], ], 'CreateStreamingDistribution' => [ 'name' => 'CreateStreamingDistribution2016_09_07', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-07/streaming-distribution', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateStreamingDistributionRequest', ], 'output' => [ 'shape' => 'CreateStreamingDistributionResult', ], 'errors' => [ [ 'shape' => 'CNAMEAlreadyExists', ], [ 'shape' => 'StreamingDistributionAlreadyExists', ], [ 'shape' => 'InvalidOrigin', ], [ 'shape' => 'InvalidOriginAccessIdentity', ], [ 'shape' => 'AccessDenied', ], [ 'shape' => 'TooManyTrustedSigners', ], [ 'shape' => 'TrustedSignerDoesNotExist', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'TooManyStreamingDistributionCNAMEs', ], [ 'shape' => 'TooManyStreamingDistributions', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InconsistentQuantities', ], ], ], 'CreateStreamingDistributionWithTags' => [ 'name' => 'CreateStreamingDistributionWithTags2016_09_07', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-07/streaming-distribution?WithTags', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateStreamingDistributionWithTagsRequest', ], 'output' => [ 'shape' => 'CreateStreamingDistributionWithTagsResult', ], 'errors' => [ [ 'shape' => 'CNAMEAlreadyExists', ], [ 'shape' => 'StreamingDistributionAlreadyExists', ], [ 'shape' => 'InvalidOrigin', ], [ 'shape' => 'InvalidOriginAccessIdentity', ], [ 'shape' => 'AccessDenied', ], [ 'shape' => 'TooManyTrustedSigners', ], [ 'shape' => 'TrustedSignerDoesNotExist', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'TooManyStreamingDistributionCNAMEs', ], [ 'shape' => 'TooManyStreamingDistributions', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InconsistentQuantities', ], [ 'shape' => 'InvalidTagging', ], ], ], 'DeleteCloudFrontOriginAccessIdentity' => [ 'name' => 'DeleteCloudFrontOriginAccessIdentity2016_09_07', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2016-09-07/origin-access-identity/cloudfront/{Id}', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteCloudFrontOriginAccessIdentityRequest', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'InvalidIfMatchVersion', ], [ 'shape' => 'NoSuchCloudFrontOriginAccessIdentity', ], [ 'shape' => 'PreconditionFailed', ], [ 'shape' => 'CloudFrontOriginAccessIdentityInUse', ], ], ], 'DeleteDistribution' => [ 'name' => 'DeleteDistribution2016_09_07', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2016-09-07/distribution/{Id}', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteDistributionRequest', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'DistributionNotDisabled', ], [ 'shape' => 'InvalidIfMatchVersion', ], [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'PreconditionFailed', ], ], ], 'DeleteStreamingDistribution' => [ 'name' => 'DeleteStreamingDistribution2016_09_07', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2016-09-07/streaming-distribution/{Id}', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteStreamingDistributionRequest', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'StreamingDistributionNotDisabled', ], [ 'shape' => 'InvalidIfMatchVersion', ], [ 'shape' => 'NoSuchStreamingDistribution', ], [ 'shape' => 'PreconditionFailed', ], ], ], 'GetCloudFrontOriginAccessIdentity' => [ 'name' => 'GetCloudFrontOriginAccessIdentity2016_09_07', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-07/origin-access-identity/cloudfront/{Id}', ], 'input' => [ 'shape' => 'GetCloudFrontOriginAccessIdentityRequest', ], 'output' => [ 'shape' => 'GetCloudFrontOriginAccessIdentityResult', ], 'errors' => [ [ 'shape' => 'NoSuchCloudFrontOriginAccessIdentity', ], [ 'shape' => 'AccessDenied', ], ], ], 'GetCloudFrontOriginAccessIdentityConfig' => [ 'name' => 'GetCloudFrontOriginAccessIdentityConfig2016_09_07', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-07/origin-access-identity/cloudfront/{Id}/config', ], 'input' => [ 'shape' => 'GetCloudFrontOriginAccessIdentityConfigRequest', ], 'output' => [ 'shape' => 'GetCloudFrontOriginAccessIdentityConfigResult', ], 'errors' => [ [ 'shape' => 'NoSuchCloudFrontOriginAccessIdentity', ], [ 'shape' => 'AccessDenied', ], ], ], 'GetDistribution' => [ 'name' => 'GetDistribution2016_09_07', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-07/distribution/{Id}', ], 'input' => [ 'shape' => 'GetDistributionRequest', ], 'output' => [ 'shape' => 'GetDistributionResult', ], 'errors' => [ [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'AccessDenied', ], ], ], 'GetDistributionConfig' => [ 'name' => 'GetDistributionConfig2016_09_07', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-07/distribution/{Id}/config', ], 'input' => [ 'shape' => 'GetDistributionConfigRequest', ], 'output' => [ 'shape' => 'GetDistributionConfigResult', ], 'errors' => [ [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'AccessDenied', ], ], ], 'GetInvalidation' => [ 'name' => 'GetInvalidation2016_09_07', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-07/distribution/{DistributionId}/invalidation/{Id}', ], 'input' => [ 'shape' => 'GetInvalidationRequest', ], 'output' => [ 'shape' => 'GetInvalidationResult', ], 'errors' => [ [ 'shape' => 'NoSuchInvalidation', ], [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'AccessDenied', ], ], ], 'GetStreamingDistribution' => [ 'name' => 'GetStreamingDistribution2016_09_07', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-07/streaming-distribution/{Id}', ], 'input' => [ 'shape' => 'GetStreamingDistributionRequest', ], 'output' => [ 'shape' => 'GetStreamingDistributionResult', ], 'errors' => [ [ 'shape' => 'NoSuchStreamingDistribution', ], [ 'shape' => 'AccessDenied', ], ], ], 'GetStreamingDistributionConfig' => [ 'name' => 'GetStreamingDistributionConfig2016_09_07', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-07/streaming-distribution/{Id}/config', ], 'input' => [ 'shape' => 'GetStreamingDistributionConfigRequest', ], 'output' => [ 'shape' => 'GetStreamingDistributionConfigResult', ], 'errors' => [ [ 'shape' => 'NoSuchStreamingDistribution', ], [ 'shape' => 'AccessDenied', ], ], ], 'ListCloudFrontOriginAccessIdentities' => [ 'name' => 'ListCloudFrontOriginAccessIdentities2016_09_07', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-07/origin-access-identity/cloudfront', ], 'input' => [ 'shape' => 'ListCloudFrontOriginAccessIdentitiesRequest', ], 'output' => [ 'shape' => 'ListCloudFrontOriginAccessIdentitiesResult', ], 'errors' => [ [ 'shape' => 'InvalidArgument', ], ], ], 'ListDistributions' => [ 'name' => 'ListDistributions2016_09_07', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-07/distribution', ], 'input' => [ 'shape' => 'ListDistributionsRequest', ], 'output' => [ 'shape' => 'ListDistributionsResult', ], 'errors' => [ [ 'shape' => 'InvalidArgument', ], ], ], 'ListDistributionsByWebACLId' => [ 'name' => 'ListDistributionsByWebACLId2016_09_07', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-07/distributionsByWebACLId/{WebACLId}', ], 'input' => [ 'shape' => 'ListDistributionsByWebACLIdRequest', ], 'output' => [ 'shape' => 'ListDistributionsByWebACLIdResult', ], 'errors' => [ [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidWebACLId', ], ], ], 'ListInvalidations' => [ 'name' => 'ListInvalidations2016_09_07', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-07/distribution/{DistributionId}/invalidation', ], 'input' => [ 'shape' => 'ListInvalidationsRequest', ], 'output' => [ 'shape' => 'ListInvalidationsResult', ], 'errors' => [ [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'AccessDenied', ], ], ], 'ListStreamingDistributions' => [ 'name' => 'ListStreamingDistributions2016_09_07', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-07/streaming-distribution', ], 'input' => [ 'shape' => 'ListStreamingDistributionsRequest', ], 'output' => [ 'shape' => 'ListStreamingDistributionsResult', ], 'errors' => [ [ 'shape' => 'InvalidArgument', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource2016_09_07', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-07/tagging', ], 'input' => [ 'shape' => 'ListTagsForResourceRequest', ], 'output' => [ 'shape' => 'ListTagsForResourceResult', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidTagging', ], [ 'shape' => 'NoSuchResource', ], ], ], 'TagResource' => [ 'name' => 'TagResource2016_09_07', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-07/tagging?Operation=Tag', 'responseCode' => 204, ], 'input' => [ 'shape' => 'TagResourceRequest', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidTagging', ], [ 'shape' => 'NoSuchResource', ], ], ], 'UntagResource' => [ 'name' => 'UntagResource2016_09_07', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-07/tagging?Operation=Untag', 'responseCode' => 204, ], 'input' => [ 'shape' => 'UntagResourceRequest', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidTagging', ], [ 'shape' => 'NoSuchResource', ], ], ], 'UpdateCloudFrontOriginAccessIdentity' => [ 'name' => 'UpdateCloudFrontOriginAccessIdentity2016_09_07', 'http' => [ 'method' => 'PUT', 'requestUri' => '/2016-09-07/origin-access-identity/cloudfront/{Id}/config', ], 'input' => [ 'shape' => 'UpdateCloudFrontOriginAccessIdentityRequest', ], 'output' => [ 'shape' => 'UpdateCloudFrontOriginAccessIdentityResult', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'IllegalUpdate', ], [ 'shape' => 'InvalidIfMatchVersion', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'NoSuchCloudFrontOriginAccessIdentity', ], [ 'shape' => 'PreconditionFailed', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InconsistentQuantities', ], ], ], 'UpdateDistribution' => [ 'name' => 'UpdateDistribution2016_09_07', 'http' => [ 'method' => 'PUT', 'requestUri' => '/2016-09-07/distribution/{Id}/config', ], 'input' => [ 'shape' => 'UpdateDistributionRequest', ], 'output' => [ 'shape' => 'UpdateDistributionResult', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'CNAMEAlreadyExists', ], [ 'shape' => 'IllegalUpdate', ], [ 'shape' => 'InvalidIfMatchVersion', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'PreconditionFailed', ], [ 'shape' => 'TooManyDistributionCNAMEs', ], [ 'shape' => 'InvalidDefaultRootObject', ], [ 'shape' => 'InvalidRelativePath', ], [ 'shape' => 'InvalidErrorCode', ], [ 'shape' => 'InvalidResponseCode', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidOriginAccessIdentity', ], [ 'shape' => 'TooManyTrustedSigners', ], [ 'shape' => 'TrustedSignerDoesNotExist', ], [ 'shape' => 'InvalidViewerCertificate', ], [ 'shape' => 'InvalidMinimumProtocolVersion', ], [ 'shape' => 'InvalidRequiredProtocol', ], [ 'shape' => 'NoSuchOrigin', ], [ 'shape' => 'TooManyOrigins', ], [ 'shape' => 'TooManyCacheBehaviors', ], [ 'shape' => 'TooManyCookieNamesInWhiteList', ], [ 'shape' => 'InvalidForwardCookies', ], [ 'shape' => 'TooManyHeadersInForwardedValues', ], [ 'shape' => 'InvalidHeadersForS3Origin', ], [ 'shape' => 'InconsistentQuantities', ], [ 'shape' => 'TooManyCertificates', ], [ 'shape' => 'InvalidLocationCode', ], [ 'shape' => 'InvalidGeoRestrictionParameter', ], [ 'shape' => 'InvalidTTLOrder', ], [ 'shape' => 'InvalidWebACLId', ], [ 'shape' => 'TooManyOriginCustomHeaders', ], [ 'shape' => 'TooManyQueryStringParameters', ], [ 'shape' => 'InvalidQueryStringParameters', ], ], ], 'UpdateStreamingDistribution' => [ 'name' => 'UpdateStreamingDistribution2016_09_07', 'http' => [ 'method' => 'PUT', 'requestUri' => '/2016-09-07/streaming-distribution/{Id}/config', ], 'input' => [ 'shape' => 'UpdateStreamingDistributionRequest', ], 'output' => [ 'shape' => 'UpdateStreamingDistributionResult', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'CNAMEAlreadyExists', ], [ 'shape' => 'IllegalUpdate', ], [ 'shape' => 'InvalidIfMatchVersion', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'NoSuchStreamingDistribution', ], [ 'shape' => 'PreconditionFailed', ], [ 'shape' => 'TooManyStreamingDistributionCNAMEs', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidOriginAccessIdentity', ], [ 'shape' => 'TooManyTrustedSigners', ], [ 'shape' => 'TrustedSignerDoesNotExist', ], [ 'shape' => 'InconsistentQuantities', ], ], ], ], 'shapes' => [ 'AccessDenied' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 403, ], 'exception' => true, ], 'ActiveTrustedSigners' => [ 'type' => 'structure', 'required' => [ 'Enabled', 'Quantity', ], 'members' => [ 'Enabled' => [ 'shape' => 'boolean', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'SignerList', ], ], ], 'AliasList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'CNAME', ], ], 'Aliases' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'AliasList', ], ], ], 'AllowedMethods' => [ 'type' => 'structure', 'required' => [ 'Quantity', 'Items', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'MethodsList', ], 'CachedMethods' => [ 'shape' => 'CachedMethods', ], ], ], 'AwsAccountNumberList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'AwsAccountNumber', ], ], 'BatchTooLarge' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 413, ], 'exception' => true, ], 'CNAMEAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'CacheBehavior' => [ 'type' => 'structure', 'required' => [ 'PathPattern', 'TargetOriginId', 'ForwardedValues', 'TrustedSigners', 'ViewerProtocolPolicy', 'MinTTL', ], 'members' => [ 'PathPattern' => [ 'shape' => 'string', ], 'TargetOriginId' => [ 'shape' => 'string', ], 'ForwardedValues' => [ 'shape' => 'ForwardedValues', ], 'TrustedSigners' => [ 'shape' => 'TrustedSigners', ], 'ViewerProtocolPolicy' => [ 'shape' => 'ViewerProtocolPolicy', ], 'MinTTL' => [ 'shape' => 'long', ], 'AllowedMethods' => [ 'shape' => 'AllowedMethods', ], 'SmoothStreaming' => [ 'shape' => 'boolean', ], 'DefaultTTL' => [ 'shape' => 'long', ], 'MaxTTL' => [ 'shape' => 'long', ], 'Compress' => [ 'shape' => 'boolean', ], ], ], 'CacheBehaviorList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheBehavior', 'locationName' => 'CacheBehavior', ], ], 'CacheBehaviors' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'CacheBehaviorList', ], ], ], 'CachedMethods' => [ 'type' => 'structure', 'required' => [ 'Quantity', 'Items', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'MethodsList', ], ], ], 'CertificateSource' => [ 'type' => 'string', 'enum' => [ 'cloudfront', 'iam', 'acm', ], ], 'CloudFrontOriginAccessIdentity' => [ 'type' => 'structure', 'required' => [ 'Id', 'S3CanonicalUserId', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'S3CanonicalUserId' => [ 'shape' => 'string', ], 'CloudFrontOriginAccessIdentityConfig' => [ 'shape' => 'CloudFrontOriginAccessIdentityConfig', ], ], ], 'CloudFrontOriginAccessIdentityAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'CloudFrontOriginAccessIdentityConfig' => [ 'type' => 'structure', 'required' => [ 'CallerReference', 'Comment', ], 'members' => [ 'CallerReference' => [ 'shape' => 'string', ], 'Comment' => [ 'shape' => 'string', ], ], ], 'CloudFrontOriginAccessIdentityInUse' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'CloudFrontOriginAccessIdentityList' => [ 'type' => 'structure', 'required' => [ 'Marker', 'MaxItems', 'IsTruncated', 'Quantity', ], 'members' => [ 'Marker' => [ 'shape' => 'string', ], 'NextMarker' => [ 'shape' => 'string', ], 'MaxItems' => [ 'shape' => 'integer', ], 'IsTruncated' => [ 'shape' => 'boolean', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'CloudFrontOriginAccessIdentitySummaryList', ], ], ], 'CloudFrontOriginAccessIdentitySummary' => [ 'type' => 'structure', 'required' => [ 'Id', 'S3CanonicalUserId', 'Comment', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'S3CanonicalUserId' => [ 'shape' => 'string', ], 'Comment' => [ 'shape' => 'string', ], ], ], 'CloudFrontOriginAccessIdentitySummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CloudFrontOriginAccessIdentitySummary', 'locationName' => 'CloudFrontOriginAccessIdentitySummary', ], ], 'CookieNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'Name', ], ], 'CookieNames' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'CookieNameList', ], ], ], 'CookiePreference' => [ 'type' => 'structure', 'required' => [ 'Forward', ], 'members' => [ 'Forward' => [ 'shape' => 'ItemSelection', ], 'WhitelistedNames' => [ 'shape' => 'CookieNames', ], ], ], 'CreateCloudFrontOriginAccessIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'CloudFrontOriginAccessIdentityConfig', ], 'members' => [ 'CloudFrontOriginAccessIdentityConfig' => [ 'shape' => 'CloudFrontOriginAccessIdentityConfig', 'locationName' => 'CloudFrontOriginAccessIdentityConfig', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-07/', ], ], ], 'payload' => 'CloudFrontOriginAccessIdentityConfig', ], 'CreateCloudFrontOriginAccessIdentityResult' => [ 'type' => 'structure', 'members' => [ 'CloudFrontOriginAccessIdentity' => [ 'shape' => 'CloudFrontOriginAccessIdentity', ], 'Location' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'Location', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'CloudFrontOriginAccessIdentity', ], 'CreateDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'DistributionConfig', ], 'members' => [ 'DistributionConfig' => [ 'shape' => 'DistributionConfig', 'locationName' => 'DistributionConfig', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-07/', ], ], ], 'payload' => 'DistributionConfig', ], 'CreateDistributionResult' => [ 'type' => 'structure', 'members' => [ 'Distribution' => [ 'shape' => 'Distribution', ], 'Location' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'Location', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'Distribution', ], 'CreateDistributionWithTagsRequest' => [ 'type' => 'structure', 'required' => [ 'DistributionConfigWithTags', ], 'members' => [ 'DistributionConfigWithTags' => [ 'shape' => 'DistributionConfigWithTags', 'locationName' => 'DistributionConfigWithTags', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-07/', ], ], ], 'payload' => 'DistributionConfigWithTags', ], 'CreateDistributionWithTagsResult' => [ 'type' => 'structure', 'members' => [ 'Distribution' => [ 'shape' => 'Distribution', ], 'Location' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'Location', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'Distribution', ], 'CreateInvalidationRequest' => [ 'type' => 'structure', 'required' => [ 'DistributionId', 'InvalidationBatch', ], 'members' => [ 'DistributionId' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'DistributionId', ], 'InvalidationBatch' => [ 'shape' => 'InvalidationBatch', 'locationName' => 'InvalidationBatch', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-07/', ], ], ], 'payload' => 'InvalidationBatch', ], 'CreateInvalidationResult' => [ 'type' => 'structure', 'members' => [ 'Location' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'Location', ], 'Invalidation' => [ 'shape' => 'Invalidation', ], ], 'payload' => 'Invalidation', ], 'CreateStreamingDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'StreamingDistributionConfig', ], 'members' => [ 'StreamingDistributionConfig' => [ 'shape' => 'StreamingDistributionConfig', 'locationName' => 'StreamingDistributionConfig', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-07/', ], ], ], 'payload' => 'StreamingDistributionConfig', ], 'CreateStreamingDistributionResult' => [ 'type' => 'structure', 'members' => [ 'StreamingDistribution' => [ 'shape' => 'StreamingDistribution', ], 'Location' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'Location', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'StreamingDistribution', ], 'CreateStreamingDistributionWithTagsRequest' => [ 'type' => 'structure', 'required' => [ 'StreamingDistributionConfigWithTags', ], 'members' => [ 'StreamingDistributionConfigWithTags' => [ 'shape' => 'StreamingDistributionConfigWithTags', 'locationName' => 'StreamingDistributionConfigWithTags', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-07/', ], ], ], 'payload' => 'StreamingDistributionConfigWithTags', ], 'CreateStreamingDistributionWithTagsResult' => [ 'type' => 'structure', 'members' => [ 'StreamingDistribution' => [ 'shape' => 'StreamingDistribution', ], 'Location' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'Location', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'StreamingDistribution', ], 'CustomErrorResponse' => [ 'type' => 'structure', 'required' => [ 'ErrorCode', ], 'members' => [ 'ErrorCode' => [ 'shape' => 'integer', ], 'ResponsePagePath' => [ 'shape' => 'string', ], 'ResponseCode' => [ 'shape' => 'string', ], 'ErrorCachingMinTTL' => [ 'shape' => 'long', ], ], ], 'CustomErrorResponseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CustomErrorResponse', 'locationName' => 'CustomErrorResponse', ], ], 'CustomErrorResponses' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'CustomErrorResponseList', ], ], ], 'CustomHeaders' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'OriginCustomHeadersList', ], ], ], 'CustomOriginConfig' => [ 'type' => 'structure', 'required' => [ 'HTTPPort', 'HTTPSPort', 'OriginProtocolPolicy', ], 'members' => [ 'HTTPPort' => [ 'shape' => 'integer', ], 'HTTPSPort' => [ 'shape' => 'integer', ], 'OriginProtocolPolicy' => [ 'shape' => 'OriginProtocolPolicy', ], 'OriginSslProtocols' => [ 'shape' => 'OriginSslProtocols', ], ], ], 'DefaultCacheBehavior' => [ 'type' => 'structure', 'required' => [ 'TargetOriginId', 'ForwardedValues', 'TrustedSigners', 'ViewerProtocolPolicy', 'MinTTL', ], 'members' => [ 'TargetOriginId' => [ 'shape' => 'string', ], 'ForwardedValues' => [ 'shape' => 'ForwardedValues', ], 'TrustedSigners' => [ 'shape' => 'TrustedSigners', ], 'ViewerProtocolPolicy' => [ 'shape' => 'ViewerProtocolPolicy', ], 'MinTTL' => [ 'shape' => 'long', ], 'AllowedMethods' => [ 'shape' => 'AllowedMethods', ], 'SmoothStreaming' => [ 'shape' => 'boolean', ], 'DefaultTTL' => [ 'shape' => 'long', ], 'MaxTTL' => [ 'shape' => 'long', ], 'Compress' => [ 'shape' => 'boolean', ], ], ], 'DeleteCloudFrontOriginAccessIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], 'IfMatch' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'If-Match', ], ], ], 'DeleteDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], 'IfMatch' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'If-Match', ], ], ], 'DeleteStreamingDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], 'IfMatch' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'If-Match', ], ], ], 'Distribution' => [ 'type' => 'structure', 'required' => [ 'Id', 'ARN', 'Status', 'LastModifiedTime', 'InProgressInvalidationBatches', 'DomainName', 'ActiveTrustedSigners', 'DistributionConfig', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'ARN' => [ 'shape' => 'string', ], 'Status' => [ 'shape' => 'string', ], 'LastModifiedTime' => [ 'shape' => 'timestamp', ], 'InProgressInvalidationBatches' => [ 'shape' => 'integer', ], 'DomainName' => [ 'shape' => 'string', ], 'ActiveTrustedSigners' => [ 'shape' => 'ActiveTrustedSigners', ], 'DistributionConfig' => [ 'shape' => 'DistributionConfig', ], ], ], 'DistributionAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'DistributionConfig' => [ 'type' => 'structure', 'required' => [ 'CallerReference', 'Origins', 'DefaultCacheBehavior', 'Comment', 'Enabled', ], 'members' => [ 'CallerReference' => [ 'shape' => 'string', ], 'Aliases' => [ 'shape' => 'Aliases', ], 'DefaultRootObject' => [ 'shape' => 'string', ], 'Origins' => [ 'shape' => 'Origins', ], 'DefaultCacheBehavior' => [ 'shape' => 'DefaultCacheBehavior', ], 'CacheBehaviors' => [ 'shape' => 'CacheBehaviors', ], 'CustomErrorResponses' => [ 'shape' => 'CustomErrorResponses', ], 'Comment' => [ 'shape' => 'string', ], 'Logging' => [ 'shape' => 'LoggingConfig', ], 'PriceClass' => [ 'shape' => 'PriceClass', ], 'Enabled' => [ 'shape' => 'boolean', ], 'ViewerCertificate' => [ 'shape' => 'ViewerCertificate', ], 'Restrictions' => [ 'shape' => 'Restrictions', ], 'WebACLId' => [ 'shape' => 'string', ], 'HttpVersion' => [ 'shape' => 'HttpVersion', ], ], ], 'DistributionConfigWithTags' => [ 'type' => 'structure', 'required' => [ 'DistributionConfig', 'Tags', ], 'members' => [ 'DistributionConfig' => [ 'shape' => 'DistributionConfig', ], 'Tags' => [ 'shape' => 'Tags', ], ], ], 'DistributionList' => [ 'type' => 'structure', 'required' => [ 'Marker', 'MaxItems', 'IsTruncated', 'Quantity', ], 'members' => [ 'Marker' => [ 'shape' => 'string', ], 'NextMarker' => [ 'shape' => 'string', ], 'MaxItems' => [ 'shape' => 'integer', ], 'IsTruncated' => [ 'shape' => 'boolean', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'DistributionSummaryList', ], ], ], 'DistributionNotDisabled' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'DistributionSummary' => [ 'type' => 'structure', 'required' => [ 'Id', 'ARN', 'Status', 'LastModifiedTime', 'DomainName', 'Aliases', 'Origins', 'DefaultCacheBehavior', 'CacheBehaviors', 'CustomErrorResponses', 'Comment', 'PriceClass', 'Enabled', 'ViewerCertificate', 'Restrictions', 'WebACLId', 'HttpVersion', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'ARN' => [ 'shape' => 'string', ], 'Status' => [ 'shape' => 'string', ], 'LastModifiedTime' => [ 'shape' => 'timestamp', ], 'DomainName' => [ 'shape' => 'string', ], 'Aliases' => [ 'shape' => 'Aliases', ], 'Origins' => [ 'shape' => 'Origins', ], 'DefaultCacheBehavior' => [ 'shape' => 'DefaultCacheBehavior', ], 'CacheBehaviors' => [ 'shape' => 'CacheBehaviors', ], 'CustomErrorResponses' => [ 'shape' => 'CustomErrorResponses', ], 'Comment' => [ 'shape' => 'string', ], 'PriceClass' => [ 'shape' => 'PriceClass', ], 'Enabled' => [ 'shape' => 'boolean', ], 'ViewerCertificate' => [ 'shape' => 'ViewerCertificate', ], 'Restrictions' => [ 'shape' => 'Restrictions', ], 'WebACLId' => [ 'shape' => 'string', ], 'HttpVersion' => [ 'shape' => 'HttpVersion', ], ], ], 'DistributionSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DistributionSummary', 'locationName' => 'DistributionSummary', ], ], 'ForwardedValues' => [ 'type' => 'structure', 'required' => [ 'QueryString', 'Cookies', ], 'members' => [ 'QueryString' => [ 'shape' => 'boolean', ], 'Cookies' => [ 'shape' => 'CookiePreference', ], 'Headers' => [ 'shape' => 'Headers', ], 'QueryStringCacheKeys' => [ 'shape' => 'QueryStringCacheKeys', ], ], ], 'GeoRestriction' => [ 'type' => 'structure', 'required' => [ 'RestrictionType', 'Quantity', ], 'members' => [ 'RestrictionType' => [ 'shape' => 'GeoRestrictionType', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'LocationList', ], ], ], 'GeoRestrictionType' => [ 'type' => 'string', 'enum' => [ 'blacklist', 'whitelist', 'none', ], ], 'GetCloudFrontOriginAccessIdentityConfigRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetCloudFrontOriginAccessIdentityConfigResult' => [ 'type' => 'structure', 'members' => [ 'CloudFrontOriginAccessIdentityConfig' => [ 'shape' => 'CloudFrontOriginAccessIdentityConfig', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'CloudFrontOriginAccessIdentityConfig', ], 'GetCloudFrontOriginAccessIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetCloudFrontOriginAccessIdentityResult' => [ 'type' => 'structure', 'members' => [ 'CloudFrontOriginAccessIdentity' => [ 'shape' => 'CloudFrontOriginAccessIdentity', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'CloudFrontOriginAccessIdentity', ], 'GetDistributionConfigRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetDistributionConfigResult' => [ 'type' => 'structure', 'members' => [ 'DistributionConfig' => [ 'shape' => 'DistributionConfig', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'DistributionConfig', ], 'GetDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetDistributionResult' => [ 'type' => 'structure', 'members' => [ 'Distribution' => [ 'shape' => 'Distribution', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'Distribution', ], 'GetInvalidationRequest' => [ 'type' => 'structure', 'required' => [ 'DistributionId', 'Id', ], 'members' => [ 'DistributionId' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'DistributionId', ], 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetInvalidationResult' => [ 'type' => 'structure', 'members' => [ 'Invalidation' => [ 'shape' => 'Invalidation', ], ], 'payload' => 'Invalidation', ], 'GetStreamingDistributionConfigRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetStreamingDistributionConfigResult' => [ 'type' => 'structure', 'members' => [ 'StreamingDistributionConfig' => [ 'shape' => 'StreamingDistributionConfig', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'StreamingDistributionConfig', ], 'GetStreamingDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetStreamingDistributionResult' => [ 'type' => 'structure', 'members' => [ 'StreamingDistribution' => [ 'shape' => 'StreamingDistribution', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'StreamingDistribution', ], 'HeaderList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'Name', ], ], 'Headers' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'HeaderList', ], ], ], 'HttpVersion' => [ 'type' => 'string', 'enum' => [ 'http1.1', 'http2', ], ], 'IllegalUpdate' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InconsistentQuantities' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidArgument' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidDefaultRootObject' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidErrorCode' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidForwardCookies' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidGeoRestrictionParameter' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidHeadersForS3Origin' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidIfMatchVersion' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidLocationCode' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidMinimumProtocolVersion' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidOrigin' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidOriginAccessIdentity' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidProtocolSettings' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidQueryStringParameters' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidRelativePath' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidRequiredProtocol' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidResponseCode' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidTTLOrder' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidTagging' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidViewerCertificate' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidWebACLId' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'Invalidation' => [ 'type' => 'structure', 'required' => [ 'Id', 'Status', 'CreateTime', 'InvalidationBatch', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'Status' => [ 'shape' => 'string', ], 'CreateTime' => [ 'shape' => 'timestamp', ], 'InvalidationBatch' => [ 'shape' => 'InvalidationBatch', ], ], ], 'InvalidationBatch' => [ 'type' => 'structure', 'required' => [ 'Paths', 'CallerReference', ], 'members' => [ 'Paths' => [ 'shape' => 'Paths', ], 'CallerReference' => [ 'shape' => 'string', ], ], ], 'InvalidationList' => [ 'type' => 'structure', 'required' => [ 'Marker', 'MaxItems', 'IsTruncated', 'Quantity', ], 'members' => [ 'Marker' => [ 'shape' => 'string', ], 'NextMarker' => [ 'shape' => 'string', ], 'MaxItems' => [ 'shape' => 'integer', ], 'IsTruncated' => [ 'shape' => 'boolean', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'InvalidationSummaryList', ], ], ], 'InvalidationSummary' => [ 'type' => 'structure', 'required' => [ 'Id', 'CreateTime', 'Status', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'CreateTime' => [ 'shape' => 'timestamp', ], 'Status' => [ 'shape' => 'string', ], ], ], 'InvalidationSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InvalidationSummary', 'locationName' => 'InvalidationSummary', ], ], 'ItemSelection' => [ 'type' => 'string', 'enum' => [ 'none', 'whitelist', 'all', ], ], 'KeyPairIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'KeyPairId', ], ], 'KeyPairIds' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'KeyPairIdList', ], ], ], 'ListCloudFrontOriginAccessIdentitiesRequest' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'Marker', ], 'MaxItems' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'MaxItems', ], ], ], 'ListCloudFrontOriginAccessIdentitiesResult' => [ 'type' => 'structure', 'members' => [ 'CloudFrontOriginAccessIdentityList' => [ 'shape' => 'CloudFrontOriginAccessIdentityList', ], ], 'payload' => 'CloudFrontOriginAccessIdentityList', ], 'ListDistributionsByWebACLIdRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLId', ], 'members' => [ 'Marker' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'Marker', ], 'MaxItems' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'MaxItems', ], 'WebACLId' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'WebACLId', ], ], ], 'ListDistributionsByWebACLIdResult' => [ 'type' => 'structure', 'members' => [ 'DistributionList' => [ 'shape' => 'DistributionList', ], ], 'payload' => 'DistributionList', ], 'ListDistributionsRequest' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'Marker', ], 'MaxItems' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'MaxItems', ], ], ], 'ListDistributionsResult' => [ 'type' => 'structure', 'members' => [ 'DistributionList' => [ 'shape' => 'DistributionList', ], ], 'payload' => 'DistributionList', ], 'ListInvalidationsRequest' => [ 'type' => 'structure', 'required' => [ 'DistributionId', ], 'members' => [ 'DistributionId' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'DistributionId', ], 'Marker' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'Marker', ], 'MaxItems' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'MaxItems', ], ], ], 'ListInvalidationsResult' => [ 'type' => 'structure', 'members' => [ 'InvalidationList' => [ 'shape' => 'InvalidationList', ], ], 'payload' => 'InvalidationList', ], 'ListStreamingDistributionsRequest' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'Marker', ], 'MaxItems' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'MaxItems', ], ], ], 'ListStreamingDistributionsResult' => [ 'type' => 'structure', 'members' => [ 'StreamingDistributionList' => [ 'shape' => 'StreamingDistributionList', ], ], 'payload' => 'StreamingDistributionList', ], 'ListTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'Resource', ], 'members' => [ 'Resource' => [ 'shape' => 'ResourceARN', 'location' => 'querystring', 'locationName' => 'Resource', ], ], ], 'ListTagsForResourceResult' => [ 'type' => 'structure', 'required' => [ 'Tags', ], 'members' => [ 'Tags' => [ 'shape' => 'Tags', ], ], 'payload' => 'Tags', ], 'LocationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'Location', ], ], 'LoggingConfig' => [ 'type' => 'structure', 'required' => [ 'Enabled', 'IncludeCookies', 'Bucket', 'Prefix', ], 'members' => [ 'Enabled' => [ 'shape' => 'boolean', ], 'IncludeCookies' => [ 'shape' => 'boolean', ], 'Bucket' => [ 'shape' => 'string', ], 'Prefix' => [ 'shape' => 'string', ], ], ], 'Method' => [ 'type' => 'string', 'enum' => [ 'GET', 'HEAD', 'POST', 'PUT', 'PATCH', 'OPTIONS', 'DELETE', ], ], 'MethodsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Method', 'locationName' => 'Method', ], ], 'MinimumProtocolVersion' => [ 'type' => 'string', 'enum' => [ 'SSLv3', 'TLSv1', ], ], 'MissingBody' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'NoSuchCloudFrontOriginAccessIdentity' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchDistribution' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchInvalidation' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchOrigin' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchResource' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchStreamingDistribution' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'Origin' => [ 'type' => 'structure', 'required' => [ 'Id', 'DomainName', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'DomainName' => [ 'shape' => 'string', ], 'OriginPath' => [ 'shape' => 'string', ], 'CustomHeaders' => [ 'shape' => 'CustomHeaders', ], 'S3OriginConfig' => [ 'shape' => 'S3OriginConfig', ], 'CustomOriginConfig' => [ 'shape' => 'CustomOriginConfig', ], ], ], 'OriginCustomHeader' => [ 'type' => 'structure', 'required' => [ 'HeaderName', 'HeaderValue', ], 'members' => [ 'HeaderName' => [ 'shape' => 'string', ], 'HeaderValue' => [ 'shape' => 'string', ], ], ], 'OriginCustomHeadersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OriginCustomHeader', 'locationName' => 'OriginCustomHeader', ], ], 'OriginList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Origin', 'locationName' => 'Origin', ], 'min' => 1, ], 'OriginProtocolPolicy' => [ 'type' => 'string', 'enum' => [ 'http-only', 'match-viewer', 'https-only', ], ], 'OriginSslProtocols' => [ 'type' => 'structure', 'required' => [ 'Quantity', 'Items', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'SslProtocolsList', ], ], ], 'Origins' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'OriginList', ], ], ], 'PathList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'Path', ], ], 'Paths' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'PathList', ], ], ], 'PreconditionFailed' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 412, ], 'exception' => true, ], 'PriceClass' => [ 'type' => 'string', 'enum' => [ 'PriceClass_100', 'PriceClass_200', 'PriceClass_All', ], ], 'QueryStringCacheKeys' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'QueryStringCacheKeysList', ], ], ], 'QueryStringCacheKeysList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'Name', ], ], 'ResourceARN' => [ 'type' => 'string', 'pattern' => 'arn:aws:cloudfront::[0-9]+:.*', ], 'Restrictions' => [ 'type' => 'structure', 'required' => [ 'GeoRestriction', ], 'members' => [ 'GeoRestriction' => [ 'shape' => 'GeoRestriction', ], ], ], 'S3Origin' => [ 'type' => 'structure', 'required' => [ 'DomainName', 'OriginAccessIdentity', ], 'members' => [ 'DomainName' => [ 'shape' => 'string', ], 'OriginAccessIdentity' => [ 'shape' => 'string', ], ], ], 'S3OriginConfig' => [ 'type' => 'structure', 'required' => [ 'OriginAccessIdentity', ], 'members' => [ 'OriginAccessIdentity' => [ 'shape' => 'string', ], ], ], 'SSLSupportMethod' => [ 'type' => 'string', 'enum' => [ 'sni-only', 'vip', ], ], 'Signer' => [ 'type' => 'structure', 'members' => [ 'AwsAccountNumber' => [ 'shape' => 'string', ], 'KeyPairIds' => [ 'shape' => 'KeyPairIds', ], ], ], 'SignerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Signer', 'locationName' => 'Signer', ], ], 'SslProtocol' => [ 'type' => 'string', 'enum' => [ 'SSLv3', 'TLSv1', 'TLSv1.1', 'TLSv1.2', ], ], 'SslProtocolsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SslProtocol', 'locationName' => 'SslProtocol', ], ], 'StreamingDistribution' => [ 'type' => 'structure', 'required' => [ 'Id', 'ARN', 'Status', 'DomainName', 'ActiveTrustedSigners', 'StreamingDistributionConfig', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'ARN' => [ 'shape' => 'string', ], 'Status' => [ 'shape' => 'string', ], 'LastModifiedTime' => [ 'shape' => 'timestamp', ], 'DomainName' => [ 'shape' => 'string', ], 'ActiveTrustedSigners' => [ 'shape' => 'ActiveTrustedSigners', ], 'StreamingDistributionConfig' => [ 'shape' => 'StreamingDistributionConfig', ], ], ], 'StreamingDistributionAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'StreamingDistributionConfig' => [ 'type' => 'structure', 'required' => [ 'CallerReference', 'S3Origin', 'Comment', 'TrustedSigners', 'Enabled', ], 'members' => [ 'CallerReference' => [ 'shape' => 'string', ], 'S3Origin' => [ 'shape' => 'S3Origin', ], 'Aliases' => [ 'shape' => 'Aliases', ], 'Comment' => [ 'shape' => 'string', ], 'Logging' => [ 'shape' => 'StreamingLoggingConfig', ], 'TrustedSigners' => [ 'shape' => 'TrustedSigners', ], 'PriceClass' => [ 'shape' => 'PriceClass', ], 'Enabled' => [ 'shape' => 'boolean', ], ], ], 'StreamingDistributionConfigWithTags' => [ 'type' => 'structure', 'required' => [ 'StreamingDistributionConfig', 'Tags', ], 'members' => [ 'StreamingDistributionConfig' => [ 'shape' => 'StreamingDistributionConfig', ], 'Tags' => [ 'shape' => 'Tags', ], ], ], 'StreamingDistributionList' => [ 'type' => 'structure', 'required' => [ 'Marker', 'MaxItems', 'IsTruncated', 'Quantity', ], 'members' => [ 'Marker' => [ 'shape' => 'string', ], 'NextMarker' => [ 'shape' => 'string', ], 'MaxItems' => [ 'shape' => 'integer', ], 'IsTruncated' => [ 'shape' => 'boolean', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'StreamingDistributionSummaryList', ], ], ], 'StreamingDistributionNotDisabled' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'StreamingDistributionSummary' => [ 'type' => 'structure', 'required' => [ 'Id', 'ARN', 'Status', 'LastModifiedTime', 'DomainName', 'S3Origin', 'Aliases', 'TrustedSigners', 'Comment', 'PriceClass', 'Enabled', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'ARN' => [ 'shape' => 'string', ], 'Status' => [ 'shape' => 'string', ], 'LastModifiedTime' => [ 'shape' => 'timestamp', ], 'DomainName' => [ 'shape' => 'string', ], 'S3Origin' => [ 'shape' => 'S3Origin', ], 'Aliases' => [ 'shape' => 'Aliases', ], 'TrustedSigners' => [ 'shape' => 'TrustedSigners', ], 'Comment' => [ 'shape' => 'string', ], 'PriceClass' => [ 'shape' => 'PriceClass', ], 'Enabled' => [ 'shape' => 'boolean', ], ], ], 'StreamingDistributionSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'StreamingDistributionSummary', 'locationName' => 'StreamingDistributionSummary', ], ], 'StreamingLoggingConfig' => [ 'type' => 'structure', 'required' => [ 'Enabled', 'Bucket', 'Prefix', ], 'members' => [ 'Enabled' => [ 'shape' => 'boolean', ], 'Bucket' => [ 'shape' => 'string', ], 'Prefix' => [ 'shape' => 'string', ], ], ], 'Tag' => [ 'type' => 'structure', 'required' => [ 'Key', ], 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'TagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagKey', 'locationName' => 'Key', ], ], 'TagKeys' => [ 'type' => 'structure', 'members' => [ 'Items' => [ 'shape' => 'TagKeyList', ], ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], ], 'TagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'Resource', 'Tags', ], 'members' => [ 'Resource' => [ 'shape' => 'ResourceARN', 'location' => 'querystring', 'locationName' => 'Resource', ], 'Tags' => [ 'shape' => 'Tags', 'locationName' => 'Tags', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-07/', ], ], ], 'payload' => 'Tags', ], 'TagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 0, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'Tags' => [ 'type' => 'structure', 'members' => [ 'Items' => [ 'shape' => 'TagList', ], ], ], 'TooManyCacheBehaviors' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyCertificates' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyCloudFrontOriginAccessIdentities' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyCookieNamesInWhiteList' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyDistributionCNAMEs' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyDistributions' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyHeadersInForwardedValues' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyInvalidationsInProgress' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyOriginCustomHeaders' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyOrigins' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyQueryStringParameters' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyStreamingDistributionCNAMEs' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyStreamingDistributions' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyTrustedSigners' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TrustedSignerDoesNotExist' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TrustedSigners' => [ 'type' => 'structure', 'required' => [ 'Enabled', 'Quantity', ], 'members' => [ 'Enabled' => [ 'shape' => 'boolean', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'AwsAccountNumberList', ], ], ], 'UntagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'Resource', 'TagKeys', ], 'members' => [ 'Resource' => [ 'shape' => 'ResourceARN', 'location' => 'querystring', 'locationName' => 'Resource', ], 'TagKeys' => [ 'shape' => 'TagKeys', 'locationName' => 'TagKeys', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-07/', ], ], ], 'payload' => 'TagKeys', ], 'UpdateCloudFrontOriginAccessIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'CloudFrontOriginAccessIdentityConfig', 'Id', ], 'members' => [ 'CloudFrontOriginAccessIdentityConfig' => [ 'shape' => 'CloudFrontOriginAccessIdentityConfig', 'locationName' => 'CloudFrontOriginAccessIdentityConfig', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-07/', ], ], 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], 'IfMatch' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'If-Match', ], ], 'payload' => 'CloudFrontOriginAccessIdentityConfig', ], 'UpdateCloudFrontOriginAccessIdentityResult' => [ 'type' => 'structure', 'members' => [ 'CloudFrontOriginAccessIdentity' => [ 'shape' => 'CloudFrontOriginAccessIdentity', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'CloudFrontOriginAccessIdentity', ], 'UpdateDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'DistributionConfig', 'Id', ], 'members' => [ 'DistributionConfig' => [ 'shape' => 'DistributionConfig', 'locationName' => 'DistributionConfig', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-07/', ], ], 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], 'IfMatch' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'If-Match', ], ], 'payload' => 'DistributionConfig', ], 'UpdateDistributionResult' => [ 'type' => 'structure', 'members' => [ 'Distribution' => [ 'shape' => 'Distribution', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'Distribution', ], 'UpdateStreamingDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'StreamingDistributionConfig', 'Id', ], 'members' => [ 'StreamingDistributionConfig' => [ 'shape' => 'StreamingDistributionConfig', 'locationName' => 'StreamingDistributionConfig', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-07/', ], ], 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], 'IfMatch' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'If-Match', ], ], 'payload' => 'StreamingDistributionConfig', ], 'UpdateStreamingDistributionResult' => [ 'type' => 'structure', 'members' => [ 'StreamingDistribution' => [ 'shape' => 'StreamingDistribution', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'StreamingDistribution', ], 'ViewerCertificate' => [ 'type' => 'structure', 'members' => [ 'CloudFrontDefaultCertificate' => [ 'shape' => 'boolean', ], 'IAMCertificateId' => [ 'shape' => 'string', ], 'ACMCertificateArn' => [ 'shape' => 'string', ], 'SSLSupportMethod' => [ 'shape' => 'SSLSupportMethod', ], 'MinimumProtocolVersion' => [ 'shape' => 'MinimumProtocolVersion', ], 'Certificate' => [ 'shape' => 'string', 'deprecated' => true, ], 'CertificateSource' => [ 'shape' => 'CertificateSource', 'deprecated' => true, ], ], ], 'ViewerProtocolPolicy' => [ 'type' => 'string', 'enum' => [ 'allow-all', 'https-only', 'redirect-to-https', ], ], 'boolean' => [ 'type' => 'boolean', ], 'integer' => [ 'type' => 'integer', ], 'long' => [ 'type' => 'long', ], 'string' => [ 'type' => 'string', ], 'timestamp' => [ 'type' => 'timestamp', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/paginators-1.json.php new file mode 100644 index 000000000..37d727ce7 --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/paginators-1.json.php @@ -0,0 +1,3 @@ + [ 'ListCloudFrontOriginAccessIdentities' => [ 'input_token' => 'Marker', 'output_token' => 'CloudFrontOriginAccessIdentityList.NextMarker', 'limit_key' => 'MaxItems', 'more_results' => 'CloudFrontOriginAccessIdentityList.IsTruncated', 'result_key' => 'CloudFrontOriginAccessIdentityList.Items', ], 'ListDistributions' => [ 'input_token' => 'Marker', 'output_token' => 'DistributionList.NextMarker', 'limit_key' => 'MaxItems', 'more_results' => 'DistributionList.IsTruncated', 'result_key' => 'DistributionList.Items', ], 'ListInvalidations' => [ 'input_token' => 'Marker', 'output_token' => 'InvalidationList.NextMarker', 'limit_key' => 'MaxItems', 'more_results' => 'InvalidationList.IsTruncated', 'result_key' => 'InvalidationList.Items', ], 'ListStreamingDistributions' => [ 'input_token' => 'Marker', 'output_token' => 'StreamingDistributionList.NextMarker', 'limit_key' => 'MaxItems', 'more_results' => 'StreamingDistributionList.IsTruncated', 'result_key' => 'StreamingDistributionList.Items', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/waiters-1.json.php new file mode 100644 index 000000000..1f7abe5d5 --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/waiters-1.json.php @@ -0,0 +1,3 @@ + [ '__default__' => [ 'success_type' => 'output', 'success_path' => 'Status', ], 'StreamingDistributionDeployed' => [ 'operation' => 'GetStreamingDistribution', 'description' => 'Wait until a streaming distribution is deployed.', 'interval' => 60, 'max_attempts' => 25, 'success_value' => 'Deployed', ], 'DistributionDeployed' => [ 'operation' => 'GetDistribution', 'description' => 'Wait until a distribution is deployed.', 'interval' => 60, 'max_attempts' => 25, 'success_value' => 'Deployed', ], 'InvalidationCompleted' => [ 'operation' => 'GetInvalidation', 'description' => 'Wait until an invalidation has completed.', 'interval' => 20, 'max_attempts' => 30, 'success_value' => 'Completed', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/waiters-2.json.php new file mode 100644 index 000000000..db476beea --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/waiters-2.json.php @@ -0,0 +1,3 @@ + 2, 'waiters' => [ 'DistributionDeployed' => [ 'delay' => 60, 'operation' => 'GetDistribution', 'maxAttempts' => 25, 'description' => 'Wait until a distribution is deployed.', 'acceptors' => [ [ 'expected' => 'Deployed', 'matcher' => 'path', 'state' => 'success', 'argument' => 'Distribution.Status', ], ], ], 'InvalidationCompleted' => [ 'delay' => 20, 'operation' => 'GetInvalidation', 'maxAttempts' => 30, 'description' => 'Wait until an invalidation has completed.', 'acceptors' => [ [ 'expected' => 'Completed', 'matcher' => 'path', 'state' => 'success', 'argument' => 'Invalidation.Status', ], ], ], 'StreamingDistributionDeployed' => [ 'delay' => 60, 'operation' => 'GetStreamingDistribution', 'maxAttempts' => 25, 'description' => 'Wait until a streaming distribution is deployed.', 'acceptors' => [ [ 'expected' => 'Deployed', 'matcher' => 'path', 'state' => 'success', 'argument' => 'StreamingDistribution.Status', ], ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/api-2.json.php new file mode 100644 index 000000000..41c825a98 --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/api-2.json.php @@ -0,0 +1,3 @@ + '2.0', 'metadata' => [ 'apiVersion' => '2016-09-29', 'endpointPrefix' => 'cloudfront', 'globalEndpoint' => 'cloudfront.amazonaws.com', 'protocol' => 'rest-xml', 'serviceAbbreviation' => 'CloudFront', 'serviceFullName' => 'Amazon CloudFront', 'signatureVersion' => 'v4', ], 'operations' => [ 'CreateCloudFrontOriginAccessIdentity' => [ 'name' => 'CreateCloudFrontOriginAccessIdentity2016_09_29', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-29/origin-access-identity/cloudfront', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateCloudFrontOriginAccessIdentityRequest', ], 'output' => [ 'shape' => 'CreateCloudFrontOriginAccessIdentityResult', ], 'errors' => [ [ 'shape' => 'CloudFrontOriginAccessIdentityAlreadyExists', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'TooManyCloudFrontOriginAccessIdentities', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InconsistentQuantities', ], ], ], 'CreateDistribution' => [ 'name' => 'CreateDistribution2016_09_29', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-29/distribution', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateDistributionRequest', ], 'output' => [ 'shape' => 'CreateDistributionResult', ], 'errors' => [ [ 'shape' => 'CNAMEAlreadyExists', ], [ 'shape' => 'DistributionAlreadyExists', ], [ 'shape' => 'InvalidOrigin', ], [ 'shape' => 'InvalidOriginAccessIdentity', ], [ 'shape' => 'AccessDenied', ], [ 'shape' => 'TooManyTrustedSigners', ], [ 'shape' => 'TrustedSignerDoesNotExist', ], [ 'shape' => 'InvalidViewerCertificate', ], [ 'shape' => 'InvalidMinimumProtocolVersion', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'TooManyDistributionCNAMEs', ], [ 'shape' => 'TooManyDistributions', ], [ 'shape' => 'InvalidDefaultRootObject', ], [ 'shape' => 'InvalidRelativePath', ], [ 'shape' => 'InvalidErrorCode', ], [ 'shape' => 'InvalidResponseCode', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidRequiredProtocol', ], [ 'shape' => 'NoSuchOrigin', ], [ 'shape' => 'TooManyOrigins', ], [ 'shape' => 'TooManyCacheBehaviors', ], [ 'shape' => 'TooManyCookieNamesInWhiteList', ], [ 'shape' => 'InvalidForwardCookies', ], [ 'shape' => 'TooManyHeadersInForwardedValues', ], [ 'shape' => 'InvalidHeadersForS3Origin', ], [ 'shape' => 'InconsistentQuantities', ], [ 'shape' => 'TooManyCertificates', ], [ 'shape' => 'InvalidLocationCode', ], [ 'shape' => 'InvalidGeoRestrictionParameter', ], [ 'shape' => 'InvalidProtocolSettings', ], [ 'shape' => 'InvalidTTLOrder', ], [ 'shape' => 'InvalidWebACLId', ], [ 'shape' => 'TooManyOriginCustomHeaders', ], [ 'shape' => 'TooManyQueryStringParameters', ], [ 'shape' => 'InvalidQueryStringParameters', ], ], ], 'CreateDistributionWithTags' => [ 'name' => 'CreateDistributionWithTags2016_09_29', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-29/distribution?WithTags', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateDistributionWithTagsRequest', ], 'output' => [ 'shape' => 'CreateDistributionWithTagsResult', ], 'errors' => [ [ 'shape' => 'CNAMEAlreadyExists', ], [ 'shape' => 'DistributionAlreadyExists', ], [ 'shape' => 'InvalidOrigin', ], [ 'shape' => 'InvalidOriginAccessIdentity', ], [ 'shape' => 'AccessDenied', ], [ 'shape' => 'TooManyTrustedSigners', ], [ 'shape' => 'TrustedSignerDoesNotExist', ], [ 'shape' => 'InvalidViewerCertificate', ], [ 'shape' => 'InvalidMinimumProtocolVersion', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'TooManyDistributionCNAMEs', ], [ 'shape' => 'TooManyDistributions', ], [ 'shape' => 'InvalidDefaultRootObject', ], [ 'shape' => 'InvalidRelativePath', ], [ 'shape' => 'InvalidErrorCode', ], [ 'shape' => 'InvalidResponseCode', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidRequiredProtocol', ], [ 'shape' => 'NoSuchOrigin', ], [ 'shape' => 'TooManyOrigins', ], [ 'shape' => 'TooManyCacheBehaviors', ], [ 'shape' => 'TooManyCookieNamesInWhiteList', ], [ 'shape' => 'InvalidForwardCookies', ], [ 'shape' => 'TooManyHeadersInForwardedValues', ], [ 'shape' => 'InvalidHeadersForS3Origin', ], [ 'shape' => 'InconsistentQuantities', ], [ 'shape' => 'TooManyCertificates', ], [ 'shape' => 'InvalidLocationCode', ], [ 'shape' => 'InvalidGeoRestrictionParameter', ], [ 'shape' => 'InvalidProtocolSettings', ], [ 'shape' => 'InvalidTTLOrder', ], [ 'shape' => 'InvalidWebACLId', ], [ 'shape' => 'TooManyOriginCustomHeaders', ], [ 'shape' => 'InvalidTagging', ], [ 'shape' => 'TooManyQueryStringParameters', ], [ 'shape' => 'InvalidQueryStringParameters', ], ], ], 'CreateInvalidation' => [ 'name' => 'CreateInvalidation2016_09_29', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-29/distribution/{DistributionId}/invalidation', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateInvalidationRequest', ], 'output' => [ 'shape' => 'CreateInvalidationResult', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'BatchTooLarge', ], [ 'shape' => 'TooManyInvalidationsInProgress', ], [ 'shape' => 'InconsistentQuantities', ], ], ], 'CreateStreamingDistribution' => [ 'name' => 'CreateStreamingDistribution2016_09_29', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-29/streaming-distribution', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateStreamingDistributionRequest', ], 'output' => [ 'shape' => 'CreateStreamingDistributionResult', ], 'errors' => [ [ 'shape' => 'CNAMEAlreadyExists', ], [ 'shape' => 'StreamingDistributionAlreadyExists', ], [ 'shape' => 'InvalidOrigin', ], [ 'shape' => 'InvalidOriginAccessIdentity', ], [ 'shape' => 'AccessDenied', ], [ 'shape' => 'TooManyTrustedSigners', ], [ 'shape' => 'TrustedSignerDoesNotExist', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'TooManyStreamingDistributionCNAMEs', ], [ 'shape' => 'TooManyStreamingDistributions', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InconsistentQuantities', ], ], ], 'CreateStreamingDistributionWithTags' => [ 'name' => 'CreateStreamingDistributionWithTags2016_09_29', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-29/streaming-distribution?WithTags', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateStreamingDistributionWithTagsRequest', ], 'output' => [ 'shape' => 'CreateStreamingDistributionWithTagsResult', ], 'errors' => [ [ 'shape' => 'CNAMEAlreadyExists', ], [ 'shape' => 'StreamingDistributionAlreadyExists', ], [ 'shape' => 'InvalidOrigin', ], [ 'shape' => 'InvalidOriginAccessIdentity', ], [ 'shape' => 'AccessDenied', ], [ 'shape' => 'TooManyTrustedSigners', ], [ 'shape' => 'TrustedSignerDoesNotExist', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'TooManyStreamingDistributionCNAMEs', ], [ 'shape' => 'TooManyStreamingDistributions', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InconsistentQuantities', ], [ 'shape' => 'InvalidTagging', ], ], ], 'DeleteCloudFrontOriginAccessIdentity' => [ 'name' => 'DeleteCloudFrontOriginAccessIdentity2016_09_29', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2016-09-29/origin-access-identity/cloudfront/{Id}', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteCloudFrontOriginAccessIdentityRequest', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'InvalidIfMatchVersion', ], [ 'shape' => 'NoSuchCloudFrontOriginAccessIdentity', ], [ 'shape' => 'PreconditionFailed', ], [ 'shape' => 'CloudFrontOriginAccessIdentityInUse', ], ], ], 'DeleteDistribution' => [ 'name' => 'DeleteDistribution2016_09_29', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2016-09-29/distribution/{Id}', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteDistributionRequest', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'DistributionNotDisabled', ], [ 'shape' => 'InvalidIfMatchVersion', ], [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'PreconditionFailed', ], ], ], 'DeleteStreamingDistribution' => [ 'name' => 'DeleteStreamingDistribution2016_09_29', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2016-09-29/streaming-distribution/{Id}', 'responseCode' => 204, ], 'input' => [ 'shape' => 'DeleteStreamingDistributionRequest', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'StreamingDistributionNotDisabled', ], [ 'shape' => 'InvalidIfMatchVersion', ], [ 'shape' => 'NoSuchStreamingDistribution', ], [ 'shape' => 'PreconditionFailed', ], ], ], 'GetCloudFrontOriginAccessIdentity' => [ 'name' => 'GetCloudFrontOriginAccessIdentity2016_09_29', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-29/origin-access-identity/cloudfront/{Id}', ], 'input' => [ 'shape' => 'GetCloudFrontOriginAccessIdentityRequest', ], 'output' => [ 'shape' => 'GetCloudFrontOriginAccessIdentityResult', ], 'errors' => [ [ 'shape' => 'NoSuchCloudFrontOriginAccessIdentity', ], [ 'shape' => 'AccessDenied', ], ], ], 'GetCloudFrontOriginAccessIdentityConfig' => [ 'name' => 'GetCloudFrontOriginAccessIdentityConfig2016_09_29', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-29/origin-access-identity/cloudfront/{Id}/config', ], 'input' => [ 'shape' => 'GetCloudFrontOriginAccessIdentityConfigRequest', ], 'output' => [ 'shape' => 'GetCloudFrontOriginAccessIdentityConfigResult', ], 'errors' => [ [ 'shape' => 'NoSuchCloudFrontOriginAccessIdentity', ], [ 'shape' => 'AccessDenied', ], ], ], 'GetDistribution' => [ 'name' => 'GetDistribution2016_09_29', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-29/distribution/{Id}', ], 'input' => [ 'shape' => 'GetDistributionRequest', ], 'output' => [ 'shape' => 'GetDistributionResult', ], 'errors' => [ [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'AccessDenied', ], ], ], 'GetDistributionConfig' => [ 'name' => 'GetDistributionConfig2016_09_29', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-29/distribution/{Id}/config', ], 'input' => [ 'shape' => 'GetDistributionConfigRequest', ], 'output' => [ 'shape' => 'GetDistributionConfigResult', ], 'errors' => [ [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'AccessDenied', ], ], ], 'GetInvalidation' => [ 'name' => 'GetInvalidation2016_09_29', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-29/distribution/{DistributionId}/invalidation/{Id}', ], 'input' => [ 'shape' => 'GetInvalidationRequest', ], 'output' => [ 'shape' => 'GetInvalidationResult', ], 'errors' => [ [ 'shape' => 'NoSuchInvalidation', ], [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'AccessDenied', ], ], ], 'GetStreamingDistribution' => [ 'name' => 'GetStreamingDistribution2016_09_29', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-29/streaming-distribution/{Id}', ], 'input' => [ 'shape' => 'GetStreamingDistributionRequest', ], 'output' => [ 'shape' => 'GetStreamingDistributionResult', ], 'errors' => [ [ 'shape' => 'NoSuchStreamingDistribution', ], [ 'shape' => 'AccessDenied', ], ], ], 'GetStreamingDistributionConfig' => [ 'name' => 'GetStreamingDistributionConfig2016_09_29', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-29/streaming-distribution/{Id}/config', ], 'input' => [ 'shape' => 'GetStreamingDistributionConfigRequest', ], 'output' => [ 'shape' => 'GetStreamingDistributionConfigResult', ], 'errors' => [ [ 'shape' => 'NoSuchStreamingDistribution', ], [ 'shape' => 'AccessDenied', ], ], ], 'ListCloudFrontOriginAccessIdentities' => [ 'name' => 'ListCloudFrontOriginAccessIdentities2016_09_29', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-29/origin-access-identity/cloudfront', ], 'input' => [ 'shape' => 'ListCloudFrontOriginAccessIdentitiesRequest', ], 'output' => [ 'shape' => 'ListCloudFrontOriginAccessIdentitiesResult', ], 'errors' => [ [ 'shape' => 'InvalidArgument', ], ], ], 'ListDistributions' => [ 'name' => 'ListDistributions2016_09_29', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-29/distribution', ], 'input' => [ 'shape' => 'ListDistributionsRequest', ], 'output' => [ 'shape' => 'ListDistributionsResult', ], 'errors' => [ [ 'shape' => 'InvalidArgument', ], ], ], 'ListDistributionsByWebACLId' => [ 'name' => 'ListDistributionsByWebACLId2016_09_29', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-29/distributionsByWebACLId/{WebACLId}', ], 'input' => [ 'shape' => 'ListDistributionsByWebACLIdRequest', ], 'output' => [ 'shape' => 'ListDistributionsByWebACLIdResult', ], 'errors' => [ [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidWebACLId', ], ], ], 'ListInvalidations' => [ 'name' => 'ListInvalidations2016_09_29', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-29/distribution/{DistributionId}/invalidation', ], 'input' => [ 'shape' => 'ListInvalidationsRequest', ], 'output' => [ 'shape' => 'ListInvalidationsResult', ], 'errors' => [ [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'AccessDenied', ], ], ], 'ListStreamingDistributions' => [ 'name' => 'ListStreamingDistributions2016_09_29', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-29/streaming-distribution', ], 'input' => [ 'shape' => 'ListStreamingDistributionsRequest', ], 'output' => [ 'shape' => 'ListStreamingDistributionsResult', ], 'errors' => [ [ 'shape' => 'InvalidArgument', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource2016_09_29', 'http' => [ 'method' => 'GET', 'requestUri' => '/2016-09-29/tagging', ], 'input' => [ 'shape' => 'ListTagsForResourceRequest', ], 'output' => [ 'shape' => 'ListTagsForResourceResult', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidTagging', ], [ 'shape' => 'NoSuchResource', ], ], ], 'TagResource' => [ 'name' => 'TagResource2016_09_29', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-29/tagging?Operation=Tag', 'responseCode' => 204, ], 'input' => [ 'shape' => 'TagResourceRequest', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidTagging', ], [ 'shape' => 'NoSuchResource', ], ], ], 'UntagResource' => [ 'name' => 'UntagResource2016_09_29', 'http' => [ 'method' => 'POST', 'requestUri' => '/2016-09-29/tagging?Operation=Untag', 'responseCode' => 204, ], 'input' => [ 'shape' => 'UntagResourceRequest', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidTagging', ], [ 'shape' => 'NoSuchResource', ], ], ], 'UpdateCloudFrontOriginAccessIdentity' => [ 'name' => 'UpdateCloudFrontOriginAccessIdentity2016_09_29', 'http' => [ 'method' => 'PUT', 'requestUri' => '/2016-09-29/origin-access-identity/cloudfront/{Id}/config', ], 'input' => [ 'shape' => 'UpdateCloudFrontOriginAccessIdentityRequest', ], 'output' => [ 'shape' => 'UpdateCloudFrontOriginAccessIdentityResult', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'IllegalUpdate', ], [ 'shape' => 'InvalidIfMatchVersion', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'NoSuchCloudFrontOriginAccessIdentity', ], [ 'shape' => 'PreconditionFailed', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InconsistentQuantities', ], ], ], 'UpdateDistribution' => [ 'name' => 'UpdateDistribution2016_09_29', 'http' => [ 'method' => 'PUT', 'requestUri' => '/2016-09-29/distribution/{Id}/config', ], 'input' => [ 'shape' => 'UpdateDistributionRequest', ], 'output' => [ 'shape' => 'UpdateDistributionResult', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'CNAMEAlreadyExists', ], [ 'shape' => 'IllegalUpdate', ], [ 'shape' => 'InvalidIfMatchVersion', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'NoSuchDistribution', ], [ 'shape' => 'PreconditionFailed', ], [ 'shape' => 'TooManyDistributionCNAMEs', ], [ 'shape' => 'InvalidDefaultRootObject', ], [ 'shape' => 'InvalidRelativePath', ], [ 'shape' => 'InvalidErrorCode', ], [ 'shape' => 'InvalidResponseCode', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidOriginAccessIdentity', ], [ 'shape' => 'TooManyTrustedSigners', ], [ 'shape' => 'TrustedSignerDoesNotExist', ], [ 'shape' => 'InvalidViewerCertificate', ], [ 'shape' => 'InvalidMinimumProtocolVersion', ], [ 'shape' => 'InvalidRequiredProtocol', ], [ 'shape' => 'NoSuchOrigin', ], [ 'shape' => 'TooManyOrigins', ], [ 'shape' => 'TooManyCacheBehaviors', ], [ 'shape' => 'TooManyCookieNamesInWhiteList', ], [ 'shape' => 'InvalidForwardCookies', ], [ 'shape' => 'TooManyHeadersInForwardedValues', ], [ 'shape' => 'InvalidHeadersForS3Origin', ], [ 'shape' => 'InconsistentQuantities', ], [ 'shape' => 'TooManyCertificates', ], [ 'shape' => 'InvalidLocationCode', ], [ 'shape' => 'InvalidGeoRestrictionParameter', ], [ 'shape' => 'InvalidTTLOrder', ], [ 'shape' => 'InvalidWebACLId', ], [ 'shape' => 'TooManyOriginCustomHeaders', ], [ 'shape' => 'TooManyQueryStringParameters', ], [ 'shape' => 'InvalidQueryStringParameters', ], ], ], 'UpdateStreamingDistribution' => [ 'name' => 'UpdateStreamingDistribution2016_09_29', 'http' => [ 'method' => 'PUT', 'requestUri' => '/2016-09-29/streaming-distribution/{Id}/config', ], 'input' => [ 'shape' => 'UpdateStreamingDistributionRequest', ], 'output' => [ 'shape' => 'UpdateStreamingDistributionResult', ], 'errors' => [ [ 'shape' => 'AccessDenied', ], [ 'shape' => 'CNAMEAlreadyExists', ], [ 'shape' => 'IllegalUpdate', ], [ 'shape' => 'InvalidIfMatchVersion', ], [ 'shape' => 'MissingBody', ], [ 'shape' => 'NoSuchStreamingDistribution', ], [ 'shape' => 'PreconditionFailed', ], [ 'shape' => 'TooManyStreamingDistributionCNAMEs', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidOriginAccessIdentity', ], [ 'shape' => 'TooManyTrustedSigners', ], [ 'shape' => 'TrustedSignerDoesNotExist', ], [ 'shape' => 'InconsistentQuantities', ], ], ], ], 'shapes' => [ 'AccessDenied' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 403, ], 'exception' => true, ], 'ActiveTrustedSigners' => [ 'type' => 'structure', 'required' => [ 'Enabled', 'Quantity', ], 'members' => [ 'Enabled' => [ 'shape' => 'boolean', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'SignerList', ], ], ], 'AliasList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'CNAME', ], ], 'Aliases' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'AliasList', ], ], ], 'AllowedMethods' => [ 'type' => 'structure', 'required' => [ 'Quantity', 'Items', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'MethodsList', ], 'CachedMethods' => [ 'shape' => 'CachedMethods', ], ], ], 'AwsAccountNumberList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'AwsAccountNumber', ], ], 'BatchTooLarge' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 413, ], 'exception' => true, ], 'CNAMEAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'CacheBehavior' => [ 'type' => 'structure', 'required' => [ 'PathPattern', 'TargetOriginId', 'ForwardedValues', 'TrustedSigners', 'ViewerProtocolPolicy', 'MinTTL', ], 'members' => [ 'PathPattern' => [ 'shape' => 'string', ], 'TargetOriginId' => [ 'shape' => 'string', ], 'ForwardedValues' => [ 'shape' => 'ForwardedValues', ], 'TrustedSigners' => [ 'shape' => 'TrustedSigners', ], 'ViewerProtocolPolicy' => [ 'shape' => 'ViewerProtocolPolicy', ], 'MinTTL' => [ 'shape' => 'long', ], 'AllowedMethods' => [ 'shape' => 'AllowedMethods', ], 'SmoothStreaming' => [ 'shape' => 'boolean', ], 'DefaultTTL' => [ 'shape' => 'long', ], 'MaxTTL' => [ 'shape' => 'long', ], 'Compress' => [ 'shape' => 'boolean', ], ], ], 'CacheBehaviorList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheBehavior', 'locationName' => 'CacheBehavior', ], ], 'CacheBehaviors' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'CacheBehaviorList', ], ], ], 'CachedMethods' => [ 'type' => 'structure', 'required' => [ 'Quantity', 'Items', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'MethodsList', ], ], ], 'CertificateSource' => [ 'type' => 'string', 'enum' => [ 'cloudfront', 'iam', 'acm', ], ], 'CloudFrontOriginAccessIdentity' => [ 'type' => 'structure', 'required' => [ 'Id', 'S3CanonicalUserId', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'S3CanonicalUserId' => [ 'shape' => 'string', ], 'CloudFrontOriginAccessIdentityConfig' => [ 'shape' => 'CloudFrontOriginAccessIdentityConfig', ], ], ], 'CloudFrontOriginAccessIdentityAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'CloudFrontOriginAccessIdentityConfig' => [ 'type' => 'structure', 'required' => [ 'CallerReference', 'Comment', ], 'members' => [ 'CallerReference' => [ 'shape' => 'string', ], 'Comment' => [ 'shape' => 'string', ], ], ], 'CloudFrontOriginAccessIdentityInUse' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'CloudFrontOriginAccessIdentityList' => [ 'type' => 'structure', 'required' => [ 'Marker', 'MaxItems', 'IsTruncated', 'Quantity', ], 'members' => [ 'Marker' => [ 'shape' => 'string', ], 'NextMarker' => [ 'shape' => 'string', ], 'MaxItems' => [ 'shape' => 'integer', ], 'IsTruncated' => [ 'shape' => 'boolean', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'CloudFrontOriginAccessIdentitySummaryList', ], ], ], 'CloudFrontOriginAccessIdentitySummary' => [ 'type' => 'structure', 'required' => [ 'Id', 'S3CanonicalUserId', 'Comment', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'S3CanonicalUserId' => [ 'shape' => 'string', ], 'Comment' => [ 'shape' => 'string', ], ], ], 'CloudFrontOriginAccessIdentitySummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CloudFrontOriginAccessIdentitySummary', 'locationName' => 'CloudFrontOriginAccessIdentitySummary', ], ], 'CookieNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'Name', ], ], 'CookieNames' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'CookieNameList', ], ], ], 'CookiePreference' => [ 'type' => 'structure', 'required' => [ 'Forward', ], 'members' => [ 'Forward' => [ 'shape' => 'ItemSelection', ], 'WhitelistedNames' => [ 'shape' => 'CookieNames', ], ], ], 'CreateCloudFrontOriginAccessIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'CloudFrontOriginAccessIdentityConfig', ], 'members' => [ 'CloudFrontOriginAccessIdentityConfig' => [ 'shape' => 'CloudFrontOriginAccessIdentityConfig', 'locationName' => 'CloudFrontOriginAccessIdentityConfig', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-29/', ], ], ], 'payload' => 'CloudFrontOriginAccessIdentityConfig', ], 'CreateCloudFrontOriginAccessIdentityResult' => [ 'type' => 'structure', 'members' => [ 'CloudFrontOriginAccessIdentity' => [ 'shape' => 'CloudFrontOriginAccessIdentity', ], 'Location' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'Location', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'CloudFrontOriginAccessIdentity', ], 'CreateDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'DistributionConfig', ], 'members' => [ 'DistributionConfig' => [ 'shape' => 'DistributionConfig', 'locationName' => 'DistributionConfig', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-29/', ], ], ], 'payload' => 'DistributionConfig', ], 'CreateDistributionResult' => [ 'type' => 'structure', 'members' => [ 'Distribution' => [ 'shape' => 'Distribution', ], 'Location' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'Location', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'Distribution', ], 'CreateDistributionWithTagsRequest' => [ 'type' => 'structure', 'required' => [ 'DistributionConfigWithTags', ], 'members' => [ 'DistributionConfigWithTags' => [ 'shape' => 'DistributionConfigWithTags', 'locationName' => 'DistributionConfigWithTags', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-29/', ], ], ], 'payload' => 'DistributionConfigWithTags', ], 'CreateDistributionWithTagsResult' => [ 'type' => 'structure', 'members' => [ 'Distribution' => [ 'shape' => 'Distribution', ], 'Location' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'Location', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'Distribution', ], 'CreateInvalidationRequest' => [ 'type' => 'structure', 'required' => [ 'DistributionId', 'InvalidationBatch', ], 'members' => [ 'DistributionId' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'DistributionId', ], 'InvalidationBatch' => [ 'shape' => 'InvalidationBatch', 'locationName' => 'InvalidationBatch', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-29/', ], ], ], 'payload' => 'InvalidationBatch', ], 'CreateInvalidationResult' => [ 'type' => 'structure', 'members' => [ 'Location' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'Location', ], 'Invalidation' => [ 'shape' => 'Invalidation', ], ], 'payload' => 'Invalidation', ], 'CreateStreamingDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'StreamingDistributionConfig', ], 'members' => [ 'StreamingDistributionConfig' => [ 'shape' => 'StreamingDistributionConfig', 'locationName' => 'StreamingDistributionConfig', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-29/', ], ], ], 'payload' => 'StreamingDistributionConfig', ], 'CreateStreamingDistributionResult' => [ 'type' => 'structure', 'members' => [ 'StreamingDistribution' => [ 'shape' => 'StreamingDistribution', ], 'Location' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'Location', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'StreamingDistribution', ], 'CreateStreamingDistributionWithTagsRequest' => [ 'type' => 'structure', 'required' => [ 'StreamingDistributionConfigWithTags', ], 'members' => [ 'StreamingDistributionConfigWithTags' => [ 'shape' => 'StreamingDistributionConfigWithTags', 'locationName' => 'StreamingDistributionConfigWithTags', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-29/', ], ], ], 'payload' => 'StreamingDistributionConfigWithTags', ], 'CreateStreamingDistributionWithTagsResult' => [ 'type' => 'structure', 'members' => [ 'StreamingDistribution' => [ 'shape' => 'StreamingDistribution', ], 'Location' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'Location', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'StreamingDistribution', ], 'CustomErrorResponse' => [ 'type' => 'structure', 'required' => [ 'ErrorCode', ], 'members' => [ 'ErrorCode' => [ 'shape' => 'integer', ], 'ResponsePagePath' => [ 'shape' => 'string', ], 'ResponseCode' => [ 'shape' => 'string', ], 'ErrorCachingMinTTL' => [ 'shape' => 'long', ], ], ], 'CustomErrorResponseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CustomErrorResponse', 'locationName' => 'CustomErrorResponse', ], ], 'CustomErrorResponses' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'CustomErrorResponseList', ], ], ], 'CustomHeaders' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'OriginCustomHeadersList', ], ], ], 'CustomOriginConfig' => [ 'type' => 'structure', 'required' => [ 'HTTPPort', 'HTTPSPort', 'OriginProtocolPolicy', ], 'members' => [ 'HTTPPort' => [ 'shape' => 'integer', ], 'HTTPSPort' => [ 'shape' => 'integer', ], 'OriginProtocolPolicy' => [ 'shape' => 'OriginProtocolPolicy', ], 'OriginSslProtocols' => [ 'shape' => 'OriginSslProtocols', ], ], ], 'DefaultCacheBehavior' => [ 'type' => 'structure', 'required' => [ 'TargetOriginId', 'ForwardedValues', 'TrustedSigners', 'ViewerProtocolPolicy', 'MinTTL', ], 'members' => [ 'TargetOriginId' => [ 'shape' => 'string', ], 'ForwardedValues' => [ 'shape' => 'ForwardedValues', ], 'TrustedSigners' => [ 'shape' => 'TrustedSigners', ], 'ViewerProtocolPolicy' => [ 'shape' => 'ViewerProtocolPolicy', ], 'MinTTL' => [ 'shape' => 'long', ], 'AllowedMethods' => [ 'shape' => 'AllowedMethods', ], 'SmoothStreaming' => [ 'shape' => 'boolean', ], 'DefaultTTL' => [ 'shape' => 'long', ], 'MaxTTL' => [ 'shape' => 'long', ], 'Compress' => [ 'shape' => 'boolean', ], ], ], 'DeleteCloudFrontOriginAccessIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], 'IfMatch' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'If-Match', ], ], ], 'DeleteDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], 'IfMatch' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'If-Match', ], ], ], 'DeleteStreamingDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], 'IfMatch' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'If-Match', ], ], ], 'Distribution' => [ 'type' => 'structure', 'required' => [ 'Id', 'ARN', 'Status', 'LastModifiedTime', 'InProgressInvalidationBatches', 'DomainName', 'ActiveTrustedSigners', 'DistributionConfig', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'ARN' => [ 'shape' => 'string', ], 'Status' => [ 'shape' => 'string', ], 'LastModifiedTime' => [ 'shape' => 'timestamp', ], 'InProgressInvalidationBatches' => [ 'shape' => 'integer', ], 'DomainName' => [ 'shape' => 'string', ], 'ActiveTrustedSigners' => [ 'shape' => 'ActiveTrustedSigners', ], 'DistributionConfig' => [ 'shape' => 'DistributionConfig', ], ], ], 'DistributionAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'DistributionConfig' => [ 'type' => 'structure', 'required' => [ 'CallerReference', 'Origins', 'DefaultCacheBehavior', 'Comment', 'Enabled', ], 'members' => [ 'CallerReference' => [ 'shape' => 'string', ], 'Aliases' => [ 'shape' => 'Aliases', ], 'DefaultRootObject' => [ 'shape' => 'string', ], 'Origins' => [ 'shape' => 'Origins', ], 'DefaultCacheBehavior' => [ 'shape' => 'DefaultCacheBehavior', ], 'CacheBehaviors' => [ 'shape' => 'CacheBehaviors', ], 'CustomErrorResponses' => [ 'shape' => 'CustomErrorResponses', ], 'Comment' => [ 'shape' => 'string', ], 'Logging' => [ 'shape' => 'LoggingConfig', ], 'PriceClass' => [ 'shape' => 'PriceClass', ], 'Enabled' => [ 'shape' => 'boolean', ], 'ViewerCertificate' => [ 'shape' => 'ViewerCertificate', ], 'Restrictions' => [ 'shape' => 'Restrictions', ], 'WebACLId' => [ 'shape' => 'string', ], 'HttpVersion' => [ 'shape' => 'HttpVersion', ], 'IsIPV6Enabled' => [ 'shape' => 'boolean', ], ], ], 'DistributionConfigWithTags' => [ 'type' => 'structure', 'required' => [ 'DistributionConfig', 'Tags', ], 'members' => [ 'DistributionConfig' => [ 'shape' => 'DistributionConfig', ], 'Tags' => [ 'shape' => 'Tags', ], ], ], 'DistributionList' => [ 'type' => 'structure', 'required' => [ 'Marker', 'MaxItems', 'IsTruncated', 'Quantity', ], 'members' => [ 'Marker' => [ 'shape' => 'string', ], 'NextMarker' => [ 'shape' => 'string', ], 'MaxItems' => [ 'shape' => 'integer', ], 'IsTruncated' => [ 'shape' => 'boolean', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'DistributionSummaryList', ], ], ], 'DistributionNotDisabled' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'DistributionSummary' => [ 'type' => 'structure', 'required' => [ 'Id', 'ARN', 'Status', 'LastModifiedTime', 'DomainName', 'Aliases', 'Origins', 'DefaultCacheBehavior', 'CacheBehaviors', 'CustomErrorResponses', 'Comment', 'PriceClass', 'Enabled', 'ViewerCertificate', 'Restrictions', 'WebACLId', 'HttpVersion', 'IsIPV6Enabled', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'ARN' => [ 'shape' => 'string', ], 'Status' => [ 'shape' => 'string', ], 'LastModifiedTime' => [ 'shape' => 'timestamp', ], 'DomainName' => [ 'shape' => 'string', ], 'Aliases' => [ 'shape' => 'Aliases', ], 'Origins' => [ 'shape' => 'Origins', ], 'DefaultCacheBehavior' => [ 'shape' => 'DefaultCacheBehavior', ], 'CacheBehaviors' => [ 'shape' => 'CacheBehaviors', ], 'CustomErrorResponses' => [ 'shape' => 'CustomErrorResponses', ], 'Comment' => [ 'shape' => 'string', ], 'PriceClass' => [ 'shape' => 'PriceClass', ], 'Enabled' => [ 'shape' => 'boolean', ], 'ViewerCertificate' => [ 'shape' => 'ViewerCertificate', ], 'Restrictions' => [ 'shape' => 'Restrictions', ], 'WebACLId' => [ 'shape' => 'string', ], 'HttpVersion' => [ 'shape' => 'HttpVersion', ], 'IsIPV6Enabled' => [ 'shape' => 'boolean', ], ], ], 'DistributionSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DistributionSummary', 'locationName' => 'DistributionSummary', ], ], 'ForwardedValues' => [ 'type' => 'structure', 'required' => [ 'QueryString', 'Cookies', ], 'members' => [ 'QueryString' => [ 'shape' => 'boolean', ], 'Cookies' => [ 'shape' => 'CookiePreference', ], 'Headers' => [ 'shape' => 'Headers', ], 'QueryStringCacheKeys' => [ 'shape' => 'QueryStringCacheKeys', ], ], ], 'GeoRestriction' => [ 'type' => 'structure', 'required' => [ 'RestrictionType', 'Quantity', ], 'members' => [ 'RestrictionType' => [ 'shape' => 'GeoRestrictionType', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'LocationList', ], ], ], 'GeoRestrictionType' => [ 'type' => 'string', 'enum' => [ 'blacklist', 'whitelist', 'none', ], ], 'GetCloudFrontOriginAccessIdentityConfigRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetCloudFrontOriginAccessIdentityConfigResult' => [ 'type' => 'structure', 'members' => [ 'CloudFrontOriginAccessIdentityConfig' => [ 'shape' => 'CloudFrontOriginAccessIdentityConfig', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'CloudFrontOriginAccessIdentityConfig', ], 'GetCloudFrontOriginAccessIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetCloudFrontOriginAccessIdentityResult' => [ 'type' => 'structure', 'members' => [ 'CloudFrontOriginAccessIdentity' => [ 'shape' => 'CloudFrontOriginAccessIdentity', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'CloudFrontOriginAccessIdentity', ], 'GetDistributionConfigRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetDistributionConfigResult' => [ 'type' => 'structure', 'members' => [ 'DistributionConfig' => [ 'shape' => 'DistributionConfig', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'DistributionConfig', ], 'GetDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetDistributionResult' => [ 'type' => 'structure', 'members' => [ 'Distribution' => [ 'shape' => 'Distribution', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'Distribution', ], 'GetInvalidationRequest' => [ 'type' => 'structure', 'required' => [ 'DistributionId', 'Id', ], 'members' => [ 'DistributionId' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'DistributionId', ], 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetInvalidationResult' => [ 'type' => 'structure', 'members' => [ 'Invalidation' => [ 'shape' => 'Invalidation', ], ], 'payload' => 'Invalidation', ], 'GetStreamingDistributionConfigRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetStreamingDistributionConfigResult' => [ 'type' => 'structure', 'members' => [ 'StreamingDistributionConfig' => [ 'shape' => 'StreamingDistributionConfig', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'StreamingDistributionConfig', ], 'GetStreamingDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetStreamingDistributionResult' => [ 'type' => 'structure', 'members' => [ 'StreamingDistribution' => [ 'shape' => 'StreamingDistribution', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'StreamingDistribution', ], 'HeaderList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'Name', ], ], 'Headers' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'HeaderList', ], ], ], 'HttpVersion' => [ 'type' => 'string', 'enum' => [ 'http1.1', 'http2', ], ], 'IllegalUpdate' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InconsistentQuantities' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidArgument' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidDefaultRootObject' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidErrorCode' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidForwardCookies' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidGeoRestrictionParameter' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidHeadersForS3Origin' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidIfMatchVersion' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidLocationCode' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidMinimumProtocolVersion' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidOrigin' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidOriginAccessIdentity' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidProtocolSettings' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidQueryStringParameters' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidRelativePath' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidRequiredProtocol' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidResponseCode' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidTTLOrder' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidTagging' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidViewerCertificate' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidWebACLId' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'Invalidation' => [ 'type' => 'structure', 'required' => [ 'Id', 'Status', 'CreateTime', 'InvalidationBatch', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'Status' => [ 'shape' => 'string', ], 'CreateTime' => [ 'shape' => 'timestamp', ], 'InvalidationBatch' => [ 'shape' => 'InvalidationBatch', ], ], ], 'InvalidationBatch' => [ 'type' => 'structure', 'required' => [ 'Paths', 'CallerReference', ], 'members' => [ 'Paths' => [ 'shape' => 'Paths', ], 'CallerReference' => [ 'shape' => 'string', ], ], ], 'InvalidationList' => [ 'type' => 'structure', 'required' => [ 'Marker', 'MaxItems', 'IsTruncated', 'Quantity', ], 'members' => [ 'Marker' => [ 'shape' => 'string', ], 'NextMarker' => [ 'shape' => 'string', ], 'MaxItems' => [ 'shape' => 'integer', ], 'IsTruncated' => [ 'shape' => 'boolean', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'InvalidationSummaryList', ], ], ], 'InvalidationSummary' => [ 'type' => 'structure', 'required' => [ 'Id', 'CreateTime', 'Status', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'CreateTime' => [ 'shape' => 'timestamp', ], 'Status' => [ 'shape' => 'string', ], ], ], 'InvalidationSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InvalidationSummary', 'locationName' => 'InvalidationSummary', ], ], 'ItemSelection' => [ 'type' => 'string', 'enum' => [ 'none', 'whitelist', 'all', ], ], 'KeyPairIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'KeyPairId', ], ], 'KeyPairIds' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'KeyPairIdList', ], ], ], 'ListCloudFrontOriginAccessIdentitiesRequest' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'Marker', ], 'MaxItems' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'MaxItems', ], ], ], 'ListCloudFrontOriginAccessIdentitiesResult' => [ 'type' => 'structure', 'members' => [ 'CloudFrontOriginAccessIdentityList' => [ 'shape' => 'CloudFrontOriginAccessIdentityList', ], ], 'payload' => 'CloudFrontOriginAccessIdentityList', ], 'ListDistributionsByWebACLIdRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLId', ], 'members' => [ 'Marker' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'Marker', ], 'MaxItems' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'MaxItems', ], 'WebACLId' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'WebACLId', ], ], ], 'ListDistributionsByWebACLIdResult' => [ 'type' => 'structure', 'members' => [ 'DistributionList' => [ 'shape' => 'DistributionList', ], ], 'payload' => 'DistributionList', ], 'ListDistributionsRequest' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'Marker', ], 'MaxItems' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'MaxItems', ], ], ], 'ListDistributionsResult' => [ 'type' => 'structure', 'members' => [ 'DistributionList' => [ 'shape' => 'DistributionList', ], ], 'payload' => 'DistributionList', ], 'ListInvalidationsRequest' => [ 'type' => 'structure', 'required' => [ 'DistributionId', ], 'members' => [ 'DistributionId' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'DistributionId', ], 'Marker' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'Marker', ], 'MaxItems' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'MaxItems', ], ], ], 'ListInvalidationsResult' => [ 'type' => 'structure', 'members' => [ 'InvalidationList' => [ 'shape' => 'InvalidationList', ], ], 'payload' => 'InvalidationList', ], 'ListStreamingDistributionsRequest' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'Marker', ], 'MaxItems' => [ 'shape' => 'string', 'location' => 'querystring', 'locationName' => 'MaxItems', ], ], ], 'ListStreamingDistributionsResult' => [ 'type' => 'structure', 'members' => [ 'StreamingDistributionList' => [ 'shape' => 'StreamingDistributionList', ], ], 'payload' => 'StreamingDistributionList', ], 'ListTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'Resource', ], 'members' => [ 'Resource' => [ 'shape' => 'ResourceARN', 'location' => 'querystring', 'locationName' => 'Resource', ], ], ], 'ListTagsForResourceResult' => [ 'type' => 'structure', 'required' => [ 'Tags', ], 'members' => [ 'Tags' => [ 'shape' => 'Tags', ], ], 'payload' => 'Tags', ], 'LocationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'Location', ], ], 'LoggingConfig' => [ 'type' => 'structure', 'required' => [ 'Enabled', 'IncludeCookies', 'Bucket', 'Prefix', ], 'members' => [ 'Enabled' => [ 'shape' => 'boolean', ], 'IncludeCookies' => [ 'shape' => 'boolean', ], 'Bucket' => [ 'shape' => 'string', ], 'Prefix' => [ 'shape' => 'string', ], ], ], 'Method' => [ 'type' => 'string', 'enum' => [ 'GET', 'HEAD', 'POST', 'PUT', 'PATCH', 'OPTIONS', 'DELETE', ], ], 'MethodsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Method', 'locationName' => 'Method', ], ], 'MinimumProtocolVersion' => [ 'type' => 'string', 'enum' => [ 'SSLv3', 'TLSv1', ], ], 'MissingBody' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'NoSuchCloudFrontOriginAccessIdentity' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchDistribution' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchInvalidation' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchOrigin' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchResource' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchStreamingDistribution' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'Origin' => [ 'type' => 'structure', 'required' => [ 'Id', 'DomainName', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'DomainName' => [ 'shape' => 'string', ], 'OriginPath' => [ 'shape' => 'string', ], 'CustomHeaders' => [ 'shape' => 'CustomHeaders', ], 'S3OriginConfig' => [ 'shape' => 'S3OriginConfig', ], 'CustomOriginConfig' => [ 'shape' => 'CustomOriginConfig', ], ], ], 'OriginCustomHeader' => [ 'type' => 'structure', 'required' => [ 'HeaderName', 'HeaderValue', ], 'members' => [ 'HeaderName' => [ 'shape' => 'string', ], 'HeaderValue' => [ 'shape' => 'string', ], ], ], 'OriginCustomHeadersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OriginCustomHeader', 'locationName' => 'OriginCustomHeader', ], ], 'OriginList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Origin', 'locationName' => 'Origin', ], 'min' => 1, ], 'OriginProtocolPolicy' => [ 'type' => 'string', 'enum' => [ 'http-only', 'match-viewer', 'https-only', ], ], 'OriginSslProtocols' => [ 'type' => 'structure', 'required' => [ 'Quantity', 'Items', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'SslProtocolsList', ], ], ], 'Origins' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'OriginList', ], ], ], 'PathList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'Path', ], ], 'Paths' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'PathList', ], ], ], 'PreconditionFailed' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 412, ], 'exception' => true, ], 'PriceClass' => [ 'type' => 'string', 'enum' => [ 'PriceClass_100', 'PriceClass_200', 'PriceClass_All', ], ], 'QueryStringCacheKeys' => [ 'type' => 'structure', 'required' => [ 'Quantity', ], 'members' => [ 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'QueryStringCacheKeysList', ], ], ], 'QueryStringCacheKeysList' => [ 'type' => 'list', 'member' => [ 'shape' => 'string', 'locationName' => 'Name', ], ], 'ResourceARN' => [ 'type' => 'string', 'pattern' => 'arn:aws:cloudfront::[0-9]+:.*', ], 'Restrictions' => [ 'type' => 'structure', 'required' => [ 'GeoRestriction', ], 'members' => [ 'GeoRestriction' => [ 'shape' => 'GeoRestriction', ], ], ], 'S3Origin' => [ 'type' => 'structure', 'required' => [ 'DomainName', 'OriginAccessIdentity', ], 'members' => [ 'DomainName' => [ 'shape' => 'string', ], 'OriginAccessIdentity' => [ 'shape' => 'string', ], ], ], 'S3OriginConfig' => [ 'type' => 'structure', 'required' => [ 'OriginAccessIdentity', ], 'members' => [ 'OriginAccessIdentity' => [ 'shape' => 'string', ], ], ], 'SSLSupportMethod' => [ 'type' => 'string', 'enum' => [ 'sni-only', 'vip', ], ], 'Signer' => [ 'type' => 'structure', 'members' => [ 'AwsAccountNumber' => [ 'shape' => 'string', ], 'KeyPairIds' => [ 'shape' => 'KeyPairIds', ], ], ], 'SignerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Signer', 'locationName' => 'Signer', ], ], 'SslProtocol' => [ 'type' => 'string', 'enum' => [ 'SSLv3', 'TLSv1', 'TLSv1.1', 'TLSv1.2', ], ], 'SslProtocolsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SslProtocol', 'locationName' => 'SslProtocol', ], ], 'StreamingDistribution' => [ 'type' => 'structure', 'required' => [ 'Id', 'ARN', 'Status', 'DomainName', 'ActiveTrustedSigners', 'StreamingDistributionConfig', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'ARN' => [ 'shape' => 'string', ], 'Status' => [ 'shape' => 'string', ], 'LastModifiedTime' => [ 'shape' => 'timestamp', ], 'DomainName' => [ 'shape' => 'string', ], 'ActiveTrustedSigners' => [ 'shape' => 'ActiveTrustedSigners', ], 'StreamingDistributionConfig' => [ 'shape' => 'StreamingDistributionConfig', ], ], ], 'StreamingDistributionAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'StreamingDistributionConfig' => [ 'type' => 'structure', 'required' => [ 'CallerReference', 'S3Origin', 'Comment', 'TrustedSigners', 'Enabled', ], 'members' => [ 'CallerReference' => [ 'shape' => 'string', ], 'S3Origin' => [ 'shape' => 'S3Origin', ], 'Aliases' => [ 'shape' => 'Aliases', ], 'Comment' => [ 'shape' => 'string', ], 'Logging' => [ 'shape' => 'StreamingLoggingConfig', ], 'TrustedSigners' => [ 'shape' => 'TrustedSigners', ], 'PriceClass' => [ 'shape' => 'PriceClass', ], 'Enabled' => [ 'shape' => 'boolean', ], ], ], 'StreamingDistributionConfigWithTags' => [ 'type' => 'structure', 'required' => [ 'StreamingDistributionConfig', 'Tags', ], 'members' => [ 'StreamingDistributionConfig' => [ 'shape' => 'StreamingDistributionConfig', ], 'Tags' => [ 'shape' => 'Tags', ], ], ], 'StreamingDistributionList' => [ 'type' => 'structure', 'required' => [ 'Marker', 'MaxItems', 'IsTruncated', 'Quantity', ], 'members' => [ 'Marker' => [ 'shape' => 'string', ], 'NextMarker' => [ 'shape' => 'string', ], 'MaxItems' => [ 'shape' => 'integer', ], 'IsTruncated' => [ 'shape' => 'boolean', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'StreamingDistributionSummaryList', ], ], ], 'StreamingDistributionNotDisabled' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'StreamingDistributionSummary' => [ 'type' => 'structure', 'required' => [ 'Id', 'ARN', 'Status', 'LastModifiedTime', 'DomainName', 'S3Origin', 'Aliases', 'TrustedSigners', 'Comment', 'PriceClass', 'Enabled', ], 'members' => [ 'Id' => [ 'shape' => 'string', ], 'ARN' => [ 'shape' => 'string', ], 'Status' => [ 'shape' => 'string', ], 'LastModifiedTime' => [ 'shape' => 'timestamp', ], 'DomainName' => [ 'shape' => 'string', ], 'S3Origin' => [ 'shape' => 'S3Origin', ], 'Aliases' => [ 'shape' => 'Aliases', ], 'TrustedSigners' => [ 'shape' => 'TrustedSigners', ], 'Comment' => [ 'shape' => 'string', ], 'PriceClass' => [ 'shape' => 'PriceClass', ], 'Enabled' => [ 'shape' => 'boolean', ], ], ], 'StreamingDistributionSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'StreamingDistributionSummary', 'locationName' => 'StreamingDistributionSummary', ], ], 'StreamingLoggingConfig' => [ 'type' => 'structure', 'required' => [ 'Enabled', 'Bucket', 'Prefix', ], 'members' => [ 'Enabled' => [ 'shape' => 'boolean', ], 'Bucket' => [ 'shape' => 'string', ], 'Prefix' => [ 'shape' => 'string', ], ], ], 'Tag' => [ 'type' => 'structure', 'required' => [ 'Key', ], 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'TagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagKey', 'locationName' => 'Key', ], ], 'TagKeys' => [ 'type' => 'structure', 'members' => [ 'Items' => [ 'shape' => 'TagKeyList', ], ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], ], 'TagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'Resource', 'Tags', ], 'members' => [ 'Resource' => [ 'shape' => 'ResourceARN', 'location' => 'querystring', 'locationName' => 'Resource', ], 'Tags' => [ 'shape' => 'Tags', 'locationName' => 'Tags', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-29/', ], ], ], 'payload' => 'Tags', ], 'TagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 0, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'Tags' => [ 'type' => 'structure', 'members' => [ 'Items' => [ 'shape' => 'TagList', ], ], ], 'TooManyCacheBehaviors' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyCertificates' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyCloudFrontOriginAccessIdentities' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyCookieNamesInWhiteList' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyDistributionCNAMEs' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyDistributions' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyHeadersInForwardedValues' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyInvalidationsInProgress' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyOriginCustomHeaders' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyOrigins' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyQueryStringParameters' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyStreamingDistributionCNAMEs' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyStreamingDistributions' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyTrustedSigners' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TrustedSignerDoesNotExist' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'string', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TrustedSigners' => [ 'type' => 'structure', 'required' => [ 'Enabled', 'Quantity', ], 'members' => [ 'Enabled' => [ 'shape' => 'boolean', ], 'Quantity' => [ 'shape' => 'integer', ], 'Items' => [ 'shape' => 'AwsAccountNumberList', ], ], ], 'UntagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'Resource', 'TagKeys', ], 'members' => [ 'Resource' => [ 'shape' => 'ResourceARN', 'location' => 'querystring', 'locationName' => 'Resource', ], 'TagKeys' => [ 'shape' => 'TagKeys', 'locationName' => 'TagKeys', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-29/', ], ], ], 'payload' => 'TagKeys', ], 'UpdateCloudFrontOriginAccessIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'CloudFrontOriginAccessIdentityConfig', 'Id', ], 'members' => [ 'CloudFrontOriginAccessIdentityConfig' => [ 'shape' => 'CloudFrontOriginAccessIdentityConfig', 'locationName' => 'CloudFrontOriginAccessIdentityConfig', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-29/', ], ], 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], 'IfMatch' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'If-Match', ], ], 'payload' => 'CloudFrontOriginAccessIdentityConfig', ], 'UpdateCloudFrontOriginAccessIdentityResult' => [ 'type' => 'structure', 'members' => [ 'CloudFrontOriginAccessIdentity' => [ 'shape' => 'CloudFrontOriginAccessIdentity', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'CloudFrontOriginAccessIdentity', ], 'UpdateDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'DistributionConfig', 'Id', ], 'members' => [ 'DistributionConfig' => [ 'shape' => 'DistributionConfig', 'locationName' => 'DistributionConfig', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-29/', ], ], 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], 'IfMatch' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'If-Match', ], ], 'payload' => 'DistributionConfig', ], 'UpdateDistributionResult' => [ 'type' => 'structure', 'members' => [ 'Distribution' => [ 'shape' => 'Distribution', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'Distribution', ], 'UpdateStreamingDistributionRequest' => [ 'type' => 'structure', 'required' => [ 'StreamingDistributionConfig', 'Id', ], 'members' => [ 'StreamingDistributionConfig' => [ 'shape' => 'StreamingDistributionConfig', 'locationName' => 'StreamingDistributionConfig', 'xmlNamespace' => [ 'uri' => 'http://cloudfront.amazonaws.com/doc/2016-09-29/', ], ], 'Id' => [ 'shape' => 'string', 'location' => 'uri', 'locationName' => 'Id', ], 'IfMatch' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'If-Match', ], ], 'payload' => 'StreamingDistributionConfig', ], 'UpdateStreamingDistributionResult' => [ 'type' => 'structure', 'members' => [ 'StreamingDistribution' => [ 'shape' => 'StreamingDistribution', ], 'ETag' => [ 'shape' => 'string', 'location' => 'header', 'locationName' => 'ETag', ], ], 'payload' => 'StreamingDistribution', ], 'ViewerCertificate' => [ 'type' => 'structure', 'members' => [ 'CloudFrontDefaultCertificate' => [ 'shape' => 'boolean', ], 'IAMCertificateId' => [ 'shape' => 'string', ], 'ACMCertificateArn' => [ 'shape' => 'string', ], 'SSLSupportMethod' => [ 'shape' => 'SSLSupportMethod', ], 'MinimumProtocolVersion' => [ 'shape' => 'MinimumProtocolVersion', ], 'Certificate' => [ 'shape' => 'string', 'deprecated' => true, ], 'CertificateSource' => [ 'shape' => 'CertificateSource', 'deprecated' => true, ], ], ], 'ViewerProtocolPolicy' => [ 'type' => 'string', 'enum' => [ 'allow-all', 'https-only', 'redirect-to-https', ], ], 'boolean' => [ 'type' => 'boolean', ], 'integer' => [ 'type' => 'integer', ], 'long' => [ 'type' => 'long', ], 'string' => [ 'type' => 'string', ], 'timestamp' => [ 'type' => 'timestamp', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/paginators-1.json.php new file mode 100644 index 000000000..28cc066d8 --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/paginators-1.json.php @@ -0,0 +1,3 @@ + [ 'ListCloudFrontOriginAccessIdentities' => [ 'input_token' => 'Marker', 'output_token' => 'CloudFrontOriginAccessIdentityList.NextMarker', 'limit_key' => 'MaxItems', 'more_results' => 'CloudFrontOriginAccessIdentityList.IsTruncated', 'result_key' => 'CloudFrontOriginAccessIdentityList.Items', ], 'ListDistributions' => [ 'input_token' => 'Marker', 'output_token' => 'DistributionList.NextMarker', 'limit_key' => 'MaxItems', 'more_results' => 'DistributionList.IsTruncated', 'result_key' => 'DistributionList.Items', ], 'ListInvalidations' => [ 'input_token' => 'Marker', 'output_token' => 'InvalidationList.NextMarker', 'limit_key' => 'MaxItems', 'more_results' => 'InvalidationList.IsTruncated', 'result_key' => 'InvalidationList.Items', ], 'ListStreamingDistributions' => [ 'input_token' => 'Marker', 'output_token' => 'StreamingDistributionList.NextMarker', 'limit_key' => 'MaxItems', 'more_results' => 'StreamingDistributionList.IsTruncated', 'result_key' => 'StreamingDistributionList.Items', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/waiters-1.json.php new file mode 100644 index 000000000..1f2ba5b4b --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/waiters-1.json.php @@ -0,0 +1,3 @@ + [ '__default__' => [ 'success_type' => 'output', 'success_path' => 'Status', ], 'StreamingDistributionDeployed' => [ 'operation' => 'GetStreamingDistribution', 'description' => 'Wait until a streaming distribution is deployed.', 'interval' => 60, 'max_attempts' => 25, 'success_value' => 'Deployed', ], 'DistributionDeployed' => [ 'operation' => 'GetDistribution', 'description' => 'Wait until a distribution is deployed.', 'interval' => 60, 'max_attempts' => 25, 'success_value' => 'Deployed', ], 'InvalidationCompleted' => [ 'operation' => 'GetInvalidation', 'description' => 'Wait until an invalidation has completed.', 'interval' => 20, 'max_attempts' => 30, 'success_value' => 'Completed', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/waiters-2.json.php new file mode 100644 index 000000000..216b139dd --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/waiters-2.json.php @@ -0,0 +1,3 @@ + 2, 'waiters' => [ 'DistributionDeployed' => [ 'delay' => 60, 'operation' => 'GetDistribution', 'maxAttempts' => 25, 'description' => 'Wait until a distribution is deployed.', 'acceptors' => [ [ 'expected' => 'Deployed', 'matcher' => 'path', 'state' => 'success', 'argument' => 'Distribution.Status', ], ], ], 'InvalidationCompleted' => [ 'delay' => 20, 'operation' => 'GetInvalidation', 'maxAttempts' => 30, 'description' => 'Wait until an invalidation has completed.', 'acceptors' => [ [ 'expected' => 'Completed', 'matcher' => 'path', 'state' => 'success', 'argument' => 'Invalidation.Status', ], ], ], 'StreamingDistributionDeployed' => [ 'delay' => 60, 'operation' => 'GetStreamingDistribution', 'maxAttempts' => 25, 'description' => 'Wait until a streaming distribution is deployed.', 'acceptors' => [ [ 'expected' => 'Deployed', 'matcher' => 'path', 'state' => 'success', 'argument' => 'StreamingDistribution.Status', ], ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/api-2.json.php index 15ba94708..33b219f21 100644 --- a/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2014-10-06', 'endpointPrefix' => 'codedeploy', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'CodeDeploy', 'serviceFullName' => 'AWS CodeDeploy', 'signatureVersion' => 'v4', 'targetPrefix' => 'CodeDeploy_20141006', 'timestampFormat' => 'unixTimestamp', ], 'operations' => [ 'AddTagsToOnPremisesInstances' => [ 'name' => 'AddTagsToOnPremisesInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddTagsToOnPremisesInstancesInput', ], 'errors' => [ [ 'shape' => 'InstanceNameRequiredException', ], [ 'shape' => 'TagRequiredException', ], [ 'shape' => 'InvalidTagException', ], [ 'shape' => 'TagLimitExceededException', ], [ 'shape' => 'InstanceLimitExceededException', ], [ 'shape' => 'InstanceNotRegisteredException', ], ], ], 'BatchGetApplicationRevisions' => [ 'name' => 'BatchGetApplicationRevisions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetApplicationRevisionsInput', ], 'output' => [ 'shape' => 'BatchGetApplicationRevisionsOutput', ], 'errors' => [ [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'RevisionRequiredException', ], [ 'shape' => 'InvalidRevisionException', ], [ 'shape' => 'BatchLimitExceededException', ], ], ], 'BatchGetApplications' => [ 'name' => 'BatchGetApplications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetApplicationsInput', ], 'output' => [ 'shape' => 'BatchGetApplicationsOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'BatchLimitExceededException', ], ], ], 'BatchGetDeploymentGroups' => [ 'name' => 'BatchGetDeploymentGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetDeploymentGroupsInput', ], 'output' => [ 'shape' => 'BatchGetDeploymentGroupsOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'BatchLimitExceededException', ], ], ], 'BatchGetDeploymentInstances' => [ 'name' => 'BatchGetDeploymentInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetDeploymentInstancesInput', ], 'output' => [ 'shape' => 'BatchGetDeploymentInstancesOutput', ], 'errors' => [ [ 'shape' => 'DeploymentIdRequiredException', ], [ 'shape' => 'DeploymentDoesNotExistException', ], [ 'shape' => 'InstanceIdRequiredException', ], [ 'shape' => 'InvalidDeploymentIdException', ], [ 'shape' => 'InvalidInstanceNameException', ], [ 'shape' => 'BatchLimitExceededException', ], ], ], 'BatchGetDeployments' => [ 'name' => 'BatchGetDeployments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetDeploymentsInput', ], 'output' => [ 'shape' => 'BatchGetDeploymentsOutput', ], 'errors' => [ [ 'shape' => 'DeploymentIdRequiredException', ], [ 'shape' => 'InvalidDeploymentIdException', ], [ 'shape' => 'BatchLimitExceededException', ], ], ], 'BatchGetOnPremisesInstances' => [ 'name' => 'BatchGetOnPremisesInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetOnPremisesInstancesInput', ], 'output' => [ 'shape' => 'BatchGetOnPremisesInstancesOutput', ], 'errors' => [ [ 'shape' => 'InstanceNameRequiredException', ], [ 'shape' => 'InvalidInstanceNameException', ], [ 'shape' => 'BatchLimitExceededException', ], ], ], 'CreateApplication' => [ 'name' => 'CreateApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateApplicationInput', ], 'output' => [ 'shape' => 'CreateApplicationOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationAlreadyExistsException', ], [ 'shape' => 'ApplicationLimitExceededException', ], ], ], 'CreateDeployment' => [ 'name' => 'CreateDeployment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDeploymentInput', ], 'output' => [ 'shape' => 'CreateDeploymentOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'DeploymentGroupDoesNotExistException', ], [ 'shape' => 'RevisionRequiredException', ], [ 'shape' => 'InvalidRevisionException', ], [ 'shape' => 'InvalidDeploymentConfigNameException', ], [ 'shape' => 'DeploymentConfigDoesNotExistException', ], [ 'shape' => 'DescriptionTooLongException', ], [ 'shape' => 'DeploymentLimitExceededException', ], ], ], 'CreateDeploymentConfig' => [ 'name' => 'CreateDeploymentConfig', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDeploymentConfigInput', ], 'output' => [ 'shape' => 'CreateDeploymentConfigOutput', ], 'errors' => [ [ 'shape' => 'InvalidDeploymentConfigNameException', ], [ 'shape' => 'DeploymentConfigNameRequiredException', ], [ 'shape' => 'DeploymentConfigAlreadyExistsException', ], [ 'shape' => 'InvalidMinimumHealthyHostValueException', ], [ 'shape' => 'DeploymentConfigLimitExceededException', ], ], ], 'CreateDeploymentGroup' => [ 'name' => 'CreateDeploymentGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDeploymentGroupInput', ], 'output' => [ 'shape' => 'CreateDeploymentGroupOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'DeploymentGroupAlreadyExistsException', ], [ 'shape' => 'InvalidEC2TagException', ], [ 'shape' => 'InvalidTagException', ], [ 'shape' => 'InvalidAutoScalingGroupException', ], [ 'shape' => 'InvalidDeploymentConfigNameException', ], [ 'shape' => 'DeploymentConfigDoesNotExistException', ], [ 'shape' => 'RoleRequiredException', ], [ 'shape' => 'InvalidRoleException', ], [ 'shape' => 'DeploymentGroupLimitExceededException', ], [ 'shape' => 'LifecycleHookLimitExceededException', ], [ 'shape' => 'InvalidTriggerConfigException', ], [ 'shape' => 'TriggerTargetsLimitExceededException', ], ], ], 'DeleteApplication' => [ 'name' => 'DeleteApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteApplicationInput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], ], ], 'DeleteDeploymentConfig' => [ 'name' => 'DeleteDeploymentConfig', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDeploymentConfigInput', ], 'errors' => [ [ 'shape' => 'InvalidDeploymentConfigNameException', ], [ 'shape' => 'DeploymentConfigNameRequiredException', ], [ 'shape' => 'DeploymentConfigInUseException', ], [ 'shape' => 'InvalidOperationException', ], ], ], 'DeleteDeploymentGroup' => [ 'name' => 'DeleteDeploymentGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDeploymentGroupInput', ], 'output' => [ 'shape' => 'DeleteDeploymentGroupOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'InvalidRoleException', ], ], ], 'DeregisterOnPremisesInstance' => [ 'name' => 'DeregisterOnPremisesInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeregisterOnPremisesInstanceInput', ], 'errors' => [ [ 'shape' => 'InstanceNameRequiredException', ], [ 'shape' => 'InvalidInstanceNameException', ], ], ], 'GetApplication' => [ 'name' => 'GetApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetApplicationInput', ], 'output' => [ 'shape' => 'GetApplicationOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], ], ], 'GetApplicationRevision' => [ 'name' => 'GetApplicationRevision', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetApplicationRevisionInput', ], 'output' => [ 'shape' => 'GetApplicationRevisionOutput', ], 'errors' => [ [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'RevisionDoesNotExistException', ], [ 'shape' => 'RevisionRequiredException', ], [ 'shape' => 'InvalidRevisionException', ], ], ], 'GetDeployment' => [ 'name' => 'GetDeployment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDeploymentInput', ], 'output' => [ 'shape' => 'GetDeploymentOutput', ], 'errors' => [ [ 'shape' => 'DeploymentIdRequiredException', ], [ 'shape' => 'InvalidDeploymentIdException', ], [ 'shape' => 'DeploymentDoesNotExistException', ], ], ], 'GetDeploymentConfig' => [ 'name' => 'GetDeploymentConfig', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDeploymentConfigInput', ], 'output' => [ 'shape' => 'GetDeploymentConfigOutput', ], 'errors' => [ [ 'shape' => 'InvalidDeploymentConfigNameException', ], [ 'shape' => 'DeploymentConfigNameRequiredException', ], [ 'shape' => 'DeploymentConfigDoesNotExistException', ], ], ], 'GetDeploymentGroup' => [ 'name' => 'GetDeploymentGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDeploymentGroupInput', ], 'output' => [ 'shape' => 'GetDeploymentGroupOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'DeploymentGroupDoesNotExistException', ], ], ], 'GetDeploymentInstance' => [ 'name' => 'GetDeploymentInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDeploymentInstanceInput', ], 'output' => [ 'shape' => 'GetDeploymentInstanceOutput', ], 'errors' => [ [ 'shape' => 'DeploymentIdRequiredException', ], [ 'shape' => 'DeploymentDoesNotExistException', ], [ 'shape' => 'InstanceIdRequiredException', ], [ 'shape' => 'InvalidDeploymentIdException', ], [ 'shape' => 'InstanceDoesNotExistException', ], [ 'shape' => 'InvalidInstanceNameException', ], ], ], 'GetOnPremisesInstance' => [ 'name' => 'GetOnPremisesInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetOnPremisesInstanceInput', ], 'output' => [ 'shape' => 'GetOnPremisesInstanceOutput', ], 'errors' => [ [ 'shape' => 'InstanceNameRequiredException', ], [ 'shape' => 'InstanceNotRegisteredException', ], [ 'shape' => 'InvalidInstanceNameException', ], ], ], 'ListApplicationRevisions' => [ 'name' => 'ListApplicationRevisions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListApplicationRevisionsInput', ], 'output' => [ 'shape' => 'ListApplicationRevisionsOutput', ], 'errors' => [ [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'InvalidSortByException', ], [ 'shape' => 'InvalidSortOrderException', ], [ 'shape' => 'InvalidBucketNameFilterException', ], [ 'shape' => 'InvalidKeyPrefixFilterException', ], [ 'shape' => 'BucketNameFilterRequiredException', ], [ 'shape' => 'InvalidDeployedStateFilterException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'ListApplications' => [ 'name' => 'ListApplications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListApplicationsInput', ], 'output' => [ 'shape' => 'ListApplicationsOutput', ], 'errors' => [ [ 'shape' => 'InvalidNextTokenException', ], ], ], 'ListDeploymentConfigs' => [ 'name' => 'ListDeploymentConfigs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListDeploymentConfigsInput', ], 'output' => [ 'shape' => 'ListDeploymentConfigsOutput', ], 'errors' => [ [ 'shape' => 'InvalidNextTokenException', ], ], ], 'ListDeploymentGroups' => [ 'name' => 'ListDeploymentGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListDeploymentGroupsInput', ], 'output' => [ 'shape' => 'ListDeploymentGroupsOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'ListDeploymentInstances' => [ 'name' => 'ListDeploymentInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListDeploymentInstancesInput', ], 'output' => [ 'shape' => 'ListDeploymentInstancesOutput', ], 'errors' => [ [ 'shape' => 'DeploymentIdRequiredException', ], [ 'shape' => 'DeploymentDoesNotExistException', ], [ 'shape' => 'DeploymentNotStartedException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'InvalidDeploymentIdException', ], [ 'shape' => 'InvalidInstanceStatusException', ], ], ], 'ListDeployments' => [ 'name' => 'ListDeployments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListDeploymentsInput', ], 'output' => [ 'shape' => 'ListDeploymentsOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'DeploymentGroupDoesNotExistException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'InvalidTimeRangeException', ], [ 'shape' => 'InvalidDeploymentStatusException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'ListOnPremisesInstances' => [ 'name' => 'ListOnPremisesInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListOnPremisesInstancesInput', ], 'output' => [ 'shape' => 'ListOnPremisesInstancesOutput', ], 'errors' => [ [ 'shape' => 'InvalidRegistrationStatusException', ], [ 'shape' => 'InvalidTagFilterException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'RegisterApplicationRevision' => [ 'name' => 'RegisterApplicationRevision', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterApplicationRevisionInput', ], 'errors' => [ [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'DescriptionTooLongException', ], [ 'shape' => 'RevisionRequiredException', ], [ 'shape' => 'InvalidRevisionException', ], ], ], 'RegisterOnPremisesInstance' => [ 'name' => 'RegisterOnPremisesInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterOnPremisesInstanceInput', ], 'errors' => [ [ 'shape' => 'InstanceNameAlreadyRegisteredException', ], [ 'shape' => 'IamUserArnAlreadyRegisteredException', ], [ 'shape' => 'InstanceNameRequiredException', ], [ 'shape' => 'IamUserArnRequiredException', ], [ 'shape' => 'InvalidInstanceNameException', ], [ 'shape' => 'InvalidIamUserArnException', ], ], ], 'RemoveTagsFromOnPremisesInstances' => [ 'name' => 'RemoveTagsFromOnPremisesInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveTagsFromOnPremisesInstancesInput', ], 'errors' => [ [ 'shape' => 'InstanceNameRequiredException', ], [ 'shape' => 'TagRequiredException', ], [ 'shape' => 'InvalidTagException', ], [ 'shape' => 'TagLimitExceededException', ], [ 'shape' => 'InstanceLimitExceededException', ], [ 'shape' => 'InstanceNotRegisteredException', ], ], ], 'StopDeployment' => [ 'name' => 'StopDeployment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopDeploymentInput', ], 'output' => [ 'shape' => 'StopDeploymentOutput', ], 'errors' => [ [ 'shape' => 'DeploymentIdRequiredException', ], [ 'shape' => 'DeploymentDoesNotExistException', ], [ 'shape' => 'DeploymentAlreadyCompletedException', ], [ 'shape' => 'InvalidDeploymentIdException', ], ], ], 'UpdateApplication' => [ 'name' => 'UpdateApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateApplicationInput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationAlreadyExistsException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], ], ], 'UpdateDeploymentGroup' => [ 'name' => 'UpdateDeploymentGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateDeploymentGroupInput', ], 'output' => [ 'shape' => 'UpdateDeploymentGroupOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'DeploymentGroupAlreadyExistsException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'DeploymentGroupDoesNotExistException', ], [ 'shape' => 'InvalidEC2TagException', ], [ 'shape' => 'InvalidTagException', ], [ 'shape' => 'InvalidAutoScalingGroupException', ], [ 'shape' => 'InvalidDeploymentConfigNameException', ], [ 'shape' => 'DeploymentConfigDoesNotExistException', ], [ 'shape' => 'InvalidRoleException', ], [ 'shape' => 'LifecycleHookLimitExceededException', ], [ 'shape' => 'InvalidTriggerConfigException', ], [ 'shape' => 'TriggerTargetsLimitExceededException', ], ], ], ], 'shapes' => [ 'AddTagsToOnPremisesInstancesInput' => [ 'type' => 'structure', 'required' => [ 'tags', 'instanceNames', ], 'members' => [ 'tags' => [ 'shape' => 'TagList', ], 'instanceNames' => [ 'shape' => 'InstanceNameList', ], ], ], 'ApplicationAlreadyExistsException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ApplicationDoesNotExistException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ApplicationId' => [ 'type' => 'string', ], 'ApplicationInfo' => [ 'type' => 'structure', 'members' => [ 'applicationId' => [ 'shape' => 'ApplicationId', ], 'applicationName' => [ 'shape' => 'ApplicationName', ], 'createTime' => [ 'shape' => 'Timestamp', ], 'linkedToGitHub' => [ 'shape' => 'Boolean', ], ], ], 'ApplicationLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ApplicationName' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'ApplicationNameRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ApplicationRevisionSortBy' => [ 'type' => 'string', 'enum' => [ 'registerTime', 'firstUsedTime', 'lastUsedTime', ], ], 'ApplicationsInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApplicationInfo', ], ], 'ApplicationsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApplicationName', ], ], 'AutoScalingGroup' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'AutoScalingGroupName', ], 'hook' => [ 'shape' => 'AutoScalingGroupHook', ], ], ], 'AutoScalingGroupHook' => [ 'type' => 'string', ], 'AutoScalingGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AutoScalingGroup', ], ], 'AutoScalingGroupName' => [ 'type' => 'string', ], 'AutoScalingGroupNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AutoScalingGroupName', ], ], 'BatchGetApplicationRevisionsInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'revisions', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'revisions' => [ 'shape' => 'RevisionLocationList', ], ], ], 'BatchGetApplicationRevisionsOutput' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'errorMessage' => [ 'shape' => 'ErrorMessage', ], 'revisions' => [ 'shape' => 'RevisionInfoList', ], ], ], 'BatchGetApplicationsInput' => [ 'type' => 'structure', 'members' => [ 'applicationNames' => [ 'shape' => 'ApplicationsList', ], ], ], 'BatchGetApplicationsOutput' => [ 'type' => 'structure', 'members' => [ 'applicationsInfo' => [ 'shape' => 'ApplicationsInfoList', ], ], ], 'BatchGetDeploymentGroupsInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'deploymentGroupNames', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupNames' => [ 'shape' => 'DeploymentGroupsList', ], ], ], 'BatchGetDeploymentGroupsOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentGroupsInfo' => [ 'shape' => 'DeploymentGroupInfoList', ], 'errorMessage' => [ 'shape' => 'ErrorMessage', ], ], ], 'BatchGetDeploymentInstancesInput' => [ 'type' => 'structure', 'required' => [ 'deploymentId', 'instanceIds', ], 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], 'instanceIds' => [ 'shape' => 'InstancesList', ], ], ], 'BatchGetDeploymentInstancesOutput' => [ 'type' => 'structure', 'members' => [ 'instancesSummary' => [ 'shape' => 'InstanceSummaryList', ], 'errorMessage' => [ 'shape' => 'ErrorMessage', ], ], ], 'BatchGetDeploymentsInput' => [ 'type' => 'structure', 'members' => [ 'deploymentIds' => [ 'shape' => 'DeploymentsList', ], ], ], 'BatchGetDeploymentsOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentsInfo' => [ 'shape' => 'DeploymentsInfoList', ], ], ], 'BatchGetOnPremisesInstancesInput' => [ 'type' => 'structure', 'members' => [ 'instanceNames' => [ 'shape' => 'InstanceNameList', ], ], ], 'BatchGetOnPremisesInstancesOutput' => [ 'type' => 'structure', 'members' => [ 'instanceInfos' => [ 'shape' => 'InstanceInfoList', ], ], ], 'BatchLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'Boolean' => [ 'type' => 'boolean', ], 'BucketNameFilterRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'BundleType' => [ 'type' => 'string', 'enum' => [ 'tar', 'tgz', 'zip', ], ], 'CommitId' => [ 'type' => 'string', ], 'CreateApplicationInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'CreateApplicationOutput' => [ 'type' => 'structure', 'members' => [ 'applicationId' => [ 'shape' => 'ApplicationId', ], ], ], 'CreateDeploymentConfigInput' => [ 'type' => 'structure', 'required' => [ 'deploymentConfigName', ], 'members' => [ 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'minimumHealthyHosts' => [ 'shape' => 'MinimumHealthyHosts', ], ], ], 'CreateDeploymentConfigOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentConfigId' => [ 'shape' => 'DeploymentConfigId', ], ], ], 'CreateDeploymentGroupInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'deploymentGroupName', 'serviceRoleArn', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'ec2TagFilters' => [ 'shape' => 'EC2TagFilterList', ], 'onPremisesInstanceTagFilters' => [ 'shape' => 'TagFilterList', ], 'autoScalingGroups' => [ 'shape' => 'AutoScalingGroupNameList', ], 'serviceRoleArn' => [ 'shape' => 'Role', ], 'triggerConfigurations' => [ 'shape' => 'TriggerConfigList', ], ], ], 'CreateDeploymentGroupOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentGroupId' => [ 'shape' => 'DeploymentGroupId', ], ], ], 'CreateDeploymentInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'revision' => [ 'shape' => 'RevisionLocation', ], 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'description' => [ 'shape' => 'Description', ], 'ignoreApplicationStopFailures' => [ 'shape' => 'Boolean', ], ], ], 'CreateDeploymentOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], ], ], 'DeleteApplicationInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'DeleteDeploymentConfigInput' => [ 'type' => 'structure', 'required' => [ 'deploymentConfigName', ], 'members' => [ 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], ], ], 'DeleteDeploymentGroupInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'deploymentGroupName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], ], ], 'DeleteDeploymentGroupOutput' => [ 'type' => 'structure', 'members' => [ 'hooksNotCleanedUp' => [ 'shape' => 'AutoScalingGroupList', ], ], ], 'DeploymentAlreadyCompletedException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentConfigAlreadyExistsException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentConfigDoesNotExistException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentConfigId' => [ 'type' => 'string', ], 'DeploymentConfigInUseException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentConfigInfo' => [ 'type' => 'structure', 'members' => [ 'deploymentConfigId' => [ 'shape' => 'DeploymentConfigId', ], 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'minimumHealthyHosts' => [ 'shape' => 'MinimumHealthyHosts', ], 'createTime' => [ 'shape' => 'Timestamp', ], ], ], 'DeploymentConfigLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentConfigName' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'DeploymentConfigNameRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentConfigsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeploymentConfigName', ], ], 'DeploymentCreator' => [ 'type' => 'string', 'enum' => [ 'user', 'autoscaling', ], ], 'DeploymentDoesNotExistException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentGroupAlreadyExistsException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentGroupDoesNotExistException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentGroupId' => [ 'type' => 'string', ], 'DeploymentGroupInfo' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupId' => [ 'shape' => 'DeploymentGroupId', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'ec2TagFilters' => [ 'shape' => 'EC2TagFilterList', ], 'onPremisesInstanceTagFilters' => [ 'shape' => 'TagFilterList', ], 'autoScalingGroups' => [ 'shape' => 'AutoScalingGroupList', ], 'serviceRoleArn' => [ 'shape' => 'Role', ], 'targetRevision' => [ 'shape' => 'RevisionLocation', ], 'triggerConfigurations' => [ 'shape' => 'TriggerConfigList', ], ], ], 'DeploymentGroupInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeploymentGroupInfo', ], ], 'DeploymentGroupLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentGroupName' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'DeploymentGroupNameRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentGroupsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeploymentGroupName', ], ], 'DeploymentId' => [ 'type' => 'string', ], 'DeploymentIdRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentInfo' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'deploymentId' => [ 'shape' => 'DeploymentId', ], 'revision' => [ 'shape' => 'RevisionLocation', ], 'status' => [ 'shape' => 'DeploymentStatus', ], 'errorInformation' => [ 'shape' => 'ErrorInformation', ], 'createTime' => [ 'shape' => 'Timestamp', ], 'startTime' => [ 'shape' => 'Timestamp', ], 'completeTime' => [ 'shape' => 'Timestamp', ], 'deploymentOverview' => [ 'shape' => 'DeploymentOverview', ], 'description' => [ 'shape' => 'Description', ], 'creator' => [ 'shape' => 'DeploymentCreator', ], 'ignoreApplicationStopFailures' => [ 'shape' => 'Boolean', ], ], ], 'DeploymentLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentNotStartedException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentOverview' => [ 'type' => 'structure', 'members' => [ 'Pending' => [ 'shape' => 'InstanceCount', ], 'InProgress' => [ 'shape' => 'InstanceCount', ], 'Succeeded' => [ 'shape' => 'InstanceCount', ], 'Failed' => [ 'shape' => 'InstanceCount', ], 'Skipped' => [ 'shape' => 'InstanceCount', ], ], ], 'DeploymentStatus' => [ 'type' => 'string', 'enum' => [ 'Created', 'Queued', 'InProgress', 'Succeeded', 'Failed', 'Stopped', ], ], 'DeploymentStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeploymentStatus', ], ], 'DeploymentsInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeploymentInfo', ], ], 'DeploymentsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeploymentId', ], ], 'DeregisterOnPremisesInstanceInput' => [ 'type' => 'structure', 'required' => [ 'instanceName', ], 'members' => [ 'instanceName' => [ 'shape' => 'InstanceName', ], ], ], 'Description' => [ 'type' => 'string', ], 'DescriptionTooLongException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'Diagnostics' => [ 'type' => 'structure', 'members' => [ 'errorCode' => [ 'shape' => 'LifecycleErrorCode', ], 'scriptName' => [ 'shape' => 'ScriptName', ], 'message' => [ 'shape' => 'LifecycleMessage', ], 'logTail' => [ 'shape' => 'LogTail', ], ], ], 'EC2TagFilter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'Key', ], 'Value' => [ 'shape' => 'Value', ], 'Type' => [ 'shape' => 'EC2TagFilterType', ], ], ], 'EC2TagFilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EC2TagFilter', ], ], 'EC2TagFilterType' => [ 'type' => 'string', 'enum' => [ 'KEY_ONLY', 'VALUE_ONLY', 'KEY_AND_VALUE', ], ], 'ETag' => [ 'type' => 'string', ], 'ErrorCode' => [ 'type' => 'string', 'enum' => [ 'DEPLOYMENT_GROUP_MISSING', 'APPLICATION_MISSING', 'REVISION_MISSING', 'IAM_ROLE_MISSING', 'IAM_ROLE_PERMISSIONS', 'NO_EC2_SUBSCRIPTION', 'OVER_MAX_INSTANCES', 'NO_INSTANCES', 'TIMEOUT', 'HEALTH_CONSTRAINTS_INVALID', 'HEALTH_CONSTRAINTS', 'INTERNAL_ERROR', 'THROTTLED', ], ], 'ErrorInformation' => [ 'type' => 'structure', 'members' => [ 'code' => [ 'shape' => 'ErrorCode', ], 'message' => [ 'shape' => 'ErrorMessage', ], ], ], 'ErrorMessage' => [ 'type' => 'string', ], 'GenericRevisionInfo' => [ 'type' => 'structure', 'members' => [ 'description' => [ 'shape' => 'Description', ], 'deploymentGroups' => [ 'shape' => 'DeploymentGroupsList', ], 'firstUsedTime' => [ 'shape' => 'Timestamp', ], 'lastUsedTime' => [ 'shape' => 'Timestamp', ], 'registerTime' => [ 'shape' => 'Timestamp', ], ], ], 'GetApplicationInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'GetApplicationOutput' => [ 'type' => 'structure', 'members' => [ 'application' => [ 'shape' => 'ApplicationInfo', ], ], ], 'GetApplicationRevisionInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'revision', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'revision' => [ 'shape' => 'RevisionLocation', ], ], ], 'GetApplicationRevisionOutput' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'revision' => [ 'shape' => 'RevisionLocation', ], 'revisionInfo' => [ 'shape' => 'GenericRevisionInfo', ], ], ], 'GetDeploymentConfigInput' => [ 'type' => 'structure', 'required' => [ 'deploymentConfigName', ], 'members' => [ 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], ], ], 'GetDeploymentConfigOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentConfigInfo' => [ 'shape' => 'DeploymentConfigInfo', ], ], ], 'GetDeploymentGroupInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'deploymentGroupName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], ], ], 'GetDeploymentGroupOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentGroupInfo' => [ 'shape' => 'DeploymentGroupInfo', ], ], ], 'GetDeploymentInput' => [ 'type' => 'structure', 'required' => [ 'deploymentId', ], 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], ], ], 'GetDeploymentInstanceInput' => [ 'type' => 'structure', 'required' => [ 'deploymentId', 'instanceId', ], 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], 'instanceId' => [ 'shape' => 'InstanceId', ], ], ], 'GetDeploymentInstanceOutput' => [ 'type' => 'structure', 'members' => [ 'instanceSummary' => [ 'shape' => 'InstanceSummary', ], ], ], 'GetDeploymentOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentInfo' => [ 'shape' => 'DeploymentInfo', ], ], ], 'GetOnPremisesInstanceInput' => [ 'type' => 'structure', 'required' => [ 'instanceName', ], 'members' => [ 'instanceName' => [ 'shape' => 'InstanceName', ], ], ], 'GetOnPremisesInstanceOutput' => [ 'type' => 'structure', 'members' => [ 'instanceInfo' => [ 'shape' => 'InstanceInfo', ], ], ], 'GitHubLocation' => [ 'type' => 'structure', 'members' => [ 'repository' => [ 'shape' => 'Repository', ], 'commitId' => [ 'shape' => 'CommitId', ], ], ], 'IamUserArn' => [ 'type' => 'string', ], 'IamUserArnAlreadyRegisteredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'IamUserArnRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceArn' => [ 'type' => 'string', ], 'InstanceCount' => [ 'type' => 'long', ], 'InstanceDoesNotExistException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceId' => [ 'type' => 'string', ], 'InstanceIdRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceInfo' => [ 'type' => 'structure', 'members' => [ 'instanceName' => [ 'shape' => 'InstanceName', ], 'iamUserArn' => [ 'shape' => 'IamUserArn', ], 'instanceArn' => [ 'shape' => 'InstanceArn', ], 'registerTime' => [ 'shape' => 'Timestamp', ], 'deregisterTime' => [ 'shape' => 'Timestamp', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'InstanceInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceInfo', ], ], 'InstanceLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceName' => [ 'type' => 'string', ], 'InstanceNameAlreadyRegisteredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceName', ], ], 'InstanceNameRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceNotRegisteredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceStatus' => [ 'type' => 'string', 'enum' => [ 'Pending', 'InProgress', 'Succeeded', 'Failed', 'Skipped', 'Unknown', ], ], 'InstanceStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStatus', ], ], 'InstanceSummary' => [ 'type' => 'structure', 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], 'instanceId' => [ 'shape' => 'InstanceId', ], 'status' => [ 'shape' => 'InstanceStatus', ], 'lastUpdatedAt' => [ 'shape' => 'Timestamp', ], 'lifecycleEvents' => [ 'shape' => 'LifecycleEventList', ], ], ], 'InstanceSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceSummary', ], ], 'InstancesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', ], ], 'InvalidApplicationNameException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidAutoScalingGroupException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidBucketNameFilterException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidDeployedStateFilterException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidDeploymentConfigNameException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidDeploymentGroupNameException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidDeploymentIdException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidDeploymentStatusException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidEC2TagException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidIamUserArnException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidInstanceNameException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidInstanceStatusException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidKeyPrefixFilterException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidMinimumHealthyHostValueException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidNextTokenException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidOperationException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidRegistrationStatusException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidRevisionException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidRoleException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidSortByException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidSortOrderException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidTagException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidTagFilterException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidTimeRangeException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidTriggerConfigException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'Key' => [ 'type' => 'string', ], 'LifecycleErrorCode' => [ 'type' => 'string', 'enum' => [ 'Success', 'ScriptMissing', 'ScriptNotExecutable', 'ScriptTimedOut', 'ScriptFailed', 'UnknownError', ], ], 'LifecycleEvent' => [ 'type' => 'structure', 'members' => [ 'lifecycleEventName' => [ 'shape' => 'LifecycleEventName', ], 'diagnostics' => [ 'shape' => 'Diagnostics', ], 'startTime' => [ 'shape' => 'Timestamp', ], 'endTime' => [ 'shape' => 'Timestamp', ], 'status' => [ 'shape' => 'LifecycleEventStatus', ], ], ], 'LifecycleEventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LifecycleEvent', ], ], 'LifecycleEventName' => [ 'type' => 'string', ], 'LifecycleEventStatus' => [ 'type' => 'string', 'enum' => [ 'Pending', 'InProgress', 'Succeeded', 'Failed', 'Skipped', 'Unknown', ], ], 'LifecycleHookLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'LifecycleMessage' => [ 'type' => 'string', ], 'ListApplicationRevisionsInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'sortBy' => [ 'shape' => 'ApplicationRevisionSortBy', ], 'sortOrder' => [ 'shape' => 'SortOrder', ], 's3Bucket' => [ 'shape' => 'S3Bucket', ], 's3KeyPrefix' => [ 'shape' => 'S3Key', ], 'deployed' => [ 'shape' => 'ListStateFilterAction', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListApplicationRevisionsOutput' => [ 'type' => 'structure', 'members' => [ 'revisions' => [ 'shape' => 'RevisionLocationList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListApplicationsInput' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListApplicationsOutput' => [ 'type' => 'structure', 'members' => [ 'applications' => [ 'shape' => 'ApplicationsList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentConfigsInput' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentConfigsOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentConfigsList' => [ 'shape' => 'DeploymentConfigsList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentGroupsInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentGroupsOutput' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroups' => [ 'shape' => 'DeploymentGroupsList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentInstancesInput' => [ 'type' => 'structure', 'required' => [ 'deploymentId', ], 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'instanceStatusFilter' => [ 'shape' => 'InstanceStatusList', ], ], ], 'ListDeploymentInstancesOutput' => [ 'type' => 'structure', 'members' => [ 'instancesList' => [ 'shape' => 'InstancesList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentsInput' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'includeOnlyStatuses' => [ 'shape' => 'DeploymentStatusList', ], 'createTimeRange' => [ 'shape' => 'TimeRange', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentsOutput' => [ 'type' => 'structure', 'members' => [ 'deployments' => [ 'shape' => 'DeploymentsList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListOnPremisesInstancesInput' => [ 'type' => 'structure', 'members' => [ 'registrationStatus' => [ 'shape' => 'RegistrationStatus', ], 'tagFilters' => [ 'shape' => 'TagFilterList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListOnPremisesInstancesOutput' => [ 'type' => 'structure', 'members' => [ 'instanceNames' => [ 'shape' => 'InstanceNameList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListStateFilterAction' => [ 'type' => 'string', 'enum' => [ 'include', 'exclude', 'ignore', ], ], 'LogTail' => [ 'type' => 'string', ], 'Message' => [ 'type' => 'string', ], 'MinimumHealthyHosts' => [ 'type' => 'structure', 'members' => [ 'value' => [ 'shape' => 'MinimumHealthyHostsValue', ], 'type' => [ 'shape' => 'MinimumHealthyHostsType', ], ], ], 'MinimumHealthyHostsType' => [ 'type' => 'string', 'enum' => [ 'HOST_COUNT', 'FLEET_PERCENT', ], ], 'MinimumHealthyHostsValue' => [ 'type' => 'integer', ], 'NextToken' => [ 'type' => 'string', ], 'RegisterApplicationRevisionInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'revision', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'description' => [ 'shape' => 'Description', ], 'revision' => [ 'shape' => 'RevisionLocation', ], ], ], 'RegisterOnPremisesInstanceInput' => [ 'type' => 'structure', 'required' => [ 'instanceName', 'iamUserArn', ], 'members' => [ 'instanceName' => [ 'shape' => 'InstanceName', ], 'iamUserArn' => [ 'shape' => 'IamUserArn', ], ], ], 'RegistrationStatus' => [ 'type' => 'string', 'enum' => [ 'Registered', 'Deregistered', ], ], 'RemoveTagsFromOnPremisesInstancesInput' => [ 'type' => 'structure', 'required' => [ 'tags', 'instanceNames', ], 'members' => [ 'tags' => [ 'shape' => 'TagList', ], 'instanceNames' => [ 'shape' => 'InstanceNameList', ], ], ], 'Repository' => [ 'type' => 'string', ], 'RevisionDoesNotExistException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'RevisionInfo' => [ 'type' => 'structure', 'members' => [ 'revisionLocation' => [ 'shape' => 'RevisionLocation', ], 'genericRevisionInfo' => [ 'shape' => 'GenericRevisionInfo', ], ], ], 'RevisionInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RevisionInfo', ], ], 'RevisionLocation' => [ 'type' => 'structure', 'members' => [ 'revisionType' => [ 'shape' => 'RevisionLocationType', ], 's3Location' => [ 'shape' => 'S3Location', ], 'gitHubLocation' => [ 'shape' => 'GitHubLocation', ], ], ], 'RevisionLocationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RevisionLocation', ], ], 'RevisionLocationType' => [ 'type' => 'string', 'enum' => [ 'S3', 'GitHub', ], ], 'RevisionRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'Role' => [ 'type' => 'string', ], 'RoleRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'S3Bucket' => [ 'type' => 'string', ], 'S3Key' => [ 'type' => 'string', ], 'S3Location' => [ 'type' => 'structure', 'members' => [ 'bucket' => [ 'shape' => 'S3Bucket', ], 'key' => [ 'shape' => 'S3Key', ], 'bundleType' => [ 'shape' => 'BundleType', ], 'version' => [ 'shape' => 'VersionId', ], 'eTag' => [ 'shape' => 'ETag', ], ], ], 'ScriptName' => [ 'type' => 'string', ], 'SortOrder' => [ 'type' => 'string', 'enum' => [ 'ascending', 'descending', ], ], 'StopDeploymentInput' => [ 'type' => 'structure', 'required' => [ 'deploymentId', ], 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], ], ], 'StopDeploymentOutput' => [ 'type' => 'structure', 'members' => [ 'status' => [ 'shape' => 'StopStatus', ], 'statusMessage' => [ 'shape' => 'Message', ], ], ], 'StopStatus' => [ 'type' => 'string', 'enum' => [ 'Pending', 'Succeeded', ], ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'Key', ], 'Value' => [ 'shape' => 'Value', ], ], ], 'TagFilter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'Key', ], 'Value' => [ 'shape' => 'Value', ], 'Type' => [ 'shape' => 'TagFilterType', ], ], ], 'TagFilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagFilter', ], ], 'TagFilterType' => [ 'type' => 'string', 'enum' => [ 'KEY_ONLY', 'VALUE_ONLY', 'KEY_AND_VALUE', ], ], 'TagLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], ], 'TagRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'TimeRange' => [ 'type' => 'structure', 'members' => [ 'start' => [ 'shape' => 'Timestamp', ], 'end' => [ 'shape' => 'Timestamp', ], ], ], 'Timestamp' => [ 'type' => 'timestamp', ], 'TriggerConfig' => [ 'type' => 'structure', 'members' => [ 'triggerName' => [ 'shape' => 'TriggerName', ], 'triggerTargetArn' => [ 'shape' => 'TriggerTargetArn', ], 'triggerEvents' => [ 'shape' => 'TriggerEventTypeList', ], ], ], 'TriggerConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TriggerConfig', ], ], 'TriggerEventType' => [ 'type' => 'string', 'enum' => [ 'DeploymentStart', 'DeploymentSuccess', 'DeploymentFailure', 'DeploymentStop', 'InstanceStart', 'InstanceSuccess', 'InstanceFailure', ], ], 'TriggerEventTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TriggerEventType', ], ], 'TriggerName' => [ 'type' => 'string', ], 'TriggerTargetArn' => [ 'type' => 'string', ], 'TriggerTargetsLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'UpdateApplicationInput' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'newApplicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'UpdateDeploymentGroupInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'currentDeploymentGroupName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'currentDeploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'newDeploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'ec2TagFilters' => [ 'shape' => 'EC2TagFilterList', ], 'onPremisesInstanceTagFilters' => [ 'shape' => 'TagFilterList', ], 'autoScalingGroups' => [ 'shape' => 'AutoScalingGroupNameList', ], 'serviceRoleArn' => [ 'shape' => 'Role', ], 'triggerConfigurations' => [ 'shape' => 'TriggerConfigList', ], ], ], 'UpdateDeploymentGroupOutput' => [ 'type' => 'structure', 'members' => [ 'hooksNotCleanedUp' => [ 'shape' => 'AutoScalingGroupList', ], ], ], 'Value' => [ 'type' => 'string', ], 'VersionId' => [ 'type' => 'string', ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2014-10-06', 'endpointPrefix' => 'codedeploy', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'CodeDeploy', 'serviceFullName' => 'AWS CodeDeploy', 'signatureVersion' => 'v4', 'targetPrefix' => 'CodeDeploy_20141006', 'timestampFormat' => 'unixTimestamp', ], 'operations' => [ 'AddTagsToOnPremisesInstances' => [ 'name' => 'AddTagsToOnPremisesInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddTagsToOnPremisesInstancesInput', ], 'errors' => [ [ 'shape' => 'InstanceNameRequiredException', ], [ 'shape' => 'TagRequiredException', ], [ 'shape' => 'InvalidTagException', ], [ 'shape' => 'TagLimitExceededException', ], [ 'shape' => 'InstanceLimitExceededException', ], [ 'shape' => 'InstanceNotRegisteredException', ], ], ], 'BatchGetApplicationRevisions' => [ 'name' => 'BatchGetApplicationRevisions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetApplicationRevisionsInput', ], 'output' => [ 'shape' => 'BatchGetApplicationRevisionsOutput', ], 'errors' => [ [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'RevisionRequiredException', ], [ 'shape' => 'InvalidRevisionException', ], [ 'shape' => 'BatchLimitExceededException', ], ], ], 'BatchGetApplications' => [ 'name' => 'BatchGetApplications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetApplicationsInput', ], 'output' => [ 'shape' => 'BatchGetApplicationsOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'BatchLimitExceededException', ], ], ], 'BatchGetDeploymentGroups' => [ 'name' => 'BatchGetDeploymentGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetDeploymentGroupsInput', ], 'output' => [ 'shape' => 'BatchGetDeploymentGroupsOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'BatchLimitExceededException', ], ], ], 'BatchGetDeploymentInstances' => [ 'name' => 'BatchGetDeploymentInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetDeploymentInstancesInput', ], 'output' => [ 'shape' => 'BatchGetDeploymentInstancesOutput', ], 'errors' => [ [ 'shape' => 'DeploymentIdRequiredException', ], [ 'shape' => 'DeploymentDoesNotExistException', ], [ 'shape' => 'InstanceIdRequiredException', ], [ 'shape' => 'InvalidDeploymentIdException', ], [ 'shape' => 'InvalidInstanceNameException', ], [ 'shape' => 'BatchLimitExceededException', ], ], ], 'BatchGetDeployments' => [ 'name' => 'BatchGetDeployments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetDeploymentsInput', ], 'output' => [ 'shape' => 'BatchGetDeploymentsOutput', ], 'errors' => [ [ 'shape' => 'DeploymentIdRequiredException', ], [ 'shape' => 'InvalidDeploymentIdException', ], [ 'shape' => 'BatchLimitExceededException', ], ], ], 'BatchGetOnPremisesInstances' => [ 'name' => 'BatchGetOnPremisesInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetOnPremisesInstancesInput', ], 'output' => [ 'shape' => 'BatchGetOnPremisesInstancesOutput', ], 'errors' => [ [ 'shape' => 'InstanceNameRequiredException', ], [ 'shape' => 'InvalidInstanceNameException', ], [ 'shape' => 'BatchLimitExceededException', ], ], ], 'CreateApplication' => [ 'name' => 'CreateApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateApplicationInput', ], 'output' => [ 'shape' => 'CreateApplicationOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationAlreadyExistsException', ], [ 'shape' => 'ApplicationLimitExceededException', ], ], ], 'CreateDeployment' => [ 'name' => 'CreateDeployment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDeploymentInput', ], 'output' => [ 'shape' => 'CreateDeploymentOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'DeploymentGroupDoesNotExistException', ], [ 'shape' => 'RevisionRequiredException', ], [ 'shape' => 'RevisionDoesNotExistException', ], [ 'shape' => 'InvalidRevisionException', ], [ 'shape' => 'InvalidDeploymentConfigNameException', ], [ 'shape' => 'DeploymentConfigDoesNotExistException', ], [ 'shape' => 'DescriptionTooLongException', ], [ 'shape' => 'DeploymentLimitExceededException', ], [ 'shape' => 'InvalidAutoRollbackConfigException', ], ], ], 'CreateDeploymentConfig' => [ 'name' => 'CreateDeploymentConfig', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDeploymentConfigInput', ], 'output' => [ 'shape' => 'CreateDeploymentConfigOutput', ], 'errors' => [ [ 'shape' => 'InvalidDeploymentConfigNameException', ], [ 'shape' => 'DeploymentConfigNameRequiredException', ], [ 'shape' => 'DeploymentConfigAlreadyExistsException', ], [ 'shape' => 'InvalidMinimumHealthyHostValueException', ], [ 'shape' => 'DeploymentConfigLimitExceededException', ], ], ], 'CreateDeploymentGroup' => [ 'name' => 'CreateDeploymentGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDeploymentGroupInput', ], 'output' => [ 'shape' => 'CreateDeploymentGroupOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'DeploymentGroupAlreadyExistsException', ], [ 'shape' => 'InvalidEC2TagException', ], [ 'shape' => 'InvalidTagException', ], [ 'shape' => 'InvalidAutoScalingGroupException', ], [ 'shape' => 'InvalidDeploymentConfigNameException', ], [ 'shape' => 'DeploymentConfigDoesNotExistException', ], [ 'shape' => 'RoleRequiredException', ], [ 'shape' => 'InvalidRoleException', ], [ 'shape' => 'DeploymentGroupLimitExceededException', ], [ 'shape' => 'LifecycleHookLimitExceededException', ], [ 'shape' => 'InvalidTriggerConfigException', ], [ 'shape' => 'TriggerTargetsLimitExceededException', ], [ 'shape' => 'InvalidAlarmConfigException', ], [ 'shape' => 'AlarmsLimitExceededException', ], [ 'shape' => 'InvalidAutoRollbackConfigException', ], ], ], 'DeleteApplication' => [ 'name' => 'DeleteApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteApplicationInput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], ], ], 'DeleteDeploymentConfig' => [ 'name' => 'DeleteDeploymentConfig', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDeploymentConfigInput', ], 'errors' => [ [ 'shape' => 'InvalidDeploymentConfigNameException', ], [ 'shape' => 'DeploymentConfigNameRequiredException', ], [ 'shape' => 'DeploymentConfigInUseException', ], [ 'shape' => 'InvalidOperationException', ], ], ], 'DeleteDeploymentGroup' => [ 'name' => 'DeleteDeploymentGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDeploymentGroupInput', ], 'output' => [ 'shape' => 'DeleteDeploymentGroupOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'InvalidRoleException', ], ], ], 'DeregisterOnPremisesInstance' => [ 'name' => 'DeregisterOnPremisesInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeregisterOnPremisesInstanceInput', ], 'errors' => [ [ 'shape' => 'InstanceNameRequiredException', ], [ 'shape' => 'InvalidInstanceNameException', ], ], ], 'GetApplication' => [ 'name' => 'GetApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetApplicationInput', ], 'output' => [ 'shape' => 'GetApplicationOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], ], ], 'GetApplicationRevision' => [ 'name' => 'GetApplicationRevision', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetApplicationRevisionInput', ], 'output' => [ 'shape' => 'GetApplicationRevisionOutput', ], 'errors' => [ [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'RevisionDoesNotExistException', ], [ 'shape' => 'RevisionRequiredException', ], [ 'shape' => 'InvalidRevisionException', ], ], ], 'GetDeployment' => [ 'name' => 'GetDeployment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDeploymentInput', ], 'output' => [ 'shape' => 'GetDeploymentOutput', ], 'errors' => [ [ 'shape' => 'DeploymentIdRequiredException', ], [ 'shape' => 'InvalidDeploymentIdException', ], [ 'shape' => 'DeploymentDoesNotExistException', ], ], ], 'GetDeploymentConfig' => [ 'name' => 'GetDeploymentConfig', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDeploymentConfigInput', ], 'output' => [ 'shape' => 'GetDeploymentConfigOutput', ], 'errors' => [ [ 'shape' => 'InvalidDeploymentConfigNameException', ], [ 'shape' => 'DeploymentConfigNameRequiredException', ], [ 'shape' => 'DeploymentConfigDoesNotExistException', ], ], ], 'GetDeploymentGroup' => [ 'name' => 'GetDeploymentGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDeploymentGroupInput', ], 'output' => [ 'shape' => 'GetDeploymentGroupOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'DeploymentGroupDoesNotExistException', ], ], ], 'GetDeploymentInstance' => [ 'name' => 'GetDeploymentInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDeploymentInstanceInput', ], 'output' => [ 'shape' => 'GetDeploymentInstanceOutput', ], 'errors' => [ [ 'shape' => 'DeploymentIdRequiredException', ], [ 'shape' => 'DeploymentDoesNotExistException', ], [ 'shape' => 'InstanceIdRequiredException', ], [ 'shape' => 'InvalidDeploymentIdException', ], [ 'shape' => 'InstanceDoesNotExistException', ], [ 'shape' => 'InvalidInstanceNameException', ], ], ], 'GetOnPremisesInstance' => [ 'name' => 'GetOnPremisesInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetOnPremisesInstanceInput', ], 'output' => [ 'shape' => 'GetOnPremisesInstanceOutput', ], 'errors' => [ [ 'shape' => 'InstanceNameRequiredException', ], [ 'shape' => 'InstanceNotRegisteredException', ], [ 'shape' => 'InvalidInstanceNameException', ], ], ], 'ListApplicationRevisions' => [ 'name' => 'ListApplicationRevisions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListApplicationRevisionsInput', ], 'output' => [ 'shape' => 'ListApplicationRevisionsOutput', ], 'errors' => [ [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'InvalidSortByException', ], [ 'shape' => 'InvalidSortOrderException', ], [ 'shape' => 'InvalidBucketNameFilterException', ], [ 'shape' => 'InvalidKeyPrefixFilterException', ], [ 'shape' => 'BucketNameFilterRequiredException', ], [ 'shape' => 'InvalidDeployedStateFilterException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'ListApplications' => [ 'name' => 'ListApplications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListApplicationsInput', ], 'output' => [ 'shape' => 'ListApplicationsOutput', ], 'errors' => [ [ 'shape' => 'InvalidNextTokenException', ], ], ], 'ListDeploymentConfigs' => [ 'name' => 'ListDeploymentConfigs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListDeploymentConfigsInput', ], 'output' => [ 'shape' => 'ListDeploymentConfigsOutput', ], 'errors' => [ [ 'shape' => 'InvalidNextTokenException', ], ], ], 'ListDeploymentGroups' => [ 'name' => 'ListDeploymentGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListDeploymentGroupsInput', ], 'output' => [ 'shape' => 'ListDeploymentGroupsOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'ListDeploymentInstances' => [ 'name' => 'ListDeploymentInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListDeploymentInstancesInput', ], 'output' => [ 'shape' => 'ListDeploymentInstancesOutput', ], 'errors' => [ [ 'shape' => 'DeploymentIdRequiredException', ], [ 'shape' => 'DeploymentDoesNotExistException', ], [ 'shape' => 'DeploymentNotStartedException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'InvalidDeploymentIdException', ], [ 'shape' => 'InvalidInstanceStatusException', ], ], ], 'ListDeployments' => [ 'name' => 'ListDeployments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListDeploymentsInput', ], 'output' => [ 'shape' => 'ListDeploymentsOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'DeploymentGroupDoesNotExistException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'InvalidTimeRangeException', ], [ 'shape' => 'InvalidDeploymentStatusException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'ListOnPremisesInstances' => [ 'name' => 'ListOnPremisesInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListOnPremisesInstancesInput', ], 'output' => [ 'shape' => 'ListOnPremisesInstancesOutput', ], 'errors' => [ [ 'shape' => 'InvalidRegistrationStatusException', ], [ 'shape' => 'InvalidTagFilterException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'RegisterApplicationRevision' => [ 'name' => 'RegisterApplicationRevision', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterApplicationRevisionInput', ], 'errors' => [ [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'DescriptionTooLongException', ], [ 'shape' => 'RevisionRequiredException', ], [ 'shape' => 'InvalidRevisionException', ], ], ], 'RegisterOnPremisesInstance' => [ 'name' => 'RegisterOnPremisesInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterOnPremisesInstanceInput', ], 'errors' => [ [ 'shape' => 'InstanceNameAlreadyRegisteredException', ], [ 'shape' => 'IamUserArnAlreadyRegisteredException', ], [ 'shape' => 'InstanceNameRequiredException', ], [ 'shape' => 'IamUserArnRequiredException', ], [ 'shape' => 'InvalidInstanceNameException', ], [ 'shape' => 'InvalidIamUserArnException', ], ], ], 'RemoveTagsFromOnPremisesInstances' => [ 'name' => 'RemoveTagsFromOnPremisesInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveTagsFromOnPremisesInstancesInput', ], 'errors' => [ [ 'shape' => 'InstanceNameRequiredException', ], [ 'shape' => 'TagRequiredException', ], [ 'shape' => 'InvalidTagException', ], [ 'shape' => 'TagLimitExceededException', ], [ 'shape' => 'InstanceLimitExceededException', ], [ 'shape' => 'InstanceNotRegisteredException', ], ], ], 'StopDeployment' => [ 'name' => 'StopDeployment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopDeploymentInput', ], 'output' => [ 'shape' => 'StopDeploymentOutput', ], 'errors' => [ [ 'shape' => 'DeploymentIdRequiredException', ], [ 'shape' => 'DeploymentDoesNotExistException', ], [ 'shape' => 'DeploymentAlreadyCompletedException', ], [ 'shape' => 'InvalidDeploymentIdException', ], ], ], 'UpdateApplication' => [ 'name' => 'UpdateApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateApplicationInput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationAlreadyExistsException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], ], ], 'UpdateDeploymentGroup' => [ 'name' => 'UpdateDeploymentGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateDeploymentGroupInput', ], 'output' => [ 'shape' => 'UpdateDeploymentGroupOutput', ], 'errors' => [ [ 'shape' => 'ApplicationNameRequiredException', ], [ 'shape' => 'InvalidApplicationNameException', ], [ 'shape' => 'ApplicationDoesNotExistException', ], [ 'shape' => 'InvalidDeploymentGroupNameException', ], [ 'shape' => 'DeploymentGroupAlreadyExistsException', ], [ 'shape' => 'DeploymentGroupNameRequiredException', ], [ 'shape' => 'DeploymentGroupDoesNotExistException', ], [ 'shape' => 'InvalidEC2TagException', ], [ 'shape' => 'InvalidTagException', ], [ 'shape' => 'InvalidAutoScalingGroupException', ], [ 'shape' => 'InvalidDeploymentConfigNameException', ], [ 'shape' => 'DeploymentConfigDoesNotExistException', ], [ 'shape' => 'InvalidRoleException', ], [ 'shape' => 'LifecycleHookLimitExceededException', ], [ 'shape' => 'InvalidTriggerConfigException', ], [ 'shape' => 'TriggerTargetsLimitExceededException', ], [ 'shape' => 'InvalidAlarmConfigException', ], [ 'shape' => 'AlarmsLimitExceededException', ], [ 'shape' => 'InvalidAutoRollbackConfigException', ], ], ], ], 'shapes' => [ 'AddTagsToOnPremisesInstancesInput' => [ 'type' => 'structure', 'required' => [ 'tags', 'instanceNames', ], 'members' => [ 'tags' => [ 'shape' => 'TagList', ], 'instanceNames' => [ 'shape' => 'InstanceNameList', ], ], ], 'Alarm' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'AlarmName', ], ], ], 'AlarmConfiguration' => [ 'type' => 'structure', 'members' => [ 'enabled' => [ 'shape' => 'Boolean', ], 'ignorePollAlarmFailure' => [ 'shape' => 'Boolean', ], 'alarms' => [ 'shape' => 'AlarmList', ], ], ], 'AlarmList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Alarm', ], ], 'AlarmName' => [ 'type' => 'string', ], 'AlarmsLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ApplicationAlreadyExistsException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ApplicationDoesNotExistException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ApplicationId' => [ 'type' => 'string', ], 'ApplicationInfo' => [ 'type' => 'structure', 'members' => [ 'applicationId' => [ 'shape' => 'ApplicationId', ], 'applicationName' => [ 'shape' => 'ApplicationName', ], 'createTime' => [ 'shape' => 'Timestamp', ], 'linkedToGitHub' => [ 'shape' => 'Boolean', ], ], ], 'ApplicationLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ApplicationName' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'ApplicationNameRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ApplicationRevisionSortBy' => [ 'type' => 'string', 'enum' => [ 'registerTime', 'firstUsedTime', 'lastUsedTime', ], ], 'ApplicationsInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApplicationInfo', ], ], 'ApplicationsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApplicationName', ], ], 'AutoRollbackConfiguration' => [ 'type' => 'structure', 'members' => [ 'enabled' => [ 'shape' => 'Boolean', ], 'events' => [ 'shape' => 'AutoRollbackEventsList', ], ], ], 'AutoRollbackEvent' => [ 'type' => 'string', 'enum' => [ 'DEPLOYMENT_FAILURE', 'DEPLOYMENT_STOP_ON_ALARM', 'DEPLOYMENT_STOP_ON_REQUEST', ], ], 'AutoRollbackEventsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AutoRollbackEvent', ], ], 'AutoScalingGroup' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'AutoScalingGroupName', ], 'hook' => [ 'shape' => 'AutoScalingGroupHook', ], ], ], 'AutoScalingGroupHook' => [ 'type' => 'string', ], 'AutoScalingGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AutoScalingGroup', ], ], 'AutoScalingGroupName' => [ 'type' => 'string', ], 'AutoScalingGroupNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AutoScalingGroupName', ], ], 'BatchGetApplicationRevisionsInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'revisions', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'revisions' => [ 'shape' => 'RevisionLocationList', ], ], ], 'BatchGetApplicationRevisionsOutput' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'errorMessage' => [ 'shape' => 'ErrorMessage', ], 'revisions' => [ 'shape' => 'RevisionInfoList', ], ], ], 'BatchGetApplicationsInput' => [ 'type' => 'structure', 'members' => [ 'applicationNames' => [ 'shape' => 'ApplicationsList', ], ], ], 'BatchGetApplicationsOutput' => [ 'type' => 'structure', 'members' => [ 'applicationsInfo' => [ 'shape' => 'ApplicationsInfoList', ], ], ], 'BatchGetDeploymentGroupsInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'deploymentGroupNames', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupNames' => [ 'shape' => 'DeploymentGroupsList', ], ], ], 'BatchGetDeploymentGroupsOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentGroupsInfo' => [ 'shape' => 'DeploymentGroupInfoList', ], 'errorMessage' => [ 'shape' => 'ErrorMessage', ], ], ], 'BatchGetDeploymentInstancesInput' => [ 'type' => 'structure', 'required' => [ 'deploymentId', 'instanceIds', ], 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], 'instanceIds' => [ 'shape' => 'InstancesList', ], ], ], 'BatchGetDeploymentInstancesOutput' => [ 'type' => 'structure', 'members' => [ 'instancesSummary' => [ 'shape' => 'InstanceSummaryList', ], 'errorMessage' => [ 'shape' => 'ErrorMessage', ], ], ], 'BatchGetDeploymentsInput' => [ 'type' => 'structure', 'members' => [ 'deploymentIds' => [ 'shape' => 'DeploymentsList', ], ], ], 'BatchGetDeploymentsOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentsInfo' => [ 'shape' => 'DeploymentsInfoList', ], ], ], 'BatchGetOnPremisesInstancesInput' => [ 'type' => 'structure', 'members' => [ 'instanceNames' => [ 'shape' => 'InstanceNameList', ], ], ], 'BatchGetOnPremisesInstancesOutput' => [ 'type' => 'structure', 'members' => [ 'instanceInfos' => [ 'shape' => 'InstanceInfoList', ], ], ], 'BatchLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'Boolean' => [ 'type' => 'boolean', ], 'BucketNameFilterRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'BundleType' => [ 'type' => 'string', 'enum' => [ 'tar', 'tgz', 'zip', ], ], 'CommitId' => [ 'type' => 'string', ], 'CreateApplicationInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'CreateApplicationOutput' => [ 'type' => 'structure', 'members' => [ 'applicationId' => [ 'shape' => 'ApplicationId', ], ], ], 'CreateDeploymentConfigInput' => [ 'type' => 'structure', 'required' => [ 'deploymentConfigName', ], 'members' => [ 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'minimumHealthyHosts' => [ 'shape' => 'MinimumHealthyHosts', ], ], ], 'CreateDeploymentConfigOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentConfigId' => [ 'shape' => 'DeploymentConfigId', ], ], ], 'CreateDeploymentGroupInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'deploymentGroupName', 'serviceRoleArn', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'ec2TagFilters' => [ 'shape' => 'EC2TagFilterList', ], 'onPremisesInstanceTagFilters' => [ 'shape' => 'TagFilterList', ], 'autoScalingGroups' => [ 'shape' => 'AutoScalingGroupNameList', ], 'serviceRoleArn' => [ 'shape' => 'Role', ], 'triggerConfigurations' => [ 'shape' => 'TriggerConfigList', ], 'alarmConfiguration' => [ 'shape' => 'AlarmConfiguration', ], 'autoRollbackConfiguration' => [ 'shape' => 'AutoRollbackConfiguration', ], ], ], 'CreateDeploymentGroupOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentGroupId' => [ 'shape' => 'DeploymentGroupId', ], ], ], 'CreateDeploymentInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'revision' => [ 'shape' => 'RevisionLocation', ], 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'description' => [ 'shape' => 'Description', ], 'ignoreApplicationStopFailures' => [ 'shape' => 'Boolean', ], 'autoRollbackConfiguration' => [ 'shape' => 'AutoRollbackConfiguration', ], 'updateOutdatedInstancesOnly' => [ 'shape' => 'Boolean', ], ], ], 'CreateDeploymentOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], ], ], 'DeleteApplicationInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'DeleteDeploymentConfigInput' => [ 'type' => 'structure', 'required' => [ 'deploymentConfigName', ], 'members' => [ 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], ], ], 'DeleteDeploymentGroupInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'deploymentGroupName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], ], ], 'DeleteDeploymentGroupOutput' => [ 'type' => 'structure', 'members' => [ 'hooksNotCleanedUp' => [ 'shape' => 'AutoScalingGroupList', ], ], ], 'DeploymentAlreadyCompletedException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentConfigAlreadyExistsException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentConfigDoesNotExistException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentConfigId' => [ 'type' => 'string', ], 'DeploymentConfigInUseException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentConfigInfo' => [ 'type' => 'structure', 'members' => [ 'deploymentConfigId' => [ 'shape' => 'DeploymentConfigId', ], 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'minimumHealthyHosts' => [ 'shape' => 'MinimumHealthyHosts', ], 'createTime' => [ 'shape' => 'Timestamp', ], ], ], 'DeploymentConfigLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentConfigName' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'DeploymentConfigNameRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentConfigsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeploymentConfigName', ], ], 'DeploymentCreator' => [ 'type' => 'string', 'enum' => [ 'user', 'autoscaling', 'codeDeployRollback', ], ], 'DeploymentDoesNotExistException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentGroupAlreadyExistsException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentGroupDoesNotExistException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentGroupId' => [ 'type' => 'string', ], 'DeploymentGroupInfo' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupId' => [ 'shape' => 'DeploymentGroupId', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'ec2TagFilters' => [ 'shape' => 'EC2TagFilterList', ], 'onPremisesInstanceTagFilters' => [ 'shape' => 'TagFilterList', ], 'autoScalingGroups' => [ 'shape' => 'AutoScalingGroupList', ], 'serviceRoleArn' => [ 'shape' => 'Role', ], 'targetRevision' => [ 'shape' => 'RevisionLocation', ], 'triggerConfigurations' => [ 'shape' => 'TriggerConfigList', ], 'alarmConfiguration' => [ 'shape' => 'AlarmConfiguration', ], 'autoRollbackConfiguration' => [ 'shape' => 'AutoRollbackConfiguration', ], ], ], 'DeploymentGroupInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeploymentGroupInfo', ], ], 'DeploymentGroupLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentGroupName' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'DeploymentGroupNameRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentGroupsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeploymentGroupName', ], ], 'DeploymentId' => [ 'type' => 'string', ], 'DeploymentIdRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentInfo' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'deploymentId' => [ 'shape' => 'DeploymentId', ], 'revision' => [ 'shape' => 'RevisionLocation', ], 'status' => [ 'shape' => 'DeploymentStatus', ], 'errorInformation' => [ 'shape' => 'ErrorInformation', ], 'createTime' => [ 'shape' => 'Timestamp', ], 'startTime' => [ 'shape' => 'Timestamp', ], 'completeTime' => [ 'shape' => 'Timestamp', ], 'deploymentOverview' => [ 'shape' => 'DeploymentOverview', ], 'description' => [ 'shape' => 'Description', ], 'creator' => [ 'shape' => 'DeploymentCreator', ], 'ignoreApplicationStopFailures' => [ 'shape' => 'Boolean', ], 'autoRollbackConfiguration' => [ 'shape' => 'AutoRollbackConfiguration', ], 'updateOutdatedInstancesOnly' => [ 'shape' => 'Boolean', ], 'rollbackInfo' => [ 'shape' => 'RollbackInfo', ], ], ], 'DeploymentLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentNotStartedException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'DeploymentOverview' => [ 'type' => 'structure', 'members' => [ 'Pending' => [ 'shape' => 'InstanceCount', ], 'InProgress' => [ 'shape' => 'InstanceCount', ], 'Succeeded' => [ 'shape' => 'InstanceCount', ], 'Failed' => [ 'shape' => 'InstanceCount', ], 'Skipped' => [ 'shape' => 'InstanceCount', ], ], ], 'DeploymentStatus' => [ 'type' => 'string', 'enum' => [ 'Created', 'Queued', 'InProgress', 'Succeeded', 'Failed', 'Stopped', ], ], 'DeploymentStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeploymentStatus', ], ], 'DeploymentsInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeploymentInfo', ], ], 'DeploymentsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeploymentId', ], ], 'DeregisterOnPremisesInstanceInput' => [ 'type' => 'structure', 'required' => [ 'instanceName', ], 'members' => [ 'instanceName' => [ 'shape' => 'InstanceName', ], ], ], 'Description' => [ 'type' => 'string', ], 'DescriptionTooLongException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'Diagnostics' => [ 'type' => 'structure', 'members' => [ 'errorCode' => [ 'shape' => 'LifecycleErrorCode', ], 'scriptName' => [ 'shape' => 'ScriptName', ], 'message' => [ 'shape' => 'LifecycleMessage', ], 'logTail' => [ 'shape' => 'LogTail', ], ], ], 'EC2TagFilter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'Key', ], 'Value' => [ 'shape' => 'Value', ], 'Type' => [ 'shape' => 'EC2TagFilterType', ], ], ], 'EC2TagFilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EC2TagFilter', ], ], 'EC2TagFilterType' => [ 'type' => 'string', 'enum' => [ 'KEY_ONLY', 'VALUE_ONLY', 'KEY_AND_VALUE', ], ], 'ETag' => [ 'type' => 'string', ], 'ErrorCode' => [ 'type' => 'string', 'enum' => [ 'DEPLOYMENT_GROUP_MISSING', 'APPLICATION_MISSING', 'REVISION_MISSING', 'IAM_ROLE_MISSING', 'IAM_ROLE_PERMISSIONS', 'NO_EC2_SUBSCRIPTION', 'OVER_MAX_INSTANCES', 'NO_INSTANCES', 'TIMEOUT', 'HEALTH_CONSTRAINTS_INVALID', 'HEALTH_CONSTRAINTS', 'INTERNAL_ERROR', 'THROTTLED', 'ALARM_ACTIVE', 'AGENT_ISSUE', 'AUTO_SCALING_IAM_ROLE_PERMISSIONS', 'AUTO_SCALING_CONFIGURATION', 'MANUAL_STOP', ], ], 'ErrorInformation' => [ 'type' => 'structure', 'members' => [ 'code' => [ 'shape' => 'ErrorCode', ], 'message' => [ 'shape' => 'ErrorMessage', ], ], ], 'ErrorMessage' => [ 'type' => 'string', ], 'GenericRevisionInfo' => [ 'type' => 'structure', 'members' => [ 'description' => [ 'shape' => 'Description', ], 'deploymentGroups' => [ 'shape' => 'DeploymentGroupsList', ], 'firstUsedTime' => [ 'shape' => 'Timestamp', ], 'lastUsedTime' => [ 'shape' => 'Timestamp', ], 'registerTime' => [ 'shape' => 'Timestamp', ], ], ], 'GetApplicationInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'GetApplicationOutput' => [ 'type' => 'structure', 'members' => [ 'application' => [ 'shape' => 'ApplicationInfo', ], ], ], 'GetApplicationRevisionInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'revision', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'revision' => [ 'shape' => 'RevisionLocation', ], ], ], 'GetApplicationRevisionOutput' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'revision' => [ 'shape' => 'RevisionLocation', ], 'revisionInfo' => [ 'shape' => 'GenericRevisionInfo', ], ], ], 'GetDeploymentConfigInput' => [ 'type' => 'structure', 'required' => [ 'deploymentConfigName', ], 'members' => [ 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], ], ], 'GetDeploymentConfigOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentConfigInfo' => [ 'shape' => 'DeploymentConfigInfo', ], ], ], 'GetDeploymentGroupInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'deploymentGroupName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], ], ], 'GetDeploymentGroupOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentGroupInfo' => [ 'shape' => 'DeploymentGroupInfo', ], ], ], 'GetDeploymentInput' => [ 'type' => 'structure', 'required' => [ 'deploymentId', ], 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], ], ], 'GetDeploymentInstanceInput' => [ 'type' => 'structure', 'required' => [ 'deploymentId', 'instanceId', ], 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], 'instanceId' => [ 'shape' => 'InstanceId', ], ], ], 'GetDeploymentInstanceOutput' => [ 'type' => 'structure', 'members' => [ 'instanceSummary' => [ 'shape' => 'InstanceSummary', ], ], ], 'GetDeploymentOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentInfo' => [ 'shape' => 'DeploymentInfo', ], ], ], 'GetOnPremisesInstanceInput' => [ 'type' => 'structure', 'required' => [ 'instanceName', ], 'members' => [ 'instanceName' => [ 'shape' => 'InstanceName', ], ], ], 'GetOnPremisesInstanceOutput' => [ 'type' => 'structure', 'members' => [ 'instanceInfo' => [ 'shape' => 'InstanceInfo', ], ], ], 'GitHubLocation' => [ 'type' => 'structure', 'members' => [ 'repository' => [ 'shape' => 'Repository', ], 'commitId' => [ 'shape' => 'CommitId', ], ], ], 'IamUserArn' => [ 'type' => 'string', ], 'IamUserArnAlreadyRegisteredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'IamUserArnRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceArn' => [ 'type' => 'string', ], 'InstanceCount' => [ 'type' => 'long', ], 'InstanceDoesNotExistException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceId' => [ 'type' => 'string', ], 'InstanceIdRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceInfo' => [ 'type' => 'structure', 'members' => [ 'instanceName' => [ 'shape' => 'InstanceName', ], 'iamUserArn' => [ 'shape' => 'IamUserArn', ], 'instanceArn' => [ 'shape' => 'InstanceArn', ], 'registerTime' => [ 'shape' => 'Timestamp', ], 'deregisterTime' => [ 'shape' => 'Timestamp', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'InstanceInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceInfo', ], ], 'InstanceLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceName' => [ 'type' => 'string', ], 'InstanceNameAlreadyRegisteredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceName', ], ], 'InstanceNameRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceNotRegisteredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InstanceStatus' => [ 'type' => 'string', 'enum' => [ 'Pending', 'InProgress', 'Succeeded', 'Failed', 'Skipped', 'Unknown', ], ], 'InstanceStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStatus', ], ], 'InstanceSummary' => [ 'type' => 'structure', 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], 'instanceId' => [ 'shape' => 'InstanceId', ], 'status' => [ 'shape' => 'InstanceStatus', ], 'lastUpdatedAt' => [ 'shape' => 'Timestamp', ], 'lifecycleEvents' => [ 'shape' => 'LifecycleEventList', ], ], ], 'InstanceSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceSummary', ], ], 'InstancesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', ], ], 'InvalidAlarmConfigException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidApplicationNameException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidAutoRollbackConfigException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidAutoScalingGroupException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidBucketNameFilterException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidDeployedStateFilterException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidDeploymentConfigNameException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidDeploymentGroupNameException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidDeploymentIdException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidDeploymentStatusException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidEC2TagException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidIamUserArnException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidInstanceNameException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidInstanceStatusException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidKeyPrefixFilterException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidMinimumHealthyHostValueException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidNextTokenException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidOperationException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidRegistrationStatusException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidRevisionException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidRoleException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidSortByException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidSortOrderException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidTagException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidTagFilterException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidTimeRangeException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidTriggerConfigException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'Key' => [ 'type' => 'string', ], 'LifecycleErrorCode' => [ 'type' => 'string', 'enum' => [ 'Success', 'ScriptMissing', 'ScriptNotExecutable', 'ScriptTimedOut', 'ScriptFailed', 'UnknownError', ], ], 'LifecycleEvent' => [ 'type' => 'structure', 'members' => [ 'lifecycleEventName' => [ 'shape' => 'LifecycleEventName', ], 'diagnostics' => [ 'shape' => 'Diagnostics', ], 'startTime' => [ 'shape' => 'Timestamp', ], 'endTime' => [ 'shape' => 'Timestamp', ], 'status' => [ 'shape' => 'LifecycleEventStatus', ], ], ], 'LifecycleEventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LifecycleEvent', ], ], 'LifecycleEventName' => [ 'type' => 'string', ], 'LifecycleEventStatus' => [ 'type' => 'string', 'enum' => [ 'Pending', 'InProgress', 'Succeeded', 'Failed', 'Skipped', 'Unknown', ], ], 'LifecycleHookLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'LifecycleMessage' => [ 'type' => 'string', ], 'ListApplicationRevisionsInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'sortBy' => [ 'shape' => 'ApplicationRevisionSortBy', ], 'sortOrder' => [ 'shape' => 'SortOrder', ], 's3Bucket' => [ 'shape' => 'S3Bucket', ], 's3KeyPrefix' => [ 'shape' => 'S3Key', ], 'deployed' => [ 'shape' => 'ListStateFilterAction', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListApplicationRevisionsOutput' => [ 'type' => 'structure', 'members' => [ 'revisions' => [ 'shape' => 'RevisionLocationList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListApplicationsInput' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListApplicationsOutput' => [ 'type' => 'structure', 'members' => [ 'applications' => [ 'shape' => 'ApplicationsList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentConfigsInput' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentConfigsOutput' => [ 'type' => 'structure', 'members' => [ 'deploymentConfigsList' => [ 'shape' => 'DeploymentConfigsList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentGroupsInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentGroupsOutput' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroups' => [ 'shape' => 'DeploymentGroupsList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentInstancesInput' => [ 'type' => 'structure', 'required' => [ 'deploymentId', ], 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'instanceStatusFilter' => [ 'shape' => 'InstanceStatusList', ], ], ], 'ListDeploymentInstancesOutput' => [ 'type' => 'structure', 'members' => [ 'instancesList' => [ 'shape' => 'InstancesList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentsInput' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'deploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'includeOnlyStatuses' => [ 'shape' => 'DeploymentStatusList', ], 'createTimeRange' => [ 'shape' => 'TimeRange', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDeploymentsOutput' => [ 'type' => 'structure', 'members' => [ 'deployments' => [ 'shape' => 'DeploymentsList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListOnPremisesInstancesInput' => [ 'type' => 'structure', 'members' => [ 'registrationStatus' => [ 'shape' => 'RegistrationStatus', ], 'tagFilters' => [ 'shape' => 'TagFilterList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListOnPremisesInstancesOutput' => [ 'type' => 'structure', 'members' => [ 'instanceNames' => [ 'shape' => 'InstanceNameList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListStateFilterAction' => [ 'type' => 'string', 'enum' => [ 'include', 'exclude', 'ignore', ], ], 'LogTail' => [ 'type' => 'string', ], 'Message' => [ 'type' => 'string', ], 'MinimumHealthyHosts' => [ 'type' => 'structure', 'members' => [ 'value' => [ 'shape' => 'MinimumHealthyHostsValue', ], 'type' => [ 'shape' => 'MinimumHealthyHostsType', ], ], ], 'MinimumHealthyHostsType' => [ 'type' => 'string', 'enum' => [ 'HOST_COUNT', 'FLEET_PERCENT', ], ], 'MinimumHealthyHostsValue' => [ 'type' => 'integer', ], 'NextToken' => [ 'type' => 'string', ], 'NullableBoolean' => [ 'type' => 'boolean', ], 'RegisterApplicationRevisionInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'revision', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'description' => [ 'shape' => 'Description', ], 'revision' => [ 'shape' => 'RevisionLocation', ], ], ], 'RegisterOnPremisesInstanceInput' => [ 'type' => 'structure', 'required' => [ 'instanceName', 'iamUserArn', ], 'members' => [ 'instanceName' => [ 'shape' => 'InstanceName', ], 'iamUserArn' => [ 'shape' => 'IamUserArn', ], ], ], 'RegistrationStatus' => [ 'type' => 'string', 'enum' => [ 'Registered', 'Deregistered', ], ], 'RemoveTagsFromOnPremisesInstancesInput' => [ 'type' => 'structure', 'required' => [ 'tags', 'instanceNames', ], 'members' => [ 'tags' => [ 'shape' => 'TagList', ], 'instanceNames' => [ 'shape' => 'InstanceNameList', ], ], ], 'Repository' => [ 'type' => 'string', ], 'RevisionDoesNotExistException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'RevisionInfo' => [ 'type' => 'structure', 'members' => [ 'revisionLocation' => [ 'shape' => 'RevisionLocation', ], 'genericRevisionInfo' => [ 'shape' => 'GenericRevisionInfo', ], ], ], 'RevisionInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RevisionInfo', ], ], 'RevisionLocation' => [ 'type' => 'structure', 'members' => [ 'revisionType' => [ 'shape' => 'RevisionLocationType', ], 's3Location' => [ 'shape' => 'S3Location', ], 'gitHubLocation' => [ 'shape' => 'GitHubLocation', ], ], ], 'RevisionLocationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RevisionLocation', ], ], 'RevisionLocationType' => [ 'type' => 'string', 'enum' => [ 'S3', 'GitHub', ], ], 'RevisionRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'Role' => [ 'type' => 'string', ], 'RoleRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'RollbackInfo' => [ 'type' => 'structure', 'members' => [ 'rollbackDeploymentId' => [ 'shape' => 'DeploymentId', ], 'rollbackTriggeringDeploymentId' => [ 'shape' => 'DeploymentId', ], 'rollbackMessage' => [ 'shape' => 'Description', ], ], ], 'S3Bucket' => [ 'type' => 'string', ], 'S3Key' => [ 'type' => 'string', ], 'S3Location' => [ 'type' => 'structure', 'members' => [ 'bucket' => [ 'shape' => 'S3Bucket', ], 'key' => [ 'shape' => 'S3Key', ], 'bundleType' => [ 'shape' => 'BundleType', ], 'version' => [ 'shape' => 'VersionId', ], 'eTag' => [ 'shape' => 'ETag', ], ], ], 'ScriptName' => [ 'type' => 'string', ], 'SortOrder' => [ 'type' => 'string', 'enum' => [ 'ascending', 'descending', ], ], 'StopDeploymentInput' => [ 'type' => 'structure', 'required' => [ 'deploymentId', ], 'members' => [ 'deploymentId' => [ 'shape' => 'DeploymentId', ], 'autoRollbackEnabled' => [ 'shape' => 'NullableBoolean', ], ], ], 'StopDeploymentOutput' => [ 'type' => 'structure', 'members' => [ 'status' => [ 'shape' => 'StopStatus', ], 'statusMessage' => [ 'shape' => 'Message', ], ], ], 'StopStatus' => [ 'type' => 'string', 'enum' => [ 'Pending', 'Succeeded', ], ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'Key', ], 'Value' => [ 'shape' => 'Value', ], ], ], 'TagFilter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'Key', ], 'Value' => [ 'shape' => 'Value', ], 'Type' => [ 'shape' => 'TagFilterType', ], ], ], 'TagFilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagFilter', ], ], 'TagFilterType' => [ 'type' => 'string', 'enum' => [ 'KEY_ONLY', 'VALUE_ONLY', 'KEY_AND_VALUE', ], ], 'TagLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], ], 'TagRequiredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'TimeRange' => [ 'type' => 'structure', 'members' => [ 'start' => [ 'shape' => 'Timestamp', ], 'end' => [ 'shape' => 'Timestamp', ], ], ], 'Timestamp' => [ 'type' => 'timestamp', ], 'TriggerConfig' => [ 'type' => 'structure', 'members' => [ 'triggerName' => [ 'shape' => 'TriggerName', ], 'triggerTargetArn' => [ 'shape' => 'TriggerTargetArn', ], 'triggerEvents' => [ 'shape' => 'TriggerEventTypeList', ], ], ], 'TriggerConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TriggerConfig', ], ], 'TriggerEventType' => [ 'type' => 'string', 'enum' => [ 'DeploymentStart', 'DeploymentSuccess', 'DeploymentFailure', 'DeploymentStop', 'DeploymentRollback', 'InstanceStart', 'InstanceSuccess', 'InstanceFailure', ], ], 'TriggerEventTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TriggerEventType', ], ], 'TriggerName' => [ 'type' => 'string', ], 'TriggerTargetArn' => [ 'type' => 'string', ], 'TriggerTargetsLimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'UpdateApplicationInput' => [ 'type' => 'structure', 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'newApplicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'UpdateDeploymentGroupInput' => [ 'type' => 'structure', 'required' => [ 'applicationName', 'currentDeploymentGroupName', ], 'members' => [ 'applicationName' => [ 'shape' => 'ApplicationName', ], 'currentDeploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'newDeploymentGroupName' => [ 'shape' => 'DeploymentGroupName', ], 'deploymentConfigName' => [ 'shape' => 'DeploymentConfigName', ], 'ec2TagFilters' => [ 'shape' => 'EC2TagFilterList', ], 'onPremisesInstanceTagFilters' => [ 'shape' => 'TagFilterList', ], 'autoScalingGroups' => [ 'shape' => 'AutoScalingGroupNameList', ], 'serviceRoleArn' => [ 'shape' => 'Role', ], 'triggerConfigurations' => [ 'shape' => 'TriggerConfigList', ], 'alarmConfiguration' => [ 'shape' => 'AlarmConfiguration', ], 'autoRollbackConfiguration' => [ 'shape' => 'AutoRollbackConfiguration', ], ], ], 'UpdateDeploymentGroupOutput' => [ 'type' => 'structure', 'members' => [ 'hooksNotCleanedUp' => [ 'shape' => 'AutoScalingGroupList', ], ], ], 'Value' => [ 'type' => 'string', ], 'VersionId' => [ 'type' => 'string', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/api-2.json.php index 3985a5f33..c81ddb2ff 100644 --- a/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2016-04-18', 'endpointPrefix' => 'cognito-idp', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceFullName' => 'Amazon Cognito Identity Provider', 'signatureVersion' => 'v4', 'targetPrefix' => 'AWSCognitoIdentityProviderService', ], 'operations' => [ 'AddCustomAttributes' => [ 'name' => 'AddCustomAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddCustomAttributesRequest', ], 'output' => [ 'shape' => 'AddCustomAttributesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserImportInProgressException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminConfirmSignUp' => [ 'name' => 'AdminConfirmSignUp', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminConfirmSignUpRequest', ], 'output' => [ 'shape' => 'AdminConfirmSignUpResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyFailedAttemptsException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminDeleteUser' => [ 'name' => 'AdminDeleteUser', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminDeleteUserRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminDeleteUserAttributes' => [ 'name' => 'AdminDeleteUserAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminDeleteUserAttributesRequest', ], 'output' => [ 'shape' => 'AdminDeleteUserAttributesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminDisableUser' => [ 'name' => 'AdminDisableUser', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminDisableUserRequest', ], 'output' => [ 'shape' => 'AdminDisableUserResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminEnableUser' => [ 'name' => 'AdminEnableUser', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminEnableUserRequest', ], 'output' => [ 'shape' => 'AdminEnableUserResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminForgetDevice' => [ 'name' => 'AdminForgetDevice', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminForgetDeviceRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminGetDevice' => [ 'name' => 'AdminGetDevice', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminGetDeviceRequest', ], 'output' => [ 'shape' => 'AdminGetDeviceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'NotAuthorizedException', ], ], ], 'AdminGetUser' => [ 'name' => 'AdminGetUser', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminGetUserRequest', ], 'output' => [ 'shape' => 'AdminGetUserResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminInitiateAuth' => [ 'name' => 'AdminInitiateAuth', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminInitiateAuthRequest', ], 'output' => [ 'shape' => 'AdminInitiateAuthResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'MFAMethodNotFoundException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], ], ], 'AdminListDevices' => [ 'name' => 'AdminListDevices', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminListDevicesRequest', ], 'output' => [ 'shape' => 'AdminListDevicesResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'NotAuthorizedException', ], ], ], 'AdminResetUserPassword' => [ 'name' => 'AdminResetUserPassword', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminResetUserPasswordRequest', ], 'output' => [ 'shape' => 'AdminResetUserPasswordResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminRespondToAuthChallenge' => [ 'name' => 'AdminRespondToAuthChallenge', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminRespondToAuthChallengeRequest', ], 'output' => [ 'shape' => 'AdminRespondToAuthChallengeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'CodeMismatchException', ], [ 'shape' => 'ExpiredCodeException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'MFAMethodNotFoundException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'AliasExistsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], ], ], 'AdminSetUserSettings' => [ 'name' => 'AdminSetUserSettings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminSetUserSettingsRequest', ], 'output' => [ 'shape' => 'AdminSetUserSettingsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminUpdateDeviceStatus' => [ 'name' => 'AdminUpdateDeviceStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminUpdateDeviceStatusRequest', ], 'output' => [ 'shape' => 'AdminUpdateDeviceStatusResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminUpdateUserAttributes' => [ 'name' => 'AdminUpdateUserAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminUpdateUserAttributesRequest', ], 'output' => [ 'shape' => 'AdminUpdateUserAttributesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'AliasExistsException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminUserGlobalSignOut' => [ 'name' => 'AdminUserGlobalSignOut', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminUserGlobalSignOutRequest', ], 'output' => [ 'shape' => 'AdminUserGlobalSignOutResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ChangePassword' => [ 'name' => 'ChangePassword', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ChangePasswordRequest', ], 'output' => [ 'shape' => 'ChangePasswordResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InvalidPasswordException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'ConfirmDevice' => [ 'name' => 'ConfirmDevice', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmDeviceRequest', ], 'output' => [ 'shape' => 'ConfirmDeviceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidPasswordException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'UsernameExistsException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ConfirmForgotPassword' => [ 'name' => 'ConfirmForgotPassword', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmForgotPasswordRequest', ], 'output' => [ 'shape' => 'ConfirmForgotPasswordResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InvalidPasswordException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'CodeMismatchException', ], [ 'shape' => 'ExpiredCodeException', ], [ 'shape' => 'TooManyFailedAttemptsException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'ConfirmSignUp' => [ 'name' => 'ConfirmSignUp', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmSignUpRequest', ], 'output' => [ 'shape' => 'ConfirmSignUpResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyFailedAttemptsException', ], [ 'shape' => 'CodeMismatchException', ], [ 'shape' => 'ExpiredCodeException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'AliasExistsException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'CreateUserImportJob' => [ 'name' => 'CreateUserImportJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateUserImportJobRequest', ], 'output' => [ 'shape' => 'CreateUserImportJobResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PreconditionNotMetException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'CreateUserPool' => [ 'name' => 'CreateUserPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateUserPoolRequest', ], 'output' => [ 'shape' => 'CreateUserPoolResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'CreateUserPoolClient' => [ 'name' => 'CreateUserPoolClient', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateUserPoolClientRequest', ], 'output' => [ 'shape' => 'CreateUserPoolClientResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'DeleteUser' => [ 'name' => 'DeleteUser', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteUserRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'DeleteUserAttributes' => [ 'name' => 'DeleteUserAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteUserAttributesRequest', ], 'output' => [ 'shape' => 'DeleteUserAttributesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'DeleteUserPool' => [ 'name' => 'DeleteUserPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteUserPoolRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserImportInProgressException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'DeleteUserPoolClient' => [ 'name' => 'DeleteUserPoolClient', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteUserPoolClientRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'DescribeUserImportJob' => [ 'name' => 'DescribeUserImportJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeUserImportJobRequest', ], 'output' => [ 'shape' => 'DescribeUserImportJobResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'DescribeUserPool' => [ 'name' => 'DescribeUserPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeUserPoolRequest', ], 'output' => [ 'shape' => 'DescribeUserPoolResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'DescribeUserPoolClient' => [ 'name' => 'DescribeUserPoolClient', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeUserPoolClientRequest', ], 'output' => [ 'shape' => 'DescribeUserPoolClientResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ForgetDevice' => [ 'name' => 'ForgetDevice', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ForgetDeviceRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ForgotPassword' => [ 'name' => 'ForgotPassword', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ForgotPasswordRequest', ], 'output' => [ 'shape' => 'ForgotPasswordResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], [ 'shape' => 'CodeDeliveryFailureException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'GetCSVHeader' => [ 'name' => 'GetCSVHeader', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCSVHeaderRequest', ], 'output' => [ 'shape' => 'GetCSVHeaderResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'GetDevice' => [ 'name' => 'GetDevice', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDeviceRequest', ], 'output' => [ 'shape' => 'GetDeviceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'GetUser' => [ 'name' => 'GetUser', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetUserRequest', ], 'output' => [ 'shape' => 'GetUserResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'GetUserAttributeVerificationCode' => [ 'name' => 'GetUserAttributeVerificationCode', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetUserAttributeVerificationCodeRequest', ], 'output' => [ 'shape' => 'GetUserAttributeVerificationCodeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], [ 'shape' => 'CodeDeliveryFailureException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'GlobalSignOut' => [ 'name' => 'GlobalSignOut', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GlobalSignOutRequest', ], 'output' => [ 'shape' => 'GlobalSignOutResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'InitiateAuth' => [ 'name' => 'InitiateAuth', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'InitiateAuthRequest', ], 'output' => [ 'shape' => 'InitiateAuthResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ListDevices' => [ 'name' => 'ListDevices', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListDevicesRequest', ], 'output' => [ 'shape' => 'ListDevicesResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ListUserImportJobs' => [ 'name' => 'ListUserImportJobs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListUserImportJobsRequest', ], 'output' => [ 'shape' => 'ListUserImportJobsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ListUserPoolClients' => [ 'name' => 'ListUserPoolClients', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListUserPoolClientsRequest', ], 'output' => [ 'shape' => 'ListUserPoolClientsResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ListUserPools' => [ 'name' => 'ListUserPools', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListUserPoolsRequest', ], 'output' => [ 'shape' => 'ListUserPoolsResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ListUsers' => [ 'name' => 'ListUsers', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListUsersRequest', ], 'output' => [ 'shape' => 'ListUsersResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ResendConfirmationCode' => [ 'name' => 'ResendConfirmationCode', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResendConfirmationCodeRequest', ], 'output' => [ 'shape' => 'ResendConfirmationCodeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], [ 'shape' => 'CodeDeliveryFailureException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'RespondToAuthChallenge' => [ 'name' => 'RespondToAuthChallenge', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RespondToAuthChallengeRequest', ], 'output' => [ 'shape' => 'RespondToAuthChallengeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'CodeMismatchException', ], [ 'shape' => 'ExpiredCodeException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'MFAMethodNotFoundException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'AliasExistsException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'SetUserSettings' => [ 'name' => 'SetUserSettings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetUserSettingsRequest', ], 'output' => [ 'shape' => 'SetUserSettingsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'SignUp' => [ 'name' => 'SignUp', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SignUpRequest', ], 'output' => [ 'shape' => 'SignUpResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidPasswordException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'UsernameExistsException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], [ 'shape' => 'CodeDeliveryFailureException', ], ], 'authtype' => 'none', ], 'StartUserImportJob' => [ 'name' => 'StartUserImportJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartUserImportJobRequest', ], 'output' => [ 'shape' => 'StartUserImportJobResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'PreconditionNotMetException', ], [ 'shape' => 'NotAuthorizedException', ], ], ], 'StopUserImportJob' => [ 'name' => 'StopUserImportJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopUserImportJobRequest', ], 'output' => [ 'shape' => 'StopUserImportJobResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'PreconditionNotMetException', ], [ 'shape' => 'NotAuthorizedException', ], ], ], 'UpdateDeviceStatus' => [ 'name' => 'UpdateDeviceStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateDeviceStatusRequest', ], 'output' => [ 'shape' => 'UpdateDeviceStatusResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'UpdateUserAttributes' => [ 'name' => 'UpdateUserAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateUserAttributesRequest', ], 'output' => [ 'shape' => 'UpdateUserAttributesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'CodeMismatchException', ], [ 'shape' => 'ExpiredCodeException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'AliasExistsException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], [ 'shape' => 'CodeDeliveryFailureException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'UpdateUserPool' => [ 'name' => 'UpdateUserPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateUserPoolRequest', ], 'output' => [ 'shape' => 'UpdateUserPoolResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ConcurrentModificationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserImportInProgressException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], ], ], 'UpdateUserPoolClient' => [ 'name' => 'UpdateUserPoolClient', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateUserPoolClientRequest', ], 'output' => [ 'shape' => 'UpdateUserPoolClientResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'VerifyUserAttribute' => [ 'name' => 'VerifyUserAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'VerifyUserAttributeRequest', ], 'output' => [ 'shape' => 'VerifyUserAttributeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'CodeMismatchException', ], [ 'shape' => 'ExpiredCodeException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], ], 'shapes' => [ 'AddCustomAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'CustomAttributes', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'CustomAttributes' => [ 'shape' => 'CustomAttributesListType', ], ], ], 'AddCustomAttributesResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminConfirmSignUpRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminConfirmSignUpResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminDeleteUserAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', 'UserAttributeNames', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'UserAttributeNames' => [ 'shape' => 'AttributeNameListType', ], ], ], 'AdminDeleteUserAttributesResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminDeleteUserRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminDisableUserRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminDisableUserResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminEnableUserRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminEnableUserResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminForgetDeviceRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', 'DeviceKey', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], ], ], 'AdminGetDeviceRequest' => [ 'type' => 'structure', 'required' => [ 'DeviceKey', 'UserPoolId', 'Username', ], 'members' => [ 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminGetDeviceResponse' => [ 'type' => 'structure', 'required' => [ 'Device', ], 'members' => [ 'Device' => [ 'shape' => 'DeviceType', ], ], ], 'AdminGetUserRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminGetUserResponse' => [ 'type' => 'structure', 'required' => [ 'Username', ], 'members' => [ 'Username' => [ 'shape' => 'UsernameType', ], 'UserAttributes' => [ 'shape' => 'AttributeListType', ], 'UserCreateDate' => [ 'shape' => 'DateType', ], 'UserLastModifiedDate' => [ 'shape' => 'DateType', ], 'Enabled' => [ 'shape' => 'BooleanType', ], 'UserStatus' => [ 'shape' => 'UserStatusType', ], 'MFAOptions' => [ 'shape' => 'MFAOptionListType', ], ], ], 'AdminInitiateAuthRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'ClientId', 'AuthFlow', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], 'AuthFlow' => [ 'shape' => 'AuthFlowType', ], 'AuthParameters' => [ 'shape' => 'AuthParametersType', ], 'ClientMetadata' => [ 'shape' => 'ClientMetadataType', ], ], ], 'AdminInitiateAuthResponse' => [ 'type' => 'structure', 'members' => [ 'ChallengeName' => [ 'shape' => 'ChallengeNameType', ], 'Session' => [ 'shape' => 'SessionType', ], 'ChallengeParameters' => [ 'shape' => 'ChallengeParametersType', ], 'AuthenticationResult' => [ 'shape' => 'AuthenticationResultType', ], ], ], 'AdminListDevicesRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'Limit' => [ 'shape' => 'QueryLimitType', ], 'PaginationToken' => [ 'shape' => 'SearchPaginationTokenType', ], ], ], 'AdminListDevicesResponse' => [ 'type' => 'structure', 'members' => [ 'Devices' => [ 'shape' => 'DeviceListType', ], 'PaginationToken' => [ 'shape' => 'SearchPaginationTokenType', ], ], ], 'AdminResetUserPasswordRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminResetUserPasswordResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminRespondToAuthChallengeRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'ClientId', 'ChallengeName', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], 'ChallengeName' => [ 'shape' => 'ChallengeNameType', ], 'ChallengeResponses' => [ 'shape' => 'ChallengeResponsesType', ], 'Session' => [ 'shape' => 'SessionType', ], ], ], 'AdminRespondToAuthChallengeResponse' => [ 'type' => 'structure', 'members' => [ 'ChallengeName' => [ 'shape' => 'ChallengeNameType', ], 'Session' => [ 'shape' => 'SessionType', ], 'ChallengeParameters' => [ 'shape' => 'ChallengeParametersType', ], 'AuthenticationResult' => [ 'shape' => 'AuthenticationResultType', ], ], ], 'AdminSetUserSettingsRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', 'MFAOptions', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'MFAOptions' => [ 'shape' => 'MFAOptionListType', ], ], ], 'AdminSetUserSettingsResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminUpdateDeviceStatusRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', 'DeviceKey', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'DeviceRememberedStatus' => [ 'shape' => 'DeviceRememberedStatusType', ], ], ], 'AdminUpdateDeviceStatusResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminUpdateUserAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', 'UserAttributes', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'UserAttributes' => [ 'shape' => 'AttributeListType', ], ], ], 'AdminUpdateUserAttributesResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminUserGlobalSignOutRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminUserGlobalSignOutResponse' => [ 'type' => 'structure', 'members' => [], ], 'AliasAttributeType' => [ 'type' => 'string', 'enum' => [ 'phone_number', 'email', 'preferred_username', ], ], 'AliasAttributesListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'AliasAttributeType', ], ], 'AliasExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'ArnType' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, 'pattern' => 'arn:[\\w+=/,.@-]+:[\\w+=/,.@-]+:([\\w+=/,.@-]*)?:[0-9]+:[\\w+=/,.@-]+(:[\\w+=/,.@-]+)?(:[\\w+=/,.@-]+)?', ], 'AttributeDataType' => [ 'type' => 'string', 'enum' => [ 'String', 'Number', 'DateTime', 'Boolean', ], ], 'AttributeListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttributeType', ], ], 'AttributeNameListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttributeNameType', ], ], 'AttributeNameType' => [ 'type' => 'string', 'max' => 32, 'min' => 1, 'pattern' => '[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+', ], 'AttributeType' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'AttributeNameType', ], 'Value' => [ 'shape' => 'AttributeValueType', ], ], ], 'AttributeValueType' => [ 'type' => 'string', 'max' => 2048, 'sensitive' => true, ], 'AuthFlowType' => [ 'type' => 'string', 'enum' => [ 'USER_SRP_AUTH', 'REFRESH_TOKEN_AUTH', 'REFRESH_TOKEN', 'CUSTOM_AUTH', 'ADMIN_NO_SRP_AUTH', ], ], 'AuthParametersType' => [ 'type' => 'map', 'key' => [ 'shape' => 'StringType', ], 'value' => [ 'shape' => 'StringType', ], ], 'AuthenticationResultType' => [ 'type' => 'structure', 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'ExpiresIn' => [ 'shape' => 'IntegerType', ], 'TokenType' => [ 'shape' => 'StringType', ], 'RefreshToken' => [ 'shape' => 'TokenModelType', ], 'IdToken' => [ 'shape' => 'TokenModelType', ], 'NewDeviceMetadata' => [ 'shape' => 'NewDeviceMetadataType', ], ], ], 'BooleanType' => [ 'type' => 'boolean', ], 'ChallengeNameType' => [ 'type' => 'string', 'enum' => [ 'SMS_MFA', 'PASSWORD_VERIFIER', 'CUSTOM_CHALLENGE', 'DEVICE_SRP_AUTH', 'DEVICE_PASSWORD_VERIFIER', 'ADMIN_NO_SRP_AUTH', ], ], 'ChallengeParametersType' => [ 'type' => 'map', 'key' => [ 'shape' => 'StringType', ], 'value' => [ 'shape' => 'StringType', ], ], 'ChallengeResponsesType' => [ 'type' => 'map', 'key' => [ 'shape' => 'StringType', ], 'value' => [ 'shape' => 'StringType', ], ], 'ChangePasswordRequest' => [ 'type' => 'structure', 'required' => [ 'PreviousPassword', 'ProposedPassword', ], 'members' => [ 'PreviousPassword' => [ 'shape' => 'PasswordType', ], 'ProposedPassword' => [ 'shape' => 'PasswordType', ], 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'ChangePasswordResponse' => [ 'type' => 'structure', 'members' => [], ], 'ClientIdType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w+]+', 'sensitive' => true, ], 'ClientMetadataType' => [ 'type' => 'map', 'key' => [ 'shape' => 'StringType', ], 'value' => [ 'shape' => 'StringType', ], ], 'ClientNameType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w\\s+=,.@-]+', ], 'ClientPermissionListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientPermissionType', ], ], 'ClientPermissionType' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, ], 'ClientSecretType' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '[\\w+]+', 'sensitive' => true, ], 'CodeDeliveryDetailsListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'CodeDeliveryDetailsType', ], ], 'CodeDeliveryDetailsType' => [ 'type' => 'structure', 'members' => [ 'Destination' => [ 'shape' => 'StringType', ], 'DeliveryMedium' => [ 'shape' => 'DeliveryMediumType', ], 'AttributeName' => [ 'shape' => 'AttributeNameType', ], ], ], 'CodeDeliveryFailureException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'CodeMismatchException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'CompletionMessageType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w]+', ], 'ConcurrentModificationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'ConfirmDeviceRequest' => [ 'type' => 'structure', 'required' => [ 'AccessToken', 'DeviceKey', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'DeviceSecretVerifierConfig' => [ 'shape' => 'DeviceSecretVerifierConfigType', ], 'DeviceName' => [ 'shape' => 'DeviceNameType', ], ], ], 'ConfirmDeviceResponse' => [ 'type' => 'structure', 'members' => [ 'UserConfirmationNecessary' => [ 'shape' => 'BooleanType', ], ], ], 'ConfirmForgotPasswordRequest' => [ 'type' => 'structure', 'required' => [ 'ClientId', 'Username', 'ConfirmationCode', 'Password', ], 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'SecretHash' => [ 'shape' => 'SecretHashType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'ConfirmationCode' => [ 'shape' => 'ConfirmationCodeType', ], 'Password' => [ 'shape' => 'PasswordType', ], ], ], 'ConfirmForgotPasswordResponse' => [ 'type' => 'structure', 'members' => [], ], 'ConfirmSignUpRequest' => [ 'type' => 'structure', 'required' => [ 'ClientId', 'Username', 'ConfirmationCode', ], 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'SecretHash' => [ 'shape' => 'SecretHashType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'ConfirmationCode' => [ 'shape' => 'ConfirmationCodeType', ], 'ForceAliasCreation' => [ 'shape' => 'ForceAliasCreation', ], ], ], 'ConfirmSignUpResponse' => [ 'type' => 'structure', 'members' => [], ], 'ConfirmationCodeType' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => '[\\S]+', ], 'CreateUserImportJobRequest' => [ 'type' => 'structure', 'required' => [ 'JobName', 'UserPoolId', 'CloudWatchLogsRoleArn', ], 'members' => [ 'JobName' => [ 'shape' => 'UserImportJobNameType', ], 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'CloudWatchLogsRoleArn' => [ 'shape' => 'ArnType', ], ], ], 'CreateUserImportJobResponse' => [ 'type' => 'structure', 'members' => [ 'UserImportJob' => [ 'shape' => 'UserImportJobType', ], ], ], 'CreateUserPoolClientRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'ClientName', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientName' => [ 'shape' => 'ClientNameType', ], 'GenerateSecret' => [ 'shape' => 'GenerateSecret', ], 'RefreshTokenValidity' => [ 'shape' => 'RefreshTokenValidityType', ], 'ReadAttributes' => [ 'shape' => 'ClientPermissionListType', ], 'WriteAttributes' => [ 'shape' => 'ClientPermissionListType', ], 'ExplicitAuthFlows' => [ 'shape' => 'ExplicitAuthFlowsListType', ], ], ], 'CreateUserPoolClientResponse' => [ 'type' => 'structure', 'members' => [ 'UserPoolClient' => [ 'shape' => 'UserPoolClientType', ], ], ], 'CreateUserPoolRequest' => [ 'type' => 'structure', 'required' => [ 'PoolName', ], 'members' => [ 'PoolName' => [ 'shape' => 'UserPoolNameType', ], 'Policies' => [ 'shape' => 'UserPoolPolicyType', ], 'LambdaConfig' => [ 'shape' => 'LambdaConfigType', ], 'AutoVerifiedAttributes' => [ 'shape' => 'VerifiedAttributesListType', ], 'AliasAttributes' => [ 'shape' => 'AliasAttributesListType', ], 'SmsVerificationMessage' => [ 'shape' => 'SmsVerificationMessageType', ], 'EmailVerificationMessage' => [ 'shape' => 'EmailVerificationMessageType', ], 'EmailVerificationSubject' => [ 'shape' => 'EmailVerificationSubjectType', ], 'SmsAuthenticationMessage' => [ 'shape' => 'SmsVerificationMessageType', ], 'MfaConfiguration' => [ 'shape' => 'UserPoolMfaType', ], 'DeviceConfiguration' => [ 'shape' => 'DeviceConfigurationType', ], 'EmailConfiguration' => [ 'shape' => 'EmailConfigurationType', ], 'SmsConfiguration' => [ 'shape' => 'SmsConfigurationType', ], ], ], 'CreateUserPoolResponse' => [ 'type' => 'structure', 'members' => [ 'UserPool' => [ 'shape' => 'UserPoolType', ], ], ], 'CustomAttributeNameType' => [ 'type' => 'string', 'max' => 20, 'min' => 1, 'pattern' => '[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+', ], 'CustomAttributesListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'SchemaAttributeType', ], 'max' => 25, 'min' => 1, ], 'DateType' => [ 'type' => 'timestamp', ], 'DeleteUserAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'UserAttributeNames', ], 'members' => [ 'UserAttributeNames' => [ 'shape' => 'AttributeNameListType', ], 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'DeleteUserAttributesResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteUserPoolClientRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'ClientId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], ], ], 'DeleteUserPoolRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], ], ], 'DeleteUserRequest' => [ 'type' => 'structure', 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'DeliveryMediumType' => [ 'type' => 'string', 'enum' => [ 'SMS', 'EMAIL', ], ], 'DescribeUserImportJobRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'JobId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'JobId' => [ 'shape' => 'UserImportJobIdType', ], ], ], 'DescribeUserImportJobResponse' => [ 'type' => 'structure', 'members' => [ 'UserImportJob' => [ 'shape' => 'UserImportJobType', ], ], ], 'DescribeUserPoolClientRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'ClientId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], ], ], 'DescribeUserPoolClientResponse' => [ 'type' => 'structure', 'members' => [ 'UserPoolClient' => [ 'shape' => 'UserPoolClientType', ], ], ], 'DescribeUserPoolRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], ], ], 'DescribeUserPoolResponse' => [ 'type' => 'structure', 'members' => [ 'UserPool' => [ 'shape' => 'UserPoolType', ], ], ], 'DeviceConfigurationType' => [ 'type' => 'structure', 'members' => [ 'ChallengeRequiredOnNewDevice' => [ 'shape' => 'BooleanType', ], 'DeviceOnlyRememberedOnUserPrompt' => [ 'shape' => 'BooleanType', ], ], ], 'DeviceKeyType' => [ 'type' => 'string', 'max' => 55, 'min' => 1, 'pattern' => '[\\w-]+_[0-9a-f-]+', ], 'DeviceListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeviceType', ], ], 'DeviceNameType' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'DeviceRememberedStatusType' => [ 'type' => 'string', 'enum' => [ 'remembered', 'not_remembered', ], ], 'DeviceSecretVerifierConfigType' => [ 'type' => 'structure', 'members' => [ 'PasswordVerifier' => [ 'shape' => 'StringType', ], 'Salt' => [ 'shape' => 'StringType', ], ], ], 'DeviceType' => [ 'type' => 'structure', 'members' => [ 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'DeviceAttributes' => [ 'shape' => 'AttributeListType', ], 'DeviceCreateDate' => [ 'shape' => 'DateType', ], 'DeviceLastModifiedDate' => [ 'shape' => 'DateType', ], 'DeviceLastAuthenticatedDate' => [ 'shape' => 'DateType', ], ], ], 'EmailAddressType' => [ 'type' => 'string', 'pattern' => '[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+@[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+', ], 'EmailConfigurationType' => [ 'type' => 'structure', 'members' => [ 'SourceArn' => [ 'shape' => 'ArnType', ], 'ReplyToEmailAddress' => [ 'shape' => 'EmailAddressType', ], ], ], 'EmailVerificationMessageType' => [ 'type' => 'string', 'max' => 2048, 'min' => 6, 'pattern' => '[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}\\s*]*\\{####\\}[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}\\s*]*', ], 'EmailVerificationSubjectType' => [ 'type' => 'string', 'max' => 140, 'min' => 1, 'pattern' => '[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}\\s]+', ], 'ExpiredCodeException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'ExplicitAuthFlowsListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExplicitAuthFlowsType', ], ], 'ExplicitAuthFlowsType' => [ 'type' => 'string', 'enum' => [ 'ADMIN_NO_SRP_AUTH', 'CUSTOM_AUTH_FLOW_ONLY', ], ], 'ForceAliasCreation' => [ 'type' => 'boolean', ], 'ForgetDeviceRequest' => [ 'type' => 'structure', 'required' => [ 'DeviceKey', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], ], ], 'ForgotPasswordRequest' => [ 'type' => 'structure', 'required' => [ 'ClientId', 'Username', ], 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'SecretHash' => [ 'shape' => 'SecretHashType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'ForgotPasswordResponse' => [ 'type' => 'structure', 'members' => [ 'CodeDeliveryDetails' => [ 'shape' => 'CodeDeliveryDetailsType', ], ], ], 'GenerateSecret' => [ 'type' => 'boolean', ], 'GetCSVHeaderRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], ], ], 'GetCSVHeaderResponse' => [ 'type' => 'structure', 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'CSVHeader' => [ 'shape' => 'ListOfStringTypes', ], ], ], 'GetDeviceRequest' => [ 'type' => 'structure', 'required' => [ 'DeviceKey', ], 'members' => [ 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'GetDeviceResponse' => [ 'type' => 'structure', 'required' => [ 'Device', ], 'members' => [ 'Device' => [ 'shape' => 'DeviceType', ], ], ], 'GetUserAttributeVerificationCodeRequest' => [ 'type' => 'structure', 'required' => [ 'AttributeName', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'AttributeName' => [ 'shape' => 'AttributeNameType', ], ], ], 'GetUserAttributeVerificationCodeResponse' => [ 'type' => 'structure', 'members' => [ 'CodeDeliveryDetails' => [ 'shape' => 'CodeDeliveryDetailsType', ], ], ], 'GetUserRequest' => [ 'type' => 'structure', 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'GetUserResponse' => [ 'type' => 'structure', 'required' => [ 'Username', 'UserAttributes', ], 'members' => [ 'Username' => [ 'shape' => 'UsernameType', ], 'UserAttributes' => [ 'shape' => 'AttributeListType', ], 'MFAOptions' => [ 'shape' => 'MFAOptionListType', ], ], ], 'GlobalSignOutRequest' => [ 'type' => 'structure', 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'GlobalSignOutResponse' => [ 'type' => 'structure', 'members' => [], ], 'InitiateAuthRequest' => [ 'type' => 'structure', 'required' => [ 'AuthFlow', 'ClientId', ], 'members' => [ 'AuthFlow' => [ 'shape' => 'AuthFlowType', ], 'AuthParameters' => [ 'shape' => 'AuthParametersType', ], 'ClientMetadata' => [ 'shape' => 'ClientMetadataType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], ], ], 'InitiateAuthResponse' => [ 'type' => 'structure', 'members' => [ 'ChallengeName' => [ 'shape' => 'ChallengeNameType', ], 'Session' => [ 'shape' => 'SessionType', ], 'ChallengeParameters' => [ 'shape' => 'ChallengeParametersType', ], 'AuthenticationResult' => [ 'shape' => 'AuthenticationResultType', ], ], ], 'IntegerType' => [ 'type' => 'integer', ], 'InternalErrorException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, 'fault' => true, ], 'InvalidEmailRoleAccessPolicyException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'InvalidLambdaResponseException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'InvalidParameterException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'InvalidPasswordException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'InvalidSmsRoleAccessPolicyException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'InvalidSmsRoleTrustRelationshipException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'InvalidUserPoolConfigurationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'LambdaConfigType' => [ 'type' => 'structure', 'members' => [ 'PreSignUp' => [ 'shape' => 'ArnType', ], 'CustomMessage' => [ 'shape' => 'ArnType', ], 'PostConfirmation' => [ 'shape' => 'ArnType', ], 'PreAuthentication' => [ 'shape' => 'ArnType', ], 'PostAuthentication' => [ 'shape' => 'ArnType', ], 'DefineAuthChallenge' => [ 'shape' => 'ArnType', ], 'CreateAuthChallenge' => [ 'shape' => 'ArnType', ], 'VerifyAuthChallengeResponse' => [ 'shape' => 'ArnType', ], ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'ListDevicesRequest' => [ 'type' => 'structure', 'required' => [ 'AccessToken', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'Limit' => [ 'shape' => 'QueryLimitType', ], 'PaginationToken' => [ 'shape' => 'SearchPaginationTokenType', ], ], ], 'ListDevicesResponse' => [ 'type' => 'structure', 'members' => [ 'Devices' => [ 'shape' => 'DeviceListType', ], 'PaginationToken' => [ 'shape' => 'SearchPaginationTokenType', ], ], ], 'ListOfStringTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'StringType', ], ], 'ListUserImportJobsRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'MaxResults', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'MaxResults' => [ 'shape' => 'PoolQueryLimitType', ], 'PaginationToken' => [ 'shape' => 'PaginationKeyType', ], ], ], 'ListUserImportJobsResponse' => [ 'type' => 'structure', 'members' => [ 'UserImportJobs' => [ 'shape' => 'UserImportJobsListType', ], 'PaginationToken' => [ 'shape' => 'PaginationKeyType', ], ], ], 'ListUserPoolClientsRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'MaxResults' => [ 'shape' => 'QueryLimit', ], 'NextToken' => [ 'shape' => 'PaginationKey', ], ], ], 'ListUserPoolClientsResponse' => [ 'type' => 'structure', 'members' => [ 'UserPoolClients' => [ 'shape' => 'UserPoolClientListType', ], 'NextToken' => [ 'shape' => 'PaginationKey', ], ], ], 'ListUserPoolsRequest' => [ 'type' => 'structure', 'required' => [ 'MaxResults', ], 'members' => [ 'NextToken' => [ 'shape' => 'PaginationKeyType', ], 'MaxResults' => [ 'shape' => 'PoolQueryLimitType', ], ], ], 'ListUserPoolsResponse' => [ 'type' => 'structure', 'members' => [ 'UserPools' => [ 'shape' => 'UserPoolListType', ], 'NextToken' => [ 'shape' => 'PaginationKeyType', ], ], ], 'ListUsersRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'AttributesToGet' => [ 'shape' => 'SearchedAttributeNamesListType', ], 'Limit' => [ 'shape' => 'QueryLimitType', ], 'PaginationToken' => [ 'shape' => 'SearchPaginationTokenType', ], 'Filter' => [ 'shape' => 'UserFilterType', ], ], ], 'ListUsersResponse' => [ 'type' => 'structure', 'members' => [ 'Users' => [ 'shape' => 'UsersListType', ], 'PaginationToken' => [ 'shape' => 'SearchPaginationTokenType', ], ], ], 'LongType' => [ 'type' => 'long', ], 'MFAMethodNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'MFAOptionListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'MFAOptionType', ], ], 'MFAOptionType' => [ 'type' => 'structure', 'members' => [ 'DeliveryMedium' => [ 'shape' => 'DeliveryMediumType', ], 'AttributeName' => [ 'shape' => 'AttributeNameType', ], ], ], 'MessageType' => [ 'type' => 'string', ], 'NewDeviceMetadataType' => [ 'type' => 'structure', 'members' => [ 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'DeviceGroupKey' => [ 'shape' => 'StringType', ], ], ], 'NotAuthorizedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'NumberAttributeConstraintsType' => [ 'type' => 'structure', 'members' => [ 'MinValue' => [ 'shape' => 'StringType', ], 'MaxValue' => [ 'shape' => 'StringType', ], ], ], 'PaginationKey' => [ 'type' => 'string', 'min' => 1, 'pattern' => '[\\S]+', ], 'PaginationKeyType' => [ 'type' => 'string', 'min' => 1, 'pattern' => '[\\S]+', ], 'PasswordPolicyMinLengthType' => [ 'type' => 'integer', 'max' => 99, 'min' => 6, ], 'PasswordPolicyType' => [ 'type' => 'structure', 'members' => [ 'MinimumLength' => [ 'shape' => 'PasswordPolicyMinLengthType', ], 'RequireUppercase' => [ 'shape' => 'BooleanType', ], 'RequireLowercase' => [ 'shape' => 'BooleanType', ], 'RequireNumbers' => [ 'shape' => 'BooleanType', ], 'RequireSymbols' => [ 'shape' => 'BooleanType', ], ], ], 'PasswordResetRequiredException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'PasswordType' => [ 'type' => 'string', 'max' => 256, 'min' => 6, 'pattern' => '[\\S]+', 'sensitive' => true, ], 'PoolQueryLimitType' => [ 'type' => 'integer', 'max' => 60, 'min' => 1, ], 'PreSignedUrlType' => [ 'type' => 'string', 'max' => 2048, 'min' => 0, ], 'PreconditionNotMetException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'QueryLimit' => [ 'type' => 'integer', 'max' => 60, 'min' => 1, ], 'QueryLimitType' => [ 'type' => 'integer', 'max' => 60, 'min' => 0, ], 'RefreshTokenValidityType' => [ 'type' => 'integer', 'max' => 3650, 'min' => 0, ], 'ResendConfirmationCodeRequest' => [ 'type' => 'structure', 'required' => [ 'ClientId', 'Username', ], 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'SecretHash' => [ 'shape' => 'SecretHashType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'ResendConfirmationCodeResponse' => [ 'type' => 'structure', 'members' => [ 'CodeDeliveryDetails' => [ 'shape' => 'CodeDeliveryDetailsType', ], ], ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'RespondToAuthChallengeRequest' => [ 'type' => 'structure', 'required' => [ 'ClientId', 'ChallengeName', ], 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'ChallengeName' => [ 'shape' => 'ChallengeNameType', ], 'Session' => [ 'shape' => 'SessionType', ], 'ChallengeResponses' => [ 'shape' => 'ChallengeResponsesType', ], ], ], 'RespondToAuthChallengeResponse' => [ 'type' => 'structure', 'members' => [ 'ChallengeName' => [ 'shape' => 'ChallengeNameType', ], 'Session' => [ 'shape' => 'SessionType', ], 'ChallengeParameters' => [ 'shape' => 'ChallengeParametersType', ], 'AuthenticationResult' => [ 'shape' => 'AuthenticationResultType', ], ], ], 'SchemaAttributeType' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'CustomAttributeNameType', ], 'AttributeDataType' => [ 'shape' => 'AttributeDataType', ], 'DeveloperOnlyAttribute' => [ 'shape' => 'BooleanType', ], 'Mutable' => [ 'shape' => 'BooleanType', ], 'Required' => [ 'shape' => 'BooleanType', ], 'NumberAttributeConstraints' => [ 'shape' => 'NumberAttributeConstraintsType', ], 'StringAttributeConstraints' => [ 'shape' => 'StringAttributeConstraintsType', ], ], ], 'SchemaAttributesListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'SchemaAttributeType', ], 'max' => 50, 'min' => 1, ], 'SearchPaginationTokenType' => [ 'type' => 'string', 'min' => 1, 'pattern' => '[\\S]+', ], 'SearchedAttributeNamesListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttributeNameType', ], ], 'SecretHashType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w+=/]+', 'sensitive' => true, ], 'SessionType' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, ], 'SetUserSettingsRequest' => [ 'type' => 'structure', 'required' => [ 'AccessToken', 'MFAOptions', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'MFAOptions' => [ 'shape' => 'MFAOptionListType', ], ], ], 'SetUserSettingsResponse' => [ 'type' => 'structure', 'members' => [], ], 'SignUpRequest' => [ 'type' => 'structure', 'required' => [ 'ClientId', 'Username', 'Password', ], 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'SecretHash' => [ 'shape' => 'SecretHashType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'Password' => [ 'shape' => 'PasswordType', ], 'UserAttributes' => [ 'shape' => 'AttributeListType', ], 'ValidationData' => [ 'shape' => 'AttributeListType', ], ], ], 'SignUpResponse' => [ 'type' => 'structure', 'members' => [ 'UserConfirmed' => [ 'shape' => 'BooleanType', ], 'CodeDeliveryDetails' => [ 'shape' => 'CodeDeliveryDetailsType', ], ], ], 'SmsConfigurationType' => [ 'type' => 'structure', 'members' => [ 'SnsCallerArn' => [ 'shape' => 'ArnType', ], 'ExternalId' => [ 'shape' => 'StringType', ], ], ], 'SmsVerificationMessageType' => [ 'type' => 'string', 'max' => 140, 'min' => 6, 'pattern' => '.*\\{####\\}.*', ], 'StartUserImportJobRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'JobId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'JobId' => [ 'shape' => 'UserImportJobIdType', ], ], ], 'StartUserImportJobResponse' => [ 'type' => 'structure', 'members' => [ 'UserImportJob' => [ 'shape' => 'UserImportJobType', ], ], ], 'StatusType' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', ], ], 'StopUserImportJobRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'JobId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'JobId' => [ 'shape' => 'UserImportJobIdType', ], ], ], 'StopUserImportJobResponse' => [ 'type' => 'structure', 'members' => [ 'UserImportJob' => [ 'shape' => 'UserImportJobType', ], ], ], 'StringAttributeConstraintsType' => [ 'type' => 'structure', 'members' => [ 'MinLength' => [ 'shape' => 'StringType', ], 'MaxLength' => [ 'shape' => 'StringType', ], ], ], 'StringType' => [ 'type' => 'string', ], 'TokenModelType' => [ 'type' => 'string', 'pattern' => '[A-Za-z0-9-_=.]+', 'sensitive' => true, ], 'TooManyFailedAttemptsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'TooManyRequestsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UnexpectedLambdaException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UpdateDeviceStatusRequest' => [ 'type' => 'structure', 'required' => [ 'AccessToken', 'DeviceKey', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'DeviceRememberedStatus' => [ 'shape' => 'DeviceRememberedStatusType', ], ], ], 'UpdateDeviceStatusResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateUserAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'UserAttributes', ], 'members' => [ 'UserAttributes' => [ 'shape' => 'AttributeListType', ], 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'UpdateUserAttributesResponse' => [ 'type' => 'structure', 'members' => [ 'CodeDeliveryDetailsList' => [ 'shape' => 'CodeDeliveryDetailsListType', ], ], ], 'UpdateUserPoolClientRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'ClientId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], 'ClientName' => [ 'shape' => 'ClientNameType', ], 'RefreshTokenValidity' => [ 'shape' => 'RefreshTokenValidityType', ], 'ReadAttributes' => [ 'shape' => 'ClientPermissionListType', ], 'WriteAttributes' => [ 'shape' => 'ClientPermissionListType', ], 'ExplicitAuthFlows' => [ 'shape' => 'ExplicitAuthFlowsListType', ], ], ], 'UpdateUserPoolClientResponse' => [ 'type' => 'structure', 'members' => [ 'UserPoolClient' => [ 'shape' => 'UserPoolClientType', ], ], ], 'UpdateUserPoolRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Policies' => [ 'shape' => 'UserPoolPolicyType', ], 'LambdaConfig' => [ 'shape' => 'LambdaConfigType', ], 'AutoVerifiedAttributes' => [ 'shape' => 'VerifiedAttributesListType', ], 'SmsVerificationMessage' => [ 'shape' => 'SmsVerificationMessageType', ], 'EmailVerificationMessage' => [ 'shape' => 'EmailVerificationMessageType', ], 'EmailVerificationSubject' => [ 'shape' => 'EmailVerificationSubjectType', ], 'SmsAuthenticationMessage' => [ 'shape' => 'SmsVerificationMessageType', ], 'MfaConfiguration' => [ 'shape' => 'UserPoolMfaType', ], 'DeviceConfiguration' => [ 'shape' => 'DeviceConfigurationType', ], 'EmailConfiguration' => [ 'shape' => 'EmailConfigurationType', ], 'SmsConfiguration' => [ 'shape' => 'SmsConfigurationType', ], ], ], 'UpdateUserPoolResponse' => [ 'type' => 'structure', 'members' => [], ], 'UserFilterType' => [ 'type' => 'string', 'max' => 256, ], 'UserImportInProgressException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UserImportJobIdType' => [ 'type' => 'string', 'max' => 55, 'min' => 1, 'pattern' => 'import-[0-9a-zA-Z-]+', ], 'UserImportJobNameType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w\\s+=,.@-]+', ], 'UserImportJobStatusType' => [ 'type' => 'string', 'enum' => [ 'Created', 'Pending', 'InProgress', 'Stopping', 'Expired', 'Stopped', 'Failed', 'Succeeded', ], ], 'UserImportJobType' => [ 'type' => 'structure', 'members' => [ 'JobName' => [ 'shape' => 'UserImportJobNameType', ], 'JobId' => [ 'shape' => 'UserImportJobIdType', ], 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'PreSignedUrl' => [ 'shape' => 'PreSignedUrlType', ], 'CreationDate' => [ 'shape' => 'DateType', ], 'StartDate' => [ 'shape' => 'DateType', ], 'CompletionDate' => [ 'shape' => 'DateType', ], 'Status' => [ 'shape' => 'UserImportJobStatusType', ], 'CloudWatchLogsRoleArn' => [ 'shape' => 'ArnType', ], 'ImportedUsers' => [ 'shape' => 'LongType', ], 'SkippedUsers' => [ 'shape' => 'LongType', ], 'FailedUsers' => [ 'shape' => 'LongType', ], 'CompletionMessage' => [ 'shape' => 'CompletionMessageType', ], ], ], 'UserImportJobsListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserImportJobType', ], 'max' => 50, 'min' => 1, ], 'UserLambdaValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UserNotConfirmedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UserNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UserPoolClientDescription' => [ 'type' => 'structure', 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientName' => [ 'shape' => 'ClientNameType', ], ], ], 'UserPoolClientListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserPoolClientDescription', ], ], 'UserPoolClientType' => [ 'type' => 'structure', 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientName' => [ 'shape' => 'ClientNameType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], 'ClientSecret' => [ 'shape' => 'ClientSecretType', ], 'LastModifiedDate' => [ 'shape' => 'DateType', ], 'CreationDate' => [ 'shape' => 'DateType', ], 'RefreshTokenValidity' => [ 'shape' => 'RefreshTokenValidityType', ], 'ReadAttributes' => [ 'shape' => 'ClientPermissionListType', ], 'WriteAttributes' => [ 'shape' => 'ClientPermissionListType', ], 'ExplicitAuthFlows' => [ 'shape' => 'ExplicitAuthFlowsListType', ], ], ], 'UserPoolDescriptionType' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'UserPoolIdType', ], 'Name' => [ 'shape' => 'UserPoolNameType', ], 'LambdaConfig' => [ 'shape' => 'LambdaConfigType', ], 'Status' => [ 'shape' => 'StatusType', ], 'LastModifiedDate' => [ 'shape' => 'DateType', ], 'CreationDate' => [ 'shape' => 'DateType', ], ], ], 'UserPoolIdType' => [ 'type' => 'string', 'max' => 55, 'min' => 1, 'pattern' => '[\\w-]+_[0-9a-zA-Z]+', ], 'UserPoolListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserPoolDescriptionType', ], ], 'UserPoolMfaType' => [ 'type' => 'string', 'enum' => [ 'OFF', 'ON', 'OPTIONAL', ], ], 'UserPoolNameType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w\\s+=,.@-]+', ], 'UserPoolPolicyType' => [ 'type' => 'structure', 'members' => [ 'PasswordPolicy' => [ 'shape' => 'PasswordPolicyType', ], ], ], 'UserPoolType' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'UserPoolIdType', ], 'Name' => [ 'shape' => 'UserPoolNameType', ], 'Policies' => [ 'shape' => 'UserPoolPolicyType', ], 'LambdaConfig' => [ 'shape' => 'LambdaConfigType', ], 'Status' => [ 'shape' => 'StatusType', ], 'LastModifiedDate' => [ 'shape' => 'DateType', ], 'CreationDate' => [ 'shape' => 'DateType', ], 'SchemaAttributes' => [ 'shape' => 'SchemaAttributesListType', ], 'AutoVerifiedAttributes' => [ 'shape' => 'VerifiedAttributesListType', ], 'AliasAttributes' => [ 'shape' => 'AliasAttributesListType', ], 'SmsVerificationMessage' => [ 'shape' => 'SmsVerificationMessageType', ], 'EmailVerificationMessage' => [ 'shape' => 'EmailVerificationMessageType', ], 'EmailVerificationSubject' => [ 'shape' => 'EmailVerificationSubjectType', ], 'SmsAuthenticationMessage' => [ 'shape' => 'SmsVerificationMessageType', ], 'MfaConfiguration' => [ 'shape' => 'UserPoolMfaType', ], 'DeviceConfiguration' => [ 'shape' => 'DeviceConfigurationType', ], 'EstimatedNumberOfUsers' => [ 'shape' => 'IntegerType', ], 'EmailConfiguration' => [ 'shape' => 'EmailConfigurationType', ], 'SmsConfiguration' => [ 'shape' => 'SmsConfigurationType', ], 'SmsConfigurationFailure' => [ 'shape' => 'StringType', ], 'EmailConfigurationFailure' => [ 'shape' => 'StringType', ], ], ], 'UserStatusType' => [ 'type' => 'string', 'enum' => [ 'UNCONFIRMED', 'CONFIRMED', 'ARCHIVED', 'COMPROMISED', 'UNKNOWN', 'RESET_REQUIRED', ], ], 'UserType' => [ 'type' => 'structure', 'members' => [ 'Username' => [ 'shape' => 'UsernameType', ], 'Attributes' => [ 'shape' => 'AttributeListType', ], 'UserCreateDate' => [ 'shape' => 'DateType', ], 'UserLastModifiedDate' => [ 'shape' => 'DateType', ], 'Enabled' => [ 'shape' => 'BooleanType', ], 'UserStatus' => [ 'shape' => 'UserStatusType', ], ], ], 'UsernameExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UsernameType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+', 'sensitive' => true, ], 'UsersListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserType', ], ], 'VerifiedAttributeType' => [ 'type' => 'string', 'enum' => [ 'phone_number', 'email', ], ], 'VerifiedAttributesListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAttributeType', ], ], 'VerifyUserAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'AttributeName', 'Code', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'AttributeName' => [ 'shape' => 'AttributeNameType', ], 'Code' => [ 'shape' => 'ConfirmationCodeType', ], ], ], 'VerifyUserAttributeResponse' => [ 'type' => 'structure', 'members' => [], ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2016-04-18', 'endpointPrefix' => 'cognito-idp', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceFullName' => 'Amazon Cognito Identity Provider', 'signatureVersion' => 'v4', 'targetPrefix' => 'AWSCognitoIdentityProviderService', ], 'operations' => [ 'AddCustomAttributes' => [ 'name' => 'AddCustomAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddCustomAttributesRequest', ], 'output' => [ 'shape' => 'AddCustomAttributesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserImportInProgressException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminConfirmSignUp' => [ 'name' => 'AdminConfirmSignUp', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminConfirmSignUpRequest', ], 'output' => [ 'shape' => 'AdminConfirmSignUpResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyFailedAttemptsException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminCreateUser' => [ 'name' => 'AdminCreateUser', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminCreateUserRequest', ], 'output' => [ 'shape' => 'AdminCreateUserResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UsernameExistsException', ], [ 'shape' => 'InvalidPasswordException', ], [ 'shape' => 'CodeDeliveryFailureException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'PreconditionNotMetException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UnsupportedUserStateException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminDeleteUser' => [ 'name' => 'AdminDeleteUser', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminDeleteUserRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminDeleteUserAttributes' => [ 'name' => 'AdminDeleteUserAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminDeleteUserAttributesRequest', ], 'output' => [ 'shape' => 'AdminDeleteUserAttributesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminDisableUser' => [ 'name' => 'AdminDisableUser', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminDisableUserRequest', ], 'output' => [ 'shape' => 'AdminDisableUserResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminEnableUser' => [ 'name' => 'AdminEnableUser', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminEnableUserRequest', ], 'output' => [ 'shape' => 'AdminEnableUserResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminForgetDevice' => [ 'name' => 'AdminForgetDevice', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminForgetDeviceRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminGetDevice' => [ 'name' => 'AdminGetDevice', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminGetDeviceRequest', ], 'output' => [ 'shape' => 'AdminGetDeviceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'NotAuthorizedException', ], ], ], 'AdminGetUser' => [ 'name' => 'AdminGetUser', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminGetUserRequest', ], 'output' => [ 'shape' => 'AdminGetUserResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminInitiateAuth' => [ 'name' => 'AdminInitiateAuth', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminInitiateAuthRequest', ], 'output' => [ 'shape' => 'AdminInitiateAuthResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'MFAMethodNotFoundException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], ], ], 'AdminListDevices' => [ 'name' => 'AdminListDevices', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminListDevicesRequest', ], 'output' => [ 'shape' => 'AdminListDevicesResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'NotAuthorizedException', ], ], ], 'AdminResetUserPassword' => [ 'name' => 'AdminResetUserPassword', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminResetUserPasswordRequest', ], 'output' => [ 'shape' => 'AdminResetUserPasswordResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminRespondToAuthChallenge' => [ 'name' => 'AdminRespondToAuthChallenge', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminRespondToAuthChallengeRequest', ], 'output' => [ 'shape' => 'AdminRespondToAuthChallengeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'CodeMismatchException', ], [ 'shape' => 'ExpiredCodeException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'InvalidPasswordException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'MFAMethodNotFoundException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'AliasExistsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], ], ], 'AdminSetUserSettings' => [ 'name' => 'AdminSetUserSettings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminSetUserSettingsRequest', ], 'output' => [ 'shape' => 'AdminSetUserSettingsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminUpdateDeviceStatus' => [ 'name' => 'AdminUpdateDeviceStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminUpdateDeviceStatusRequest', ], 'output' => [ 'shape' => 'AdminUpdateDeviceStatusResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminUpdateUserAttributes' => [ 'name' => 'AdminUpdateUserAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminUpdateUserAttributesRequest', ], 'output' => [ 'shape' => 'AdminUpdateUserAttributesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'AliasExistsException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'AdminUserGlobalSignOut' => [ 'name' => 'AdminUserGlobalSignOut', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AdminUserGlobalSignOutRequest', ], 'output' => [ 'shape' => 'AdminUserGlobalSignOutResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ChangePassword' => [ 'name' => 'ChangePassword', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ChangePasswordRequest', ], 'output' => [ 'shape' => 'ChangePasswordResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InvalidPasswordException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'ConfirmDevice' => [ 'name' => 'ConfirmDevice', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmDeviceRequest', ], 'output' => [ 'shape' => 'ConfirmDeviceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidPasswordException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'UsernameExistsException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ConfirmForgotPassword' => [ 'name' => 'ConfirmForgotPassword', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmForgotPasswordRequest', ], 'output' => [ 'shape' => 'ConfirmForgotPasswordResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InvalidPasswordException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'CodeMismatchException', ], [ 'shape' => 'ExpiredCodeException', ], [ 'shape' => 'TooManyFailedAttemptsException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'ConfirmSignUp' => [ 'name' => 'ConfirmSignUp', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmSignUpRequest', ], 'output' => [ 'shape' => 'ConfirmSignUpResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyFailedAttemptsException', ], [ 'shape' => 'CodeMismatchException', ], [ 'shape' => 'ExpiredCodeException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'AliasExistsException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'CreateUserImportJob' => [ 'name' => 'CreateUserImportJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateUserImportJobRequest', ], 'output' => [ 'shape' => 'CreateUserImportJobResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PreconditionNotMetException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'CreateUserPool' => [ 'name' => 'CreateUserPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateUserPoolRequest', ], 'output' => [ 'shape' => 'CreateUserPoolResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'CreateUserPoolClient' => [ 'name' => 'CreateUserPoolClient', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateUserPoolClientRequest', ], 'output' => [ 'shape' => 'CreateUserPoolClientResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'DeleteUser' => [ 'name' => 'DeleteUser', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteUserRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'DeleteUserAttributes' => [ 'name' => 'DeleteUserAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteUserAttributesRequest', ], 'output' => [ 'shape' => 'DeleteUserAttributesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'DeleteUserPool' => [ 'name' => 'DeleteUserPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteUserPoolRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserImportInProgressException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'DeleteUserPoolClient' => [ 'name' => 'DeleteUserPoolClient', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteUserPoolClientRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'DescribeUserImportJob' => [ 'name' => 'DescribeUserImportJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeUserImportJobRequest', ], 'output' => [ 'shape' => 'DescribeUserImportJobResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'DescribeUserPool' => [ 'name' => 'DescribeUserPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeUserPoolRequest', ], 'output' => [ 'shape' => 'DescribeUserPoolResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'DescribeUserPoolClient' => [ 'name' => 'DescribeUserPoolClient', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeUserPoolClientRequest', ], 'output' => [ 'shape' => 'DescribeUserPoolClientResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ForgetDevice' => [ 'name' => 'ForgetDevice', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ForgetDeviceRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ForgotPassword' => [ 'name' => 'ForgotPassword', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ForgotPasswordRequest', ], 'output' => [ 'shape' => 'ForgotPasswordResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], [ 'shape' => 'CodeDeliveryFailureException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'GetCSVHeader' => [ 'name' => 'GetCSVHeader', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetCSVHeaderRequest', ], 'output' => [ 'shape' => 'GetCSVHeaderResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'GetDevice' => [ 'name' => 'GetDevice', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDeviceRequest', ], 'output' => [ 'shape' => 'GetDeviceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'GetUser' => [ 'name' => 'GetUser', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetUserRequest', ], 'output' => [ 'shape' => 'GetUserResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'GetUserAttributeVerificationCode' => [ 'name' => 'GetUserAttributeVerificationCode', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetUserAttributeVerificationCodeRequest', ], 'output' => [ 'shape' => 'GetUserAttributeVerificationCodeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], [ 'shape' => 'CodeDeliveryFailureException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'GlobalSignOut' => [ 'name' => 'GlobalSignOut', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GlobalSignOutRequest', ], 'output' => [ 'shape' => 'GlobalSignOutResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'InitiateAuth' => [ 'name' => 'InitiateAuth', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'InitiateAuthRequest', ], 'output' => [ 'shape' => 'InitiateAuthResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ListDevices' => [ 'name' => 'ListDevices', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListDevicesRequest', ], 'output' => [ 'shape' => 'ListDevicesResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ListUserImportJobs' => [ 'name' => 'ListUserImportJobs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListUserImportJobsRequest', ], 'output' => [ 'shape' => 'ListUserImportJobsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ListUserPoolClients' => [ 'name' => 'ListUserPoolClients', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListUserPoolClientsRequest', ], 'output' => [ 'shape' => 'ListUserPoolClientsResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ListUserPools' => [ 'name' => 'ListUserPools', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListUserPoolsRequest', ], 'output' => [ 'shape' => 'ListUserPoolsResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ListUsers' => [ 'name' => 'ListUsers', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListUsersRequest', ], 'output' => [ 'shape' => 'ListUsersResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'ResendConfirmationCode' => [ 'name' => 'ResendConfirmationCode', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResendConfirmationCodeRequest', ], 'output' => [ 'shape' => 'ResendConfirmationCodeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], [ 'shape' => 'CodeDeliveryFailureException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'RespondToAuthChallenge' => [ 'name' => 'RespondToAuthChallenge', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RespondToAuthChallengeRequest', ], 'output' => [ 'shape' => 'RespondToAuthChallengeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'CodeMismatchException', ], [ 'shape' => 'ExpiredCodeException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidPasswordException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'MFAMethodNotFoundException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'AliasExistsException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'SetUserSettings' => [ 'name' => 'SetUserSettings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetUserSettingsRequest', ], 'output' => [ 'shape' => 'SetUserSettingsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'SignUp' => [ 'name' => 'SignUp', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SignUpRequest', ], 'output' => [ 'shape' => 'SignUpResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidPasswordException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'UsernameExistsException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], [ 'shape' => 'CodeDeliveryFailureException', ], ], 'authtype' => 'none', ], 'StartUserImportJob' => [ 'name' => 'StartUserImportJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartUserImportJobRequest', ], 'output' => [ 'shape' => 'StartUserImportJobResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'PreconditionNotMetException', ], [ 'shape' => 'NotAuthorizedException', ], ], ], 'StopUserImportJob' => [ 'name' => 'StopUserImportJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopUserImportJobRequest', ], 'output' => [ 'shape' => 'StopUserImportJobResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'PreconditionNotMetException', ], [ 'shape' => 'NotAuthorizedException', ], ], ], 'UpdateDeviceStatus' => [ 'name' => 'UpdateDeviceStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateDeviceStatusRequest', ], 'output' => [ 'shape' => 'UpdateDeviceStatusResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InvalidUserPoolConfigurationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'UpdateUserAttributes' => [ 'name' => 'UpdateUserAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateUserAttributesRequest', ], 'output' => [ 'shape' => 'UpdateUserAttributesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'CodeMismatchException', ], [ 'shape' => 'ExpiredCodeException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UnexpectedLambdaException', ], [ 'shape' => 'UserLambdaValidationException', ], [ 'shape' => 'InvalidLambdaResponseException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'AliasExistsException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], [ 'shape' => 'CodeDeliveryFailureException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], 'UpdateUserPool' => [ 'name' => 'UpdateUserPool', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateUserPoolRequest', ], 'output' => [ 'shape' => 'UpdateUserPoolResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ConcurrentModificationException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'UserImportInProgressException', ], [ 'shape' => 'InternalErrorException', ], [ 'shape' => 'InvalidSmsRoleAccessPolicyException', ], [ 'shape' => 'InvalidSmsRoleTrustRelationshipException', ], [ 'shape' => 'InvalidEmailRoleAccessPolicyException', ], ], ], 'UpdateUserPoolClient' => [ 'name' => 'UpdateUserPoolClient', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateUserPoolClientRequest', ], 'output' => [ 'shape' => 'UpdateUserPoolClientResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'InternalErrorException', ], ], ], 'VerifyUserAttribute' => [ 'name' => 'VerifyUserAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'VerifyUserAttributeRequest', ], 'output' => [ 'shape' => 'VerifyUserAttributeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'CodeMismatchException', ], [ 'shape' => 'ExpiredCodeException', ], [ 'shape' => 'NotAuthorizedException', ], [ 'shape' => 'TooManyRequestsException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'PasswordResetRequiredException', ], [ 'shape' => 'UserNotFoundException', ], [ 'shape' => 'UserNotConfirmedException', ], [ 'shape' => 'InternalErrorException', ], ], 'authtype' => 'none', ], ], 'shapes' => [ 'AddCustomAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'CustomAttributes', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'CustomAttributes' => [ 'shape' => 'CustomAttributesListType', ], ], ], 'AddCustomAttributesResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminConfirmSignUpRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminConfirmSignUpResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminCreateUserConfigType' => [ 'type' => 'structure', 'members' => [ 'AllowAdminCreateUserOnly' => [ 'shape' => 'BooleanType', ], 'UnusedAccountValidityDays' => [ 'shape' => 'AdminCreateUserUnusedAccountValidityDaysType', ], 'InviteMessageTemplate' => [ 'shape' => 'MessageTemplateType', ], ], ], 'AdminCreateUserRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'UserAttributes' => [ 'shape' => 'AttributeListType', ], 'ValidationData' => [ 'shape' => 'AttributeListType', ], 'TemporaryPassword' => [ 'shape' => 'PasswordType', ], 'ForceAliasCreation' => [ 'shape' => 'ForceAliasCreation', ], 'MessageAction' => [ 'shape' => 'MessageActionType', ], 'DesiredDeliveryMediums' => [ 'shape' => 'DeliveryMediumListType', ], ], ], 'AdminCreateUserResponse' => [ 'type' => 'structure', 'members' => [ 'User' => [ 'shape' => 'UserType', ], ], ], 'AdminCreateUserUnusedAccountValidityDaysType' => [ 'type' => 'integer', 'max' => 90, 'min' => 0, ], 'AdminDeleteUserAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', 'UserAttributeNames', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'UserAttributeNames' => [ 'shape' => 'AttributeNameListType', ], ], ], 'AdminDeleteUserAttributesResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminDeleteUserRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminDisableUserRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminDisableUserResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminEnableUserRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminEnableUserResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminForgetDeviceRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', 'DeviceKey', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], ], ], 'AdminGetDeviceRequest' => [ 'type' => 'structure', 'required' => [ 'DeviceKey', 'UserPoolId', 'Username', ], 'members' => [ 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminGetDeviceResponse' => [ 'type' => 'structure', 'required' => [ 'Device', ], 'members' => [ 'Device' => [ 'shape' => 'DeviceType', ], ], ], 'AdminGetUserRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminGetUserResponse' => [ 'type' => 'structure', 'required' => [ 'Username', ], 'members' => [ 'Username' => [ 'shape' => 'UsernameType', ], 'UserAttributes' => [ 'shape' => 'AttributeListType', ], 'UserCreateDate' => [ 'shape' => 'DateType', ], 'UserLastModifiedDate' => [ 'shape' => 'DateType', ], 'Enabled' => [ 'shape' => 'BooleanType', ], 'UserStatus' => [ 'shape' => 'UserStatusType', ], 'MFAOptions' => [ 'shape' => 'MFAOptionListType', ], ], ], 'AdminInitiateAuthRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'ClientId', 'AuthFlow', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], 'AuthFlow' => [ 'shape' => 'AuthFlowType', ], 'AuthParameters' => [ 'shape' => 'AuthParametersType', ], 'ClientMetadata' => [ 'shape' => 'ClientMetadataType', ], ], ], 'AdminInitiateAuthResponse' => [ 'type' => 'structure', 'members' => [ 'ChallengeName' => [ 'shape' => 'ChallengeNameType', ], 'Session' => [ 'shape' => 'SessionType', ], 'ChallengeParameters' => [ 'shape' => 'ChallengeParametersType', ], 'AuthenticationResult' => [ 'shape' => 'AuthenticationResultType', ], ], ], 'AdminListDevicesRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'Limit' => [ 'shape' => 'QueryLimitType', ], 'PaginationToken' => [ 'shape' => 'SearchPaginationTokenType', ], ], ], 'AdminListDevicesResponse' => [ 'type' => 'structure', 'members' => [ 'Devices' => [ 'shape' => 'DeviceListType', ], 'PaginationToken' => [ 'shape' => 'SearchPaginationTokenType', ], ], ], 'AdminResetUserPasswordRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminResetUserPasswordResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminRespondToAuthChallengeRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'ClientId', 'ChallengeName', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], 'ChallengeName' => [ 'shape' => 'ChallengeNameType', ], 'ChallengeResponses' => [ 'shape' => 'ChallengeResponsesType', ], 'Session' => [ 'shape' => 'SessionType', ], ], ], 'AdminRespondToAuthChallengeResponse' => [ 'type' => 'structure', 'members' => [ 'ChallengeName' => [ 'shape' => 'ChallengeNameType', ], 'Session' => [ 'shape' => 'SessionType', ], 'ChallengeParameters' => [ 'shape' => 'ChallengeParametersType', ], 'AuthenticationResult' => [ 'shape' => 'AuthenticationResultType', ], ], ], 'AdminSetUserSettingsRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', 'MFAOptions', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'MFAOptions' => [ 'shape' => 'MFAOptionListType', ], ], ], 'AdminSetUserSettingsResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminUpdateDeviceStatusRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', 'DeviceKey', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'DeviceRememberedStatus' => [ 'shape' => 'DeviceRememberedStatusType', ], ], ], 'AdminUpdateDeviceStatusResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminUpdateUserAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', 'UserAttributes', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'UserAttributes' => [ 'shape' => 'AttributeListType', ], ], ], 'AdminUpdateUserAttributesResponse' => [ 'type' => 'structure', 'members' => [], ], 'AdminUserGlobalSignOutRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'Username', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'AdminUserGlobalSignOutResponse' => [ 'type' => 'structure', 'members' => [], ], 'AliasAttributeType' => [ 'type' => 'string', 'enum' => [ 'phone_number', 'email', 'preferred_username', ], ], 'AliasAttributesListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'AliasAttributeType', ], ], 'AliasExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'ArnType' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, 'pattern' => 'arn:[\\w+=/,.@-]+:[\\w+=/,.@-]+:([\\w+=/,.@-]*)?:[0-9]+:[\\w+=/,.@-]+(:[\\w+=/,.@-]+)?(:[\\w+=/,.@-]+)?', ], 'AttributeDataType' => [ 'type' => 'string', 'enum' => [ 'String', 'Number', 'DateTime', 'Boolean', ], ], 'AttributeListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttributeType', ], ], 'AttributeNameListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttributeNameType', ], ], 'AttributeNameType' => [ 'type' => 'string', 'max' => 32, 'min' => 1, 'pattern' => '[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+', ], 'AttributeType' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'AttributeNameType', ], 'Value' => [ 'shape' => 'AttributeValueType', ], ], ], 'AttributeValueType' => [ 'type' => 'string', 'max' => 2048, 'sensitive' => true, ], 'AuthFlowType' => [ 'type' => 'string', 'enum' => [ 'USER_SRP_AUTH', 'REFRESH_TOKEN_AUTH', 'REFRESH_TOKEN', 'CUSTOM_AUTH', 'ADMIN_NO_SRP_AUTH', ], ], 'AuthParametersType' => [ 'type' => 'map', 'key' => [ 'shape' => 'StringType', ], 'value' => [ 'shape' => 'StringType', ], ], 'AuthenticationResultType' => [ 'type' => 'structure', 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'ExpiresIn' => [ 'shape' => 'IntegerType', ], 'TokenType' => [ 'shape' => 'StringType', ], 'RefreshToken' => [ 'shape' => 'TokenModelType', ], 'IdToken' => [ 'shape' => 'TokenModelType', ], 'NewDeviceMetadata' => [ 'shape' => 'NewDeviceMetadataType', ], ], ], 'BooleanType' => [ 'type' => 'boolean', ], 'ChallengeNameType' => [ 'type' => 'string', 'enum' => [ 'SMS_MFA', 'PASSWORD_VERIFIER', 'CUSTOM_CHALLENGE', 'DEVICE_SRP_AUTH', 'DEVICE_PASSWORD_VERIFIER', 'ADMIN_NO_SRP_AUTH', 'NEW_PASSWORD_REQUIRED', ], ], 'ChallengeParametersType' => [ 'type' => 'map', 'key' => [ 'shape' => 'StringType', ], 'value' => [ 'shape' => 'StringType', ], ], 'ChallengeResponsesType' => [ 'type' => 'map', 'key' => [ 'shape' => 'StringType', ], 'value' => [ 'shape' => 'StringType', ], ], 'ChangePasswordRequest' => [ 'type' => 'structure', 'required' => [ 'PreviousPassword', 'ProposedPassword', ], 'members' => [ 'PreviousPassword' => [ 'shape' => 'PasswordType', ], 'ProposedPassword' => [ 'shape' => 'PasswordType', ], 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'ChangePasswordResponse' => [ 'type' => 'structure', 'members' => [], ], 'ClientIdType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w+]+', 'sensitive' => true, ], 'ClientMetadataType' => [ 'type' => 'map', 'key' => [ 'shape' => 'StringType', ], 'value' => [ 'shape' => 'StringType', ], ], 'ClientNameType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w\\s+=,.@-]+', ], 'ClientPermissionListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClientPermissionType', ], ], 'ClientPermissionType' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, ], 'ClientSecretType' => [ 'type' => 'string', 'max' => 64, 'min' => 1, 'pattern' => '[\\w+]+', 'sensitive' => true, ], 'CodeDeliveryDetailsListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'CodeDeliveryDetailsType', ], ], 'CodeDeliveryDetailsType' => [ 'type' => 'structure', 'members' => [ 'Destination' => [ 'shape' => 'StringType', ], 'DeliveryMedium' => [ 'shape' => 'DeliveryMediumType', ], 'AttributeName' => [ 'shape' => 'AttributeNameType', ], ], ], 'CodeDeliveryFailureException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'CodeMismatchException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'CompletionMessageType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w]+', ], 'ConcurrentModificationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'ConfirmDeviceRequest' => [ 'type' => 'structure', 'required' => [ 'AccessToken', 'DeviceKey', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'DeviceSecretVerifierConfig' => [ 'shape' => 'DeviceSecretVerifierConfigType', ], 'DeviceName' => [ 'shape' => 'DeviceNameType', ], ], ], 'ConfirmDeviceResponse' => [ 'type' => 'structure', 'members' => [ 'UserConfirmationNecessary' => [ 'shape' => 'BooleanType', ], ], ], 'ConfirmForgotPasswordRequest' => [ 'type' => 'structure', 'required' => [ 'ClientId', 'Username', 'ConfirmationCode', 'Password', ], 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'SecretHash' => [ 'shape' => 'SecretHashType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'ConfirmationCode' => [ 'shape' => 'ConfirmationCodeType', ], 'Password' => [ 'shape' => 'PasswordType', ], ], ], 'ConfirmForgotPasswordResponse' => [ 'type' => 'structure', 'members' => [], ], 'ConfirmSignUpRequest' => [ 'type' => 'structure', 'required' => [ 'ClientId', 'Username', 'ConfirmationCode', ], 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'SecretHash' => [ 'shape' => 'SecretHashType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'ConfirmationCode' => [ 'shape' => 'ConfirmationCodeType', ], 'ForceAliasCreation' => [ 'shape' => 'ForceAliasCreation', ], ], ], 'ConfirmSignUpResponse' => [ 'type' => 'structure', 'members' => [], ], 'ConfirmationCodeType' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => '[\\S]+', ], 'CreateUserImportJobRequest' => [ 'type' => 'structure', 'required' => [ 'JobName', 'UserPoolId', 'CloudWatchLogsRoleArn', ], 'members' => [ 'JobName' => [ 'shape' => 'UserImportJobNameType', ], 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'CloudWatchLogsRoleArn' => [ 'shape' => 'ArnType', ], ], ], 'CreateUserImportJobResponse' => [ 'type' => 'structure', 'members' => [ 'UserImportJob' => [ 'shape' => 'UserImportJobType', ], ], ], 'CreateUserPoolClientRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'ClientName', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientName' => [ 'shape' => 'ClientNameType', ], 'GenerateSecret' => [ 'shape' => 'GenerateSecret', ], 'RefreshTokenValidity' => [ 'shape' => 'RefreshTokenValidityType', ], 'ReadAttributes' => [ 'shape' => 'ClientPermissionListType', ], 'WriteAttributes' => [ 'shape' => 'ClientPermissionListType', ], 'ExplicitAuthFlows' => [ 'shape' => 'ExplicitAuthFlowsListType', ], ], ], 'CreateUserPoolClientResponse' => [ 'type' => 'structure', 'members' => [ 'UserPoolClient' => [ 'shape' => 'UserPoolClientType', ], ], ], 'CreateUserPoolRequest' => [ 'type' => 'structure', 'required' => [ 'PoolName', ], 'members' => [ 'PoolName' => [ 'shape' => 'UserPoolNameType', ], 'Policies' => [ 'shape' => 'UserPoolPolicyType', ], 'LambdaConfig' => [ 'shape' => 'LambdaConfigType', ], 'AutoVerifiedAttributes' => [ 'shape' => 'VerifiedAttributesListType', ], 'AliasAttributes' => [ 'shape' => 'AliasAttributesListType', ], 'SmsVerificationMessage' => [ 'shape' => 'SmsVerificationMessageType', ], 'EmailVerificationMessage' => [ 'shape' => 'EmailVerificationMessageType', ], 'EmailVerificationSubject' => [ 'shape' => 'EmailVerificationSubjectType', ], 'SmsAuthenticationMessage' => [ 'shape' => 'SmsVerificationMessageType', ], 'MfaConfiguration' => [ 'shape' => 'UserPoolMfaType', ], 'DeviceConfiguration' => [ 'shape' => 'DeviceConfigurationType', ], 'EmailConfiguration' => [ 'shape' => 'EmailConfigurationType', ], 'SmsConfiguration' => [ 'shape' => 'SmsConfigurationType', ], 'AdminCreateUserConfig' => [ 'shape' => 'AdminCreateUserConfigType', ], ], ], 'CreateUserPoolResponse' => [ 'type' => 'structure', 'members' => [ 'UserPool' => [ 'shape' => 'UserPoolType', ], ], ], 'CustomAttributeNameType' => [ 'type' => 'string', 'max' => 20, 'min' => 1, 'pattern' => '[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+', ], 'CustomAttributesListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'SchemaAttributeType', ], 'max' => 25, 'min' => 1, ], 'DateType' => [ 'type' => 'timestamp', ], 'DeleteUserAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'UserAttributeNames', ], 'members' => [ 'UserAttributeNames' => [ 'shape' => 'AttributeNameListType', ], 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'DeleteUserAttributesResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteUserPoolClientRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'ClientId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], ], ], 'DeleteUserPoolRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], ], ], 'DeleteUserRequest' => [ 'type' => 'structure', 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'DeliveryMediumListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeliveryMediumType', ], ], 'DeliveryMediumType' => [ 'type' => 'string', 'enum' => [ 'SMS', 'EMAIL', ], ], 'DescribeUserImportJobRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'JobId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'JobId' => [ 'shape' => 'UserImportJobIdType', ], ], ], 'DescribeUserImportJobResponse' => [ 'type' => 'structure', 'members' => [ 'UserImportJob' => [ 'shape' => 'UserImportJobType', ], ], ], 'DescribeUserPoolClientRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'ClientId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], ], ], 'DescribeUserPoolClientResponse' => [ 'type' => 'structure', 'members' => [ 'UserPoolClient' => [ 'shape' => 'UserPoolClientType', ], ], ], 'DescribeUserPoolRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], ], ], 'DescribeUserPoolResponse' => [ 'type' => 'structure', 'members' => [ 'UserPool' => [ 'shape' => 'UserPoolType', ], ], ], 'DeviceConfigurationType' => [ 'type' => 'structure', 'members' => [ 'ChallengeRequiredOnNewDevice' => [ 'shape' => 'BooleanType', ], 'DeviceOnlyRememberedOnUserPrompt' => [ 'shape' => 'BooleanType', ], ], ], 'DeviceKeyType' => [ 'type' => 'string', 'max' => 55, 'min' => 1, 'pattern' => '[\\w-]+_[0-9a-f-]+', ], 'DeviceListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeviceType', ], ], 'DeviceNameType' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'DeviceRememberedStatusType' => [ 'type' => 'string', 'enum' => [ 'remembered', 'not_remembered', ], ], 'DeviceSecretVerifierConfigType' => [ 'type' => 'structure', 'members' => [ 'PasswordVerifier' => [ 'shape' => 'StringType', ], 'Salt' => [ 'shape' => 'StringType', ], ], ], 'DeviceType' => [ 'type' => 'structure', 'members' => [ 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'DeviceAttributes' => [ 'shape' => 'AttributeListType', ], 'DeviceCreateDate' => [ 'shape' => 'DateType', ], 'DeviceLastModifiedDate' => [ 'shape' => 'DateType', ], 'DeviceLastAuthenticatedDate' => [ 'shape' => 'DateType', ], ], ], 'EmailAddressType' => [ 'type' => 'string', 'pattern' => '[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+@[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+', ], 'EmailConfigurationType' => [ 'type' => 'structure', 'members' => [ 'SourceArn' => [ 'shape' => 'ArnType', ], 'ReplyToEmailAddress' => [ 'shape' => 'EmailAddressType', ], ], ], 'EmailVerificationMessageType' => [ 'type' => 'string', 'max' => 2048, 'min' => 6, 'pattern' => '[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}\\s*]*\\{####\\}[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}\\s*]*', ], 'EmailVerificationSubjectType' => [ 'type' => 'string', 'max' => 140, 'min' => 1, 'pattern' => '[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}\\s]+', ], 'ExpiredCodeException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'ExplicitAuthFlowsListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExplicitAuthFlowsType', ], ], 'ExplicitAuthFlowsType' => [ 'type' => 'string', 'enum' => [ 'ADMIN_NO_SRP_AUTH', 'CUSTOM_AUTH_FLOW_ONLY', ], ], 'ForceAliasCreation' => [ 'type' => 'boolean', ], 'ForgetDeviceRequest' => [ 'type' => 'structure', 'required' => [ 'DeviceKey', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], ], ], 'ForgotPasswordRequest' => [ 'type' => 'structure', 'required' => [ 'ClientId', 'Username', ], 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'SecretHash' => [ 'shape' => 'SecretHashType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'ForgotPasswordResponse' => [ 'type' => 'structure', 'members' => [ 'CodeDeliveryDetails' => [ 'shape' => 'CodeDeliveryDetailsType', ], ], ], 'GenerateSecret' => [ 'type' => 'boolean', ], 'GetCSVHeaderRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], ], ], 'GetCSVHeaderResponse' => [ 'type' => 'structure', 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'CSVHeader' => [ 'shape' => 'ListOfStringTypes', ], ], ], 'GetDeviceRequest' => [ 'type' => 'structure', 'required' => [ 'DeviceKey', ], 'members' => [ 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'GetDeviceResponse' => [ 'type' => 'structure', 'required' => [ 'Device', ], 'members' => [ 'Device' => [ 'shape' => 'DeviceType', ], ], ], 'GetUserAttributeVerificationCodeRequest' => [ 'type' => 'structure', 'required' => [ 'AttributeName', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'AttributeName' => [ 'shape' => 'AttributeNameType', ], ], ], 'GetUserAttributeVerificationCodeResponse' => [ 'type' => 'structure', 'members' => [ 'CodeDeliveryDetails' => [ 'shape' => 'CodeDeliveryDetailsType', ], ], ], 'GetUserRequest' => [ 'type' => 'structure', 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'GetUserResponse' => [ 'type' => 'structure', 'required' => [ 'Username', 'UserAttributes', ], 'members' => [ 'Username' => [ 'shape' => 'UsernameType', ], 'UserAttributes' => [ 'shape' => 'AttributeListType', ], 'MFAOptions' => [ 'shape' => 'MFAOptionListType', ], ], ], 'GlobalSignOutRequest' => [ 'type' => 'structure', 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'GlobalSignOutResponse' => [ 'type' => 'structure', 'members' => [], ], 'InitiateAuthRequest' => [ 'type' => 'structure', 'required' => [ 'AuthFlow', 'ClientId', ], 'members' => [ 'AuthFlow' => [ 'shape' => 'AuthFlowType', ], 'AuthParameters' => [ 'shape' => 'AuthParametersType', ], 'ClientMetadata' => [ 'shape' => 'ClientMetadataType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], ], ], 'InitiateAuthResponse' => [ 'type' => 'structure', 'members' => [ 'ChallengeName' => [ 'shape' => 'ChallengeNameType', ], 'Session' => [ 'shape' => 'SessionType', ], 'ChallengeParameters' => [ 'shape' => 'ChallengeParametersType', ], 'AuthenticationResult' => [ 'shape' => 'AuthenticationResultType', ], ], ], 'IntegerType' => [ 'type' => 'integer', ], 'InternalErrorException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, 'fault' => true, ], 'InvalidEmailRoleAccessPolicyException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'InvalidLambdaResponseException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'InvalidParameterException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'InvalidPasswordException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'InvalidSmsRoleAccessPolicyException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'InvalidSmsRoleTrustRelationshipException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'InvalidUserPoolConfigurationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'LambdaConfigType' => [ 'type' => 'structure', 'members' => [ 'PreSignUp' => [ 'shape' => 'ArnType', ], 'CustomMessage' => [ 'shape' => 'ArnType', ], 'PostConfirmation' => [ 'shape' => 'ArnType', ], 'PreAuthentication' => [ 'shape' => 'ArnType', ], 'PostAuthentication' => [ 'shape' => 'ArnType', ], 'DefineAuthChallenge' => [ 'shape' => 'ArnType', ], 'CreateAuthChallenge' => [ 'shape' => 'ArnType', ], 'VerifyAuthChallengeResponse' => [ 'shape' => 'ArnType', ], ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'ListDevicesRequest' => [ 'type' => 'structure', 'required' => [ 'AccessToken', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'Limit' => [ 'shape' => 'QueryLimitType', ], 'PaginationToken' => [ 'shape' => 'SearchPaginationTokenType', ], ], ], 'ListDevicesResponse' => [ 'type' => 'structure', 'members' => [ 'Devices' => [ 'shape' => 'DeviceListType', ], 'PaginationToken' => [ 'shape' => 'SearchPaginationTokenType', ], ], ], 'ListOfStringTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'StringType', ], ], 'ListUserImportJobsRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'MaxResults', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'MaxResults' => [ 'shape' => 'PoolQueryLimitType', ], 'PaginationToken' => [ 'shape' => 'PaginationKeyType', ], ], ], 'ListUserImportJobsResponse' => [ 'type' => 'structure', 'members' => [ 'UserImportJobs' => [ 'shape' => 'UserImportJobsListType', ], 'PaginationToken' => [ 'shape' => 'PaginationKeyType', ], ], ], 'ListUserPoolClientsRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'MaxResults' => [ 'shape' => 'QueryLimit', ], 'NextToken' => [ 'shape' => 'PaginationKey', ], ], ], 'ListUserPoolClientsResponse' => [ 'type' => 'structure', 'members' => [ 'UserPoolClients' => [ 'shape' => 'UserPoolClientListType', ], 'NextToken' => [ 'shape' => 'PaginationKey', ], ], ], 'ListUserPoolsRequest' => [ 'type' => 'structure', 'required' => [ 'MaxResults', ], 'members' => [ 'NextToken' => [ 'shape' => 'PaginationKeyType', ], 'MaxResults' => [ 'shape' => 'PoolQueryLimitType', ], ], ], 'ListUserPoolsResponse' => [ 'type' => 'structure', 'members' => [ 'UserPools' => [ 'shape' => 'UserPoolListType', ], 'NextToken' => [ 'shape' => 'PaginationKeyType', ], ], ], 'ListUsersRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'AttributesToGet' => [ 'shape' => 'SearchedAttributeNamesListType', ], 'Limit' => [ 'shape' => 'QueryLimitType', ], 'PaginationToken' => [ 'shape' => 'SearchPaginationTokenType', ], 'Filter' => [ 'shape' => 'UserFilterType', ], ], ], 'ListUsersResponse' => [ 'type' => 'structure', 'members' => [ 'Users' => [ 'shape' => 'UsersListType', ], 'PaginationToken' => [ 'shape' => 'SearchPaginationTokenType', ], ], ], 'LongType' => [ 'type' => 'long', ], 'MFAMethodNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'MFAOptionListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'MFAOptionType', ], ], 'MFAOptionType' => [ 'type' => 'structure', 'members' => [ 'DeliveryMedium' => [ 'shape' => 'DeliveryMediumType', ], 'AttributeName' => [ 'shape' => 'AttributeNameType', ], ], ], 'MessageActionType' => [ 'type' => 'string', 'enum' => [ 'RESEND', 'SUPPRESS', ], ], 'MessageTemplateType' => [ 'type' => 'structure', 'members' => [ 'SMSMessage' => [ 'shape' => 'SmsVerificationMessageType', ], 'EmailMessage' => [ 'shape' => 'EmailVerificationMessageType', ], 'EmailSubject' => [ 'shape' => 'EmailVerificationSubjectType', ], ], ], 'MessageType' => [ 'type' => 'string', ], 'NewDeviceMetadataType' => [ 'type' => 'structure', 'members' => [ 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'DeviceGroupKey' => [ 'shape' => 'StringType', ], ], ], 'NotAuthorizedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'NumberAttributeConstraintsType' => [ 'type' => 'structure', 'members' => [ 'MinValue' => [ 'shape' => 'StringType', ], 'MaxValue' => [ 'shape' => 'StringType', ], ], ], 'PaginationKey' => [ 'type' => 'string', 'min' => 1, 'pattern' => '[\\S]+', ], 'PaginationKeyType' => [ 'type' => 'string', 'min' => 1, 'pattern' => '[\\S]+', ], 'PasswordPolicyMinLengthType' => [ 'type' => 'integer', 'max' => 99, 'min' => 6, ], 'PasswordPolicyType' => [ 'type' => 'structure', 'members' => [ 'MinimumLength' => [ 'shape' => 'PasswordPolicyMinLengthType', ], 'RequireUppercase' => [ 'shape' => 'BooleanType', ], 'RequireLowercase' => [ 'shape' => 'BooleanType', ], 'RequireNumbers' => [ 'shape' => 'BooleanType', ], 'RequireSymbols' => [ 'shape' => 'BooleanType', ], ], ], 'PasswordResetRequiredException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'PasswordType' => [ 'type' => 'string', 'max' => 256, 'min' => 6, 'pattern' => '[\\S]+', 'sensitive' => true, ], 'PoolQueryLimitType' => [ 'type' => 'integer', 'max' => 60, 'min' => 1, ], 'PreSignedUrlType' => [ 'type' => 'string', 'max' => 2048, 'min' => 0, ], 'PreconditionNotMetException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'QueryLimit' => [ 'type' => 'integer', 'max' => 60, 'min' => 1, ], 'QueryLimitType' => [ 'type' => 'integer', 'max' => 60, 'min' => 0, ], 'RefreshTokenValidityType' => [ 'type' => 'integer', 'max' => 3650, 'min' => 0, ], 'ResendConfirmationCodeRequest' => [ 'type' => 'structure', 'required' => [ 'ClientId', 'Username', ], 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'SecretHash' => [ 'shape' => 'SecretHashType', ], 'Username' => [ 'shape' => 'UsernameType', ], ], ], 'ResendConfirmationCodeResponse' => [ 'type' => 'structure', 'members' => [ 'CodeDeliveryDetails' => [ 'shape' => 'CodeDeliveryDetailsType', ], ], ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'RespondToAuthChallengeRequest' => [ 'type' => 'structure', 'required' => [ 'ClientId', 'ChallengeName', ], 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'ChallengeName' => [ 'shape' => 'ChallengeNameType', ], 'Session' => [ 'shape' => 'SessionType', ], 'ChallengeResponses' => [ 'shape' => 'ChallengeResponsesType', ], ], ], 'RespondToAuthChallengeResponse' => [ 'type' => 'structure', 'members' => [ 'ChallengeName' => [ 'shape' => 'ChallengeNameType', ], 'Session' => [ 'shape' => 'SessionType', ], 'ChallengeParameters' => [ 'shape' => 'ChallengeParametersType', ], 'AuthenticationResult' => [ 'shape' => 'AuthenticationResultType', ], ], ], 'SchemaAttributeType' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'CustomAttributeNameType', ], 'AttributeDataType' => [ 'shape' => 'AttributeDataType', ], 'DeveloperOnlyAttribute' => [ 'shape' => 'BooleanType', ], 'Mutable' => [ 'shape' => 'BooleanType', ], 'Required' => [ 'shape' => 'BooleanType', ], 'NumberAttributeConstraints' => [ 'shape' => 'NumberAttributeConstraintsType', ], 'StringAttributeConstraints' => [ 'shape' => 'StringAttributeConstraintsType', ], ], ], 'SchemaAttributesListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'SchemaAttributeType', ], 'max' => 50, 'min' => 1, ], 'SearchPaginationTokenType' => [ 'type' => 'string', 'min' => 1, 'pattern' => '[\\S]+', ], 'SearchedAttributeNamesListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttributeNameType', ], ], 'SecretHashType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w+=/]+', 'sensitive' => true, ], 'SessionType' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, ], 'SetUserSettingsRequest' => [ 'type' => 'structure', 'required' => [ 'AccessToken', 'MFAOptions', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'MFAOptions' => [ 'shape' => 'MFAOptionListType', ], ], ], 'SetUserSettingsResponse' => [ 'type' => 'structure', 'members' => [], ], 'SignUpRequest' => [ 'type' => 'structure', 'required' => [ 'ClientId', 'Username', 'Password', ], 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'SecretHash' => [ 'shape' => 'SecretHashType', ], 'Username' => [ 'shape' => 'UsernameType', ], 'Password' => [ 'shape' => 'PasswordType', ], 'UserAttributes' => [ 'shape' => 'AttributeListType', ], 'ValidationData' => [ 'shape' => 'AttributeListType', ], ], ], 'SignUpResponse' => [ 'type' => 'structure', 'members' => [ 'UserConfirmed' => [ 'shape' => 'BooleanType', ], 'CodeDeliveryDetails' => [ 'shape' => 'CodeDeliveryDetailsType', ], ], ], 'SmsConfigurationType' => [ 'type' => 'structure', 'members' => [ 'SnsCallerArn' => [ 'shape' => 'ArnType', ], 'ExternalId' => [ 'shape' => 'StringType', ], ], ], 'SmsVerificationMessageType' => [ 'type' => 'string', 'max' => 140, 'min' => 6, 'pattern' => '.*\\{####\\}.*', ], 'StartUserImportJobRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'JobId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'JobId' => [ 'shape' => 'UserImportJobIdType', ], ], ], 'StartUserImportJobResponse' => [ 'type' => 'structure', 'members' => [ 'UserImportJob' => [ 'shape' => 'UserImportJobType', ], ], ], 'StatusType' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', ], ], 'StopUserImportJobRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'JobId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'JobId' => [ 'shape' => 'UserImportJobIdType', ], ], ], 'StopUserImportJobResponse' => [ 'type' => 'structure', 'members' => [ 'UserImportJob' => [ 'shape' => 'UserImportJobType', ], ], ], 'StringAttributeConstraintsType' => [ 'type' => 'structure', 'members' => [ 'MinLength' => [ 'shape' => 'StringType', ], 'MaxLength' => [ 'shape' => 'StringType', ], ], ], 'StringType' => [ 'type' => 'string', ], 'TokenModelType' => [ 'type' => 'string', 'pattern' => '[A-Za-z0-9-_=.]+', 'sensitive' => true, ], 'TooManyFailedAttemptsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'TooManyRequestsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UnexpectedLambdaException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UnsupportedUserStateException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UpdateDeviceStatusRequest' => [ 'type' => 'structure', 'required' => [ 'AccessToken', 'DeviceKey', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'DeviceKey' => [ 'shape' => 'DeviceKeyType', ], 'DeviceRememberedStatus' => [ 'shape' => 'DeviceRememberedStatusType', ], ], ], 'UpdateDeviceStatusResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateUserAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'UserAttributes', ], 'members' => [ 'UserAttributes' => [ 'shape' => 'AttributeListType', ], 'AccessToken' => [ 'shape' => 'TokenModelType', ], ], ], 'UpdateUserAttributesResponse' => [ 'type' => 'structure', 'members' => [ 'CodeDeliveryDetailsList' => [ 'shape' => 'CodeDeliveryDetailsListType', ], ], ], 'UpdateUserPoolClientRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', 'ClientId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], 'ClientName' => [ 'shape' => 'ClientNameType', ], 'RefreshTokenValidity' => [ 'shape' => 'RefreshTokenValidityType', ], 'ReadAttributes' => [ 'shape' => 'ClientPermissionListType', ], 'WriteAttributes' => [ 'shape' => 'ClientPermissionListType', ], 'ExplicitAuthFlows' => [ 'shape' => 'ExplicitAuthFlowsListType', ], ], ], 'UpdateUserPoolClientResponse' => [ 'type' => 'structure', 'members' => [ 'UserPoolClient' => [ 'shape' => 'UserPoolClientType', ], ], ], 'UpdateUserPoolRequest' => [ 'type' => 'structure', 'required' => [ 'UserPoolId', ], 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'Policies' => [ 'shape' => 'UserPoolPolicyType', ], 'LambdaConfig' => [ 'shape' => 'LambdaConfigType', ], 'AutoVerifiedAttributes' => [ 'shape' => 'VerifiedAttributesListType', ], 'SmsVerificationMessage' => [ 'shape' => 'SmsVerificationMessageType', ], 'EmailVerificationMessage' => [ 'shape' => 'EmailVerificationMessageType', ], 'EmailVerificationSubject' => [ 'shape' => 'EmailVerificationSubjectType', ], 'SmsAuthenticationMessage' => [ 'shape' => 'SmsVerificationMessageType', ], 'MfaConfiguration' => [ 'shape' => 'UserPoolMfaType', ], 'DeviceConfiguration' => [ 'shape' => 'DeviceConfigurationType', ], 'EmailConfiguration' => [ 'shape' => 'EmailConfigurationType', ], 'SmsConfiguration' => [ 'shape' => 'SmsConfigurationType', ], 'AdminCreateUserConfig' => [ 'shape' => 'AdminCreateUserConfigType', ], ], ], 'UpdateUserPoolResponse' => [ 'type' => 'structure', 'members' => [], ], 'UserFilterType' => [ 'type' => 'string', 'max' => 256, ], 'UserImportInProgressException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UserImportJobIdType' => [ 'type' => 'string', 'max' => 55, 'min' => 1, 'pattern' => 'import-[0-9a-zA-Z-]+', ], 'UserImportJobNameType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w\\s+=,.@-]+', ], 'UserImportJobStatusType' => [ 'type' => 'string', 'enum' => [ 'Created', 'Pending', 'InProgress', 'Stopping', 'Expired', 'Stopped', 'Failed', 'Succeeded', ], ], 'UserImportJobType' => [ 'type' => 'structure', 'members' => [ 'JobName' => [ 'shape' => 'UserImportJobNameType', ], 'JobId' => [ 'shape' => 'UserImportJobIdType', ], 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'PreSignedUrl' => [ 'shape' => 'PreSignedUrlType', ], 'CreationDate' => [ 'shape' => 'DateType', ], 'StartDate' => [ 'shape' => 'DateType', ], 'CompletionDate' => [ 'shape' => 'DateType', ], 'Status' => [ 'shape' => 'UserImportJobStatusType', ], 'CloudWatchLogsRoleArn' => [ 'shape' => 'ArnType', ], 'ImportedUsers' => [ 'shape' => 'LongType', ], 'SkippedUsers' => [ 'shape' => 'LongType', ], 'FailedUsers' => [ 'shape' => 'LongType', ], 'CompletionMessage' => [ 'shape' => 'CompletionMessageType', ], ], ], 'UserImportJobsListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserImportJobType', ], 'max' => 50, 'min' => 1, ], 'UserLambdaValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UserNotConfirmedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UserNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UserPoolClientDescription' => [ 'type' => 'structure', 'members' => [ 'ClientId' => [ 'shape' => 'ClientIdType', ], 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientName' => [ 'shape' => 'ClientNameType', ], ], ], 'UserPoolClientListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserPoolClientDescription', ], ], 'UserPoolClientType' => [ 'type' => 'structure', 'members' => [ 'UserPoolId' => [ 'shape' => 'UserPoolIdType', ], 'ClientName' => [ 'shape' => 'ClientNameType', ], 'ClientId' => [ 'shape' => 'ClientIdType', ], 'ClientSecret' => [ 'shape' => 'ClientSecretType', ], 'LastModifiedDate' => [ 'shape' => 'DateType', ], 'CreationDate' => [ 'shape' => 'DateType', ], 'RefreshTokenValidity' => [ 'shape' => 'RefreshTokenValidityType', ], 'ReadAttributes' => [ 'shape' => 'ClientPermissionListType', ], 'WriteAttributes' => [ 'shape' => 'ClientPermissionListType', ], 'ExplicitAuthFlows' => [ 'shape' => 'ExplicitAuthFlowsListType', ], ], ], 'UserPoolDescriptionType' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'UserPoolIdType', ], 'Name' => [ 'shape' => 'UserPoolNameType', ], 'LambdaConfig' => [ 'shape' => 'LambdaConfigType', ], 'Status' => [ 'shape' => 'StatusType', ], 'LastModifiedDate' => [ 'shape' => 'DateType', ], 'CreationDate' => [ 'shape' => 'DateType', ], ], ], 'UserPoolIdType' => [ 'type' => 'string', 'max' => 55, 'min' => 1, 'pattern' => '[\\w-]+_[0-9a-zA-Z]+', ], 'UserPoolListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserPoolDescriptionType', ], ], 'UserPoolMfaType' => [ 'type' => 'string', 'enum' => [ 'OFF', 'ON', 'OPTIONAL', ], ], 'UserPoolNameType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w\\s+=,.@-]+', ], 'UserPoolPolicyType' => [ 'type' => 'structure', 'members' => [ 'PasswordPolicy' => [ 'shape' => 'PasswordPolicyType', ], ], ], 'UserPoolType' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'UserPoolIdType', ], 'Name' => [ 'shape' => 'UserPoolNameType', ], 'Policies' => [ 'shape' => 'UserPoolPolicyType', ], 'LambdaConfig' => [ 'shape' => 'LambdaConfigType', ], 'Status' => [ 'shape' => 'StatusType', ], 'LastModifiedDate' => [ 'shape' => 'DateType', ], 'CreationDate' => [ 'shape' => 'DateType', ], 'SchemaAttributes' => [ 'shape' => 'SchemaAttributesListType', ], 'AutoVerifiedAttributes' => [ 'shape' => 'VerifiedAttributesListType', ], 'AliasAttributes' => [ 'shape' => 'AliasAttributesListType', ], 'SmsVerificationMessage' => [ 'shape' => 'SmsVerificationMessageType', ], 'EmailVerificationMessage' => [ 'shape' => 'EmailVerificationMessageType', ], 'EmailVerificationSubject' => [ 'shape' => 'EmailVerificationSubjectType', ], 'SmsAuthenticationMessage' => [ 'shape' => 'SmsVerificationMessageType', ], 'MfaConfiguration' => [ 'shape' => 'UserPoolMfaType', ], 'DeviceConfiguration' => [ 'shape' => 'DeviceConfigurationType', ], 'EstimatedNumberOfUsers' => [ 'shape' => 'IntegerType', ], 'EmailConfiguration' => [ 'shape' => 'EmailConfigurationType', ], 'SmsConfiguration' => [ 'shape' => 'SmsConfigurationType', ], 'SmsConfigurationFailure' => [ 'shape' => 'StringType', ], 'EmailConfigurationFailure' => [ 'shape' => 'StringType', ], 'AdminCreateUserConfig' => [ 'shape' => 'AdminCreateUserConfigType', ], ], ], 'UserStatusType' => [ 'type' => 'string', 'enum' => [ 'UNCONFIRMED', 'CONFIRMED', 'ARCHIVED', 'COMPROMISED', 'UNKNOWN', 'RESET_REQUIRED', 'FORCE_CHANGE_PASSWORD', ], ], 'UserType' => [ 'type' => 'structure', 'members' => [ 'Username' => [ 'shape' => 'UsernameType', ], 'Attributes' => [ 'shape' => 'AttributeListType', ], 'UserCreateDate' => [ 'shape' => 'DateType', ], 'UserLastModifiedDate' => [ 'shape' => 'DateType', ], 'Enabled' => [ 'shape' => 'BooleanType', ], 'UserStatus' => [ 'shape' => 'UserStatusType', ], 'MFAOptions' => [ 'shape' => 'MFAOptionListType', ], ], ], 'UsernameExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'MessageType', ], ], 'exception' => true, ], 'UsernameType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+', 'sensitive' => true, ], 'UsersListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserType', ], ], 'VerifiedAttributeType' => [ 'type' => 'string', 'enum' => [ 'phone_number', 'email', ], ], 'VerifiedAttributesListType' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerifiedAttributeType', ], ], 'VerifyUserAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'AttributeName', 'Code', ], 'members' => [ 'AccessToken' => [ 'shape' => 'TokenModelType', ], 'AttributeName' => [ 'shape' => 'AttributeNameType', ], 'Code' => [ 'shape' => 'ConfirmationCodeType', ], ], ], 'VerifyUserAttributeResponse' => [ 'type' => 'structure', 'members' => [], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/api-2.json.php index 95d60943f..fd8616e40 100644 --- a/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2014-11-12', 'endpointPrefix' => 'config', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'Config Service', 'serviceFullName' => 'AWS Config', 'signatureVersion' => 'v4', 'targetPrefix' => 'StarlingDoveService', ], 'operations' => [ 'DeleteConfigRule' => [ 'name' => 'DeleteConfigRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteConfigRuleRequest', ], 'errors' => [ [ 'shape' => 'NoSuchConfigRuleException', ], [ 'shape' => 'ResourceInUseException', ], ], ], 'DeleteConfigurationRecorder' => [ 'name' => 'DeleteConfigurationRecorder', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteConfigurationRecorderRequest', ], 'errors' => [ [ 'shape' => 'NoSuchConfigurationRecorderException', ], ], ], 'DeleteDeliveryChannel' => [ 'name' => 'DeleteDeliveryChannel', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDeliveryChannelRequest', ], 'errors' => [ [ 'shape' => 'NoSuchDeliveryChannelException', ], [ 'shape' => 'LastDeliveryChannelDeleteFailedException', ], ], ], 'DeleteEvaluationResults' => [ 'name' => 'DeleteEvaluationResults', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteEvaluationResultsRequest', ], 'output' => [ 'shape' => 'DeleteEvaluationResultsResponse', ], 'errors' => [ [ 'shape' => 'NoSuchConfigRuleException', ], [ 'shape' => 'ResourceInUseException', ], ], ], 'DeliverConfigSnapshot' => [ 'name' => 'DeliverConfigSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeliverConfigSnapshotRequest', ], 'output' => [ 'shape' => 'DeliverConfigSnapshotResponse', ], 'errors' => [ [ 'shape' => 'NoSuchDeliveryChannelException', ], [ 'shape' => 'NoAvailableConfigurationRecorderException', ], [ 'shape' => 'NoRunningConfigurationRecorderException', ], ], ], 'DescribeComplianceByConfigRule' => [ 'name' => 'DescribeComplianceByConfigRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeComplianceByConfigRuleRequest', ], 'output' => [ 'shape' => 'DescribeComplianceByConfigRuleResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'NoSuchConfigRuleException', ], ], ], 'DescribeComplianceByResource' => [ 'name' => 'DescribeComplianceByResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeComplianceByResourceRequest', ], 'output' => [ 'shape' => 'DescribeComplianceByResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'DescribeConfigRuleEvaluationStatus' => [ 'name' => 'DescribeConfigRuleEvaluationStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConfigRuleEvaluationStatusRequest', ], 'output' => [ 'shape' => 'DescribeConfigRuleEvaluationStatusResponse', ], 'errors' => [ [ 'shape' => 'NoSuchConfigRuleException', ], ], ], 'DescribeConfigRules' => [ 'name' => 'DescribeConfigRules', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConfigRulesRequest', ], 'output' => [ 'shape' => 'DescribeConfigRulesResponse', ], 'errors' => [ [ 'shape' => 'NoSuchConfigRuleException', ], ], ], 'DescribeConfigurationRecorderStatus' => [ 'name' => 'DescribeConfigurationRecorderStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConfigurationRecorderStatusRequest', ], 'output' => [ 'shape' => 'DescribeConfigurationRecorderStatusResponse', ], 'errors' => [ [ 'shape' => 'NoSuchConfigurationRecorderException', ], ], ], 'DescribeConfigurationRecorders' => [ 'name' => 'DescribeConfigurationRecorders', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConfigurationRecordersRequest', ], 'output' => [ 'shape' => 'DescribeConfigurationRecordersResponse', ], 'errors' => [ [ 'shape' => 'NoSuchConfigurationRecorderException', ], ], ], 'DescribeDeliveryChannelStatus' => [ 'name' => 'DescribeDeliveryChannelStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDeliveryChannelStatusRequest', ], 'output' => [ 'shape' => 'DescribeDeliveryChannelStatusResponse', ], 'errors' => [ [ 'shape' => 'NoSuchDeliveryChannelException', ], ], ], 'DescribeDeliveryChannels' => [ 'name' => 'DescribeDeliveryChannels', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDeliveryChannelsRequest', ], 'output' => [ 'shape' => 'DescribeDeliveryChannelsResponse', ], 'errors' => [ [ 'shape' => 'NoSuchDeliveryChannelException', ], ], ], 'GetComplianceDetailsByConfigRule' => [ 'name' => 'GetComplianceDetailsByConfigRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetComplianceDetailsByConfigRuleRequest', ], 'output' => [ 'shape' => 'GetComplianceDetailsByConfigRuleResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'NoSuchConfigRuleException', ], ], ], 'GetComplianceDetailsByResource' => [ 'name' => 'GetComplianceDetailsByResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetComplianceDetailsByResourceRequest', ], 'output' => [ 'shape' => 'GetComplianceDetailsByResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], ], ], 'GetComplianceSummaryByConfigRule' => [ 'name' => 'GetComplianceSummaryByConfigRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'GetComplianceSummaryByConfigRuleResponse', ], ], 'GetComplianceSummaryByResourceType' => [ 'name' => 'GetComplianceSummaryByResourceType', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetComplianceSummaryByResourceTypeRequest', ], 'output' => [ 'shape' => 'GetComplianceSummaryByResourceTypeResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], ], ], 'GetResourceConfigHistory' => [ 'name' => 'GetResourceConfigHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetResourceConfigHistoryRequest', ], 'output' => [ 'shape' => 'GetResourceConfigHistoryResponse', ], 'errors' => [ [ 'shape' => 'ValidationException', ], [ 'shape' => 'InvalidTimeRangeException', ], [ 'shape' => 'InvalidLimitException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'NoAvailableConfigurationRecorderException', ], [ 'shape' => 'ResourceNotDiscoveredException', ], ], ], 'ListDiscoveredResources' => [ 'name' => 'ListDiscoveredResources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListDiscoveredResourcesRequest', ], 'output' => [ 'shape' => 'ListDiscoveredResourcesResponse', ], 'errors' => [ [ 'shape' => 'ValidationException', ], [ 'shape' => 'InvalidLimitException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'NoAvailableConfigurationRecorderException', ], ], ], 'PutConfigRule' => [ 'name' => 'PutConfigRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutConfigRuleRequest', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'MaxNumberOfConfigRulesExceededException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InsufficientPermissionsException', ], [ 'shape' => 'NoAvailableConfigurationRecorderException', ], ], ], 'PutConfigurationRecorder' => [ 'name' => 'PutConfigurationRecorder', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutConfigurationRecorderRequest', ], 'errors' => [ [ 'shape' => 'MaxNumberOfConfigurationRecordersExceededException', ], [ 'shape' => 'InvalidConfigurationRecorderNameException', ], [ 'shape' => 'InvalidRoleException', ], [ 'shape' => 'InvalidRecordingGroupException', ], ], ], 'PutDeliveryChannel' => [ 'name' => 'PutDeliveryChannel', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutDeliveryChannelRequest', ], 'errors' => [ [ 'shape' => 'MaxNumberOfDeliveryChannelsExceededException', ], [ 'shape' => 'NoAvailableConfigurationRecorderException', ], [ 'shape' => 'InvalidDeliveryChannelNameException', ], [ 'shape' => 'NoSuchBucketException', ], [ 'shape' => 'InvalidS3KeyPrefixException', ], [ 'shape' => 'InvalidSNSTopicARNException', ], [ 'shape' => 'InsufficientDeliveryPolicyException', ], ], ], 'PutEvaluations' => [ 'name' => 'PutEvaluations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutEvaluationsRequest', ], 'output' => [ 'shape' => 'PutEvaluationsResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidResultTokenException', ], [ 'shape' => 'NoSuchConfigRuleException', ], ], ], 'StartConfigRulesEvaluation' => [ 'name' => 'StartConfigRulesEvaluation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartConfigRulesEvaluationRequest', ], 'output' => [ 'shape' => 'StartConfigRulesEvaluationResponse', ], 'errors' => [ [ 'shape' => 'NoSuchConfigRuleException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidParameterValueException', ], ], ], 'StartConfigurationRecorder' => [ 'name' => 'StartConfigurationRecorder', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartConfigurationRecorderRequest', ], 'errors' => [ [ 'shape' => 'NoSuchConfigurationRecorderException', ], [ 'shape' => 'NoAvailableDeliveryChannelException', ], ], ], 'StopConfigurationRecorder' => [ 'name' => 'StopConfigurationRecorder', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopConfigurationRecorderRequest', ], 'errors' => [ [ 'shape' => 'NoSuchConfigurationRecorderException', ], ], ], ], 'shapes' => [ 'ARN' => [ 'type' => 'string', ], 'AccountId' => [ 'type' => 'string', ], 'AllSupported' => [ 'type' => 'boolean', ], 'AvailabilityZone' => [ 'type' => 'string', ], 'AwsRegion' => [ 'type' => 'string', ], 'Boolean' => [ 'type' => 'boolean', ], 'ChannelName' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'ChronologicalOrder' => [ 'type' => 'string', 'enum' => [ 'Reverse', 'Forward', ], ], 'Compliance' => [ 'type' => 'structure', 'members' => [ 'ComplianceType' => [ 'shape' => 'ComplianceType', ], 'ComplianceContributorCount' => [ 'shape' => 'ComplianceContributorCount', ], ], ], 'ComplianceByConfigRule' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], 'Compliance' => [ 'shape' => 'Compliance', ], ], ], 'ComplianceByConfigRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'ComplianceByConfigRule', ], ], 'ComplianceByResource' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'StringWithCharLimit256', ], 'ResourceId' => [ 'shape' => 'StringWithCharLimit256', ], 'Compliance' => [ 'shape' => 'Compliance', ], ], ], 'ComplianceByResources' => [ 'type' => 'list', 'member' => [ 'shape' => 'ComplianceByResource', ], ], 'ComplianceContributorCount' => [ 'type' => 'structure', 'members' => [ 'CappedCount' => [ 'shape' => 'Integer', ], 'CapExceeded' => [ 'shape' => 'Boolean', ], ], ], 'ComplianceResourceTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'StringWithCharLimit256', ], 'max' => 100, 'min' => 0, ], 'ComplianceSummariesByResourceType' => [ 'type' => 'list', 'member' => [ 'shape' => 'ComplianceSummaryByResourceType', ], ], 'ComplianceSummary' => [ 'type' => 'structure', 'members' => [ 'CompliantResourceCount' => [ 'shape' => 'ComplianceContributorCount', ], 'NonCompliantResourceCount' => [ 'shape' => 'ComplianceContributorCount', ], 'ComplianceSummaryTimestamp' => [ 'shape' => 'Date', ], ], ], 'ComplianceSummaryByResourceType' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'StringWithCharLimit256', ], 'ComplianceSummary' => [ 'shape' => 'ComplianceSummary', ], ], ], 'ComplianceType' => [ 'type' => 'string', 'enum' => [ 'COMPLIANT', 'NON_COMPLIANT', 'NOT_APPLICABLE', 'INSUFFICIENT_DATA', ], ], 'ComplianceTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'ComplianceType', ], 'max' => 3, 'min' => 0, ], 'ConfigExportDeliveryInfo' => [ 'type' => 'structure', 'members' => [ 'lastStatus' => [ 'shape' => 'DeliveryStatus', ], 'lastErrorCode' => [ 'shape' => 'String', ], 'lastErrorMessage' => [ 'shape' => 'String', ], 'lastAttemptTime' => [ 'shape' => 'Date', ], 'lastSuccessfulTime' => [ 'shape' => 'Date', ], 'nextDeliveryTime' => [ 'shape' => 'Date', ], ], ], 'ConfigRule' => [ 'type' => 'structure', 'required' => [ 'Source', ], 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], 'ConfigRuleArn' => [ 'shape' => 'String', ], 'ConfigRuleId' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'EmptiableStringWithCharLimit256', ], 'Scope' => [ 'shape' => 'Scope', ], 'Source' => [ 'shape' => 'Source', ], 'InputParameters' => [ 'shape' => 'StringWithCharLimit256', ], 'MaximumExecutionFrequency' => [ 'shape' => 'MaximumExecutionFrequency', ], 'ConfigRuleState' => [ 'shape' => 'ConfigRuleState', ], ], ], 'ConfigRuleEvaluationStatus' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], 'ConfigRuleArn' => [ 'shape' => 'String', ], 'ConfigRuleId' => [ 'shape' => 'String', ], 'LastSuccessfulInvocationTime' => [ 'shape' => 'Date', ], 'LastFailedInvocationTime' => [ 'shape' => 'Date', ], 'LastSuccessfulEvaluationTime' => [ 'shape' => 'Date', ], 'LastFailedEvaluationTime' => [ 'shape' => 'Date', ], 'FirstActivatedTime' => [ 'shape' => 'Date', ], 'LastErrorCode' => [ 'shape' => 'String', ], 'LastErrorMessage' => [ 'shape' => 'String', ], 'FirstEvaluationStarted' => [ 'shape' => 'Boolean', ], ], ], 'ConfigRuleEvaluationStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigRuleEvaluationStatus', ], ], 'ConfigRuleNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'StringWithCharLimit64', ], 'max' => 25, 'min' => 0, ], 'ConfigRuleState' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'DELETING', 'DELETING_RESULTS', 'EVALUATING', ], ], 'ConfigRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigRule', ], ], 'ConfigSnapshotDeliveryProperties' => [ 'type' => 'structure', 'members' => [ 'deliveryFrequency' => [ 'shape' => 'MaximumExecutionFrequency', ], ], ], 'ConfigStreamDeliveryInfo' => [ 'type' => 'structure', 'members' => [ 'lastStatus' => [ 'shape' => 'DeliveryStatus', ], 'lastErrorCode' => [ 'shape' => 'String', ], 'lastErrorMessage' => [ 'shape' => 'String', ], 'lastStatusChangeTime' => [ 'shape' => 'Date', ], ], ], 'Configuration' => [ 'type' => 'string', ], 'ConfigurationItem' => [ 'type' => 'structure', 'members' => [ 'version' => [ 'shape' => 'Version', ], 'accountId' => [ 'shape' => 'AccountId', ], 'configurationItemCaptureTime' => [ 'shape' => 'ConfigurationItemCaptureTime', ], 'configurationItemStatus' => [ 'shape' => 'ConfigurationItemStatus', ], 'configurationStateId' => [ 'shape' => 'ConfigurationStateId', ], 'configurationItemMD5Hash' => [ 'shape' => 'ConfigurationItemMD5Hash', ], 'arn' => [ 'shape' => 'ARN', ], 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceId' => [ 'shape' => 'ResourceId', ], 'resourceName' => [ 'shape' => 'ResourceName', ], 'awsRegion' => [ 'shape' => 'AwsRegion', ], 'availabilityZone' => [ 'shape' => 'AvailabilityZone', ], 'resourceCreationTime' => [ 'shape' => 'ResourceCreationTime', ], 'tags' => [ 'shape' => 'Tags', ], 'relatedEvents' => [ 'shape' => 'RelatedEventList', ], 'relationships' => [ 'shape' => 'RelationshipList', ], 'configuration' => [ 'shape' => 'Configuration', ], 'supplementaryConfiguration' => [ 'shape' => 'SupplementaryConfiguration', ], ], ], 'ConfigurationItemCaptureTime' => [ 'type' => 'timestamp', ], 'ConfigurationItemList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationItem', ], ], 'ConfigurationItemMD5Hash' => [ 'type' => 'string', ], 'ConfigurationItemStatus' => [ 'type' => 'string', 'enum' => [ 'Ok', 'Failed', 'Discovered', 'Deleted', ], ], 'ConfigurationRecorder' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'RecorderName', ], 'roleARN' => [ 'shape' => 'String', ], 'recordingGroup' => [ 'shape' => 'RecordingGroup', ], ], ], 'ConfigurationRecorderList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationRecorder', ], ], 'ConfigurationRecorderNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecorderName', ], ], 'ConfigurationRecorderStatus' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'lastStartTime' => [ 'shape' => 'Date', ], 'lastStopTime' => [ 'shape' => 'Date', ], 'recording' => [ 'shape' => 'Boolean', ], 'lastStatus' => [ 'shape' => 'RecorderStatus', ], 'lastErrorCode' => [ 'shape' => 'String', ], 'lastErrorMessage' => [ 'shape' => 'String', ], 'lastStatusChangeTime' => [ 'shape' => 'Date', ], ], ], 'ConfigurationRecorderStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationRecorderStatus', ], ], 'ConfigurationStateId' => [ 'type' => 'string', ], 'Date' => [ 'type' => 'timestamp', ], 'DeleteConfigRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigRuleName', ], 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], ], ], 'DeleteConfigurationRecorderRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationRecorderName', ], 'members' => [ 'ConfigurationRecorderName' => [ 'shape' => 'RecorderName', ], ], ], 'DeleteDeliveryChannelRequest' => [ 'type' => 'structure', 'required' => [ 'DeliveryChannelName', ], 'members' => [ 'DeliveryChannelName' => [ 'shape' => 'ChannelName', ], ], ], 'DeleteEvaluationResultsRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigRuleName', ], 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], ], ], 'DeleteEvaluationResultsResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeliverConfigSnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'deliveryChannelName', ], 'members' => [ 'deliveryChannelName' => [ 'shape' => 'ChannelName', ], ], ], 'DeliverConfigSnapshotResponse' => [ 'type' => 'structure', 'members' => [ 'configSnapshotId' => [ 'shape' => 'String', ], ], ], 'DeliveryChannel' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'ChannelName', ], 's3BucketName' => [ 'shape' => 'String', ], 's3KeyPrefix' => [ 'shape' => 'String', ], 'snsTopicARN' => [ 'shape' => 'String', ], 'configSnapshotDeliveryProperties' => [ 'shape' => 'ConfigSnapshotDeliveryProperties', ], ], ], 'DeliveryChannelList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeliveryChannel', ], ], 'DeliveryChannelNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ChannelName', ], ], 'DeliveryChannelStatus' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'configSnapshotDeliveryInfo' => [ 'shape' => 'ConfigExportDeliveryInfo', ], 'configHistoryDeliveryInfo' => [ 'shape' => 'ConfigExportDeliveryInfo', ], 'configStreamDeliveryInfo' => [ 'shape' => 'ConfigStreamDeliveryInfo', ], ], ], 'DeliveryChannelStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeliveryChannelStatus', ], ], 'DeliveryStatus' => [ 'type' => 'string', 'enum' => [ 'Success', 'Failure', 'Not_Applicable', ], ], 'DescribeComplianceByConfigRuleRequest' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleNames' => [ 'shape' => 'ConfigRuleNames', ], 'ComplianceTypes' => [ 'shape' => 'ComplianceTypes', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeComplianceByConfigRuleResponse' => [ 'type' => 'structure', 'members' => [ 'ComplianceByConfigRules' => [ 'shape' => 'ComplianceByConfigRules', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeComplianceByResourceRequest' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'StringWithCharLimit256', ], 'ResourceId' => [ 'shape' => 'StringWithCharLimit256', ], 'ComplianceTypes' => [ 'shape' => 'ComplianceTypes', ], 'Limit' => [ 'shape' => 'Limit', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeComplianceByResourceResponse' => [ 'type' => 'structure', 'members' => [ 'ComplianceByResources' => [ 'shape' => 'ComplianceByResources', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeConfigRuleEvaluationStatusRequest' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleNames' => [ 'shape' => 'ConfigRuleNames', ], ], ], 'DescribeConfigRuleEvaluationStatusResponse' => [ 'type' => 'structure', 'members' => [ 'ConfigRulesEvaluationStatus' => [ 'shape' => 'ConfigRuleEvaluationStatusList', ], ], ], 'DescribeConfigRulesRequest' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleNames' => [ 'shape' => 'ConfigRuleNames', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeConfigRulesResponse' => [ 'type' => 'structure', 'members' => [ 'ConfigRules' => [ 'shape' => 'ConfigRules', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeConfigurationRecorderStatusRequest' => [ 'type' => 'structure', 'members' => [ 'ConfigurationRecorderNames' => [ 'shape' => 'ConfigurationRecorderNameList', ], ], ], 'DescribeConfigurationRecorderStatusResponse' => [ 'type' => 'structure', 'members' => [ 'ConfigurationRecordersStatus' => [ 'shape' => 'ConfigurationRecorderStatusList', ], ], ], 'DescribeConfigurationRecordersRequest' => [ 'type' => 'structure', 'members' => [ 'ConfigurationRecorderNames' => [ 'shape' => 'ConfigurationRecorderNameList', ], ], ], 'DescribeConfigurationRecordersResponse' => [ 'type' => 'structure', 'members' => [ 'ConfigurationRecorders' => [ 'shape' => 'ConfigurationRecorderList', ], ], ], 'DescribeDeliveryChannelStatusRequest' => [ 'type' => 'structure', 'members' => [ 'DeliveryChannelNames' => [ 'shape' => 'DeliveryChannelNameList', ], ], ], 'DescribeDeliveryChannelStatusResponse' => [ 'type' => 'structure', 'members' => [ 'DeliveryChannelsStatus' => [ 'shape' => 'DeliveryChannelStatusList', ], ], ], 'DescribeDeliveryChannelsRequest' => [ 'type' => 'structure', 'members' => [ 'DeliveryChannelNames' => [ 'shape' => 'DeliveryChannelNameList', ], ], ], 'DescribeDeliveryChannelsResponse' => [ 'type' => 'structure', 'members' => [ 'DeliveryChannels' => [ 'shape' => 'DeliveryChannelList', ], ], ], 'EarlierTime' => [ 'type' => 'timestamp', ], 'EmptiableStringWithCharLimit256' => [ 'type' => 'string', 'max' => 256, 'min' => 0, ], 'Evaluation' => [ 'type' => 'structure', 'required' => [ 'ComplianceResourceType', 'ComplianceResourceId', 'ComplianceType', 'OrderingTimestamp', ], 'members' => [ 'ComplianceResourceType' => [ 'shape' => 'StringWithCharLimit256', ], 'ComplianceResourceId' => [ 'shape' => 'StringWithCharLimit256', ], 'ComplianceType' => [ 'shape' => 'ComplianceType', ], 'Annotation' => [ 'shape' => 'StringWithCharLimit256', ], 'OrderingTimestamp' => [ 'shape' => 'OrderingTimestamp', ], ], ], 'EvaluationResult' => [ 'type' => 'structure', 'members' => [ 'EvaluationResultIdentifier' => [ 'shape' => 'EvaluationResultIdentifier', ], 'ComplianceType' => [ 'shape' => 'ComplianceType', ], 'ResultRecordedTime' => [ 'shape' => 'Date', ], 'ConfigRuleInvokedTime' => [ 'shape' => 'Date', ], 'Annotation' => [ 'shape' => 'StringWithCharLimit256', ], 'ResultToken' => [ 'shape' => 'String', ], ], ], 'EvaluationResultIdentifier' => [ 'type' => 'structure', 'members' => [ 'EvaluationResultQualifier' => [ 'shape' => 'EvaluationResultQualifier', ], 'OrderingTimestamp' => [ 'shape' => 'Date', ], ], ], 'EvaluationResultQualifier' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], 'ResourceType' => [ 'shape' => 'StringWithCharLimit256', ], 'ResourceId' => [ 'shape' => 'StringWithCharLimit256', ], ], ], 'EvaluationResults' => [ 'type' => 'list', 'member' => [ 'shape' => 'EvaluationResult', ], ], 'Evaluations' => [ 'type' => 'list', 'member' => [ 'shape' => 'Evaluation', ], 'max' => 100, 'min' => 0, ], 'EventSource' => [ 'type' => 'string', 'enum' => [ 'aws.config', ], ], 'GetComplianceDetailsByConfigRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigRuleName', ], 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], 'ComplianceTypes' => [ 'shape' => 'ComplianceTypes', ], 'Limit' => [ 'shape' => 'Limit', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetComplianceDetailsByConfigRuleResponse' => [ 'type' => 'structure', 'members' => [ 'EvaluationResults' => [ 'shape' => 'EvaluationResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetComplianceDetailsByResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceType', 'ResourceId', ], 'members' => [ 'ResourceType' => [ 'shape' => 'StringWithCharLimit256', ], 'ResourceId' => [ 'shape' => 'StringWithCharLimit256', ], 'ComplianceTypes' => [ 'shape' => 'ComplianceTypes', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'GetComplianceDetailsByResourceResponse' => [ 'type' => 'structure', 'members' => [ 'EvaluationResults' => [ 'shape' => 'EvaluationResults', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'GetComplianceSummaryByConfigRuleResponse' => [ 'type' => 'structure', 'members' => [ 'ComplianceSummary' => [ 'shape' => 'ComplianceSummary', ], ], ], 'GetComplianceSummaryByResourceTypeRequest' => [ 'type' => 'structure', 'members' => [ 'ResourceTypes' => [ 'shape' => 'ResourceTypes', ], ], ], 'GetComplianceSummaryByResourceTypeResponse' => [ 'type' => 'structure', 'members' => [ 'ComplianceSummariesByResourceType' => [ 'shape' => 'ComplianceSummariesByResourceType', ], ], ], 'GetResourceConfigHistoryRequest' => [ 'type' => 'structure', 'required' => [ 'resourceType', 'resourceId', ], 'members' => [ 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceId' => [ 'shape' => 'ResourceId', ], 'laterTime' => [ 'shape' => 'LaterTime', ], 'earlierTime' => [ 'shape' => 'EarlierTime', ], 'chronologicalOrder' => [ 'shape' => 'ChronologicalOrder', ], 'limit' => [ 'shape' => 'Limit', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetResourceConfigHistoryResponse' => [ 'type' => 'structure', 'members' => [ 'configurationItems' => [ 'shape' => 'ConfigurationItemList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'IncludeGlobalResourceTypes' => [ 'type' => 'boolean', ], 'InsufficientDeliveryPolicyException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InsufficientPermissionsException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'Integer' => [ 'type' => 'integer', ], 'InvalidConfigurationRecorderNameException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidDeliveryChannelNameException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidLimitException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidNextTokenException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidParameterValueException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidRecordingGroupException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidResultTokenException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidRoleException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidS3KeyPrefixException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidSNSTopicARNException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidTimeRangeException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'LastDeliveryChannelDeleteFailedException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'LaterTime' => [ 'type' => 'timestamp', ], 'Limit' => [ 'type' => 'integer', 'max' => 100, 'min' => 0, ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ListDiscoveredResourcesRequest' => [ 'type' => 'structure', 'required' => [ 'resourceType', ], 'members' => [ 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceIds' => [ 'shape' => 'ResourceIdList', ], 'resourceName' => [ 'shape' => 'ResourceName', ], 'limit' => [ 'shape' => 'Limit', ], 'includeDeletedResources' => [ 'shape' => 'Boolean', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDiscoveredResourcesResponse' => [ 'type' => 'structure', 'members' => [ 'resourceIdentifiers' => [ 'shape' => 'ResourceIdentifierList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'MaxNumberOfConfigRulesExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'MaxNumberOfConfigurationRecordersExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'MaxNumberOfDeliveryChannelsExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'MaximumExecutionFrequency' => [ 'type' => 'string', 'enum' => [ 'One_Hour', 'Three_Hours', 'Six_Hours', 'Twelve_Hours', 'TwentyFour_Hours', ], ], 'MessageType' => [ 'type' => 'string', 'enum' => [ 'ConfigurationItemChangeNotification', 'ConfigurationSnapshotDeliveryCompleted', 'ScheduledNotification', ], ], 'Name' => [ 'type' => 'string', ], 'NextToken' => [ 'type' => 'string', ], 'NoAvailableConfigurationRecorderException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoAvailableDeliveryChannelException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoRunningConfigurationRecorderException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoSuchBucketException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoSuchConfigRuleException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoSuchConfigurationRecorderException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoSuchDeliveryChannelException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'OrderingTimestamp' => [ 'type' => 'timestamp', ], 'Owner' => [ 'type' => 'string', 'enum' => [ 'CUSTOM_LAMBDA', 'AWS', ], ], 'PutConfigRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigRule', ], 'members' => [ 'ConfigRule' => [ 'shape' => 'ConfigRule', ], ], ], 'PutConfigurationRecorderRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationRecorder', ], 'members' => [ 'ConfigurationRecorder' => [ 'shape' => 'ConfigurationRecorder', ], ], ], 'PutDeliveryChannelRequest' => [ 'type' => 'structure', 'required' => [ 'DeliveryChannel', ], 'members' => [ 'DeliveryChannel' => [ 'shape' => 'DeliveryChannel', ], ], ], 'PutEvaluationsRequest' => [ 'type' => 'structure', 'required' => [ 'ResultToken', ], 'members' => [ 'Evaluations' => [ 'shape' => 'Evaluations', ], 'ResultToken' => [ 'shape' => 'String', ], ], ], 'PutEvaluationsResponse' => [ 'type' => 'structure', 'members' => [ 'FailedEvaluations' => [ 'shape' => 'Evaluations', ], ], ], 'RecorderName' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'RecorderStatus' => [ 'type' => 'string', 'enum' => [ 'Pending', 'Success', 'Failure', ], ], 'RecordingGroup' => [ 'type' => 'structure', 'members' => [ 'allSupported' => [ 'shape' => 'AllSupported', ], 'includeGlobalResourceTypes' => [ 'shape' => 'IncludeGlobalResourceTypes', ], 'resourceTypes' => [ 'shape' => 'ResourceTypeList', ], ], ], 'ReevaluateConfigRuleNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'StringWithCharLimit64', ], 'max' => 25, 'min' => 1, ], 'RelatedEvent' => [ 'type' => 'string', ], 'RelatedEventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RelatedEvent', ], ], 'Relationship' => [ 'type' => 'structure', 'members' => [ 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceId' => [ 'shape' => 'ResourceId', ], 'resourceName' => [ 'shape' => 'ResourceName', ], 'relationshipName' => [ 'shape' => 'RelationshipName', ], ], ], 'RelationshipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Relationship', ], ], 'RelationshipName' => [ 'type' => 'string', ], 'ResourceCreationTime' => [ 'type' => 'timestamp', ], 'ResourceDeletionTime' => [ 'type' => 'timestamp', ], 'ResourceId' => [ 'type' => 'string', ], 'ResourceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceId', ], ], 'ResourceIdentifier' => [ 'type' => 'structure', 'members' => [ 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceId' => [ 'shape' => 'ResourceId', ], 'resourceName' => [ 'shape' => 'ResourceName', ], 'resourceDeletionTime' => [ 'shape' => 'ResourceDeletionTime', ], ], ], 'ResourceIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceIdentifier', ], ], 'ResourceInUseException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ResourceName' => [ 'type' => 'string', ], 'ResourceNotDiscoveredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ResourceType' => [ 'type' => 'string', 'enum' => [ 'AWS::EC2::CustomerGateway', 'AWS::EC2::EIP', 'AWS::EC2::Host', 'AWS::EC2::Instance', 'AWS::EC2::InternetGateway', 'AWS::EC2::NetworkAcl', 'AWS::EC2::NetworkInterface', 'AWS::EC2::RouteTable', 'AWS::EC2::SecurityGroup', 'AWS::EC2::Subnet', 'AWS::CloudTrail::Trail', 'AWS::EC2::Volume', 'AWS::EC2::VPC', 'AWS::EC2::VPNConnection', 'AWS::EC2::VPNGateway', 'AWS::IAM::Group', 'AWS::IAM::Policy', 'AWS::IAM::Role', 'AWS::IAM::User', 'AWS::ACM::Certificate', 'AWS::RDS::DBInstance', 'AWS::RDS::DBSubnetGroup', 'AWS::RDS::DBSecurityGroup', 'AWS::RDS::DBSnapshot', 'AWS::RDS::EventSubscription', 'AWS::ElasticLoadBalancingV2::LoadBalancer', ], ], 'ResourceTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceType', ], ], 'ResourceTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'StringWithCharLimit256', ], 'max' => 20, 'min' => 0, ], 'Scope' => [ 'type' => 'structure', 'members' => [ 'ComplianceResourceTypes' => [ 'shape' => 'ComplianceResourceTypes', ], 'TagKey' => [ 'shape' => 'StringWithCharLimit128', ], 'TagValue' => [ 'shape' => 'StringWithCharLimit256', ], 'ComplianceResourceId' => [ 'shape' => 'StringWithCharLimit256', ], ], ], 'Source' => [ 'type' => 'structure', 'members' => [ 'Owner' => [ 'shape' => 'Owner', ], 'SourceIdentifier' => [ 'shape' => 'StringWithCharLimit256', ], 'SourceDetails' => [ 'shape' => 'SourceDetails', ], ], ], 'SourceDetail' => [ 'type' => 'structure', 'members' => [ 'EventSource' => [ 'shape' => 'EventSource', ], 'MessageType' => [ 'shape' => 'MessageType', ], 'MaximumExecutionFrequency' => [ 'shape' => 'MaximumExecutionFrequency', ], ], ], 'SourceDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'SourceDetail', ], 'max' => 25, 'min' => 0, ], 'StartConfigRulesEvaluationRequest' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleNames' => [ 'shape' => 'ReevaluateConfigRuleNames', ], ], ], 'StartConfigRulesEvaluationResponse' => [ 'type' => 'structure', 'members' => [], ], 'StartConfigurationRecorderRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationRecorderName', ], 'members' => [ 'ConfigurationRecorderName' => [ 'shape' => 'RecorderName', ], ], ], 'StopConfigurationRecorderRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationRecorderName', ], 'members' => [ 'ConfigurationRecorderName' => [ 'shape' => 'RecorderName', ], ], ], 'String' => [ 'type' => 'string', ], 'StringWithCharLimit128' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'StringWithCharLimit256' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'StringWithCharLimit64' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'SupplementaryConfiguration' => [ 'type' => 'map', 'key' => [ 'shape' => 'SupplementaryConfigurationName', ], 'value' => [ 'shape' => 'SupplementaryConfigurationValue', ], ], 'SupplementaryConfigurationName' => [ 'type' => 'string', ], 'SupplementaryConfigurationValue' => [ 'type' => 'string', ], 'Tags' => [ 'type' => 'map', 'key' => [ 'shape' => 'Name', ], 'value' => [ 'shape' => 'Value', ], ], 'ValidationException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'Value' => [ 'type' => 'string', ], 'Version' => [ 'type' => 'string', ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2014-11-12', 'endpointPrefix' => 'config', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'Config Service', 'serviceFullName' => 'AWS Config', 'signatureVersion' => 'v4', 'targetPrefix' => 'StarlingDoveService', ], 'operations' => [ 'DeleteConfigRule' => [ 'name' => 'DeleteConfigRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteConfigRuleRequest', ], 'errors' => [ [ 'shape' => 'NoSuchConfigRuleException', ], [ 'shape' => 'ResourceInUseException', ], ], ], 'DeleteConfigurationRecorder' => [ 'name' => 'DeleteConfigurationRecorder', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteConfigurationRecorderRequest', ], 'errors' => [ [ 'shape' => 'NoSuchConfigurationRecorderException', ], ], ], 'DeleteDeliveryChannel' => [ 'name' => 'DeleteDeliveryChannel', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDeliveryChannelRequest', ], 'errors' => [ [ 'shape' => 'NoSuchDeliveryChannelException', ], [ 'shape' => 'LastDeliveryChannelDeleteFailedException', ], ], ], 'DeleteEvaluationResults' => [ 'name' => 'DeleteEvaluationResults', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteEvaluationResultsRequest', ], 'output' => [ 'shape' => 'DeleteEvaluationResultsResponse', ], 'errors' => [ [ 'shape' => 'NoSuchConfigRuleException', ], [ 'shape' => 'ResourceInUseException', ], ], ], 'DeliverConfigSnapshot' => [ 'name' => 'DeliverConfigSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeliverConfigSnapshotRequest', ], 'output' => [ 'shape' => 'DeliverConfigSnapshotResponse', ], 'errors' => [ [ 'shape' => 'NoSuchDeliveryChannelException', ], [ 'shape' => 'NoAvailableConfigurationRecorderException', ], [ 'shape' => 'NoRunningConfigurationRecorderException', ], ], ], 'DescribeComplianceByConfigRule' => [ 'name' => 'DescribeComplianceByConfigRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeComplianceByConfigRuleRequest', ], 'output' => [ 'shape' => 'DescribeComplianceByConfigRuleResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'NoSuchConfigRuleException', ], ], ], 'DescribeComplianceByResource' => [ 'name' => 'DescribeComplianceByResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeComplianceByResourceRequest', ], 'output' => [ 'shape' => 'DescribeComplianceByResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidNextTokenException', ], ], ], 'DescribeConfigRuleEvaluationStatus' => [ 'name' => 'DescribeConfigRuleEvaluationStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConfigRuleEvaluationStatusRequest', ], 'output' => [ 'shape' => 'DescribeConfigRuleEvaluationStatusResponse', ], 'errors' => [ [ 'shape' => 'NoSuchConfigRuleException', ], ], ], 'DescribeConfigRules' => [ 'name' => 'DescribeConfigRules', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConfigRulesRequest', ], 'output' => [ 'shape' => 'DescribeConfigRulesResponse', ], 'errors' => [ [ 'shape' => 'NoSuchConfigRuleException', ], ], ], 'DescribeConfigurationRecorderStatus' => [ 'name' => 'DescribeConfigurationRecorderStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConfigurationRecorderStatusRequest', ], 'output' => [ 'shape' => 'DescribeConfigurationRecorderStatusResponse', ], 'errors' => [ [ 'shape' => 'NoSuchConfigurationRecorderException', ], ], ], 'DescribeConfigurationRecorders' => [ 'name' => 'DescribeConfigurationRecorders', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConfigurationRecordersRequest', ], 'output' => [ 'shape' => 'DescribeConfigurationRecordersResponse', ], 'errors' => [ [ 'shape' => 'NoSuchConfigurationRecorderException', ], ], ], 'DescribeDeliveryChannelStatus' => [ 'name' => 'DescribeDeliveryChannelStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDeliveryChannelStatusRequest', ], 'output' => [ 'shape' => 'DescribeDeliveryChannelStatusResponse', ], 'errors' => [ [ 'shape' => 'NoSuchDeliveryChannelException', ], ], ], 'DescribeDeliveryChannels' => [ 'name' => 'DescribeDeliveryChannels', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDeliveryChannelsRequest', ], 'output' => [ 'shape' => 'DescribeDeliveryChannelsResponse', ], 'errors' => [ [ 'shape' => 'NoSuchDeliveryChannelException', ], ], ], 'GetComplianceDetailsByConfigRule' => [ 'name' => 'GetComplianceDetailsByConfigRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetComplianceDetailsByConfigRuleRequest', ], 'output' => [ 'shape' => 'GetComplianceDetailsByConfigRuleResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'NoSuchConfigRuleException', ], ], ], 'GetComplianceDetailsByResource' => [ 'name' => 'GetComplianceDetailsByResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetComplianceDetailsByResourceRequest', ], 'output' => [ 'shape' => 'GetComplianceDetailsByResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], ], ], 'GetComplianceSummaryByConfigRule' => [ 'name' => 'GetComplianceSummaryByConfigRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'GetComplianceSummaryByConfigRuleResponse', ], ], 'GetComplianceSummaryByResourceType' => [ 'name' => 'GetComplianceSummaryByResourceType', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetComplianceSummaryByResourceTypeRequest', ], 'output' => [ 'shape' => 'GetComplianceSummaryByResourceTypeResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], ], ], 'GetResourceConfigHistory' => [ 'name' => 'GetResourceConfigHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetResourceConfigHistoryRequest', ], 'output' => [ 'shape' => 'GetResourceConfigHistoryResponse', ], 'errors' => [ [ 'shape' => 'ValidationException', ], [ 'shape' => 'InvalidTimeRangeException', ], [ 'shape' => 'InvalidLimitException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'NoAvailableConfigurationRecorderException', ], [ 'shape' => 'ResourceNotDiscoveredException', ], ], ], 'ListDiscoveredResources' => [ 'name' => 'ListDiscoveredResources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListDiscoveredResourcesRequest', ], 'output' => [ 'shape' => 'ListDiscoveredResourcesResponse', ], 'errors' => [ [ 'shape' => 'ValidationException', ], [ 'shape' => 'InvalidLimitException', ], [ 'shape' => 'InvalidNextTokenException', ], [ 'shape' => 'NoAvailableConfigurationRecorderException', ], ], ], 'PutConfigRule' => [ 'name' => 'PutConfigRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutConfigRuleRequest', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'MaxNumberOfConfigRulesExceededException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InsufficientPermissionsException', ], [ 'shape' => 'NoAvailableConfigurationRecorderException', ], ], ], 'PutConfigurationRecorder' => [ 'name' => 'PutConfigurationRecorder', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutConfigurationRecorderRequest', ], 'errors' => [ [ 'shape' => 'MaxNumberOfConfigurationRecordersExceededException', ], [ 'shape' => 'InvalidConfigurationRecorderNameException', ], [ 'shape' => 'InvalidRoleException', ], [ 'shape' => 'InvalidRecordingGroupException', ], ], ], 'PutDeliveryChannel' => [ 'name' => 'PutDeliveryChannel', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutDeliveryChannelRequest', ], 'errors' => [ [ 'shape' => 'MaxNumberOfDeliveryChannelsExceededException', ], [ 'shape' => 'NoAvailableConfigurationRecorderException', ], [ 'shape' => 'InvalidDeliveryChannelNameException', ], [ 'shape' => 'NoSuchBucketException', ], [ 'shape' => 'InvalidS3KeyPrefixException', ], [ 'shape' => 'InvalidSNSTopicARNException', ], [ 'shape' => 'InsufficientDeliveryPolicyException', ], ], ], 'PutEvaluations' => [ 'name' => 'PutEvaluations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutEvaluationsRequest', ], 'output' => [ 'shape' => 'PutEvaluationsResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidResultTokenException', ], [ 'shape' => 'NoSuchConfigRuleException', ], ], ], 'StartConfigRulesEvaluation' => [ 'name' => 'StartConfigRulesEvaluation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartConfigRulesEvaluationRequest', ], 'output' => [ 'shape' => 'StartConfigRulesEvaluationResponse', ], 'errors' => [ [ 'shape' => 'NoSuchConfigRuleException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidParameterValueException', ], ], ], 'StartConfigurationRecorder' => [ 'name' => 'StartConfigurationRecorder', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartConfigurationRecorderRequest', ], 'errors' => [ [ 'shape' => 'NoSuchConfigurationRecorderException', ], [ 'shape' => 'NoAvailableDeliveryChannelException', ], ], ], 'StopConfigurationRecorder' => [ 'name' => 'StopConfigurationRecorder', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopConfigurationRecorderRequest', ], 'errors' => [ [ 'shape' => 'NoSuchConfigurationRecorderException', ], ], ], ], 'shapes' => [ 'ARN' => [ 'type' => 'string', ], 'AccountId' => [ 'type' => 'string', ], 'AllSupported' => [ 'type' => 'boolean', ], 'AvailabilityZone' => [ 'type' => 'string', ], 'AwsRegion' => [ 'type' => 'string', ], 'Boolean' => [ 'type' => 'boolean', ], 'ChannelName' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'ChronologicalOrder' => [ 'type' => 'string', 'enum' => [ 'Reverse', 'Forward', ], ], 'Compliance' => [ 'type' => 'structure', 'members' => [ 'ComplianceType' => [ 'shape' => 'ComplianceType', ], 'ComplianceContributorCount' => [ 'shape' => 'ComplianceContributorCount', ], ], ], 'ComplianceByConfigRule' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], 'Compliance' => [ 'shape' => 'Compliance', ], ], ], 'ComplianceByConfigRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'ComplianceByConfigRule', ], ], 'ComplianceByResource' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'StringWithCharLimit256', ], 'ResourceId' => [ 'shape' => 'StringWithCharLimit256', ], 'Compliance' => [ 'shape' => 'Compliance', ], ], ], 'ComplianceByResources' => [ 'type' => 'list', 'member' => [ 'shape' => 'ComplianceByResource', ], ], 'ComplianceContributorCount' => [ 'type' => 'structure', 'members' => [ 'CappedCount' => [ 'shape' => 'Integer', ], 'CapExceeded' => [ 'shape' => 'Boolean', ], ], ], 'ComplianceResourceTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'StringWithCharLimit256', ], 'max' => 100, 'min' => 0, ], 'ComplianceSummariesByResourceType' => [ 'type' => 'list', 'member' => [ 'shape' => 'ComplianceSummaryByResourceType', ], ], 'ComplianceSummary' => [ 'type' => 'structure', 'members' => [ 'CompliantResourceCount' => [ 'shape' => 'ComplianceContributorCount', ], 'NonCompliantResourceCount' => [ 'shape' => 'ComplianceContributorCount', ], 'ComplianceSummaryTimestamp' => [ 'shape' => 'Date', ], ], ], 'ComplianceSummaryByResourceType' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'StringWithCharLimit256', ], 'ComplianceSummary' => [ 'shape' => 'ComplianceSummary', ], ], ], 'ComplianceType' => [ 'type' => 'string', 'enum' => [ 'COMPLIANT', 'NON_COMPLIANT', 'NOT_APPLICABLE', 'INSUFFICIENT_DATA', ], ], 'ComplianceTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'ComplianceType', ], 'max' => 3, 'min' => 0, ], 'ConfigExportDeliveryInfo' => [ 'type' => 'structure', 'members' => [ 'lastStatus' => [ 'shape' => 'DeliveryStatus', ], 'lastErrorCode' => [ 'shape' => 'String', ], 'lastErrorMessage' => [ 'shape' => 'String', ], 'lastAttemptTime' => [ 'shape' => 'Date', ], 'lastSuccessfulTime' => [ 'shape' => 'Date', ], 'nextDeliveryTime' => [ 'shape' => 'Date', ], ], ], 'ConfigRule' => [ 'type' => 'structure', 'required' => [ 'Source', ], 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], 'ConfigRuleArn' => [ 'shape' => 'String', ], 'ConfigRuleId' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'EmptiableStringWithCharLimit256', ], 'Scope' => [ 'shape' => 'Scope', ], 'Source' => [ 'shape' => 'Source', ], 'InputParameters' => [ 'shape' => 'StringWithCharLimit256', ], 'MaximumExecutionFrequency' => [ 'shape' => 'MaximumExecutionFrequency', ], 'ConfigRuleState' => [ 'shape' => 'ConfigRuleState', ], ], ], 'ConfigRuleEvaluationStatus' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], 'ConfigRuleArn' => [ 'shape' => 'String', ], 'ConfigRuleId' => [ 'shape' => 'String', ], 'LastSuccessfulInvocationTime' => [ 'shape' => 'Date', ], 'LastFailedInvocationTime' => [ 'shape' => 'Date', ], 'LastSuccessfulEvaluationTime' => [ 'shape' => 'Date', ], 'LastFailedEvaluationTime' => [ 'shape' => 'Date', ], 'FirstActivatedTime' => [ 'shape' => 'Date', ], 'LastErrorCode' => [ 'shape' => 'String', ], 'LastErrorMessage' => [ 'shape' => 'String', ], 'FirstEvaluationStarted' => [ 'shape' => 'Boolean', ], ], ], 'ConfigRuleEvaluationStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigRuleEvaluationStatus', ], ], 'ConfigRuleNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'StringWithCharLimit64', ], 'max' => 25, 'min' => 0, ], 'ConfigRuleState' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'DELETING', 'DELETING_RESULTS', 'EVALUATING', ], ], 'ConfigRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigRule', ], ], 'ConfigSnapshotDeliveryProperties' => [ 'type' => 'structure', 'members' => [ 'deliveryFrequency' => [ 'shape' => 'MaximumExecutionFrequency', ], ], ], 'ConfigStreamDeliveryInfo' => [ 'type' => 'structure', 'members' => [ 'lastStatus' => [ 'shape' => 'DeliveryStatus', ], 'lastErrorCode' => [ 'shape' => 'String', ], 'lastErrorMessage' => [ 'shape' => 'String', ], 'lastStatusChangeTime' => [ 'shape' => 'Date', ], ], ], 'Configuration' => [ 'type' => 'string', ], 'ConfigurationItem' => [ 'type' => 'structure', 'members' => [ 'version' => [ 'shape' => 'Version', ], 'accountId' => [ 'shape' => 'AccountId', ], 'configurationItemCaptureTime' => [ 'shape' => 'ConfigurationItemCaptureTime', ], 'configurationItemStatus' => [ 'shape' => 'ConfigurationItemStatus', ], 'configurationStateId' => [ 'shape' => 'ConfigurationStateId', ], 'configurationItemMD5Hash' => [ 'shape' => 'ConfigurationItemMD5Hash', ], 'arn' => [ 'shape' => 'ARN', ], 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceId' => [ 'shape' => 'ResourceId', ], 'resourceName' => [ 'shape' => 'ResourceName', ], 'awsRegion' => [ 'shape' => 'AwsRegion', ], 'availabilityZone' => [ 'shape' => 'AvailabilityZone', ], 'resourceCreationTime' => [ 'shape' => 'ResourceCreationTime', ], 'tags' => [ 'shape' => 'Tags', ], 'relatedEvents' => [ 'shape' => 'RelatedEventList', ], 'relationships' => [ 'shape' => 'RelationshipList', ], 'configuration' => [ 'shape' => 'Configuration', ], 'supplementaryConfiguration' => [ 'shape' => 'SupplementaryConfiguration', ], ], ], 'ConfigurationItemCaptureTime' => [ 'type' => 'timestamp', ], 'ConfigurationItemList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationItem', ], ], 'ConfigurationItemMD5Hash' => [ 'type' => 'string', ], 'ConfigurationItemStatus' => [ 'type' => 'string', 'enum' => [ 'Ok', 'Failed', 'Discovered', 'Deleted', ], ], 'ConfigurationRecorder' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'RecorderName', ], 'roleARN' => [ 'shape' => 'String', ], 'recordingGroup' => [ 'shape' => 'RecordingGroup', ], ], ], 'ConfigurationRecorderList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationRecorder', ], ], 'ConfigurationRecorderNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecorderName', ], ], 'ConfigurationRecorderStatus' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'lastStartTime' => [ 'shape' => 'Date', ], 'lastStopTime' => [ 'shape' => 'Date', ], 'recording' => [ 'shape' => 'Boolean', ], 'lastStatus' => [ 'shape' => 'RecorderStatus', ], 'lastErrorCode' => [ 'shape' => 'String', ], 'lastErrorMessage' => [ 'shape' => 'String', ], 'lastStatusChangeTime' => [ 'shape' => 'Date', ], ], ], 'ConfigurationRecorderStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationRecorderStatus', ], ], 'ConfigurationStateId' => [ 'type' => 'string', ], 'Date' => [ 'type' => 'timestamp', ], 'DeleteConfigRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigRuleName', ], 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], ], ], 'DeleteConfigurationRecorderRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationRecorderName', ], 'members' => [ 'ConfigurationRecorderName' => [ 'shape' => 'RecorderName', ], ], ], 'DeleteDeliveryChannelRequest' => [ 'type' => 'structure', 'required' => [ 'DeliveryChannelName', ], 'members' => [ 'DeliveryChannelName' => [ 'shape' => 'ChannelName', ], ], ], 'DeleteEvaluationResultsRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigRuleName', ], 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], ], ], 'DeleteEvaluationResultsResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeliverConfigSnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'deliveryChannelName', ], 'members' => [ 'deliveryChannelName' => [ 'shape' => 'ChannelName', ], ], ], 'DeliverConfigSnapshotResponse' => [ 'type' => 'structure', 'members' => [ 'configSnapshotId' => [ 'shape' => 'String', ], ], ], 'DeliveryChannel' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'ChannelName', ], 's3BucketName' => [ 'shape' => 'String', ], 's3KeyPrefix' => [ 'shape' => 'String', ], 'snsTopicARN' => [ 'shape' => 'String', ], 'configSnapshotDeliveryProperties' => [ 'shape' => 'ConfigSnapshotDeliveryProperties', ], ], ], 'DeliveryChannelList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeliveryChannel', ], ], 'DeliveryChannelNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ChannelName', ], ], 'DeliveryChannelStatus' => [ 'type' => 'structure', 'members' => [ 'name' => [ 'shape' => 'String', ], 'configSnapshotDeliveryInfo' => [ 'shape' => 'ConfigExportDeliveryInfo', ], 'configHistoryDeliveryInfo' => [ 'shape' => 'ConfigExportDeliveryInfo', ], 'configStreamDeliveryInfo' => [ 'shape' => 'ConfigStreamDeliveryInfo', ], ], ], 'DeliveryChannelStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeliveryChannelStatus', ], ], 'DeliveryStatus' => [ 'type' => 'string', 'enum' => [ 'Success', 'Failure', 'Not_Applicable', ], ], 'DescribeComplianceByConfigRuleRequest' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleNames' => [ 'shape' => 'ConfigRuleNames', ], 'ComplianceTypes' => [ 'shape' => 'ComplianceTypes', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeComplianceByConfigRuleResponse' => [ 'type' => 'structure', 'members' => [ 'ComplianceByConfigRules' => [ 'shape' => 'ComplianceByConfigRules', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeComplianceByResourceRequest' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'StringWithCharLimit256', ], 'ResourceId' => [ 'shape' => 'StringWithCharLimit256', ], 'ComplianceTypes' => [ 'shape' => 'ComplianceTypes', ], 'Limit' => [ 'shape' => 'Limit', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeComplianceByResourceResponse' => [ 'type' => 'structure', 'members' => [ 'ComplianceByResources' => [ 'shape' => 'ComplianceByResources', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeConfigRuleEvaluationStatusRequest' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleNames' => [ 'shape' => 'ConfigRuleNames', ], ], ], 'DescribeConfigRuleEvaluationStatusResponse' => [ 'type' => 'structure', 'members' => [ 'ConfigRulesEvaluationStatus' => [ 'shape' => 'ConfigRuleEvaluationStatusList', ], ], ], 'DescribeConfigRulesRequest' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleNames' => [ 'shape' => 'ConfigRuleNames', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeConfigRulesResponse' => [ 'type' => 'structure', 'members' => [ 'ConfigRules' => [ 'shape' => 'ConfigRules', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeConfigurationRecorderStatusRequest' => [ 'type' => 'structure', 'members' => [ 'ConfigurationRecorderNames' => [ 'shape' => 'ConfigurationRecorderNameList', ], ], ], 'DescribeConfigurationRecorderStatusResponse' => [ 'type' => 'structure', 'members' => [ 'ConfigurationRecordersStatus' => [ 'shape' => 'ConfigurationRecorderStatusList', ], ], ], 'DescribeConfigurationRecordersRequest' => [ 'type' => 'structure', 'members' => [ 'ConfigurationRecorderNames' => [ 'shape' => 'ConfigurationRecorderNameList', ], ], ], 'DescribeConfigurationRecordersResponse' => [ 'type' => 'structure', 'members' => [ 'ConfigurationRecorders' => [ 'shape' => 'ConfigurationRecorderList', ], ], ], 'DescribeDeliveryChannelStatusRequest' => [ 'type' => 'structure', 'members' => [ 'DeliveryChannelNames' => [ 'shape' => 'DeliveryChannelNameList', ], ], ], 'DescribeDeliveryChannelStatusResponse' => [ 'type' => 'structure', 'members' => [ 'DeliveryChannelsStatus' => [ 'shape' => 'DeliveryChannelStatusList', ], ], ], 'DescribeDeliveryChannelsRequest' => [ 'type' => 'structure', 'members' => [ 'DeliveryChannelNames' => [ 'shape' => 'DeliveryChannelNameList', ], ], ], 'DescribeDeliveryChannelsResponse' => [ 'type' => 'structure', 'members' => [ 'DeliveryChannels' => [ 'shape' => 'DeliveryChannelList', ], ], ], 'EarlierTime' => [ 'type' => 'timestamp', ], 'EmptiableStringWithCharLimit256' => [ 'type' => 'string', 'max' => 256, 'min' => 0, ], 'Evaluation' => [ 'type' => 'structure', 'required' => [ 'ComplianceResourceType', 'ComplianceResourceId', 'ComplianceType', 'OrderingTimestamp', ], 'members' => [ 'ComplianceResourceType' => [ 'shape' => 'StringWithCharLimit256', ], 'ComplianceResourceId' => [ 'shape' => 'StringWithCharLimit256', ], 'ComplianceType' => [ 'shape' => 'ComplianceType', ], 'Annotation' => [ 'shape' => 'StringWithCharLimit256', ], 'OrderingTimestamp' => [ 'shape' => 'OrderingTimestamp', ], ], ], 'EvaluationResult' => [ 'type' => 'structure', 'members' => [ 'EvaluationResultIdentifier' => [ 'shape' => 'EvaluationResultIdentifier', ], 'ComplianceType' => [ 'shape' => 'ComplianceType', ], 'ResultRecordedTime' => [ 'shape' => 'Date', ], 'ConfigRuleInvokedTime' => [ 'shape' => 'Date', ], 'Annotation' => [ 'shape' => 'StringWithCharLimit256', ], 'ResultToken' => [ 'shape' => 'String', ], ], ], 'EvaluationResultIdentifier' => [ 'type' => 'structure', 'members' => [ 'EvaluationResultQualifier' => [ 'shape' => 'EvaluationResultQualifier', ], 'OrderingTimestamp' => [ 'shape' => 'Date', ], ], ], 'EvaluationResultQualifier' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], 'ResourceType' => [ 'shape' => 'StringWithCharLimit256', ], 'ResourceId' => [ 'shape' => 'StringWithCharLimit256', ], ], ], 'EvaluationResults' => [ 'type' => 'list', 'member' => [ 'shape' => 'EvaluationResult', ], ], 'Evaluations' => [ 'type' => 'list', 'member' => [ 'shape' => 'Evaluation', ], 'max' => 100, 'min' => 0, ], 'EventSource' => [ 'type' => 'string', 'enum' => [ 'aws.config', ], ], 'GetComplianceDetailsByConfigRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigRuleName', ], 'members' => [ 'ConfigRuleName' => [ 'shape' => 'StringWithCharLimit64', ], 'ComplianceTypes' => [ 'shape' => 'ComplianceTypes', ], 'Limit' => [ 'shape' => 'Limit', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetComplianceDetailsByConfigRuleResponse' => [ 'type' => 'structure', 'members' => [ 'EvaluationResults' => [ 'shape' => 'EvaluationResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetComplianceDetailsByResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceType', 'ResourceId', ], 'members' => [ 'ResourceType' => [ 'shape' => 'StringWithCharLimit256', ], 'ResourceId' => [ 'shape' => 'StringWithCharLimit256', ], 'ComplianceTypes' => [ 'shape' => 'ComplianceTypes', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'GetComplianceDetailsByResourceResponse' => [ 'type' => 'structure', 'members' => [ 'EvaluationResults' => [ 'shape' => 'EvaluationResults', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'GetComplianceSummaryByConfigRuleResponse' => [ 'type' => 'structure', 'members' => [ 'ComplianceSummary' => [ 'shape' => 'ComplianceSummary', ], ], ], 'GetComplianceSummaryByResourceTypeRequest' => [ 'type' => 'structure', 'members' => [ 'ResourceTypes' => [ 'shape' => 'ResourceTypes', ], ], ], 'GetComplianceSummaryByResourceTypeResponse' => [ 'type' => 'structure', 'members' => [ 'ComplianceSummariesByResourceType' => [ 'shape' => 'ComplianceSummariesByResourceType', ], ], ], 'GetResourceConfigHistoryRequest' => [ 'type' => 'structure', 'required' => [ 'resourceType', 'resourceId', ], 'members' => [ 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceId' => [ 'shape' => 'ResourceId', ], 'laterTime' => [ 'shape' => 'LaterTime', ], 'earlierTime' => [ 'shape' => 'EarlierTime', ], 'chronologicalOrder' => [ 'shape' => 'ChronologicalOrder', ], 'limit' => [ 'shape' => 'Limit', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetResourceConfigHistoryResponse' => [ 'type' => 'structure', 'members' => [ 'configurationItems' => [ 'shape' => 'ConfigurationItemList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'IncludeGlobalResourceTypes' => [ 'type' => 'boolean', ], 'InsufficientDeliveryPolicyException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InsufficientPermissionsException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'Integer' => [ 'type' => 'integer', ], 'InvalidConfigurationRecorderNameException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidDeliveryChannelNameException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidLimitException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidNextTokenException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidParameterValueException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidRecordingGroupException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidResultTokenException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidRoleException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidS3KeyPrefixException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidSNSTopicARNException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InvalidTimeRangeException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'LastDeliveryChannelDeleteFailedException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'LaterTime' => [ 'type' => 'timestamp', ], 'Limit' => [ 'type' => 'integer', 'max' => 100, 'min' => 0, ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ListDiscoveredResourcesRequest' => [ 'type' => 'structure', 'required' => [ 'resourceType', ], 'members' => [ 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceIds' => [ 'shape' => 'ResourceIdList', ], 'resourceName' => [ 'shape' => 'ResourceName', ], 'limit' => [ 'shape' => 'Limit', ], 'includeDeletedResources' => [ 'shape' => 'Boolean', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListDiscoveredResourcesResponse' => [ 'type' => 'structure', 'members' => [ 'resourceIdentifiers' => [ 'shape' => 'ResourceIdentifierList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'MaxNumberOfConfigRulesExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'MaxNumberOfConfigurationRecordersExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'MaxNumberOfDeliveryChannelsExceededException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'MaximumExecutionFrequency' => [ 'type' => 'string', 'enum' => [ 'One_Hour', 'Three_Hours', 'Six_Hours', 'Twelve_Hours', 'TwentyFour_Hours', ], ], 'MessageType' => [ 'type' => 'string', 'enum' => [ 'ConfigurationItemChangeNotification', 'ConfigurationSnapshotDeliveryCompleted', 'ScheduledNotification', ], ], 'Name' => [ 'type' => 'string', ], 'NextToken' => [ 'type' => 'string', ], 'NoAvailableConfigurationRecorderException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoAvailableDeliveryChannelException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoRunningConfigurationRecorderException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoSuchBucketException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoSuchConfigRuleException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoSuchConfigurationRecorderException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoSuchDeliveryChannelException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'OrderingTimestamp' => [ 'type' => 'timestamp', ], 'Owner' => [ 'type' => 'string', 'enum' => [ 'CUSTOM_LAMBDA', 'AWS', ], ], 'PutConfigRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigRule', ], 'members' => [ 'ConfigRule' => [ 'shape' => 'ConfigRule', ], ], ], 'PutConfigurationRecorderRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationRecorder', ], 'members' => [ 'ConfigurationRecorder' => [ 'shape' => 'ConfigurationRecorder', ], ], ], 'PutDeliveryChannelRequest' => [ 'type' => 'structure', 'required' => [ 'DeliveryChannel', ], 'members' => [ 'DeliveryChannel' => [ 'shape' => 'DeliveryChannel', ], ], ], 'PutEvaluationsRequest' => [ 'type' => 'structure', 'required' => [ 'ResultToken', ], 'members' => [ 'Evaluations' => [ 'shape' => 'Evaluations', ], 'ResultToken' => [ 'shape' => 'String', ], ], ], 'PutEvaluationsResponse' => [ 'type' => 'structure', 'members' => [ 'FailedEvaluations' => [ 'shape' => 'Evaluations', ], ], ], 'RecorderName' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'RecorderStatus' => [ 'type' => 'string', 'enum' => [ 'Pending', 'Success', 'Failure', ], ], 'RecordingGroup' => [ 'type' => 'structure', 'members' => [ 'allSupported' => [ 'shape' => 'AllSupported', ], 'includeGlobalResourceTypes' => [ 'shape' => 'IncludeGlobalResourceTypes', ], 'resourceTypes' => [ 'shape' => 'ResourceTypeList', ], ], ], 'ReevaluateConfigRuleNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'StringWithCharLimit64', ], 'max' => 25, 'min' => 1, ], 'RelatedEvent' => [ 'type' => 'string', ], 'RelatedEventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RelatedEvent', ], ], 'Relationship' => [ 'type' => 'structure', 'members' => [ 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceId' => [ 'shape' => 'ResourceId', ], 'resourceName' => [ 'shape' => 'ResourceName', ], 'relationshipName' => [ 'shape' => 'RelationshipName', ], ], ], 'RelationshipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Relationship', ], ], 'RelationshipName' => [ 'type' => 'string', ], 'ResourceCreationTime' => [ 'type' => 'timestamp', ], 'ResourceDeletionTime' => [ 'type' => 'timestamp', ], 'ResourceId' => [ 'type' => 'string', ], 'ResourceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceId', ], ], 'ResourceIdentifier' => [ 'type' => 'structure', 'members' => [ 'resourceType' => [ 'shape' => 'ResourceType', ], 'resourceId' => [ 'shape' => 'ResourceId', ], 'resourceName' => [ 'shape' => 'ResourceName', ], 'resourceDeletionTime' => [ 'shape' => 'ResourceDeletionTime', ], ], ], 'ResourceIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceIdentifier', ], ], 'ResourceInUseException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ResourceName' => [ 'type' => 'string', ], 'ResourceNotDiscoveredException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ResourceType' => [ 'type' => 'string', 'enum' => [ 'AWS::EC2::CustomerGateway', 'AWS::EC2::EIP', 'AWS::EC2::Host', 'AWS::EC2::Instance', 'AWS::EC2::InternetGateway', 'AWS::EC2::NetworkAcl', 'AWS::EC2::NetworkInterface', 'AWS::EC2::RouteTable', 'AWS::EC2::SecurityGroup', 'AWS::EC2::Subnet', 'AWS::CloudTrail::Trail', 'AWS::EC2::Volume', 'AWS::EC2::VPC', 'AWS::EC2::VPNConnection', 'AWS::EC2::VPNGateway', 'AWS::IAM::Group', 'AWS::IAM::Policy', 'AWS::IAM::Role', 'AWS::IAM::User', 'AWS::ACM::Certificate', 'AWS::RDS::DBInstance', 'AWS::RDS::DBSubnetGroup', 'AWS::RDS::DBSecurityGroup', 'AWS::RDS::DBSnapshot', 'AWS::RDS::EventSubscription', 'AWS::ElasticLoadBalancingV2::LoadBalancer', 'AWS::S3::Bucket', ], ], 'ResourceTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceType', ], ], 'ResourceTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'StringWithCharLimit256', ], 'max' => 20, 'min' => 0, ], 'Scope' => [ 'type' => 'structure', 'members' => [ 'ComplianceResourceTypes' => [ 'shape' => 'ComplianceResourceTypes', ], 'TagKey' => [ 'shape' => 'StringWithCharLimit128', ], 'TagValue' => [ 'shape' => 'StringWithCharLimit256', ], 'ComplianceResourceId' => [ 'shape' => 'StringWithCharLimit256', ], ], ], 'Source' => [ 'type' => 'structure', 'members' => [ 'Owner' => [ 'shape' => 'Owner', ], 'SourceIdentifier' => [ 'shape' => 'StringWithCharLimit256', ], 'SourceDetails' => [ 'shape' => 'SourceDetails', ], ], ], 'SourceDetail' => [ 'type' => 'structure', 'members' => [ 'EventSource' => [ 'shape' => 'EventSource', ], 'MessageType' => [ 'shape' => 'MessageType', ], 'MaximumExecutionFrequency' => [ 'shape' => 'MaximumExecutionFrequency', ], ], ], 'SourceDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'SourceDetail', ], 'max' => 25, 'min' => 0, ], 'StartConfigRulesEvaluationRequest' => [ 'type' => 'structure', 'members' => [ 'ConfigRuleNames' => [ 'shape' => 'ReevaluateConfigRuleNames', ], ], ], 'StartConfigRulesEvaluationResponse' => [ 'type' => 'structure', 'members' => [], ], 'StartConfigurationRecorderRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationRecorderName', ], 'members' => [ 'ConfigurationRecorderName' => [ 'shape' => 'RecorderName', ], ], ], 'StopConfigurationRecorderRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationRecorderName', ], 'members' => [ 'ConfigurationRecorderName' => [ 'shape' => 'RecorderName', ], ], ], 'String' => [ 'type' => 'string', ], 'StringWithCharLimit128' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'StringWithCharLimit256' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'StringWithCharLimit64' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'SupplementaryConfiguration' => [ 'type' => 'map', 'key' => [ 'shape' => 'SupplementaryConfigurationName', ], 'value' => [ 'shape' => 'SupplementaryConfigurationValue', ], ], 'SupplementaryConfigurationName' => [ 'type' => 'string', ], 'SupplementaryConfigurationValue' => [ 'type' => 'string', ], 'Tags' => [ 'type' => 'map', 'key' => [ 'shape' => 'Name', ], 'value' => [ 'shape' => 'Value', ], ], 'ValidationException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'Value' => [ 'type' => 'string', ], 'Version' => [ 'type' => 'string', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25/api-2.json.php index 5be4bc364..c5317ba60 100644 --- a/vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2012-10-25', 'endpointPrefix' => 'directconnect', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceFullName' => 'AWS Direct Connect', 'signatureVersion' => 'v4', 'targetPrefix' => 'OvertureService', ], 'operations' => [ 'AllocateConnectionOnInterconnect' => [ 'name' => 'AllocateConnectionOnInterconnect', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocateConnectionOnInterconnectRequest', ], 'output' => [ 'shape' => 'Connection', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'AllocatePrivateVirtualInterface' => [ 'name' => 'AllocatePrivateVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocatePrivateVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'VirtualInterface', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'AllocatePublicVirtualInterface' => [ 'name' => 'AllocatePublicVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocatePublicVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'VirtualInterface', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'ConfirmConnection' => [ 'name' => 'ConfirmConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmConnectionRequest', ], 'output' => [ 'shape' => 'ConfirmConnectionResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'ConfirmPrivateVirtualInterface' => [ 'name' => 'ConfirmPrivateVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmPrivateVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'ConfirmPrivateVirtualInterfaceResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'ConfirmPublicVirtualInterface' => [ 'name' => 'ConfirmPublicVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmPublicVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'ConfirmPublicVirtualInterfaceResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'CreateConnection' => [ 'name' => 'CreateConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateConnectionRequest', ], 'output' => [ 'shape' => 'Connection', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'CreateInterconnect' => [ 'name' => 'CreateInterconnect', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateInterconnectRequest', ], 'output' => [ 'shape' => 'Interconnect', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'CreatePrivateVirtualInterface' => [ 'name' => 'CreatePrivateVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreatePrivateVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'VirtualInterface', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'CreatePublicVirtualInterface' => [ 'name' => 'CreatePublicVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreatePublicVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'VirtualInterface', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DeleteConnection' => [ 'name' => 'DeleteConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteConnectionRequest', ], 'output' => [ 'shape' => 'Connection', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DeleteInterconnect' => [ 'name' => 'DeleteInterconnect', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteInterconnectRequest', ], 'output' => [ 'shape' => 'DeleteInterconnectResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DeleteVirtualInterface' => [ 'name' => 'DeleteVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'DeleteVirtualInterfaceResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeConnectionLoa' => [ 'name' => 'DescribeConnectionLoa', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConnectionLoaRequest', ], 'output' => [ 'shape' => 'DescribeConnectionLoaResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeConnections' => [ 'name' => 'DescribeConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConnectionsRequest', ], 'output' => [ 'shape' => 'Connections', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeConnectionsOnInterconnect' => [ 'name' => 'DescribeConnectionsOnInterconnect', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConnectionsOnInterconnectRequest', ], 'output' => [ 'shape' => 'Connections', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeInterconnectLoa' => [ 'name' => 'DescribeInterconnectLoa', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInterconnectLoaRequest', ], 'output' => [ 'shape' => 'DescribeInterconnectLoaResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeInterconnects' => [ 'name' => 'DescribeInterconnects', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInterconnectsRequest', ], 'output' => [ 'shape' => 'Interconnects', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeLocations' => [ 'name' => 'DescribeLocations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'Locations', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeVirtualGateways' => [ 'name' => 'DescribeVirtualGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'VirtualGateways', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeVirtualInterfaces' => [ 'name' => 'DescribeVirtualInterfaces', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVirtualInterfacesRequest', ], 'output' => [ 'shape' => 'VirtualInterfaces', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], ], 'shapes' => [ 'ASN' => [ 'type' => 'integer', ], 'AllocateConnectionOnInterconnectRequest' => [ 'type' => 'structure', 'required' => [ 'bandwidth', 'connectionName', 'ownerAccount', 'interconnectId', 'vlan', ], 'members' => [ 'bandwidth' => [ 'shape' => 'Bandwidth', ], 'connectionName' => [ 'shape' => 'ConnectionName', ], 'ownerAccount' => [ 'shape' => 'OwnerAccount', ], 'interconnectId' => [ 'shape' => 'InterconnectId', ], 'vlan' => [ 'shape' => 'VLAN', ], ], ], 'AllocatePrivateVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', 'ownerAccount', 'newPrivateVirtualInterfaceAllocation', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], 'ownerAccount' => [ 'shape' => 'OwnerAccount', ], 'newPrivateVirtualInterfaceAllocation' => [ 'shape' => 'NewPrivateVirtualInterfaceAllocation', ], ], ], 'AllocatePublicVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', 'ownerAccount', 'newPublicVirtualInterfaceAllocation', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], 'ownerAccount' => [ 'shape' => 'OwnerAccount', ], 'newPublicVirtualInterfaceAllocation' => [ 'shape' => 'NewPublicVirtualInterfaceAllocation', ], ], ], 'AmazonAddress' => [ 'type' => 'string', ], 'BGPAuthKey' => [ 'type' => 'string', ], 'Bandwidth' => [ 'type' => 'string', ], 'CIDR' => [ 'type' => 'string', ], 'ConfirmConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], ], ], 'ConfirmConnectionResponse' => [ 'type' => 'structure', 'members' => [ 'connectionState' => [ 'shape' => 'ConnectionState', ], ], ], 'ConfirmPrivateVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceId', 'virtualGatewayId', ], 'members' => [ 'virtualInterfaceId' => [ 'shape' => 'VirtualInterfaceId', ], 'virtualGatewayId' => [ 'shape' => 'VirtualGatewayId', ], ], ], 'ConfirmPrivateVirtualInterfaceResponse' => [ 'type' => 'structure', 'members' => [ 'virtualInterfaceState' => [ 'shape' => 'VirtualInterfaceState', ], ], ], 'ConfirmPublicVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceId', ], 'members' => [ 'virtualInterfaceId' => [ 'shape' => 'VirtualInterfaceId', ], ], ], 'ConfirmPublicVirtualInterfaceResponse' => [ 'type' => 'structure', 'members' => [ 'virtualInterfaceState' => [ 'shape' => 'VirtualInterfaceState', ], ], ], 'Connection' => [ 'type' => 'structure', 'members' => [ 'ownerAccount' => [ 'shape' => 'OwnerAccount', ], 'connectionId' => [ 'shape' => 'ConnectionId', ], 'connectionName' => [ 'shape' => 'ConnectionName', ], 'connectionState' => [ 'shape' => 'ConnectionState', ], 'region' => [ 'shape' => 'Region', ], 'location' => [ 'shape' => 'LocationCode', ], 'bandwidth' => [ 'shape' => 'Bandwidth', ], 'vlan' => [ 'shape' => 'VLAN', ], 'partnerName' => [ 'shape' => 'PartnerName', ], 'loaIssueTime' => [ 'shape' => 'LoaIssueTime', ], ], ], 'ConnectionId' => [ 'type' => 'string', ], 'ConnectionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Connection', ], ], 'ConnectionName' => [ 'type' => 'string', ], 'ConnectionState' => [ 'type' => 'string', 'enum' => [ 'ordering', 'requested', 'pending', 'available', 'down', 'deleting', 'deleted', 'rejected', ], ], 'Connections' => [ 'type' => 'structure', 'members' => [ 'connections' => [ 'shape' => 'ConnectionList', ], ], ], 'CreateConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'location', 'bandwidth', 'connectionName', ], 'members' => [ 'location' => [ 'shape' => 'LocationCode', ], 'bandwidth' => [ 'shape' => 'Bandwidth', ], 'connectionName' => [ 'shape' => 'ConnectionName', ], ], ], 'CreateInterconnectRequest' => [ 'type' => 'structure', 'required' => [ 'interconnectName', 'bandwidth', 'location', ], 'members' => [ 'interconnectName' => [ 'shape' => 'InterconnectName', ], 'bandwidth' => [ 'shape' => 'Bandwidth', ], 'location' => [ 'shape' => 'LocationCode', ], ], ], 'CreatePrivateVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', 'newPrivateVirtualInterface', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], 'newPrivateVirtualInterface' => [ 'shape' => 'NewPrivateVirtualInterface', ], ], ], 'CreatePublicVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', 'newPublicVirtualInterface', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], 'newPublicVirtualInterface' => [ 'shape' => 'NewPublicVirtualInterface', ], ], ], 'CustomerAddress' => [ 'type' => 'string', ], 'DeleteConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], ], ], 'DeleteInterconnectRequest' => [ 'type' => 'structure', 'required' => [ 'interconnectId', ], 'members' => [ 'interconnectId' => [ 'shape' => 'InterconnectId', ], ], ], 'DeleteInterconnectResponse' => [ 'type' => 'structure', 'members' => [ 'interconnectState' => [ 'shape' => 'InterconnectState', ], ], ], 'DeleteVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceId', ], 'members' => [ 'virtualInterfaceId' => [ 'shape' => 'VirtualInterfaceId', ], ], ], 'DeleteVirtualInterfaceResponse' => [ 'type' => 'structure', 'members' => [ 'virtualInterfaceState' => [ 'shape' => 'VirtualInterfaceState', ], ], ], 'DescribeConnectionLoaRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], 'providerName' => [ 'shape' => 'ProviderName', ], 'loaContentType' => [ 'shape' => 'LoaContentType', ], ], ], 'DescribeConnectionLoaResponse' => [ 'type' => 'structure', 'members' => [ 'loa' => [ 'shape' => 'Loa', ], ], ], 'DescribeConnectionsOnInterconnectRequest' => [ 'type' => 'structure', 'required' => [ 'interconnectId', ], 'members' => [ 'interconnectId' => [ 'shape' => 'InterconnectId', ], ], ], 'DescribeConnectionsRequest' => [ 'type' => 'structure', 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], ], ], 'DescribeInterconnectLoaRequest' => [ 'type' => 'structure', 'required' => [ 'interconnectId', ], 'members' => [ 'interconnectId' => [ 'shape' => 'InterconnectId', ], 'providerName' => [ 'shape' => 'ProviderName', ], 'loaContentType' => [ 'shape' => 'LoaContentType', ], ], ], 'DescribeInterconnectLoaResponse' => [ 'type' => 'structure', 'members' => [ 'loa' => [ 'shape' => 'Loa', ], ], ], 'DescribeInterconnectsRequest' => [ 'type' => 'structure', 'members' => [ 'interconnectId' => [ 'shape' => 'InterconnectId', ], ], ], 'DescribeVirtualInterfacesRequest' => [ 'type' => 'structure', 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], 'virtualInterfaceId' => [ 'shape' => 'VirtualInterfaceId', ], ], ], 'DirectConnectClientException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DirectConnectServerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ErrorMessage' => [ 'type' => 'string', ], 'Interconnect' => [ 'type' => 'structure', 'members' => [ 'interconnectId' => [ 'shape' => 'InterconnectId', ], 'interconnectName' => [ 'shape' => 'InterconnectName', ], 'interconnectState' => [ 'shape' => 'InterconnectState', ], 'region' => [ 'shape' => 'Region', ], 'location' => [ 'shape' => 'LocationCode', ], 'bandwidth' => [ 'shape' => 'Bandwidth', ], 'loaIssueTime' => [ 'shape' => 'LoaIssueTime', ], ], ], 'InterconnectId' => [ 'type' => 'string', ], 'InterconnectList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Interconnect', ], ], 'InterconnectName' => [ 'type' => 'string', ], 'InterconnectState' => [ 'type' => 'string', 'enum' => [ 'requested', 'pending', 'available', 'down', 'deleting', 'deleted', ], ], 'Interconnects' => [ 'type' => 'structure', 'members' => [ 'interconnects' => [ 'shape' => 'InterconnectList', ], ], ], 'Loa' => [ 'type' => 'structure', 'members' => [ 'loaContent' => [ 'shape' => 'LoaContent', ], 'loaContentType' => [ 'shape' => 'LoaContentType', ], ], ], 'LoaContent' => [ 'type' => 'blob', ], 'LoaContentType' => [ 'type' => 'string', 'enum' => [ 'application/pdf', ], ], 'LoaIssueTime' => [ 'type' => 'timestamp', ], 'Location' => [ 'type' => 'structure', 'members' => [ 'locationCode' => [ 'shape' => 'LocationCode', ], 'locationName' => [ 'shape' => 'LocationName', ], ], ], 'LocationCode' => [ 'type' => 'string', ], 'LocationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Location', ], ], 'LocationName' => [ 'type' => 'string', ], 'Locations' => [ 'type' => 'structure', 'members' => [ 'locations' => [ 'shape' => 'LocationList', ], ], ], 'NewPrivateVirtualInterface' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceName', 'vlan', 'asn', 'virtualGatewayId', ], 'members' => [ 'virtualInterfaceName' => [ 'shape' => 'VirtualInterfaceName', ], 'vlan' => [ 'shape' => 'VLAN', ], 'asn' => [ 'shape' => 'ASN', ], 'authKey' => [ 'shape' => 'BGPAuthKey', ], 'amazonAddress' => [ 'shape' => 'AmazonAddress', ], 'customerAddress' => [ 'shape' => 'CustomerAddress', ], 'virtualGatewayId' => [ 'shape' => 'VirtualGatewayId', ], ], ], 'NewPrivateVirtualInterfaceAllocation' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceName', 'vlan', 'asn', ], 'members' => [ 'virtualInterfaceName' => [ 'shape' => 'VirtualInterfaceName', ], 'vlan' => [ 'shape' => 'VLAN', ], 'asn' => [ 'shape' => 'ASN', ], 'authKey' => [ 'shape' => 'BGPAuthKey', ], 'amazonAddress' => [ 'shape' => 'AmazonAddress', ], 'customerAddress' => [ 'shape' => 'CustomerAddress', ], ], ], 'NewPublicVirtualInterface' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceName', 'vlan', 'asn', 'amazonAddress', 'customerAddress', 'routeFilterPrefixes', ], 'members' => [ 'virtualInterfaceName' => [ 'shape' => 'VirtualInterfaceName', ], 'vlan' => [ 'shape' => 'VLAN', ], 'asn' => [ 'shape' => 'ASN', ], 'authKey' => [ 'shape' => 'BGPAuthKey', ], 'amazonAddress' => [ 'shape' => 'AmazonAddress', ], 'customerAddress' => [ 'shape' => 'CustomerAddress', ], 'routeFilterPrefixes' => [ 'shape' => 'RouteFilterPrefixList', ], ], ], 'NewPublicVirtualInterfaceAllocation' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceName', 'vlan', 'asn', 'amazonAddress', 'customerAddress', 'routeFilterPrefixes', ], 'members' => [ 'virtualInterfaceName' => [ 'shape' => 'VirtualInterfaceName', ], 'vlan' => [ 'shape' => 'VLAN', ], 'asn' => [ 'shape' => 'ASN', ], 'authKey' => [ 'shape' => 'BGPAuthKey', ], 'amazonAddress' => [ 'shape' => 'AmazonAddress', ], 'customerAddress' => [ 'shape' => 'CustomerAddress', ], 'routeFilterPrefixes' => [ 'shape' => 'RouteFilterPrefixList', ], ], ], 'OwnerAccount' => [ 'type' => 'string', ], 'PartnerName' => [ 'type' => 'string', ], 'ProviderName' => [ 'type' => 'string', ], 'Region' => [ 'type' => 'string', ], 'RouteFilterPrefix' => [ 'type' => 'structure', 'members' => [ 'cidr' => [ 'shape' => 'CIDR', ], ], ], 'RouteFilterPrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RouteFilterPrefix', ], ], 'RouterConfig' => [ 'type' => 'string', ], 'VLAN' => [ 'type' => 'integer', ], 'VirtualGateway' => [ 'type' => 'structure', 'members' => [ 'virtualGatewayId' => [ 'shape' => 'VirtualGatewayId', ], 'virtualGatewayState' => [ 'shape' => 'VirtualGatewayState', ], ], ], 'VirtualGatewayId' => [ 'type' => 'string', ], 'VirtualGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VirtualGateway', ], ], 'VirtualGatewayState' => [ 'type' => 'string', ], 'VirtualGateways' => [ 'type' => 'structure', 'members' => [ 'virtualGateways' => [ 'shape' => 'VirtualGatewayList', ], ], ], 'VirtualInterface' => [ 'type' => 'structure', 'members' => [ 'ownerAccount' => [ 'shape' => 'OwnerAccount', ], 'virtualInterfaceId' => [ 'shape' => 'VirtualInterfaceId', ], 'location' => [ 'shape' => 'LocationCode', ], 'connectionId' => [ 'shape' => 'ConnectionId', ], 'virtualInterfaceType' => [ 'shape' => 'VirtualInterfaceType', ], 'virtualInterfaceName' => [ 'shape' => 'VirtualInterfaceName', ], 'vlan' => [ 'shape' => 'VLAN', ], 'asn' => [ 'shape' => 'ASN', ], 'authKey' => [ 'shape' => 'BGPAuthKey', ], 'amazonAddress' => [ 'shape' => 'AmazonAddress', ], 'customerAddress' => [ 'shape' => 'CustomerAddress', ], 'virtualInterfaceState' => [ 'shape' => 'VirtualInterfaceState', ], 'customerRouterConfig' => [ 'shape' => 'RouterConfig', ], 'virtualGatewayId' => [ 'shape' => 'VirtualGatewayId', ], 'routeFilterPrefixes' => [ 'shape' => 'RouteFilterPrefixList', ], ], ], 'VirtualInterfaceId' => [ 'type' => 'string', ], 'VirtualInterfaceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VirtualInterface', ], ], 'VirtualInterfaceName' => [ 'type' => 'string', ], 'VirtualInterfaceState' => [ 'type' => 'string', 'enum' => [ 'confirming', 'verifying', 'pending', 'available', 'down', 'deleting', 'deleted', 'rejected', ], ], 'VirtualInterfaceType' => [ 'type' => 'string', ], 'VirtualInterfaces' => [ 'type' => 'structure', 'members' => [ 'virtualInterfaces' => [ 'shape' => 'VirtualInterfaceList', ], ], ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2012-10-25', 'endpointPrefix' => 'directconnect', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceFullName' => 'AWS Direct Connect', 'signatureVersion' => 'v4', 'targetPrefix' => 'OvertureService', ], 'operations' => [ 'AllocateConnectionOnInterconnect' => [ 'name' => 'AllocateConnectionOnInterconnect', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocateConnectionOnInterconnectRequest', ], 'output' => [ 'shape' => 'Connection', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'AllocatePrivateVirtualInterface' => [ 'name' => 'AllocatePrivateVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocatePrivateVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'VirtualInterface', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'AllocatePublicVirtualInterface' => [ 'name' => 'AllocatePublicVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocatePublicVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'VirtualInterface', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'ConfirmConnection' => [ 'name' => 'ConfirmConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmConnectionRequest', ], 'output' => [ 'shape' => 'ConfirmConnectionResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'ConfirmPrivateVirtualInterface' => [ 'name' => 'ConfirmPrivateVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmPrivateVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'ConfirmPrivateVirtualInterfaceResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'ConfirmPublicVirtualInterface' => [ 'name' => 'ConfirmPublicVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmPublicVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'ConfirmPublicVirtualInterfaceResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'CreateConnection' => [ 'name' => 'CreateConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateConnectionRequest', ], 'output' => [ 'shape' => 'Connection', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'CreateInterconnect' => [ 'name' => 'CreateInterconnect', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateInterconnectRequest', ], 'output' => [ 'shape' => 'Interconnect', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'CreatePrivateVirtualInterface' => [ 'name' => 'CreatePrivateVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreatePrivateVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'VirtualInterface', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'CreatePublicVirtualInterface' => [ 'name' => 'CreatePublicVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreatePublicVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'VirtualInterface', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DeleteConnection' => [ 'name' => 'DeleteConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteConnectionRequest', ], 'output' => [ 'shape' => 'Connection', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DeleteInterconnect' => [ 'name' => 'DeleteInterconnect', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteInterconnectRequest', ], 'output' => [ 'shape' => 'DeleteInterconnectResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DeleteVirtualInterface' => [ 'name' => 'DeleteVirtualInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVirtualInterfaceRequest', ], 'output' => [ 'shape' => 'DeleteVirtualInterfaceResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeConnectionLoa' => [ 'name' => 'DescribeConnectionLoa', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConnectionLoaRequest', ], 'output' => [ 'shape' => 'DescribeConnectionLoaResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeConnections' => [ 'name' => 'DescribeConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConnectionsRequest', ], 'output' => [ 'shape' => 'Connections', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeConnectionsOnInterconnect' => [ 'name' => 'DescribeConnectionsOnInterconnect', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConnectionsOnInterconnectRequest', ], 'output' => [ 'shape' => 'Connections', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeInterconnectLoa' => [ 'name' => 'DescribeInterconnectLoa', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInterconnectLoaRequest', ], 'output' => [ 'shape' => 'DescribeInterconnectLoaResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeInterconnects' => [ 'name' => 'DescribeInterconnects', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInterconnectsRequest', ], 'output' => [ 'shape' => 'Interconnects', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeLocations' => [ 'name' => 'DescribeLocations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'Locations', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeTags' => [ 'name' => 'DescribeTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTagsRequest', ], 'output' => [ 'shape' => 'DescribeTagsResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeVirtualGateways' => [ 'name' => 'DescribeVirtualGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'VirtualGateways', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'DescribeVirtualInterfaces' => [ 'name' => 'DescribeVirtualInterfaces', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVirtualInterfacesRequest', ], 'output' => [ 'shape' => 'VirtualInterfaces', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'TagResource' => [ 'name' => 'TagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TagResourceRequest', ], 'output' => [ 'shape' => 'TagResourceResponse', ], 'errors' => [ [ 'shape' => 'DuplicateTagKeysException', ], [ 'shape' => 'TooManyTagsException', ], [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], 'UntagResource' => [ 'name' => 'UntagResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UntagResourceRequest', ], 'output' => [ 'shape' => 'UntagResourceResponse', ], 'errors' => [ [ 'shape' => 'DirectConnectServerException', ], [ 'shape' => 'DirectConnectClientException', ], ], ], ], 'shapes' => [ 'ASN' => [ 'type' => 'integer', ], 'AllocateConnectionOnInterconnectRequest' => [ 'type' => 'structure', 'required' => [ 'bandwidth', 'connectionName', 'ownerAccount', 'interconnectId', 'vlan', ], 'members' => [ 'bandwidth' => [ 'shape' => 'Bandwidth', ], 'connectionName' => [ 'shape' => 'ConnectionName', ], 'ownerAccount' => [ 'shape' => 'OwnerAccount', ], 'interconnectId' => [ 'shape' => 'InterconnectId', ], 'vlan' => [ 'shape' => 'VLAN', ], ], ], 'AllocatePrivateVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', 'ownerAccount', 'newPrivateVirtualInterfaceAllocation', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], 'ownerAccount' => [ 'shape' => 'OwnerAccount', ], 'newPrivateVirtualInterfaceAllocation' => [ 'shape' => 'NewPrivateVirtualInterfaceAllocation', ], ], ], 'AllocatePublicVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', 'ownerAccount', 'newPublicVirtualInterfaceAllocation', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], 'ownerAccount' => [ 'shape' => 'OwnerAccount', ], 'newPublicVirtualInterfaceAllocation' => [ 'shape' => 'NewPublicVirtualInterfaceAllocation', ], ], ], 'AmazonAddress' => [ 'type' => 'string', ], 'BGPAuthKey' => [ 'type' => 'string', ], 'Bandwidth' => [ 'type' => 'string', ], 'CIDR' => [ 'type' => 'string', ], 'ConfirmConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], ], ], 'ConfirmConnectionResponse' => [ 'type' => 'structure', 'members' => [ 'connectionState' => [ 'shape' => 'ConnectionState', ], ], ], 'ConfirmPrivateVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceId', 'virtualGatewayId', ], 'members' => [ 'virtualInterfaceId' => [ 'shape' => 'VirtualInterfaceId', ], 'virtualGatewayId' => [ 'shape' => 'VirtualGatewayId', ], ], ], 'ConfirmPrivateVirtualInterfaceResponse' => [ 'type' => 'structure', 'members' => [ 'virtualInterfaceState' => [ 'shape' => 'VirtualInterfaceState', ], ], ], 'ConfirmPublicVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceId', ], 'members' => [ 'virtualInterfaceId' => [ 'shape' => 'VirtualInterfaceId', ], ], ], 'ConfirmPublicVirtualInterfaceResponse' => [ 'type' => 'structure', 'members' => [ 'virtualInterfaceState' => [ 'shape' => 'VirtualInterfaceState', ], ], ], 'Connection' => [ 'type' => 'structure', 'members' => [ 'ownerAccount' => [ 'shape' => 'OwnerAccount', ], 'connectionId' => [ 'shape' => 'ConnectionId', ], 'connectionName' => [ 'shape' => 'ConnectionName', ], 'connectionState' => [ 'shape' => 'ConnectionState', ], 'region' => [ 'shape' => 'Region', ], 'location' => [ 'shape' => 'LocationCode', ], 'bandwidth' => [ 'shape' => 'Bandwidth', ], 'vlan' => [ 'shape' => 'VLAN', ], 'partnerName' => [ 'shape' => 'PartnerName', ], 'loaIssueTime' => [ 'shape' => 'LoaIssueTime', ], ], ], 'ConnectionId' => [ 'type' => 'string', ], 'ConnectionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Connection', ], ], 'ConnectionName' => [ 'type' => 'string', ], 'ConnectionState' => [ 'type' => 'string', 'enum' => [ 'ordering', 'requested', 'pending', 'available', 'down', 'deleting', 'deleted', 'rejected', ], ], 'Connections' => [ 'type' => 'structure', 'members' => [ 'connections' => [ 'shape' => 'ConnectionList', ], ], ], 'CreateConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'location', 'bandwidth', 'connectionName', ], 'members' => [ 'location' => [ 'shape' => 'LocationCode', ], 'bandwidth' => [ 'shape' => 'Bandwidth', ], 'connectionName' => [ 'shape' => 'ConnectionName', ], ], ], 'CreateInterconnectRequest' => [ 'type' => 'structure', 'required' => [ 'interconnectName', 'bandwidth', 'location', ], 'members' => [ 'interconnectName' => [ 'shape' => 'InterconnectName', ], 'bandwidth' => [ 'shape' => 'Bandwidth', ], 'location' => [ 'shape' => 'LocationCode', ], ], ], 'CreatePrivateVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', 'newPrivateVirtualInterface', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], 'newPrivateVirtualInterface' => [ 'shape' => 'NewPrivateVirtualInterface', ], ], ], 'CreatePublicVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', 'newPublicVirtualInterface', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], 'newPublicVirtualInterface' => [ 'shape' => 'NewPublicVirtualInterface', ], ], ], 'CustomerAddress' => [ 'type' => 'string', ], 'DeleteConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], ], ], 'DeleteInterconnectRequest' => [ 'type' => 'structure', 'required' => [ 'interconnectId', ], 'members' => [ 'interconnectId' => [ 'shape' => 'InterconnectId', ], ], ], 'DeleteInterconnectResponse' => [ 'type' => 'structure', 'members' => [ 'interconnectState' => [ 'shape' => 'InterconnectState', ], ], ], 'DeleteVirtualInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceId', ], 'members' => [ 'virtualInterfaceId' => [ 'shape' => 'VirtualInterfaceId', ], ], ], 'DeleteVirtualInterfaceResponse' => [ 'type' => 'structure', 'members' => [ 'virtualInterfaceState' => [ 'shape' => 'VirtualInterfaceState', ], ], ], 'DescribeConnectionLoaRequest' => [ 'type' => 'structure', 'required' => [ 'connectionId', ], 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], 'providerName' => [ 'shape' => 'ProviderName', ], 'loaContentType' => [ 'shape' => 'LoaContentType', ], ], ], 'DescribeConnectionLoaResponse' => [ 'type' => 'structure', 'members' => [ 'loa' => [ 'shape' => 'Loa', ], ], ], 'DescribeConnectionsOnInterconnectRequest' => [ 'type' => 'structure', 'required' => [ 'interconnectId', ], 'members' => [ 'interconnectId' => [ 'shape' => 'InterconnectId', ], ], ], 'DescribeConnectionsRequest' => [ 'type' => 'structure', 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], ], ], 'DescribeInterconnectLoaRequest' => [ 'type' => 'structure', 'required' => [ 'interconnectId', ], 'members' => [ 'interconnectId' => [ 'shape' => 'InterconnectId', ], 'providerName' => [ 'shape' => 'ProviderName', ], 'loaContentType' => [ 'shape' => 'LoaContentType', ], ], ], 'DescribeInterconnectLoaResponse' => [ 'type' => 'structure', 'members' => [ 'loa' => [ 'shape' => 'Loa', ], ], ], 'DescribeInterconnectsRequest' => [ 'type' => 'structure', 'members' => [ 'interconnectId' => [ 'shape' => 'InterconnectId', ], ], ], 'DescribeTagsRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArns', ], 'members' => [ 'resourceArns' => [ 'shape' => 'ResourceArnList', ], ], ], 'DescribeTagsResponse' => [ 'type' => 'structure', 'members' => [ 'resourceTags' => [ 'shape' => 'ResourceTagList', ], ], ], 'DescribeVirtualInterfacesRequest' => [ 'type' => 'structure', 'members' => [ 'connectionId' => [ 'shape' => 'ConnectionId', ], 'virtualInterfaceId' => [ 'shape' => 'VirtualInterfaceId', ], ], ], 'DirectConnectClientException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DirectConnectServerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DuplicateTagKeysException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ErrorMessage' => [ 'type' => 'string', ], 'Interconnect' => [ 'type' => 'structure', 'members' => [ 'interconnectId' => [ 'shape' => 'InterconnectId', ], 'interconnectName' => [ 'shape' => 'InterconnectName', ], 'interconnectState' => [ 'shape' => 'InterconnectState', ], 'region' => [ 'shape' => 'Region', ], 'location' => [ 'shape' => 'LocationCode', ], 'bandwidth' => [ 'shape' => 'Bandwidth', ], 'loaIssueTime' => [ 'shape' => 'LoaIssueTime', ], ], ], 'InterconnectId' => [ 'type' => 'string', ], 'InterconnectList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Interconnect', ], ], 'InterconnectName' => [ 'type' => 'string', ], 'InterconnectState' => [ 'type' => 'string', 'enum' => [ 'requested', 'pending', 'available', 'down', 'deleting', 'deleted', ], ], 'Interconnects' => [ 'type' => 'structure', 'members' => [ 'interconnects' => [ 'shape' => 'InterconnectList', ], ], ], 'Loa' => [ 'type' => 'structure', 'members' => [ 'loaContent' => [ 'shape' => 'LoaContent', ], 'loaContentType' => [ 'shape' => 'LoaContentType', ], ], ], 'LoaContent' => [ 'type' => 'blob', ], 'LoaContentType' => [ 'type' => 'string', 'enum' => [ 'application/pdf', ], ], 'LoaIssueTime' => [ 'type' => 'timestamp', ], 'Location' => [ 'type' => 'structure', 'members' => [ 'locationCode' => [ 'shape' => 'LocationCode', ], 'locationName' => [ 'shape' => 'LocationName', ], ], ], 'LocationCode' => [ 'type' => 'string', ], 'LocationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Location', ], ], 'LocationName' => [ 'type' => 'string', ], 'Locations' => [ 'type' => 'structure', 'members' => [ 'locations' => [ 'shape' => 'LocationList', ], ], ], 'NewPrivateVirtualInterface' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceName', 'vlan', 'asn', 'virtualGatewayId', ], 'members' => [ 'virtualInterfaceName' => [ 'shape' => 'VirtualInterfaceName', ], 'vlan' => [ 'shape' => 'VLAN', ], 'asn' => [ 'shape' => 'ASN', ], 'authKey' => [ 'shape' => 'BGPAuthKey', ], 'amazonAddress' => [ 'shape' => 'AmazonAddress', ], 'customerAddress' => [ 'shape' => 'CustomerAddress', ], 'virtualGatewayId' => [ 'shape' => 'VirtualGatewayId', ], ], ], 'NewPrivateVirtualInterfaceAllocation' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceName', 'vlan', 'asn', ], 'members' => [ 'virtualInterfaceName' => [ 'shape' => 'VirtualInterfaceName', ], 'vlan' => [ 'shape' => 'VLAN', ], 'asn' => [ 'shape' => 'ASN', ], 'authKey' => [ 'shape' => 'BGPAuthKey', ], 'amazonAddress' => [ 'shape' => 'AmazonAddress', ], 'customerAddress' => [ 'shape' => 'CustomerAddress', ], ], ], 'NewPublicVirtualInterface' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceName', 'vlan', 'asn', 'amazonAddress', 'customerAddress', 'routeFilterPrefixes', ], 'members' => [ 'virtualInterfaceName' => [ 'shape' => 'VirtualInterfaceName', ], 'vlan' => [ 'shape' => 'VLAN', ], 'asn' => [ 'shape' => 'ASN', ], 'authKey' => [ 'shape' => 'BGPAuthKey', ], 'amazonAddress' => [ 'shape' => 'AmazonAddress', ], 'customerAddress' => [ 'shape' => 'CustomerAddress', ], 'routeFilterPrefixes' => [ 'shape' => 'RouteFilterPrefixList', ], ], ], 'NewPublicVirtualInterfaceAllocation' => [ 'type' => 'structure', 'required' => [ 'virtualInterfaceName', 'vlan', 'asn', 'amazonAddress', 'customerAddress', 'routeFilterPrefixes', ], 'members' => [ 'virtualInterfaceName' => [ 'shape' => 'VirtualInterfaceName', ], 'vlan' => [ 'shape' => 'VLAN', ], 'asn' => [ 'shape' => 'ASN', ], 'authKey' => [ 'shape' => 'BGPAuthKey', ], 'amazonAddress' => [ 'shape' => 'AmazonAddress', ], 'customerAddress' => [ 'shape' => 'CustomerAddress', ], 'routeFilterPrefixes' => [ 'shape' => 'RouteFilterPrefixList', ], ], ], 'OwnerAccount' => [ 'type' => 'string', ], 'PartnerName' => [ 'type' => 'string', ], 'ProviderName' => [ 'type' => 'string', ], 'Region' => [ 'type' => 'string', ], 'ResourceArn' => [ 'type' => 'string', ], 'ResourceArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceArn', ], ], 'ResourceTag' => [ 'type' => 'structure', 'members' => [ 'resourceArn' => [ 'shape' => 'ResourceArn', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'ResourceTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceTag', ], ], 'RouteFilterPrefix' => [ 'type' => 'structure', 'members' => [ 'cidr' => [ 'shape' => 'CIDR', ], ], ], 'RouteFilterPrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RouteFilterPrefix', ], ], 'RouterConfig' => [ 'type' => 'string', ], 'Tag' => [ 'type' => 'structure', 'required' => [ 'key', ], 'members' => [ 'key' => [ 'shape' => 'TagKey', ], 'value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'TagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagKey', ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], 'min' => 1, ], 'TagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', 'tags', ], 'members' => [ 'resourceArn' => [ 'shape' => 'ResourceArn', ], 'tags' => [ 'shape' => 'TagList', ], ], ], 'TagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'TagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 0, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$', ], 'TooManyTagsException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'UntagResourceRequest' => [ 'type' => 'structure', 'required' => [ 'resourceArn', 'tagKeys', ], 'members' => [ 'resourceArn' => [ 'shape' => 'ResourceArn', ], 'tagKeys' => [ 'shape' => 'TagKeyList', ], ], ], 'UntagResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'VLAN' => [ 'type' => 'integer', ], 'VirtualGateway' => [ 'type' => 'structure', 'members' => [ 'virtualGatewayId' => [ 'shape' => 'VirtualGatewayId', ], 'virtualGatewayState' => [ 'shape' => 'VirtualGatewayState', ], ], ], 'VirtualGatewayId' => [ 'type' => 'string', ], 'VirtualGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VirtualGateway', ], ], 'VirtualGatewayState' => [ 'type' => 'string', ], 'VirtualGateways' => [ 'type' => 'structure', 'members' => [ 'virtualGateways' => [ 'shape' => 'VirtualGatewayList', ], ], ], 'VirtualInterface' => [ 'type' => 'structure', 'members' => [ 'ownerAccount' => [ 'shape' => 'OwnerAccount', ], 'virtualInterfaceId' => [ 'shape' => 'VirtualInterfaceId', ], 'location' => [ 'shape' => 'LocationCode', ], 'connectionId' => [ 'shape' => 'ConnectionId', ], 'virtualInterfaceType' => [ 'shape' => 'VirtualInterfaceType', ], 'virtualInterfaceName' => [ 'shape' => 'VirtualInterfaceName', ], 'vlan' => [ 'shape' => 'VLAN', ], 'asn' => [ 'shape' => 'ASN', ], 'authKey' => [ 'shape' => 'BGPAuthKey', ], 'amazonAddress' => [ 'shape' => 'AmazonAddress', ], 'customerAddress' => [ 'shape' => 'CustomerAddress', ], 'virtualInterfaceState' => [ 'shape' => 'VirtualInterfaceState', ], 'customerRouterConfig' => [ 'shape' => 'RouterConfig', ], 'virtualGatewayId' => [ 'shape' => 'VirtualGatewayId', ], 'routeFilterPrefixes' => [ 'shape' => 'RouteFilterPrefixList', ], ], ], 'VirtualInterfaceId' => [ 'type' => 'string', ], 'VirtualInterfaceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VirtualInterface', ], ], 'VirtualInterfaceName' => [ 'type' => 'string', ], 'VirtualInterfaceState' => [ 'type' => 'string', 'enum' => [ 'confirming', 'verifying', 'pending', 'available', 'down', 'deleting', 'deleted', 'rejected', ], ], 'VirtualInterfaceType' => [ 'type' => 'string', ], 'VirtualInterfaces' => [ 'type' => 'structure', 'members' => [ 'virtualInterfaces' => [ 'shape' => 'VirtualInterfaceList', ], ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/api-2.json.php new file mode 100644 index 000000000..70280b6af --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/api-2.json.php @@ -0,0 +1,3 @@ + '2.0', 'metadata' => [ 'apiVersion' => '2016-09-15', 'endpointPrefix' => 'ec2', 'protocol' => 'ec2', 'serviceAbbreviation' => 'Amazon EC2', 'serviceFullName' => 'Amazon Elastic Compute Cloud', 'signatureVersion' => 'v4', 'xmlNamespace' => 'http://ec2.amazonaws.com/doc/2016-09-15', ], 'operations' => [ 'AcceptReservedInstancesExchangeQuote' => [ 'name' => 'AcceptReservedInstancesExchangeQuote', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptReservedInstancesExchangeQuoteRequest', ], 'output' => [ 'shape' => 'AcceptReservedInstancesExchangeQuoteResult', ], ], 'AcceptVpcPeeringConnection' => [ 'name' => 'AcceptVpcPeeringConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AcceptVpcPeeringConnectionRequest', ], 'output' => [ 'shape' => 'AcceptVpcPeeringConnectionResult', ], ], 'AllocateAddress' => [ 'name' => 'AllocateAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocateAddressRequest', ], 'output' => [ 'shape' => 'AllocateAddressResult', ], ], 'AllocateHosts' => [ 'name' => 'AllocateHosts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AllocateHostsRequest', ], 'output' => [ 'shape' => 'AllocateHostsResult', ], ], 'AssignPrivateIpAddresses' => [ 'name' => 'AssignPrivateIpAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssignPrivateIpAddressesRequest', ], ], 'AssociateAddress' => [ 'name' => 'AssociateAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateAddressRequest', ], 'output' => [ 'shape' => 'AssociateAddressResult', ], ], 'AssociateDhcpOptions' => [ 'name' => 'AssociateDhcpOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateDhcpOptionsRequest', ], ], 'AssociateRouteTable' => [ 'name' => 'AssociateRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AssociateRouteTableRequest', ], 'output' => [ 'shape' => 'AssociateRouteTableResult', ], ], 'AttachClassicLinkVpc' => [ 'name' => 'AttachClassicLinkVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachClassicLinkVpcRequest', ], 'output' => [ 'shape' => 'AttachClassicLinkVpcResult', ], ], 'AttachInternetGateway' => [ 'name' => 'AttachInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachInternetGatewayRequest', ], ], 'AttachNetworkInterface' => [ 'name' => 'AttachNetworkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachNetworkInterfaceRequest', ], 'output' => [ 'shape' => 'AttachNetworkInterfaceResult', ], ], 'AttachVolume' => [ 'name' => 'AttachVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachVolumeRequest', ], 'output' => [ 'shape' => 'VolumeAttachment', ], ], 'AttachVpnGateway' => [ 'name' => 'AttachVpnGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AttachVpnGatewayRequest', ], 'output' => [ 'shape' => 'AttachVpnGatewayResult', ], ], 'AuthorizeSecurityGroupEgress' => [ 'name' => 'AuthorizeSecurityGroupEgress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeSecurityGroupEgressRequest', ], ], 'AuthorizeSecurityGroupIngress' => [ 'name' => 'AuthorizeSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeSecurityGroupIngressRequest', ], ], 'BundleInstance' => [ 'name' => 'BundleInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BundleInstanceRequest', ], 'output' => [ 'shape' => 'BundleInstanceResult', ], ], 'CancelBundleTask' => [ 'name' => 'CancelBundleTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelBundleTaskRequest', ], 'output' => [ 'shape' => 'CancelBundleTaskResult', ], ], 'CancelConversionTask' => [ 'name' => 'CancelConversionTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelConversionRequest', ], ], 'CancelExportTask' => [ 'name' => 'CancelExportTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelExportTaskRequest', ], ], 'CancelImportTask' => [ 'name' => 'CancelImportTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelImportTaskRequest', ], 'output' => [ 'shape' => 'CancelImportTaskResult', ], ], 'CancelReservedInstancesListing' => [ 'name' => 'CancelReservedInstancesListing', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelReservedInstancesListingRequest', ], 'output' => [ 'shape' => 'CancelReservedInstancesListingResult', ], ], 'CancelSpotFleetRequests' => [ 'name' => 'CancelSpotFleetRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelSpotFleetRequestsRequest', ], 'output' => [ 'shape' => 'CancelSpotFleetRequestsResponse', ], ], 'CancelSpotInstanceRequests' => [ 'name' => 'CancelSpotInstanceRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelSpotInstanceRequestsRequest', ], 'output' => [ 'shape' => 'CancelSpotInstanceRequestsResult', ], ], 'ConfirmProductInstance' => [ 'name' => 'ConfirmProductInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ConfirmProductInstanceRequest', ], 'output' => [ 'shape' => 'ConfirmProductInstanceResult', ], ], 'CopyImage' => [ 'name' => 'CopyImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyImageRequest', ], 'output' => [ 'shape' => 'CopyImageResult', ], ], 'CopySnapshot' => [ 'name' => 'CopySnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopySnapshotRequest', ], 'output' => [ 'shape' => 'CopySnapshotResult', ], ], 'CreateCustomerGateway' => [ 'name' => 'CreateCustomerGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCustomerGatewayRequest', ], 'output' => [ 'shape' => 'CreateCustomerGatewayResult', ], ], 'CreateDhcpOptions' => [ 'name' => 'CreateDhcpOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDhcpOptionsRequest', ], 'output' => [ 'shape' => 'CreateDhcpOptionsResult', ], ], 'CreateFlowLogs' => [ 'name' => 'CreateFlowLogs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateFlowLogsRequest', ], 'output' => [ 'shape' => 'CreateFlowLogsResult', ], ], 'CreateImage' => [ 'name' => 'CreateImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateImageRequest', ], 'output' => [ 'shape' => 'CreateImageResult', ], ], 'CreateInstanceExportTask' => [ 'name' => 'CreateInstanceExportTask', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateInstanceExportTaskRequest', ], 'output' => [ 'shape' => 'CreateInstanceExportTaskResult', ], ], 'CreateInternetGateway' => [ 'name' => 'CreateInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateInternetGatewayRequest', ], 'output' => [ 'shape' => 'CreateInternetGatewayResult', ], ], 'CreateKeyPair' => [ 'name' => 'CreateKeyPair', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateKeyPairRequest', ], 'output' => [ 'shape' => 'KeyPair', ], ], 'CreateNatGateway' => [ 'name' => 'CreateNatGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNatGatewayRequest', ], 'output' => [ 'shape' => 'CreateNatGatewayResult', ], ], 'CreateNetworkAcl' => [ 'name' => 'CreateNetworkAcl', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkAclRequest', ], 'output' => [ 'shape' => 'CreateNetworkAclResult', ], ], 'CreateNetworkAclEntry' => [ 'name' => 'CreateNetworkAclEntry', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkAclEntryRequest', ], ], 'CreateNetworkInterface' => [ 'name' => 'CreateNetworkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateNetworkInterfaceRequest', ], 'output' => [ 'shape' => 'CreateNetworkInterfaceResult', ], ], 'CreatePlacementGroup' => [ 'name' => 'CreatePlacementGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreatePlacementGroupRequest', ], ], 'CreateReservedInstancesListing' => [ 'name' => 'CreateReservedInstancesListing', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReservedInstancesListingRequest', ], 'output' => [ 'shape' => 'CreateReservedInstancesListingResult', ], ], 'CreateRoute' => [ 'name' => 'CreateRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRouteRequest', ], 'output' => [ 'shape' => 'CreateRouteResult', ], ], 'CreateRouteTable' => [ 'name' => 'CreateRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRouteTableRequest', ], 'output' => [ 'shape' => 'CreateRouteTableResult', ], ], 'CreateSecurityGroup' => [ 'name' => 'CreateSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSecurityGroupRequest', ], 'output' => [ 'shape' => 'CreateSecurityGroupResult', ], ], 'CreateSnapshot' => [ 'name' => 'CreateSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSnapshotRequest', ], 'output' => [ 'shape' => 'Snapshot', ], ], 'CreateSpotDatafeedSubscription' => [ 'name' => 'CreateSpotDatafeedSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSpotDatafeedSubscriptionRequest', ], 'output' => [ 'shape' => 'CreateSpotDatafeedSubscriptionResult', ], ], 'CreateSubnet' => [ 'name' => 'CreateSubnet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSubnetRequest', ], 'output' => [ 'shape' => 'CreateSubnetResult', ], ], 'CreateTags' => [ 'name' => 'CreateTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTagsRequest', ], ], 'CreateVolume' => [ 'name' => 'CreateVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVolumeRequest', ], 'output' => [ 'shape' => 'Volume', ], ], 'CreateVpc' => [ 'name' => 'CreateVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpcRequest', ], 'output' => [ 'shape' => 'CreateVpcResult', ], ], 'CreateVpcEndpoint' => [ 'name' => 'CreateVpcEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpcEndpointRequest', ], 'output' => [ 'shape' => 'CreateVpcEndpointResult', ], ], 'CreateVpcPeeringConnection' => [ 'name' => 'CreateVpcPeeringConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpcPeeringConnectionRequest', ], 'output' => [ 'shape' => 'CreateVpcPeeringConnectionResult', ], ], 'CreateVpnConnection' => [ 'name' => 'CreateVpnConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpnConnectionRequest', ], 'output' => [ 'shape' => 'CreateVpnConnectionResult', ], ], 'CreateVpnConnectionRoute' => [ 'name' => 'CreateVpnConnectionRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpnConnectionRouteRequest', ], ], 'CreateVpnGateway' => [ 'name' => 'CreateVpnGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateVpnGatewayRequest', ], 'output' => [ 'shape' => 'CreateVpnGatewayResult', ], ], 'DeleteCustomerGateway' => [ 'name' => 'DeleteCustomerGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCustomerGatewayRequest', ], ], 'DeleteDhcpOptions' => [ 'name' => 'DeleteDhcpOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDhcpOptionsRequest', ], ], 'DeleteFlowLogs' => [ 'name' => 'DeleteFlowLogs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteFlowLogsRequest', ], 'output' => [ 'shape' => 'DeleteFlowLogsResult', ], ], 'DeleteInternetGateway' => [ 'name' => 'DeleteInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteInternetGatewayRequest', ], ], 'DeleteKeyPair' => [ 'name' => 'DeleteKeyPair', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteKeyPairRequest', ], ], 'DeleteNatGateway' => [ 'name' => 'DeleteNatGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNatGatewayRequest', ], 'output' => [ 'shape' => 'DeleteNatGatewayResult', ], ], 'DeleteNetworkAcl' => [ 'name' => 'DeleteNetworkAcl', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkAclRequest', ], ], 'DeleteNetworkAclEntry' => [ 'name' => 'DeleteNetworkAclEntry', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkAclEntryRequest', ], ], 'DeleteNetworkInterface' => [ 'name' => 'DeleteNetworkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteNetworkInterfaceRequest', ], ], 'DeletePlacementGroup' => [ 'name' => 'DeletePlacementGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeletePlacementGroupRequest', ], ], 'DeleteRoute' => [ 'name' => 'DeleteRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRouteRequest', ], ], 'DeleteRouteTable' => [ 'name' => 'DeleteRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRouteTableRequest', ], ], 'DeleteSecurityGroup' => [ 'name' => 'DeleteSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSecurityGroupRequest', ], ], 'DeleteSnapshot' => [ 'name' => 'DeleteSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSnapshotRequest', ], ], 'DeleteSpotDatafeedSubscription' => [ 'name' => 'DeleteSpotDatafeedSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSpotDatafeedSubscriptionRequest', ], ], 'DeleteSubnet' => [ 'name' => 'DeleteSubnet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSubnetRequest', ], ], 'DeleteTags' => [ 'name' => 'DeleteTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTagsRequest', ], ], 'DeleteVolume' => [ 'name' => 'DeleteVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVolumeRequest', ], ], 'DeleteVpc' => [ 'name' => 'DeleteVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpcRequest', ], ], 'DeleteVpcEndpoints' => [ 'name' => 'DeleteVpcEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpcEndpointsRequest', ], 'output' => [ 'shape' => 'DeleteVpcEndpointsResult', ], ], 'DeleteVpcPeeringConnection' => [ 'name' => 'DeleteVpcPeeringConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpcPeeringConnectionRequest', ], 'output' => [ 'shape' => 'DeleteVpcPeeringConnectionResult', ], ], 'DeleteVpnConnection' => [ 'name' => 'DeleteVpnConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpnConnectionRequest', ], ], 'DeleteVpnConnectionRoute' => [ 'name' => 'DeleteVpnConnectionRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpnConnectionRouteRequest', ], ], 'DeleteVpnGateway' => [ 'name' => 'DeleteVpnGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVpnGatewayRequest', ], ], 'DeregisterImage' => [ 'name' => 'DeregisterImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeregisterImageRequest', ], ], 'DescribeAccountAttributes' => [ 'name' => 'DescribeAccountAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAccountAttributesRequest', ], 'output' => [ 'shape' => 'DescribeAccountAttributesResult', ], ], 'DescribeAddresses' => [ 'name' => 'DescribeAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAddressesRequest', ], 'output' => [ 'shape' => 'DescribeAddressesResult', ], ], 'DescribeAvailabilityZones' => [ 'name' => 'DescribeAvailabilityZones', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAvailabilityZonesRequest', ], 'output' => [ 'shape' => 'DescribeAvailabilityZonesResult', ], ], 'DescribeBundleTasks' => [ 'name' => 'DescribeBundleTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeBundleTasksRequest', ], 'output' => [ 'shape' => 'DescribeBundleTasksResult', ], ], 'DescribeClassicLinkInstances' => [ 'name' => 'DescribeClassicLinkInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClassicLinkInstancesRequest', ], 'output' => [ 'shape' => 'DescribeClassicLinkInstancesResult', ], ], 'DescribeConversionTasks' => [ 'name' => 'DescribeConversionTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConversionTasksRequest', ], 'output' => [ 'shape' => 'DescribeConversionTasksResult', ], ], 'DescribeCustomerGateways' => [ 'name' => 'DescribeCustomerGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCustomerGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeCustomerGatewaysResult', ], ], 'DescribeDhcpOptions' => [ 'name' => 'DescribeDhcpOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDhcpOptionsRequest', ], 'output' => [ 'shape' => 'DescribeDhcpOptionsResult', ], ], 'DescribeExportTasks' => [ 'name' => 'DescribeExportTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeExportTasksRequest', ], 'output' => [ 'shape' => 'DescribeExportTasksResult', ], ], 'DescribeFlowLogs' => [ 'name' => 'DescribeFlowLogs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFlowLogsRequest', ], 'output' => [ 'shape' => 'DescribeFlowLogsResult', ], ], 'DescribeHostReservationOfferings' => [ 'name' => 'DescribeHostReservationOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeHostReservationOfferingsRequest', ], 'output' => [ 'shape' => 'DescribeHostReservationOfferingsResult', ], ], 'DescribeHostReservations' => [ 'name' => 'DescribeHostReservations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeHostReservationsRequest', ], 'output' => [ 'shape' => 'DescribeHostReservationsResult', ], ], 'DescribeHosts' => [ 'name' => 'DescribeHosts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeHostsRequest', ], 'output' => [ 'shape' => 'DescribeHostsResult', ], ], 'DescribeIdFormat' => [ 'name' => 'DescribeIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIdFormatRequest', ], 'output' => [ 'shape' => 'DescribeIdFormatResult', ], ], 'DescribeIdentityIdFormat' => [ 'name' => 'DescribeIdentityIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeIdentityIdFormatRequest', ], 'output' => [ 'shape' => 'DescribeIdentityIdFormatResult', ], ], 'DescribeImageAttribute' => [ 'name' => 'DescribeImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeImageAttributeRequest', ], 'output' => [ 'shape' => 'ImageAttribute', ], ], 'DescribeImages' => [ 'name' => 'DescribeImages', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeImagesRequest', ], 'output' => [ 'shape' => 'DescribeImagesResult', ], ], 'DescribeImportImageTasks' => [ 'name' => 'DescribeImportImageTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeImportImageTasksRequest', ], 'output' => [ 'shape' => 'DescribeImportImageTasksResult', ], ], 'DescribeImportSnapshotTasks' => [ 'name' => 'DescribeImportSnapshotTasks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeImportSnapshotTasksRequest', ], 'output' => [ 'shape' => 'DescribeImportSnapshotTasksResult', ], ], 'DescribeInstanceAttribute' => [ 'name' => 'DescribeInstanceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceAttributeRequest', ], 'output' => [ 'shape' => 'InstanceAttribute', ], ], 'DescribeInstanceStatus' => [ 'name' => 'DescribeInstanceStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstanceStatusRequest', ], 'output' => [ 'shape' => 'DescribeInstanceStatusResult', ], ], 'DescribeInstances' => [ 'name' => 'DescribeInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstancesRequest', ], 'output' => [ 'shape' => 'DescribeInstancesResult', ], ], 'DescribeInternetGateways' => [ 'name' => 'DescribeInternetGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInternetGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeInternetGatewaysResult', ], ], 'DescribeKeyPairs' => [ 'name' => 'DescribeKeyPairs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeKeyPairsRequest', ], 'output' => [ 'shape' => 'DescribeKeyPairsResult', ], ], 'DescribeMovingAddresses' => [ 'name' => 'DescribeMovingAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeMovingAddressesRequest', ], 'output' => [ 'shape' => 'DescribeMovingAddressesResult', ], ], 'DescribeNatGateways' => [ 'name' => 'DescribeNatGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNatGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeNatGatewaysResult', ], ], 'DescribeNetworkAcls' => [ 'name' => 'DescribeNetworkAcls', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkAclsRequest', ], 'output' => [ 'shape' => 'DescribeNetworkAclsResult', ], ], 'DescribeNetworkInterfaceAttribute' => [ 'name' => 'DescribeNetworkInterfaceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInterfaceAttributeRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInterfaceAttributeResult', ], ], 'DescribeNetworkInterfaces' => [ 'name' => 'DescribeNetworkInterfaces', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeNetworkInterfacesRequest', ], 'output' => [ 'shape' => 'DescribeNetworkInterfacesResult', ], ], 'DescribePlacementGroups' => [ 'name' => 'DescribePlacementGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePlacementGroupsRequest', ], 'output' => [ 'shape' => 'DescribePlacementGroupsResult', ], ], 'DescribePrefixLists' => [ 'name' => 'DescribePrefixLists', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePrefixListsRequest', ], 'output' => [ 'shape' => 'DescribePrefixListsResult', ], ], 'DescribeRegions' => [ 'name' => 'DescribeRegions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeRegionsRequest', ], 'output' => [ 'shape' => 'DescribeRegionsResult', ], ], 'DescribeReservedInstances' => [ 'name' => 'DescribeReservedInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedInstancesRequest', ], 'output' => [ 'shape' => 'DescribeReservedInstancesResult', ], ], 'DescribeReservedInstancesListings' => [ 'name' => 'DescribeReservedInstancesListings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedInstancesListingsRequest', ], 'output' => [ 'shape' => 'DescribeReservedInstancesListingsResult', ], ], 'DescribeReservedInstancesModifications' => [ 'name' => 'DescribeReservedInstancesModifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedInstancesModificationsRequest', ], 'output' => [ 'shape' => 'DescribeReservedInstancesModificationsResult', ], ], 'DescribeReservedInstancesOfferings' => [ 'name' => 'DescribeReservedInstancesOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedInstancesOfferingsRequest', ], 'output' => [ 'shape' => 'DescribeReservedInstancesOfferingsResult', ], ], 'DescribeRouteTables' => [ 'name' => 'DescribeRouteTables', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeRouteTablesRequest', ], 'output' => [ 'shape' => 'DescribeRouteTablesResult', ], ], 'DescribeScheduledInstanceAvailability' => [ 'name' => 'DescribeScheduledInstanceAvailability', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeScheduledInstanceAvailabilityRequest', ], 'output' => [ 'shape' => 'DescribeScheduledInstanceAvailabilityResult', ], ], 'DescribeScheduledInstances' => [ 'name' => 'DescribeScheduledInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeScheduledInstancesRequest', ], 'output' => [ 'shape' => 'DescribeScheduledInstancesResult', ], ], 'DescribeSecurityGroupReferences' => [ 'name' => 'DescribeSecurityGroupReferences', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSecurityGroupReferencesRequest', ], 'output' => [ 'shape' => 'DescribeSecurityGroupReferencesResult', ], ], 'DescribeSecurityGroups' => [ 'name' => 'DescribeSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSecurityGroupsRequest', ], 'output' => [ 'shape' => 'DescribeSecurityGroupsResult', ], ], 'DescribeSnapshotAttribute' => [ 'name' => 'DescribeSnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSnapshotAttributeRequest', ], 'output' => [ 'shape' => 'DescribeSnapshotAttributeResult', ], ], 'DescribeSnapshots' => [ 'name' => 'DescribeSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSnapshotsRequest', ], 'output' => [ 'shape' => 'DescribeSnapshotsResult', ], ], 'DescribeSpotDatafeedSubscription' => [ 'name' => 'DescribeSpotDatafeedSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotDatafeedSubscriptionRequest', ], 'output' => [ 'shape' => 'DescribeSpotDatafeedSubscriptionResult', ], ], 'DescribeSpotFleetInstances' => [ 'name' => 'DescribeSpotFleetInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotFleetInstancesRequest', ], 'output' => [ 'shape' => 'DescribeSpotFleetInstancesResponse', ], ], 'DescribeSpotFleetRequestHistory' => [ 'name' => 'DescribeSpotFleetRequestHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotFleetRequestHistoryRequest', ], 'output' => [ 'shape' => 'DescribeSpotFleetRequestHistoryResponse', ], ], 'DescribeSpotFleetRequests' => [ 'name' => 'DescribeSpotFleetRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotFleetRequestsRequest', ], 'output' => [ 'shape' => 'DescribeSpotFleetRequestsResponse', ], ], 'DescribeSpotInstanceRequests' => [ 'name' => 'DescribeSpotInstanceRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotInstanceRequestsRequest', ], 'output' => [ 'shape' => 'DescribeSpotInstanceRequestsResult', ], ], 'DescribeSpotPriceHistory' => [ 'name' => 'DescribeSpotPriceHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSpotPriceHistoryRequest', ], 'output' => [ 'shape' => 'DescribeSpotPriceHistoryResult', ], ], 'DescribeStaleSecurityGroups' => [ 'name' => 'DescribeStaleSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStaleSecurityGroupsRequest', ], 'output' => [ 'shape' => 'DescribeStaleSecurityGroupsResult', ], ], 'DescribeSubnets' => [ 'name' => 'DescribeSubnets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSubnetsRequest', ], 'output' => [ 'shape' => 'DescribeSubnetsResult', ], ], 'DescribeTags' => [ 'name' => 'DescribeTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTagsRequest', ], 'output' => [ 'shape' => 'DescribeTagsResult', ], ], 'DescribeVolumeAttribute' => [ 'name' => 'DescribeVolumeAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVolumeAttributeRequest', ], 'output' => [ 'shape' => 'DescribeVolumeAttributeResult', ], ], 'DescribeVolumeStatus' => [ 'name' => 'DescribeVolumeStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVolumeStatusRequest', ], 'output' => [ 'shape' => 'DescribeVolumeStatusResult', ], ], 'DescribeVolumes' => [ 'name' => 'DescribeVolumes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVolumesRequest', ], 'output' => [ 'shape' => 'DescribeVolumesResult', ], ], 'DescribeVpcAttribute' => [ 'name' => 'DescribeVpcAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcAttributeRequest', ], 'output' => [ 'shape' => 'DescribeVpcAttributeResult', ], ], 'DescribeVpcClassicLink' => [ 'name' => 'DescribeVpcClassicLink', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcClassicLinkRequest', ], 'output' => [ 'shape' => 'DescribeVpcClassicLinkResult', ], ], 'DescribeVpcClassicLinkDnsSupport' => [ 'name' => 'DescribeVpcClassicLinkDnsSupport', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcClassicLinkDnsSupportRequest', ], 'output' => [ 'shape' => 'DescribeVpcClassicLinkDnsSupportResult', ], ], 'DescribeVpcEndpointServices' => [ 'name' => 'DescribeVpcEndpointServices', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointServicesRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointServicesResult', ], ], 'DescribeVpcEndpoints' => [ 'name' => 'DescribeVpcEndpoints', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcEndpointsRequest', ], 'output' => [ 'shape' => 'DescribeVpcEndpointsResult', ], ], 'DescribeVpcPeeringConnections' => [ 'name' => 'DescribeVpcPeeringConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcPeeringConnectionsRequest', ], 'output' => [ 'shape' => 'DescribeVpcPeeringConnectionsResult', ], ], 'DescribeVpcs' => [ 'name' => 'DescribeVpcs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpcsRequest', ], 'output' => [ 'shape' => 'DescribeVpcsResult', ], ], 'DescribeVpnConnections' => [ 'name' => 'DescribeVpnConnections', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpnConnectionsRequest', ], 'output' => [ 'shape' => 'DescribeVpnConnectionsResult', ], ], 'DescribeVpnGateways' => [ 'name' => 'DescribeVpnGateways', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeVpnGatewaysRequest', ], 'output' => [ 'shape' => 'DescribeVpnGatewaysResult', ], ], 'DetachClassicLinkVpc' => [ 'name' => 'DetachClassicLinkVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachClassicLinkVpcRequest', ], 'output' => [ 'shape' => 'DetachClassicLinkVpcResult', ], ], 'DetachInternetGateway' => [ 'name' => 'DetachInternetGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachInternetGatewayRequest', ], ], 'DetachNetworkInterface' => [ 'name' => 'DetachNetworkInterface', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachNetworkInterfaceRequest', ], ], 'DetachVolume' => [ 'name' => 'DetachVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachVolumeRequest', ], 'output' => [ 'shape' => 'VolumeAttachment', ], ], 'DetachVpnGateway' => [ 'name' => 'DetachVpnGateway', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DetachVpnGatewayRequest', ], ], 'DisableVgwRoutePropagation' => [ 'name' => 'DisableVgwRoutePropagation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableVgwRoutePropagationRequest', ], ], 'DisableVpcClassicLink' => [ 'name' => 'DisableVpcClassicLink', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableVpcClassicLinkRequest', ], 'output' => [ 'shape' => 'DisableVpcClassicLinkResult', ], ], 'DisableVpcClassicLinkDnsSupport' => [ 'name' => 'DisableVpcClassicLinkDnsSupport', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableVpcClassicLinkDnsSupportRequest', ], 'output' => [ 'shape' => 'DisableVpcClassicLinkDnsSupportResult', ], ], 'DisassociateAddress' => [ 'name' => 'DisassociateAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateAddressRequest', ], ], 'DisassociateRouteTable' => [ 'name' => 'DisassociateRouteTable', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateRouteTableRequest', ], ], 'EnableVgwRoutePropagation' => [ 'name' => 'EnableVgwRoutePropagation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableVgwRoutePropagationRequest', ], ], 'EnableVolumeIO' => [ 'name' => 'EnableVolumeIO', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableVolumeIORequest', ], ], 'EnableVpcClassicLink' => [ 'name' => 'EnableVpcClassicLink', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableVpcClassicLinkRequest', ], 'output' => [ 'shape' => 'EnableVpcClassicLinkResult', ], ], 'EnableVpcClassicLinkDnsSupport' => [ 'name' => 'EnableVpcClassicLinkDnsSupport', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableVpcClassicLinkDnsSupportRequest', ], 'output' => [ 'shape' => 'EnableVpcClassicLinkDnsSupportResult', ], ], 'GetConsoleOutput' => [ 'name' => 'GetConsoleOutput', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetConsoleOutputRequest', ], 'output' => [ 'shape' => 'GetConsoleOutputResult', ], ], 'GetConsoleScreenshot' => [ 'name' => 'GetConsoleScreenshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetConsoleScreenshotRequest', ], 'output' => [ 'shape' => 'GetConsoleScreenshotResult', ], ], 'GetHostReservationPurchasePreview' => [ 'name' => 'GetHostReservationPurchasePreview', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetHostReservationPurchasePreviewRequest', ], 'output' => [ 'shape' => 'GetHostReservationPurchasePreviewResult', ], ], 'GetPasswordData' => [ 'name' => 'GetPasswordData', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetPasswordDataRequest', ], 'output' => [ 'shape' => 'GetPasswordDataResult', ], ], 'GetReservedInstancesExchangeQuote' => [ 'name' => 'GetReservedInstancesExchangeQuote', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetReservedInstancesExchangeQuoteRequest', ], 'output' => [ 'shape' => 'GetReservedInstancesExchangeQuoteResult', ], ], 'ImportImage' => [ 'name' => 'ImportImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportImageRequest', ], 'output' => [ 'shape' => 'ImportImageResult', ], ], 'ImportInstance' => [ 'name' => 'ImportInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportInstanceRequest', ], 'output' => [ 'shape' => 'ImportInstanceResult', ], ], 'ImportKeyPair' => [ 'name' => 'ImportKeyPair', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportKeyPairRequest', ], 'output' => [ 'shape' => 'ImportKeyPairResult', ], ], 'ImportSnapshot' => [ 'name' => 'ImportSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportSnapshotRequest', ], 'output' => [ 'shape' => 'ImportSnapshotResult', ], ], 'ImportVolume' => [ 'name' => 'ImportVolume', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportVolumeRequest', ], 'output' => [ 'shape' => 'ImportVolumeResult', ], ], 'ModifyHosts' => [ 'name' => 'ModifyHosts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyHostsRequest', ], 'output' => [ 'shape' => 'ModifyHostsResult', ], ], 'ModifyIdFormat' => [ 'name' => 'ModifyIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIdFormatRequest', ], ], 'ModifyIdentityIdFormat' => [ 'name' => 'ModifyIdentityIdFormat', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyIdentityIdFormatRequest', ], ], 'ModifyImageAttribute' => [ 'name' => 'ModifyImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyImageAttributeRequest', ], ], 'ModifyInstanceAttribute' => [ 'name' => 'ModifyInstanceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceAttributeRequest', ], ], 'ModifyInstancePlacement' => [ 'name' => 'ModifyInstancePlacement', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstancePlacementRequest', ], 'output' => [ 'shape' => 'ModifyInstancePlacementResult', ], ], 'ModifyNetworkInterfaceAttribute' => [ 'name' => 'ModifyNetworkInterfaceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyNetworkInterfaceAttributeRequest', ], ], 'ModifyReservedInstances' => [ 'name' => 'ModifyReservedInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyReservedInstancesRequest', ], 'output' => [ 'shape' => 'ModifyReservedInstancesResult', ], ], 'ModifySnapshotAttribute' => [ 'name' => 'ModifySnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySnapshotAttributeRequest', ], ], 'ModifySpotFleetRequest' => [ 'name' => 'ModifySpotFleetRequest', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySpotFleetRequestRequest', ], 'output' => [ 'shape' => 'ModifySpotFleetRequestResponse', ], ], 'ModifySubnetAttribute' => [ 'name' => 'ModifySubnetAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySubnetAttributeRequest', ], ], 'ModifyVolumeAttribute' => [ 'name' => 'ModifyVolumeAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVolumeAttributeRequest', ], ], 'ModifyVpcAttribute' => [ 'name' => 'ModifyVpcAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcAttributeRequest', ], ], 'ModifyVpcEndpoint' => [ 'name' => 'ModifyVpcEndpoint', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcEndpointRequest', ], 'output' => [ 'shape' => 'ModifyVpcEndpointResult', ], ], 'ModifyVpcPeeringConnectionOptions' => [ 'name' => 'ModifyVpcPeeringConnectionOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyVpcPeeringConnectionOptionsRequest', ], 'output' => [ 'shape' => 'ModifyVpcPeeringConnectionOptionsResult', ], ], 'MonitorInstances' => [ 'name' => 'MonitorInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'MonitorInstancesRequest', ], 'output' => [ 'shape' => 'MonitorInstancesResult', ], ], 'MoveAddressToVpc' => [ 'name' => 'MoveAddressToVpc', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'MoveAddressToVpcRequest', ], 'output' => [ 'shape' => 'MoveAddressToVpcResult', ], ], 'PurchaseHostReservation' => [ 'name' => 'PurchaseHostReservation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseHostReservationRequest', ], 'output' => [ 'shape' => 'PurchaseHostReservationResult', ], ], 'PurchaseReservedInstancesOffering' => [ 'name' => 'PurchaseReservedInstancesOffering', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseReservedInstancesOfferingRequest', ], 'output' => [ 'shape' => 'PurchaseReservedInstancesOfferingResult', ], ], 'PurchaseScheduledInstances' => [ 'name' => 'PurchaseScheduledInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseScheduledInstancesRequest', ], 'output' => [ 'shape' => 'PurchaseScheduledInstancesResult', ], ], 'RebootInstances' => [ 'name' => 'RebootInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebootInstancesRequest', ], ], 'RegisterImage' => [ 'name' => 'RegisterImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RegisterImageRequest', ], 'output' => [ 'shape' => 'RegisterImageResult', ], ], 'RejectVpcPeeringConnection' => [ 'name' => 'RejectVpcPeeringConnection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RejectVpcPeeringConnectionRequest', ], 'output' => [ 'shape' => 'RejectVpcPeeringConnectionResult', ], ], 'ReleaseAddress' => [ 'name' => 'ReleaseAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReleaseAddressRequest', ], ], 'ReleaseHosts' => [ 'name' => 'ReleaseHosts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReleaseHostsRequest', ], 'output' => [ 'shape' => 'ReleaseHostsResult', ], ], 'ReplaceNetworkAclAssociation' => [ 'name' => 'ReplaceNetworkAclAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceNetworkAclAssociationRequest', ], 'output' => [ 'shape' => 'ReplaceNetworkAclAssociationResult', ], ], 'ReplaceNetworkAclEntry' => [ 'name' => 'ReplaceNetworkAclEntry', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceNetworkAclEntryRequest', ], ], 'ReplaceRoute' => [ 'name' => 'ReplaceRoute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceRouteRequest', ], ], 'ReplaceRouteTableAssociation' => [ 'name' => 'ReplaceRouteTableAssociation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReplaceRouteTableAssociationRequest', ], 'output' => [ 'shape' => 'ReplaceRouteTableAssociationResult', ], ], 'ReportInstanceStatus' => [ 'name' => 'ReportInstanceStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReportInstanceStatusRequest', ], ], 'RequestSpotFleet' => [ 'name' => 'RequestSpotFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RequestSpotFleetRequest', ], 'output' => [ 'shape' => 'RequestSpotFleetResponse', ], ], 'RequestSpotInstances' => [ 'name' => 'RequestSpotInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RequestSpotInstancesRequest', ], 'output' => [ 'shape' => 'RequestSpotInstancesResult', ], ], 'ResetImageAttribute' => [ 'name' => 'ResetImageAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetImageAttributeRequest', ], ], 'ResetInstanceAttribute' => [ 'name' => 'ResetInstanceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetInstanceAttributeRequest', ], ], 'ResetNetworkInterfaceAttribute' => [ 'name' => 'ResetNetworkInterfaceAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetNetworkInterfaceAttributeRequest', ], ], 'ResetSnapshotAttribute' => [ 'name' => 'ResetSnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetSnapshotAttributeRequest', ], ], 'RestoreAddressToClassic' => [ 'name' => 'RestoreAddressToClassic', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreAddressToClassicRequest', ], 'output' => [ 'shape' => 'RestoreAddressToClassicResult', ], ], 'RevokeSecurityGroupEgress' => [ 'name' => 'RevokeSecurityGroupEgress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeSecurityGroupEgressRequest', ], ], 'RevokeSecurityGroupIngress' => [ 'name' => 'RevokeSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeSecurityGroupIngressRequest', ], ], 'RunInstances' => [ 'name' => 'RunInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RunInstancesRequest', ], 'output' => [ 'shape' => 'Reservation', ], ], 'RunScheduledInstances' => [ 'name' => 'RunScheduledInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RunScheduledInstancesRequest', ], 'output' => [ 'shape' => 'RunScheduledInstancesResult', ], ], 'StartInstances' => [ 'name' => 'StartInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartInstancesRequest', ], 'output' => [ 'shape' => 'StartInstancesResult', ], ], 'StopInstances' => [ 'name' => 'StopInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopInstancesRequest', ], 'output' => [ 'shape' => 'StopInstancesResult', ], ], 'TerminateInstances' => [ 'name' => 'TerminateInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TerminateInstancesRequest', ], 'output' => [ 'shape' => 'TerminateInstancesResult', ], ], 'UnassignPrivateIpAddresses' => [ 'name' => 'UnassignPrivateIpAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UnassignPrivateIpAddressesRequest', ], ], 'UnmonitorInstances' => [ 'name' => 'UnmonitorInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UnmonitorInstancesRequest', ], 'output' => [ 'shape' => 'UnmonitorInstancesResult', ], ], ], 'shapes' => [ 'AcceptReservedInstancesExchangeQuoteRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstanceIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ReservedInstanceIds' => [ 'shape' => 'ReservedInstanceIdSet', 'locationName' => 'ReservedInstanceId', ], 'TargetConfigurations' => [ 'shape' => 'TargetConfigurationRequestSet', 'locationName' => 'TargetConfiguration', ], ], ], 'AcceptReservedInstancesExchangeQuoteResult' => [ 'type' => 'structure', 'members' => [ 'ExchangeId' => [ 'shape' => 'String', 'locationName' => 'exchangeId', ], ], ], 'AcceptVpcPeeringConnectionRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'AcceptVpcPeeringConnectionResult' => [ 'type' => 'structure', 'members' => [ 'VpcPeeringConnection' => [ 'shape' => 'VpcPeeringConnection', 'locationName' => 'vpcPeeringConnection', ], ], ], 'AccountAttribute' => [ 'type' => 'structure', 'members' => [ 'AttributeName' => [ 'shape' => 'String', 'locationName' => 'attributeName', ], 'AttributeValues' => [ 'shape' => 'AccountAttributeValueList', 'locationName' => 'attributeValueSet', ], ], ], 'AccountAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountAttribute', 'locationName' => 'item', ], ], 'AccountAttributeName' => [ 'type' => 'string', 'enum' => [ 'supported-platforms', 'default-vpc', ], ], 'AccountAttributeNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountAttributeName', 'locationName' => 'attributeName', ], ], 'AccountAttributeValue' => [ 'type' => 'structure', 'members' => [ 'AttributeValue' => [ 'shape' => 'String', 'locationName' => 'attributeValue', ], ], ], 'AccountAttributeValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountAttributeValue', 'locationName' => 'item', ], ], 'ActiveInstance' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'SpotInstanceRequestId' => [ 'shape' => 'String', 'locationName' => 'spotInstanceRequestId', ], ], ], 'ActiveInstanceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ActiveInstance', 'locationName' => 'item', ], ], 'ActivityStatus' => [ 'type' => 'string', 'enum' => [ 'error', 'pending_fulfillment', 'pending_termination', 'fulfilled', ], ], 'Address' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'Domain' => [ 'shape' => 'DomainType', 'locationName' => 'domain', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'NetworkInterfaceOwnerId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceOwnerId', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], ], ], 'AddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Address', 'locationName' => 'item', ], ], 'Affinity' => [ 'type' => 'string', 'enum' => [ 'default', 'host', ], ], 'AllocateAddressRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Domain' => [ 'shape' => 'DomainType', ], ], ], 'AllocateAddressResult' => [ 'type' => 'structure', 'members' => [ 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'Domain' => [ 'shape' => 'DomainType', 'locationName' => 'domain', ], 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], ], ], 'AllocateHostsRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceType', 'Quantity', 'AvailabilityZone', ], 'members' => [ 'AutoPlacement' => [ 'shape' => 'AutoPlacement', 'locationName' => 'autoPlacement', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'Quantity' => [ 'shape' => 'Integer', 'locationName' => 'quantity', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], ], ], 'AllocateHostsResult' => [ 'type' => 'structure', 'members' => [ 'HostIds' => [ 'shape' => 'ResponseHostIdList', 'locationName' => 'hostIdSet', ], ], ], 'AllocationIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'AllocationId', ], ], 'AllocationState' => [ 'type' => 'string', 'enum' => [ 'available', 'under-assessment', 'permanent-failure', 'released', 'released-permanent-failure', ], ], 'AllocationStrategy' => [ 'type' => 'string', 'enum' => [ 'lowestPrice', 'diversified', ], ], 'ArchitectureValues' => [ 'type' => 'string', 'enum' => [ 'i386', 'x86_64', ], ], 'AssignPrivateIpAddressesRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressStringList', 'locationName' => 'privateIpAddress', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'secondaryPrivateIpAddressCount', ], 'AllowReassignment' => [ 'shape' => 'Boolean', 'locationName' => 'allowReassignment', ], ], ], 'AssociateAddressRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'String', ], 'PublicIp' => [ 'shape' => 'String', ], 'AllocationId' => [ 'shape' => 'String', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'AllowReassociation' => [ 'shape' => 'Boolean', 'locationName' => 'allowReassociation', ], ], ], 'AssociateAddressResult' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], ], ], 'AssociateDhcpOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'DhcpOptionsId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'DhcpOptionsId' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], ], ], 'AssociateRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', 'RouteTableId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'RouteTableId' => [ 'shape' => 'String', 'locationName' => 'routeTableId', ], ], ], 'AssociateRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], ], ], 'AttachClassicLinkVpcRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'VpcId', 'Groups', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'Groups' => [ 'shape' => 'GroupIdStringList', 'locationName' => 'SecurityGroupId', ], ], ], 'AttachClassicLinkVpcResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'AttachInternetGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'InternetGatewayId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InternetGatewayId' => [ 'shape' => 'String', 'locationName' => 'internetGatewayId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'AttachNetworkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', 'InstanceId', 'DeviceIndex', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], ], ], 'AttachNetworkInterfaceResult' => [ 'type' => 'structure', 'members' => [ 'AttachmentId' => [ 'shape' => 'String', 'locationName' => 'attachmentId', ], ], ], 'AttachVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', 'InstanceId', 'Device', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VolumeId' => [ 'shape' => 'String', ], 'InstanceId' => [ 'shape' => 'String', ], 'Device' => [ 'shape' => 'String', ], ], ], 'AttachVpnGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'VpnGatewayId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpnGatewayId' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], ], ], 'AttachVpnGatewayResult' => [ 'type' => 'structure', 'members' => [ 'VpcAttachment' => [ 'shape' => 'VpcAttachment', 'locationName' => 'attachment', ], ], ], 'AttachmentStatus' => [ 'type' => 'string', 'enum' => [ 'attaching', 'attached', 'detaching', 'detached', ], ], 'AttributeBooleanValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Boolean', 'locationName' => 'value', ], ], ], 'AttributeValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'AuthorizeSecurityGroupEgressRequest' => [ 'type' => 'structure', 'required' => [ 'GroupId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'SourceSecurityGroupName' => [ 'shape' => 'String', 'locationName' => 'sourceSecurityGroupName', ], 'SourceSecurityGroupOwnerId' => [ 'shape' => 'String', 'locationName' => 'sourceSecurityGroupOwnerId', ], 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'CidrIp' => [ 'shape' => 'String', 'locationName' => 'cidrIp', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', 'locationName' => 'ipPermissions', ], ], ], 'AuthorizeSecurityGroupIngressRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupName' => [ 'shape' => 'String', ], 'GroupId' => [ 'shape' => 'String', ], 'SourceSecurityGroupName' => [ 'shape' => 'String', ], 'SourceSecurityGroupOwnerId' => [ 'shape' => 'String', ], 'IpProtocol' => [ 'shape' => 'String', ], 'FromPort' => [ 'shape' => 'Integer', ], 'ToPort' => [ 'shape' => 'Integer', ], 'CidrIp' => [ 'shape' => 'String', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', ], ], ], 'AutoPlacement' => [ 'type' => 'string', 'enum' => [ 'on', 'off', ], ], 'AvailabilityZone' => [ 'type' => 'structure', 'members' => [ 'ZoneName' => [ 'shape' => 'String', 'locationName' => 'zoneName', ], 'State' => [ 'shape' => 'AvailabilityZoneState', 'locationName' => 'zoneState', ], 'RegionName' => [ 'shape' => 'String', 'locationName' => 'regionName', ], 'Messages' => [ 'shape' => 'AvailabilityZoneMessageList', 'locationName' => 'messageSet', ], ], ], 'AvailabilityZoneList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AvailabilityZone', 'locationName' => 'item', ], ], 'AvailabilityZoneMessage' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'AvailabilityZoneMessageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AvailabilityZoneMessage', 'locationName' => 'item', ], ], 'AvailabilityZoneState' => [ 'type' => 'string', 'enum' => [ 'available', 'information', 'impaired', 'unavailable', ], ], 'AvailableCapacity' => [ 'type' => 'structure', 'members' => [ 'AvailableInstanceCapacity' => [ 'shape' => 'AvailableInstanceCapacityList', 'locationName' => 'availableInstanceCapacity', ], 'AvailableVCpus' => [ 'shape' => 'Integer', 'locationName' => 'availableVCpus', ], ], ], 'AvailableInstanceCapacityList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceCapacity', 'locationName' => 'item', ], ], 'BatchState' => [ 'type' => 'string', 'enum' => [ 'submitted', 'active', 'cancelled', 'failed', 'cancelled_running', 'cancelled_terminating', 'modifying', ], ], 'Blob' => [ 'type' => 'blob', ], 'BlobAttributeValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'Blob', 'locationName' => 'value', ], ], ], 'BlockDeviceMapping' => [ 'type' => 'structure', 'members' => [ 'VirtualName' => [ 'shape' => 'String', 'locationName' => 'virtualName', ], 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'Ebs' => [ 'shape' => 'EbsBlockDevice', 'locationName' => 'ebs', ], 'NoDevice' => [ 'shape' => 'String', 'locationName' => 'noDevice', ], ], ], 'BlockDeviceMappingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BlockDeviceMapping', 'locationName' => 'item', ], ], 'BlockDeviceMappingRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BlockDeviceMapping', 'locationName' => 'BlockDeviceMapping', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'BundleIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'BundleId', ], ], 'BundleInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'Storage', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'String', ], 'Storage' => [ 'shape' => 'Storage', ], ], ], 'BundleInstanceResult' => [ 'type' => 'structure', 'members' => [ 'BundleTask' => [ 'shape' => 'BundleTask', 'locationName' => 'bundleInstanceTask', ], ], ], 'BundleTask' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'BundleId' => [ 'shape' => 'String', 'locationName' => 'bundleId', ], 'State' => [ 'shape' => 'BundleTaskState', 'locationName' => 'state', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'UpdateTime' => [ 'shape' => 'DateTime', 'locationName' => 'updateTime', ], 'Storage' => [ 'shape' => 'Storage', 'locationName' => 'storage', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'BundleTaskError' => [ 'shape' => 'BundleTaskError', 'locationName' => 'error', ], ], ], 'BundleTaskError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'BundleTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BundleTask', 'locationName' => 'item', ], ], 'BundleTaskState' => [ 'type' => 'string', 'enum' => [ 'pending', 'waiting-for-shutdown', 'bundling', 'storing', 'cancelling', 'complete', 'failed', ], ], 'CancelBatchErrorCode' => [ 'type' => 'string', 'enum' => [ 'fleetRequestIdDoesNotExist', 'fleetRequestIdMalformed', 'fleetRequestNotInCancellableState', 'unexpectedError', ], ], 'CancelBundleTaskRequest' => [ 'type' => 'structure', 'required' => [ 'BundleId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'BundleId' => [ 'shape' => 'String', ], ], ], 'CancelBundleTaskResult' => [ 'type' => 'structure', 'members' => [ 'BundleTask' => [ 'shape' => 'BundleTask', 'locationName' => 'bundleInstanceTask', ], ], ], 'CancelConversionRequest' => [ 'type' => 'structure', 'required' => [ 'ConversionTaskId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ConversionTaskId' => [ 'shape' => 'String', 'locationName' => 'conversionTaskId', ], 'ReasonMessage' => [ 'shape' => 'String', 'locationName' => 'reasonMessage', ], ], ], 'CancelExportTaskRequest' => [ 'type' => 'structure', 'required' => [ 'ExportTaskId', ], 'members' => [ 'ExportTaskId' => [ 'shape' => 'String', 'locationName' => 'exportTaskId', ], ], ], 'CancelImportTaskRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ImportTaskId' => [ 'shape' => 'String', ], 'CancelReason' => [ 'shape' => 'String', ], ], ], 'CancelImportTaskResult' => [ 'type' => 'structure', 'members' => [ 'ImportTaskId' => [ 'shape' => 'String', 'locationName' => 'importTaskId', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'PreviousState' => [ 'shape' => 'String', 'locationName' => 'previousState', ], ], ], 'CancelReservedInstancesListingRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstancesListingId', ], 'members' => [ 'ReservedInstancesListingId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesListingId', ], ], ], 'CancelReservedInstancesListingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesListings' => [ 'shape' => 'ReservedInstancesListingList', 'locationName' => 'reservedInstancesListingsSet', ], ], ], 'CancelSpotFleetRequestsError' => [ 'type' => 'structure', 'required' => [ 'Code', 'Message', ], 'members' => [ 'Code' => [ 'shape' => 'CancelBatchErrorCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'CancelSpotFleetRequestsErrorItem' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', 'Error', ], 'members' => [ 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], 'Error' => [ 'shape' => 'CancelSpotFleetRequestsError', 'locationName' => 'error', ], ], ], 'CancelSpotFleetRequestsErrorSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CancelSpotFleetRequestsErrorItem', 'locationName' => 'item', ], ], 'CancelSpotFleetRequestsRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestIds', 'TerminateInstances', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotFleetRequestIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'spotFleetRequestId', ], 'TerminateInstances' => [ 'shape' => 'Boolean', 'locationName' => 'terminateInstances', ], ], ], 'CancelSpotFleetRequestsResponse' => [ 'type' => 'structure', 'members' => [ 'UnsuccessfulFleetRequests' => [ 'shape' => 'CancelSpotFleetRequestsErrorSet', 'locationName' => 'unsuccessfulFleetRequestSet', ], 'SuccessfulFleetRequests' => [ 'shape' => 'CancelSpotFleetRequestsSuccessSet', 'locationName' => 'successfulFleetRequestSet', ], ], ], 'CancelSpotFleetRequestsSuccessItem' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', 'CurrentSpotFleetRequestState', 'PreviousSpotFleetRequestState', ], 'members' => [ 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], 'CurrentSpotFleetRequestState' => [ 'shape' => 'BatchState', 'locationName' => 'currentSpotFleetRequestState', ], 'PreviousSpotFleetRequestState' => [ 'shape' => 'BatchState', 'locationName' => 'previousSpotFleetRequestState', ], ], ], 'CancelSpotFleetRequestsSuccessSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'CancelSpotFleetRequestsSuccessItem', 'locationName' => 'item', ], ], 'CancelSpotInstanceRequestState' => [ 'type' => 'string', 'enum' => [ 'active', 'open', 'closed', 'cancelled', 'completed', ], ], 'CancelSpotInstanceRequestsRequest' => [ 'type' => 'structure', 'required' => [ 'SpotInstanceRequestIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotInstanceRequestIds' => [ 'shape' => 'SpotInstanceRequestIdList', 'locationName' => 'SpotInstanceRequestId', ], ], ], 'CancelSpotInstanceRequestsResult' => [ 'type' => 'structure', 'members' => [ 'CancelledSpotInstanceRequests' => [ 'shape' => 'CancelledSpotInstanceRequestList', 'locationName' => 'spotInstanceRequestSet', ], ], ], 'CancelledSpotInstanceRequest' => [ 'type' => 'structure', 'members' => [ 'SpotInstanceRequestId' => [ 'shape' => 'String', 'locationName' => 'spotInstanceRequestId', ], 'State' => [ 'shape' => 'CancelSpotInstanceRequestState', 'locationName' => 'state', ], ], ], 'CancelledSpotInstanceRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CancelledSpotInstanceRequest', 'locationName' => 'item', ], ], 'ClassicLinkDnsSupport' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'ClassicLinkDnsSupported' => [ 'shape' => 'Boolean', 'locationName' => 'classicLinkDnsSupported', ], ], ], 'ClassicLinkDnsSupportList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClassicLinkDnsSupport', 'locationName' => 'item', ], ], 'ClassicLinkInstance' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ClassicLinkInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClassicLinkInstance', 'locationName' => 'item', ], ], 'ClientData' => [ 'type' => 'structure', 'members' => [ 'UploadStart' => [ 'shape' => 'DateTime', ], 'UploadEnd' => [ 'shape' => 'DateTime', ], 'UploadSize' => [ 'shape' => 'Double', ], 'Comment' => [ 'shape' => 'String', ], ], ], 'ConfirmProductInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'ProductCode', 'InstanceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ProductCode' => [ 'shape' => 'String', ], 'InstanceId' => [ 'shape' => 'String', ], ], ], 'ConfirmProductInstanceResult' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ContainerFormat' => [ 'type' => 'string', 'enum' => [ 'ova', ], ], 'ConversionIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'ConversionTask' => [ 'type' => 'structure', 'required' => [ 'ConversionTaskId', 'State', ], 'members' => [ 'ConversionTaskId' => [ 'shape' => 'String', 'locationName' => 'conversionTaskId', ], 'ExpirationTime' => [ 'shape' => 'String', 'locationName' => 'expirationTime', ], 'ImportInstance' => [ 'shape' => 'ImportInstanceTaskDetails', 'locationName' => 'importInstance', ], 'ImportVolume' => [ 'shape' => 'ImportVolumeTaskDetails', 'locationName' => 'importVolume', ], 'State' => [ 'shape' => 'ConversionTaskState', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'ConversionTaskState' => [ 'type' => 'string', 'enum' => [ 'active', 'cancelling', 'cancelled', 'completed', ], ], 'CopyImageRequest' => [ 'type' => 'structure', 'required' => [ 'SourceRegion', 'SourceImageId', 'Name', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SourceRegion' => [ 'shape' => 'String', ], 'SourceImageId' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], ], ], 'CopyImageResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], ], ], 'CopySnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'SourceRegion', 'SourceSnapshotId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SourceRegion' => [ 'shape' => 'String', ], 'SourceSnapshotId' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'DestinationRegion' => [ 'shape' => 'String', 'locationName' => 'destinationRegion', ], 'PresignedUrl' => [ 'shape' => 'String', 'locationName' => 'presignedUrl', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], ], ], 'CopySnapshotResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], ], ], 'CreateCustomerGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'Type', 'PublicIp', 'BgpAsn', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Type' => [ 'shape' => 'GatewayType', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'IpAddress', ], 'BgpAsn' => [ 'shape' => 'Integer', ], ], ], 'CreateCustomerGatewayResult' => [ 'type' => 'structure', 'members' => [ 'CustomerGateway' => [ 'shape' => 'CustomerGateway', 'locationName' => 'customerGateway', ], ], ], 'CreateDhcpOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'DhcpConfigurations', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'DhcpConfigurations' => [ 'shape' => 'NewDhcpConfigurationList', 'locationName' => 'dhcpConfiguration', ], ], ], 'CreateDhcpOptionsResult' => [ 'type' => 'structure', 'members' => [ 'DhcpOptions' => [ 'shape' => 'DhcpOptions', 'locationName' => 'dhcpOptions', ], ], ], 'CreateFlowLogsRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceIds', 'ResourceType', 'TrafficType', 'LogGroupName', 'DeliverLogsPermissionArn', ], 'members' => [ 'ResourceIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'ResourceId', ], 'ResourceType' => [ 'shape' => 'FlowLogsResourceType', ], 'TrafficType' => [ 'shape' => 'TrafficType', ], 'LogGroupName' => [ 'shape' => 'String', ], 'DeliverLogsPermissionArn' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', ], ], ], 'CreateFlowLogsResult' => [ 'type' => 'structure', 'members' => [ 'FlowLogIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'flowLogIdSet', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'CreateImageRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'Name', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'NoReboot' => [ 'shape' => 'Boolean', 'locationName' => 'noReboot', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingRequestList', 'locationName' => 'blockDeviceMapping', ], ], ], 'CreateImageResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], ], ], 'CreateInstanceExportTaskRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'TargetEnvironment' => [ 'shape' => 'ExportEnvironment', 'locationName' => 'targetEnvironment', ], 'ExportToS3Task' => [ 'shape' => 'ExportToS3TaskSpecification', 'locationName' => 'exportToS3', ], ], ], 'CreateInstanceExportTaskResult' => [ 'type' => 'structure', 'members' => [ 'ExportTask' => [ 'shape' => 'ExportTask', 'locationName' => 'exportTask', ], ], ], 'CreateInternetGatewayRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateInternetGatewayResult' => [ 'type' => 'structure', 'members' => [ 'InternetGateway' => [ 'shape' => 'InternetGateway', 'locationName' => 'internetGateway', ], ], ], 'CreateKeyPairRequest' => [ 'type' => 'structure', 'required' => [ 'KeyName', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'KeyName' => [ 'shape' => 'String', ], ], ], 'CreateNatGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', 'AllocationId', ], 'members' => [ 'SubnetId' => [ 'shape' => 'String', ], 'AllocationId' => [ 'shape' => 'String', ], 'ClientToken' => [ 'shape' => 'String', ], ], ], 'CreateNatGatewayResult' => [ 'type' => 'structure', 'members' => [ 'NatGateway' => [ 'shape' => 'NatGateway', 'locationName' => 'natGateway', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateNetworkAclEntryRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkAclId', 'RuleNumber', 'Protocol', 'RuleAction', 'Egress', 'CidrBlock', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkAclId' => [ 'shape' => 'String', 'locationName' => 'networkAclId', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'RuleAction' => [ 'shape' => 'RuleAction', 'locationName' => 'ruleAction', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'IcmpTypeCode' => [ 'shape' => 'IcmpTypeCode', 'locationName' => 'Icmp', ], 'PortRange' => [ 'shape' => 'PortRange', 'locationName' => 'portRange', ], ], ], 'CreateNetworkAclRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'CreateNetworkAclResult' => [ 'type' => 'structure', 'members' => [ 'NetworkAcl' => [ 'shape' => 'NetworkAcl', 'locationName' => 'networkAcl', ], ], ], 'CreateNetworkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'Groups' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressSpecificationList', 'locationName' => 'privateIpAddresses', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'secondaryPrivateIpAddressCount', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'CreateNetworkInterfaceResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInterface' => [ 'shape' => 'NetworkInterface', 'locationName' => 'networkInterface', ], ], ], 'CreatePlacementGroupRequest' => [ 'type' => 'structure', 'required' => [ 'GroupName', 'Strategy', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'Strategy' => [ 'shape' => 'PlacementStrategy', 'locationName' => 'strategy', ], ], ], 'CreateReservedInstancesListingRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstancesId', 'InstanceCount', 'PriceSchedules', 'ClientToken', ], 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'PriceSchedules' => [ 'shape' => 'PriceScheduleSpecificationList', 'locationName' => 'priceSchedules', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateReservedInstancesListingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesListings' => [ 'shape' => 'ReservedInstancesListingList', 'locationName' => 'reservedInstancesListingsSet', ], ], ], 'CreateRouteRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', 'DestinationCidrBlock', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableId' => [ 'shape' => 'String', 'locationName' => 'routeTableId', ], 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'GatewayId' => [ 'shape' => 'String', 'locationName' => 'gatewayId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], 'NatGatewayId' => [ 'shape' => 'String', 'locationName' => 'natGatewayId', ], ], ], 'CreateRouteResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'CreateRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'CreateRouteTableResult' => [ 'type' => 'structure', 'members' => [ 'RouteTable' => [ 'shape' => 'RouteTable', 'locationName' => 'routeTable', ], ], ], 'CreateSecurityGroupRequest' => [ 'type' => 'structure', 'required' => [ 'GroupName', 'Description', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'GroupDescription', ], 'VpcId' => [ 'shape' => 'String', ], ], ], 'CreateSecurityGroupResult' => [ 'type' => 'structure', 'members' => [ 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], ], ], 'CreateSnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VolumeId' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], ], 'CreateSpotDatafeedSubscriptionRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Bucket' => [ 'shape' => 'String', 'locationName' => 'bucket', ], 'Prefix' => [ 'shape' => 'String', 'locationName' => 'prefix', ], ], ], 'CreateSpotDatafeedSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'SpotDatafeedSubscription' => [ 'shape' => 'SpotDatafeedSubscription', 'locationName' => 'spotDatafeedSubscription', ], ], ], 'CreateSubnetRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', 'CidrBlock', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'String', ], 'CidrBlock' => [ 'shape' => 'String', ], 'AvailabilityZone' => [ 'shape' => 'String', ], ], ], 'CreateSubnetResult' => [ 'type' => 'structure', 'members' => [ 'Subnet' => [ 'shape' => 'Subnet', 'locationName' => 'subnet', ], ], ], 'CreateTagsRequest' => [ 'type' => 'structure', 'required' => [ 'Resources', 'Tags', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Resources' => [ 'shape' => 'ResourceIdList', 'locationName' => 'ResourceId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'Tag', ], ], ], 'CreateVolumePermission' => [ 'type' => 'structure', 'members' => [ 'UserId' => [ 'shape' => 'String', 'locationName' => 'userId', ], 'Group' => [ 'shape' => 'PermissionGroup', 'locationName' => 'group', ], ], ], 'CreateVolumePermissionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CreateVolumePermission', 'locationName' => 'item', ], ], 'CreateVolumePermissionModifications' => [ 'type' => 'structure', 'members' => [ 'Add' => [ 'shape' => 'CreateVolumePermissionList', ], 'Remove' => [ 'shape' => 'CreateVolumePermissionList', ], ], ], 'CreateVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZone', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Size' => [ 'shape' => 'Integer', ], 'SnapshotId' => [ 'shape' => 'String', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'VolumeType' => [ 'shape' => 'VolumeType', ], 'Iops' => [ 'shape' => 'Integer', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'KmsKeyId' => [ 'shape' => 'String', ], ], ], 'CreateVpcEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', 'ServiceName', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcId' => [ 'shape' => 'String', ], 'ServiceName' => [ 'shape' => 'String', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'RouteTableIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'RouteTableId', ], 'ClientToken' => [ 'shape' => 'String', ], ], ], 'CreateVpcEndpointResult' => [ 'type' => 'structure', 'members' => [ 'VpcEndpoint' => [ 'shape' => 'VpcEndpoint', 'locationName' => 'vpcEndpoint', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'CreateVpcPeeringConnectionRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'PeerVpcId' => [ 'shape' => 'String', 'locationName' => 'peerVpcId', ], 'PeerOwnerId' => [ 'shape' => 'String', 'locationName' => 'peerOwnerId', ], ], ], 'CreateVpcPeeringConnectionResult' => [ 'type' => 'structure', 'members' => [ 'VpcPeeringConnection' => [ 'shape' => 'VpcPeeringConnection', 'locationName' => 'vpcPeeringConnection', ], ], ], 'CreateVpcRequest' => [ 'type' => 'structure', 'required' => [ 'CidrBlock', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'CidrBlock' => [ 'shape' => 'String', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], ], ], 'CreateVpcResult' => [ 'type' => 'structure', 'members' => [ 'Vpc' => [ 'shape' => 'Vpc', 'locationName' => 'vpc', ], ], ], 'CreateVpnConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'Type', 'CustomerGatewayId', 'VpnGatewayId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Type' => [ 'shape' => 'String', ], 'CustomerGatewayId' => [ 'shape' => 'String', ], 'VpnGatewayId' => [ 'shape' => 'String', ], 'Options' => [ 'shape' => 'VpnConnectionOptionsSpecification', 'locationName' => 'options', ], ], ], 'CreateVpnConnectionResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnection' => [ 'shape' => 'VpnConnection', 'locationName' => 'vpnConnection', ], ], ], 'CreateVpnConnectionRouteRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', 'DestinationCidrBlock', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'String', ], 'DestinationCidrBlock' => [ 'shape' => 'String', ], ], ], 'CreateVpnGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Type' => [ 'shape' => 'GatewayType', ], 'AvailabilityZone' => [ 'shape' => 'String', ], ], ], 'CreateVpnGatewayResult' => [ 'type' => 'structure', 'members' => [ 'VpnGateway' => [ 'shape' => 'VpnGateway', 'locationName' => 'vpnGateway', ], ], ], 'CurrencyCodeValues' => [ 'type' => 'string', 'enum' => [ 'USD', ], ], 'CustomerGateway' => [ 'type' => 'structure', 'members' => [ 'CustomerGatewayId' => [ 'shape' => 'String', 'locationName' => 'customerGatewayId', ], 'State' => [ 'shape' => 'String', 'locationName' => 'state', ], 'Type' => [ 'shape' => 'String', 'locationName' => 'type', ], 'IpAddress' => [ 'shape' => 'String', 'locationName' => 'ipAddress', ], 'BgpAsn' => [ 'shape' => 'String', 'locationName' => 'bgpAsn', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'CustomerGatewayIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'CustomerGatewayId', ], ], 'CustomerGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CustomerGateway', 'locationName' => 'item', ], ], 'DatafeedSubscriptionState' => [ 'type' => 'string', 'enum' => [ 'Active', 'Inactive', ], ], 'DateTime' => [ 'type' => 'timestamp', ], 'DeleteCustomerGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'CustomerGatewayId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'CustomerGatewayId' => [ 'shape' => 'String', ], ], ], 'DeleteDhcpOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'DhcpOptionsId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'DhcpOptionsId' => [ 'shape' => 'String', ], ], ], 'DeleteFlowLogsRequest' => [ 'type' => 'structure', 'required' => [ 'FlowLogIds', ], 'members' => [ 'FlowLogIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'FlowLogId', ], ], ], 'DeleteFlowLogsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'DeleteInternetGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'InternetGatewayId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InternetGatewayId' => [ 'shape' => 'String', 'locationName' => 'internetGatewayId', ], ], ], 'DeleteKeyPairRequest' => [ 'type' => 'structure', 'required' => [ 'KeyName', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'KeyName' => [ 'shape' => 'String', ], ], ], 'DeleteNatGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'NatGatewayId', ], 'members' => [ 'NatGatewayId' => [ 'shape' => 'String', ], ], ], 'DeleteNatGatewayResult' => [ 'type' => 'structure', 'members' => [ 'NatGatewayId' => [ 'shape' => 'String', 'locationName' => 'natGatewayId', ], ], ], 'DeleteNetworkAclEntryRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkAclId', 'RuleNumber', 'Egress', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkAclId' => [ 'shape' => 'String', 'locationName' => 'networkAclId', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], ], ], 'DeleteNetworkAclRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkAclId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkAclId' => [ 'shape' => 'String', 'locationName' => 'networkAclId', ], ], ], 'DeleteNetworkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], ], ], 'DeletePlacementGroupRequest' => [ 'type' => 'structure', 'required' => [ 'GroupName', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], ], ], 'DeleteRouteRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', 'DestinationCidrBlock', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableId' => [ 'shape' => 'String', 'locationName' => 'routeTableId', ], 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], ], ], 'DeleteRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableId' => [ 'shape' => 'String', 'locationName' => 'routeTableId', ], ], ], 'DeleteSecurityGroupRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupName' => [ 'shape' => 'String', ], 'GroupId' => [ 'shape' => 'String', ], ], ], 'DeleteSnapshotRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SnapshotId' => [ 'shape' => 'String', ], ], ], 'DeleteSpotDatafeedSubscriptionRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DeleteSubnetRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SubnetId' => [ 'shape' => 'String', ], ], ], 'DeleteTagsRequest' => [ 'type' => 'structure', 'required' => [ 'Resources', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Resources' => [ 'shape' => 'ResourceIdList', 'locationName' => 'resourceId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tag', ], ], ], 'DeleteVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VolumeId' => [ 'shape' => 'String', ], ], ], 'DeleteVpcEndpointsRequest' => [ 'type' => 'structure', 'required' => [ 'VpcEndpointIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcEndpointIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'VpcEndpointId', ], ], ], 'DeleteVpcEndpointsResult' => [ 'type' => 'structure', 'members' => [ 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemSet', 'locationName' => 'unsuccessful', ], ], ], 'DeleteVpcPeeringConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpcPeeringConnectionId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'DeleteVpcPeeringConnectionResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DeleteVpcRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'String', ], ], ], 'DeleteVpnConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpnConnectionId' => [ 'shape' => 'String', ], ], ], 'DeleteVpnConnectionRouteRequest' => [ 'type' => 'structure', 'required' => [ 'VpnConnectionId', 'DestinationCidrBlock', ], 'members' => [ 'VpnConnectionId' => [ 'shape' => 'String', ], 'DestinationCidrBlock' => [ 'shape' => 'String', ], ], ], 'DeleteVpnGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'VpnGatewayId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpnGatewayId' => [ 'shape' => 'String', ], ], ], 'DeregisterImageRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ImageId' => [ 'shape' => 'String', ], ], ], 'DescribeAccountAttributesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'AttributeNames' => [ 'shape' => 'AccountAttributeNameStringList', 'locationName' => 'attributeName', ], ], ], 'DescribeAccountAttributesResult' => [ 'type' => 'structure', 'members' => [ 'AccountAttributes' => [ 'shape' => 'AccountAttributeList', 'locationName' => 'accountAttributeSet', ], ], ], 'DescribeAddressesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'PublicIps' => [ 'shape' => 'PublicIpStringList', 'locationName' => 'PublicIp', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'AllocationIds' => [ 'shape' => 'AllocationIdList', 'locationName' => 'AllocationId', ], ], ], 'DescribeAddressesResult' => [ 'type' => 'structure', 'members' => [ 'Addresses' => [ 'shape' => 'AddressList', 'locationName' => 'addressesSet', ], ], ], 'DescribeAvailabilityZonesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ZoneNames' => [ 'shape' => 'ZoneNameStringList', 'locationName' => 'ZoneName', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeAvailabilityZonesResult' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZoneList', 'locationName' => 'availabilityZoneInfo', ], ], ], 'DescribeBundleTasksRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'BundleIds' => [ 'shape' => 'BundleIdStringList', 'locationName' => 'BundleId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeBundleTasksResult' => [ 'type' => 'structure', 'members' => [ 'BundleTasks' => [ 'shape' => 'BundleTaskList', 'locationName' => 'bundleInstanceTasksSet', ], ], ], 'DescribeClassicLinkInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], ], ], 'DescribeClassicLinkInstancesResult' => [ 'type' => 'structure', 'members' => [ 'Instances' => [ 'shape' => 'ClassicLinkInstanceList', 'locationName' => 'instancesSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeConversionTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConversionTask', 'locationName' => 'item', ], ], 'DescribeConversionTasksRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ConversionTaskIds' => [ 'shape' => 'ConversionIdStringList', 'locationName' => 'conversionTaskId', ], ], ], 'DescribeConversionTasksResult' => [ 'type' => 'structure', 'members' => [ 'ConversionTasks' => [ 'shape' => 'DescribeConversionTaskList', 'locationName' => 'conversionTasks', ], ], ], 'DescribeCustomerGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'CustomerGatewayIds' => [ 'shape' => 'CustomerGatewayIdStringList', 'locationName' => 'CustomerGatewayId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeCustomerGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'CustomerGateways' => [ 'shape' => 'CustomerGatewayList', 'locationName' => 'customerGatewaySet', ], ], ], 'DescribeDhcpOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'DhcpOptionsIds' => [ 'shape' => 'DhcpOptionsIdStringList', 'locationName' => 'DhcpOptionsId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeDhcpOptionsResult' => [ 'type' => 'structure', 'members' => [ 'DhcpOptions' => [ 'shape' => 'DhcpOptionsList', 'locationName' => 'dhcpOptionsSet', ], ], ], 'DescribeExportTasksRequest' => [ 'type' => 'structure', 'members' => [ 'ExportTaskIds' => [ 'shape' => 'ExportTaskIdStringList', 'locationName' => 'exportTaskId', ], ], ], 'DescribeExportTasksResult' => [ 'type' => 'structure', 'members' => [ 'ExportTasks' => [ 'shape' => 'ExportTaskList', 'locationName' => 'exportTaskSet', ], ], ], 'DescribeFlowLogsRequest' => [ 'type' => 'structure', 'members' => [ 'FlowLogIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'FlowLogId', ], 'Filter' => [ 'shape' => 'FilterList', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], ], ], 'DescribeFlowLogsResult' => [ 'type' => 'structure', 'members' => [ 'FlowLogs' => [ 'shape' => 'FlowLogSet', 'locationName' => 'flowLogSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeHostReservationOfferingsRequest' => [ 'type' => 'structure', 'members' => [ 'OfferingId' => [ 'shape' => 'String', ], 'MinDuration' => [ 'shape' => 'Integer', ], 'MaxDuration' => [ 'shape' => 'Integer', ], 'Filter' => [ 'shape' => 'FilterList', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeHostReservationOfferingsResult' => [ 'type' => 'structure', 'members' => [ 'OfferingSet' => [ 'shape' => 'HostOfferingSet', 'locationName' => 'offeringSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeHostReservationsRequest' => [ 'type' => 'structure', 'members' => [ 'HostReservationIdSet' => [ 'shape' => 'HostReservationIdSet', ], 'Filter' => [ 'shape' => 'FilterList', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeHostReservationsResult' => [ 'type' => 'structure', 'members' => [ 'HostReservationSet' => [ 'shape' => 'HostReservationSet', 'locationName' => 'hostReservationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeHostsRequest' => [ 'type' => 'structure', 'members' => [ 'HostIds' => [ 'shape' => 'RequestHostIdList', 'locationName' => 'hostId', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'Filter' => [ 'shape' => 'FilterList', 'locationName' => 'filter', ], ], ], 'DescribeHostsResult' => [ 'type' => 'structure', 'members' => [ 'Hosts' => [ 'shape' => 'HostList', 'locationName' => 'hostSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeIdFormatRequest' => [ 'type' => 'structure', 'members' => [ 'Resource' => [ 'shape' => 'String', ], ], ], 'DescribeIdFormatResult' => [ 'type' => 'structure', 'members' => [ 'Statuses' => [ 'shape' => 'IdFormatList', 'locationName' => 'statusSet', ], ], ], 'DescribeIdentityIdFormatRequest' => [ 'type' => 'structure', 'required' => [ 'PrincipalArn', ], 'members' => [ 'Resource' => [ 'shape' => 'String', 'locationName' => 'resource', ], 'PrincipalArn' => [ 'shape' => 'String', 'locationName' => 'principalArn', ], ], ], 'DescribeIdentityIdFormatResult' => [ 'type' => 'structure', 'members' => [ 'Statuses' => [ 'shape' => 'IdFormatList', 'locationName' => 'statusSet', ], ], ], 'DescribeImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', 'Attribute', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ImageId' => [ 'shape' => 'String', ], 'Attribute' => [ 'shape' => 'ImageAttributeName', ], ], ], 'DescribeImagesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ImageIds' => [ 'shape' => 'ImageIdStringList', 'locationName' => 'ImageId', ], 'Owners' => [ 'shape' => 'OwnerStringList', 'locationName' => 'Owner', ], 'ExecutableUsers' => [ 'shape' => 'ExecutableByStringList', 'locationName' => 'ExecutableBy', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeImagesResult' => [ 'type' => 'structure', 'members' => [ 'Images' => [ 'shape' => 'ImageList', 'locationName' => 'imagesSet', ], ], ], 'DescribeImportImageTasksRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ImportTaskIds' => [ 'shape' => 'ImportTaskIdList', 'locationName' => 'ImportTaskId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'Filters' => [ 'shape' => 'FilterList', ], ], ], 'DescribeImportImageTasksResult' => [ 'type' => 'structure', 'members' => [ 'ImportImageTasks' => [ 'shape' => 'ImportImageTaskList', 'locationName' => 'importImageTaskSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeImportSnapshotTasksRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ImportTaskIds' => [ 'shape' => 'ImportTaskIdList', 'locationName' => 'ImportTaskId', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'Filters' => [ 'shape' => 'FilterList', ], ], ], 'DescribeImportSnapshotTasksResult' => [ 'type' => 'structure', 'members' => [ 'ImportSnapshotTasks' => [ 'shape' => 'ImportSnapshotTaskList', 'locationName' => 'importSnapshotTaskSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstanceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'Attribute', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Attribute' => [ 'shape' => 'InstanceAttributeName', 'locationName' => 'attribute', ], ], ], 'DescribeInstanceStatusRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'IncludeAllInstances' => [ 'shape' => 'Boolean', 'locationName' => 'includeAllInstances', ], ], ], 'DescribeInstanceStatusResult' => [ 'type' => 'structure', 'members' => [ 'InstanceStatuses' => [ 'shape' => 'InstanceStatusList', 'locationName' => 'instanceStatusSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], ], ], 'DescribeInstancesResult' => [ 'type' => 'structure', 'members' => [ 'Reservations' => [ 'shape' => 'ReservationList', 'locationName' => 'reservationSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeInternetGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InternetGatewayIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'internetGatewayId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeInternetGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'InternetGateways' => [ 'shape' => 'InternetGatewayList', 'locationName' => 'internetGatewaySet', ], ], ], 'DescribeKeyPairsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'KeyNames' => [ 'shape' => 'KeyNameStringList', 'locationName' => 'KeyName', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeKeyPairsResult' => [ 'type' => 'structure', 'members' => [ 'KeyPairs' => [ 'shape' => 'KeyPairList', 'locationName' => 'keySet', ], ], ], 'DescribeMovingAddressesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'PublicIps' => [ 'shape' => 'ValueStringList', 'locationName' => 'publicIp', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'filter', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], ], ], 'DescribeMovingAddressesResult' => [ 'type' => 'structure', 'members' => [ 'MovingAddressStatuses' => [ 'shape' => 'MovingAddressStatusSet', 'locationName' => 'movingAddressStatusSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNatGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'NatGatewayIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'NatGatewayId', ], 'Filter' => [ 'shape' => 'FilterList', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeNatGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'NatGateways' => [ 'shape' => 'NatGatewayList', 'locationName' => 'natGatewaySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeNetworkAclsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkAclIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'NetworkAclId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeNetworkAclsResult' => [ 'type' => 'structure', 'members' => [ 'NetworkAcls' => [ 'shape' => 'NetworkAclList', 'locationName' => 'networkAclSet', ], ], ], 'DescribeNetworkInterfaceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'Attribute' => [ 'shape' => 'NetworkInterfaceAttribute', 'locationName' => 'attribute', ], ], ], 'DescribeNetworkInterfaceAttributeResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'Description' => [ 'shape' => 'AttributeValue', 'locationName' => 'description', ], 'SourceDestCheck' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'sourceDestCheck', ], 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'Attachment' => [ 'shape' => 'NetworkInterfaceAttachment', 'locationName' => 'attachment', ], ], ], 'DescribeNetworkInterfacesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceIds' => [ 'shape' => 'NetworkInterfaceIdList', 'locationName' => 'NetworkInterfaceId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'filter', ], ], ], 'DescribeNetworkInterfacesResult' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaces' => [ 'shape' => 'NetworkInterfaceList', 'locationName' => 'networkInterfaceSet', ], ], ], 'DescribePlacementGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupNames' => [ 'shape' => 'PlacementGroupStringList', 'locationName' => 'groupName', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribePlacementGroupsResult' => [ 'type' => 'structure', 'members' => [ 'PlacementGroups' => [ 'shape' => 'PlacementGroupList', 'locationName' => 'placementGroupSet', ], ], ], 'DescribePrefixListsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'PrefixListIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'PrefixListId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribePrefixListsResult' => [ 'type' => 'structure', 'members' => [ 'PrefixLists' => [ 'shape' => 'PrefixListSet', 'locationName' => 'prefixListSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeRegionsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RegionNames' => [ 'shape' => 'RegionNameStringList', 'locationName' => 'RegionName', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeRegionsResult' => [ 'type' => 'structure', 'members' => [ 'Regions' => [ 'shape' => 'RegionList', 'locationName' => 'regionInfo', ], ], ], 'DescribeReservedInstancesListingsRequest' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], 'ReservedInstancesListingId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesListingId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeReservedInstancesListingsResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesListings' => [ 'shape' => 'ReservedInstancesListingList', 'locationName' => 'reservedInstancesListingsSet', ], ], ], 'DescribeReservedInstancesModificationsRequest' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesModificationIds' => [ 'shape' => 'ReservedInstancesModificationIdStringList', 'locationName' => 'ReservedInstancesModificationId', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeReservedInstancesModificationsResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesModifications' => [ 'shape' => 'ReservedInstancesModificationList', 'locationName' => 'reservedInstancesModificationsSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeReservedInstancesOfferingsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ReservedInstancesOfferingIds' => [ 'shape' => 'ReservedInstancesOfferingIdStringList', 'locationName' => 'ReservedInstancesOfferingId', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'OfferingType' => [ 'shape' => 'OfferingTypeValues', 'locationName' => 'offeringType', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'IncludeMarketplace' => [ 'shape' => 'Boolean', ], 'MinDuration' => [ 'shape' => 'Long', ], 'MaxDuration' => [ 'shape' => 'Long', ], 'MaxInstanceCount' => [ 'shape' => 'Integer', ], 'OfferingClass' => [ 'shape' => 'OfferingClassType', ], ], ], 'DescribeReservedInstancesOfferingsResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesOfferings' => [ 'shape' => 'ReservedInstancesOfferingList', 'locationName' => 'reservedInstancesOfferingsSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeReservedInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ReservedInstancesIds' => [ 'shape' => 'ReservedInstancesIdStringList', 'locationName' => 'ReservedInstancesId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'OfferingType' => [ 'shape' => 'OfferingTypeValues', 'locationName' => 'offeringType', ], 'OfferingClass' => [ 'shape' => 'OfferingClassType', ], ], ], 'DescribeReservedInstancesResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstances' => [ 'shape' => 'ReservedInstancesList', 'locationName' => 'reservedInstancesSet', ], ], ], 'DescribeRouteTablesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'RouteTableId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeRouteTablesResult' => [ 'type' => 'structure', 'members' => [ 'RouteTables' => [ 'shape' => 'RouteTableList', 'locationName' => 'routeTableSet', ], ], ], 'DescribeScheduledInstanceAvailabilityRequest' => [ 'type' => 'structure', 'required' => [ 'Recurrence', 'FirstSlotStartTimeRange', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Recurrence' => [ 'shape' => 'ScheduledInstanceRecurrenceRequest', ], 'FirstSlotStartTimeRange' => [ 'shape' => 'SlotDateTimeRangeRequest', ], 'MinSlotDurationInHours' => [ 'shape' => 'Integer', ], 'MaxSlotDurationInHours' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeScheduledInstanceAvailabilityResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'ScheduledInstanceAvailabilitySet' => [ 'shape' => 'ScheduledInstanceAvailabilitySet', 'locationName' => 'scheduledInstanceAvailabilitySet', ], ], ], 'DescribeScheduledInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ScheduledInstanceIds' => [ 'shape' => 'ScheduledInstanceIdRequestSet', 'locationName' => 'ScheduledInstanceId', ], 'SlotStartTimeRange' => [ 'shape' => 'SlotStartTimeRangeRequest', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeScheduledInstancesResult' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'ScheduledInstanceSet' => [ 'shape' => 'ScheduledInstanceSet', 'locationName' => 'scheduledInstanceSet', ], ], ], 'DescribeSecurityGroupReferencesRequest' => [ 'type' => 'structure', 'required' => [ 'GroupId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'GroupId' => [ 'shape' => 'GroupIds', ], ], ], 'DescribeSecurityGroupReferencesResult' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupReferenceSet' => [ 'shape' => 'SecurityGroupReferences', 'locationName' => 'securityGroupReferenceSet', ], ], ], 'DescribeSecurityGroupsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupNames' => [ 'shape' => 'GroupNameStringList', 'locationName' => 'GroupName', ], 'GroupIds' => [ 'shape' => 'GroupIdStringList', 'locationName' => 'GroupId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeSecurityGroupsResult' => [ 'type' => 'structure', 'members' => [ 'SecurityGroups' => [ 'shape' => 'SecurityGroupList', 'locationName' => 'securityGroupInfo', ], ], ], 'DescribeSnapshotAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', 'Attribute', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SnapshotId' => [ 'shape' => 'String', ], 'Attribute' => [ 'shape' => 'SnapshotAttributeName', ], ], ], 'DescribeSnapshotAttributeResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'CreateVolumePermissions' => [ 'shape' => 'CreateVolumePermissionList', 'locationName' => 'createVolumePermission', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], ], ], 'DescribeSnapshotsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SnapshotIds' => [ 'shape' => 'SnapshotIdStringList', 'locationName' => 'SnapshotId', ], 'OwnerIds' => [ 'shape' => 'OwnerStringList', 'locationName' => 'Owner', ], 'RestorableByUserIds' => [ 'shape' => 'RestorableByStringList', 'locationName' => 'RestorableBy', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], ], ], 'DescribeSnapshotsResult' => [ 'type' => 'structure', 'members' => [ 'Snapshots' => [ 'shape' => 'SnapshotList', 'locationName' => 'snapshotSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSpotDatafeedSubscriptionRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'DescribeSpotDatafeedSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'SpotDatafeedSubscription' => [ 'shape' => 'SpotDatafeedSubscription', 'locationName' => 'spotDatafeedSubscription', ], ], ], 'DescribeSpotFleetInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], ], ], 'DescribeSpotFleetInstancesResponse' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', 'ActiveInstances', ], 'members' => [ 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], 'ActiveInstances' => [ 'shape' => 'ActiveInstanceSet', 'locationName' => 'activeInstanceSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSpotFleetRequestHistoryRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', 'StartTime', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], 'EventType' => [ 'shape' => 'EventType', 'locationName' => 'eventType', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], ], ], 'DescribeSpotFleetRequestHistoryResponse' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', 'StartTime', 'LastEvaluatedTime', 'HistoryRecords', ], 'members' => [ 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'LastEvaluatedTime' => [ 'shape' => 'DateTime', 'locationName' => 'lastEvaluatedTime', ], 'HistoryRecords' => [ 'shape' => 'HistoryRecords', 'locationName' => 'historyRecordSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSpotFleetRequestsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotFleetRequestIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'spotFleetRequestId', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], ], ], 'DescribeSpotFleetRequestsResponse' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestConfigs', ], 'members' => [ 'SpotFleetRequestConfigs' => [ 'shape' => 'SpotFleetRequestConfigSet', 'locationName' => 'spotFleetRequestConfigSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSpotInstanceRequestsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotInstanceRequestIds' => [ 'shape' => 'SpotInstanceRequestIdList', 'locationName' => 'SpotInstanceRequestId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeSpotInstanceRequestsResult' => [ 'type' => 'structure', 'members' => [ 'SpotInstanceRequests' => [ 'shape' => 'SpotInstanceRequestList', 'locationName' => 'spotInstanceRequestSet', ], ], ], 'DescribeSpotPriceHistoryRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'EndTime' => [ 'shape' => 'DateTime', 'locationName' => 'endTime', ], 'InstanceTypes' => [ 'shape' => 'InstanceTypeList', 'locationName' => 'InstanceType', ], 'ProductDescriptions' => [ 'shape' => 'ProductDescriptionList', 'locationName' => 'ProductDescription', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSpotPriceHistoryResult' => [ 'type' => 'structure', 'members' => [ 'SpotPriceHistory' => [ 'shape' => 'SpotPriceHistoryList', 'locationName' => 'spotPriceHistorySet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeStaleSecurityGroupsRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcId' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'MaxResults', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeStaleSecurityGroupsResult' => [ 'type' => 'structure', 'members' => [ 'StaleSecurityGroupSet' => [ 'shape' => 'StaleSecurityGroupSet', 'locationName' => 'staleSecurityGroupSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeSubnetsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SubnetIds' => [ 'shape' => 'SubnetIdStringList', 'locationName' => 'SubnetId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeSubnetsResult' => [ 'type' => 'structure', 'members' => [ 'Subnets' => [ 'shape' => 'SubnetList', 'locationName' => 'subnetSet', ], ], ], 'DescribeTagsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeTagsResult' => [ 'type' => 'structure', 'members' => [ 'Tags' => [ 'shape' => 'TagDescriptionList', 'locationName' => 'tagSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVolumeAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VolumeId' => [ 'shape' => 'String', ], 'Attribute' => [ 'shape' => 'VolumeAttributeName', ], ], ], 'DescribeVolumeAttributeResult' => [ 'type' => 'structure', 'members' => [ 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'AutoEnableIO' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'autoEnableIO', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], ], ], 'DescribeVolumeStatusRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VolumeIds' => [ 'shape' => 'VolumeIdStringList', 'locationName' => 'VolumeId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxResults' => [ 'shape' => 'Integer', ], ], ], 'DescribeVolumeStatusResult' => [ 'type' => 'structure', 'members' => [ 'VolumeStatuses' => [ 'shape' => 'VolumeStatusList', 'locationName' => 'volumeStatusSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVolumesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VolumeIds' => [ 'shape' => 'VolumeIdStringList', 'locationName' => 'VolumeId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], 'MaxResults' => [ 'shape' => 'Integer', 'locationName' => 'maxResults', ], ], ], 'DescribeVolumesResult' => [ 'type' => 'structure', 'members' => [ 'Volumes' => [ 'shape' => 'VolumeList', 'locationName' => 'volumeSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', 'Attribute', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'String', ], 'Attribute' => [ 'shape' => 'VpcAttributeName', ], ], ], 'DescribeVpcAttributeResult' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'EnableDnsSupport' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enableDnsSupport', ], 'EnableDnsHostnames' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enableDnsHostnames', ], ], ], 'DescribeVpcClassicLinkDnsSupportRequest' => [ 'type' => 'structure', 'members' => [ 'VpcIds' => [ 'shape' => 'VpcClassicLinkIdList', ], 'MaxResults' => [ 'shape' => 'MaxResults', 'locationName' => 'maxResults', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcClassicLinkDnsSupportResult' => [ 'type' => 'structure', 'members' => [ 'Vpcs' => [ 'shape' => 'ClassicLinkDnsSupportList', 'locationName' => 'vpcs', ], 'NextToken' => [ 'shape' => 'NextToken', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcClassicLinkRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcIds' => [ 'shape' => 'VpcClassicLinkIdList', 'locationName' => 'VpcId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeVpcClassicLinkResult' => [ 'type' => 'structure', 'members' => [ 'Vpcs' => [ 'shape' => 'VpcClassicLinkList', 'locationName' => 'vpcSet', ], ], ], 'DescribeVpcEndpointServicesRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointServicesResult' => [ 'type' => 'structure', 'members' => [ 'ServiceNames' => [ 'shape' => 'ValueStringList', 'locationName' => 'serviceNameSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcEndpointsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcEndpointIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'VpcEndpointId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], 'MaxResults' => [ 'shape' => 'Integer', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeVpcEndpointsResult' => [ 'type' => 'structure', 'members' => [ 'VpcEndpoints' => [ 'shape' => 'VpcEndpointSet', 'locationName' => 'vpcEndpointSet', ], 'NextToken' => [ 'shape' => 'String', 'locationName' => 'nextToken', ], ], ], 'DescribeVpcPeeringConnectionsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcPeeringConnectionIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'VpcPeeringConnectionId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeVpcPeeringConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'VpcPeeringConnections' => [ 'shape' => 'VpcPeeringConnectionList', 'locationName' => 'vpcPeeringConnectionSet', ], ], ], 'DescribeVpcsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcIds' => [ 'shape' => 'VpcIdStringList', 'locationName' => 'VpcId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeVpcsResult' => [ 'type' => 'structure', 'members' => [ 'Vpcs' => [ 'shape' => 'VpcList', 'locationName' => 'vpcSet', ], ], ], 'DescribeVpnConnectionsRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpnConnectionIds' => [ 'shape' => 'VpnConnectionIdStringList', 'locationName' => 'VpnConnectionId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeVpnConnectionsResult' => [ 'type' => 'structure', 'members' => [ 'VpnConnections' => [ 'shape' => 'VpnConnectionList', 'locationName' => 'vpnConnectionSet', ], ], ], 'DescribeVpnGatewaysRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpnGatewayIds' => [ 'shape' => 'VpnGatewayIdStringList', 'locationName' => 'VpnGatewayId', ], 'Filters' => [ 'shape' => 'FilterList', 'locationName' => 'Filter', ], ], ], 'DescribeVpnGatewaysResult' => [ 'type' => 'structure', 'members' => [ 'VpnGateways' => [ 'shape' => 'VpnGatewayList', 'locationName' => 'vpnGatewaySet', ], ], ], 'DetachClassicLinkVpcRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'DetachClassicLinkVpcResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DetachInternetGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'InternetGatewayId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InternetGatewayId' => [ 'shape' => 'String', 'locationName' => 'internetGatewayId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'DetachNetworkInterfaceRequest' => [ 'type' => 'structure', 'required' => [ 'AttachmentId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'AttachmentId' => [ 'shape' => 'String', 'locationName' => 'attachmentId', ], 'Force' => [ 'shape' => 'Boolean', 'locationName' => 'force', ], ], ], 'DetachVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VolumeId' => [ 'shape' => 'String', ], 'InstanceId' => [ 'shape' => 'String', ], 'Device' => [ 'shape' => 'String', ], 'Force' => [ 'shape' => 'Boolean', ], ], ], 'DetachVpnGatewayRequest' => [ 'type' => 'structure', 'required' => [ 'VpnGatewayId', 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpnGatewayId' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], ], ], 'DeviceType' => [ 'type' => 'string', 'enum' => [ 'ebs', 'instance-store', ], ], 'DhcpConfiguration' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Values' => [ 'shape' => 'DhcpConfigurationValueList', 'locationName' => 'valueSet', ], ], ], 'DhcpConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DhcpConfiguration', 'locationName' => 'item', ], ], 'DhcpConfigurationValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttributeValue', 'locationName' => 'item', ], ], 'DhcpOptions' => [ 'type' => 'structure', 'members' => [ 'DhcpOptionsId' => [ 'shape' => 'String', 'locationName' => 'dhcpOptionsId', ], 'DhcpConfigurations' => [ 'shape' => 'DhcpConfigurationList', 'locationName' => 'dhcpConfigurationSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'DhcpOptionsIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'DhcpOptionsId', ], ], 'DhcpOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DhcpOptions', 'locationName' => 'item', ], ], 'DisableVgwRoutePropagationRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', 'GatewayId', ], 'members' => [ 'RouteTableId' => [ 'shape' => 'String', ], 'GatewayId' => [ 'shape' => 'String', ], ], ], 'DisableVpcClassicLinkDnsSupportRequest' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'String', ], ], ], 'DisableVpcClassicLinkDnsSupportResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DisableVpcClassicLinkRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'DisableVpcClassicLinkResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'DisassociateAddressRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'PublicIp' => [ 'shape' => 'String', ], 'AssociationId' => [ 'shape' => 'String', ], ], ], 'DisassociateRouteTableRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], ], ], 'DiskImage' => [ 'type' => 'structure', 'members' => [ 'Image' => [ 'shape' => 'DiskImageDetail', ], 'Description' => [ 'shape' => 'String', ], 'Volume' => [ 'shape' => 'VolumeDetail', ], ], ], 'DiskImageDescription' => [ 'type' => 'structure', 'required' => [ 'Format', 'Size', 'ImportManifestUrl', ], 'members' => [ 'Format' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'format', ], 'Size' => [ 'shape' => 'Long', 'locationName' => 'size', ], 'ImportManifestUrl' => [ 'shape' => 'String', 'locationName' => 'importManifestUrl', ], 'Checksum' => [ 'shape' => 'String', 'locationName' => 'checksum', ], ], ], 'DiskImageDetail' => [ 'type' => 'structure', 'required' => [ 'Format', 'Bytes', 'ImportManifestUrl', ], 'members' => [ 'Format' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'format', ], 'Bytes' => [ 'shape' => 'Long', 'locationName' => 'bytes', ], 'ImportManifestUrl' => [ 'shape' => 'String', 'locationName' => 'importManifestUrl', ], ], ], 'DiskImageFormat' => [ 'type' => 'string', 'enum' => [ 'VMDK', 'RAW', 'VHD', ], ], 'DiskImageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DiskImage', ], ], 'DiskImageVolumeDescription' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Size' => [ 'shape' => 'Long', 'locationName' => 'size', ], 'Id' => [ 'shape' => 'String', 'locationName' => 'id', ], ], ], 'DomainType' => [ 'type' => 'string', 'enum' => [ 'vpc', 'standard', ], ], 'Double' => [ 'type' => 'double', ], 'EbsBlockDevice' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'VolumeSize' => [ 'shape' => 'Integer', 'locationName' => 'volumeSize', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'VolumeType' => [ 'shape' => 'VolumeType', 'locationName' => 'volumeType', ], 'Iops' => [ 'shape' => 'Integer', 'locationName' => 'iops', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], ], ], 'EbsInstanceBlockDevice' => [ 'type' => 'structure', 'members' => [ 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'Status' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'status', ], 'AttachTime' => [ 'shape' => 'DateTime', 'locationName' => 'attachTime', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], ], ], 'EbsInstanceBlockDeviceSpecification' => [ 'type' => 'structure', 'members' => [ 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], ], ], 'EnableVgwRoutePropagationRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', 'GatewayId', ], 'members' => [ 'RouteTableId' => [ 'shape' => 'String', ], 'GatewayId' => [ 'shape' => 'String', ], ], ], 'EnableVolumeIORequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], ], ], 'EnableVpcClassicLinkDnsSupportRequest' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'String', ], ], ], 'EnableVpcClassicLinkDnsSupportResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'EnableVpcClassicLinkRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], ], ], 'EnableVpcClassicLinkResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'EventCode' => [ 'type' => 'string', 'enum' => [ 'instance-reboot', 'system-reboot', 'system-maintenance', 'instance-retirement', 'instance-stop', ], ], 'EventInformation' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'EventSubType' => [ 'shape' => 'String', 'locationName' => 'eventSubType', ], 'EventDescription' => [ 'shape' => 'String', 'locationName' => 'eventDescription', ], ], ], 'EventType' => [ 'type' => 'string', 'enum' => [ 'instanceChange', 'fleetRequestChange', 'error', ], ], 'ExcessCapacityTerminationPolicy' => [ 'type' => 'string', 'enum' => [ 'noTermination', 'default', ], ], 'ExecutableByStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ExecutableBy', ], ], 'ExportEnvironment' => [ 'type' => 'string', 'enum' => [ 'citrix', 'vmware', 'microsoft', ], ], 'ExportTask' => [ 'type' => 'structure', 'members' => [ 'ExportTaskId' => [ 'shape' => 'String', 'locationName' => 'exportTaskId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'State' => [ 'shape' => 'ExportTaskState', 'locationName' => 'state', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'InstanceExportDetails' => [ 'shape' => 'InstanceExportDetails', 'locationName' => 'instanceExport', ], 'ExportToS3Task' => [ 'shape' => 'ExportToS3Task', 'locationName' => 'exportToS3', ], ], ], 'ExportTaskIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ExportTaskId', ], ], 'ExportTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExportTask', 'locationName' => 'item', ], ], 'ExportTaskState' => [ 'type' => 'string', 'enum' => [ 'active', 'cancelling', 'cancelled', 'completed', ], ], 'ExportToS3Task' => [ 'type' => 'structure', 'members' => [ 'DiskImageFormat' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'diskImageFormat', ], 'ContainerFormat' => [ 'shape' => 'ContainerFormat', 'locationName' => 'containerFormat', ], 'S3Bucket' => [ 'shape' => 'String', 'locationName' => 's3Bucket', ], 'S3Key' => [ 'shape' => 'String', 'locationName' => 's3Key', ], ], ], 'ExportToS3TaskSpecification' => [ 'type' => 'structure', 'members' => [ 'DiskImageFormat' => [ 'shape' => 'DiskImageFormat', 'locationName' => 'diskImageFormat', ], 'ContainerFormat' => [ 'shape' => 'ContainerFormat', 'locationName' => 'containerFormat', ], 'S3Bucket' => [ 'shape' => 'String', 'locationName' => 's3Bucket', ], 'S3Prefix' => [ 'shape' => 'String', 'locationName' => 's3Prefix', ], ], ], 'Filter' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Values' => [ 'shape' => 'ValueStringList', 'locationName' => 'Value', ], ], ], 'FilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Filter', 'locationName' => 'Filter', ], ], 'FleetType' => [ 'type' => 'string', 'enum' => [ 'request', 'maintain', ], ], 'Float' => [ 'type' => 'float', ], 'FlowLog' => [ 'type' => 'structure', 'members' => [ 'CreationTime' => [ 'shape' => 'DateTime', 'locationName' => 'creationTime', ], 'FlowLogId' => [ 'shape' => 'String', 'locationName' => 'flowLogId', ], 'FlowLogStatus' => [ 'shape' => 'String', 'locationName' => 'flowLogStatus', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'TrafficType' => [ 'shape' => 'TrafficType', 'locationName' => 'trafficType', ], 'LogGroupName' => [ 'shape' => 'String', 'locationName' => 'logGroupName', ], 'DeliverLogsStatus' => [ 'shape' => 'String', 'locationName' => 'deliverLogsStatus', ], 'DeliverLogsErrorMessage' => [ 'shape' => 'String', 'locationName' => 'deliverLogsErrorMessage', ], 'DeliverLogsPermissionArn' => [ 'shape' => 'String', 'locationName' => 'deliverLogsPermissionArn', ], ], ], 'FlowLogSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'FlowLog', 'locationName' => 'item', ], ], 'FlowLogsResourceType' => [ 'type' => 'string', 'enum' => [ 'VPC', 'Subnet', 'NetworkInterface', ], ], 'GatewayType' => [ 'type' => 'string', 'enum' => [ 'ipsec.1', ], ], 'GetConsoleOutputRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'String', ], ], ], 'GetConsoleOutputResult' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], 'Output' => [ 'shape' => 'String', 'locationName' => 'output', ], ], ], 'GetConsoleScreenshotRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'InstanceId' => [ 'shape' => 'String', ], 'WakeUp' => [ 'shape' => 'Boolean', ], ], ], 'GetConsoleScreenshotResult' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'ImageData' => [ 'shape' => 'String', 'locationName' => 'imageData', ], ], ], 'GetHostReservationPurchasePreviewRequest' => [ 'type' => 'structure', 'required' => [ 'OfferingId', 'HostIdSet', ], 'members' => [ 'OfferingId' => [ 'shape' => 'String', ], 'HostIdSet' => [ 'shape' => 'RequestHostIdSet', ], ], ], 'GetHostReservationPurchasePreviewResult' => [ 'type' => 'structure', 'members' => [ 'Purchase' => [ 'shape' => 'PurchaseSet', 'locationName' => 'purchase', ], 'TotalUpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'totalUpfrontPrice', ], 'TotalHourlyPrice' => [ 'shape' => 'String', 'locationName' => 'totalHourlyPrice', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], ], ], 'GetPasswordDataRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'String', ], ], ], 'GetPasswordDataResult' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], 'PasswordData' => [ 'shape' => 'String', 'locationName' => 'passwordData', ], ], ], 'GetReservedInstancesExchangeQuoteRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstanceIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ReservedInstanceIds' => [ 'shape' => 'ReservedInstanceIdSet', 'locationName' => 'ReservedInstanceId', ], 'TargetConfigurations' => [ 'shape' => 'TargetConfigurationRequestSet', 'locationName' => 'TargetConfiguration', ], ], ], 'GetReservedInstancesExchangeQuoteResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstanceValueSet' => [ 'shape' => 'ReservedInstanceReservationValueSet', 'locationName' => 'reservedInstanceValueSet', ], 'ReservedInstanceValueRollup' => [ 'shape' => 'ReservationValue', 'locationName' => 'reservedInstanceValueRollup', ], 'TargetConfigurationValueSet' => [ 'shape' => 'TargetReservationValueSet', 'locationName' => 'targetConfigurationValueSet', ], 'TargetConfigurationValueRollup' => [ 'shape' => 'ReservationValue', 'locationName' => 'targetConfigurationValueRollup', ], 'PaymentDue' => [ 'shape' => 'String', 'locationName' => 'paymentDue', ], 'CurrencyCode' => [ 'shape' => 'String', 'locationName' => 'currencyCode', ], 'OutputReservedInstancesWillExpireAt' => [ 'shape' => 'DateTime', 'locationName' => 'outputReservedInstancesWillExpireAt', ], 'IsValidExchange' => [ 'shape' => 'Boolean', 'locationName' => 'isValidExchange', ], 'ValidationFailureReason' => [ 'shape' => 'String', 'locationName' => 'validationFailureReason', ], ], ], 'GroupIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'groupId', ], ], 'GroupIdentifier' => [ 'type' => 'structure', 'members' => [ 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], ], ], 'GroupIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GroupIdentifier', 'locationName' => 'item', ], ], 'GroupIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'GroupNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'GroupName', ], ], 'HistoryRecord' => [ 'type' => 'structure', 'required' => [ 'Timestamp', 'EventType', 'EventInformation', ], 'members' => [ 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], 'EventType' => [ 'shape' => 'EventType', 'locationName' => 'eventType', ], 'EventInformation' => [ 'shape' => 'EventInformation', 'locationName' => 'eventInformation', ], ], ], 'HistoryRecords' => [ 'type' => 'list', 'member' => [ 'shape' => 'HistoryRecord', 'locationName' => 'item', ], ], 'Host' => [ 'type' => 'structure', 'members' => [ 'HostId' => [ 'shape' => 'String', 'locationName' => 'hostId', ], 'AutoPlacement' => [ 'shape' => 'AutoPlacement', 'locationName' => 'autoPlacement', ], 'HostReservationId' => [ 'shape' => 'String', 'locationName' => 'hostReservationId', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'HostProperties' => [ 'shape' => 'HostProperties', 'locationName' => 'hostProperties', ], 'State' => [ 'shape' => 'AllocationState', 'locationName' => 'state', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Instances' => [ 'shape' => 'HostInstanceList', 'locationName' => 'instances', ], 'AvailableCapacity' => [ 'shape' => 'AvailableCapacity', 'locationName' => 'availableCapacity', ], ], ], 'HostInstance' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], ], ], 'HostInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'HostInstance', 'locationName' => 'item', ], ], 'HostList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Host', 'locationName' => 'item', ], ], 'HostOffering' => [ 'type' => 'structure', 'members' => [ 'OfferingId' => [ 'shape' => 'String', 'locationName' => 'offeringId', ], 'InstanceFamily' => [ 'shape' => 'String', 'locationName' => 'instanceFamily', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', 'locationName' => 'paymentOption', ], 'UpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'upfrontPrice', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Duration' => [ 'shape' => 'Integer', 'locationName' => 'duration', ], ], ], 'HostOfferingSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'HostOffering', ], ], 'HostProperties' => [ 'type' => 'structure', 'members' => [ 'Sockets' => [ 'shape' => 'Integer', 'locationName' => 'sockets', ], 'Cores' => [ 'shape' => 'Integer', 'locationName' => 'cores', ], 'TotalVCpus' => [ 'shape' => 'Integer', 'locationName' => 'totalVCpus', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], ], ], 'HostReservation' => [ 'type' => 'structure', 'members' => [ 'HostReservationId' => [ 'shape' => 'String', 'locationName' => 'hostReservationId', ], 'HostIdSet' => [ 'shape' => 'ResponseHostIdSet', 'locationName' => 'hostIdSet', ], 'OfferingId' => [ 'shape' => 'String', 'locationName' => 'offeringId', ], 'InstanceFamily' => [ 'shape' => 'String', 'locationName' => 'instanceFamily', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', 'locationName' => 'paymentOption', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'UpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'upfrontPrice', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Count' => [ 'shape' => 'Integer', 'locationName' => 'count', ], 'Duration' => [ 'shape' => 'Integer', 'locationName' => 'duration', ], 'End' => [ 'shape' => 'DateTime', 'locationName' => 'end', ], 'Start' => [ 'shape' => 'DateTime', 'locationName' => 'start', ], 'State' => [ 'shape' => 'ReservationState', 'locationName' => 'state', ], ], ], 'HostReservationIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'HostReservationSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'HostReservation', ], ], 'HostTenancy' => [ 'type' => 'string', 'enum' => [ 'dedicated', 'host', ], ], 'HypervisorType' => [ 'type' => 'string', 'enum' => [ 'ovm', 'xen', ], ], 'IamInstanceProfile' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], 'Id' => [ 'shape' => 'String', 'locationName' => 'id', ], ], ], 'IamInstanceProfileSpecification' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', 'locationName' => 'arn', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], ], ], 'IcmpTypeCode' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'Integer', 'locationName' => 'type', ], 'Code' => [ 'shape' => 'Integer', 'locationName' => 'code', ], ], ], 'IdFormat' => [ 'type' => 'structure', 'members' => [ 'Resource' => [ 'shape' => 'String', 'locationName' => 'resource', ], 'UseLongIds' => [ 'shape' => 'Boolean', 'locationName' => 'useLongIds', ], 'Deadline' => [ 'shape' => 'DateTime', 'locationName' => 'deadline', ], ], ], 'IdFormatList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IdFormat', 'locationName' => 'item', ], ], 'Image' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'ImageLocation' => [ 'shape' => 'String', 'locationName' => 'imageLocation', ], 'State' => [ 'shape' => 'ImageState', 'locationName' => 'imageState', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'imageOwnerId', ], 'CreationDate' => [ 'shape' => 'String', 'locationName' => 'creationDate', ], 'Public' => [ 'shape' => 'Boolean', 'locationName' => 'isPublic', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'Architecture' => [ 'shape' => 'ArchitectureValues', 'locationName' => 'architecture', ], 'ImageType' => [ 'shape' => 'ImageTypeValues', 'locationName' => 'imageType', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], 'SriovNetSupport' => [ 'shape' => 'String', 'locationName' => 'sriovNetSupport', ], 'EnaSupport' => [ 'shape' => 'Boolean', 'locationName' => 'enaSupport', ], 'StateReason' => [ 'shape' => 'StateReason', 'locationName' => 'stateReason', ], 'ImageOwnerAlias' => [ 'shape' => 'String', 'locationName' => 'imageOwnerAlias', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'RootDeviceType' => [ 'shape' => 'DeviceType', 'locationName' => 'rootDeviceType', ], 'RootDeviceName' => [ 'shape' => 'String', 'locationName' => 'rootDeviceName', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'VirtualizationType' => [ 'shape' => 'VirtualizationType', 'locationName' => 'virtualizationType', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'Hypervisor' => [ 'shape' => 'HypervisorType', 'locationName' => 'hypervisor', ], ], ], 'ImageAttribute' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'LaunchPermissions' => [ 'shape' => 'LaunchPermissionList', 'locationName' => 'launchPermission', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'KernelId' => [ 'shape' => 'AttributeValue', 'locationName' => 'kernel', ], 'RamdiskId' => [ 'shape' => 'AttributeValue', 'locationName' => 'ramdisk', ], 'Description' => [ 'shape' => 'AttributeValue', 'locationName' => 'description', ], 'SriovNetSupport' => [ 'shape' => 'AttributeValue', 'locationName' => 'sriovNetSupport', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], ], ], 'ImageAttributeName' => [ 'type' => 'string', 'enum' => [ 'description', 'kernel', 'ramdisk', 'launchPermission', 'productCodes', 'blockDeviceMapping', 'sriovNetSupport', ], ], 'ImageDiskContainer' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'Format' => [ 'shape' => 'String', ], 'Url' => [ 'shape' => 'String', ], 'UserBucket' => [ 'shape' => 'UserBucket', ], 'DeviceName' => [ 'shape' => 'String', ], 'SnapshotId' => [ 'shape' => 'String', ], ], ], 'ImageDiskContainerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageDiskContainer', 'locationName' => 'item', ], ], 'ImageIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ImageId', ], ], 'ImageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Image', 'locationName' => 'item', ], ], 'ImageState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'invalid', 'deregistered', 'transient', 'failed', 'error', ], ], 'ImageTypeValues' => [ 'type' => 'string', 'enum' => [ 'machine', 'kernel', 'ramdisk', ], ], 'ImportImageRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'DiskContainers' => [ 'shape' => 'ImageDiskContainerList', 'locationName' => 'DiskContainer', ], 'LicenseType' => [ 'shape' => 'String', ], 'Hypervisor' => [ 'shape' => 'String', ], 'Architecture' => [ 'shape' => 'String', ], 'Platform' => [ 'shape' => 'String', ], 'ClientData' => [ 'shape' => 'ClientData', ], 'ClientToken' => [ 'shape' => 'String', ], 'RoleName' => [ 'shape' => 'String', ], ], ], 'ImportImageResult' => [ 'type' => 'structure', 'members' => [ 'ImportTaskId' => [ 'shape' => 'String', 'locationName' => 'importTaskId', ], 'Architecture' => [ 'shape' => 'String', 'locationName' => 'architecture', ], 'LicenseType' => [ 'shape' => 'String', 'locationName' => 'licenseType', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'Hypervisor' => [ 'shape' => 'String', 'locationName' => 'hypervisor', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'SnapshotDetails' => [ 'shape' => 'SnapshotDetailList', 'locationName' => 'snapshotDetailSet', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], ], ], 'ImportImageTask' => [ 'type' => 'structure', 'members' => [ 'ImportTaskId' => [ 'shape' => 'String', 'locationName' => 'importTaskId', ], 'Architecture' => [ 'shape' => 'String', 'locationName' => 'architecture', ], 'LicenseType' => [ 'shape' => 'String', 'locationName' => 'licenseType', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'Hypervisor' => [ 'shape' => 'String', 'locationName' => 'hypervisor', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'SnapshotDetails' => [ 'shape' => 'SnapshotDetailList', 'locationName' => 'snapshotDetailSet', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], ], ], 'ImportImageTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportImageTask', 'locationName' => 'item', ], ], 'ImportInstanceLaunchSpecification' => [ 'type' => 'structure', 'members' => [ 'Architecture' => [ 'shape' => 'ArchitectureValues', 'locationName' => 'architecture', ], 'GroupNames' => [ 'shape' => 'SecurityGroupStringList', 'locationName' => 'GroupName', ], 'GroupIds' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'GroupId', ], 'AdditionalInfo' => [ 'shape' => 'String', 'locationName' => 'additionalInfo', ], 'UserData' => [ 'shape' => 'UserData', 'locationName' => 'userData', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'Placement' => [ 'shape' => 'Placement', 'locationName' => 'placement', ], 'Monitoring' => [ 'shape' => 'Boolean', 'locationName' => 'monitoring', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'ShutdownBehavior', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], ], ], 'ImportInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'Platform', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'LaunchSpecification' => [ 'shape' => 'ImportInstanceLaunchSpecification', 'locationName' => 'launchSpecification', ], 'DiskImages' => [ 'shape' => 'DiskImageList', 'locationName' => 'diskImage', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], ], ], 'ImportInstanceResult' => [ 'type' => 'structure', 'members' => [ 'ConversionTask' => [ 'shape' => 'ConversionTask', 'locationName' => 'conversionTask', ], ], ], 'ImportInstanceTaskDetails' => [ 'type' => 'structure', 'required' => [ 'Volumes', ], 'members' => [ 'Volumes' => [ 'shape' => 'ImportInstanceVolumeDetailSet', 'locationName' => 'volumes', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'ImportInstanceVolumeDetailItem' => [ 'type' => 'structure', 'required' => [ 'BytesConverted', 'AvailabilityZone', 'Image', 'Volume', 'Status', ], 'members' => [ 'BytesConverted' => [ 'shape' => 'Long', 'locationName' => 'bytesConverted', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Image' => [ 'shape' => 'DiskImageDescription', 'locationName' => 'image', ], 'Volume' => [ 'shape' => 'DiskImageVolumeDescription', 'locationName' => 'volume', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'ImportInstanceVolumeDetailSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportInstanceVolumeDetailItem', 'locationName' => 'item', ], ], 'ImportKeyPairRequest' => [ 'type' => 'structure', 'required' => [ 'KeyName', 'PublicKeyMaterial', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'PublicKeyMaterial' => [ 'shape' => 'Blob', 'locationName' => 'publicKeyMaterial', ], ], ], 'ImportKeyPairResult' => [ 'type' => 'structure', 'members' => [ 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'KeyFingerprint' => [ 'shape' => 'String', 'locationName' => 'keyFingerprint', ], ], ], 'ImportSnapshotRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'Description' => [ 'shape' => 'String', ], 'DiskContainer' => [ 'shape' => 'SnapshotDiskContainer', ], 'ClientData' => [ 'shape' => 'ClientData', ], 'ClientToken' => [ 'shape' => 'String', ], 'RoleName' => [ 'shape' => 'String', ], ], ], 'ImportSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'ImportTaskId' => [ 'shape' => 'String', 'locationName' => 'importTaskId', ], 'SnapshotTaskDetail' => [ 'shape' => 'SnapshotTaskDetail', 'locationName' => 'snapshotTaskDetail', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'ImportSnapshotTask' => [ 'type' => 'structure', 'members' => [ 'ImportTaskId' => [ 'shape' => 'String', 'locationName' => 'importTaskId', ], 'SnapshotTaskDetail' => [ 'shape' => 'SnapshotTaskDetail', 'locationName' => 'snapshotTaskDetail', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'ImportSnapshotTaskList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImportSnapshotTask', 'locationName' => 'item', ], ], 'ImportTaskIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ImportTaskId', ], ], 'ImportVolumeRequest' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZone', 'Image', 'Volume', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Image' => [ 'shape' => 'DiskImageDetail', 'locationName' => 'image', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Volume' => [ 'shape' => 'VolumeDetail', 'locationName' => 'volume', ], ], ], 'ImportVolumeResult' => [ 'type' => 'structure', 'members' => [ 'ConversionTask' => [ 'shape' => 'ConversionTask', 'locationName' => 'conversionTask', ], ], ], 'ImportVolumeTaskDetails' => [ 'type' => 'structure', 'required' => [ 'BytesConverted', 'AvailabilityZone', 'Image', 'Volume', ], 'members' => [ 'BytesConverted' => [ 'shape' => 'Long', 'locationName' => 'bytesConverted', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Image' => [ 'shape' => 'DiskImageDescription', 'locationName' => 'image', ], 'Volume' => [ 'shape' => 'DiskImageVolumeDescription', 'locationName' => 'volume', ], ], ], 'Instance' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'State' => [ 'shape' => 'InstanceState', 'locationName' => 'instanceState', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'PublicDnsName' => [ 'shape' => 'String', 'locationName' => 'dnsName', ], 'StateTransitionReason' => [ 'shape' => 'String', 'locationName' => 'reason', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'AmiLaunchIndex' => [ 'shape' => 'Integer', 'locationName' => 'amiLaunchIndex', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'LaunchTime' => [ 'shape' => 'DateTime', 'locationName' => 'launchTime', ], 'Placement' => [ 'shape' => 'Placement', 'locationName' => 'placement', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'Platform' => [ 'shape' => 'PlatformValues', 'locationName' => 'platform', ], 'Monitoring' => [ 'shape' => 'Monitoring', 'locationName' => 'monitoring', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PublicIpAddress' => [ 'shape' => 'String', 'locationName' => 'ipAddress', ], 'StateReason' => [ 'shape' => 'StateReason', 'locationName' => 'stateReason', ], 'Architecture' => [ 'shape' => 'ArchitectureValues', 'locationName' => 'architecture', ], 'RootDeviceType' => [ 'shape' => 'DeviceType', 'locationName' => 'rootDeviceType', ], 'RootDeviceName' => [ 'shape' => 'String', 'locationName' => 'rootDeviceName', ], 'BlockDeviceMappings' => [ 'shape' => 'InstanceBlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'VirtualizationType' => [ 'shape' => 'VirtualizationType', 'locationName' => 'virtualizationType', ], 'InstanceLifecycle' => [ 'shape' => 'InstanceLifecycleType', 'locationName' => 'instanceLifecycle', ], 'SpotInstanceRequestId' => [ 'shape' => 'String', 'locationName' => 'spotInstanceRequestId', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'SecurityGroups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'SourceDestCheck' => [ 'shape' => 'Boolean', 'locationName' => 'sourceDestCheck', ], 'Hypervisor' => [ 'shape' => 'HypervisorType', 'locationName' => 'hypervisor', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceList', 'locationName' => 'networkInterfaceSet', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfile', 'locationName' => 'iamInstanceProfile', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'SriovNetSupport' => [ 'shape' => 'String', 'locationName' => 'sriovNetSupport', ], 'EnaSupport' => [ 'shape' => 'Boolean', 'locationName' => 'enaSupport', ], ], ], 'InstanceAttribute' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceType' => [ 'shape' => 'AttributeValue', 'locationName' => 'instanceType', ], 'KernelId' => [ 'shape' => 'AttributeValue', 'locationName' => 'kernel', ], 'RamdiskId' => [ 'shape' => 'AttributeValue', 'locationName' => 'ramdisk', ], 'UserData' => [ 'shape' => 'AttributeValue', 'locationName' => 'userData', ], 'DisableApiTermination' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'disableApiTermination', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'AttributeValue', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'RootDeviceName' => [ 'shape' => 'AttributeValue', 'locationName' => 'rootDeviceName', ], 'BlockDeviceMappings' => [ 'shape' => 'InstanceBlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'ProductCodes' => [ 'shape' => 'ProductCodeList', 'locationName' => 'productCodes', ], 'EbsOptimized' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'ebsOptimized', ], 'SriovNetSupport' => [ 'shape' => 'AttributeValue', 'locationName' => 'sriovNetSupport', ], 'EnaSupport' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enaSupport', ], 'SourceDestCheck' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'sourceDestCheck', ], 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], ], ], 'InstanceAttributeName' => [ 'type' => 'string', 'enum' => [ 'instanceType', 'kernel', 'ramdisk', 'userData', 'disableApiTermination', 'instanceInitiatedShutdownBehavior', 'rootDeviceName', 'blockDeviceMapping', 'productCodes', 'sourceDestCheck', 'groupSet', 'ebsOptimized', 'sriovNetSupport', 'enaSupport', ], ], 'InstanceBlockDeviceMapping' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'Ebs' => [ 'shape' => 'EbsInstanceBlockDevice', 'locationName' => 'ebs', ], ], ], 'InstanceBlockDeviceMappingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceBlockDeviceMapping', 'locationName' => 'item', ], ], 'InstanceBlockDeviceMappingSpecification' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'Ebs' => [ 'shape' => 'EbsInstanceBlockDeviceSpecification', 'locationName' => 'ebs', ], 'VirtualName' => [ 'shape' => 'String', 'locationName' => 'virtualName', ], 'NoDevice' => [ 'shape' => 'String', 'locationName' => 'noDevice', ], ], ], 'InstanceBlockDeviceMappingSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceBlockDeviceMappingSpecification', 'locationName' => 'item', ], ], 'InstanceCapacity' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'AvailableCapacity' => [ 'shape' => 'Integer', 'locationName' => 'availableCapacity', ], 'TotalCapacity' => [ 'shape' => 'Integer', 'locationName' => 'totalCapacity', ], ], ], 'InstanceCount' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'ListingState', 'locationName' => 'state', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], ], ], 'InstanceCountList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceCount', 'locationName' => 'item', ], ], 'InstanceExportDetails' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'TargetEnvironment' => [ 'shape' => 'ExportEnvironment', 'locationName' => 'targetEnvironment', ], ], ], 'InstanceIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'InstanceIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'InstanceId', ], ], 'InstanceLifecycleType' => [ 'type' => 'string', 'enum' => [ 'spot', 'scheduled', ], ], 'InstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Instance', 'locationName' => 'item', ], ], 'InstanceMonitoring' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Monitoring' => [ 'shape' => 'Monitoring', 'locationName' => 'monitoring', ], ], ], 'InstanceMonitoringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceMonitoring', 'locationName' => 'item', ], ], 'InstanceNetworkInterface' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Status' => [ 'shape' => 'NetworkInterfaceStatus', 'locationName' => 'status', ], 'MacAddress' => [ 'shape' => 'String', 'locationName' => 'macAddress', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'SourceDestCheck' => [ 'shape' => 'Boolean', 'locationName' => 'sourceDestCheck', ], 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'Attachment' => [ 'shape' => 'InstanceNetworkInterfaceAttachment', 'locationName' => 'attachment', ], 'Association' => [ 'shape' => 'InstanceNetworkInterfaceAssociation', 'locationName' => 'association', ], 'PrivateIpAddresses' => [ 'shape' => 'InstancePrivateIpAddressList', 'locationName' => 'privateIpAddressesSet', ], ], ], 'InstanceNetworkInterfaceAssociation' => [ 'type' => 'structure', 'members' => [ 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'PublicDnsName' => [ 'shape' => 'String', 'locationName' => 'publicDnsName', ], 'IpOwnerId' => [ 'shape' => 'String', 'locationName' => 'ipOwnerId', ], ], ], 'InstanceNetworkInterfaceAttachment' => [ 'type' => 'structure', 'members' => [ 'AttachmentId' => [ 'shape' => 'String', 'locationName' => 'attachmentId', ], 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], 'Status' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'status', ], 'AttachTime' => [ 'shape' => 'DateTime', 'locationName' => 'attachTime', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], ], ], 'InstanceNetworkInterfaceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceNetworkInterface', 'locationName' => 'item', ], ], 'InstanceNetworkInterfaceSpecification' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'Groups' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressSpecificationList', 'locationName' => 'privateIpAddressesSet', 'queryName' => 'PrivateIpAddresses', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'secondaryPrivateIpAddressCount', ], 'AssociatePublicIpAddress' => [ 'shape' => 'Boolean', 'locationName' => 'associatePublicIpAddress', ], ], ], 'InstanceNetworkInterfaceSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceNetworkInterfaceSpecification', 'locationName' => 'item', ], ], 'InstancePrivateIpAddress' => [ 'type' => 'structure', 'members' => [ 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'Primary' => [ 'shape' => 'Boolean', 'locationName' => 'primary', ], 'Association' => [ 'shape' => 'InstanceNetworkInterfaceAssociation', 'locationName' => 'association', ], ], ], 'InstancePrivateIpAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstancePrivateIpAddress', 'locationName' => 'item', ], ], 'InstanceState' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'Integer', 'locationName' => 'code', ], 'Name' => [ 'shape' => 'InstanceStateName', 'locationName' => 'name', ], ], ], 'InstanceStateChange' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'CurrentState' => [ 'shape' => 'InstanceState', 'locationName' => 'currentState', ], 'PreviousState' => [ 'shape' => 'InstanceState', 'locationName' => 'previousState', ], ], ], 'InstanceStateChangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStateChange', 'locationName' => 'item', ], ], 'InstanceStateName' => [ 'type' => 'string', 'enum' => [ 'pending', 'running', 'shutting-down', 'terminated', 'stopping', 'stopped', ], ], 'InstanceStatus' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Events' => [ 'shape' => 'InstanceStatusEventList', 'locationName' => 'eventsSet', ], 'InstanceState' => [ 'shape' => 'InstanceState', 'locationName' => 'instanceState', ], 'SystemStatus' => [ 'shape' => 'InstanceStatusSummary', 'locationName' => 'systemStatus', ], 'InstanceStatus' => [ 'shape' => 'InstanceStatusSummary', 'locationName' => 'instanceStatus', ], ], ], 'InstanceStatusDetails' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'StatusName', 'locationName' => 'name', ], 'Status' => [ 'shape' => 'StatusType', 'locationName' => 'status', ], 'ImpairedSince' => [ 'shape' => 'DateTime', 'locationName' => 'impairedSince', ], ], ], 'InstanceStatusDetailsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStatusDetails', 'locationName' => 'item', ], ], 'InstanceStatusEvent' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'EventCode', 'locationName' => 'code', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'NotBefore' => [ 'shape' => 'DateTime', 'locationName' => 'notBefore', ], 'NotAfter' => [ 'shape' => 'DateTime', 'locationName' => 'notAfter', ], ], ], 'InstanceStatusEventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStatusEvent', 'locationName' => 'item', ], ], 'InstanceStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceStatus', 'locationName' => 'item', ], ], 'InstanceStatusSummary' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'SummaryStatus', 'locationName' => 'status', ], 'Details' => [ 'shape' => 'InstanceStatusDetailsList', 'locationName' => 'details', ], ], ], 'InstanceType' => [ 'type' => 'string', 'enum' => [ 't1.micro', 't2.nano', 't2.micro', 't2.small', 't2.medium', 't2.large', 'm1.small', 'm1.medium', 'm1.large', 'm1.xlarge', 'm3.medium', 'm3.large', 'm3.xlarge', 'm3.2xlarge', 'm4.large', 'm4.xlarge', 'm4.2xlarge', 'm4.4xlarge', 'm4.10xlarge', 'm4.16xlarge', 'm2.xlarge', 'm2.2xlarge', 'm2.4xlarge', 'cr1.8xlarge', 'r3.large', 'r3.xlarge', 'r3.2xlarge', 'r3.4xlarge', 'r3.8xlarge', 'x1.16xlarge', 'x1.32xlarge', 'i2.xlarge', 'i2.2xlarge', 'i2.4xlarge', 'i2.8xlarge', 'hi1.4xlarge', 'hs1.8xlarge', 'c1.medium', 'c1.xlarge', 'c3.large', 'c3.xlarge', 'c3.2xlarge', 'c3.4xlarge', 'c3.8xlarge', 'c4.large', 'c4.xlarge', 'c4.2xlarge', 'c4.4xlarge', 'c4.8xlarge', 'cc1.4xlarge', 'cc2.8xlarge', 'g2.2xlarge', 'g2.8xlarge', 'cg1.4xlarge', 'p2.xlarge', 'p2.8xlarge', 'p2.16xlarge', 'd2.xlarge', 'd2.2xlarge', 'd2.4xlarge', 'd2.8xlarge', ], ], 'InstanceTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceType', ], ], 'Integer' => [ 'type' => 'integer', ], 'InternetGateway' => [ 'type' => 'structure', 'members' => [ 'InternetGatewayId' => [ 'shape' => 'String', 'locationName' => 'internetGatewayId', ], 'Attachments' => [ 'shape' => 'InternetGatewayAttachmentList', 'locationName' => 'attachmentSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'InternetGatewayAttachment' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'State' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'state', ], ], ], 'InternetGatewayAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InternetGatewayAttachment', 'locationName' => 'item', ], ], 'InternetGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InternetGateway', 'locationName' => 'item', ], ], 'IpPermission' => [ 'type' => 'structure', 'members' => [ 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'UserIdGroupPairs' => [ 'shape' => 'UserIdGroupPairList', 'locationName' => 'groups', ], 'IpRanges' => [ 'shape' => 'IpRangeList', 'locationName' => 'ipRanges', ], 'PrefixListIds' => [ 'shape' => 'PrefixListIdList', 'locationName' => 'prefixListIds', ], ], ], 'IpPermissionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpPermission', 'locationName' => 'item', ], ], 'IpRange' => [ 'type' => 'structure', 'members' => [ 'CidrIp' => [ 'shape' => 'String', 'locationName' => 'cidrIp', ], ], ], 'IpRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpRange', 'locationName' => 'item', ], ], 'IpRanges' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'KeyNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'KeyName', ], ], 'KeyPair' => [ 'type' => 'structure', 'members' => [ 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'KeyFingerprint' => [ 'shape' => 'String', 'locationName' => 'keyFingerprint', ], 'KeyMaterial' => [ 'shape' => 'String', 'locationName' => 'keyMaterial', ], ], ], 'KeyPairInfo' => [ 'type' => 'structure', 'members' => [ 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'KeyFingerprint' => [ 'shape' => 'String', 'locationName' => 'keyFingerprint', ], ], ], 'KeyPairList' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyPairInfo', 'locationName' => 'item', ], ], 'LaunchPermission' => [ 'type' => 'structure', 'members' => [ 'UserId' => [ 'shape' => 'String', 'locationName' => 'userId', ], 'Group' => [ 'shape' => 'PermissionGroup', 'locationName' => 'group', ], ], ], 'LaunchPermissionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchPermission', 'locationName' => 'item', ], ], 'LaunchPermissionModifications' => [ 'type' => 'structure', 'members' => [ 'Add' => [ 'shape' => 'LaunchPermissionList', ], 'Remove' => [ 'shape' => 'LaunchPermissionList', ], ], ], 'LaunchSpecification' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'SecurityGroups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'UserData' => [ 'shape' => 'String', 'locationName' => 'userData', ], 'AddressingType' => [ 'shape' => 'String', 'locationName' => 'addressingType', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'Placement' => [ 'shape' => 'SpotPlacement', 'locationName' => 'placement', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceSpecificationList', 'locationName' => 'networkInterfaceSet', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'Monitoring' => [ 'shape' => 'RunInstancesMonitoringEnabled', 'locationName' => 'monitoring', ], ], ], 'LaunchSpecsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotFleetLaunchSpecification', 'locationName' => 'item', ], 'min' => 1, ], 'ListingState' => [ 'type' => 'string', 'enum' => [ 'available', 'sold', 'cancelled', 'pending', ], ], 'ListingStatus' => [ 'type' => 'string', 'enum' => [ 'active', 'pending', 'cancelled', 'closed', ], ], 'Long' => [ 'type' => 'long', ], 'MaxResults' => [ 'type' => 'integer', 'max' => 255, 'min' => 5, ], 'ModifyHostsRequest' => [ 'type' => 'structure', 'required' => [ 'HostIds', 'AutoPlacement', ], 'members' => [ 'HostIds' => [ 'shape' => 'RequestHostIdList', 'locationName' => 'hostId', ], 'AutoPlacement' => [ 'shape' => 'AutoPlacement', 'locationName' => 'autoPlacement', ], ], ], 'ModifyHostsResult' => [ 'type' => 'structure', 'members' => [ 'Successful' => [ 'shape' => 'ResponseHostIdList', 'locationName' => 'successful', ], 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemList', 'locationName' => 'unsuccessful', ], ], ], 'ModifyIdFormatRequest' => [ 'type' => 'structure', 'required' => [ 'Resource', 'UseLongIds', ], 'members' => [ 'Resource' => [ 'shape' => 'String', ], 'UseLongIds' => [ 'shape' => 'Boolean', ], ], ], 'ModifyIdentityIdFormatRequest' => [ 'type' => 'structure', 'required' => [ 'Resource', 'UseLongIds', 'PrincipalArn', ], 'members' => [ 'Resource' => [ 'shape' => 'String', 'locationName' => 'resource', ], 'UseLongIds' => [ 'shape' => 'Boolean', 'locationName' => 'useLongIds', ], 'PrincipalArn' => [ 'shape' => 'String', 'locationName' => 'principalArn', ], ], ], 'ModifyImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ImageId' => [ 'shape' => 'String', ], 'Attribute' => [ 'shape' => 'String', ], 'OperationType' => [ 'shape' => 'OperationType', ], 'UserIds' => [ 'shape' => 'UserIdStringList', 'locationName' => 'UserId', ], 'UserGroups' => [ 'shape' => 'UserGroupStringList', 'locationName' => 'UserGroup', ], 'ProductCodes' => [ 'shape' => 'ProductCodeStringList', 'locationName' => 'ProductCode', ], 'Value' => [ 'shape' => 'String', ], 'LaunchPermission' => [ 'shape' => 'LaunchPermissionModifications', ], 'Description' => [ 'shape' => 'AttributeValue', ], ], ], 'ModifyInstanceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Attribute' => [ 'shape' => 'InstanceAttributeName', 'locationName' => 'attribute', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], 'BlockDeviceMappings' => [ 'shape' => 'InstanceBlockDeviceMappingSpecificationList', 'locationName' => 'blockDeviceMapping', ], 'SourceDestCheck' => [ 'shape' => 'AttributeBooleanValue', ], 'DisableApiTermination' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'disableApiTermination', ], 'InstanceType' => [ 'shape' => 'AttributeValue', 'locationName' => 'instanceType', ], 'Kernel' => [ 'shape' => 'AttributeValue', 'locationName' => 'kernel', ], 'Ramdisk' => [ 'shape' => 'AttributeValue', 'locationName' => 'ramdisk', ], 'UserData' => [ 'shape' => 'BlobAttributeValue', 'locationName' => 'userData', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'AttributeValue', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'Groups' => [ 'shape' => 'GroupIdStringList', 'locationName' => 'GroupId', ], 'EbsOptimized' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'ebsOptimized', ], 'SriovNetSupport' => [ 'shape' => 'AttributeValue', 'locationName' => 'sriovNetSupport', ], 'EnaSupport' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'enaSupport', ], ], ], 'ModifyInstancePlacementRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', ], 'members' => [ 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Tenancy' => [ 'shape' => 'HostTenancy', 'locationName' => 'tenancy', ], 'Affinity' => [ 'shape' => 'Affinity', 'locationName' => 'affinity', ], 'HostId' => [ 'shape' => 'String', 'locationName' => 'hostId', ], ], ], 'ModifyInstancePlacementResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyNetworkInterfaceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'Description' => [ 'shape' => 'AttributeValue', 'locationName' => 'description', ], 'SourceDestCheck' => [ 'shape' => 'AttributeBooleanValue', 'locationName' => 'sourceDestCheck', ], 'Groups' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'Attachment' => [ 'shape' => 'NetworkInterfaceAttachmentChanges', 'locationName' => 'attachment', ], ], ], 'ModifyReservedInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstancesIds', 'TargetConfigurations', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'ReservedInstancesIds' => [ 'shape' => 'ReservedInstancesIdStringList', 'locationName' => 'ReservedInstancesId', ], 'TargetConfigurations' => [ 'shape' => 'ReservedInstancesConfigurationList', 'locationName' => 'ReservedInstancesConfigurationSetItemType', ], ], ], 'ModifyReservedInstancesResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesModificationId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesModificationId', ], ], ], 'ModifySnapshotAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SnapshotId' => [ 'shape' => 'String', ], 'Attribute' => [ 'shape' => 'SnapshotAttributeName', ], 'OperationType' => [ 'shape' => 'OperationType', ], 'UserIds' => [ 'shape' => 'UserIdStringList', 'locationName' => 'UserId', ], 'GroupNames' => [ 'shape' => 'GroupNameStringList', 'locationName' => 'UserGroup', ], 'CreateVolumePermission' => [ 'shape' => 'CreateVolumePermissionModifications', ], ], ], 'ModifySpotFleetRequestRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', ], 'members' => [ 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], 'TargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'targetCapacity', ], 'ExcessCapacityTerminationPolicy' => [ 'shape' => 'ExcessCapacityTerminationPolicy', 'locationName' => 'excessCapacityTerminationPolicy', ], ], ], 'ModifySpotFleetRequestResponse' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifySubnetAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'SubnetId', ], 'members' => [ 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'MapPublicIpOnLaunch' => [ 'shape' => 'AttributeBooleanValue', ], ], ], 'ModifyVolumeAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'VolumeId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VolumeId' => [ 'shape' => 'String', ], 'AutoEnableIO' => [ 'shape' => 'AttributeBooleanValue', ], ], ], 'ModifyVpcAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'VpcId', ], 'members' => [ 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'EnableDnsSupport' => [ 'shape' => 'AttributeBooleanValue', ], 'EnableDnsHostnames' => [ 'shape' => 'AttributeBooleanValue', ], ], ], 'ModifyVpcEndpointRequest' => [ 'type' => 'structure', 'required' => [ 'VpcEndpointId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcEndpointId' => [ 'shape' => 'String', ], 'ResetPolicy' => [ 'shape' => 'Boolean', ], 'PolicyDocument' => [ 'shape' => 'String', ], 'AddRouteTableIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'AddRouteTableId', ], 'RemoveRouteTableIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'RemoveRouteTableId', ], ], ], 'ModifyVpcEndpointResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ModifyVpcPeeringConnectionOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'VpcPeeringConnectionId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', ], 'RequesterPeeringConnectionOptions' => [ 'shape' => 'PeeringConnectionOptionsRequest', ], 'AccepterPeeringConnectionOptions' => [ 'shape' => 'PeeringConnectionOptionsRequest', ], ], ], 'ModifyVpcPeeringConnectionOptionsResult' => [ 'type' => 'structure', 'members' => [ 'RequesterPeeringConnectionOptions' => [ 'shape' => 'PeeringConnectionOptions', 'locationName' => 'requesterPeeringConnectionOptions', ], 'AccepterPeeringConnectionOptions' => [ 'shape' => 'PeeringConnectionOptions', 'locationName' => 'accepterPeeringConnectionOptions', ], ], ], 'MonitorInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], ], ], 'MonitorInstancesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceMonitorings' => [ 'shape' => 'InstanceMonitoringList', 'locationName' => 'instancesSet', ], ], ], 'Monitoring' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'MonitoringState', 'locationName' => 'state', ], ], ], 'MonitoringState' => [ 'type' => 'string', 'enum' => [ 'disabled', 'disabling', 'enabled', 'pending', ], ], 'MoveAddressToVpcRequest' => [ 'type' => 'structure', 'required' => [ 'PublicIp', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], ], ], 'MoveAddressToVpcResult' => [ 'type' => 'structure', 'members' => [ 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'Status' => [ 'shape' => 'Status', 'locationName' => 'status', ], ], ], 'MoveStatus' => [ 'type' => 'string', 'enum' => [ 'movingToVpc', 'restoringToClassic', ], ], 'MovingAddressStatus' => [ 'type' => 'structure', 'members' => [ 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'MoveStatus' => [ 'shape' => 'MoveStatus', 'locationName' => 'moveStatus', ], ], ], 'MovingAddressStatusSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'MovingAddressStatus', 'locationName' => 'item', ], ], 'NatGateway' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'NatGatewayId' => [ 'shape' => 'String', 'locationName' => 'natGatewayId', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'DeleteTime' => [ 'shape' => 'DateTime', 'locationName' => 'deleteTime', ], 'NatGatewayAddresses' => [ 'shape' => 'NatGatewayAddressList', 'locationName' => 'natGatewayAddressSet', ], 'State' => [ 'shape' => 'NatGatewayState', 'locationName' => 'state', ], 'FailureCode' => [ 'shape' => 'String', 'locationName' => 'failureCode', ], 'FailureMessage' => [ 'shape' => 'String', 'locationName' => 'failureMessage', ], 'ProvisionedBandwidth' => [ 'shape' => 'ProvisionedBandwidth', 'locationName' => 'provisionedBandwidth', ], ], ], 'NatGatewayAddress' => [ 'type' => 'structure', 'members' => [ 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'PrivateIp' => [ 'shape' => 'String', 'locationName' => 'privateIp', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], ], ], 'NatGatewayAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NatGatewayAddress', 'locationName' => 'item', ], ], 'NatGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NatGateway', 'locationName' => 'item', ], ], 'NatGatewayState' => [ 'type' => 'string', 'enum' => [ 'pending', 'failed', 'available', 'deleting', 'deleted', ], ], 'NetworkAcl' => [ 'type' => 'structure', 'members' => [ 'NetworkAclId' => [ 'shape' => 'String', 'locationName' => 'networkAclId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'IsDefault' => [ 'shape' => 'Boolean', 'locationName' => 'default', ], 'Entries' => [ 'shape' => 'NetworkAclEntryList', 'locationName' => 'entrySet', ], 'Associations' => [ 'shape' => 'NetworkAclAssociationList', 'locationName' => 'associationSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'NetworkAclAssociation' => [ 'type' => 'structure', 'members' => [ 'NetworkAclAssociationId' => [ 'shape' => 'String', 'locationName' => 'networkAclAssociationId', ], 'NetworkAclId' => [ 'shape' => 'String', 'locationName' => 'networkAclId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], ], ], 'NetworkAclAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkAclAssociation', 'locationName' => 'item', ], ], 'NetworkAclEntry' => [ 'type' => 'structure', 'members' => [ 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'RuleAction' => [ 'shape' => 'RuleAction', 'locationName' => 'ruleAction', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'IcmpTypeCode' => [ 'shape' => 'IcmpTypeCode', 'locationName' => 'icmpTypeCode', ], 'PortRange' => [ 'shape' => 'PortRange', 'locationName' => 'portRange', ], ], ], 'NetworkAclEntryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkAclEntry', 'locationName' => 'item', ], ], 'NetworkAclList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkAcl', 'locationName' => 'item', ], ], 'NetworkInterface' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'RequesterId' => [ 'shape' => 'String', 'locationName' => 'requesterId', ], 'RequesterManaged' => [ 'shape' => 'Boolean', 'locationName' => 'requesterManaged', ], 'Status' => [ 'shape' => 'NetworkInterfaceStatus', 'locationName' => 'status', ], 'MacAddress' => [ 'shape' => 'String', 'locationName' => 'macAddress', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'SourceDestCheck' => [ 'shape' => 'Boolean', 'locationName' => 'sourceDestCheck', ], 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'Attachment' => [ 'shape' => 'NetworkInterfaceAttachment', 'locationName' => 'attachment', ], 'Association' => [ 'shape' => 'NetworkInterfaceAssociation', 'locationName' => 'association', ], 'TagSet' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'PrivateIpAddresses' => [ 'shape' => 'NetworkInterfacePrivateIpAddressList', 'locationName' => 'privateIpAddressesSet', ], 'InterfaceType' => [ 'shape' => 'NetworkInterfaceType', 'locationName' => 'interfaceType', ], ], ], 'NetworkInterfaceAssociation' => [ 'type' => 'structure', 'members' => [ 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], 'PublicDnsName' => [ 'shape' => 'String', 'locationName' => 'publicDnsName', ], 'IpOwnerId' => [ 'shape' => 'String', 'locationName' => 'ipOwnerId', ], 'AllocationId' => [ 'shape' => 'String', 'locationName' => 'allocationId', ], 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], ], ], 'NetworkInterfaceAttachment' => [ 'type' => 'structure', 'members' => [ 'AttachmentId' => [ 'shape' => 'String', 'locationName' => 'attachmentId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceOwnerId' => [ 'shape' => 'String', 'locationName' => 'instanceOwnerId', ], 'DeviceIndex' => [ 'shape' => 'Integer', 'locationName' => 'deviceIndex', ], 'Status' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'status', ], 'AttachTime' => [ 'shape' => 'DateTime', 'locationName' => 'attachTime', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], ], ], 'NetworkInterfaceAttachmentChanges' => [ 'type' => 'structure', 'members' => [ 'AttachmentId' => [ 'shape' => 'String', 'locationName' => 'attachmentId', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], ], ], 'NetworkInterfaceAttribute' => [ 'type' => 'string', 'enum' => [ 'description', 'groupSet', 'sourceDestCheck', 'attachment', ], ], 'NetworkInterfaceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'NetworkInterfaceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterface', 'locationName' => 'item', ], ], 'NetworkInterfacePrivateIpAddress' => [ 'type' => 'structure', 'members' => [ 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'PrivateDnsName' => [ 'shape' => 'String', 'locationName' => 'privateDnsName', ], 'Primary' => [ 'shape' => 'Boolean', 'locationName' => 'primary', ], 'Association' => [ 'shape' => 'NetworkInterfaceAssociation', 'locationName' => 'association', ], ], ], 'NetworkInterfacePrivateIpAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NetworkInterfacePrivateIpAddress', 'locationName' => 'item', ], ], 'NetworkInterfaceStatus' => [ 'type' => 'string', 'enum' => [ 'available', 'attaching', 'in-use', 'detaching', ], ], 'NetworkInterfaceType' => [ 'type' => 'string', 'enum' => [ 'interface', 'natGateway', ], ], 'NewDhcpConfiguration' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Values' => [ 'shape' => 'ValueStringList', 'locationName' => 'Value', ], ], ], 'NewDhcpConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NewDhcpConfiguration', 'locationName' => 'item', ], ], 'NextToken' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'OccurrenceDayRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Integer', 'locationName' => 'OccurenceDay', ], ], 'OccurrenceDaySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Integer', 'locationName' => 'item', ], ], 'OfferingClassType' => [ 'type' => 'string', 'enum' => [ 'standard', 'convertible', ], ], 'OfferingTypeValues' => [ 'type' => 'string', 'enum' => [ 'Heavy Utilization', 'Medium Utilization', 'Light Utilization', 'No Upfront', 'Partial Upfront', 'All Upfront', ], ], 'OperationType' => [ 'type' => 'string', 'enum' => [ 'add', 'remove', ], ], 'OwnerStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'Owner', ], ], 'PaymentOption' => [ 'type' => 'string', 'enum' => [ 'AllUpfront', 'PartialUpfront', 'NoUpfront', ], ], 'PeeringConnectionOptions' => [ 'type' => 'structure', 'members' => [ 'AllowEgressFromLocalClassicLinkToRemoteVpc' => [ 'shape' => 'Boolean', 'locationName' => 'allowEgressFromLocalClassicLinkToRemoteVpc', ], 'AllowEgressFromLocalVpcToRemoteClassicLink' => [ 'shape' => 'Boolean', 'locationName' => 'allowEgressFromLocalVpcToRemoteClassicLink', ], 'AllowDnsResolutionFromRemoteVpc' => [ 'shape' => 'Boolean', 'locationName' => 'allowDnsResolutionFromRemoteVpc', ], ], ], 'PeeringConnectionOptionsRequest' => [ 'type' => 'structure', 'members' => [ 'AllowEgressFromLocalClassicLinkToRemoteVpc' => [ 'shape' => 'Boolean', ], 'AllowEgressFromLocalVpcToRemoteClassicLink' => [ 'shape' => 'Boolean', ], 'AllowDnsResolutionFromRemoteVpc' => [ 'shape' => 'Boolean', ], ], ], 'PermissionGroup' => [ 'type' => 'string', 'enum' => [ 'all', ], ], 'Placement' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'Tenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'tenancy', ], 'HostId' => [ 'shape' => 'String', 'locationName' => 'hostId', ], 'Affinity' => [ 'shape' => 'String', 'locationName' => 'affinity', ], ], ], 'PlacementGroup' => [ 'type' => 'structure', 'members' => [ 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'Strategy' => [ 'shape' => 'PlacementStrategy', 'locationName' => 'strategy', ], 'State' => [ 'shape' => 'PlacementGroupState', 'locationName' => 'state', ], ], ], 'PlacementGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlacementGroup', 'locationName' => 'item', ], ], 'PlacementGroupState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'PlacementGroupStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'PlacementStrategy' => [ 'type' => 'string', 'enum' => [ 'cluster', ], ], 'PlatformValues' => [ 'type' => 'string', 'enum' => [ 'Windows', ], ], 'PortRange' => [ 'type' => 'structure', 'members' => [ 'From' => [ 'shape' => 'Integer', 'locationName' => 'from', ], 'To' => [ 'shape' => 'Integer', 'locationName' => 'to', ], ], ], 'PrefixList' => [ 'type' => 'structure', 'members' => [ 'PrefixListId' => [ 'shape' => 'String', 'locationName' => 'prefixListId', ], 'PrefixListName' => [ 'shape' => 'String', 'locationName' => 'prefixListName', ], 'Cidrs' => [ 'shape' => 'ValueStringList', 'locationName' => 'cidrSet', ], ], ], 'PrefixListId' => [ 'type' => 'structure', 'members' => [ 'PrefixListId' => [ 'shape' => 'String', 'locationName' => 'prefixListId', ], ], ], 'PrefixListIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrefixListId', 'locationName' => 'item', ], ], 'PrefixListIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'PrefixListSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrefixList', 'locationName' => 'item', ], ], 'PriceSchedule' => [ 'type' => 'structure', 'members' => [ 'Term' => [ 'shape' => 'Long', 'locationName' => 'term', ], 'Price' => [ 'shape' => 'Double', 'locationName' => 'price', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Active' => [ 'shape' => 'Boolean', 'locationName' => 'active', ], ], ], 'PriceScheduleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PriceSchedule', 'locationName' => 'item', ], ], 'PriceScheduleSpecification' => [ 'type' => 'structure', 'members' => [ 'Term' => [ 'shape' => 'Long', 'locationName' => 'term', ], 'Price' => [ 'shape' => 'Double', 'locationName' => 'price', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], ], ], 'PriceScheduleSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PriceScheduleSpecification', 'locationName' => 'item', ], ], 'PricingDetail' => [ 'type' => 'structure', 'members' => [ 'Price' => [ 'shape' => 'Double', 'locationName' => 'price', ], 'Count' => [ 'shape' => 'Integer', 'locationName' => 'count', ], ], ], 'PricingDetailsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PricingDetail', 'locationName' => 'item', ], ], 'PrivateIpAddressConfigSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstancesPrivateIpAddressConfig', 'locationName' => 'PrivateIpAddressConfigSet', ], ], 'PrivateIpAddressSpecification' => [ 'type' => 'structure', 'required' => [ 'PrivateIpAddress', ], 'members' => [ 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'Primary' => [ 'shape' => 'Boolean', 'locationName' => 'primary', ], ], ], 'PrivateIpAddressSpecificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrivateIpAddressSpecification', 'locationName' => 'item', ], ], 'PrivateIpAddressStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'PrivateIpAddress', ], ], 'ProductCode' => [ 'type' => 'structure', 'members' => [ 'ProductCodeId' => [ 'shape' => 'String', 'locationName' => 'productCode', ], 'ProductCodeType' => [ 'shape' => 'ProductCodeValues', 'locationName' => 'type', ], ], ], 'ProductCodeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProductCode', 'locationName' => 'item', ], ], 'ProductCodeStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ProductCode', ], ], 'ProductCodeValues' => [ 'type' => 'string', 'enum' => [ 'devpay', 'marketplace', ], ], 'ProductDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'PropagatingVgw' => [ 'type' => 'structure', 'members' => [ 'GatewayId' => [ 'shape' => 'String', 'locationName' => 'gatewayId', ], ], ], 'PropagatingVgwList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PropagatingVgw', 'locationName' => 'item', ], ], 'ProvisionedBandwidth' => [ 'type' => 'structure', 'members' => [ 'Provisioned' => [ 'shape' => 'String', 'locationName' => 'provisioned', ], 'Requested' => [ 'shape' => 'String', 'locationName' => 'requested', ], 'RequestTime' => [ 'shape' => 'DateTime', 'locationName' => 'requestTime', ], 'ProvisionTime' => [ 'shape' => 'DateTime', 'locationName' => 'provisionTime', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], ], ], 'PublicIpStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'PublicIp', ], ], 'Purchase' => [ 'type' => 'structure', 'members' => [ 'HostReservationId' => [ 'shape' => 'String', 'locationName' => 'hostReservationId', ], 'HostIdSet' => [ 'shape' => 'ResponseHostIdSet', 'locationName' => 'hostIdSet', ], 'InstanceFamily' => [ 'shape' => 'String', 'locationName' => 'instanceFamily', ], 'PaymentOption' => [ 'shape' => 'PaymentOption', 'locationName' => 'paymentOption', ], 'UpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'upfrontPrice', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'Duration' => [ 'shape' => 'Integer', 'locationName' => 'duration', ], ], ], 'PurchaseHostReservationRequest' => [ 'type' => 'structure', 'required' => [ 'OfferingId', 'HostIdSet', ], 'members' => [ 'OfferingId' => [ 'shape' => 'String', ], 'HostIdSet' => [ 'shape' => 'RequestHostIdSet', ], 'LimitPrice' => [ 'shape' => 'String', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', ], 'ClientToken' => [ 'shape' => 'String', ], ], ], 'PurchaseHostReservationResult' => [ 'type' => 'structure', 'members' => [ 'Purchase' => [ 'shape' => 'PurchaseSet', 'locationName' => 'purchase', ], 'TotalUpfrontPrice' => [ 'shape' => 'String', 'locationName' => 'totalUpfrontPrice', ], 'TotalHourlyPrice' => [ 'shape' => 'String', 'locationName' => 'totalHourlyPrice', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'PurchaseRequest' => [ 'type' => 'structure', 'required' => [ 'PurchaseToken', 'InstanceCount', ], 'members' => [ 'PurchaseToken' => [ 'shape' => 'String', ], 'InstanceCount' => [ 'shape' => 'Integer', ], ], ], 'PurchaseRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'PurchaseRequest', 'locationName' => 'PurchaseRequest', ], 'min' => 1, ], 'PurchaseReservedInstancesOfferingRequest' => [ 'type' => 'structure', 'required' => [ 'ReservedInstancesOfferingId', 'InstanceCount', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ReservedInstancesOfferingId' => [ 'shape' => 'String', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'LimitPrice' => [ 'shape' => 'ReservedInstanceLimitPrice', 'locationName' => 'limitPrice', ], ], ], 'PurchaseReservedInstancesOfferingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], ], ], 'PurchaseScheduledInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'PurchaseRequests', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'PurchaseRequests' => [ 'shape' => 'PurchaseRequestSet', 'locationName' => 'PurchaseRequest', ], ], ], 'PurchaseScheduledInstancesResult' => [ 'type' => 'structure', 'members' => [ 'ScheduledInstanceSet' => [ 'shape' => 'PurchasedScheduledInstanceSet', 'locationName' => 'scheduledInstanceSet', ], ], ], 'PurchaseSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Purchase', ], ], 'PurchasedScheduledInstanceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstance', 'locationName' => 'item', ], ], 'RIProductDescription' => [ 'type' => 'string', 'enum' => [ 'Linux/UNIX', 'Linux/UNIX (Amazon VPC)', 'Windows', 'Windows (Amazon VPC)', ], ], 'ReasonCodesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReportInstanceReasonCodes', 'locationName' => 'item', ], ], 'RebootInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], ], ], 'RecurringCharge' => [ 'type' => 'structure', 'members' => [ 'Frequency' => [ 'shape' => 'RecurringChargeFrequency', 'locationName' => 'frequency', ], 'Amount' => [ 'shape' => 'Double', 'locationName' => 'amount', ], ], ], 'RecurringChargeFrequency' => [ 'type' => 'string', 'enum' => [ 'Hourly', ], ], 'RecurringChargesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecurringCharge', 'locationName' => 'item', ], ], 'Region' => [ 'type' => 'structure', 'members' => [ 'RegionName' => [ 'shape' => 'String', 'locationName' => 'regionName', ], 'Endpoint' => [ 'shape' => 'String', 'locationName' => 'regionEndpoint', ], ], ], 'RegionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Region', 'locationName' => 'item', ], ], 'RegionNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'RegionName', ], ], 'RegisterImageRequest' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ImageLocation' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', 'locationName' => 'name', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Architecture' => [ 'shape' => 'ArchitectureValues', 'locationName' => 'architecture', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'RootDeviceName' => [ 'shape' => 'String', 'locationName' => 'rootDeviceName', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingRequestList', 'locationName' => 'BlockDeviceMapping', ], 'VirtualizationType' => [ 'shape' => 'String', 'locationName' => 'virtualizationType', ], 'SriovNetSupport' => [ 'shape' => 'String', 'locationName' => 'sriovNetSupport', ], 'EnaSupport' => [ 'shape' => 'Boolean', 'locationName' => 'enaSupport', ], ], ], 'RegisterImageResult' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], ], ], 'RejectVpcPeeringConnectionRequest' => [ 'type' => 'structure', 'required' => [ 'VpcPeeringConnectionId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'RejectVpcPeeringConnectionResult' => [ 'type' => 'structure', 'members' => [ 'Return' => [ 'shape' => 'Boolean', 'locationName' => 'return', ], ], ], 'ReleaseAddressRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'PublicIp' => [ 'shape' => 'String', ], 'AllocationId' => [ 'shape' => 'String', ], ], ], 'ReleaseHostsRequest' => [ 'type' => 'structure', 'required' => [ 'HostIds', ], 'members' => [ 'HostIds' => [ 'shape' => 'RequestHostIdList', 'locationName' => 'hostId', ], ], ], 'ReleaseHostsResult' => [ 'type' => 'structure', 'members' => [ 'Successful' => [ 'shape' => 'ResponseHostIdList', 'locationName' => 'successful', ], 'Unsuccessful' => [ 'shape' => 'UnsuccessfulItemList', 'locationName' => 'unsuccessful', ], ], ], 'ReplaceNetworkAclAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', 'NetworkAclId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'NetworkAclId' => [ 'shape' => 'String', 'locationName' => 'networkAclId', ], ], ], 'ReplaceNetworkAclAssociationResult' => [ 'type' => 'structure', 'members' => [ 'NewAssociationId' => [ 'shape' => 'String', 'locationName' => 'newAssociationId', ], ], ], 'ReplaceNetworkAclEntryRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkAclId', 'RuleNumber', 'Protocol', 'RuleAction', 'Egress', 'CidrBlock', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkAclId' => [ 'shape' => 'String', 'locationName' => 'networkAclId', ], 'RuleNumber' => [ 'shape' => 'Integer', 'locationName' => 'ruleNumber', ], 'Protocol' => [ 'shape' => 'String', 'locationName' => 'protocol', ], 'RuleAction' => [ 'shape' => 'RuleAction', 'locationName' => 'ruleAction', ], 'Egress' => [ 'shape' => 'Boolean', 'locationName' => 'egress', ], 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'IcmpTypeCode' => [ 'shape' => 'IcmpTypeCode', 'locationName' => 'Icmp', ], 'PortRange' => [ 'shape' => 'PortRange', 'locationName' => 'portRange', ], ], ], 'ReplaceRouteRequest' => [ 'type' => 'structure', 'required' => [ 'RouteTableId', 'DestinationCidrBlock', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'RouteTableId' => [ 'shape' => 'String', 'locationName' => 'routeTableId', ], 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'GatewayId' => [ 'shape' => 'String', 'locationName' => 'gatewayId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], 'NatGatewayId' => [ 'shape' => 'String', 'locationName' => 'natGatewayId', ], ], ], 'ReplaceRouteTableAssociationRequest' => [ 'type' => 'structure', 'required' => [ 'AssociationId', 'RouteTableId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'AssociationId' => [ 'shape' => 'String', 'locationName' => 'associationId', ], 'RouteTableId' => [ 'shape' => 'String', 'locationName' => 'routeTableId', ], ], ], 'ReplaceRouteTableAssociationResult' => [ 'type' => 'structure', 'members' => [ 'NewAssociationId' => [ 'shape' => 'String', 'locationName' => 'newAssociationId', ], ], ], 'ReportInstanceReasonCodes' => [ 'type' => 'string', 'enum' => [ 'instance-stuck-in-state', 'unresponsive', 'not-accepting-credentials', 'password-not-available', 'performance-network', 'performance-instance-store', 'performance-ebs-volume', 'performance-other', 'other', ], ], 'ReportInstanceStatusRequest' => [ 'type' => 'structure', 'required' => [ 'Instances', 'Status', 'ReasonCodes', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'Instances' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'instanceId', ], 'Status' => [ 'shape' => 'ReportStatusType', 'locationName' => 'status', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'EndTime' => [ 'shape' => 'DateTime', 'locationName' => 'endTime', ], 'ReasonCodes' => [ 'shape' => 'ReasonCodesList', 'locationName' => 'reasonCode', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], ], ], 'ReportStatusType' => [ 'type' => 'string', 'enum' => [ 'ok', 'impaired', ], ], 'RequestHostIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'RequestHostIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'RequestSpotFleetRequest' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestConfig', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotFleetRequestConfig' => [ 'shape' => 'SpotFleetRequestConfigData', 'locationName' => 'spotFleetRequestConfig', ], ], ], 'RequestSpotFleetResponse' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', ], 'members' => [ 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], ], ], 'RequestSpotInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'SpotPrice', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'Type' => [ 'shape' => 'SpotInstanceType', 'locationName' => 'type', ], 'ValidFrom' => [ 'shape' => 'DateTime', 'locationName' => 'validFrom', ], 'ValidUntil' => [ 'shape' => 'DateTime', 'locationName' => 'validUntil', ], 'LaunchGroup' => [ 'shape' => 'String', 'locationName' => 'launchGroup', ], 'AvailabilityZoneGroup' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneGroup', ], 'BlockDurationMinutes' => [ 'shape' => 'Integer', 'locationName' => 'blockDurationMinutes', ], 'LaunchSpecification' => [ 'shape' => 'RequestSpotLaunchSpecification', ], ], ], 'RequestSpotInstancesResult' => [ 'type' => 'structure', 'members' => [ 'SpotInstanceRequests' => [ 'shape' => 'SpotInstanceRequestList', 'locationName' => 'spotInstanceRequestSet', ], ], ], 'RequestSpotLaunchSpecification' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'SecurityGroups' => [ 'shape' => 'ValueStringList', 'locationName' => 'SecurityGroup', ], 'UserData' => [ 'shape' => 'String', 'locationName' => 'userData', ], 'AddressingType' => [ 'shape' => 'String', 'locationName' => 'addressingType', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'Placement' => [ 'shape' => 'SpotPlacement', 'locationName' => 'placement', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceSpecificationList', 'locationName' => 'NetworkInterface', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'Monitoring' => [ 'shape' => 'RunInstancesMonitoringEnabled', 'locationName' => 'monitoring', ], 'SecurityGroupIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'SecurityGroupId', ], ], ], 'Reservation' => [ 'type' => 'structure', 'members' => [ 'ReservationId' => [ 'shape' => 'String', 'locationName' => 'reservationId', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'RequesterId' => [ 'shape' => 'String', 'locationName' => 'requesterId', ], 'Groups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'Instances' => [ 'shape' => 'InstanceList', 'locationName' => 'instancesSet', ], ], ], 'ReservationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Reservation', 'locationName' => 'item', ], ], 'ReservationState' => [ 'type' => 'string', 'enum' => [ 'payment-pending', 'payment-failed', 'active', 'retired', ], ], 'ReservationValue' => [ 'type' => 'structure', 'members' => [ 'RemainingTotalValue' => [ 'shape' => 'String', 'locationName' => 'remainingTotalValue', ], 'RemainingUpfrontValue' => [ 'shape' => 'String', 'locationName' => 'remainingUpfrontValue', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], ], ], 'ReservedInstanceIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ReservedInstanceId', ], ], 'ReservedInstanceLimitPrice' => [ 'type' => 'structure', 'members' => [ 'Amount' => [ 'shape' => 'Double', 'locationName' => 'amount', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], ], ], 'ReservedInstanceReservationValue' => [ 'type' => 'structure', 'members' => [ 'ReservedInstanceId' => [ 'shape' => 'String', 'locationName' => 'reservedInstanceId', ], 'ReservationValue' => [ 'shape' => 'ReservationValue', 'locationName' => 'reservationValue', ], ], ], 'ReservedInstanceReservationValueSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstanceReservationValue', 'locationName' => 'item', ], ], 'ReservedInstanceState' => [ 'type' => 'string', 'enum' => [ 'payment-pending', 'active', 'payment-failed', 'retired', ], ], 'ReservedInstances' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Start' => [ 'shape' => 'DateTime', 'locationName' => 'start', ], 'End' => [ 'shape' => 'DateTime', 'locationName' => 'end', ], 'Duration' => [ 'shape' => 'Long', 'locationName' => 'duration', ], 'UsagePrice' => [ 'shape' => 'Float', 'locationName' => 'usagePrice', ], 'FixedPrice' => [ 'shape' => 'Float', 'locationName' => 'fixedPrice', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', 'locationName' => 'productDescription', ], 'State' => [ 'shape' => 'ReservedInstanceState', 'locationName' => 'state', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'OfferingType' => [ 'shape' => 'OfferingTypeValues', 'locationName' => 'offeringType', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargesList', 'locationName' => 'recurringCharges', ], 'OfferingClass' => [ 'shape' => 'OfferingClassType', 'locationName' => 'offeringClass', ], 'Scope' => [ 'shape' => 'scope', 'locationName' => 'scope', ], ], ], 'ReservedInstancesConfiguration' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'Scope' => [ 'shape' => 'scope', 'locationName' => 'scope', ], ], ], 'ReservedInstancesConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesConfiguration', 'locationName' => 'item', ], ], 'ReservedInstancesId' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], ], ], 'ReservedInstancesIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ReservedInstancesId', ], ], 'ReservedInstancesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstances', 'locationName' => 'item', ], ], 'ReservedInstancesListing' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesListingId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesListingId', ], 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], 'CreateDate' => [ 'shape' => 'DateTime', 'locationName' => 'createDate', ], 'UpdateDate' => [ 'shape' => 'DateTime', 'locationName' => 'updateDate', ], 'Status' => [ 'shape' => 'ListingStatus', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'InstanceCounts' => [ 'shape' => 'InstanceCountList', 'locationName' => 'instanceCounts', ], 'PriceSchedules' => [ 'shape' => 'PriceScheduleList', 'locationName' => 'priceSchedules', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'ReservedInstancesListingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesListing', 'locationName' => 'item', ], ], 'ReservedInstancesModification' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesModificationId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesModificationId', ], 'ReservedInstancesIds' => [ 'shape' => 'ReservedIntancesIds', 'locationName' => 'reservedInstancesSet', ], 'ModificationResults' => [ 'shape' => 'ReservedInstancesModificationResultList', 'locationName' => 'modificationResultSet', ], 'CreateDate' => [ 'shape' => 'DateTime', 'locationName' => 'createDate', ], 'UpdateDate' => [ 'shape' => 'DateTime', 'locationName' => 'updateDate', ], 'EffectiveDate' => [ 'shape' => 'DateTime', 'locationName' => 'effectiveDate', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], ], ], 'ReservedInstancesModificationIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ReservedInstancesModificationId', ], ], 'ReservedInstancesModificationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesModification', 'locationName' => 'item', ], ], 'ReservedInstancesModificationResult' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesId', ], 'TargetConfiguration' => [ 'shape' => 'ReservedInstancesConfiguration', 'locationName' => 'targetConfiguration', ], ], ], 'ReservedInstancesModificationResultList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesModificationResult', 'locationName' => 'item', ], ], 'ReservedInstancesOffering' => [ 'type' => 'structure', 'members' => [ 'ReservedInstancesOfferingId' => [ 'shape' => 'String', 'locationName' => 'reservedInstancesOfferingId', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'Duration' => [ 'shape' => 'Long', 'locationName' => 'duration', ], 'UsagePrice' => [ 'shape' => 'Float', 'locationName' => 'usagePrice', ], 'FixedPrice' => [ 'shape' => 'Float', 'locationName' => 'fixedPrice', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', 'locationName' => 'productDescription', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'CurrencyCode' => [ 'shape' => 'CurrencyCodeValues', 'locationName' => 'currencyCode', ], 'OfferingType' => [ 'shape' => 'OfferingTypeValues', 'locationName' => 'offeringType', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargesList', 'locationName' => 'recurringCharges', ], 'Marketplace' => [ 'shape' => 'Boolean', 'locationName' => 'marketplace', ], 'PricingDetails' => [ 'shape' => 'PricingDetailsList', 'locationName' => 'pricingDetailsSet', ], 'OfferingClass' => [ 'shape' => 'OfferingClassType', 'locationName' => 'offeringClass', ], 'Scope' => [ 'shape' => 'scope', 'locationName' => 'scope', ], ], ], 'ReservedInstancesOfferingIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ReservedInstancesOfferingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesOffering', 'locationName' => 'item', ], ], 'ReservedIntancesIds' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedInstancesId', 'locationName' => 'item', ], ], 'ResetImageAttributeName' => [ 'type' => 'string', 'enum' => [ 'launchPermission', ], ], 'ResetImageAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', 'Attribute', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ImageId' => [ 'shape' => 'String', ], 'Attribute' => [ 'shape' => 'ResetImageAttributeName', ], ], ], 'ResetInstanceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceId', 'Attribute', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Attribute' => [ 'shape' => 'InstanceAttributeName', 'locationName' => 'attribute', ], ], ], 'ResetNetworkInterfaceAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'SourceDestCheck' => [ 'shape' => 'String', 'locationName' => 'sourceDestCheck', ], ], ], 'ResetSnapshotAttributeRequest' => [ 'type' => 'structure', 'required' => [ 'SnapshotId', 'Attribute', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'SnapshotId' => [ 'shape' => 'String', ], 'Attribute' => [ 'shape' => 'SnapshotAttributeName', ], ], ], 'ResourceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ResourceType' => [ 'type' => 'string', 'enum' => [ 'customer-gateway', 'dhcp-options', 'image', 'instance', 'internet-gateway', 'network-acl', 'network-interface', 'reserved-instances', 'route-table', 'snapshot', 'spot-instances-request', 'subnet', 'security-group', 'volume', 'vpc', 'vpn-connection', 'vpn-gateway', ], ], 'ResponseHostIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'ResponseHostIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'RestorableByStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'RestoreAddressToClassicRequest' => [ 'type' => 'structure', 'required' => [ 'PublicIp', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], ], ], 'RestoreAddressToClassicResult' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'Status', 'locationName' => 'status', ], 'PublicIp' => [ 'shape' => 'String', 'locationName' => 'publicIp', ], ], ], 'RevokeSecurityGroupEgressRequest' => [ 'type' => 'structure', 'required' => [ 'GroupId', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'SourceSecurityGroupName' => [ 'shape' => 'String', 'locationName' => 'sourceSecurityGroupName', ], 'SourceSecurityGroupOwnerId' => [ 'shape' => 'String', 'locationName' => 'sourceSecurityGroupOwnerId', ], 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'CidrIp' => [ 'shape' => 'String', 'locationName' => 'cidrIp', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', 'locationName' => 'ipPermissions', ], ], ], 'RevokeSecurityGroupIngressRequest' => [ 'type' => 'structure', 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'GroupName' => [ 'shape' => 'String', ], 'GroupId' => [ 'shape' => 'String', ], 'SourceSecurityGroupName' => [ 'shape' => 'String', ], 'SourceSecurityGroupOwnerId' => [ 'shape' => 'String', ], 'IpProtocol' => [ 'shape' => 'String', ], 'FromPort' => [ 'shape' => 'Integer', ], 'ToPort' => [ 'shape' => 'Integer', ], 'CidrIp' => [ 'shape' => 'String', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', ], ], ], 'Route' => [ 'type' => 'structure', 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'DestinationPrefixListId' => [ 'shape' => 'String', 'locationName' => 'destinationPrefixListId', ], 'GatewayId' => [ 'shape' => 'String', 'locationName' => 'gatewayId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'InstanceOwnerId' => [ 'shape' => 'String', 'locationName' => 'instanceOwnerId', ], 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], 'NatGatewayId' => [ 'shape' => 'String', 'locationName' => 'natGatewayId', ], 'State' => [ 'shape' => 'RouteState', 'locationName' => 'state', ], 'Origin' => [ 'shape' => 'RouteOrigin', 'locationName' => 'origin', ], ], ], 'RouteList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Route', 'locationName' => 'item', ], ], 'RouteOrigin' => [ 'type' => 'string', 'enum' => [ 'CreateRouteTable', 'CreateRoute', 'EnableVgwRoutePropagation', ], ], 'RouteState' => [ 'type' => 'string', 'enum' => [ 'active', 'blackhole', ], ], 'RouteTable' => [ 'type' => 'structure', 'members' => [ 'RouteTableId' => [ 'shape' => 'String', 'locationName' => 'routeTableId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'Routes' => [ 'shape' => 'RouteList', 'locationName' => 'routeSet', ], 'Associations' => [ 'shape' => 'RouteTableAssociationList', 'locationName' => 'associationSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'PropagatingVgws' => [ 'shape' => 'PropagatingVgwList', 'locationName' => 'propagatingVgwSet', ], ], ], 'RouteTableAssociation' => [ 'type' => 'structure', 'members' => [ 'RouteTableAssociationId' => [ 'shape' => 'String', 'locationName' => 'routeTableAssociationId', ], 'RouteTableId' => [ 'shape' => 'String', 'locationName' => 'routeTableId', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'Main' => [ 'shape' => 'Boolean', 'locationName' => 'main', ], ], ], 'RouteTableAssociationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RouteTableAssociation', 'locationName' => 'item', ], ], 'RouteTableList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RouteTable', 'locationName' => 'item', ], ], 'RuleAction' => [ 'type' => 'string', 'enum' => [ 'allow', 'deny', ], ], 'RunInstancesMonitoringEnabled' => [ 'type' => 'structure', 'required' => [ 'Enabled', ], 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], ], ], 'RunInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'ImageId', 'MinCount', 'MaxCount', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'ImageId' => [ 'shape' => 'String', ], 'MinCount' => [ 'shape' => 'Integer', ], 'MaxCount' => [ 'shape' => 'Integer', ], 'KeyName' => [ 'shape' => 'String', ], 'SecurityGroups' => [ 'shape' => 'SecurityGroupStringList', 'locationName' => 'SecurityGroup', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdStringList', 'locationName' => 'SecurityGroupId', ], 'UserData' => [ 'shape' => 'String', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'Placement' => [ 'shape' => 'Placement', ], 'KernelId' => [ 'shape' => 'String', ], 'RamdiskId' => [ 'shape' => 'String', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingRequestList', 'locationName' => 'BlockDeviceMapping', ], 'Monitoring' => [ 'shape' => 'RunInstancesMonitoringEnabled', ], 'SubnetId' => [ 'shape' => 'String', ], 'DisableApiTermination' => [ 'shape' => 'Boolean', 'locationName' => 'disableApiTermination', ], 'InstanceInitiatedShutdownBehavior' => [ 'shape' => 'ShutdownBehavior', 'locationName' => 'instanceInitiatedShutdownBehavior', ], 'PrivateIpAddress' => [ 'shape' => 'String', 'locationName' => 'privateIpAddress', ], 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'AdditionalInfo' => [ 'shape' => 'String', 'locationName' => 'additionalInfo', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceSpecificationList', 'locationName' => 'networkInterface', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], ], ], 'RunScheduledInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'ScheduledInstanceId', 'LaunchSpecification', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', ], 'ClientToken' => [ 'shape' => 'String', 'idempotencyToken' => true, ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'ScheduledInstanceId' => [ 'shape' => 'String', ], 'LaunchSpecification' => [ 'shape' => 'ScheduledInstancesLaunchSpecification', ], ], ], 'RunScheduledInstancesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceIdSet' => [ 'shape' => 'InstanceIdSet', 'locationName' => 'instanceIdSet', ], ], ], 'S3Storage' => [ 'type' => 'structure', 'members' => [ 'Bucket' => [ 'shape' => 'String', 'locationName' => 'bucket', ], 'Prefix' => [ 'shape' => 'String', 'locationName' => 'prefix', ], 'AWSAccessKeyId' => [ 'shape' => 'String', ], 'UploadPolicy' => [ 'shape' => 'Blob', 'locationName' => 'uploadPolicy', ], 'UploadPolicySignature' => [ 'shape' => 'String', 'locationName' => 'uploadPolicySignature', ], ], ], 'ScheduledInstance' => [ 'type' => 'structure', 'members' => [ 'ScheduledInstanceId' => [ 'shape' => 'String', 'locationName' => 'scheduledInstanceId', ], 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'NetworkPlatform' => [ 'shape' => 'String', 'locationName' => 'networkPlatform', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'SlotDurationInHours' => [ 'shape' => 'Integer', 'locationName' => 'slotDurationInHours', ], 'Recurrence' => [ 'shape' => 'ScheduledInstanceRecurrence', 'locationName' => 'recurrence', ], 'PreviousSlotEndTime' => [ 'shape' => 'DateTime', 'locationName' => 'previousSlotEndTime', ], 'NextSlotStartTime' => [ 'shape' => 'DateTime', 'locationName' => 'nextSlotStartTime', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'TotalScheduledInstanceHours' => [ 'shape' => 'Integer', 'locationName' => 'totalScheduledInstanceHours', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], 'TermStartDate' => [ 'shape' => 'DateTime', 'locationName' => 'termStartDate', ], 'TermEndDate' => [ 'shape' => 'DateTime', 'locationName' => 'termEndDate', ], 'CreateDate' => [ 'shape' => 'DateTime', 'locationName' => 'createDate', ], ], ], 'ScheduledInstanceAvailability' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'String', 'locationName' => 'instanceType', ], 'Platform' => [ 'shape' => 'String', 'locationName' => 'platform', ], 'NetworkPlatform' => [ 'shape' => 'String', 'locationName' => 'networkPlatform', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'PurchaseToken' => [ 'shape' => 'String', 'locationName' => 'purchaseToken', ], 'SlotDurationInHours' => [ 'shape' => 'Integer', 'locationName' => 'slotDurationInHours', ], 'Recurrence' => [ 'shape' => 'ScheduledInstanceRecurrence', 'locationName' => 'recurrence', ], 'FirstSlotStartTime' => [ 'shape' => 'DateTime', 'locationName' => 'firstSlotStartTime', ], 'HourlyPrice' => [ 'shape' => 'String', 'locationName' => 'hourlyPrice', ], 'TotalScheduledInstanceHours' => [ 'shape' => 'Integer', 'locationName' => 'totalScheduledInstanceHours', ], 'AvailableInstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'availableInstanceCount', ], 'MinTermDurationInDays' => [ 'shape' => 'Integer', 'locationName' => 'minTermDurationInDays', ], 'MaxTermDurationInDays' => [ 'shape' => 'Integer', 'locationName' => 'maxTermDurationInDays', ], ], ], 'ScheduledInstanceAvailabilitySet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstanceAvailability', 'locationName' => 'item', ], ], 'ScheduledInstanceIdRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ScheduledInstanceId', ], ], 'ScheduledInstanceRecurrence' => [ 'type' => 'structure', 'members' => [ 'Frequency' => [ 'shape' => 'String', 'locationName' => 'frequency', ], 'Interval' => [ 'shape' => 'Integer', 'locationName' => 'interval', ], 'OccurrenceDaySet' => [ 'shape' => 'OccurrenceDaySet', 'locationName' => 'occurrenceDaySet', ], 'OccurrenceRelativeToEnd' => [ 'shape' => 'Boolean', 'locationName' => 'occurrenceRelativeToEnd', ], 'OccurrenceUnit' => [ 'shape' => 'String', 'locationName' => 'occurrenceUnit', ], ], ], 'ScheduledInstanceRecurrenceRequest' => [ 'type' => 'structure', 'members' => [ 'Frequency' => [ 'shape' => 'String', ], 'Interval' => [ 'shape' => 'Integer', ], 'OccurrenceDays' => [ 'shape' => 'OccurrenceDayRequestSet', 'locationName' => 'OccurrenceDay', ], 'OccurrenceRelativeToEnd' => [ 'shape' => 'Boolean', ], 'OccurrenceUnit' => [ 'shape' => 'String', ], ], ], 'ScheduledInstanceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstance', 'locationName' => 'item', ], ], 'ScheduledInstancesBlockDeviceMapping' => [ 'type' => 'structure', 'members' => [ 'DeviceName' => [ 'shape' => 'String', ], 'NoDevice' => [ 'shape' => 'String', ], 'VirtualName' => [ 'shape' => 'String', ], 'Ebs' => [ 'shape' => 'ScheduledInstancesEbs', ], ], ], 'ScheduledInstancesBlockDeviceMappingSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstancesBlockDeviceMapping', 'locationName' => 'BlockDeviceMapping', ], ], 'ScheduledInstancesEbs' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', ], 'VolumeSize' => [ 'shape' => 'Integer', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', ], 'VolumeType' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'Integer', ], 'Encrypted' => [ 'shape' => 'Boolean', ], ], ], 'ScheduledInstancesIamInstanceProfile' => [ 'type' => 'structure', 'members' => [ 'Arn' => [ 'shape' => 'String', ], 'Name' => [ 'shape' => 'String', ], ], ], 'ScheduledInstancesLaunchSpecification' => [ 'type' => 'structure', 'required' => [ 'ImageId', ], 'members' => [ 'ImageId' => [ 'shape' => 'String', ], 'KeyName' => [ 'shape' => 'String', ], 'SecurityGroupIds' => [ 'shape' => 'ScheduledInstancesSecurityGroupIdSet', 'locationName' => 'SecurityGroupId', ], 'UserData' => [ 'shape' => 'String', ], 'Placement' => [ 'shape' => 'ScheduledInstancesPlacement', ], 'KernelId' => [ 'shape' => 'String', ], 'InstanceType' => [ 'shape' => 'String', ], 'RamdiskId' => [ 'shape' => 'String', ], 'BlockDeviceMappings' => [ 'shape' => 'ScheduledInstancesBlockDeviceMappingSet', 'locationName' => 'BlockDeviceMapping', ], 'Monitoring' => [ 'shape' => 'ScheduledInstancesMonitoring', ], 'SubnetId' => [ 'shape' => 'String', ], 'NetworkInterfaces' => [ 'shape' => 'ScheduledInstancesNetworkInterfaceSet', 'locationName' => 'NetworkInterface', ], 'IamInstanceProfile' => [ 'shape' => 'ScheduledInstancesIamInstanceProfile', ], 'EbsOptimized' => [ 'shape' => 'Boolean', ], ], ], 'ScheduledInstancesMonitoring' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', ], ], ], 'ScheduledInstancesNetworkInterface' => [ 'type' => 'structure', 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'String', ], 'DeviceIndex' => [ 'shape' => 'Integer', ], 'SubnetId' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'PrivateIpAddress' => [ 'shape' => 'String', ], 'PrivateIpAddressConfigs' => [ 'shape' => 'PrivateIpAddressConfigSet', 'locationName' => 'PrivateIpAddressConfig', ], 'SecondaryPrivateIpAddressCount' => [ 'shape' => 'Integer', ], 'AssociatePublicIpAddress' => [ 'shape' => 'Boolean', ], 'Groups' => [ 'shape' => 'ScheduledInstancesSecurityGroupIdSet', 'locationName' => 'Group', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', ], ], ], 'ScheduledInstancesNetworkInterfaceSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScheduledInstancesNetworkInterface', 'locationName' => 'NetworkInterface', ], ], 'ScheduledInstancesPlacement' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', ], 'GroupName' => [ 'shape' => 'String', ], ], ], 'ScheduledInstancesPrivateIpAddressConfig' => [ 'type' => 'structure', 'members' => [ 'PrivateIpAddress' => [ 'shape' => 'String', ], 'Primary' => [ 'shape' => 'Boolean', ], ], ], 'ScheduledInstancesSecurityGroupIdSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SecurityGroupId', ], ], 'SecurityGroup' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'groupDescription', ], 'IpPermissions' => [ 'shape' => 'IpPermissionList', 'locationName' => 'ipPermissions', ], 'IpPermissionsEgress' => [ 'shape' => 'IpPermissionList', 'locationName' => 'ipPermissionsEgress', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'SecurityGroupIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SecurityGroupId', ], ], 'SecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroup', 'locationName' => 'item', ], ], 'SecurityGroupReference' => [ 'type' => 'structure', 'required' => [ 'GroupId', 'ReferencingVpcId', ], 'members' => [ 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'ReferencingVpcId' => [ 'shape' => 'String', 'locationName' => 'referencingVpcId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'SecurityGroupReferences' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupReference', 'locationName' => 'item', ], ], 'SecurityGroupStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SecurityGroup', ], ], 'ShutdownBehavior' => [ 'type' => 'string', 'enum' => [ 'stop', 'terminate', ], ], 'SlotDateTimeRangeRequest' => [ 'type' => 'structure', 'required' => [ 'EarliestTime', 'LatestTime', ], 'members' => [ 'EarliestTime' => [ 'shape' => 'DateTime', ], 'LatestTime' => [ 'shape' => 'DateTime', ], ], ], 'SlotStartTimeRangeRequest' => [ 'type' => 'structure', 'members' => [ 'EarliestTime' => [ 'shape' => 'DateTime', ], 'LatestTime' => [ 'shape' => 'DateTime', ], ], ], 'Snapshot' => [ 'type' => 'structure', 'members' => [ 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'State' => [ 'shape' => 'SnapshotState', 'locationName' => 'status', ], 'StateMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'StartTime' => [ 'shape' => 'DateTime', 'locationName' => 'startTime', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'VolumeSize' => [ 'shape' => 'Integer', 'locationName' => 'volumeSize', ], 'OwnerAlias' => [ 'shape' => 'String', 'locationName' => 'ownerAlias', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], 'DataEncryptionKeyId' => [ 'shape' => 'String', 'locationName' => 'dataEncryptionKeyId', ], ], ], 'SnapshotAttributeName' => [ 'type' => 'string', 'enum' => [ 'productCodes', 'createVolumePermission', ], ], 'SnapshotDetail' => [ 'type' => 'structure', 'members' => [ 'DiskImageSize' => [ 'shape' => 'Double', 'locationName' => 'diskImageSize', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Format' => [ 'shape' => 'String', 'locationName' => 'format', ], 'Url' => [ 'shape' => 'String', 'locationName' => 'url', ], 'UserBucket' => [ 'shape' => 'UserBucketDetails', 'locationName' => 'userBucket', ], 'DeviceName' => [ 'shape' => 'String', 'locationName' => 'deviceName', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], ], ], 'SnapshotDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SnapshotDetail', 'locationName' => 'item', ], ], 'SnapshotDiskContainer' => [ 'type' => 'structure', 'members' => [ 'Description' => [ 'shape' => 'String', ], 'Format' => [ 'shape' => 'String', ], 'Url' => [ 'shape' => 'String', ], 'UserBucket' => [ 'shape' => 'UserBucket', ], ], ], 'SnapshotIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SnapshotId', ], ], 'SnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Snapshot', 'locationName' => 'item', ], ], 'SnapshotState' => [ 'type' => 'string', 'enum' => [ 'pending', 'completed', 'error', ], ], 'SnapshotTaskDetail' => [ 'type' => 'structure', 'members' => [ 'DiskImageSize' => [ 'shape' => 'Double', 'locationName' => 'diskImageSize', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'Format' => [ 'shape' => 'String', 'locationName' => 'format', ], 'Url' => [ 'shape' => 'String', 'locationName' => 'url', ], 'UserBucket' => [ 'shape' => 'UserBucketDetails', 'locationName' => 'userBucket', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'Progress' => [ 'shape' => 'String', 'locationName' => 'progress', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], ], ], 'SpotDatafeedSubscription' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'Bucket' => [ 'shape' => 'String', 'locationName' => 'bucket', ], 'Prefix' => [ 'shape' => 'String', 'locationName' => 'prefix', ], 'State' => [ 'shape' => 'DatafeedSubscriptionState', 'locationName' => 'state', ], 'Fault' => [ 'shape' => 'SpotInstanceStateFault', 'locationName' => 'fault', ], ], ], 'SpotFleetLaunchSpecification' => [ 'type' => 'structure', 'members' => [ 'ImageId' => [ 'shape' => 'String', 'locationName' => 'imageId', ], 'KeyName' => [ 'shape' => 'String', 'locationName' => 'keyName', ], 'SecurityGroups' => [ 'shape' => 'GroupIdentifierList', 'locationName' => 'groupSet', ], 'UserData' => [ 'shape' => 'String', 'locationName' => 'userData', ], 'AddressingType' => [ 'shape' => 'String', 'locationName' => 'addressingType', ], 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'Placement' => [ 'shape' => 'SpotPlacement', 'locationName' => 'placement', ], 'KernelId' => [ 'shape' => 'String', 'locationName' => 'kernelId', ], 'RamdiskId' => [ 'shape' => 'String', 'locationName' => 'ramdiskId', ], 'BlockDeviceMappings' => [ 'shape' => 'BlockDeviceMappingList', 'locationName' => 'blockDeviceMapping', ], 'Monitoring' => [ 'shape' => 'SpotFleetMonitoring', 'locationName' => 'monitoring', ], 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'NetworkInterfaces' => [ 'shape' => 'InstanceNetworkInterfaceSpecificationList', 'locationName' => 'networkInterfaceSet', ], 'IamInstanceProfile' => [ 'shape' => 'IamInstanceProfileSpecification', 'locationName' => 'iamInstanceProfile', ], 'EbsOptimized' => [ 'shape' => 'Boolean', 'locationName' => 'ebsOptimized', ], 'WeightedCapacity' => [ 'shape' => 'Double', 'locationName' => 'weightedCapacity', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], ], ], 'SpotFleetMonitoring' => [ 'type' => 'structure', 'members' => [ 'Enabled' => [ 'shape' => 'Boolean', 'locationName' => 'enabled', ], ], ], 'SpotFleetRequestConfig' => [ 'type' => 'structure', 'required' => [ 'SpotFleetRequestId', 'SpotFleetRequestState', 'SpotFleetRequestConfig', 'CreateTime', ], 'members' => [ 'SpotFleetRequestId' => [ 'shape' => 'String', 'locationName' => 'spotFleetRequestId', ], 'SpotFleetRequestState' => [ 'shape' => 'BatchState', 'locationName' => 'spotFleetRequestState', ], 'SpotFleetRequestConfig' => [ 'shape' => 'SpotFleetRequestConfigData', 'locationName' => 'spotFleetRequestConfig', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'ActivityStatus' => [ 'shape' => 'ActivityStatus', 'locationName' => 'activityStatus', ], ], ], 'SpotFleetRequestConfigData' => [ 'type' => 'structure', 'required' => [ 'SpotPrice', 'TargetCapacity', 'IamFleetRole', 'LaunchSpecifications', ], 'members' => [ 'ClientToken' => [ 'shape' => 'String', 'locationName' => 'clientToken', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'TargetCapacity' => [ 'shape' => 'Integer', 'locationName' => 'targetCapacity', ], 'ValidFrom' => [ 'shape' => 'DateTime', 'locationName' => 'validFrom', ], 'ValidUntil' => [ 'shape' => 'DateTime', 'locationName' => 'validUntil', ], 'TerminateInstancesWithExpiration' => [ 'shape' => 'Boolean', 'locationName' => 'terminateInstancesWithExpiration', ], 'IamFleetRole' => [ 'shape' => 'String', 'locationName' => 'iamFleetRole', ], 'LaunchSpecifications' => [ 'shape' => 'LaunchSpecsList', 'locationName' => 'launchSpecifications', ], 'ExcessCapacityTerminationPolicy' => [ 'shape' => 'ExcessCapacityTerminationPolicy', 'locationName' => 'excessCapacityTerminationPolicy', ], 'AllocationStrategy' => [ 'shape' => 'AllocationStrategy', 'locationName' => 'allocationStrategy', ], 'FulfilledCapacity' => [ 'shape' => 'Double', 'locationName' => 'fulfilledCapacity', ], 'Type' => [ 'shape' => 'FleetType', 'locationName' => 'type', ], ], ], 'SpotFleetRequestConfigSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotFleetRequestConfig', 'locationName' => 'item', ], ], 'SpotInstanceRequest' => [ 'type' => 'structure', 'members' => [ 'SpotInstanceRequestId' => [ 'shape' => 'String', 'locationName' => 'spotInstanceRequestId', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'Type' => [ 'shape' => 'SpotInstanceType', 'locationName' => 'type', ], 'State' => [ 'shape' => 'SpotInstanceState', 'locationName' => 'state', ], 'Fault' => [ 'shape' => 'SpotInstanceStateFault', 'locationName' => 'fault', ], 'Status' => [ 'shape' => 'SpotInstanceStatus', 'locationName' => 'status', ], 'ValidFrom' => [ 'shape' => 'DateTime', 'locationName' => 'validFrom', ], 'ValidUntil' => [ 'shape' => 'DateTime', 'locationName' => 'validUntil', ], 'LaunchGroup' => [ 'shape' => 'String', 'locationName' => 'launchGroup', ], 'AvailabilityZoneGroup' => [ 'shape' => 'String', 'locationName' => 'availabilityZoneGroup', ], 'LaunchSpecification' => [ 'shape' => 'LaunchSpecification', 'locationName' => 'launchSpecification', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', 'locationName' => 'productDescription', ], 'BlockDurationMinutes' => [ 'shape' => 'Integer', 'locationName' => 'blockDurationMinutes', ], 'ActualBlockHourlyPrice' => [ 'shape' => 'String', 'locationName' => 'actualBlockHourlyPrice', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'LaunchedAvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'launchedAvailabilityZone', ], ], ], 'SpotInstanceRequestIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SpotInstanceRequestId', ], ], 'SpotInstanceRequestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotInstanceRequest', 'locationName' => 'item', ], ], 'SpotInstanceState' => [ 'type' => 'string', 'enum' => [ 'open', 'active', 'closed', 'cancelled', 'failed', ], ], 'SpotInstanceStateFault' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'SpotInstanceStatus' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'UpdateTime' => [ 'shape' => 'DateTime', 'locationName' => 'updateTime', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'SpotInstanceType' => [ 'type' => 'string', 'enum' => [ 'one-time', 'persistent', ], ], 'SpotPlacement' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], ], ], 'SpotPrice' => [ 'type' => 'structure', 'members' => [ 'InstanceType' => [ 'shape' => 'InstanceType', 'locationName' => 'instanceType', ], 'ProductDescription' => [ 'shape' => 'RIProductDescription', 'locationName' => 'productDescription', ], 'SpotPrice' => [ 'shape' => 'String', 'locationName' => 'spotPrice', ], 'Timestamp' => [ 'shape' => 'DateTime', 'locationName' => 'timestamp', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], ], ], 'SpotPriceHistoryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SpotPrice', 'locationName' => 'item', ], ], 'StaleIpPermission' => [ 'type' => 'structure', 'members' => [ 'FromPort' => [ 'shape' => 'Integer', 'locationName' => 'fromPort', ], 'IpProtocol' => [ 'shape' => 'String', 'locationName' => 'ipProtocol', ], 'IpRanges' => [ 'shape' => 'IpRanges', 'locationName' => 'ipRanges', ], 'PrefixListIds' => [ 'shape' => 'PrefixListIdSet', 'locationName' => 'prefixListIds', ], 'ToPort' => [ 'shape' => 'Integer', 'locationName' => 'toPort', ], 'UserIdGroupPairs' => [ 'shape' => 'UserIdGroupPairSet', 'locationName' => 'groups', ], ], ], 'StaleIpPermissionSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'StaleIpPermission', 'locationName' => 'item', ], ], 'StaleSecurityGroup' => [ 'type' => 'structure', 'required' => [ 'GroupId', ], 'members' => [ 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'StaleIpPermissions' => [ 'shape' => 'StaleIpPermissionSet', 'locationName' => 'staleIpPermissions', ], 'StaleIpPermissionsEgress' => [ 'shape' => 'StaleIpPermissionSet', 'locationName' => 'staleIpPermissionsEgress', ], ], ], 'StaleSecurityGroupSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'StaleSecurityGroup', 'locationName' => 'item', ], ], 'StartInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'AdditionalInfo' => [ 'shape' => 'String', 'locationName' => 'additionalInfo', ], 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], ], ], 'StartInstancesResult' => [ 'type' => 'structure', 'members' => [ 'StartingInstances' => [ 'shape' => 'InstanceStateChangeList', 'locationName' => 'instancesSet', ], ], ], 'State' => [ 'type' => 'string', 'enum' => [ 'Pending', 'Available', 'Deleting', 'Deleted', ], ], 'StateReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'Status' => [ 'type' => 'string', 'enum' => [ 'MoveInProgress', 'InVpc', 'InClassic', ], ], 'StatusName' => [ 'type' => 'string', 'enum' => [ 'reachability', ], ], 'StatusType' => [ 'type' => 'string', 'enum' => [ 'passed', 'failed', 'insufficient-data', 'initializing', ], ], 'StopInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], 'Force' => [ 'shape' => 'Boolean', 'locationName' => 'force', ], ], ], 'StopInstancesResult' => [ 'type' => 'structure', 'members' => [ 'StoppingInstances' => [ 'shape' => 'InstanceStateChangeList', 'locationName' => 'instancesSet', ], ], ], 'Storage' => [ 'type' => 'structure', 'members' => [ 'S3' => [ 'shape' => 'S3Storage', ], ], ], 'String' => [ 'type' => 'string', ], 'Subnet' => [ 'type' => 'structure', 'members' => [ 'SubnetId' => [ 'shape' => 'String', 'locationName' => 'subnetId', ], 'State' => [ 'shape' => 'SubnetState', 'locationName' => 'state', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'AvailableIpAddressCount' => [ 'shape' => 'Integer', 'locationName' => 'availableIpAddressCount', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'DefaultForAz' => [ 'shape' => 'Boolean', 'locationName' => 'defaultForAz', ], 'MapPublicIpOnLaunch' => [ 'shape' => 'Boolean', 'locationName' => 'mapPublicIpOnLaunch', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'SubnetIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SubnetId', ], ], 'SubnetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subnet', 'locationName' => 'item', ], ], 'SubnetState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', ], ], 'SummaryStatus' => [ 'type' => 'string', 'enum' => [ 'ok', 'impaired', 'insufficient-data', 'not-applicable', 'initializing', ], ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'TagDescription' => [ 'type' => 'structure', 'members' => [ 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], 'ResourceType' => [ 'shape' => 'ResourceType', 'locationName' => 'resourceType', ], 'Key' => [ 'shape' => 'String', 'locationName' => 'key', ], 'Value' => [ 'shape' => 'String', 'locationName' => 'value', ], ], ], 'TagDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagDescription', 'locationName' => 'item', ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'item', ], ], 'TargetConfiguration' => [ 'type' => 'structure', 'members' => [ 'OfferingId' => [ 'shape' => 'String', 'locationName' => 'offeringId', ], 'InstanceCount' => [ 'shape' => 'Integer', 'locationName' => 'instanceCount', ], ], ], 'TargetConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'OfferingId', ], 'members' => [ 'OfferingId' => [ 'shape' => 'String', ], 'InstanceCount' => [ 'shape' => 'Integer', ], ], ], 'TargetConfigurationRequestSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetConfigurationRequest', 'locationName' => 'TargetConfigurationRequest', ], ], 'TargetReservationValue' => [ 'type' => 'structure', 'members' => [ 'TargetConfiguration' => [ 'shape' => 'TargetConfiguration', 'locationName' => 'targetConfiguration', ], 'ReservationValue' => [ 'shape' => 'ReservationValue', 'locationName' => 'reservationValue', ], ], ], 'TargetReservationValueSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetReservationValue', 'locationName' => 'item', ], ], 'TelemetryStatus' => [ 'type' => 'string', 'enum' => [ 'UP', 'DOWN', ], ], 'Tenancy' => [ 'type' => 'string', 'enum' => [ 'default', 'dedicated', 'host', ], ], 'TerminateInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], ], ], 'TerminateInstancesResult' => [ 'type' => 'structure', 'members' => [ 'TerminatingInstances' => [ 'shape' => 'InstanceStateChangeList', 'locationName' => 'instancesSet', ], ], ], 'TrafficType' => [ 'type' => 'string', 'enum' => [ 'ACCEPT', 'REJECT', 'ALL', ], ], 'UnassignPrivateIpAddressesRequest' => [ 'type' => 'structure', 'required' => [ 'NetworkInterfaceId', 'PrivateIpAddresses', ], 'members' => [ 'NetworkInterfaceId' => [ 'shape' => 'String', 'locationName' => 'networkInterfaceId', ], 'PrivateIpAddresses' => [ 'shape' => 'PrivateIpAddressStringList', 'locationName' => 'privateIpAddress', ], ], ], 'UnmonitorInstancesRequest' => [ 'type' => 'structure', 'required' => [ 'InstanceIds', ], 'members' => [ 'DryRun' => [ 'shape' => 'Boolean', 'locationName' => 'dryRun', ], 'InstanceIds' => [ 'shape' => 'InstanceIdStringList', 'locationName' => 'InstanceId', ], ], ], 'UnmonitorInstancesResult' => [ 'type' => 'structure', 'members' => [ 'InstanceMonitorings' => [ 'shape' => 'InstanceMonitoringList', 'locationName' => 'instancesSet', ], ], ], 'UnsuccessfulItem' => [ 'type' => 'structure', 'required' => [ 'Error', ], 'members' => [ 'Error' => [ 'shape' => 'UnsuccessfulItemError', 'locationName' => 'error', ], 'ResourceId' => [ 'shape' => 'String', 'locationName' => 'resourceId', ], ], ], 'UnsuccessfulItemError' => [ 'type' => 'structure', 'required' => [ 'Code', 'Message', ], 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'UnsuccessfulItemList' => [ 'type' => 'list', 'member' => [ 'shape' => 'UnsuccessfulItem', 'locationName' => 'item', ], ], 'UnsuccessfulItemSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'UnsuccessfulItem', 'locationName' => 'item', ], ], 'UserBucket' => [ 'type' => 'structure', 'members' => [ 'S3Bucket' => [ 'shape' => 'String', ], 'S3Key' => [ 'shape' => 'String', ], ], ], 'UserBucketDetails' => [ 'type' => 'structure', 'members' => [ 'S3Bucket' => [ 'shape' => 'String', 'locationName' => 's3Bucket', ], 'S3Key' => [ 'shape' => 'String', 'locationName' => 's3Key', ], ], ], 'UserData' => [ 'type' => 'structure', 'members' => [ 'Data' => [ 'shape' => 'String', 'locationName' => 'data', ], ], ], 'UserGroupStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'UserGroup', ], ], 'UserIdGroupPair' => [ 'type' => 'structure', 'members' => [ 'UserId' => [ 'shape' => 'String', 'locationName' => 'userId', ], 'GroupName' => [ 'shape' => 'String', 'locationName' => 'groupName', ], 'GroupId' => [ 'shape' => 'String', 'locationName' => 'groupId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], 'PeeringStatus' => [ 'shape' => 'String', 'locationName' => 'peeringStatus', ], ], ], 'UserIdGroupPairList' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserIdGroupPair', 'locationName' => 'item', ], ], 'UserIdGroupPairSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'UserIdGroupPair', 'locationName' => 'item', ], ], 'UserIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'UserId', ], ], 'ValueStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'item', ], ], 'VgwTelemetry' => [ 'type' => 'structure', 'members' => [ 'OutsideIpAddress' => [ 'shape' => 'String', 'locationName' => 'outsideIpAddress', ], 'Status' => [ 'shape' => 'TelemetryStatus', 'locationName' => 'status', ], 'LastStatusChange' => [ 'shape' => 'DateTime', 'locationName' => 'lastStatusChange', ], 'StatusMessage' => [ 'shape' => 'String', 'locationName' => 'statusMessage', ], 'AcceptedRouteCount' => [ 'shape' => 'Integer', 'locationName' => 'acceptedRouteCount', ], ], ], 'VgwTelemetryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VgwTelemetry', 'locationName' => 'item', ], ], 'VirtualizationType' => [ 'type' => 'string', 'enum' => [ 'hvm', 'paravirtual', ], ], 'Volume' => [ 'type' => 'structure', 'members' => [ 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'Size' => [ 'shape' => 'Integer', 'locationName' => 'size', ], 'SnapshotId' => [ 'shape' => 'String', 'locationName' => 'snapshotId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'State' => [ 'shape' => 'VolumeState', 'locationName' => 'status', ], 'CreateTime' => [ 'shape' => 'DateTime', 'locationName' => 'createTime', ], 'Attachments' => [ 'shape' => 'VolumeAttachmentList', 'locationName' => 'attachmentSet', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VolumeType' => [ 'shape' => 'VolumeType', 'locationName' => 'volumeType', ], 'Iops' => [ 'shape' => 'Integer', 'locationName' => 'iops', ], 'Encrypted' => [ 'shape' => 'Boolean', 'locationName' => 'encrypted', ], 'KmsKeyId' => [ 'shape' => 'String', 'locationName' => 'kmsKeyId', ], ], ], 'VolumeAttachment' => [ 'type' => 'structure', 'members' => [ 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'InstanceId' => [ 'shape' => 'String', 'locationName' => 'instanceId', ], 'Device' => [ 'shape' => 'String', 'locationName' => 'device', ], 'State' => [ 'shape' => 'VolumeAttachmentState', 'locationName' => 'status', ], 'AttachTime' => [ 'shape' => 'DateTime', 'locationName' => 'attachTime', ], 'DeleteOnTermination' => [ 'shape' => 'Boolean', 'locationName' => 'deleteOnTermination', ], ], ], 'VolumeAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeAttachment', 'locationName' => 'item', ], ], 'VolumeAttachmentState' => [ 'type' => 'string', 'enum' => [ 'attaching', 'attached', 'detaching', 'detached', ], ], 'VolumeAttributeName' => [ 'type' => 'string', 'enum' => [ 'autoEnableIO', 'productCodes', ], ], 'VolumeDetail' => [ 'type' => 'structure', 'required' => [ 'Size', ], 'members' => [ 'Size' => [ 'shape' => 'Long', 'locationName' => 'size', ], ], ], 'VolumeIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'VolumeId', ], ], 'VolumeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Volume', 'locationName' => 'item', ], ], 'VolumeState' => [ 'type' => 'string', 'enum' => [ 'creating', 'available', 'in-use', 'deleting', 'deleted', 'error', ], ], 'VolumeStatusAction' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'String', 'locationName' => 'code', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'EventType' => [ 'shape' => 'String', 'locationName' => 'eventType', ], 'EventId' => [ 'shape' => 'String', 'locationName' => 'eventId', ], ], ], 'VolumeStatusActionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusAction', 'locationName' => 'item', ], ], 'VolumeStatusDetails' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'VolumeStatusName', 'locationName' => 'name', ], 'Status' => [ 'shape' => 'String', 'locationName' => 'status', ], ], ], 'VolumeStatusDetailsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusDetails', 'locationName' => 'item', ], ], 'VolumeStatusEvent' => [ 'type' => 'structure', 'members' => [ 'EventType' => [ 'shape' => 'String', 'locationName' => 'eventType', ], 'Description' => [ 'shape' => 'String', 'locationName' => 'description', ], 'NotBefore' => [ 'shape' => 'DateTime', 'locationName' => 'notBefore', ], 'NotAfter' => [ 'shape' => 'DateTime', 'locationName' => 'notAfter', ], 'EventId' => [ 'shape' => 'String', 'locationName' => 'eventId', ], ], ], 'VolumeStatusEventsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusEvent', 'locationName' => 'item', ], ], 'VolumeStatusInfo' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'VolumeStatusInfoStatus', 'locationName' => 'status', ], 'Details' => [ 'shape' => 'VolumeStatusDetailsList', 'locationName' => 'details', ], ], ], 'VolumeStatusInfoStatus' => [ 'type' => 'string', 'enum' => [ 'ok', 'impaired', 'insufficient-data', ], ], 'VolumeStatusItem' => [ 'type' => 'structure', 'members' => [ 'VolumeId' => [ 'shape' => 'String', 'locationName' => 'volumeId', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'VolumeStatus' => [ 'shape' => 'VolumeStatusInfo', 'locationName' => 'volumeStatus', ], 'Events' => [ 'shape' => 'VolumeStatusEventsList', 'locationName' => 'eventsSet', ], 'Actions' => [ 'shape' => 'VolumeStatusActionsList', 'locationName' => 'actionsSet', ], ], ], 'VolumeStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VolumeStatusItem', 'locationName' => 'item', ], ], 'VolumeStatusName' => [ 'type' => 'string', 'enum' => [ 'io-enabled', 'io-performance', ], ], 'VolumeType' => [ 'type' => 'string', 'enum' => [ 'standard', 'io1', 'gp2', 'sc1', 'st1', ], ], 'Vpc' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'State' => [ 'shape' => 'VpcState', 'locationName' => 'state', ], 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'DhcpOptionsId' => [ 'shape' => 'String', 'locationName' => 'dhcpOptionsId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'InstanceTenancy' => [ 'shape' => 'Tenancy', 'locationName' => 'instanceTenancy', ], 'IsDefault' => [ 'shape' => 'Boolean', 'locationName' => 'isDefault', ], ], ], 'VpcAttachment' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'State' => [ 'shape' => 'AttachmentStatus', 'locationName' => 'state', ], ], ], 'VpcAttachmentList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcAttachment', 'locationName' => 'item', ], ], 'VpcAttributeName' => [ 'type' => 'string', 'enum' => [ 'enableDnsSupport', 'enableDnsHostnames', ], ], 'VpcClassicLink' => [ 'type' => 'structure', 'members' => [ 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'ClassicLinkEnabled' => [ 'shape' => 'Boolean', 'locationName' => 'classicLinkEnabled', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'VpcClassicLinkIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'VpcId', ], ], 'VpcClassicLinkList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcClassicLink', 'locationName' => 'item', ], ], 'VpcEndpoint' => [ 'type' => 'structure', 'members' => [ 'VpcEndpointId' => [ 'shape' => 'String', 'locationName' => 'vpcEndpointId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'ServiceName' => [ 'shape' => 'String', 'locationName' => 'serviceName', ], 'State' => [ 'shape' => 'State', 'locationName' => 'state', ], 'PolicyDocument' => [ 'shape' => 'String', 'locationName' => 'policyDocument', ], 'RouteTableIds' => [ 'shape' => 'ValueStringList', 'locationName' => 'routeTableIdSet', ], 'CreationTimestamp' => [ 'shape' => 'DateTime', 'locationName' => 'creationTimestamp', ], ], ], 'VpcEndpointSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcEndpoint', 'locationName' => 'item', ], ], 'VpcIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'VpcId', ], ], 'VpcList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Vpc', 'locationName' => 'item', ], ], 'VpcPeeringConnection' => [ 'type' => 'structure', 'members' => [ 'AccepterVpcInfo' => [ 'shape' => 'VpcPeeringConnectionVpcInfo', 'locationName' => 'accepterVpcInfo', ], 'ExpirationTime' => [ 'shape' => 'DateTime', 'locationName' => 'expirationTime', ], 'RequesterVpcInfo' => [ 'shape' => 'VpcPeeringConnectionVpcInfo', 'locationName' => 'requesterVpcInfo', ], 'Status' => [ 'shape' => 'VpcPeeringConnectionStateReason', 'locationName' => 'status', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VpcPeeringConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpcPeeringConnectionId', ], ], ], 'VpcPeeringConnectionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcPeeringConnection', 'locationName' => 'item', ], ], 'VpcPeeringConnectionOptionsDescription' => [ 'type' => 'structure', 'members' => [ 'AllowEgressFromLocalClassicLinkToRemoteVpc' => [ 'shape' => 'Boolean', 'locationName' => 'allowEgressFromLocalClassicLinkToRemoteVpc', ], 'AllowEgressFromLocalVpcToRemoteClassicLink' => [ 'shape' => 'Boolean', 'locationName' => 'allowEgressFromLocalVpcToRemoteClassicLink', ], 'AllowDnsResolutionFromRemoteVpc' => [ 'shape' => 'Boolean', 'locationName' => 'allowDnsResolutionFromRemoteVpc', ], ], ], 'VpcPeeringConnectionStateReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'VpcPeeringConnectionStateReasonCode', 'locationName' => 'code', ], 'Message' => [ 'shape' => 'String', 'locationName' => 'message', ], ], ], 'VpcPeeringConnectionStateReasonCode' => [ 'type' => 'string', 'enum' => [ 'initiating-request', 'pending-acceptance', 'active', 'deleted', 'rejected', 'failed', 'expired', 'provisioning', 'deleting', ], ], 'VpcPeeringConnectionVpcInfo' => [ 'type' => 'structure', 'members' => [ 'CidrBlock' => [ 'shape' => 'String', 'locationName' => 'cidrBlock', ], 'OwnerId' => [ 'shape' => 'String', 'locationName' => 'ownerId', ], 'VpcId' => [ 'shape' => 'String', 'locationName' => 'vpcId', ], 'PeeringOptions' => [ 'shape' => 'VpcPeeringConnectionOptionsDescription', 'locationName' => 'peeringOptions', ], ], ], 'VpcState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', ], ], 'VpnConnection' => [ 'type' => 'structure', 'members' => [ 'VpnConnectionId' => [ 'shape' => 'String', 'locationName' => 'vpnConnectionId', ], 'State' => [ 'shape' => 'VpnState', 'locationName' => 'state', ], 'CustomerGatewayConfiguration' => [ 'shape' => 'String', 'locationName' => 'customerGatewayConfiguration', ], 'Type' => [ 'shape' => 'GatewayType', 'locationName' => 'type', ], 'CustomerGatewayId' => [ 'shape' => 'String', 'locationName' => 'customerGatewayId', ], 'VpnGatewayId' => [ 'shape' => 'String', 'locationName' => 'vpnGatewayId', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], 'VgwTelemetry' => [ 'shape' => 'VgwTelemetryList', 'locationName' => 'vgwTelemetry', ], 'Options' => [ 'shape' => 'VpnConnectionOptions', 'locationName' => 'options', ], 'Routes' => [ 'shape' => 'VpnStaticRouteList', 'locationName' => 'routes', ], ], ], 'VpnConnectionIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'VpnConnectionId', ], ], 'VpnConnectionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnConnection', 'locationName' => 'item', ], ], 'VpnConnectionOptions' => [ 'type' => 'structure', 'members' => [ 'StaticRoutesOnly' => [ 'shape' => 'Boolean', 'locationName' => 'staticRoutesOnly', ], ], ], 'VpnConnectionOptionsSpecification' => [ 'type' => 'structure', 'members' => [ 'StaticRoutesOnly' => [ 'shape' => 'Boolean', 'locationName' => 'staticRoutesOnly', ], ], ], 'VpnGateway' => [ 'type' => 'structure', 'members' => [ 'VpnGatewayId' => [ 'shape' => 'String', 'locationName' => 'vpnGatewayId', ], 'State' => [ 'shape' => 'VpnState', 'locationName' => 'state', ], 'Type' => [ 'shape' => 'GatewayType', 'locationName' => 'type', ], 'AvailabilityZone' => [ 'shape' => 'String', 'locationName' => 'availabilityZone', ], 'VpcAttachments' => [ 'shape' => 'VpcAttachmentList', 'locationName' => 'attachments', ], 'Tags' => [ 'shape' => 'TagList', 'locationName' => 'tagSet', ], ], ], 'VpnGatewayIdStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'VpnGatewayId', ], ], 'VpnGatewayList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnGateway', 'locationName' => 'item', ], ], 'VpnState' => [ 'type' => 'string', 'enum' => [ 'pending', 'available', 'deleting', 'deleted', ], ], 'VpnStaticRoute' => [ 'type' => 'structure', 'members' => [ 'DestinationCidrBlock' => [ 'shape' => 'String', 'locationName' => 'destinationCidrBlock', ], 'Source' => [ 'shape' => 'VpnStaticRouteSource', 'locationName' => 'source', ], 'State' => [ 'shape' => 'VpnState', 'locationName' => 'state', ], ], ], 'VpnStaticRouteList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpnStaticRoute', 'locationName' => 'item', ], ], 'VpnStaticRouteSource' => [ 'type' => 'string', 'enum' => [ 'Static', ], ], 'ZoneNameStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ZoneName', ], ], 'scope' => [ 'type' => 'string', 'enum' => [ 'Availability Zone', 'Region', ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/paginators-1.json.php new file mode 100644 index 000000000..af6864d3e --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/paginators-1.json.php @@ -0,0 +1,3 @@ + [ 'DescribeAccountAttributes' => [ 'result_key' => 'AccountAttributes', ], 'DescribeAddresses' => [ 'result_key' => 'Addresses', ], 'DescribeAvailabilityZones' => [ 'result_key' => 'AvailabilityZones', ], 'DescribeBundleTasks' => [ 'result_key' => 'BundleTasks', ], 'DescribeConversionTasks' => [ 'result_key' => 'ConversionTasks', ], 'DescribeCustomerGateways' => [ 'result_key' => 'CustomerGateways', ], 'DescribeDhcpOptions' => [ 'result_key' => 'DhcpOptions', ], 'DescribeExportTasks' => [ 'result_key' => 'ExportTasks', ], 'DescribeImages' => [ 'result_key' => 'Images', ], 'DescribeInstanceStatus' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'InstanceStatuses', ], 'DescribeInstances' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Reservations', ], 'DescribeInternetGateways' => [ 'result_key' => 'InternetGateways', ], 'DescribeKeyPairs' => [ 'result_key' => 'KeyPairs', ], 'DescribeNetworkAcls' => [ 'result_key' => 'NetworkAcls', ], 'DescribeNetworkInterfaces' => [ 'result_key' => 'NetworkInterfaces', ], 'DescribePlacementGroups' => [ 'result_key' => 'PlacementGroups', ], 'DescribeRegions' => [ 'result_key' => 'Regions', ], 'DescribeReservedInstances' => [ 'result_key' => 'ReservedInstances', ], 'DescribeReservedInstancesListings' => [ 'result_key' => 'ReservedInstancesListings', ], 'DescribeReservedInstancesOfferings' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'ReservedInstancesOfferings', ], 'DescribeReservedInstancesModifications' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'result_key' => 'ReservedInstancesModifications', ], 'DescribeRouteTables' => [ 'result_key' => 'RouteTables', ], 'DescribeSecurityGroups' => [ 'result_key' => 'SecurityGroups', ], 'DescribeSnapshots' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Snapshots', ], 'DescribeSpotInstanceRequests' => [ 'result_key' => 'SpotInstanceRequests', ], 'DescribeSpotFleetRequests' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'SpotFleetRequestConfigs', ], 'DescribeSpotPriceHistory' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'SpotPriceHistory', ], 'DescribeSubnets' => [ 'result_key' => 'Subnets', ], 'DescribeTags' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Tags', ], 'DescribeVolumeStatus' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'VolumeStatuses', ], 'DescribeVolumes' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Volumes', ], 'DescribeVpcs' => [ 'result_key' => 'Vpcs', ], 'DescribeVpcPeeringConnections' => [ 'result_key' => 'VpcPeeringConnections', ], 'DescribeVpnConnections' => [ 'result_key' => 'VpnConnections', ], 'DescribeVpnGateways' => [ 'result_key' => 'VpnGateways', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/waiters-1.json.php new file mode 100644 index 000000000..392005f89 --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/waiters-1.json.php @@ -0,0 +1,3 @@ + [ '__default__' => [ 'interval' => 15, 'max_attempts' => 40, 'acceptor_type' => 'output', ], '__InstanceState' => [ 'operation' => 'DescribeInstances', 'acceptor_path' => 'Reservations[].Instances[].State.Name', ], '__InstanceStatus' => [ 'operation' => 'DescribeInstanceStatus', 'success_value' => 'ok', ], 'SystemStatusOk' => [ 'extends' => '__InstanceStatus', 'acceptor_path' => 'InstanceStatuses[].SystemStatus.Status', ], 'InstanceStatusOk' => [ 'extends' => '__InstanceStatus', 'acceptor_path' => 'InstanceStatuses[].InstanceStatus.Status', ], 'ImageAvailable' => [ 'operation' => 'DescribeImages', 'acceptor_path' => 'Images[].State', 'success_value' => 'available', 'failure_value' => [ 'failed', ], ], 'InstanceRunning' => [ 'extends' => '__InstanceState', 'success_value' => 'running', 'failure_value' => [ 'shutting-down', 'terminated', 'stopping', ], ], 'InstanceStopped' => [ 'extends' => '__InstanceState', 'success_value' => 'stopped', 'failure_value' => [ 'pending', 'terminated', ], ], 'InstanceTerminated' => [ 'extends' => '__InstanceState', 'success_value' => 'terminated', 'failure_value' => [ 'pending', 'stopping', ], ], '__ExportTaskState' => [ 'operation' => 'DescribeExportTasks', 'acceptor_path' => 'ExportTasks[].State', ], 'ExportTaskCompleted' => [ 'extends' => '__ExportTaskState', 'success_value' => 'completed', ], 'ExportTaskCancelled' => [ 'extends' => '__ExportTaskState', 'success_value' => 'cancelled', ], 'SnapshotCompleted' => [ 'operation' => 'DescribeSnapshots', 'success_path' => 'Snapshots[].State', 'success_value' => 'completed', ], 'SubnetAvailable' => [ 'operation' => 'DescribeSubnets', 'success_path' => 'Subnets[].State', 'success_value' => 'available', ], '__VolumeStatus' => [ 'operation' => 'DescribeVolumes', 'acceptor_path' => 'Volumes[].State', ], 'VolumeAvailable' => [ 'extends' => '__VolumeStatus', 'success_value' => 'available', 'failure_value' => [ 'deleted', ], ], 'VolumeInUse' => [ 'extends' => '__VolumeStatus', 'success_value' => 'in-use', 'failure_value' => [ 'deleted', ], ], 'VolumeDeleted' => [ 'extends' => '__VolumeStatus', 'success_type' => 'error', 'success_value' => 'InvalidVolume.NotFound', ], 'VpcAvailable' => [ 'operation' => 'DescribeVpcs', 'success_path' => 'Vpcs[].State', 'success_value' => 'available', ], '__VpnConnectionState' => [ 'operation' => 'DescribeVpnConnections', 'acceptor_path' => 'VpnConnections[].State', ], 'VpnConnectionAvailable' => [ 'extends' => '__VpnConnectionState', 'success_value' => 'available', 'failure_value' => [ 'deleting', 'deleted', ], ], 'VpnConnectionDeleted' => [ 'extends' => '__VpnConnectionState', 'success_value' => 'deleted', 'failure_value' => [ 'pending', ], ], 'BundleTaskComplete' => [ 'operation' => 'DescribeBundleTasks', 'acceptor_path' => 'BundleTasks[].State', 'success_value' => 'complete', 'failure_value' => [ 'failed', ], ], '__ConversionTaskState' => [ 'operation' => 'DescribeConversionTasks', 'acceptor_path' => 'ConversionTasks[].State', ], 'ConversionTaskCompleted' => [ 'extends' => '__ConversionTaskState', 'success_value' => 'completed', 'failure_value' => [ 'cancelled', 'cancelling', ], ], 'ConversionTaskCancelled' => [ 'extends' => '__ConversionTaskState', 'success_value' => 'cancelled', ], '__CustomerGatewayState' => [ 'operation' => 'DescribeCustomerGateways', 'acceptor_path' => 'CustomerGateways[].State', ], 'CustomerGatewayAvailable' => [ 'extends' => '__CustomerGatewayState', 'success_value' => 'available', 'failure_value' => [ 'deleted', 'deleting', ], ], 'ConversionTaskDeleted' => [ 'extends' => '__CustomerGatewayState', 'success_value' => 'deleted', ], '__SpotInstanceRequestState' => [ 'operation' => 'DescribeSpotInstanceRequests', 'acceptor_path' => 'SpotInstanceRequests[].Status.Code', ], 'SpotInstanceRequestFulfilled' => [ 'extends' => '__SpotInstanceRequestState', 'success_value' => 'fulfilled', 'failure_value' => [ 'schedule-expired', 'canceled-before-fulfillment', 'bad-parameters', 'system-error', ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/waiters-2.json.php new file mode 100644 index 000000000..d1f9116a0 --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/waiters-2.json.php @@ -0,0 +1,3 @@ + 2, 'waiters' => [ 'InstanceExists' => [ 'delay' => 5, 'maxAttempts' => 40, 'operation' => 'DescribeInstances', 'acceptors' => [ [ 'matcher' => 'path', 'expected' => true, 'argument' => 'length(Reservations[]) > `0`', 'state' => 'success', ], [ 'matcher' => 'error', 'expected' => 'InvalidInstanceID.NotFound', 'state' => 'retry', ], ], ], 'BundleTaskComplete' => [ 'delay' => 15, 'operation' => 'DescribeBundleTasks', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'complete', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'BundleTasks[].State', ], [ 'expected' => 'failed', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'BundleTasks[].State', ], ], ], 'ConversionTaskCancelled' => [ 'delay' => 15, 'operation' => 'DescribeConversionTasks', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'cancelled', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'ConversionTasks[].State', ], ], ], 'ConversionTaskCompleted' => [ 'delay' => 15, 'operation' => 'DescribeConversionTasks', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'completed', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'ConversionTasks[].State', ], [ 'expected' => 'cancelled', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'ConversionTasks[].State', ], [ 'expected' => 'cancelling', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'ConversionTasks[].State', ], ], ], 'ConversionTaskDeleted' => [ 'delay' => 15, 'operation' => 'DescribeConversionTasks', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'deleted', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'ConversionTasks[].State', ], ], ], 'CustomerGatewayAvailable' => [ 'delay' => 15, 'operation' => 'DescribeCustomerGateways', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'available', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'CustomerGateways[].State', ], [ 'expected' => 'deleted', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'CustomerGateways[].State', ], [ 'expected' => 'deleting', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'CustomerGateways[].State', ], ], ], 'ExportTaskCancelled' => [ 'delay' => 15, 'operation' => 'DescribeExportTasks', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'cancelled', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'ExportTasks[].State', ], ], ], 'ExportTaskCompleted' => [ 'delay' => 15, 'operation' => 'DescribeExportTasks', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'completed', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'ExportTasks[].State', ], ], ], 'ImageExists' => [ 'operation' => 'DescribeImages', 'maxAttempts' => 40, 'delay' => 15, 'acceptors' => [ [ 'matcher' => 'path', 'expected' => true, 'argument' => 'length(Images[]) > `0`', 'state' => 'success', ], [ 'matcher' => 'error', 'expected' => 'InvalidAMIID.NotFound', 'state' => 'retry', ], ], ], 'ImageAvailable' => [ 'operation' => 'DescribeImages', 'maxAttempts' => 40, 'delay' => 15, 'acceptors' => [ [ 'state' => 'success', 'matcher' => 'pathAll', 'argument' => 'Images[].State', 'expected' => 'available', ], [ 'state' => 'failure', 'matcher' => 'pathAny', 'argument' => 'Images[].State', 'expected' => 'failed', ], ], ], 'InstanceRunning' => [ 'delay' => 15, 'operation' => 'DescribeInstances', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'running', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'Reservations[].Instances[].State.Name', ], [ 'expected' => 'shutting-down', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Reservations[].Instances[].State.Name', ], [ 'expected' => 'terminated', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Reservations[].Instances[].State.Name', ], [ 'expected' => 'stopping', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Reservations[].Instances[].State.Name', ], [ 'matcher' => 'error', 'expected' => 'InvalidInstanceID.NotFound', 'state' => 'retry', ], ], ], 'InstanceStatusOk' => [ 'operation' => 'DescribeInstanceStatus', 'maxAttempts' => 40, 'delay' => 15, 'acceptors' => [ [ 'state' => 'success', 'matcher' => 'pathAll', 'argument' => 'InstanceStatuses[].InstanceStatus.Status', 'expected' => 'ok', ], [ 'matcher' => 'error', 'expected' => 'InvalidInstanceID.NotFound', 'state' => 'retry', ], ], ], 'InstanceStopped' => [ 'delay' => 15, 'operation' => 'DescribeInstances', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'stopped', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'Reservations[].Instances[].State.Name', ], [ 'expected' => 'pending', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Reservations[].Instances[].State.Name', ], [ 'expected' => 'terminated', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Reservations[].Instances[].State.Name', ], ], ], 'InstanceTerminated' => [ 'delay' => 15, 'operation' => 'DescribeInstances', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'terminated', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'Reservations[].Instances[].State.Name', ], [ 'expected' => 'pending', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Reservations[].Instances[].State.Name', ], [ 'expected' => 'stopping', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Reservations[].Instances[].State.Name', ], ], ], 'KeyPairExists' => [ 'operation' => 'DescribeKeyPairs', 'delay' => 5, 'maxAttempts' => 6, 'acceptors' => [ [ 'expected' => true, 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'length(KeyPairs[].KeyName) > `0`', ], [ 'expected' => 'InvalidKeyPair.NotFound', 'matcher' => 'error', 'state' => 'retry', ], ], ], 'NatGatewayAvailable' => [ 'operation' => 'DescribeNatGateways', 'delay' => 15, 'maxAttempts' => 40, 'acceptors' => [ [ 'state' => 'success', 'matcher' => 'pathAll', 'argument' => 'NatGateways[].State', 'expected' => 'available', ], [ 'state' => 'failure', 'matcher' => 'pathAny', 'argument' => 'NatGateways[].State', 'expected' => 'failed', ], [ 'state' => 'failure', 'matcher' => 'pathAny', 'argument' => 'NatGateways[].State', 'expected' => 'deleting', ], [ 'state' => 'failure', 'matcher' => 'pathAny', 'argument' => 'NatGateways[].State', 'expected' => 'deleted', ], [ 'state' => 'retry', 'matcher' => 'error', 'expected' => 'NatGatewayNotFound', ], ], ], 'NetworkInterfaceAvailable' => [ 'operation' => 'DescribeNetworkInterfaces', 'delay' => 20, 'maxAttempts' => 10, 'acceptors' => [ [ 'expected' => 'available', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'NetworkInterfaces[].Status', ], [ 'expected' => 'InvalidNetworkInterfaceID.NotFound', 'matcher' => 'error', 'state' => 'failure', ], ], ], 'PasswordDataAvailable' => [ 'operation' => 'GetPasswordData', 'maxAttempts' => 40, 'delay' => 15, 'acceptors' => [ [ 'state' => 'success', 'matcher' => 'path', 'argument' => 'length(PasswordData) > `0`', 'expected' => true, ], ], ], 'SnapshotCompleted' => [ 'delay' => 15, 'operation' => 'DescribeSnapshots', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'completed', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'Snapshots[].State', ], ], ], 'SpotInstanceRequestFulfilled' => [ 'operation' => 'DescribeSpotInstanceRequests', 'maxAttempts' => 40, 'delay' => 15, 'acceptors' => [ [ 'state' => 'success', 'matcher' => 'pathAll', 'argument' => 'SpotInstanceRequests[].Status.Code', 'expected' => 'fulfilled', ], [ 'state' => 'failure', 'matcher' => 'pathAny', 'argument' => 'SpotInstanceRequests[].Status.Code', 'expected' => 'schedule-expired', ], [ 'state' => 'failure', 'matcher' => 'pathAny', 'argument' => 'SpotInstanceRequests[].Status.Code', 'expected' => 'canceled-before-fulfillment', ], [ 'state' => 'failure', 'matcher' => 'pathAny', 'argument' => 'SpotInstanceRequests[].Status.Code', 'expected' => 'bad-parameters', ], [ 'state' => 'failure', 'matcher' => 'pathAny', 'argument' => 'SpotInstanceRequests[].Status.Code', 'expected' => 'system-error', ], ], ], 'SubnetAvailable' => [ 'delay' => 15, 'operation' => 'DescribeSubnets', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'available', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'Subnets[].State', ], ], ], 'SystemStatusOk' => [ 'operation' => 'DescribeInstanceStatus', 'maxAttempts' => 40, 'delay' => 15, 'acceptors' => [ [ 'state' => 'success', 'matcher' => 'pathAll', 'argument' => 'InstanceStatuses[].SystemStatus.Status', 'expected' => 'ok', ], ], ], 'VolumeAvailable' => [ 'delay' => 15, 'operation' => 'DescribeVolumes', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'available', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'Volumes[].State', ], [ 'expected' => 'deleted', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Volumes[].State', ], ], ], 'VolumeDeleted' => [ 'delay' => 15, 'operation' => 'DescribeVolumes', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'deleted', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'Volumes[].State', ], [ 'matcher' => 'error', 'expected' => 'InvalidVolume.NotFound', 'state' => 'success', ], ], ], 'VolumeInUse' => [ 'delay' => 15, 'operation' => 'DescribeVolumes', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'in-use', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'Volumes[].State', ], [ 'expected' => 'deleted', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'Volumes[].State', ], ], ], 'VpcAvailable' => [ 'delay' => 15, 'operation' => 'DescribeVpcs', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'available', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'Vpcs[].State', ], ], ], 'VpcExists' => [ 'operation' => 'DescribeVpcs', 'delay' => 1, 'maxAttempts' => 5, 'acceptors' => [ [ 'matcher' => 'status', 'expected' => 200, 'state' => 'success', ], [ 'matcher' => 'error', 'expected' => 'InvalidVpcID.NotFound', 'state' => 'retry', ], ], ], 'VpnConnectionAvailable' => [ 'delay' => 15, 'operation' => 'DescribeVpnConnections', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'available', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'VpnConnections[].State', ], [ 'expected' => 'deleting', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'VpnConnections[].State', ], [ 'expected' => 'deleted', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'VpnConnections[].State', ], ], ], 'VpnConnectionDeleted' => [ 'delay' => 15, 'operation' => 'DescribeVpnConnections', 'maxAttempts' => 40, 'acceptors' => [ [ 'expected' => 'deleted', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'VpnConnections[].State', ], [ 'expected' => 'pending', 'matcher' => 'pathAny', 'state' => 'failure', 'argument' => 'VpnConnections[].State', ], ], ], 'VpcPeeringConnectionExists' => [ 'delay' => 15, 'operation' => 'DescribeVpcPeeringConnections', 'maxAttempts' => 40, 'acceptors' => [ [ 'matcher' => 'status', 'expected' => 200, 'state' => 'success', ], [ 'matcher' => 'error', 'expected' => 'InvalidVpcPeeringConnectionID.NotFound', 'state' => 'retry', ], ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/api-2.json.php index f21485265..3bf87dd20 100644 --- a/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2015-09-21', 'endpointPrefix' => 'ecr', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'Amazon ECR', 'serviceFullName' => 'Amazon EC2 Container Registry', 'signatureVersion' => 'v4', 'targetPrefix' => 'AmazonEC2ContainerRegistry_V20150921', ], 'operations' => [ 'BatchCheckLayerAvailability' => [ 'name' => 'BatchCheckLayerAvailability', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchCheckLayerAvailabilityRequest', ], 'output' => [ 'shape' => 'BatchCheckLayerAvailabilityResponse', ], 'errors' => [ [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ServerException', ], ], ], 'BatchDeleteImage' => [ 'name' => 'BatchDeleteImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchDeleteImageRequest', ], 'output' => [ 'shape' => 'BatchDeleteImageResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'BatchGetImage' => [ 'name' => 'BatchGetImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetImageRequest', ], 'output' => [ 'shape' => 'BatchGetImageResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'CompleteLayerUpload' => [ 'name' => 'CompleteLayerUpload', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CompleteLayerUploadRequest', ], 'output' => [ 'shape' => 'CompleteLayerUploadResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'UploadNotFoundException', ], [ 'shape' => 'InvalidLayerException', ], [ 'shape' => 'LayerPartTooSmallException', ], [ 'shape' => 'LayerAlreadyExistsException', ], [ 'shape' => 'EmptyUploadException', ], ], ], 'CreateRepository' => [ 'name' => 'CreateRepository', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRepositoryRequest', ], 'output' => [ 'shape' => 'CreateRepositoryResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryAlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'DeleteRepository' => [ 'name' => 'DeleteRepository', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRepositoryRequest', ], 'output' => [ 'shape' => 'DeleteRepositoryResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'RepositoryNotEmptyException', ], ], ], 'DeleteRepositoryPolicy' => [ 'name' => 'DeleteRepositoryPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRepositoryPolicyRequest', ], 'output' => [ 'shape' => 'DeleteRepositoryPolicyResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'RepositoryPolicyNotFoundException', ], ], ], 'DescribeRepositories' => [ 'name' => 'DescribeRepositories', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeRepositoriesRequest', ], 'output' => [ 'shape' => 'DescribeRepositoriesResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'GetAuthorizationToken' => [ 'name' => 'GetAuthorizationToken', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAuthorizationTokenRequest', ], 'output' => [ 'shape' => 'GetAuthorizationTokenResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], ], ], 'GetDownloadUrlForLayer' => [ 'name' => 'GetDownloadUrlForLayer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDownloadUrlForLayerRequest', ], 'output' => [ 'shape' => 'GetDownloadUrlForLayerResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'LayersNotFoundException', ], [ 'shape' => 'LayerInaccessibleException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'GetRepositoryPolicy' => [ 'name' => 'GetRepositoryPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetRepositoryPolicyRequest', ], 'output' => [ 'shape' => 'GetRepositoryPolicyResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'RepositoryPolicyNotFoundException', ], ], ], 'InitiateLayerUpload' => [ 'name' => 'InitiateLayerUpload', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'InitiateLayerUploadRequest', ], 'output' => [ 'shape' => 'InitiateLayerUploadResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'ListImages' => [ 'name' => 'ListImages', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListImagesRequest', ], 'output' => [ 'shape' => 'ListImagesResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'PutImage' => [ 'name' => 'PutImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutImageRequest', ], 'output' => [ 'shape' => 'PutImageResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'ImageAlreadyExistsException', ], [ 'shape' => 'LayersNotFoundException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'SetRepositoryPolicy' => [ 'name' => 'SetRepositoryPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetRepositoryPolicyRequest', ], 'output' => [ 'shape' => 'SetRepositoryPolicyResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'UploadLayerPart' => [ 'name' => 'UploadLayerPart', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UploadLayerPartRequest', ], 'output' => [ 'shape' => 'UploadLayerPartResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InvalidLayerPartException', ], [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'UploadNotFoundException', ], [ 'shape' => 'LimitExceededException', ], ], ], ], 'shapes' => [ 'Arn' => [ 'type' => 'string', ], 'AuthorizationData' => [ 'type' => 'structure', 'members' => [ 'authorizationToken' => [ 'shape' => 'Base64', ], 'expiresAt' => [ 'shape' => 'ExpirationTimestamp', ], 'proxyEndpoint' => [ 'shape' => 'ProxyEndpoint', ], ], ], 'AuthorizationDataList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuthorizationData', ], ], 'Base64' => [ 'type' => 'string', 'pattern' => '^\\S+$', ], 'BatchCheckLayerAvailabilityRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'layerDigests', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'layerDigests' => [ 'shape' => 'BatchedOperationLayerDigestList', ], ], ], 'BatchCheckLayerAvailabilityResponse' => [ 'type' => 'structure', 'members' => [ 'layers' => [ 'shape' => 'LayerList', ], 'failures' => [ 'shape' => 'LayerFailureList', ], ], ], 'BatchDeleteImageRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'imageIds', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'imageIds' => [ 'shape' => 'ImageIdentifierList', ], ], ], 'BatchDeleteImageResponse' => [ 'type' => 'structure', 'members' => [ 'imageIds' => [ 'shape' => 'ImageIdentifierList', ], 'failures' => [ 'shape' => 'ImageFailureList', ], ], ], 'BatchGetImageRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'imageIds', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'imageIds' => [ 'shape' => 'ImageIdentifierList', ], ], ], 'BatchGetImageResponse' => [ 'type' => 'structure', 'members' => [ 'images' => [ 'shape' => 'ImageList', ], 'failures' => [ 'shape' => 'ImageFailureList', ], ], ], 'BatchedOperationLayerDigest' => [ 'type' => 'string', 'max' => 1000, 'min' => 0, ], 'BatchedOperationLayerDigestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BatchedOperationLayerDigest', ], 'max' => 100, 'min' => 1, ], 'CompleteLayerUploadRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'uploadId', 'layerDigests', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'uploadId' => [ 'shape' => 'UploadId', ], 'layerDigests' => [ 'shape' => 'LayerDigestList', ], ], ], 'CompleteLayerUploadResponse' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'uploadId' => [ 'shape' => 'UploadId', ], 'layerDigest' => [ 'shape' => 'LayerDigest', ], ], ], 'CreateRepositoryRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', ], 'members' => [ 'repositoryName' => [ 'shape' => 'RepositoryName', ], ], ], 'CreateRepositoryResponse' => [ 'type' => 'structure', 'members' => [ 'repository' => [ 'shape' => 'Repository', ], ], ], 'DeleteRepositoryPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], ], ], 'DeleteRepositoryPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'policyText' => [ 'shape' => 'RepositoryPolicyText', ], ], ], 'DeleteRepositoryRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'force' => [ 'shape' => 'ForceFlag', ], ], ], 'DeleteRepositoryResponse' => [ 'type' => 'structure', 'members' => [ 'repository' => [ 'shape' => 'Repository', ], ], ], 'DescribeRepositoriesRequest' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryNames' => [ 'shape' => 'RepositoryNameList', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], ], ], 'DescribeRepositoriesResponse' => [ 'type' => 'structure', 'members' => [ 'repositories' => [ 'shape' => 'RepositoryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'EmptyUploadException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'ExceptionMessage' => [ 'type' => 'string', ], 'ExpirationTimestamp' => [ 'type' => 'timestamp', ], 'ForceFlag' => [ 'type' => 'boolean', ], 'GetAuthorizationTokenRegistryIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RegistryId', ], 'max' => 10, 'min' => 1, ], 'GetAuthorizationTokenRequest' => [ 'type' => 'structure', 'members' => [ 'registryIds' => [ 'shape' => 'GetAuthorizationTokenRegistryIdList', ], ], ], 'GetAuthorizationTokenResponse' => [ 'type' => 'structure', 'members' => [ 'authorizationData' => [ 'shape' => 'AuthorizationDataList', ], ], ], 'GetDownloadUrlForLayerRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'layerDigest', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'layerDigest' => [ 'shape' => 'LayerDigest', ], ], ], 'GetDownloadUrlForLayerResponse' => [ 'type' => 'structure', 'members' => [ 'downloadUrl' => [ 'shape' => 'Url', ], 'layerDigest' => [ 'shape' => 'LayerDigest', ], ], ], 'GetRepositoryPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], ], ], 'GetRepositoryPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'policyText' => [ 'shape' => 'RepositoryPolicyText', ], ], ], 'Image' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'imageId' => [ 'shape' => 'ImageIdentifier', ], 'imageManifest' => [ 'shape' => 'ImageManifest', ], ], ], 'ImageAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'ImageDigest' => [ 'type' => 'string', ], 'ImageFailure' => [ 'type' => 'structure', 'members' => [ 'imageId' => [ 'shape' => 'ImageIdentifier', ], 'failureCode' => [ 'shape' => 'ImageFailureCode', ], 'failureReason' => [ 'shape' => 'ImageFailureReason', ], ], ], 'ImageFailureCode' => [ 'type' => 'string', 'enum' => [ 'InvalidImageDigest', 'InvalidImageTag', 'ImageTagDoesNotMatchDigest', 'ImageNotFound', 'MissingDigestAndTag', ], ], 'ImageFailureList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageFailure', ], ], 'ImageFailureReason' => [ 'type' => 'string', ], 'ImageIdentifier' => [ 'type' => 'structure', 'members' => [ 'imageDigest' => [ 'shape' => 'ImageDigest', ], 'imageTag' => [ 'shape' => 'ImageTag', ], ], ], 'ImageIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageIdentifier', ], 'max' => 100, 'min' => 1, ], 'ImageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Image', ], ], 'ImageManifest' => [ 'type' => 'string', ], 'ImageTag' => [ 'type' => 'string', ], 'InitiateLayerUploadRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], ], ], 'InitiateLayerUploadResponse' => [ 'type' => 'structure', 'members' => [ 'uploadId' => [ 'shape' => 'UploadId', ], 'partSize' => [ 'shape' => 'PartSize', ], ], ], 'InvalidLayerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'InvalidLayerPartException' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'uploadId' => [ 'shape' => 'UploadId', ], 'lastValidByteReceived' => [ 'shape' => 'PartSize', ], 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'InvalidParameterException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'Layer' => [ 'type' => 'structure', 'members' => [ 'layerDigest' => [ 'shape' => 'LayerDigest', ], 'layerAvailability' => [ 'shape' => 'LayerAvailability', ], 'layerSize' => [ 'shape' => 'LayerSizeInBytes', ], ], ], 'LayerAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'LayerAvailability' => [ 'type' => 'string', 'enum' => [ 'AVAILABLE', 'UNAVAILABLE', ], ], 'LayerDigest' => [ 'type' => 'string', 'pattern' => '[a-zA-Z0-9-_+.]+:[a-fA-F0-9]+', ], 'LayerDigestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LayerDigest', ], 'max' => 100, 'min' => 1, ], 'LayerFailure' => [ 'type' => 'structure', 'members' => [ 'layerDigest' => [ 'shape' => 'BatchedOperationLayerDigest', ], 'failureCode' => [ 'shape' => 'LayerFailureCode', ], 'failureReason' => [ 'shape' => 'LayerFailureReason', ], ], ], 'LayerFailureCode' => [ 'type' => 'string', 'enum' => [ 'InvalidLayerDigest', 'MissingLayerDigest', ], ], 'LayerFailureList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LayerFailure', ], ], 'LayerFailureReason' => [ 'type' => 'string', ], 'LayerInaccessibleException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'LayerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Layer', ], ], 'LayerPartBlob' => [ 'type' => 'blob', ], 'LayerPartTooSmallException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'LayerSizeInBytes' => [ 'type' => 'long', ], 'LayersNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'ListImagesFilter' => [ 'type' => 'structure', 'members' => [ 'tagStatus' => [ 'shape' => 'TagStatus', ], ], ], 'ListImagesRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], 'filter' => [ 'shape' => 'ListImagesFilter', ], ], ], 'ListImagesResponse' => [ 'type' => 'structure', 'members' => [ 'imageIds' => [ 'shape' => 'ImageIdentifierList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'MaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'NextToken' => [ 'type' => 'string', ], 'PartSize' => [ 'type' => 'long', 'min' => 0, ], 'ProxyEndpoint' => [ 'type' => 'string', ], 'PutImageRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'imageManifest', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'imageManifest' => [ 'shape' => 'ImageManifest', ], ], ], 'PutImageResponse' => [ 'type' => 'structure', 'members' => [ 'image' => [ 'shape' => 'Image', ], ], ], 'RegistryId' => [ 'type' => 'string', 'pattern' => '[0-9]{12}', ], 'Repository' => [ 'type' => 'structure', 'members' => [ 'repositoryArn' => [ 'shape' => 'Arn', ], 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'repositoryUri' => [ 'shape' => 'Url', ], ], ], 'RepositoryAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'RepositoryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Repository', ], ], 'RepositoryName' => [ 'type' => 'string', 'max' => 256, 'min' => 2, 'pattern' => '(?:[a-z0-9]+(?:[._-][a-z0-9]+)*/)*[a-z0-9]+(?:[._-][a-z0-9]+)*', ], 'RepositoryNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RepositoryName', ], 'max' => 100, 'min' => 1, ], 'RepositoryNotEmptyException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'RepositoryNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'RepositoryPolicyNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'RepositoryPolicyText' => [ 'type' => 'string', 'max' => 10240, 'min' => 0, ], 'ServerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, 'fault' => true, ], 'SetRepositoryPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'policyText', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'policyText' => [ 'shape' => 'RepositoryPolicyText', ], 'force' => [ 'shape' => 'ForceFlag', ], ], ], 'SetRepositoryPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'policyText' => [ 'shape' => 'RepositoryPolicyText', ], ], ], 'TagStatus' => [ 'type' => 'string', 'enum' => [ 'TAGGED', 'UNTAGGED', ], ], 'UploadId' => [ 'type' => 'string', 'pattern' => '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}', ], 'UploadLayerPartRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'uploadId', 'partFirstByte', 'partLastByte', 'layerPartBlob', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'uploadId' => [ 'shape' => 'UploadId', ], 'partFirstByte' => [ 'shape' => 'PartSize', ], 'partLastByte' => [ 'shape' => 'PartSize', ], 'layerPartBlob' => [ 'shape' => 'LayerPartBlob', ], ], ], 'UploadLayerPartResponse' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'uploadId' => [ 'shape' => 'UploadId', ], 'lastByteReceived' => [ 'shape' => 'PartSize', ], ], ], 'UploadNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'Url' => [ 'type' => 'string', ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2015-09-21', 'endpointPrefix' => 'ecr', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'Amazon ECR', 'serviceFullName' => 'Amazon EC2 Container Registry', 'signatureVersion' => 'v4', 'targetPrefix' => 'AmazonEC2ContainerRegistry_V20150921', ], 'operations' => [ 'BatchCheckLayerAvailability' => [ 'name' => 'BatchCheckLayerAvailability', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchCheckLayerAvailabilityRequest', ], 'output' => [ 'shape' => 'BatchCheckLayerAvailabilityResponse', ], 'errors' => [ [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'ServerException', ], ], ], 'BatchDeleteImage' => [ 'name' => 'BatchDeleteImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchDeleteImageRequest', ], 'output' => [ 'shape' => 'BatchDeleteImageResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'BatchGetImage' => [ 'name' => 'BatchGetImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'BatchGetImageRequest', ], 'output' => [ 'shape' => 'BatchGetImageResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'CompleteLayerUpload' => [ 'name' => 'CompleteLayerUpload', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CompleteLayerUploadRequest', ], 'output' => [ 'shape' => 'CompleteLayerUploadResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'UploadNotFoundException', ], [ 'shape' => 'InvalidLayerException', ], [ 'shape' => 'LayerPartTooSmallException', ], [ 'shape' => 'LayerAlreadyExistsException', ], [ 'shape' => 'EmptyUploadException', ], ], ], 'CreateRepository' => [ 'name' => 'CreateRepository', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRepositoryRequest', ], 'output' => [ 'shape' => 'CreateRepositoryResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryAlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'DeleteRepository' => [ 'name' => 'DeleteRepository', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRepositoryRequest', ], 'output' => [ 'shape' => 'DeleteRepositoryResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'RepositoryNotEmptyException', ], ], ], 'DeleteRepositoryPolicy' => [ 'name' => 'DeleteRepositoryPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRepositoryPolicyRequest', ], 'output' => [ 'shape' => 'DeleteRepositoryPolicyResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'RepositoryPolicyNotFoundException', ], ], ], 'DescribeImages' => [ 'name' => 'DescribeImages', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeImagesRequest', ], 'output' => [ 'shape' => 'DescribeImagesResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'ImageNotFoundException', ], ], ], 'DescribeRepositories' => [ 'name' => 'DescribeRepositories', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeRepositoriesRequest', ], 'output' => [ 'shape' => 'DescribeRepositoriesResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'GetAuthorizationToken' => [ 'name' => 'GetAuthorizationToken', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetAuthorizationTokenRequest', ], 'output' => [ 'shape' => 'GetAuthorizationTokenResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], ], ], 'GetDownloadUrlForLayer' => [ 'name' => 'GetDownloadUrlForLayer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetDownloadUrlForLayerRequest', ], 'output' => [ 'shape' => 'GetDownloadUrlForLayerResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'LayersNotFoundException', ], [ 'shape' => 'LayerInaccessibleException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'GetRepositoryPolicy' => [ 'name' => 'GetRepositoryPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetRepositoryPolicyRequest', ], 'output' => [ 'shape' => 'GetRepositoryPolicyResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'RepositoryPolicyNotFoundException', ], ], ], 'InitiateLayerUpload' => [ 'name' => 'InitiateLayerUpload', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'InitiateLayerUploadRequest', ], 'output' => [ 'shape' => 'InitiateLayerUploadResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'ListImages' => [ 'name' => 'ListImages', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListImagesRequest', ], 'output' => [ 'shape' => 'ListImagesResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'PutImage' => [ 'name' => 'PutImage', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutImageRequest', ], 'output' => [ 'shape' => 'PutImageResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'ImageAlreadyExistsException', ], [ 'shape' => 'LayersNotFoundException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'SetRepositoryPolicy' => [ 'name' => 'SetRepositoryPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetRepositoryPolicyRequest', ], 'output' => [ 'shape' => 'SetRepositoryPolicyResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'RepositoryNotFoundException', ], ], ], 'UploadLayerPart' => [ 'name' => 'UploadLayerPart', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UploadLayerPartRequest', ], 'output' => [ 'shape' => 'UploadLayerPartResponse', ], 'errors' => [ [ 'shape' => 'ServerException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'InvalidLayerPartException', ], [ 'shape' => 'RepositoryNotFoundException', ], [ 'shape' => 'UploadNotFoundException', ], [ 'shape' => 'LimitExceededException', ], ], ], ], 'shapes' => [ 'Arn' => [ 'type' => 'string', ], 'AuthorizationData' => [ 'type' => 'structure', 'members' => [ 'authorizationToken' => [ 'shape' => 'Base64', ], 'expiresAt' => [ 'shape' => 'ExpirationTimestamp', ], 'proxyEndpoint' => [ 'shape' => 'ProxyEndpoint', ], ], ], 'AuthorizationDataList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AuthorizationData', ], ], 'Base64' => [ 'type' => 'string', 'pattern' => '^\\S+$', ], 'BatchCheckLayerAvailabilityRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'layerDigests', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'layerDigests' => [ 'shape' => 'BatchedOperationLayerDigestList', ], ], ], 'BatchCheckLayerAvailabilityResponse' => [ 'type' => 'structure', 'members' => [ 'layers' => [ 'shape' => 'LayerList', ], 'failures' => [ 'shape' => 'LayerFailureList', ], ], ], 'BatchDeleteImageRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'imageIds', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'imageIds' => [ 'shape' => 'ImageIdentifierList', ], ], ], 'BatchDeleteImageResponse' => [ 'type' => 'structure', 'members' => [ 'imageIds' => [ 'shape' => 'ImageIdentifierList', ], 'failures' => [ 'shape' => 'ImageFailureList', ], ], ], 'BatchGetImageRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'imageIds', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'imageIds' => [ 'shape' => 'ImageIdentifierList', ], ], ], 'BatchGetImageResponse' => [ 'type' => 'structure', 'members' => [ 'images' => [ 'shape' => 'ImageList', ], 'failures' => [ 'shape' => 'ImageFailureList', ], ], ], 'BatchedOperationLayerDigest' => [ 'type' => 'string', 'max' => 1000, 'min' => 0, ], 'BatchedOperationLayerDigestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BatchedOperationLayerDigest', ], 'max' => 100, 'min' => 1, ], 'CompleteLayerUploadRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'uploadId', 'layerDigests', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'uploadId' => [ 'shape' => 'UploadId', ], 'layerDigests' => [ 'shape' => 'LayerDigestList', ], ], ], 'CompleteLayerUploadResponse' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'uploadId' => [ 'shape' => 'UploadId', ], 'layerDigest' => [ 'shape' => 'LayerDigest', ], ], ], 'CreateRepositoryRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', ], 'members' => [ 'repositoryName' => [ 'shape' => 'RepositoryName', ], ], ], 'CreateRepositoryResponse' => [ 'type' => 'structure', 'members' => [ 'repository' => [ 'shape' => 'Repository', ], ], ], 'CreationTimestamp' => [ 'type' => 'timestamp', ], 'DeleteRepositoryPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], ], ], 'DeleteRepositoryPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'policyText' => [ 'shape' => 'RepositoryPolicyText', ], ], ], 'DeleteRepositoryRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'force' => [ 'shape' => 'ForceFlag', ], ], ], 'DeleteRepositoryResponse' => [ 'type' => 'structure', 'members' => [ 'repository' => [ 'shape' => 'Repository', ], ], ], 'DescribeImagesFilter' => [ 'type' => 'structure', 'members' => [ 'tagStatus' => [ 'shape' => 'TagStatus', ], ], ], 'DescribeImagesRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'imageIds' => [ 'shape' => 'ImageIdentifierList', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], 'filter' => [ 'shape' => 'DescribeImagesFilter', ], ], ], 'DescribeImagesResponse' => [ 'type' => 'structure', 'members' => [ 'imageDetails' => [ 'shape' => 'ImageDetailList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeRepositoriesRequest' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryNames' => [ 'shape' => 'RepositoryNameList', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], ], ], 'DescribeRepositoriesResponse' => [ 'type' => 'structure', 'members' => [ 'repositories' => [ 'shape' => 'RepositoryList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'EmptyUploadException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'ExceptionMessage' => [ 'type' => 'string', ], 'ExpirationTimestamp' => [ 'type' => 'timestamp', ], 'ForceFlag' => [ 'type' => 'boolean', ], 'GetAuthorizationTokenRegistryIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RegistryId', ], 'max' => 10, 'min' => 1, ], 'GetAuthorizationTokenRequest' => [ 'type' => 'structure', 'members' => [ 'registryIds' => [ 'shape' => 'GetAuthorizationTokenRegistryIdList', ], ], ], 'GetAuthorizationTokenResponse' => [ 'type' => 'structure', 'members' => [ 'authorizationData' => [ 'shape' => 'AuthorizationDataList', ], ], ], 'GetDownloadUrlForLayerRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'layerDigest', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'layerDigest' => [ 'shape' => 'LayerDigest', ], ], ], 'GetDownloadUrlForLayerResponse' => [ 'type' => 'structure', 'members' => [ 'downloadUrl' => [ 'shape' => 'Url', ], 'layerDigest' => [ 'shape' => 'LayerDigest', ], ], ], 'GetRepositoryPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], ], ], 'GetRepositoryPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'policyText' => [ 'shape' => 'RepositoryPolicyText', ], ], ], 'Image' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'imageId' => [ 'shape' => 'ImageIdentifier', ], 'imageManifest' => [ 'shape' => 'ImageManifest', ], ], ], 'ImageAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'ImageDetail' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'imageDigest' => [ 'shape' => 'ImageDigest', ], 'imageTags' => [ 'shape' => 'ImageTagList', ], 'imageSizeInBytes' => [ 'shape' => 'ImageSizeInBytes', ], 'imagePushedAt' => [ 'shape' => 'PushTimestamp', ], ], ], 'ImageDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageDetail', ], ], 'ImageDigest' => [ 'type' => 'string', ], 'ImageFailure' => [ 'type' => 'structure', 'members' => [ 'imageId' => [ 'shape' => 'ImageIdentifier', ], 'failureCode' => [ 'shape' => 'ImageFailureCode', ], 'failureReason' => [ 'shape' => 'ImageFailureReason', ], ], ], 'ImageFailureCode' => [ 'type' => 'string', 'enum' => [ 'InvalidImageDigest', 'InvalidImageTag', 'ImageTagDoesNotMatchDigest', 'ImageNotFound', 'MissingDigestAndTag', ], ], 'ImageFailureList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageFailure', ], ], 'ImageFailureReason' => [ 'type' => 'string', ], 'ImageIdentifier' => [ 'type' => 'structure', 'members' => [ 'imageDigest' => [ 'shape' => 'ImageDigest', ], 'imageTag' => [ 'shape' => 'ImageTag', ], ], ], 'ImageIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageIdentifier', ], 'max' => 100, 'min' => 1, ], 'ImageList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Image', ], ], 'ImageManifest' => [ 'type' => 'string', ], 'ImageNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'ImageSizeInBytes' => [ 'type' => 'long', ], 'ImageTag' => [ 'type' => 'string', ], 'ImageTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ImageTag', ], ], 'InitiateLayerUploadRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], ], ], 'InitiateLayerUploadResponse' => [ 'type' => 'structure', 'members' => [ 'uploadId' => [ 'shape' => 'UploadId', ], 'partSize' => [ 'shape' => 'PartSize', ], ], ], 'InvalidLayerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'InvalidLayerPartException' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'uploadId' => [ 'shape' => 'UploadId', ], 'lastValidByteReceived' => [ 'shape' => 'PartSize', ], 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'InvalidParameterException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'Layer' => [ 'type' => 'structure', 'members' => [ 'layerDigest' => [ 'shape' => 'LayerDigest', ], 'layerAvailability' => [ 'shape' => 'LayerAvailability', ], 'layerSize' => [ 'shape' => 'LayerSizeInBytes', ], ], ], 'LayerAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'LayerAvailability' => [ 'type' => 'string', 'enum' => [ 'AVAILABLE', 'UNAVAILABLE', ], ], 'LayerDigest' => [ 'type' => 'string', 'pattern' => '[a-zA-Z0-9-_+.]+:[a-fA-F0-9]+', ], 'LayerDigestList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LayerDigest', ], 'max' => 100, 'min' => 1, ], 'LayerFailure' => [ 'type' => 'structure', 'members' => [ 'layerDigest' => [ 'shape' => 'BatchedOperationLayerDigest', ], 'failureCode' => [ 'shape' => 'LayerFailureCode', ], 'failureReason' => [ 'shape' => 'LayerFailureReason', ], ], ], 'LayerFailureCode' => [ 'type' => 'string', 'enum' => [ 'InvalidLayerDigest', 'MissingLayerDigest', ], ], 'LayerFailureList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LayerFailure', ], ], 'LayerFailureReason' => [ 'type' => 'string', ], 'LayerInaccessibleException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'LayerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Layer', ], ], 'LayerPartBlob' => [ 'type' => 'blob', ], 'LayerPartTooSmallException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'LayerSizeInBytes' => [ 'type' => 'long', ], 'LayersNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'ListImagesFilter' => [ 'type' => 'structure', 'members' => [ 'tagStatus' => [ 'shape' => 'TagStatus', ], ], ], 'ListImagesRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], 'filter' => [ 'shape' => 'ListImagesFilter', ], ], ], 'ListImagesResponse' => [ 'type' => 'structure', 'members' => [ 'imageIds' => [ 'shape' => 'ImageIdentifierList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'MaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'NextToken' => [ 'type' => 'string', ], 'PartSize' => [ 'type' => 'long', 'min' => 0, ], 'ProxyEndpoint' => [ 'type' => 'string', ], 'PushTimestamp' => [ 'type' => 'timestamp', ], 'PutImageRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'imageManifest', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'imageManifest' => [ 'shape' => 'ImageManifest', ], ], ], 'PutImageResponse' => [ 'type' => 'structure', 'members' => [ 'image' => [ 'shape' => 'Image', ], ], ], 'RegistryId' => [ 'type' => 'string', 'pattern' => '[0-9]{12}', ], 'Repository' => [ 'type' => 'structure', 'members' => [ 'repositoryArn' => [ 'shape' => 'Arn', ], 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'repositoryUri' => [ 'shape' => 'Url', ], 'createdAt' => [ 'shape' => 'CreationTimestamp', ], ], ], 'RepositoryAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'RepositoryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Repository', ], ], 'RepositoryName' => [ 'type' => 'string', 'max' => 256, 'min' => 2, 'pattern' => '(?:[a-z0-9]+(?:[._-][a-z0-9]+)*/)*[a-z0-9]+(?:[._-][a-z0-9]+)*', ], 'RepositoryNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RepositoryName', ], 'max' => 100, 'min' => 1, ], 'RepositoryNotEmptyException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'RepositoryNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'RepositoryPolicyNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'RepositoryPolicyText' => [ 'type' => 'string', 'max' => 10240, 'min' => 0, ], 'ServerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, 'fault' => true, ], 'SetRepositoryPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'policyText', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'policyText' => [ 'shape' => 'RepositoryPolicyText', ], 'force' => [ 'shape' => 'ForceFlag', ], ], ], 'SetRepositoryPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'policyText' => [ 'shape' => 'RepositoryPolicyText', ], ], ], 'TagStatus' => [ 'type' => 'string', 'enum' => [ 'TAGGED', 'UNTAGGED', ], ], 'UploadId' => [ 'type' => 'string', 'pattern' => '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}', ], 'UploadLayerPartRequest' => [ 'type' => 'structure', 'required' => [ 'repositoryName', 'uploadId', 'partFirstByte', 'partLastByte', 'layerPartBlob', ], 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'uploadId' => [ 'shape' => 'UploadId', ], 'partFirstByte' => [ 'shape' => 'PartSize', ], 'partLastByte' => [ 'shape' => 'PartSize', ], 'layerPartBlob' => [ 'shape' => 'LayerPartBlob', ], ], ], 'UploadLayerPartResponse' => [ 'type' => 'structure', 'members' => [ 'registryId' => [ 'shape' => 'RegistryId', ], 'repositoryName' => [ 'shape' => 'RepositoryName', ], 'uploadId' => [ 'shape' => 'UploadId', ], 'lastByteReceived' => [ 'shape' => 'PartSize', ], ], ], 'UploadNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'Url' => [ 'type' => 'string', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/paginators-1.json.php new file mode 100644 index 000000000..b4d7a8174 --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/paginators-1.json.php @@ -0,0 +1,3 @@ + [ 'ListImages' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'imageIds', ], 'DescribeImages' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'imageDetails', ], 'DescribeRepositories' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'repositories', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/api-2.json.php index f7a398ed3..d2b0ed8ef 100644 --- a/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2015-02-02', 'endpointPrefix' => 'elasticache', 'protocol' => 'query', 'serviceFullName' => 'Amazon ElastiCache', 'signatureVersion' => 'v4', 'xmlNamespace' => 'http://elasticache.amazonaws.com/doc/2015-02-02/', ], 'operations' => [ 'AddTagsToResource' => [ 'name' => 'AddTagsToResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddTagsToResourceMessage', ], 'output' => [ 'shape' => 'TagListMessage', 'resultWrapper' => 'AddTagsToResourceResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'SnapshotNotFoundFault', ], [ 'shape' => 'TagQuotaPerResourceExceeded', ], [ 'shape' => 'InvalidARNFault', ], ], ], 'AuthorizeCacheSecurityGroupIngress' => [ 'name' => 'AuthorizeCacheSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeCacheSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'AuthorizeCacheSecurityGroupIngressResult', 'resultWrapper' => 'AuthorizeCacheSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidCacheSecurityGroupStateFault', ], [ 'shape' => 'AuthorizationAlreadyExistsFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'CopySnapshot' => [ 'name' => 'CopySnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopySnapshotMessage', ], 'output' => [ 'shape' => 'CopySnapshotResult', 'resultWrapper' => 'CopySnapshotResult', ], 'errors' => [ [ 'shape' => 'SnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotNotFoundFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidSnapshotStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'CreateCacheCluster' => [ 'name' => 'CreateCacheCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCacheClusterMessage', ], 'output' => [ 'shape' => 'CreateCacheClusterResult', 'resultWrapper' => 'CreateCacheClusterResult', ], 'errors' => [ [ 'shape' => 'ReplicationGroupNotFoundFault', ], [ 'shape' => 'InvalidReplicationGroupStateFault', ], [ 'shape' => 'CacheClusterAlreadyExistsFault', ], [ 'shape' => 'InsufficientCacheClusterCapacityFault', ], [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'CacheSubnetGroupNotFoundFault', ], [ 'shape' => 'ClusterQuotaForCustomerExceededFault', ], [ 'shape' => 'NodeQuotaForClusterExceededFault', ], [ 'shape' => 'NodeQuotaForCustomerExceededFault', ], [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'TagQuotaPerResourceExceeded', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'CreateCacheParameterGroup' => [ 'name' => 'CreateCacheParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCacheParameterGroupMessage', ], 'output' => [ 'shape' => 'CreateCacheParameterGroupResult', 'resultWrapper' => 'CreateCacheParameterGroupResult', ], 'errors' => [ [ 'shape' => 'CacheParameterGroupQuotaExceededFault', ], [ 'shape' => 'CacheParameterGroupAlreadyExistsFault', ], [ 'shape' => 'InvalidCacheParameterGroupStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'CreateCacheSecurityGroup' => [ 'name' => 'CreateCacheSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCacheSecurityGroupMessage', ], 'output' => [ 'shape' => 'CreateCacheSecurityGroupResult', 'resultWrapper' => 'CreateCacheSecurityGroupResult', ], 'errors' => [ [ 'shape' => 'CacheSecurityGroupAlreadyExistsFault', ], [ 'shape' => 'CacheSecurityGroupQuotaExceededFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'CreateCacheSubnetGroup' => [ 'name' => 'CreateCacheSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCacheSubnetGroupMessage', ], 'output' => [ 'shape' => 'CreateCacheSubnetGroupResult', 'resultWrapper' => 'CreateCacheSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'CacheSubnetGroupAlreadyExistsFault', ], [ 'shape' => 'CacheSubnetGroupQuotaExceededFault', ], [ 'shape' => 'CacheSubnetQuotaExceededFault', ], [ 'shape' => 'InvalidSubnet', ], ], ], 'CreateReplicationGroup' => [ 'name' => 'CreateReplicationGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReplicationGroupMessage', ], 'output' => [ 'shape' => 'CreateReplicationGroupResult', 'resultWrapper' => 'CreateReplicationGroupResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'InvalidCacheClusterStateFault', ], [ 'shape' => 'ReplicationGroupAlreadyExistsFault', ], [ 'shape' => 'InsufficientCacheClusterCapacityFault', ], [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'CacheSubnetGroupNotFoundFault', ], [ 'shape' => 'ClusterQuotaForCustomerExceededFault', ], [ 'shape' => 'NodeQuotaForClusterExceededFault', ], [ 'shape' => 'NodeQuotaForCustomerExceededFault', ], [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'TagQuotaPerResourceExceeded', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'CreateSnapshot' => [ 'name' => 'CreateSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSnapshotMessage', ], 'output' => [ 'shape' => 'CreateSnapshotResult', 'resultWrapper' => 'CreateSnapshotResult', ], 'errors' => [ [ 'shape' => 'SnapshotAlreadyExistsFault', ], [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'InvalidCacheClusterStateFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'SnapshotFeatureNotSupportedFault', ], [ 'shape' => 'InvalidParameterCombinationException', ], [ 'shape' => 'InvalidParameterValueException', ], ], ], 'DeleteCacheCluster' => [ 'name' => 'DeleteCacheCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCacheClusterMessage', ], 'output' => [ 'shape' => 'DeleteCacheClusterResult', 'resultWrapper' => 'DeleteCacheClusterResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'InvalidCacheClusterStateFault', ], [ 'shape' => 'SnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotFeatureNotSupportedFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DeleteCacheParameterGroup' => [ 'name' => 'DeleteCacheParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCacheParameterGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidCacheParameterGroupStateFault', ], [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DeleteCacheSecurityGroup' => [ 'name' => 'DeleteCacheSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCacheSecurityGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidCacheSecurityGroupStateFault', ], [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DeleteCacheSubnetGroup' => [ 'name' => 'DeleteCacheSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCacheSubnetGroupMessage', ], 'errors' => [ [ 'shape' => 'CacheSubnetGroupInUse', ], [ 'shape' => 'CacheSubnetGroupNotFoundFault', ], ], ], 'DeleteReplicationGroup' => [ 'name' => 'DeleteReplicationGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteReplicationGroupMessage', ], 'output' => [ 'shape' => 'DeleteReplicationGroupResult', 'resultWrapper' => 'DeleteReplicationGroupResult', ], 'errors' => [ [ 'shape' => 'ReplicationGroupNotFoundFault', ], [ 'shape' => 'InvalidReplicationGroupStateFault', ], [ 'shape' => 'SnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotFeatureNotSupportedFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DeleteSnapshot' => [ 'name' => 'DeleteSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSnapshotMessage', ], 'output' => [ 'shape' => 'DeleteSnapshotResult', 'resultWrapper' => 'DeleteSnapshotResult', ], 'errors' => [ [ 'shape' => 'SnapshotNotFoundFault', ], [ 'shape' => 'InvalidSnapshotStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeCacheClusters' => [ 'name' => 'DescribeCacheClusters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCacheClustersMessage', ], 'output' => [ 'shape' => 'CacheClusterMessage', 'resultWrapper' => 'DescribeCacheClustersResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeCacheEngineVersions' => [ 'name' => 'DescribeCacheEngineVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCacheEngineVersionsMessage', ], 'output' => [ 'shape' => 'CacheEngineVersionMessage', 'resultWrapper' => 'DescribeCacheEngineVersionsResult', ], ], 'DescribeCacheParameterGroups' => [ 'name' => 'DescribeCacheParameterGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCacheParameterGroupsMessage', ], 'output' => [ 'shape' => 'CacheParameterGroupsMessage', 'resultWrapper' => 'DescribeCacheParameterGroupsResult', ], 'errors' => [ [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeCacheParameters' => [ 'name' => 'DescribeCacheParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCacheParametersMessage', ], 'output' => [ 'shape' => 'CacheParameterGroupDetails', 'resultWrapper' => 'DescribeCacheParametersResult', ], 'errors' => [ [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeCacheSecurityGroups' => [ 'name' => 'DescribeCacheSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCacheSecurityGroupsMessage', ], 'output' => [ 'shape' => 'CacheSecurityGroupMessage', 'resultWrapper' => 'DescribeCacheSecurityGroupsResult', ], 'errors' => [ [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeCacheSubnetGroups' => [ 'name' => 'DescribeCacheSubnetGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCacheSubnetGroupsMessage', ], 'output' => [ 'shape' => 'CacheSubnetGroupMessage', 'resultWrapper' => 'DescribeCacheSubnetGroupsResult', ], 'errors' => [ [ 'shape' => 'CacheSubnetGroupNotFoundFault', ], ], ], 'DescribeEngineDefaultParameters' => [ 'name' => 'DescribeEngineDefaultParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEngineDefaultParametersMessage', ], 'output' => [ 'shape' => 'DescribeEngineDefaultParametersResult', 'resultWrapper' => 'DescribeEngineDefaultParametersResult', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeEvents' => [ 'name' => 'DescribeEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventsMessage', ], 'output' => [ 'shape' => 'EventsMessage', 'resultWrapper' => 'DescribeEventsResult', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeReplicationGroups' => [ 'name' => 'DescribeReplicationGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReplicationGroupsMessage', ], 'output' => [ 'shape' => 'ReplicationGroupMessage', 'resultWrapper' => 'DescribeReplicationGroupsResult', ], 'errors' => [ [ 'shape' => 'ReplicationGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeReservedCacheNodes' => [ 'name' => 'DescribeReservedCacheNodes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedCacheNodesMessage', ], 'output' => [ 'shape' => 'ReservedCacheNodeMessage', 'resultWrapper' => 'DescribeReservedCacheNodesResult', ], 'errors' => [ [ 'shape' => 'ReservedCacheNodeNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeReservedCacheNodesOfferings' => [ 'name' => 'DescribeReservedCacheNodesOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedCacheNodesOfferingsMessage', ], 'output' => [ 'shape' => 'ReservedCacheNodesOfferingMessage', 'resultWrapper' => 'DescribeReservedCacheNodesOfferingsResult', ], 'errors' => [ [ 'shape' => 'ReservedCacheNodesOfferingNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeSnapshots' => [ 'name' => 'DescribeSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSnapshotsMessage', ], 'output' => [ 'shape' => 'DescribeSnapshotsListMessage', 'resultWrapper' => 'DescribeSnapshotsResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'SnapshotNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'ListAllowedNodeTypeModifications' => [ 'name' => 'ListAllowedNodeTypeModifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListAllowedNodeTypeModificationsMessage', ], 'output' => [ 'shape' => 'AllowedNodeTypeModificationsMessage', 'resultWrapper' => 'ListAllowedNodeTypeModificationsResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'ReplicationGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterCombinationException', ], [ 'shape' => 'InvalidParameterValueException', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListTagsForResourceMessage', ], 'output' => [ 'shape' => 'TagListMessage', 'resultWrapper' => 'ListTagsForResourceResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'SnapshotNotFoundFault', ], [ 'shape' => 'InvalidARNFault', ], ], ], 'ModifyCacheCluster' => [ 'name' => 'ModifyCacheCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyCacheClusterMessage', ], 'output' => [ 'shape' => 'ModifyCacheClusterResult', 'resultWrapper' => 'ModifyCacheClusterResult', ], 'errors' => [ [ 'shape' => 'InvalidCacheClusterStateFault', ], [ 'shape' => 'InvalidCacheSecurityGroupStateFault', ], [ 'shape' => 'InsufficientCacheClusterCapacityFault', ], [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'NodeQuotaForClusterExceededFault', ], [ 'shape' => 'NodeQuotaForCustomerExceededFault', ], [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'ModifyCacheParameterGroup' => [ 'name' => 'ModifyCacheParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyCacheParameterGroupMessage', ], 'output' => [ 'shape' => 'CacheParameterGroupNameMessage', 'resultWrapper' => 'ModifyCacheParameterGroupResult', ], 'errors' => [ [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidCacheParameterGroupStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'ModifyCacheSubnetGroup' => [ 'name' => 'ModifyCacheSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyCacheSubnetGroupMessage', ], 'output' => [ 'shape' => 'ModifyCacheSubnetGroupResult', 'resultWrapper' => 'ModifyCacheSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'CacheSubnetGroupNotFoundFault', ], [ 'shape' => 'CacheSubnetQuotaExceededFault', ], [ 'shape' => 'SubnetInUse', ], [ 'shape' => 'InvalidSubnet', ], ], ], 'ModifyReplicationGroup' => [ 'name' => 'ModifyReplicationGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyReplicationGroupMessage', ], 'output' => [ 'shape' => 'ModifyReplicationGroupResult', 'resultWrapper' => 'ModifyReplicationGroupResult', ], 'errors' => [ [ 'shape' => 'ReplicationGroupNotFoundFault', ], [ 'shape' => 'InvalidReplicationGroupStateFault', ], [ 'shape' => 'InvalidCacheClusterStateFault', ], [ 'shape' => 'InvalidCacheSecurityGroupStateFault', ], [ 'shape' => 'InsufficientCacheClusterCapacityFault', ], [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'NodeQuotaForClusterExceededFault', ], [ 'shape' => 'NodeQuotaForCustomerExceededFault', ], [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'PurchaseReservedCacheNodesOffering' => [ 'name' => 'PurchaseReservedCacheNodesOffering', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseReservedCacheNodesOfferingMessage', ], 'output' => [ 'shape' => 'PurchaseReservedCacheNodesOfferingResult', 'resultWrapper' => 'PurchaseReservedCacheNodesOfferingResult', ], 'errors' => [ [ 'shape' => 'ReservedCacheNodesOfferingNotFoundFault', ], [ 'shape' => 'ReservedCacheNodeAlreadyExistsFault', ], [ 'shape' => 'ReservedCacheNodeQuotaExceededFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'RebootCacheCluster' => [ 'name' => 'RebootCacheCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebootCacheClusterMessage', ], 'output' => [ 'shape' => 'RebootCacheClusterResult', 'resultWrapper' => 'RebootCacheClusterResult', ], 'errors' => [ [ 'shape' => 'InvalidCacheClusterStateFault', ], [ 'shape' => 'CacheClusterNotFoundFault', ], ], ], 'RemoveTagsFromResource' => [ 'name' => 'RemoveTagsFromResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveTagsFromResourceMessage', ], 'output' => [ 'shape' => 'TagListMessage', 'resultWrapper' => 'RemoveTagsFromResourceResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'SnapshotNotFoundFault', ], [ 'shape' => 'InvalidARNFault', ], [ 'shape' => 'TagNotFoundFault', ], ], ], 'ResetCacheParameterGroup' => [ 'name' => 'ResetCacheParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetCacheParameterGroupMessage', ], 'output' => [ 'shape' => 'CacheParameterGroupNameMessage', 'resultWrapper' => 'ResetCacheParameterGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidCacheParameterGroupStateFault', ], [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'RevokeCacheSecurityGroupIngress' => [ 'name' => 'RevokeCacheSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeCacheSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'RevokeCacheSecurityGroupIngressResult', 'resultWrapper' => 'RevokeCacheSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'InvalidCacheSecurityGroupStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], ], 'shapes' => [ 'AZMode' => [ 'type' => 'string', 'enum' => [ 'single-az', 'cross-az', ], ], 'AddTagsToResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'Tags', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'AllowedNodeTypeModificationsMessage' => [ 'type' => 'structure', 'members' => [ 'ScaleUpModifications' => [ 'shape' => 'NodeTypeList', ], ], ], 'AuthorizationAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizeCacheSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSecurityGroupName', 'EC2SecurityGroupName', 'EC2SecurityGroupOwnerId', ], 'members' => [ 'CacheSecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'AuthorizeCacheSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'CacheSecurityGroup' => [ 'shape' => 'CacheSecurityGroup', ], ], ], 'AutomaticFailoverStatus' => [ 'type' => 'string', 'enum' => [ 'enabled', 'disabled', 'enabling', 'disabling', ], ], 'AvailabilityZone' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'AvailabilityZonesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'AvailabilityZone', ], ], 'AwsQueryErrorMessage' => [ 'type' => 'string', ], 'Boolean' => [ 'type' => 'boolean', ], 'BooleanOptional' => [ 'type' => 'boolean', ], 'CacheCluster' => [ 'type' => 'structure', 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'ConfigurationEndpoint' => [ 'shape' => 'Endpoint', ], 'ClientDownloadLandingPage' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'CacheClusterStatus' => [ 'shape' => 'String', ], 'NumCacheNodes' => [ 'shape' => 'IntegerOptional', ], 'PreferredAvailabilityZone' => [ 'shape' => 'String', ], 'CacheClusterCreateTime' => [ 'shape' => 'TStamp', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'PendingModifiedValues' => [ 'shape' => 'PendingModifiedValues', ], 'NotificationConfiguration' => [ 'shape' => 'NotificationConfiguration', ], 'CacheSecurityGroups' => [ 'shape' => 'CacheSecurityGroupMembershipList', ], 'CacheParameterGroup' => [ 'shape' => 'CacheParameterGroupStatus', ], 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'CacheNodes' => [ 'shape' => 'CacheNodeList', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'SecurityGroups' => [ 'shape' => 'SecurityGroupMembershipList', ], 'ReplicationGroupId' => [ 'shape' => 'String', ], 'SnapshotRetentionLimit' => [ 'shape' => 'IntegerOptional', ], 'SnapshotWindow' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'CacheClusterAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheClusterAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheClusterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheCluster', 'locationName' => 'CacheCluster', ], ], 'CacheClusterMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'CacheClusters' => [ 'shape' => 'CacheClusterList', ], ], ], 'CacheClusterNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheClusterNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'CacheEngineVersion' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'CacheParameterGroupFamily' => [ 'shape' => 'String', ], 'CacheEngineDescription' => [ 'shape' => 'String', ], 'CacheEngineVersionDescription' => [ 'shape' => 'String', ], ], ], 'CacheEngineVersionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheEngineVersion', 'locationName' => 'CacheEngineVersion', ], ], 'CacheEngineVersionMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'CacheEngineVersions' => [ 'shape' => 'CacheEngineVersionList', ], ], ], 'CacheNode' => [ 'type' => 'structure', 'members' => [ 'CacheNodeId' => [ 'shape' => 'String', ], 'CacheNodeStatus' => [ 'shape' => 'String', ], 'CacheNodeCreateTime' => [ 'shape' => 'TStamp', ], 'Endpoint' => [ 'shape' => 'Endpoint', ], 'ParameterGroupStatus' => [ 'shape' => 'String', ], 'SourceCacheNodeId' => [ 'shape' => 'String', ], 'CustomerAvailabilityZone' => [ 'shape' => 'String', ], ], ], 'CacheNodeIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'CacheNodeId', ], ], 'CacheNodeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheNode', 'locationName' => 'CacheNode', ], ], 'CacheNodeTypeSpecificParameter' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'MinimumEngineVersion' => [ 'shape' => 'String', ], 'CacheNodeTypeSpecificValues' => [ 'shape' => 'CacheNodeTypeSpecificValueList', ], 'ChangeType' => [ 'shape' => 'ChangeType', ], ], ], 'CacheNodeTypeSpecificParametersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheNodeTypeSpecificParameter', 'locationName' => 'CacheNodeTypeSpecificParameter', ], ], 'CacheNodeTypeSpecificValue' => [ 'type' => 'structure', 'members' => [ 'CacheNodeType' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'CacheNodeTypeSpecificValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheNodeTypeSpecificValue', 'locationName' => 'CacheNodeTypeSpecificValue', ], ], 'CacheParameterGroup' => [ 'type' => 'structure', 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'CacheParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'CacheParameterGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheParameterGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheParameterGroupDetails' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], 'CacheNodeTypeSpecificParameters' => [ 'shape' => 'CacheNodeTypeSpecificParametersList', ], ], ], 'CacheParameterGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheParameterGroup', 'locationName' => 'CacheParameterGroup', ], ], 'CacheParameterGroupNameMessage' => [ 'type' => 'structure', 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], ], ], 'CacheParameterGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheParameterGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'CacheParameterGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheParameterGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheParameterGroupStatus' => [ 'type' => 'structure', 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'ParameterApplyStatus' => [ 'shape' => 'String', ], 'CacheNodeIdsToReboot' => [ 'shape' => 'CacheNodeIdsList', ], ], ], 'CacheParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'CacheParameterGroups' => [ 'shape' => 'CacheParameterGroupList', ], ], ], 'CacheSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', ], 'CacheSecurityGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'EC2SecurityGroups' => [ 'shape' => 'EC2SecurityGroupList', ], ], 'wrapper' => true, ], 'CacheSecurityGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSecurityGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'CacheSecurityGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'CacheSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheSecurityGroupMembership', 'locationName' => 'CacheSecurityGroup', ], ], 'CacheSecurityGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'CacheSecurityGroups' => [ 'shape' => 'CacheSecurityGroups', ], ], ], 'CacheSecurityGroupNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'CacheSecurityGroupName', ], ], 'CacheSecurityGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSecurityGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'CacheSecurityGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'QuotaExceeded.CacheSecurityGroup', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheSecurityGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheSecurityGroup', 'locationName' => 'CacheSecurityGroup', ], ], 'CacheSubnetGroup' => [ 'type' => 'structure', 'members' => [ 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'CacheSubnetGroupDescription' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'Subnets' => [ 'shape' => 'SubnetList', ], ], 'wrapper' => true, ], 'CacheSubnetGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSubnetGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheSubnetGroupInUse' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSubnetGroupInUse', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheSubnetGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'CacheSubnetGroups' => [ 'shape' => 'CacheSubnetGroups', ], ], ], 'CacheSubnetGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSubnetGroupNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheSubnetGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSubnetGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheSubnetGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheSubnetGroup', 'locationName' => 'CacheSubnetGroup', ], ], 'CacheSubnetQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSubnetQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ChangeType' => [ 'type' => 'string', 'enum' => [ 'immediate', 'requires-reboot', ], ], 'ClusterIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ClusterId', ], ], 'ClusterQuotaForCustomerExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterQuotaForCustomerExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CopySnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SourceSnapshotName', 'TargetSnapshotName', ], 'members' => [ 'SourceSnapshotName' => [ 'shape' => 'String', ], 'TargetSnapshotName' => [ 'shape' => 'String', ], 'TargetBucket' => [ 'shape' => 'String', ], ], ], 'CopySnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'CreateCacheClusterMessage' => [ 'type' => 'structure', 'required' => [ 'CacheClusterId', ], 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'ReplicationGroupId' => [ 'shape' => 'String', ], 'AZMode' => [ 'shape' => 'AZMode', ], 'PreferredAvailabilityZone' => [ 'shape' => 'String', ], 'PreferredAvailabilityZones' => [ 'shape' => 'PreferredAvailabilityZoneList', ], 'NumCacheNodes' => [ 'shape' => 'IntegerOptional', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'CacheSecurityGroupNames' => [ 'shape' => 'CacheSecurityGroupNameList', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdsList', ], 'Tags' => [ 'shape' => 'TagList', ], 'SnapshotArns' => [ 'shape' => 'SnapshotArnsList', ], 'SnapshotName' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'NotificationTopicArn' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'SnapshotRetentionLimit' => [ 'shape' => 'IntegerOptional', ], 'SnapshotWindow' => [ 'shape' => 'String', ], ], ], 'CreateCacheClusterResult' => [ 'type' => 'structure', 'members' => [ 'CacheCluster' => [ 'shape' => 'CacheCluster', ], ], ], 'CreateCacheParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheParameterGroupName', 'CacheParameterGroupFamily', 'Description', ], 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'CacheParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], ], 'CreateCacheParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'CacheParameterGroup' => [ 'shape' => 'CacheParameterGroup', ], ], ], 'CreateCacheSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSecurityGroupName', 'Description', ], 'members' => [ 'CacheSecurityGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], ], 'CreateCacheSecurityGroupResult' => [ 'type' => 'structure', 'members' => [ 'CacheSecurityGroup' => [ 'shape' => 'CacheSecurityGroup', ], ], ], 'CreateCacheSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSubnetGroupName', 'CacheSubnetGroupDescription', 'SubnetIds', ], 'members' => [ 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'CacheSubnetGroupDescription' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], ], ], 'CreateCacheSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'CacheSubnetGroup' => [ 'shape' => 'CacheSubnetGroup', ], ], ], 'CreateReplicationGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ReplicationGroupId', 'ReplicationGroupDescription', ], 'members' => [ 'ReplicationGroupId' => [ 'shape' => 'String', ], 'ReplicationGroupDescription' => [ 'shape' => 'String', ], 'PrimaryClusterId' => [ 'shape' => 'String', ], 'AutomaticFailoverEnabled' => [ 'shape' => 'BooleanOptional', ], 'NumCacheClusters' => [ 'shape' => 'IntegerOptional', ], 'PreferredCacheClusterAZs' => [ 'shape' => 'AvailabilityZonesList', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'CacheSecurityGroupNames' => [ 'shape' => 'CacheSecurityGroupNameList', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdsList', ], 'Tags' => [ 'shape' => 'TagList', ], 'SnapshotArns' => [ 'shape' => 'SnapshotArnsList', ], 'SnapshotName' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'NotificationTopicArn' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'SnapshotRetentionLimit' => [ 'shape' => 'IntegerOptional', ], 'SnapshotWindow' => [ 'shape' => 'String', ], ], ], 'CreateReplicationGroupResult' => [ 'type' => 'structure', 'members' => [ 'ReplicationGroup' => [ 'shape' => 'ReplicationGroup', ], ], ], 'CreateSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'CacheClusterId', 'SnapshotName', ], 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'SnapshotName' => [ 'shape' => 'String', ], ], ], 'CreateSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'DeleteCacheClusterMessage' => [ 'type' => 'structure', 'required' => [ 'CacheClusterId', ], 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'FinalSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteCacheClusterResult' => [ 'type' => 'structure', 'members' => [ 'CacheCluster' => [ 'shape' => 'CacheCluster', ], ], ], 'DeleteCacheParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheParameterGroupName', ], 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteCacheSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSecurityGroupName', ], 'members' => [ 'CacheSecurityGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteCacheSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSubnetGroupName', ], 'members' => [ 'CacheSubnetGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteReplicationGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ReplicationGroupId', ], 'members' => [ 'ReplicationGroupId' => [ 'shape' => 'String', ], 'RetainPrimaryCluster' => [ 'shape' => 'BooleanOptional', ], 'FinalSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteReplicationGroupResult' => [ 'type' => 'structure', 'members' => [ 'ReplicationGroup' => [ 'shape' => 'ReplicationGroup', ], ], ], 'DeleteSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotName', ], 'members' => [ 'SnapshotName' => [ 'shape' => 'String', ], ], ], 'DeleteSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'DescribeCacheClustersMessage' => [ 'type' => 'structure', 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'ShowCacheNodeInfo' => [ 'shape' => 'BooleanOptional', ], ], ], 'DescribeCacheEngineVersionsMessage' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'CacheParameterGroupFamily' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'DefaultOnly' => [ 'shape' => 'Boolean', ], ], ], 'DescribeCacheParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeCacheParametersMessage' => [ 'type' => 'structure', 'required' => [ 'CacheParameterGroupName', ], 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeCacheSecurityGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'CacheSecurityGroupName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeCacheSubnetGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultParametersMessage' => [ 'type' => 'structure', 'required' => [ 'CacheParameterGroupFamily', ], 'members' => [ 'CacheParameterGroupFamily' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultParametersResult' => [ 'type' => 'structure', 'members' => [ 'EngineDefaults' => [ 'shape' => 'EngineDefaults', ], ], ], 'DescribeEventsMessage' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'EndTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'IntegerOptional', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReplicationGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'ReplicationGroupId' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReservedCacheNodesMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedCacheNodeId' => [ 'shape' => 'String', ], 'ReservedCacheNodesOfferingId' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReservedCacheNodesOfferingsMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedCacheNodesOfferingId' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeSnapshotsListMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Snapshots' => [ 'shape' => 'SnapshotList', ], ], ], 'DescribeSnapshotsMessage' => [ 'type' => 'structure', 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'SnapshotName' => [ 'shape' => 'String', ], 'SnapshotSource' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], ], ], 'Double' => [ 'type' => 'double', ], 'EC2SecurityGroup' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'EC2SecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EC2SecurityGroup', 'locationName' => 'EC2SecurityGroup', ], ], 'Endpoint' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], ], ], 'EngineDefaults' => [ 'type' => 'structure', 'members' => [ 'CacheParameterGroupFamily' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], 'CacheNodeTypeSpecificParameters' => [ 'shape' => 'CacheNodeTypeSpecificParametersList', ], ], 'wrapper' => true, ], 'Event' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'Message' => [ 'shape' => 'String', ], 'Date' => [ 'shape' => 'TStamp', ], ], ], 'EventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Event', 'locationName' => 'Event', ], ], 'EventsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Events' => [ 'shape' => 'EventList', ], ], ], 'InsufficientCacheClusterCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientCacheClusterCapacity', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Integer' => [ 'type' => 'integer', ], 'IntegerOptional' => [ 'type' => 'integer', ], 'InvalidARNFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidARN', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidCacheClusterStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidCacheClusterState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidCacheParameterGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidCacheParameterGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidCacheSecurityGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidCacheSecurityGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidParameterCombinationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'AwsQueryErrorMessage', ], ], 'error' => [ 'code' => 'InvalidParameterCombination', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidParameterValueException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'AwsQueryErrorMessage', ], ], 'error' => [ 'code' => 'InvalidParameterValue', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidReplicationGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidReplicationGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSnapshotStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSnapshotState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSubnet' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSubnet', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidVPCNetworkStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidVPCNetworkStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'KeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ListAllowedNodeTypeModificationsMessage' => [ 'type' => 'structure', 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'ReplicationGroupId' => [ 'shape' => 'String', ], ], ], 'ListTagsForResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], ], ], 'ModifyCacheClusterMessage' => [ 'type' => 'structure', 'required' => [ 'CacheClusterId', ], 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'NumCacheNodes' => [ 'shape' => 'IntegerOptional', ], 'CacheNodeIdsToRemove' => [ 'shape' => 'CacheNodeIdsList', ], 'AZMode' => [ 'shape' => 'AZMode', ], 'NewAvailabilityZones' => [ 'shape' => 'PreferredAvailabilityZoneList', ], 'CacheSecurityGroupNames' => [ 'shape' => 'CacheSecurityGroupNameList', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdsList', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'NotificationTopicArn' => [ 'shape' => 'String', ], 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'NotificationTopicStatus' => [ 'shape' => 'String', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'SnapshotRetentionLimit' => [ 'shape' => 'IntegerOptional', ], 'SnapshotWindow' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], ], ], 'ModifyCacheClusterResult' => [ 'type' => 'structure', 'members' => [ 'CacheCluster' => [ 'shape' => 'CacheCluster', ], ], ], 'ModifyCacheParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheParameterGroupName', 'ParameterNameValues', ], 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'ParameterNameValues' => [ 'shape' => 'ParameterNameValueList', ], ], ], 'ModifyCacheSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSubnetGroupName', ], 'members' => [ 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'CacheSubnetGroupDescription' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], ], ], 'ModifyCacheSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'CacheSubnetGroup' => [ 'shape' => 'CacheSubnetGroup', ], ], ], 'ModifyReplicationGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ReplicationGroupId', ], 'members' => [ 'ReplicationGroupId' => [ 'shape' => 'String', ], 'ReplicationGroupDescription' => [ 'shape' => 'String', ], 'PrimaryClusterId' => [ 'shape' => 'String', ], 'SnapshottingClusterId' => [ 'shape' => 'String', ], 'AutomaticFailoverEnabled' => [ 'shape' => 'BooleanOptional', ], 'CacheSecurityGroupNames' => [ 'shape' => 'CacheSecurityGroupNameList', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdsList', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'NotificationTopicArn' => [ 'shape' => 'String', ], 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'NotificationTopicStatus' => [ 'shape' => 'String', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'SnapshotRetentionLimit' => [ 'shape' => 'IntegerOptional', ], 'SnapshotWindow' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], ], ], 'ModifyReplicationGroupResult' => [ 'type' => 'structure', 'members' => [ 'ReplicationGroup' => [ 'shape' => 'ReplicationGroup', ], ], ], 'NodeGroup' => [ 'type' => 'structure', 'members' => [ 'NodeGroupId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'PrimaryEndpoint' => [ 'shape' => 'Endpoint', ], 'NodeGroupMembers' => [ 'shape' => 'NodeGroupMemberList', ], ], ], 'NodeGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NodeGroup', 'locationName' => 'NodeGroup', ], ], 'NodeGroupMember' => [ 'type' => 'structure', 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'CacheNodeId' => [ 'shape' => 'String', ], 'ReadEndpoint' => [ 'shape' => 'Endpoint', ], 'PreferredAvailabilityZone' => [ 'shape' => 'String', ], 'CurrentRole' => [ 'shape' => 'String', ], ], ], 'NodeGroupMemberList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NodeGroupMember', 'locationName' => 'NodeGroupMember', ], ], 'NodeQuotaForClusterExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'NodeQuotaForClusterExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'NodeQuotaForCustomerExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'NodeQuotaForCustomerExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'NodeSnapshot' => [ 'type' => 'structure', 'members' => [ 'CacheNodeId' => [ 'shape' => 'String', ], 'CacheSize' => [ 'shape' => 'String', ], 'CacheNodeCreateTime' => [ 'shape' => 'TStamp', ], 'SnapshotCreateTime' => [ 'shape' => 'TStamp', ], ], 'wrapper' => true, ], 'NodeSnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NodeSnapshot', 'locationName' => 'NodeSnapshot', ], ], 'NodeTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'NotificationConfiguration' => [ 'type' => 'structure', 'members' => [ 'TopicArn' => [ 'shape' => 'String', ], 'TopicStatus' => [ 'shape' => 'String', ], ], ], 'Parameter' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'ParameterValue' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'MinimumEngineVersion' => [ 'shape' => 'String', ], 'ChangeType' => [ 'shape' => 'ChangeType', ], ], ], 'ParameterNameValue' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'ParameterValue' => [ 'shape' => 'String', ], ], ], 'ParameterNameValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ParameterNameValue', 'locationName' => 'ParameterNameValue', ], ], 'ParametersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Parameter', 'locationName' => 'Parameter', ], ], 'PendingAutomaticFailoverStatus' => [ 'type' => 'string', 'enum' => [ 'enabled', 'disabled', ], ], 'PendingModifiedValues' => [ 'type' => 'structure', 'members' => [ 'NumCacheNodes' => [ 'shape' => 'IntegerOptional', ], 'CacheNodeIdsToRemove' => [ 'shape' => 'CacheNodeIdsList', ], 'EngineVersion' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], ], ], 'PreferredAvailabilityZoneList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'PreferredAvailabilityZone', ], ], 'PurchaseReservedCacheNodesOfferingMessage' => [ 'type' => 'structure', 'required' => [ 'ReservedCacheNodesOfferingId', ], 'members' => [ 'ReservedCacheNodesOfferingId' => [ 'shape' => 'String', ], 'ReservedCacheNodeId' => [ 'shape' => 'String', ], 'CacheNodeCount' => [ 'shape' => 'IntegerOptional', ], ], ], 'PurchaseReservedCacheNodesOfferingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedCacheNode' => [ 'shape' => 'ReservedCacheNode', ], ], ], 'RebootCacheClusterMessage' => [ 'type' => 'structure', 'required' => [ 'CacheClusterId', 'CacheNodeIdsToReboot', ], 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'CacheNodeIdsToReboot' => [ 'shape' => 'CacheNodeIdsList', ], ], ], 'RebootCacheClusterResult' => [ 'type' => 'structure', 'members' => [ 'CacheCluster' => [ 'shape' => 'CacheCluster', ], ], ], 'RecurringCharge' => [ 'type' => 'structure', 'members' => [ 'RecurringChargeAmount' => [ 'shape' => 'Double', ], 'RecurringChargeFrequency' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'RecurringChargeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecurringCharge', 'locationName' => 'RecurringCharge', ], ], 'RemoveTagsFromResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'TagKeys', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'KeyList', ], ], ], 'ReplicationGroup' => [ 'type' => 'structure', 'members' => [ 'ReplicationGroupId' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'PendingModifiedValues' => [ 'shape' => 'ReplicationGroupPendingModifiedValues', ], 'MemberClusters' => [ 'shape' => 'ClusterIdList', ], 'NodeGroups' => [ 'shape' => 'NodeGroupList', ], 'SnapshottingClusterId' => [ 'shape' => 'String', ], 'AutomaticFailover' => [ 'shape' => 'AutomaticFailoverStatus', ], ], 'wrapper' => true, ], 'ReplicationGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReplicationGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ReplicationGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReplicationGroup', 'locationName' => 'ReplicationGroup', ], ], 'ReplicationGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReplicationGroups' => [ 'shape' => 'ReplicationGroupList', ], ], ], 'ReplicationGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReplicationGroupNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReplicationGroupPendingModifiedValues' => [ 'type' => 'structure', 'members' => [ 'PrimaryClusterId' => [ 'shape' => 'String', ], 'AutomaticFailoverStatus' => [ 'shape' => 'PendingAutomaticFailoverStatus', ], ], ], 'ReservedCacheNode' => [ 'type' => 'structure', 'members' => [ 'ReservedCacheNodeId' => [ 'shape' => 'String', ], 'ReservedCacheNodesOfferingId' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CacheNodeCount' => [ 'shape' => 'Integer', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'State' => [ 'shape' => 'String', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], ], 'wrapper' => true, ], 'ReservedCacheNodeAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedCacheNodeAlreadyExists', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedCacheNodeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedCacheNode', 'locationName' => 'ReservedCacheNode', ], ], 'ReservedCacheNodeMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedCacheNodes' => [ 'shape' => 'ReservedCacheNodeList', ], ], ], 'ReservedCacheNodeNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedCacheNodeNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedCacheNodeQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedCacheNodeQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ReservedCacheNodesOffering' => [ 'type' => 'structure', 'members' => [ 'ReservedCacheNodesOfferingId' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], ], 'wrapper' => true, ], 'ReservedCacheNodesOfferingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedCacheNodesOffering', 'locationName' => 'ReservedCacheNodesOffering', ], ], 'ReservedCacheNodesOfferingMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedCacheNodesOfferings' => [ 'shape' => 'ReservedCacheNodesOfferingList', ], ], ], 'ReservedCacheNodesOfferingNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedCacheNodesOfferingNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ResetCacheParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheParameterGroupName', ], 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'ResetAllParameters' => [ 'shape' => 'Boolean', ], 'ParameterNameValues' => [ 'shape' => 'ParameterNameValueList', ], ], ], 'RevokeCacheSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSecurityGroupName', 'EC2SecurityGroupName', 'EC2SecurityGroupOwnerId', ], 'members' => [ 'CacheSecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'RevokeCacheSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'CacheSecurityGroup' => [ 'shape' => 'CacheSecurityGroup', ], ], ], 'SecurityGroupIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SecurityGroupId', ], ], 'SecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'SecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupMembership', ], ], 'Snapshot' => [ 'type' => 'structure', 'members' => [ 'SnapshotName' => [ 'shape' => 'String', ], 'CacheClusterId' => [ 'shape' => 'String', ], 'SnapshotStatus' => [ 'shape' => 'String', ], 'SnapshotSource' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'NumCacheNodes' => [ 'shape' => 'IntegerOptional', ], 'PreferredAvailabilityZone' => [ 'shape' => 'String', ], 'CacheClusterCreateTime' => [ 'shape' => 'TStamp', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'TopicArn' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'SnapshotRetentionLimit' => [ 'shape' => 'IntegerOptional', ], 'SnapshotWindow' => [ 'shape' => 'String', ], 'NodeSnapshots' => [ 'shape' => 'NodeSnapshotList', ], ], 'wrapper' => true, ], 'SnapshotAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotArnsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SnapshotArn', ], ], 'SnapshotFeatureNotSupportedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotFeatureNotSupportedFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Snapshot', 'locationName' => 'Snapshot', ], ], 'SnapshotNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SourceType' => [ 'type' => 'string', 'enum' => [ 'cache-cluster', 'cache-parameter-group', 'cache-security-group', 'cache-subnet-group', ], ], 'String' => [ 'type' => 'string', ], 'Subnet' => [ 'type' => 'structure', 'members' => [ 'SubnetIdentifier' => [ 'shape' => 'String', ], 'SubnetAvailabilityZone' => [ 'shape' => 'AvailabilityZone', ], ], ], 'SubnetIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SubnetIdentifier', ], ], 'SubnetInUse' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubnetInUse', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubnetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subnet', 'locationName' => 'Subnet', ], ], 'TStamp' => [ 'type' => 'timestamp', ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], ], 'TagListMessage' => [ 'type' => 'structure', 'members' => [ 'TagList' => [ 'shape' => 'TagList', ], ], ], 'TagNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TagNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'TagQuotaPerResourceExceeded' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TagQuotaPerResourceExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2015-02-02', 'endpointPrefix' => 'elasticache', 'protocol' => 'query', 'serviceFullName' => 'Amazon ElastiCache', 'signatureVersion' => 'v4', 'xmlNamespace' => 'http://elasticache.amazonaws.com/doc/2015-02-02/', ], 'operations' => [ 'AddTagsToResource' => [ 'name' => 'AddTagsToResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddTagsToResourceMessage', ], 'output' => [ 'shape' => 'TagListMessage', 'resultWrapper' => 'AddTagsToResourceResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'SnapshotNotFoundFault', ], [ 'shape' => 'TagQuotaPerResourceExceeded', ], [ 'shape' => 'InvalidARNFault', ], ], ], 'AuthorizeCacheSecurityGroupIngress' => [ 'name' => 'AuthorizeCacheSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeCacheSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'AuthorizeCacheSecurityGroupIngressResult', 'resultWrapper' => 'AuthorizeCacheSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidCacheSecurityGroupStateFault', ], [ 'shape' => 'AuthorizationAlreadyExistsFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'CopySnapshot' => [ 'name' => 'CopySnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopySnapshotMessage', ], 'output' => [ 'shape' => 'CopySnapshotResult', 'resultWrapper' => 'CopySnapshotResult', ], 'errors' => [ [ 'shape' => 'SnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotNotFoundFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidSnapshotStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'CreateCacheCluster' => [ 'name' => 'CreateCacheCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCacheClusterMessage', ], 'output' => [ 'shape' => 'CreateCacheClusterResult', 'resultWrapper' => 'CreateCacheClusterResult', ], 'errors' => [ [ 'shape' => 'ReplicationGroupNotFoundFault', ], [ 'shape' => 'InvalidReplicationGroupStateFault', ], [ 'shape' => 'CacheClusterAlreadyExistsFault', ], [ 'shape' => 'InsufficientCacheClusterCapacityFault', ], [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'CacheSubnetGroupNotFoundFault', ], [ 'shape' => 'ClusterQuotaForCustomerExceededFault', ], [ 'shape' => 'NodeQuotaForClusterExceededFault', ], [ 'shape' => 'NodeQuotaForCustomerExceededFault', ], [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'TagQuotaPerResourceExceeded', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'CreateCacheParameterGroup' => [ 'name' => 'CreateCacheParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCacheParameterGroupMessage', ], 'output' => [ 'shape' => 'CreateCacheParameterGroupResult', 'resultWrapper' => 'CreateCacheParameterGroupResult', ], 'errors' => [ [ 'shape' => 'CacheParameterGroupQuotaExceededFault', ], [ 'shape' => 'CacheParameterGroupAlreadyExistsFault', ], [ 'shape' => 'InvalidCacheParameterGroupStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'CreateCacheSecurityGroup' => [ 'name' => 'CreateCacheSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCacheSecurityGroupMessage', ], 'output' => [ 'shape' => 'CreateCacheSecurityGroupResult', 'resultWrapper' => 'CreateCacheSecurityGroupResult', ], 'errors' => [ [ 'shape' => 'CacheSecurityGroupAlreadyExistsFault', ], [ 'shape' => 'CacheSecurityGroupQuotaExceededFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'CreateCacheSubnetGroup' => [ 'name' => 'CreateCacheSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCacheSubnetGroupMessage', ], 'output' => [ 'shape' => 'CreateCacheSubnetGroupResult', 'resultWrapper' => 'CreateCacheSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'CacheSubnetGroupAlreadyExistsFault', ], [ 'shape' => 'CacheSubnetGroupQuotaExceededFault', ], [ 'shape' => 'CacheSubnetQuotaExceededFault', ], [ 'shape' => 'InvalidSubnet', ], ], ], 'CreateReplicationGroup' => [ 'name' => 'CreateReplicationGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReplicationGroupMessage', ], 'output' => [ 'shape' => 'CreateReplicationGroupResult', 'resultWrapper' => 'CreateReplicationGroupResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'InvalidCacheClusterStateFault', ], [ 'shape' => 'ReplicationGroupAlreadyExistsFault', ], [ 'shape' => 'InsufficientCacheClusterCapacityFault', ], [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'CacheSubnetGroupNotFoundFault', ], [ 'shape' => 'ClusterQuotaForCustomerExceededFault', ], [ 'shape' => 'NodeQuotaForClusterExceededFault', ], [ 'shape' => 'NodeQuotaForCustomerExceededFault', ], [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'TagQuotaPerResourceExceeded', ], [ 'shape' => 'NodeGroupsPerReplicationGroupQuotaExceededFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'CreateSnapshot' => [ 'name' => 'CreateSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSnapshotMessage', ], 'output' => [ 'shape' => 'CreateSnapshotResult', 'resultWrapper' => 'CreateSnapshotResult', ], 'errors' => [ [ 'shape' => 'SnapshotAlreadyExistsFault', ], [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'ReplicationGroupNotFoundFault', ], [ 'shape' => 'InvalidCacheClusterStateFault', ], [ 'shape' => 'InvalidReplicationGroupStateFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'SnapshotFeatureNotSupportedFault', ], [ 'shape' => 'InvalidParameterCombinationException', ], [ 'shape' => 'InvalidParameterValueException', ], ], ], 'DeleteCacheCluster' => [ 'name' => 'DeleteCacheCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCacheClusterMessage', ], 'output' => [ 'shape' => 'DeleteCacheClusterResult', 'resultWrapper' => 'DeleteCacheClusterResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'InvalidCacheClusterStateFault', ], [ 'shape' => 'SnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotFeatureNotSupportedFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DeleteCacheParameterGroup' => [ 'name' => 'DeleteCacheParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCacheParameterGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidCacheParameterGroupStateFault', ], [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DeleteCacheSecurityGroup' => [ 'name' => 'DeleteCacheSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCacheSecurityGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidCacheSecurityGroupStateFault', ], [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DeleteCacheSubnetGroup' => [ 'name' => 'DeleteCacheSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteCacheSubnetGroupMessage', ], 'errors' => [ [ 'shape' => 'CacheSubnetGroupInUse', ], [ 'shape' => 'CacheSubnetGroupNotFoundFault', ], ], ], 'DeleteReplicationGroup' => [ 'name' => 'DeleteReplicationGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteReplicationGroupMessage', ], 'output' => [ 'shape' => 'DeleteReplicationGroupResult', 'resultWrapper' => 'DeleteReplicationGroupResult', ], 'errors' => [ [ 'shape' => 'ReplicationGroupNotFoundFault', ], [ 'shape' => 'InvalidReplicationGroupStateFault', ], [ 'shape' => 'SnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotFeatureNotSupportedFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DeleteSnapshot' => [ 'name' => 'DeleteSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSnapshotMessage', ], 'output' => [ 'shape' => 'DeleteSnapshotResult', 'resultWrapper' => 'DeleteSnapshotResult', ], 'errors' => [ [ 'shape' => 'SnapshotNotFoundFault', ], [ 'shape' => 'InvalidSnapshotStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeCacheClusters' => [ 'name' => 'DescribeCacheClusters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCacheClustersMessage', ], 'output' => [ 'shape' => 'CacheClusterMessage', 'resultWrapper' => 'DescribeCacheClustersResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeCacheEngineVersions' => [ 'name' => 'DescribeCacheEngineVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCacheEngineVersionsMessage', ], 'output' => [ 'shape' => 'CacheEngineVersionMessage', 'resultWrapper' => 'DescribeCacheEngineVersionsResult', ], ], 'DescribeCacheParameterGroups' => [ 'name' => 'DescribeCacheParameterGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCacheParameterGroupsMessage', ], 'output' => [ 'shape' => 'CacheParameterGroupsMessage', 'resultWrapper' => 'DescribeCacheParameterGroupsResult', ], 'errors' => [ [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeCacheParameters' => [ 'name' => 'DescribeCacheParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCacheParametersMessage', ], 'output' => [ 'shape' => 'CacheParameterGroupDetails', 'resultWrapper' => 'DescribeCacheParametersResult', ], 'errors' => [ [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeCacheSecurityGroups' => [ 'name' => 'DescribeCacheSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCacheSecurityGroupsMessage', ], 'output' => [ 'shape' => 'CacheSecurityGroupMessage', 'resultWrapper' => 'DescribeCacheSecurityGroupsResult', ], 'errors' => [ [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeCacheSubnetGroups' => [ 'name' => 'DescribeCacheSubnetGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCacheSubnetGroupsMessage', ], 'output' => [ 'shape' => 'CacheSubnetGroupMessage', 'resultWrapper' => 'DescribeCacheSubnetGroupsResult', ], 'errors' => [ [ 'shape' => 'CacheSubnetGroupNotFoundFault', ], ], ], 'DescribeEngineDefaultParameters' => [ 'name' => 'DescribeEngineDefaultParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEngineDefaultParametersMessage', ], 'output' => [ 'shape' => 'DescribeEngineDefaultParametersResult', 'resultWrapper' => 'DescribeEngineDefaultParametersResult', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeEvents' => [ 'name' => 'DescribeEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventsMessage', ], 'output' => [ 'shape' => 'EventsMessage', 'resultWrapper' => 'DescribeEventsResult', ], 'errors' => [ [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeReplicationGroups' => [ 'name' => 'DescribeReplicationGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReplicationGroupsMessage', ], 'output' => [ 'shape' => 'ReplicationGroupMessage', 'resultWrapper' => 'DescribeReplicationGroupsResult', ], 'errors' => [ [ 'shape' => 'ReplicationGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeReservedCacheNodes' => [ 'name' => 'DescribeReservedCacheNodes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedCacheNodesMessage', ], 'output' => [ 'shape' => 'ReservedCacheNodeMessage', 'resultWrapper' => 'DescribeReservedCacheNodesResult', ], 'errors' => [ [ 'shape' => 'ReservedCacheNodeNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeReservedCacheNodesOfferings' => [ 'name' => 'DescribeReservedCacheNodesOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedCacheNodesOfferingsMessage', ], 'output' => [ 'shape' => 'ReservedCacheNodesOfferingMessage', 'resultWrapper' => 'DescribeReservedCacheNodesOfferingsResult', ], 'errors' => [ [ 'shape' => 'ReservedCacheNodesOfferingNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'DescribeSnapshots' => [ 'name' => 'DescribeSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSnapshotsMessage', ], 'output' => [ 'shape' => 'DescribeSnapshotsListMessage', 'resultWrapper' => 'DescribeSnapshotsResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'SnapshotNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'ListAllowedNodeTypeModifications' => [ 'name' => 'ListAllowedNodeTypeModifications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListAllowedNodeTypeModificationsMessage', ], 'output' => [ 'shape' => 'AllowedNodeTypeModificationsMessage', 'resultWrapper' => 'ListAllowedNodeTypeModificationsResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'ReplicationGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterCombinationException', ], [ 'shape' => 'InvalidParameterValueException', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListTagsForResourceMessage', ], 'output' => [ 'shape' => 'TagListMessage', 'resultWrapper' => 'ListTagsForResourceResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'SnapshotNotFoundFault', ], [ 'shape' => 'InvalidARNFault', ], ], ], 'ModifyCacheCluster' => [ 'name' => 'ModifyCacheCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyCacheClusterMessage', ], 'output' => [ 'shape' => 'ModifyCacheClusterResult', 'resultWrapper' => 'ModifyCacheClusterResult', ], 'errors' => [ [ 'shape' => 'InvalidCacheClusterStateFault', ], [ 'shape' => 'InvalidCacheSecurityGroupStateFault', ], [ 'shape' => 'InsufficientCacheClusterCapacityFault', ], [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'NodeQuotaForClusterExceededFault', ], [ 'shape' => 'NodeQuotaForCustomerExceededFault', ], [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'ModifyCacheParameterGroup' => [ 'name' => 'ModifyCacheParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyCacheParameterGroupMessage', ], 'output' => [ 'shape' => 'CacheParameterGroupNameMessage', 'resultWrapper' => 'ModifyCacheParameterGroupResult', ], 'errors' => [ [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidCacheParameterGroupStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'ModifyCacheSubnetGroup' => [ 'name' => 'ModifyCacheSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyCacheSubnetGroupMessage', ], 'output' => [ 'shape' => 'ModifyCacheSubnetGroupResult', 'resultWrapper' => 'ModifyCacheSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'CacheSubnetGroupNotFoundFault', ], [ 'shape' => 'CacheSubnetQuotaExceededFault', ], [ 'shape' => 'SubnetInUse', ], [ 'shape' => 'InvalidSubnet', ], ], ], 'ModifyReplicationGroup' => [ 'name' => 'ModifyReplicationGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyReplicationGroupMessage', ], 'output' => [ 'shape' => 'ModifyReplicationGroupResult', 'resultWrapper' => 'ModifyReplicationGroupResult', ], 'errors' => [ [ 'shape' => 'ReplicationGroupNotFoundFault', ], [ 'shape' => 'InvalidReplicationGroupStateFault', ], [ 'shape' => 'InvalidCacheClusterStateFault', ], [ 'shape' => 'InvalidCacheSecurityGroupStateFault', ], [ 'shape' => 'InsufficientCacheClusterCapacityFault', ], [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'NodeQuotaForClusterExceededFault', ], [ 'shape' => 'NodeQuotaForCustomerExceededFault', ], [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'PurchaseReservedCacheNodesOffering' => [ 'name' => 'PurchaseReservedCacheNodesOffering', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseReservedCacheNodesOfferingMessage', ], 'output' => [ 'shape' => 'PurchaseReservedCacheNodesOfferingResult', 'resultWrapper' => 'PurchaseReservedCacheNodesOfferingResult', ], 'errors' => [ [ 'shape' => 'ReservedCacheNodesOfferingNotFoundFault', ], [ 'shape' => 'ReservedCacheNodeAlreadyExistsFault', ], [ 'shape' => 'ReservedCacheNodeQuotaExceededFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'RebootCacheCluster' => [ 'name' => 'RebootCacheCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebootCacheClusterMessage', ], 'output' => [ 'shape' => 'RebootCacheClusterResult', 'resultWrapper' => 'RebootCacheClusterResult', ], 'errors' => [ [ 'shape' => 'InvalidCacheClusterStateFault', ], [ 'shape' => 'CacheClusterNotFoundFault', ], ], ], 'RemoveTagsFromResource' => [ 'name' => 'RemoveTagsFromResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveTagsFromResourceMessage', ], 'output' => [ 'shape' => 'TagListMessage', 'resultWrapper' => 'RemoveTagsFromResourceResult', ], 'errors' => [ [ 'shape' => 'CacheClusterNotFoundFault', ], [ 'shape' => 'SnapshotNotFoundFault', ], [ 'shape' => 'InvalidARNFault', ], [ 'shape' => 'TagNotFoundFault', ], ], ], 'ResetCacheParameterGroup' => [ 'name' => 'ResetCacheParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetCacheParameterGroupMessage', ], 'output' => [ 'shape' => 'CacheParameterGroupNameMessage', 'resultWrapper' => 'ResetCacheParameterGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidCacheParameterGroupStateFault', ], [ 'shape' => 'CacheParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], 'RevokeCacheSecurityGroupIngress' => [ 'name' => 'RevokeCacheSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeCacheSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'RevokeCacheSecurityGroupIngressResult', 'resultWrapper' => 'RevokeCacheSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'CacheSecurityGroupNotFoundFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'InvalidCacheSecurityGroupStateFault', ], [ 'shape' => 'InvalidParameterValueException', ], [ 'shape' => 'InvalidParameterCombinationException', ], ], ], ], 'shapes' => [ 'AZMode' => [ 'type' => 'string', 'enum' => [ 'single-az', 'cross-az', ], ], 'AddTagsToResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'Tags', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'AllowedNodeTypeModificationsMessage' => [ 'type' => 'structure', 'members' => [ 'ScaleUpModifications' => [ 'shape' => 'NodeTypeList', ], ], ], 'AuthorizationAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizeCacheSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSecurityGroupName', 'EC2SecurityGroupName', 'EC2SecurityGroupOwnerId', ], 'members' => [ 'CacheSecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'AuthorizeCacheSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'CacheSecurityGroup' => [ 'shape' => 'CacheSecurityGroup', ], ], ], 'AutomaticFailoverStatus' => [ 'type' => 'string', 'enum' => [ 'enabled', 'disabled', 'enabling', 'disabling', ], ], 'AvailabilityZone' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'AvailabilityZonesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'AvailabilityZone', ], ], 'AwsQueryErrorMessage' => [ 'type' => 'string', ], 'Boolean' => [ 'type' => 'boolean', ], 'BooleanOptional' => [ 'type' => 'boolean', ], 'CacheCluster' => [ 'type' => 'structure', 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'ConfigurationEndpoint' => [ 'shape' => 'Endpoint', ], 'ClientDownloadLandingPage' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'CacheClusterStatus' => [ 'shape' => 'String', ], 'NumCacheNodes' => [ 'shape' => 'IntegerOptional', ], 'PreferredAvailabilityZone' => [ 'shape' => 'String', ], 'CacheClusterCreateTime' => [ 'shape' => 'TStamp', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'PendingModifiedValues' => [ 'shape' => 'PendingModifiedValues', ], 'NotificationConfiguration' => [ 'shape' => 'NotificationConfiguration', ], 'CacheSecurityGroups' => [ 'shape' => 'CacheSecurityGroupMembershipList', ], 'CacheParameterGroup' => [ 'shape' => 'CacheParameterGroupStatus', ], 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'CacheNodes' => [ 'shape' => 'CacheNodeList', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'SecurityGroups' => [ 'shape' => 'SecurityGroupMembershipList', ], 'ReplicationGroupId' => [ 'shape' => 'String', ], 'SnapshotRetentionLimit' => [ 'shape' => 'IntegerOptional', ], 'SnapshotWindow' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'CacheClusterAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheClusterAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheClusterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheCluster', 'locationName' => 'CacheCluster', ], ], 'CacheClusterMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'CacheClusters' => [ 'shape' => 'CacheClusterList', ], ], ], 'CacheClusterNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheClusterNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'CacheEngineVersion' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'CacheParameterGroupFamily' => [ 'shape' => 'String', ], 'CacheEngineDescription' => [ 'shape' => 'String', ], 'CacheEngineVersionDescription' => [ 'shape' => 'String', ], ], ], 'CacheEngineVersionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheEngineVersion', 'locationName' => 'CacheEngineVersion', ], ], 'CacheEngineVersionMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'CacheEngineVersions' => [ 'shape' => 'CacheEngineVersionList', ], ], ], 'CacheNode' => [ 'type' => 'structure', 'members' => [ 'CacheNodeId' => [ 'shape' => 'String', ], 'CacheNodeStatus' => [ 'shape' => 'String', ], 'CacheNodeCreateTime' => [ 'shape' => 'TStamp', ], 'Endpoint' => [ 'shape' => 'Endpoint', ], 'ParameterGroupStatus' => [ 'shape' => 'String', ], 'SourceCacheNodeId' => [ 'shape' => 'String', ], 'CustomerAvailabilityZone' => [ 'shape' => 'String', ], ], ], 'CacheNodeIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'CacheNodeId', ], ], 'CacheNodeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheNode', 'locationName' => 'CacheNode', ], ], 'CacheNodeTypeSpecificParameter' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'MinimumEngineVersion' => [ 'shape' => 'String', ], 'CacheNodeTypeSpecificValues' => [ 'shape' => 'CacheNodeTypeSpecificValueList', ], 'ChangeType' => [ 'shape' => 'ChangeType', ], ], ], 'CacheNodeTypeSpecificParametersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheNodeTypeSpecificParameter', 'locationName' => 'CacheNodeTypeSpecificParameter', ], ], 'CacheNodeTypeSpecificValue' => [ 'type' => 'structure', 'members' => [ 'CacheNodeType' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'CacheNodeTypeSpecificValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheNodeTypeSpecificValue', 'locationName' => 'CacheNodeTypeSpecificValue', ], ], 'CacheParameterGroup' => [ 'type' => 'structure', 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'CacheParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'CacheParameterGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheParameterGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheParameterGroupDetails' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], 'CacheNodeTypeSpecificParameters' => [ 'shape' => 'CacheNodeTypeSpecificParametersList', ], ], ], 'CacheParameterGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheParameterGroup', 'locationName' => 'CacheParameterGroup', ], ], 'CacheParameterGroupNameMessage' => [ 'type' => 'structure', 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], ], ], 'CacheParameterGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheParameterGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'CacheParameterGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheParameterGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheParameterGroupStatus' => [ 'type' => 'structure', 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'ParameterApplyStatus' => [ 'shape' => 'String', ], 'CacheNodeIdsToReboot' => [ 'shape' => 'CacheNodeIdsList', ], ], ], 'CacheParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'CacheParameterGroups' => [ 'shape' => 'CacheParameterGroupList', ], ], ], 'CacheSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', ], 'CacheSecurityGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'EC2SecurityGroups' => [ 'shape' => 'EC2SecurityGroupList', ], ], 'wrapper' => true, ], 'CacheSecurityGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSecurityGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'CacheSecurityGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'CacheSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheSecurityGroupMembership', 'locationName' => 'CacheSecurityGroup', ], ], 'CacheSecurityGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'CacheSecurityGroups' => [ 'shape' => 'CacheSecurityGroups', ], ], ], 'CacheSecurityGroupNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'CacheSecurityGroupName', ], ], 'CacheSecurityGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSecurityGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'CacheSecurityGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'QuotaExceeded.CacheSecurityGroup', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheSecurityGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheSecurityGroup', 'locationName' => 'CacheSecurityGroup', ], ], 'CacheSubnetGroup' => [ 'type' => 'structure', 'members' => [ 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'CacheSubnetGroupDescription' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'Subnets' => [ 'shape' => 'SubnetList', ], ], 'wrapper' => true, ], 'CacheSubnetGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSubnetGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheSubnetGroupInUse' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSubnetGroupInUse', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheSubnetGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'CacheSubnetGroups' => [ 'shape' => 'CacheSubnetGroups', ], ], ], 'CacheSubnetGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSubnetGroupNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheSubnetGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSubnetGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CacheSubnetGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'CacheSubnetGroup', 'locationName' => 'CacheSubnetGroup', ], ], 'CacheSubnetQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CacheSubnetQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ChangeType' => [ 'type' => 'string', 'enum' => [ 'immediate', 'requires-reboot', ], ], 'ClusterIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ClusterId', ], ], 'ClusterQuotaForCustomerExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterQuotaForCustomerExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CopySnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SourceSnapshotName', 'TargetSnapshotName', ], 'members' => [ 'SourceSnapshotName' => [ 'shape' => 'String', ], 'TargetSnapshotName' => [ 'shape' => 'String', ], 'TargetBucket' => [ 'shape' => 'String', ], ], ], 'CopySnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'CreateCacheClusterMessage' => [ 'type' => 'structure', 'required' => [ 'CacheClusterId', ], 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'ReplicationGroupId' => [ 'shape' => 'String', ], 'AZMode' => [ 'shape' => 'AZMode', ], 'PreferredAvailabilityZone' => [ 'shape' => 'String', ], 'PreferredAvailabilityZones' => [ 'shape' => 'PreferredAvailabilityZoneList', ], 'NumCacheNodes' => [ 'shape' => 'IntegerOptional', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'CacheSecurityGroupNames' => [ 'shape' => 'CacheSecurityGroupNameList', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdsList', ], 'Tags' => [ 'shape' => 'TagList', ], 'SnapshotArns' => [ 'shape' => 'SnapshotArnsList', ], 'SnapshotName' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'NotificationTopicArn' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'SnapshotRetentionLimit' => [ 'shape' => 'IntegerOptional', ], 'SnapshotWindow' => [ 'shape' => 'String', ], ], ], 'CreateCacheClusterResult' => [ 'type' => 'structure', 'members' => [ 'CacheCluster' => [ 'shape' => 'CacheCluster', ], ], ], 'CreateCacheParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheParameterGroupName', 'CacheParameterGroupFamily', 'Description', ], 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'CacheParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], ], 'CreateCacheParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'CacheParameterGroup' => [ 'shape' => 'CacheParameterGroup', ], ], ], 'CreateCacheSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSecurityGroupName', 'Description', ], 'members' => [ 'CacheSecurityGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], ], 'CreateCacheSecurityGroupResult' => [ 'type' => 'structure', 'members' => [ 'CacheSecurityGroup' => [ 'shape' => 'CacheSecurityGroup', ], ], ], 'CreateCacheSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSubnetGroupName', 'CacheSubnetGroupDescription', 'SubnetIds', ], 'members' => [ 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'CacheSubnetGroupDescription' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], ], ], 'CreateCacheSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'CacheSubnetGroup' => [ 'shape' => 'CacheSubnetGroup', ], ], ], 'CreateReplicationGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ReplicationGroupId', 'ReplicationGroupDescription', ], 'members' => [ 'ReplicationGroupId' => [ 'shape' => 'String', ], 'ReplicationGroupDescription' => [ 'shape' => 'String', ], 'PrimaryClusterId' => [ 'shape' => 'String', ], 'AutomaticFailoverEnabled' => [ 'shape' => 'BooleanOptional', ], 'NumCacheClusters' => [ 'shape' => 'IntegerOptional', ], 'PreferredCacheClusterAZs' => [ 'shape' => 'AvailabilityZonesList', ], 'NumNodeGroups' => [ 'shape' => 'IntegerOptional', ], 'ReplicasPerNodeGroup' => [ 'shape' => 'IntegerOptional', ], 'NodeGroupConfiguration' => [ 'shape' => 'NodeGroupConfigurationList', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'CacheSecurityGroupNames' => [ 'shape' => 'CacheSecurityGroupNameList', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdsList', ], 'Tags' => [ 'shape' => 'TagList', ], 'SnapshotArns' => [ 'shape' => 'SnapshotArnsList', ], 'SnapshotName' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'NotificationTopicArn' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'SnapshotRetentionLimit' => [ 'shape' => 'IntegerOptional', ], 'SnapshotWindow' => [ 'shape' => 'String', ], ], ], 'CreateReplicationGroupResult' => [ 'type' => 'structure', 'members' => [ 'ReplicationGroup' => [ 'shape' => 'ReplicationGroup', ], ], ], 'CreateSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotName', ], 'members' => [ 'ReplicationGroupId' => [ 'shape' => 'String', ], 'CacheClusterId' => [ 'shape' => 'String', ], 'SnapshotName' => [ 'shape' => 'String', ], ], ], 'CreateSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'DeleteCacheClusterMessage' => [ 'type' => 'structure', 'required' => [ 'CacheClusterId', ], 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'FinalSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteCacheClusterResult' => [ 'type' => 'structure', 'members' => [ 'CacheCluster' => [ 'shape' => 'CacheCluster', ], ], ], 'DeleteCacheParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheParameterGroupName', ], 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteCacheSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSecurityGroupName', ], 'members' => [ 'CacheSecurityGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteCacheSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSubnetGroupName', ], 'members' => [ 'CacheSubnetGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteReplicationGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ReplicationGroupId', ], 'members' => [ 'ReplicationGroupId' => [ 'shape' => 'String', ], 'RetainPrimaryCluster' => [ 'shape' => 'BooleanOptional', ], 'FinalSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteReplicationGroupResult' => [ 'type' => 'structure', 'members' => [ 'ReplicationGroup' => [ 'shape' => 'ReplicationGroup', ], ], ], 'DeleteSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotName', ], 'members' => [ 'SnapshotName' => [ 'shape' => 'String', ], ], ], 'DeleteSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'DescribeCacheClustersMessage' => [ 'type' => 'structure', 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'ShowCacheNodeInfo' => [ 'shape' => 'BooleanOptional', ], ], ], 'DescribeCacheEngineVersionsMessage' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'CacheParameterGroupFamily' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'DefaultOnly' => [ 'shape' => 'Boolean', ], ], ], 'DescribeCacheParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeCacheParametersMessage' => [ 'type' => 'structure', 'required' => [ 'CacheParameterGroupName', ], 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeCacheSecurityGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'CacheSecurityGroupName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeCacheSubnetGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultParametersMessage' => [ 'type' => 'structure', 'required' => [ 'CacheParameterGroupFamily', ], 'members' => [ 'CacheParameterGroupFamily' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultParametersResult' => [ 'type' => 'structure', 'members' => [ 'EngineDefaults' => [ 'shape' => 'EngineDefaults', ], ], ], 'DescribeEventsMessage' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'EndTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'IntegerOptional', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReplicationGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'ReplicationGroupId' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReservedCacheNodesMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedCacheNodeId' => [ 'shape' => 'String', ], 'ReservedCacheNodesOfferingId' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReservedCacheNodesOfferingsMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedCacheNodesOfferingId' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeSnapshotsListMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Snapshots' => [ 'shape' => 'SnapshotList', ], ], ], 'DescribeSnapshotsMessage' => [ 'type' => 'structure', 'members' => [ 'ReplicationGroupId' => [ 'shape' => 'String', ], 'CacheClusterId' => [ 'shape' => 'String', ], 'SnapshotName' => [ 'shape' => 'String', ], 'SnapshotSource' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'ShowNodeGroupConfig' => [ 'shape' => 'BooleanOptional', ], ], ], 'Double' => [ 'type' => 'double', ], 'EC2SecurityGroup' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'EC2SecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EC2SecurityGroup', 'locationName' => 'EC2SecurityGroup', ], ], 'Endpoint' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], ], ], 'EngineDefaults' => [ 'type' => 'structure', 'members' => [ 'CacheParameterGroupFamily' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], 'CacheNodeTypeSpecificParameters' => [ 'shape' => 'CacheNodeTypeSpecificParametersList', ], ], 'wrapper' => true, ], 'Event' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'Message' => [ 'shape' => 'String', ], 'Date' => [ 'shape' => 'TStamp', ], ], ], 'EventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Event', 'locationName' => 'Event', ], ], 'EventsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Events' => [ 'shape' => 'EventList', ], ], ], 'InsufficientCacheClusterCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientCacheClusterCapacity', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Integer' => [ 'type' => 'integer', ], 'IntegerOptional' => [ 'type' => 'integer', ], 'InvalidARNFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidARN', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidCacheClusterStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidCacheClusterState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidCacheParameterGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidCacheParameterGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidCacheSecurityGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidCacheSecurityGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidParameterCombinationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'AwsQueryErrorMessage', ], ], 'error' => [ 'code' => 'InvalidParameterCombination', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidParameterValueException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'AwsQueryErrorMessage', ], ], 'error' => [ 'code' => 'InvalidParameterValue', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidReplicationGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidReplicationGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSnapshotStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSnapshotState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSubnet' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSubnet', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidVPCNetworkStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidVPCNetworkStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'KeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ListAllowedNodeTypeModificationsMessage' => [ 'type' => 'structure', 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'ReplicationGroupId' => [ 'shape' => 'String', ], ], ], 'ListTagsForResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], ], ], 'ModifyCacheClusterMessage' => [ 'type' => 'structure', 'required' => [ 'CacheClusterId', ], 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'NumCacheNodes' => [ 'shape' => 'IntegerOptional', ], 'CacheNodeIdsToRemove' => [ 'shape' => 'CacheNodeIdsList', ], 'AZMode' => [ 'shape' => 'AZMode', ], 'NewAvailabilityZones' => [ 'shape' => 'PreferredAvailabilityZoneList', ], 'CacheSecurityGroupNames' => [ 'shape' => 'CacheSecurityGroupNameList', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdsList', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'NotificationTopicArn' => [ 'shape' => 'String', ], 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'NotificationTopicStatus' => [ 'shape' => 'String', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'SnapshotRetentionLimit' => [ 'shape' => 'IntegerOptional', ], 'SnapshotWindow' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], ], ], 'ModifyCacheClusterResult' => [ 'type' => 'structure', 'members' => [ 'CacheCluster' => [ 'shape' => 'CacheCluster', ], ], ], 'ModifyCacheParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheParameterGroupName', 'ParameterNameValues', ], 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'ParameterNameValues' => [ 'shape' => 'ParameterNameValueList', ], ], ], 'ModifyCacheSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSubnetGroupName', ], 'members' => [ 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'CacheSubnetGroupDescription' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], ], ], 'ModifyCacheSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'CacheSubnetGroup' => [ 'shape' => 'CacheSubnetGroup', ], ], ], 'ModifyReplicationGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ReplicationGroupId', ], 'members' => [ 'ReplicationGroupId' => [ 'shape' => 'String', ], 'ReplicationGroupDescription' => [ 'shape' => 'String', ], 'PrimaryClusterId' => [ 'shape' => 'String', ], 'SnapshottingClusterId' => [ 'shape' => 'String', ], 'AutomaticFailoverEnabled' => [ 'shape' => 'BooleanOptional', ], 'CacheSecurityGroupNames' => [ 'shape' => 'CacheSecurityGroupNameList', ], 'SecurityGroupIds' => [ 'shape' => 'SecurityGroupIdsList', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'NotificationTopicArn' => [ 'shape' => 'String', ], 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'NotificationTopicStatus' => [ 'shape' => 'String', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'SnapshotRetentionLimit' => [ 'shape' => 'IntegerOptional', ], 'SnapshotWindow' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], ], ], 'ModifyReplicationGroupResult' => [ 'type' => 'structure', 'members' => [ 'ReplicationGroup' => [ 'shape' => 'ReplicationGroup', ], ], ], 'NodeGroup' => [ 'type' => 'structure', 'members' => [ 'NodeGroupId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'PrimaryEndpoint' => [ 'shape' => 'Endpoint', ], 'Slots' => [ 'shape' => 'String', ], 'NodeGroupMembers' => [ 'shape' => 'NodeGroupMemberList', ], ], ], 'NodeGroupConfiguration' => [ 'type' => 'structure', 'members' => [ 'Slots' => [ 'shape' => 'String', ], 'ReplicaCount' => [ 'shape' => 'IntegerOptional', ], 'PrimaryAvailabilityZone' => [ 'shape' => 'String', ], 'ReplicaAvailabilityZones' => [ 'shape' => 'AvailabilityZonesList', ], ], ], 'NodeGroupConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NodeGroupConfiguration', 'locationName' => 'NodeGroupConfiguration', ], ], 'NodeGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NodeGroup', 'locationName' => 'NodeGroup', ], ], 'NodeGroupMember' => [ 'type' => 'structure', 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'CacheNodeId' => [ 'shape' => 'String', ], 'ReadEndpoint' => [ 'shape' => 'Endpoint', ], 'PreferredAvailabilityZone' => [ 'shape' => 'String', ], 'CurrentRole' => [ 'shape' => 'String', ], ], ], 'NodeGroupMemberList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NodeGroupMember', 'locationName' => 'NodeGroupMember', ], ], 'NodeGroupsPerReplicationGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'NodeGroupsPerReplicationGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'NodeQuotaForClusterExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'NodeQuotaForClusterExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'NodeQuotaForCustomerExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'NodeQuotaForCustomerExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'NodeSnapshot' => [ 'type' => 'structure', 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'NodeGroupId' => [ 'shape' => 'String', ], 'CacheNodeId' => [ 'shape' => 'String', ], 'NodeGroupConfiguration' => [ 'shape' => 'NodeGroupConfiguration', ], 'CacheSize' => [ 'shape' => 'String', ], 'CacheNodeCreateTime' => [ 'shape' => 'TStamp', ], 'SnapshotCreateTime' => [ 'shape' => 'TStamp', ], ], 'wrapper' => true, ], 'NodeSnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NodeSnapshot', 'locationName' => 'NodeSnapshot', ], ], 'NodeTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'NotificationConfiguration' => [ 'type' => 'structure', 'members' => [ 'TopicArn' => [ 'shape' => 'String', ], 'TopicStatus' => [ 'shape' => 'String', ], ], ], 'Parameter' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'ParameterValue' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'MinimumEngineVersion' => [ 'shape' => 'String', ], 'ChangeType' => [ 'shape' => 'ChangeType', ], ], ], 'ParameterNameValue' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'ParameterValue' => [ 'shape' => 'String', ], ], ], 'ParameterNameValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ParameterNameValue', 'locationName' => 'ParameterNameValue', ], ], 'ParametersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Parameter', 'locationName' => 'Parameter', ], ], 'PendingAutomaticFailoverStatus' => [ 'type' => 'string', 'enum' => [ 'enabled', 'disabled', ], ], 'PendingModifiedValues' => [ 'type' => 'structure', 'members' => [ 'NumCacheNodes' => [ 'shape' => 'IntegerOptional', ], 'CacheNodeIdsToRemove' => [ 'shape' => 'CacheNodeIdsList', ], 'EngineVersion' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], ], ], 'PreferredAvailabilityZoneList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'PreferredAvailabilityZone', ], ], 'PurchaseReservedCacheNodesOfferingMessage' => [ 'type' => 'structure', 'required' => [ 'ReservedCacheNodesOfferingId', ], 'members' => [ 'ReservedCacheNodesOfferingId' => [ 'shape' => 'String', ], 'ReservedCacheNodeId' => [ 'shape' => 'String', ], 'CacheNodeCount' => [ 'shape' => 'IntegerOptional', ], ], ], 'PurchaseReservedCacheNodesOfferingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedCacheNode' => [ 'shape' => 'ReservedCacheNode', ], ], ], 'RebootCacheClusterMessage' => [ 'type' => 'structure', 'required' => [ 'CacheClusterId', 'CacheNodeIdsToReboot', ], 'members' => [ 'CacheClusterId' => [ 'shape' => 'String', ], 'CacheNodeIdsToReboot' => [ 'shape' => 'CacheNodeIdsList', ], ], ], 'RebootCacheClusterResult' => [ 'type' => 'structure', 'members' => [ 'CacheCluster' => [ 'shape' => 'CacheCluster', ], ], ], 'RecurringCharge' => [ 'type' => 'structure', 'members' => [ 'RecurringChargeAmount' => [ 'shape' => 'Double', ], 'RecurringChargeFrequency' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'RecurringChargeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecurringCharge', 'locationName' => 'RecurringCharge', ], ], 'RemoveTagsFromResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'TagKeys', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'KeyList', ], ], ], 'ReplicationGroup' => [ 'type' => 'structure', 'members' => [ 'ReplicationGroupId' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'PendingModifiedValues' => [ 'shape' => 'ReplicationGroupPendingModifiedValues', ], 'MemberClusters' => [ 'shape' => 'ClusterIdList', ], 'NodeGroups' => [ 'shape' => 'NodeGroupList', ], 'SnapshottingClusterId' => [ 'shape' => 'String', ], 'AutomaticFailover' => [ 'shape' => 'AutomaticFailoverStatus', ], 'ConfigurationEndpoint' => [ 'shape' => 'Endpoint', ], 'SnapshotRetentionLimit' => [ 'shape' => 'IntegerOptional', ], 'SnapshotWindow' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'ReplicationGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReplicationGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ReplicationGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReplicationGroup', 'locationName' => 'ReplicationGroup', ], ], 'ReplicationGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReplicationGroups' => [ 'shape' => 'ReplicationGroupList', ], ], ], 'ReplicationGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReplicationGroupNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReplicationGroupPendingModifiedValues' => [ 'type' => 'structure', 'members' => [ 'PrimaryClusterId' => [ 'shape' => 'String', ], 'AutomaticFailoverStatus' => [ 'shape' => 'PendingAutomaticFailoverStatus', ], ], ], 'ReservedCacheNode' => [ 'type' => 'structure', 'members' => [ 'ReservedCacheNodeId' => [ 'shape' => 'String', ], 'ReservedCacheNodesOfferingId' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CacheNodeCount' => [ 'shape' => 'Integer', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'State' => [ 'shape' => 'String', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], ], 'wrapper' => true, ], 'ReservedCacheNodeAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedCacheNodeAlreadyExists', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedCacheNodeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedCacheNode', 'locationName' => 'ReservedCacheNode', ], ], 'ReservedCacheNodeMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedCacheNodes' => [ 'shape' => 'ReservedCacheNodeList', ], ], ], 'ReservedCacheNodeNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedCacheNodeNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedCacheNodeQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedCacheNodeQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ReservedCacheNodesOffering' => [ 'type' => 'structure', 'members' => [ 'ReservedCacheNodesOfferingId' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], ], 'wrapper' => true, ], 'ReservedCacheNodesOfferingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedCacheNodesOffering', 'locationName' => 'ReservedCacheNodesOffering', ], ], 'ReservedCacheNodesOfferingMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedCacheNodesOfferings' => [ 'shape' => 'ReservedCacheNodesOfferingList', ], ], ], 'ReservedCacheNodesOfferingNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedCacheNodesOfferingNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ResetCacheParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'CacheParameterGroupName', ], 'members' => [ 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'ResetAllParameters' => [ 'shape' => 'Boolean', ], 'ParameterNameValues' => [ 'shape' => 'ParameterNameValueList', ], ], ], 'RevokeCacheSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'CacheSecurityGroupName', 'EC2SecurityGroupName', 'EC2SecurityGroupOwnerId', ], 'members' => [ 'CacheSecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'RevokeCacheSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'CacheSecurityGroup' => [ 'shape' => 'CacheSecurityGroup', ], ], ], 'SecurityGroupIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SecurityGroupId', ], ], 'SecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'SecurityGroupId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'SecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityGroupMembership', ], ], 'Snapshot' => [ 'type' => 'structure', 'members' => [ 'SnapshotName' => [ 'shape' => 'String', ], 'ReplicationGroupId' => [ 'shape' => 'String', ], 'ReplicationGroupDescription' => [ 'shape' => 'String', ], 'CacheClusterId' => [ 'shape' => 'String', ], 'SnapshotStatus' => [ 'shape' => 'String', ], 'SnapshotSource' => [ 'shape' => 'String', ], 'CacheNodeType' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'NumCacheNodes' => [ 'shape' => 'IntegerOptional', ], 'PreferredAvailabilityZone' => [ 'shape' => 'String', ], 'CacheClusterCreateTime' => [ 'shape' => 'TStamp', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'TopicArn' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'CacheParameterGroupName' => [ 'shape' => 'String', ], 'CacheSubnetGroupName' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'SnapshotRetentionLimit' => [ 'shape' => 'IntegerOptional', ], 'SnapshotWindow' => [ 'shape' => 'String', ], 'NumNodeGroups' => [ 'shape' => 'IntegerOptional', ], 'AutomaticFailover' => [ 'shape' => 'AutomaticFailoverStatus', ], 'NodeSnapshots' => [ 'shape' => 'NodeSnapshotList', ], ], 'wrapper' => true, ], 'SnapshotAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotArnsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SnapshotArn', ], ], 'SnapshotFeatureNotSupportedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotFeatureNotSupportedFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Snapshot', 'locationName' => 'Snapshot', ], ], 'SnapshotNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SourceType' => [ 'type' => 'string', 'enum' => [ 'cache-cluster', 'cache-parameter-group', 'cache-security-group', 'cache-subnet-group', 'replication-group', ], ], 'String' => [ 'type' => 'string', ], 'Subnet' => [ 'type' => 'structure', 'members' => [ 'SubnetIdentifier' => [ 'shape' => 'String', ], 'SubnetAvailabilityZone' => [ 'shape' => 'AvailabilityZone', ], ], ], 'SubnetIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SubnetIdentifier', ], ], 'SubnetInUse' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubnetInUse', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubnetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subnet', 'locationName' => 'Subnet', ], ], 'TStamp' => [ 'type' => 'timestamp', ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], ], 'TagListMessage' => [ 'type' => 'structure', 'members' => [ 'TagList' => [ 'shape' => 'TagList', ], ], ], 'TagNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TagNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'TagQuotaPerResourceExceeded' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TagQuotaPerResourceExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/api-2.json.php index 2809e1cef..2008896c6 100644 --- a/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2010-12-01', 'endpointPrefix' => 'elasticbeanstalk', 'protocol' => 'query', 'serviceAbbreviation' => 'Elastic Beanstalk', 'serviceFullName' => 'AWS Elastic Beanstalk', 'signatureVersion' => 'v4', 'xmlNamespace' => 'http://elasticbeanstalk.amazonaws.com/docs/2010-12-01/', ], 'operations' => [ 'AbortEnvironmentUpdate' => [ 'name' => 'AbortEnvironmentUpdate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AbortEnvironmentUpdateMessage', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'ApplyEnvironmentManagedAction' => [ 'name' => 'ApplyEnvironmentManagedAction', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ApplyEnvironmentManagedActionRequest', ], 'output' => [ 'shape' => 'ApplyEnvironmentManagedActionResult', 'resultWrapper' => 'ApplyEnvironmentManagedActionResult', ], 'errors' => [ [ 'shape' => 'ElasticBeanstalkServiceException', ], [ 'shape' => 'ManagedActionInvalidStateException', ], ], ], 'CheckDNSAvailability' => [ 'name' => 'CheckDNSAvailability', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CheckDNSAvailabilityMessage', ], 'output' => [ 'shape' => 'CheckDNSAvailabilityResultMessage', 'resultWrapper' => 'CheckDNSAvailabilityResult', ], ], 'ComposeEnvironments' => [ 'name' => 'ComposeEnvironments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ComposeEnvironmentsMessage', ], 'output' => [ 'shape' => 'EnvironmentDescriptionsMessage', 'resultWrapper' => 'ComposeEnvironmentsResult', ], 'errors' => [ [ 'shape' => 'TooManyEnvironmentsException', ], [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'CreateApplication' => [ 'name' => 'CreateApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateApplicationMessage', ], 'output' => [ 'shape' => 'ApplicationDescriptionMessage', 'resultWrapper' => 'CreateApplicationResult', ], 'errors' => [ [ 'shape' => 'TooManyApplicationsException', ], ], ], 'CreateApplicationVersion' => [ 'name' => 'CreateApplicationVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateApplicationVersionMessage', ], 'output' => [ 'shape' => 'ApplicationVersionDescriptionMessage', 'resultWrapper' => 'CreateApplicationVersionResult', ], 'errors' => [ [ 'shape' => 'TooManyApplicationsException', ], [ 'shape' => 'TooManyApplicationVersionsException', ], [ 'shape' => 'InsufficientPrivilegesException', ], [ 'shape' => 'S3LocationNotInServiceRegionException', ], ], ], 'CreateConfigurationTemplate' => [ 'name' => 'CreateConfigurationTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateConfigurationTemplateMessage', ], 'output' => [ 'shape' => 'ConfigurationSettingsDescription', 'resultWrapper' => 'CreateConfigurationTemplateResult', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], [ 'shape' => 'TooManyBucketsException', ], [ 'shape' => 'TooManyConfigurationTemplatesException', ], ], ], 'CreateEnvironment' => [ 'name' => 'CreateEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateEnvironmentMessage', ], 'output' => [ 'shape' => 'EnvironmentDescription', 'resultWrapper' => 'CreateEnvironmentResult', ], 'errors' => [ [ 'shape' => 'TooManyEnvironmentsException', ], [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'CreateStorageLocation' => [ 'name' => 'CreateStorageLocation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'CreateStorageLocationResultMessage', 'resultWrapper' => 'CreateStorageLocationResult', ], 'errors' => [ [ 'shape' => 'TooManyBucketsException', ], [ 'shape' => 'S3SubscriptionRequiredException', ], [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'DeleteApplication' => [ 'name' => 'DeleteApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteApplicationMessage', ], 'errors' => [ [ 'shape' => 'OperationInProgressException', ], ], ], 'DeleteApplicationVersion' => [ 'name' => 'DeleteApplicationVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteApplicationVersionMessage', ], 'errors' => [ [ 'shape' => 'SourceBundleDeletionException', ], [ 'shape' => 'InsufficientPrivilegesException', ], [ 'shape' => 'OperationInProgressException', ], [ 'shape' => 'S3LocationNotInServiceRegionException', ], ], ], 'DeleteConfigurationTemplate' => [ 'name' => 'DeleteConfigurationTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteConfigurationTemplateMessage', ], 'errors' => [ [ 'shape' => 'OperationInProgressException', ], ], ], 'DeleteEnvironmentConfiguration' => [ 'name' => 'DeleteEnvironmentConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteEnvironmentConfigurationMessage', ], ], 'DescribeApplicationVersions' => [ 'name' => 'DescribeApplicationVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeApplicationVersionsMessage', ], 'output' => [ 'shape' => 'ApplicationVersionDescriptionsMessage', 'resultWrapper' => 'DescribeApplicationVersionsResult', ], ], 'DescribeApplications' => [ 'name' => 'DescribeApplications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeApplicationsMessage', ], 'output' => [ 'shape' => 'ApplicationDescriptionsMessage', 'resultWrapper' => 'DescribeApplicationsResult', ], ], 'DescribeConfigurationOptions' => [ 'name' => 'DescribeConfigurationOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConfigurationOptionsMessage', ], 'output' => [ 'shape' => 'ConfigurationOptionsDescription', 'resultWrapper' => 'DescribeConfigurationOptionsResult', ], 'errors' => [ [ 'shape' => 'TooManyBucketsException', ], ], ], 'DescribeConfigurationSettings' => [ 'name' => 'DescribeConfigurationSettings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConfigurationSettingsMessage', ], 'output' => [ 'shape' => 'ConfigurationSettingsDescriptions', 'resultWrapper' => 'DescribeConfigurationSettingsResult', ], 'errors' => [ [ 'shape' => 'TooManyBucketsException', ], ], ], 'DescribeEnvironmentHealth' => [ 'name' => 'DescribeEnvironmentHealth', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEnvironmentHealthRequest', ], 'output' => [ 'shape' => 'DescribeEnvironmentHealthResult', 'resultWrapper' => 'DescribeEnvironmentHealthResult', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ElasticBeanstalkServiceException', ], ], ], 'DescribeEnvironmentManagedActionHistory' => [ 'name' => 'DescribeEnvironmentManagedActionHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEnvironmentManagedActionHistoryRequest', ], 'output' => [ 'shape' => 'DescribeEnvironmentManagedActionHistoryResult', 'resultWrapper' => 'DescribeEnvironmentManagedActionHistoryResult', ], 'errors' => [ [ 'shape' => 'ElasticBeanstalkServiceException', ], ], ], 'DescribeEnvironmentManagedActions' => [ 'name' => 'DescribeEnvironmentManagedActions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEnvironmentManagedActionsRequest', ], 'output' => [ 'shape' => 'DescribeEnvironmentManagedActionsResult', 'resultWrapper' => 'DescribeEnvironmentManagedActionsResult', ], 'errors' => [ [ 'shape' => 'ElasticBeanstalkServiceException', ], ], ], 'DescribeEnvironmentResources' => [ 'name' => 'DescribeEnvironmentResources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEnvironmentResourcesMessage', ], 'output' => [ 'shape' => 'EnvironmentResourceDescriptionsMessage', 'resultWrapper' => 'DescribeEnvironmentResourcesResult', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'DescribeEnvironments' => [ 'name' => 'DescribeEnvironments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEnvironmentsMessage', ], 'output' => [ 'shape' => 'EnvironmentDescriptionsMessage', 'resultWrapper' => 'DescribeEnvironmentsResult', ], ], 'DescribeEvents' => [ 'name' => 'DescribeEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventsMessage', ], 'output' => [ 'shape' => 'EventDescriptionsMessage', 'resultWrapper' => 'DescribeEventsResult', ], ], 'DescribeInstancesHealth' => [ 'name' => 'DescribeInstancesHealth', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstancesHealthRequest', ], 'output' => [ 'shape' => 'DescribeInstancesHealthResult', 'resultWrapper' => 'DescribeInstancesHealthResult', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ElasticBeanstalkServiceException', ], ], ], 'ListAvailableSolutionStacks' => [ 'name' => 'ListAvailableSolutionStacks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'ListAvailableSolutionStacksResultMessage', 'resultWrapper' => 'ListAvailableSolutionStacksResult', ], ], 'RebuildEnvironment' => [ 'name' => 'RebuildEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebuildEnvironmentMessage', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'RequestEnvironmentInfo' => [ 'name' => 'RequestEnvironmentInfo', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RequestEnvironmentInfoMessage', ], ], 'RestartAppServer' => [ 'name' => 'RestartAppServer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestartAppServerMessage', ], ], 'RetrieveEnvironmentInfo' => [ 'name' => 'RetrieveEnvironmentInfo', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RetrieveEnvironmentInfoMessage', ], 'output' => [ 'shape' => 'RetrieveEnvironmentInfoResultMessage', 'resultWrapper' => 'RetrieveEnvironmentInfoResult', ], ], 'SwapEnvironmentCNAMEs' => [ 'name' => 'SwapEnvironmentCNAMEs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SwapEnvironmentCNAMEsMessage', ], ], 'TerminateEnvironment' => [ 'name' => 'TerminateEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TerminateEnvironmentMessage', ], 'output' => [ 'shape' => 'EnvironmentDescription', 'resultWrapper' => 'TerminateEnvironmentResult', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'UpdateApplication' => [ 'name' => 'UpdateApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateApplicationMessage', ], 'output' => [ 'shape' => 'ApplicationDescriptionMessage', 'resultWrapper' => 'UpdateApplicationResult', ], ], 'UpdateApplicationVersion' => [ 'name' => 'UpdateApplicationVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateApplicationVersionMessage', ], 'output' => [ 'shape' => 'ApplicationVersionDescriptionMessage', 'resultWrapper' => 'UpdateApplicationVersionResult', ], ], 'UpdateConfigurationTemplate' => [ 'name' => 'UpdateConfigurationTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateConfigurationTemplateMessage', ], 'output' => [ 'shape' => 'ConfigurationSettingsDescription', 'resultWrapper' => 'UpdateConfigurationTemplateResult', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], [ 'shape' => 'TooManyBucketsException', ], ], ], 'UpdateEnvironment' => [ 'name' => 'UpdateEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateEnvironmentMessage', ], 'output' => [ 'shape' => 'EnvironmentDescription', 'resultWrapper' => 'UpdateEnvironmentResult', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], [ 'shape' => 'TooManyBucketsException', ], ], ], 'ValidateConfigurationSettings' => [ 'name' => 'ValidateConfigurationSettings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ValidateConfigurationSettingsMessage', ], 'output' => [ 'shape' => 'ConfigurationSettingsValidationMessages', 'resultWrapper' => 'ValidateConfigurationSettingsResult', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], [ 'shape' => 'TooManyBucketsException', ], ], ], ], 'shapes' => [ 'AbortEnvironmentUpdateMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'AbortableOperationInProgress' => [ 'type' => 'boolean', ], 'ActionHistoryStatus' => [ 'type' => 'string', 'enum' => [ 'Completed', 'Failed', 'Unknown', ], ], 'ActionStatus' => [ 'type' => 'string', 'enum' => [ 'Scheduled', 'Pending', 'Running', 'Unknown', ], ], 'ActionType' => [ 'type' => 'string', 'enum' => [ 'InstanceRefresh', 'PlatformUpdate', 'Unknown', ], ], 'ApplicationDescription' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'Description' => [ 'shape' => 'Description', ], 'DateCreated' => [ 'shape' => 'CreationDate', ], 'DateUpdated' => [ 'shape' => 'UpdateDate', ], 'Versions' => [ 'shape' => 'VersionLabelsList', ], 'ConfigurationTemplates' => [ 'shape' => 'ConfigurationTemplateNamesList', ], ], ], 'ApplicationDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApplicationDescription', ], ], 'ApplicationDescriptionMessage' => [ 'type' => 'structure', 'members' => [ 'Application' => [ 'shape' => 'ApplicationDescription', ], ], ], 'ApplicationDescriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'Applications' => [ 'shape' => 'ApplicationDescriptionList', ], ], ], 'ApplicationMetrics' => [ 'type' => 'structure', 'members' => [ 'Duration' => [ 'shape' => 'NullableInteger', ], 'RequestCount' => [ 'shape' => 'RequestCount', ], 'StatusCodes' => [ 'shape' => 'StatusCodes', ], 'Latency' => [ 'shape' => 'Latency', ], ], ], 'ApplicationName' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'ApplicationNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApplicationName', ], ], 'ApplicationVersionDescription' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'Description' => [ 'shape' => 'Description', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'SourceBundle' => [ 'shape' => 'S3Location', ], 'DateCreated' => [ 'shape' => 'CreationDate', ], 'DateUpdated' => [ 'shape' => 'UpdateDate', ], 'Status' => [ 'shape' => 'ApplicationVersionStatus', ], ], ], 'ApplicationVersionDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApplicationVersionDescription', ], ], 'ApplicationVersionDescriptionMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationVersion' => [ 'shape' => 'ApplicationVersionDescription', ], ], ], 'ApplicationVersionDescriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationVersions' => [ 'shape' => 'ApplicationVersionDescriptionList', ], ], ], 'ApplicationVersionProccess' => [ 'type' => 'boolean', ], 'ApplicationVersionStatus' => [ 'type' => 'string', 'enum' => [ 'Processed', 'Unprocessed', 'Failed', 'Processing', ], ], 'ApplyEnvironmentManagedActionRequest' => [ 'type' => 'structure', 'required' => [ 'ActionId', ], 'members' => [ 'EnvironmentName' => [ 'shape' => 'String', ], 'EnvironmentId' => [ 'shape' => 'String', ], 'ActionId' => [ 'shape' => 'String', ], ], ], 'ApplyEnvironmentManagedActionResult' => [ 'type' => 'structure', 'members' => [ 'ActionId' => [ 'shape' => 'String', ], 'ActionDescription' => [ 'shape' => 'String', ], 'ActionType' => [ 'shape' => 'ActionType', ], 'Status' => [ 'shape' => 'String', ], ], ], 'AutoCreateApplication' => [ 'type' => 'boolean', ], 'AutoScalingGroup' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'ResourceId', ], ], ], 'AutoScalingGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AutoScalingGroup', ], ], 'AvailableSolutionStackDetailsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SolutionStackDescription', ], ], 'AvailableSolutionStackNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SolutionStackName', ], ], 'CPUUtilization' => [ 'type' => 'structure', 'members' => [ 'User' => [ 'shape' => 'NullableDouble', ], 'Nice' => [ 'shape' => 'NullableDouble', ], 'System' => [ 'shape' => 'NullableDouble', ], 'Idle' => [ 'shape' => 'NullableDouble', ], 'IOWait' => [ 'shape' => 'NullableDouble', ], 'IRQ' => [ 'shape' => 'NullableDouble', ], 'SoftIRQ' => [ 'shape' => 'NullableDouble', ], ], ], 'Cause' => [ 'type' => 'string', 'max' => 255, 'min' => 1, ], 'Causes' => [ 'type' => 'list', 'member' => [ 'shape' => 'Cause', ], ], 'CheckDNSAvailabilityMessage' => [ 'type' => 'structure', 'required' => [ 'CNAMEPrefix', ], 'members' => [ 'CNAMEPrefix' => [ 'shape' => 'DNSCnamePrefix', ], ], ], 'CheckDNSAvailabilityResultMessage' => [ 'type' => 'structure', 'members' => [ 'Available' => [ 'shape' => 'CnameAvailability', ], 'FullyQualifiedCNAME' => [ 'shape' => 'DNSCname', ], ], ], 'CnameAvailability' => [ 'type' => 'boolean', ], 'ComposeEnvironmentsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'GroupName' => [ 'shape' => 'GroupName', ], 'VersionLabels' => [ 'shape' => 'VersionLabels', ], ], ], 'ConfigurationDeploymentStatus' => [ 'type' => 'string', 'enum' => [ 'deployed', 'pending', 'failed', ], ], 'ConfigurationOptionDefaultValue' => [ 'type' => 'string', ], 'ConfigurationOptionDescription' => [ 'type' => 'structure', 'members' => [ 'Namespace' => [ 'shape' => 'OptionNamespace', ], 'Name' => [ 'shape' => 'ConfigurationOptionName', ], 'DefaultValue' => [ 'shape' => 'ConfigurationOptionDefaultValue', ], 'ChangeSeverity' => [ 'shape' => 'ConfigurationOptionSeverity', ], 'UserDefined' => [ 'shape' => 'UserDefinedOption', ], 'ValueType' => [ 'shape' => 'ConfigurationOptionValueType', ], 'ValueOptions' => [ 'shape' => 'ConfigurationOptionPossibleValues', ], 'MinValue' => [ 'shape' => 'OptionRestrictionMinValue', ], 'MaxValue' => [ 'shape' => 'OptionRestrictionMaxValue', ], 'MaxLength' => [ 'shape' => 'OptionRestrictionMaxLength', ], 'Regex' => [ 'shape' => 'OptionRestrictionRegex', ], ], ], 'ConfigurationOptionDescriptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationOptionDescription', ], ], 'ConfigurationOptionName' => [ 'type' => 'string', ], 'ConfigurationOptionPossibleValue' => [ 'type' => 'string', ], 'ConfigurationOptionPossibleValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationOptionPossibleValue', ], ], 'ConfigurationOptionSetting' => [ 'type' => 'structure', 'members' => [ 'ResourceName' => [ 'shape' => 'ResourceName', ], 'Namespace' => [ 'shape' => 'OptionNamespace', ], 'OptionName' => [ 'shape' => 'ConfigurationOptionName', ], 'Value' => [ 'shape' => 'ConfigurationOptionValue', ], ], ], 'ConfigurationOptionSettingsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationOptionSetting', ], ], 'ConfigurationOptionSeverity' => [ 'type' => 'string', ], 'ConfigurationOptionValue' => [ 'type' => 'string', ], 'ConfigurationOptionValueType' => [ 'type' => 'string', 'enum' => [ 'Scalar', 'List', ], ], 'ConfigurationOptionsDescription' => [ 'type' => 'structure', 'members' => [ 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'Options' => [ 'shape' => 'ConfigurationOptionDescriptionsList', ], ], ], 'ConfigurationSettingsDescription' => [ 'type' => 'structure', 'members' => [ 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'Description' => [ 'shape' => 'Description', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'DeploymentStatus' => [ 'shape' => 'ConfigurationDeploymentStatus', ], 'DateCreated' => [ 'shape' => 'CreationDate', ], 'DateUpdated' => [ 'shape' => 'UpdateDate', ], 'OptionSettings' => [ 'shape' => 'ConfigurationOptionSettingsList', ], ], ], 'ConfigurationSettingsDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationSettingsDescription', ], ], 'ConfigurationSettingsDescriptions' => [ 'type' => 'structure', 'members' => [ 'ConfigurationSettings' => [ 'shape' => 'ConfigurationSettingsDescriptionList', ], ], ], 'ConfigurationSettingsValidationMessages' => [ 'type' => 'structure', 'members' => [ 'Messages' => [ 'shape' => 'ValidationMessagesList', ], ], ], 'ConfigurationTemplateName' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'ConfigurationTemplateNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationTemplateName', ], ], 'CreateApplicationMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'CreateApplicationVersionMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'VersionLabel', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'Description' => [ 'shape' => 'Description', ], 'SourceBundle' => [ 'shape' => 'S3Location', ], 'AutoCreateApplication' => [ 'shape' => 'AutoCreateApplication', ], 'Process' => [ 'shape' => 'ApplicationVersionProccess', ], ], ], 'CreateConfigurationTemplateMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'TemplateName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'SourceConfiguration' => [ 'shape' => 'SourceConfiguration', ], 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'Description' => [ 'shape' => 'Description', ], 'OptionSettings' => [ 'shape' => 'ConfigurationOptionSettingsList', ], ], ], 'CreateEnvironmentMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'GroupName' => [ 'shape' => 'GroupName', ], 'Description' => [ 'shape' => 'Description', ], 'CNAMEPrefix' => [ 'shape' => 'DNSCnamePrefix', ], 'Tier' => [ 'shape' => 'EnvironmentTier', ], 'Tags' => [ 'shape' => 'Tags', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'OptionSettings' => [ 'shape' => 'ConfigurationOptionSettingsList', ], 'OptionsToRemove' => [ 'shape' => 'OptionsSpecifierList', ], ], ], 'CreateStorageLocationResultMessage' => [ 'type' => 'structure', 'members' => [ 'S3Bucket' => [ 'shape' => 'S3Bucket', ], ], ], 'CreationDate' => [ 'type' => 'timestamp', ], 'DNSCname' => [ 'type' => 'string', 'max' => 255, 'min' => 1, ], 'DNSCnamePrefix' => [ 'type' => 'string', 'max' => 63, 'min' => 4, ], 'DeleteApplicationMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TerminateEnvByForce' => [ 'shape' => 'TerminateEnvForce', ], ], ], 'DeleteApplicationVersionMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'VersionLabel', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'DeleteSourceBundle' => [ 'shape' => 'DeleteSourceBundle', ], ], ], 'DeleteConfigurationTemplateMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'TemplateName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], ], ], 'DeleteEnvironmentConfigurationMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'EnvironmentName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'DeleteSourceBundle' => [ 'type' => 'boolean', ], 'Deployment' => [ 'type' => 'structure', 'members' => [ 'VersionLabel' => [ 'shape' => 'String', ], 'DeploymentId' => [ 'shape' => 'NullableLong', ], 'Status' => [ 'shape' => 'String', ], 'DeploymentTime' => [ 'shape' => 'DeploymentTimestamp', ], ], ], 'DeploymentTimestamp' => [ 'type' => 'timestamp', ], 'DescribeApplicationVersionsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabels' => [ 'shape' => 'VersionLabelsList', ], ], ], 'DescribeApplicationsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationNames' => [ 'shape' => 'ApplicationNamesList', ], ], ], 'DescribeConfigurationOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'Options' => [ 'shape' => 'OptionsSpecifierList', ], ], ], 'DescribeConfigurationSettingsMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'DescribeEnvironmentHealthRequest' => [ 'type' => 'structure', 'members' => [ 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'AttributeNames' => [ 'shape' => 'EnvironmentHealthAttributes', ], ], ], 'DescribeEnvironmentHealthResult' => [ 'type' => 'structure', 'members' => [ 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'HealthStatus' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'EnvironmentHealth', ], 'Color' => [ 'shape' => 'String', ], 'Causes' => [ 'shape' => 'Causes', ], 'ApplicationMetrics' => [ 'shape' => 'ApplicationMetrics', ], 'InstancesHealth' => [ 'shape' => 'InstanceHealthSummary', ], 'RefreshedAt' => [ 'shape' => 'RefreshedAt', ], ], ], 'DescribeEnvironmentManagedActionHistoryRequest' => [ 'type' => 'structure', 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxItems' => [ 'shape' => 'Integer', ], ], ], 'DescribeEnvironmentManagedActionHistoryResult' => [ 'type' => 'structure', 'members' => [ 'ManagedActionHistoryItems' => [ 'shape' => 'ManagedActionHistoryItems', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeEnvironmentManagedActionsRequest' => [ 'type' => 'structure', 'members' => [ 'EnvironmentName' => [ 'shape' => 'String', ], 'EnvironmentId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'ActionStatus', ], ], ], 'DescribeEnvironmentManagedActionsResult' => [ 'type' => 'structure', 'members' => [ 'ManagedActions' => [ 'shape' => 'ManagedActions', ], ], ], 'DescribeEnvironmentResourcesMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'DescribeEnvironmentsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'EnvironmentIds' => [ 'shape' => 'EnvironmentIdList', ], 'EnvironmentNames' => [ 'shape' => 'EnvironmentNamesList', ], 'IncludeDeleted' => [ 'shape' => 'IncludeDeleted', ], 'IncludedDeletedBackTo' => [ 'shape' => 'IncludeDeletedBackTo', ], ], ], 'DescribeEventsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'RequestId' => [ 'shape' => 'RequestId', ], 'Severity' => [ 'shape' => 'EventSeverity', ], 'StartTime' => [ 'shape' => 'TimeFilterStart', ], 'EndTime' => [ 'shape' => 'TimeFilterEnd', ], 'MaxRecords' => [ 'shape' => 'MaxRecords', ], 'NextToken' => [ 'shape' => 'Token', ], ], ], 'DescribeInstancesHealthRequest' => [ 'type' => 'structure', 'members' => [ 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'AttributeNames' => [ 'shape' => 'InstancesHealthAttributes', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeInstancesHealthResult' => [ 'type' => 'structure', 'members' => [ 'InstanceHealthList' => [ 'shape' => 'InstanceHealthList', ], 'RefreshedAt' => [ 'shape' => 'RefreshedAt', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'Description' => [ 'type' => 'string', 'max' => 200, ], 'Ec2InstanceId' => [ 'type' => 'string', ], 'ElasticBeanstalkServiceException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'EndpointURL' => [ 'type' => 'string', ], 'EnvironmentDescription' => [ 'type' => 'structure', 'members' => [ 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'Description' => [ 'shape' => 'Description', ], 'EndpointURL' => [ 'shape' => 'EndpointURL', ], 'CNAME' => [ 'shape' => 'DNSCname', ], 'DateCreated' => [ 'shape' => 'CreationDate', ], 'DateUpdated' => [ 'shape' => 'UpdateDate', ], 'Status' => [ 'shape' => 'EnvironmentStatus', ], 'AbortableOperationInProgress' => [ 'shape' => 'AbortableOperationInProgress', ], 'Health' => [ 'shape' => 'EnvironmentHealth', ], 'HealthStatus' => [ 'shape' => 'EnvironmentHealthStatus', ], 'Resources' => [ 'shape' => 'EnvironmentResourcesDescription', ], 'Tier' => [ 'shape' => 'EnvironmentTier', ], 'EnvironmentLinks' => [ 'shape' => 'EnvironmentLinks', ], ], ], 'EnvironmentDescriptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnvironmentDescription', ], ], 'EnvironmentDescriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'Environments' => [ 'shape' => 'EnvironmentDescriptionsList', ], ], ], 'EnvironmentHealth' => [ 'type' => 'string', 'enum' => [ 'Green', 'Yellow', 'Red', 'Grey', ], ], 'EnvironmentHealthAttribute' => [ 'type' => 'string', 'enum' => [ 'Status', 'Color', 'Causes', 'ApplicationMetrics', 'InstancesHealth', 'All', 'HealthStatus', 'RefreshedAt', ], ], 'EnvironmentHealthAttributes' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnvironmentHealthAttribute', ], ], 'EnvironmentHealthStatus' => [ 'type' => 'string', 'enum' => [ 'NoData', 'Unknown', 'Pending', 'Ok', 'Info', 'Warning', 'Degraded', 'Severe', ], ], 'EnvironmentId' => [ 'type' => 'string', ], 'EnvironmentIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnvironmentId', ], ], 'EnvironmentInfoDescription' => [ 'type' => 'structure', 'members' => [ 'InfoType' => [ 'shape' => 'EnvironmentInfoType', ], 'Ec2InstanceId' => [ 'shape' => 'Ec2InstanceId', ], 'SampleTimestamp' => [ 'shape' => 'SampleTimestamp', ], 'Message' => [ 'shape' => 'Message', ], ], ], 'EnvironmentInfoDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnvironmentInfoDescription', ], ], 'EnvironmentInfoType' => [ 'type' => 'string', 'enum' => [ 'tail', 'bundle', ], ], 'EnvironmentLink' => [ 'type' => 'structure', 'members' => [ 'LinkName' => [ 'shape' => 'String', ], 'EnvironmentName' => [ 'shape' => 'String', ], ], ], 'EnvironmentLinks' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnvironmentLink', ], ], 'EnvironmentName' => [ 'type' => 'string', 'max' => 40, 'min' => 4, ], 'EnvironmentNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnvironmentName', ], ], 'EnvironmentResourceDescription' => [ 'type' => 'structure', 'members' => [ 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'AutoScalingGroups' => [ 'shape' => 'AutoScalingGroupList', ], 'Instances' => [ 'shape' => 'InstanceList', ], 'LaunchConfigurations' => [ 'shape' => 'LaunchConfigurationList', ], 'LoadBalancers' => [ 'shape' => 'LoadBalancerList', ], 'Triggers' => [ 'shape' => 'TriggerList', ], 'Queues' => [ 'shape' => 'QueueList', ], ], ], 'EnvironmentResourceDescriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentResources' => [ 'shape' => 'EnvironmentResourceDescription', ], ], ], 'EnvironmentResourcesDescription' => [ 'type' => 'structure', 'members' => [ 'LoadBalancer' => [ 'shape' => 'LoadBalancerDescription', ], ], ], 'EnvironmentStatus' => [ 'type' => 'string', 'enum' => [ 'Launching', 'Updating', 'Ready', 'Terminating', 'Terminated', ], ], 'EnvironmentTier' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Type' => [ 'shape' => 'String', ], 'Version' => [ 'shape' => 'String', ], ], ], 'EventDate' => [ 'type' => 'timestamp', ], 'EventDescription' => [ 'type' => 'structure', 'members' => [ 'EventDate' => [ 'shape' => 'EventDate', ], 'Message' => [ 'shape' => 'EventMessage', ], 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'RequestId' => [ 'shape' => 'RequestId', ], 'Severity' => [ 'shape' => 'EventSeverity', ], ], ], 'EventDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventDescription', ], ], 'EventDescriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'Events' => [ 'shape' => 'EventDescriptionList', ], 'NextToken' => [ 'shape' => 'Token', ], ], ], 'EventMessage' => [ 'type' => 'string', ], 'EventSeverity' => [ 'type' => 'string', 'enum' => [ 'TRACE', 'DEBUG', 'INFO', 'WARN', 'ERROR', 'FATAL', ], ], 'ExceptionMessage' => [ 'type' => 'string', ], 'FailureType' => [ 'type' => 'string', 'enum' => [ 'UpdateCancelled', 'CancellationFailed', 'RollbackFailed', 'RollbackSuccessful', 'InternalFailure', 'InvalidEnvironmentState', 'PermissionsError', ], ], 'FileTypeExtension' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'ForceTerminate' => [ 'type' => 'boolean', ], 'GroupName' => [ 'type' => 'string', 'max' => 19, 'min' => 1, ], 'IncludeDeleted' => [ 'type' => 'boolean', ], 'IncludeDeletedBackTo' => [ 'type' => 'timestamp', ], 'Instance' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'ResourceId', ], ], ], 'InstanceHealthList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SingleInstanceHealth', ], ], 'InstanceHealthSummary' => [ 'type' => 'structure', 'members' => [ 'NoData' => [ 'shape' => 'NullableInteger', ], 'Unknown' => [ 'shape' => 'NullableInteger', ], 'Pending' => [ 'shape' => 'NullableInteger', ], 'Ok' => [ 'shape' => 'NullableInteger', ], 'Info' => [ 'shape' => 'NullableInteger', ], 'Warning' => [ 'shape' => 'NullableInteger', ], 'Degraded' => [ 'shape' => 'NullableInteger', ], 'Severe' => [ 'shape' => 'NullableInteger', ], ], ], 'InstanceId' => [ 'type' => 'string', 'max' => 255, 'min' => 1, ], 'InstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Instance', ], ], 'InstancesHealthAttribute' => [ 'type' => 'string', 'enum' => [ 'HealthStatus', 'Color', 'Causes', 'ApplicationMetrics', 'RefreshedAt', 'LaunchedAt', 'System', 'Deployment', 'AvailabilityZone', 'InstanceType', 'All', ], ], 'InstancesHealthAttributes' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstancesHealthAttribute', ], ], 'InsufficientPrivilegesException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientPrivilegesException', 'httpStatusCode' => 403, 'senderFault' => true, ], 'exception' => true, ], 'Integer' => [ 'type' => 'integer', ], 'InvalidRequestException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidRequestException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Latency' => [ 'type' => 'structure', 'members' => [ 'P999' => [ 'shape' => 'NullableDouble', ], 'P99' => [ 'shape' => 'NullableDouble', ], 'P95' => [ 'shape' => 'NullableDouble', ], 'P90' => [ 'shape' => 'NullableDouble', ], 'P85' => [ 'shape' => 'NullableDouble', ], 'P75' => [ 'shape' => 'NullableDouble', ], 'P50' => [ 'shape' => 'NullableDouble', ], 'P10' => [ 'shape' => 'NullableDouble', ], ], ], 'LaunchConfiguration' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'ResourceId', ], ], ], 'LaunchConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchConfiguration', ], ], 'LaunchedAt' => [ 'type' => 'timestamp', ], 'ListAvailableSolutionStacksResultMessage' => [ 'type' => 'structure', 'members' => [ 'SolutionStacks' => [ 'shape' => 'AvailableSolutionStackNamesList', ], 'SolutionStackDetails' => [ 'shape' => 'AvailableSolutionStackDetailsList', ], ], ], 'Listener' => [ 'type' => 'structure', 'members' => [ 'Protocol' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], ], ], 'LoadAverage' => [ 'type' => 'list', 'member' => [ 'shape' => 'LoadAverageValue', ], ], 'LoadAverageValue' => [ 'type' => 'double', ], 'LoadBalancer' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'ResourceId', ], ], ], 'LoadBalancerDescription' => [ 'type' => 'structure', 'members' => [ 'LoadBalancerName' => [ 'shape' => 'String', ], 'Domain' => [ 'shape' => 'String', ], 'Listeners' => [ 'shape' => 'LoadBalancerListenersDescription', ], ], ], 'LoadBalancerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LoadBalancer', ], ], 'LoadBalancerListenersDescription' => [ 'type' => 'list', 'member' => [ 'shape' => 'Listener', ], ], 'ManagedAction' => [ 'type' => 'structure', 'members' => [ 'ActionId' => [ 'shape' => 'String', ], 'ActionDescription' => [ 'shape' => 'String', ], 'ActionType' => [ 'shape' => 'ActionType', ], 'Status' => [ 'shape' => 'ActionStatus', ], 'WindowStartTime' => [ 'shape' => 'Timestamp', ], ], ], 'ManagedActionHistoryItem' => [ 'type' => 'structure', 'members' => [ 'ActionId' => [ 'shape' => 'String', ], 'ActionType' => [ 'shape' => 'ActionType', ], 'ActionDescription' => [ 'shape' => 'String', ], 'FailureType' => [ 'shape' => 'FailureType', ], 'Status' => [ 'shape' => 'ActionHistoryStatus', ], 'FailureDescription' => [ 'shape' => 'String', ], 'ExecutedTime' => [ 'shape' => 'Timestamp', ], 'FinishedTime' => [ 'shape' => 'Timestamp', ], ], ], 'ManagedActionHistoryItems' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedActionHistoryItem', ], 'max' => 100, 'min' => 1, ], 'ManagedActionInvalidStateException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ManagedActionInvalidStateException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ManagedActions' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedAction', ], 'max' => 100, 'min' => 1, ], 'MaxRecords' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'Message' => [ 'type' => 'string', ], 'NextToken' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'NullableDouble' => [ 'type' => 'double', ], 'NullableInteger' => [ 'type' => 'integer', ], 'NullableLong' => [ 'type' => 'long', ], 'OperationInProgressException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OperationInProgressFailure', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'OptionNamespace' => [ 'type' => 'string', ], 'OptionRestrictionMaxLength' => [ 'type' => 'integer', ], 'OptionRestrictionMaxValue' => [ 'type' => 'integer', ], 'OptionRestrictionMinValue' => [ 'type' => 'integer', ], 'OptionRestrictionRegex' => [ 'type' => 'structure', 'members' => [ 'Pattern' => [ 'shape' => 'RegexPattern', ], 'Label' => [ 'shape' => 'RegexLabel', ], ], ], 'OptionSpecification' => [ 'type' => 'structure', 'members' => [ 'ResourceName' => [ 'shape' => 'ResourceName', ], 'Namespace' => [ 'shape' => 'OptionNamespace', ], 'OptionName' => [ 'shape' => 'ConfigurationOptionName', ], ], ], 'OptionsSpecifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionSpecification', ], ], 'Queue' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'URL' => [ 'shape' => 'String', ], ], ], 'QueueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Queue', ], ], 'RebuildEnvironmentMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'RefreshedAt' => [ 'type' => 'timestamp', ], 'RegexLabel' => [ 'type' => 'string', ], 'RegexPattern' => [ 'type' => 'string', ], 'RequestCount' => [ 'type' => 'integer', ], 'RequestEnvironmentInfoMessage' => [ 'type' => 'structure', 'required' => [ 'InfoType', ], 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'InfoType' => [ 'shape' => 'EnvironmentInfoType', ], ], ], 'RequestId' => [ 'type' => 'string', ], 'ResourceId' => [ 'type' => 'string', ], 'ResourceName' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'RestartAppServerMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'RetrieveEnvironmentInfoMessage' => [ 'type' => 'structure', 'required' => [ 'InfoType', ], 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'InfoType' => [ 'shape' => 'EnvironmentInfoType', ], ], ], 'RetrieveEnvironmentInfoResultMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentInfo' => [ 'shape' => 'EnvironmentInfoDescriptionList', ], ], ], 'S3Bucket' => [ 'type' => 'string', 'max' => 255, ], 'S3Key' => [ 'type' => 'string', 'max' => 1024, ], 'S3Location' => [ 'type' => 'structure', 'members' => [ 'S3Bucket' => [ 'shape' => 'S3Bucket', ], 'S3Key' => [ 'shape' => 'S3Key', ], ], ], 'S3LocationNotInServiceRegionException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'S3LocationNotInServiceRegionException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'S3SubscriptionRequiredException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'S3SubscriptionRequiredException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SampleTimestamp' => [ 'type' => 'timestamp', ], 'SingleInstanceHealth' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'HealthStatus' => [ 'shape' => 'String', ], 'Color' => [ 'shape' => 'String', ], 'Causes' => [ 'shape' => 'Causes', ], 'LaunchedAt' => [ 'shape' => 'LaunchedAt', ], 'ApplicationMetrics' => [ 'shape' => 'ApplicationMetrics', ], 'System' => [ 'shape' => 'SystemStatus', ], 'Deployment' => [ 'shape' => 'Deployment', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'InstanceType' => [ 'shape' => 'String', ], ], ], 'SolutionStackDescription' => [ 'type' => 'structure', 'members' => [ 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'PermittedFileTypes' => [ 'shape' => 'SolutionStackFileTypeList', ], ], ], 'SolutionStackFileTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FileTypeExtension', ], ], 'SolutionStackName' => [ 'type' => 'string', 'max' => 100, ], 'SourceBundleDeletionException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SourceBundleDeletionFailure', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SourceConfiguration' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], ], ], 'StatusCodes' => [ 'type' => 'structure', 'members' => [ 'Status2xx' => [ 'shape' => 'NullableInteger', ], 'Status3xx' => [ 'shape' => 'NullableInteger', ], 'Status4xx' => [ 'shape' => 'NullableInteger', ], 'Status5xx' => [ 'shape' => 'NullableInteger', ], ], ], 'String' => [ 'type' => 'string', ], 'SwapEnvironmentCNAMEsMessage' => [ 'type' => 'structure', 'members' => [ 'SourceEnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'SourceEnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'DestinationEnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'DestinationEnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'SystemStatus' => [ 'type' => 'structure', 'members' => [ 'CPUUtilization' => [ 'shape' => 'CPUUtilization', ], 'LoadAverage' => [ 'shape' => 'LoadAverage', ], ], ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'TagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'Tags' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], ], 'TerminateEnvForce' => [ 'type' => 'boolean', ], 'TerminateEnvironmentMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'TerminateResources' => [ 'shape' => 'TerminateEnvironmentResources', ], 'ForceTerminate' => [ 'shape' => 'ForceTerminate', ], ], ], 'TerminateEnvironmentResources' => [ 'type' => 'boolean', ], 'TimeFilterEnd' => [ 'type' => 'timestamp', ], 'TimeFilterStart' => [ 'type' => 'timestamp', ], 'Timestamp' => [ 'type' => 'timestamp', ], 'Token' => [ 'type' => 'string', ], 'TooManyApplicationVersionsException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'TooManyApplicationsException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TooManyApplicationsException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'TooManyBucketsException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TooManyBucketsException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'TooManyConfigurationTemplatesException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TooManyConfigurationTemplatesException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'TooManyEnvironmentsException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TooManyEnvironmentsException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Trigger' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'ResourceId', ], ], ], 'TriggerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Trigger', ], ], 'UpdateApplicationMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'UpdateApplicationVersionMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'VersionLabel', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'UpdateConfigurationTemplateMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'TemplateName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'Description' => [ 'shape' => 'Description', ], 'OptionSettings' => [ 'shape' => 'ConfigurationOptionSettingsList', ], 'OptionsToRemove' => [ 'shape' => 'OptionsSpecifierList', ], ], ], 'UpdateDate' => [ 'type' => 'timestamp', ], 'UpdateEnvironmentMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'GroupName' => [ 'shape' => 'GroupName', ], 'Description' => [ 'shape' => 'Description', ], 'Tier' => [ 'shape' => 'EnvironmentTier', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'OptionSettings' => [ 'shape' => 'ConfigurationOptionSettingsList', ], 'OptionsToRemove' => [ 'shape' => 'OptionsSpecifierList', ], ], ], 'UserDefinedOption' => [ 'type' => 'boolean', ], 'ValidateConfigurationSettingsMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'OptionSettings', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'OptionSettings' => [ 'shape' => 'ConfigurationOptionSettingsList', ], ], ], 'ValidationMessage' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ValidationMessageString', ], 'Severity' => [ 'shape' => 'ValidationSeverity', ], 'Namespace' => [ 'shape' => 'OptionNamespace', ], 'OptionName' => [ 'shape' => 'ConfigurationOptionName', ], ], ], 'ValidationMessageString' => [ 'type' => 'string', ], 'ValidationMessagesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ValidationMessage', ], ], 'ValidationSeverity' => [ 'type' => 'string', 'enum' => [ 'error', 'warning', ], ], 'VersionLabel' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'VersionLabels' => [ 'type' => 'list', 'member' => [ 'shape' => 'VersionLabel', ], ], 'VersionLabelsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VersionLabel', ], ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2010-12-01', 'endpointPrefix' => 'elasticbeanstalk', 'protocol' => 'query', 'serviceAbbreviation' => 'Elastic Beanstalk', 'serviceFullName' => 'AWS Elastic Beanstalk', 'signatureVersion' => 'v4', 'xmlNamespace' => 'http://elasticbeanstalk.amazonaws.com/docs/2010-12-01/', ], 'operations' => [ 'AbortEnvironmentUpdate' => [ 'name' => 'AbortEnvironmentUpdate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AbortEnvironmentUpdateMessage', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'ApplyEnvironmentManagedAction' => [ 'name' => 'ApplyEnvironmentManagedAction', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ApplyEnvironmentManagedActionRequest', ], 'output' => [ 'shape' => 'ApplyEnvironmentManagedActionResult', 'resultWrapper' => 'ApplyEnvironmentManagedActionResult', ], 'errors' => [ [ 'shape' => 'ElasticBeanstalkServiceException', ], [ 'shape' => 'ManagedActionInvalidStateException', ], ], ], 'CheckDNSAvailability' => [ 'name' => 'CheckDNSAvailability', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CheckDNSAvailabilityMessage', ], 'output' => [ 'shape' => 'CheckDNSAvailabilityResultMessage', 'resultWrapper' => 'CheckDNSAvailabilityResult', ], ], 'ComposeEnvironments' => [ 'name' => 'ComposeEnvironments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ComposeEnvironmentsMessage', ], 'output' => [ 'shape' => 'EnvironmentDescriptionsMessage', 'resultWrapper' => 'ComposeEnvironmentsResult', ], 'errors' => [ [ 'shape' => 'TooManyEnvironmentsException', ], [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'CreateApplication' => [ 'name' => 'CreateApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateApplicationMessage', ], 'output' => [ 'shape' => 'ApplicationDescriptionMessage', 'resultWrapper' => 'CreateApplicationResult', ], 'errors' => [ [ 'shape' => 'TooManyApplicationsException', ], ], ], 'CreateApplicationVersion' => [ 'name' => 'CreateApplicationVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateApplicationVersionMessage', ], 'output' => [ 'shape' => 'ApplicationVersionDescriptionMessage', 'resultWrapper' => 'CreateApplicationVersionResult', ], 'errors' => [ [ 'shape' => 'TooManyApplicationsException', ], [ 'shape' => 'TooManyApplicationVersionsException', ], [ 'shape' => 'InsufficientPrivilegesException', ], [ 'shape' => 'S3LocationNotInServiceRegionException', ], ], ], 'CreateConfigurationTemplate' => [ 'name' => 'CreateConfigurationTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateConfigurationTemplateMessage', ], 'output' => [ 'shape' => 'ConfigurationSettingsDescription', 'resultWrapper' => 'CreateConfigurationTemplateResult', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], [ 'shape' => 'TooManyBucketsException', ], [ 'shape' => 'TooManyConfigurationTemplatesException', ], ], ], 'CreateEnvironment' => [ 'name' => 'CreateEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateEnvironmentMessage', ], 'output' => [ 'shape' => 'EnvironmentDescription', 'resultWrapper' => 'CreateEnvironmentResult', ], 'errors' => [ [ 'shape' => 'TooManyEnvironmentsException', ], [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'CreateStorageLocation' => [ 'name' => 'CreateStorageLocation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'CreateStorageLocationResultMessage', 'resultWrapper' => 'CreateStorageLocationResult', ], 'errors' => [ [ 'shape' => 'TooManyBucketsException', ], [ 'shape' => 'S3SubscriptionRequiredException', ], [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'DeleteApplication' => [ 'name' => 'DeleteApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteApplicationMessage', ], 'errors' => [ [ 'shape' => 'OperationInProgressException', ], ], ], 'DeleteApplicationVersion' => [ 'name' => 'DeleteApplicationVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteApplicationVersionMessage', ], 'errors' => [ [ 'shape' => 'SourceBundleDeletionException', ], [ 'shape' => 'InsufficientPrivilegesException', ], [ 'shape' => 'OperationInProgressException', ], [ 'shape' => 'S3LocationNotInServiceRegionException', ], ], ], 'DeleteConfigurationTemplate' => [ 'name' => 'DeleteConfigurationTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteConfigurationTemplateMessage', ], 'errors' => [ [ 'shape' => 'OperationInProgressException', ], ], ], 'DeleteEnvironmentConfiguration' => [ 'name' => 'DeleteEnvironmentConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteEnvironmentConfigurationMessage', ], ], 'DescribeApplicationVersions' => [ 'name' => 'DescribeApplicationVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeApplicationVersionsMessage', ], 'output' => [ 'shape' => 'ApplicationVersionDescriptionsMessage', 'resultWrapper' => 'DescribeApplicationVersionsResult', ], ], 'DescribeApplications' => [ 'name' => 'DescribeApplications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeApplicationsMessage', ], 'output' => [ 'shape' => 'ApplicationDescriptionsMessage', 'resultWrapper' => 'DescribeApplicationsResult', ], ], 'DescribeConfigurationOptions' => [ 'name' => 'DescribeConfigurationOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConfigurationOptionsMessage', ], 'output' => [ 'shape' => 'ConfigurationOptionsDescription', 'resultWrapper' => 'DescribeConfigurationOptionsResult', ], 'errors' => [ [ 'shape' => 'TooManyBucketsException', ], ], ], 'DescribeConfigurationSettings' => [ 'name' => 'DescribeConfigurationSettings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConfigurationSettingsMessage', ], 'output' => [ 'shape' => 'ConfigurationSettingsDescriptions', 'resultWrapper' => 'DescribeConfigurationSettingsResult', ], 'errors' => [ [ 'shape' => 'TooManyBucketsException', ], ], ], 'DescribeEnvironmentHealth' => [ 'name' => 'DescribeEnvironmentHealth', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEnvironmentHealthRequest', ], 'output' => [ 'shape' => 'DescribeEnvironmentHealthResult', 'resultWrapper' => 'DescribeEnvironmentHealthResult', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ElasticBeanstalkServiceException', ], ], ], 'DescribeEnvironmentManagedActionHistory' => [ 'name' => 'DescribeEnvironmentManagedActionHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEnvironmentManagedActionHistoryRequest', ], 'output' => [ 'shape' => 'DescribeEnvironmentManagedActionHistoryResult', 'resultWrapper' => 'DescribeEnvironmentManagedActionHistoryResult', ], 'errors' => [ [ 'shape' => 'ElasticBeanstalkServiceException', ], ], ], 'DescribeEnvironmentManagedActions' => [ 'name' => 'DescribeEnvironmentManagedActions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEnvironmentManagedActionsRequest', ], 'output' => [ 'shape' => 'DescribeEnvironmentManagedActionsResult', 'resultWrapper' => 'DescribeEnvironmentManagedActionsResult', ], 'errors' => [ [ 'shape' => 'ElasticBeanstalkServiceException', ], ], ], 'DescribeEnvironmentResources' => [ 'name' => 'DescribeEnvironmentResources', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEnvironmentResourcesMessage', ], 'output' => [ 'shape' => 'EnvironmentResourceDescriptionsMessage', 'resultWrapper' => 'DescribeEnvironmentResourcesResult', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'DescribeEnvironments' => [ 'name' => 'DescribeEnvironments', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEnvironmentsMessage', ], 'output' => [ 'shape' => 'EnvironmentDescriptionsMessage', 'resultWrapper' => 'DescribeEnvironmentsResult', ], ], 'DescribeEvents' => [ 'name' => 'DescribeEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventsMessage', ], 'output' => [ 'shape' => 'EventDescriptionsMessage', 'resultWrapper' => 'DescribeEventsResult', ], ], 'DescribeInstancesHealth' => [ 'name' => 'DescribeInstancesHealth', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstancesHealthRequest', ], 'output' => [ 'shape' => 'DescribeInstancesHealthResult', 'resultWrapper' => 'DescribeInstancesHealthResult', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ElasticBeanstalkServiceException', ], ], ], 'ListAvailableSolutionStacks' => [ 'name' => 'ListAvailableSolutionStacks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'ListAvailableSolutionStacksResultMessage', 'resultWrapper' => 'ListAvailableSolutionStacksResult', ], ], 'RebuildEnvironment' => [ 'name' => 'RebuildEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebuildEnvironmentMessage', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'RequestEnvironmentInfo' => [ 'name' => 'RequestEnvironmentInfo', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RequestEnvironmentInfoMessage', ], ], 'RestartAppServer' => [ 'name' => 'RestartAppServer', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestartAppServerMessage', ], ], 'RetrieveEnvironmentInfo' => [ 'name' => 'RetrieveEnvironmentInfo', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RetrieveEnvironmentInfoMessage', ], 'output' => [ 'shape' => 'RetrieveEnvironmentInfoResultMessage', 'resultWrapper' => 'RetrieveEnvironmentInfoResult', ], ], 'SwapEnvironmentCNAMEs' => [ 'name' => 'SwapEnvironmentCNAMEs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SwapEnvironmentCNAMEsMessage', ], ], 'TerminateEnvironment' => [ 'name' => 'TerminateEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TerminateEnvironmentMessage', ], 'output' => [ 'shape' => 'EnvironmentDescription', 'resultWrapper' => 'TerminateEnvironmentResult', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], ], ], 'UpdateApplication' => [ 'name' => 'UpdateApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateApplicationMessage', ], 'output' => [ 'shape' => 'ApplicationDescriptionMessage', 'resultWrapper' => 'UpdateApplicationResult', ], ], 'UpdateApplicationVersion' => [ 'name' => 'UpdateApplicationVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateApplicationVersionMessage', ], 'output' => [ 'shape' => 'ApplicationVersionDescriptionMessage', 'resultWrapper' => 'UpdateApplicationVersionResult', ], ], 'UpdateConfigurationTemplate' => [ 'name' => 'UpdateConfigurationTemplate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateConfigurationTemplateMessage', ], 'output' => [ 'shape' => 'ConfigurationSettingsDescription', 'resultWrapper' => 'UpdateConfigurationTemplateResult', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], [ 'shape' => 'TooManyBucketsException', ], ], ], 'UpdateEnvironment' => [ 'name' => 'UpdateEnvironment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateEnvironmentMessage', ], 'output' => [ 'shape' => 'EnvironmentDescription', 'resultWrapper' => 'UpdateEnvironmentResult', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], [ 'shape' => 'TooManyBucketsException', ], ], ], 'ValidateConfigurationSettings' => [ 'name' => 'ValidateConfigurationSettings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ValidateConfigurationSettingsMessage', ], 'output' => [ 'shape' => 'ConfigurationSettingsValidationMessages', 'resultWrapper' => 'ValidateConfigurationSettingsResult', ], 'errors' => [ [ 'shape' => 'InsufficientPrivilegesException', ], [ 'shape' => 'TooManyBucketsException', ], ], ], ], 'shapes' => [ 'AbortEnvironmentUpdateMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'AbortableOperationInProgress' => [ 'type' => 'boolean', ], 'ActionHistoryStatus' => [ 'type' => 'string', 'enum' => [ 'Completed', 'Failed', 'Unknown', ], ], 'ActionStatus' => [ 'type' => 'string', 'enum' => [ 'Scheduled', 'Pending', 'Running', 'Unknown', ], ], 'ActionType' => [ 'type' => 'string', 'enum' => [ 'InstanceRefresh', 'PlatformUpdate', 'Unknown', ], ], 'ApplicationDescription' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'Description' => [ 'shape' => 'Description', ], 'DateCreated' => [ 'shape' => 'CreationDate', ], 'DateUpdated' => [ 'shape' => 'UpdateDate', ], 'Versions' => [ 'shape' => 'VersionLabelsList', ], 'ConfigurationTemplates' => [ 'shape' => 'ConfigurationTemplateNamesList', ], ], ], 'ApplicationDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApplicationDescription', ], ], 'ApplicationDescriptionMessage' => [ 'type' => 'structure', 'members' => [ 'Application' => [ 'shape' => 'ApplicationDescription', ], ], ], 'ApplicationDescriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'Applications' => [ 'shape' => 'ApplicationDescriptionList', ], ], ], 'ApplicationMetrics' => [ 'type' => 'structure', 'members' => [ 'Duration' => [ 'shape' => 'NullableInteger', ], 'RequestCount' => [ 'shape' => 'RequestCount', ], 'StatusCodes' => [ 'shape' => 'StatusCodes', ], 'Latency' => [ 'shape' => 'Latency', ], ], ], 'ApplicationName' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'ApplicationNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApplicationName', ], ], 'ApplicationVersionDescription' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'Description' => [ 'shape' => 'Description', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'SourceBuildInformation' => [ 'shape' => 'SourceBuildInformation', ], 'SourceBundle' => [ 'shape' => 'S3Location', ], 'DateCreated' => [ 'shape' => 'CreationDate', ], 'DateUpdated' => [ 'shape' => 'UpdateDate', ], 'Status' => [ 'shape' => 'ApplicationVersionStatus', ], ], ], 'ApplicationVersionDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApplicationVersionDescription', ], ], 'ApplicationVersionDescriptionMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationVersion' => [ 'shape' => 'ApplicationVersionDescription', ], ], ], 'ApplicationVersionDescriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationVersions' => [ 'shape' => 'ApplicationVersionDescriptionList', ], 'NextToken' => [ 'shape' => 'Token', ], ], ], 'ApplicationVersionProccess' => [ 'type' => 'boolean', ], 'ApplicationVersionStatus' => [ 'type' => 'string', 'enum' => [ 'Processed', 'Unprocessed', 'Failed', 'Processing', ], ], 'ApplyEnvironmentManagedActionRequest' => [ 'type' => 'structure', 'required' => [ 'ActionId', ], 'members' => [ 'EnvironmentName' => [ 'shape' => 'String', ], 'EnvironmentId' => [ 'shape' => 'String', ], 'ActionId' => [ 'shape' => 'String', ], ], ], 'ApplyEnvironmentManagedActionResult' => [ 'type' => 'structure', 'members' => [ 'ActionId' => [ 'shape' => 'String', ], 'ActionDescription' => [ 'shape' => 'String', ], 'ActionType' => [ 'shape' => 'ActionType', ], 'Status' => [ 'shape' => 'String', ], ], ], 'AutoCreateApplication' => [ 'type' => 'boolean', ], 'AutoScalingGroup' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'ResourceId', ], ], ], 'AutoScalingGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AutoScalingGroup', ], ], 'AvailableSolutionStackDetailsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SolutionStackDescription', ], ], 'AvailableSolutionStackNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SolutionStackName', ], ], 'CPUUtilization' => [ 'type' => 'structure', 'members' => [ 'User' => [ 'shape' => 'NullableDouble', ], 'Nice' => [ 'shape' => 'NullableDouble', ], 'System' => [ 'shape' => 'NullableDouble', ], 'Idle' => [ 'shape' => 'NullableDouble', ], 'IOWait' => [ 'shape' => 'NullableDouble', ], 'IRQ' => [ 'shape' => 'NullableDouble', ], 'SoftIRQ' => [ 'shape' => 'NullableDouble', ], ], ], 'Cause' => [ 'type' => 'string', 'max' => 255, 'min' => 1, ], 'Causes' => [ 'type' => 'list', 'member' => [ 'shape' => 'Cause', ], ], 'CheckDNSAvailabilityMessage' => [ 'type' => 'structure', 'required' => [ 'CNAMEPrefix', ], 'members' => [ 'CNAMEPrefix' => [ 'shape' => 'DNSCnamePrefix', ], ], ], 'CheckDNSAvailabilityResultMessage' => [ 'type' => 'structure', 'members' => [ 'Available' => [ 'shape' => 'CnameAvailability', ], 'FullyQualifiedCNAME' => [ 'shape' => 'DNSCname', ], ], ], 'CnameAvailability' => [ 'type' => 'boolean', ], 'ComposeEnvironmentsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'GroupName' => [ 'shape' => 'GroupName', ], 'VersionLabels' => [ 'shape' => 'VersionLabels', ], ], ], 'ConfigurationDeploymentStatus' => [ 'type' => 'string', 'enum' => [ 'deployed', 'pending', 'failed', ], ], 'ConfigurationOptionDefaultValue' => [ 'type' => 'string', ], 'ConfigurationOptionDescription' => [ 'type' => 'structure', 'members' => [ 'Namespace' => [ 'shape' => 'OptionNamespace', ], 'Name' => [ 'shape' => 'ConfigurationOptionName', ], 'DefaultValue' => [ 'shape' => 'ConfigurationOptionDefaultValue', ], 'ChangeSeverity' => [ 'shape' => 'ConfigurationOptionSeverity', ], 'UserDefined' => [ 'shape' => 'UserDefinedOption', ], 'ValueType' => [ 'shape' => 'ConfigurationOptionValueType', ], 'ValueOptions' => [ 'shape' => 'ConfigurationOptionPossibleValues', ], 'MinValue' => [ 'shape' => 'OptionRestrictionMinValue', ], 'MaxValue' => [ 'shape' => 'OptionRestrictionMaxValue', ], 'MaxLength' => [ 'shape' => 'OptionRestrictionMaxLength', ], 'Regex' => [ 'shape' => 'OptionRestrictionRegex', ], ], ], 'ConfigurationOptionDescriptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationOptionDescription', ], ], 'ConfigurationOptionName' => [ 'type' => 'string', ], 'ConfigurationOptionPossibleValue' => [ 'type' => 'string', ], 'ConfigurationOptionPossibleValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationOptionPossibleValue', ], ], 'ConfigurationOptionSetting' => [ 'type' => 'structure', 'members' => [ 'ResourceName' => [ 'shape' => 'ResourceName', ], 'Namespace' => [ 'shape' => 'OptionNamespace', ], 'OptionName' => [ 'shape' => 'ConfigurationOptionName', ], 'Value' => [ 'shape' => 'ConfigurationOptionValue', ], ], ], 'ConfigurationOptionSettingsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationOptionSetting', ], ], 'ConfigurationOptionSeverity' => [ 'type' => 'string', ], 'ConfigurationOptionValue' => [ 'type' => 'string', ], 'ConfigurationOptionValueType' => [ 'type' => 'string', 'enum' => [ 'Scalar', 'List', ], ], 'ConfigurationOptionsDescription' => [ 'type' => 'structure', 'members' => [ 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'Options' => [ 'shape' => 'ConfigurationOptionDescriptionsList', ], ], ], 'ConfigurationSettingsDescription' => [ 'type' => 'structure', 'members' => [ 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'Description' => [ 'shape' => 'Description', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'DeploymentStatus' => [ 'shape' => 'ConfigurationDeploymentStatus', ], 'DateCreated' => [ 'shape' => 'CreationDate', ], 'DateUpdated' => [ 'shape' => 'UpdateDate', ], 'OptionSettings' => [ 'shape' => 'ConfigurationOptionSettingsList', ], ], ], 'ConfigurationSettingsDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationSettingsDescription', ], ], 'ConfigurationSettingsDescriptions' => [ 'type' => 'structure', 'members' => [ 'ConfigurationSettings' => [ 'shape' => 'ConfigurationSettingsDescriptionList', ], ], ], 'ConfigurationSettingsValidationMessages' => [ 'type' => 'structure', 'members' => [ 'Messages' => [ 'shape' => 'ValidationMessagesList', ], ], ], 'ConfigurationTemplateName' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'ConfigurationTemplateNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationTemplateName', ], ], 'CreateApplicationMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'CreateApplicationVersionMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'VersionLabel', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'Description' => [ 'shape' => 'Description', ], 'SourceBuildInformation' => [ 'shape' => 'SourceBuildInformation', ], 'SourceBundle' => [ 'shape' => 'S3Location', ], 'AutoCreateApplication' => [ 'shape' => 'AutoCreateApplication', ], 'Process' => [ 'shape' => 'ApplicationVersionProccess', ], ], ], 'CreateConfigurationTemplateMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'TemplateName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'SourceConfiguration' => [ 'shape' => 'SourceConfiguration', ], 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'Description' => [ 'shape' => 'Description', ], 'OptionSettings' => [ 'shape' => 'ConfigurationOptionSettingsList', ], ], ], 'CreateEnvironmentMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'GroupName' => [ 'shape' => 'GroupName', ], 'Description' => [ 'shape' => 'Description', ], 'CNAMEPrefix' => [ 'shape' => 'DNSCnamePrefix', ], 'Tier' => [ 'shape' => 'EnvironmentTier', ], 'Tags' => [ 'shape' => 'Tags', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'OptionSettings' => [ 'shape' => 'ConfigurationOptionSettingsList', ], 'OptionsToRemove' => [ 'shape' => 'OptionsSpecifierList', ], ], ], 'CreateStorageLocationResultMessage' => [ 'type' => 'structure', 'members' => [ 'S3Bucket' => [ 'shape' => 'S3Bucket', ], ], ], 'CreationDate' => [ 'type' => 'timestamp', ], 'DNSCname' => [ 'type' => 'string', 'max' => 255, 'min' => 1, ], 'DNSCnamePrefix' => [ 'type' => 'string', 'max' => 63, 'min' => 4, ], 'DeleteApplicationMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TerminateEnvByForce' => [ 'shape' => 'TerminateEnvForce', ], ], ], 'DeleteApplicationVersionMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'VersionLabel', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'DeleteSourceBundle' => [ 'shape' => 'DeleteSourceBundle', ], ], ], 'DeleteConfigurationTemplateMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'TemplateName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], ], ], 'DeleteEnvironmentConfigurationMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'EnvironmentName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'DeleteSourceBundle' => [ 'type' => 'boolean', ], 'Deployment' => [ 'type' => 'structure', 'members' => [ 'VersionLabel' => [ 'shape' => 'String', ], 'DeploymentId' => [ 'shape' => 'NullableLong', ], 'Status' => [ 'shape' => 'String', ], 'DeploymentTime' => [ 'shape' => 'DeploymentTimestamp', ], ], ], 'DeploymentTimestamp' => [ 'type' => 'timestamp', ], 'DescribeApplicationVersionsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabels' => [ 'shape' => 'VersionLabelsList', ], 'MaxRecords' => [ 'shape' => 'MaxRecords', ], 'NextToken' => [ 'shape' => 'Token', ], ], ], 'DescribeApplicationsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationNames' => [ 'shape' => 'ApplicationNamesList', ], ], ], 'DescribeConfigurationOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'Options' => [ 'shape' => 'OptionsSpecifierList', ], ], ], 'DescribeConfigurationSettingsMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'DescribeEnvironmentHealthRequest' => [ 'type' => 'structure', 'members' => [ 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'AttributeNames' => [ 'shape' => 'EnvironmentHealthAttributes', ], ], ], 'DescribeEnvironmentHealthResult' => [ 'type' => 'structure', 'members' => [ 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'HealthStatus' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'EnvironmentHealth', ], 'Color' => [ 'shape' => 'String', ], 'Causes' => [ 'shape' => 'Causes', ], 'ApplicationMetrics' => [ 'shape' => 'ApplicationMetrics', ], 'InstancesHealth' => [ 'shape' => 'InstanceHealthSummary', ], 'RefreshedAt' => [ 'shape' => 'RefreshedAt', ], ], ], 'DescribeEnvironmentManagedActionHistoryRequest' => [ 'type' => 'structure', 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'NextToken' => [ 'shape' => 'String', ], 'MaxItems' => [ 'shape' => 'Integer', ], ], ], 'DescribeEnvironmentManagedActionHistoryResult' => [ 'type' => 'structure', 'members' => [ 'ManagedActionHistoryItems' => [ 'shape' => 'ManagedActionHistoryItems', ], 'NextToken' => [ 'shape' => 'String', ], ], ], 'DescribeEnvironmentManagedActionsRequest' => [ 'type' => 'structure', 'members' => [ 'EnvironmentName' => [ 'shape' => 'String', ], 'EnvironmentId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'ActionStatus', ], ], ], 'DescribeEnvironmentManagedActionsResult' => [ 'type' => 'structure', 'members' => [ 'ManagedActions' => [ 'shape' => 'ManagedActions', ], ], ], 'DescribeEnvironmentResourcesMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'DescribeEnvironmentsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'EnvironmentIds' => [ 'shape' => 'EnvironmentIdList', ], 'EnvironmentNames' => [ 'shape' => 'EnvironmentNamesList', ], 'IncludeDeleted' => [ 'shape' => 'IncludeDeleted', ], 'IncludedDeletedBackTo' => [ 'shape' => 'IncludeDeletedBackTo', ], ], ], 'DescribeEventsMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'RequestId' => [ 'shape' => 'RequestId', ], 'Severity' => [ 'shape' => 'EventSeverity', ], 'StartTime' => [ 'shape' => 'TimeFilterStart', ], 'EndTime' => [ 'shape' => 'TimeFilterEnd', ], 'MaxRecords' => [ 'shape' => 'MaxRecords', ], 'NextToken' => [ 'shape' => 'Token', ], ], ], 'DescribeInstancesHealthRequest' => [ 'type' => 'structure', 'members' => [ 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'AttributeNames' => [ 'shape' => 'InstancesHealthAttributes', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeInstancesHealthResult' => [ 'type' => 'structure', 'members' => [ 'InstanceHealthList' => [ 'shape' => 'InstanceHealthList', ], 'RefreshedAt' => [ 'shape' => 'RefreshedAt', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'Description' => [ 'type' => 'string', 'max' => 200, ], 'Ec2InstanceId' => [ 'type' => 'string', ], 'ElasticBeanstalkServiceException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ExceptionMessage', ], ], 'exception' => true, ], 'EndpointURL' => [ 'type' => 'string', ], 'EnvironmentDescription' => [ 'type' => 'structure', 'members' => [ 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'Description' => [ 'shape' => 'Description', ], 'EndpointURL' => [ 'shape' => 'EndpointURL', ], 'CNAME' => [ 'shape' => 'DNSCname', ], 'DateCreated' => [ 'shape' => 'CreationDate', ], 'DateUpdated' => [ 'shape' => 'UpdateDate', ], 'Status' => [ 'shape' => 'EnvironmentStatus', ], 'AbortableOperationInProgress' => [ 'shape' => 'AbortableOperationInProgress', ], 'Health' => [ 'shape' => 'EnvironmentHealth', ], 'HealthStatus' => [ 'shape' => 'EnvironmentHealthStatus', ], 'Resources' => [ 'shape' => 'EnvironmentResourcesDescription', ], 'Tier' => [ 'shape' => 'EnvironmentTier', ], 'EnvironmentLinks' => [ 'shape' => 'EnvironmentLinks', ], ], ], 'EnvironmentDescriptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnvironmentDescription', ], ], 'EnvironmentDescriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'Environments' => [ 'shape' => 'EnvironmentDescriptionsList', ], ], ], 'EnvironmentHealth' => [ 'type' => 'string', 'enum' => [ 'Green', 'Yellow', 'Red', 'Grey', ], ], 'EnvironmentHealthAttribute' => [ 'type' => 'string', 'enum' => [ 'Status', 'Color', 'Causes', 'ApplicationMetrics', 'InstancesHealth', 'All', 'HealthStatus', 'RefreshedAt', ], ], 'EnvironmentHealthAttributes' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnvironmentHealthAttribute', ], ], 'EnvironmentHealthStatus' => [ 'type' => 'string', 'enum' => [ 'NoData', 'Unknown', 'Pending', 'Ok', 'Info', 'Warning', 'Degraded', 'Severe', ], ], 'EnvironmentId' => [ 'type' => 'string', ], 'EnvironmentIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnvironmentId', ], ], 'EnvironmentInfoDescription' => [ 'type' => 'structure', 'members' => [ 'InfoType' => [ 'shape' => 'EnvironmentInfoType', ], 'Ec2InstanceId' => [ 'shape' => 'Ec2InstanceId', ], 'SampleTimestamp' => [ 'shape' => 'SampleTimestamp', ], 'Message' => [ 'shape' => 'Message', ], ], ], 'EnvironmentInfoDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnvironmentInfoDescription', ], ], 'EnvironmentInfoType' => [ 'type' => 'string', 'enum' => [ 'tail', 'bundle', ], ], 'EnvironmentLink' => [ 'type' => 'structure', 'members' => [ 'LinkName' => [ 'shape' => 'String', ], 'EnvironmentName' => [ 'shape' => 'String', ], ], ], 'EnvironmentLinks' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnvironmentLink', ], ], 'EnvironmentName' => [ 'type' => 'string', 'max' => 40, 'min' => 4, ], 'EnvironmentNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EnvironmentName', ], ], 'EnvironmentResourceDescription' => [ 'type' => 'structure', 'members' => [ 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'AutoScalingGroups' => [ 'shape' => 'AutoScalingGroupList', ], 'Instances' => [ 'shape' => 'InstanceList', ], 'LaunchConfigurations' => [ 'shape' => 'LaunchConfigurationList', ], 'LoadBalancers' => [ 'shape' => 'LoadBalancerList', ], 'Triggers' => [ 'shape' => 'TriggerList', ], 'Queues' => [ 'shape' => 'QueueList', ], ], ], 'EnvironmentResourceDescriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentResources' => [ 'shape' => 'EnvironmentResourceDescription', ], ], ], 'EnvironmentResourcesDescription' => [ 'type' => 'structure', 'members' => [ 'LoadBalancer' => [ 'shape' => 'LoadBalancerDescription', ], ], ], 'EnvironmentStatus' => [ 'type' => 'string', 'enum' => [ 'Launching', 'Updating', 'Ready', 'Terminating', 'Terminated', ], ], 'EnvironmentTier' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Type' => [ 'shape' => 'String', ], 'Version' => [ 'shape' => 'String', ], ], ], 'EventDate' => [ 'type' => 'timestamp', ], 'EventDescription' => [ 'type' => 'structure', 'members' => [ 'EventDate' => [ 'shape' => 'EventDate', ], 'Message' => [ 'shape' => 'EventMessage', ], 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'RequestId' => [ 'shape' => 'RequestId', ], 'Severity' => [ 'shape' => 'EventSeverity', ], ], ], 'EventDescriptionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventDescription', ], ], 'EventDescriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'Events' => [ 'shape' => 'EventDescriptionList', ], 'NextToken' => [ 'shape' => 'Token', ], ], ], 'EventMessage' => [ 'type' => 'string', ], 'EventSeverity' => [ 'type' => 'string', 'enum' => [ 'TRACE', 'DEBUG', 'INFO', 'WARN', 'ERROR', 'FATAL', ], ], 'ExceptionMessage' => [ 'type' => 'string', ], 'FailureType' => [ 'type' => 'string', 'enum' => [ 'UpdateCancelled', 'CancellationFailed', 'RollbackFailed', 'RollbackSuccessful', 'InternalFailure', 'InvalidEnvironmentState', 'PermissionsError', ], ], 'FileTypeExtension' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'ForceTerminate' => [ 'type' => 'boolean', ], 'GroupName' => [ 'type' => 'string', 'max' => 19, 'min' => 1, ], 'IncludeDeleted' => [ 'type' => 'boolean', ], 'IncludeDeletedBackTo' => [ 'type' => 'timestamp', ], 'Instance' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'ResourceId', ], ], ], 'InstanceHealthList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SingleInstanceHealth', ], ], 'InstanceHealthSummary' => [ 'type' => 'structure', 'members' => [ 'NoData' => [ 'shape' => 'NullableInteger', ], 'Unknown' => [ 'shape' => 'NullableInteger', ], 'Pending' => [ 'shape' => 'NullableInteger', ], 'Ok' => [ 'shape' => 'NullableInteger', ], 'Info' => [ 'shape' => 'NullableInteger', ], 'Warning' => [ 'shape' => 'NullableInteger', ], 'Degraded' => [ 'shape' => 'NullableInteger', ], 'Severe' => [ 'shape' => 'NullableInteger', ], ], ], 'InstanceId' => [ 'type' => 'string', 'max' => 255, 'min' => 1, ], 'InstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Instance', ], ], 'InstancesHealthAttribute' => [ 'type' => 'string', 'enum' => [ 'HealthStatus', 'Color', 'Causes', 'ApplicationMetrics', 'RefreshedAt', 'LaunchedAt', 'System', 'Deployment', 'AvailabilityZone', 'InstanceType', 'All', ], ], 'InstancesHealthAttributes' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstancesHealthAttribute', ], ], 'InsufficientPrivilegesException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientPrivilegesException', 'httpStatusCode' => 403, 'senderFault' => true, ], 'exception' => true, ], 'Integer' => [ 'type' => 'integer', ], 'InvalidRequestException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidRequestException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Latency' => [ 'type' => 'structure', 'members' => [ 'P999' => [ 'shape' => 'NullableDouble', ], 'P99' => [ 'shape' => 'NullableDouble', ], 'P95' => [ 'shape' => 'NullableDouble', ], 'P90' => [ 'shape' => 'NullableDouble', ], 'P85' => [ 'shape' => 'NullableDouble', ], 'P75' => [ 'shape' => 'NullableDouble', ], 'P50' => [ 'shape' => 'NullableDouble', ], 'P10' => [ 'shape' => 'NullableDouble', ], ], ], 'LaunchConfiguration' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'ResourceId', ], ], ], 'LaunchConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchConfiguration', ], ], 'LaunchedAt' => [ 'type' => 'timestamp', ], 'ListAvailableSolutionStacksResultMessage' => [ 'type' => 'structure', 'members' => [ 'SolutionStacks' => [ 'shape' => 'AvailableSolutionStackNamesList', ], 'SolutionStackDetails' => [ 'shape' => 'AvailableSolutionStackDetailsList', ], ], ], 'Listener' => [ 'type' => 'structure', 'members' => [ 'Protocol' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], ], ], 'LoadAverage' => [ 'type' => 'list', 'member' => [ 'shape' => 'LoadAverageValue', ], ], 'LoadAverageValue' => [ 'type' => 'double', ], 'LoadBalancer' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'ResourceId', ], ], ], 'LoadBalancerDescription' => [ 'type' => 'structure', 'members' => [ 'LoadBalancerName' => [ 'shape' => 'String', ], 'Domain' => [ 'shape' => 'String', ], 'Listeners' => [ 'shape' => 'LoadBalancerListenersDescription', ], ], ], 'LoadBalancerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LoadBalancer', ], ], 'LoadBalancerListenersDescription' => [ 'type' => 'list', 'member' => [ 'shape' => 'Listener', ], ], 'ManagedAction' => [ 'type' => 'structure', 'members' => [ 'ActionId' => [ 'shape' => 'String', ], 'ActionDescription' => [ 'shape' => 'String', ], 'ActionType' => [ 'shape' => 'ActionType', ], 'Status' => [ 'shape' => 'ActionStatus', ], 'WindowStartTime' => [ 'shape' => 'Timestamp', ], ], ], 'ManagedActionHistoryItem' => [ 'type' => 'structure', 'members' => [ 'ActionId' => [ 'shape' => 'String', ], 'ActionType' => [ 'shape' => 'ActionType', ], 'ActionDescription' => [ 'shape' => 'String', ], 'FailureType' => [ 'shape' => 'FailureType', ], 'Status' => [ 'shape' => 'ActionHistoryStatus', ], 'FailureDescription' => [ 'shape' => 'String', ], 'ExecutedTime' => [ 'shape' => 'Timestamp', ], 'FinishedTime' => [ 'shape' => 'Timestamp', ], ], ], 'ManagedActionHistoryItems' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedActionHistoryItem', ], 'max' => 100, 'min' => 1, ], 'ManagedActionInvalidStateException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ManagedActionInvalidStateException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ManagedActions' => [ 'type' => 'list', 'member' => [ 'shape' => 'ManagedAction', ], 'max' => 100, 'min' => 1, ], 'MaxRecords' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'Message' => [ 'type' => 'string', ], 'NextToken' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'NullableDouble' => [ 'type' => 'double', ], 'NullableInteger' => [ 'type' => 'integer', ], 'NullableLong' => [ 'type' => 'long', ], 'OperationInProgressException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OperationInProgressFailure', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'OptionNamespace' => [ 'type' => 'string', ], 'OptionRestrictionMaxLength' => [ 'type' => 'integer', ], 'OptionRestrictionMaxValue' => [ 'type' => 'integer', ], 'OptionRestrictionMinValue' => [ 'type' => 'integer', ], 'OptionRestrictionRegex' => [ 'type' => 'structure', 'members' => [ 'Pattern' => [ 'shape' => 'RegexPattern', ], 'Label' => [ 'shape' => 'RegexLabel', ], ], ], 'OptionSpecification' => [ 'type' => 'structure', 'members' => [ 'ResourceName' => [ 'shape' => 'ResourceName', ], 'Namespace' => [ 'shape' => 'OptionNamespace', ], 'OptionName' => [ 'shape' => 'ConfigurationOptionName', ], ], ], 'OptionsSpecifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionSpecification', ], ], 'Queue' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'URL' => [ 'shape' => 'String', ], ], ], 'QueueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Queue', ], ], 'RebuildEnvironmentMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'RefreshedAt' => [ 'type' => 'timestamp', ], 'RegexLabel' => [ 'type' => 'string', ], 'RegexPattern' => [ 'type' => 'string', ], 'RequestCount' => [ 'type' => 'integer', ], 'RequestEnvironmentInfoMessage' => [ 'type' => 'structure', 'required' => [ 'InfoType', ], 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'InfoType' => [ 'shape' => 'EnvironmentInfoType', ], ], ], 'RequestId' => [ 'type' => 'string', ], 'ResourceId' => [ 'type' => 'string', ], 'ResourceName' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'RestartAppServerMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'RetrieveEnvironmentInfoMessage' => [ 'type' => 'structure', 'required' => [ 'InfoType', ], 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'InfoType' => [ 'shape' => 'EnvironmentInfoType', ], ], ], 'RetrieveEnvironmentInfoResultMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentInfo' => [ 'shape' => 'EnvironmentInfoDescriptionList', ], ], ], 'S3Bucket' => [ 'type' => 'string', 'max' => 255, ], 'S3Key' => [ 'type' => 'string', 'max' => 1024, ], 'S3Location' => [ 'type' => 'structure', 'members' => [ 'S3Bucket' => [ 'shape' => 'S3Bucket', ], 'S3Key' => [ 'shape' => 'S3Key', ], ], ], 'S3LocationNotInServiceRegionException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'S3LocationNotInServiceRegionException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'S3SubscriptionRequiredException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'S3SubscriptionRequiredException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SampleTimestamp' => [ 'type' => 'timestamp', ], 'SingleInstanceHealth' => [ 'type' => 'structure', 'members' => [ 'InstanceId' => [ 'shape' => 'InstanceId', ], 'HealthStatus' => [ 'shape' => 'String', ], 'Color' => [ 'shape' => 'String', ], 'Causes' => [ 'shape' => 'Causes', ], 'LaunchedAt' => [ 'shape' => 'LaunchedAt', ], 'ApplicationMetrics' => [ 'shape' => 'ApplicationMetrics', ], 'System' => [ 'shape' => 'SystemStatus', ], 'Deployment' => [ 'shape' => 'Deployment', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'InstanceType' => [ 'shape' => 'String', ], ], ], 'SolutionStackDescription' => [ 'type' => 'structure', 'members' => [ 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'PermittedFileTypes' => [ 'shape' => 'SolutionStackFileTypeList', ], ], ], 'SolutionStackFileTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FileTypeExtension', ], ], 'SolutionStackName' => [ 'type' => 'string', 'max' => 100, ], 'SourceBuildInformation' => [ 'type' => 'structure', 'required' => [ 'SourceType', 'SourceRepository', 'SourceLocation', ], 'members' => [ 'SourceType' => [ 'shape' => 'SourceType', ], 'SourceRepository' => [ 'shape' => 'SourceRepository', ], 'SourceLocation' => [ 'shape' => 'SourceLocation', ], ], ], 'SourceBundleDeletionException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SourceBundleDeletionFailure', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SourceConfiguration' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], ], ], 'SourceLocation' => [ 'type' => 'string', 'max' => 255, 'min' => 3, 'pattern' => '.+/.+', ], 'SourceRepository' => [ 'type' => 'string', 'enum' => [ 'CodeCommit', ], ], 'SourceType' => [ 'type' => 'string', 'enum' => [ 'Git', ], ], 'StatusCodes' => [ 'type' => 'structure', 'members' => [ 'Status2xx' => [ 'shape' => 'NullableInteger', ], 'Status3xx' => [ 'shape' => 'NullableInteger', ], 'Status4xx' => [ 'shape' => 'NullableInteger', ], 'Status5xx' => [ 'shape' => 'NullableInteger', ], ], ], 'String' => [ 'type' => 'string', ], 'SwapEnvironmentCNAMEsMessage' => [ 'type' => 'structure', 'members' => [ 'SourceEnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'SourceEnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'DestinationEnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'DestinationEnvironmentName' => [ 'shape' => 'EnvironmentName', ], ], ], 'SystemStatus' => [ 'type' => 'structure', 'members' => [ 'CPUUtilization' => [ 'shape' => 'CPUUtilization', ], 'LoadAverage' => [ 'shape' => 'LoadAverage', ], ], ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'TagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'Tags' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], ], 'TerminateEnvForce' => [ 'type' => 'boolean', ], 'TerminateEnvironmentMessage' => [ 'type' => 'structure', 'members' => [ 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'TerminateResources' => [ 'shape' => 'TerminateEnvironmentResources', ], 'ForceTerminate' => [ 'shape' => 'ForceTerminate', ], ], ], 'TerminateEnvironmentResources' => [ 'type' => 'boolean', ], 'TimeFilterEnd' => [ 'type' => 'timestamp', ], 'TimeFilterStart' => [ 'type' => 'timestamp', ], 'Timestamp' => [ 'type' => 'timestamp', ], 'Token' => [ 'type' => 'string', ], 'TooManyApplicationVersionsException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'TooManyApplicationsException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TooManyApplicationsException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'TooManyBucketsException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TooManyBucketsException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'TooManyConfigurationTemplatesException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TooManyConfigurationTemplatesException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'TooManyEnvironmentsException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TooManyEnvironmentsException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Trigger' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'ResourceId', ], ], ], 'TriggerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Trigger', ], ], 'UpdateApplicationMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'UpdateApplicationVersionMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'VersionLabel', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'UpdateConfigurationTemplateMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'TemplateName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'Description' => [ 'shape' => 'Description', ], 'OptionSettings' => [ 'shape' => 'ConfigurationOptionSettingsList', ], 'OptionsToRemove' => [ 'shape' => 'OptionsSpecifierList', ], ], ], 'UpdateDate' => [ 'type' => 'timestamp', ], 'UpdateEnvironmentMessage' => [ 'type' => 'structure', 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'EnvironmentId' => [ 'shape' => 'EnvironmentId', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'GroupName' => [ 'shape' => 'GroupName', ], 'Description' => [ 'shape' => 'Description', ], 'Tier' => [ 'shape' => 'EnvironmentTier', ], 'VersionLabel' => [ 'shape' => 'VersionLabel', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'SolutionStackName' => [ 'shape' => 'SolutionStackName', ], 'OptionSettings' => [ 'shape' => 'ConfigurationOptionSettingsList', ], 'OptionsToRemove' => [ 'shape' => 'OptionsSpecifierList', ], ], ], 'UserDefinedOption' => [ 'type' => 'boolean', ], 'ValidateConfigurationSettingsMessage' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'OptionSettings', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'TemplateName' => [ 'shape' => 'ConfigurationTemplateName', ], 'EnvironmentName' => [ 'shape' => 'EnvironmentName', ], 'OptionSettings' => [ 'shape' => 'ConfigurationOptionSettingsList', ], ], ], 'ValidationMessage' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ValidationMessageString', ], 'Severity' => [ 'shape' => 'ValidationSeverity', ], 'Namespace' => [ 'shape' => 'OptionNamespace', ], 'OptionName' => [ 'shape' => 'ConfigurationOptionName', ], ], ], 'ValidationMessageString' => [ 'type' => 'string', ], 'ValidationMessagesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ValidationMessage', ], ], 'ValidationSeverity' => [ 'type' => 'string', 'enum' => [ 'error', 'warning', ], ], 'VersionLabel' => [ 'type' => 'string', 'max' => 100, 'min' => 1, ], 'VersionLabels' => [ 'type' => 'list', 'member' => [ 'shape' => 'VersionLabel', ], ], 'VersionLabelsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VersionLabel', ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/api-2.json.php index 3bd91dfb2..ea28f6312 100644 --- a/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2009-03-31', 'endpointPrefix' => 'elasticmapreduce', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'Amazon EMR', 'serviceFullName' => 'Amazon Elastic MapReduce', 'signatureVersion' => 'v4', 'targetPrefix' => 'ElasticMapReduce', 'timestampFormat' => 'unixTimestamp', ], 'operations' => [ 'AddInstanceGroups' => [ 'name' => 'AddInstanceGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddInstanceGroupsInput', ], 'output' => [ 'shape' => 'AddInstanceGroupsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'AddJobFlowSteps' => [ 'name' => 'AddJobFlowSteps', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddJobFlowStepsInput', ], 'output' => [ 'shape' => 'AddJobFlowStepsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'AddTags' => [ 'name' => 'AddTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddTagsInput', ], 'output' => [ 'shape' => 'AddTagsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'DescribeCluster' => [ 'name' => 'DescribeCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterInput', ], 'output' => [ 'shape' => 'DescribeClusterOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'DescribeJobFlows' => [ 'name' => 'DescribeJobFlows', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeJobFlowsInput', ], 'output' => [ 'shape' => 'DescribeJobFlowsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], 'deprecated' => true, ], 'DescribeStep' => [ 'name' => 'DescribeStep', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStepInput', ], 'output' => [ 'shape' => 'DescribeStepOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ListBootstrapActions' => [ 'name' => 'ListBootstrapActions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListBootstrapActionsInput', ], 'output' => [ 'shape' => 'ListBootstrapActionsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ListClusters' => [ 'name' => 'ListClusters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListClustersInput', ], 'output' => [ 'shape' => 'ListClustersOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ListInstanceGroups' => [ 'name' => 'ListInstanceGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListInstanceGroupsInput', ], 'output' => [ 'shape' => 'ListInstanceGroupsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ListInstances' => [ 'name' => 'ListInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListInstancesInput', ], 'output' => [ 'shape' => 'ListInstancesOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ListSteps' => [ 'name' => 'ListSteps', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListStepsInput', ], 'output' => [ 'shape' => 'ListStepsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ModifyInstanceGroups' => [ 'name' => 'ModifyInstanceGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceGroupsInput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'RemoveTags' => [ 'name' => 'RemoveTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveTagsInput', ], 'output' => [ 'shape' => 'RemoveTagsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'RunJobFlow' => [ 'name' => 'RunJobFlow', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RunJobFlowInput', ], 'output' => [ 'shape' => 'RunJobFlowOutput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'SetTerminationProtection' => [ 'name' => 'SetTerminationProtection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetTerminationProtectionInput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'SetVisibleToAllUsers' => [ 'name' => 'SetVisibleToAllUsers', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetVisibleToAllUsersInput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'TerminateJobFlows' => [ 'name' => 'TerminateJobFlows', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TerminateJobFlowsInput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], ], 'shapes' => [ 'ActionOnFailure' => [ 'type' => 'string', 'enum' => [ 'TERMINATE_JOB_FLOW', 'TERMINATE_CLUSTER', 'CANCEL_AND_WAIT', 'CONTINUE', ], ], 'AddInstanceGroupsInput' => [ 'type' => 'structure', 'required' => [ 'InstanceGroups', 'JobFlowId', ], 'members' => [ 'InstanceGroups' => [ 'shape' => 'InstanceGroupConfigList', ], 'JobFlowId' => [ 'shape' => 'XmlStringMaxLen256', ], ], ], 'AddInstanceGroupsOutput' => [ 'type' => 'structure', 'members' => [ 'JobFlowId' => [ 'shape' => 'XmlStringMaxLen256', ], 'InstanceGroupIds' => [ 'shape' => 'InstanceGroupIdsList', ], ], ], 'AddJobFlowStepsInput' => [ 'type' => 'structure', 'required' => [ 'JobFlowId', 'Steps', ], 'members' => [ 'JobFlowId' => [ 'shape' => 'XmlStringMaxLen256', ], 'Steps' => [ 'shape' => 'StepConfigList', ], ], ], 'AddJobFlowStepsOutput' => [ 'type' => 'structure', 'members' => [ 'StepIds' => [ 'shape' => 'StepIdsList', ], ], ], 'AddTagsInput' => [ 'type' => 'structure', 'required' => [ 'ResourceId', 'Tags', ], 'members' => [ 'ResourceId' => [ 'shape' => 'ResourceId', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'AddTagsOutput' => [ 'type' => 'structure', 'members' => [], ], 'Application' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Version' => [ 'shape' => 'String', ], 'Args' => [ 'shape' => 'StringList', ], 'AdditionalInfo' => [ 'shape' => 'StringMap', ], ], ], 'ApplicationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Application', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'BooleanObject' => [ 'type' => 'boolean', ], 'BootstrapActionConfig' => [ 'type' => 'structure', 'required' => [ 'Name', 'ScriptBootstrapAction', ], 'members' => [ 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'ScriptBootstrapAction' => [ 'shape' => 'ScriptBootstrapActionConfig', ], ], ], 'BootstrapActionConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BootstrapActionConfig', ], ], 'BootstrapActionDetail' => [ 'type' => 'structure', 'members' => [ 'BootstrapActionConfig' => [ 'shape' => 'BootstrapActionConfig', ], ], ], 'BootstrapActionDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BootstrapActionDetail', ], ], 'Cluster' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'ClusterId', ], 'Name' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'ClusterStatus', ], 'Ec2InstanceAttributes' => [ 'shape' => 'Ec2InstanceAttributes', ], 'LogUri' => [ 'shape' => 'String', ], 'RequestedAmiVersion' => [ 'shape' => 'String', ], 'RunningAmiVersion' => [ 'shape' => 'String', ], 'ReleaseLabel' => [ 'shape' => 'String', ], 'AutoTerminate' => [ 'shape' => 'Boolean', ], 'TerminationProtected' => [ 'shape' => 'Boolean', ], 'VisibleToAllUsers' => [ 'shape' => 'Boolean', ], 'Applications' => [ 'shape' => 'ApplicationList', ], 'Tags' => [ 'shape' => 'TagList', ], 'ServiceRole' => [ 'shape' => 'String', ], 'NormalizedInstanceHours' => [ 'shape' => 'Integer', ], 'MasterPublicDnsName' => [ 'shape' => 'String', ], 'Configurations' => [ 'shape' => 'ConfigurationList', ], ], ], 'ClusterId' => [ 'type' => 'string', ], 'ClusterState' => [ 'type' => 'string', 'enum' => [ 'STARTING', 'BOOTSTRAPPING', 'RUNNING', 'WAITING', 'TERMINATING', 'TERMINATED', 'TERMINATED_WITH_ERRORS', ], ], 'ClusterStateChangeReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClusterStateChangeReasonCode', ], 'Message' => [ 'shape' => 'String', ], ], ], 'ClusterStateChangeReasonCode' => [ 'type' => 'string', 'enum' => [ 'INTERNAL_ERROR', 'VALIDATION_ERROR', 'INSTANCE_FAILURE', 'BOOTSTRAP_FAILURE', 'USER_REQUEST', 'STEP_FAILURE', 'ALL_STEPS_COMPLETED', ], ], 'ClusterStateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterState', ], ], 'ClusterStatus' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'ClusterState', ], 'StateChangeReason' => [ 'shape' => 'ClusterStateChangeReason', ], 'Timeline' => [ 'shape' => 'ClusterTimeline', ], ], ], 'ClusterSummary' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'ClusterId', ], 'Name' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'ClusterStatus', ], 'NormalizedInstanceHours' => [ 'shape' => 'Integer', ], ], ], 'ClusterSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterSummary', ], ], 'ClusterTimeline' => [ 'type' => 'structure', 'members' => [ 'CreationDateTime' => [ 'shape' => 'Date', ], 'ReadyDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], ], ], 'Command' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'ScriptPath' => [ 'shape' => 'String', ], 'Args' => [ 'shape' => 'StringList', ], ], ], 'CommandList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Command', ], ], 'Configuration' => [ 'type' => 'structure', 'members' => [ 'Classification' => [ 'shape' => 'String', ], 'Configurations' => [ 'shape' => 'ConfigurationList', ], 'Properties' => [ 'shape' => 'StringMap', ], ], ], 'ConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Configuration', ], ], 'Date' => [ 'type' => 'timestamp', ], 'DescribeClusterInput' => [ 'type' => 'structure', 'required' => [ 'ClusterId', ], 'members' => [ 'ClusterId' => [ 'shape' => 'ClusterId', ], ], ], 'DescribeClusterOutput' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'DescribeJobFlowsInput' => [ 'type' => 'structure', 'members' => [ 'CreatedAfter' => [ 'shape' => 'Date', ], 'CreatedBefore' => [ 'shape' => 'Date', ], 'JobFlowIds' => [ 'shape' => 'XmlStringList', ], 'JobFlowStates' => [ 'shape' => 'JobFlowExecutionStateList', ], ], ], 'DescribeJobFlowsOutput' => [ 'type' => 'structure', 'members' => [ 'JobFlows' => [ 'shape' => 'JobFlowDetailList', ], ], ], 'DescribeStepInput' => [ 'type' => 'structure', 'required' => [ 'ClusterId', 'StepId', ], 'members' => [ 'ClusterId' => [ 'shape' => 'ClusterId', ], 'StepId' => [ 'shape' => 'StepId', ], ], ], 'DescribeStepOutput' => [ 'type' => 'structure', 'members' => [ 'Step' => [ 'shape' => 'Step', ], ], ], 'EC2InstanceIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', ], ], 'EC2InstanceIdsToTerminateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', ], ], 'EbsBlockDevice' => [ 'type' => 'structure', 'members' => [ 'VolumeSpecification' => [ 'shape' => 'VolumeSpecification', ], 'Device' => [ 'shape' => 'String', ], ], ], 'EbsBlockDeviceConfig' => [ 'type' => 'structure', 'required' => [ 'VolumeSpecification', ], 'members' => [ 'VolumeSpecification' => [ 'shape' => 'VolumeSpecification', ], 'VolumesPerInstance' => [ 'shape' => 'Integer', ], ], ], 'EbsBlockDeviceConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EbsBlockDeviceConfig', ], ], 'EbsBlockDeviceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EbsBlockDevice', ], ], 'EbsConfiguration' => [ 'type' => 'structure', 'members' => [ 'EbsBlockDeviceConfigs' => [ 'shape' => 'EbsBlockDeviceConfigList', ], 'EbsOptimized' => [ 'shape' => 'BooleanObject', ], ], ], 'EbsVolume' => [ 'type' => 'structure', 'members' => [ 'Device' => [ 'shape' => 'String', ], 'VolumeId' => [ 'shape' => 'String', ], ], ], 'EbsVolumeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EbsVolume', ], ], 'Ec2InstanceAttributes' => [ 'type' => 'structure', 'members' => [ 'Ec2KeyName' => [ 'shape' => 'String', ], 'Ec2SubnetId' => [ 'shape' => 'String', ], 'Ec2AvailabilityZone' => [ 'shape' => 'String', ], 'IamInstanceProfile' => [ 'shape' => 'String', ], 'EmrManagedMasterSecurityGroup' => [ 'shape' => 'String', ], 'EmrManagedSlaveSecurityGroup' => [ 'shape' => 'String', ], 'ServiceAccessSecurityGroup' => [ 'shape' => 'String', ], 'AdditionalMasterSecurityGroups' => [ 'shape' => 'StringList', ], 'AdditionalSlaveSecurityGroups' => [ 'shape' => 'StringList', ], ], ], 'ErrorCode' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'ErrorMessage' => [ 'type' => 'string', ], 'FailureDetails' => [ 'type' => 'structure', 'members' => [ 'Reason' => [ 'shape' => 'String', ], 'Message' => [ 'shape' => 'String', ], 'LogFile' => [ 'shape' => 'String', ], ], ], 'HadoopJarStepConfig' => [ 'type' => 'structure', 'required' => [ 'Jar', ], 'members' => [ 'Properties' => [ 'shape' => 'KeyValueList', ], 'Jar' => [ 'shape' => 'XmlString', ], 'MainClass' => [ 'shape' => 'XmlString', ], 'Args' => [ 'shape' => 'XmlStringList', ], ], ], 'HadoopStepConfig' => [ 'type' => 'structure', 'members' => [ 'Jar' => [ 'shape' => 'String', ], 'Properties' => [ 'shape' => 'StringMap', ], 'MainClass' => [ 'shape' => 'String', ], 'Args' => [ 'shape' => 'StringList', ], ], ], 'Instance' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'InstanceId', ], 'Ec2InstanceId' => [ 'shape' => 'InstanceId', ], 'PublicDnsName' => [ 'shape' => 'String', ], 'PublicIpAddress' => [ 'shape' => 'String', ], 'PrivateDnsName' => [ 'shape' => 'String', ], 'PrivateIpAddress' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'InstanceStatus', ], 'InstanceGroupId' => [ 'shape' => 'String', ], 'EbsVolumes' => [ 'shape' => 'EbsVolumeList', ], ], ], 'InstanceGroup' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'InstanceGroupId', ], 'Name' => [ 'shape' => 'String', ], 'Market' => [ 'shape' => 'MarketType', ], 'InstanceGroupType' => [ 'shape' => 'InstanceGroupType', ], 'BidPrice' => [ 'shape' => 'String', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'RequestedInstanceCount' => [ 'shape' => 'Integer', ], 'RunningInstanceCount' => [ 'shape' => 'Integer', ], 'Status' => [ 'shape' => 'InstanceGroupStatus', ], 'Configurations' => [ 'shape' => 'ConfigurationList', ], 'EbsBlockDevices' => [ 'shape' => 'EbsBlockDeviceList', ], 'EbsOptimized' => [ 'shape' => 'BooleanObject', ], 'ShrinkPolicy' => [ 'shape' => 'ShrinkPolicy', ], ], ], 'InstanceGroupConfig' => [ 'type' => 'structure', 'required' => [ 'InstanceRole', 'InstanceType', 'InstanceCount', ], 'members' => [ 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'Market' => [ 'shape' => 'MarketType', ], 'InstanceRole' => [ 'shape' => 'InstanceRoleType', ], 'BidPrice' => [ 'shape' => 'XmlStringMaxLen256', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'Configurations' => [ 'shape' => 'ConfigurationList', ], 'EbsConfiguration' => [ 'shape' => 'EbsConfiguration', ], ], ], 'InstanceGroupConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceGroupConfig', ], ], 'InstanceGroupDetail' => [ 'type' => 'structure', 'required' => [ 'Market', 'InstanceRole', 'InstanceType', 'InstanceRequestCount', 'InstanceRunningCount', 'State', 'CreationDateTime', ], 'members' => [ 'InstanceGroupId' => [ 'shape' => 'XmlStringMaxLen256', ], 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'Market' => [ 'shape' => 'MarketType', ], 'InstanceRole' => [ 'shape' => 'InstanceRoleType', ], 'BidPrice' => [ 'shape' => 'XmlStringMaxLen256', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'InstanceRequestCount' => [ 'shape' => 'Integer', ], 'InstanceRunningCount' => [ 'shape' => 'Integer', ], 'State' => [ 'shape' => 'InstanceGroupState', ], 'LastStateChangeReason' => [ 'shape' => 'XmlString', ], 'CreationDateTime' => [ 'shape' => 'Date', ], 'StartDateTime' => [ 'shape' => 'Date', ], 'ReadyDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], ], ], 'InstanceGroupDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceGroupDetail', ], ], 'InstanceGroupId' => [ 'type' => 'string', ], 'InstanceGroupIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'XmlStringMaxLen256', ], ], 'InstanceGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceGroup', ], ], 'InstanceGroupModifyConfig' => [ 'type' => 'structure', 'required' => [ 'InstanceGroupId', ], 'members' => [ 'InstanceGroupId' => [ 'shape' => 'XmlStringMaxLen256', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'EC2InstanceIdsToTerminate' => [ 'shape' => 'EC2InstanceIdsToTerminateList', ], 'ShrinkPolicy' => [ 'shape' => 'ShrinkPolicy', ], ], ], 'InstanceGroupModifyConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceGroupModifyConfig', ], ], 'InstanceGroupState' => [ 'type' => 'string', 'enum' => [ 'PROVISIONING', 'BOOTSTRAPPING', 'RUNNING', 'RESIZING', 'SUSPENDED', 'TERMINATING', 'TERMINATED', 'ARRESTED', 'SHUTTING_DOWN', 'ENDED', ], ], 'InstanceGroupStateChangeReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'InstanceGroupStateChangeReasonCode', ], 'Message' => [ 'shape' => 'String', ], ], ], 'InstanceGroupStateChangeReasonCode' => [ 'type' => 'string', 'enum' => [ 'INTERNAL_ERROR', 'VALIDATION_ERROR', 'INSTANCE_FAILURE', 'CLUSTER_TERMINATED', ], ], 'InstanceGroupStatus' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'InstanceGroupState', ], 'StateChangeReason' => [ 'shape' => 'InstanceGroupStateChangeReason', ], 'Timeline' => [ 'shape' => 'InstanceGroupTimeline', ], ], ], 'InstanceGroupTimeline' => [ 'type' => 'structure', 'members' => [ 'CreationDateTime' => [ 'shape' => 'Date', ], 'ReadyDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], ], ], 'InstanceGroupType' => [ 'type' => 'string', 'enum' => [ 'MASTER', 'CORE', 'TASK', ], ], 'InstanceGroupTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceGroupType', ], ], 'InstanceId' => [ 'type' => 'string', ], 'InstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Instance', ], ], 'InstanceResizePolicy' => [ 'type' => 'structure', 'members' => [ 'InstancesToTerminate' => [ 'shape' => 'EC2InstanceIdsList', ], 'InstancesToProtect' => [ 'shape' => 'EC2InstanceIdsList', ], 'InstanceTerminationTimeout' => [ 'shape' => 'Integer', ], ], ], 'InstanceRoleType' => [ 'type' => 'string', 'enum' => [ 'MASTER', 'CORE', 'TASK', ], ], 'InstanceState' => [ 'type' => 'string', 'enum' => [ 'AWAITING_FULFILLMENT', 'PROVISIONING', 'BOOTSTRAPPING', 'RUNNING', 'TERMINATED', ], ], 'InstanceStateChangeReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'InstanceStateChangeReasonCode', ], 'Message' => [ 'shape' => 'String', ], ], ], 'InstanceStateChangeReasonCode' => [ 'type' => 'string', 'enum' => [ 'INTERNAL_ERROR', 'VALIDATION_ERROR', 'INSTANCE_FAILURE', 'BOOTSTRAP_FAILURE', 'CLUSTER_TERMINATED', ], ], 'InstanceStateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceState', ], ], 'InstanceStatus' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'InstanceState', ], 'StateChangeReason' => [ 'shape' => 'InstanceStateChangeReason', ], 'Timeline' => [ 'shape' => 'InstanceTimeline', ], ], ], 'InstanceTimeline' => [ 'type' => 'structure', 'members' => [ 'CreationDateTime' => [ 'shape' => 'Date', ], 'ReadyDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], ], ], 'InstanceType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*', ], 'Integer' => [ 'type' => 'integer', ], 'InternalServerError' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InternalServerException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, 'fault' => true, ], 'InvalidRequestException' => [ 'type' => 'structure', 'members' => [ 'ErrorCode' => [ 'shape' => 'ErrorCode', ], 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'JobFlowDetail' => [ 'type' => 'structure', 'required' => [ 'JobFlowId', 'Name', 'ExecutionStatusDetail', 'Instances', ], 'members' => [ 'JobFlowId' => [ 'shape' => 'XmlStringMaxLen256', ], 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'LogUri' => [ 'shape' => 'XmlString', ], 'AmiVersion' => [ 'shape' => 'XmlStringMaxLen256', ], 'ExecutionStatusDetail' => [ 'shape' => 'JobFlowExecutionStatusDetail', ], 'Instances' => [ 'shape' => 'JobFlowInstancesDetail', ], 'Steps' => [ 'shape' => 'StepDetailList', ], 'BootstrapActions' => [ 'shape' => 'BootstrapActionDetailList', ], 'SupportedProducts' => [ 'shape' => 'SupportedProductsList', ], 'VisibleToAllUsers' => [ 'shape' => 'Boolean', ], 'JobFlowRole' => [ 'shape' => 'XmlString', ], 'ServiceRole' => [ 'shape' => 'XmlString', ], ], ], 'JobFlowDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobFlowDetail', ], ], 'JobFlowExecutionState' => [ 'type' => 'string', 'enum' => [ 'STARTING', 'BOOTSTRAPPING', 'RUNNING', 'WAITING', 'SHUTTING_DOWN', 'TERMINATED', 'COMPLETED', 'FAILED', ], ], 'JobFlowExecutionStateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobFlowExecutionState', ], ], 'JobFlowExecutionStatusDetail' => [ 'type' => 'structure', 'required' => [ 'State', 'CreationDateTime', ], 'members' => [ 'State' => [ 'shape' => 'JobFlowExecutionState', ], 'CreationDateTime' => [ 'shape' => 'Date', ], 'StartDateTime' => [ 'shape' => 'Date', ], 'ReadyDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], 'LastStateChangeReason' => [ 'shape' => 'XmlString', ], ], ], 'JobFlowInstancesConfig' => [ 'type' => 'structure', 'members' => [ 'MasterInstanceType' => [ 'shape' => 'InstanceType', ], 'SlaveInstanceType' => [ 'shape' => 'InstanceType', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'InstanceGroups' => [ 'shape' => 'InstanceGroupConfigList', ], 'Ec2KeyName' => [ 'shape' => 'XmlStringMaxLen256', ], 'Placement' => [ 'shape' => 'PlacementType', ], 'KeepJobFlowAliveWhenNoSteps' => [ 'shape' => 'Boolean', ], 'TerminationProtected' => [ 'shape' => 'Boolean', ], 'HadoopVersion' => [ 'shape' => 'XmlStringMaxLen256', ], 'Ec2SubnetId' => [ 'shape' => 'XmlStringMaxLen256', ], 'EmrManagedMasterSecurityGroup' => [ 'shape' => 'XmlStringMaxLen256', ], 'EmrManagedSlaveSecurityGroup' => [ 'shape' => 'XmlStringMaxLen256', ], 'ServiceAccessSecurityGroup' => [ 'shape' => 'XmlStringMaxLen256', ], 'AdditionalMasterSecurityGroups' => [ 'shape' => 'SecurityGroupsList', ], 'AdditionalSlaveSecurityGroups' => [ 'shape' => 'SecurityGroupsList', ], ], ], 'JobFlowInstancesDetail' => [ 'type' => 'structure', 'required' => [ 'MasterInstanceType', 'SlaveInstanceType', 'InstanceCount', ], 'members' => [ 'MasterInstanceType' => [ 'shape' => 'InstanceType', ], 'MasterPublicDnsName' => [ 'shape' => 'XmlString', ], 'MasterInstanceId' => [ 'shape' => 'XmlString', ], 'SlaveInstanceType' => [ 'shape' => 'InstanceType', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'InstanceGroups' => [ 'shape' => 'InstanceGroupDetailList', ], 'NormalizedInstanceHours' => [ 'shape' => 'Integer', ], 'Ec2KeyName' => [ 'shape' => 'XmlStringMaxLen256', ], 'Ec2SubnetId' => [ 'shape' => 'XmlStringMaxLen256', ], 'Placement' => [ 'shape' => 'PlacementType', ], 'KeepJobFlowAliveWhenNoSteps' => [ 'shape' => 'Boolean', ], 'TerminationProtected' => [ 'shape' => 'Boolean', ], 'HadoopVersion' => [ 'shape' => 'XmlStringMaxLen256', ], ], ], 'KeyValue' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'XmlString', ], 'Value' => [ 'shape' => 'XmlString', ], ], ], 'KeyValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyValue', ], ], 'ListBootstrapActionsInput' => [ 'type' => 'structure', 'required' => [ 'ClusterId', ], 'members' => [ 'ClusterId' => [ 'shape' => 'ClusterId', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListBootstrapActionsOutput' => [ 'type' => 'structure', 'members' => [ 'BootstrapActions' => [ 'shape' => 'CommandList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListClustersInput' => [ 'type' => 'structure', 'members' => [ 'CreatedAfter' => [ 'shape' => 'Date', ], 'CreatedBefore' => [ 'shape' => 'Date', ], 'ClusterStates' => [ 'shape' => 'ClusterStateList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListClustersOutput' => [ 'type' => 'structure', 'members' => [ 'Clusters' => [ 'shape' => 'ClusterSummaryList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListInstanceGroupsInput' => [ 'type' => 'structure', 'required' => [ 'ClusterId', ], 'members' => [ 'ClusterId' => [ 'shape' => 'ClusterId', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListInstanceGroupsOutput' => [ 'type' => 'structure', 'members' => [ 'InstanceGroups' => [ 'shape' => 'InstanceGroupList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListInstancesInput' => [ 'type' => 'structure', 'required' => [ 'ClusterId', ], 'members' => [ 'ClusterId' => [ 'shape' => 'ClusterId', ], 'InstanceGroupId' => [ 'shape' => 'InstanceGroupId', ], 'InstanceGroupTypes' => [ 'shape' => 'InstanceGroupTypeList', ], 'InstanceStates' => [ 'shape' => 'InstanceStateList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListInstancesOutput' => [ 'type' => 'structure', 'members' => [ 'Instances' => [ 'shape' => 'InstanceList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListStepsInput' => [ 'type' => 'structure', 'required' => [ 'ClusterId', ], 'members' => [ 'ClusterId' => [ 'shape' => 'ClusterId', ], 'StepStates' => [ 'shape' => 'StepStateList', ], 'StepIds' => [ 'shape' => 'XmlStringList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListStepsOutput' => [ 'type' => 'structure', 'members' => [ 'Steps' => [ 'shape' => 'StepSummaryList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'Marker' => [ 'type' => 'string', ], 'MarketType' => [ 'type' => 'string', 'enum' => [ 'ON_DEMAND', 'SPOT', ], ], 'ModifyInstanceGroupsInput' => [ 'type' => 'structure', 'members' => [ 'InstanceGroups' => [ 'shape' => 'InstanceGroupModifyConfigList', ], ], ], 'NewSupportedProductsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SupportedProductConfig', ], ], 'PlacementType' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZone', ], 'members' => [ 'AvailabilityZone' => [ 'shape' => 'XmlString', ], ], ], 'RemoveTagsInput' => [ 'type' => 'structure', 'required' => [ 'ResourceId', 'TagKeys', ], 'members' => [ 'ResourceId' => [ 'shape' => 'ResourceId', ], 'TagKeys' => [ 'shape' => 'StringList', ], ], ], 'RemoveTagsOutput' => [ 'type' => 'structure', 'members' => [], ], 'ResourceId' => [ 'type' => 'string', ], 'RunJobFlowInput' => [ 'type' => 'structure', 'required' => [ 'Name', 'Instances', ], 'members' => [ 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'LogUri' => [ 'shape' => 'XmlString', ], 'AdditionalInfo' => [ 'shape' => 'XmlString', ], 'AmiVersion' => [ 'shape' => 'XmlStringMaxLen256', ], 'ReleaseLabel' => [ 'shape' => 'XmlStringMaxLen256', ], 'Instances' => [ 'shape' => 'JobFlowInstancesConfig', ], 'Steps' => [ 'shape' => 'StepConfigList', ], 'BootstrapActions' => [ 'shape' => 'BootstrapActionConfigList', ], 'SupportedProducts' => [ 'shape' => 'SupportedProductsList', ], 'NewSupportedProducts' => [ 'shape' => 'NewSupportedProductsList', ], 'Applications' => [ 'shape' => 'ApplicationList', ], 'Configurations' => [ 'shape' => 'ConfigurationList', ], 'VisibleToAllUsers' => [ 'shape' => 'Boolean', ], 'JobFlowRole' => [ 'shape' => 'XmlString', ], 'ServiceRole' => [ 'shape' => 'XmlString', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'RunJobFlowOutput' => [ 'type' => 'structure', 'members' => [ 'JobFlowId' => [ 'shape' => 'XmlStringMaxLen256', ], ], ], 'ScriptBootstrapActionConfig' => [ 'type' => 'structure', 'required' => [ 'Path', ], 'members' => [ 'Path' => [ 'shape' => 'XmlString', ], 'Args' => [ 'shape' => 'XmlStringList', ], ], ], 'SecurityGroupsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'XmlStringMaxLen256', ], ], 'SetTerminationProtectionInput' => [ 'type' => 'structure', 'required' => [ 'JobFlowIds', 'TerminationProtected', ], 'members' => [ 'JobFlowIds' => [ 'shape' => 'XmlStringList', ], 'TerminationProtected' => [ 'shape' => 'Boolean', ], ], ], 'SetVisibleToAllUsersInput' => [ 'type' => 'structure', 'required' => [ 'JobFlowIds', 'VisibleToAllUsers', ], 'members' => [ 'JobFlowIds' => [ 'shape' => 'XmlStringList', ], 'VisibleToAllUsers' => [ 'shape' => 'Boolean', ], ], ], 'ShrinkPolicy' => [ 'type' => 'structure', 'members' => [ 'DecommissionTimeout' => [ 'shape' => 'Integer', ], 'InstanceResizePolicy' => [ 'shape' => 'InstanceResizePolicy', ], ], ], 'Step' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'StepId', ], 'Name' => [ 'shape' => 'String', ], 'Config' => [ 'shape' => 'HadoopStepConfig', ], 'ActionOnFailure' => [ 'shape' => 'ActionOnFailure', ], 'Status' => [ 'shape' => 'StepStatus', ], ], ], 'StepConfig' => [ 'type' => 'structure', 'required' => [ 'Name', 'HadoopJarStep', ], 'members' => [ 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'ActionOnFailure' => [ 'shape' => 'ActionOnFailure', ], 'HadoopJarStep' => [ 'shape' => 'HadoopJarStepConfig', ], ], ], 'StepConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'StepConfig', ], ], 'StepDetail' => [ 'type' => 'structure', 'required' => [ 'StepConfig', 'ExecutionStatusDetail', ], 'members' => [ 'StepConfig' => [ 'shape' => 'StepConfig', ], 'ExecutionStatusDetail' => [ 'shape' => 'StepExecutionStatusDetail', ], ], ], 'StepDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'StepDetail', ], ], 'StepExecutionState' => [ 'type' => 'string', 'enum' => [ 'PENDING', 'RUNNING', 'CONTINUE', 'COMPLETED', 'CANCELLED', 'FAILED', 'INTERRUPTED', ], ], 'StepExecutionStatusDetail' => [ 'type' => 'structure', 'required' => [ 'State', 'CreationDateTime', ], 'members' => [ 'State' => [ 'shape' => 'StepExecutionState', ], 'CreationDateTime' => [ 'shape' => 'Date', ], 'StartDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], 'LastStateChangeReason' => [ 'shape' => 'XmlString', ], ], ], 'StepId' => [ 'type' => 'string', ], 'StepIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'XmlStringMaxLen256', ], ], 'StepState' => [ 'type' => 'string', 'enum' => [ 'PENDING', 'RUNNING', 'COMPLETED', 'CANCELLED', 'FAILED', 'INTERRUPTED', ], ], 'StepStateChangeReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'StepStateChangeReasonCode', ], 'Message' => [ 'shape' => 'String', ], ], ], 'StepStateChangeReasonCode' => [ 'type' => 'string', 'enum' => [ 'NONE', ], ], 'StepStateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'StepState', ], ], 'StepStatus' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'StepState', ], 'StateChangeReason' => [ 'shape' => 'StepStateChangeReason', ], 'FailureDetails' => [ 'shape' => 'FailureDetails', ], 'Timeline' => [ 'shape' => 'StepTimeline', ], ], ], 'StepSummary' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'StepId', ], 'Name' => [ 'shape' => 'String', ], 'Config' => [ 'shape' => 'HadoopStepConfig', ], 'ActionOnFailure' => [ 'shape' => 'ActionOnFailure', ], 'Status' => [ 'shape' => 'StepStatus', ], ], ], 'StepSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'StepSummary', ], ], 'StepTimeline' => [ 'type' => 'structure', 'members' => [ 'CreationDateTime' => [ 'shape' => 'Date', ], 'StartDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], ], ], 'String' => [ 'type' => 'string', ], 'StringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'StringMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'SupportedProductConfig' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'Args' => [ 'shape' => 'XmlStringList', ], ], ], 'SupportedProductsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'XmlStringMaxLen256', ], ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], ], 'TerminateJobFlowsInput' => [ 'type' => 'structure', 'required' => [ 'JobFlowIds', ], 'members' => [ 'JobFlowIds' => [ 'shape' => 'XmlStringList', ], ], ], 'VolumeSpecification' => [ 'type' => 'structure', 'required' => [ 'VolumeType', 'SizeInGB', ], 'members' => [ 'VolumeType' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'Integer', ], 'SizeInGB' => [ 'shape' => 'Integer', ], ], ], 'XmlString' => [ 'type' => 'string', 'max' => 10280, 'min' => 0, 'pattern' => '[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*', ], 'XmlStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'XmlString', ], ], 'XmlStringMaxLen256' => [ 'type' => 'string', 'max' => 256, 'min' => 0, 'pattern' => '[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*', ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2009-03-31', 'endpointPrefix' => 'elasticmapreduce', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'Amazon EMR', 'serviceFullName' => 'Amazon Elastic MapReduce', 'signatureVersion' => 'v4', 'targetPrefix' => 'ElasticMapReduce', 'timestampFormat' => 'unixTimestamp', ], 'operations' => [ 'AddInstanceGroups' => [ 'name' => 'AddInstanceGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddInstanceGroupsInput', ], 'output' => [ 'shape' => 'AddInstanceGroupsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'AddJobFlowSteps' => [ 'name' => 'AddJobFlowSteps', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddJobFlowStepsInput', ], 'output' => [ 'shape' => 'AddJobFlowStepsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'AddTags' => [ 'name' => 'AddTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddTagsInput', ], 'output' => [ 'shape' => 'AddTagsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'CreateSecurityConfiguration' => [ 'name' => 'CreateSecurityConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSecurityConfigurationInput', ], 'output' => [ 'shape' => 'CreateSecurityConfigurationOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'DeleteSecurityConfiguration' => [ 'name' => 'DeleteSecurityConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSecurityConfigurationInput', ], 'output' => [ 'shape' => 'DeleteSecurityConfigurationOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'DescribeCluster' => [ 'name' => 'DescribeCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterInput', ], 'output' => [ 'shape' => 'DescribeClusterOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'DescribeJobFlows' => [ 'name' => 'DescribeJobFlows', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeJobFlowsInput', ], 'output' => [ 'shape' => 'DescribeJobFlowsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], 'deprecated' => true, ], 'DescribeSecurityConfiguration' => [ 'name' => 'DescribeSecurityConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSecurityConfigurationInput', ], 'output' => [ 'shape' => 'DescribeSecurityConfigurationOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'DescribeStep' => [ 'name' => 'DescribeStep', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeStepInput', ], 'output' => [ 'shape' => 'DescribeStepOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ListBootstrapActions' => [ 'name' => 'ListBootstrapActions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListBootstrapActionsInput', ], 'output' => [ 'shape' => 'ListBootstrapActionsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ListClusters' => [ 'name' => 'ListClusters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListClustersInput', ], 'output' => [ 'shape' => 'ListClustersOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ListInstanceGroups' => [ 'name' => 'ListInstanceGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListInstanceGroupsInput', ], 'output' => [ 'shape' => 'ListInstanceGroupsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ListInstances' => [ 'name' => 'ListInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListInstancesInput', ], 'output' => [ 'shape' => 'ListInstancesOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ListSecurityConfigurations' => [ 'name' => 'ListSecurityConfigurations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListSecurityConfigurationsInput', ], 'output' => [ 'shape' => 'ListSecurityConfigurationsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ListSteps' => [ 'name' => 'ListSteps', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListStepsInput', ], 'output' => [ 'shape' => 'ListStepsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ModifyInstanceGroups' => [ 'name' => 'ModifyInstanceGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyInstanceGroupsInput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'RemoveTags' => [ 'name' => 'RemoveTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveTagsInput', ], 'output' => [ 'shape' => 'RemoveTagsOutput', ], 'errors' => [ [ 'shape' => 'InternalServerException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'RunJobFlow' => [ 'name' => 'RunJobFlow', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RunJobFlowInput', ], 'output' => [ 'shape' => 'RunJobFlowOutput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'SetTerminationProtection' => [ 'name' => 'SetTerminationProtection', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetTerminationProtectionInput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'SetVisibleToAllUsers' => [ 'name' => 'SetVisibleToAllUsers', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetVisibleToAllUsersInput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'TerminateJobFlows' => [ 'name' => 'TerminateJobFlows', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TerminateJobFlowsInput', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], ], 'shapes' => [ 'ActionOnFailure' => [ 'type' => 'string', 'enum' => [ 'TERMINATE_JOB_FLOW', 'TERMINATE_CLUSTER', 'CANCEL_AND_WAIT', 'CONTINUE', ], ], 'AddInstanceGroupsInput' => [ 'type' => 'structure', 'required' => [ 'InstanceGroups', 'JobFlowId', ], 'members' => [ 'InstanceGroups' => [ 'shape' => 'InstanceGroupConfigList', ], 'JobFlowId' => [ 'shape' => 'XmlStringMaxLen256', ], ], ], 'AddInstanceGroupsOutput' => [ 'type' => 'structure', 'members' => [ 'JobFlowId' => [ 'shape' => 'XmlStringMaxLen256', ], 'InstanceGroupIds' => [ 'shape' => 'InstanceGroupIdsList', ], ], ], 'AddJobFlowStepsInput' => [ 'type' => 'structure', 'required' => [ 'JobFlowId', 'Steps', ], 'members' => [ 'JobFlowId' => [ 'shape' => 'XmlStringMaxLen256', ], 'Steps' => [ 'shape' => 'StepConfigList', ], ], ], 'AddJobFlowStepsOutput' => [ 'type' => 'structure', 'members' => [ 'StepIds' => [ 'shape' => 'StepIdsList', ], ], ], 'AddTagsInput' => [ 'type' => 'structure', 'required' => [ 'ResourceId', 'Tags', ], 'members' => [ 'ResourceId' => [ 'shape' => 'ResourceId', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'AddTagsOutput' => [ 'type' => 'structure', 'members' => [], ], 'Application' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Version' => [ 'shape' => 'String', ], 'Args' => [ 'shape' => 'StringList', ], 'AdditionalInfo' => [ 'shape' => 'StringMap', ], ], ], 'ApplicationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Application', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'BooleanObject' => [ 'type' => 'boolean', ], 'BootstrapActionConfig' => [ 'type' => 'structure', 'required' => [ 'Name', 'ScriptBootstrapAction', ], 'members' => [ 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'ScriptBootstrapAction' => [ 'shape' => 'ScriptBootstrapActionConfig', ], ], ], 'BootstrapActionConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BootstrapActionConfig', ], ], 'BootstrapActionDetail' => [ 'type' => 'structure', 'members' => [ 'BootstrapActionConfig' => [ 'shape' => 'BootstrapActionConfig', ], ], ], 'BootstrapActionDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BootstrapActionDetail', ], ], 'Cluster' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'ClusterId', ], 'Name' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'ClusterStatus', ], 'Ec2InstanceAttributes' => [ 'shape' => 'Ec2InstanceAttributes', ], 'LogUri' => [ 'shape' => 'String', ], 'RequestedAmiVersion' => [ 'shape' => 'String', ], 'RunningAmiVersion' => [ 'shape' => 'String', ], 'ReleaseLabel' => [ 'shape' => 'String', ], 'AutoTerminate' => [ 'shape' => 'Boolean', ], 'TerminationProtected' => [ 'shape' => 'Boolean', ], 'VisibleToAllUsers' => [ 'shape' => 'Boolean', ], 'Applications' => [ 'shape' => 'ApplicationList', ], 'Tags' => [ 'shape' => 'TagList', ], 'ServiceRole' => [ 'shape' => 'String', ], 'NormalizedInstanceHours' => [ 'shape' => 'Integer', ], 'MasterPublicDnsName' => [ 'shape' => 'String', ], 'Configurations' => [ 'shape' => 'ConfigurationList', ], 'SecurityConfiguration' => [ 'shape' => 'XmlString', ], ], ], 'ClusterId' => [ 'type' => 'string', ], 'ClusterState' => [ 'type' => 'string', 'enum' => [ 'STARTING', 'BOOTSTRAPPING', 'RUNNING', 'WAITING', 'TERMINATING', 'TERMINATED', 'TERMINATED_WITH_ERRORS', ], ], 'ClusterStateChangeReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ClusterStateChangeReasonCode', ], 'Message' => [ 'shape' => 'String', ], ], ], 'ClusterStateChangeReasonCode' => [ 'type' => 'string', 'enum' => [ 'INTERNAL_ERROR', 'VALIDATION_ERROR', 'INSTANCE_FAILURE', 'BOOTSTRAP_FAILURE', 'USER_REQUEST', 'STEP_FAILURE', 'ALL_STEPS_COMPLETED', ], ], 'ClusterStateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterState', ], ], 'ClusterStatus' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'ClusterState', ], 'StateChangeReason' => [ 'shape' => 'ClusterStateChangeReason', ], 'Timeline' => [ 'shape' => 'ClusterTimeline', ], ], ], 'ClusterSummary' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'ClusterId', ], 'Name' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'ClusterStatus', ], 'NormalizedInstanceHours' => [ 'shape' => 'Integer', ], ], ], 'ClusterSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterSummary', ], ], 'ClusterTimeline' => [ 'type' => 'structure', 'members' => [ 'CreationDateTime' => [ 'shape' => 'Date', ], 'ReadyDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], ], ], 'Command' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'ScriptPath' => [ 'shape' => 'String', ], 'Args' => [ 'shape' => 'StringList', ], ], ], 'CommandList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Command', ], ], 'Configuration' => [ 'type' => 'structure', 'members' => [ 'Classification' => [ 'shape' => 'String', ], 'Configurations' => [ 'shape' => 'ConfigurationList', ], 'Properties' => [ 'shape' => 'StringMap', ], ], ], 'ConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Configuration', ], ], 'CreateSecurityConfigurationInput' => [ 'type' => 'structure', 'required' => [ 'Name', 'SecurityConfiguration', ], 'members' => [ 'Name' => [ 'shape' => 'XmlString', ], 'SecurityConfiguration' => [ 'shape' => 'String', ], ], ], 'CreateSecurityConfigurationOutput' => [ 'type' => 'structure', 'required' => [ 'Name', 'CreationDateTime', ], 'members' => [ 'Name' => [ 'shape' => 'XmlString', ], 'CreationDateTime' => [ 'shape' => 'Date', ], ], ], 'Date' => [ 'type' => 'timestamp', ], 'DeleteSecurityConfigurationInput' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'XmlString', ], ], ], 'DeleteSecurityConfigurationOutput' => [ 'type' => 'structure', 'members' => [], ], 'DescribeClusterInput' => [ 'type' => 'structure', 'required' => [ 'ClusterId', ], 'members' => [ 'ClusterId' => [ 'shape' => 'ClusterId', ], ], ], 'DescribeClusterOutput' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'DescribeJobFlowsInput' => [ 'type' => 'structure', 'members' => [ 'CreatedAfter' => [ 'shape' => 'Date', ], 'CreatedBefore' => [ 'shape' => 'Date', ], 'JobFlowIds' => [ 'shape' => 'XmlStringList', ], 'JobFlowStates' => [ 'shape' => 'JobFlowExecutionStateList', ], ], ], 'DescribeJobFlowsOutput' => [ 'type' => 'structure', 'members' => [ 'JobFlows' => [ 'shape' => 'JobFlowDetailList', ], ], ], 'DescribeSecurityConfigurationInput' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'XmlString', ], ], ], 'DescribeSecurityConfigurationOutput' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'XmlString', ], 'SecurityConfiguration' => [ 'shape' => 'String', ], 'CreationDateTime' => [ 'shape' => 'Date', ], ], ], 'DescribeStepInput' => [ 'type' => 'structure', 'required' => [ 'ClusterId', 'StepId', ], 'members' => [ 'ClusterId' => [ 'shape' => 'ClusterId', ], 'StepId' => [ 'shape' => 'StepId', ], ], ], 'DescribeStepOutput' => [ 'type' => 'structure', 'members' => [ 'Step' => [ 'shape' => 'Step', ], ], ], 'EC2InstanceIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', ], ], 'EC2InstanceIdsToTerminateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceId', ], ], 'EbsBlockDevice' => [ 'type' => 'structure', 'members' => [ 'VolumeSpecification' => [ 'shape' => 'VolumeSpecification', ], 'Device' => [ 'shape' => 'String', ], ], ], 'EbsBlockDeviceConfig' => [ 'type' => 'structure', 'required' => [ 'VolumeSpecification', ], 'members' => [ 'VolumeSpecification' => [ 'shape' => 'VolumeSpecification', ], 'VolumesPerInstance' => [ 'shape' => 'Integer', ], ], ], 'EbsBlockDeviceConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EbsBlockDeviceConfig', ], ], 'EbsBlockDeviceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EbsBlockDevice', ], ], 'EbsConfiguration' => [ 'type' => 'structure', 'members' => [ 'EbsBlockDeviceConfigs' => [ 'shape' => 'EbsBlockDeviceConfigList', ], 'EbsOptimized' => [ 'shape' => 'BooleanObject', ], ], ], 'EbsVolume' => [ 'type' => 'structure', 'members' => [ 'Device' => [ 'shape' => 'String', ], 'VolumeId' => [ 'shape' => 'String', ], ], ], 'EbsVolumeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EbsVolume', ], ], 'Ec2InstanceAttributes' => [ 'type' => 'structure', 'members' => [ 'Ec2KeyName' => [ 'shape' => 'String', ], 'Ec2SubnetId' => [ 'shape' => 'String', ], 'Ec2AvailabilityZone' => [ 'shape' => 'String', ], 'IamInstanceProfile' => [ 'shape' => 'String', ], 'EmrManagedMasterSecurityGroup' => [ 'shape' => 'String', ], 'EmrManagedSlaveSecurityGroup' => [ 'shape' => 'String', ], 'ServiceAccessSecurityGroup' => [ 'shape' => 'String', ], 'AdditionalMasterSecurityGroups' => [ 'shape' => 'StringList', ], 'AdditionalSlaveSecurityGroups' => [ 'shape' => 'StringList', ], ], ], 'ErrorCode' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'ErrorMessage' => [ 'type' => 'string', ], 'FailureDetails' => [ 'type' => 'structure', 'members' => [ 'Reason' => [ 'shape' => 'String', ], 'Message' => [ 'shape' => 'String', ], 'LogFile' => [ 'shape' => 'String', ], ], ], 'HadoopJarStepConfig' => [ 'type' => 'structure', 'required' => [ 'Jar', ], 'members' => [ 'Properties' => [ 'shape' => 'KeyValueList', ], 'Jar' => [ 'shape' => 'XmlString', ], 'MainClass' => [ 'shape' => 'XmlString', ], 'Args' => [ 'shape' => 'XmlStringList', ], ], ], 'HadoopStepConfig' => [ 'type' => 'structure', 'members' => [ 'Jar' => [ 'shape' => 'String', ], 'Properties' => [ 'shape' => 'StringMap', ], 'MainClass' => [ 'shape' => 'String', ], 'Args' => [ 'shape' => 'StringList', ], ], ], 'Instance' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'InstanceId', ], 'Ec2InstanceId' => [ 'shape' => 'InstanceId', ], 'PublicDnsName' => [ 'shape' => 'String', ], 'PublicIpAddress' => [ 'shape' => 'String', ], 'PrivateDnsName' => [ 'shape' => 'String', ], 'PrivateIpAddress' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'InstanceStatus', ], 'InstanceGroupId' => [ 'shape' => 'String', ], 'EbsVolumes' => [ 'shape' => 'EbsVolumeList', ], ], ], 'InstanceGroup' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'InstanceGroupId', ], 'Name' => [ 'shape' => 'String', ], 'Market' => [ 'shape' => 'MarketType', ], 'InstanceGroupType' => [ 'shape' => 'InstanceGroupType', ], 'BidPrice' => [ 'shape' => 'String', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'RequestedInstanceCount' => [ 'shape' => 'Integer', ], 'RunningInstanceCount' => [ 'shape' => 'Integer', ], 'Status' => [ 'shape' => 'InstanceGroupStatus', ], 'Configurations' => [ 'shape' => 'ConfigurationList', ], 'EbsBlockDevices' => [ 'shape' => 'EbsBlockDeviceList', ], 'EbsOptimized' => [ 'shape' => 'BooleanObject', ], 'ShrinkPolicy' => [ 'shape' => 'ShrinkPolicy', ], ], ], 'InstanceGroupConfig' => [ 'type' => 'structure', 'required' => [ 'InstanceRole', 'InstanceType', 'InstanceCount', ], 'members' => [ 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'Market' => [ 'shape' => 'MarketType', ], 'InstanceRole' => [ 'shape' => 'InstanceRoleType', ], 'BidPrice' => [ 'shape' => 'XmlStringMaxLen256', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'Configurations' => [ 'shape' => 'ConfigurationList', ], 'EbsConfiguration' => [ 'shape' => 'EbsConfiguration', ], ], ], 'InstanceGroupConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceGroupConfig', ], ], 'InstanceGroupDetail' => [ 'type' => 'structure', 'required' => [ 'Market', 'InstanceRole', 'InstanceType', 'InstanceRequestCount', 'InstanceRunningCount', 'State', 'CreationDateTime', ], 'members' => [ 'InstanceGroupId' => [ 'shape' => 'XmlStringMaxLen256', ], 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'Market' => [ 'shape' => 'MarketType', ], 'InstanceRole' => [ 'shape' => 'InstanceRoleType', ], 'BidPrice' => [ 'shape' => 'XmlStringMaxLen256', ], 'InstanceType' => [ 'shape' => 'InstanceType', ], 'InstanceRequestCount' => [ 'shape' => 'Integer', ], 'InstanceRunningCount' => [ 'shape' => 'Integer', ], 'State' => [ 'shape' => 'InstanceGroupState', ], 'LastStateChangeReason' => [ 'shape' => 'XmlString', ], 'CreationDateTime' => [ 'shape' => 'Date', ], 'StartDateTime' => [ 'shape' => 'Date', ], 'ReadyDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], ], ], 'InstanceGroupDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceGroupDetail', ], ], 'InstanceGroupId' => [ 'type' => 'string', ], 'InstanceGroupIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'XmlStringMaxLen256', ], ], 'InstanceGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceGroup', ], ], 'InstanceGroupModifyConfig' => [ 'type' => 'structure', 'required' => [ 'InstanceGroupId', ], 'members' => [ 'InstanceGroupId' => [ 'shape' => 'XmlStringMaxLen256', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'EC2InstanceIdsToTerminate' => [ 'shape' => 'EC2InstanceIdsToTerminateList', ], 'ShrinkPolicy' => [ 'shape' => 'ShrinkPolicy', ], ], ], 'InstanceGroupModifyConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceGroupModifyConfig', ], ], 'InstanceGroupState' => [ 'type' => 'string', 'enum' => [ 'PROVISIONING', 'BOOTSTRAPPING', 'RUNNING', 'RESIZING', 'SUSPENDED', 'TERMINATING', 'TERMINATED', 'ARRESTED', 'SHUTTING_DOWN', 'ENDED', ], ], 'InstanceGroupStateChangeReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'InstanceGroupStateChangeReasonCode', ], 'Message' => [ 'shape' => 'String', ], ], ], 'InstanceGroupStateChangeReasonCode' => [ 'type' => 'string', 'enum' => [ 'INTERNAL_ERROR', 'VALIDATION_ERROR', 'INSTANCE_FAILURE', 'CLUSTER_TERMINATED', ], ], 'InstanceGroupStatus' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'InstanceGroupState', ], 'StateChangeReason' => [ 'shape' => 'InstanceGroupStateChangeReason', ], 'Timeline' => [ 'shape' => 'InstanceGroupTimeline', ], ], ], 'InstanceGroupTimeline' => [ 'type' => 'structure', 'members' => [ 'CreationDateTime' => [ 'shape' => 'Date', ], 'ReadyDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], ], ], 'InstanceGroupType' => [ 'type' => 'string', 'enum' => [ 'MASTER', 'CORE', 'TASK', ], ], 'InstanceGroupTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceGroupType', ], ], 'InstanceId' => [ 'type' => 'string', ], 'InstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Instance', ], ], 'InstanceResizePolicy' => [ 'type' => 'structure', 'members' => [ 'InstancesToTerminate' => [ 'shape' => 'EC2InstanceIdsList', ], 'InstancesToProtect' => [ 'shape' => 'EC2InstanceIdsList', ], 'InstanceTerminationTimeout' => [ 'shape' => 'Integer', ], ], ], 'InstanceRoleType' => [ 'type' => 'string', 'enum' => [ 'MASTER', 'CORE', 'TASK', ], ], 'InstanceState' => [ 'type' => 'string', 'enum' => [ 'AWAITING_FULFILLMENT', 'PROVISIONING', 'BOOTSTRAPPING', 'RUNNING', 'TERMINATED', ], ], 'InstanceStateChangeReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'InstanceStateChangeReasonCode', ], 'Message' => [ 'shape' => 'String', ], ], ], 'InstanceStateChangeReasonCode' => [ 'type' => 'string', 'enum' => [ 'INTERNAL_ERROR', 'VALIDATION_ERROR', 'INSTANCE_FAILURE', 'BOOTSTRAP_FAILURE', 'CLUSTER_TERMINATED', ], ], 'InstanceStateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'InstanceState', ], ], 'InstanceStatus' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'InstanceState', ], 'StateChangeReason' => [ 'shape' => 'InstanceStateChangeReason', ], 'Timeline' => [ 'shape' => 'InstanceTimeline', ], ], ], 'InstanceTimeline' => [ 'type' => 'structure', 'members' => [ 'CreationDateTime' => [ 'shape' => 'Date', ], 'ReadyDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], ], ], 'InstanceType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*', ], 'Integer' => [ 'type' => 'integer', ], 'InternalServerError' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'InternalServerException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, 'fault' => true, ], 'InvalidRequestException' => [ 'type' => 'structure', 'members' => [ 'ErrorCode' => [ 'shape' => 'ErrorCode', ], 'Message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'JobFlowDetail' => [ 'type' => 'structure', 'required' => [ 'JobFlowId', 'Name', 'ExecutionStatusDetail', 'Instances', ], 'members' => [ 'JobFlowId' => [ 'shape' => 'XmlStringMaxLen256', ], 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'LogUri' => [ 'shape' => 'XmlString', ], 'AmiVersion' => [ 'shape' => 'XmlStringMaxLen256', ], 'ExecutionStatusDetail' => [ 'shape' => 'JobFlowExecutionStatusDetail', ], 'Instances' => [ 'shape' => 'JobFlowInstancesDetail', ], 'Steps' => [ 'shape' => 'StepDetailList', ], 'BootstrapActions' => [ 'shape' => 'BootstrapActionDetailList', ], 'SupportedProducts' => [ 'shape' => 'SupportedProductsList', ], 'VisibleToAllUsers' => [ 'shape' => 'Boolean', ], 'JobFlowRole' => [ 'shape' => 'XmlString', ], 'ServiceRole' => [ 'shape' => 'XmlString', ], ], ], 'JobFlowDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobFlowDetail', ], ], 'JobFlowExecutionState' => [ 'type' => 'string', 'enum' => [ 'STARTING', 'BOOTSTRAPPING', 'RUNNING', 'WAITING', 'SHUTTING_DOWN', 'TERMINATED', 'COMPLETED', 'FAILED', ], ], 'JobFlowExecutionStateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'JobFlowExecutionState', ], ], 'JobFlowExecutionStatusDetail' => [ 'type' => 'structure', 'required' => [ 'State', 'CreationDateTime', ], 'members' => [ 'State' => [ 'shape' => 'JobFlowExecutionState', ], 'CreationDateTime' => [ 'shape' => 'Date', ], 'StartDateTime' => [ 'shape' => 'Date', ], 'ReadyDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], 'LastStateChangeReason' => [ 'shape' => 'XmlString', ], ], ], 'JobFlowInstancesConfig' => [ 'type' => 'structure', 'members' => [ 'MasterInstanceType' => [ 'shape' => 'InstanceType', ], 'SlaveInstanceType' => [ 'shape' => 'InstanceType', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'InstanceGroups' => [ 'shape' => 'InstanceGroupConfigList', ], 'Ec2KeyName' => [ 'shape' => 'XmlStringMaxLen256', ], 'Placement' => [ 'shape' => 'PlacementType', ], 'KeepJobFlowAliveWhenNoSteps' => [ 'shape' => 'Boolean', ], 'TerminationProtected' => [ 'shape' => 'Boolean', ], 'HadoopVersion' => [ 'shape' => 'XmlStringMaxLen256', ], 'Ec2SubnetId' => [ 'shape' => 'XmlStringMaxLen256', ], 'EmrManagedMasterSecurityGroup' => [ 'shape' => 'XmlStringMaxLen256', ], 'EmrManagedSlaveSecurityGroup' => [ 'shape' => 'XmlStringMaxLen256', ], 'ServiceAccessSecurityGroup' => [ 'shape' => 'XmlStringMaxLen256', ], 'AdditionalMasterSecurityGroups' => [ 'shape' => 'SecurityGroupsList', ], 'AdditionalSlaveSecurityGroups' => [ 'shape' => 'SecurityGroupsList', ], ], ], 'JobFlowInstancesDetail' => [ 'type' => 'structure', 'required' => [ 'MasterInstanceType', 'SlaveInstanceType', 'InstanceCount', ], 'members' => [ 'MasterInstanceType' => [ 'shape' => 'InstanceType', ], 'MasterPublicDnsName' => [ 'shape' => 'XmlString', ], 'MasterInstanceId' => [ 'shape' => 'XmlString', ], 'SlaveInstanceType' => [ 'shape' => 'InstanceType', ], 'InstanceCount' => [ 'shape' => 'Integer', ], 'InstanceGroups' => [ 'shape' => 'InstanceGroupDetailList', ], 'NormalizedInstanceHours' => [ 'shape' => 'Integer', ], 'Ec2KeyName' => [ 'shape' => 'XmlStringMaxLen256', ], 'Ec2SubnetId' => [ 'shape' => 'XmlStringMaxLen256', ], 'Placement' => [ 'shape' => 'PlacementType', ], 'KeepJobFlowAliveWhenNoSteps' => [ 'shape' => 'Boolean', ], 'TerminationProtected' => [ 'shape' => 'Boolean', ], 'HadoopVersion' => [ 'shape' => 'XmlStringMaxLen256', ], ], ], 'KeyValue' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'XmlString', ], 'Value' => [ 'shape' => 'XmlString', ], ], ], 'KeyValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyValue', ], ], 'ListBootstrapActionsInput' => [ 'type' => 'structure', 'required' => [ 'ClusterId', ], 'members' => [ 'ClusterId' => [ 'shape' => 'ClusterId', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListBootstrapActionsOutput' => [ 'type' => 'structure', 'members' => [ 'BootstrapActions' => [ 'shape' => 'CommandList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListClustersInput' => [ 'type' => 'structure', 'members' => [ 'CreatedAfter' => [ 'shape' => 'Date', ], 'CreatedBefore' => [ 'shape' => 'Date', ], 'ClusterStates' => [ 'shape' => 'ClusterStateList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListClustersOutput' => [ 'type' => 'structure', 'members' => [ 'Clusters' => [ 'shape' => 'ClusterSummaryList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListInstanceGroupsInput' => [ 'type' => 'structure', 'required' => [ 'ClusterId', ], 'members' => [ 'ClusterId' => [ 'shape' => 'ClusterId', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListInstanceGroupsOutput' => [ 'type' => 'structure', 'members' => [ 'InstanceGroups' => [ 'shape' => 'InstanceGroupList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListInstancesInput' => [ 'type' => 'structure', 'required' => [ 'ClusterId', ], 'members' => [ 'ClusterId' => [ 'shape' => 'ClusterId', ], 'InstanceGroupId' => [ 'shape' => 'InstanceGroupId', ], 'InstanceGroupTypes' => [ 'shape' => 'InstanceGroupTypeList', ], 'InstanceStates' => [ 'shape' => 'InstanceStateList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListInstancesOutput' => [ 'type' => 'structure', 'members' => [ 'Instances' => [ 'shape' => 'InstanceList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListSecurityConfigurationsInput' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListSecurityConfigurationsOutput' => [ 'type' => 'structure', 'members' => [ 'SecurityConfigurations' => [ 'shape' => 'SecurityConfigurationList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListStepsInput' => [ 'type' => 'structure', 'required' => [ 'ClusterId', ], 'members' => [ 'ClusterId' => [ 'shape' => 'ClusterId', ], 'StepStates' => [ 'shape' => 'StepStateList', ], 'StepIds' => [ 'shape' => 'XmlStringList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'ListStepsOutput' => [ 'type' => 'structure', 'members' => [ 'Steps' => [ 'shape' => 'StepSummaryList', ], 'Marker' => [ 'shape' => 'Marker', ], ], ], 'Marker' => [ 'type' => 'string', ], 'MarketType' => [ 'type' => 'string', 'enum' => [ 'ON_DEMAND', 'SPOT', ], ], 'ModifyInstanceGroupsInput' => [ 'type' => 'structure', 'members' => [ 'InstanceGroups' => [ 'shape' => 'InstanceGroupModifyConfigList', ], ], ], 'NewSupportedProductsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SupportedProductConfig', ], ], 'PlacementType' => [ 'type' => 'structure', 'required' => [ 'AvailabilityZone', ], 'members' => [ 'AvailabilityZone' => [ 'shape' => 'XmlString', ], ], ], 'RemoveTagsInput' => [ 'type' => 'structure', 'required' => [ 'ResourceId', 'TagKeys', ], 'members' => [ 'ResourceId' => [ 'shape' => 'ResourceId', ], 'TagKeys' => [ 'shape' => 'StringList', ], ], ], 'RemoveTagsOutput' => [ 'type' => 'structure', 'members' => [], ], 'ResourceId' => [ 'type' => 'string', ], 'RunJobFlowInput' => [ 'type' => 'structure', 'required' => [ 'Name', 'Instances', ], 'members' => [ 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'LogUri' => [ 'shape' => 'XmlString', ], 'AdditionalInfo' => [ 'shape' => 'XmlString', ], 'AmiVersion' => [ 'shape' => 'XmlStringMaxLen256', ], 'ReleaseLabel' => [ 'shape' => 'XmlStringMaxLen256', ], 'Instances' => [ 'shape' => 'JobFlowInstancesConfig', ], 'Steps' => [ 'shape' => 'StepConfigList', ], 'BootstrapActions' => [ 'shape' => 'BootstrapActionConfigList', ], 'SupportedProducts' => [ 'shape' => 'SupportedProductsList', ], 'NewSupportedProducts' => [ 'shape' => 'NewSupportedProductsList', ], 'Applications' => [ 'shape' => 'ApplicationList', ], 'Configurations' => [ 'shape' => 'ConfigurationList', ], 'VisibleToAllUsers' => [ 'shape' => 'Boolean', ], 'JobFlowRole' => [ 'shape' => 'XmlString', ], 'ServiceRole' => [ 'shape' => 'XmlString', ], 'Tags' => [ 'shape' => 'TagList', ], 'SecurityConfiguration' => [ 'shape' => 'XmlString', ], ], ], 'RunJobFlowOutput' => [ 'type' => 'structure', 'members' => [ 'JobFlowId' => [ 'shape' => 'XmlStringMaxLen256', ], ], ], 'ScriptBootstrapActionConfig' => [ 'type' => 'structure', 'required' => [ 'Path', ], 'members' => [ 'Path' => [ 'shape' => 'XmlString', ], 'Args' => [ 'shape' => 'XmlStringList', ], ], ], 'SecurityConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SecurityConfigurationSummary', ], ], 'SecurityConfigurationSummary' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'XmlString', ], 'CreationDateTime' => [ 'shape' => 'Date', ], ], ], 'SecurityGroupsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'XmlStringMaxLen256', ], ], 'SetTerminationProtectionInput' => [ 'type' => 'structure', 'required' => [ 'JobFlowIds', 'TerminationProtected', ], 'members' => [ 'JobFlowIds' => [ 'shape' => 'XmlStringList', ], 'TerminationProtected' => [ 'shape' => 'Boolean', ], ], ], 'SetVisibleToAllUsersInput' => [ 'type' => 'structure', 'required' => [ 'JobFlowIds', 'VisibleToAllUsers', ], 'members' => [ 'JobFlowIds' => [ 'shape' => 'XmlStringList', ], 'VisibleToAllUsers' => [ 'shape' => 'Boolean', ], ], ], 'ShrinkPolicy' => [ 'type' => 'structure', 'members' => [ 'DecommissionTimeout' => [ 'shape' => 'Integer', ], 'InstanceResizePolicy' => [ 'shape' => 'InstanceResizePolicy', ], ], ], 'Step' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'StepId', ], 'Name' => [ 'shape' => 'String', ], 'Config' => [ 'shape' => 'HadoopStepConfig', ], 'ActionOnFailure' => [ 'shape' => 'ActionOnFailure', ], 'Status' => [ 'shape' => 'StepStatus', ], ], ], 'StepConfig' => [ 'type' => 'structure', 'required' => [ 'Name', 'HadoopJarStep', ], 'members' => [ 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'ActionOnFailure' => [ 'shape' => 'ActionOnFailure', ], 'HadoopJarStep' => [ 'shape' => 'HadoopJarStepConfig', ], ], ], 'StepConfigList' => [ 'type' => 'list', 'member' => [ 'shape' => 'StepConfig', ], ], 'StepDetail' => [ 'type' => 'structure', 'required' => [ 'StepConfig', 'ExecutionStatusDetail', ], 'members' => [ 'StepConfig' => [ 'shape' => 'StepConfig', ], 'ExecutionStatusDetail' => [ 'shape' => 'StepExecutionStatusDetail', ], ], ], 'StepDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'StepDetail', ], ], 'StepExecutionState' => [ 'type' => 'string', 'enum' => [ 'PENDING', 'RUNNING', 'CONTINUE', 'COMPLETED', 'CANCELLED', 'FAILED', 'INTERRUPTED', ], ], 'StepExecutionStatusDetail' => [ 'type' => 'structure', 'required' => [ 'State', 'CreationDateTime', ], 'members' => [ 'State' => [ 'shape' => 'StepExecutionState', ], 'CreationDateTime' => [ 'shape' => 'Date', ], 'StartDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], 'LastStateChangeReason' => [ 'shape' => 'XmlString', ], ], ], 'StepId' => [ 'type' => 'string', ], 'StepIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'XmlStringMaxLen256', ], ], 'StepState' => [ 'type' => 'string', 'enum' => [ 'PENDING', 'RUNNING', 'COMPLETED', 'CANCELLED', 'FAILED', 'INTERRUPTED', ], ], 'StepStateChangeReason' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'StepStateChangeReasonCode', ], 'Message' => [ 'shape' => 'String', ], ], ], 'StepStateChangeReasonCode' => [ 'type' => 'string', 'enum' => [ 'NONE', ], ], 'StepStateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'StepState', ], ], 'StepStatus' => [ 'type' => 'structure', 'members' => [ 'State' => [ 'shape' => 'StepState', ], 'StateChangeReason' => [ 'shape' => 'StepStateChangeReason', ], 'FailureDetails' => [ 'shape' => 'FailureDetails', ], 'Timeline' => [ 'shape' => 'StepTimeline', ], ], ], 'StepSummary' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'StepId', ], 'Name' => [ 'shape' => 'String', ], 'Config' => [ 'shape' => 'HadoopStepConfig', ], 'ActionOnFailure' => [ 'shape' => 'ActionOnFailure', ], 'Status' => [ 'shape' => 'StepStatus', ], ], ], 'StepSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'StepSummary', ], ], 'StepTimeline' => [ 'type' => 'structure', 'members' => [ 'CreationDateTime' => [ 'shape' => 'Date', ], 'StartDateTime' => [ 'shape' => 'Date', ], 'EndDateTime' => [ 'shape' => 'Date', ], ], ], 'String' => [ 'type' => 'string', ], 'StringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'StringMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'String', ], 'value' => [ 'shape' => 'String', ], ], 'SupportedProductConfig' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'XmlStringMaxLen256', ], 'Args' => [ 'shape' => 'XmlStringList', ], ], ], 'SupportedProductsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'XmlStringMaxLen256', ], ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], ], 'TerminateJobFlowsInput' => [ 'type' => 'structure', 'required' => [ 'JobFlowIds', ], 'members' => [ 'JobFlowIds' => [ 'shape' => 'XmlStringList', ], ], ], 'VolumeSpecification' => [ 'type' => 'structure', 'required' => [ 'VolumeType', 'SizeInGB', ], 'members' => [ 'VolumeType' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'Integer', ], 'SizeInGB' => [ 'shape' => 'Integer', ], ], ], 'XmlString' => [ 'type' => 'string', 'max' => 10280, 'min' => 0, 'pattern' => '[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*', ], 'XmlStringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'XmlString', ], ], 'XmlStringMaxLen256' => [ 'type' => 'string', 'max' => 256, 'min' => 0, 'pattern' => '[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/api-2.json.php index 3c80f5e9c..93ffb878c 100644 --- a/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2010-12-01', 'endpointPrefix' => 'email', 'protocol' => 'query', 'serviceAbbreviation' => 'Amazon SES', 'serviceFullName' => 'Amazon Simple Email Service', 'signatureVersion' => 'v4', 'signingName' => 'ses', 'xmlNamespace' => 'http://ses.amazonaws.com/doc/2010-12-01/', ], 'operations' => [ 'CloneReceiptRuleSet' => [ 'name' => 'CloneReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CloneReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'CloneReceiptRuleSetResponse', 'resultWrapper' => 'CloneReceiptRuleSetResult', ], 'errors' => [ [ 'shape' => 'RuleSetDoesNotExistException', ], [ 'shape' => 'AlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateReceiptFilter' => [ 'name' => 'CreateReceiptFilter', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReceiptFilterRequest', ], 'output' => [ 'shape' => 'CreateReceiptFilterResponse', 'resultWrapper' => 'CreateReceiptFilterResult', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'AlreadyExistsException', ], ], ], 'CreateReceiptRule' => [ 'name' => 'CreateReceiptRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReceiptRuleRequest', ], 'output' => [ 'shape' => 'CreateReceiptRuleResponse', 'resultWrapper' => 'CreateReceiptRuleResult', ], 'errors' => [ [ 'shape' => 'InvalidSnsTopicException', ], [ 'shape' => 'InvalidS3ConfigurationException', ], [ 'shape' => 'InvalidLambdaFunctionException', ], [ 'shape' => 'AlreadyExistsException', ], [ 'shape' => 'RuleDoesNotExistException', ], [ 'shape' => 'RuleSetDoesNotExistException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateReceiptRuleSet' => [ 'name' => 'CreateReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'CreateReceiptRuleSetResponse', 'resultWrapper' => 'CreateReceiptRuleSetResult', ], 'errors' => [ [ 'shape' => 'AlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'DeleteIdentity' => [ 'name' => 'DeleteIdentity', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIdentityRequest', ], 'output' => [ 'shape' => 'DeleteIdentityResponse', 'resultWrapper' => 'DeleteIdentityResult', ], ], 'DeleteIdentityPolicy' => [ 'name' => 'DeleteIdentityPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIdentityPolicyRequest', ], 'output' => [ 'shape' => 'DeleteIdentityPolicyResponse', 'resultWrapper' => 'DeleteIdentityPolicyResult', ], ], 'DeleteReceiptFilter' => [ 'name' => 'DeleteReceiptFilter', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteReceiptFilterRequest', ], 'output' => [ 'shape' => 'DeleteReceiptFilterResponse', 'resultWrapper' => 'DeleteReceiptFilterResult', ], ], 'DeleteReceiptRule' => [ 'name' => 'DeleteReceiptRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteReceiptRuleRequest', ], 'output' => [ 'shape' => 'DeleteReceiptRuleResponse', 'resultWrapper' => 'DeleteReceiptRuleResult', ], 'errors' => [ [ 'shape' => 'RuleSetDoesNotExistException', ], ], ], 'DeleteReceiptRuleSet' => [ 'name' => 'DeleteReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'DeleteReceiptRuleSetResponse', 'resultWrapper' => 'DeleteReceiptRuleSetResult', ], 'errors' => [ [ 'shape' => 'CannotDeleteException', ], ], ], 'DeleteVerifiedEmailAddress' => [ 'name' => 'DeleteVerifiedEmailAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVerifiedEmailAddressRequest', ], ], 'DescribeActiveReceiptRuleSet' => [ 'name' => 'DescribeActiveReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeActiveReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'DescribeActiveReceiptRuleSetResponse', 'resultWrapper' => 'DescribeActiveReceiptRuleSetResult', ], ], 'DescribeReceiptRule' => [ 'name' => 'DescribeReceiptRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReceiptRuleRequest', ], 'output' => [ 'shape' => 'DescribeReceiptRuleResponse', 'resultWrapper' => 'DescribeReceiptRuleResult', ], 'errors' => [ [ 'shape' => 'RuleDoesNotExistException', ], [ 'shape' => 'RuleSetDoesNotExistException', ], ], ], 'DescribeReceiptRuleSet' => [ 'name' => 'DescribeReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'DescribeReceiptRuleSetResponse', 'resultWrapper' => 'DescribeReceiptRuleSetResult', ], 'errors' => [ [ 'shape' => 'RuleSetDoesNotExistException', ], ], ], 'GetIdentityDkimAttributes' => [ 'name' => 'GetIdentityDkimAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIdentityDkimAttributesRequest', ], 'output' => [ 'shape' => 'GetIdentityDkimAttributesResponse', 'resultWrapper' => 'GetIdentityDkimAttributesResult', ], ], 'GetIdentityMailFromDomainAttributes' => [ 'name' => 'GetIdentityMailFromDomainAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIdentityMailFromDomainAttributesRequest', ], 'output' => [ 'shape' => 'GetIdentityMailFromDomainAttributesResponse', 'resultWrapper' => 'GetIdentityMailFromDomainAttributesResult', ], ], 'GetIdentityNotificationAttributes' => [ 'name' => 'GetIdentityNotificationAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIdentityNotificationAttributesRequest', ], 'output' => [ 'shape' => 'GetIdentityNotificationAttributesResponse', 'resultWrapper' => 'GetIdentityNotificationAttributesResult', ], ], 'GetIdentityPolicies' => [ 'name' => 'GetIdentityPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIdentityPoliciesRequest', ], 'output' => [ 'shape' => 'GetIdentityPoliciesResponse', 'resultWrapper' => 'GetIdentityPoliciesResult', ], ], 'GetIdentityVerificationAttributes' => [ 'name' => 'GetIdentityVerificationAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIdentityVerificationAttributesRequest', ], 'output' => [ 'shape' => 'GetIdentityVerificationAttributesResponse', 'resultWrapper' => 'GetIdentityVerificationAttributesResult', ], ], 'GetSendQuota' => [ 'name' => 'GetSendQuota', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'GetSendQuotaResponse', 'resultWrapper' => 'GetSendQuotaResult', ], ], 'GetSendStatistics' => [ 'name' => 'GetSendStatistics', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'GetSendStatisticsResponse', 'resultWrapper' => 'GetSendStatisticsResult', ], ], 'ListIdentities' => [ 'name' => 'ListIdentities', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListIdentitiesRequest', ], 'output' => [ 'shape' => 'ListIdentitiesResponse', 'resultWrapper' => 'ListIdentitiesResult', ], ], 'ListIdentityPolicies' => [ 'name' => 'ListIdentityPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListIdentityPoliciesRequest', ], 'output' => [ 'shape' => 'ListIdentityPoliciesResponse', 'resultWrapper' => 'ListIdentityPoliciesResult', ], ], 'ListReceiptFilters' => [ 'name' => 'ListReceiptFilters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListReceiptFiltersRequest', ], 'output' => [ 'shape' => 'ListReceiptFiltersResponse', 'resultWrapper' => 'ListReceiptFiltersResult', ], ], 'ListReceiptRuleSets' => [ 'name' => 'ListReceiptRuleSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListReceiptRuleSetsRequest', ], 'output' => [ 'shape' => 'ListReceiptRuleSetsResponse', 'resultWrapper' => 'ListReceiptRuleSetsResult', ], ], 'ListVerifiedEmailAddresses' => [ 'name' => 'ListVerifiedEmailAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'ListVerifiedEmailAddressesResponse', 'resultWrapper' => 'ListVerifiedEmailAddressesResult', ], ], 'PutIdentityPolicy' => [ 'name' => 'PutIdentityPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutIdentityPolicyRequest', ], 'output' => [ 'shape' => 'PutIdentityPolicyResponse', 'resultWrapper' => 'PutIdentityPolicyResult', ], 'errors' => [ [ 'shape' => 'InvalidPolicyException', ], ], ], 'ReorderReceiptRuleSet' => [ 'name' => 'ReorderReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReorderReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'ReorderReceiptRuleSetResponse', 'resultWrapper' => 'ReorderReceiptRuleSetResult', ], 'errors' => [ [ 'shape' => 'RuleSetDoesNotExistException', ], [ 'shape' => 'RuleDoesNotExistException', ], ], ], 'SendBounce' => [ 'name' => 'SendBounce', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SendBounceRequest', ], 'output' => [ 'shape' => 'SendBounceResponse', 'resultWrapper' => 'SendBounceResult', ], 'errors' => [ [ 'shape' => 'MessageRejected', ], ], ], 'SendEmail' => [ 'name' => 'SendEmail', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SendEmailRequest', ], 'output' => [ 'shape' => 'SendEmailResponse', 'resultWrapper' => 'SendEmailResult', ], 'errors' => [ [ 'shape' => 'MessageRejected', ], [ 'shape' => 'MailFromDomainNotVerifiedException', ], ], ], 'SendRawEmail' => [ 'name' => 'SendRawEmail', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SendRawEmailRequest', ], 'output' => [ 'shape' => 'SendRawEmailResponse', 'resultWrapper' => 'SendRawEmailResult', ], 'errors' => [ [ 'shape' => 'MessageRejected', ], [ 'shape' => 'MailFromDomainNotVerifiedException', ], ], ], 'SetActiveReceiptRuleSet' => [ 'name' => 'SetActiveReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetActiveReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'SetActiveReceiptRuleSetResponse', 'resultWrapper' => 'SetActiveReceiptRuleSetResult', ], 'errors' => [ [ 'shape' => 'RuleSetDoesNotExistException', ], ], ], 'SetIdentityDkimEnabled' => [ 'name' => 'SetIdentityDkimEnabled', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetIdentityDkimEnabledRequest', ], 'output' => [ 'shape' => 'SetIdentityDkimEnabledResponse', 'resultWrapper' => 'SetIdentityDkimEnabledResult', ], ], 'SetIdentityFeedbackForwardingEnabled' => [ 'name' => 'SetIdentityFeedbackForwardingEnabled', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetIdentityFeedbackForwardingEnabledRequest', ], 'output' => [ 'shape' => 'SetIdentityFeedbackForwardingEnabledResponse', 'resultWrapper' => 'SetIdentityFeedbackForwardingEnabledResult', ], ], 'SetIdentityHeadersInNotificationsEnabled' => [ 'name' => 'SetIdentityHeadersInNotificationsEnabled', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetIdentityHeadersInNotificationsEnabledRequest', ], 'output' => [ 'shape' => 'SetIdentityHeadersInNotificationsEnabledResponse', 'resultWrapper' => 'SetIdentityHeadersInNotificationsEnabledResult', ], ], 'SetIdentityMailFromDomain' => [ 'name' => 'SetIdentityMailFromDomain', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetIdentityMailFromDomainRequest', ], 'output' => [ 'shape' => 'SetIdentityMailFromDomainResponse', 'resultWrapper' => 'SetIdentityMailFromDomainResult', ], ], 'SetIdentityNotificationTopic' => [ 'name' => 'SetIdentityNotificationTopic', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetIdentityNotificationTopicRequest', ], 'output' => [ 'shape' => 'SetIdentityNotificationTopicResponse', 'resultWrapper' => 'SetIdentityNotificationTopicResult', ], ], 'SetReceiptRulePosition' => [ 'name' => 'SetReceiptRulePosition', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetReceiptRulePositionRequest', ], 'output' => [ 'shape' => 'SetReceiptRulePositionResponse', 'resultWrapper' => 'SetReceiptRulePositionResult', ], 'errors' => [ [ 'shape' => 'RuleSetDoesNotExistException', ], [ 'shape' => 'RuleDoesNotExistException', ], ], ], 'UpdateReceiptRule' => [ 'name' => 'UpdateReceiptRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateReceiptRuleRequest', ], 'output' => [ 'shape' => 'UpdateReceiptRuleResponse', 'resultWrapper' => 'UpdateReceiptRuleResult', ], 'errors' => [ [ 'shape' => 'InvalidSnsTopicException', ], [ 'shape' => 'InvalidS3ConfigurationException', ], [ 'shape' => 'InvalidLambdaFunctionException', ], [ 'shape' => 'RuleSetDoesNotExistException', ], [ 'shape' => 'RuleDoesNotExistException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'VerifyDomainDkim' => [ 'name' => 'VerifyDomainDkim', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'VerifyDomainDkimRequest', ], 'output' => [ 'shape' => 'VerifyDomainDkimResponse', 'resultWrapper' => 'VerifyDomainDkimResult', ], ], 'VerifyDomainIdentity' => [ 'name' => 'VerifyDomainIdentity', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'VerifyDomainIdentityRequest', ], 'output' => [ 'shape' => 'VerifyDomainIdentityResponse', 'resultWrapper' => 'VerifyDomainIdentityResult', ], ], 'VerifyEmailAddress' => [ 'name' => 'VerifyEmailAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'VerifyEmailAddressRequest', ], ], 'VerifyEmailIdentity' => [ 'name' => 'VerifyEmailIdentity', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'VerifyEmailIdentityRequest', ], 'output' => [ 'shape' => 'VerifyEmailIdentityResponse', 'resultWrapper' => 'VerifyEmailIdentityResult', ], ], ], 'shapes' => [ 'AddHeaderAction' => [ 'type' => 'structure', 'required' => [ 'HeaderName', 'HeaderValue', ], 'members' => [ 'HeaderName' => [ 'shape' => 'HeaderName', ], 'HeaderValue' => [ 'shape' => 'HeaderValue', ], ], ], 'Address' => [ 'type' => 'string', ], 'AddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Address', ], ], 'AlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'RuleOrRuleSetName', ], ], 'error' => [ 'code' => 'AlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AmazonResourceName' => [ 'type' => 'string', ], 'ArrivalDate' => [ 'type' => 'timestamp', ], 'BehaviorOnMXFailure' => [ 'type' => 'string', 'enum' => [ 'UseDefaultValue', 'RejectMessage', ], ], 'Body' => [ 'type' => 'structure', 'members' => [ 'Text' => [ 'shape' => 'Content', ], 'Html' => [ 'shape' => 'Content', ], ], ], 'BounceAction' => [ 'type' => 'structure', 'required' => [ 'SmtpReplyCode', 'Message', 'Sender', ], 'members' => [ 'TopicArn' => [ 'shape' => 'AmazonResourceName', ], 'SmtpReplyCode' => [ 'shape' => 'BounceSmtpReplyCode', ], 'StatusCode' => [ 'shape' => 'BounceStatusCode', ], 'Message' => [ 'shape' => 'BounceMessage', ], 'Sender' => [ 'shape' => 'Address', ], ], ], 'BounceMessage' => [ 'type' => 'string', ], 'BounceSmtpReplyCode' => [ 'type' => 'string', ], 'BounceStatusCode' => [ 'type' => 'string', ], 'BounceType' => [ 'type' => 'string', 'enum' => [ 'DoesNotExist', 'MessageTooLarge', 'ExceededQuota', 'ContentRejected', 'Undefined', 'TemporaryFailure', ], ], 'BouncedRecipientInfo' => [ 'type' => 'structure', 'required' => [ 'Recipient', ], 'members' => [ 'Recipient' => [ 'shape' => 'Address', ], 'RecipientArn' => [ 'shape' => 'AmazonResourceName', ], 'BounceType' => [ 'shape' => 'BounceType', ], 'RecipientDsnFields' => [ 'shape' => 'RecipientDsnFields', ], ], ], 'BouncedRecipientInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BouncedRecipientInfo', ], ], 'CannotDeleteException' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'RuleOrRuleSetName', ], ], 'error' => [ 'code' => 'CannotDelete', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Charset' => [ 'type' => 'string', ], 'Cidr' => [ 'type' => 'string', ], 'CloneReceiptRuleSetRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'OriginalRuleSetName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'OriginalRuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], ], ], 'CloneReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'Content' => [ 'type' => 'structure', 'required' => [ 'Data', ], 'members' => [ 'Data' => [ 'shape' => 'MessageData', ], 'Charset' => [ 'shape' => 'Charset', ], ], ], 'Counter' => [ 'type' => 'long', ], 'CreateReceiptFilterRequest' => [ 'type' => 'structure', 'required' => [ 'Filter', ], 'members' => [ 'Filter' => [ 'shape' => 'ReceiptFilter', ], ], ], 'CreateReceiptFilterResponse' => [ 'type' => 'structure', 'members' => [], ], 'CreateReceiptRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'Rule', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'After' => [ 'shape' => 'ReceiptRuleName', ], 'Rule' => [ 'shape' => 'ReceiptRule', ], ], ], 'CreateReceiptRuleResponse' => [ 'type' => 'structure', 'members' => [], ], 'CreateReceiptRuleSetRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], ], ], 'CreateReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'CustomMailFromStatus' => [ 'type' => 'string', 'enum' => [ 'Pending', 'Success', 'Failed', 'TemporaryFailure', ], ], 'DeleteIdentityPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'PolicyName', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'PolicyName' => [ 'shape' => 'PolicyName', ], ], ], 'DeleteIdentityPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], ], ], 'DeleteIdentityResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteReceiptFilterRequest' => [ 'type' => 'structure', 'required' => [ 'FilterName', ], 'members' => [ 'FilterName' => [ 'shape' => 'ReceiptFilterName', ], ], ], 'DeleteReceiptFilterResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteReceiptRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'RuleName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'RuleName' => [ 'shape' => 'ReceiptRuleName', ], ], ], 'DeleteReceiptRuleResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteReceiptRuleSetRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], ], ], 'DeleteReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteVerifiedEmailAddressRequest' => [ 'type' => 'structure', 'required' => [ 'EmailAddress', ], 'members' => [ 'EmailAddress' => [ 'shape' => 'Address', ], ], ], 'DescribeActiveReceiptRuleSetRequest' => [ 'type' => 'structure', 'members' => [], ], 'DescribeActiveReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [ 'Metadata' => [ 'shape' => 'ReceiptRuleSetMetadata', ], 'Rules' => [ 'shape' => 'ReceiptRulesList', ], ], ], 'DescribeReceiptRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'RuleName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'RuleName' => [ 'shape' => 'ReceiptRuleName', ], ], ], 'DescribeReceiptRuleResponse' => [ 'type' => 'structure', 'members' => [ 'Rule' => [ 'shape' => 'ReceiptRule', ], ], ], 'DescribeReceiptRuleSetRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], ], ], 'DescribeReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [ 'Metadata' => [ 'shape' => 'ReceiptRuleSetMetadata', ], 'Rules' => [ 'shape' => 'ReceiptRulesList', ], ], ], 'Destination' => [ 'type' => 'structure', 'members' => [ 'ToAddresses' => [ 'shape' => 'AddressList', ], 'CcAddresses' => [ 'shape' => 'AddressList', ], 'BccAddresses' => [ 'shape' => 'AddressList', ], ], ], 'DiagnosticCode' => [ 'type' => 'string', ], 'DkimAttributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'Identity', ], 'value' => [ 'shape' => 'IdentityDkimAttributes', ], ], 'Domain' => [ 'type' => 'string', ], 'DsnAction' => [ 'type' => 'string', 'enum' => [ 'failed', 'delayed', 'delivered', 'relayed', 'expanded', ], ], 'DsnStatus' => [ 'type' => 'string', ], 'Enabled' => [ 'type' => 'boolean', ], 'Explanation' => [ 'type' => 'string', ], 'ExtensionField' => [ 'type' => 'structure', 'required' => [ 'Name', 'Value', ], 'members' => [ 'Name' => [ 'shape' => 'ExtensionFieldName', ], 'Value' => [ 'shape' => 'ExtensionFieldValue', ], ], ], 'ExtensionFieldList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExtensionField', ], ], 'ExtensionFieldName' => [ 'type' => 'string', ], 'ExtensionFieldValue' => [ 'type' => 'string', ], 'GetIdentityDkimAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'Identities', ], 'members' => [ 'Identities' => [ 'shape' => 'IdentityList', ], ], ], 'GetIdentityDkimAttributesResponse' => [ 'type' => 'structure', 'required' => [ 'DkimAttributes', ], 'members' => [ 'DkimAttributes' => [ 'shape' => 'DkimAttributes', ], ], ], 'GetIdentityMailFromDomainAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'Identities', ], 'members' => [ 'Identities' => [ 'shape' => 'IdentityList', ], ], ], 'GetIdentityMailFromDomainAttributesResponse' => [ 'type' => 'structure', 'required' => [ 'MailFromDomainAttributes', ], 'members' => [ 'MailFromDomainAttributes' => [ 'shape' => 'MailFromDomainAttributes', ], ], ], 'GetIdentityNotificationAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'Identities', ], 'members' => [ 'Identities' => [ 'shape' => 'IdentityList', ], ], ], 'GetIdentityNotificationAttributesResponse' => [ 'type' => 'structure', 'required' => [ 'NotificationAttributes', ], 'members' => [ 'NotificationAttributes' => [ 'shape' => 'NotificationAttributes', ], ], ], 'GetIdentityPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'PolicyNames', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'PolicyNames' => [ 'shape' => 'PolicyNameList', ], ], ], 'GetIdentityPoliciesResponse' => [ 'type' => 'structure', 'required' => [ 'Policies', ], 'members' => [ 'Policies' => [ 'shape' => 'PolicyMap', ], ], ], 'GetIdentityVerificationAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'Identities', ], 'members' => [ 'Identities' => [ 'shape' => 'IdentityList', ], ], ], 'GetIdentityVerificationAttributesResponse' => [ 'type' => 'structure', 'required' => [ 'VerificationAttributes', ], 'members' => [ 'VerificationAttributes' => [ 'shape' => 'VerificationAttributes', ], ], ], 'GetSendQuotaResponse' => [ 'type' => 'structure', 'members' => [ 'Max24HourSend' => [ 'shape' => 'Max24HourSend', ], 'MaxSendRate' => [ 'shape' => 'MaxSendRate', ], 'SentLast24Hours' => [ 'shape' => 'SentLast24Hours', ], ], ], 'GetSendStatisticsResponse' => [ 'type' => 'structure', 'members' => [ 'SendDataPoints' => [ 'shape' => 'SendDataPointList', ], ], ], 'HeaderName' => [ 'type' => 'string', ], 'HeaderValue' => [ 'type' => 'string', ], 'Identity' => [ 'type' => 'string', ], 'IdentityDkimAttributes' => [ 'type' => 'structure', 'required' => [ 'DkimEnabled', 'DkimVerificationStatus', ], 'members' => [ 'DkimEnabled' => [ 'shape' => 'Enabled', ], 'DkimVerificationStatus' => [ 'shape' => 'VerificationStatus', ], 'DkimTokens' => [ 'shape' => 'VerificationTokenList', ], ], ], 'IdentityList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Identity', ], ], 'IdentityMailFromDomainAttributes' => [ 'type' => 'structure', 'required' => [ 'MailFromDomain', 'MailFromDomainStatus', 'BehaviorOnMXFailure', ], 'members' => [ 'MailFromDomain' => [ 'shape' => 'MailFromDomainName', ], 'MailFromDomainStatus' => [ 'shape' => 'CustomMailFromStatus', ], 'BehaviorOnMXFailure' => [ 'shape' => 'BehaviorOnMXFailure', ], ], ], 'IdentityNotificationAttributes' => [ 'type' => 'structure', 'required' => [ 'BounceTopic', 'ComplaintTopic', 'DeliveryTopic', 'ForwardingEnabled', ], 'members' => [ 'BounceTopic' => [ 'shape' => 'NotificationTopic', ], 'ComplaintTopic' => [ 'shape' => 'NotificationTopic', ], 'DeliveryTopic' => [ 'shape' => 'NotificationTopic', ], 'ForwardingEnabled' => [ 'shape' => 'Enabled', ], 'HeadersInBounceNotificationsEnabled' => [ 'shape' => 'Enabled', ], 'HeadersInComplaintNotificationsEnabled' => [ 'shape' => 'Enabled', ], 'HeadersInDeliveryNotificationsEnabled' => [ 'shape' => 'Enabled', ], ], ], 'IdentityType' => [ 'type' => 'string', 'enum' => [ 'EmailAddress', 'Domain', ], ], 'IdentityVerificationAttributes' => [ 'type' => 'structure', 'required' => [ 'VerificationStatus', ], 'members' => [ 'VerificationStatus' => [ 'shape' => 'VerificationStatus', ], 'VerificationToken' => [ 'shape' => 'VerificationToken', ], ], ], 'InvalidLambdaFunctionException' => [ 'type' => 'structure', 'members' => [ 'FunctionArn' => [ 'shape' => 'AmazonResourceName', ], ], 'error' => [ 'code' => 'InvalidLambdaFunction', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidPolicyException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidPolicy', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidS3ConfigurationException' => [ 'type' => 'structure', 'members' => [ 'Bucket' => [ 'shape' => 'S3BucketName', ], ], 'error' => [ 'code' => 'InvalidS3Configuration', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSnsTopicException' => [ 'type' => 'structure', 'members' => [ 'Topic' => [ 'shape' => 'AmazonResourceName', ], ], 'error' => [ 'code' => 'InvalidSnsTopic', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvocationType' => [ 'type' => 'string', 'enum' => [ 'Event', 'RequestResponse', ], ], 'LambdaAction' => [ 'type' => 'structure', 'required' => [ 'FunctionArn', ], 'members' => [ 'TopicArn' => [ 'shape' => 'AmazonResourceName', ], 'FunctionArn' => [ 'shape' => 'AmazonResourceName', ], 'InvocationType' => [ 'shape' => 'InvocationType', ], ], ], 'LastAttemptDate' => [ 'type' => 'timestamp', ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'LimitExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ListIdentitiesRequest' => [ 'type' => 'structure', 'members' => [ 'IdentityType' => [ 'shape' => 'IdentityType', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxItems' => [ 'shape' => 'MaxItems', ], ], ], 'ListIdentitiesResponse' => [ 'type' => 'structure', 'required' => [ 'Identities', ], 'members' => [ 'Identities' => [ 'shape' => 'IdentityList', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListIdentityPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], ], ], 'ListIdentityPoliciesResponse' => [ 'type' => 'structure', 'required' => [ 'PolicyNames', ], 'members' => [ 'PolicyNames' => [ 'shape' => 'PolicyNameList', ], ], ], 'ListReceiptFiltersRequest' => [ 'type' => 'structure', 'members' => [], ], 'ListReceiptFiltersResponse' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'ReceiptFilterList', ], ], ], 'ListReceiptRuleSetsRequest' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListReceiptRuleSetsResponse' => [ 'type' => 'structure', 'members' => [ 'RuleSets' => [ 'shape' => 'ReceiptRuleSetsLists', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListVerifiedEmailAddressesResponse' => [ 'type' => 'structure', 'members' => [ 'VerifiedEmailAddresses' => [ 'shape' => 'AddressList', ], ], ], 'MailFromDomainAttributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'Identity', ], 'value' => [ 'shape' => 'IdentityMailFromDomainAttributes', ], ], 'MailFromDomainName' => [ 'type' => 'string', ], 'MailFromDomainNotVerifiedException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'MailFromDomainNotVerifiedException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Max24HourSend' => [ 'type' => 'double', ], 'MaxItems' => [ 'type' => 'integer', ], 'MaxSendRate' => [ 'type' => 'double', ], 'Message' => [ 'type' => 'structure', 'required' => [ 'Subject', 'Body', ], 'members' => [ 'Subject' => [ 'shape' => 'Content', ], 'Body' => [ 'shape' => 'Body', ], ], ], 'MessageData' => [ 'type' => 'string', ], 'MessageDsn' => [ 'type' => 'structure', 'required' => [ 'ReportingMta', ], 'members' => [ 'ReportingMta' => [ 'shape' => 'ReportingMta', ], 'ArrivalDate' => [ 'shape' => 'ArrivalDate', ], 'ExtensionFields' => [ 'shape' => 'ExtensionFieldList', ], ], ], 'MessageId' => [ 'type' => 'string', ], 'MessageRejected' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'MessageRejected', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'NextToken' => [ 'type' => 'string', ], 'NotificationAttributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'Identity', ], 'value' => [ 'shape' => 'IdentityNotificationAttributes', ], ], 'NotificationTopic' => [ 'type' => 'string', ], 'NotificationType' => [ 'type' => 'string', 'enum' => [ 'Bounce', 'Complaint', 'Delivery', ], ], 'Policy' => [ 'type' => 'string', 'min' => 1, ], 'PolicyMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'PolicyName', ], 'value' => [ 'shape' => 'Policy', ], ], 'PolicyName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'PolicyNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyName', ], ], 'PutIdentityPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'PolicyName', 'Policy', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'PolicyName' => [ 'shape' => 'PolicyName', ], 'Policy' => [ 'shape' => 'Policy', ], ], ], 'PutIdentityPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'RawMessage' => [ 'type' => 'structure', 'required' => [ 'Data', ], 'members' => [ 'Data' => [ 'shape' => 'RawMessageData', ], ], ], 'RawMessageData' => [ 'type' => 'blob', ], 'ReceiptAction' => [ 'type' => 'structure', 'members' => [ 'S3Action' => [ 'shape' => 'S3Action', ], 'BounceAction' => [ 'shape' => 'BounceAction', ], 'WorkmailAction' => [ 'shape' => 'WorkmailAction', ], 'LambdaAction' => [ 'shape' => 'LambdaAction', ], 'StopAction' => [ 'shape' => 'StopAction', ], 'AddHeaderAction' => [ 'shape' => 'AddHeaderAction', ], 'SNSAction' => [ 'shape' => 'SNSAction', ], ], ], 'ReceiptActionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReceiptAction', ], ], 'ReceiptFilter' => [ 'type' => 'structure', 'required' => [ 'Name', 'IpFilter', ], 'members' => [ 'Name' => [ 'shape' => 'ReceiptFilterName', ], 'IpFilter' => [ 'shape' => 'ReceiptIpFilter', ], ], ], 'ReceiptFilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReceiptFilter', ], ], 'ReceiptFilterName' => [ 'type' => 'string', ], 'ReceiptFilterPolicy' => [ 'type' => 'string', 'enum' => [ 'Block', 'Allow', ], ], 'ReceiptIpFilter' => [ 'type' => 'structure', 'required' => [ 'Policy', 'Cidr', ], 'members' => [ 'Policy' => [ 'shape' => 'ReceiptFilterPolicy', ], 'Cidr' => [ 'shape' => 'Cidr', ], ], ], 'ReceiptRule' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'ReceiptRuleName', ], 'Enabled' => [ 'shape' => 'Enabled', ], 'TlsPolicy' => [ 'shape' => 'TlsPolicy', ], 'Recipients' => [ 'shape' => 'RecipientsList', ], 'Actions' => [ 'shape' => 'ReceiptActionsList', ], 'ScanEnabled' => [ 'shape' => 'Enabled', ], ], ], 'ReceiptRuleName' => [ 'type' => 'string', ], 'ReceiptRuleNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReceiptRuleName', ], ], 'ReceiptRuleSetMetadata' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'ReceiptRuleSetName', ], 'CreatedTimestamp' => [ 'shape' => 'Timestamp', ], ], ], 'ReceiptRuleSetName' => [ 'type' => 'string', ], 'ReceiptRuleSetsLists' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReceiptRuleSetMetadata', ], ], 'ReceiptRulesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReceiptRule', ], ], 'Recipient' => [ 'type' => 'string', ], 'RecipientDsnFields' => [ 'type' => 'structure', 'required' => [ 'Action', 'Status', ], 'members' => [ 'FinalRecipient' => [ 'shape' => 'Address', ], 'Action' => [ 'shape' => 'DsnAction', ], 'RemoteMta' => [ 'shape' => 'RemoteMta', ], 'Status' => [ 'shape' => 'DsnStatus', ], 'DiagnosticCode' => [ 'shape' => 'DiagnosticCode', ], 'LastAttemptDate' => [ 'shape' => 'LastAttemptDate', ], 'ExtensionFields' => [ 'shape' => 'ExtensionFieldList', ], ], ], 'RecipientsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Recipient', ], ], 'RemoteMta' => [ 'type' => 'string', ], 'ReorderReceiptRuleSetRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'RuleNames', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'RuleNames' => [ 'shape' => 'ReceiptRuleNamesList', ], ], ], 'ReorderReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'ReportingMta' => [ 'type' => 'string', ], 'RuleDoesNotExistException' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'RuleOrRuleSetName', ], ], 'error' => [ 'code' => 'RuleDoesNotExist', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'RuleOrRuleSetName' => [ 'type' => 'string', ], 'RuleSetDoesNotExistException' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'RuleOrRuleSetName', ], ], 'error' => [ 'code' => 'RuleSetDoesNotExist', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'S3Action' => [ 'type' => 'structure', 'required' => [ 'BucketName', ], 'members' => [ 'TopicArn' => [ 'shape' => 'AmazonResourceName', ], 'BucketName' => [ 'shape' => 'S3BucketName', ], 'ObjectKeyPrefix' => [ 'shape' => 'S3KeyPrefix', ], 'KmsKeyArn' => [ 'shape' => 'AmazonResourceName', ], ], ], 'S3BucketName' => [ 'type' => 'string', ], 'S3KeyPrefix' => [ 'type' => 'string', ], 'SNSAction' => [ 'type' => 'structure', 'required' => [ 'TopicArn', ], 'members' => [ 'TopicArn' => [ 'shape' => 'AmazonResourceName', ], 'Encoding' => [ 'shape' => 'SNSActionEncoding', ], ], ], 'SNSActionEncoding' => [ 'type' => 'string', 'enum' => [ 'UTF-8', 'Base64', ], ], 'SendBounceRequest' => [ 'type' => 'structure', 'required' => [ 'OriginalMessageId', 'BounceSender', 'BouncedRecipientInfoList', ], 'members' => [ 'OriginalMessageId' => [ 'shape' => 'MessageId', ], 'BounceSender' => [ 'shape' => 'Address', ], 'Explanation' => [ 'shape' => 'Explanation', ], 'MessageDsn' => [ 'shape' => 'MessageDsn', ], 'BouncedRecipientInfoList' => [ 'shape' => 'BouncedRecipientInfoList', ], 'BounceSenderArn' => [ 'shape' => 'AmazonResourceName', ], ], ], 'SendBounceResponse' => [ 'type' => 'structure', 'members' => [ 'MessageId' => [ 'shape' => 'MessageId', ], ], ], 'SendDataPoint' => [ 'type' => 'structure', 'members' => [ 'Timestamp' => [ 'shape' => 'Timestamp', ], 'DeliveryAttempts' => [ 'shape' => 'Counter', ], 'Bounces' => [ 'shape' => 'Counter', ], 'Complaints' => [ 'shape' => 'Counter', ], 'Rejects' => [ 'shape' => 'Counter', ], ], ], 'SendDataPointList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SendDataPoint', ], ], 'SendEmailRequest' => [ 'type' => 'structure', 'required' => [ 'Source', 'Destination', 'Message', ], 'members' => [ 'Source' => [ 'shape' => 'Address', ], 'Destination' => [ 'shape' => 'Destination', ], 'Message' => [ 'shape' => 'Message', ], 'ReplyToAddresses' => [ 'shape' => 'AddressList', ], 'ReturnPath' => [ 'shape' => 'Address', ], 'SourceArn' => [ 'shape' => 'AmazonResourceName', ], 'ReturnPathArn' => [ 'shape' => 'AmazonResourceName', ], ], ], 'SendEmailResponse' => [ 'type' => 'structure', 'required' => [ 'MessageId', ], 'members' => [ 'MessageId' => [ 'shape' => 'MessageId', ], ], ], 'SendRawEmailRequest' => [ 'type' => 'structure', 'required' => [ 'RawMessage', ], 'members' => [ 'Source' => [ 'shape' => 'Address', ], 'Destinations' => [ 'shape' => 'AddressList', ], 'RawMessage' => [ 'shape' => 'RawMessage', ], 'FromArn' => [ 'shape' => 'AmazonResourceName', ], 'SourceArn' => [ 'shape' => 'AmazonResourceName', ], 'ReturnPathArn' => [ 'shape' => 'AmazonResourceName', ], ], ], 'SendRawEmailResponse' => [ 'type' => 'structure', 'required' => [ 'MessageId', ], 'members' => [ 'MessageId' => [ 'shape' => 'MessageId', ], ], ], 'SentLast24Hours' => [ 'type' => 'double', ], 'SetActiveReceiptRuleSetRequest' => [ 'type' => 'structure', 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], ], ], 'SetActiveReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'SetIdentityDkimEnabledRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'DkimEnabled', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'DkimEnabled' => [ 'shape' => 'Enabled', ], ], ], 'SetIdentityDkimEnabledResponse' => [ 'type' => 'structure', 'members' => [], ], 'SetIdentityFeedbackForwardingEnabledRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'ForwardingEnabled', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'ForwardingEnabled' => [ 'shape' => 'Enabled', ], ], ], 'SetIdentityFeedbackForwardingEnabledResponse' => [ 'type' => 'structure', 'members' => [], ], 'SetIdentityHeadersInNotificationsEnabledRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'NotificationType', 'Enabled', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'NotificationType' => [ 'shape' => 'NotificationType', ], 'Enabled' => [ 'shape' => 'Enabled', ], ], ], 'SetIdentityHeadersInNotificationsEnabledResponse' => [ 'type' => 'structure', 'members' => [], ], 'SetIdentityMailFromDomainRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'MailFromDomain' => [ 'shape' => 'MailFromDomainName', ], 'BehaviorOnMXFailure' => [ 'shape' => 'BehaviorOnMXFailure', ], ], ], 'SetIdentityMailFromDomainResponse' => [ 'type' => 'structure', 'members' => [], ], 'SetIdentityNotificationTopicRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'NotificationType', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'NotificationType' => [ 'shape' => 'NotificationType', ], 'SnsTopic' => [ 'shape' => 'NotificationTopic', ], ], ], 'SetIdentityNotificationTopicResponse' => [ 'type' => 'structure', 'members' => [], ], 'SetReceiptRulePositionRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'RuleName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'RuleName' => [ 'shape' => 'ReceiptRuleName', ], 'After' => [ 'shape' => 'ReceiptRuleName', ], ], ], 'SetReceiptRulePositionResponse' => [ 'type' => 'structure', 'members' => [], ], 'StopAction' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'StopScope', ], 'TopicArn' => [ 'shape' => 'AmazonResourceName', ], ], ], 'StopScope' => [ 'type' => 'string', 'enum' => [ 'RuleSet', ], ], 'Timestamp' => [ 'type' => 'timestamp', ], 'TlsPolicy' => [ 'type' => 'string', 'enum' => [ 'Require', 'Optional', ], ], 'UpdateReceiptRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'Rule', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'Rule' => [ 'shape' => 'ReceiptRule', ], ], ], 'UpdateReceiptRuleResponse' => [ 'type' => 'structure', 'members' => [], ], 'VerificationAttributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'Identity', ], 'value' => [ 'shape' => 'IdentityVerificationAttributes', ], ], 'VerificationStatus' => [ 'type' => 'string', 'enum' => [ 'Pending', 'Success', 'Failed', 'TemporaryFailure', 'NotStarted', ], ], 'VerificationToken' => [ 'type' => 'string', ], 'VerificationTokenList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerificationToken', ], ], 'VerifyDomainDkimRequest' => [ 'type' => 'structure', 'required' => [ 'Domain', ], 'members' => [ 'Domain' => [ 'shape' => 'Domain', ], ], ], 'VerifyDomainDkimResponse' => [ 'type' => 'structure', 'required' => [ 'DkimTokens', ], 'members' => [ 'DkimTokens' => [ 'shape' => 'VerificationTokenList', ], ], ], 'VerifyDomainIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'Domain', ], 'members' => [ 'Domain' => [ 'shape' => 'Domain', ], ], ], 'VerifyDomainIdentityResponse' => [ 'type' => 'structure', 'required' => [ 'VerificationToken', ], 'members' => [ 'VerificationToken' => [ 'shape' => 'VerificationToken', ], ], ], 'VerifyEmailAddressRequest' => [ 'type' => 'structure', 'required' => [ 'EmailAddress', ], 'members' => [ 'EmailAddress' => [ 'shape' => 'Address', ], ], ], 'VerifyEmailIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'EmailAddress', ], 'members' => [ 'EmailAddress' => [ 'shape' => 'Address', ], ], ], 'VerifyEmailIdentityResponse' => [ 'type' => 'structure', 'members' => [], ], 'WorkmailAction' => [ 'type' => 'structure', 'required' => [ 'OrganizationArn', ], 'members' => [ 'TopicArn' => [ 'shape' => 'AmazonResourceName', ], 'OrganizationArn' => [ 'shape' => 'AmazonResourceName', ], ], ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2010-12-01', 'endpointPrefix' => 'email', 'protocol' => 'query', 'serviceAbbreviation' => 'Amazon SES', 'serviceFullName' => 'Amazon Simple Email Service', 'signatureVersion' => 'v4', 'signingName' => 'ses', 'xmlNamespace' => 'http://ses.amazonaws.com/doc/2010-12-01/', ], 'operations' => [ 'CloneReceiptRuleSet' => [ 'name' => 'CloneReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CloneReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'CloneReceiptRuleSetResponse', 'resultWrapper' => 'CloneReceiptRuleSetResult', ], 'errors' => [ [ 'shape' => 'RuleSetDoesNotExistException', ], [ 'shape' => 'AlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateConfigurationSet' => [ 'name' => 'CreateConfigurationSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateConfigurationSetRequest', ], 'output' => [ 'shape' => 'CreateConfigurationSetResponse', 'resultWrapper' => 'CreateConfigurationSetResult', ], 'errors' => [ [ 'shape' => 'ConfigurationSetAlreadyExistsException', ], [ 'shape' => 'InvalidConfigurationSetException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateConfigurationSetEventDestination' => [ 'name' => 'CreateConfigurationSetEventDestination', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateConfigurationSetEventDestinationRequest', ], 'output' => [ 'shape' => 'CreateConfigurationSetEventDestinationResponse', 'resultWrapper' => 'CreateConfigurationSetEventDestinationResult', ], 'errors' => [ [ 'shape' => 'ConfigurationSetDoesNotExistException', ], [ 'shape' => 'EventDestinationAlreadyExistsException', ], [ 'shape' => 'InvalidCloudWatchDestinationException', ], [ 'shape' => 'InvalidFirehoseDestinationException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateReceiptFilter' => [ 'name' => 'CreateReceiptFilter', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReceiptFilterRequest', ], 'output' => [ 'shape' => 'CreateReceiptFilterResponse', 'resultWrapper' => 'CreateReceiptFilterResult', ], 'errors' => [ [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'AlreadyExistsException', ], ], ], 'CreateReceiptRule' => [ 'name' => 'CreateReceiptRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReceiptRuleRequest', ], 'output' => [ 'shape' => 'CreateReceiptRuleResponse', 'resultWrapper' => 'CreateReceiptRuleResult', ], 'errors' => [ [ 'shape' => 'InvalidSnsTopicException', ], [ 'shape' => 'InvalidS3ConfigurationException', ], [ 'shape' => 'InvalidLambdaFunctionException', ], [ 'shape' => 'AlreadyExistsException', ], [ 'shape' => 'RuleDoesNotExistException', ], [ 'shape' => 'RuleSetDoesNotExistException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateReceiptRuleSet' => [ 'name' => 'CreateReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'CreateReceiptRuleSetResponse', 'resultWrapper' => 'CreateReceiptRuleSetResult', ], 'errors' => [ [ 'shape' => 'AlreadyExistsException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'DeleteConfigurationSet' => [ 'name' => 'DeleteConfigurationSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteConfigurationSetRequest', ], 'output' => [ 'shape' => 'DeleteConfigurationSetResponse', 'resultWrapper' => 'DeleteConfigurationSetResult', ], 'errors' => [ [ 'shape' => 'ConfigurationSetDoesNotExistException', ], ], ], 'DeleteConfigurationSetEventDestination' => [ 'name' => 'DeleteConfigurationSetEventDestination', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteConfigurationSetEventDestinationRequest', ], 'output' => [ 'shape' => 'DeleteConfigurationSetEventDestinationResponse', 'resultWrapper' => 'DeleteConfigurationSetEventDestinationResult', ], 'errors' => [ [ 'shape' => 'ConfigurationSetDoesNotExistException', ], [ 'shape' => 'EventDestinationDoesNotExistException', ], ], ], 'DeleteIdentity' => [ 'name' => 'DeleteIdentity', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIdentityRequest', ], 'output' => [ 'shape' => 'DeleteIdentityResponse', 'resultWrapper' => 'DeleteIdentityResult', ], ], 'DeleteIdentityPolicy' => [ 'name' => 'DeleteIdentityPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIdentityPolicyRequest', ], 'output' => [ 'shape' => 'DeleteIdentityPolicyResponse', 'resultWrapper' => 'DeleteIdentityPolicyResult', ], ], 'DeleteReceiptFilter' => [ 'name' => 'DeleteReceiptFilter', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteReceiptFilterRequest', ], 'output' => [ 'shape' => 'DeleteReceiptFilterResponse', 'resultWrapper' => 'DeleteReceiptFilterResult', ], ], 'DeleteReceiptRule' => [ 'name' => 'DeleteReceiptRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteReceiptRuleRequest', ], 'output' => [ 'shape' => 'DeleteReceiptRuleResponse', 'resultWrapper' => 'DeleteReceiptRuleResult', ], 'errors' => [ [ 'shape' => 'RuleSetDoesNotExistException', ], ], ], 'DeleteReceiptRuleSet' => [ 'name' => 'DeleteReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'DeleteReceiptRuleSetResponse', 'resultWrapper' => 'DeleteReceiptRuleSetResult', ], 'errors' => [ [ 'shape' => 'CannotDeleteException', ], ], ], 'DeleteVerifiedEmailAddress' => [ 'name' => 'DeleteVerifiedEmailAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteVerifiedEmailAddressRequest', ], ], 'DescribeActiveReceiptRuleSet' => [ 'name' => 'DescribeActiveReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeActiveReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'DescribeActiveReceiptRuleSetResponse', 'resultWrapper' => 'DescribeActiveReceiptRuleSetResult', ], ], 'DescribeConfigurationSet' => [ 'name' => 'DescribeConfigurationSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeConfigurationSetRequest', ], 'output' => [ 'shape' => 'DescribeConfigurationSetResponse', 'resultWrapper' => 'DescribeConfigurationSetResult', ], 'errors' => [ [ 'shape' => 'ConfigurationSetDoesNotExistException', ], ], ], 'DescribeReceiptRule' => [ 'name' => 'DescribeReceiptRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReceiptRuleRequest', ], 'output' => [ 'shape' => 'DescribeReceiptRuleResponse', 'resultWrapper' => 'DescribeReceiptRuleResult', ], 'errors' => [ [ 'shape' => 'RuleDoesNotExistException', ], [ 'shape' => 'RuleSetDoesNotExistException', ], ], ], 'DescribeReceiptRuleSet' => [ 'name' => 'DescribeReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'DescribeReceiptRuleSetResponse', 'resultWrapper' => 'DescribeReceiptRuleSetResult', ], 'errors' => [ [ 'shape' => 'RuleSetDoesNotExistException', ], ], ], 'GetIdentityDkimAttributes' => [ 'name' => 'GetIdentityDkimAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIdentityDkimAttributesRequest', ], 'output' => [ 'shape' => 'GetIdentityDkimAttributesResponse', 'resultWrapper' => 'GetIdentityDkimAttributesResult', ], ], 'GetIdentityMailFromDomainAttributes' => [ 'name' => 'GetIdentityMailFromDomainAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIdentityMailFromDomainAttributesRequest', ], 'output' => [ 'shape' => 'GetIdentityMailFromDomainAttributesResponse', 'resultWrapper' => 'GetIdentityMailFromDomainAttributesResult', ], ], 'GetIdentityNotificationAttributes' => [ 'name' => 'GetIdentityNotificationAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIdentityNotificationAttributesRequest', ], 'output' => [ 'shape' => 'GetIdentityNotificationAttributesResponse', 'resultWrapper' => 'GetIdentityNotificationAttributesResult', ], ], 'GetIdentityPolicies' => [ 'name' => 'GetIdentityPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIdentityPoliciesRequest', ], 'output' => [ 'shape' => 'GetIdentityPoliciesResponse', 'resultWrapper' => 'GetIdentityPoliciesResult', ], ], 'GetIdentityVerificationAttributes' => [ 'name' => 'GetIdentityVerificationAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIdentityVerificationAttributesRequest', ], 'output' => [ 'shape' => 'GetIdentityVerificationAttributesResponse', 'resultWrapper' => 'GetIdentityVerificationAttributesResult', ], ], 'GetSendQuota' => [ 'name' => 'GetSendQuota', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'GetSendQuotaResponse', 'resultWrapper' => 'GetSendQuotaResult', ], ], 'GetSendStatistics' => [ 'name' => 'GetSendStatistics', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'GetSendStatisticsResponse', 'resultWrapper' => 'GetSendStatisticsResult', ], ], 'ListConfigurationSets' => [ 'name' => 'ListConfigurationSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListConfigurationSetsRequest', ], 'output' => [ 'shape' => 'ListConfigurationSetsResponse', 'resultWrapper' => 'ListConfigurationSetsResult', ], ], 'ListIdentities' => [ 'name' => 'ListIdentities', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListIdentitiesRequest', ], 'output' => [ 'shape' => 'ListIdentitiesResponse', 'resultWrapper' => 'ListIdentitiesResult', ], ], 'ListIdentityPolicies' => [ 'name' => 'ListIdentityPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListIdentityPoliciesRequest', ], 'output' => [ 'shape' => 'ListIdentityPoliciesResponse', 'resultWrapper' => 'ListIdentityPoliciesResult', ], ], 'ListReceiptFilters' => [ 'name' => 'ListReceiptFilters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListReceiptFiltersRequest', ], 'output' => [ 'shape' => 'ListReceiptFiltersResponse', 'resultWrapper' => 'ListReceiptFiltersResult', ], ], 'ListReceiptRuleSets' => [ 'name' => 'ListReceiptRuleSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListReceiptRuleSetsRequest', ], 'output' => [ 'shape' => 'ListReceiptRuleSetsResponse', 'resultWrapper' => 'ListReceiptRuleSetsResult', ], ], 'ListVerifiedEmailAddresses' => [ 'name' => 'ListVerifiedEmailAddresses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'output' => [ 'shape' => 'ListVerifiedEmailAddressesResponse', 'resultWrapper' => 'ListVerifiedEmailAddressesResult', ], ], 'PutIdentityPolicy' => [ 'name' => 'PutIdentityPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutIdentityPolicyRequest', ], 'output' => [ 'shape' => 'PutIdentityPolicyResponse', 'resultWrapper' => 'PutIdentityPolicyResult', ], 'errors' => [ [ 'shape' => 'InvalidPolicyException', ], ], ], 'ReorderReceiptRuleSet' => [ 'name' => 'ReorderReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReorderReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'ReorderReceiptRuleSetResponse', 'resultWrapper' => 'ReorderReceiptRuleSetResult', ], 'errors' => [ [ 'shape' => 'RuleSetDoesNotExistException', ], [ 'shape' => 'RuleDoesNotExistException', ], ], ], 'SendBounce' => [ 'name' => 'SendBounce', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SendBounceRequest', ], 'output' => [ 'shape' => 'SendBounceResponse', 'resultWrapper' => 'SendBounceResult', ], 'errors' => [ [ 'shape' => 'MessageRejected', ], ], ], 'SendEmail' => [ 'name' => 'SendEmail', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SendEmailRequest', ], 'output' => [ 'shape' => 'SendEmailResponse', 'resultWrapper' => 'SendEmailResult', ], 'errors' => [ [ 'shape' => 'MessageRejected', ], [ 'shape' => 'MailFromDomainNotVerifiedException', ], [ 'shape' => 'ConfigurationSetDoesNotExistException', ], ], ], 'SendRawEmail' => [ 'name' => 'SendRawEmail', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SendRawEmailRequest', ], 'output' => [ 'shape' => 'SendRawEmailResponse', 'resultWrapper' => 'SendRawEmailResult', ], 'errors' => [ [ 'shape' => 'MessageRejected', ], [ 'shape' => 'MailFromDomainNotVerifiedException', ], [ 'shape' => 'ConfigurationSetDoesNotExistException', ], ], ], 'SetActiveReceiptRuleSet' => [ 'name' => 'SetActiveReceiptRuleSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetActiveReceiptRuleSetRequest', ], 'output' => [ 'shape' => 'SetActiveReceiptRuleSetResponse', 'resultWrapper' => 'SetActiveReceiptRuleSetResult', ], 'errors' => [ [ 'shape' => 'RuleSetDoesNotExistException', ], ], ], 'SetIdentityDkimEnabled' => [ 'name' => 'SetIdentityDkimEnabled', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetIdentityDkimEnabledRequest', ], 'output' => [ 'shape' => 'SetIdentityDkimEnabledResponse', 'resultWrapper' => 'SetIdentityDkimEnabledResult', ], ], 'SetIdentityFeedbackForwardingEnabled' => [ 'name' => 'SetIdentityFeedbackForwardingEnabled', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetIdentityFeedbackForwardingEnabledRequest', ], 'output' => [ 'shape' => 'SetIdentityFeedbackForwardingEnabledResponse', 'resultWrapper' => 'SetIdentityFeedbackForwardingEnabledResult', ], ], 'SetIdentityHeadersInNotificationsEnabled' => [ 'name' => 'SetIdentityHeadersInNotificationsEnabled', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetIdentityHeadersInNotificationsEnabledRequest', ], 'output' => [ 'shape' => 'SetIdentityHeadersInNotificationsEnabledResponse', 'resultWrapper' => 'SetIdentityHeadersInNotificationsEnabledResult', ], ], 'SetIdentityMailFromDomain' => [ 'name' => 'SetIdentityMailFromDomain', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetIdentityMailFromDomainRequest', ], 'output' => [ 'shape' => 'SetIdentityMailFromDomainResponse', 'resultWrapper' => 'SetIdentityMailFromDomainResult', ], ], 'SetIdentityNotificationTopic' => [ 'name' => 'SetIdentityNotificationTopic', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetIdentityNotificationTopicRequest', ], 'output' => [ 'shape' => 'SetIdentityNotificationTopicResponse', 'resultWrapper' => 'SetIdentityNotificationTopicResult', ], ], 'SetReceiptRulePosition' => [ 'name' => 'SetReceiptRulePosition', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SetReceiptRulePositionRequest', ], 'output' => [ 'shape' => 'SetReceiptRulePositionResponse', 'resultWrapper' => 'SetReceiptRulePositionResult', ], 'errors' => [ [ 'shape' => 'RuleSetDoesNotExistException', ], [ 'shape' => 'RuleDoesNotExistException', ], ], ], 'UpdateConfigurationSetEventDestination' => [ 'name' => 'UpdateConfigurationSetEventDestination', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateConfigurationSetEventDestinationRequest', ], 'output' => [ 'shape' => 'UpdateConfigurationSetEventDestinationResponse', 'resultWrapper' => 'UpdateConfigurationSetEventDestinationResult', ], 'errors' => [ [ 'shape' => 'ConfigurationSetDoesNotExistException', ], [ 'shape' => 'EventDestinationDoesNotExistException', ], [ 'shape' => 'InvalidCloudWatchDestinationException', ], [ 'shape' => 'InvalidFirehoseDestinationException', ], ], ], 'UpdateReceiptRule' => [ 'name' => 'UpdateReceiptRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateReceiptRuleRequest', ], 'output' => [ 'shape' => 'UpdateReceiptRuleResponse', 'resultWrapper' => 'UpdateReceiptRuleResult', ], 'errors' => [ [ 'shape' => 'InvalidSnsTopicException', ], [ 'shape' => 'InvalidS3ConfigurationException', ], [ 'shape' => 'InvalidLambdaFunctionException', ], [ 'shape' => 'RuleSetDoesNotExistException', ], [ 'shape' => 'RuleDoesNotExistException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'VerifyDomainDkim' => [ 'name' => 'VerifyDomainDkim', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'VerifyDomainDkimRequest', ], 'output' => [ 'shape' => 'VerifyDomainDkimResponse', 'resultWrapper' => 'VerifyDomainDkimResult', ], ], 'VerifyDomainIdentity' => [ 'name' => 'VerifyDomainIdentity', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'VerifyDomainIdentityRequest', ], 'output' => [ 'shape' => 'VerifyDomainIdentityResponse', 'resultWrapper' => 'VerifyDomainIdentityResult', ], ], 'VerifyEmailAddress' => [ 'name' => 'VerifyEmailAddress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'VerifyEmailAddressRequest', ], ], 'VerifyEmailIdentity' => [ 'name' => 'VerifyEmailIdentity', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'VerifyEmailIdentityRequest', ], 'output' => [ 'shape' => 'VerifyEmailIdentityResponse', 'resultWrapper' => 'VerifyEmailIdentityResult', ], ], ], 'shapes' => [ 'AddHeaderAction' => [ 'type' => 'structure', 'required' => [ 'HeaderName', 'HeaderValue', ], 'members' => [ 'HeaderName' => [ 'shape' => 'HeaderName', ], 'HeaderValue' => [ 'shape' => 'HeaderValue', ], ], ], 'Address' => [ 'type' => 'string', ], 'AddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Address', ], ], 'AlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'RuleOrRuleSetName', ], ], 'error' => [ 'code' => 'AlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AmazonResourceName' => [ 'type' => 'string', ], 'ArrivalDate' => [ 'type' => 'timestamp', ], 'BehaviorOnMXFailure' => [ 'type' => 'string', 'enum' => [ 'UseDefaultValue', 'RejectMessage', ], ], 'Body' => [ 'type' => 'structure', 'members' => [ 'Text' => [ 'shape' => 'Content', ], 'Html' => [ 'shape' => 'Content', ], ], ], 'BounceAction' => [ 'type' => 'structure', 'required' => [ 'SmtpReplyCode', 'Message', 'Sender', ], 'members' => [ 'TopicArn' => [ 'shape' => 'AmazonResourceName', ], 'SmtpReplyCode' => [ 'shape' => 'BounceSmtpReplyCode', ], 'StatusCode' => [ 'shape' => 'BounceStatusCode', ], 'Message' => [ 'shape' => 'BounceMessage', ], 'Sender' => [ 'shape' => 'Address', ], ], ], 'BounceMessage' => [ 'type' => 'string', ], 'BounceSmtpReplyCode' => [ 'type' => 'string', ], 'BounceStatusCode' => [ 'type' => 'string', ], 'BounceType' => [ 'type' => 'string', 'enum' => [ 'DoesNotExist', 'MessageTooLarge', 'ExceededQuota', 'ContentRejected', 'Undefined', 'TemporaryFailure', ], ], 'BouncedRecipientInfo' => [ 'type' => 'structure', 'required' => [ 'Recipient', ], 'members' => [ 'Recipient' => [ 'shape' => 'Address', ], 'RecipientArn' => [ 'shape' => 'AmazonResourceName', ], 'BounceType' => [ 'shape' => 'BounceType', ], 'RecipientDsnFields' => [ 'shape' => 'RecipientDsnFields', ], ], ], 'BouncedRecipientInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BouncedRecipientInfo', ], ], 'CannotDeleteException' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'RuleOrRuleSetName', ], ], 'error' => [ 'code' => 'CannotDelete', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Charset' => [ 'type' => 'string', ], 'Cidr' => [ 'type' => 'string', ], 'CloneReceiptRuleSetRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'OriginalRuleSetName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'OriginalRuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], ], ], 'CloneReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'CloudWatchDestination' => [ 'type' => 'structure', 'required' => [ 'DimensionConfigurations', ], 'members' => [ 'DimensionConfigurations' => [ 'shape' => 'CloudWatchDimensionConfigurations', ], ], ], 'CloudWatchDimensionConfiguration' => [ 'type' => 'structure', 'required' => [ 'DimensionName', 'DimensionValueSource', 'DefaultDimensionValue', ], 'members' => [ 'DimensionName' => [ 'shape' => 'DimensionName', ], 'DimensionValueSource' => [ 'shape' => 'DimensionValueSource', ], 'DefaultDimensionValue' => [ 'shape' => 'DefaultDimensionValue', ], ], ], 'CloudWatchDimensionConfigurations' => [ 'type' => 'list', 'member' => [ 'shape' => 'CloudWatchDimensionConfiguration', ], ], 'ConfigurationSet' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'ConfigurationSetName', ], ], ], 'ConfigurationSetAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'ConfigurationSetName' => [ 'shape' => 'ConfigurationSetName', ], ], 'error' => [ 'code' => 'ConfigurationSetAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ConfigurationSetAttribute' => [ 'type' => 'string', 'enum' => [ 'eventDestinations', ], ], 'ConfigurationSetAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationSetAttribute', ], ], 'ConfigurationSetDoesNotExistException' => [ 'type' => 'structure', 'members' => [ 'ConfigurationSetName' => [ 'shape' => 'ConfigurationSetName', ], ], 'error' => [ 'code' => 'ConfigurationSetDoesNotExist', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ConfigurationSetName' => [ 'type' => 'string', ], 'ConfigurationSets' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConfigurationSet', ], ], 'Content' => [ 'type' => 'structure', 'required' => [ 'Data', ], 'members' => [ 'Data' => [ 'shape' => 'MessageData', ], 'Charset' => [ 'shape' => 'Charset', ], ], ], 'Counter' => [ 'type' => 'long', ], 'CreateConfigurationSetEventDestinationRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationSetName', 'EventDestination', ], 'members' => [ 'ConfigurationSetName' => [ 'shape' => 'ConfigurationSetName', ], 'EventDestination' => [ 'shape' => 'EventDestination', ], ], ], 'CreateConfigurationSetEventDestinationResponse' => [ 'type' => 'structure', 'members' => [], ], 'CreateConfigurationSetRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationSet', ], 'members' => [ 'ConfigurationSet' => [ 'shape' => 'ConfigurationSet', ], ], ], 'CreateConfigurationSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'CreateReceiptFilterRequest' => [ 'type' => 'structure', 'required' => [ 'Filter', ], 'members' => [ 'Filter' => [ 'shape' => 'ReceiptFilter', ], ], ], 'CreateReceiptFilterResponse' => [ 'type' => 'structure', 'members' => [], ], 'CreateReceiptRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'Rule', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'After' => [ 'shape' => 'ReceiptRuleName', ], 'Rule' => [ 'shape' => 'ReceiptRule', ], ], ], 'CreateReceiptRuleResponse' => [ 'type' => 'structure', 'members' => [], ], 'CreateReceiptRuleSetRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], ], ], 'CreateReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'CustomMailFromStatus' => [ 'type' => 'string', 'enum' => [ 'Pending', 'Success', 'Failed', 'TemporaryFailure', ], ], 'DefaultDimensionValue' => [ 'type' => 'string', ], 'DeleteConfigurationSetEventDestinationRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationSetName', 'EventDestinationName', ], 'members' => [ 'ConfigurationSetName' => [ 'shape' => 'ConfigurationSetName', ], 'EventDestinationName' => [ 'shape' => 'EventDestinationName', ], ], ], 'DeleteConfigurationSetEventDestinationResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteConfigurationSetRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationSetName', ], 'members' => [ 'ConfigurationSetName' => [ 'shape' => 'ConfigurationSetName', ], ], ], 'DeleteConfigurationSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteIdentityPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'PolicyName', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'PolicyName' => [ 'shape' => 'PolicyName', ], ], ], 'DeleteIdentityPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], ], ], 'DeleteIdentityResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteReceiptFilterRequest' => [ 'type' => 'structure', 'required' => [ 'FilterName', ], 'members' => [ 'FilterName' => [ 'shape' => 'ReceiptFilterName', ], ], ], 'DeleteReceiptFilterResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteReceiptRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'RuleName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'RuleName' => [ 'shape' => 'ReceiptRuleName', ], ], ], 'DeleteReceiptRuleResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteReceiptRuleSetRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], ], ], 'DeleteReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteVerifiedEmailAddressRequest' => [ 'type' => 'structure', 'required' => [ 'EmailAddress', ], 'members' => [ 'EmailAddress' => [ 'shape' => 'Address', ], ], ], 'DescribeActiveReceiptRuleSetRequest' => [ 'type' => 'structure', 'members' => [], ], 'DescribeActiveReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [ 'Metadata' => [ 'shape' => 'ReceiptRuleSetMetadata', ], 'Rules' => [ 'shape' => 'ReceiptRulesList', ], ], ], 'DescribeConfigurationSetRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationSetName', ], 'members' => [ 'ConfigurationSetName' => [ 'shape' => 'ConfigurationSetName', ], 'ConfigurationSetAttributeNames' => [ 'shape' => 'ConfigurationSetAttributeList', ], ], ], 'DescribeConfigurationSetResponse' => [ 'type' => 'structure', 'members' => [ 'ConfigurationSet' => [ 'shape' => 'ConfigurationSet', ], 'EventDestinations' => [ 'shape' => 'EventDestinations', ], ], ], 'DescribeReceiptRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'RuleName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'RuleName' => [ 'shape' => 'ReceiptRuleName', ], ], ], 'DescribeReceiptRuleResponse' => [ 'type' => 'structure', 'members' => [ 'Rule' => [ 'shape' => 'ReceiptRule', ], ], ], 'DescribeReceiptRuleSetRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], ], ], 'DescribeReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [ 'Metadata' => [ 'shape' => 'ReceiptRuleSetMetadata', ], 'Rules' => [ 'shape' => 'ReceiptRulesList', ], ], ], 'Destination' => [ 'type' => 'structure', 'members' => [ 'ToAddresses' => [ 'shape' => 'AddressList', ], 'CcAddresses' => [ 'shape' => 'AddressList', ], 'BccAddresses' => [ 'shape' => 'AddressList', ], ], ], 'DiagnosticCode' => [ 'type' => 'string', ], 'DimensionName' => [ 'type' => 'string', ], 'DimensionValueSource' => [ 'type' => 'string', 'enum' => [ 'messageTag', 'emailHeader', ], ], 'DkimAttributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'Identity', ], 'value' => [ 'shape' => 'IdentityDkimAttributes', ], ], 'Domain' => [ 'type' => 'string', ], 'DsnAction' => [ 'type' => 'string', 'enum' => [ 'failed', 'delayed', 'delivered', 'relayed', 'expanded', ], ], 'DsnStatus' => [ 'type' => 'string', ], 'Enabled' => [ 'type' => 'boolean', ], 'EventDestination' => [ 'type' => 'structure', 'required' => [ 'Name', 'MatchingEventTypes', ], 'members' => [ 'Name' => [ 'shape' => 'EventDestinationName', ], 'Enabled' => [ 'shape' => 'Enabled', ], 'MatchingEventTypes' => [ 'shape' => 'EventTypes', ], 'KinesisFirehoseDestination' => [ 'shape' => 'KinesisFirehoseDestination', ], 'CloudWatchDestination' => [ 'shape' => 'CloudWatchDestination', ], ], ], 'EventDestinationAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'ConfigurationSetName' => [ 'shape' => 'ConfigurationSetName', ], 'EventDestinationName' => [ 'shape' => 'EventDestinationName', ], ], 'error' => [ 'code' => 'EventDestinationAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'EventDestinationDoesNotExistException' => [ 'type' => 'structure', 'members' => [ 'ConfigurationSetName' => [ 'shape' => 'ConfigurationSetName', ], 'EventDestinationName' => [ 'shape' => 'EventDestinationName', ], ], 'error' => [ 'code' => 'EventDestinationDoesNotExist', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'EventDestinationName' => [ 'type' => 'string', ], 'EventDestinations' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventDestination', ], ], 'EventType' => [ 'type' => 'string', 'enum' => [ 'send', 'reject', 'bounce', 'complaint', 'delivery', ], ], 'EventTypes' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventType', ], ], 'Explanation' => [ 'type' => 'string', ], 'ExtensionField' => [ 'type' => 'structure', 'required' => [ 'Name', 'Value', ], 'members' => [ 'Name' => [ 'shape' => 'ExtensionFieldName', ], 'Value' => [ 'shape' => 'ExtensionFieldValue', ], ], ], 'ExtensionFieldList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExtensionField', ], ], 'ExtensionFieldName' => [ 'type' => 'string', ], 'ExtensionFieldValue' => [ 'type' => 'string', ], 'GetIdentityDkimAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'Identities', ], 'members' => [ 'Identities' => [ 'shape' => 'IdentityList', ], ], ], 'GetIdentityDkimAttributesResponse' => [ 'type' => 'structure', 'required' => [ 'DkimAttributes', ], 'members' => [ 'DkimAttributes' => [ 'shape' => 'DkimAttributes', ], ], ], 'GetIdentityMailFromDomainAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'Identities', ], 'members' => [ 'Identities' => [ 'shape' => 'IdentityList', ], ], ], 'GetIdentityMailFromDomainAttributesResponse' => [ 'type' => 'structure', 'required' => [ 'MailFromDomainAttributes', ], 'members' => [ 'MailFromDomainAttributes' => [ 'shape' => 'MailFromDomainAttributes', ], ], ], 'GetIdentityNotificationAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'Identities', ], 'members' => [ 'Identities' => [ 'shape' => 'IdentityList', ], ], ], 'GetIdentityNotificationAttributesResponse' => [ 'type' => 'structure', 'required' => [ 'NotificationAttributes', ], 'members' => [ 'NotificationAttributes' => [ 'shape' => 'NotificationAttributes', ], ], ], 'GetIdentityPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'PolicyNames', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'PolicyNames' => [ 'shape' => 'PolicyNameList', ], ], ], 'GetIdentityPoliciesResponse' => [ 'type' => 'structure', 'required' => [ 'Policies', ], 'members' => [ 'Policies' => [ 'shape' => 'PolicyMap', ], ], ], 'GetIdentityVerificationAttributesRequest' => [ 'type' => 'structure', 'required' => [ 'Identities', ], 'members' => [ 'Identities' => [ 'shape' => 'IdentityList', ], ], ], 'GetIdentityVerificationAttributesResponse' => [ 'type' => 'structure', 'required' => [ 'VerificationAttributes', ], 'members' => [ 'VerificationAttributes' => [ 'shape' => 'VerificationAttributes', ], ], ], 'GetSendQuotaResponse' => [ 'type' => 'structure', 'members' => [ 'Max24HourSend' => [ 'shape' => 'Max24HourSend', ], 'MaxSendRate' => [ 'shape' => 'MaxSendRate', ], 'SentLast24Hours' => [ 'shape' => 'SentLast24Hours', ], ], ], 'GetSendStatisticsResponse' => [ 'type' => 'structure', 'members' => [ 'SendDataPoints' => [ 'shape' => 'SendDataPointList', ], ], ], 'HeaderName' => [ 'type' => 'string', ], 'HeaderValue' => [ 'type' => 'string', ], 'Identity' => [ 'type' => 'string', ], 'IdentityDkimAttributes' => [ 'type' => 'structure', 'required' => [ 'DkimEnabled', 'DkimVerificationStatus', ], 'members' => [ 'DkimEnabled' => [ 'shape' => 'Enabled', ], 'DkimVerificationStatus' => [ 'shape' => 'VerificationStatus', ], 'DkimTokens' => [ 'shape' => 'VerificationTokenList', ], ], ], 'IdentityList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Identity', ], ], 'IdentityMailFromDomainAttributes' => [ 'type' => 'structure', 'required' => [ 'MailFromDomain', 'MailFromDomainStatus', 'BehaviorOnMXFailure', ], 'members' => [ 'MailFromDomain' => [ 'shape' => 'MailFromDomainName', ], 'MailFromDomainStatus' => [ 'shape' => 'CustomMailFromStatus', ], 'BehaviorOnMXFailure' => [ 'shape' => 'BehaviorOnMXFailure', ], ], ], 'IdentityNotificationAttributes' => [ 'type' => 'structure', 'required' => [ 'BounceTopic', 'ComplaintTopic', 'DeliveryTopic', 'ForwardingEnabled', ], 'members' => [ 'BounceTopic' => [ 'shape' => 'NotificationTopic', ], 'ComplaintTopic' => [ 'shape' => 'NotificationTopic', ], 'DeliveryTopic' => [ 'shape' => 'NotificationTopic', ], 'ForwardingEnabled' => [ 'shape' => 'Enabled', ], 'HeadersInBounceNotificationsEnabled' => [ 'shape' => 'Enabled', ], 'HeadersInComplaintNotificationsEnabled' => [ 'shape' => 'Enabled', ], 'HeadersInDeliveryNotificationsEnabled' => [ 'shape' => 'Enabled', ], ], ], 'IdentityType' => [ 'type' => 'string', 'enum' => [ 'EmailAddress', 'Domain', ], ], 'IdentityVerificationAttributes' => [ 'type' => 'structure', 'required' => [ 'VerificationStatus', ], 'members' => [ 'VerificationStatus' => [ 'shape' => 'VerificationStatus', ], 'VerificationToken' => [ 'shape' => 'VerificationToken', ], ], ], 'InvalidCloudWatchDestinationException' => [ 'type' => 'structure', 'members' => [ 'ConfigurationSetName' => [ 'shape' => 'ConfigurationSetName', ], 'EventDestinationName' => [ 'shape' => 'EventDestinationName', ], ], 'error' => [ 'code' => 'InvalidCloudWatchDestination', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidConfigurationSetException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidConfigurationSet', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidFirehoseDestinationException' => [ 'type' => 'structure', 'members' => [ 'ConfigurationSetName' => [ 'shape' => 'ConfigurationSetName', ], 'EventDestinationName' => [ 'shape' => 'EventDestinationName', ], ], 'error' => [ 'code' => 'InvalidFirehoseDestination', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidLambdaFunctionException' => [ 'type' => 'structure', 'members' => [ 'FunctionArn' => [ 'shape' => 'AmazonResourceName', ], ], 'error' => [ 'code' => 'InvalidLambdaFunction', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidPolicyException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidPolicy', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidS3ConfigurationException' => [ 'type' => 'structure', 'members' => [ 'Bucket' => [ 'shape' => 'S3BucketName', ], ], 'error' => [ 'code' => 'InvalidS3Configuration', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSnsTopicException' => [ 'type' => 'structure', 'members' => [ 'Topic' => [ 'shape' => 'AmazonResourceName', ], ], 'error' => [ 'code' => 'InvalidSnsTopic', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvocationType' => [ 'type' => 'string', 'enum' => [ 'Event', 'RequestResponse', ], ], 'KinesisFirehoseDestination' => [ 'type' => 'structure', 'required' => [ 'IAMRoleARN', 'DeliveryStreamARN', ], 'members' => [ 'IAMRoleARN' => [ 'shape' => 'AmazonResourceName', ], 'DeliveryStreamARN' => [ 'shape' => 'AmazonResourceName', ], ], ], 'LambdaAction' => [ 'type' => 'structure', 'required' => [ 'FunctionArn', ], 'members' => [ 'TopicArn' => [ 'shape' => 'AmazonResourceName', ], 'FunctionArn' => [ 'shape' => 'AmazonResourceName', ], 'InvocationType' => [ 'shape' => 'InvocationType', ], ], ], 'LastAttemptDate' => [ 'type' => 'timestamp', ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'LimitExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ListConfigurationSetsRequest' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxItems' => [ 'shape' => 'MaxItems', ], ], ], 'ListConfigurationSetsResponse' => [ 'type' => 'structure', 'members' => [ 'ConfigurationSets' => [ 'shape' => 'ConfigurationSets', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListIdentitiesRequest' => [ 'type' => 'structure', 'members' => [ 'IdentityType' => [ 'shape' => 'IdentityType', ], 'NextToken' => [ 'shape' => 'NextToken', ], 'MaxItems' => [ 'shape' => 'MaxItems', ], ], ], 'ListIdentitiesResponse' => [ 'type' => 'structure', 'required' => [ 'Identities', ], 'members' => [ 'Identities' => [ 'shape' => 'IdentityList', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListIdentityPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], ], ], 'ListIdentityPoliciesResponse' => [ 'type' => 'structure', 'required' => [ 'PolicyNames', ], 'members' => [ 'PolicyNames' => [ 'shape' => 'PolicyNameList', ], ], ], 'ListReceiptFiltersRequest' => [ 'type' => 'structure', 'members' => [], ], 'ListReceiptFiltersResponse' => [ 'type' => 'structure', 'members' => [ 'Filters' => [ 'shape' => 'ReceiptFilterList', ], ], ], 'ListReceiptRuleSetsRequest' => [ 'type' => 'structure', 'members' => [ 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListReceiptRuleSetsResponse' => [ 'type' => 'structure', 'members' => [ 'RuleSets' => [ 'shape' => 'ReceiptRuleSetsLists', ], 'NextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListVerifiedEmailAddressesResponse' => [ 'type' => 'structure', 'members' => [ 'VerifiedEmailAddresses' => [ 'shape' => 'AddressList', ], ], ], 'MailFromDomainAttributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'Identity', ], 'value' => [ 'shape' => 'IdentityMailFromDomainAttributes', ], ], 'MailFromDomainName' => [ 'type' => 'string', ], 'MailFromDomainNotVerifiedException' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'MailFromDomainNotVerifiedException', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Max24HourSend' => [ 'type' => 'double', ], 'MaxItems' => [ 'type' => 'integer', ], 'MaxSendRate' => [ 'type' => 'double', ], 'Message' => [ 'type' => 'structure', 'required' => [ 'Subject', 'Body', ], 'members' => [ 'Subject' => [ 'shape' => 'Content', ], 'Body' => [ 'shape' => 'Body', ], ], ], 'MessageData' => [ 'type' => 'string', ], 'MessageDsn' => [ 'type' => 'structure', 'required' => [ 'ReportingMta', ], 'members' => [ 'ReportingMta' => [ 'shape' => 'ReportingMta', ], 'ArrivalDate' => [ 'shape' => 'ArrivalDate', ], 'ExtensionFields' => [ 'shape' => 'ExtensionFieldList', ], ], ], 'MessageId' => [ 'type' => 'string', ], 'MessageRejected' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'MessageRejected', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'MessageTag' => [ 'type' => 'structure', 'required' => [ 'Name', 'Value', ], 'members' => [ 'Name' => [ 'shape' => 'MessageTagName', ], 'Value' => [ 'shape' => 'MessageTagValue', ], ], ], 'MessageTagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MessageTag', ], ], 'MessageTagName' => [ 'type' => 'string', ], 'MessageTagValue' => [ 'type' => 'string', ], 'NextToken' => [ 'type' => 'string', ], 'NotificationAttributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'Identity', ], 'value' => [ 'shape' => 'IdentityNotificationAttributes', ], ], 'NotificationTopic' => [ 'type' => 'string', ], 'NotificationType' => [ 'type' => 'string', 'enum' => [ 'Bounce', 'Complaint', 'Delivery', ], ], 'Policy' => [ 'type' => 'string', 'min' => 1, ], 'PolicyMap' => [ 'type' => 'map', 'key' => [ 'shape' => 'PolicyName', ], 'value' => [ 'shape' => 'Policy', ], ], 'PolicyName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'PolicyNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyName', ], ], 'PutIdentityPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'PolicyName', 'Policy', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'PolicyName' => [ 'shape' => 'PolicyName', ], 'Policy' => [ 'shape' => 'Policy', ], ], ], 'PutIdentityPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'RawMessage' => [ 'type' => 'structure', 'required' => [ 'Data', ], 'members' => [ 'Data' => [ 'shape' => 'RawMessageData', ], ], ], 'RawMessageData' => [ 'type' => 'blob', ], 'ReceiptAction' => [ 'type' => 'structure', 'members' => [ 'S3Action' => [ 'shape' => 'S3Action', ], 'BounceAction' => [ 'shape' => 'BounceAction', ], 'WorkmailAction' => [ 'shape' => 'WorkmailAction', ], 'LambdaAction' => [ 'shape' => 'LambdaAction', ], 'StopAction' => [ 'shape' => 'StopAction', ], 'AddHeaderAction' => [ 'shape' => 'AddHeaderAction', ], 'SNSAction' => [ 'shape' => 'SNSAction', ], ], ], 'ReceiptActionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReceiptAction', ], ], 'ReceiptFilter' => [ 'type' => 'structure', 'required' => [ 'Name', 'IpFilter', ], 'members' => [ 'Name' => [ 'shape' => 'ReceiptFilterName', ], 'IpFilter' => [ 'shape' => 'ReceiptIpFilter', ], ], ], 'ReceiptFilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReceiptFilter', ], ], 'ReceiptFilterName' => [ 'type' => 'string', ], 'ReceiptFilterPolicy' => [ 'type' => 'string', 'enum' => [ 'Block', 'Allow', ], ], 'ReceiptIpFilter' => [ 'type' => 'structure', 'required' => [ 'Policy', 'Cidr', ], 'members' => [ 'Policy' => [ 'shape' => 'ReceiptFilterPolicy', ], 'Cidr' => [ 'shape' => 'Cidr', ], ], ], 'ReceiptRule' => [ 'type' => 'structure', 'required' => [ 'Name', ], 'members' => [ 'Name' => [ 'shape' => 'ReceiptRuleName', ], 'Enabled' => [ 'shape' => 'Enabled', ], 'TlsPolicy' => [ 'shape' => 'TlsPolicy', ], 'Recipients' => [ 'shape' => 'RecipientsList', ], 'Actions' => [ 'shape' => 'ReceiptActionsList', ], 'ScanEnabled' => [ 'shape' => 'Enabled', ], ], ], 'ReceiptRuleName' => [ 'type' => 'string', ], 'ReceiptRuleNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReceiptRuleName', ], ], 'ReceiptRuleSetMetadata' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'ReceiptRuleSetName', ], 'CreatedTimestamp' => [ 'shape' => 'Timestamp', ], ], ], 'ReceiptRuleSetName' => [ 'type' => 'string', ], 'ReceiptRuleSetsLists' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReceiptRuleSetMetadata', ], ], 'ReceiptRulesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReceiptRule', ], ], 'Recipient' => [ 'type' => 'string', ], 'RecipientDsnFields' => [ 'type' => 'structure', 'required' => [ 'Action', 'Status', ], 'members' => [ 'FinalRecipient' => [ 'shape' => 'Address', ], 'Action' => [ 'shape' => 'DsnAction', ], 'RemoteMta' => [ 'shape' => 'RemoteMta', ], 'Status' => [ 'shape' => 'DsnStatus', ], 'DiagnosticCode' => [ 'shape' => 'DiagnosticCode', ], 'LastAttemptDate' => [ 'shape' => 'LastAttemptDate', ], 'ExtensionFields' => [ 'shape' => 'ExtensionFieldList', ], ], ], 'RecipientsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Recipient', ], ], 'RemoteMta' => [ 'type' => 'string', ], 'ReorderReceiptRuleSetRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'RuleNames', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'RuleNames' => [ 'shape' => 'ReceiptRuleNamesList', ], ], ], 'ReorderReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'ReportingMta' => [ 'type' => 'string', ], 'RuleDoesNotExistException' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'RuleOrRuleSetName', ], ], 'error' => [ 'code' => 'RuleDoesNotExist', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'RuleOrRuleSetName' => [ 'type' => 'string', ], 'RuleSetDoesNotExistException' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'RuleOrRuleSetName', ], ], 'error' => [ 'code' => 'RuleSetDoesNotExist', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'S3Action' => [ 'type' => 'structure', 'required' => [ 'BucketName', ], 'members' => [ 'TopicArn' => [ 'shape' => 'AmazonResourceName', ], 'BucketName' => [ 'shape' => 'S3BucketName', ], 'ObjectKeyPrefix' => [ 'shape' => 'S3KeyPrefix', ], 'KmsKeyArn' => [ 'shape' => 'AmazonResourceName', ], ], ], 'S3BucketName' => [ 'type' => 'string', ], 'S3KeyPrefix' => [ 'type' => 'string', ], 'SNSAction' => [ 'type' => 'structure', 'required' => [ 'TopicArn', ], 'members' => [ 'TopicArn' => [ 'shape' => 'AmazonResourceName', ], 'Encoding' => [ 'shape' => 'SNSActionEncoding', ], ], ], 'SNSActionEncoding' => [ 'type' => 'string', 'enum' => [ 'UTF-8', 'Base64', ], ], 'SendBounceRequest' => [ 'type' => 'structure', 'required' => [ 'OriginalMessageId', 'BounceSender', 'BouncedRecipientInfoList', ], 'members' => [ 'OriginalMessageId' => [ 'shape' => 'MessageId', ], 'BounceSender' => [ 'shape' => 'Address', ], 'Explanation' => [ 'shape' => 'Explanation', ], 'MessageDsn' => [ 'shape' => 'MessageDsn', ], 'BouncedRecipientInfoList' => [ 'shape' => 'BouncedRecipientInfoList', ], 'BounceSenderArn' => [ 'shape' => 'AmazonResourceName', ], ], ], 'SendBounceResponse' => [ 'type' => 'structure', 'members' => [ 'MessageId' => [ 'shape' => 'MessageId', ], ], ], 'SendDataPoint' => [ 'type' => 'structure', 'members' => [ 'Timestamp' => [ 'shape' => 'Timestamp', ], 'DeliveryAttempts' => [ 'shape' => 'Counter', ], 'Bounces' => [ 'shape' => 'Counter', ], 'Complaints' => [ 'shape' => 'Counter', ], 'Rejects' => [ 'shape' => 'Counter', ], ], ], 'SendDataPointList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SendDataPoint', ], ], 'SendEmailRequest' => [ 'type' => 'structure', 'required' => [ 'Source', 'Destination', 'Message', ], 'members' => [ 'Source' => [ 'shape' => 'Address', ], 'Destination' => [ 'shape' => 'Destination', ], 'Message' => [ 'shape' => 'Message', ], 'ReplyToAddresses' => [ 'shape' => 'AddressList', ], 'ReturnPath' => [ 'shape' => 'Address', ], 'SourceArn' => [ 'shape' => 'AmazonResourceName', ], 'ReturnPathArn' => [ 'shape' => 'AmazonResourceName', ], 'Tags' => [ 'shape' => 'MessageTagList', ], 'ConfigurationSetName' => [ 'shape' => 'ConfigurationSetName', ], ], ], 'SendEmailResponse' => [ 'type' => 'structure', 'required' => [ 'MessageId', ], 'members' => [ 'MessageId' => [ 'shape' => 'MessageId', ], ], ], 'SendRawEmailRequest' => [ 'type' => 'structure', 'required' => [ 'RawMessage', ], 'members' => [ 'Source' => [ 'shape' => 'Address', ], 'Destinations' => [ 'shape' => 'AddressList', ], 'RawMessage' => [ 'shape' => 'RawMessage', ], 'FromArn' => [ 'shape' => 'AmazonResourceName', ], 'SourceArn' => [ 'shape' => 'AmazonResourceName', ], 'ReturnPathArn' => [ 'shape' => 'AmazonResourceName', ], 'Tags' => [ 'shape' => 'MessageTagList', ], 'ConfigurationSetName' => [ 'shape' => 'ConfigurationSetName', ], ], ], 'SendRawEmailResponse' => [ 'type' => 'structure', 'required' => [ 'MessageId', ], 'members' => [ 'MessageId' => [ 'shape' => 'MessageId', ], ], ], 'SentLast24Hours' => [ 'type' => 'double', ], 'SetActiveReceiptRuleSetRequest' => [ 'type' => 'structure', 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], ], ], 'SetActiveReceiptRuleSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'SetIdentityDkimEnabledRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'DkimEnabled', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'DkimEnabled' => [ 'shape' => 'Enabled', ], ], ], 'SetIdentityDkimEnabledResponse' => [ 'type' => 'structure', 'members' => [], ], 'SetIdentityFeedbackForwardingEnabledRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'ForwardingEnabled', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'ForwardingEnabled' => [ 'shape' => 'Enabled', ], ], ], 'SetIdentityFeedbackForwardingEnabledResponse' => [ 'type' => 'structure', 'members' => [], ], 'SetIdentityHeadersInNotificationsEnabledRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'NotificationType', 'Enabled', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'NotificationType' => [ 'shape' => 'NotificationType', ], 'Enabled' => [ 'shape' => 'Enabled', ], ], ], 'SetIdentityHeadersInNotificationsEnabledResponse' => [ 'type' => 'structure', 'members' => [], ], 'SetIdentityMailFromDomainRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'MailFromDomain' => [ 'shape' => 'MailFromDomainName', ], 'BehaviorOnMXFailure' => [ 'shape' => 'BehaviorOnMXFailure', ], ], ], 'SetIdentityMailFromDomainResponse' => [ 'type' => 'structure', 'members' => [], ], 'SetIdentityNotificationTopicRequest' => [ 'type' => 'structure', 'required' => [ 'Identity', 'NotificationType', ], 'members' => [ 'Identity' => [ 'shape' => 'Identity', ], 'NotificationType' => [ 'shape' => 'NotificationType', ], 'SnsTopic' => [ 'shape' => 'NotificationTopic', ], ], ], 'SetIdentityNotificationTopicResponse' => [ 'type' => 'structure', 'members' => [], ], 'SetReceiptRulePositionRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'RuleName', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'RuleName' => [ 'shape' => 'ReceiptRuleName', ], 'After' => [ 'shape' => 'ReceiptRuleName', ], ], ], 'SetReceiptRulePositionResponse' => [ 'type' => 'structure', 'members' => [], ], 'StopAction' => [ 'type' => 'structure', 'required' => [ 'Scope', ], 'members' => [ 'Scope' => [ 'shape' => 'StopScope', ], 'TopicArn' => [ 'shape' => 'AmazonResourceName', ], ], ], 'StopScope' => [ 'type' => 'string', 'enum' => [ 'RuleSet', ], ], 'Timestamp' => [ 'type' => 'timestamp', ], 'TlsPolicy' => [ 'type' => 'string', 'enum' => [ 'Require', 'Optional', ], ], 'UpdateConfigurationSetEventDestinationRequest' => [ 'type' => 'structure', 'required' => [ 'ConfigurationSetName', 'EventDestination', ], 'members' => [ 'ConfigurationSetName' => [ 'shape' => 'ConfigurationSetName', ], 'EventDestination' => [ 'shape' => 'EventDestination', ], ], ], 'UpdateConfigurationSetEventDestinationResponse' => [ 'type' => 'structure', 'members' => [], ], 'UpdateReceiptRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleSetName', 'Rule', ], 'members' => [ 'RuleSetName' => [ 'shape' => 'ReceiptRuleSetName', ], 'Rule' => [ 'shape' => 'ReceiptRule', ], ], ], 'UpdateReceiptRuleResponse' => [ 'type' => 'structure', 'members' => [], ], 'VerificationAttributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'Identity', ], 'value' => [ 'shape' => 'IdentityVerificationAttributes', ], ], 'VerificationStatus' => [ 'type' => 'string', 'enum' => [ 'Pending', 'Success', 'Failed', 'TemporaryFailure', 'NotStarted', ], ], 'VerificationToken' => [ 'type' => 'string', ], 'VerificationTokenList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VerificationToken', ], ], 'VerifyDomainDkimRequest' => [ 'type' => 'structure', 'required' => [ 'Domain', ], 'members' => [ 'Domain' => [ 'shape' => 'Domain', ], ], ], 'VerifyDomainDkimResponse' => [ 'type' => 'structure', 'required' => [ 'DkimTokens', ], 'members' => [ 'DkimTokens' => [ 'shape' => 'VerificationTokenList', ], ], ], 'VerifyDomainIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'Domain', ], 'members' => [ 'Domain' => [ 'shape' => 'Domain', ], ], ], 'VerifyDomainIdentityResponse' => [ 'type' => 'structure', 'required' => [ 'VerificationToken', ], 'members' => [ 'VerificationToken' => [ 'shape' => 'VerificationToken', ], ], ], 'VerifyEmailAddressRequest' => [ 'type' => 'structure', 'required' => [ 'EmailAddress', ], 'members' => [ 'EmailAddress' => [ 'shape' => 'Address', ], ], ], 'VerifyEmailIdentityRequest' => [ 'type' => 'structure', 'required' => [ 'EmailAddress', ], 'members' => [ 'EmailAddress' => [ 'shape' => 'Address', ], ], ], 'VerifyEmailIdentityResponse' => [ 'type' => 'structure', 'members' => [], ], 'WorkmailAction' => [ 'type' => 'structure', 'required' => [ 'OrganizationArn', ], 'members' => [ 'TopicArn' => [ 'shape' => 'AmazonResourceName', ], 'OrganizationArn' => [ 'shape' => 'AmazonResourceName', ], ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/endpoints.json.php b/vendor/aws/aws-sdk-php/src/data/endpoints.json.php index 82a443382..674abc499 100644 --- a/vendor/aws/aws-sdk-php/src/data/endpoints.json.php +++ b/vendor/aws/aws-sdk-php/src/data/endpoints.json.php @@ -1,3 +1,3 @@ 3, 'partitions' => [ [ 'partition' => 'aws', 'partitionName' => 'AWS Standard', 'dnsSuffix' => 'amazonaws.com', 'regionRegex' => '^(us|eu|ap|sa|ca)\\-\\w+\\-\\d+$', 'defaults' => [ 'hostname' => '{service}.{region}.{dnsSuffix}', 'protocols' => [ 'https', ], 'signatureVersions' => [ 'v4', ], ], 'regions' => [ 'us-east-1' => [ 'description' => 'US East (N. Virginia)', ], 'us-west-1' => [ 'description' => 'US West (N. California)', ], 'us-west-2' => [ 'description' => 'US West (Oregon)', ], 'ap-northeast-1' => [ 'description' => 'Asia Pacific (Tokyo)', ], 'ap-northeast-2' => [ 'description' => 'Asia Pacific (Seoul)', ], 'ap-south-1' => [ 'description' => 'Asia Pacific (Mumbai)', ], 'ap-southeast-1' => [ 'description' => 'Asia Pacific (Singapore)', ], 'ap-southeast-2' => [ 'description' => 'Asia Pacific (Sydney)', ], 'sa-east-1' => [ 'description' => 'South America (Sao Paulo)', ], 'eu-west-1' => [ 'description' => 'EU (Ireland)', ], 'eu-central-1' => [ 'description' => 'EU (Frankfurt)', ], ], 'services' => [ 'acm' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], ], ], 'apigateway' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'eu-west-1' => [], 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], ], ], 'application-autoscaling' => [ 'defaults' => [ 'hostname' => 'autoscaling.{region}.amazonaws.com', 'credentialScope' => [ 'service' => 'application-autoscaling', ], 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'eu-west-1' => [], ], ], 'appstream' => [ 'endpoints' => [ 'us-east-1' => [], 'ap-northeast-1' => [], ], ], 'autoscaling' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'cloudformation' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'cloudfront' => [ 'partitionEndpoint' => 'aws-global', 'isRegionalized' => false, 'endpoints' => [ 'aws-global' => [ 'hostname' => 'cloudfront.amazonaws.com', 'protocols' => [ 'http', 'https', ], 'credentialScope' => [ 'region' => 'us-east-1', ], ], ], ], 'cloudhsm' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'cloudsearch' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'cloudtrail' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'codecommit' => [ 'endpoints' => [ 'us-east-1' => [], ], ], 'codedeploy' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], 'sa-east-1' => [], ], ], 'codepipeline' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], ], ], 'cognito-identity' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'eu-west-1' => [], 'ap-northeast-1' => [], ], ], 'cognito-idp' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'eu-west-1' => [], 'ap-northeast-1' => [], ], ], 'cognito-sync' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'eu-west-1' => [], 'ap-northeast-1' => [], ], ], 'config' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'datapipeline' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], ], ], 'data.iot' => [ 'defaults' => [ 'protocols' => [ 'https', 'mqqt', ], 'credentialScope' => [ 'service' => 'iotdata', ], ], 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'devicefarm' => [ 'endpoints' => [ 'us-west-2' => [], ], ], 'directconnect' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'discovery' => [ 'endpoints' => [ 'us-west-2' => [], ], ], 'dms' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'ds' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'dynamodb' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], 'local' => [ 'hostname' => 'localhost:8000', 'protocols' => [ 'http', ], 'credentialScope' => [ 'region' => 'us-east-1', ], ], ], ], 'ec2' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'ecs' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'ecr' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'eu-west-1' => [], ], ], 'elasticache' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'elasticbeanstalk' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'elasticfilesystem' => [ 'endpoints' => [ 'us-west-2' => [], ], ], 'elasticloadbalancing' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'elasticmapreduce' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], 'sslCommonName' => '{region}.{service}.{dnsSuffix}', ], 'endpoints' => [ 'us-east-1' => [ 'sslCommonName' => '{service}.{region}.{dnsSuffix}', ], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [ 'sslCommonName' => '{service}.{region}.{dnsSuffix}', ], ], ], 'elastictranscoder' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], ], ], 'email' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'eu-west-1' => [], ], ], 'es' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'sa-east-1' => [], ], ], 'events' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'sa-east-1' => [], ], ], 'firehose' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'eu-west-1' => [], ], ], 'gamelift' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'eu-west-1' => [], 'ap-northeast-1' => [], ], ], 'glacier' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'iam' => [ 'partitionEndpoint' => 'aws-global', 'isRegionalized' => false, 'endpoints' => [ 'aws-global' => [ 'hostname' => 'iam.amazonaws.com', 'credentialScope' => [ 'region' => 'us-east-1', ], ], ], ], 'importexport' => [ 'partitionEndpoint' => 'aws-global', 'isRegionalized' => false, 'endpoints' => [ 'aws-global' => [ 'hostname' => 'importexport.amazonaws.com', 'signatureVersions' => [ 'v2', 'v4', ], 'credentialScope' => [ 'service' => 'IngestionService', 'region' => 'us-east-1', ], ], ], ], 'inspector' => [ 'endpoints' => [ 'us-west-2' => [], 'us-east-1' => [], 'eu-west-1' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-2' => [], ], ], 'iot' => [ 'defaults' => [ 'credentialScope' => [ 'service' => 'execute-api', ], ], 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'kinesis' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], 'sa-east-1' => [], ], ], 'kms' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'lambda' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'logs' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], 'sa-east-1' => [], ], ], 'machinelearning' => [ 'endpoints' => [ 'us-east-1' => [], 'eu-west-1' => [], ], ], 'marketplacecommerceanalytics' => [ 'endpoints' => [ 'us-east-1' => [], ], ], 'metering.marketplace' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], ], ], 'mobileanalytics' => [ 'endpoints' => [ 'us-east-1' => [], ], ], 'monitoring' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'opsworks' => [ 'endpoints' => [ 'us-east-1' => [], ], ], 'rds' => [ 'endpoints' => [ 'us-east-1' => [ 'sslCommonName' => '{service}.{dnsSuffix}', ], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'redshift' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'route53' => [ 'partitionEndpoint' => 'aws-global', 'isRegionalized' => false, 'endpoints' => [ 'aws-global' => [ 'hostname' => 'route53.amazonaws.com', 'credentialScope' => [ 'region' => 'us-east-1', ], ], ], ], 'route53domains' => [ 'endpoints' => [ 'us-east-1' => [], ], ], 's3' => [ 'partitionEndpoint' => 'us-east-1', 'isRegionalized' => true, 'defaults' => [ 'protocols' => [ 'http', 'https', ], 'signatureVersions' => [ 's3v4', ], ], 'endpoints' => [ 'us-east-1' => [ 'hostname' => 's3.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 's3-external-1' => [ 'credentialScope' => [ 'region' => 'us-east-1', ], 'hostname' => 's3-external-1.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'us-west-1' => [ 'hostname' => 's3-us-west-1.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'us-west-2' => [ 'hostname' => 's3-us-west-2.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'ap-northeast-1' => [ 'hostname' => 's3-ap-northeast-1.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'ap-northeast-2' => [], 'ap-south-1' => [ 'hostname' => 's3-ap-south-1.amazonaws.com', ], 'ap-southeast-1' => [ 'hostname' => 's3-ap-southeast-1.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'ap-southeast-2' => [ 'hostname' => 's3-ap-southeast-2.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'sa-east-1' => [ 'hostname' => 's3-sa-east-1.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'eu-west-1' => [ 'hostname' => 's3-eu-west-1.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'eu-central-1' => [], ], ], 'sdb' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'us-east-1' => [ 'hostname' => 'sdb.amazonaws.com', ], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], ], ], 'servicecatalog' => [ 'endpoints' => [ 'us-east-1' => [], 'eu-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-southeast-1' => [], ], ], 'snowball' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-south-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], ], ], 'sns' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'sqs' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], 'sslCommonName' => '{region}.queue.{dnsSuffix}', ], 'endpoints' => [ 'us-east-1' => [ 'sslCommonName' => 'queue.{dnsSuffix}', ], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'ssm' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], ], ], 'storagegateway' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'streams.dynamodb' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], 'credentialScope' => [ 'service' => 'dynamodb', ], ], 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'sts' => [ 'defaults' => [ 'hostname' => 'sts.amazonaws.com', 'credentialScope' => [ 'region' => 'us-east-1', ], ], 'partitionEndpoint' => 'aws-global', 'endpoints' => [ 'aws-global' => [], 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [ 'hostname' => 'sts.ap-northeast-2.amazonaws.com', 'credentialScope' => [ 'region' => 'ap-northeast-2', ], ], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'support' => [ 'endpoints' => [ 'us-east-1' => [], ], ], 'swf' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'sa-east-1' => [], 'eu-west-1' => [], 'eu-central-1' => [], ], ], 'waf' => [ 'partitionEndpoint' => 'aws-global', 'isRegionalized' => false, 'endpoints' => [ 'aws-global' => [ 'hostname' => 'waf.amazonaws.com', 'credentialScope' => [ 'region' => 'us-east-1', ], ], ], ], 'workspaces' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], ], ], ], ], [ 'partition' => 'aws-cn', 'partitionName' => 'AWS China', 'dnsSuffix' => 'amazonaws.com.cn', 'regionRegex' => '^cn\\-\\w+\\-\\d+$', 'defaults' => [ 'hostname' => '{service}.{region}.{dnsSuffix}', 'protocols' => [ 'https', ], 'signatureVersions' => [ 'v4', ], ], 'regions' => [ 'cn-north-1' => [ 'description' => 'China (Beijing)', ], ], 'services' => [ 'autoscaling' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'cloudformation' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'cloudtrail' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'directconnect' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'dynamodb' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'ec2' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'elasticache' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'elasticbeanstalk' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'elasticloadbalancing' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'elasticmapreduce' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'glacier' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'iam' => [ 'partitionEndpoint' => 'aws-cn-global', 'isRegionalized' => false, 'endpoints' => [ 'aws-cn-global' => [ 'hostname' => 'iam.cn-north-1.amazonaws.com.cn', 'credentialScope' => [ 'region' => 'cn-north-1', ], ], ], ], 'kinesis' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'monitoring' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'rds' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 's3' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], 'signatureVersions' => [ 's3v4', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'sns' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'sqs' => [ 'defaults' => [ 'sslCommonName' => '{region}.queue.{dnsSuffix}', 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'storagegateway' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'streams.dynamodb' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], 'credentialScope' => [ 'service' => 'dynamodb', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'sts' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'swf' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], ], ], [ 'partition' => 'aws-us-gov', 'partitionName' => 'AWS GovCloud (US)', 'dnsSuffix' => 'amazonaws.com', 'regionRegex' => '^us\\-gov\\-\\w+\\-\\d+$', 'defaults' => [ 'hostname' => '{service}.{region}.{dnsSuffix}', 'protocols' => [ 'https', ], 'signatureVersions' => [ 'v4', ], ], 'regions' => [ 'us-gov-west-1' => [ 'description' => 'AWS GovCloud (US)', ], ], 'services' => [ 'autoscaling' => [ 'endpoints' => [ 'us-gov-west-1' => [ 'protocols' => [ 'http', 'https', ], ], ], ], 'cloudformation' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'cloudhsm' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'cloudtrail' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'dynamodb' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'streams.dynamodb' => [ 'defaults' => [ 'credentialScope' => [ 'service' => 'dynamodb', ], ], 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'ec2' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'elasticache' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'elasticloadbalancing' => [ 'endpoints' => [ 'us-gov-west-1' => [ 'protocols' => [ 'http', 'https', ], ], ], ], 'elasticmapreduce' => [ 'endpoints' => [ 'us-gov-west-1' => [ 'protocols' => [ 'http', 'https', ], ], ], ], 'glacier' => [ 'endpoints' => [ 'us-gov-west-1' => [ 'protocols' => [ 'http', 'https', ], ], ], ], 'iam' => [ 'partitionEndpoint' => 'aws-us-gov-global', 'isRegionalized' => false, 'endpoints' => [ 'aws-us-gov-global' => [ 'hostname' => 'iam.us-gov.amazonaws.com', 'credentialScope' => [ 'region' => 'us-gov-west-1', ], ], ], ], 'kms' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'monitoring' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'rds' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'redshift' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 's3' => [ 'defaults' => [ 'signatureVersions' => [ 's3', 's3v4', ], ], 'endpoints' => [ 'us-gov-west-1' => [ 'protocols' => [ 'http', 'https', ], 'hostname' => 's3-us-gov-west-1.amazonaws.com', ], 'fips-us-gov-west-1' => [ 'credentialScope' => [ 'region' => 'us-gov-west-1', ], 'hostname' => 's3-fips-us-gov-west-1.amazonaws.com', ], ], ], 'sns' => [ 'endpoints' => [ 'us-gov-west-1' => [ 'protocols' => [ 'http', 'https', ], ], ], ], 'sqs' => [ 'endpoints' => [ 'us-gov-west-1' => [ 'sslCommonName' => '{region}.queue.{dnsSuffix}', 'protocols' => [ 'http', 'https', ], ], ], ], 'sts' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'swf' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], ], ], ],]; +return [ 'partitions' => [ [ 'defaults' => [ 'hostname' => '{service}.{region}.{dnsSuffix}', 'protocols' => [ 'https', ], 'signatureVersions' => [ 'v4', ], ], 'dnsSuffix' => 'amazonaws.com', 'partition' => 'aws', 'partitionName' => 'AWS Standard', 'regionRegex' => '^(us|eu|ap|sa|ca)\\-\\w+\\-\\d+$', 'regions' => [ 'ap-northeast-1' => [ 'description' => 'Asia Pacific (Tokyo)', ], 'ap-northeast-2' => [ 'description' => 'Asia Pacific (Seoul)', ], 'ap-south-1' => [ 'description' => 'Asia Pacific (Mumbai)', ], 'ap-southeast-1' => [ 'description' => 'Asia Pacific (Singapore)', ], 'ap-southeast-2' => [ 'description' => 'Asia Pacific (Sydney)', ], 'eu-central-1' => [ 'description' => 'EU (Frankfurt)', ], 'eu-west-1' => [ 'description' => 'EU (Ireland)', ], 'sa-east-1' => [ 'description' => 'South America (Sao Paulo)', ], 'us-east-1' => [ 'description' => 'US East (N. Virginia)', ], 'us-east-2' => [ 'description' => 'US East (Ohio)', ], 'us-west-1' => [ 'description' => 'US West (N. California)', ], 'us-west-2' => [ 'description' => 'US West (Oregon)', ], ], 'services' => [ 'acm' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'apigateway' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-2' => [], ], ], 'application-autoscaling' => [ 'defaults' => [ 'credentialScope' => [ 'service' => 'application-autoscaling', ], 'hostname' => 'autoscaling.{region}.amazonaws.com', 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'appstream' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'us-east-1' => [], ], ], 'autoscaling' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'budgets' => [ 'endpoints' => [ 'aws-global' => [ 'credentialScope' => [ 'region' => 'us-east-1', ], 'hostname' => 'budgets.amazonaws.com', ], ], 'isRegionalized' => false, 'partitionEndpoint' => 'aws-global', ], 'cloudformation' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'cloudfront' => [ 'endpoints' => [ 'aws-global' => [ 'credentialScope' => [ 'region' => 'us-east-1', ], 'hostname' => 'cloudfront.amazonaws.com', 'protocols' => [ 'http', 'https', ], ], ], 'isRegionalized' => false, 'partitionEndpoint' => 'aws-global', ], 'cloudhsm' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'cloudsearch' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'cloudtrail' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'codecommit' => [ 'endpoints' => [ 'us-east-1' => [], 'us-east-2' => [], ], ], 'codedeploy' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'codepipeline' => [ 'endpoints' => [ 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-2' => [], ], ], 'cognito-identity' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-west-2' => [], ], ], 'cognito-idp' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-west-2' => [], ], ], 'cognito-sync' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-west-2' => [], ], ], 'config' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'data.iot' => [ 'defaults' => [ 'credentialScope' => [ 'service' => 'iotdata', ], 'protocols' => [ 'https', ], ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-west-2' => [], ], ], 'datapipeline' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-west-2' => [], ], ], 'devicefarm' => [ 'endpoints' => [ 'us-west-2' => [], ], ], 'directconnect' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'discovery' => [ 'endpoints' => [ 'us-west-2' => [], ], ], 'dms' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'ds' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-west-2' => [], ], ], 'dynamodb' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'local' => [ 'credentialScope' => [ 'region' => 'us-east-1', ], 'hostname' => 'localhost:8000', 'protocols' => [ 'http', ], ], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'ec2' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'ecr' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'ecs' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'elasticache' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'elasticbeanstalk' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'elasticfilesystem' => [ 'endpoints' => [ 'eu-west-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-2' => [], ], ], 'elasticloadbalancing' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'elasticmapreduce' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], 'sslCommonName' => '{region}.{service}.{dnsSuffix}', ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [ 'sslCommonName' => '{service}.{region}.{dnsSuffix}', ], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [ 'sslCommonName' => '{service}.{region}.{dnsSuffix}', ], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'elastictranscoder' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'email' => [ 'endpoints' => [ 'eu-west-1' => [], 'us-east-1' => [], 'us-west-2' => [], ], ], 'es' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'events' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'firehose' => [ 'endpoints' => [ 'eu-west-1' => [], 'us-east-1' => [], 'us-west-2' => [], ], ], 'gamelift' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-west-2' => [], ], ], 'glacier' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'iam' => [ 'endpoints' => [ 'aws-global' => [ 'credentialScope' => [ 'region' => 'us-east-1', ], 'hostname' => 'iam.amazonaws.com', ], ], 'isRegionalized' => false, 'partitionEndpoint' => 'aws-global', ], 'importexport' => [ 'endpoints' => [ 'aws-global' => [ 'credentialScope' => [ 'region' => 'us-east-1', 'service' => 'IngestionService', ], 'hostname' => 'importexport.amazonaws.com', 'signatureVersions' => [ 'v2', 'v4', ], ], ], 'isRegionalized' => false, 'partitionEndpoint' => 'aws-global', ], 'inspector' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-west-2' => [], ], ], 'iot' => [ 'defaults' => [ 'credentialScope' => [ 'service' => 'execute-api', ], ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-west-2' => [], ], ], 'kinesis' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'kinesisanalytics' => [ 'endpoints' => [ 'eu-west-1' => [], 'us-east-1' => [], 'us-west-2' => [], ], ], 'kms' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'lambda' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-2' => [], ], ], 'logs' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'machinelearning' => [ 'endpoints' => [ 'eu-west-1' => [], 'us-east-1' => [], ], ], 'marketplacecommerceanalytics' => [ 'endpoints' => [ 'us-east-1' => [], ], ], 'metering.marketplace' => [ 'endpoints' => [ 'us-east-1' => [], 'us-west-2' => [], ], ], 'mobileanalytics' => [ 'endpoints' => [ 'us-east-1' => [], ], ], 'monitoring' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'opsworks' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'rds' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [ 'sslCommonName' => '{service}.{dnsSuffix}', ], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'redshift' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'route53' => [ 'endpoints' => [ 'aws-global' => [ 'credentialScope' => [ 'region' => 'us-east-1', ], 'hostname' => 'route53.amazonaws.com', ], ], 'isRegionalized' => false, 'partitionEndpoint' => 'aws-global', ], 'route53domains' => [ 'endpoints' => [ 'us-east-1' => [], ], ], 's3' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], 'signatureVersions' => [ 's3v4', ], ], 'endpoints' => [ 'ap-northeast-1' => [ 'hostname' => 's3-ap-northeast-1.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [ 'hostname' => 's3-ap-southeast-1.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'ap-southeast-2' => [ 'hostname' => 's3-ap-southeast-2.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'eu-central-1' => [], 'eu-west-1' => [ 'hostname' => 's3-eu-west-1.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 's3-external-1' => [ 'credentialScope' => [ 'region' => 'us-east-1', ], 'hostname' => 's3-external-1.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'sa-east-1' => [ 'hostname' => 's3-sa-east-1.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'us-east-1' => [ 'hostname' => 's3.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'us-east-2' => [], 'us-west-1' => [ 'hostname' => 's3-us-west-1.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], 'us-west-2' => [ 'hostname' => 's3-us-west-2.amazonaws.com', 'signatureVersions' => [ 's3', 's3v4', ], ], ], 'isRegionalized' => true, 'partitionEndpoint' => 'us-east-1', ], 'sdb' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [ 'hostname' => 'sdb.amazonaws.com', ], 'us-west-1' => [], 'us-west-2' => [], ], ], 'servicecatalog' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-2' => [], ], ], 'sms' => [ 'endpoints' => [ 'ap-southeast-2' => [], 'eu-west-1' => [], 'us-east-1' => [], ], ], 'snowball' => [ 'endpoints' => [ 'ap-south-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'sns' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'sqs' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], 'sslCommonName' => '{region}.queue.{dnsSuffix}', ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [ 'sslCommonName' => 'queue.{dnsSuffix}', ], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'ssm' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'storagegateway' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'streams.dynamodb' => [ 'defaults' => [ 'credentialScope' => [ 'service' => 'dynamodb', ], 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'sts' => [ 'defaults' => [ 'credentialScope' => [ 'region' => 'us-east-1', ], 'hostname' => 'sts.amazonaws.com', ], 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [ 'credentialScope' => [ 'region' => 'ap-northeast-2', ], 'hostname' => 'sts.ap-northeast-2.amazonaws.com', ], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'aws-global' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], 'partitionEndpoint' => 'aws-global', ], 'support' => [ 'endpoints' => [ 'us-east-1' => [], ], ], 'swf' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-northeast-2' => [], 'ap-south-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'sa-east-1' => [], 'us-east-1' => [], 'us-east-2' => [], 'us-west-1' => [], 'us-west-2' => [], ], ], 'waf' => [ 'endpoints' => [ 'aws-global' => [ 'credentialScope' => [ 'region' => 'us-east-1', ], 'hostname' => 'waf.amazonaws.com', ], ], 'isRegionalized' => false, 'partitionEndpoint' => 'aws-global', ], 'workspaces' => [ 'endpoints' => [ 'ap-northeast-1' => [], 'ap-southeast-1' => [], 'ap-southeast-2' => [], 'eu-central-1' => [], 'eu-west-1' => [], 'us-east-1' => [], 'us-west-2' => [], ], ], ], ], [ 'defaults' => [ 'hostname' => '{service}.{region}.{dnsSuffix}', 'protocols' => [ 'https', ], 'signatureVersions' => [ 'v4', ], ], 'dnsSuffix' => 'amazonaws.com', 'partition' => 'aws-us-gov', 'partitionName' => 'AWS GovCloud (US)', 'regionRegex' => '^us\\-gov\\-\\w+\\-\\d+$', 'regions' => [ 'us-gov-west-1' => [ 'description' => 'AWS GovCloud (US)', ], ], 'services' => [ 'autoscaling' => [ 'endpoints' => [ 'us-gov-west-1' => [ 'protocols' => [ 'http', 'https', ], ], ], ], 'cloudformation' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'cloudhsm' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'cloudtrail' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'config' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'directconnect' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'dynamodb' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'ec2' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'elasticache' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'elasticloadbalancing' => [ 'endpoints' => [ 'us-gov-west-1' => [ 'protocols' => [ 'http', 'https', ], ], ], ], 'elasticmapreduce' => [ 'endpoints' => [ 'us-gov-west-1' => [ 'protocols' => [ 'http', 'https', ], ], ], ], 'glacier' => [ 'endpoints' => [ 'us-gov-west-1' => [ 'protocols' => [ 'http', 'https', ], ], ], ], 'iam' => [ 'endpoints' => [ 'aws-us-gov-global' => [ 'credentialScope' => [ 'region' => 'us-gov-west-1', ], 'hostname' => 'iam.us-gov.amazonaws.com', ], ], 'isRegionalized' => false, 'partitionEndpoint' => 'aws-us-gov-global', ], 'kms' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'logs' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'monitoring' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'rds' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'redshift' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 's3' => [ 'defaults' => [ 'signatureVersions' => [ 's3', 's3v4', ], ], 'endpoints' => [ 'fips-us-gov-west-1' => [ 'credentialScope' => [ 'region' => 'us-gov-west-1', ], 'hostname' => 's3-fips-us-gov-west-1.amazonaws.com', ], 'us-gov-west-1' => [ 'hostname' => 's3-us-gov-west-1.amazonaws.com', 'protocols' => [ 'http', 'https', ], ], ], ], 'snowball' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'sns' => [ 'endpoints' => [ 'us-gov-west-1' => [ 'protocols' => [ 'http', 'https', ], ], ], ], 'sqs' => [ 'endpoints' => [ 'us-gov-west-1' => [ 'protocols' => [ 'http', 'https', ], 'sslCommonName' => '{region}.queue.{dnsSuffix}', ], ], ], 'streams.dynamodb' => [ 'defaults' => [ 'credentialScope' => [ 'service' => 'dynamodb', ], ], 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'sts' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], 'swf' => [ 'endpoints' => [ 'us-gov-west-1' => [], ], ], ], ], [ 'defaults' => [ 'hostname' => '{service}.{region}.{dnsSuffix}', 'protocols' => [ 'https', ], 'signatureVersions' => [ 'v4', ], ], 'dnsSuffix' => 'amazonaws.com.cn', 'partition' => 'aws-cn', 'partitionName' => 'AWS China', 'regionRegex' => '^cn\\-\\w+\\-\\d+$', 'regions' => [ 'cn-north-1' => [ 'description' => 'China (Beijing)', ], ], 'services' => [ 'autoscaling' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'cloudformation' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'cloudtrail' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'directconnect' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'dynamodb' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'ec2' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'elasticache' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'elasticbeanstalk' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'elasticloadbalancing' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'elasticmapreduce' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'glacier' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'iam' => [ 'endpoints' => [ 'aws-cn-global' => [ 'credentialScope' => [ 'region' => 'cn-north-1', ], 'hostname' => 'iam.cn-north-1.amazonaws.com.cn', ], ], 'isRegionalized' => false, 'partitionEndpoint' => 'aws-cn-global', ], 'kinesis' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'logs' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'monitoring' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'rds' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'redshift' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 's3' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], 'signatureVersions' => [ 's3v4', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'sns' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'sqs' => [ 'defaults' => [ 'protocols' => [ 'http', 'https', ], 'sslCommonName' => '{region}.queue.{dnsSuffix}', ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'storagegateway' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'streams.dynamodb' => [ 'defaults' => [ 'credentialScope' => [ 'service' => 'dynamodb', ], 'protocols' => [ 'http', 'https', ], ], 'endpoints' => [ 'cn-north-1' => [], ], ], 'sts' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], 'swf' => [ 'endpoints' => [ 'cn-north-1' => [], ], ], ], ], ], 'version' => 3,]; diff --git a/vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01/api-2.json.php index f2f1ccbb3..e8f6e5b23 100644 --- a/vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2015-10-01', 'endpointPrefix' => 'gamelift', 'jsonVersion' => '1.1', 'serviceFullName' => 'Amazon GameLift', 'signatureVersion' => 'v4', 'targetPrefix' => 'GameLift', 'protocol' => 'json', ], 'operations' => [ 'CreateAlias' => [ 'name' => 'CreateAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateAliasInput', ], 'output' => [ 'shape' => 'CreateAliasOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'ConflictException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'LimitExceededException', 'exception' => true, ], ], ], 'CreateBuild' => [ 'name' => 'CreateBuild', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateBuildInput', ], 'output' => [ 'shape' => 'CreateBuildOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'ConflictException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], ], ], 'CreateFleet' => [ 'name' => 'CreateFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateFleetInput', ], 'output' => [ 'shape' => 'CreateFleetOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'ConflictException', 'exception' => true, ], [ 'shape' => 'LimitExceededException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], ], ], 'CreateGameSession' => [ 'name' => 'CreateGameSession', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateGameSessionInput', ], 'output' => [ 'shape' => 'CreateGameSessionOutput', ], 'errors' => [ [ 'shape' => 'ConflictException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidFleetStatusException', 'exception' => true, ], [ 'shape' => 'TerminalRoutingStrategyException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'FleetCapacityExceededException', 'exception' => true, ], ], ], 'CreatePlayerSession' => [ 'name' => 'CreatePlayerSession', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreatePlayerSessionInput', ], 'output' => [ 'shape' => 'CreatePlayerSessionOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidGameSessionStatusException', 'exception' => true, ], [ 'shape' => 'GameSessionFullException', 'exception' => true, ], [ 'shape' => 'TerminalRoutingStrategyException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], ], ], 'CreatePlayerSessions' => [ 'name' => 'CreatePlayerSessions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreatePlayerSessionsInput', ], 'output' => [ 'shape' => 'CreatePlayerSessionsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidGameSessionStatusException', 'exception' => true, ], [ 'shape' => 'GameSessionFullException', 'exception' => true, ], [ 'shape' => 'TerminalRoutingStrategyException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], ], ], 'DeleteAlias' => [ 'name' => 'DeleteAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteAliasInput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], ], ], 'DeleteBuild' => [ 'name' => 'DeleteBuild', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteBuildInput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], ], ], 'DeleteFleet' => [ 'name' => 'DeleteFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteFleetInput', ], 'errors' => [ [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidFleetStatusException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], ], ], 'DeleteScalingPolicy' => [ 'name' => 'DeleteScalingPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteScalingPolicyInput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], ], ], 'DescribeAlias' => [ 'name' => 'DescribeAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAliasInput', ], 'output' => [ 'shape' => 'DescribeAliasOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], ], ], 'DescribeBuild' => [ 'name' => 'DescribeBuild', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeBuildInput', ], 'output' => [ 'shape' => 'DescribeBuildOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], ], ], 'DescribeEC2InstanceLimits' => [ 'name' => 'DescribeEC2InstanceLimits', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEC2InstanceLimitsInput', ], 'output' => [ 'shape' => 'DescribeEC2InstanceLimitsOutput', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], ], ], 'DescribeFleetAttributes' => [ 'name' => 'DescribeFleetAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetAttributesInput', ], 'output' => [ 'shape' => 'DescribeFleetAttributesOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], ], ], 'DescribeFleetCapacity' => [ 'name' => 'DescribeFleetCapacity', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetCapacityInput', ], 'output' => [ 'shape' => 'DescribeFleetCapacityOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], ], ], 'DescribeFleetEvents' => [ 'name' => 'DescribeFleetEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetEventsInput', ], 'output' => [ 'shape' => 'DescribeFleetEventsOutput', ], 'errors' => [ [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], ], ], 'DescribeFleetPortSettings' => [ 'name' => 'DescribeFleetPortSettings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetPortSettingsInput', ], 'output' => [ 'shape' => 'DescribeFleetPortSettingsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], ], ], 'DescribeFleetUtilization' => [ 'name' => 'DescribeFleetUtilization', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetUtilizationInput', ], 'output' => [ 'shape' => 'DescribeFleetUtilizationOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], ], ], 'DescribeGameSessionDetails' => [ 'name' => 'DescribeGameSessionDetails', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeGameSessionDetailsInput', ], 'output' => [ 'shape' => 'DescribeGameSessionDetailsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'TerminalRoutingStrategyException', 'exception' => true, ], ], ], 'DescribeGameSessions' => [ 'name' => 'DescribeGameSessions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeGameSessionsInput', ], 'output' => [ 'shape' => 'DescribeGameSessionsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'TerminalRoutingStrategyException', 'exception' => true, ], ], ], 'DescribePlayerSessions' => [ 'name' => 'DescribePlayerSessions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePlayerSessionsInput', ], 'output' => [ 'shape' => 'DescribePlayerSessionsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], ], ], 'DescribeRuntimeConfiguration' => [ 'name' => 'DescribeRuntimeConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeRuntimeConfigurationInput', ], 'output' => [ 'shape' => 'DescribeRuntimeConfigurationOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], ], ], 'DescribeScalingPolicies' => [ 'name' => 'DescribeScalingPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeScalingPoliciesInput', ], 'output' => [ 'shape' => 'DescribeScalingPoliciesOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], ], ], 'GetGameSessionLogUrl' => [ 'name' => 'GetGameSessionLogUrl', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetGameSessionLogUrlInput', ], 'output' => [ 'shape' => 'GetGameSessionLogUrlOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], ], ], 'ListAliases' => [ 'name' => 'ListAliases', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListAliasesInput', ], 'output' => [ 'shape' => 'ListAliasesOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], ], ], 'ListBuilds' => [ 'name' => 'ListBuilds', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListBuildsInput', ], 'output' => [ 'shape' => 'ListBuildsOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], ], ], 'ListFleets' => [ 'name' => 'ListFleets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListFleetsInput', ], 'output' => [ 'shape' => 'ListFleetsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], ], ], 'PutScalingPolicy' => [ 'name' => 'PutScalingPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutScalingPolicyInput', ], 'output' => [ 'shape' => 'PutScalingPolicyOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], ], ], 'RequestUploadCredentials' => [ 'name' => 'RequestUploadCredentials', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RequestUploadCredentialsInput', ], 'output' => [ 'shape' => 'RequestUploadCredentialsOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], ], ], 'ResolveAlias' => [ 'name' => 'ResolveAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResolveAliasInput', ], 'output' => [ 'shape' => 'ResolveAliasOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'TerminalRoutingStrategyException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], ], ], 'SearchGameSessions' => [ 'name' => 'SearchGameSessions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SearchGameSessionsInput', ], 'output' => [ 'shape' => 'SearchGameSessionsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'TerminalRoutingStrategyException', 'exception' => true, ], ], ], 'UpdateAlias' => [ 'name' => 'UpdateAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateAliasInput', ], 'output' => [ 'shape' => 'UpdateAliasOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], ], ], 'UpdateBuild' => [ 'name' => 'UpdateBuild', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateBuildInput', ], 'output' => [ 'shape' => 'UpdateBuildOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], ], ], 'UpdateFleetAttributes' => [ 'name' => 'UpdateFleetAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateFleetAttributesInput', ], 'output' => [ 'shape' => 'UpdateFleetAttributesOutput', ], 'errors' => [ [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'ConflictException', 'exception' => true, ], [ 'shape' => 'InvalidFleetStatusException', 'exception' => true, ], [ 'shape' => 'LimitExceededException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], ], ], 'UpdateFleetCapacity' => [ 'name' => 'UpdateFleetCapacity', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateFleetCapacityInput', ], 'output' => [ 'shape' => 'UpdateFleetCapacityOutput', ], 'errors' => [ [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'ConflictException', 'exception' => true, ], [ 'shape' => 'LimitExceededException', 'exception' => true, ], [ 'shape' => 'InvalidFleetStatusException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], ], ], 'UpdateFleetPortSettings' => [ 'name' => 'UpdateFleetPortSettings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateFleetPortSettingsInput', ], 'output' => [ 'shape' => 'UpdateFleetPortSettingsOutput', ], 'errors' => [ [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'ConflictException', 'exception' => true, ], [ 'shape' => 'InvalidFleetStatusException', 'exception' => true, ], [ 'shape' => 'LimitExceededException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], ], ], 'UpdateGameSession' => [ 'name' => 'UpdateGameSession', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateGameSessionInput', ], 'output' => [ 'shape' => 'UpdateGameSessionOutput', ], 'errors' => [ [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'ConflictException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'InvalidGameSessionStatusException', 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], ], ], 'UpdateRuntimeConfiguration' => [ 'name' => 'UpdateRuntimeConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateRuntimeConfigurationInput', ], 'output' => [ 'shape' => 'UpdateRuntimeConfigurationOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', 'exception' => true, ], [ 'shape' => 'NotFoundException', 'exception' => true, ], [ 'shape' => 'InternalServiceException', 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'exception' => true, ], [ 'shape' => 'InvalidFleetStatusException', 'exception' => true, ], ], ], ], 'shapes' => [ 'Alias' => [ 'type' => 'structure', 'members' => [ 'AliasId' => [ 'shape' => 'AliasId', ], 'Name' => [ 'shape' => 'FreeText', ], 'Description' => [ 'shape' => 'FreeText', ], 'RoutingStrategy' => [ 'shape' => 'RoutingStrategy', ], 'CreationTime' => [ 'shape' => 'Timestamp', ], 'LastUpdatedTime' => [ 'shape' => 'Timestamp', ], ], ], 'AliasId' => [ 'type' => 'string', 'pattern' => '^alias-\\S+', ], 'AliasList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Alias', ], ], 'AwsCredentials' => [ 'type' => 'structure', 'members' => [ 'AccessKeyId' => [ 'shape' => 'NonEmptyString', ], 'SecretAccessKey' => [ 'shape' => 'NonEmptyString', ], 'SessionToken' => [ 'shape' => 'NonEmptyString', ], ], 'sensitive' => true, ], 'Build' => [ 'type' => 'structure', 'members' => [ 'BuildId' => [ 'shape' => 'BuildId', ], 'Name' => [ 'shape' => 'FreeText', ], 'Version' => [ 'shape' => 'FreeText', ], 'Status' => [ 'shape' => 'BuildStatus', ], 'SizeOnDisk' => [ 'shape' => 'PositiveLong', ], 'OperatingSystem' => [ 'shape' => 'OperatingSystem', ], 'CreationTime' => [ 'shape' => 'Timestamp', ], ], ], 'BuildId' => [ 'type' => 'string', 'pattern' => '^build-\\S+', ], 'BuildList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Build', ], ], 'BuildStatus' => [ 'type' => 'string', 'enum' => [ 'INITIALIZED', 'READY', 'FAILED', ], ], 'ComparisonOperatorType' => [ 'type' => 'string', 'enum' => [ 'GreaterThanOrEqualToThreshold', 'GreaterThanThreshold', 'LessThanThreshold', 'LessThanOrEqualToThreshold', ], ], 'ConflictException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'CreateAliasInput' => [ 'type' => 'structure', 'required' => [ 'Name', 'RoutingStrategy', ], 'members' => [ 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'Description' => [ 'shape' => 'NonZeroAndMaxString', ], 'RoutingStrategy' => [ 'shape' => 'RoutingStrategy', ], ], ], 'CreateAliasOutput' => [ 'type' => 'structure', 'members' => [ 'Alias' => [ 'shape' => 'Alias', ], ], ], 'CreateBuildInput' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'Version' => [ 'shape' => 'NonZeroAndMaxString', ], 'StorageLocation' => [ 'shape' => 'S3Location', ], 'OperatingSystem' => [ 'shape' => 'OperatingSystem', ], ], ], 'CreateBuildOutput' => [ 'type' => 'structure', 'members' => [ 'Build' => [ 'shape' => 'Build', ], 'UploadCredentials' => [ 'shape' => 'AwsCredentials', ], 'StorageLocation' => [ 'shape' => 'S3Location', ], ], ], 'CreateFleetInput' => [ 'type' => 'structure', 'required' => [ 'Name', 'BuildId', 'EC2InstanceType', ], 'members' => [ 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'Description' => [ 'shape' => 'NonZeroAndMaxString', ], 'BuildId' => [ 'shape' => 'BuildId', ], 'ServerLaunchPath' => [ 'shape' => 'NonZeroAndMaxString', ], 'ServerLaunchParameters' => [ 'shape' => 'NonZeroAndMaxString', ], 'LogPaths' => [ 'shape' => 'StringList', ], 'EC2InstanceType' => [ 'shape' => 'EC2InstanceType', ], 'EC2InboundPermissions' => [ 'shape' => 'IpPermissionsList', ], 'NewGameSessionProtectionPolicy' => [ 'shape' => 'ProtectionPolicy', ], 'RuntimeConfiguration' => [ 'shape' => 'RuntimeConfiguration', ], ], ], 'CreateFleetOutput' => [ 'type' => 'structure', 'members' => [ 'FleetAttributes' => [ 'shape' => 'FleetAttributes', ], ], ], 'CreateGameSessionInput' => [ 'type' => 'structure', 'required' => [ 'MaximumPlayerSessionCount', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'AliasId' => [ 'shape' => 'AliasId', ], 'MaximumPlayerSessionCount' => [ 'shape' => 'WholeNumber', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'GameProperties' => [ 'shape' => 'GamePropertyList', ], ], ], 'CreateGameSessionOutput' => [ 'type' => 'structure', 'members' => [ 'GameSession' => [ 'shape' => 'GameSession', ], ], ], 'CreatePlayerSessionInput' => [ 'type' => 'structure', 'required' => [ 'GameSessionId', 'PlayerId', ], 'members' => [ 'GameSessionId' => [ 'shape' => 'GameSessionId', ], 'PlayerId' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'CreatePlayerSessionOutput' => [ 'type' => 'structure', 'members' => [ 'PlayerSession' => [ 'shape' => 'PlayerSession', ], ], ], 'CreatePlayerSessionsInput' => [ 'type' => 'structure', 'required' => [ 'GameSessionId', 'PlayerIds', ], 'members' => [ 'GameSessionId' => [ 'shape' => 'GameSessionId', ], 'PlayerIds' => [ 'shape' => 'PlayerIdList', ], ], ], 'CreatePlayerSessionsOutput' => [ 'type' => 'structure', 'members' => [ 'PlayerSessions' => [ 'shape' => 'PlayerSessionList', ], ], ], 'DeleteAliasInput' => [ 'type' => 'structure', 'required' => [ 'AliasId', ], 'members' => [ 'AliasId' => [ 'shape' => 'AliasId', ], ], ], 'DeleteBuildInput' => [ 'type' => 'structure', 'required' => [ 'BuildId', ], 'members' => [ 'BuildId' => [ 'shape' => 'BuildId', ], ], ], 'DeleteFleetInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'DeleteScalingPolicyInput' => [ 'type' => 'structure', 'required' => [ 'Name', 'FleetId', ], 'members' => [ 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'DescribeAliasInput' => [ 'type' => 'structure', 'required' => [ 'AliasId', ], 'members' => [ 'AliasId' => [ 'shape' => 'AliasId', ], ], ], 'DescribeAliasOutput' => [ 'type' => 'structure', 'members' => [ 'Alias' => [ 'shape' => 'Alias', ], ], ], 'DescribeBuildInput' => [ 'type' => 'structure', 'required' => [ 'BuildId', ], 'members' => [ 'BuildId' => [ 'shape' => 'BuildId', ], ], ], 'DescribeBuildOutput' => [ 'type' => 'structure', 'members' => [ 'Build' => [ 'shape' => 'Build', ], ], ], 'DescribeEC2InstanceLimitsInput' => [ 'type' => 'structure', 'members' => [ 'EC2InstanceType' => [ 'shape' => 'EC2InstanceType', ], ], ], 'DescribeEC2InstanceLimitsOutput' => [ 'type' => 'structure', 'members' => [ 'EC2InstanceLimits' => [ 'shape' => 'EC2InstanceLimitList', ], ], ], 'DescribeFleetAttributesInput' => [ 'type' => 'structure', 'members' => [ 'FleetIds' => [ 'shape' => 'FleetIdList', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetAttributesOutput' => [ 'type' => 'structure', 'members' => [ 'FleetAttributes' => [ 'shape' => 'FleetAttributesList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetCapacityInput' => [ 'type' => 'structure', 'members' => [ 'FleetIds' => [ 'shape' => 'FleetIdList', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetCapacityOutput' => [ 'type' => 'structure', 'members' => [ 'FleetCapacity' => [ 'shape' => 'FleetCapacityList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetEventsInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'StartTime' => [ 'shape' => 'Timestamp', ], 'EndTime' => [ 'shape' => 'Timestamp', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetEventsOutput' => [ 'type' => 'structure', 'members' => [ 'Events' => [ 'shape' => 'EventList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetPortSettingsInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'DescribeFleetPortSettingsOutput' => [ 'type' => 'structure', 'members' => [ 'InboundPermissions' => [ 'shape' => 'IpPermissionsList', ], ], ], 'DescribeFleetUtilizationInput' => [ 'type' => 'structure', 'members' => [ 'FleetIds' => [ 'shape' => 'FleetIdList', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetUtilizationOutput' => [ 'type' => 'structure', 'members' => [ 'FleetUtilization' => [ 'shape' => 'FleetUtilizationList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeGameSessionDetailsInput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'GameSessionId' => [ 'shape' => 'GameSessionId', ], 'AliasId' => [ 'shape' => 'AliasId', ], 'StatusFilter' => [ 'shape' => 'NonZeroAndMaxString', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeGameSessionDetailsOutput' => [ 'type' => 'structure', 'members' => [ 'GameSessionDetails' => [ 'shape' => 'GameSessionDetailList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeGameSessionsInput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'GameSessionId' => [ 'shape' => 'GameSessionId', ], 'AliasId' => [ 'shape' => 'AliasId', ], 'StatusFilter' => [ 'shape' => 'NonZeroAndMaxString', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeGameSessionsOutput' => [ 'type' => 'structure', 'members' => [ 'GameSessions' => [ 'shape' => 'GameSessionList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribePlayerSessionsInput' => [ 'type' => 'structure', 'members' => [ 'GameSessionId' => [ 'shape' => 'GameSessionId', ], 'PlayerId' => [ 'shape' => 'NonZeroAndMaxString', ], 'PlayerSessionId' => [ 'shape' => 'PlayerSessionId', ], 'PlayerSessionStatusFilter' => [ 'shape' => 'NonZeroAndMaxString', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribePlayerSessionsOutput' => [ 'type' => 'structure', 'members' => [ 'PlayerSessions' => [ 'shape' => 'PlayerSessionList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeRuntimeConfigurationInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'DescribeRuntimeConfigurationOutput' => [ 'type' => 'structure', 'members' => [ 'RuntimeConfiguration' => [ 'shape' => 'RuntimeConfiguration', ], ], ], 'DescribeScalingPoliciesInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'StatusFilter' => [ 'shape' => 'ScalingStatusType', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeScalingPoliciesOutput' => [ 'type' => 'structure', 'members' => [ 'ScalingPolicies' => [ 'shape' => 'ScalingPolicyList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'Double' => [ 'type' => 'double', ], 'EC2InstanceCounts' => [ 'type' => 'structure', 'members' => [ 'DESIRED' => [ 'shape' => 'WholeNumber', ], 'MINIMUM' => [ 'shape' => 'WholeNumber', ], 'MAXIMUM' => [ 'shape' => 'WholeNumber', ], 'PENDING' => [ 'shape' => 'WholeNumber', ], 'ACTIVE' => [ 'shape' => 'WholeNumber', ], 'IDLE' => [ 'shape' => 'WholeNumber', ], 'TERMINATING' => [ 'shape' => 'WholeNumber', ], ], ], 'EC2InstanceLimit' => [ 'type' => 'structure', 'members' => [ 'EC2InstanceType' => [ 'shape' => 'EC2InstanceType', ], 'CurrentInstances' => [ 'shape' => 'WholeNumber', ], 'InstanceLimit' => [ 'shape' => 'WholeNumber', ], ], ], 'EC2InstanceLimitList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EC2InstanceLimit', ], ], 'EC2InstanceType' => [ 'type' => 'string', 'enum' => [ 't2.micro', 't2.small', 't2.medium', 't2.large', 'c3.large', 'c3.xlarge', 'c3.2xlarge', 'c3.4xlarge', 'c3.8xlarge', 'c4.large', 'c4.xlarge', 'c4.2xlarge', 'c4.4xlarge', 'c4.8xlarge', 'r3.large', 'r3.xlarge', 'r3.2xlarge', 'r3.4xlarge', 'r3.8xlarge', 'm3.medium', 'm3.large', 'm3.xlarge', 'm3.2xlarge', 'm4.large', 'm4.xlarge', 'm4.2xlarge', 'm4.4xlarge', 'm4.10xlarge', ], ], 'Event' => [ 'type' => 'structure', 'members' => [ 'EventId' => [ 'shape' => 'NonZeroAndMaxString', ], 'ResourceId' => [ 'shape' => 'NonZeroAndMaxString', ], 'EventCode' => [ 'shape' => 'EventCode', ], 'Message' => [ 'shape' => 'NonEmptyString', ], 'EventTime' => [ 'shape' => 'Timestamp', ], ], ], 'EventCode' => [ 'type' => 'string', 'enum' => [ 'GENERIC_EVENT', 'FLEET_CREATED', 'FLEET_DELETED', 'FLEET_SCALING_EVENT', 'FLEET_STATE_DOWNLOADING', 'FLEET_STATE_VALIDATING', 'FLEET_STATE_BUILDING', 'FLEET_STATE_ACTIVATING', 'FLEET_STATE_ACTIVE', 'FLEET_STATE_ERROR', 'FLEET_INITIALIZATION_FAILED', 'FLEET_BINARY_DOWNLOAD_FAILED', 'FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND', 'FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE', 'FLEET_VALIDATION_TIMED_OUT', 'FLEET_ACTIVATION_FAILED', 'FLEET_ACTIVATION_FAILED_NO_INSTANCES', 'FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED', ], ], 'EventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Event', ], ], 'FleetAttributes' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'Description' => [ 'shape' => 'NonZeroAndMaxString', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'CreationTime' => [ 'shape' => 'Timestamp', ], 'TerminationTime' => [ 'shape' => 'Timestamp', ], 'Status' => [ 'shape' => 'FleetStatus', ], 'BuildId' => [ 'shape' => 'BuildId', ], 'ServerLaunchPath' => [ 'shape' => 'NonZeroAndMaxString', ], 'ServerLaunchParameters' => [ 'shape' => 'NonZeroAndMaxString', ], 'LogPaths' => [ 'shape' => 'StringList', ], 'NewGameSessionProtectionPolicy' => [ 'shape' => 'ProtectionPolicy', ], 'OperatingSystem' => [ 'shape' => 'OperatingSystem', ], ], ], 'FleetAttributesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetAttributes', ], ], 'FleetCapacity' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'InstanceType' => [ 'shape' => 'EC2InstanceType', ], 'InstanceCounts' => [ 'shape' => 'EC2InstanceCounts', ], ], ], 'FleetCapacityExceededException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'FleetCapacityList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetCapacity', ], ], 'FleetId' => [ 'type' => 'string', 'pattern' => '^fleet-\\S+', ], 'FleetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetId', ], 'min' => 1, ], 'FleetStatus' => [ 'type' => 'string', 'enum' => [ 'NEW', 'DOWNLOADING', 'VALIDATING', 'BUILDING', 'ACTIVATING', 'ACTIVE', 'DELETING', 'ERROR', 'TERMINATED', ], ], 'FleetUtilization' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'ActiveServerProcessCount' => [ 'shape' => 'WholeNumber', ], 'ActiveGameSessionCount' => [ 'shape' => 'WholeNumber', ], 'CurrentPlayerSessionCount' => [ 'shape' => 'WholeNumber', ], 'MaximumPlayerSessionCount' => [ 'shape' => 'WholeNumber', ], ], ], 'FleetUtilizationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetUtilization', ], ], 'FreeText' => [ 'type' => 'string', ], 'GameProperty' => [ 'type' => 'structure', 'required' => [ 'Key', 'Value', ], 'members' => [ 'Key' => [ 'shape' => 'GamePropertyKey', ], 'Value' => [ 'shape' => 'GamePropertyValue', ], ], ], 'GamePropertyKey' => [ 'type' => 'string', 'max' => 32, ], 'GamePropertyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GameProperty', ], 'max' => 16, ], 'GamePropertyValue' => [ 'type' => 'string', 'max' => 96, ], 'GameSession' => [ 'type' => 'structure', 'members' => [ 'GameSessionId' => [ 'shape' => 'GameSessionId', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'CreationTime' => [ 'shape' => 'Timestamp', ], 'TerminationTime' => [ 'shape' => 'Timestamp', ], 'CurrentPlayerSessionCount' => [ 'shape' => 'WholeNumber', ], 'MaximumPlayerSessionCount' => [ 'shape' => 'WholeNumber', ], 'Status' => [ 'shape' => 'GameSessionStatus', ], 'GameProperties' => [ 'shape' => 'GamePropertyList', ], 'IpAddress' => [ 'shape' => 'IpAddress', ], 'Port' => [ 'shape' => 'PortNumber', ], 'PlayerSessionCreationPolicy' => [ 'shape' => 'PlayerSessionCreationPolicy', ], ], ], 'GameSessionDetail' => [ 'type' => 'structure', 'members' => [ 'GameSession' => [ 'shape' => 'GameSession', ], 'ProtectionPolicy' => [ 'shape' => 'ProtectionPolicy', ], ], ], 'GameSessionDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GameSessionDetail', ], ], 'GameSessionFullException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'GameSessionId' => [ 'type' => 'string', 'pattern' => '^(gamei-|gsess-)\\S+', ], 'GameSessionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GameSession', ], ], 'GameSessionStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'ACTIVATING', 'TERMINATED', 'TERMINATING', ], ], 'GetGameSessionLogUrlInput' => [ 'type' => 'structure', 'required' => [ 'GameSessionId', ], 'members' => [ 'GameSessionId' => [ 'shape' => 'GameSessionId', ], ], ], 'GetGameSessionLogUrlOutput' => [ 'type' => 'structure', 'members' => [ 'PreSignedUrl' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'Integer' => [ 'type' => 'integer', ], 'InternalServiceException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, 'fault' => true, ], 'InvalidFleetStatusException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'InvalidGameSessionStatusException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'InvalidRequestException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'IpAddress' => [ 'type' => 'string', ], 'IpPermission' => [ 'type' => 'structure', 'required' => [ 'FromPort', 'ToPort', 'IpRange', 'Protocol', ], 'members' => [ 'FromPort' => [ 'shape' => 'PortNumber', ], 'ToPort' => [ 'shape' => 'PortNumber', ], 'IpRange' => [ 'shape' => 'NonBlankString', ], 'Protocol' => [ 'shape' => 'IpProtocol', ], ], ], 'IpPermissionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpPermission', ], 'max' => 50, ], 'IpProtocol' => [ 'type' => 'string', 'enum' => [ 'TCP', 'UDP', ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'ListAliasesInput' => [ 'type' => 'structure', 'members' => [ 'RoutingStrategyType' => [ 'shape' => 'RoutingStrategyType', ], 'Name' => [ 'shape' => 'NonEmptyString', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonEmptyString', ], ], ], 'ListAliasesOutput' => [ 'type' => 'structure', 'members' => [ 'Aliases' => [ 'shape' => 'AliasList', ], 'NextToken' => [ 'shape' => 'NonEmptyString', ], ], ], 'ListBuildsInput' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'BuildStatus', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonEmptyString', ], ], ], 'ListBuildsOutput' => [ 'type' => 'structure', 'members' => [ 'Builds' => [ 'shape' => 'BuildList', ], 'NextToken' => [ 'shape' => 'NonEmptyString', ], ], ], 'ListFleetsInput' => [ 'type' => 'structure', 'members' => [ 'BuildId' => [ 'shape' => 'BuildId', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'ListFleetsOutput' => [ 'type' => 'structure', 'members' => [ 'FleetIds' => [ 'shape' => 'FleetIdList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'MetricName' => [ 'type' => 'string', 'enum' => [ 'ActivatingGameSessions', 'ActiveGameSessions', 'ActiveInstances', 'AvailablePlayerSessions', 'CurrentPlayerSessions', 'IdleInstances', ], ], 'NonBlankString' => [ 'type' => 'string', 'pattern' => '[^\\s]+', ], 'NonEmptyString' => [ 'type' => 'string', 'min' => 1, ], 'NonZeroAndMaxString' => [ 'type' => 'string', 'min' => 1, 'max' => 1024, ], 'NotFoundException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'OperatingSystem' => [ 'type' => 'string', 'enum' => [ 'WINDOWS_2012', 'AMAZON_LINUX', ], ], 'PlayerIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NonZeroAndMaxString', ], 'min' => 1, 'max' => 25, ], 'PlayerSession' => [ 'type' => 'structure', 'members' => [ 'PlayerSessionId' => [ 'shape' => 'PlayerSessionId', ], 'PlayerId' => [ 'shape' => 'NonZeroAndMaxString', ], 'GameSessionId' => [ 'shape' => 'GameSessionId', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'CreationTime' => [ 'shape' => 'Timestamp', ], 'TerminationTime' => [ 'shape' => 'Timestamp', ], 'Status' => [ 'shape' => 'PlayerSessionStatus', ], 'IpAddress' => [ 'shape' => 'IpAddress', ], 'Port' => [ 'shape' => 'PortNumber', ], ], ], 'PlayerSessionCreationPolicy' => [ 'type' => 'string', 'enum' => [ 'ACCEPT_ALL', 'DENY_ALL', ], ], 'PlayerSessionId' => [ 'type' => 'string', 'pattern' => '^psess-\\S+', ], 'PlayerSessionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlayerSession', ], ], 'PlayerSessionStatus' => [ 'type' => 'string', 'enum' => [ 'RESERVED', 'ACTIVE', 'COMPLETED', 'TIMEDOUT', ], ], 'PortNumber' => [ 'type' => 'integer', 'min' => 1025, 'max' => 60000, ], 'PositiveInteger' => [ 'type' => 'integer', 'min' => 1, ], 'PositiveLong' => [ 'type' => 'long', 'min' => 1, ], 'ProtectionPolicy' => [ 'type' => 'string', 'enum' => [ 'NoProtection', 'FullProtection', ], ], 'PutScalingPolicyInput' => [ 'type' => 'structure', 'required' => [ 'Name', 'FleetId', 'ScalingAdjustment', 'ScalingAdjustmentType', 'Threshold', 'ComparisonOperator', 'EvaluationPeriods', 'MetricName', ], 'members' => [ 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'ScalingAdjustment' => [ 'shape' => 'Integer', ], 'ScalingAdjustmentType' => [ 'shape' => 'ScalingAdjustmentType', ], 'Threshold' => [ 'shape' => 'Double', ], 'ComparisonOperator' => [ 'shape' => 'ComparisonOperatorType', ], 'EvaluationPeriods' => [ 'shape' => 'PositiveInteger', ], 'MetricName' => [ 'shape' => 'MetricName', ], ], ], 'PutScalingPolicyOutput' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'RequestUploadCredentialsInput' => [ 'type' => 'structure', 'required' => [ 'BuildId', ], 'members' => [ 'BuildId' => [ 'shape' => 'BuildId', ], ], ], 'RequestUploadCredentialsOutput' => [ 'type' => 'structure', 'members' => [ 'UploadCredentials' => [ 'shape' => 'AwsCredentials', ], 'StorageLocation' => [ 'shape' => 'S3Location', ], ], ], 'ResolveAliasInput' => [ 'type' => 'structure', 'required' => [ 'AliasId', ], 'members' => [ 'AliasId' => [ 'shape' => 'AliasId', ], ], ], 'ResolveAliasOutput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'RoutingStrategy' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'RoutingStrategyType', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'Message' => [ 'shape' => 'FreeText', ], ], ], 'RoutingStrategyType' => [ 'type' => 'string', 'enum' => [ 'SIMPLE', 'TERMINAL', ], ], 'RuntimeConfiguration' => [ 'type' => 'structure', 'members' => [ 'ServerProcesses' => [ 'shape' => 'ServerProcessList', ], ], ], 'S3Location' => [ 'type' => 'structure', 'members' => [ 'Bucket' => [ 'shape' => 'NonEmptyString', ], 'Key' => [ 'shape' => 'NonEmptyString', ], 'RoleArn' => [ 'shape' => 'NonEmptyString', ], ], ], 'ScalingAdjustmentType' => [ 'type' => 'string', 'enum' => [ 'ChangeInCapacity', 'ExactCapacity', 'PercentChangeInCapacity', ], ], 'ScalingPolicy' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'Status' => [ 'shape' => 'ScalingStatusType', ], 'ScalingAdjustment' => [ 'shape' => 'Integer', ], 'ScalingAdjustmentType' => [ 'shape' => 'ScalingAdjustmentType', ], 'ComparisonOperator' => [ 'shape' => 'ComparisonOperatorType', ], 'Threshold' => [ 'shape' => 'Double', ], 'EvaluationPeriods' => [ 'shape' => 'PositiveInteger', ], 'MetricName' => [ 'shape' => 'MetricName', ], ], ], 'ScalingPolicyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScalingPolicy', ], ], 'ScalingStatusType' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'UPDATE_REQUESTED', 'UPDATING', 'DELETE_REQUESTED', 'DELETING', 'DELETED', 'ERROR', ], ], 'SearchGameSessionsInput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'AliasId' => [ 'shape' => 'AliasId', ], 'FilterExpression' => [ 'shape' => 'NonZeroAndMaxString', ], 'SortExpression' => [ 'shape' => 'NonZeroAndMaxString', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'SearchGameSessionsOutput' => [ 'type' => 'structure', 'members' => [ 'GameSessions' => [ 'shape' => 'GameSessionList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'ServerProcess' => [ 'type' => 'structure', 'required' => [ 'LaunchPath', 'ConcurrentExecutions', ], 'members' => [ 'LaunchPath' => [ 'shape' => 'NonZeroAndMaxString', ], 'Parameters' => [ 'shape' => 'NonZeroAndMaxString', ], 'ConcurrentExecutions' => [ 'shape' => 'PositiveInteger', ], ], ], 'ServerProcessList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServerProcess', ], 'min' => 1, 'max' => 50, ], 'StringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NonZeroAndMaxString', ], ], 'TerminalRoutingStrategyException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'Timestamp' => [ 'type' => 'timestamp', ], 'UnauthorizedException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'UpdateAliasInput' => [ 'type' => 'structure', 'required' => [ 'AliasId', ], 'members' => [ 'AliasId' => [ 'shape' => 'AliasId', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'Description' => [ 'shape' => 'NonZeroAndMaxString', ], 'RoutingStrategy' => [ 'shape' => 'RoutingStrategy', ], ], ], 'UpdateAliasOutput' => [ 'type' => 'structure', 'members' => [ 'Alias' => [ 'shape' => 'Alias', ], ], ], 'UpdateBuildInput' => [ 'type' => 'structure', 'required' => [ 'BuildId', ], 'members' => [ 'BuildId' => [ 'shape' => 'BuildId', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'Version' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'UpdateBuildOutput' => [ 'type' => 'structure', 'members' => [ 'Build' => [ 'shape' => 'Build', ], ], ], 'UpdateFleetAttributesInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'Description' => [ 'shape' => 'NonZeroAndMaxString', ], 'NewGameSessionProtectionPolicy' => [ 'shape' => 'ProtectionPolicy', ], ], ], 'UpdateFleetAttributesOutput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'UpdateFleetCapacityInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'DesiredInstances' => [ 'shape' => 'WholeNumber', ], 'MinSize' => [ 'shape' => 'WholeNumber', ], 'MaxSize' => [ 'shape' => 'WholeNumber', ], ], ], 'UpdateFleetCapacityOutput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'UpdateFleetPortSettingsInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'InboundPermissionAuthorizations' => [ 'shape' => 'IpPermissionsList', ], 'InboundPermissionRevocations' => [ 'shape' => 'IpPermissionsList', ], ], ], 'UpdateFleetPortSettingsOutput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'UpdateGameSessionInput' => [ 'type' => 'structure', 'required' => [ 'GameSessionId', ], 'members' => [ 'GameSessionId' => [ 'shape' => 'GameSessionId', ], 'MaximumPlayerSessionCount' => [ 'shape' => 'WholeNumber', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'PlayerSessionCreationPolicy' => [ 'shape' => 'PlayerSessionCreationPolicy', ], 'ProtectionPolicy' => [ 'shape' => 'ProtectionPolicy', ], ], ], 'UpdateGameSessionOutput' => [ 'type' => 'structure', 'members' => [ 'GameSession' => [ 'shape' => 'GameSession', ], ], ], 'UpdateRuntimeConfigurationInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', 'RuntimeConfiguration', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'RuntimeConfiguration' => [ 'shape' => 'RuntimeConfiguration', ], ], ], 'UpdateRuntimeConfigurationOutput' => [ 'type' => 'structure', 'members' => [ 'RuntimeConfiguration' => [ 'shape' => 'RuntimeConfiguration', ], ], ], 'WholeNumber' => [ 'type' => 'integer', 'min' => 0, ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2015-10-01', 'endpointPrefix' => 'gamelift', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceFullName' => 'Amazon GameLift', 'signatureVersion' => 'v4', 'targetPrefix' => 'GameLift', ], 'operations' => [ 'CreateAlias' => [ 'name' => 'CreateAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateAliasInput', ], 'output' => [ 'shape' => 'CreateAliasOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'CreateBuild' => [ 'name' => 'CreateBuild', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateBuildInput', ], 'output' => [ 'shape' => 'CreateBuildOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServiceException', ], ], ], 'CreateFleet' => [ 'name' => 'CreateFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateFleetInput', ], 'output' => [ 'shape' => 'CreateFleetOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'CreateGameSession' => [ 'name' => 'CreateGameSession', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateGameSessionInput', ], 'output' => [ 'shape' => 'CreateGameSessionOutput', ], 'errors' => [ [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidFleetStatusException', ], [ 'shape' => 'TerminalRoutingStrategyException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'FleetCapacityExceededException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'IdempotentParameterMismatchException', ], ], ], 'CreatePlayerSession' => [ 'name' => 'CreatePlayerSession', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreatePlayerSessionInput', ], 'output' => [ 'shape' => 'CreatePlayerSessionOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidGameSessionStatusException', ], [ 'shape' => 'GameSessionFullException', ], [ 'shape' => 'TerminalRoutingStrategyException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'NotFoundException', ], ], ], 'CreatePlayerSessions' => [ 'name' => 'CreatePlayerSessions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreatePlayerSessionsInput', ], 'output' => [ 'shape' => 'CreatePlayerSessionsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidGameSessionStatusException', ], [ 'shape' => 'GameSessionFullException', ], [ 'shape' => 'TerminalRoutingStrategyException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'NotFoundException', ], ], ], 'DeleteAlias' => [ 'name' => 'DeleteAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteAliasInput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalServiceException', ], ], ], 'DeleteBuild' => [ 'name' => 'DeleteBuild', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteBuildInput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'DeleteFleet' => [ 'name' => 'DeleteFleet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteFleetInput', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'InvalidFleetStatusException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'DeleteScalingPolicy' => [ 'name' => 'DeleteScalingPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteScalingPolicyInput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], ], ], 'DescribeAlias' => [ 'name' => 'DescribeAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAliasInput', ], 'output' => [ 'shape' => 'DescribeAliasOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InternalServiceException', ], ], ], 'DescribeBuild' => [ 'name' => 'DescribeBuild', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeBuildInput', ], 'output' => [ 'shape' => 'DescribeBuildOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InternalServiceException', ], ], ], 'DescribeEC2InstanceLimits' => [ 'name' => 'DescribeEC2InstanceLimits', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEC2InstanceLimitsInput', ], 'output' => [ 'shape' => 'DescribeEC2InstanceLimitsOutput', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'DescribeFleetAttributes' => [ 'name' => 'DescribeFleetAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetAttributesInput', ], 'output' => [ 'shape' => 'DescribeFleetAttributesOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'DescribeFleetCapacity' => [ 'name' => 'DescribeFleetCapacity', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetCapacityInput', ], 'output' => [ 'shape' => 'DescribeFleetCapacityOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'DescribeFleetEvents' => [ 'name' => 'DescribeFleetEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetEventsInput', ], 'output' => [ 'shape' => 'DescribeFleetEventsOutput', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'DescribeFleetPortSettings' => [ 'name' => 'DescribeFleetPortSettings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetPortSettingsInput', ], 'output' => [ 'shape' => 'DescribeFleetPortSettingsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'DescribeFleetUtilization' => [ 'name' => 'DescribeFleetUtilization', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeFleetUtilizationInput', ], 'output' => [ 'shape' => 'DescribeFleetUtilizationOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'DescribeGameSessionDetails' => [ 'name' => 'DescribeGameSessionDetails', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeGameSessionDetailsInput', ], 'output' => [ 'shape' => 'DescribeGameSessionDetailsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TerminalRoutingStrategyException', ], ], ], 'DescribeGameSessions' => [ 'name' => 'DescribeGameSessions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeGameSessionsInput', ], 'output' => [ 'shape' => 'DescribeGameSessionsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TerminalRoutingStrategyException', ], ], ], 'DescribeInstances' => [ 'name' => 'DescribeInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeInstancesInput', ], 'output' => [ 'shape' => 'DescribeInstancesOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InternalServiceException', ], ], ], 'DescribePlayerSessions' => [ 'name' => 'DescribePlayerSessions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePlayerSessionsInput', ], 'output' => [ 'shape' => 'DescribePlayerSessionsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'DescribeRuntimeConfiguration' => [ 'name' => 'DescribeRuntimeConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeRuntimeConfigurationInput', ], 'output' => [ 'shape' => 'DescribeRuntimeConfigurationOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'DescribeScalingPolicies' => [ 'name' => 'DescribeScalingPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeScalingPoliciesInput', ], 'output' => [ 'shape' => 'DescribeScalingPoliciesOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], ], ], 'GetGameSessionLogUrl' => [ 'name' => 'GetGameSessionLogUrl', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetGameSessionLogUrlInput', ], 'output' => [ 'shape' => 'GetGameSessionLogUrlOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'ListAliases' => [ 'name' => 'ListAliases', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListAliasesInput', ], 'output' => [ 'shape' => 'ListAliasesOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalServiceException', ], ], ], 'ListBuilds' => [ 'name' => 'ListBuilds', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListBuildsInput', ], 'output' => [ 'shape' => 'ListBuildsOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InternalServiceException', ], ], ], 'ListFleets' => [ 'name' => 'ListFleets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListFleetsInput', ], 'output' => [ 'shape' => 'ListFleetsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'PutScalingPolicy' => [ 'name' => 'PutScalingPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutScalingPolicyInput', ], 'output' => [ 'shape' => 'PutScalingPolicyOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], ], ], 'RequestUploadCredentials' => [ 'name' => 'RequestUploadCredentials', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RequestUploadCredentialsInput', ], 'output' => [ 'shape' => 'RequestUploadCredentialsOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InternalServiceException', ], ], ], 'ResolveAlias' => [ 'name' => 'ResolveAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResolveAliasInput', ], 'output' => [ 'shape' => 'ResolveAliasOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'TerminalRoutingStrategyException', ], [ 'shape' => 'InternalServiceException', ], ], ], 'SearchGameSessions' => [ 'name' => 'SearchGameSessions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SearchGameSessionsInput', ], 'output' => [ 'shape' => 'SearchGameSessionsOutput', ], 'errors' => [ [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'TerminalRoutingStrategyException', ], ], ], 'UpdateAlias' => [ 'name' => 'UpdateAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateAliasInput', ], 'output' => [ 'shape' => 'UpdateAliasOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InternalServiceException', ], ], ], 'UpdateBuild' => [ 'name' => 'UpdateBuild', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateBuildInput', ], 'output' => [ 'shape' => 'UpdateBuildOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InternalServiceException', ], ], ], 'UpdateFleetAttributes' => [ 'name' => 'UpdateFleetAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateFleetAttributesInput', ], 'output' => [ 'shape' => 'UpdateFleetAttributesOutput', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InvalidFleetStatusException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'UpdateFleetCapacity' => [ 'name' => 'UpdateFleetCapacity', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateFleetCapacityInput', ], 'output' => [ 'shape' => 'UpdateFleetCapacityOutput', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidFleetStatusException', ], [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'UpdateFleetPortSettings' => [ 'name' => 'UpdateFleetPortSettings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateFleetPortSettingsInput', ], 'output' => [ 'shape' => 'UpdateFleetPortSettingsOutput', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InvalidFleetStatusException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'UnauthorizedException', ], ], ], 'UpdateGameSession' => [ 'name' => 'UpdateGameSession', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateGameSessionInput', ], 'output' => [ 'shape' => 'UpdateGameSessionOutput', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'ConflictException', ], [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'InvalidGameSessionStatusException', ], [ 'shape' => 'InvalidRequestException', ], ], ], 'UpdateRuntimeConfiguration' => [ 'name' => 'UpdateRuntimeConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateRuntimeConfigurationInput', ], 'output' => [ 'shape' => 'UpdateRuntimeConfigurationOutput', ], 'errors' => [ [ 'shape' => 'UnauthorizedException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InternalServiceException', ], [ 'shape' => 'InvalidRequestException', ], [ 'shape' => 'InvalidFleetStatusException', ], ], ], ], 'shapes' => [ 'Alias' => [ 'type' => 'structure', 'members' => [ 'AliasId' => [ 'shape' => 'AliasId', ], 'Name' => [ 'shape' => 'NonBlankAndLengthConstraintString', ], 'Description' => [ 'shape' => 'FreeText', ], 'RoutingStrategy' => [ 'shape' => 'RoutingStrategy', ], 'CreationTime' => [ 'shape' => 'Timestamp', ], 'LastUpdatedTime' => [ 'shape' => 'Timestamp', ], ], ], 'AliasId' => [ 'type' => 'string', 'pattern' => '^alias-\\S+', ], 'AliasList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Alias', ], ], 'ArnStringModel' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '[a-zA-Z0-9:/-]+', ], 'AwsCredentials' => [ 'type' => 'structure', 'members' => [ 'AccessKeyId' => [ 'shape' => 'NonEmptyString', ], 'SecretAccessKey' => [ 'shape' => 'NonEmptyString', ], 'SessionToken' => [ 'shape' => 'NonEmptyString', ], ], 'sensitive' => true, ], 'Build' => [ 'type' => 'structure', 'members' => [ 'BuildId' => [ 'shape' => 'BuildId', ], 'Name' => [ 'shape' => 'FreeText', ], 'Version' => [ 'shape' => 'FreeText', ], 'Status' => [ 'shape' => 'BuildStatus', ], 'SizeOnDisk' => [ 'shape' => 'PositiveLong', ], 'OperatingSystem' => [ 'shape' => 'OperatingSystem', ], 'CreationTime' => [ 'shape' => 'Timestamp', ], ], ], 'BuildId' => [ 'type' => 'string', 'pattern' => '^build-\\S+', ], 'BuildList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Build', ], ], 'BuildStatus' => [ 'type' => 'string', 'enum' => [ 'INITIALIZED', 'READY', 'FAILED', ], ], 'ComparisonOperatorType' => [ 'type' => 'string', 'enum' => [ 'GreaterThanOrEqualToThreshold', 'GreaterThanThreshold', 'LessThanThreshold', 'LessThanOrEqualToThreshold', ], ], 'ConflictException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'CreateAliasInput' => [ 'type' => 'structure', 'required' => [ 'Name', 'RoutingStrategy', ], 'members' => [ 'Name' => [ 'shape' => 'NonBlankAndLengthConstraintString', ], 'Description' => [ 'shape' => 'NonZeroAndMaxString', ], 'RoutingStrategy' => [ 'shape' => 'RoutingStrategy', ], ], ], 'CreateAliasOutput' => [ 'type' => 'structure', 'members' => [ 'Alias' => [ 'shape' => 'Alias', ], ], ], 'CreateBuildInput' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'Version' => [ 'shape' => 'NonZeroAndMaxString', ], 'StorageLocation' => [ 'shape' => 'S3Location', ], 'OperatingSystem' => [ 'shape' => 'OperatingSystem', ], ], ], 'CreateBuildOutput' => [ 'type' => 'structure', 'members' => [ 'Build' => [ 'shape' => 'Build', ], 'UploadCredentials' => [ 'shape' => 'AwsCredentials', ], 'StorageLocation' => [ 'shape' => 'S3Location', ], ], ], 'CreateFleetInput' => [ 'type' => 'structure', 'required' => [ 'Name', 'BuildId', 'EC2InstanceType', ], 'members' => [ 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'Description' => [ 'shape' => 'NonZeroAndMaxString', ], 'BuildId' => [ 'shape' => 'BuildId', ], 'ServerLaunchPath' => [ 'shape' => 'NonZeroAndMaxString', ], 'ServerLaunchParameters' => [ 'shape' => 'NonZeroAndMaxString', ], 'LogPaths' => [ 'shape' => 'StringList', ], 'EC2InstanceType' => [ 'shape' => 'EC2InstanceType', ], 'EC2InboundPermissions' => [ 'shape' => 'IpPermissionsList', ], 'NewGameSessionProtectionPolicy' => [ 'shape' => 'ProtectionPolicy', ], 'RuntimeConfiguration' => [ 'shape' => 'RuntimeConfiguration', ], 'ResourceCreationLimitPolicy' => [ 'shape' => 'ResourceCreationLimitPolicy', ], ], ], 'CreateFleetOutput' => [ 'type' => 'structure', 'members' => [ 'FleetAttributes' => [ 'shape' => 'FleetAttributes', ], ], ], 'CreateGameSessionInput' => [ 'type' => 'structure', 'required' => [ 'MaximumPlayerSessionCount', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'AliasId' => [ 'shape' => 'AliasId', ], 'MaximumPlayerSessionCount' => [ 'shape' => 'WholeNumber', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'GameProperties' => [ 'shape' => 'GamePropertyList', ], 'CreatorId' => [ 'shape' => 'NonZeroAndMaxString', ], 'GameSessionId' => [ 'shape' => 'IdStringModel', ], ], ], 'CreateGameSessionOutput' => [ 'type' => 'structure', 'members' => [ 'GameSession' => [ 'shape' => 'GameSession', ], ], ], 'CreatePlayerSessionInput' => [ 'type' => 'structure', 'required' => [ 'GameSessionId', 'PlayerId', ], 'members' => [ 'GameSessionId' => [ 'shape' => 'ArnStringModel', ], 'PlayerId' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'CreatePlayerSessionOutput' => [ 'type' => 'structure', 'members' => [ 'PlayerSession' => [ 'shape' => 'PlayerSession', ], ], ], 'CreatePlayerSessionsInput' => [ 'type' => 'structure', 'required' => [ 'GameSessionId', 'PlayerIds', ], 'members' => [ 'GameSessionId' => [ 'shape' => 'ArnStringModel', ], 'PlayerIds' => [ 'shape' => 'PlayerIdList', ], ], ], 'CreatePlayerSessionsOutput' => [ 'type' => 'structure', 'members' => [ 'PlayerSessions' => [ 'shape' => 'PlayerSessionList', ], ], ], 'DeleteAliasInput' => [ 'type' => 'structure', 'required' => [ 'AliasId', ], 'members' => [ 'AliasId' => [ 'shape' => 'AliasId', ], ], ], 'DeleteBuildInput' => [ 'type' => 'structure', 'required' => [ 'BuildId', ], 'members' => [ 'BuildId' => [ 'shape' => 'BuildId', ], ], ], 'DeleteFleetInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'DeleteScalingPolicyInput' => [ 'type' => 'structure', 'required' => [ 'Name', 'FleetId', ], 'members' => [ 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'DescribeAliasInput' => [ 'type' => 'structure', 'required' => [ 'AliasId', ], 'members' => [ 'AliasId' => [ 'shape' => 'AliasId', ], ], ], 'DescribeAliasOutput' => [ 'type' => 'structure', 'members' => [ 'Alias' => [ 'shape' => 'Alias', ], ], ], 'DescribeBuildInput' => [ 'type' => 'structure', 'required' => [ 'BuildId', ], 'members' => [ 'BuildId' => [ 'shape' => 'BuildId', ], ], ], 'DescribeBuildOutput' => [ 'type' => 'structure', 'members' => [ 'Build' => [ 'shape' => 'Build', ], ], ], 'DescribeEC2InstanceLimitsInput' => [ 'type' => 'structure', 'members' => [ 'EC2InstanceType' => [ 'shape' => 'EC2InstanceType', ], ], ], 'DescribeEC2InstanceLimitsOutput' => [ 'type' => 'structure', 'members' => [ 'EC2InstanceLimits' => [ 'shape' => 'EC2InstanceLimitList', ], ], ], 'DescribeFleetAttributesInput' => [ 'type' => 'structure', 'members' => [ 'FleetIds' => [ 'shape' => 'FleetIdList', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetAttributesOutput' => [ 'type' => 'structure', 'members' => [ 'FleetAttributes' => [ 'shape' => 'FleetAttributesList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetCapacityInput' => [ 'type' => 'structure', 'members' => [ 'FleetIds' => [ 'shape' => 'FleetIdList', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetCapacityOutput' => [ 'type' => 'structure', 'members' => [ 'FleetCapacity' => [ 'shape' => 'FleetCapacityList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetEventsInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'StartTime' => [ 'shape' => 'Timestamp', ], 'EndTime' => [ 'shape' => 'Timestamp', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetEventsOutput' => [ 'type' => 'structure', 'members' => [ 'Events' => [ 'shape' => 'EventList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetPortSettingsInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'DescribeFleetPortSettingsOutput' => [ 'type' => 'structure', 'members' => [ 'InboundPermissions' => [ 'shape' => 'IpPermissionsList', ], ], ], 'DescribeFleetUtilizationInput' => [ 'type' => 'structure', 'members' => [ 'FleetIds' => [ 'shape' => 'FleetIdList', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeFleetUtilizationOutput' => [ 'type' => 'structure', 'members' => [ 'FleetUtilization' => [ 'shape' => 'FleetUtilizationList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeGameSessionDetailsInput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'GameSessionId' => [ 'shape' => 'ArnStringModel', ], 'AliasId' => [ 'shape' => 'AliasId', ], 'StatusFilter' => [ 'shape' => 'NonZeroAndMaxString', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeGameSessionDetailsOutput' => [ 'type' => 'structure', 'members' => [ 'GameSessionDetails' => [ 'shape' => 'GameSessionDetailList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeGameSessionsInput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'GameSessionId' => [ 'shape' => 'ArnStringModel', ], 'AliasId' => [ 'shape' => 'AliasId', ], 'StatusFilter' => [ 'shape' => 'NonZeroAndMaxString', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeGameSessionsOutput' => [ 'type' => 'structure', 'members' => [ 'GameSessions' => [ 'shape' => 'GameSessionList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeInstancesInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeInstancesOutput' => [ 'type' => 'structure', 'members' => [ 'Instances' => [ 'shape' => 'InstanceList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribePlayerSessionsInput' => [ 'type' => 'structure', 'members' => [ 'GameSessionId' => [ 'shape' => 'ArnStringModel', ], 'PlayerId' => [ 'shape' => 'NonZeroAndMaxString', ], 'PlayerSessionId' => [ 'shape' => 'PlayerSessionId', ], 'PlayerSessionStatusFilter' => [ 'shape' => 'NonZeroAndMaxString', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribePlayerSessionsOutput' => [ 'type' => 'structure', 'members' => [ 'PlayerSessions' => [ 'shape' => 'PlayerSessionList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeRuntimeConfigurationInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'DescribeRuntimeConfigurationOutput' => [ 'type' => 'structure', 'members' => [ 'RuntimeConfiguration' => [ 'shape' => 'RuntimeConfiguration', ], ], ], 'DescribeScalingPoliciesInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'StatusFilter' => [ 'shape' => 'ScalingStatusType', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'DescribeScalingPoliciesOutput' => [ 'type' => 'structure', 'members' => [ 'ScalingPolicies' => [ 'shape' => 'ScalingPolicyList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'Double' => [ 'type' => 'double', ], 'EC2InstanceCounts' => [ 'type' => 'structure', 'members' => [ 'DESIRED' => [ 'shape' => 'WholeNumber', ], 'MINIMUM' => [ 'shape' => 'WholeNumber', ], 'MAXIMUM' => [ 'shape' => 'WholeNumber', ], 'PENDING' => [ 'shape' => 'WholeNumber', ], 'ACTIVE' => [ 'shape' => 'WholeNumber', ], 'IDLE' => [ 'shape' => 'WholeNumber', ], 'TERMINATING' => [ 'shape' => 'WholeNumber', ], ], ], 'EC2InstanceLimit' => [ 'type' => 'structure', 'members' => [ 'EC2InstanceType' => [ 'shape' => 'EC2InstanceType', ], 'CurrentInstances' => [ 'shape' => 'WholeNumber', ], 'InstanceLimit' => [ 'shape' => 'WholeNumber', ], ], ], 'EC2InstanceLimitList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EC2InstanceLimit', ], ], 'EC2InstanceType' => [ 'type' => 'string', 'enum' => [ 't2.micro', 't2.small', 't2.medium', 't2.large', 'c3.large', 'c3.xlarge', 'c3.2xlarge', 'c3.4xlarge', 'c3.8xlarge', 'c4.large', 'c4.xlarge', 'c4.2xlarge', 'c4.4xlarge', 'c4.8xlarge', 'r3.large', 'r3.xlarge', 'r3.2xlarge', 'r3.4xlarge', 'r3.8xlarge', 'm3.medium', 'm3.large', 'm3.xlarge', 'm3.2xlarge', 'm4.large', 'm4.xlarge', 'm4.2xlarge', 'm4.4xlarge', 'm4.10xlarge', ], ], 'Event' => [ 'type' => 'structure', 'members' => [ 'EventId' => [ 'shape' => 'NonZeroAndMaxString', ], 'ResourceId' => [ 'shape' => 'NonZeroAndMaxString', ], 'EventCode' => [ 'shape' => 'EventCode', ], 'Message' => [ 'shape' => 'NonEmptyString', ], 'EventTime' => [ 'shape' => 'Timestamp', ], ], ], 'EventCode' => [ 'type' => 'string', 'enum' => [ 'GENERIC_EVENT', 'FLEET_CREATED', 'FLEET_DELETED', 'FLEET_SCALING_EVENT', 'FLEET_STATE_DOWNLOADING', 'FLEET_STATE_VALIDATING', 'FLEET_STATE_BUILDING', 'FLEET_STATE_ACTIVATING', 'FLEET_STATE_ACTIVE', 'FLEET_STATE_ERROR', 'FLEET_INITIALIZATION_FAILED', 'FLEET_BINARY_DOWNLOAD_FAILED', 'FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND', 'FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE', 'FLEET_VALIDATION_TIMED_OUT', 'FLEET_ACTIVATION_FAILED', 'FLEET_ACTIVATION_FAILED_NO_INSTANCES', 'FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED', ], ], 'EventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Event', ], ], 'FleetAttributes' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'Description' => [ 'shape' => 'NonZeroAndMaxString', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'CreationTime' => [ 'shape' => 'Timestamp', ], 'TerminationTime' => [ 'shape' => 'Timestamp', ], 'Status' => [ 'shape' => 'FleetStatus', ], 'BuildId' => [ 'shape' => 'BuildId', ], 'ServerLaunchPath' => [ 'shape' => 'NonZeroAndMaxString', ], 'ServerLaunchParameters' => [ 'shape' => 'NonZeroAndMaxString', ], 'LogPaths' => [ 'shape' => 'StringList', ], 'NewGameSessionProtectionPolicy' => [ 'shape' => 'ProtectionPolicy', ], 'OperatingSystem' => [ 'shape' => 'OperatingSystem', ], 'ResourceCreationLimitPolicy' => [ 'shape' => 'ResourceCreationLimitPolicy', ], ], ], 'FleetAttributesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetAttributes', ], ], 'FleetCapacity' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'InstanceType' => [ 'shape' => 'EC2InstanceType', ], 'InstanceCounts' => [ 'shape' => 'EC2InstanceCounts', ], ], ], 'FleetCapacityExceededException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'FleetCapacityList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetCapacity', ], ], 'FleetId' => [ 'type' => 'string', 'pattern' => '^fleet-\\S+', ], 'FleetIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetId', ], 'min' => 1, ], 'FleetStatus' => [ 'type' => 'string', 'enum' => [ 'NEW', 'DOWNLOADING', 'VALIDATING', 'BUILDING', 'ACTIVATING', 'ACTIVE', 'DELETING', 'ERROR', 'TERMINATED', ], ], 'FleetUtilization' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'ActiveServerProcessCount' => [ 'shape' => 'WholeNumber', ], 'ActiveGameSessionCount' => [ 'shape' => 'WholeNumber', ], 'CurrentPlayerSessionCount' => [ 'shape' => 'WholeNumber', ], 'MaximumPlayerSessionCount' => [ 'shape' => 'WholeNumber', ], ], ], 'FleetUtilizationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FleetUtilization', ], ], 'FreeText' => [ 'type' => 'string', ], 'GameProperty' => [ 'type' => 'structure', 'required' => [ 'Key', 'Value', ], 'members' => [ 'Key' => [ 'shape' => 'GamePropertyKey', ], 'Value' => [ 'shape' => 'GamePropertyValue', ], ], ], 'GamePropertyKey' => [ 'type' => 'string', 'max' => 32, ], 'GamePropertyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GameProperty', ], 'max' => 16, ], 'GamePropertyValue' => [ 'type' => 'string', 'max' => 96, ], 'GameSession' => [ 'type' => 'structure', 'members' => [ 'GameSessionId' => [ 'shape' => 'NonZeroAndMaxString', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'CreationTime' => [ 'shape' => 'Timestamp', ], 'TerminationTime' => [ 'shape' => 'Timestamp', ], 'CurrentPlayerSessionCount' => [ 'shape' => 'WholeNumber', ], 'MaximumPlayerSessionCount' => [ 'shape' => 'WholeNumber', ], 'Status' => [ 'shape' => 'GameSessionStatus', ], 'GameProperties' => [ 'shape' => 'GamePropertyList', ], 'IpAddress' => [ 'shape' => 'IpAddress', ], 'Port' => [ 'shape' => 'PortNumber', ], 'PlayerSessionCreationPolicy' => [ 'shape' => 'PlayerSessionCreationPolicy', ], 'CreatorId' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'GameSessionDetail' => [ 'type' => 'structure', 'members' => [ 'GameSession' => [ 'shape' => 'GameSession', ], 'ProtectionPolicy' => [ 'shape' => 'ProtectionPolicy', ], ], ], 'GameSessionDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GameSessionDetail', ], ], 'GameSessionFullException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'GameSessionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GameSession', ], ], 'GameSessionStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'ACTIVATING', 'TERMINATED', 'TERMINATING', 'ERROR', ], ], 'GetGameSessionLogUrlInput' => [ 'type' => 'structure', 'required' => [ 'GameSessionId', ], 'members' => [ 'GameSessionId' => [ 'shape' => 'ArnStringModel', ], ], ], 'GetGameSessionLogUrlOutput' => [ 'type' => 'structure', 'members' => [ 'PreSignedUrl' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'IdStringModel' => [ 'type' => 'string', 'max' => 48, 'min' => 1, 'pattern' => '[a-zA-Z0-9-]+', ], 'IdempotentParameterMismatchException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'Instance' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'InstanceId' => [ 'shape' => 'InstanceId', ], 'IpAddress' => [ 'shape' => 'IpAddress', ], 'OperatingSystem' => [ 'shape' => 'OperatingSystem', ], 'Type' => [ 'shape' => 'EC2InstanceType', ], 'Status' => [ 'shape' => 'InstanceStatus', ], 'CreationTime' => [ 'shape' => 'Timestamp', ], ], ], 'InstanceId' => [ 'type' => 'string', 'pattern' => '[a-zA-Z0-9\\.-]+', ], 'InstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Instance', ], ], 'InstanceStatus' => [ 'type' => 'string', 'enum' => [ 'PENDING', 'ACTIVE', 'TERMINATING', ], ], 'Integer' => [ 'type' => 'integer', ], 'InternalServiceException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, 'fault' => true, ], 'InvalidFleetStatusException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'InvalidGameSessionStatusException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'InvalidRequestException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'IpAddress' => [ 'type' => 'string', ], 'IpPermission' => [ 'type' => 'structure', 'required' => [ 'FromPort', 'ToPort', 'IpRange', 'Protocol', ], 'members' => [ 'FromPort' => [ 'shape' => 'PortNumber', ], 'ToPort' => [ 'shape' => 'PortNumber', ], 'IpRange' => [ 'shape' => 'NonBlankString', ], 'Protocol' => [ 'shape' => 'IpProtocol', ], ], ], 'IpPermissionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IpPermission', ], 'max' => 50, ], 'IpProtocol' => [ 'type' => 'string', 'enum' => [ 'TCP', 'UDP', ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'ListAliasesInput' => [ 'type' => 'structure', 'members' => [ 'RoutingStrategyType' => [ 'shape' => 'RoutingStrategyType', ], 'Name' => [ 'shape' => 'NonEmptyString', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonEmptyString', ], ], ], 'ListAliasesOutput' => [ 'type' => 'structure', 'members' => [ 'Aliases' => [ 'shape' => 'AliasList', ], 'NextToken' => [ 'shape' => 'NonEmptyString', ], ], ], 'ListBuildsInput' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'BuildStatus', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonEmptyString', ], ], ], 'ListBuildsOutput' => [ 'type' => 'structure', 'members' => [ 'Builds' => [ 'shape' => 'BuildList', ], 'NextToken' => [ 'shape' => 'NonEmptyString', ], ], ], 'ListFleetsInput' => [ 'type' => 'structure', 'members' => [ 'BuildId' => [ 'shape' => 'BuildId', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'ListFleetsOutput' => [ 'type' => 'structure', 'members' => [ 'FleetIds' => [ 'shape' => 'FleetIdList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'MetricName' => [ 'type' => 'string', 'enum' => [ 'ActivatingGameSessions', 'ActiveGameSessions', 'ActiveInstances', 'AvailablePlayerSessions', 'CurrentPlayerSessions', 'IdleInstances', ], ], 'NonBlankAndLengthConstraintString' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, 'pattern' => '.*\\S.*', ], 'NonBlankString' => [ 'type' => 'string', 'pattern' => '[^\\s]+', ], 'NonEmptyString' => [ 'type' => 'string', 'min' => 1, ], 'NonZeroAndMaxString' => [ 'type' => 'string', 'max' => 1024, 'min' => 1, ], 'NotFoundException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'OperatingSystem' => [ 'type' => 'string', 'enum' => [ 'WINDOWS_2012', 'AMAZON_LINUX', ], ], 'PlayerIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NonZeroAndMaxString', ], 'max' => 25, 'min' => 1, ], 'PlayerSession' => [ 'type' => 'structure', 'members' => [ 'PlayerSessionId' => [ 'shape' => 'PlayerSessionId', ], 'PlayerId' => [ 'shape' => 'NonZeroAndMaxString', ], 'GameSessionId' => [ 'shape' => 'NonZeroAndMaxString', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'CreationTime' => [ 'shape' => 'Timestamp', ], 'TerminationTime' => [ 'shape' => 'Timestamp', ], 'Status' => [ 'shape' => 'PlayerSessionStatus', ], 'IpAddress' => [ 'shape' => 'IpAddress', ], 'Port' => [ 'shape' => 'PortNumber', ], ], ], 'PlayerSessionCreationPolicy' => [ 'type' => 'string', 'enum' => [ 'ACCEPT_ALL', 'DENY_ALL', ], ], 'PlayerSessionId' => [ 'type' => 'string', 'pattern' => '^psess-\\S+', ], 'PlayerSessionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PlayerSession', ], ], 'PlayerSessionStatus' => [ 'type' => 'string', 'enum' => [ 'RESERVED', 'ACTIVE', 'COMPLETED', 'TIMEDOUT', ], ], 'PortNumber' => [ 'type' => 'integer', 'max' => 60000, 'min' => 1, ], 'PositiveInteger' => [ 'type' => 'integer', 'min' => 1, ], 'PositiveLong' => [ 'type' => 'long', 'min' => 1, ], 'ProtectionPolicy' => [ 'type' => 'string', 'enum' => [ 'NoProtection', 'FullProtection', ], ], 'PutScalingPolicyInput' => [ 'type' => 'structure', 'required' => [ 'Name', 'FleetId', 'ScalingAdjustment', 'ScalingAdjustmentType', 'Threshold', 'ComparisonOperator', 'EvaluationPeriods', 'MetricName', ], 'members' => [ 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'ScalingAdjustment' => [ 'shape' => 'Integer', ], 'ScalingAdjustmentType' => [ 'shape' => 'ScalingAdjustmentType', ], 'Threshold' => [ 'shape' => 'Double', ], 'ComparisonOperator' => [ 'shape' => 'ComparisonOperatorType', ], 'EvaluationPeriods' => [ 'shape' => 'PositiveInteger', ], 'MetricName' => [ 'shape' => 'MetricName', ], ], ], 'PutScalingPolicyOutput' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'RequestUploadCredentialsInput' => [ 'type' => 'structure', 'required' => [ 'BuildId', ], 'members' => [ 'BuildId' => [ 'shape' => 'BuildId', ], ], ], 'RequestUploadCredentialsOutput' => [ 'type' => 'structure', 'members' => [ 'UploadCredentials' => [ 'shape' => 'AwsCredentials', ], 'StorageLocation' => [ 'shape' => 'S3Location', ], ], ], 'ResolveAliasInput' => [ 'type' => 'structure', 'required' => [ 'AliasId', ], 'members' => [ 'AliasId' => [ 'shape' => 'AliasId', ], ], ], 'ResolveAliasOutput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'ResourceCreationLimitPolicy' => [ 'type' => 'structure', 'members' => [ 'NewGameSessionsPerCreator' => [ 'shape' => 'WholeNumber', ], 'PolicyPeriodInMinutes' => [ 'shape' => 'WholeNumber', ], ], ], 'RoutingStrategy' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'RoutingStrategyType', ], 'FleetId' => [ 'shape' => 'FleetId', ], 'Message' => [ 'shape' => 'FreeText', ], ], ], 'RoutingStrategyType' => [ 'type' => 'string', 'enum' => [ 'SIMPLE', 'TERMINAL', ], ], 'RuntimeConfiguration' => [ 'type' => 'structure', 'members' => [ 'ServerProcesses' => [ 'shape' => 'ServerProcessList', ], ], ], 'S3Location' => [ 'type' => 'structure', 'members' => [ 'Bucket' => [ 'shape' => 'NonEmptyString', ], 'Key' => [ 'shape' => 'NonEmptyString', ], 'RoleArn' => [ 'shape' => 'NonEmptyString', ], ], ], 'ScalingAdjustmentType' => [ 'type' => 'string', 'enum' => [ 'ChangeInCapacity', 'ExactCapacity', 'PercentChangeInCapacity', ], ], 'ScalingPolicy' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'Status' => [ 'shape' => 'ScalingStatusType', ], 'ScalingAdjustment' => [ 'shape' => 'Integer', ], 'ScalingAdjustmentType' => [ 'shape' => 'ScalingAdjustmentType', ], 'ComparisonOperator' => [ 'shape' => 'ComparisonOperatorType', ], 'Threshold' => [ 'shape' => 'Double', ], 'EvaluationPeriods' => [ 'shape' => 'PositiveInteger', ], 'MetricName' => [ 'shape' => 'MetricName', ], ], ], 'ScalingPolicyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ScalingPolicy', ], ], 'ScalingStatusType' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'UPDATE_REQUESTED', 'UPDATING', 'DELETE_REQUESTED', 'DELETING', 'DELETED', 'ERROR', ], ], 'SearchGameSessionsInput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'AliasId' => [ 'shape' => 'AliasId', ], 'FilterExpression' => [ 'shape' => 'NonZeroAndMaxString', ], 'SortExpression' => [ 'shape' => 'NonZeroAndMaxString', ], 'Limit' => [ 'shape' => 'PositiveInteger', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'SearchGameSessionsOutput' => [ 'type' => 'structure', 'members' => [ 'GameSessions' => [ 'shape' => 'GameSessionList', ], 'NextToken' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'ServerProcess' => [ 'type' => 'structure', 'required' => [ 'LaunchPath', 'ConcurrentExecutions', ], 'members' => [ 'LaunchPath' => [ 'shape' => 'NonZeroAndMaxString', ], 'Parameters' => [ 'shape' => 'NonZeroAndMaxString', ], 'ConcurrentExecutions' => [ 'shape' => 'PositiveInteger', ], ], ], 'ServerProcessList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServerProcess', ], 'max' => 50, 'min' => 1, ], 'StringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NonZeroAndMaxString', ], ], 'TerminalRoutingStrategyException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'Timestamp' => [ 'type' => 'timestamp', ], 'UnauthorizedException' => [ 'type' => 'structure', 'members' => [ 'Message' => [ 'shape' => 'NonEmptyString', ], ], 'exception' => true, ], 'UpdateAliasInput' => [ 'type' => 'structure', 'required' => [ 'AliasId', ], 'members' => [ 'AliasId' => [ 'shape' => 'AliasId', ], 'Name' => [ 'shape' => 'NonBlankAndLengthConstraintString', ], 'Description' => [ 'shape' => 'NonZeroAndMaxString', ], 'RoutingStrategy' => [ 'shape' => 'RoutingStrategy', ], ], ], 'UpdateAliasOutput' => [ 'type' => 'structure', 'members' => [ 'Alias' => [ 'shape' => 'Alias', ], ], ], 'UpdateBuildInput' => [ 'type' => 'structure', 'required' => [ 'BuildId', ], 'members' => [ 'BuildId' => [ 'shape' => 'BuildId', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'Version' => [ 'shape' => 'NonZeroAndMaxString', ], ], ], 'UpdateBuildOutput' => [ 'type' => 'structure', 'members' => [ 'Build' => [ 'shape' => 'Build', ], ], ], 'UpdateFleetAttributesInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'Description' => [ 'shape' => 'NonZeroAndMaxString', ], 'NewGameSessionProtectionPolicy' => [ 'shape' => 'ProtectionPolicy', ], 'ResourceCreationLimitPolicy' => [ 'shape' => 'ResourceCreationLimitPolicy', ], ], ], 'UpdateFleetAttributesOutput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'UpdateFleetCapacityInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'DesiredInstances' => [ 'shape' => 'WholeNumber', ], 'MinSize' => [ 'shape' => 'WholeNumber', ], 'MaxSize' => [ 'shape' => 'WholeNumber', ], ], ], 'UpdateFleetCapacityOutput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'UpdateFleetPortSettingsInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'InboundPermissionAuthorizations' => [ 'shape' => 'IpPermissionsList', ], 'InboundPermissionRevocations' => [ 'shape' => 'IpPermissionsList', ], ], ], 'UpdateFleetPortSettingsOutput' => [ 'type' => 'structure', 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], ], ], 'UpdateGameSessionInput' => [ 'type' => 'structure', 'required' => [ 'GameSessionId', ], 'members' => [ 'GameSessionId' => [ 'shape' => 'ArnStringModel', ], 'MaximumPlayerSessionCount' => [ 'shape' => 'WholeNumber', ], 'Name' => [ 'shape' => 'NonZeroAndMaxString', ], 'PlayerSessionCreationPolicy' => [ 'shape' => 'PlayerSessionCreationPolicy', ], 'ProtectionPolicy' => [ 'shape' => 'ProtectionPolicy', ], ], ], 'UpdateGameSessionOutput' => [ 'type' => 'structure', 'members' => [ 'GameSession' => [ 'shape' => 'GameSession', ], ], ], 'UpdateRuntimeConfigurationInput' => [ 'type' => 'structure', 'required' => [ 'FleetId', 'RuntimeConfiguration', ], 'members' => [ 'FleetId' => [ 'shape' => 'FleetId', ], 'RuntimeConfiguration' => [ 'shape' => 'RuntimeConfiguration', ], ], ], 'UpdateRuntimeConfigurationOutput' => [ 'type' => 'structure', 'members' => [ 'RuntimeConfiguration' => [ 'shape' => 'RuntimeConfiguration', ], ], ], 'WholeNumber' => [ 'type' => 'integer', 'min' => 0, ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/api-2.json.php index 107d2b58c..8d5667ba7 100644 --- a/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2015-05-28', 'endpointPrefix' => 'iot', 'serviceFullName' => 'AWS IoT', 'signatureVersion' => 'v4', 'signingName' => 'execute-api', 'protocol' => 'rest-json', ], 'operations' => [ 'AcceptCertificateTransfer' => [ 'name' => 'AcceptCertificateTransfer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/accept-certificate-transfer/{certificateId}', ], 'input' => [ 'shape' => 'AcceptCertificateTransferRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'TransferAlreadyCompletedException', 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'AttachPrincipalPolicy' => [ 'name' => 'AttachPrincipalPolicy', 'http' => [ 'method' => 'PUT', 'requestUri' => '/principal-policies/{policyName}', ], 'input' => [ 'shape' => 'AttachPrincipalPolicyRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'LimitExceededException', 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], ], ], 'AttachThingPrincipal' => [ 'name' => 'AttachThingPrincipal', 'http' => [ 'method' => 'PUT', 'requestUri' => '/things/{thingName}/principals', ], 'input' => [ 'shape' => 'AttachThingPrincipalRequest', ], 'output' => [ 'shape' => 'AttachThingPrincipalResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'CancelCertificateTransfer' => [ 'name' => 'CancelCertificateTransfer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/cancel-certificate-transfer/{certificateId}', ], 'input' => [ 'shape' => 'CancelCertificateTransferRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'TransferAlreadyCompletedException', 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'CreateCertificateFromCsr' => [ 'name' => 'CreateCertificateFromCsr', 'http' => [ 'method' => 'POST', 'requestUri' => '/certificates', ], 'input' => [ 'shape' => 'CreateCertificateFromCsrRequest', ], 'output' => [ 'shape' => 'CreateCertificateFromCsrResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'CreateKeysAndCertificate' => [ 'name' => 'CreateKeysAndCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/keys-and-certificate', ], 'input' => [ 'shape' => 'CreateKeysAndCertificateRequest', ], 'output' => [ 'shape' => 'CreateKeysAndCertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'CreatePolicy' => [ 'name' => 'CreatePolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/policies/{policyName}', ], 'input' => [ 'shape' => 'CreatePolicyRequest', ], 'output' => [ 'shape' => 'CreatePolicyResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'MalformedPolicyException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'CreatePolicyVersion' => [ 'name' => 'CreatePolicyVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/policies/{policyName}/version', ], 'input' => [ 'shape' => 'CreatePolicyVersionRequest', ], 'output' => [ 'shape' => 'CreatePolicyVersionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'MalformedPolicyException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'VersionsLimitExceededException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'CreateThing' => [ 'name' => 'CreateThing', 'http' => [ 'method' => 'POST', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'CreateThingRequest', ], 'output' => [ 'shape' => 'CreateThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceAlreadyExistsException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'CreateThingType' => [ 'name' => 'CreateThingType', 'http' => [ 'method' => 'POST', 'requestUri' => '/thing-types/{thingTypeName}', ], 'input' => [ 'shape' => 'CreateThingTypeRequest', ], 'output' => [ 'shape' => 'CreateThingTypeResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceAlreadyExistsException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], ], ], 'CreateTopicRule' => [ 'name' => 'CreateTopicRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'CreateTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'SqlParseException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ResourceAlreadyExistsException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], ], ], 'DeleteCACertificate' => [ 'name' => 'DeleteCACertificate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/cacertificate/{caCertificateId}', ], 'input' => [ 'shape' => 'DeleteCACertificateRequest', ], 'output' => [ 'shape' => 'DeleteCACertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'CertificateStateException', 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'DeleteCertificate' => [ 'name' => 'DeleteCertificate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/certificates/{certificateId}', ], 'input' => [ 'shape' => 'DeleteCertificateRequest', ], 'errors' => [ [ 'shape' => 'CertificateStateException', 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], [ 'shape' => 'DeleteConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'DeletePolicy' => [ 'name' => 'DeletePolicy', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/policies/{policyName}', ], 'input' => [ 'shape' => 'DeletePolicyRequest', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DeletePolicyVersion' => [ 'name' => 'DeletePolicyVersion', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/policies/{policyName}/version/{policyVersionId}', ], 'input' => [ 'shape' => 'DeletePolicyVersionRequest', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DeleteRegistrationCode' => [ 'name' => 'DeleteRegistrationCode', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/registrationcode', ], 'input' => [ 'shape' => 'DeleteRegistrationCodeRequest', ], 'output' => [ 'shape' => 'DeleteRegistrationCodeResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DeleteThing' => [ 'name' => 'DeleteThing', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'DeleteThingRequest', ], 'output' => [ 'shape' => 'DeleteThingResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'VersionConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DeleteThingType' => [ 'name' => 'DeleteThingType', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/thing-types/{thingTypeName}', ], 'input' => [ 'shape' => 'DeleteThingTypeRequest', ], 'output' => [ 'shape' => 'DeleteThingTypeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DeleteTopicRule' => [ 'name' => 'DeleteTopicRule', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'DeleteTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], ], ], 'DeprecateThingType' => [ 'name' => 'DeprecateThingType', 'http' => [ 'method' => 'POST', 'requestUri' => '/thing-types/{thingTypeName}/deprecate', ], 'input' => [ 'shape' => 'DeprecateThingTypeRequest', ], 'output' => [ 'shape' => 'DeprecateThingTypeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DescribeCACertificate' => [ 'name' => 'DescribeCACertificate', 'http' => [ 'method' => 'GET', 'requestUri' => '/cacertificate/{caCertificateId}', ], 'input' => [ 'shape' => 'DescribeCACertificateRequest', ], 'output' => [ 'shape' => 'DescribeCACertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'DescribeCertificate' => [ 'name' => 'DescribeCertificate', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates/{certificateId}', ], 'input' => [ 'shape' => 'DescribeCertificateRequest', ], 'output' => [ 'shape' => 'DescribeCertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'DescribeEndpoint' => [ 'name' => 'DescribeEndpoint', 'http' => [ 'method' => 'GET', 'requestUri' => '/endpoint', ], 'input' => [ 'shape' => 'DescribeEndpointRequest', ], 'output' => [ 'shape' => 'DescribeEndpointResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], ], ], 'DescribeThing' => [ 'name' => 'DescribeThing', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'DescribeThingRequest', ], 'output' => [ 'shape' => 'DescribeThingResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DescribeThingType' => [ 'name' => 'DescribeThingType', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-types/{thingTypeName}', ], 'input' => [ 'shape' => 'DescribeThingTypeRequest', ], 'output' => [ 'shape' => 'DescribeThingTypeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DetachPrincipalPolicy' => [ 'name' => 'DetachPrincipalPolicy', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/principal-policies/{policyName}', ], 'input' => [ 'shape' => 'DetachPrincipalPolicyRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DetachThingPrincipal' => [ 'name' => 'DetachThingPrincipal', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/things/{thingName}/principals', ], 'input' => [ 'shape' => 'DetachThingPrincipalRequest', ], 'output' => [ 'shape' => 'DetachThingPrincipalResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DisableTopicRule' => [ 'name' => 'DisableTopicRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/rules/{ruleName}/disable', ], 'input' => [ 'shape' => 'DisableTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], ], ], 'EnableTopicRule' => [ 'name' => 'EnableTopicRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/rules/{ruleName}/enable', ], 'input' => [ 'shape' => 'EnableTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], ], ], 'GetLoggingOptions' => [ 'name' => 'GetLoggingOptions', 'http' => [ 'method' => 'GET', 'requestUri' => '/loggingOptions', ], 'input' => [ 'shape' => 'GetLoggingOptionsRequest', ], 'output' => [ 'shape' => 'GetLoggingOptionsResponse', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], ], ], 'GetPolicy' => [ 'name' => 'GetPolicy', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies/{policyName}', ], 'input' => [ 'shape' => 'GetPolicyRequest', ], 'output' => [ 'shape' => 'GetPolicyResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'GetPolicyVersion' => [ 'name' => 'GetPolicyVersion', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies/{policyName}/version/{policyVersionId}', ], 'input' => [ 'shape' => 'GetPolicyVersionRequest', ], 'output' => [ 'shape' => 'GetPolicyVersionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'GetRegistrationCode' => [ 'name' => 'GetRegistrationCode', 'http' => [ 'method' => 'GET', 'requestUri' => '/registrationcode', ], 'input' => [ 'shape' => 'GetRegistrationCodeRequest', ], 'output' => [ 'shape' => 'GetRegistrationCodeResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], ], ], 'GetTopicRule' => [ 'name' => 'GetTopicRule', 'http' => [ 'method' => 'GET', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'GetTopicRuleRequest', ], 'output' => [ 'shape' => 'GetTopicRuleResponse', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], ], ], 'ListCACertificates' => [ 'name' => 'ListCACertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/cacertificates', ], 'input' => [ 'shape' => 'ListCACertificatesRequest', ], 'output' => [ 'shape' => 'ListCACertificatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListCertificates' => [ 'name' => 'ListCertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates', ], 'input' => [ 'shape' => 'ListCertificatesRequest', ], 'output' => [ 'shape' => 'ListCertificatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListCertificatesByCA' => [ 'name' => 'ListCertificatesByCA', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates-by-ca/{caCertificateId}', ], 'input' => [ 'shape' => 'ListCertificatesByCARequest', ], 'output' => [ 'shape' => 'ListCertificatesByCAResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListOutgoingCertificates' => [ 'name' => 'ListOutgoingCertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates-out-going', ], 'input' => [ 'shape' => 'ListOutgoingCertificatesRequest', ], 'output' => [ 'shape' => 'ListOutgoingCertificatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListPolicies' => [ 'name' => 'ListPolicies', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies', ], 'input' => [ 'shape' => 'ListPoliciesRequest', ], 'output' => [ 'shape' => 'ListPoliciesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListPolicyPrincipals' => [ 'name' => 'ListPolicyPrincipals', 'http' => [ 'method' => 'GET', 'requestUri' => '/policy-principals', ], 'input' => [ 'shape' => 'ListPolicyPrincipalsRequest', ], 'output' => [ 'shape' => 'ListPolicyPrincipalsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListPolicyVersions' => [ 'name' => 'ListPolicyVersions', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies/{policyName}/version', ], 'input' => [ 'shape' => 'ListPolicyVersionsRequest', ], 'output' => [ 'shape' => 'ListPolicyVersionsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListPrincipalPolicies' => [ 'name' => 'ListPrincipalPolicies', 'http' => [ 'method' => 'GET', 'requestUri' => '/principal-policies', ], 'input' => [ 'shape' => 'ListPrincipalPoliciesRequest', ], 'output' => [ 'shape' => 'ListPrincipalPoliciesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListPrincipalThings' => [ 'name' => 'ListPrincipalThings', 'http' => [ 'method' => 'GET', 'requestUri' => '/principals/things', ], 'input' => [ 'shape' => 'ListPrincipalThingsRequest', ], 'output' => [ 'shape' => 'ListPrincipalThingsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'ListThingPrincipals' => [ 'name' => 'ListThingPrincipals', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}/principals', ], 'input' => [ 'shape' => 'ListThingPrincipalsRequest', ], 'output' => [ 'shape' => 'ListThingPrincipalsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'ListThingTypes' => [ 'name' => 'ListThingTypes', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-types', ], 'input' => [ 'shape' => 'ListThingTypesRequest', ], 'output' => [ 'shape' => 'ListThingTypesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListThings' => [ 'name' => 'ListThings', 'http' => [ 'method' => 'GET', 'requestUri' => '/things', ], 'input' => [ 'shape' => 'ListThingsRequest', ], 'output' => [ 'shape' => 'ListThingsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListTopicRules' => [ 'name' => 'ListTopicRules', 'http' => [ 'method' => 'GET', 'requestUri' => '/rules', ], 'input' => [ 'shape' => 'ListTopicRulesRequest', ], 'output' => [ 'shape' => 'ListTopicRulesResponse', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], ], ], 'RegisterCACertificate' => [ 'name' => 'RegisterCACertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/cacertificate', ], 'input' => [ 'shape' => 'RegisterCACertificateRequest', ], 'output' => [ 'shape' => 'RegisterCACertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'RegistrationCodeValidationException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'CertificateValidationException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'LimitExceededException', 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'RegisterCertificate' => [ 'name' => 'RegisterCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/certificate/register', ], 'input' => [ 'shape' => 'RegisterCertificateRequest', ], 'output' => [ 'shape' => 'RegisterCertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'CertificateValidationException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'CertificateStateException', 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], [ 'shape' => 'CertificateConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'RejectCertificateTransfer' => [ 'name' => 'RejectCertificateTransfer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/reject-certificate-transfer/{certificateId}', ], 'input' => [ 'shape' => 'RejectCertificateTransferRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'TransferAlreadyCompletedException', 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ReplaceTopicRule' => [ 'name' => 'ReplaceTopicRule', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'ReplaceTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'SqlParseException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], ], ], 'SetDefaultPolicyVersion' => [ 'name' => 'SetDefaultPolicyVersion', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/policies/{policyName}/version/{policyVersionId}', ], 'input' => [ 'shape' => 'SetDefaultPolicyVersionRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'SetLoggingOptions' => [ 'name' => 'SetLoggingOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/loggingOptions', ], 'input' => [ 'shape' => 'SetLoggingOptionsRequest', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], ], ], 'TransferCertificate' => [ 'name' => 'TransferCertificate', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/transfer-certificate/{certificateId}', ], 'input' => [ 'shape' => 'TransferCertificateRequest', ], 'output' => [ 'shape' => 'TransferCertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'CertificateStateException', 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], [ 'shape' => 'TransferConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'UpdateCACertificate' => [ 'name' => 'UpdateCACertificate', 'http' => [ 'method' => 'PUT', 'requestUri' => '/cacertificate/{caCertificateId}', ], 'input' => [ 'shape' => 'UpdateCACertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'UpdateCertificate' => [ 'name' => 'UpdateCertificate', 'http' => [ 'method' => 'PUT', 'requestUri' => '/certificates/{certificateId}', ], 'input' => [ 'shape' => 'UpdateCertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'CertificateStateException', 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'UpdateThing' => [ 'name' => 'UpdateThing', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'UpdateThingRequest', ], 'output' => [ 'shape' => 'UpdateThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'VersionConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], ], 'shapes' => [ 'AcceptCertificateTransferRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], ], ], 'Action' => [ 'type' => 'structure', 'members' => [ 'dynamoDB' => [ 'shape' => 'DynamoDBAction', ], 'lambda' => [ 'shape' => 'LambdaAction', ], 'sns' => [ 'shape' => 'SnsAction', ], 'sqs' => [ 'shape' => 'SqsAction', ], 'kinesis' => [ 'shape' => 'KinesisAction', ], 'republish' => [ 'shape' => 'RepublishAction', ], 's3' => [ 'shape' => 'S3Action', ], 'firehose' => [ 'shape' => 'FirehoseAction', ], 'cloudwatchMetric' => [ 'shape' => 'CloudwatchMetricAction', ], 'cloudwatchAlarm' => [ 'shape' => 'CloudwatchAlarmAction', ], 'elasticsearch' => [ 'shape' => 'ElasticsearchAction', ], ], ], 'ActionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Action', ], 'min' => 0, 'max' => 10, ], 'AlarmName' => [ 'type' => 'string', ], 'AllowAutoRegistration' => [ 'type' => 'boolean', ], 'AscendingOrder' => [ 'type' => 'boolean', ], 'AttachPrincipalPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'principal', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-iot-principal', ], ], ], 'AttachThingPrincipalRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', 'principal', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-principal', ], ], ], 'AttachThingPrincipalResponse' => [ 'type' => 'structure', 'members' => [], ], 'AttributeName' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[a-zA-Z0-9_.,@/:#-]+', ], 'AttributePayload' => [ 'type' => 'structure', 'members' => [ 'attributes' => [ 'shape' => 'Attributes', ], 'merge' => [ 'shape' => 'Flag', ], ], ], 'AttributeValue' => [ 'type' => 'string', 'max' => 800, 'pattern' => '[a-zA-Z0-9_.,@/:#-]*', ], 'Attributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'AttributeName', ], 'value' => [ 'shape' => 'AttributeValue', ], ], 'AutoRegistrationStatus' => [ 'type' => 'string', 'enum' => [ 'ENABLE', 'DISABLE', ], ], 'AwsAccountId' => [ 'type' => 'string', 'pattern' => '[0-9]{12}', ], 'AwsArn' => [ 'type' => 'string', ], 'AwsIotSqlVersion' => [ 'type' => 'string', ], 'Boolean' => [ 'type' => 'boolean', ], 'BucketName' => [ 'type' => 'string', ], 'CACertificate' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CACertificateStatus', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'CACertificateDescription' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CACertificateStatus', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'ownedBy' => [ 'shape' => 'AwsAccountId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'autoRegistrationStatus' => [ 'shape' => 'AutoRegistrationStatus', ], ], ], 'CACertificateStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'INACTIVE', ], ], 'CACertificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'CACertificate', ], ], 'CancelCertificateTransferRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], ], ], 'Certificate' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CertificateStatus', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'CertificateArn' => [ 'type' => 'string', ], 'CertificateConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'CertificateDescription' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'caCertificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CertificateStatus', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'ownedBy' => [ 'shape' => 'AwsAccountId', ], 'previousOwnedBy' => [ 'shape' => 'AwsAccountId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'transferData' => [ 'shape' => 'TransferData', ], ], ], 'CertificateId' => [ 'type' => 'string', 'min' => 64, 'max' => 64, 'pattern' => '(0x)?[a-fA-F0-9]+', ], 'CertificatePem' => [ 'type' => 'string', 'min' => 1, 'max' => 65536, ], 'CertificateSigningRequest' => [ 'type' => 'string', 'min' => 1, ], 'CertificateStateException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], 'CertificateStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'INACTIVE', 'REVOKED', 'PENDING_TRANSFER', 'REGISTER_INACTIVE', 'PENDING_ACTIVATION', ], ], 'CertificateValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'Certificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'Certificate', ], ], 'ClientId' => [ 'type' => 'string', ], 'CloudwatchAlarmAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'alarmName', 'stateReason', 'stateValue', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'alarmName' => [ 'shape' => 'AlarmName', ], 'stateReason' => [ 'shape' => 'StateReason', ], 'stateValue' => [ 'shape' => 'StateValue', ], ], ], 'CloudwatchMetricAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'metricNamespace', 'metricName', 'metricValue', 'metricUnit', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'metricNamespace' => [ 'shape' => 'MetricNamespace', ], 'metricName' => [ 'shape' => 'MetricName', ], 'metricValue' => [ 'shape' => 'MetricValue', ], 'metricUnit' => [ 'shape' => 'MetricUnit', ], 'metricTimestamp' => [ 'shape' => 'MetricTimestamp', ], ], ], 'CreateCertificateFromCsrRequest' => [ 'type' => 'structure', 'required' => [ 'certificateSigningRequest', ], 'members' => [ 'certificateSigningRequest' => [ 'shape' => 'CertificateSigningRequest', ], 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], ], ], 'CreateCertificateFromCsrResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], ], ], 'CreateKeysAndCertificateRequest' => [ 'type' => 'structure', 'members' => [ 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], ], ], 'CreateKeysAndCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'keyPair' => [ 'shape' => 'KeyPair', ], ], ], 'CreatePolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyDocument', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], ], ], 'CreatePolicyResponse' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], ], ], 'CreatePolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyDocument', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'setAsDefault' => [ 'shape' => 'SetAsDefault', 'location' => 'querystring', 'locationName' => 'setAsDefault', ], ], ], 'CreatePolicyVersionResponse' => [ 'type' => 'structure', 'members' => [ 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], ], ], 'CreateThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributePayload' => [ 'shape' => 'AttributePayload', ], ], ], 'CreateThingResponse' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'ThingName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], ], ], 'CreateThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], 'thingTypeProperties' => [ 'shape' => 'ThingTypeProperties', ], ], ], 'CreateThingTypeResponse' => [ 'type' => 'structure', 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingTypeArn' => [ 'shape' => 'ThingTypeArn', ], ], ], 'CreateTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', 'topicRulePayload', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], 'topicRulePayload' => [ 'shape' => 'TopicRulePayload', ], ], 'payload' => 'topicRulePayload', ], 'CreatedAtDate' => [ 'type' => 'timestamp', ], 'CreationDate' => [ 'type' => 'timestamp', ], 'DateType' => [ 'type' => 'timestamp', ], 'DeleteCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], ], ], 'DeleteCACertificateResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], ], ], 'DeleteConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'DeletePolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], ], ], 'DeletePolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyVersionId', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', 'location' => 'uri', 'locationName' => 'policyVersionId', ], ], ], 'DeleteRegistrationCodeRequest' => [ 'type' => 'structure', 'members' => [], ], 'DeleteRegistrationCodeResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteThingResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], ], ], 'DeleteThingTypeResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteTopicRuleRequest' => [ 'type' => 'structure', 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], 'required' => [ 'ruleName', ], ], 'DeliveryStreamName' => [ 'type' => 'string', ], 'DeprecateThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], 'undoDeprecate' => [ 'shape' => 'UndoDeprecate', ], ], ], 'DeprecateThingTypeResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeprecationDate' => [ 'type' => 'timestamp', ], 'DescribeCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], ], ], 'DescribeCACertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateDescription' => [ 'shape' => 'CACertificateDescription', ], ], ], 'DescribeCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], ], ], 'DescribeCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateDescription' => [ 'shape' => 'CertificateDescription', ], ], ], 'DescribeEndpointRequest' => [ 'type' => 'structure', 'members' => [], ], 'DescribeEndpointResponse' => [ 'type' => 'structure', 'members' => [ 'endpointAddress' => [ 'shape' => 'EndpointAddress', ], ], ], 'DescribeThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], ], ], 'DescribeThingResponse' => [ 'type' => 'structure', 'members' => [ 'defaultClientId' => [ 'shape' => 'ClientId', ], 'thingName' => [ 'shape' => 'ThingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributes' => [ 'shape' => 'Attributes', ], 'version' => [ 'shape' => 'Version', ], ], ], 'DescribeThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], ], ], 'DescribeThingTypeResponse' => [ 'type' => 'structure', 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingTypeProperties' => [ 'shape' => 'ThingTypeProperties', ], 'thingTypeMetadata' => [ 'shape' => 'ThingTypeMetadata', ], ], ], 'Description' => [ 'type' => 'string', ], 'DetachPrincipalPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'principal', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-iot-principal', ], ], ], 'DetachThingPrincipalRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', 'principal', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-principal', ], ], ], 'DetachThingPrincipalResponse' => [ 'type' => 'structure', 'members' => [], ], 'DisableTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'DynamoDBAction' => [ 'type' => 'structure', 'required' => [ 'tableName', 'roleArn', 'hashKeyField', 'hashKeyValue', ], 'members' => [ 'tableName' => [ 'shape' => 'TableName', ], 'roleArn' => [ 'shape' => 'AwsArn', ], 'operation' => [ 'shape' => 'DynamoOperation', ], 'hashKeyField' => [ 'shape' => 'HashKeyField', ], 'hashKeyValue' => [ 'shape' => 'HashKeyValue', ], 'hashKeyType' => [ 'shape' => 'DynamoKeyType', ], 'rangeKeyField' => [ 'shape' => 'RangeKeyField', ], 'rangeKeyValue' => [ 'shape' => 'RangeKeyValue', ], 'rangeKeyType' => [ 'shape' => 'DynamoKeyType', ], 'payloadField' => [ 'shape' => 'PayloadField', ], ], ], 'DynamoKeyType' => [ 'type' => 'string', 'enum' => [ 'STRING', 'NUMBER', ], ], 'DynamoOperation' => [ 'type' => 'string', ], 'ElasticsearchAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'endpoint', 'index', 'type', 'id', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'endpoint' => [ 'shape' => 'ElasticsearchEndpoint', ], 'index' => [ 'shape' => 'ElasticsearchIndex', ], 'type' => [ 'shape' => 'ElasticsearchType', ], 'id' => [ 'shape' => 'ElasticsearchId', ], ], ], 'ElasticsearchEndpoint' => [ 'type' => 'string', 'pattern' => 'https?://.*', ], 'ElasticsearchId' => [ 'type' => 'string', ], 'ElasticsearchIndex' => [ 'type' => 'string', ], 'ElasticsearchType' => [ 'type' => 'string', ], 'EnableTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'EndpointAddress' => [ 'type' => 'string', ], 'FirehoseAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'deliveryStreamName', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'deliveryStreamName' => [ 'shape' => 'DeliveryStreamName', ], 'separator' => [ 'shape' => 'FirehoseSeparator', ], ], ], 'FirehoseSeparator' => [ 'type' => 'string', 'pattern' => '([\\n\\t])|(\\r\\n)|(,)', ], 'Flag' => [ 'type' => 'boolean', ], 'FunctionArn' => [ 'type' => 'string', ], 'GetLoggingOptionsRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetLoggingOptionsResponse' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'GetPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], ], ], 'GetPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'defaultVersionId' => [ 'shape' => 'PolicyVersionId', ], ], ], 'GetPolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyVersionId', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', 'location' => 'uri', 'locationName' => 'policyVersionId', ], ], ], 'GetPolicyVersionResponse' => [ 'type' => 'structure', 'members' => [ 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyName' => [ 'shape' => 'PolicyName', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], ], ], 'GetRegistrationCodeRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetRegistrationCodeResponse' => [ 'type' => 'structure', 'members' => [ 'registrationCode' => [ 'shape' => 'RegistrationCode', ], ], ], 'GetTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'GetTopicRuleResponse' => [ 'type' => 'structure', 'members' => [ 'ruleArn' => [ 'shape' => 'RuleArn', ], 'rule' => [ 'shape' => 'TopicRule', ], ], ], 'HashKeyField' => [ 'type' => 'string', ], 'HashKeyValue' => [ 'type' => 'string', ], 'InternalException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'InternalFailureException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'InvalidRequestException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'IsDefaultVersion' => [ 'type' => 'boolean', ], 'IsDisabled' => [ 'type' => 'boolean', ], 'Key' => [ 'type' => 'string', ], 'KeyPair' => [ 'type' => 'structure', 'members' => [ 'PublicKey' => [ 'shape' => 'PublicKey', ], 'PrivateKey' => [ 'shape' => 'PrivateKey', ], ], ], 'KinesisAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'streamName', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'streamName' => [ 'shape' => 'StreamName', ], 'partitionKey' => [ 'shape' => 'PartitionKey', ], ], ], 'LambdaAction' => [ 'type' => 'structure', 'required' => [ 'functionArn', ], 'members' => [ 'functionArn' => [ 'shape' => 'FunctionArn', ], ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], 'ListCACertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListCACertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'certificates' => [ 'shape' => 'CACertificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListCertificatesByCARequest' => [ 'type' => 'structure', 'required' => [ 'caCertificateId', ], 'members' => [ 'caCertificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListCertificatesByCAResponse' => [ 'type' => 'structure', 'members' => [ 'certificates' => [ 'shape' => 'Certificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListCertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListCertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'certificates' => [ 'shape' => 'Certificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListOutgoingCertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListOutgoingCertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'outgoingCertificates' => [ 'shape' => 'OutgoingCertificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPoliciesRequest' => [ 'type' => 'structure', 'members' => [ 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPolicyPrincipalsRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'header', 'locationName' => 'x-amzn-iot-policy', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListPolicyPrincipalsResponse' => [ 'type' => 'structure', 'members' => [ 'principals' => [ 'shape' => 'Principals', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPolicyVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], ], ], 'ListPolicyVersionsResponse' => [ 'type' => 'structure', 'members' => [ 'policyVersions' => [ 'shape' => 'PolicyVersions', ], ], ], 'ListPrincipalPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'principal', ], 'members' => [ 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-iot-principal', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListPrincipalPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPrincipalThingsRequest' => [ 'type' => 'structure', 'required' => [ 'principal', ], 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-principal', ], ], ], 'ListPrincipalThingsResponse' => [ 'type' => 'structure', 'members' => [ 'things' => [ 'shape' => 'ThingNameList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingPrincipalsRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], ], ], 'ListThingPrincipalsResponse' => [ 'type' => 'structure', 'members' => [ 'principals' => [ 'shape' => 'Principals', ], ], ], 'ListThingTypesRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'querystring', 'locationName' => 'thingTypeName', ], ], ], 'ListThingTypesResponse' => [ 'type' => 'structure', 'members' => [ 'thingTypes' => [ 'shape' => 'ThingTypeList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'attributeName' => [ 'shape' => 'AttributeName', 'location' => 'querystring', 'locationName' => 'attributeName', ], 'attributeValue' => [ 'shape' => 'AttributeValue', 'location' => 'querystring', 'locationName' => 'attributeValue', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'querystring', 'locationName' => 'thingTypeName', ], ], ], 'ListThingsResponse' => [ 'type' => 'structure', 'members' => [ 'things' => [ 'shape' => 'ThingAttributeList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListTopicRulesRequest' => [ 'type' => 'structure', 'members' => [ 'topic' => [ 'shape' => 'Topic', 'location' => 'querystring', 'locationName' => 'topic', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', 'location' => 'querystring', 'locationName' => 'ruleDisabled', ], ], ], 'ListTopicRulesResponse' => [ 'type' => 'structure', 'members' => [ 'rules' => [ 'shape' => 'TopicRuleList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'LogLevel' => [ 'type' => 'string', 'enum' => [ 'DEBUG', 'INFO', 'ERROR', 'WARN', 'DISABLED', ], ], 'LoggingOptionsPayload' => [ 'type' => 'structure', 'required' => [ 'roleArn', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'MalformedPolicyException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'Marker' => [ 'type' => 'string', ], 'MaxResults' => [ 'type' => 'integer', 'min' => 1, 'max' => 10000, ], 'Message' => [ 'type' => 'string', 'max' => 128, ], 'MessageFormat' => [ 'type' => 'string', 'enum' => [ 'RAW', 'JSON', ], ], 'MetricName' => [ 'type' => 'string', ], 'MetricNamespace' => [ 'type' => 'string', ], 'MetricTimestamp' => [ 'type' => 'string', ], 'MetricUnit' => [ 'type' => 'string', ], 'MetricValue' => [ 'type' => 'string', ], 'NextToken' => [ 'type' => 'string', ], 'OptionalVersion' => [ 'type' => 'long', ], 'OutgoingCertificate' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'transferredTo' => [ 'shape' => 'AwsAccountId', ], 'transferDate' => [ 'shape' => 'DateType', ], 'transferMessage' => [ 'shape' => 'Message', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'OutgoingCertificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'OutgoingCertificate', ], ], 'PageSize' => [ 'type' => 'integer', 'min' => 1, 'max' => 250, ], 'PartitionKey' => [ 'type' => 'string', ], 'PayloadField' => [ 'type' => 'string', ], 'Policies' => [ 'type' => 'list', 'member' => [ 'shape' => 'Policy', ], ], 'Policy' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], ], ], 'PolicyArn' => [ 'type' => 'string', ], 'PolicyDocument' => [ 'type' => 'string', ], 'PolicyName' => [ 'type' => 'string', 'min' => 1, 'max' => 128, 'pattern' => '[\\w+=,.@-]+', ], 'PolicyVersion' => [ 'type' => 'structure', 'members' => [ 'versionId' => [ 'shape' => 'PolicyVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], 'createDate' => [ 'shape' => 'DateType', ], ], ], 'PolicyVersionId' => [ 'type' => 'string', 'pattern' => '[0-9]+', ], 'PolicyVersions' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyVersion', ], ], 'Principal' => [ 'type' => 'string', ], 'PrincipalArn' => [ 'type' => 'string', ], 'Principals' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrincipalArn', ], ], 'PrivateKey' => [ 'type' => 'string', 'min' => 1, 'sensitive' => true, ], 'PublicKey' => [ 'type' => 'string', 'min' => 1, ], 'QueueUrl' => [ 'type' => 'string', ], 'RangeKeyField' => [ 'type' => 'string', ], 'RangeKeyValue' => [ 'type' => 'string', ], 'RegisterCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'caCertificate', 'verificationCertificate', ], 'members' => [ 'caCertificate' => [ 'shape' => 'CertificatePem', ], 'verificationCertificate' => [ 'shape' => 'CertificatePem', ], 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], 'allowAutoRegistration' => [ 'shape' => 'AllowAutoRegistration', 'location' => 'querystring', 'locationName' => 'allowAutoRegistration', ], ], ], 'RegisterCACertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], ], ], 'RegisterCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificatePem', ], 'members' => [ 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'caCertificatePem' => [ 'shape' => 'CertificatePem', ], 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], ], ], 'RegisterCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], ], ], 'RegistrationCode' => [ 'type' => 'string', 'min' => 64, 'max' => 64, 'pattern' => '(0x)?[a-fA-F0-9]+', ], 'RegistrationCodeValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'RejectCertificateTransferRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'rejectReason' => [ 'shape' => 'Message', ], ], ], 'RemoveThingType' => [ 'type' => 'boolean', ], 'ReplaceTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', 'topicRulePayload', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], 'topicRulePayload' => [ 'shape' => 'TopicRulePayload', ], ], 'payload' => 'topicRulePayload', ], 'RepublishAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'topic', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'topic' => [ 'shape' => 'TopicPattern', ], ], ], 'ResourceAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'RuleArn' => [ 'type' => 'string', ], 'RuleName' => [ 'type' => 'string', 'min' => 1, 'max' => 128, 'pattern' => '^[a-zA-Z0-9_]+$', ], 'S3Action' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'bucketName', 'key', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'bucketName' => [ 'shape' => 'BucketName', ], 'key' => [ 'shape' => 'Key', ], ], ], 'SQL' => [ 'type' => 'string', ], 'SearchableAttributes' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttributeName', ], ], 'ServiceUnavailableException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], 'SetAsActive' => [ 'type' => 'boolean', ], 'SetAsDefault' => [ 'type' => 'boolean', ], 'SetDefaultPolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyVersionId', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', 'location' => 'uri', 'locationName' => 'policyVersionId', ], ], ], 'SetLoggingOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'loggingOptionsPayload', ], 'members' => [ 'loggingOptionsPayload' => [ 'shape' => 'LoggingOptionsPayload', ], ], 'payload' => 'loggingOptionsPayload', ], 'SnsAction' => [ 'type' => 'structure', 'required' => [ 'targetArn', 'roleArn', ], 'members' => [ 'targetArn' => [ 'shape' => 'AwsArn', ], 'roleArn' => [ 'shape' => 'AwsArn', ], 'messageFormat' => [ 'shape' => 'MessageFormat', ], ], ], 'SqlParseException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'SqsAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'queueUrl', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'queueUrl' => [ 'shape' => 'QueueUrl', ], 'useBase64' => [ 'shape' => 'UseBase64', ], ], ], 'StateReason' => [ 'type' => 'string', ], 'StateValue' => [ 'type' => 'string', ], 'StreamName' => [ 'type' => 'string', ], 'TableName' => [ 'type' => 'string', ], 'ThingArn' => [ 'type' => 'string', ], 'ThingAttribute' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'ThingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributes' => [ 'shape' => 'Attributes', ], 'version' => [ 'shape' => 'Version', ], ], ], 'ThingAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingAttribute', ], ], 'ThingName' => [ 'type' => 'string', 'min' => 1, 'max' => 128, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'ThingNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingName', ], ], 'ThingTypeArn' => [ 'type' => 'string', ], 'ThingTypeDefinition' => [ 'type' => 'structure', 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingTypeProperties' => [ 'shape' => 'ThingTypeProperties', ], 'thingTypeMetadata' => [ 'shape' => 'ThingTypeMetadata', ], ], ], 'ThingTypeDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[\\p{Graph}\\x20]*', ], 'ThingTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingTypeDefinition', ], ], 'ThingTypeMetadata' => [ 'type' => 'structure', 'members' => [ 'deprecated' => [ 'shape' => 'Boolean', ], 'deprecationDate' => [ 'shape' => 'DeprecationDate', ], 'creationDate' => [ 'shape' => 'CreationDate', ], ], ], 'ThingTypeName' => [ 'type' => 'string', 'min' => 1, 'max' => 128, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'ThingTypeProperties' => [ 'type' => 'structure', 'members' => [ 'thingTypeDescription' => [ 'shape' => 'ThingTypeDescription', ], 'searchableAttributes' => [ 'shape' => 'SearchableAttributes', ], ], ], 'ThrottlingException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], 'Topic' => [ 'type' => 'string', ], 'TopicPattern' => [ 'type' => 'string', ], 'TopicRule' => [ 'type' => 'structure', 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', ], 'sql' => [ 'shape' => 'SQL', ], 'description' => [ 'shape' => 'Description', ], 'createdAt' => [ 'shape' => 'CreatedAtDate', ], 'actions' => [ 'shape' => 'ActionList', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', ], 'awsIotSqlVersion' => [ 'shape' => 'AwsIotSqlVersion', ], ], ], 'TopicRuleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TopicRuleListItem', ], ], 'TopicRuleListItem' => [ 'type' => 'structure', 'members' => [ 'ruleArn' => [ 'shape' => 'RuleArn', ], 'ruleName' => [ 'shape' => 'RuleName', ], 'topicPattern' => [ 'shape' => 'TopicPattern', ], 'createdAt' => [ 'shape' => 'CreatedAtDate', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', ], ], ], 'TopicRulePayload' => [ 'type' => 'structure', 'required' => [ 'sql', 'actions', ], 'members' => [ 'sql' => [ 'shape' => 'SQL', ], 'description' => [ 'shape' => 'Description', ], 'actions' => [ 'shape' => 'ActionList', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', ], 'awsIotSqlVersion' => [ 'shape' => 'AwsIotSqlVersion', ], ], ], 'TransferAlreadyCompletedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], 'TransferCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', 'targetAwsAccount', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'targetAwsAccount' => [ 'shape' => 'AwsAccountId', 'location' => 'querystring', 'locationName' => 'targetAwsAccount', ], 'transferMessage' => [ 'shape' => 'Message', ], ], ], 'TransferCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'transferredCertificateArn' => [ 'shape' => 'CertificateArn', ], ], ], 'TransferConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'TransferData' => [ 'type' => 'structure', 'members' => [ 'transferMessage' => [ 'shape' => 'Message', ], 'rejectReason' => [ 'shape' => 'Message', ], 'transferDate' => [ 'shape' => 'DateType', ], 'acceptDate' => [ 'shape' => 'DateType', ], 'rejectDate' => [ 'shape' => 'DateType', ], ], ], 'UnauthorizedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], 'UndoDeprecate' => [ 'type' => 'boolean', ], 'UpdateCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], 'newStatus' => [ 'shape' => 'CACertificateStatus', 'location' => 'querystring', 'locationName' => 'newStatus', ], 'newAutoRegistrationStatus' => [ 'shape' => 'AutoRegistrationStatus', 'location' => 'querystring', 'locationName' => 'newAutoRegistrationStatus', ], ], ], 'UpdateCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', 'newStatus', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'newStatus' => [ 'shape' => 'CertificateStatus', 'location' => 'querystring', 'locationName' => 'newStatus', ], ], ], 'UpdateThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributePayload' => [ 'shape' => 'AttributePayload', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', ], 'removeThingType' => [ 'shape' => 'RemoveThingType', ], ], ], 'UpdateThingResponse' => [ 'type' => 'structure', 'members' => [], ], 'UseBase64' => [ 'type' => 'boolean', ], 'Version' => [ 'type' => 'long', ], 'VersionConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'VersionsLimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'errorMessage' => [ 'type' => 'string', ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2015-05-28', 'endpointPrefix' => 'iot', 'serviceFullName' => 'AWS IoT', 'signatureVersion' => 'v4', 'signingName' => 'execute-api', 'protocol' => 'rest-json', ], 'operations' => [ 'AcceptCertificateTransfer' => [ 'name' => 'AcceptCertificateTransfer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/accept-certificate-transfer/{certificateId}', ], 'input' => [ 'shape' => 'AcceptCertificateTransferRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'TransferAlreadyCompletedException', 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'AttachPrincipalPolicy' => [ 'name' => 'AttachPrincipalPolicy', 'http' => [ 'method' => 'PUT', 'requestUri' => '/principal-policies/{policyName}', ], 'input' => [ 'shape' => 'AttachPrincipalPolicyRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'LimitExceededException', 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], ], ], 'AttachThingPrincipal' => [ 'name' => 'AttachThingPrincipal', 'http' => [ 'method' => 'PUT', 'requestUri' => '/things/{thingName}/principals', ], 'input' => [ 'shape' => 'AttachThingPrincipalRequest', ], 'output' => [ 'shape' => 'AttachThingPrincipalResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'CancelCertificateTransfer' => [ 'name' => 'CancelCertificateTransfer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/cancel-certificate-transfer/{certificateId}', ], 'input' => [ 'shape' => 'CancelCertificateTransferRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'TransferAlreadyCompletedException', 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'CreateCertificateFromCsr' => [ 'name' => 'CreateCertificateFromCsr', 'http' => [ 'method' => 'POST', 'requestUri' => '/certificates', ], 'input' => [ 'shape' => 'CreateCertificateFromCsrRequest', ], 'output' => [ 'shape' => 'CreateCertificateFromCsrResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'CreateKeysAndCertificate' => [ 'name' => 'CreateKeysAndCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/keys-and-certificate', ], 'input' => [ 'shape' => 'CreateKeysAndCertificateRequest', ], 'output' => [ 'shape' => 'CreateKeysAndCertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'CreatePolicy' => [ 'name' => 'CreatePolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/policies/{policyName}', ], 'input' => [ 'shape' => 'CreatePolicyRequest', ], 'output' => [ 'shape' => 'CreatePolicyResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'MalformedPolicyException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'CreatePolicyVersion' => [ 'name' => 'CreatePolicyVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/policies/{policyName}/version', ], 'input' => [ 'shape' => 'CreatePolicyVersionRequest', ], 'output' => [ 'shape' => 'CreatePolicyVersionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'MalformedPolicyException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'VersionsLimitExceededException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'CreateThing' => [ 'name' => 'CreateThing', 'http' => [ 'method' => 'POST', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'CreateThingRequest', ], 'output' => [ 'shape' => 'CreateThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceAlreadyExistsException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'CreateThingType' => [ 'name' => 'CreateThingType', 'http' => [ 'method' => 'POST', 'requestUri' => '/thing-types/{thingTypeName}', ], 'input' => [ 'shape' => 'CreateThingTypeRequest', ], 'output' => [ 'shape' => 'CreateThingTypeResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceAlreadyExistsException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], ], ], 'CreateTopicRule' => [ 'name' => 'CreateTopicRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'CreateTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'SqlParseException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ResourceAlreadyExistsException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], ], ], 'DeleteCACertificate' => [ 'name' => 'DeleteCACertificate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/cacertificate/{caCertificateId}', ], 'input' => [ 'shape' => 'DeleteCACertificateRequest', ], 'output' => [ 'shape' => 'DeleteCACertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'CertificateStateException', 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'DeleteCertificate' => [ 'name' => 'DeleteCertificate', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/certificates/{certificateId}', ], 'input' => [ 'shape' => 'DeleteCertificateRequest', ], 'errors' => [ [ 'shape' => 'CertificateStateException', 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], [ 'shape' => 'DeleteConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'DeletePolicy' => [ 'name' => 'DeletePolicy', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/policies/{policyName}', ], 'input' => [ 'shape' => 'DeletePolicyRequest', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DeletePolicyVersion' => [ 'name' => 'DeletePolicyVersion', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/policies/{policyName}/version/{policyVersionId}', ], 'input' => [ 'shape' => 'DeletePolicyVersionRequest', ], 'errors' => [ [ 'shape' => 'DeleteConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DeleteRegistrationCode' => [ 'name' => 'DeleteRegistrationCode', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/registrationcode', ], 'input' => [ 'shape' => 'DeleteRegistrationCodeRequest', ], 'output' => [ 'shape' => 'DeleteRegistrationCodeResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DeleteThing' => [ 'name' => 'DeleteThing', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'DeleteThingRequest', ], 'output' => [ 'shape' => 'DeleteThingResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'VersionConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DeleteThingType' => [ 'name' => 'DeleteThingType', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/thing-types/{thingTypeName}', ], 'input' => [ 'shape' => 'DeleteThingTypeRequest', ], 'output' => [ 'shape' => 'DeleteThingTypeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DeleteTopicRule' => [ 'name' => 'DeleteTopicRule', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'DeleteTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], ], ], 'DeprecateThingType' => [ 'name' => 'DeprecateThingType', 'http' => [ 'method' => 'POST', 'requestUri' => '/thing-types/{thingTypeName}/deprecate', ], 'input' => [ 'shape' => 'DeprecateThingTypeRequest', ], 'output' => [ 'shape' => 'DeprecateThingTypeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DescribeCACertificate' => [ 'name' => 'DescribeCACertificate', 'http' => [ 'method' => 'GET', 'requestUri' => '/cacertificate/{caCertificateId}', ], 'input' => [ 'shape' => 'DescribeCACertificateRequest', ], 'output' => [ 'shape' => 'DescribeCACertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'DescribeCertificate' => [ 'name' => 'DescribeCertificate', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates/{certificateId}', ], 'input' => [ 'shape' => 'DescribeCertificateRequest', ], 'output' => [ 'shape' => 'DescribeCertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'DescribeEndpoint' => [ 'name' => 'DescribeEndpoint', 'http' => [ 'method' => 'GET', 'requestUri' => '/endpoint', ], 'input' => [ 'shape' => 'DescribeEndpointRequest', ], 'output' => [ 'shape' => 'DescribeEndpointResponse', ], 'errors' => [ [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], ], ], 'DescribeThing' => [ 'name' => 'DescribeThing', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'DescribeThingRequest', ], 'output' => [ 'shape' => 'DescribeThingResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DescribeThingType' => [ 'name' => 'DescribeThingType', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-types/{thingTypeName}', ], 'input' => [ 'shape' => 'DescribeThingTypeRequest', ], 'output' => [ 'shape' => 'DescribeThingTypeResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DetachPrincipalPolicy' => [ 'name' => 'DetachPrincipalPolicy', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/principal-policies/{policyName}', ], 'input' => [ 'shape' => 'DetachPrincipalPolicyRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DetachThingPrincipal' => [ 'name' => 'DetachThingPrincipal', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/things/{thingName}/principals', ], 'input' => [ 'shape' => 'DetachThingPrincipalRequest', ], 'output' => [ 'shape' => 'DetachThingPrincipalResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'DisableTopicRule' => [ 'name' => 'DisableTopicRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/rules/{ruleName}/disable', ], 'input' => [ 'shape' => 'DisableTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], ], ], 'EnableTopicRule' => [ 'name' => 'EnableTopicRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/rules/{ruleName}/enable', ], 'input' => [ 'shape' => 'EnableTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], ], ], 'GetLoggingOptions' => [ 'name' => 'GetLoggingOptions', 'http' => [ 'method' => 'GET', 'requestUri' => '/loggingOptions', ], 'input' => [ 'shape' => 'GetLoggingOptionsRequest', ], 'output' => [ 'shape' => 'GetLoggingOptionsResponse', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], ], ], 'GetPolicy' => [ 'name' => 'GetPolicy', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies/{policyName}', ], 'input' => [ 'shape' => 'GetPolicyRequest', ], 'output' => [ 'shape' => 'GetPolicyResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'GetPolicyVersion' => [ 'name' => 'GetPolicyVersion', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies/{policyName}/version/{policyVersionId}', ], 'input' => [ 'shape' => 'GetPolicyVersionRequest', ], 'output' => [ 'shape' => 'GetPolicyVersionResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'GetRegistrationCode' => [ 'name' => 'GetRegistrationCode', 'http' => [ 'method' => 'GET', 'requestUri' => '/registrationcode', ], 'input' => [ 'shape' => 'GetRegistrationCodeRequest', ], 'output' => [ 'shape' => 'GetRegistrationCodeResponse', ], 'errors' => [ [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], ], ], 'GetTopicRule' => [ 'name' => 'GetTopicRule', 'http' => [ 'method' => 'GET', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'GetTopicRuleRequest', ], 'output' => [ 'shape' => 'GetTopicRuleResponse', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], ], ], 'ListCACertificates' => [ 'name' => 'ListCACertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/cacertificates', ], 'input' => [ 'shape' => 'ListCACertificatesRequest', ], 'output' => [ 'shape' => 'ListCACertificatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListCertificates' => [ 'name' => 'ListCertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates', ], 'input' => [ 'shape' => 'ListCertificatesRequest', ], 'output' => [ 'shape' => 'ListCertificatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListCertificatesByCA' => [ 'name' => 'ListCertificatesByCA', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates-by-ca/{caCertificateId}', ], 'input' => [ 'shape' => 'ListCertificatesByCARequest', ], 'output' => [ 'shape' => 'ListCertificatesByCAResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListOutgoingCertificates' => [ 'name' => 'ListOutgoingCertificates', 'http' => [ 'method' => 'GET', 'requestUri' => '/certificates-out-going', ], 'input' => [ 'shape' => 'ListOutgoingCertificatesRequest', ], 'output' => [ 'shape' => 'ListOutgoingCertificatesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListPolicies' => [ 'name' => 'ListPolicies', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies', ], 'input' => [ 'shape' => 'ListPoliciesRequest', ], 'output' => [ 'shape' => 'ListPoliciesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListPolicyPrincipals' => [ 'name' => 'ListPolicyPrincipals', 'http' => [ 'method' => 'GET', 'requestUri' => '/policy-principals', ], 'input' => [ 'shape' => 'ListPolicyPrincipalsRequest', ], 'output' => [ 'shape' => 'ListPolicyPrincipalsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListPolicyVersions' => [ 'name' => 'ListPolicyVersions', 'http' => [ 'method' => 'GET', 'requestUri' => '/policies/{policyName}/version', ], 'input' => [ 'shape' => 'ListPolicyVersionsRequest', ], 'output' => [ 'shape' => 'ListPolicyVersionsResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListPrincipalPolicies' => [ 'name' => 'ListPrincipalPolicies', 'http' => [ 'method' => 'GET', 'requestUri' => '/principal-policies', ], 'input' => [ 'shape' => 'ListPrincipalPoliciesRequest', ], 'output' => [ 'shape' => 'ListPrincipalPoliciesResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListPrincipalThings' => [ 'name' => 'ListPrincipalThings', 'http' => [ 'method' => 'GET', 'requestUri' => '/principals/things', ], 'input' => [ 'shape' => 'ListPrincipalThingsRequest', ], 'output' => [ 'shape' => 'ListPrincipalThingsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'ListThingPrincipals' => [ 'name' => 'ListThingPrincipals', 'http' => [ 'method' => 'GET', 'requestUri' => '/things/{thingName}/principals', ], 'input' => [ 'shape' => 'ListThingPrincipalsRequest', ], 'output' => [ 'shape' => 'ListThingPrincipalsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], 'ListThingTypes' => [ 'name' => 'ListThingTypes', 'http' => [ 'method' => 'GET', 'requestUri' => '/thing-types', ], 'input' => [ 'shape' => 'ListThingTypesRequest', ], 'output' => [ 'shape' => 'ListThingTypesResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListThings' => [ 'name' => 'ListThings', 'http' => [ 'method' => 'GET', 'requestUri' => '/things', ], 'input' => [ 'shape' => 'ListThingsRequest', ], 'output' => [ 'shape' => 'ListThingsResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ListTopicRules' => [ 'name' => 'ListTopicRules', 'http' => [ 'method' => 'GET', 'requestUri' => '/rules', ], 'input' => [ 'shape' => 'ListTopicRulesRequest', ], 'output' => [ 'shape' => 'ListTopicRulesResponse', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], ], ], 'RegisterCACertificate' => [ 'name' => 'RegisterCACertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/cacertificate', ], 'input' => [ 'shape' => 'RegisterCACertificateRequest', ], 'output' => [ 'shape' => 'RegisterCACertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'RegistrationCodeValidationException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'CertificateValidationException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'LimitExceededException', 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'RegisterCertificate' => [ 'name' => 'RegisterCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/certificate/register', ], 'input' => [ 'shape' => 'RegisterCertificateRequest', ], 'output' => [ 'shape' => 'RegisterCertificateResponse', ], 'errors' => [ [ 'shape' => 'ResourceAlreadyExistsException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'CertificateValidationException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'CertificateStateException', 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], [ 'shape' => 'CertificateConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'RejectCertificateTransfer' => [ 'name' => 'RejectCertificateTransfer', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/reject-certificate-transfer/{certificateId}', ], 'input' => [ 'shape' => 'RejectCertificateTransferRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'TransferAlreadyCompletedException', 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'ReplaceTopicRule' => [ 'name' => 'ReplaceTopicRule', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/rules/{ruleName}', ], 'input' => [ 'shape' => 'ReplaceTopicRuleRequest', ], 'errors' => [ [ 'shape' => 'SqlParseException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], ], ], 'SetDefaultPolicyVersion' => [ 'name' => 'SetDefaultPolicyVersion', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/policies/{policyName}/version/{policyVersionId}', ], 'input' => [ 'shape' => 'SetDefaultPolicyVersionRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'SetLoggingOptions' => [ 'name' => 'SetLoggingOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/loggingOptions', ], 'input' => [ 'shape' => 'SetLoggingOptionsRequest', ], 'errors' => [ [ 'shape' => 'InternalException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], ], ], 'TransferCertificate' => [ 'name' => 'TransferCertificate', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/transfer-certificate/{certificateId}', ], 'input' => [ 'shape' => 'TransferCertificateRequest', ], 'output' => [ 'shape' => 'TransferCertificateResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'CertificateStateException', 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], [ 'shape' => 'TransferConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'UpdateCACertificate' => [ 'name' => 'UpdateCACertificate', 'http' => [ 'method' => 'PUT', 'requestUri' => '/cacertificate/{caCertificateId}', ], 'input' => [ 'shape' => 'UpdateCACertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'UpdateCertificate' => [ 'name' => 'UpdateCertificate', 'http' => [ 'method' => 'PUT', 'requestUri' => '/certificates/{certificateId}', ], 'input' => [ 'shape' => 'UpdateCertificateRequest', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], [ 'shape' => 'CertificateStateException', 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], ], ], 'UpdateThing' => [ 'name' => 'UpdateThing', 'http' => [ 'method' => 'PATCH', 'requestUri' => '/things/{thingName}', ], 'input' => [ 'shape' => 'UpdateThingRequest', ], 'output' => [ 'shape' => 'UpdateThingResponse', ], 'errors' => [ [ 'shape' => 'InvalidRequestException', 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], [ 'shape' => 'VersionConflictException', 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], [ 'shape' => 'ThrottlingException', 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], [ 'shape' => 'UnauthorizedException', 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], [ 'shape' => 'ServiceUnavailableException', 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'InternalFailureException', 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], [ 'shape' => 'ResourceNotFoundException', 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], ], ], ], 'shapes' => [ 'AcceptCertificateTransferRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], ], ], 'Action' => [ 'type' => 'structure', 'members' => [ 'dynamoDB' => [ 'shape' => 'DynamoDBAction', ], 'dynamoDBv2' => [ 'shape' => 'DynamoDBv2Action', ], 'lambda' => [ 'shape' => 'LambdaAction', ], 'sns' => [ 'shape' => 'SnsAction', ], 'sqs' => [ 'shape' => 'SqsAction', ], 'kinesis' => [ 'shape' => 'KinesisAction', ], 'republish' => [ 'shape' => 'RepublishAction', ], 's3' => [ 'shape' => 'S3Action', ], 'firehose' => [ 'shape' => 'FirehoseAction', ], 'cloudwatchMetric' => [ 'shape' => 'CloudwatchMetricAction', ], 'cloudwatchAlarm' => [ 'shape' => 'CloudwatchAlarmAction', ], 'elasticsearch' => [ 'shape' => 'ElasticsearchAction', ], ], ], 'ActionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Action', ], 'min' => 0, 'max' => 10, ], 'AlarmName' => [ 'type' => 'string', ], 'AllowAutoRegistration' => [ 'type' => 'boolean', ], 'AscendingOrder' => [ 'type' => 'boolean', ], 'AttachPrincipalPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'principal', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-iot-principal', ], ], ], 'AttachThingPrincipalRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', 'principal', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-principal', ], ], ], 'AttachThingPrincipalResponse' => [ 'type' => 'structure', 'members' => [], ], 'AttributeName' => [ 'type' => 'string', 'max' => 128, 'pattern' => '[a-zA-Z0-9_.,@/:#-]+', ], 'AttributePayload' => [ 'type' => 'structure', 'members' => [ 'attributes' => [ 'shape' => 'Attributes', ], 'merge' => [ 'shape' => 'Flag', ], ], ], 'AttributeValue' => [ 'type' => 'string', 'max' => 800, 'pattern' => '[a-zA-Z0-9_.,@/:#-]*', ], 'Attributes' => [ 'type' => 'map', 'key' => [ 'shape' => 'AttributeName', ], 'value' => [ 'shape' => 'AttributeValue', ], ], 'AutoRegistrationStatus' => [ 'type' => 'string', 'enum' => [ 'ENABLE', 'DISABLE', ], ], 'AwsAccountId' => [ 'type' => 'string', 'pattern' => '[0-9]{12}', ], 'AwsArn' => [ 'type' => 'string', ], 'AwsIotSqlVersion' => [ 'type' => 'string', ], 'Boolean' => [ 'type' => 'boolean', ], 'BucketName' => [ 'type' => 'string', ], 'CACertificate' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CACertificateStatus', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'CACertificateDescription' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CACertificateStatus', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'ownedBy' => [ 'shape' => 'AwsAccountId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'autoRegistrationStatus' => [ 'shape' => 'AutoRegistrationStatus', ], ], ], 'CACertificateStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'INACTIVE', ], ], 'CACertificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'CACertificate', ], ], 'CancelCertificateTransferRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], ], ], 'CannedAccessControlList' => [ 'type' => 'string', 'enum' => [ 'private', 'public-read', 'public-read-write', 'aws-exec-read', 'authenticated-read', 'bucket-owner-read', 'bucket-owner-full-control', 'log-delivery-write', ], ], 'Certificate' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CertificateStatus', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'CertificateArn' => [ 'type' => 'string', ], 'CertificateConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'CertificateDescription' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'caCertificateId' => [ 'shape' => 'CertificateId', ], 'status' => [ 'shape' => 'CertificateStatus', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'ownedBy' => [ 'shape' => 'AwsAccountId', ], 'previousOwnedBy' => [ 'shape' => 'AwsAccountId', ], 'creationDate' => [ 'shape' => 'DateType', ], 'lastModifiedDate' => [ 'shape' => 'DateType', ], 'transferData' => [ 'shape' => 'TransferData', ], ], ], 'CertificateId' => [ 'type' => 'string', 'min' => 64, 'max' => 64, 'pattern' => '(0x)?[a-fA-F0-9]+', ], 'CertificatePem' => [ 'type' => 'string', 'min' => 1, 'max' => 65536, ], 'CertificateSigningRequest' => [ 'type' => 'string', 'min' => 1, ], 'CertificateStateException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 406, ], 'exception' => true, ], 'CertificateStatus' => [ 'type' => 'string', 'enum' => [ 'ACTIVE', 'INACTIVE', 'REVOKED', 'PENDING_TRANSFER', 'REGISTER_INACTIVE', 'PENDING_ACTIVATION', ], ], 'CertificateValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'Certificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'Certificate', ], ], 'ClientId' => [ 'type' => 'string', ], 'CloudwatchAlarmAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'alarmName', 'stateReason', 'stateValue', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'alarmName' => [ 'shape' => 'AlarmName', ], 'stateReason' => [ 'shape' => 'StateReason', ], 'stateValue' => [ 'shape' => 'StateValue', ], ], ], 'CloudwatchMetricAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'metricNamespace', 'metricName', 'metricValue', 'metricUnit', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'metricNamespace' => [ 'shape' => 'MetricNamespace', ], 'metricName' => [ 'shape' => 'MetricName', ], 'metricValue' => [ 'shape' => 'MetricValue', ], 'metricUnit' => [ 'shape' => 'MetricUnit', ], 'metricTimestamp' => [ 'shape' => 'MetricTimestamp', ], ], ], 'CreateCertificateFromCsrRequest' => [ 'type' => 'structure', 'required' => [ 'certificateSigningRequest', ], 'members' => [ 'certificateSigningRequest' => [ 'shape' => 'CertificateSigningRequest', ], 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], ], ], 'CreateCertificateFromCsrResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], ], ], 'CreateKeysAndCertificateRequest' => [ 'type' => 'structure', 'members' => [ 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], ], ], 'CreateKeysAndCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'keyPair' => [ 'shape' => 'KeyPair', ], ], ], 'CreatePolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyDocument', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], ], ], 'CreatePolicyResponse' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], ], ], 'CreatePolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyDocument', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'setAsDefault' => [ 'shape' => 'SetAsDefault', 'location' => 'querystring', 'locationName' => 'setAsDefault', ], ], ], 'CreatePolicyVersionResponse' => [ 'type' => 'structure', 'members' => [ 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], ], ], 'CreateThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributePayload' => [ 'shape' => 'AttributePayload', ], ], ], 'CreateThingResponse' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'ThingName', ], 'thingArn' => [ 'shape' => 'ThingArn', ], ], ], 'CreateThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], 'thingTypeProperties' => [ 'shape' => 'ThingTypeProperties', ], ], ], 'CreateThingTypeResponse' => [ 'type' => 'structure', 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingTypeArn' => [ 'shape' => 'ThingTypeArn', ], ], ], 'CreateTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', 'topicRulePayload', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], 'topicRulePayload' => [ 'shape' => 'TopicRulePayload', ], ], 'payload' => 'topicRulePayload', ], 'CreatedAtDate' => [ 'type' => 'timestamp', ], 'CreationDate' => [ 'type' => 'timestamp', ], 'DateType' => [ 'type' => 'timestamp', ], 'DeleteCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], ], ], 'DeleteCACertificateResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], ], ], 'DeleteConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'DeletePolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], ], ], 'DeletePolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyVersionId', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', 'location' => 'uri', 'locationName' => 'policyVersionId', ], ], ], 'DeleteRegistrationCodeRequest' => [ 'type' => 'structure', 'members' => [], ], 'DeleteRegistrationCodeResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', 'location' => 'querystring', 'locationName' => 'expectedVersion', ], ], ], 'DeleteThingResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], ], ], 'DeleteThingTypeResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteTopicRuleRequest' => [ 'type' => 'structure', 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], 'required' => [ 'ruleName', ], ], 'DeliveryStreamName' => [ 'type' => 'string', ], 'DeprecateThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], 'undoDeprecate' => [ 'shape' => 'UndoDeprecate', ], ], ], 'DeprecateThingTypeResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeprecationDate' => [ 'type' => 'timestamp', ], 'DescribeCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], ], ], 'DescribeCACertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateDescription' => [ 'shape' => 'CACertificateDescription', ], ], ], 'DescribeCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], ], ], 'DescribeCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateDescription' => [ 'shape' => 'CertificateDescription', ], ], ], 'DescribeEndpointRequest' => [ 'type' => 'structure', 'members' => [], ], 'DescribeEndpointResponse' => [ 'type' => 'structure', 'members' => [ 'endpointAddress' => [ 'shape' => 'EndpointAddress', ], ], ], 'DescribeThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], ], ], 'DescribeThingResponse' => [ 'type' => 'structure', 'members' => [ 'defaultClientId' => [ 'shape' => 'ClientId', ], 'thingName' => [ 'shape' => 'ThingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributes' => [ 'shape' => 'Attributes', ], 'version' => [ 'shape' => 'Version', ], ], ], 'DescribeThingTypeRequest' => [ 'type' => 'structure', 'required' => [ 'thingTypeName', ], 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'uri', 'locationName' => 'thingTypeName', ], ], ], 'DescribeThingTypeResponse' => [ 'type' => 'structure', 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingTypeProperties' => [ 'shape' => 'ThingTypeProperties', ], 'thingTypeMetadata' => [ 'shape' => 'ThingTypeMetadata', ], ], ], 'Description' => [ 'type' => 'string', ], 'DetachPrincipalPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'principal', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-iot-principal', ], ], ], 'DetachThingPrincipalRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', 'principal', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-principal', ], ], ], 'DetachThingPrincipalResponse' => [ 'type' => 'structure', 'members' => [], ], 'DisableTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'DynamoDBAction' => [ 'type' => 'structure', 'required' => [ 'tableName', 'roleArn', 'hashKeyField', 'hashKeyValue', ], 'members' => [ 'tableName' => [ 'shape' => 'TableName', ], 'roleArn' => [ 'shape' => 'AwsArn', ], 'operation' => [ 'shape' => 'DynamoOperation', ], 'hashKeyField' => [ 'shape' => 'HashKeyField', ], 'hashKeyValue' => [ 'shape' => 'HashKeyValue', ], 'hashKeyType' => [ 'shape' => 'DynamoKeyType', ], 'rangeKeyField' => [ 'shape' => 'RangeKeyField', ], 'rangeKeyValue' => [ 'shape' => 'RangeKeyValue', ], 'rangeKeyType' => [ 'shape' => 'DynamoKeyType', ], 'payloadField' => [ 'shape' => 'PayloadField', ], ], ], 'DynamoDBv2Action' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'putItem' => [ 'shape' => 'PutItemInput', ], ], ], 'DynamoKeyType' => [ 'type' => 'string', 'enum' => [ 'STRING', 'NUMBER', ], ], 'DynamoOperation' => [ 'type' => 'string', ], 'ElasticsearchAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'endpoint', 'index', 'type', 'id', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'endpoint' => [ 'shape' => 'ElasticsearchEndpoint', ], 'index' => [ 'shape' => 'ElasticsearchIndex', ], 'type' => [ 'shape' => 'ElasticsearchType', ], 'id' => [ 'shape' => 'ElasticsearchId', ], ], ], 'ElasticsearchEndpoint' => [ 'type' => 'string', 'pattern' => 'https?://.*', ], 'ElasticsearchId' => [ 'type' => 'string', ], 'ElasticsearchIndex' => [ 'type' => 'string', ], 'ElasticsearchType' => [ 'type' => 'string', ], 'EnableTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'EndpointAddress' => [ 'type' => 'string', ], 'FirehoseAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'deliveryStreamName', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'deliveryStreamName' => [ 'shape' => 'DeliveryStreamName', ], 'separator' => [ 'shape' => 'FirehoseSeparator', ], ], ], 'FirehoseSeparator' => [ 'type' => 'string', 'pattern' => '([\\n\\t])|(\\r\\n)|(,)', ], 'Flag' => [ 'type' => 'boolean', ], 'FunctionArn' => [ 'type' => 'string', ], 'GetLoggingOptionsRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetLoggingOptionsResponse' => [ 'type' => 'structure', 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'GetPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], ], ], 'GetPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'defaultVersionId' => [ 'shape' => 'PolicyVersionId', ], ], ], 'GetPolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyVersionId', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', 'location' => 'uri', 'locationName' => 'policyVersionId', ], ], ], 'GetPolicyVersionResponse' => [ 'type' => 'structure', 'members' => [ 'policyArn' => [ 'shape' => 'PolicyArn', ], 'policyName' => [ 'shape' => 'PolicyName', ], 'policyDocument' => [ 'shape' => 'PolicyDocument', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], ], ], 'GetRegistrationCodeRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetRegistrationCodeResponse' => [ 'type' => 'structure', 'members' => [ 'registrationCode' => [ 'shape' => 'RegistrationCode', ], ], ], 'GetTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], ], ], 'GetTopicRuleResponse' => [ 'type' => 'structure', 'members' => [ 'ruleArn' => [ 'shape' => 'RuleArn', ], 'rule' => [ 'shape' => 'TopicRule', ], ], ], 'HashKeyField' => [ 'type' => 'string', ], 'HashKeyValue' => [ 'type' => 'string', ], 'InternalException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'InternalFailureException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 500, ], 'exception' => true, 'fault' => true, ], 'InvalidRequestException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'IsDefaultVersion' => [ 'type' => 'boolean', ], 'IsDisabled' => [ 'type' => 'boolean', ], 'Key' => [ 'type' => 'string', ], 'KeyPair' => [ 'type' => 'structure', 'members' => [ 'PublicKey' => [ 'shape' => 'PublicKey', ], 'PrivateKey' => [ 'shape' => 'PrivateKey', ], ], ], 'KinesisAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'streamName', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'streamName' => [ 'shape' => 'StreamName', ], 'partitionKey' => [ 'shape' => 'PartitionKey', ], ], ], 'LambdaAction' => [ 'type' => 'structure', 'required' => [ 'functionArn', ], 'members' => [ 'functionArn' => [ 'shape' => 'FunctionArn', ], ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], 'ListCACertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListCACertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'certificates' => [ 'shape' => 'CACertificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListCertificatesByCARequest' => [ 'type' => 'structure', 'required' => [ 'caCertificateId', ], 'members' => [ 'caCertificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListCertificatesByCAResponse' => [ 'type' => 'structure', 'members' => [ 'certificates' => [ 'shape' => 'Certificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListCertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListCertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'certificates' => [ 'shape' => 'Certificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListOutgoingCertificatesRequest' => [ 'type' => 'structure', 'members' => [ 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListOutgoingCertificatesResponse' => [ 'type' => 'structure', 'members' => [ 'outgoingCertificates' => [ 'shape' => 'OutgoingCertificates', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPoliciesRequest' => [ 'type' => 'structure', 'members' => [ 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPolicyPrincipalsRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'header', 'locationName' => 'x-amzn-iot-policy', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListPolicyPrincipalsResponse' => [ 'type' => 'structure', 'members' => [ 'principals' => [ 'shape' => 'Principals', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPolicyVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], ], ], 'ListPolicyVersionsResponse' => [ 'type' => 'structure', 'members' => [ 'policyVersions' => [ 'shape' => 'PolicyVersions', ], ], ], 'ListPrincipalPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'principal', ], 'members' => [ 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-iot-principal', ], 'marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'pageSize' => [ 'shape' => 'PageSize', 'location' => 'querystring', 'locationName' => 'pageSize', ], 'ascendingOrder' => [ 'shape' => 'AscendingOrder', 'location' => 'querystring', 'locationName' => 'isAscendingOrder', ], ], ], 'ListPrincipalPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'policies' => [ 'shape' => 'Policies', ], 'nextMarker' => [ 'shape' => 'Marker', ], ], ], 'ListPrincipalThingsRequest' => [ 'type' => 'structure', 'required' => [ 'principal', ], 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'principal' => [ 'shape' => 'Principal', 'location' => 'header', 'locationName' => 'x-amzn-principal', ], ], ], 'ListPrincipalThingsResponse' => [ 'type' => 'structure', 'members' => [ 'things' => [ 'shape' => 'ThingNameList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingPrincipalsRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], ], ], 'ListThingPrincipalsResponse' => [ 'type' => 'structure', 'members' => [ 'principals' => [ 'shape' => 'Principals', ], ], ], 'ListThingTypesRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'querystring', 'locationName' => 'thingTypeName', ], ], ], 'ListThingTypesResponse' => [ 'type' => 'structure', 'members' => [ 'thingTypes' => [ 'shape' => 'ThingTypeList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListThingsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'attributeName' => [ 'shape' => 'AttributeName', 'location' => 'querystring', 'locationName' => 'attributeName', ], 'attributeValue' => [ 'shape' => 'AttributeValue', 'location' => 'querystring', 'locationName' => 'attributeValue', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', 'location' => 'querystring', 'locationName' => 'thingTypeName', ], ], ], 'ListThingsResponse' => [ 'type' => 'structure', 'members' => [ 'things' => [ 'shape' => 'ThingAttributeList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ListTopicRulesRequest' => [ 'type' => 'structure', 'members' => [ 'topic' => [ 'shape' => 'Topic', 'location' => 'querystring', 'locationName' => 'topic', ], 'maxResults' => [ 'shape' => 'MaxResults', 'location' => 'querystring', 'locationName' => 'maxResults', ], 'nextToken' => [ 'shape' => 'NextToken', 'location' => 'querystring', 'locationName' => 'nextToken', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', 'location' => 'querystring', 'locationName' => 'ruleDisabled', ], ], ], 'ListTopicRulesResponse' => [ 'type' => 'structure', 'members' => [ 'rules' => [ 'shape' => 'TopicRuleList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'LogLevel' => [ 'type' => 'string', 'enum' => [ 'DEBUG', 'INFO', 'ERROR', 'WARN', 'DISABLED', ], ], 'LoggingOptionsPayload' => [ 'type' => 'structure', 'required' => [ 'roleArn', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'logLevel' => [ 'shape' => 'LogLevel', ], ], ], 'MalformedPolicyException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'Marker' => [ 'type' => 'string', ], 'MaxResults' => [ 'type' => 'integer', 'min' => 1, 'max' => 10000, ], 'Message' => [ 'type' => 'string', 'max' => 128, ], 'MessageFormat' => [ 'type' => 'string', 'enum' => [ 'RAW', 'JSON', ], ], 'MetricName' => [ 'type' => 'string', ], 'MetricNamespace' => [ 'type' => 'string', ], 'MetricTimestamp' => [ 'type' => 'string', ], 'MetricUnit' => [ 'type' => 'string', ], 'MetricValue' => [ 'type' => 'string', ], 'NextToken' => [ 'type' => 'string', ], 'OptionalVersion' => [ 'type' => 'long', ], 'OutgoingCertificate' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], 'transferredTo' => [ 'shape' => 'AwsAccountId', ], 'transferDate' => [ 'shape' => 'DateType', ], 'transferMessage' => [ 'shape' => 'Message', ], 'creationDate' => [ 'shape' => 'DateType', ], ], ], 'OutgoingCertificates' => [ 'type' => 'list', 'member' => [ 'shape' => 'OutgoingCertificate', ], ], 'PageSize' => [ 'type' => 'integer', 'min' => 1, 'max' => 250, ], 'PartitionKey' => [ 'type' => 'string', ], 'PayloadField' => [ 'type' => 'string', ], 'Policies' => [ 'type' => 'list', 'member' => [ 'shape' => 'Policy', ], ], 'Policy' => [ 'type' => 'structure', 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', ], 'policyArn' => [ 'shape' => 'PolicyArn', ], ], ], 'PolicyArn' => [ 'type' => 'string', ], 'PolicyDocument' => [ 'type' => 'string', ], 'PolicyName' => [ 'type' => 'string', 'min' => 1, 'max' => 128, 'pattern' => '[\\w+=,.@-]+', ], 'PolicyVersion' => [ 'type' => 'structure', 'members' => [ 'versionId' => [ 'shape' => 'PolicyVersionId', ], 'isDefaultVersion' => [ 'shape' => 'IsDefaultVersion', ], 'createDate' => [ 'shape' => 'DateType', ], ], ], 'PolicyVersionId' => [ 'type' => 'string', 'pattern' => '[0-9]+', ], 'PolicyVersions' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyVersion', ], ], 'Principal' => [ 'type' => 'string', ], 'PrincipalArn' => [ 'type' => 'string', ], 'Principals' => [ 'type' => 'list', 'member' => [ 'shape' => 'PrincipalArn', ], ], 'PrivateKey' => [ 'type' => 'string', 'min' => 1, 'sensitive' => true, ], 'PublicKey' => [ 'type' => 'string', 'min' => 1, ], 'PutItemInput' => [ 'type' => 'structure', 'required' => [ 'tableName', ], 'members' => [ 'tableName' => [ 'shape' => 'TableName', ], ], ], 'QueueUrl' => [ 'type' => 'string', ], 'RangeKeyField' => [ 'type' => 'string', ], 'RangeKeyValue' => [ 'type' => 'string', ], 'RegisterCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'caCertificate', 'verificationCertificate', ], 'members' => [ 'caCertificate' => [ 'shape' => 'CertificatePem', ], 'verificationCertificate' => [ 'shape' => 'CertificatePem', ], 'setAsActive' => [ 'shape' => 'SetAsActive', 'location' => 'querystring', 'locationName' => 'setAsActive', ], 'allowAutoRegistration' => [ 'shape' => 'AllowAutoRegistration', 'location' => 'querystring', 'locationName' => 'allowAutoRegistration', ], ], ], 'RegisterCACertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], ], ], 'RegisterCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificatePem', ], 'members' => [ 'certificatePem' => [ 'shape' => 'CertificatePem', ], 'caCertificatePem' => [ 'shape' => 'CertificatePem', ], 'setAsActive' => [ 'shape' => 'SetAsActiveFlag', 'deprecated' => true, 'location' => 'querystring', 'locationName' => 'setAsActive', ], 'status' => [ 'shape' => 'CertificateStatus', ], ], ], 'RegisterCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'certificateArn' => [ 'shape' => 'CertificateArn', ], 'certificateId' => [ 'shape' => 'CertificateId', ], ], ], 'RegistrationCode' => [ 'type' => 'string', 'min' => 64, 'max' => 64, 'pattern' => '(0x)?[a-fA-F0-9]+', ], 'RegistrationCodeValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'RejectCertificateTransferRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'rejectReason' => [ 'shape' => 'Message', ], ], ], 'RemoveThingType' => [ 'type' => 'boolean', ], 'ReplaceTopicRuleRequest' => [ 'type' => 'structure', 'required' => [ 'ruleName', 'topicRulePayload', ], 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', 'location' => 'uri', 'locationName' => 'ruleName', ], 'topicRulePayload' => [ 'shape' => 'TopicRulePayload', ], ], 'payload' => 'topicRulePayload', ], 'RepublishAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'topic', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'topic' => [ 'shape' => 'TopicPattern', ], ], ], 'ResourceAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], 'resourceId' => [ 'shape' => 'resourceId', ], 'resourceArn' => [ 'shape' => 'resourceArn', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'RuleArn' => [ 'type' => 'string', ], 'RuleName' => [ 'type' => 'string', 'min' => 1, 'max' => 128, 'pattern' => '^[a-zA-Z0-9_]+$', ], 'S3Action' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'bucketName', 'key', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'bucketName' => [ 'shape' => 'BucketName', ], 'key' => [ 'shape' => 'Key', ], 'cannedAcl' => [ 'shape' => 'CannedAccessControlList', ], ], ], 'SQL' => [ 'type' => 'string', ], 'SearchableAttributes' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttributeName', ], ], 'ServiceUnavailableException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 503, ], 'exception' => true, 'fault' => true, ], 'SetAsActive' => [ 'type' => 'boolean', ], 'SetAsActiveFlag' => [ 'type' => 'boolean', ], 'SetAsDefault' => [ 'type' => 'boolean', ], 'SetDefaultPolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'policyName', 'policyVersionId', ], 'members' => [ 'policyName' => [ 'shape' => 'PolicyName', 'location' => 'uri', 'locationName' => 'policyName', ], 'policyVersionId' => [ 'shape' => 'PolicyVersionId', 'location' => 'uri', 'locationName' => 'policyVersionId', ], ], ], 'SetLoggingOptionsRequest' => [ 'type' => 'structure', 'required' => [ 'loggingOptionsPayload', ], 'members' => [ 'loggingOptionsPayload' => [ 'shape' => 'LoggingOptionsPayload', ], ], 'payload' => 'loggingOptionsPayload', ], 'SnsAction' => [ 'type' => 'structure', 'required' => [ 'targetArn', 'roleArn', ], 'members' => [ 'targetArn' => [ 'shape' => 'AwsArn', ], 'roleArn' => [ 'shape' => 'AwsArn', ], 'messageFormat' => [ 'shape' => 'MessageFormat', ], ], ], 'SqlParseException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'SqsAction' => [ 'type' => 'structure', 'required' => [ 'roleArn', 'queueUrl', ], 'members' => [ 'roleArn' => [ 'shape' => 'AwsArn', ], 'queueUrl' => [ 'shape' => 'QueueUrl', ], 'useBase64' => [ 'shape' => 'UseBase64', ], ], ], 'StateReason' => [ 'type' => 'string', ], 'StateValue' => [ 'type' => 'string', ], 'StreamName' => [ 'type' => 'string', ], 'TableName' => [ 'type' => 'string', ], 'ThingArn' => [ 'type' => 'string', ], 'ThingAttribute' => [ 'type' => 'structure', 'members' => [ 'thingName' => [ 'shape' => 'ThingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributes' => [ 'shape' => 'Attributes', ], 'version' => [ 'shape' => 'Version', ], ], ], 'ThingAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingAttribute', ], ], 'ThingName' => [ 'type' => 'string', 'min' => 1, 'max' => 128, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'ThingNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingName', ], ], 'ThingTypeArn' => [ 'type' => 'string', ], 'ThingTypeDefinition' => [ 'type' => 'structure', 'members' => [ 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'thingTypeProperties' => [ 'shape' => 'ThingTypeProperties', ], 'thingTypeMetadata' => [ 'shape' => 'ThingTypeMetadata', ], ], ], 'ThingTypeDescription' => [ 'type' => 'string', 'max' => 2028, 'pattern' => '[\\p{Graph}\\x20]*', ], 'ThingTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ThingTypeDefinition', ], ], 'ThingTypeMetadata' => [ 'type' => 'structure', 'members' => [ 'deprecated' => [ 'shape' => 'Boolean', ], 'deprecationDate' => [ 'shape' => 'DeprecationDate', ], 'creationDate' => [ 'shape' => 'CreationDate', ], ], ], 'ThingTypeName' => [ 'type' => 'string', 'min' => 1, 'max' => 128, 'pattern' => '[a-zA-Z0-9:_-]+', ], 'ThingTypeProperties' => [ 'type' => 'structure', 'members' => [ 'thingTypeDescription' => [ 'shape' => 'ThingTypeDescription', ], 'searchableAttributes' => [ 'shape' => 'SearchableAttributes', ], ], ], 'ThrottlingException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 429, ], 'exception' => true, ], 'Topic' => [ 'type' => 'string', ], 'TopicPattern' => [ 'type' => 'string', ], 'TopicRule' => [ 'type' => 'structure', 'members' => [ 'ruleName' => [ 'shape' => 'RuleName', ], 'sql' => [ 'shape' => 'SQL', ], 'description' => [ 'shape' => 'Description', ], 'createdAt' => [ 'shape' => 'CreatedAtDate', ], 'actions' => [ 'shape' => 'ActionList', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', ], 'awsIotSqlVersion' => [ 'shape' => 'AwsIotSqlVersion', ], ], ], 'TopicRuleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TopicRuleListItem', ], ], 'TopicRuleListItem' => [ 'type' => 'structure', 'members' => [ 'ruleArn' => [ 'shape' => 'RuleArn', ], 'ruleName' => [ 'shape' => 'RuleName', ], 'topicPattern' => [ 'shape' => 'TopicPattern', ], 'createdAt' => [ 'shape' => 'CreatedAtDate', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', ], ], ], 'TopicRulePayload' => [ 'type' => 'structure', 'required' => [ 'sql', 'actions', ], 'members' => [ 'sql' => [ 'shape' => 'SQL', ], 'description' => [ 'shape' => 'Description', ], 'actions' => [ 'shape' => 'ActionList', ], 'ruleDisabled' => [ 'shape' => 'IsDisabled', ], 'awsIotSqlVersion' => [ 'shape' => 'AwsIotSqlVersion', ], ], ], 'TransferAlreadyCompletedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 410, ], 'exception' => true, ], 'TransferCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', 'targetAwsAccount', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'targetAwsAccount' => [ 'shape' => 'AwsAccountId', 'location' => 'querystring', 'locationName' => 'targetAwsAccount', ], 'transferMessage' => [ 'shape' => 'Message', ], ], ], 'TransferCertificateResponse' => [ 'type' => 'structure', 'members' => [ 'transferredCertificateArn' => [ 'shape' => 'CertificateArn', ], ], ], 'TransferConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'TransferData' => [ 'type' => 'structure', 'members' => [ 'transferMessage' => [ 'shape' => 'Message', ], 'rejectReason' => [ 'shape' => 'Message', ], 'transferDate' => [ 'shape' => 'DateType', ], 'acceptDate' => [ 'shape' => 'DateType', ], 'rejectDate' => [ 'shape' => 'DateType', ], ], ], 'UnauthorizedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 401, ], 'exception' => true, ], 'UndoDeprecate' => [ 'type' => 'boolean', ], 'UpdateCACertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'caCertificateId', ], 'newStatus' => [ 'shape' => 'CACertificateStatus', 'location' => 'querystring', 'locationName' => 'newStatus', ], 'newAutoRegistrationStatus' => [ 'shape' => 'AutoRegistrationStatus', 'location' => 'querystring', 'locationName' => 'newAutoRegistrationStatus', ], ], ], 'UpdateCertificateRequest' => [ 'type' => 'structure', 'required' => [ 'certificateId', 'newStatus', ], 'members' => [ 'certificateId' => [ 'shape' => 'CertificateId', 'location' => 'uri', 'locationName' => 'certificateId', ], 'newStatus' => [ 'shape' => 'CertificateStatus', 'location' => 'querystring', 'locationName' => 'newStatus', ], ], ], 'UpdateThingRequest' => [ 'type' => 'structure', 'required' => [ 'thingName', ], 'members' => [ 'thingName' => [ 'shape' => 'ThingName', 'location' => 'uri', 'locationName' => 'thingName', ], 'thingTypeName' => [ 'shape' => 'ThingTypeName', ], 'attributePayload' => [ 'shape' => 'AttributePayload', ], 'expectedVersion' => [ 'shape' => 'OptionalVersion', ], 'removeThingType' => [ 'shape' => 'RemoveThingType', ], ], ], 'UpdateThingResponse' => [ 'type' => 'structure', 'members' => [], ], 'UseBase64' => [ 'type' => 'boolean', ], 'Version' => [ 'type' => 'long', ], 'VersionConflictException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'VersionsLimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'errorMessage' => [ 'type' => 'string', ], 'resourceArn' => [ 'type' => 'string', ], 'resourceId' => [ 'type' => 'string', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14/api-2.json.php index 33c26efe5..a5b39f746 100644 --- a/vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2015-08-14', 'endpointPrefix' => 'kinesisanalytics', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'Kinesis Analytics', 'serviceFullName' => 'Amazon Kinesis Analytics', 'signatureVersion' => 'v4', 'targetPrefix' => 'KinesisAnalytics_20150814', 'timestampFormat' => 'unixTimestamp', ], 'operations' => [ 'AddApplicationInput' => [ 'name' => 'AddApplicationInput', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddApplicationInputRequest', ], 'output' => [ 'shape' => 'AddApplicationInputResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'ConcurrentModificationException', ], ], ], 'AddApplicationOutput' => [ 'name' => 'AddApplicationOutput', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddApplicationOutputRequest', ], 'output' => [ 'shape' => 'AddApplicationOutputResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'ConcurrentModificationException', ], ], ], 'AddApplicationReferenceDataSource' => [ 'name' => 'AddApplicationReferenceDataSource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddApplicationReferenceDataSourceRequest', ], 'output' => [ 'shape' => 'AddApplicationReferenceDataSourceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'ConcurrentModificationException', ], ], ], 'CreateApplication' => [ 'name' => 'CreateApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateApplicationRequest', ], 'output' => [ 'shape' => 'CreateApplicationResponse', ], 'errors' => [ [ 'shape' => 'CodeValidationException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidArgumentException', ], ], ], 'DeleteApplication' => [ 'name' => 'DeleteApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteApplicationRequest', ], 'output' => [ 'shape' => 'DeleteApplicationResponse', ], 'errors' => [ [ 'shape' => 'ConcurrentModificationException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], ], ], 'DeleteApplicationOutput' => [ 'name' => 'DeleteApplicationOutput', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteApplicationOutputRequest', ], 'output' => [ 'shape' => 'DeleteApplicationOutputResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'ConcurrentModificationException', ], ], ], 'DeleteApplicationReferenceDataSource' => [ 'name' => 'DeleteApplicationReferenceDataSource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteApplicationReferenceDataSourceRequest', ], 'output' => [ 'shape' => 'DeleteApplicationReferenceDataSourceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'ConcurrentModificationException', ], ], ], 'DescribeApplication' => [ 'name' => 'DescribeApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeApplicationRequest', ], 'output' => [ 'shape' => 'DescribeApplicationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DiscoverInputSchema' => [ 'name' => 'DiscoverInputSchema', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DiscoverInputSchemaRequest', ], 'output' => [ 'shape' => 'DiscoverInputSchemaResponse', ], 'errors' => [ [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'UnableToDetectSchemaException', ], [ 'shape' => 'ResourceProvisionedThroughputExceededException', ], ], ], 'ListApplications' => [ 'name' => 'ListApplications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListApplicationsRequest', ], 'output' => [ 'shape' => 'ListApplicationsResponse', ], ], 'StartApplication' => [ 'name' => 'StartApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartApplicationRequest', ], 'output' => [ 'shape' => 'StartApplicationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'InvalidApplicationConfigurationException', ], ], ], 'StopApplication' => [ 'name' => 'StopApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopApplicationRequest', ], 'output' => [ 'shape' => 'StopApplicationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], ], ], 'UpdateApplication' => [ 'name' => 'UpdateApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateApplicationRequest', ], 'output' => [ 'shape' => 'UpdateApplicationResponse', ], 'errors' => [ [ 'shape' => 'CodeValidationException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'ConcurrentModificationException', ], ], ], ], 'shapes' => [ 'AddApplicationInputRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CurrentApplicationVersionId', 'Input', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CurrentApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], 'Input' => [ 'shape' => 'Input', ], ], ], 'AddApplicationInputResponse' => [ 'type' => 'structure', 'members' => [], ], 'AddApplicationOutputRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CurrentApplicationVersionId', 'Output', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CurrentApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], 'Output' => [ 'shape' => 'Output', ], ], ], 'AddApplicationOutputResponse' => [ 'type' => 'structure', 'members' => [], ], 'AddApplicationReferenceDataSourceRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CurrentApplicationVersionId', 'ReferenceDataSource', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CurrentApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], 'ReferenceDataSource' => [ 'shape' => 'ReferenceDataSource', ], ], ], 'AddApplicationReferenceDataSourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'ApplicationCode' => [ 'type' => 'string', 'max' => 51200, 'min' => 0, ], 'ApplicationDescription' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'ApplicationDetail' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'ApplicationARN', 'ApplicationStatus', 'ApplicationVersionId', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'ApplicationDescription' => [ 'shape' => 'ApplicationDescription', ], 'ApplicationARN' => [ 'shape' => 'ResourceARN', ], 'ApplicationStatus' => [ 'shape' => 'ApplicationStatus', ], 'CreateTimestamp' => [ 'shape' => 'Timestamp', ], 'LastUpdateTimestamp' => [ 'shape' => 'Timestamp', ], 'InputDescriptions' => [ 'shape' => 'InputDescriptions', ], 'OutputDescriptions' => [ 'shape' => 'OutputDescriptions', ], 'ReferenceDataSourceDescriptions' => [ 'shape' => 'ReferenceDataSourceDescriptions', ], 'ApplicationCode' => [ 'shape' => 'ApplicationCode', ], 'ApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], ], ], 'ApplicationName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_.-]+', ], 'ApplicationStatus' => [ 'type' => 'string', 'enum' => [ 'DELETING', 'STARTING', 'STOPPING', 'READY', 'RUNNING', 'UPDATING', ], ], 'ApplicationSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApplicationSummary', ], ], 'ApplicationSummary' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'ApplicationARN', 'ApplicationStatus', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'ApplicationARN' => [ 'shape' => 'ResourceARN', ], 'ApplicationStatus' => [ 'shape' => 'ApplicationStatus', ], ], ], 'ApplicationUpdate' => [ 'type' => 'structure', 'members' => [ 'InputUpdates' => [ 'shape' => 'InputUpdates', ], 'ApplicationCodeUpdate' => [ 'shape' => 'ApplicationCode', ], 'OutputUpdates' => [ 'shape' => 'OutputUpdates', ], 'ReferenceDataSourceUpdates' => [ 'shape' => 'ReferenceDataSourceUpdates', ], ], ], 'ApplicationVersionId' => [ 'type' => 'long', 'max' => 999999999, 'min' => 1, ], 'BooleanObject' => [ 'type' => 'boolean', ], 'BucketARN' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => 'arn:.*', ], 'CSVMappingParameters' => [ 'type' => 'structure', 'required' => [ 'RecordRowDelimiter', 'RecordColumnDelimiter', ], 'members' => [ 'RecordRowDelimiter' => [ 'shape' => 'RecordRowDelimiter', ], 'RecordColumnDelimiter' => [ 'shape' => 'RecordColumnDelimiter', ], ], ], 'CodeValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ConcurrentModificationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'CreateApplicationRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'ApplicationDescription' => [ 'shape' => 'ApplicationDescription', ], 'Inputs' => [ 'shape' => 'Inputs', ], 'Outputs' => [ 'shape' => 'Outputs', ], 'ApplicationCode' => [ 'shape' => 'ApplicationCode', ], ], ], 'CreateApplicationResponse' => [ 'type' => 'structure', 'required' => [ 'ApplicationSummary', ], 'members' => [ 'ApplicationSummary' => [ 'shape' => 'ApplicationSummary', ], ], ], 'DeleteApplicationOutputRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CurrentApplicationVersionId', 'OutputId', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CurrentApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], 'OutputId' => [ 'shape' => 'Id', ], ], ], 'DeleteApplicationOutputResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteApplicationReferenceDataSourceRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CurrentApplicationVersionId', 'ReferenceId', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CurrentApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], 'ReferenceId' => [ 'shape' => 'Id', ], ], ], 'DeleteApplicationReferenceDataSourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteApplicationRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CreateTimestamp', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CreateTimestamp' => [ 'shape' => 'Timestamp', ], ], ], 'DeleteApplicationResponse' => [ 'type' => 'structure', 'members' => [], ], 'DescribeApplicationRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'DescribeApplicationResponse' => [ 'type' => 'structure', 'required' => [ 'ApplicationDetail', ], 'members' => [ 'ApplicationDetail' => [ 'shape' => 'ApplicationDetail', ], ], ], 'DestinationSchema' => [ 'type' => 'structure', 'members' => [ 'RecordFormatType' => [ 'shape' => 'RecordFormatType', ], ], ], 'DiscoverInputSchemaRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'RoleARN', 'InputStartingPositionConfiguration', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], 'InputStartingPositionConfiguration' => [ 'shape' => 'InputStartingPositionConfiguration', ], ], ], 'DiscoverInputSchemaResponse' => [ 'type' => 'structure', 'members' => [ 'InputSchema' => [ 'shape' => 'SourceSchema', ], 'ParsedInputRecords' => [ 'shape' => 'ParsedInputRecords', ], 'RawInputRecords' => [ 'shape' => 'RawInputRecords', ], ], ], 'ErrorMessage' => [ 'type' => 'string', ], 'FileKey' => [ 'type' => 'string', ], 'Id' => [ 'type' => 'string', 'max' => 50, 'min' => 1, 'pattern' => '[a-zA-Z0-9_.-]+', ], 'InAppStreamName' => [ 'type' => 'string', 'max' => 32, 'min' => 1, 'pattern' => '[a-zA-Z][a-zA-Z0-9_]+', ], 'InAppStreamNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'InAppStreamName', ], ], 'InAppTableName' => [ 'type' => 'string', 'max' => 32, 'min' => 1, 'pattern' => '[a-zA-Z][a-zA-Z0-9_]+', ], 'Input' => [ 'type' => 'structure', 'required' => [ 'NamePrefix', ], 'members' => [ 'NamePrefix' => [ 'shape' => 'InAppStreamName', ], 'KinesisStreamsInput' => [ 'shape' => 'KinesisStreamsInput', ], 'KinesisFirehoseInput' => [ 'shape' => 'KinesisFirehoseInput', ], 'InputParallelism' => [ 'shape' => 'InputParallelism', ], 'InputSchema' => [ 'shape' => 'SourceSchema', ], ], ], 'InputConfiguration' => [ 'type' => 'structure', 'required' => [ 'Id', 'InputStartingPositionConfiguration', ], 'members' => [ 'Id' => [ 'shape' => 'Id', ], 'InputStartingPositionConfiguration' => [ 'shape' => 'InputStartingPositionConfiguration', ], ], ], 'InputConfigurations' => [ 'type' => 'list', 'member' => [ 'shape' => 'InputConfiguration', ], ], 'InputDescription' => [ 'type' => 'structure', 'members' => [ 'InputId' => [ 'shape' => 'Id', ], 'NamePrefix' => [ 'shape' => 'InAppStreamName', ], 'InAppStreamNames' => [ 'shape' => 'InAppStreamNames', ], 'KinesisStreamsInputDescription' => [ 'shape' => 'KinesisStreamsInputDescription', ], 'KinesisFirehoseInputDescription' => [ 'shape' => 'KinesisFirehoseInputDescription', ], 'InputSchema' => [ 'shape' => 'SourceSchema', ], 'InputParallelism' => [ 'shape' => 'InputParallelism', ], 'InputStartingPositionConfiguration' => [ 'shape' => 'InputStartingPositionConfiguration', ], ], ], 'InputDescriptions' => [ 'type' => 'list', 'member' => [ 'shape' => 'InputDescription', ], ], 'InputParallelism' => [ 'type' => 'structure', 'members' => [ 'Count' => [ 'shape' => 'InputParallelismCount', ], ], ], 'InputParallelismCount' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'InputParallelismUpdate' => [ 'type' => 'structure', 'members' => [ 'CountUpdate' => [ 'shape' => 'InputParallelismCount', ], ], ], 'InputSchemaUpdate' => [ 'type' => 'structure', 'members' => [ 'RecordFormatUpdate' => [ 'shape' => 'RecordFormat', ], 'RecordEncodingUpdate' => [ 'shape' => 'RecordEncoding', ], 'RecordColumnUpdates' => [ 'shape' => 'RecordColumns', ], ], ], 'InputStartingPosition' => [ 'type' => 'string', 'enum' => [ 'NOW', 'TRIM_HORIZON', 'LAST_STOPPED_POINT', ], ], 'InputStartingPositionConfiguration' => [ 'type' => 'structure', 'members' => [ 'InputStartingPosition' => [ 'shape' => 'InputStartingPosition', ], ], ], 'InputUpdate' => [ 'type' => 'structure', 'required' => [ 'InputId', ], 'members' => [ 'InputId' => [ 'shape' => 'Id', ], 'NamePrefixUpdate' => [ 'shape' => 'InAppStreamName', ], 'KinesisStreamsInputUpdate' => [ 'shape' => 'KinesisStreamsInputUpdate', ], 'KinesisFirehoseInputUpdate' => [ 'shape' => 'KinesisFirehoseInputUpdate', ], 'InputSchemaUpdate' => [ 'shape' => 'InputSchemaUpdate', ], 'InputParallelismUpdate' => [ 'shape' => 'InputParallelismUpdate', ], ], ], 'InputUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'InputUpdate', ], ], 'Inputs' => [ 'type' => 'list', 'member' => [ 'shape' => 'Input', ], ], 'InvalidApplicationConfigurationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'InvalidArgumentException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'JSONMappingParameters' => [ 'type' => 'structure', 'required' => [ 'RecordRowPath', ], 'members' => [ 'RecordRowPath' => [ 'shape' => 'RecordRowPath', ], ], ], 'KinesisFirehoseInput' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'RoleARN', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisFirehoseInputDescription' => [ 'type' => 'structure', 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisFirehoseInputUpdate' => [ 'type' => 'structure', 'members' => [ 'ResourceARNUpdate' => [ 'shape' => 'ResourceARN', ], 'RoleARNUpdate' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisFirehoseOutput' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'RoleARN', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisFirehoseOutputDescription' => [ 'type' => 'structure', 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisFirehoseOutputUpdate' => [ 'type' => 'structure', 'members' => [ 'ResourceARNUpdate' => [ 'shape' => 'ResourceARN', ], 'RoleARNUpdate' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisStreamsInput' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'RoleARN', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisStreamsInputDescription' => [ 'type' => 'structure', 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisStreamsInputUpdate' => [ 'type' => 'structure', 'members' => [ 'ResourceARNUpdate' => [ 'shape' => 'ResourceARN', ], 'RoleARNUpdate' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisStreamsOutput' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'RoleARN', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisStreamsOutputDescription' => [ 'type' => 'structure', 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisStreamsOutputUpdate' => [ 'type' => 'structure', 'members' => [ 'ResourceARNUpdate' => [ 'shape' => 'ResourceARN', ], 'RoleARNUpdate' => [ 'shape' => 'RoleARN', ], ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ListApplicationsInputLimit' => [ 'type' => 'integer', 'max' => 50, 'min' => 1, ], 'ListApplicationsRequest' => [ 'type' => 'structure', 'members' => [ 'Limit' => [ 'shape' => 'ListApplicationsInputLimit', ], 'ExclusiveStartApplicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'ListApplicationsResponse' => [ 'type' => 'structure', 'required' => [ 'ApplicationSummaries', 'HasMoreApplications', ], 'members' => [ 'ApplicationSummaries' => [ 'shape' => 'ApplicationSummaries', ], 'HasMoreApplications' => [ 'shape' => 'BooleanObject', ], ], ], 'MappingParameters' => [ 'type' => 'structure', 'members' => [ 'JSONMappingParameters' => [ 'shape' => 'JSONMappingParameters', ], 'CSVMappingParameters' => [ 'shape' => 'CSVMappingParameters', ], ], ], 'Output' => [ 'type' => 'structure', 'required' => [ 'Name', 'DestinationSchema', ], 'members' => [ 'Name' => [ 'shape' => 'InAppStreamName', ], 'KinesisStreamsOutput' => [ 'shape' => 'KinesisStreamsOutput', ], 'KinesisFirehoseOutput' => [ 'shape' => 'KinesisFirehoseOutput', ], 'DestinationSchema' => [ 'shape' => 'DestinationSchema', ], ], ], 'OutputDescription' => [ 'type' => 'structure', 'members' => [ 'OutputId' => [ 'shape' => 'Id', ], 'Name' => [ 'shape' => 'InAppStreamName', ], 'KinesisStreamsOutputDescription' => [ 'shape' => 'KinesisStreamsOutputDescription', ], 'KinesisFirehoseOutputDescription' => [ 'shape' => 'KinesisFirehoseOutputDescription', ], 'DestinationSchema' => [ 'shape' => 'DestinationSchema', ], ], ], 'OutputDescriptions' => [ 'type' => 'list', 'member' => [ 'shape' => 'OutputDescription', ], ], 'OutputUpdate' => [ 'type' => 'structure', 'required' => [ 'OutputId', ], 'members' => [ 'OutputId' => [ 'shape' => 'Id', ], 'NameUpdate' => [ 'shape' => 'InAppStreamName', ], 'KinesisStreamsOutputUpdate' => [ 'shape' => 'KinesisStreamsOutputUpdate', ], 'KinesisFirehoseOutputUpdate' => [ 'shape' => 'KinesisFirehoseOutputUpdate', ], 'DestinationSchemaUpdate' => [ 'shape' => 'DestinationSchema', ], ], ], 'OutputUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'OutputUpdate', ], ], 'Outputs' => [ 'type' => 'list', 'member' => [ 'shape' => 'Output', ], ], 'ParsedInputRecord' => [ 'type' => 'list', 'member' => [ 'shape' => 'ParsedInputRecordField', ], ], 'ParsedInputRecordField' => [ 'type' => 'string', ], 'ParsedInputRecords' => [ 'type' => 'list', 'member' => [ 'shape' => 'ParsedInputRecord', ], ], 'RawInputRecord' => [ 'type' => 'string', ], 'RawInputRecords' => [ 'type' => 'list', 'member' => [ 'shape' => 'RawInputRecord', ], ], 'RecordColumn' => [ 'type' => 'structure', 'required' => [ 'Name', 'SqlType', ], 'members' => [ 'Name' => [ 'shape' => 'RecordColumnName', ], 'Mapping' => [ 'shape' => 'RecordColumnMapping', ], 'SqlType' => [ 'shape' => 'RecordColumnSqlType', ], ], ], 'RecordColumnDelimiter' => [ 'type' => 'string', ], 'RecordColumnMapping' => [ 'type' => 'string', ], 'RecordColumnName' => [ 'type' => 'string', 'pattern' => '[a-zA-Z][a-zA-Z0-9_]+', ], 'RecordColumnSqlType' => [ 'type' => 'string', ], 'RecordColumns' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecordColumn', ], 'max' => 1000, 'min' => 1, ], 'RecordEncoding' => [ 'type' => 'string', 'pattern' => 'UTF-8', ], 'RecordFormat' => [ 'type' => 'structure', 'required' => [ 'RecordFormatType', ], 'members' => [ 'RecordFormatType' => [ 'shape' => 'RecordFormatType', ], 'MappingParameters' => [ 'shape' => 'MappingParameters', ], ], ], 'RecordFormatType' => [ 'type' => 'string', 'enum' => [ 'JSON', 'CSV', ], ], 'RecordRowDelimiter' => [ 'type' => 'string', ], 'RecordRowPath' => [ 'type' => 'string', ], 'ReferenceDataSource' => [ 'type' => 'structure', 'required' => [ 'TableName', 'ReferenceSchema', ], 'members' => [ 'TableName' => [ 'shape' => 'InAppTableName', ], 'S3ReferenceDataSource' => [ 'shape' => 'S3ReferenceDataSource', ], 'ReferenceSchema' => [ 'shape' => 'SourceSchema', ], ], ], 'ReferenceDataSourceDescription' => [ 'type' => 'structure', 'required' => [ 'ReferenceId', 'TableName', 'S3ReferenceDataSourceDescription', ], 'members' => [ 'ReferenceId' => [ 'shape' => 'Id', ], 'TableName' => [ 'shape' => 'InAppTableName', ], 'S3ReferenceDataSourceDescription' => [ 'shape' => 'S3ReferenceDataSourceDescription', ], 'ReferenceSchema' => [ 'shape' => 'SourceSchema', ], ], ], 'ReferenceDataSourceDescriptions' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReferenceDataSourceDescription', ], ], 'ReferenceDataSourceUpdate' => [ 'type' => 'structure', 'required' => [ 'ReferenceId', ], 'members' => [ 'ReferenceId' => [ 'shape' => 'Id', ], 'TableNameUpdate' => [ 'shape' => 'InAppTableName', ], 'S3ReferenceDataSourceUpdate' => [ 'shape' => 'S3ReferenceDataSourceUpdate', ], 'ReferenceSchemaUpdate' => [ 'shape' => 'SourceSchema', ], ], ], 'ReferenceDataSourceUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReferenceDataSourceUpdate', ], ], 'ResourceARN' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => 'arn:[a-zA-Z0-9\\-]+:[a-zA-Z0-9\\-]+:[a-zA-Z0-9\\-]*:\\d{12}:[a-zA-Z_0-9+=,.@\\-_/:]+', ], 'ResourceInUseException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ResourceProvisionedThroughputExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'RoleARN' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => 'arn:aws:iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+', ], 'S3ReferenceDataSource' => [ 'type' => 'structure', 'required' => [ 'BucketARN', 'FileKey', 'ReferenceRoleARN', ], 'members' => [ 'BucketARN' => [ 'shape' => 'BucketARN', ], 'FileKey' => [ 'shape' => 'FileKey', ], 'ReferenceRoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'S3ReferenceDataSourceDescription' => [ 'type' => 'structure', 'required' => [ 'BucketARN', 'FileKey', 'ReferenceRoleARN', ], 'members' => [ 'BucketARN' => [ 'shape' => 'BucketARN', ], 'FileKey' => [ 'shape' => 'FileKey', ], 'ReferenceRoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'S3ReferenceDataSourceUpdate' => [ 'type' => 'structure', 'members' => [ 'BucketARNUpdate' => [ 'shape' => 'BucketARN', ], 'FileKeyUpdate' => [ 'shape' => 'FileKey', ], 'ReferenceRoleARNUpdate' => [ 'shape' => 'RoleARN', ], ], ], 'SourceSchema' => [ 'type' => 'structure', 'required' => [ 'RecordFormat', 'RecordColumns', ], 'members' => [ 'RecordFormat' => [ 'shape' => 'RecordFormat', ], 'RecordEncoding' => [ 'shape' => 'RecordEncoding', ], 'RecordColumns' => [ 'shape' => 'RecordColumns', ], ], ], 'StartApplicationRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'InputConfigurations', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'InputConfigurations' => [ 'shape' => 'InputConfigurations', ], ], ], 'StartApplicationResponse' => [ 'type' => 'structure', 'members' => [], ], 'StopApplicationRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'StopApplicationResponse' => [ 'type' => 'structure', 'members' => [], ], 'Timestamp' => [ 'type' => 'timestamp', ], 'UnableToDetectSchemaException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'UpdateApplicationRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CurrentApplicationVersionId', 'ApplicationUpdate', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CurrentApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], 'ApplicationUpdate' => [ 'shape' => 'ApplicationUpdate', ], ], ], 'UpdateApplicationResponse' => [ 'type' => 'structure', 'members' => [], ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2015-08-14', 'endpointPrefix' => 'kinesisanalytics', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'Kinesis Analytics', 'serviceFullName' => 'Amazon Kinesis Analytics', 'signatureVersion' => 'v4', 'targetPrefix' => 'KinesisAnalytics_20150814', 'timestampFormat' => 'unixTimestamp', ], 'operations' => [ 'AddApplicationInput' => [ 'name' => 'AddApplicationInput', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddApplicationInputRequest', ], 'output' => [ 'shape' => 'AddApplicationInputResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'ConcurrentModificationException', ], ], ], 'AddApplicationOutput' => [ 'name' => 'AddApplicationOutput', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddApplicationOutputRequest', ], 'output' => [ 'shape' => 'AddApplicationOutputResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'ConcurrentModificationException', ], ], ], 'AddApplicationReferenceDataSource' => [ 'name' => 'AddApplicationReferenceDataSource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddApplicationReferenceDataSourceRequest', ], 'output' => [ 'shape' => 'AddApplicationReferenceDataSourceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'ConcurrentModificationException', ], ], ], 'CreateApplication' => [ 'name' => 'CreateApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateApplicationRequest', ], 'output' => [ 'shape' => 'CreateApplicationResponse', ], 'errors' => [ [ 'shape' => 'CodeValidationException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'InvalidArgumentException', ], ], ], 'DeleteApplication' => [ 'name' => 'DeleteApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteApplicationRequest', ], 'output' => [ 'shape' => 'DeleteApplicationResponse', ], 'errors' => [ [ 'shape' => 'ConcurrentModificationException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], ], ], 'DeleteApplicationOutput' => [ 'name' => 'DeleteApplicationOutput', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteApplicationOutputRequest', ], 'output' => [ 'shape' => 'DeleteApplicationOutputResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'ConcurrentModificationException', ], ], ], 'DeleteApplicationReferenceDataSource' => [ 'name' => 'DeleteApplicationReferenceDataSource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteApplicationReferenceDataSourceRequest', ], 'output' => [ 'shape' => 'DeleteApplicationReferenceDataSourceResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'ConcurrentModificationException', ], ], ], 'DescribeApplication' => [ 'name' => 'DescribeApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeApplicationRequest', ], 'output' => [ 'shape' => 'DescribeApplicationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DiscoverInputSchema' => [ 'name' => 'DiscoverInputSchema', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DiscoverInputSchemaRequest', ], 'output' => [ 'shape' => 'DiscoverInputSchemaResponse', ], 'errors' => [ [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'UnableToDetectSchemaException', ], [ 'shape' => 'ResourceProvisionedThroughputExceededException', ], ], ], 'ListApplications' => [ 'name' => 'ListApplications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListApplicationsRequest', ], 'output' => [ 'shape' => 'ListApplicationsResponse', ], ], 'StartApplication' => [ 'name' => 'StartApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartApplicationRequest', ], 'output' => [ 'shape' => 'StartApplicationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'InvalidApplicationConfigurationException', ], ], ], 'StopApplication' => [ 'name' => 'StopApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StopApplicationRequest', ], 'output' => [ 'shape' => 'StopApplicationResponse', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], ], ], 'UpdateApplication' => [ 'name' => 'UpdateApplication', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateApplicationRequest', ], 'output' => [ 'shape' => 'UpdateApplicationResponse', ], 'errors' => [ [ 'shape' => 'CodeValidationException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'ResourceInUseException', ], [ 'shape' => 'InvalidArgumentException', ], [ 'shape' => 'ConcurrentModificationException', ], ], ], ], 'shapes' => [ 'AddApplicationInputRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CurrentApplicationVersionId', 'Input', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CurrentApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], 'Input' => [ 'shape' => 'Input', ], ], ], 'AddApplicationInputResponse' => [ 'type' => 'structure', 'members' => [], ], 'AddApplicationOutputRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CurrentApplicationVersionId', 'Output', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CurrentApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], 'Output' => [ 'shape' => 'Output', ], ], ], 'AddApplicationOutputResponse' => [ 'type' => 'structure', 'members' => [], ], 'AddApplicationReferenceDataSourceRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CurrentApplicationVersionId', 'ReferenceDataSource', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CurrentApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], 'ReferenceDataSource' => [ 'shape' => 'ReferenceDataSource', ], ], ], 'AddApplicationReferenceDataSourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'ApplicationCode' => [ 'type' => 'string', 'max' => 51200, 'min' => 0, ], 'ApplicationDescription' => [ 'type' => 'string', 'max' => 1024, 'min' => 0, ], 'ApplicationDetail' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'ApplicationARN', 'ApplicationStatus', 'ApplicationVersionId', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'ApplicationDescription' => [ 'shape' => 'ApplicationDescription', ], 'ApplicationARN' => [ 'shape' => 'ResourceARN', ], 'ApplicationStatus' => [ 'shape' => 'ApplicationStatus', ], 'CreateTimestamp' => [ 'shape' => 'Timestamp', ], 'LastUpdateTimestamp' => [ 'shape' => 'Timestamp', ], 'InputDescriptions' => [ 'shape' => 'InputDescriptions', ], 'OutputDescriptions' => [ 'shape' => 'OutputDescriptions', ], 'ReferenceDataSourceDescriptions' => [ 'shape' => 'ReferenceDataSourceDescriptions', ], 'ApplicationCode' => [ 'shape' => 'ApplicationCode', ], 'ApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], ], ], 'ApplicationName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9_.-]+', ], 'ApplicationStatus' => [ 'type' => 'string', 'enum' => [ 'DELETING', 'STARTING', 'STOPPING', 'READY', 'RUNNING', 'UPDATING', ], ], 'ApplicationSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ApplicationSummary', ], ], 'ApplicationSummary' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'ApplicationARN', 'ApplicationStatus', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'ApplicationARN' => [ 'shape' => 'ResourceARN', ], 'ApplicationStatus' => [ 'shape' => 'ApplicationStatus', ], ], ], 'ApplicationUpdate' => [ 'type' => 'structure', 'members' => [ 'InputUpdates' => [ 'shape' => 'InputUpdates', ], 'ApplicationCodeUpdate' => [ 'shape' => 'ApplicationCode', ], 'OutputUpdates' => [ 'shape' => 'OutputUpdates', ], 'ReferenceDataSourceUpdates' => [ 'shape' => 'ReferenceDataSourceUpdates', ], ], ], 'ApplicationVersionId' => [ 'type' => 'long', 'max' => 999999999, 'min' => 1, ], 'BooleanObject' => [ 'type' => 'boolean', ], 'BucketARN' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => 'arn:.*', ], 'CSVMappingParameters' => [ 'type' => 'structure', 'required' => [ 'RecordRowDelimiter', 'RecordColumnDelimiter', ], 'members' => [ 'RecordRowDelimiter' => [ 'shape' => 'RecordRowDelimiter', ], 'RecordColumnDelimiter' => [ 'shape' => 'RecordColumnDelimiter', ], ], ], 'CodeValidationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ConcurrentModificationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'CreateApplicationRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'ApplicationDescription' => [ 'shape' => 'ApplicationDescription', ], 'Inputs' => [ 'shape' => 'Inputs', ], 'Outputs' => [ 'shape' => 'Outputs', ], 'ApplicationCode' => [ 'shape' => 'ApplicationCode', ], ], ], 'CreateApplicationResponse' => [ 'type' => 'structure', 'required' => [ 'ApplicationSummary', ], 'members' => [ 'ApplicationSummary' => [ 'shape' => 'ApplicationSummary', ], ], ], 'DeleteApplicationOutputRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CurrentApplicationVersionId', 'OutputId', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CurrentApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], 'OutputId' => [ 'shape' => 'Id', ], ], ], 'DeleteApplicationOutputResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteApplicationReferenceDataSourceRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CurrentApplicationVersionId', 'ReferenceId', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CurrentApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], 'ReferenceId' => [ 'shape' => 'Id', ], ], ], 'DeleteApplicationReferenceDataSourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteApplicationRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CreateTimestamp', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CreateTimestamp' => [ 'shape' => 'Timestamp', ], ], ], 'DeleteApplicationResponse' => [ 'type' => 'structure', 'members' => [], ], 'DescribeApplicationRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'DescribeApplicationResponse' => [ 'type' => 'structure', 'required' => [ 'ApplicationDetail', ], 'members' => [ 'ApplicationDetail' => [ 'shape' => 'ApplicationDetail', ], ], ], 'DestinationSchema' => [ 'type' => 'structure', 'members' => [ 'RecordFormatType' => [ 'shape' => 'RecordFormatType', ], ], ], 'DiscoverInputSchemaRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'RoleARN', 'InputStartingPositionConfiguration', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], 'InputStartingPositionConfiguration' => [ 'shape' => 'InputStartingPositionConfiguration', ], ], ], 'DiscoverInputSchemaResponse' => [ 'type' => 'structure', 'members' => [ 'InputSchema' => [ 'shape' => 'SourceSchema', ], 'ParsedInputRecords' => [ 'shape' => 'ParsedInputRecords', ], 'RawInputRecords' => [ 'shape' => 'RawInputRecords', ], ], ], 'ErrorMessage' => [ 'type' => 'string', ], 'FileKey' => [ 'type' => 'string', ], 'Id' => [ 'type' => 'string', 'max' => 50, 'min' => 1, 'pattern' => '[a-zA-Z0-9_.-]+', ], 'InAppStreamName' => [ 'type' => 'string', 'max' => 32, 'min' => 1, 'pattern' => '[a-zA-Z][a-zA-Z0-9_]+', ], 'InAppStreamNames' => [ 'type' => 'list', 'member' => [ 'shape' => 'InAppStreamName', ], ], 'InAppTableName' => [ 'type' => 'string', 'max' => 32, 'min' => 1, 'pattern' => '[a-zA-Z][a-zA-Z0-9_]+', ], 'Input' => [ 'type' => 'structure', 'required' => [ 'NamePrefix', 'InputSchema', ], 'members' => [ 'NamePrefix' => [ 'shape' => 'InAppStreamName', ], 'KinesisStreamsInput' => [ 'shape' => 'KinesisStreamsInput', ], 'KinesisFirehoseInput' => [ 'shape' => 'KinesisFirehoseInput', ], 'InputParallelism' => [ 'shape' => 'InputParallelism', ], 'InputSchema' => [ 'shape' => 'SourceSchema', ], ], ], 'InputConfiguration' => [ 'type' => 'structure', 'required' => [ 'Id', 'InputStartingPositionConfiguration', ], 'members' => [ 'Id' => [ 'shape' => 'Id', ], 'InputStartingPositionConfiguration' => [ 'shape' => 'InputStartingPositionConfiguration', ], ], ], 'InputConfigurations' => [ 'type' => 'list', 'member' => [ 'shape' => 'InputConfiguration', ], ], 'InputDescription' => [ 'type' => 'structure', 'members' => [ 'InputId' => [ 'shape' => 'Id', ], 'NamePrefix' => [ 'shape' => 'InAppStreamName', ], 'InAppStreamNames' => [ 'shape' => 'InAppStreamNames', ], 'KinesisStreamsInputDescription' => [ 'shape' => 'KinesisStreamsInputDescription', ], 'KinesisFirehoseInputDescription' => [ 'shape' => 'KinesisFirehoseInputDescription', ], 'InputSchema' => [ 'shape' => 'SourceSchema', ], 'InputParallelism' => [ 'shape' => 'InputParallelism', ], 'InputStartingPositionConfiguration' => [ 'shape' => 'InputStartingPositionConfiguration', ], ], ], 'InputDescriptions' => [ 'type' => 'list', 'member' => [ 'shape' => 'InputDescription', ], ], 'InputParallelism' => [ 'type' => 'structure', 'members' => [ 'Count' => [ 'shape' => 'InputParallelismCount', ], ], ], 'InputParallelismCount' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'InputParallelismUpdate' => [ 'type' => 'structure', 'members' => [ 'CountUpdate' => [ 'shape' => 'InputParallelismCount', ], ], ], 'InputSchemaUpdate' => [ 'type' => 'structure', 'members' => [ 'RecordFormatUpdate' => [ 'shape' => 'RecordFormat', ], 'RecordEncodingUpdate' => [ 'shape' => 'RecordEncoding', ], 'RecordColumnUpdates' => [ 'shape' => 'RecordColumns', ], ], ], 'InputStartingPosition' => [ 'type' => 'string', 'enum' => [ 'NOW', 'TRIM_HORIZON', 'LAST_STOPPED_POINT', ], ], 'InputStartingPositionConfiguration' => [ 'type' => 'structure', 'members' => [ 'InputStartingPosition' => [ 'shape' => 'InputStartingPosition', ], ], ], 'InputUpdate' => [ 'type' => 'structure', 'required' => [ 'InputId', ], 'members' => [ 'InputId' => [ 'shape' => 'Id', ], 'NamePrefixUpdate' => [ 'shape' => 'InAppStreamName', ], 'KinesisStreamsInputUpdate' => [ 'shape' => 'KinesisStreamsInputUpdate', ], 'KinesisFirehoseInputUpdate' => [ 'shape' => 'KinesisFirehoseInputUpdate', ], 'InputSchemaUpdate' => [ 'shape' => 'InputSchemaUpdate', ], 'InputParallelismUpdate' => [ 'shape' => 'InputParallelismUpdate', ], ], ], 'InputUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'InputUpdate', ], ], 'Inputs' => [ 'type' => 'list', 'member' => [ 'shape' => 'Input', ], ], 'InvalidApplicationConfigurationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'InvalidArgumentException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'JSONMappingParameters' => [ 'type' => 'structure', 'required' => [ 'RecordRowPath', ], 'members' => [ 'RecordRowPath' => [ 'shape' => 'RecordRowPath', ], ], ], 'KinesisFirehoseInput' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'RoleARN', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisFirehoseInputDescription' => [ 'type' => 'structure', 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisFirehoseInputUpdate' => [ 'type' => 'structure', 'members' => [ 'ResourceARNUpdate' => [ 'shape' => 'ResourceARN', ], 'RoleARNUpdate' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisFirehoseOutput' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'RoleARN', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisFirehoseOutputDescription' => [ 'type' => 'structure', 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisFirehoseOutputUpdate' => [ 'type' => 'structure', 'members' => [ 'ResourceARNUpdate' => [ 'shape' => 'ResourceARN', ], 'RoleARNUpdate' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisStreamsInput' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'RoleARN', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisStreamsInputDescription' => [ 'type' => 'structure', 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisStreamsInputUpdate' => [ 'type' => 'structure', 'members' => [ 'ResourceARNUpdate' => [ 'shape' => 'ResourceARN', ], 'RoleARNUpdate' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisStreamsOutput' => [ 'type' => 'structure', 'required' => [ 'ResourceARN', 'RoleARN', ], 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisStreamsOutputDescription' => [ 'type' => 'structure', 'members' => [ 'ResourceARN' => [ 'shape' => 'ResourceARN', ], 'RoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'KinesisStreamsOutputUpdate' => [ 'type' => 'structure', 'members' => [ 'ResourceARNUpdate' => [ 'shape' => 'ResourceARN', ], 'RoleARNUpdate' => [ 'shape' => 'RoleARN', ], ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ListApplicationsInputLimit' => [ 'type' => 'integer', 'max' => 50, 'min' => 1, ], 'ListApplicationsRequest' => [ 'type' => 'structure', 'members' => [ 'Limit' => [ 'shape' => 'ListApplicationsInputLimit', ], 'ExclusiveStartApplicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'ListApplicationsResponse' => [ 'type' => 'structure', 'required' => [ 'ApplicationSummaries', 'HasMoreApplications', ], 'members' => [ 'ApplicationSummaries' => [ 'shape' => 'ApplicationSummaries', ], 'HasMoreApplications' => [ 'shape' => 'BooleanObject', ], ], ], 'MappingParameters' => [ 'type' => 'structure', 'members' => [ 'JSONMappingParameters' => [ 'shape' => 'JSONMappingParameters', ], 'CSVMappingParameters' => [ 'shape' => 'CSVMappingParameters', ], ], ], 'Output' => [ 'type' => 'structure', 'required' => [ 'Name', 'DestinationSchema', ], 'members' => [ 'Name' => [ 'shape' => 'InAppStreamName', ], 'KinesisStreamsOutput' => [ 'shape' => 'KinesisStreamsOutput', ], 'KinesisFirehoseOutput' => [ 'shape' => 'KinesisFirehoseOutput', ], 'DestinationSchema' => [ 'shape' => 'DestinationSchema', ], ], ], 'OutputDescription' => [ 'type' => 'structure', 'members' => [ 'OutputId' => [ 'shape' => 'Id', ], 'Name' => [ 'shape' => 'InAppStreamName', ], 'KinesisStreamsOutputDescription' => [ 'shape' => 'KinesisStreamsOutputDescription', ], 'KinesisFirehoseOutputDescription' => [ 'shape' => 'KinesisFirehoseOutputDescription', ], 'DestinationSchema' => [ 'shape' => 'DestinationSchema', ], ], ], 'OutputDescriptions' => [ 'type' => 'list', 'member' => [ 'shape' => 'OutputDescription', ], ], 'OutputUpdate' => [ 'type' => 'structure', 'required' => [ 'OutputId', ], 'members' => [ 'OutputId' => [ 'shape' => 'Id', ], 'NameUpdate' => [ 'shape' => 'InAppStreamName', ], 'KinesisStreamsOutputUpdate' => [ 'shape' => 'KinesisStreamsOutputUpdate', ], 'KinesisFirehoseOutputUpdate' => [ 'shape' => 'KinesisFirehoseOutputUpdate', ], 'DestinationSchemaUpdate' => [ 'shape' => 'DestinationSchema', ], ], ], 'OutputUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'OutputUpdate', ], ], 'Outputs' => [ 'type' => 'list', 'member' => [ 'shape' => 'Output', ], ], 'ParsedInputRecord' => [ 'type' => 'list', 'member' => [ 'shape' => 'ParsedInputRecordField', ], ], 'ParsedInputRecordField' => [ 'type' => 'string', ], 'ParsedInputRecords' => [ 'type' => 'list', 'member' => [ 'shape' => 'ParsedInputRecord', ], ], 'RawInputRecord' => [ 'type' => 'string', ], 'RawInputRecords' => [ 'type' => 'list', 'member' => [ 'shape' => 'RawInputRecord', ], ], 'RecordColumn' => [ 'type' => 'structure', 'required' => [ 'Name', 'SqlType', ], 'members' => [ 'Name' => [ 'shape' => 'RecordColumnName', ], 'Mapping' => [ 'shape' => 'RecordColumnMapping', ], 'SqlType' => [ 'shape' => 'RecordColumnSqlType', ], ], ], 'RecordColumnDelimiter' => [ 'type' => 'string', ], 'RecordColumnMapping' => [ 'type' => 'string', ], 'RecordColumnName' => [ 'type' => 'string', 'pattern' => '[a-zA-Z][a-zA-Z0-9_]+', ], 'RecordColumnSqlType' => [ 'type' => 'string', ], 'RecordColumns' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecordColumn', ], 'max' => 1000, 'min' => 1, ], 'RecordEncoding' => [ 'type' => 'string', 'pattern' => 'UTF-8', ], 'RecordFormat' => [ 'type' => 'structure', 'required' => [ 'RecordFormatType', ], 'members' => [ 'RecordFormatType' => [ 'shape' => 'RecordFormatType', ], 'MappingParameters' => [ 'shape' => 'MappingParameters', ], ], ], 'RecordFormatType' => [ 'type' => 'string', 'enum' => [ 'JSON', 'CSV', ], ], 'RecordRowDelimiter' => [ 'type' => 'string', ], 'RecordRowPath' => [ 'type' => 'string', ], 'ReferenceDataSource' => [ 'type' => 'structure', 'required' => [ 'TableName', 'ReferenceSchema', ], 'members' => [ 'TableName' => [ 'shape' => 'InAppTableName', ], 'S3ReferenceDataSource' => [ 'shape' => 'S3ReferenceDataSource', ], 'ReferenceSchema' => [ 'shape' => 'SourceSchema', ], ], ], 'ReferenceDataSourceDescription' => [ 'type' => 'structure', 'required' => [ 'ReferenceId', 'TableName', 'S3ReferenceDataSourceDescription', ], 'members' => [ 'ReferenceId' => [ 'shape' => 'Id', ], 'TableName' => [ 'shape' => 'InAppTableName', ], 'S3ReferenceDataSourceDescription' => [ 'shape' => 'S3ReferenceDataSourceDescription', ], 'ReferenceSchema' => [ 'shape' => 'SourceSchema', ], ], ], 'ReferenceDataSourceDescriptions' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReferenceDataSourceDescription', ], ], 'ReferenceDataSourceUpdate' => [ 'type' => 'structure', 'required' => [ 'ReferenceId', ], 'members' => [ 'ReferenceId' => [ 'shape' => 'Id', ], 'TableNameUpdate' => [ 'shape' => 'InAppTableName', ], 'S3ReferenceDataSourceUpdate' => [ 'shape' => 'S3ReferenceDataSourceUpdate', ], 'ReferenceSchemaUpdate' => [ 'shape' => 'SourceSchema', ], ], ], 'ReferenceDataSourceUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReferenceDataSourceUpdate', ], ], 'ResourceARN' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => 'arn:[a-zA-Z0-9\\-]+:[a-zA-Z0-9\\-]+:[a-zA-Z0-9\\-]*:\\d{12}:[a-zA-Z_0-9+=,.@\\-_/:]+', ], 'ResourceInUseException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ResourceProvisionedThroughputExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'RoleARN' => [ 'type' => 'string', 'max' => 2048, 'min' => 1, 'pattern' => 'arn:aws:iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+', ], 'S3ReferenceDataSource' => [ 'type' => 'structure', 'required' => [ 'BucketARN', 'FileKey', 'ReferenceRoleARN', ], 'members' => [ 'BucketARN' => [ 'shape' => 'BucketARN', ], 'FileKey' => [ 'shape' => 'FileKey', ], 'ReferenceRoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'S3ReferenceDataSourceDescription' => [ 'type' => 'structure', 'required' => [ 'BucketARN', 'FileKey', 'ReferenceRoleARN', ], 'members' => [ 'BucketARN' => [ 'shape' => 'BucketARN', ], 'FileKey' => [ 'shape' => 'FileKey', ], 'ReferenceRoleARN' => [ 'shape' => 'RoleARN', ], ], ], 'S3ReferenceDataSourceUpdate' => [ 'type' => 'structure', 'members' => [ 'BucketARNUpdate' => [ 'shape' => 'BucketARN', ], 'FileKeyUpdate' => [ 'shape' => 'FileKey', ], 'ReferenceRoleARNUpdate' => [ 'shape' => 'RoleARN', ], ], ], 'SourceSchema' => [ 'type' => 'structure', 'required' => [ 'RecordFormat', 'RecordColumns', ], 'members' => [ 'RecordFormat' => [ 'shape' => 'RecordFormat', ], 'RecordEncoding' => [ 'shape' => 'RecordEncoding', ], 'RecordColumns' => [ 'shape' => 'RecordColumns', ], ], ], 'StartApplicationRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'InputConfigurations', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'InputConfigurations' => [ 'shape' => 'InputConfigurations', ], ], ], 'StartApplicationResponse' => [ 'type' => 'structure', 'members' => [], ], 'StopApplicationRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], ], ], 'StopApplicationResponse' => [ 'type' => 'structure', 'members' => [], ], 'Timestamp' => [ 'type' => 'timestamp', ], 'UnableToDetectSchemaException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], 'RawInputRecords' => [ 'shape' => 'RawInputRecords', ], ], 'exception' => true, ], 'UpdateApplicationRequest' => [ 'type' => 'structure', 'required' => [ 'ApplicationName', 'CurrentApplicationVersionId', 'ApplicationUpdate', ], 'members' => [ 'ApplicationName' => [ 'shape' => 'ApplicationName', ], 'CurrentApplicationVersionId' => [ 'shape' => 'ApplicationVersionId', ], 'ApplicationUpdate' => [ 'shape' => 'ApplicationUpdate', ], ], ], 'UpdateApplicationResponse' => [ 'type' => 'structure', 'members' => [], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/api-2.json.php index 950426501..6c85befd0 100644 --- a/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2014-11-01', 'endpointPrefix' => 'kms', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'KMS', 'serviceFullName' => 'AWS Key Management Service', 'signatureVersion' => 'v4', 'targetPrefix' => 'TrentService', ], 'operations' => [ 'CancelKeyDeletion' => [ 'name' => 'CancelKeyDeletion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelKeyDeletionRequest', ], 'output' => [ 'shape' => 'CancelKeyDeletionResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'CreateAlias' => [ 'name' => 'CreateAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateAliasRequest', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'AlreadyExistsException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidAliasNameException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'CreateGrant' => [ 'name' => 'CreateGrant', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateGrantRequest', ], 'output' => [ 'shape' => 'CreateGrantResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'CreateKey' => [ 'name' => 'CreateKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateKeyRequest', ], 'output' => [ 'shape' => 'CreateKeyResponse', ], 'errors' => [ [ 'shape' => 'MalformedPolicyDocumentException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'UnsupportedOperationException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'Decrypt' => [ 'name' => 'Decrypt', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DecryptRequest', ], 'output' => [ 'shape' => 'DecryptResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'InvalidCiphertextException', ], [ 'shape' => 'KeyUnavailableException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'DeleteAlias' => [ 'name' => 'DeleteAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteAliasRequest', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'DeleteImportedKeyMaterial' => [ 'name' => 'DeleteImportedKeyMaterial', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteImportedKeyMaterialRequest', ], 'errors' => [ [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'UnsupportedOperationException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'DescribeKey' => [ 'name' => 'DescribeKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeKeyRequest', ], 'output' => [ 'shape' => 'DescribeKeyResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], ], ], 'DisableKey' => [ 'name' => 'DisableKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableKeyRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'DisableKeyRotation' => [ 'name' => 'DisableKeyRotation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableKeyRotationRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], [ 'shape' => 'UnsupportedOperationException', ], ], ], 'EnableKey' => [ 'name' => 'EnableKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableKeyRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'EnableKeyRotation' => [ 'name' => 'EnableKeyRotation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableKeyRotationRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], [ 'shape' => 'UnsupportedOperationException', ], ], ], 'Encrypt' => [ 'name' => 'Encrypt', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EncryptRequest', ], 'output' => [ 'shape' => 'EncryptResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'KeyUnavailableException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidKeyUsageException', ], [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'GenerateDataKey' => [ 'name' => 'GenerateDataKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GenerateDataKeyRequest', ], 'output' => [ 'shape' => 'GenerateDataKeyResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'KeyUnavailableException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidKeyUsageException', ], [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'GenerateDataKeyWithoutPlaintext' => [ 'name' => 'GenerateDataKeyWithoutPlaintext', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GenerateDataKeyWithoutPlaintextRequest', ], 'output' => [ 'shape' => 'GenerateDataKeyWithoutPlaintextResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'KeyUnavailableException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidKeyUsageException', ], [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'GenerateRandom' => [ 'name' => 'GenerateRandom', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GenerateRandomRequest', ], 'output' => [ 'shape' => 'GenerateRandomResponse', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], ], ], 'GetKeyPolicy' => [ 'name' => 'GetKeyPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetKeyPolicyRequest', ], 'output' => [ 'shape' => 'GetKeyPolicyResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'GetKeyRotationStatus' => [ 'name' => 'GetKeyRotationStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetKeyRotationStatusRequest', ], 'output' => [ 'shape' => 'GetKeyRotationStatusResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], [ 'shape' => 'UnsupportedOperationException', ], ], ], 'GetParametersForImport' => [ 'name' => 'GetParametersForImport', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetParametersForImportRequest', ], 'output' => [ 'shape' => 'GetParametersForImportResponse', ], 'errors' => [ [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'UnsupportedOperationException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'ImportKeyMaterial' => [ 'name' => 'ImportKeyMaterial', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportKeyMaterialRequest', ], 'output' => [ 'shape' => 'ImportKeyMaterialResponse', ], 'errors' => [ [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'UnsupportedOperationException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], [ 'shape' => 'InvalidCiphertextException', ], [ 'shape' => 'IncorrectKeyMaterialException', ], [ 'shape' => 'ExpiredImportTokenException', ], [ 'shape' => 'InvalidImportTokenException', ], ], ], 'ListAliases' => [ 'name' => 'ListAliases', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListAliasesRequest', ], 'output' => [ 'shape' => 'ListAliasesResponse', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidMarkerException', ], [ 'shape' => 'KMSInternalException', ], ], ], 'ListGrants' => [ 'name' => 'ListGrants', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListGrantsRequest', ], 'output' => [ 'shape' => 'ListGrantsResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidMarkerException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'ListKeyPolicies' => [ 'name' => 'ListKeyPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListKeyPoliciesRequest', ], 'output' => [ 'shape' => 'ListKeyPoliciesResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'ListKeys' => [ 'name' => 'ListKeys', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListKeysRequest', ], 'output' => [ 'shape' => 'ListKeysResponse', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], ], ], 'ListRetirableGrants' => [ 'name' => 'ListRetirableGrants', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListRetirableGrantsRequest', ], 'output' => [ 'shape' => 'ListGrantsResponse', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidMarkerException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'KMSInternalException', ], ], ], 'PutKeyPolicy' => [ 'name' => 'PutKeyPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutKeyPolicyRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'MalformedPolicyDocumentException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'UnsupportedOperationException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'ReEncrypt' => [ 'name' => 'ReEncrypt', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReEncryptRequest', ], 'output' => [ 'shape' => 'ReEncryptResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'InvalidCiphertextException', ], [ 'shape' => 'KeyUnavailableException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidKeyUsageException', ], [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'RetireGrant' => [ 'name' => 'RetireGrant', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RetireGrantRequest', ], 'errors' => [ [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'InvalidGrantIdException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'RevokeGrant' => [ 'name' => 'RevokeGrant', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeGrantRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'InvalidGrantIdException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'ScheduleKeyDeletion' => [ 'name' => 'ScheduleKeyDeletion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ScheduleKeyDeletionRequest', ], 'output' => [ 'shape' => 'ScheduleKeyDeletionResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'UpdateAlias' => [ 'name' => 'UpdateAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateAliasRequest', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'UpdateKeyDescription' => [ 'name' => 'UpdateKeyDescription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateKeyDescriptionRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], ], 'shapes' => [ 'AWSAccountIdType' => [ 'type' => 'string', ], 'AlgorithmSpec' => [ 'type' => 'string', 'enum' => [ 'RSAES_PKCS1_V1_5', 'RSAES_OAEP_SHA_1', 'RSAES_OAEP_SHA_256', ], ], 'AliasList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AliasListEntry', ], ], 'AliasListEntry' => [ 'type' => 'structure', 'members' => [ 'AliasName' => [ 'shape' => 'AliasNameType', ], 'AliasArn' => [ 'shape' => 'ArnType', ], 'TargetKeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'AliasNameType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '^[a-zA-Z0-9:/_-]+$', ], 'AlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'ArnType' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, ], 'BooleanType' => [ 'type' => 'boolean', ], 'CancelKeyDeletionRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'CancelKeyDeletionResponse' => [ 'type' => 'structure', 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'CiphertextType' => [ 'type' => 'blob', 'max' => 6144, 'min' => 1, ], 'CreateAliasRequest' => [ 'type' => 'structure', 'required' => [ 'AliasName', 'TargetKeyId', ], 'members' => [ 'AliasName' => [ 'shape' => 'AliasNameType', ], 'TargetKeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'CreateGrantRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'GranteePrincipal', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'GranteePrincipal' => [ 'shape' => 'PrincipalIdType', ], 'RetiringPrincipal' => [ 'shape' => 'PrincipalIdType', ], 'Operations' => [ 'shape' => 'GrantOperationList', ], 'Constraints' => [ 'shape' => 'GrantConstraints', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], 'Name' => [ 'shape' => 'GrantNameType', ], ], ], 'CreateGrantResponse' => [ 'type' => 'structure', 'members' => [ 'GrantToken' => [ 'shape' => 'GrantTokenType', ], 'GrantId' => [ 'shape' => 'GrantIdType', ], ], ], 'CreateKeyRequest' => [ 'type' => 'structure', 'members' => [ 'Policy' => [ 'shape' => 'PolicyType', ], 'Description' => [ 'shape' => 'DescriptionType', ], 'KeyUsage' => [ 'shape' => 'KeyUsageType', ], 'Origin' => [ 'shape' => 'OriginType', ], 'BypassPolicyLockoutSafetyCheck' => [ 'shape' => 'BooleanType', ], ], ], 'CreateKeyResponse' => [ 'type' => 'structure', 'members' => [ 'KeyMetadata' => [ 'shape' => 'KeyMetadata', ], ], ], 'DataKeySpec' => [ 'type' => 'string', 'enum' => [ 'AES_256', 'AES_128', ], ], 'DateType' => [ 'type' => 'timestamp', ], 'DecryptRequest' => [ 'type' => 'structure', 'required' => [ 'CiphertextBlob', ], 'members' => [ 'CiphertextBlob' => [ 'shape' => 'CiphertextType', ], 'EncryptionContext' => [ 'shape' => 'EncryptionContextType', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], ], ], 'DecryptResponse' => [ 'type' => 'structure', 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'Plaintext' => [ 'shape' => 'PlaintextType', ], ], ], 'DeleteAliasRequest' => [ 'type' => 'structure', 'required' => [ 'AliasName', ], 'members' => [ 'AliasName' => [ 'shape' => 'AliasNameType', ], ], ], 'DeleteImportedKeyMaterialRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'DependencyTimeoutException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, 'fault' => true, ], 'DescribeKeyRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], ], ], 'DescribeKeyResponse' => [ 'type' => 'structure', 'members' => [ 'KeyMetadata' => [ 'shape' => 'KeyMetadata', ], ], ], 'DescriptionType' => [ 'type' => 'string', 'max' => 8192, 'min' => 0, ], 'DisableKeyRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'DisableKeyRotationRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'DisabledException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'EnableKeyRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'EnableKeyRotationRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'EncryptRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'Plaintext', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'Plaintext' => [ 'shape' => 'PlaintextType', ], 'EncryptionContext' => [ 'shape' => 'EncryptionContextType', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], ], ], 'EncryptResponse' => [ 'type' => 'structure', 'members' => [ 'CiphertextBlob' => [ 'shape' => 'CiphertextType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'EncryptionContextKey' => [ 'type' => 'string', ], 'EncryptionContextType' => [ 'type' => 'map', 'key' => [ 'shape' => 'EncryptionContextKey', ], 'value' => [ 'shape' => 'EncryptionContextValue', ], ], 'EncryptionContextValue' => [ 'type' => 'string', ], 'ErrorMessageType' => [ 'type' => 'string', ], 'ExpirationModelType' => [ 'type' => 'string', 'enum' => [ 'KEY_MATERIAL_EXPIRES', 'KEY_MATERIAL_DOES_NOT_EXPIRE', ], ], 'ExpiredImportTokenException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'GenerateDataKeyRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'EncryptionContext' => [ 'shape' => 'EncryptionContextType', ], 'NumberOfBytes' => [ 'shape' => 'NumberOfBytesType', ], 'KeySpec' => [ 'shape' => 'DataKeySpec', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], ], ], 'GenerateDataKeyResponse' => [ 'type' => 'structure', 'members' => [ 'CiphertextBlob' => [ 'shape' => 'CiphertextType', ], 'Plaintext' => [ 'shape' => 'PlaintextType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'GenerateDataKeyWithoutPlaintextRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'EncryptionContext' => [ 'shape' => 'EncryptionContextType', ], 'KeySpec' => [ 'shape' => 'DataKeySpec', ], 'NumberOfBytes' => [ 'shape' => 'NumberOfBytesType', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], ], ], 'GenerateDataKeyWithoutPlaintextResponse' => [ 'type' => 'structure', 'members' => [ 'CiphertextBlob' => [ 'shape' => 'CiphertextType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'GenerateRandomRequest' => [ 'type' => 'structure', 'members' => [ 'NumberOfBytes' => [ 'shape' => 'NumberOfBytesType', ], ], ], 'GenerateRandomResponse' => [ 'type' => 'structure', 'members' => [ 'Plaintext' => [ 'shape' => 'PlaintextType', ], ], ], 'GetKeyPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'PolicyName', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'PolicyName' => [ 'shape' => 'PolicyNameType', ], ], ], 'GetKeyPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'Policy' => [ 'shape' => 'PolicyType', ], ], ], 'GetKeyRotationStatusRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'GetKeyRotationStatusResponse' => [ 'type' => 'structure', 'members' => [ 'KeyRotationEnabled' => [ 'shape' => 'BooleanType', ], ], ], 'GetParametersForImportRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'WrappingAlgorithm', 'WrappingKeySpec', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'WrappingAlgorithm' => [ 'shape' => 'AlgorithmSpec', ], 'WrappingKeySpec' => [ 'shape' => 'WrappingKeySpec', ], ], ], 'GetParametersForImportResponse' => [ 'type' => 'structure', 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'ImportToken' => [ 'shape' => 'CiphertextType', ], 'PublicKey' => [ 'shape' => 'PlaintextType', ], 'ParametersValidTo' => [ 'shape' => 'DateType', ], ], ], 'GrantConstraints' => [ 'type' => 'structure', 'members' => [ 'EncryptionContextSubset' => [ 'shape' => 'EncryptionContextType', ], 'EncryptionContextEquals' => [ 'shape' => 'EncryptionContextType', ], ], ], 'GrantIdType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'GrantList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GrantListEntry', ], ], 'GrantListEntry' => [ 'type' => 'structure', 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'GrantId' => [ 'shape' => 'GrantIdType', ], 'Name' => [ 'shape' => 'GrantNameType', ], 'CreationDate' => [ 'shape' => 'DateType', ], 'GranteePrincipal' => [ 'shape' => 'PrincipalIdType', ], 'RetiringPrincipal' => [ 'shape' => 'PrincipalIdType', ], 'IssuingAccount' => [ 'shape' => 'PrincipalIdType', ], 'Operations' => [ 'shape' => 'GrantOperationList', ], 'Constraints' => [ 'shape' => 'GrantConstraints', ], ], ], 'GrantNameType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '^[a-zA-Z0-9:/_-]+$', ], 'GrantOperation' => [ 'type' => 'string', 'enum' => [ 'Decrypt', 'Encrypt', 'GenerateDataKey', 'GenerateDataKeyWithoutPlaintext', 'ReEncryptFrom', 'ReEncryptTo', 'CreateGrant', 'RetireGrant', 'DescribeKey', ], ], 'GrantOperationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GrantOperation', ], ], 'GrantTokenList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GrantTokenType', ], 'max' => 10, 'min' => 0, ], 'GrantTokenType' => [ 'type' => 'string', 'max' => 8192, 'min' => 1, ], 'ImportKeyMaterialRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'ImportToken', 'EncryptedKeyMaterial', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'ImportToken' => [ 'shape' => 'CiphertextType', ], 'EncryptedKeyMaterial' => [ 'shape' => 'CiphertextType', ], 'ValidTo' => [ 'shape' => 'DateType', ], 'ExpirationModel' => [ 'shape' => 'ExpirationModelType', ], ], ], 'ImportKeyMaterialResponse' => [ 'type' => 'structure', 'members' => [], ], 'IncorrectKeyMaterialException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidAliasNameException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidArnException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidCiphertextException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidGrantIdException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidGrantTokenException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidImportTokenException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidKeyUsageException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidMarkerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'KMSInternalException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'KMSInvalidStateException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'KeyIdType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'KeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyListEntry', ], ], 'KeyListEntry' => [ 'type' => 'structure', 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'KeyArn' => [ 'shape' => 'ArnType', ], ], ], 'KeyMetadata' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'AWSAccountId' => [ 'shape' => 'AWSAccountIdType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], 'Arn' => [ 'shape' => 'ArnType', ], 'CreationDate' => [ 'shape' => 'DateType', ], 'Enabled' => [ 'shape' => 'BooleanType', ], 'Description' => [ 'shape' => 'DescriptionType', ], 'KeyUsage' => [ 'shape' => 'KeyUsageType', ], 'KeyState' => [ 'shape' => 'KeyState', ], 'DeletionDate' => [ 'shape' => 'DateType', ], 'ValidTo' => [ 'shape' => 'DateType', ], 'Origin' => [ 'shape' => 'OriginType', ], 'ExpirationModel' => [ 'shape' => 'ExpirationModelType', ], ], ], 'KeyState' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', 'PendingDeletion', 'PendingImport', ], ], 'KeyUnavailableException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, 'fault' => true, ], 'KeyUsageType' => [ 'type' => 'string', 'enum' => [ 'ENCRYPT_DECRYPT', ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'LimitType' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'ListAliasesRequest' => [ 'type' => 'structure', 'members' => [ 'Limit' => [ 'shape' => 'LimitType', ], 'Marker' => [ 'shape' => 'MarkerType', ], ], ], 'ListAliasesResponse' => [ 'type' => 'structure', 'members' => [ 'Aliases' => [ 'shape' => 'AliasList', ], 'NextMarker' => [ 'shape' => 'MarkerType', ], 'Truncated' => [ 'shape' => 'BooleanType', ], ], ], 'ListGrantsRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'Limit' => [ 'shape' => 'LimitType', ], 'Marker' => [ 'shape' => 'MarkerType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'ListGrantsResponse' => [ 'type' => 'structure', 'members' => [ 'Grants' => [ 'shape' => 'GrantList', ], 'NextMarker' => [ 'shape' => 'MarkerType', ], 'Truncated' => [ 'shape' => 'BooleanType', ], ], ], 'ListKeyPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'Limit' => [ 'shape' => 'LimitType', ], 'Marker' => [ 'shape' => 'MarkerType', ], ], ], 'ListKeyPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'PolicyNames' => [ 'shape' => 'PolicyNameList', ], 'NextMarker' => [ 'shape' => 'MarkerType', ], 'Truncated' => [ 'shape' => 'BooleanType', ], ], ], 'ListKeysRequest' => [ 'type' => 'structure', 'members' => [ 'Limit' => [ 'shape' => 'LimitType', ], 'Marker' => [ 'shape' => 'MarkerType', ], ], ], 'ListKeysResponse' => [ 'type' => 'structure', 'members' => [ 'Keys' => [ 'shape' => 'KeyList', ], 'NextMarker' => [ 'shape' => 'MarkerType', ], 'Truncated' => [ 'shape' => 'BooleanType', ], ], ], 'ListRetirableGrantsRequest' => [ 'type' => 'structure', 'required' => [ 'RetiringPrincipal', ], 'members' => [ 'Limit' => [ 'shape' => 'LimitType', ], 'Marker' => [ 'shape' => 'MarkerType', ], 'RetiringPrincipal' => [ 'shape' => 'PrincipalIdType', ], ], ], 'MalformedPolicyDocumentException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'MarkerType' => [ 'type' => 'string', 'max' => 320, 'min' => 1, 'pattern' => '[\\u0020-\\u00FF]*', ], 'NotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'NumberOfBytesType' => [ 'type' => 'integer', 'max' => 1024, 'min' => 1, ], 'OriginType' => [ 'type' => 'string', 'enum' => [ 'AWS_KMS', 'EXTERNAL', ], ], 'PendingWindowInDaysType' => [ 'type' => 'integer', 'max' => 365, 'min' => 1, ], 'PlaintextType' => [ 'type' => 'blob', 'max' => 4096, 'min' => 1, 'sensitive' => true, ], 'PolicyNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyNameType', ], ], 'PolicyNameType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w]+', ], 'PolicyType' => [ 'type' => 'string', 'max' => 131072, 'min' => 1, 'pattern' => '[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+', ], 'PrincipalIdType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'PutKeyPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'PolicyName', 'Policy', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'PolicyName' => [ 'shape' => 'PolicyNameType', ], 'Policy' => [ 'shape' => 'PolicyType', ], 'BypassPolicyLockoutSafetyCheck' => [ 'shape' => 'BooleanType', ], ], ], 'ReEncryptRequest' => [ 'type' => 'structure', 'required' => [ 'CiphertextBlob', 'DestinationKeyId', ], 'members' => [ 'CiphertextBlob' => [ 'shape' => 'CiphertextType', ], 'SourceEncryptionContext' => [ 'shape' => 'EncryptionContextType', ], 'DestinationKeyId' => [ 'shape' => 'KeyIdType', ], 'DestinationEncryptionContext' => [ 'shape' => 'EncryptionContextType', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], ], ], 'ReEncryptResponse' => [ 'type' => 'structure', 'members' => [ 'CiphertextBlob' => [ 'shape' => 'CiphertextType', ], 'SourceKeyId' => [ 'shape' => 'KeyIdType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'RetireGrantRequest' => [ 'type' => 'structure', 'members' => [ 'GrantToken' => [ 'shape' => 'GrantTokenType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], 'GrantId' => [ 'shape' => 'GrantIdType', ], ], ], 'RevokeGrantRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'GrantId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'GrantId' => [ 'shape' => 'GrantIdType', ], ], ], 'ScheduleKeyDeletionRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'PendingWindowInDays' => [ 'shape' => 'PendingWindowInDaysType', ], ], ], 'ScheduleKeyDeletionResponse' => [ 'type' => 'structure', 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'DeletionDate' => [ 'shape' => 'DateType', ], ], ], 'UnsupportedOperationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'UpdateAliasRequest' => [ 'type' => 'structure', 'required' => [ 'AliasName', 'TargetKeyId', ], 'members' => [ 'AliasName' => [ 'shape' => 'AliasNameType', ], 'TargetKeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'UpdateKeyDescriptionRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'Description', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'Description' => [ 'shape' => 'DescriptionType', ], ], ], 'WrappingKeySpec' => [ 'type' => 'string', 'enum' => [ 'RSA_2048', ], ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2014-11-01', 'endpointPrefix' => 'kms', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'KMS', 'serviceFullName' => 'AWS Key Management Service', 'signatureVersion' => 'v4', 'targetPrefix' => 'TrentService', ], 'operations' => [ 'CancelKeyDeletion' => [ 'name' => 'CancelKeyDeletion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CancelKeyDeletionRequest', ], 'output' => [ 'shape' => 'CancelKeyDeletionResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'CreateAlias' => [ 'name' => 'CreateAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateAliasRequest', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'AlreadyExistsException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidAliasNameException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'CreateGrant' => [ 'name' => 'CreateGrant', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateGrantRequest', ], 'output' => [ 'shape' => 'CreateGrantResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'CreateKey' => [ 'name' => 'CreateKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateKeyRequest', ], 'output' => [ 'shape' => 'CreateKeyResponse', ], 'errors' => [ [ 'shape' => 'MalformedPolicyDocumentException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'UnsupportedOperationException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'LimitExceededException', ], ], ], 'Decrypt' => [ 'name' => 'Decrypt', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DecryptRequest', ], 'output' => [ 'shape' => 'DecryptResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'InvalidCiphertextException', ], [ 'shape' => 'KeyUnavailableException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'DeleteAlias' => [ 'name' => 'DeleteAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteAliasRequest', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'DeleteImportedKeyMaterial' => [ 'name' => 'DeleteImportedKeyMaterial', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteImportedKeyMaterialRequest', ], 'errors' => [ [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'UnsupportedOperationException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'DescribeKey' => [ 'name' => 'DescribeKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeKeyRequest', ], 'output' => [ 'shape' => 'DescribeKeyResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], ], ], 'DisableKey' => [ 'name' => 'DisableKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableKeyRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'DisableKeyRotation' => [ 'name' => 'DisableKeyRotation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableKeyRotationRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], [ 'shape' => 'UnsupportedOperationException', ], ], ], 'EnableKey' => [ 'name' => 'EnableKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableKeyRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'EnableKeyRotation' => [ 'name' => 'EnableKeyRotation', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableKeyRotationRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], [ 'shape' => 'UnsupportedOperationException', ], ], ], 'Encrypt' => [ 'name' => 'Encrypt', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EncryptRequest', ], 'output' => [ 'shape' => 'EncryptResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'KeyUnavailableException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidKeyUsageException', ], [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'GenerateDataKey' => [ 'name' => 'GenerateDataKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GenerateDataKeyRequest', ], 'output' => [ 'shape' => 'GenerateDataKeyResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'KeyUnavailableException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidKeyUsageException', ], [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'GenerateDataKeyWithoutPlaintext' => [ 'name' => 'GenerateDataKeyWithoutPlaintext', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GenerateDataKeyWithoutPlaintextRequest', ], 'output' => [ 'shape' => 'GenerateDataKeyWithoutPlaintextResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'KeyUnavailableException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidKeyUsageException', ], [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'GenerateRandom' => [ 'name' => 'GenerateRandom', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GenerateRandomRequest', ], 'output' => [ 'shape' => 'GenerateRandomResponse', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], ], ], 'GetKeyPolicy' => [ 'name' => 'GetKeyPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetKeyPolicyRequest', ], 'output' => [ 'shape' => 'GetKeyPolicyResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'GetKeyRotationStatus' => [ 'name' => 'GetKeyRotationStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetKeyRotationStatusRequest', ], 'output' => [ 'shape' => 'GetKeyRotationStatusResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], [ 'shape' => 'UnsupportedOperationException', ], ], ], 'GetParametersForImport' => [ 'name' => 'GetParametersForImport', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetParametersForImportRequest', ], 'output' => [ 'shape' => 'GetParametersForImportResponse', ], 'errors' => [ [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'UnsupportedOperationException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'ImportKeyMaterial' => [ 'name' => 'ImportKeyMaterial', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportKeyMaterialRequest', ], 'output' => [ 'shape' => 'ImportKeyMaterialResponse', ], 'errors' => [ [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'UnsupportedOperationException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], [ 'shape' => 'InvalidCiphertextException', ], [ 'shape' => 'IncorrectKeyMaterialException', ], [ 'shape' => 'ExpiredImportTokenException', ], [ 'shape' => 'InvalidImportTokenException', ], ], ], 'ListAliases' => [ 'name' => 'ListAliases', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListAliasesRequest', ], 'output' => [ 'shape' => 'ListAliasesResponse', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidMarkerException', ], [ 'shape' => 'KMSInternalException', ], ], ], 'ListGrants' => [ 'name' => 'ListGrants', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListGrantsRequest', ], 'output' => [ 'shape' => 'ListGrantsResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidMarkerException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'ListKeyPolicies' => [ 'name' => 'ListKeyPolicies', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListKeyPoliciesRequest', ], 'output' => [ 'shape' => 'ListKeyPoliciesResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'ListKeys' => [ 'name' => 'ListKeys', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListKeysRequest', ], 'output' => [ 'shape' => 'ListKeysResponse', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'InvalidMarkerException', ], ], ], 'ListRetirableGrants' => [ 'name' => 'ListRetirableGrants', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListRetirableGrantsRequest', ], 'output' => [ 'shape' => 'ListGrantsResponse', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidMarkerException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'KMSInternalException', ], ], ], 'PutKeyPolicy' => [ 'name' => 'PutKeyPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PutKeyPolicyRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'MalformedPolicyDocumentException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'UnsupportedOperationException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'LimitExceededException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'ReEncrypt' => [ 'name' => 'ReEncrypt', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ReEncryptRequest', ], 'output' => [ 'shape' => 'ReEncryptResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DisabledException', ], [ 'shape' => 'InvalidCiphertextException', ], [ 'shape' => 'KeyUnavailableException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidKeyUsageException', ], [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'RetireGrant' => [ 'name' => 'RetireGrant', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RetireGrantRequest', ], 'errors' => [ [ 'shape' => 'InvalidGrantTokenException', ], [ 'shape' => 'InvalidGrantIdException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'RevokeGrant' => [ 'name' => 'RevokeGrant', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeGrantRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'InvalidGrantIdException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'ScheduleKeyDeletion' => [ 'name' => 'ScheduleKeyDeletion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ScheduleKeyDeletionRequest', ], 'output' => [ 'shape' => 'ScheduleKeyDeletionResponse', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'UpdateAlias' => [ 'name' => 'UpdateAlias', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateAliasRequest', ], 'errors' => [ [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'NotFoundException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], 'UpdateKeyDescription' => [ 'name' => 'UpdateKeyDescription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateKeyDescriptionRequest', ], 'errors' => [ [ 'shape' => 'NotFoundException', ], [ 'shape' => 'InvalidArnException', ], [ 'shape' => 'DependencyTimeoutException', ], [ 'shape' => 'KMSInternalException', ], [ 'shape' => 'KMSInvalidStateException', ], ], ], ], 'shapes' => [ 'AWSAccountIdType' => [ 'type' => 'string', ], 'AlgorithmSpec' => [ 'type' => 'string', 'enum' => [ 'RSAES_PKCS1_V1_5', 'RSAES_OAEP_SHA_1', 'RSAES_OAEP_SHA_256', ], ], 'AliasList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AliasListEntry', ], ], 'AliasListEntry' => [ 'type' => 'structure', 'members' => [ 'AliasName' => [ 'shape' => 'AliasNameType', ], 'AliasArn' => [ 'shape' => 'ArnType', ], 'TargetKeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'AliasNameType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '^[a-zA-Z0-9:/_-]+$', ], 'AlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'ArnType' => [ 'type' => 'string', 'max' => 2048, 'min' => 20, ], 'BooleanType' => [ 'type' => 'boolean', ], 'CancelKeyDeletionRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'CancelKeyDeletionResponse' => [ 'type' => 'structure', 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'CiphertextType' => [ 'type' => 'blob', 'max' => 6144, 'min' => 1, ], 'CreateAliasRequest' => [ 'type' => 'structure', 'required' => [ 'AliasName', 'TargetKeyId', ], 'members' => [ 'AliasName' => [ 'shape' => 'AliasNameType', ], 'TargetKeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'CreateGrantRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'GranteePrincipal', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'GranteePrincipal' => [ 'shape' => 'PrincipalIdType', ], 'RetiringPrincipal' => [ 'shape' => 'PrincipalIdType', ], 'Operations' => [ 'shape' => 'GrantOperationList', ], 'Constraints' => [ 'shape' => 'GrantConstraints', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], 'Name' => [ 'shape' => 'GrantNameType', ], ], ], 'CreateGrantResponse' => [ 'type' => 'structure', 'members' => [ 'GrantToken' => [ 'shape' => 'GrantTokenType', ], 'GrantId' => [ 'shape' => 'GrantIdType', ], ], ], 'CreateKeyRequest' => [ 'type' => 'structure', 'members' => [ 'Policy' => [ 'shape' => 'PolicyType', ], 'Description' => [ 'shape' => 'DescriptionType', ], 'KeyUsage' => [ 'shape' => 'KeyUsageType', ], 'Origin' => [ 'shape' => 'OriginType', ], 'BypassPolicyLockoutSafetyCheck' => [ 'shape' => 'BooleanType', ], ], ], 'CreateKeyResponse' => [ 'type' => 'structure', 'members' => [ 'KeyMetadata' => [ 'shape' => 'KeyMetadata', ], ], ], 'DataKeySpec' => [ 'type' => 'string', 'enum' => [ 'AES_256', 'AES_128', ], ], 'DateType' => [ 'type' => 'timestamp', ], 'DecryptRequest' => [ 'type' => 'structure', 'required' => [ 'CiphertextBlob', ], 'members' => [ 'CiphertextBlob' => [ 'shape' => 'CiphertextType', ], 'EncryptionContext' => [ 'shape' => 'EncryptionContextType', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], ], ], 'DecryptResponse' => [ 'type' => 'structure', 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'Plaintext' => [ 'shape' => 'PlaintextType', ], ], ], 'DeleteAliasRequest' => [ 'type' => 'structure', 'required' => [ 'AliasName', ], 'members' => [ 'AliasName' => [ 'shape' => 'AliasNameType', ], ], ], 'DeleteImportedKeyMaterialRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'DependencyTimeoutException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, 'fault' => true, ], 'DescribeKeyRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], ], ], 'DescribeKeyResponse' => [ 'type' => 'structure', 'members' => [ 'KeyMetadata' => [ 'shape' => 'KeyMetadata', ], ], ], 'DescriptionType' => [ 'type' => 'string', 'max' => 8192, 'min' => 0, ], 'DisableKeyRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'DisableKeyRotationRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'DisabledException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'EnableKeyRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'EnableKeyRotationRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'EncryptRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'Plaintext', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'Plaintext' => [ 'shape' => 'PlaintextType', ], 'EncryptionContext' => [ 'shape' => 'EncryptionContextType', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], ], ], 'EncryptResponse' => [ 'type' => 'structure', 'members' => [ 'CiphertextBlob' => [ 'shape' => 'CiphertextType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'EncryptionContextKey' => [ 'type' => 'string', ], 'EncryptionContextType' => [ 'type' => 'map', 'key' => [ 'shape' => 'EncryptionContextKey', ], 'value' => [ 'shape' => 'EncryptionContextValue', ], ], 'EncryptionContextValue' => [ 'type' => 'string', ], 'ErrorMessageType' => [ 'type' => 'string', ], 'ExpirationModelType' => [ 'type' => 'string', 'enum' => [ 'KEY_MATERIAL_EXPIRES', 'KEY_MATERIAL_DOES_NOT_EXPIRE', ], ], 'ExpiredImportTokenException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'GenerateDataKeyRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'EncryptionContext' => [ 'shape' => 'EncryptionContextType', ], 'NumberOfBytes' => [ 'shape' => 'NumberOfBytesType', ], 'KeySpec' => [ 'shape' => 'DataKeySpec', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], ], ], 'GenerateDataKeyResponse' => [ 'type' => 'structure', 'members' => [ 'CiphertextBlob' => [ 'shape' => 'CiphertextType', ], 'Plaintext' => [ 'shape' => 'PlaintextType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'GenerateDataKeyWithoutPlaintextRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'EncryptionContext' => [ 'shape' => 'EncryptionContextType', ], 'KeySpec' => [ 'shape' => 'DataKeySpec', ], 'NumberOfBytes' => [ 'shape' => 'NumberOfBytesType', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], ], ], 'GenerateDataKeyWithoutPlaintextResponse' => [ 'type' => 'structure', 'members' => [ 'CiphertextBlob' => [ 'shape' => 'CiphertextType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'GenerateRandomRequest' => [ 'type' => 'structure', 'members' => [ 'NumberOfBytes' => [ 'shape' => 'NumberOfBytesType', ], ], ], 'GenerateRandomResponse' => [ 'type' => 'structure', 'members' => [ 'Plaintext' => [ 'shape' => 'PlaintextType', ], ], ], 'GetKeyPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'PolicyName', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'PolicyName' => [ 'shape' => 'PolicyNameType', ], ], ], 'GetKeyPolicyResponse' => [ 'type' => 'structure', 'members' => [ 'Policy' => [ 'shape' => 'PolicyType', ], ], ], 'GetKeyRotationStatusRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'GetKeyRotationStatusResponse' => [ 'type' => 'structure', 'members' => [ 'KeyRotationEnabled' => [ 'shape' => 'BooleanType', ], ], ], 'GetParametersForImportRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'WrappingAlgorithm', 'WrappingKeySpec', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'WrappingAlgorithm' => [ 'shape' => 'AlgorithmSpec', ], 'WrappingKeySpec' => [ 'shape' => 'WrappingKeySpec', ], ], ], 'GetParametersForImportResponse' => [ 'type' => 'structure', 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'ImportToken' => [ 'shape' => 'CiphertextType', ], 'PublicKey' => [ 'shape' => 'PlaintextType', ], 'ParametersValidTo' => [ 'shape' => 'DateType', ], ], ], 'GrantConstraints' => [ 'type' => 'structure', 'members' => [ 'EncryptionContextSubset' => [ 'shape' => 'EncryptionContextType', ], 'EncryptionContextEquals' => [ 'shape' => 'EncryptionContextType', ], ], ], 'GrantIdType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'GrantList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GrantListEntry', ], ], 'GrantListEntry' => [ 'type' => 'structure', 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'GrantId' => [ 'shape' => 'GrantIdType', ], 'Name' => [ 'shape' => 'GrantNameType', ], 'CreationDate' => [ 'shape' => 'DateType', ], 'GranteePrincipal' => [ 'shape' => 'PrincipalIdType', ], 'RetiringPrincipal' => [ 'shape' => 'PrincipalIdType', ], 'IssuingAccount' => [ 'shape' => 'PrincipalIdType', ], 'Operations' => [ 'shape' => 'GrantOperationList', ], 'Constraints' => [ 'shape' => 'GrantConstraints', ], ], ], 'GrantNameType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '^[a-zA-Z0-9:/_-]+$', ], 'GrantOperation' => [ 'type' => 'string', 'enum' => [ 'Decrypt', 'Encrypt', 'GenerateDataKey', 'GenerateDataKeyWithoutPlaintext', 'ReEncryptFrom', 'ReEncryptTo', 'CreateGrant', 'RetireGrant', 'DescribeKey', ], ], 'GrantOperationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GrantOperation', ], ], 'GrantTokenList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GrantTokenType', ], 'max' => 10, 'min' => 0, ], 'GrantTokenType' => [ 'type' => 'string', 'max' => 8192, 'min' => 1, ], 'ImportKeyMaterialRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'ImportToken', 'EncryptedKeyMaterial', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'ImportToken' => [ 'shape' => 'CiphertextType', ], 'EncryptedKeyMaterial' => [ 'shape' => 'CiphertextType', ], 'ValidTo' => [ 'shape' => 'DateType', ], 'ExpirationModel' => [ 'shape' => 'ExpirationModelType', ], ], ], 'ImportKeyMaterialResponse' => [ 'type' => 'structure', 'members' => [], ], 'IncorrectKeyMaterialException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidAliasNameException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidArnException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidCiphertextException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidGrantIdException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidGrantTokenException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidImportTokenException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidKeyUsageException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'InvalidMarkerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'KMSInternalException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'KMSInvalidStateException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'KeyIdType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'KeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'KeyListEntry', ], ], 'KeyListEntry' => [ 'type' => 'structure', 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'KeyArn' => [ 'shape' => 'ArnType', ], ], ], 'KeyMetadata' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'AWSAccountId' => [ 'shape' => 'AWSAccountIdType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], 'Arn' => [ 'shape' => 'ArnType', ], 'CreationDate' => [ 'shape' => 'DateType', ], 'Enabled' => [ 'shape' => 'BooleanType', ], 'Description' => [ 'shape' => 'DescriptionType', ], 'KeyUsage' => [ 'shape' => 'KeyUsageType', ], 'KeyState' => [ 'shape' => 'KeyState', ], 'DeletionDate' => [ 'shape' => 'DateType', ], 'ValidTo' => [ 'shape' => 'DateType', ], 'Origin' => [ 'shape' => 'OriginType', ], 'ExpirationModel' => [ 'shape' => 'ExpirationModelType', ], ], ], 'KeyState' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', 'PendingDeletion', 'PendingImport', ], ], 'KeyUnavailableException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, 'fault' => true, ], 'KeyUsageType' => [ 'type' => 'string', 'enum' => [ 'ENCRYPT_DECRYPT', ], ], 'LimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'LimitType' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'ListAliasesRequest' => [ 'type' => 'structure', 'members' => [ 'Limit' => [ 'shape' => 'LimitType', ], 'Marker' => [ 'shape' => 'MarkerType', ], ], ], 'ListAliasesResponse' => [ 'type' => 'structure', 'members' => [ 'Aliases' => [ 'shape' => 'AliasList', ], 'NextMarker' => [ 'shape' => 'MarkerType', ], 'Truncated' => [ 'shape' => 'BooleanType', ], ], ], 'ListGrantsRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'Limit' => [ 'shape' => 'LimitType', ], 'Marker' => [ 'shape' => 'MarkerType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'ListGrantsResponse' => [ 'type' => 'structure', 'members' => [ 'Grants' => [ 'shape' => 'GrantList', ], 'NextMarker' => [ 'shape' => 'MarkerType', ], 'Truncated' => [ 'shape' => 'BooleanType', ], ], ], 'ListKeyPoliciesRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'Limit' => [ 'shape' => 'LimitType', ], 'Marker' => [ 'shape' => 'MarkerType', ], ], ], 'ListKeyPoliciesResponse' => [ 'type' => 'structure', 'members' => [ 'PolicyNames' => [ 'shape' => 'PolicyNameList', ], 'NextMarker' => [ 'shape' => 'MarkerType', ], 'Truncated' => [ 'shape' => 'BooleanType', ], ], ], 'ListKeysRequest' => [ 'type' => 'structure', 'members' => [ 'Limit' => [ 'shape' => 'LimitType', ], 'Marker' => [ 'shape' => 'MarkerType', ], ], ], 'ListKeysResponse' => [ 'type' => 'structure', 'members' => [ 'Keys' => [ 'shape' => 'KeyList', ], 'NextMarker' => [ 'shape' => 'MarkerType', ], 'Truncated' => [ 'shape' => 'BooleanType', ], ], ], 'ListRetirableGrantsRequest' => [ 'type' => 'structure', 'required' => [ 'RetiringPrincipal', ], 'members' => [ 'Limit' => [ 'shape' => 'LimitType', ], 'Marker' => [ 'shape' => 'MarkerType', ], 'RetiringPrincipal' => [ 'shape' => 'PrincipalIdType', ], ], ], 'MalformedPolicyDocumentException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'MarkerType' => [ 'type' => 'string', 'max' => 320, 'min' => 1, 'pattern' => '[\\u0020-\\u00FF]*', ], 'NotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'NumberOfBytesType' => [ 'type' => 'integer', 'max' => 1024, 'min' => 1, ], 'OriginType' => [ 'type' => 'string', 'enum' => [ 'AWS_KMS', 'EXTERNAL', ], ], 'PendingWindowInDaysType' => [ 'type' => 'integer', 'max' => 365, 'min' => 1, ], 'PlaintextType' => [ 'type' => 'blob', 'max' => 4096, 'min' => 1, 'sensitive' => true, ], 'PolicyNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'PolicyNameType', ], ], 'PolicyNameType' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[\\w]+', ], 'PolicyType' => [ 'type' => 'string', 'max' => 131072, 'min' => 1, 'pattern' => '[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+', ], 'PrincipalIdType' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'PutKeyPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'PolicyName', 'Policy', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'PolicyName' => [ 'shape' => 'PolicyNameType', ], 'Policy' => [ 'shape' => 'PolicyType', ], 'BypassPolicyLockoutSafetyCheck' => [ 'shape' => 'BooleanType', ], ], ], 'ReEncryptRequest' => [ 'type' => 'structure', 'required' => [ 'CiphertextBlob', 'DestinationKeyId', ], 'members' => [ 'CiphertextBlob' => [ 'shape' => 'CiphertextType', ], 'SourceEncryptionContext' => [ 'shape' => 'EncryptionContextType', ], 'DestinationKeyId' => [ 'shape' => 'KeyIdType', ], 'DestinationEncryptionContext' => [ 'shape' => 'EncryptionContextType', ], 'GrantTokens' => [ 'shape' => 'GrantTokenList', ], ], ], 'ReEncryptResponse' => [ 'type' => 'structure', 'members' => [ 'CiphertextBlob' => [ 'shape' => 'CiphertextType', ], 'SourceKeyId' => [ 'shape' => 'KeyIdType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'RetireGrantRequest' => [ 'type' => 'structure', 'members' => [ 'GrantToken' => [ 'shape' => 'GrantTokenType', ], 'KeyId' => [ 'shape' => 'KeyIdType', ], 'GrantId' => [ 'shape' => 'GrantIdType', ], ], ], 'RevokeGrantRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'GrantId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'GrantId' => [ 'shape' => 'GrantIdType', ], ], ], 'ScheduleKeyDeletionRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'PendingWindowInDays' => [ 'shape' => 'PendingWindowInDaysType', ], ], ], 'ScheduleKeyDeletionResponse' => [ 'type' => 'structure', 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'DeletionDate' => [ 'shape' => 'DateType', ], ], ], 'UnsupportedOperationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessageType', ], ], 'exception' => true, ], 'UpdateAliasRequest' => [ 'type' => 'structure', 'required' => [ 'AliasName', 'TargetKeyId', ], 'members' => [ 'AliasName' => [ 'shape' => 'AliasNameType', ], 'TargetKeyId' => [ 'shape' => 'KeyIdType', ], ], ], 'UpdateKeyDescriptionRequest' => [ 'type' => 'structure', 'required' => [ 'KeyId', 'Description', ], 'members' => [ 'KeyId' => [ 'shape' => 'KeyIdType', ], 'Description' => [ 'shape' => 'DescriptionType', ], ], ], 'WrappingKeySpec' => [ 'type' => 'string', 'enum' => [ 'RSA_2048', ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/manifest.json.php b/vendor/aws/aws-sdk-php/src/data/manifest.json.php index 2d22d5e5b..b635416b5 100644 --- a/vendor/aws/aws-sdk-php/src/data/manifest.json.php +++ b/vendor/aws/aws-sdk-php/src/data/manifest.json.php @@ -1,3 +1,3 @@ [ 'namespace' => 'Acm', 'versions' => [ 'latest' => '2015-12-08', '2015-12-08' => '2015-12-08', ], ], 'apigateway' => [ 'namespace' => 'ApiGateway', 'versions' => [ 'latest' => '2015-07-09', '2015-07-09' => '2015-07-09', '2015-06-01' => '2015-07-09', ], ], 'application-autoscaling' => [ 'namespace' => 'ApplicationAutoScaling', 'versions' => [ 'latest' => '2016-02-06', '2016-02-06' => '2016-02-06', ], ], 'autoscaling' => [ 'namespace' => 'AutoScaling', 'versions' => [ 'latest' => '2011-01-01', '2011-01-01' => '2011-01-01', ], ], 'cloudformation' => [ 'namespace' => 'CloudFormation', 'versions' => [ 'latest' => '2010-05-15', '2010-05-15' => '2010-05-15', ], ], 'cloudfront' => [ 'namespace' => 'CloudFront', 'versions' => [ 'latest' => '2016-08-20', '2016-08-20' => '2016-08-20', '2016-08-01' => '2016-08-01', '2016-01-28' => '2016-01-28', '2016-01-13' => '2016-08-20', '2015-09-17' => '2016-08-20', '2015-07-27' => '2015-07-27', '2015-04-17' => '2015-07-27', '2014-11-06' => '2015-07-27', ], ], 'cloudhsm' => [ 'namespace' => 'CloudHsm', 'versions' => [ 'latest' => '2014-05-30', '2014-05-30' => '2014-05-30', ], ], 'cloudsearch' => [ 'namespace' => 'CloudSearch', 'versions' => [ 'latest' => '2013-01-01', '2013-01-01' => '2013-01-01', ], ], 'cloudsearchdomain' => [ 'namespace' => 'CloudSearchDomain', 'versions' => [ 'latest' => '2013-01-01', '2013-01-01' => '2013-01-01', ], ], 'cloudtrail' => [ 'namespace' => 'CloudTrail', 'versions' => [ 'latest' => '2013-11-01', '2013-11-01' => '2013-11-01', ], ], 'codecommit' => [ 'namespace' => 'CodeCommit', 'versions' => [ 'latest' => '2015-04-13', '2015-04-13' => '2015-04-13', ], ], 'codedeploy' => [ 'namespace' => 'CodeDeploy', 'versions' => [ 'latest' => '2014-10-06', '2014-10-06' => '2014-10-06', ], ], 'codepipeline' => [ 'namespace' => 'CodePipeline', 'versions' => [ 'latest' => '2015-07-09', '2015-07-09' => '2015-07-09', ], ], 'cognito-identity' => [ 'namespace' => 'CognitoIdentity', 'versions' => [ 'latest' => '2014-06-30', '2014-06-30' => '2014-06-30', ], ], 'cognito-idp' => [ 'namespace' => 'CognitoIdentityProvider', 'versions' => [ 'latest' => '2016-04-18', '2016-04-18' => '2016-04-18', ], ], 'cognito-sync' => [ 'namespace' => 'CognitoSync', 'versions' => [ 'latest' => '2014-06-30', '2014-06-30' => '2014-06-30', ], ], 'config' => [ 'namespace' => 'ConfigService', 'versions' => [ 'latest' => '2014-11-12', '2014-11-12' => '2014-11-12', ], ], 'data.iot' => [ 'namespace' => 'IotDataPlane', 'versions' => [ 'latest' => '2015-05-28', '2015-05-28' => '2015-05-28', ], ], 'datapipeline' => [ 'namespace' => 'DataPipeline', 'versions' => [ 'latest' => '2012-10-29', '2012-10-29' => '2012-10-29', ], ], 'devicefarm' => [ 'namespace' => 'DeviceFarm', 'versions' => [ 'latest' => '2015-06-23', '2015-06-23' => '2015-06-23', ], ], 'directconnect' => [ 'namespace' => 'DirectConnect', 'versions' => [ 'latest' => '2012-10-25', '2012-10-25' => '2012-10-25', ], ], 'discovery' => [ 'namespace' => 'ApplicationDiscoveryService', 'versions' => [ 'latest' => '2015-11-01', '2015-11-01' => '2015-11-01', ], ], 'dms' => [ 'namespace' => 'DatabaseMigrationService', 'versions' => [ 'latest' => '2016-01-01', '2016-01-01' => '2016-01-01', ], ], 'ds' => [ 'namespace' => 'DirectoryService', 'versions' => [ 'latest' => '2015-04-16', '2015-04-16' => '2015-04-16', ], ], 'dynamodb' => [ 'namespace' => 'DynamoDb', 'versions' => [ 'latest' => '2012-08-10', '2012-08-10' => '2012-08-10', ], ], 'ec2' => [ 'namespace' => 'Ec2', 'versions' => [ 'latest' => '2016-04-01', '2016-04-01' => '2016-04-01', '2015-10-01' => '2015-10-01', '2015-04-15' => '2016-04-01', ], ], 'ecr' => [ 'namespace' => 'Ecr', 'versions' => [ 'latest' => '2015-09-21', '2015-09-21' => '2015-09-21', ], ], 'ecs' => [ 'namespace' => 'Ecs', 'versions' => [ 'latest' => '2014-11-13', '2014-11-13' => '2014-11-13', ], ], 'elasticache' => [ 'namespace' => 'ElastiCache', 'versions' => [ 'latest' => '2015-02-02', '2015-02-02' => '2015-02-02', ], ], 'elasticbeanstalk' => [ 'namespace' => 'ElasticBeanstalk', 'versions' => [ 'latest' => '2010-12-01', '2010-12-01' => '2010-12-01', ], ], 'elasticfilesystem' => [ 'namespace' => 'Efs', 'versions' => [ 'latest' => '2015-02-01', '2015-02-01' => '2015-02-01', ], ], 'elasticloadbalancing' => [ 'namespace' => 'ElasticLoadBalancing', 'versions' => [ 'latest' => '2012-06-01', '2012-06-01' => '2012-06-01', ], ], 'elasticloadbalancingv2' => [ 'namespace' => 'ElasticLoadBalancingV2', 'versions' => [ 'latest' => '2015-12-01', '2015-12-01' => '2015-12-01', ], ], 'elasticmapreduce' => [ 'namespace' => 'Emr', 'versions' => [ 'latest' => '2009-03-31', '2009-03-31' => '2009-03-31', ], ], 'elastictranscoder' => [ 'namespace' => 'ElasticTranscoder', 'versions' => [ 'latest' => '2012-09-25', '2012-09-25' => '2012-09-25', ], ], 'email' => [ 'namespace' => 'Ses', 'versions' => [ 'latest' => '2010-12-01', '2010-12-01' => '2010-12-01', ], ], 'es' => [ 'namespace' => 'ElasticsearchService', 'versions' => [ 'latest' => '2015-01-01', '2015-01-01' => '2015-01-01', ], ], 'events' => [ 'namespace' => 'CloudWatchEvents', 'versions' => [ 'latest' => '2015-10-07', '2015-10-07' => '2015-10-07', '2014-02-03' => '2015-10-07', ], ], 'firehose' => [ 'namespace' => 'Firehose', 'versions' => [ 'latest' => '2015-08-04', '2015-08-04' => '2015-08-04', ], ], 'gamelift' => [ 'namespace' => 'GameLift', 'versions' => [ 'latest' => '2015-10-01', '2015-10-01' => '2015-10-01', ], ], 'glacier' => [ 'namespace' => 'Glacier', 'versions' => [ 'latest' => '2012-06-01', '2012-06-01' => '2012-06-01', ], ], 'iam' => [ 'namespace' => 'Iam', 'versions' => [ 'latest' => '2010-05-08', '2010-05-08' => '2010-05-08', ], ], 'importexport' => [ 'namespace' => 'ImportExport', 'versions' => [ 'latest' => '2010-06-01', '2010-06-01' => '2010-06-01', ], ], 'inspector' => [ 'namespace' => 'Inspector', 'versions' => [ 'latest' => '2016-02-16', '2016-02-16' => '2016-02-16', '2015-08-18' => '2016-02-16', ], ], 'iot' => [ 'namespace' => 'Iot', 'versions' => [ 'latest' => '2015-05-28', '2015-05-28' => '2015-05-28', ], ], 'kinesis' => [ 'namespace' => 'Kinesis', 'versions' => [ 'latest' => '2013-12-02', '2013-12-02' => '2013-12-02', ], ], 'kinesisanalytics' => [ 'namespace' => 'KinesisAnalytics', 'versions' => [ 'latest' => '2015-08-14', '2015-08-14' => '2015-08-14', ], ], 'kms' => [ 'namespace' => 'Kms', 'versions' => [ 'latest' => '2014-11-01', '2014-11-01' => '2014-11-01', ], ], 'lambda' => [ 'namespace' => 'Lambda', 'versions' => [ 'latest' => '2015-03-31', '2015-03-31' => '2015-03-31', ], ], 'logs' => [ 'namespace' => 'CloudWatchLogs', 'versions' => [ 'latest' => '2014-03-28', '2014-03-28' => '2014-03-28', ], ], 'machinelearning' => [ 'namespace' => 'MachineLearning', 'versions' => [ 'latest' => '2014-12-12', '2014-12-12' => '2014-12-12', ], ], 'marketplacecommerceanalytics' => [ 'namespace' => 'MarketplaceCommerceAnalytics', 'versions' => [ 'latest' => '2015-07-01', '2015-07-01' => '2015-07-01', ], ], 'metering.marketplace' => [ 'namespace' => 'MarketplaceMetering', 'versions' => [ 'latest' => '2016-01-14', '2016-01-14' => '2016-01-14', ], ], 'monitoring' => [ 'namespace' => 'CloudWatch', 'versions' => [ 'latest' => '2010-08-01', '2010-08-01' => '2010-08-01', ], ], 'opsworks' => [ 'namespace' => 'OpsWorks', 'versions' => [ 'latest' => '2013-02-18', '2013-02-18' => '2013-02-18', ], ], 'rds' => [ 'namespace' => 'Rds', 'versions' => [ 'latest' => '2014-10-31', '2014-10-31' => '2014-10-31', ], ], 'redshift' => [ 'namespace' => 'Redshift', 'versions' => [ 'latest' => '2012-12-01', '2012-12-01' => '2012-12-01', ], ], 'route53' => [ 'namespace' => 'Route53', 'versions' => [ 'latest' => '2013-04-01', '2013-04-01' => '2013-04-01', ], ], 'route53domains' => [ 'namespace' => 'Route53Domains', 'versions' => [ 'latest' => '2014-05-15', '2014-05-15' => '2014-05-15', ], ], 's3' => [ 'namespace' => 'S3', 'versions' => [ 'latest' => '2006-03-01', '2006-03-01' => '2006-03-01', ], ], 'servicecatalog' => [ 'namespace' => 'ServiceCatalog', 'versions' => [ 'latest' => '2015-12-10', '2015-12-10' => '2015-12-10', ], ], 'snowball' => [ 'namespace' => 'SnowBall', 'versions' => [ 'latest' => '2016-06-30', '2016-06-30' => '2016-06-30', ], ], 'sns' => [ 'namespace' => 'Sns', 'versions' => [ 'latest' => '2010-03-31', '2010-03-31' => '2010-03-31', ], ], 'sqs' => [ 'namespace' => 'Sqs', 'versions' => [ 'latest' => '2012-11-05', '2012-11-05' => '2012-11-05', ], ], 'ssm' => [ 'namespace' => 'Ssm', 'versions' => [ 'latest' => '2014-11-06', '2014-11-06' => '2014-11-06', ], ], 'storagegateway' => [ 'namespace' => 'StorageGateway', 'versions' => [ 'latest' => '2013-06-30', '2013-06-30' => '2013-06-30', ], ], 'streams.dynamodb' => [ 'namespace' => 'DynamoDbStreams', 'versions' => [ 'latest' => '2012-08-10', '2012-08-10' => '2012-08-10', ], ], 'sts' => [ 'namespace' => 'Sts', 'versions' => [ 'latest' => '2011-06-15', '2011-06-15' => '2011-06-15', ], ], 'support' => [ 'namespace' => 'Support', 'versions' => [ 'latest' => '2013-04-15', '2013-04-15' => '2013-04-15', ], ], 'swf' => [ 'namespace' => 'Swf', 'versions' => [ 'latest' => '2012-01-25', '2012-01-25' => '2012-01-25', ], ], 'waf' => [ 'namespace' => 'Waf', 'versions' => [ 'latest' => '2015-08-24', '2015-08-24' => '2015-08-24', ], ], 'workspaces' => [ 'namespace' => 'WorkSpaces', 'versions' => [ 'latest' => '2015-04-08', '2015-04-08' => '2015-04-08', ], ],]; +return [ 'acm' => [ 'namespace' => 'Acm', 'versions' => [ 'latest' => '2015-12-08', '2015-12-08' => '2015-12-08', ], ], 'apigateway' => [ 'namespace' => 'ApiGateway', 'versions' => [ 'latest' => '2015-07-09', '2015-07-09' => '2015-07-09', '2015-06-01' => '2015-07-09', ], ], 'application-autoscaling' => [ 'namespace' => 'ApplicationAutoScaling', 'versions' => [ 'latest' => '2016-02-06', '2016-02-06' => '2016-02-06', ], ], 'autoscaling' => [ 'namespace' => 'AutoScaling', 'versions' => [ 'latest' => '2011-01-01', '2011-01-01' => '2011-01-01', ], ], 'budgets' => [ 'namespace' => 'Budgets', 'versions' => [ 'latest' => '2016-10-20', '2016-10-20' => '2016-10-20', ], ], 'cloudformation' => [ 'namespace' => 'CloudFormation', 'versions' => [ 'latest' => '2010-05-15', '2010-05-15' => '2010-05-15', ], ], 'cloudfront' => [ 'namespace' => 'CloudFront', 'versions' => [ 'latest' => '2016-09-29', '2016-09-29' => '2016-09-29', '2016-09-07' => '2016-09-07', '2016-08-20' => '2016-08-20', '2016-08-01' => '2016-08-01', '2016-01-28' => '2016-01-28', '2016-01-13' => '2016-09-29', '2015-09-17' => '2016-09-29', '2015-07-27' => '2015-07-27', '2015-04-17' => '2015-07-27', '2014-11-06' => '2015-07-27', ], ], 'cloudhsm' => [ 'namespace' => 'CloudHsm', 'versions' => [ 'latest' => '2014-05-30', '2014-05-30' => '2014-05-30', ], ], 'cloudsearch' => [ 'namespace' => 'CloudSearch', 'versions' => [ 'latest' => '2013-01-01', '2013-01-01' => '2013-01-01', ], ], 'cloudsearchdomain' => [ 'namespace' => 'CloudSearchDomain', 'versions' => [ 'latest' => '2013-01-01', '2013-01-01' => '2013-01-01', ], ], 'cloudtrail' => [ 'namespace' => 'CloudTrail', 'versions' => [ 'latest' => '2013-11-01', '2013-11-01' => '2013-11-01', ], ], 'codecommit' => [ 'namespace' => 'CodeCommit', 'versions' => [ 'latest' => '2015-04-13', '2015-04-13' => '2015-04-13', ], ], 'codedeploy' => [ 'namespace' => 'CodeDeploy', 'versions' => [ 'latest' => '2014-10-06', '2014-10-06' => '2014-10-06', ], ], 'codepipeline' => [ 'namespace' => 'CodePipeline', 'versions' => [ 'latest' => '2015-07-09', '2015-07-09' => '2015-07-09', ], ], 'cognito-identity' => [ 'namespace' => 'CognitoIdentity', 'versions' => [ 'latest' => '2014-06-30', '2014-06-30' => '2014-06-30', ], ], 'cognito-idp' => [ 'namespace' => 'CognitoIdentityProvider', 'versions' => [ 'latest' => '2016-04-18', '2016-04-18' => '2016-04-18', ], ], 'cognito-sync' => [ 'namespace' => 'CognitoSync', 'versions' => [ 'latest' => '2014-06-30', '2014-06-30' => '2014-06-30', ], ], 'config' => [ 'namespace' => 'ConfigService', 'versions' => [ 'latest' => '2014-11-12', '2014-11-12' => '2014-11-12', ], ], 'data.iot' => [ 'namespace' => 'IotDataPlane', 'versions' => [ 'latest' => '2015-05-28', '2015-05-28' => '2015-05-28', ], ], 'datapipeline' => [ 'namespace' => 'DataPipeline', 'versions' => [ 'latest' => '2012-10-29', '2012-10-29' => '2012-10-29', ], ], 'devicefarm' => [ 'namespace' => 'DeviceFarm', 'versions' => [ 'latest' => '2015-06-23', '2015-06-23' => '2015-06-23', ], ], 'directconnect' => [ 'namespace' => 'DirectConnect', 'versions' => [ 'latest' => '2012-10-25', '2012-10-25' => '2012-10-25', ], ], 'discovery' => [ 'namespace' => 'ApplicationDiscoveryService', 'versions' => [ 'latest' => '2015-11-01', '2015-11-01' => '2015-11-01', ], ], 'dms' => [ 'namespace' => 'DatabaseMigrationService', 'versions' => [ 'latest' => '2016-01-01', '2016-01-01' => '2016-01-01', ], ], 'ds' => [ 'namespace' => 'DirectoryService', 'versions' => [ 'latest' => '2015-04-16', '2015-04-16' => '2015-04-16', ], ], 'dynamodb' => [ 'namespace' => 'DynamoDb', 'versions' => [ 'latest' => '2012-08-10', '2012-08-10' => '2012-08-10', ], ], 'ec2' => [ 'namespace' => 'Ec2', 'versions' => [ 'latest' => '2016-09-15', '2016-09-15' => '2016-09-15', '2016-04-01' => '2016-04-01', '2015-10-01' => '2015-10-01', '2015-04-15' => '2016-09-15', ], ], 'ecr' => [ 'namespace' => 'Ecr', 'versions' => [ 'latest' => '2015-09-21', '2015-09-21' => '2015-09-21', ], ], 'ecs' => [ 'namespace' => 'Ecs', 'versions' => [ 'latest' => '2014-11-13', '2014-11-13' => '2014-11-13', ], ], 'elasticache' => [ 'namespace' => 'ElastiCache', 'versions' => [ 'latest' => '2015-02-02', '2015-02-02' => '2015-02-02', ], ], 'elasticbeanstalk' => [ 'namespace' => 'ElasticBeanstalk', 'versions' => [ 'latest' => '2010-12-01', '2010-12-01' => '2010-12-01', ], ], 'elasticfilesystem' => [ 'namespace' => 'Efs', 'versions' => [ 'latest' => '2015-02-01', '2015-02-01' => '2015-02-01', ], ], 'elasticloadbalancing' => [ 'namespace' => 'ElasticLoadBalancing', 'versions' => [ 'latest' => '2012-06-01', '2012-06-01' => '2012-06-01', ], ], 'elasticloadbalancingv2' => [ 'namespace' => 'ElasticLoadBalancingV2', 'versions' => [ 'latest' => '2015-12-01', '2015-12-01' => '2015-12-01', ], ], 'elasticmapreduce' => [ 'namespace' => 'Emr', 'versions' => [ 'latest' => '2009-03-31', '2009-03-31' => '2009-03-31', ], ], 'elastictranscoder' => [ 'namespace' => 'ElasticTranscoder', 'versions' => [ 'latest' => '2012-09-25', '2012-09-25' => '2012-09-25', ], ], 'email' => [ 'namespace' => 'Ses', 'versions' => [ 'latest' => '2010-12-01', '2010-12-01' => '2010-12-01', ], ], 'es' => [ 'namespace' => 'ElasticsearchService', 'versions' => [ 'latest' => '2015-01-01', '2015-01-01' => '2015-01-01', ], ], 'events' => [ 'namespace' => 'CloudWatchEvents', 'versions' => [ 'latest' => '2015-10-07', '2015-10-07' => '2015-10-07', '2014-02-03' => '2015-10-07', ], ], 'firehose' => [ 'namespace' => 'Firehose', 'versions' => [ 'latest' => '2015-08-04', '2015-08-04' => '2015-08-04', ], ], 'gamelift' => [ 'namespace' => 'GameLift', 'versions' => [ 'latest' => '2015-10-01', '2015-10-01' => '2015-10-01', ], ], 'glacier' => [ 'namespace' => 'Glacier', 'versions' => [ 'latest' => '2012-06-01', '2012-06-01' => '2012-06-01', ], ], 'iam' => [ 'namespace' => 'Iam', 'versions' => [ 'latest' => '2010-05-08', '2010-05-08' => '2010-05-08', ], ], 'importexport' => [ 'namespace' => 'ImportExport', 'versions' => [ 'latest' => '2010-06-01', '2010-06-01' => '2010-06-01', ], ], 'inspector' => [ 'namespace' => 'Inspector', 'versions' => [ 'latest' => '2016-02-16', '2016-02-16' => '2016-02-16', '2015-08-18' => '2016-02-16', ], ], 'iot' => [ 'namespace' => 'Iot', 'versions' => [ 'latest' => '2015-05-28', '2015-05-28' => '2015-05-28', ], ], 'kinesis' => [ 'namespace' => 'Kinesis', 'versions' => [ 'latest' => '2013-12-02', '2013-12-02' => '2013-12-02', ], ], 'kinesisanalytics' => [ 'namespace' => 'KinesisAnalytics', 'versions' => [ 'latest' => '2015-08-14', '2015-08-14' => '2015-08-14', ], ], 'kms' => [ 'namespace' => 'Kms', 'versions' => [ 'latest' => '2014-11-01', '2014-11-01' => '2014-11-01', ], ], 'lambda' => [ 'namespace' => 'Lambda', 'versions' => [ 'latest' => '2015-03-31', '2015-03-31' => '2015-03-31', ], ], 'logs' => [ 'namespace' => 'CloudWatchLogs', 'versions' => [ 'latest' => '2014-03-28', '2014-03-28' => '2014-03-28', ], ], 'machinelearning' => [ 'namespace' => 'MachineLearning', 'versions' => [ 'latest' => '2014-12-12', '2014-12-12' => '2014-12-12', ], ], 'marketplacecommerceanalytics' => [ 'namespace' => 'MarketplaceCommerceAnalytics', 'versions' => [ 'latest' => '2015-07-01', '2015-07-01' => '2015-07-01', ], ], 'metering.marketplace' => [ 'namespace' => 'MarketplaceMetering', 'versions' => [ 'latest' => '2016-01-14', '2016-01-14' => '2016-01-14', ], ], 'monitoring' => [ 'namespace' => 'CloudWatch', 'versions' => [ 'latest' => '2010-08-01', '2010-08-01' => '2010-08-01', ], ], 'opsworks' => [ 'namespace' => 'OpsWorks', 'versions' => [ 'latest' => '2013-02-18', '2013-02-18' => '2013-02-18', ], ], 'rds' => [ 'namespace' => 'Rds', 'versions' => [ 'latest' => '2014-10-31', '2014-10-31' => '2014-10-31', ], ], 'redshift' => [ 'namespace' => 'Redshift', 'versions' => [ 'latest' => '2012-12-01', '2012-12-01' => '2012-12-01', ], ], 'route53' => [ 'namespace' => 'Route53', 'versions' => [ 'latest' => '2013-04-01', '2013-04-01' => '2013-04-01', ], ], 'route53domains' => [ 'namespace' => 'Route53Domains', 'versions' => [ 'latest' => '2014-05-15', '2014-05-15' => '2014-05-15', ], ], 's3' => [ 'namespace' => 'S3', 'versions' => [ 'latest' => '2006-03-01', '2006-03-01' => '2006-03-01', ], ], 'servicecatalog' => [ 'namespace' => 'ServiceCatalog', 'versions' => [ 'latest' => '2015-12-10', '2015-12-10' => '2015-12-10', ], ], 'sms' => [ 'namespace' => 'Sms', 'versions' => [ 'latest' => '2016-10-24', '2016-10-24' => '2016-10-24', ], ], 'snowball' => [ 'namespace' => 'SnowBall', 'versions' => [ 'latest' => '2016-06-30', '2016-06-30' => '2016-06-30', ], ], 'sns' => [ 'namespace' => 'Sns', 'versions' => [ 'latest' => '2010-03-31', '2010-03-31' => '2010-03-31', ], ], 'sqs' => [ 'namespace' => 'Sqs', 'versions' => [ 'latest' => '2012-11-05', '2012-11-05' => '2012-11-05', ], ], 'ssm' => [ 'namespace' => 'Ssm', 'versions' => [ 'latest' => '2014-11-06', '2014-11-06' => '2014-11-06', ], ], 'storagegateway' => [ 'namespace' => 'StorageGateway', 'versions' => [ 'latest' => '2013-06-30', '2013-06-30' => '2013-06-30', ], ], 'streams.dynamodb' => [ 'namespace' => 'DynamoDbStreams', 'versions' => [ 'latest' => '2012-08-10', '2012-08-10' => '2012-08-10', ], ], 'sts' => [ 'namespace' => 'Sts', 'versions' => [ 'latest' => '2011-06-15', '2011-06-15' => '2011-06-15', ], ], 'support' => [ 'namespace' => 'Support', 'versions' => [ 'latest' => '2013-04-15', '2013-04-15' => '2013-04-15', ], ], 'swf' => [ 'namespace' => 'Swf', 'versions' => [ 'latest' => '2012-01-25', '2012-01-25' => '2012-01-25', ], ], 'waf' => [ 'namespace' => 'Waf', 'versions' => [ 'latest' => '2015-08-24', '2015-08-24' => '2015-08-24', ], ], 'workspaces' => [ 'namespace' => 'WorkSpaces', 'versions' => [ 'latest' => '2015-04-08', '2015-04-08' => '2015-04-08', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/api-2.json.php index 39f06c4c9..6404b24e8 100644 --- a/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2014-10-31', 'endpointPrefix' => 'rds', 'protocol' => 'query', 'serviceAbbreviation' => 'Amazon RDS', 'serviceFullName' => 'Amazon Relational Database Service', 'signatureVersion' => 'v4', 'xmlNamespace' => 'http://rds.amazonaws.com/doc/2014-10-31/', ], 'operations' => [ 'AddSourceIdentifierToSubscription' => [ 'name' => 'AddSourceIdentifierToSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddSourceIdentifierToSubscriptionMessage', ], 'output' => [ 'shape' => 'AddSourceIdentifierToSubscriptionResult', 'resultWrapper' => 'AddSourceIdentifierToSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], ], ], 'AddTagsToResource' => [ 'name' => 'AddTagsToResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddTagsToResourceMessage', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'ApplyPendingMaintenanceAction' => [ 'name' => 'ApplyPendingMaintenanceAction', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ApplyPendingMaintenanceActionMessage', ], 'output' => [ 'shape' => 'ApplyPendingMaintenanceActionResult', 'resultWrapper' => 'ApplyPendingMaintenanceActionResult', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundFault', ], ], ], 'AuthorizeDBSecurityGroupIngress' => [ 'name' => 'AuthorizeDBSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeDBSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'AuthorizeDBSecurityGroupIngressResult', 'resultWrapper' => 'AuthorizeDBSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'AuthorizationAlreadyExistsFault', ], [ 'shape' => 'AuthorizationQuotaExceededFault', ], ], ], 'CopyDBClusterParameterGroup' => [ 'name' => 'CopyDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'CopyDBClusterParameterGroupResult', 'resultWrapper' => 'CopyDBClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], ], ], 'CopyDBClusterSnapshot' => [ 'name' => 'CopyDBClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBClusterSnapshotMessage', ], 'output' => [ 'shape' => 'CopyDBClusterSnapshotResult', 'resultWrapper' => 'CopyDBClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], ], ], 'CopyDBParameterGroup' => [ 'name' => 'CopyDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBParameterGroupMessage', ], 'output' => [ 'shape' => 'CopyDBParameterGroupResult', 'resultWrapper' => 'CopyDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], ], ], 'CopyDBSnapshot' => [ 'name' => 'CopyDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBSnapshotMessage', ], 'output' => [ 'shape' => 'CopyDBSnapshotResult', 'resultWrapper' => 'CopyDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'CopyOptionGroup' => [ 'name' => 'CopyOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyOptionGroupMessage', ], 'output' => [ 'shape' => 'CopyOptionGroupResult', 'resultWrapper' => 'CopyOptionGroupResult', ], 'errors' => [ [ 'shape' => 'OptionGroupAlreadyExistsFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'OptionGroupQuotaExceededFault', ], ], ], 'CreateDBCluster' => [ 'name' => 'CreateDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBClusterMessage', ], 'output' => [ 'shape' => 'CreateDBClusterResult', 'resultWrapper' => 'CreateDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterAlreadyExistsFault', ], [ 'shape' => 'InsufficientStorageClusterCapacityFault', ], [ 'shape' => 'DBClusterQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'DBClusterParameterGroupNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], ], ], 'CreateDBClusterParameterGroup' => [ 'name' => 'CreateDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'CreateDBClusterParameterGroupResult', 'resultWrapper' => 'CreateDBClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], ], ], 'CreateDBClusterSnapshot' => [ 'name' => 'CreateDBClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBClusterSnapshotMessage', ], 'output' => [ 'shape' => 'CreateDBClusterSnapshotResult', 'resultWrapper' => 'CreateDBClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], ], ], 'CreateDBInstance' => [ 'name' => 'CreateDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBInstanceMessage', ], 'output' => [ 'shape' => 'CreateDBInstanceResult', 'resultWrapper' => 'CreateDBInstanceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DomainNotFoundFault', ], ], ], 'CreateDBInstanceReadReplica' => [ 'name' => 'CreateDBInstanceReadReplica', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBInstanceReadReplicaMessage', ], 'output' => [ 'shape' => 'CreateDBInstanceReadReplicaResult', 'resultWrapper' => 'CreateDBInstanceReadReplicaResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupNotAllowedFault', ], [ 'shape' => 'InvalidDBSubnetGroupFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'CreateDBParameterGroup' => [ 'name' => 'CreateDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBParameterGroupMessage', ], 'output' => [ 'shape' => 'CreateDBParameterGroupResult', 'resultWrapper' => 'CreateDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], ], ], 'CreateDBSecurityGroup' => [ 'name' => 'CreateDBSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBSecurityGroupMessage', ], 'output' => [ 'shape' => 'CreateDBSecurityGroupResult', 'resultWrapper' => 'CreateDBSecurityGroupResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupAlreadyExistsFault', ], [ 'shape' => 'DBSecurityGroupQuotaExceededFault', ], [ 'shape' => 'DBSecurityGroupNotSupportedFault', ], ], ], 'CreateDBSnapshot' => [ 'name' => 'CreateDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBSnapshotMessage', ], 'output' => [ 'shape' => 'CreateDBSnapshotResult', 'resultWrapper' => 'CreateDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], ], ], 'CreateDBSubnetGroup' => [ 'name' => 'CreateDBSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBSubnetGroupMessage', ], 'output' => [ 'shape' => 'CreateDBSubnetGroupResult', 'resultWrapper' => 'CreateDBSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'DBSubnetGroupAlreadyExistsFault', ], [ 'shape' => 'DBSubnetGroupQuotaExceededFault', ], [ 'shape' => 'DBSubnetQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], ], ], 'CreateEventSubscription' => [ 'name' => 'CreateEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateEventSubscriptionMessage', ], 'output' => [ 'shape' => 'CreateEventSubscriptionResult', 'resultWrapper' => 'CreateEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'EventSubscriptionQuotaExceededFault', ], [ 'shape' => 'SubscriptionAlreadyExistFault', ], [ 'shape' => 'SNSInvalidTopicFault', ], [ 'shape' => 'SNSNoAuthorizationFault', ], [ 'shape' => 'SNSTopicArnNotFoundFault', ], [ 'shape' => 'SubscriptionCategoryNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], ], ], 'CreateOptionGroup' => [ 'name' => 'CreateOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateOptionGroupMessage', ], 'output' => [ 'shape' => 'CreateOptionGroupResult', 'resultWrapper' => 'CreateOptionGroupResult', ], 'errors' => [ [ 'shape' => 'OptionGroupAlreadyExistsFault', ], [ 'shape' => 'OptionGroupQuotaExceededFault', ], ], ], 'DeleteDBCluster' => [ 'name' => 'DeleteDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBClusterMessage', ], 'output' => [ 'shape' => 'DeleteDBClusterResult', 'resultWrapper' => 'DeleteDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], ], ], 'DeleteDBClusterParameterGroup' => [ 'name' => 'DeleteDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBClusterParameterGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DeleteDBClusterSnapshot' => [ 'name' => 'DeleteDBClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBClusterSnapshotMessage', ], 'output' => [ 'shape' => 'DeleteDBClusterSnapshotResult', 'resultWrapper' => 'DeleteDBClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], ], ], 'DeleteDBInstance' => [ 'name' => 'DeleteDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBInstanceMessage', ], 'output' => [ 'shape' => 'DeleteDBInstanceResult', 'resultWrapper' => 'DeleteDBInstanceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], ], ], 'DeleteDBParameterGroup' => [ 'name' => 'DeleteDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBParameterGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DeleteDBSecurityGroup' => [ 'name' => 'DeleteDBSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBSecurityGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], ], ], 'DeleteDBSnapshot' => [ 'name' => 'DeleteDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBSnapshotMessage', ], 'output' => [ 'shape' => 'DeleteDBSnapshotResult', 'resultWrapper' => 'DeleteDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'DeleteDBSubnetGroup' => [ 'name' => 'DeleteDBSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBSubnetGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidDBSubnetStateFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], ], ], 'DeleteEventSubscription' => [ 'name' => 'DeleteEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteEventSubscriptionMessage', ], 'output' => [ 'shape' => 'DeleteEventSubscriptionResult', 'resultWrapper' => 'DeleteEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'InvalidEventSubscriptionStateFault', ], ], ], 'DeleteOptionGroup' => [ 'name' => 'DeleteOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteOptionGroupMessage', ], 'errors' => [ [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'InvalidOptionGroupStateFault', ], ], ], 'DescribeAccountAttributes' => [ 'name' => 'DescribeAccountAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAccountAttributesMessage', ], 'output' => [ 'shape' => 'AccountAttributesMessage', 'resultWrapper' => 'DescribeAccountAttributesResult', ], ], 'DescribeCertificates' => [ 'name' => 'DescribeCertificates', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCertificatesMessage', ], 'output' => [ 'shape' => 'CertificateMessage', 'resultWrapper' => 'DescribeCertificatesResult', ], 'errors' => [ [ 'shape' => 'CertificateNotFoundFault', ], ], ], 'DescribeDBClusterParameterGroups' => [ 'name' => 'DescribeDBClusterParameterGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterParameterGroupsMessage', ], 'output' => [ 'shape' => 'DBClusterParameterGroupsMessage', 'resultWrapper' => 'DescribeDBClusterParameterGroupsResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBClusterParameters' => [ 'name' => 'DescribeDBClusterParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterParametersMessage', ], 'output' => [ 'shape' => 'DBClusterParameterGroupDetails', 'resultWrapper' => 'DescribeDBClusterParametersResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBClusterSnapshotAttributes' => [ 'name' => 'DescribeDBClusterSnapshotAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterSnapshotAttributesMessage', ], 'output' => [ 'shape' => 'DescribeDBClusterSnapshotAttributesResult', 'resultWrapper' => 'DescribeDBClusterSnapshotAttributesResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], ], ], 'DescribeDBClusterSnapshots' => [ 'name' => 'DescribeDBClusterSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterSnapshotsMessage', ], 'output' => [ 'shape' => 'DBClusterSnapshotMessage', 'resultWrapper' => 'DescribeDBClusterSnapshotsResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], ], ], 'DescribeDBClusters' => [ 'name' => 'DescribeDBClusters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClustersMessage', ], 'output' => [ 'shape' => 'DBClusterMessage', 'resultWrapper' => 'DescribeDBClustersResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], ], ], 'DescribeDBEngineVersions' => [ 'name' => 'DescribeDBEngineVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBEngineVersionsMessage', ], 'output' => [ 'shape' => 'DBEngineVersionMessage', 'resultWrapper' => 'DescribeDBEngineVersionsResult', ], ], 'DescribeDBInstances' => [ 'name' => 'DescribeDBInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBInstancesMessage', ], 'output' => [ 'shape' => 'DBInstanceMessage', 'resultWrapper' => 'DescribeDBInstancesResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'DescribeDBLogFiles' => [ 'name' => 'DescribeDBLogFiles', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBLogFilesMessage', ], 'output' => [ 'shape' => 'DescribeDBLogFilesResponse', 'resultWrapper' => 'DescribeDBLogFilesResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'DescribeDBParameterGroups' => [ 'name' => 'DescribeDBParameterGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBParameterGroupsMessage', ], 'output' => [ 'shape' => 'DBParameterGroupsMessage', 'resultWrapper' => 'DescribeDBParameterGroupsResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBParameters' => [ 'name' => 'DescribeDBParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBParametersMessage', ], 'output' => [ 'shape' => 'DBParameterGroupDetails', 'resultWrapper' => 'DescribeDBParametersResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBSecurityGroups' => [ 'name' => 'DescribeDBSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSecurityGroupsMessage', ], 'output' => [ 'shape' => 'DBSecurityGroupMessage', 'resultWrapper' => 'DescribeDBSecurityGroupsResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupNotFoundFault', ], ], ], 'DescribeDBSnapshotAttributes' => [ 'name' => 'DescribeDBSnapshotAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSnapshotAttributesMessage', ], 'output' => [ 'shape' => 'DescribeDBSnapshotAttributesResult', 'resultWrapper' => 'DescribeDBSnapshotAttributesResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'DescribeDBSnapshots' => [ 'name' => 'DescribeDBSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSnapshotsMessage', ], 'output' => [ 'shape' => 'DBSnapshotMessage', 'resultWrapper' => 'DescribeDBSnapshotsResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'DescribeDBSubnetGroups' => [ 'name' => 'DescribeDBSubnetGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSubnetGroupsMessage', ], 'output' => [ 'shape' => 'DBSubnetGroupMessage', 'resultWrapper' => 'DescribeDBSubnetGroupsResult', ], 'errors' => [ [ 'shape' => 'DBSubnetGroupNotFoundFault', ], ], ], 'DescribeEngineDefaultClusterParameters' => [ 'name' => 'DescribeEngineDefaultClusterParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEngineDefaultClusterParametersMessage', ], 'output' => [ 'shape' => 'DescribeEngineDefaultClusterParametersResult', 'resultWrapper' => 'DescribeEngineDefaultClusterParametersResult', ], ], 'DescribeEngineDefaultParameters' => [ 'name' => 'DescribeEngineDefaultParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEngineDefaultParametersMessage', ], 'output' => [ 'shape' => 'DescribeEngineDefaultParametersResult', 'resultWrapper' => 'DescribeEngineDefaultParametersResult', ], ], 'DescribeEventCategories' => [ 'name' => 'DescribeEventCategories', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventCategoriesMessage', ], 'output' => [ 'shape' => 'EventCategoriesMessage', 'resultWrapper' => 'DescribeEventCategoriesResult', ], ], 'DescribeEventSubscriptions' => [ 'name' => 'DescribeEventSubscriptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventSubscriptionsMessage', ], 'output' => [ 'shape' => 'EventSubscriptionsMessage', 'resultWrapper' => 'DescribeEventSubscriptionsResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], ], ], 'DescribeEvents' => [ 'name' => 'DescribeEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventsMessage', ], 'output' => [ 'shape' => 'EventsMessage', 'resultWrapper' => 'DescribeEventsResult', ], ], 'DescribeOptionGroupOptions' => [ 'name' => 'DescribeOptionGroupOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOptionGroupOptionsMessage', ], 'output' => [ 'shape' => 'OptionGroupOptionsMessage', 'resultWrapper' => 'DescribeOptionGroupOptionsResult', ], ], 'DescribeOptionGroups' => [ 'name' => 'DescribeOptionGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOptionGroupsMessage', ], 'output' => [ 'shape' => 'OptionGroups', 'resultWrapper' => 'DescribeOptionGroupsResult', ], 'errors' => [ [ 'shape' => 'OptionGroupNotFoundFault', ], ], ], 'DescribeOrderableDBInstanceOptions' => [ 'name' => 'DescribeOrderableDBInstanceOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOrderableDBInstanceOptionsMessage', ], 'output' => [ 'shape' => 'OrderableDBInstanceOptionsMessage', 'resultWrapper' => 'DescribeOrderableDBInstanceOptionsResult', ], ], 'DescribePendingMaintenanceActions' => [ 'name' => 'DescribePendingMaintenanceActions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePendingMaintenanceActionsMessage', ], 'output' => [ 'shape' => 'PendingMaintenanceActionsMessage', 'resultWrapper' => 'DescribePendingMaintenanceActionsResult', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundFault', ], ], ], 'DescribeReservedDBInstances' => [ 'name' => 'DescribeReservedDBInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedDBInstancesMessage', ], 'output' => [ 'shape' => 'ReservedDBInstanceMessage', 'resultWrapper' => 'DescribeReservedDBInstancesResult', ], 'errors' => [ [ 'shape' => 'ReservedDBInstanceNotFoundFault', ], ], ], 'DescribeReservedDBInstancesOfferings' => [ 'name' => 'DescribeReservedDBInstancesOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedDBInstancesOfferingsMessage', ], 'output' => [ 'shape' => 'ReservedDBInstancesOfferingMessage', 'resultWrapper' => 'DescribeReservedDBInstancesOfferingsResult', ], 'errors' => [ [ 'shape' => 'ReservedDBInstancesOfferingNotFoundFault', ], ], ], 'DescribeSourceRegions' => [ 'name' => 'DescribeSourceRegions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSourceRegionsMessage', ], 'output' => [ 'shape' => 'SourceRegionMessage', 'resultWrapper' => 'DescribeSourceRegionsResult', ], ], 'DownloadDBLogFilePortion' => [ 'name' => 'DownloadDBLogFilePortion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DownloadDBLogFilePortionMessage', ], 'output' => [ 'shape' => 'DownloadDBLogFilePortionDetails', 'resultWrapper' => 'DownloadDBLogFilePortionResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBLogFileNotFoundFault', ], ], ], 'FailoverDBCluster' => [ 'name' => 'FailoverDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'FailoverDBClusterMessage', ], 'output' => [ 'shape' => 'FailoverDBClusterResult', 'resultWrapper' => 'FailoverDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListTagsForResourceMessage', ], 'output' => [ 'shape' => 'TagListMessage', 'resultWrapper' => 'ListTagsForResourceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'ModifyDBCluster' => [ 'name' => 'ModifyDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBClusterMessage', ], 'output' => [ 'shape' => 'ModifyDBClusterResult', 'resultWrapper' => 'ModifyDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'DBClusterParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBClusterAlreadyExistsFault', ], ], ], 'ModifyDBClusterParameterGroup' => [ 'name' => 'ModifyDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'DBClusterParameterGroupNameMessage', 'resultWrapper' => 'ModifyDBClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidDBParameterGroupStateFault', ], ], ], 'ModifyDBClusterSnapshotAttribute' => [ 'name' => 'ModifyDBClusterSnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBClusterSnapshotAttributeMessage', ], 'output' => [ 'shape' => 'ModifyDBClusterSnapshotAttributeResult', 'resultWrapper' => 'ModifyDBClusterSnapshotAttributeResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'SharedSnapshotQuotaExceededFault', ], ], ], 'ModifyDBInstance' => [ 'name' => 'ModifyDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBInstanceMessage', ], 'output' => [ 'shape' => 'ModifyDBInstanceResult', 'resultWrapper' => 'ModifyDBInstanceResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'DBUpgradeDependencyFailureFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'CertificateNotFoundFault', ], [ 'shape' => 'DomainNotFoundFault', ], ], ], 'ModifyDBParameterGroup' => [ 'name' => 'ModifyDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBParameterGroupMessage', ], 'output' => [ 'shape' => 'DBParameterGroupNameMessage', 'resultWrapper' => 'ModifyDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidDBParameterGroupStateFault', ], ], ], 'ModifyDBSnapshotAttribute' => [ 'name' => 'ModifyDBSnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBSnapshotAttributeMessage', ], 'output' => [ 'shape' => 'ModifyDBSnapshotAttributeResult', 'resultWrapper' => 'ModifyDBSnapshotAttributeResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'SharedSnapshotQuotaExceededFault', ], ], ], 'ModifyDBSubnetGroup' => [ 'name' => 'ModifyDBSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBSubnetGroupMessage', ], 'output' => [ 'shape' => 'ModifyDBSubnetGroupResult', 'resultWrapper' => 'ModifyDBSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetQuotaExceededFault', ], [ 'shape' => 'SubnetAlreadyInUse', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], ], ], 'ModifyEventSubscription' => [ 'name' => 'ModifyEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyEventSubscriptionMessage', ], 'output' => [ 'shape' => 'ModifyEventSubscriptionResult', 'resultWrapper' => 'ModifyEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'EventSubscriptionQuotaExceededFault', ], [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SNSInvalidTopicFault', ], [ 'shape' => 'SNSNoAuthorizationFault', ], [ 'shape' => 'SNSTopicArnNotFoundFault', ], [ 'shape' => 'SubscriptionCategoryNotFoundFault', ], ], ], 'ModifyOptionGroup' => [ 'name' => 'ModifyOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyOptionGroupMessage', ], 'output' => [ 'shape' => 'ModifyOptionGroupResult', 'resultWrapper' => 'ModifyOptionGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidOptionGroupStateFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], ], ], 'PromoteReadReplica' => [ 'name' => 'PromoteReadReplica', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PromoteReadReplicaMessage', ], 'output' => [ 'shape' => 'PromoteReadReplicaResult', 'resultWrapper' => 'PromoteReadReplicaResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'PromoteReadReplicaDBCluster' => [ 'name' => 'PromoteReadReplicaDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PromoteReadReplicaDBClusterMessage', ], 'output' => [ 'shape' => 'PromoteReadReplicaDBClusterResult', 'resultWrapper' => 'PromoteReadReplicaDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], ], ], 'PurchaseReservedDBInstancesOffering' => [ 'name' => 'PurchaseReservedDBInstancesOffering', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseReservedDBInstancesOfferingMessage', ], 'output' => [ 'shape' => 'PurchaseReservedDBInstancesOfferingResult', 'resultWrapper' => 'PurchaseReservedDBInstancesOfferingResult', ], 'errors' => [ [ 'shape' => 'ReservedDBInstancesOfferingNotFoundFault', ], [ 'shape' => 'ReservedDBInstanceAlreadyExistsFault', ], [ 'shape' => 'ReservedDBInstanceQuotaExceededFault', ], ], ], 'RebootDBInstance' => [ 'name' => 'RebootDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebootDBInstanceMessage', ], 'output' => [ 'shape' => 'RebootDBInstanceResult', 'resultWrapper' => 'RebootDBInstanceResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'RemoveSourceIdentifierFromSubscription' => [ 'name' => 'RemoveSourceIdentifierFromSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveSourceIdentifierFromSubscriptionMessage', ], 'output' => [ 'shape' => 'RemoveSourceIdentifierFromSubscriptionResult', 'resultWrapper' => 'RemoveSourceIdentifierFromSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], ], ], 'RemoveTagsFromResource' => [ 'name' => 'RemoveTagsFromResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveTagsFromResourceMessage', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'ResetDBClusterParameterGroup' => [ 'name' => 'ResetDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetDBClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'DBClusterParameterGroupNameMessage', 'resultWrapper' => 'ResetDBClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'ResetDBParameterGroup' => [ 'name' => 'ResetDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetDBParameterGroupMessage', ], 'output' => [ 'shape' => 'DBParameterGroupNameMessage', 'resultWrapper' => 'ResetDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'RestoreDBClusterFromS3' => [ 'name' => 'RestoreDBClusterFromS3', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBClusterFromS3Message', ], 'output' => [ 'shape' => 'RestoreDBClusterFromS3Result', 'resultWrapper' => 'RestoreDBClusterFromS3Result', ], 'errors' => [ [ 'shape' => 'DBClusterAlreadyExistsFault', ], [ 'shape' => 'DBClusterQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidS3BucketFault', ], [ 'shape' => 'DBClusterParameterGroupNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InsufficientStorageClusterCapacityFault', ], ], ], 'RestoreDBClusterFromSnapshot' => [ 'name' => 'RestoreDBClusterFromSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBClusterFromSnapshotMessage', ], 'output' => [ 'shape' => 'RestoreDBClusterFromSnapshotResult', 'resultWrapper' => 'RestoreDBClusterFromSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBClusterAlreadyExistsFault', ], [ 'shape' => 'DBClusterQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'InsufficientDBClusterCapacityFault', ], [ 'shape' => 'InsufficientStorageClusterCapacityFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'RestoreDBClusterToPointInTime' => [ 'name' => 'RestoreDBClusterToPointInTime', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBClusterToPointInTimeMessage', ], 'output' => [ 'shape' => 'RestoreDBClusterToPointInTimeResult', 'resultWrapper' => 'RestoreDBClusterToPointInTimeResult', ], 'errors' => [ [ 'shape' => 'DBClusterAlreadyExistsFault', ], [ 'shape' => 'DBClusterQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'InsufficientDBClusterCapacityFault', ], [ 'shape' => 'InsufficientStorageClusterCapacityFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'RestoreDBInstanceFromDBSnapshot' => [ 'name' => 'RestoreDBInstanceFromDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBInstanceFromDBSnapshotMessage', ], 'output' => [ 'shape' => 'RestoreDBInstanceFromDBSnapshotResult', 'resultWrapper' => 'RestoreDBInstanceFromDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'DomainNotFoundFault', ], ], ], 'RestoreDBInstanceToPointInTime' => [ 'name' => 'RestoreDBInstanceToPointInTime', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBInstanceToPointInTimeMessage', ], 'output' => [ 'shape' => 'RestoreDBInstanceToPointInTimeResult', 'resultWrapper' => 'RestoreDBInstanceToPointInTimeResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'PointInTimeRestoreNotEnabledFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'DomainNotFoundFault', ], ], ], 'RevokeDBSecurityGroupIngress' => [ 'name' => 'RevokeDBSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeDBSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'RevokeDBSecurityGroupIngressResult', 'resultWrapper' => 'RevokeDBSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], ], ], ], 'shapes' => [ 'AccountAttributesMessage' => [ 'type' => 'structure', 'members' => [ 'AccountQuotas' => [ 'shape' => 'AccountQuotaList', ], ], ], 'AccountQuota' => [ 'type' => 'structure', 'members' => [ 'AccountQuotaName' => [ 'shape' => 'String', ], 'Used' => [ 'shape' => 'Long', ], 'Max' => [ 'shape' => 'Long', ], ], 'wrapper' => true, ], 'AccountQuotaList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountQuota', 'locationName' => 'AccountQuota', ], ], 'AddSourceIdentifierToSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SourceIdentifier', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SourceIdentifier' => [ 'shape' => 'String', ], ], ], 'AddSourceIdentifierToSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'AddTagsToResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'Tags', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'ApplyMethod' => [ 'type' => 'string', 'enum' => [ 'immediate', 'pending-reboot', ], ], 'ApplyPendingMaintenanceActionMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceIdentifier', 'ApplyAction', 'OptInType', ], 'members' => [ 'ResourceIdentifier' => [ 'shape' => 'String', ], 'ApplyAction' => [ 'shape' => 'String', ], 'OptInType' => [ 'shape' => 'String', ], ], ], 'ApplyPendingMaintenanceActionResult' => [ 'type' => 'structure', 'members' => [ 'ResourcePendingMaintenanceActions' => [ 'shape' => 'ResourcePendingMaintenanceActions', ], ], ], 'AttributeValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'AttributeValue', ], ], 'AuthorizationAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizeDBSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupId' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'AuthorizeDBSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroup' => [ 'shape' => 'DBSecurityGroup', ], ], ], 'AvailabilityZone' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'AvailabilityZoneList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AvailabilityZone', 'locationName' => 'AvailabilityZone', ], ], 'AvailabilityZones' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'AvailabilityZone', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'BooleanOptional' => [ 'type' => 'boolean', ], 'Certificate' => [ 'type' => 'structure', 'members' => [ 'CertificateIdentifier' => [ 'shape' => 'String', ], 'CertificateType' => [ 'shape' => 'String', ], 'Thumbprint' => [ 'shape' => 'String', ], 'ValidFrom' => [ 'shape' => 'TStamp', ], 'ValidTill' => [ 'shape' => 'TStamp', ], 'CertificateArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'CertificateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Certificate', 'locationName' => 'Certificate', ], ], 'CertificateMessage' => [ 'type' => 'structure', 'members' => [ 'Certificates' => [ 'shape' => 'CertificateList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'CertificateNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CertificateNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'CharacterSet' => [ 'type' => 'structure', 'members' => [ 'CharacterSetName' => [ 'shape' => 'String', ], 'CharacterSetDescription' => [ 'shape' => 'String', ], ], ], 'CopyDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBClusterParameterGroupIdentifier', 'TargetDBClusterParameterGroupIdentifier', 'TargetDBClusterParameterGroupDescription', ], 'members' => [ 'SourceDBClusterParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBClusterParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBClusterParameterGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyDBClusterParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroup' => [ 'shape' => 'DBClusterParameterGroup', ], ], ], 'CopyDBClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBClusterSnapshotIdentifier', 'TargetDBClusterSnapshotIdentifier', ], 'members' => [ 'SourceDBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'TargetDBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyDBClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshot' => [ 'shape' => 'DBClusterSnapshot', ], ], ], 'CopyDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBParameterGroupIdentifier', 'TargetDBParameterGroupIdentifier', 'TargetDBParameterGroupDescription', ], 'members' => [ 'SourceDBParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBParameterGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyDBParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroup' => [ 'shape' => 'DBParameterGroup', ], ], ], 'CopyDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBSnapshotIdentifier', 'TargetDBSnapshotIdentifier', ], 'members' => [ 'SourceDBSnapshotIdentifier' => [ 'shape' => 'String', ], 'TargetDBSnapshotIdentifier' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'CopyTags' => [ 'shape' => 'BooleanOptional', ], ], ], 'CopyDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshot' => [ 'shape' => 'DBSnapshot', ], ], ], 'CopyOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'SourceOptionGroupIdentifier', 'TargetOptionGroupIdentifier', 'TargetOptionGroupDescription', ], 'members' => [ 'SourceOptionGroupIdentifier' => [ 'shape' => 'String', ], 'TargetOptionGroupIdentifier' => [ 'shape' => 'String', ], 'TargetOptionGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyOptionGroupResult' => [ 'type' => 'structure', 'members' => [ 'OptionGroup' => [ 'shape' => 'OptionGroup', ], ], ], 'CreateDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'Engine', ], 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'DatabaseName' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'ReplicationSourceIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageEncrypted' => [ 'shape' => 'BooleanOptional', ], 'KmsKeyId' => [ 'shape' => 'String', ], ], ], 'CreateDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', 'DBParameterGroupFamily', 'Description', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBClusterParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroup' => [ 'shape' => 'DBClusterParameterGroup', ], ], ], 'CreateDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'CreateDBClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterSnapshotIdentifier', 'DBClusterIdentifier', ], 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshot' => [ 'shape' => 'DBClusterSnapshot', ], ], ], 'CreateDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'DBInstanceClass', 'Engine', ], 'members' => [ 'DBName' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'DBParameterGroupName' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'String', ], 'StorageEncrypted' => [ 'shape' => 'BooleanOptional', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'Domain' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'PromotionTier' => [ 'shape' => 'IntegerOptional', ], ], ], 'CreateDBInstanceReadReplicaMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'SourceDBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'SourceDBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], ], ], 'CreateDBInstanceReadReplicaResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'CreateDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'CreateDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', 'DBParameterGroupFamily', 'Description', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroup' => [ 'shape' => 'DBParameterGroup', ], ], ], 'CreateDBSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', 'DBSecurityGroupDescription', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'DBSecurityGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBSecurityGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroup' => [ 'shape' => 'DBSecurityGroup', ], ], ], 'CreateDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', 'DBInstanceIdentifier', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshot' => [ 'shape' => 'DBSnapshot', ], ], ], 'CreateDBSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSubnetGroupName', 'DBSubnetGroupDescription', 'SubnetIds', ], 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSubnetGroupDescription' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroup' => [ 'shape' => 'DBSubnetGroup', ], ], ], 'CreateEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SnsTopicArn', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'SourceIds' => [ 'shape' => 'SourceIdsList', ], 'Enabled' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'CreateOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'OptionGroupName', 'EngineName', 'MajorEngineVersion', 'OptionGroupDescription', ], 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'OptionGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateOptionGroupResult' => [ 'type' => 'structure', 'members' => [ 'OptionGroup' => [ 'shape' => 'OptionGroup', ], ], ], 'DBCluster' => [ 'type' => 'structure', 'members' => [ 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'DatabaseName' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterParameterGroup' => [ 'shape' => 'String', ], 'DBSubnetGroup' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'PercentProgress' => [ 'shape' => 'String', ], 'EarliestRestorableTime' => [ 'shape' => 'TStamp', ], 'Endpoint' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LatestRestorableTime' => [ 'shape' => 'TStamp', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MasterUsername' => [ 'shape' => 'String', ], 'DBClusterOptionGroupMemberships' => [ 'shape' => 'DBClusterOptionGroupMemberships', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'ReplicationSourceIdentifier' => [ 'shape' => 'String', ], 'ReadReplicaIdentifiers' => [ 'shape' => 'ReadReplicaIdentifierList', ], 'DBClusterMembers' => [ 'shape' => 'DBClusterMemberList', ], 'VpcSecurityGroups' => [ 'shape' => 'VpcSecurityGroupMembershipList', ], 'HostedZoneId' => [ 'shape' => 'String', ], 'StorageEncrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'DbClusterResourceId' => [ 'shape' => 'String', ], 'DBClusterArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBClusterAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBCluster', 'locationName' => 'DBCluster', ], ], 'DBClusterMember' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'IsClusterWriter' => [ 'shape' => 'Boolean', ], 'DBClusterParameterGroupStatus' => [ 'shape' => 'String', ], 'PromotionTier' => [ 'shape' => 'IntegerOptional', ], ], 'wrapper' => true, ], 'DBClusterMemberList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterMember', 'locationName' => 'DBClusterMember', ], ], 'DBClusterMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBClusters' => [ 'shape' => 'DBClusterList', ], ], ], 'DBClusterNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterOptionGroupMemberships' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterOptionGroupStatus', 'locationName' => 'DBClusterOptionGroup', ], ], 'DBClusterOptionGroupStatus' => [ 'type' => 'structure', 'members' => [ 'DBClusterOptionGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'DBClusterParameterGroup' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'DBClusterParameterGroupArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBClusterParameterGroupDetails' => [ 'type' => 'structure', 'members' => [ 'Parameters' => [ 'shape' => 'ParametersList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DBClusterParameterGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterParameterGroup', 'locationName' => 'DBClusterParameterGroup', ], ], 'DBClusterParameterGroupNameMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DBClusterParameterGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterParameterGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBClusterParameterGroups' => [ 'shape' => 'DBClusterParameterGroupList', ], ], ], 'DBClusterQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterQuotaExceededFault', 'httpStatusCode' => 403, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterSnapshot' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotCreateTime' => [ 'shape' => 'TStamp', ], 'Engine' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'Integer', ], 'Status' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'VpcId' => [ 'shape' => 'String', ], 'ClusterCreateTime' => [ 'shape' => 'TStamp', ], 'MasterUsername' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'PercentProgress' => [ 'shape' => 'Integer', ], 'StorageEncrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'DBClusterSnapshotArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBClusterSnapshotAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterSnapshotAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterSnapshotAttribute' => [ 'type' => 'structure', 'members' => [ 'AttributeName' => [ 'shape' => 'String', ], 'AttributeValues' => [ 'shape' => 'AttributeValueList', ], ], ], 'DBClusterSnapshotAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterSnapshotAttribute', 'locationName' => 'DBClusterSnapshotAttribute', ], ], 'DBClusterSnapshotAttributesResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBClusterSnapshotAttributes' => [ 'shape' => 'DBClusterSnapshotAttributeList', ], ], 'wrapper' => true, ], 'DBClusterSnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterSnapshot', 'locationName' => 'DBClusterSnapshot', ], ], 'DBClusterSnapshotMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBClusterSnapshots' => [ 'shape' => 'DBClusterSnapshotList', ], ], ], 'DBClusterSnapshotNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterSnapshotNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBEngineVersion' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'DBEngineDescription' => [ 'shape' => 'String', ], 'DBEngineVersionDescription' => [ 'shape' => 'String', ], 'DefaultCharacterSet' => [ 'shape' => 'CharacterSet', ], 'SupportedCharacterSets' => [ 'shape' => 'SupportedCharacterSetsList', ], 'ValidUpgradeTarget' => [ 'shape' => 'ValidUpgradeTargetList', ], ], ], 'DBEngineVersionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBEngineVersion', 'locationName' => 'DBEngineVersion', ], ], 'DBEngineVersionMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBEngineVersions' => [ 'shape' => 'DBEngineVersionList', ], ], ], 'DBInstance' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'DBInstanceStatus' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Endpoint' => [ 'shape' => 'Endpoint', ], 'AllocatedStorage' => [ 'shape' => 'Integer', ], 'InstanceCreateTime' => [ 'shape' => 'TStamp', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'Integer', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroupMembershipList', ], 'VpcSecurityGroups' => [ 'shape' => 'VpcSecurityGroupMembershipList', ], 'DBParameterGroups' => [ 'shape' => 'DBParameterGroupStatusList', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroup' => [ 'shape' => 'DBSubnetGroup', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'PendingModifiedValues' => [ 'shape' => 'PendingModifiedValues', ], 'LatestRestorableTime' => [ 'shape' => 'TStamp', ], 'MultiAZ' => [ 'shape' => 'Boolean', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'ReadReplicaSourceDBInstanceIdentifier' => [ 'shape' => 'String', ], 'ReadReplicaDBInstanceIdentifiers' => [ 'shape' => 'ReadReplicaDBInstanceIdentifierList', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupMemberships' => [ 'shape' => 'OptionGroupMembershipList', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'SecondaryAvailabilityZone' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'Boolean', ], 'StatusInfos' => [ 'shape' => 'DBInstanceStatusInfoList', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'DbInstancePort' => [ 'shape' => 'Integer', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'StorageEncrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'DbiResourceId' => [ 'shape' => 'String', ], 'CACertificateIdentifier' => [ 'shape' => 'String', ], 'DomainMemberships' => [ 'shape' => 'DomainMembershipList', ], 'CopyTagsToSnapshot' => [ 'shape' => 'Boolean', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'EnhancedMonitoringResourceArn' => [ 'shape' => 'String', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'PromotionTier' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBInstanceAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBInstance', 'locationName' => 'DBInstance', ], ], 'DBInstanceMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBInstances' => [ 'shape' => 'DBInstanceList', ], ], ], 'DBInstanceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceStatusInfo' => [ 'type' => 'structure', 'members' => [ 'StatusType' => [ 'shape' => 'String', ], 'Normal' => [ 'shape' => 'Boolean', ], 'Status' => [ 'shape' => 'String', ], 'Message' => [ 'shape' => 'String', ], ], ], 'DBInstanceStatusInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBInstanceStatusInfo', 'locationName' => 'DBInstanceStatusInfo', ], ], 'DBLogFileNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBLogFileNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroup' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'DBParameterGroupArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBParameterGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBParameterGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroupDetails' => [ 'type' => 'structure', 'members' => [ 'Parameters' => [ 'shape' => 'ParametersList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DBParameterGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBParameterGroup', 'locationName' => 'DBParameterGroup', ], ], 'DBParameterGroupNameMessage' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DBParameterGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBParameterGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBParameterGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroupStatus' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'ParameterApplyStatus' => [ 'shape' => 'String', ], ], ], 'DBParameterGroupStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBParameterGroupStatus', 'locationName' => 'DBParameterGroup', ], ], 'DBParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBParameterGroups' => [ 'shape' => 'DBParameterGroupList', ], ], ], 'DBSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', ], 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'DBSecurityGroupDescription' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'EC2SecurityGroups' => [ 'shape' => 'EC2SecurityGroupList', ], 'IPRanges' => [ 'shape' => 'IPRangeList', ], 'DBSecurityGroupArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBSecurityGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSecurityGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'DBSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSecurityGroupMembership', 'locationName' => 'DBSecurityGroup', ], ], 'DBSecurityGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroups', ], ], ], 'DBSecurityGroupNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'DBSecurityGroupName', ], ], 'DBSecurityGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSecurityGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroupNotSupportedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSecurityGroupNotSupported', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'QuotaExceeded.DBSecurityGroup', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSecurityGroup', 'locationName' => 'DBSecurityGroup', ], ], 'DBSnapshot' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'SnapshotCreateTime' => [ 'shape' => 'TStamp', ], 'Engine' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'Integer', ], 'Status' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'InstanceCreateTime' => [ 'shape' => 'TStamp', ], 'MasterUsername' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PercentProgress' => [ 'shape' => 'Integer', ], 'SourceRegion' => [ 'shape' => 'String', ], 'SourceDBSnapshotIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'DBSnapshotArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBSnapshotAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSnapshotAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSnapshotAttribute' => [ 'type' => 'structure', 'members' => [ 'AttributeName' => [ 'shape' => 'String', ], 'AttributeValues' => [ 'shape' => 'AttributeValueList', ], ], 'wrapper' => true, ], 'DBSnapshotAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSnapshotAttribute', 'locationName' => 'DBSnapshotAttribute', ], ], 'DBSnapshotAttributesResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBSnapshotAttributes' => [ 'shape' => 'DBSnapshotAttributeList', ], ], 'wrapper' => true, ], 'DBSnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSnapshot', 'locationName' => 'DBSnapshot', ], ], 'DBSnapshotMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBSnapshots' => [ 'shape' => 'DBSnapshotList', ], ], ], 'DBSnapshotNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSnapshotNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroup' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSubnetGroupDescription' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'SubnetGroupStatus' => [ 'shape' => 'String', ], 'Subnets' => [ 'shape' => 'SubnetList', ], 'DBSubnetGroupArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBSubnetGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupDoesNotCoverEnoughAZs' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupDoesNotCoverEnoughAZs', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBSubnetGroups' => [ 'shape' => 'DBSubnetGroups', ], ], ], 'DBSubnetGroupNotAllowedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupNotAllowedFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSubnetGroup', 'locationName' => 'DBSubnetGroup', ], ], 'DBSubnetQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBUpgradeDependencyFailureFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBUpgradeDependencyFailure', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DeleteDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'SkipFinalSnapshot' => [ 'shape' => 'Boolean', ], 'FinalDBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'DeleteDBClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterSnapshotIdentifier', ], 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteDBClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshot' => [ 'shape' => 'DBClusterSnapshot', ], ], ], 'DeleteDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'SkipFinalSnapshot' => [ 'shape' => 'Boolean', ], 'FinalDBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'DeleteDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteDBSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshot' => [ 'shape' => 'DBSnapshot', ], ], ], 'DeleteDBSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSubnetGroupName', ], 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], ], ], 'DeleteEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'DeleteOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'OptionGroupName', ], 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], ], ], 'DescribeAccountAttributesMessage' => [ 'type' => 'structure', 'members' => [], ], 'DescribeCertificatesMessage' => [ 'type' => 'structure', 'members' => [ 'CertificateIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterSnapshotAttributesMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterSnapshotIdentifier', ], 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterSnapshotAttributesResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshotAttributesResult' => [ 'shape' => 'DBClusterSnapshotAttributesResult', ], ], ], 'DescribeDBClusterSnapshotsMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'IncludeShared' => [ 'shape' => 'Boolean', ], 'IncludePublic' => [ 'shape' => 'Boolean', ], ], ], 'DescribeDBClustersMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBEngineVersionsMessage' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'DefaultOnly' => [ 'shape' => 'Boolean', ], 'ListSupportedCharacterSets' => [ 'shape' => 'BooleanOptional', ], ], ], 'DescribeDBInstancesMessage' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBLogFilesDetails' => [ 'type' => 'structure', 'members' => [ 'LogFileName' => [ 'shape' => 'String', ], 'LastWritten' => [ 'shape' => 'Long', ], 'Size' => [ 'shape' => 'Long', ], ], ], 'DescribeDBLogFilesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DescribeDBLogFilesDetails', 'locationName' => 'DescribeDBLogFilesDetails', ], ], 'DescribeDBLogFilesMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'FilenameContains' => [ 'shape' => 'String', ], 'FileLastWritten' => [ 'shape' => 'Long', ], 'FileSize' => [ 'shape' => 'Long', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBLogFilesResponse' => [ 'type' => 'structure', 'members' => [ 'DescribeDBLogFiles' => [ 'shape' => 'DescribeDBLogFilesList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBSecurityGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBSnapshotAttributesMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DescribeDBSnapshotAttributesResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotAttributesResult' => [ 'shape' => 'DBSnapshotAttributesResult', ], ], ], 'DescribeDBSnapshotsMessage' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'IncludeShared' => [ 'shape' => 'Boolean', ], 'IncludePublic' => [ 'shape' => 'Boolean', ], ], ], 'DescribeDBSubnetGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultClusterParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupFamily', ], 'members' => [ 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultClusterParametersResult' => [ 'type' => 'structure', 'members' => [ 'EngineDefaults' => [ 'shape' => 'EngineDefaults', ], ], ], 'DescribeEngineDefaultParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupFamily', ], 'members' => [ 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultParametersResult' => [ 'type' => 'structure', 'members' => [ 'EngineDefaults' => [ 'shape' => 'EngineDefaults', ], ], ], 'DescribeEventCategoriesMessage' => [ 'type' => 'structure', 'members' => [ 'SourceType' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], ], ], 'DescribeEventSubscriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEventsMessage' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'EndTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'IntegerOptional', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeOptionGroupOptionsMessage' => [ 'type' => 'structure', 'required' => [ 'EngineName', ], 'members' => [ 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeOptionGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], ], ], 'DescribeOrderableDBInstanceOptionsMessage' => [ 'type' => 'structure', 'required' => [ 'Engine', ], 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Vpc' => [ 'shape' => 'BooleanOptional', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribePendingMaintenanceActionsMessage' => [ 'type' => 'structure', 'members' => [ 'ResourceIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], ], ], 'DescribeReservedDBInstancesMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstanceId' => [ 'shape' => 'String', ], 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReservedDBInstancesOfferingsMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeSourceRegionsMessage' => [ 'type' => 'structure', 'members' => [ 'RegionName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], ], ], 'DomainMembership' => [ 'type' => 'structure', 'members' => [ 'Domain' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'FQDN' => [ 'shape' => 'String', ], 'IAMRoleName' => [ 'shape' => 'String', ], ], ], 'DomainMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DomainMembership', 'locationName' => 'DomainMembership', ], ], 'DomainNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DomainNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'Double' => [ 'type' => 'double', ], 'DownloadDBLogFilePortionDetails' => [ 'type' => 'structure', 'members' => [ 'LogFileData' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'AdditionalDataPending' => [ 'shape' => 'Boolean', ], ], ], 'DownloadDBLogFilePortionMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'LogFileName', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'LogFileName' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'NumberOfLines' => [ 'shape' => 'Integer', ], ], ], 'EC2SecurityGroup' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupId' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'EC2SecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EC2SecurityGroup', 'locationName' => 'EC2SecurityGroup', ], ], 'Endpoint' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'HostedZoneId' => [ 'shape' => 'String', ], ], ], 'EngineDefaults' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], 'wrapper' => true, ], 'Event' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'Message' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Date' => [ 'shape' => 'TStamp', ], 'SourceArn' => [ 'shape' => 'String', ], ], ], 'EventCategoriesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'EventCategory', ], ], 'EventCategoriesMap' => [ 'type' => 'structure', 'members' => [ 'SourceType' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], ], 'wrapper' => true, ], 'EventCategoriesMapList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventCategoriesMap', 'locationName' => 'EventCategoriesMap', ], ], 'EventCategoriesMessage' => [ 'type' => 'structure', 'members' => [ 'EventCategoriesMapList' => [ 'shape' => 'EventCategoriesMapList', ], ], ], 'EventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Event', 'locationName' => 'Event', ], ], 'EventSubscription' => [ 'type' => 'structure', 'members' => [ 'CustomerAwsId' => [ 'shape' => 'String', ], 'CustSubscriptionId' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'SubscriptionCreationTime' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'SourceIdsList' => [ 'shape' => 'SourceIdsList', ], 'EventCategoriesList' => [ 'shape' => 'EventCategoriesList', ], 'Enabled' => [ 'shape' => 'Boolean', ], 'EventSubscriptionArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'EventSubscriptionQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'EventSubscriptionQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'EventSubscriptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventSubscription', 'locationName' => 'EventSubscription', ], ], 'EventSubscriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'EventSubscriptionsList' => [ 'shape' => 'EventSubscriptionsList', ], ], ], 'EventsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Events' => [ 'shape' => 'EventList', ], ], ], 'FailoverDBClusterMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'TargetDBInstanceIdentifier' => [ 'shape' => 'String', ], ], ], 'FailoverDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'Filter' => [ 'type' => 'structure', 'required' => [ 'Name', 'Values', ], 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Values' => [ 'shape' => 'FilterValueList', ], ], ], 'FilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Filter', 'locationName' => 'Filter', ], ], 'FilterValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'Value', ], ], 'IPRange' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], ], ], 'IPRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPRange', 'locationName' => 'IPRange', ], ], 'InstanceQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InstanceQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientDBClusterCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientDBClusterCapacityFault', 'httpStatusCode' => 403, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientDBInstanceCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientDBInstanceCapacity', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientStorageClusterCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientStorageClusterCapacity', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Integer' => [ 'type' => 'integer', ], 'IntegerOptional' => [ 'type' => 'integer', ], 'InvalidDBClusterSnapshotStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBClusterSnapshotStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBClusterStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBClusterStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBInstanceStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBInstanceState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBParameterGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBParameterGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSecurityGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSecurityGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSnapshotStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSnapshotState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSubnetGroupFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSubnetGroupFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSubnetGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSubnetGroupStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSubnetStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSubnetStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidEventSubscriptionStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidEventSubscriptionState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidOptionGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidOptionGroupStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidRestoreFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidRestoreFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidS3BucketFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidS3BucketFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSubnet' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSubnet', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidVPCNetworkStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidVPCNetworkStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'KMSKeyNotAccessibleFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'KMSKeyNotAccessibleFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'KeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ListTagsForResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], ], ], 'Long' => [ 'type' => 'long', ], 'ModifyDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'NewDBClusterIdentifier' => [ 'shape' => 'String', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], ], ], 'ModifyDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', 'Parameters', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ModifyDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'ModifyDBClusterSnapshotAttributeMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterSnapshotIdentifier', 'AttributeName', ], 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'AttributeName' => [ 'shape' => 'String', ], 'ValuesToAdd' => [ 'shape' => 'AttributeValueList', ], 'ValuesToRemove' => [ 'shape' => 'AttributeValueList', ], ], ], 'ModifyDBClusterSnapshotAttributeResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshotAttributesResult' => [ 'shape' => 'DBClusterSnapshotAttributesResult', ], ], ], 'ModifyDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'DBParameterGroupName' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AllowMajorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'NewDBInstanceIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'String', ], 'CACertificateIdentifier' => [ 'shape' => 'String', ], 'Domain' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'DBPortNumber' => [ 'shape' => 'IntegerOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'PromotionTier' => [ 'shape' => 'IntegerOptional', ], ], ], 'ModifyDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'ModifyDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', 'Parameters', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ModifyDBSnapshotAttributeMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', 'AttributeName', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'AttributeName' => [ 'shape' => 'String', ], 'ValuesToAdd' => [ 'shape' => 'AttributeValueList', ], 'ValuesToRemove' => [ 'shape' => 'AttributeValueList', ], ], ], 'ModifyDBSnapshotAttributeResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotAttributesResult' => [ 'shape' => 'DBSnapshotAttributesResult', ], ], ], 'ModifyDBSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSubnetGroupName', 'SubnetIds', ], 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSubnetGroupDescription' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], ], ], 'ModifyDBSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroup' => [ 'shape' => 'DBSubnetGroup', ], ], ], 'ModifyEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Enabled' => [ 'shape' => 'BooleanOptional', ], ], ], 'ModifyEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'ModifyOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'OptionGroupName', ], 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'OptionsToInclude' => [ 'shape' => 'OptionConfigurationList', ], 'OptionsToRemove' => [ 'shape' => 'OptionNamesList', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], ], ], 'ModifyOptionGroupResult' => [ 'type' => 'structure', 'members' => [ 'OptionGroup' => [ 'shape' => 'OptionGroup', ], ], ], 'Option' => [ 'type' => 'structure', 'members' => [ 'OptionName' => [ 'shape' => 'String', ], 'OptionDescription' => [ 'shape' => 'String', ], 'Persistent' => [ 'shape' => 'Boolean', ], 'Permanent' => [ 'shape' => 'Boolean', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'OptionVersion' => [ 'shape' => 'String', ], 'OptionSettings' => [ 'shape' => 'OptionSettingConfigurationList', ], 'DBSecurityGroupMemberships' => [ 'shape' => 'DBSecurityGroupMembershipList', ], 'VpcSecurityGroupMemberships' => [ 'shape' => 'VpcSecurityGroupMembershipList', ], ], ], 'OptionConfiguration' => [ 'type' => 'structure', 'required' => [ 'OptionName', ], 'members' => [ 'OptionName' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'OptionVersion' => [ 'shape' => 'String', ], 'DBSecurityGroupMemberships' => [ 'shape' => 'DBSecurityGroupNameList', ], 'VpcSecurityGroupMemberships' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'OptionSettings' => [ 'shape' => 'OptionSettingsList', ], ], ], 'OptionConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionConfiguration', 'locationName' => 'OptionConfiguration', ], ], 'OptionGroup' => [ 'type' => 'structure', 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'OptionGroupDescription' => [ 'shape' => 'String', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'Options' => [ 'shape' => 'OptionsList', ], 'AllowsVpcAndNonVpcInstanceMemberships' => [ 'shape' => 'Boolean', ], 'VpcId' => [ 'shape' => 'String', ], 'OptionGroupArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'OptionGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OptionGroupAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'OptionGroupMembership' => [ 'type' => 'structure', 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'OptionGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroupMembership', 'locationName' => 'OptionGroupMembership', ], ], 'OptionGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OptionGroupNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'OptionGroupOption' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'MinimumRequiredMinorEngineVersion' => [ 'shape' => 'String', ], 'PortRequired' => [ 'shape' => 'Boolean', ], 'DefaultPort' => [ 'shape' => 'IntegerOptional', ], 'OptionsDependedOn' => [ 'shape' => 'OptionsDependedOn', ], 'OptionsConflictsWith' => [ 'shape' => 'OptionsConflictsWith', ], 'Persistent' => [ 'shape' => 'Boolean', ], 'Permanent' => [ 'shape' => 'Boolean', ], 'OptionGroupOptionSettings' => [ 'shape' => 'OptionGroupOptionSettingsList', ], 'OptionGroupOptionVersions' => [ 'shape' => 'OptionGroupOptionVersionsList', ], ], ], 'OptionGroupOptionSetting' => [ 'type' => 'structure', 'members' => [ 'SettingName' => [ 'shape' => 'String', ], 'SettingDescription' => [ 'shape' => 'String', ], 'DefaultValue' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], ], ], 'OptionGroupOptionSettingsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroupOptionSetting', 'locationName' => 'OptionGroupOptionSetting', ], ], 'OptionGroupOptionVersionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionVersion', 'locationName' => 'OptionVersion', ], ], 'OptionGroupOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroupOption', 'locationName' => 'OptionGroupOption', ], ], 'OptionGroupOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'OptionGroupOptions' => [ 'shape' => 'OptionGroupOptionsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'OptionGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OptionGroupQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'OptionGroups' => [ 'type' => 'structure', 'members' => [ 'OptionGroupsList' => [ 'shape' => 'OptionGroupsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'OptionGroupsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroup', 'locationName' => 'OptionGroup', ], ], 'OptionNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'OptionSetting' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], 'DefaultValue' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'IsCollection' => [ 'shape' => 'Boolean', ], ], ], 'OptionSettingConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionSetting', 'locationName' => 'OptionSetting', ], ], 'OptionSettingsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionSetting', 'locationName' => 'OptionSetting', ], ], 'OptionVersion' => [ 'type' => 'structure', 'members' => [ 'Version' => [ 'shape' => 'String', ], 'IsDefault' => [ 'shape' => 'Boolean', ], ], ], 'OptionsConflictsWith' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'OptionConflictName', ], ], 'OptionsDependedOn' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'OptionName', ], ], 'OptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Option', 'locationName' => 'Option', ], ], 'OrderableDBInstanceOption' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'AvailabilityZones' => [ 'shape' => 'AvailabilityZoneList', ], 'MultiAZCapable' => [ 'shape' => 'Boolean', ], 'ReadReplicaCapable' => [ 'shape' => 'Boolean', ], 'Vpc' => [ 'shape' => 'Boolean', ], 'SupportsStorageEncryption' => [ 'shape' => 'Boolean', ], 'StorageType' => [ 'shape' => 'String', ], 'SupportsIops' => [ 'shape' => 'Boolean', ], 'SupportsEnhancedMonitoring' => [ 'shape' => 'Boolean', ], ], 'wrapper' => true, ], 'OrderableDBInstanceOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OrderableDBInstanceOption', 'locationName' => 'OrderableDBInstanceOption', ], ], 'OrderableDBInstanceOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'OrderableDBInstanceOptions' => [ 'shape' => 'OrderableDBInstanceOptionsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'Parameter' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'ParameterValue' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'MinimumEngineVersion' => [ 'shape' => 'String', ], 'ApplyMethod' => [ 'shape' => 'ApplyMethod', ], ], ], 'ParametersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Parameter', 'locationName' => 'Parameter', ], ], 'PendingMaintenanceAction' => [ 'type' => 'structure', 'members' => [ 'Action' => [ 'shape' => 'String', ], 'AutoAppliedAfterDate' => [ 'shape' => 'TStamp', ], 'ForcedApplyDate' => [ 'shape' => 'TStamp', ], 'OptInStatus' => [ 'shape' => 'String', ], 'CurrentApplyDate' => [ 'shape' => 'TStamp', ], 'Description' => [ 'shape' => 'String', ], ], ], 'PendingMaintenanceActionDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'PendingMaintenanceAction', 'locationName' => 'PendingMaintenanceAction', ], ], 'PendingMaintenanceActions' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourcePendingMaintenanceActions', 'locationName' => 'ResourcePendingMaintenanceActions', ], ], 'PendingMaintenanceActionsMessage' => [ 'type' => 'structure', 'members' => [ 'PendingMaintenanceActions' => [ 'shape' => 'PendingMaintenanceActions', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'PendingModifiedValues' => [ 'type' => 'structure', 'members' => [ 'DBInstanceClass' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'CACertificateIdentifier' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], ], ], 'PointInTimeRestoreNotEnabledFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'PointInTimeRestoreNotEnabled', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'PromoteReadReplicaDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'PromoteReadReplicaDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'PromoteReadReplicaMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], ], ], 'PromoteReadReplicaResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'ProvisionedIopsNotAvailableInAZFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ProvisionedIopsNotAvailableInAZFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'PurchaseReservedDBInstancesOfferingMessage' => [ 'type' => 'structure', 'required' => [ 'ReservedDBInstancesOfferingId', ], 'members' => [ 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'ReservedDBInstanceId' => [ 'shape' => 'String', ], 'DBInstanceCount' => [ 'shape' => 'IntegerOptional', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'PurchaseReservedDBInstancesOfferingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstance' => [ 'shape' => 'ReservedDBInstance', ], ], ], 'ReadReplicaDBInstanceIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ReadReplicaDBInstanceIdentifier', ], ], 'ReadReplicaIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ReadReplicaIdentifier', ], ], 'RebootDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'ForceFailover' => [ 'shape' => 'BooleanOptional', ], ], ], 'RebootDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'RecurringCharge' => [ 'type' => 'structure', 'members' => [ 'RecurringChargeAmount' => [ 'shape' => 'Double', ], 'RecurringChargeFrequency' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'RecurringChargeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecurringCharge', 'locationName' => 'RecurringCharge', ], ], 'RemoveSourceIdentifierFromSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SourceIdentifier', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SourceIdentifier' => [ 'shape' => 'String', ], ], ], 'RemoveSourceIdentifierFromSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'RemoveTagsFromResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'TagKeys', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'KeyList', ], ], ], 'ReservedDBInstance' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstanceId' => [ 'shape' => 'String', ], 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CurrencyCode' => [ 'shape' => 'String', ], 'DBInstanceCount' => [ 'shape' => 'Integer', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'Boolean', ], 'State' => [ 'shape' => 'String', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], 'ReservedDBInstanceArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'ReservedDBInstanceAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstanceAlreadyExists', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedDBInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedDBInstance', 'locationName' => 'ReservedDBInstance', ], ], 'ReservedDBInstanceMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedDBInstances' => [ 'shape' => 'ReservedDBInstanceList', ], ], ], 'ReservedDBInstanceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstanceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedDBInstanceQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstanceQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ReservedDBInstancesOffering' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CurrencyCode' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'Boolean', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], ], 'wrapper' => true, ], 'ReservedDBInstancesOfferingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedDBInstancesOffering', 'locationName' => 'ReservedDBInstancesOffering', ], ], 'ReservedDBInstancesOfferingMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedDBInstancesOfferings' => [ 'shape' => 'ReservedDBInstancesOfferingList', ], ], ], 'ReservedDBInstancesOfferingNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstancesOfferingNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ResetDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'ResetAllParameters' => [ 'shape' => 'Boolean', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ResetDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'ResetAllParameters' => [ 'shape' => 'Boolean', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ResourceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ResourceNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ResourcePendingMaintenanceActions' => [ 'type' => 'structure', 'members' => [ 'ResourceIdentifier' => [ 'shape' => 'String', ], 'PendingMaintenanceActionDetails' => [ 'shape' => 'PendingMaintenanceActionDetails', ], ], 'wrapper' => true, ], 'RestoreDBClusterFromS3Message' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'Engine', 'MasterUsername', 'MasterUserPassword', 'SourceEngine', 'SourceEngineVersion', 'S3BucketName', 'S3IngestionRoleArn', ], 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'DatabaseName' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageEncrypted' => [ 'shape' => 'BooleanOptional', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'SourceEngine' => [ 'shape' => 'String', ], 'SourceEngineVersion' => [ 'shape' => 'String', ], 'S3BucketName' => [ 'shape' => 'String', ], 'S3Prefix' => [ 'shape' => 'String', ], 'S3IngestionRoleArn' => [ 'shape' => 'String', ], ], ], 'RestoreDBClusterFromS3Result' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'RestoreDBClusterFromSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'SnapshotIdentifier', 'Engine', ], 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DatabaseName' => [ 'shape' => 'String', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'Tags' => [ 'shape' => 'TagList', ], 'KmsKeyId' => [ 'shape' => 'String', ], ], ], 'RestoreDBClusterFromSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'RestoreDBClusterToPointInTimeMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'SourceDBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'SourceDBClusterIdentifier' => [ 'shape' => 'String', ], 'RestoreToTime' => [ 'shape' => 'TStamp', ], 'UseLatestRestorableTime' => [ 'shape' => 'Boolean', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'Tags' => [ 'shape' => 'TagList', ], 'KmsKeyId' => [ 'shape' => 'String', ], ], ], 'RestoreDBClusterToPointInTimeResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'RestoreDBInstanceFromDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'DBSnapshotIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'String', ], 'Domain' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], ], ], 'RestoreDBInstanceFromDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'RestoreDBInstanceToPointInTimeMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBInstanceIdentifier', 'TargetDBInstanceIdentifier', ], 'members' => [ 'SourceDBInstanceIdentifier' => [ 'shape' => 'String', ], 'TargetDBInstanceIdentifier' => [ 'shape' => 'String', ], 'RestoreTime' => [ 'shape' => 'TStamp', ], 'UseLatestRestorableTime' => [ 'shape' => 'Boolean', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'String', ], 'Domain' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], ], ], 'RestoreDBInstanceToPointInTimeResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'RevokeDBSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupId' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'RevokeDBSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroup' => [ 'shape' => 'DBSecurityGroup', ], ], ], 'SNSInvalidTopicFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSInvalidTopic', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SNSNoAuthorizationFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSNoAuthorization', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SNSTopicArnNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSTopicArnNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SharedSnapshotQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SharedSnapshotQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SourceIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SourceId', ], ], 'SourceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SourceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SourceRegion' => [ 'type' => 'structure', 'members' => [ 'RegionName' => [ 'shape' => 'String', ], 'Endpoint' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'SourceRegionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SourceRegion', 'locationName' => 'SourceRegion', ], ], 'SourceRegionMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'SourceRegions' => [ 'shape' => 'SourceRegionList', ], ], ], 'SourceType' => [ 'type' => 'string', 'enum' => [ 'db-instance', 'db-parameter-group', 'db-security-group', 'db-snapshot', 'db-cluster', 'db-cluster-snapshot', ], ], 'StorageQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'StorageQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'StorageTypeNotSupportedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'StorageTypeNotSupported', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'String' => [ 'type' => 'string', ], 'Subnet' => [ 'type' => 'structure', 'members' => [ 'SubnetIdentifier' => [ 'shape' => 'String', ], 'SubnetAvailabilityZone' => [ 'shape' => 'AvailabilityZone', ], 'SubnetStatus' => [ 'shape' => 'String', ], ], ], 'SubnetAlreadyInUse' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubnetAlreadyInUse', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubnetIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SubnetIdentifier', ], ], 'SubnetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subnet', 'locationName' => 'Subnet', ], ], 'SubscriptionAlreadyExistFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionAlreadyExist', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionCategoryNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionCategoryNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SupportedCharacterSetsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CharacterSet', 'locationName' => 'CharacterSet', ], ], 'TStamp' => [ 'type' => 'timestamp', ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], ], 'TagListMessage' => [ 'type' => 'structure', 'members' => [ 'TagList' => [ 'shape' => 'TagList', ], ], ], 'UpgradeTarget' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'AutoUpgrade' => [ 'shape' => 'Boolean', ], 'IsMajorVersionUpgrade' => [ 'shape' => 'Boolean', ], ], ], 'ValidUpgradeTargetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'UpgradeTarget', 'locationName' => 'UpgradeTarget', ], ], 'VpcSecurityGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'VpcSecurityGroupId', ], ], 'VpcSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'VpcSecurityGroupId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'VpcSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcSecurityGroupMembership', 'locationName' => 'VpcSecurityGroupMembership', ], ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2014-10-31', 'endpointPrefix' => 'rds', 'protocol' => 'query', 'serviceAbbreviation' => 'Amazon RDS', 'serviceFullName' => 'Amazon Relational Database Service', 'signatureVersion' => 'v4', 'xmlNamespace' => 'http://rds.amazonaws.com/doc/2014-10-31/', ], 'operations' => [ 'AddRoleToDBCluster' => [ 'name' => 'AddRoleToDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddRoleToDBClusterMessage', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBClusterRoleAlreadyExistsFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBClusterRoleQuotaExceededFault', ], ], ], 'AddSourceIdentifierToSubscription' => [ 'name' => 'AddSourceIdentifierToSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddSourceIdentifierToSubscriptionMessage', ], 'output' => [ 'shape' => 'AddSourceIdentifierToSubscriptionResult', 'resultWrapper' => 'AddSourceIdentifierToSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], ], ], 'AddTagsToResource' => [ 'name' => 'AddTagsToResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddTagsToResourceMessage', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'ApplyPendingMaintenanceAction' => [ 'name' => 'ApplyPendingMaintenanceAction', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ApplyPendingMaintenanceActionMessage', ], 'output' => [ 'shape' => 'ApplyPendingMaintenanceActionResult', 'resultWrapper' => 'ApplyPendingMaintenanceActionResult', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundFault', ], ], ], 'AuthorizeDBSecurityGroupIngress' => [ 'name' => 'AuthorizeDBSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeDBSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'AuthorizeDBSecurityGroupIngressResult', 'resultWrapper' => 'AuthorizeDBSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'AuthorizationAlreadyExistsFault', ], [ 'shape' => 'AuthorizationQuotaExceededFault', ], ], ], 'CopyDBClusterParameterGroup' => [ 'name' => 'CopyDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'CopyDBClusterParameterGroupResult', 'resultWrapper' => 'CopyDBClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], ], ], 'CopyDBClusterSnapshot' => [ 'name' => 'CopyDBClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBClusterSnapshotMessage', ], 'output' => [ 'shape' => 'CopyDBClusterSnapshotResult', 'resultWrapper' => 'CopyDBClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'CopyDBParameterGroup' => [ 'name' => 'CopyDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBParameterGroupMessage', ], 'output' => [ 'shape' => 'CopyDBParameterGroupResult', 'resultWrapper' => 'CopyDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], ], ], 'CopyDBSnapshot' => [ 'name' => 'CopyDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyDBSnapshotMessage', ], 'output' => [ 'shape' => 'CopyDBSnapshotResult', 'resultWrapper' => 'CopyDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'CopyOptionGroup' => [ 'name' => 'CopyOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyOptionGroupMessage', ], 'output' => [ 'shape' => 'CopyOptionGroupResult', 'resultWrapper' => 'CopyOptionGroupResult', ], 'errors' => [ [ 'shape' => 'OptionGroupAlreadyExistsFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'OptionGroupQuotaExceededFault', ], ], ], 'CreateDBCluster' => [ 'name' => 'CreateDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBClusterMessage', ], 'output' => [ 'shape' => 'CreateDBClusterResult', 'resultWrapper' => 'CreateDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterAlreadyExistsFault', ], [ 'shape' => 'InsufficientStorageClusterCapacityFault', ], [ 'shape' => 'DBClusterQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'DBClusterParameterGroupNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], ], ], 'CreateDBClusterParameterGroup' => [ 'name' => 'CreateDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'CreateDBClusterParameterGroupResult', 'resultWrapper' => 'CreateDBClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], ], ], 'CreateDBClusterSnapshot' => [ 'name' => 'CreateDBClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBClusterSnapshotMessage', ], 'output' => [ 'shape' => 'CreateDBClusterSnapshotResult', 'resultWrapper' => 'CreateDBClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], ], ], 'CreateDBInstance' => [ 'name' => 'CreateDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBInstanceMessage', ], 'output' => [ 'shape' => 'CreateDBInstanceResult', 'resultWrapper' => 'CreateDBInstanceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DomainNotFoundFault', ], ], ], 'CreateDBInstanceReadReplica' => [ 'name' => 'CreateDBInstanceReadReplica', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBInstanceReadReplicaMessage', ], 'output' => [ 'shape' => 'CreateDBInstanceReadReplicaResult', 'resultWrapper' => 'CreateDBInstanceReadReplicaResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupNotAllowedFault', ], [ 'shape' => 'InvalidDBSubnetGroupFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'CreateDBParameterGroup' => [ 'name' => 'CreateDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBParameterGroupMessage', ], 'output' => [ 'shape' => 'CreateDBParameterGroupResult', 'resultWrapper' => 'CreateDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupQuotaExceededFault', ], [ 'shape' => 'DBParameterGroupAlreadyExistsFault', ], ], ], 'CreateDBSecurityGroup' => [ 'name' => 'CreateDBSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBSecurityGroupMessage', ], 'output' => [ 'shape' => 'CreateDBSecurityGroupResult', 'resultWrapper' => 'CreateDBSecurityGroupResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupAlreadyExistsFault', ], [ 'shape' => 'DBSecurityGroupQuotaExceededFault', ], [ 'shape' => 'DBSecurityGroupNotSupportedFault', ], ], ], 'CreateDBSnapshot' => [ 'name' => 'CreateDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBSnapshotMessage', ], 'output' => [ 'shape' => 'CreateDBSnapshotResult', 'resultWrapper' => 'CreateDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], ], ], 'CreateDBSubnetGroup' => [ 'name' => 'CreateDBSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateDBSubnetGroupMessage', ], 'output' => [ 'shape' => 'CreateDBSubnetGroupResult', 'resultWrapper' => 'CreateDBSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'DBSubnetGroupAlreadyExistsFault', ], [ 'shape' => 'DBSubnetGroupQuotaExceededFault', ], [ 'shape' => 'DBSubnetQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], ], ], 'CreateEventSubscription' => [ 'name' => 'CreateEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateEventSubscriptionMessage', ], 'output' => [ 'shape' => 'CreateEventSubscriptionResult', 'resultWrapper' => 'CreateEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'EventSubscriptionQuotaExceededFault', ], [ 'shape' => 'SubscriptionAlreadyExistFault', ], [ 'shape' => 'SNSInvalidTopicFault', ], [ 'shape' => 'SNSNoAuthorizationFault', ], [ 'shape' => 'SNSTopicArnNotFoundFault', ], [ 'shape' => 'SubscriptionCategoryNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], ], ], 'CreateOptionGroup' => [ 'name' => 'CreateOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateOptionGroupMessage', ], 'output' => [ 'shape' => 'CreateOptionGroupResult', 'resultWrapper' => 'CreateOptionGroupResult', ], 'errors' => [ [ 'shape' => 'OptionGroupAlreadyExistsFault', ], [ 'shape' => 'OptionGroupQuotaExceededFault', ], ], ], 'DeleteDBCluster' => [ 'name' => 'DeleteDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBClusterMessage', ], 'output' => [ 'shape' => 'DeleteDBClusterResult', 'resultWrapper' => 'DeleteDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'DBClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], ], ], 'DeleteDBClusterParameterGroup' => [ 'name' => 'DeleteDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBClusterParameterGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DeleteDBClusterSnapshot' => [ 'name' => 'DeleteDBClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBClusterSnapshotMessage', ], 'output' => [ 'shape' => 'DeleteDBClusterSnapshotResult', 'resultWrapper' => 'DeleteDBClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], ], ], 'DeleteDBInstance' => [ 'name' => 'DeleteDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBInstanceMessage', ], 'output' => [ 'shape' => 'DeleteDBInstanceResult', 'resultWrapper' => 'DeleteDBInstanceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBSnapshotAlreadyExistsFault', ], [ 'shape' => 'SnapshotQuotaExceededFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], ], ], 'DeleteDBParameterGroup' => [ 'name' => 'DeleteDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBParameterGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DeleteDBSecurityGroup' => [ 'name' => 'DeleteDBSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBSecurityGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], ], ], 'DeleteDBSnapshot' => [ 'name' => 'DeleteDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBSnapshotMessage', ], 'output' => [ 'shape' => 'DeleteDBSnapshotResult', 'resultWrapper' => 'DeleteDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'DeleteDBSubnetGroup' => [ 'name' => 'DeleteDBSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteDBSubnetGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidDBSubnetStateFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], ], ], 'DeleteEventSubscription' => [ 'name' => 'DeleteEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteEventSubscriptionMessage', ], 'output' => [ 'shape' => 'DeleteEventSubscriptionResult', 'resultWrapper' => 'DeleteEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'InvalidEventSubscriptionStateFault', ], ], ], 'DeleteOptionGroup' => [ 'name' => 'DeleteOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteOptionGroupMessage', ], 'errors' => [ [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'InvalidOptionGroupStateFault', ], ], ], 'DescribeAccountAttributes' => [ 'name' => 'DescribeAccountAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAccountAttributesMessage', ], 'output' => [ 'shape' => 'AccountAttributesMessage', 'resultWrapper' => 'DescribeAccountAttributesResult', ], ], 'DescribeCertificates' => [ 'name' => 'DescribeCertificates', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCertificatesMessage', ], 'output' => [ 'shape' => 'CertificateMessage', 'resultWrapper' => 'DescribeCertificatesResult', ], 'errors' => [ [ 'shape' => 'CertificateNotFoundFault', ], ], ], 'DescribeDBClusterParameterGroups' => [ 'name' => 'DescribeDBClusterParameterGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterParameterGroupsMessage', ], 'output' => [ 'shape' => 'DBClusterParameterGroupsMessage', 'resultWrapper' => 'DescribeDBClusterParameterGroupsResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBClusterParameters' => [ 'name' => 'DescribeDBClusterParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterParametersMessage', ], 'output' => [ 'shape' => 'DBClusterParameterGroupDetails', 'resultWrapper' => 'DescribeDBClusterParametersResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBClusterSnapshotAttributes' => [ 'name' => 'DescribeDBClusterSnapshotAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterSnapshotAttributesMessage', ], 'output' => [ 'shape' => 'DescribeDBClusterSnapshotAttributesResult', 'resultWrapper' => 'DescribeDBClusterSnapshotAttributesResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], ], ], 'DescribeDBClusterSnapshots' => [ 'name' => 'DescribeDBClusterSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClusterSnapshotsMessage', ], 'output' => [ 'shape' => 'DBClusterSnapshotMessage', 'resultWrapper' => 'DescribeDBClusterSnapshotsResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], ], ], 'DescribeDBClusters' => [ 'name' => 'DescribeDBClusters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBClustersMessage', ], 'output' => [ 'shape' => 'DBClusterMessage', 'resultWrapper' => 'DescribeDBClustersResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], ], ], 'DescribeDBEngineVersions' => [ 'name' => 'DescribeDBEngineVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBEngineVersionsMessage', ], 'output' => [ 'shape' => 'DBEngineVersionMessage', 'resultWrapper' => 'DescribeDBEngineVersionsResult', ], ], 'DescribeDBInstances' => [ 'name' => 'DescribeDBInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBInstancesMessage', ], 'output' => [ 'shape' => 'DBInstanceMessage', 'resultWrapper' => 'DescribeDBInstancesResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'DescribeDBLogFiles' => [ 'name' => 'DescribeDBLogFiles', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBLogFilesMessage', ], 'output' => [ 'shape' => 'DescribeDBLogFilesResponse', 'resultWrapper' => 'DescribeDBLogFilesResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'DescribeDBParameterGroups' => [ 'name' => 'DescribeDBParameterGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBParameterGroupsMessage', ], 'output' => [ 'shape' => 'DBParameterGroupsMessage', 'resultWrapper' => 'DescribeDBParameterGroupsResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBParameters' => [ 'name' => 'DescribeDBParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBParametersMessage', ], 'output' => [ 'shape' => 'DBParameterGroupDetails', 'resultWrapper' => 'DescribeDBParametersResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'DescribeDBSecurityGroups' => [ 'name' => 'DescribeDBSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSecurityGroupsMessage', ], 'output' => [ 'shape' => 'DBSecurityGroupMessage', 'resultWrapper' => 'DescribeDBSecurityGroupsResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupNotFoundFault', ], ], ], 'DescribeDBSnapshotAttributes' => [ 'name' => 'DescribeDBSnapshotAttributes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSnapshotAttributesMessage', ], 'output' => [ 'shape' => 'DescribeDBSnapshotAttributesResult', 'resultWrapper' => 'DescribeDBSnapshotAttributesResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'DescribeDBSnapshots' => [ 'name' => 'DescribeDBSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSnapshotsMessage', ], 'output' => [ 'shape' => 'DBSnapshotMessage', 'resultWrapper' => 'DescribeDBSnapshotsResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'DescribeDBSubnetGroups' => [ 'name' => 'DescribeDBSubnetGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDBSubnetGroupsMessage', ], 'output' => [ 'shape' => 'DBSubnetGroupMessage', 'resultWrapper' => 'DescribeDBSubnetGroupsResult', ], 'errors' => [ [ 'shape' => 'DBSubnetGroupNotFoundFault', ], ], ], 'DescribeEngineDefaultClusterParameters' => [ 'name' => 'DescribeEngineDefaultClusterParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEngineDefaultClusterParametersMessage', ], 'output' => [ 'shape' => 'DescribeEngineDefaultClusterParametersResult', 'resultWrapper' => 'DescribeEngineDefaultClusterParametersResult', ], ], 'DescribeEngineDefaultParameters' => [ 'name' => 'DescribeEngineDefaultParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEngineDefaultParametersMessage', ], 'output' => [ 'shape' => 'DescribeEngineDefaultParametersResult', 'resultWrapper' => 'DescribeEngineDefaultParametersResult', ], ], 'DescribeEventCategories' => [ 'name' => 'DescribeEventCategories', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventCategoriesMessage', ], 'output' => [ 'shape' => 'EventCategoriesMessage', 'resultWrapper' => 'DescribeEventCategoriesResult', ], ], 'DescribeEventSubscriptions' => [ 'name' => 'DescribeEventSubscriptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventSubscriptionsMessage', ], 'output' => [ 'shape' => 'EventSubscriptionsMessage', 'resultWrapper' => 'DescribeEventSubscriptionsResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], ], ], 'DescribeEvents' => [ 'name' => 'DescribeEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventsMessage', ], 'output' => [ 'shape' => 'EventsMessage', 'resultWrapper' => 'DescribeEventsResult', ], ], 'DescribeOptionGroupOptions' => [ 'name' => 'DescribeOptionGroupOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOptionGroupOptionsMessage', ], 'output' => [ 'shape' => 'OptionGroupOptionsMessage', 'resultWrapper' => 'DescribeOptionGroupOptionsResult', ], ], 'DescribeOptionGroups' => [ 'name' => 'DescribeOptionGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOptionGroupsMessage', ], 'output' => [ 'shape' => 'OptionGroups', 'resultWrapper' => 'DescribeOptionGroupsResult', ], 'errors' => [ [ 'shape' => 'OptionGroupNotFoundFault', ], ], ], 'DescribeOrderableDBInstanceOptions' => [ 'name' => 'DescribeOrderableDBInstanceOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOrderableDBInstanceOptionsMessage', ], 'output' => [ 'shape' => 'OrderableDBInstanceOptionsMessage', 'resultWrapper' => 'DescribeOrderableDBInstanceOptionsResult', ], ], 'DescribePendingMaintenanceActions' => [ 'name' => 'DescribePendingMaintenanceActions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribePendingMaintenanceActionsMessage', ], 'output' => [ 'shape' => 'PendingMaintenanceActionsMessage', 'resultWrapper' => 'DescribePendingMaintenanceActionsResult', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundFault', ], ], ], 'DescribeReservedDBInstances' => [ 'name' => 'DescribeReservedDBInstances', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedDBInstancesMessage', ], 'output' => [ 'shape' => 'ReservedDBInstanceMessage', 'resultWrapper' => 'DescribeReservedDBInstancesResult', ], 'errors' => [ [ 'shape' => 'ReservedDBInstanceNotFoundFault', ], ], ], 'DescribeReservedDBInstancesOfferings' => [ 'name' => 'DescribeReservedDBInstancesOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedDBInstancesOfferingsMessage', ], 'output' => [ 'shape' => 'ReservedDBInstancesOfferingMessage', 'resultWrapper' => 'DescribeReservedDBInstancesOfferingsResult', ], 'errors' => [ [ 'shape' => 'ReservedDBInstancesOfferingNotFoundFault', ], ], ], 'DescribeSourceRegions' => [ 'name' => 'DescribeSourceRegions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSourceRegionsMessage', ], 'output' => [ 'shape' => 'SourceRegionMessage', 'resultWrapper' => 'DescribeSourceRegionsResult', ], ], 'DownloadDBLogFilePortion' => [ 'name' => 'DownloadDBLogFilePortion', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DownloadDBLogFilePortionMessage', ], 'output' => [ 'shape' => 'DownloadDBLogFilePortionDetails', 'resultWrapper' => 'DownloadDBLogFilePortionResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBLogFileNotFoundFault', ], ], ], 'FailoverDBCluster' => [ 'name' => 'FailoverDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'FailoverDBClusterMessage', ], 'output' => [ 'shape' => 'FailoverDBClusterResult', 'resultWrapper' => 'FailoverDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListTagsForResourceMessage', ], 'output' => [ 'shape' => 'TagListMessage', 'resultWrapper' => 'ListTagsForResourceResult', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'ModifyDBCluster' => [ 'name' => 'ModifyDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBClusterMessage', ], 'output' => [ 'shape' => 'ModifyDBClusterResult', 'resultWrapper' => 'ModifyDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'DBClusterParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBClusterAlreadyExistsFault', ], ], ], 'ModifyDBClusterParameterGroup' => [ 'name' => 'ModifyDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'DBClusterParameterGroupNameMessage', 'resultWrapper' => 'ModifyDBClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidDBParameterGroupStateFault', ], ], ], 'ModifyDBClusterSnapshotAttribute' => [ 'name' => 'ModifyDBClusterSnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBClusterSnapshotAttributeMessage', ], 'output' => [ 'shape' => 'ModifyDBClusterSnapshotAttributeResult', 'resultWrapper' => 'ModifyDBClusterSnapshotAttributeResult', ], 'errors' => [ [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'SharedSnapshotQuotaExceededFault', ], ], ], 'ModifyDBInstance' => [ 'name' => 'ModifyDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBInstanceMessage', ], 'output' => [ 'shape' => 'ModifyDBInstanceResult', 'resultWrapper' => 'ModifyDBInstanceResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'DBUpgradeDependencyFailureFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'CertificateNotFoundFault', ], [ 'shape' => 'DomainNotFoundFault', ], ], ], 'ModifyDBParameterGroup' => [ 'name' => 'ModifyDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBParameterGroupMessage', ], 'output' => [ 'shape' => 'DBParameterGroupNameMessage', 'resultWrapper' => 'ModifyDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'DBParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidDBParameterGroupStateFault', ], ], ], 'ModifyDBSnapshotAttribute' => [ 'name' => 'ModifyDBSnapshotAttribute', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBSnapshotAttributeMessage', ], 'output' => [ 'shape' => 'ModifyDBSnapshotAttributeResult', 'resultWrapper' => 'ModifyDBSnapshotAttributeResult', ], 'errors' => [ [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'SharedSnapshotQuotaExceededFault', ], ], ], 'ModifyDBSubnetGroup' => [ 'name' => 'ModifyDBSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyDBSubnetGroupMessage', ], 'output' => [ 'shape' => 'ModifyDBSubnetGroupResult', 'resultWrapper' => 'ModifyDBSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetQuotaExceededFault', ], [ 'shape' => 'SubnetAlreadyInUse', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], ], ], 'ModifyEventSubscription' => [ 'name' => 'ModifyEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyEventSubscriptionMessage', ], 'output' => [ 'shape' => 'ModifyEventSubscriptionResult', 'resultWrapper' => 'ModifyEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'EventSubscriptionQuotaExceededFault', ], [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SNSInvalidTopicFault', ], [ 'shape' => 'SNSNoAuthorizationFault', ], [ 'shape' => 'SNSTopicArnNotFoundFault', ], [ 'shape' => 'SubscriptionCategoryNotFoundFault', ], ], ], 'ModifyOptionGroup' => [ 'name' => 'ModifyOptionGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyOptionGroupMessage', ], 'output' => [ 'shape' => 'ModifyOptionGroupResult', 'resultWrapper' => 'ModifyOptionGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidOptionGroupStateFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], ], ], 'PromoteReadReplica' => [ 'name' => 'PromoteReadReplica', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PromoteReadReplicaMessage', ], 'output' => [ 'shape' => 'PromoteReadReplicaResult', 'resultWrapper' => 'PromoteReadReplicaResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'PromoteReadReplicaDBCluster' => [ 'name' => 'PromoteReadReplicaDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PromoteReadReplicaDBClusterMessage', ], 'output' => [ 'shape' => 'PromoteReadReplicaDBClusterResult', 'resultWrapper' => 'PromoteReadReplicaDBClusterResult', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], ], ], 'PurchaseReservedDBInstancesOffering' => [ 'name' => 'PurchaseReservedDBInstancesOffering', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseReservedDBInstancesOfferingMessage', ], 'output' => [ 'shape' => 'PurchaseReservedDBInstancesOfferingResult', 'resultWrapper' => 'PurchaseReservedDBInstancesOfferingResult', ], 'errors' => [ [ 'shape' => 'ReservedDBInstancesOfferingNotFoundFault', ], [ 'shape' => 'ReservedDBInstanceAlreadyExistsFault', ], [ 'shape' => 'ReservedDBInstanceQuotaExceededFault', ], ], ], 'RebootDBInstance' => [ 'name' => 'RebootDBInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebootDBInstanceMessage', ], 'output' => [ 'shape' => 'RebootDBInstanceResult', 'resultWrapper' => 'RebootDBInstanceResult', ], 'errors' => [ [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], ], ], 'RemoveRoleFromDBCluster' => [ 'name' => 'RemoveRoleFromDBCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveRoleFromDBClusterMessage', ], 'errors' => [ [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBClusterRoleNotFoundFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], ], ], 'RemoveSourceIdentifierFromSubscription' => [ 'name' => 'RemoveSourceIdentifierFromSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveSourceIdentifierFromSubscriptionMessage', ], 'output' => [ 'shape' => 'RemoveSourceIdentifierFromSubscriptionResult', 'resultWrapper' => 'RemoveSourceIdentifierFromSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], ], ], 'RemoveTagsFromResource' => [ 'name' => 'RemoveTagsFromResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RemoveTagsFromResourceMessage', ], 'errors' => [ [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], ], ], 'ResetDBClusterParameterGroup' => [ 'name' => 'ResetDBClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetDBClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'DBClusterParameterGroupNameMessage', 'resultWrapper' => 'ResetDBClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'ResetDBParameterGroup' => [ 'name' => 'ResetDBParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetDBParameterGroupMessage', ], 'output' => [ 'shape' => 'DBParameterGroupNameMessage', 'resultWrapper' => 'ResetDBParameterGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidDBParameterGroupStateFault', ], [ 'shape' => 'DBParameterGroupNotFoundFault', ], ], ], 'RestoreDBClusterFromS3' => [ 'name' => 'RestoreDBClusterFromS3', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBClusterFromS3Message', ], 'output' => [ 'shape' => 'RestoreDBClusterFromS3Result', 'resultWrapper' => 'RestoreDBClusterFromS3Result', ], 'errors' => [ [ 'shape' => 'DBClusterAlreadyExistsFault', ], [ 'shape' => 'DBClusterQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidDBClusterStateFault', ], [ 'shape' => 'InvalidDBSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'InvalidS3BucketFault', ], [ 'shape' => 'DBClusterParameterGroupNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'InsufficientStorageClusterCapacityFault', ], ], ], 'RestoreDBClusterFromSnapshot' => [ 'name' => 'RestoreDBClusterFromSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBClusterFromSnapshotMessage', ], 'output' => [ 'shape' => 'RestoreDBClusterFromSnapshotResult', 'resultWrapper' => 'RestoreDBClusterFromSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBClusterAlreadyExistsFault', ], [ 'shape' => 'DBClusterQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'InsufficientDBClusterCapacityFault', ], [ 'shape' => 'InsufficientStorageClusterCapacityFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'RestoreDBClusterToPointInTime' => [ 'name' => 'RestoreDBClusterToPointInTime', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBClusterToPointInTimeMessage', ], 'output' => [ 'shape' => 'RestoreDBClusterToPointInTimeResult', 'resultWrapper' => 'RestoreDBClusterToPointInTimeResult', ], 'errors' => [ [ 'shape' => 'DBClusterAlreadyExistsFault', ], [ 'shape' => 'DBClusterQuotaExceededFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBClusterNotFoundFault', ], [ 'shape' => 'DBClusterSnapshotNotFoundFault', ], [ 'shape' => 'InsufficientDBClusterCapacityFault', ], [ 'shape' => 'InsufficientStorageClusterCapacityFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'InvalidDBClusterSnapshotStateFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], ], ], 'RestoreDBInstanceFromDBSnapshot' => [ 'name' => 'RestoreDBInstanceFromDBSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBInstanceFromDBSnapshotMessage', ], 'output' => [ 'shape' => 'RestoreDBInstanceFromDBSnapshotResult', 'resultWrapper' => 'RestoreDBInstanceFromDBSnapshotResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'DBSnapshotNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'InvalidDBSnapshotStateFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'DomainNotFoundFault', ], ], ], 'RestoreDBInstanceToPointInTime' => [ 'name' => 'RestoreDBInstanceToPointInTime', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreDBInstanceToPointInTimeMessage', ], 'output' => [ 'shape' => 'RestoreDBInstanceToPointInTimeResult', 'resultWrapper' => 'RestoreDBInstanceToPointInTimeResult', ], 'errors' => [ [ 'shape' => 'DBInstanceAlreadyExistsFault', ], [ 'shape' => 'DBInstanceNotFoundFault', ], [ 'shape' => 'InstanceQuotaExceededFault', ], [ 'shape' => 'InsufficientDBInstanceCapacityFault', ], [ 'shape' => 'InvalidDBInstanceStateFault', ], [ 'shape' => 'PointInTimeRestoreNotEnabledFault', ], [ 'shape' => 'StorageQuotaExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'DBSubnetGroupNotFoundFault', ], [ 'shape' => 'DBSubnetGroupDoesNotCoverEnoughAZs', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'ProvisionedIopsNotAvailableInAZFault', ], [ 'shape' => 'OptionGroupNotFoundFault', ], [ 'shape' => 'StorageTypeNotSupportedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'KMSKeyNotAccessibleFault', ], [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'DomainNotFoundFault', ], ], ], 'RevokeDBSecurityGroupIngress' => [ 'name' => 'RevokeDBSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeDBSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'RevokeDBSecurityGroupIngressResult', 'resultWrapper' => 'RevokeDBSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'DBSecurityGroupNotFoundFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'InvalidDBSecurityGroupStateFault', ], ], ], ], 'shapes' => [ 'AccountAttributesMessage' => [ 'type' => 'structure', 'members' => [ 'AccountQuotas' => [ 'shape' => 'AccountQuotaList', ], ], ], 'AccountQuota' => [ 'type' => 'structure', 'members' => [ 'AccountQuotaName' => [ 'shape' => 'String', ], 'Used' => [ 'shape' => 'Long', ], 'Max' => [ 'shape' => 'Long', ], ], 'wrapper' => true, ], 'AccountQuotaList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountQuota', 'locationName' => 'AccountQuota', ], ], 'AddRoleToDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'RoleArn', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'RoleArn' => [ 'shape' => 'String', ], ], ], 'AddSourceIdentifierToSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SourceIdentifier', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SourceIdentifier' => [ 'shape' => 'String', ], ], ], 'AddSourceIdentifierToSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'AddTagsToResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'Tags', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'ApplyMethod' => [ 'type' => 'string', 'enum' => [ 'immediate', 'pending-reboot', ], ], 'ApplyPendingMaintenanceActionMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceIdentifier', 'ApplyAction', 'OptInType', ], 'members' => [ 'ResourceIdentifier' => [ 'shape' => 'String', ], 'ApplyAction' => [ 'shape' => 'String', ], 'OptInType' => [ 'shape' => 'String', ], ], ], 'ApplyPendingMaintenanceActionResult' => [ 'type' => 'structure', 'members' => [ 'ResourcePendingMaintenanceActions' => [ 'shape' => 'ResourcePendingMaintenanceActions', ], ], ], 'AttributeValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'AttributeValue', ], ], 'AuthorizationAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizeDBSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupId' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'AuthorizeDBSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroup' => [ 'shape' => 'DBSecurityGroup', ], ], ], 'AvailabilityZone' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'AvailabilityZoneList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AvailabilityZone', 'locationName' => 'AvailabilityZone', ], ], 'AvailabilityZones' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'AvailabilityZone', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'BooleanOptional' => [ 'type' => 'boolean', ], 'Certificate' => [ 'type' => 'structure', 'members' => [ 'CertificateIdentifier' => [ 'shape' => 'String', ], 'CertificateType' => [ 'shape' => 'String', ], 'Thumbprint' => [ 'shape' => 'String', ], 'ValidFrom' => [ 'shape' => 'TStamp', ], 'ValidTill' => [ 'shape' => 'TStamp', ], 'CertificateArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'CertificateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Certificate', 'locationName' => 'Certificate', ], ], 'CertificateMessage' => [ 'type' => 'structure', 'members' => [ 'Certificates' => [ 'shape' => 'CertificateList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'CertificateNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CertificateNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'CharacterSet' => [ 'type' => 'structure', 'members' => [ 'CharacterSetName' => [ 'shape' => 'String', ], 'CharacterSetDescription' => [ 'shape' => 'String', ], ], ], 'CopyDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBClusterParameterGroupIdentifier', 'TargetDBClusterParameterGroupIdentifier', 'TargetDBClusterParameterGroupDescription', ], 'members' => [ 'SourceDBClusterParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBClusterParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBClusterParameterGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyDBClusterParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroup' => [ 'shape' => 'DBClusterParameterGroup', ], ], ], 'CopyDBClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBClusterSnapshotIdentifier', 'TargetDBClusterSnapshotIdentifier', ], 'members' => [ 'SourceDBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'TargetDBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyDBClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshot' => [ 'shape' => 'DBClusterSnapshot', ], ], ], 'CopyDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBParameterGroupIdentifier', 'TargetDBParameterGroupIdentifier', 'TargetDBParameterGroupDescription', ], 'members' => [ 'SourceDBParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBParameterGroupIdentifier' => [ 'shape' => 'String', ], 'TargetDBParameterGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyDBParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroup' => [ 'shape' => 'DBParameterGroup', ], ], ], 'CopyDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBSnapshotIdentifier', 'TargetDBSnapshotIdentifier', ], 'members' => [ 'SourceDBSnapshotIdentifier' => [ 'shape' => 'String', ], 'TargetDBSnapshotIdentifier' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'CopyTags' => [ 'shape' => 'BooleanOptional', ], ], ], 'CopyDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshot' => [ 'shape' => 'DBSnapshot', ], ], ], 'CopyOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'SourceOptionGroupIdentifier', 'TargetOptionGroupIdentifier', 'TargetOptionGroupDescription', ], 'members' => [ 'SourceOptionGroupIdentifier' => [ 'shape' => 'String', ], 'TargetOptionGroupIdentifier' => [ 'shape' => 'String', ], 'TargetOptionGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CopyOptionGroupResult' => [ 'type' => 'structure', 'members' => [ 'OptionGroup' => [ 'shape' => 'OptionGroup', ], ], ], 'CreateDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'Engine', ], 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'DatabaseName' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'ReplicationSourceIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageEncrypted' => [ 'shape' => 'BooleanOptional', ], 'KmsKeyId' => [ 'shape' => 'String', ], ], ], 'CreateDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', 'DBParameterGroupFamily', 'Description', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBClusterParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroup' => [ 'shape' => 'DBClusterParameterGroup', ], ], ], 'CreateDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'CreateDBClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterSnapshotIdentifier', 'DBClusterIdentifier', ], 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshot' => [ 'shape' => 'DBClusterSnapshot', ], ], ], 'CreateDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'DBInstanceClass', 'Engine', ], 'members' => [ 'DBName' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'DBParameterGroupName' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'String', ], 'StorageEncrypted' => [ 'shape' => 'BooleanOptional', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'Domain' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'PromotionTier' => [ 'shape' => 'IntegerOptional', ], 'Timezone' => [ 'shape' => 'String', ], ], ], 'CreateDBInstanceReadReplicaMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'SourceDBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'SourceDBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], ], ], 'CreateDBInstanceReadReplicaResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'CreateDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'CreateDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', 'DBParameterGroupFamily', 'Description', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroup' => [ 'shape' => 'DBParameterGroup', ], ], ], 'CreateDBSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', 'DBSecurityGroupDescription', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'DBSecurityGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBSecurityGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroup' => [ 'shape' => 'DBSecurityGroup', ], ], ], 'CreateDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', 'DBInstanceIdentifier', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshot' => [ 'shape' => 'DBSnapshot', ], ], ], 'CreateDBSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSubnetGroupName', 'DBSubnetGroupDescription', 'SubnetIds', ], 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSubnetGroupDescription' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateDBSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroup' => [ 'shape' => 'DBSubnetGroup', ], ], ], 'CreateEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SnsTopicArn', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'SourceIds' => [ 'shape' => 'SourceIdsList', ], 'Enabled' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'CreateOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'OptionGroupName', 'EngineName', 'MajorEngineVersion', 'OptionGroupDescription', ], 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'OptionGroupDescription' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateOptionGroupResult' => [ 'type' => 'structure', 'members' => [ 'OptionGroup' => [ 'shape' => 'OptionGroup', ], ], ], 'DBCluster' => [ 'type' => 'structure', 'members' => [ 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'DatabaseName' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterParameterGroup' => [ 'shape' => 'String', ], 'DBSubnetGroup' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'PercentProgress' => [ 'shape' => 'String', ], 'EarliestRestorableTime' => [ 'shape' => 'TStamp', ], 'Endpoint' => [ 'shape' => 'String', ], 'ReaderEndpoint' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LatestRestorableTime' => [ 'shape' => 'TStamp', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MasterUsername' => [ 'shape' => 'String', ], 'DBClusterOptionGroupMemberships' => [ 'shape' => 'DBClusterOptionGroupMemberships', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'ReplicationSourceIdentifier' => [ 'shape' => 'String', ], 'ReadReplicaIdentifiers' => [ 'shape' => 'ReadReplicaIdentifierList', ], 'DBClusterMembers' => [ 'shape' => 'DBClusterMemberList', ], 'VpcSecurityGroups' => [ 'shape' => 'VpcSecurityGroupMembershipList', ], 'HostedZoneId' => [ 'shape' => 'String', ], 'StorageEncrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'DbClusterResourceId' => [ 'shape' => 'String', ], 'DBClusterArn' => [ 'shape' => 'String', ], 'AssociatedRoles' => [ 'shape' => 'DBClusterRoles', ], ], 'wrapper' => true, ], 'DBClusterAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBCluster', 'locationName' => 'DBCluster', ], ], 'DBClusterMember' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'IsClusterWriter' => [ 'shape' => 'Boolean', ], 'DBClusterParameterGroupStatus' => [ 'shape' => 'String', ], 'PromotionTier' => [ 'shape' => 'IntegerOptional', ], ], 'wrapper' => true, ], 'DBClusterMemberList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterMember', 'locationName' => 'DBClusterMember', ], ], 'DBClusterMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBClusters' => [ 'shape' => 'DBClusterList', ], ], ], 'DBClusterNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterOptionGroupMemberships' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterOptionGroupStatus', 'locationName' => 'DBClusterOptionGroup', ], ], 'DBClusterOptionGroupStatus' => [ 'type' => 'structure', 'members' => [ 'DBClusterOptionGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'DBClusterParameterGroup' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'DBClusterParameterGroupArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBClusterParameterGroupDetails' => [ 'type' => 'structure', 'members' => [ 'Parameters' => [ 'shape' => 'ParametersList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DBClusterParameterGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterParameterGroup', 'locationName' => 'DBClusterParameterGroup', ], ], 'DBClusterParameterGroupNameMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DBClusterParameterGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterParameterGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBClusterParameterGroups' => [ 'shape' => 'DBClusterParameterGroupList', ], ], ], 'DBClusterQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterQuotaExceededFault', 'httpStatusCode' => 403, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterRole' => [ 'type' => 'structure', 'members' => [ 'RoleArn' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'DBClusterRoleAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterRoleAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterRoleNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterRoleNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterRoleQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterRoleQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterRoles' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterRole', 'locationName' => 'DBClusterRole', ], ], 'DBClusterSnapshot' => [ 'type' => 'structure', 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotCreateTime' => [ 'shape' => 'TStamp', ], 'Engine' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'Integer', ], 'Status' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'VpcId' => [ 'shape' => 'String', ], 'ClusterCreateTime' => [ 'shape' => 'TStamp', ], 'MasterUsername' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'PercentProgress' => [ 'shape' => 'Integer', ], 'StorageEncrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'DBClusterSnapshotArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBClusterSnapshotAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterSnapshotAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBClusterSnapshotAttribute' => [ 'type' => 'structure', 'members' => [ 'AttributeName' => [ 'shape' => 'String', ], 'AttributeValues' => [ 'shape' => 'AttributeValueList', ], ], ], 'DBClusterSnapshotAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterSnapshotAttribute', 'locationName' => 'DBClusterSnapshotAttribute', ], ], 'DBClusterSnapshotAttributesResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBClusterSnapshotAttributes' => [ 'shape' => 'DBClusterSnapshotAttributeList', ], ], 'wrapper' => true, ], 'DBClusterSnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBClusterSnapshot', 'locationName' => 'DBClusterSnapshot', ], ], 'DBClusterSnapshotMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBClusterSnapshots' => [ 'shape' => 'DBClusterSnapshotList', ], ], ], 'DBClusterSnapshotNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBClusterSnapshotNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBEngineVersion' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'DBEngineDescription' => [ 'shape' => 'String', ], 'DBEngineVersionDescription' => [ 'shape' => 'String', ], 'DefaultCharacterSet' => [ 'shape' => 'CharacterSet', ], 'SupportedCharacterSets' => [ 'shape' => 'SupportedCharacterSetsList', ], 'ValidUpgradeTarget' => [ 'shape' => 'ValidUpgradeTargetList', ], 'SupportedTimezones' => [ 'shape' => 'SupportedTimezonesList', ], ], ], 'DBEngineVersionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBEngineVersion', 'locationName' => 'DBEngineVersion', ], ], 'DBEngineVersionMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBEngineVersions' => [ 'shape' => 'DBEngineVersionList', ], ], ], 'DBInstance' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'DBInstanceStatus' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Endpoint' => [ 'shape' => 'Endpoint', ], 'AllocatedStorage' => [ 'shape' => 'Integer', ], 'InstanceCreateTime' => [ 'shape' => 'TStamp', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'Integer', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroupMembershipList', ], 'VpcSecurityGroups' => [ 'shape' => 'VpcSecurityGroupMembershipList', ], 'DBParameterGroups' => [ 'shape' => 'DBParameterGroupStatusList', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroup' => [ 'shape' => 'DBSubnetGroup', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'PendingModifiedValues' => [ 'shape' => 'PendingModifiedValues', ], 'LatestRestorableTime' => [ 'shape' => 'TStamp', ], 'MultiAZ' => [ 'shape' => 'Boolean', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'ReadReplicaSourceDBInstanceIdentifier' => [ 'shape' => 'String', ], 'ReadReplicaDBInstanceIdentifiers' => [ 'shape' => 'ReadReplicaDBInstanceIdentifierList', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupMemberships' => [ 'shape' => 'OptionGroupMembershipList', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'SecondaryAvailabilityZone' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'Boolean', ], 'StatusInfos' => [ 'shape' => 'DBInstanceStatusInfoList', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'DbInstancePort' => [ 'shape' => 'Integer', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'StorageEncrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'DbiResourceId' => [ 'shape' => 'String', ], 'CACertificateIdentifier' => [ 'shape' => 'String', ], 'DomainMemberships' => [ 'shape' => 'DomainMembershipList', ], 'CopyTagsToSnapshot' => [ 'shape' => 'Boolean', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'EnhancedMonitoringResourceArn' => [ 'shape' => 'String', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'PromotionTier' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceArn' => [ 'shape' => 'String', ], 'Timezone' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBInstanceAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBInstance', 'locationName' => 'DBInstance', ], ], 'DBInstanceMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBInstances' => [ 'shape' => 'DBInstanceList', ], ], ], 'DBInstanceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBInstanceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBInstanceStatusInfo' => [ 'type' => 'structure', 'members' => [ 'StatusType' => [ 'shape' => 'String', ], 'Normal' => [ 'shape' => 'Boolean', ], 'Status' => [ 'shape' => 'String', ], 'Message' => [ 'shape' => 'String', ], ], ], 'DBInstanceStatusInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBInstanceStatusInfo', 'locationName' => 'DBInstanceStatusInfo', ], ], 'DBLogFileNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBLogFileNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroup' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'DBParameterGroupArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBParameterGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBParameterGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroupDetails' => [ 'type' => 'structure', 'members' => [ 'Parameters' => [ 'shape' => 'ParametersList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DBParameterGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBParameterGroup', 'locationName' => 'DBParameterGroup', ], ], 'DBParameterGroupNameMessage' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DBParameterGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBParameterGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBParameterGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBParameterGroupStatus' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'ParameterApplyStatus' => [ 'shape' => 'String', ], ], ], 'DBParameterGroupStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBParameterGroupStatus', 'locationName' => 'DBParameterGroup', ], ], 'DBParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBParameterGroups' => [ 'shape' => 'DBParameterGroupList', ], ], ], 'DBSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'OwnerId' => [ 'shape' => 'String', ], 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'DBSecurityGroupDescription' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'EC2SecurityGroups' => [ 'shape' => 'EC2SecurityGroupList', ], 'IPRanges' => [ 'shape' => 'IPRangeList', ], 'DBSecurityGroupArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBSecurityGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSecurityGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'DBSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSecurityGroupMembership', 'locationName' => 'DBSecurityGroup', ], ], 'DBSecurityGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroups', ], ], ], 'DBSecurityGroupNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'DBSecurityGroupName', ], ], 'DBSecurityGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSecurityGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroupNotSupportedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSecurityGroupNotSupported', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'QuotaExceeded.DBSecurityGroup', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSecurityGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSecurityGroup', 'locationName' => 'DBSecurityGroup', ], ], 'DBSnapshot' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'SnapshotCreateTime' => [ 'shape' => 'TStamp', ], 'Engine' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'Integer', ], 'Status' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'InstanceCreateTime' => [ 'shape' => 'TStamp', ], 'MasterUsername' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PercentProgress' => [ 'shape' => 'Integer', ], 'SourceRegion' => [ 'shape' => 'String', ], 'SourceDBSnapshotIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'DBSnapshotArn' => [ 'shape' => 'String', ], 'Timezone' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBSnapshotAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSnapshotAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSnapshotAttribute' => [ 'type' => 'structure', 'members' => [ 'AttributeName' => [ 'shape' => 'String', ], 'AttributeValues' => [ 'shape' => 'AttributeValueList', ], ], 'wrapper' => true, ], 'DBSnapshotAttributeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSnapshotAttribute', 'locationName' => 'DBSnapshotAttribute', ], ], 'DBSnapshotAttributesResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBSnapshotAttributes' => [ 'shape' => 'DBSnapshotAttributeList', ], ], 'wrapper' => true, ], 'DBSnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSnapshot', 'locationName' => 'DBSnapshot', ], ], 'DBSnapshotMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBSnapshots' => [ 'shape' => 'DBSnapshotList', ], ], ], 'DBSnapshotNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSnapshotNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroup' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSubnetGroupDescription' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'SubnetGroupStatus' => [ 'shape' => 'String', ], 'Subnets' => [ 'shape' => 'SubnetList', ], 'DBSubnetGroupArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'DBSubnetGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupDoesNotCoverEnoughAZs' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupDoesNotCoverEnoughAZs', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'DBSubnetGroups' => [ 'shape' => 'DBSubnetGroups', ], ], ], 'DBSubnetGroupNotAllowedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupNotAllowedFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBSubnetGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'DBSubnetGroup', 'locationName' => 'DBSubnetGroup', ], ], 'DBSubnetQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBSubnetQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DBUpgradeDependencyFailureFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DBUpgradeDependencyFailure', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DeleteDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'SkipFinalSnapshot' => [ 'shape' => 'Boolean', ], 'FinalDBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'DeleteDBClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterSnapshotIdentifier', ], 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteDBClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshot' => [ 'shape' => 'DBClusterSnapshot', ], ], ], 'DeleteDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'SkipFinalSnapshot' => [ 'shape' => 'Boolean', ], 'FinalDBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'DeleteDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteDBSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshot' => [ 'shape' => 'DBSnapshot', ], ], ], 'DeleteDBSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSubnetGroupName', ], 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], ], ], 'DeleteEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'DeleteOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'OptionGroupName', ], 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], ], ], 'DescribeAccountAttributesMessage' => [ 'type' => 'structure', 'members' => [], ], 'DescribeCertificatesMessage' => [ 'type' => 'structure', 'members' => [ 'CertificateIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterSnapshotAttributesMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterSnapshotIdentifier', ], 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DescribeDBClusterSnapshotAttributesResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshotAttributesResult' => [ 'shape' => 'DBClusterSnapshotAttributesResult', ], ], ], 'DescribeDBClusterSnapshotsMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'IncludeShared' => [ 'shape' => 'Boolean', ], 'IncludePublic' => [ 'shape' => 'Boolean', ], ], ], 'DescribeDBClustersMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBEngineVersionsMessage' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'DefaultOnly' => [ 'shape' => 'Boolean', ], 'ListSupportedCharacterSets' => [ 'shape' => 'BooleanOptional', ], 'ListSupportedTimezones' => [ 'shape' => 'BooleanOptional', ], ], ], 'DescribeDBInstancesMessage' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBLogFilesDetails' => [ 'type' => 'structure', 'members' => [ 'LogFileName' => [ 'shape' => 'String', ], 'LastWritten' => [ 'shape' => 'Long', ], 'Size' => [ 'shape' => 'Long', ], ], ], 'DescribeDBLogFilesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DescribeDBLogFilesDetails', 'locationName' => 'DescribeDBLogFilesDetails', ], ], 'DescribeDBLogFilesMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'FilenameContains' => [ 'shape' => 'String', ], 'FileLastWritten' => [ 'shape' => 'Long', ], 'FileSize' => [ 'shape' => 'Long', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBLogFilesResponse' => [ 'type' => 'structure', 'members' => [ 'DescribeDBLogFiles' => [ 'shape' => 'DescribeDBLogFilesList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBSecurityGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDBSnapshotAttributesMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DescribeDBSnapshotAttributesResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotAttributesResult' => [ 'shape' => 'DBSnapshotAttributesResult', ], ], ], 'DescribeDBSnapshotsMessage' => [ 'type' => 'structure', 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'IncludeShared' => [ 'shape' => 'Boolean', ], 'IncludePublic' => [ 'shape' => 'Boolean', ], ], ], 'DescribeDBSubnetGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultClusterParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupFamily', ], 'members' => [ 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultClusterParametersResult' => [ 'type' => 'structure', 'members' => [ 'EngineDefaults' => [ 'shape' => 'EngineDefaults', ], ], ], 'DescribeEngineDefaultParametersMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupFamily', ], 'members' => [ 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEngineDefaultParametersResult' => [ 'type' => 'structure', 'members' => [ 'EngineDefaults' => [ 'shape' => 'EngineDefaults', ], ], ], 'DescribeEventCategoriesMessage' => [ 'type' => 'structure', 'members' => [ 'SourceType' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], ], ], 'DescribeEventSubscriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEventsMessage' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'EndTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'IntegerOptional', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeOptionGroupOptionsMessage' => [ 'type' => 'structure', 'required' => [ 'EngineName', ], 'members' => [ 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeOptionGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], ], ], 'DescribeOrderableDBInstanceOptionsMessage' => [ 'type' => 'structure', 'required' => [ 'Engine', ], 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Vpc' => [ 'shape' => 'BooleanOptional', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribePendingMaintenanceActionsMessage' => [ 'type' => 'structure', 'members' => [ 'ResourceIdentifier' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], 'Marker' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], ], ], 'DescribeReservedDBInstancesMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstanceId' => [ 'shape' => 'String', ], 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReservedDBInstancesOfferingsMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'Filters' => [ 'shape' => 'FilterList', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeSourceRegionsMessage' => [ 'type' => 'structure', 'members' => [ 'RegionName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], ], ], 'DomainMembership' => [ 'type' => 'structure', 'members' => [ 'Domain' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'FQDN' => [ 'shape' => 'String', ], 'IAMRoleName' => [ 'shape' => 'String', ], ], ], 'DomainMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'DomainMembership', 'locationName' => 'DomainMembership', ], ], 'DomainNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DomainNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'Double' => [ 'type' => 'double', ], 'DownloadDBLogFilePortionDetails' => [ 'type' => 'structure', 'members' => [ 'LogFileData' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'AdditionalDataPending' => [ 'shape' => 'Boolean', ], ], ], 'DownloadDBLogFilePortionMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'LogFileName', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'LogFileName' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'NumberOfLines' => [ 'shape' => 'Integer', ], ], ], 'EC2SecurityGroup' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupId' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'EC2SecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EC2SecurityGroup', 'locationName' => 'EC2SecurityGroup', ], ], 'Endpoint' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'HostedZoneId' => [ 'shape' => 'String', ], ], ], 'EngineDefaults' => [ 'type' => 'structure', 'members' => [ 'DBParameterGroupFamily' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], 'wrapper' => true, ], 'Event' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'Message' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Date' => [ 'shape' => 'TStamp', ], 'SourceArn' => [ 'shape' => 'String', ], ], ], 'EventCategoriesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'EventCategory', ], ], 'EventCategoriesMap' => [ 'type' => 'structure', 'members' => [ 'SourceType' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], ], 'wrapper' => true, ], 'EventCategoriesMapList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventCategoriesMap', 'locationName' => 'EventCategoriesMap', ], ], 'EventCategoriesMessage' => [ 'type' => 'structure', 'members' => [ 'EventCategoriesMapList' => [ 'shape' => 'EventCategoriesMapList', ], ], ], 'EventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Event', 'locationName' => 'Event', ], ], 'EventSubscription' => [ 'type' => 'structure', 'members' => [ 'CustomerAwsId' => [ 'shape' => 'String', ], 'CustSubscriptionId' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'SubscriptionCreationTime' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'SourceIdsList' => [ 'shape' => 'SourceIdsList', ], 'EventCategoriesList' => [ 'shape' => 'EventCategoriesList', ], 'Enabled' => [ 'shape' => 'Boolean', ], 'EventSubscriptionArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'EventSubscriptionQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'EventSubscriptionQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'EventSubscriptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventSubscription', 'locationName' => 'EventSubscription', ], ], 'EventSubscriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'EventSubscriptionsList' => [ 'shape' => 'EventSubscriptionsList', ], ], ], 'EventsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Events' => [ 'shape' => 'EventList', ], ], ], 'FailoverDBClusterMessage' => [ 'type' => 'structure', 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'TargetDBInstanceIdentifier' => [ 'shape' => 'String', ], ], ], 'FailoverDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'Filter' => [ 'type' => 'structure', 'required' => [ 'Name', 'Values', ], 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Values' => [ 'shape' => 'FilterValueList', ], ], ], 'FilterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Filter', 'locationName' => 'Filter', ], ], 'FilterValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'Value', ], ], 'IPRange' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], ], ], 'IPRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPRange', 'locationName' => 'IPRange', ], ], 'InstanceQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InstanceQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientDBClusterCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientDBClusterCapacityFault', 'httpStatusCode' => 403, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientDBInstanceCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientDBInstanceCapacity', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientStorageClusterCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientStorageClusterCapacity', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Integer' => [ 'type' => 'integer', ], 'IntegerOptional' => [ 'type' => 'integer', ], 'InvalidDBClusterSnapshotStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBClusterSnapshotStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBClusterStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBClusterStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBInstanceStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBInstanceState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBParameterGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBParameterGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSecurityGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSecurityGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSnapshotStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSnapshotState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSubnetGroupFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSubnetGroupFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSubnetGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSubnetGroupStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidDBSubnetStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidDBSubnetStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidEventSubscriptionStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidEventSubscriptionState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidOptionGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidOptionGroupStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidRestoreFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidRestoreFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidS3BucketFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidS3BucketFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSubnet' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSubnet', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidVPCNetworkStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidVPCNetworkStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'KMSKeyNotAccessibleFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'KMSKeyNotAccessibleFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'KeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ListTagsForResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'Filters' => [ 'shape' => 'FilterList', ], ], ], 'Long' => [ 'type' => 'long', ], 'ModifyDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'NewDBClusterIdentifier' => [ 'shape' => 'String', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], ], ], 'ModifyDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', 'Parameters', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ModifyDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'ModifyDBClusterSnapshotAttributeMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterSnapshotIdentifier', 'AttributeName', ], 'members' => [ 'DBClusterSnapshotIdentifier' => [ 'shape' => 'String', ], 'AttributeName' => [ 'shape' => 'String', ], 'ValuesToAdd' => [ 'shape' => 'AttributeValueList', ], 'ValuesToRemove' => [ 'shape' => 'AttributeValueList', ], ], ], 'ModifyDBClusterSnapshotAttributeResult' => [ 'type' => 'structure', 'members' => [ 'DBClusterSnapshotAttributesResult' => [ 'shape' => 'DBClusterSnapshotAttributesResult', ], ], ], 'ModifyDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSecurityGroups' => [ 'shape' => 'DBSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'DBParameterGroupName' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'AllowMajorVersionUpgrade' => [ 'shape' => 'Boolean', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'NewDBInstanceIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'String', ], 'CACertificateIdentifier' => [ 'shape' => 'String', ], 'Domain' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'MonitoringInterval' => [ 'shape' => 'IntegerOptional', ], 'DBPortNumber' => [ 'shape' => 'IntegerOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'MonitoringRoleArn' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], 'PromotionTier' => [ 'shape' => 'IntegerOptional', ], ], ], 'ModifyDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'ModifyDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', 'Parameters', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ModifyDBSnapshotAttributeMessage' => [ 'type' => 'structure', 'required' => [ 'DBSnapshotIdentifier', 'AttributeName', ], 'members' => [ 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'AttributeName' => [ 'shape' => 'String', ], 'ValuesToAdd' => [ 'shape' => 'AttributeValueList', ], 'ValuesToRemove' => [ 'shape' => 'AttributeValueList', ], ], ], 'ModifyDBSnapshotAttributeResult' => [ 'type' => 'structure', 'members' => [ 'DBSnapshotAttributesResult' => [ 'shape' => 'DBSnapshotAttributesResult', ], ], ], 'ModifyDBSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBSubnetGroupName', 'SubnetIds', ], 'members' => [ 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DBSubnetGroupDescription' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], ], ], 'ModifyDBSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'DBSubnetGroup' => [ 'shape' => 'DBSubnetGroup', ], ], ], 'ModifyEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Enabled' => [ 'shape' => 'BooleanOptional', ], ], ], 'ModifyEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'ModifyOptionGroupMessage' => [ 'type' => 'structure', 'required' => [ 'OptionGroupName', ], 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'OptionsToInclude' => [ 'shape' => 'OptionConfigurationList', ], 'OptionsToRemove' => [ 'shape' => 'OptionNamesList', ], 'ApplyImmediately' => [ 'shape' => 'Boolean', ], ], ], 'ModifyOptionGroupResult' => [ 'type' => 'structure', 'members' => [ 'OptionGroup' => [ 'shape' => 'OptionGroup', ], ], ], 'Option' => [ 'type' => 'structure', 'members' => [ 'OptionName' => [ 'shape' => 'String', ], 'OptionDescription' => [ 'shape' => 'String', ], 'Persistent' => [ 'shape' => 'Boolean', ], 'Permanent' => [ 'shape' => 'Boolean', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'OptionVersion' => [ 'shape' => 'String', ], 'OptionSettings' => [ 'shape' => 'OptionSettingConfigurationList', ], 'DBSecurityGroupMemberships' => [ 'shape' => 'DBSecurityGroupMembershipList', ], 'VpcSecurityGroupMemberships' => [ 'shape' => 'VpcSecurityGroupMembershipList', ], ], ], 'OptionConfiguration' => [ 'type' => 'structure', 'required' => [ 'OptionName', ], 'members' => [ 'OptionName' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'OptionVersion' => [ 'shape' => 'String', ], 'DBSecurityGroupMemberships' => [ 'shape' => 'DBSecurityGroupNameList', ], 'VpcSecurityGroupMemberships' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'OptionSettings' => [ 'shape' => 'OptionSettingsList', ], ], ], 'OptionConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionConfiguration', 'locationName' => 'OptionConfiguration', ], ], 'OptionGroup' => [ 'type' => 'structure', 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'OptionGroupDescription' => [ 'shape' => 'String', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'Options' => [ 'shape' => 'OptionsList', ], 'AllowsVpcAndNonVpcInstanceMemberships' => [ 'shape' => 'Boolean', ], 'VpcId' => [ 'shape' => 'String', ], 'OptionGroupArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'OptionGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OptionGroupAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'OptionGroupMembership' => [ 'type' => 'structure', 'members' => [ 'OptionGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'OptionGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroupMembership', 'locationName' => 'OptionGroupMembership', ], ], 'OptionGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OptionGroupNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'OptionGroupOption' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'EngineName' => [ 'shape' => 'String', ], 'MajorEngineVersion' => [ 'shape' => 'String', ], 'MinimumRequiredMinorEngineVersion' => [ 'shape' => 'String', ], 'PortRequired' => [ 'shape' => 'Boolean', ], 'DefaultPort' => [ 'shape' => 'IntegerOptional', ], 'OptionsDependedOn' => [ 'shape' => 'OptionsDependedOn', ], 'OptionsConflictsWith' => [ 'shape' => 'OptionsConflictsWith', ], 'Persistent' => [ 'shape' => 'Boolean', ], 'Permanent' => [ 'shape' => 'Boolean', ], 'OptionGroupOptionSettings' => [ 'shape' => 'OptionGroupOptionSettingsList', ], 'OptionGroupOptionVersions' => [ 'shape' => 'OptionGroupOptionVersionsList', ], ], ], 'OptionGroupOptionSetting' => [ 'type' => 'structure', 'members' => [ 'SettingName' => [ 'shape' => 'String', ], 'SettingDescription' => [ 'shape' => 'String', ], 'DefaultValue' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], ], ], 'OptionGroupOptionSettingsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroupOptionSetting', 'locationName' => 'OptionGroupOptionSetting', ], ], 'OptionGroupOptionVersionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionVersion', 'locationName' => 'OptionVersion', ], ], 'OptionGroupOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroupOption', 'locationName' => 'OptionGroupOption', ], ], 'OptionGroupOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'OptionGroupOptions' => [ 'shape' => 'OptionGroupOptionsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'OptionGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'OptionGroupQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'OptionGroups' => [ 'type' => 'structure', 'members' => [ 'OptionGroupsList' => [ 'shape' => 'OptionGroupsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'OptionGroupsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionGroup', 'locationName' => 'OptionGroup', ], ], 'OptionNamesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'OptionSetting' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], 'DefaultValue' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'IsCollection' => [ 'shape' => 'Boolean', ], ], ], 'OptionSettingConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionSetting', 'locationName' => 'OptionSetting', ], ], 'OptionSettingsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OptionSetting', 'locationName' => 'OptionSetting', ], ], 'OptionVersion' => [ 'type' => 'structure', 'members' => [ 'Version' => [ 'shape' => 'String', ], 'IsDefault' => [ 'shape' => 'Boolean', ], ], ], 'OptionsConflictsWith' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'OptionConflictName', ], ], 'OptionsDependedOn' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'OptionName', ], ], 'OptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Option', 'locationName' => 'Option', ], ], 'OrderableDBInstanceOption' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'AvailabilityZones' => [ 'shape' => 'AvailabilityZoneList', ], 'MultiAZCapable' => [ 'shape' => 'Boolean', ], 'ReadReplicaCapable' => [ 'shape' => 'Boolean', ], 'Vpc' => [ 'shape' => 'Boolean', ], 'SupportsStorageEncryption' => [ 'shape' => 'Boolean', ], 'StorageType' => [ 'shape' => 'String', ], 'SupportsIops' => [ 'shape' => 'Boolean', ], 'SupportsEnhancedMonitoring' => [ 'shape' => 'Boolean', ], ], 'wrapper' => true, ], 'OrderableDBInstanceOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OrderableDBInstanceOption', 'locationName' => 'OrderableDBInstanceOption', ], ], 'OrderableDBInstanceOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'OrderableDBInstanceOptions' => [ 'shape' => 'OrderableDBInstanceOptionsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'Parameter' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'ParameterValue' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'MinimumEngineVersion' => [ 'shape' => 'String', ], 'ApplyMethod' => [ 'shape' => 'ApplyMethod', ], ], ], 'ParametersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Parameter', 'locationName' => 'Parameter', ], ], 'PendingMaintenanceAction' => [ 'type' => 'structure', 'members' => [ 'Action' => [ 'shape' => 'String', ], 'AutoAppliedAfterDate' => [ 'shape' => 'TStamp', ], 'ForcedApplyDate' => [ 'shape' => 'TStamp', ], 'OptInStatus' => [ 'shape' => 'String', ], 'CurrentApplyDate' => [ 'shape' => 'TStamp', ], 'Description' => [ 'shape' => 'String', ], ], ], 'PendingMaintenanceActionDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'PendingMaintenanceAction', 'locationName' => 'PendingMaintenanceAction', ], ], 'PendingMaintenanceActions' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourcePendingMaintenanceActions', 'locationName' => 'ResourcePendingMaintenanceActions', ], ], 'PendingMaintenanceActionsMessage' => [ 'type' => 'structure', 'members' => [ 'PendingMaintenanceActions' => [ 'shape' => 'PendingMaintenanceActions', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'PendingModifiedValues' => [ 'type' => 'structure', 'members' => [ 'DBInstanceClass' => [ 'shape' => 'String', ], 'AllocatedStorage' => [ 'shape' => 'IntegerOptional', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'EngineVersion' => [ 'shape' => 'String', ], 'LicenseModel' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'StorageType' => [ 'shape' => 'String', ], 'CACertificateIdentifier' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], ], ], 'PointInTimeRestoreNotEnabledFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'PointInTimeRestoreNotEnabled', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'PromoteReadReplicaDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'PromoteReadReplicaDBClusterResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'PromoteReadReplicaMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], ], ], 'PromoteReadReplicaResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'ProvisionedIopsNotAvailableInAZFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ProvisionedIopsNotAvailableInAZFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'PurchaseReservedDBInstancesOfferingMessage' => [ 'type' => 'structure', 'required' => [ 'ReservedDBInstancesOfferingId', ], 'members' => [ 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'ReservedDBInstanceId' => [ 'shape' => 'String', ], 'DBInstanceCount' => [ 'shape' => 'IntegerOptional', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'PurchaseReservedDBInstancesOfferingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstance' => [ 'shape' => 'ReservedDBInstance', ], ], ], 'ReadReplicaDBInstanceIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ReadReplicaDBInstanceIdentifier', ], ], 'ReadReplicaIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ReadReplicaIdentifier', ], ], 'RebootDBInstanceMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'ForceFailover' => [ 'shape' => 'BooleanOptional', ], ], ], 'RebootDBInstanceResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'RecurringCharge' => [ 'type' => 'structure', 'members' => [ 'RecurringChargeAmount' => [ 'shape' => 'Double', ], 'RecurringChargeFrequency' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'RecurringChargeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecurringCharge', 'locationName' => 'RecurringCharge', ], ], 'RemoveRoleFromDBClusterMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'RoleArn', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'RoleArn' => [ 'shape' => 'String', ], ], ], 'RemoveSourceIdentifierFromSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SourceIdentifier', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SourceIdentifier' => [ 'shape' => 'String', ], ], ], 'RemoveSourceIdentifierFromSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'RemoveTagsFromResourceMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'TagKeys', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'KeyList', ], ], ], 'ReservedDBInstance' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstanceId' => [ 'shape' => 'String', ], 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CurrencyCode' => [ 'shape' => 'String', ], 'DBInstanceCount' => [ 'shape' => 'Integer', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'Boolean', ], 'State' => [ 'shape' => 'String', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], 'ReservedDBInstanceArn' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'ReservedDBInstanceAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstanceAlreadyExists', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedDBInstanceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedDBInstance', 'locationName' => 'ReservedDBInstance', ], ], 'ReservedDBInstanceMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedDBInstances' => [ 'shape' => 'ReservedDBInstanceList', ], ], ], 'ReservedDBInstanceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstanceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedDBInstanceQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstanceQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ReservedDBInstancesOffering' => [ 'type' => 'structure', 'members' => [ 'ReservedDBInstancesOfferingId' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CurrencyCode' => [ 'shape' => 'String', ], 'ProductDescription' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'Boolean', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], ], 'wrapper' => true, ], 'ReservedDBInstancesOfferingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedDBInstancesOffering', 'locationName' => 'ReservedDBInstancesOffering', ], ], 'ReservedDBInstancesOfferingMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedDBInstancesOfferings' => [ 'shape' => 'ReservedDBInstancesOfferingList', ], ], ], 'ReservedDBInstancesOfferingNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedDBInstancesOfferingNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ResetDBClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterParameterGroupName', ], 'members' => [ 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'ResetAllParameters' => [ 'shape' => 'Boolean', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ResetDBParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'DBParameterGroupName', ], 'members' => [ 'DBParameterGroupName' => [ 'shape' => 'String', ], 'ResetAllParameters' => [ 'shape' => 'Boolean', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ResourceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ResourceNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ResourcePendingMaintenanceActions' => [ 'type' => 'structure', 'members' => [ 'ResourceIdentifier' => [ 'shape' => 'String', ], 'PendingMaintenanceActionDetails' => [ 'shape' => 'PendingMaintenanceActionDetails', ], ], 'wrapper' => true, ], 'RestoreDBClusterFromS3Message' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'Engine', 'MasterUsername', 'MasterUserPassword', 'SourceEngine', 'SourceEngineVersion', 'S3BucketName', 'S3IngestionRoleArn', ], 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'BackupRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'CharacterSetName' => [ 'shape' => 'String', ], 'DatabaseName' => [ 'shape' => 'String', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'DBClusterParameterGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'PreferredBackupWindow' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageEncrypted' => [ 'shape' => 'BooleanOptional', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'SourceEngine' => [ 'shape' => 'String', ], 'SourceEngineVersion' => [ 'shape' => 'String', ], 'S3BucketName' => [ 'shape' => 'String', ], 'S3Prefix' => [ 'shape' => 'String', ], 'S3IngestionRoleArn' => [ 'shape' => 'String', ], ], ], 'RestoreDBClusterFromS3Result' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'RestoreDBClusterFromSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'SnapshotIdentifier', 'Engine', ], 'members' => [ 'AvailabilityZones' => [ 'shape' => 'AvailabilityZones', ], 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'DatabaseName' => [ 'shape' => 'String', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'Tags' => [ 'shape' => 'TagList', ], 'KmsKeyId' => [ 'shape' => 'String', ], ], ], 'RestoreDBClusterFromSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'RestoreDBClusterToPointInTimeMessage' => [ 'type' => 'structure', 'required' => [ 'DBClusterIdentifier', 'SourceDBClusterIdentifier', ], 'members' => [ 'DBClusterIdentifier' => [ 'shape' => 'String', ], 'SourceDBClusterIdentifier' => [ 'shape' => 'String', ], 'RestoreToTime' => [ 'shape' => 'TStamp', ], 'UseLatestRestorableTime' => [ 'shape' => 'Boolean', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'Tags' => [ 'shape' => 'TagList', ], 'KmsKeyId' => [ 'shape' => 'String', ], ], ], 'RestoreDBClusterToPointInTimeResult' => [ 'type' => 'structure', 'members' => [ 'DBCluster' => [ 'shape' => 'DBCluster', ], ], ], 'RestoreDBInstanceFromDBSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'DBInstanceIdentifier', 'DBSnapshotIdentifier', ], 'members' => [ 'DBInstanceIdentifier' => [ 'shape' => 'String', ], 'DBSnapshotIdentifier' => [ 'shape' => 'String', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'String', ], 'Domain' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], ], ], 'RestoreDBInstanceFromDBSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'RestoreDBInstanceToPointInTimeMessage' => [ 'type' => 'structure', 'required' => [ 'SourceDBInstanceIdentifier', 'TargetDBInstanceIdentifier', ], 'members' => [ 'SourceDBInstanceIdentifier' => [ 'shape' => 'String', ], 'TargetDBInstanceIdentifier' => [ 'shape' => 'String', ], 'RestoreTime' => [ 'shape' => 'TStamp', ], 'UseLatestRestorableTime' => [ 'shape' => 'Boolean', ], 'DBInstanceClass' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'DBSubnetGroupName' => [ 'shape' => 'String', ], 'MultiAZ' => [ 'shape' => 'BooleanOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'AutoMinorVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'LicenseModel' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Engine' => [ 'shape' => 'String', ], 'Iops' => [ 'shape' => 'IntegerOptional', ], 'OptionGroupName' => [ 'shape' => 'String', ], 'CopyTagsToSnapshot' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], 'StorageType' => [ 'shape' => 'String', ], 'TdeCredentialArn' => [ 'shape' => 'String', ], 'TdeCredentialPassword' => [ 'shape' => 'String', ], 'Domain' => [ 'shape' => 'String', ], 'DomainIAMRoleName' => [ 'shape' => 'String', ], ], ], 'RestoreDBInstanceToPointInTimeResult' => [ 'type' => 'structure', 'members' => [ 'DBInstance' => [ 'shape' => 'DBInstance', ], ], ], 'RevokeDBSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'DBSecurityGroupName', ], 'members' => [ 'DBSecurityGroupName' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupId' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'RevokeDBSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'DBSecurityGroup' => [ 'shape' => 'DBSecurityGroup', ], ], ], 'SNSInvalidTopicFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSInvalidTopic', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SNSNoAuthorizationFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSNoAuthorization', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SNSTopicArnNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSTopicArnNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SharedSnapshotQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SharedSnapshotQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SourceIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SourceId', ], ], 'SourceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SourceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SourceRegion' => [ 'type' => 'structure', 'members' => [ 'RegionName' => [ 'shape' => 'String', ], 'Endpoint' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'SourceRegionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SourceRegion', 'locationName' => 'SourceRegion', ], ], 'SourceRegionMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'SourceRegions' => [ 'shape' => 'SourceRegionList', ], ], ], 'SourceType' => [ 'type' => 'string', 'enum' => [ 'db-instance', 'db-parameter-group', 'db-security-group', 'db-snapshot', 'db-cluster', 'db-cluster-snapshot', ], ], 'StorageQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'StorageQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'StorageTypeNotSupportedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'StorageTypeNotSupported', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'String' => [ 'type' => 'string', ], 'Subnet' => [ 'type' => 'structure', 'members' => [ 'SubnetIdentifier' => [ 'shape' => 'String', ], 'SubnetAvailabilityZone' => [ 'shape' => 'AvailabilityZone', ], 'SubnetStatus' => [ 'shape' => 'String', ], ], ], 'SubnetAlreadyInUse' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubnetAlreadyInUse', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubnetIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SubnetIdentifier', ], ], 'SubnetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subnet', 'locationName' => 'Subnet', ], ], 'SubscriptionAlreadyExistFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionAlreadyExist', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionCategoryNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionCategoryNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SupportedCharacterSetsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CharacterSet', 'locationName' => 'CharacterSet', ], ], 'SupportedTimezonesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Timezone', 'locationName' => 'Timezone', ], ], 'TStamp' => [ 'type' => 'timestamp', ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], ], 'TagListMessage' => [ 'type' => 'structure', 'members' => [ 'TagList' => [ 'shape' => 'TagList', ], ], ], 'Timezone' => [ 'type' => 'structure', 'members' => [ 'TimezoneName' => [ 'shape' => 'String', ], ], ], 'UpgradeTarget' => [ 'type' => 'structure', 'members' => [ 'Engine' => [ 'shape' => 'String', ], 'EngineVersion' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'AutoUpgrade' => [ 'shape' => 'Boolean', ], 'IsMajorVersionUpgrade' => [ 'shape' => 'Boolean', ], ], ], 'ValidUpgradeTargetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'UpgradeTarget', 'locationName' => 'UpgradeTarget', ], ], 'VpcSecurityGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'VpcSecurityGroupId', ], ], 'VpcSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'VpcSecurityGroupId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'VpcSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcSecurityGroupMembership', 'locationName' => 'VpcSecurityGroupMembership', ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/api-2.json.php index 58496ca2c..2b81219d7 100644 --- a/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2012-12-01', 'endpointPrefix' => 'redshift', 'protocol' => 'query', 'serviceFullName' => 'Amazon Redshift', 'signatureVersion' => 'v4', 'xmlNamespace' => 'http://redshift.amazonaws.com/doc/2012-12-01/', ], 'operations' => [ 'AuthorizeClusterSecurityGroupIngress' => [ 'name' => 'AuthorizeClusterSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeClusterSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'AuthorizeClusterSecurityGroupIngressResult', 'resultWrapper' => 'AuthorizeClusterSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidClusterSecurityGroupStateFault', ], [ 'shape' => 'AuthorizationAlreadyExistsFault', ], [ 'shape' => 'AuthorizationQuotaExceededFault', ], ], ], 'AuthorizeSnapshotAccess' => [ 'name' => 'AuthorizeSnapshotAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeSnapshotAccessMessage', ], 'output' => [ 'shape' => 'AuthorizeSnapshotAccessResult', 'resultWrapper' => 'AuthorizeSnapshotAccessResult', ], 'errors' => [ [ 'shape' => 'ClusterSnapshotNotFoundFault', ], [ 'shape' => 'AuthorizationAlreadyExistsFault', ], [ 'shape' => 'AuthorizationQuotaExceededFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], [ 'shape' => 'InvalidClusterSnapshotStateFault', ], [ 'shape' => 'LimitExceededFault', ], ], ], 'CopyClusterSnapshot' => [ 'name' => 'CopyClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyClusterSnapshotMessage', ], 'output' => [ 'shape' => 'CopyClusterSnapshotResult', 'resultWrapper' => 'CopyClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'ClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'ClusterSnapshotNotFoundFault', ], [ 'shape' => 'InvalidClusterSnapshotStateFault', ], [ 'shape' => 'ClusterSnapshotQuotaExceededFault', ], ], ], 'CreateCluster' => [ 'name' => 'CreateCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClusterMessage', ], 'output' => [ 'shape' => 'CreateClusterResult', 'resultWrapper' => 'CreateClusterResult', ], 'errors' => [ [ 'shape' => 'ClusterAlreadyExistsFault', ], [ 'shape' => 'InsufficientClusterCapacityFault', ], [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], [ 'shape' => 'ClusterQuotaExceededFault', ], [ 'shape' => 'NumberOfNodesQuotaExceededFault', ], [ 'shape' => 'NumberOfNodesPerClusterLimitExceededFault', ], [ 'shape' => 'ClusterSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidClusterSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'HsmClientCertificateNotFoundFault', ], [ 'shape' => 'HsmConfigurationNotFoundFault', ], [ 'shape' => 'InvalidElasticIpFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], [ 'shape' => 'LimitExceededFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], 'CreateClusterParameterGroup' => [ 'name' => 'CreateClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'CreateClusterParameterGroupResult', 'resultWrapper' => 'CreateClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'ClusterParameterGroupQuotaExceededFault', ], [ 'shape' => 'ClusterParameterGroupAlreadyExistsFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'CreateClusterSecurityGroup' => [ 'name' => 'CreateClusterSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClusterSecurityGroupMessage', ], 'output' => [ 'shape' => 'CreateClusterSecurityGroupResult', 'resultWrapper' => 'CreateClusterSecurityGroupResult', ], 'errors' => [ [ 'shape' => 'ClusterSecurityGroupAlreadyExistsFault', ], [ 'shape' => 'ClusterSecurityGroupQuotaExceededFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'CreateClusterSnapshot' => [ 'name' => 'CreateClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClusterSnapshotMessage', ], 'output' => [ 'shape' => 'CreateClusterSnapshotResult', 'resultWrapper' => 'CreateClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'ClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'ClusterSnapshotQuotaExceededFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'CreateClusterSubnetGroup' => [ 'name' => 'CreateClusterSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClusterSubnetGroupMessage', ], 'output' => [ 'shape' => 'CreateClusterSubnetGroupResult', 'resultWrapper' => 'CreateClusterSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'ClusterSubnetGroupAlreadyExistsFault', ], [ 'shape' => 'ClusterSubnetGroupQuotaExceededFault', ], [ 'shape' => 'ClusterSubnetQuotaExceededFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], 'CreateEventSubscription' => [ 'name' => 'CreateEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateEventSubscriptionMessage', ], 'output' => [ 'shape' => 'CreateEventSubscriptionResult', 'resultWrapper' => 'CreateEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'EventSubscriptionQuotaExceededFault', ], [ 'shape' => 'SubscriptionAlreadyExistFault', ], [ 'shape' => 'SNSInvalidTopicFault', ], [ 'shape' => 'SNSNoAuthorizationFault', ], [ 'shape' => 'SNSTopicArnNotFoundFault', ], [ 'shape' => 'SubscriptionEventIdNotFoundFault', ], [ 'shape' => 'SubscriptionCategoryNotFoundFault', ], [ 'shape' => 'SubscriptionSeverityNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'CreateHsmClientCertificate' => [ 'name' => 'CreateHsmClientCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateHsmClientCertificateMessage', ], 'output' => [ 'shape' => 'CreateHsmClientCertificateResult', 'resultWrapper' => 'CreateHsmClientCertificateResult', ], 'errors' => [ [ 'shape' => 'HsmClientCertificateAlreadyExistsFault', ], [ 'shape' => 'HsmClientCertificateQuotaExceededFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'CreateHsmConfiguration' => [ 'name' => 'CreateHsmConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateHsmConfigurationMessage', ], 'output' => [ 'shape' => 'CreateHsmConfigurationResult', 'resultWrapper' => 'CreateHsmConfigurationResult', ], 'errors' => [ [ 'shape' => 'HsmConfigurationAlreadyExistsFault', ], [ 'shape' => 'HsmConfigurationQuotaExceededFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'CreateSnapshotCopyGrant' => [ 'name' => 'CreateSnapshotCopyGrant', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSnapshotCopyGrantMessage', ], 'output' => [ 'shape' => 'CreateSnapshotCopyGrantResult', 'resultWrapper' => 'CreateSnapshotCopyGrantResult', ], 'errors' => [ [ 'shape' => 'SnapshotCopyGrantAlreadyExistsFault', ], [ 'shape' => 'SnapshotCopyGrantQuotaExceededFault', ], [ 'shape' => 'LimitExceededFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], 'CreateTags' => [ 'name' => 'CreateTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTagsMessage', ], 'errors' => [ [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'ResourceNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DeleteCluster' => [ 'name' => 'DeleteCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClusterMessage', ], 'output' => [ 'shape' => 'DeleteClusterResult', 'resultWrapper' => 'DeleteClusterResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'ClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'ClusterSnapshotQuotaExceededFault', ], ], ], 'DeleteClusterParameterGroup' => [ 'name' => 'DeleteClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClusterParameterGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidClusterParameterGroupStateFault', ], [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], ], ], 'DeleteClusterSecurityGroup' => [ 'name' => 'DeleteClusterSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClusterSecurityGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidClusterSecurityGroupStateFault', ], [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], ], ], 'DeleteClusterSnapshot' => [ 'name' => 'DeleteClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClusterSnapshotMessage', ], 'output' => [ 'shape' => 'DeleteClusterSnapshotResult', 'resultWrapper' => 'DeleteClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'InvalidClusterSnapshotStateFault', ], [ 'shape' => 'ClusterSnapshotNotFoundFault', ], ], ], 'DeleteClusterSubnetGroup' => [ 'name' => 'DeleteClusterSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClusterSubnetGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidClusterSubnetGroupStateFault', ], [ 'shape' => 'InvalidClusterSubnetStateFault', ], [ 'shape' => 'ClusterSubnetGroupNotFoundFault', ], ], ], 'DeleteEventSubscription' => [ 'name' => 'DeleteEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteEventSubscriptionMessage', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'InvalidSubscriptionStateFault', ], ], ], 'DeleteHsmClientCertificate' => [ 'name' => 'DeleteHsmClientCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteHsmClientCertificateMessage', ], 'errors' => [ [ 'shape' => 'InvalidHsmClientCertificateStateFault', ], [ 'shape' => 'HsmClientCertificateNotFoundFault', ], ], ], 'DeleteHsmConfiguration' => [ 'name' => 'DeleteHsmConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteHsmConfigurationMessage', ], 'errors' => [ [ 'shape' => 'InvalidHsmConfigurationStateFault', ], [ 'shape' => 'HsmConfigurationNotFoundFault', ], ], ], 'DeleteSnapshotCopyGrant' => [ 'name' => 'DeleteSnapshotCopyGrant', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSnapshotCopyGrantMessage', ], 'errors' => [ [ 'shape' => 'InvalidSnapshotCopyGrantStateFault', ], [ 'shape' => 'SnapshotCopyGrantNotFoundFault', ], ], ], 'DeleteTags' => [ 'name' => 'DeleteTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTagsMessage', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeClusterParameterGroups' => [ 'name' => 'DescribeClusterParameterGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterParameterGroupsMessage', ], 'output' => [ 'shape' => 'ClusterParameterGroupsMessage', 'resultWrapper' => 'DescribeClusterParameterGroupsResult', ], 'errors' => [ [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeClusterParameters' => [ 'name' => 'DescribeClusterParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterParametersMessage', ], 'output' => [ 'shape' => 'ClusterParameterGroupDetails', 'resultWrapper' => 'DescribeClusterParametersResult', ], 'errors' => [ [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], ], ], 'DescribeClusterSecurityGroups' => [ 'name' => 'DescribeClusterSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterSecurityGroupsMessage', ], 'output' => [ 'shape' => 'ClusterSecurityGroupMessage', 'resultWrapper' => 'DescribeClusterSecurityGroupsResult', ], 'errors' => [ [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeClusterSnapshots' => [ 'name' => 'DescribeClusterSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterSnapshotsMessage', ], 'output' => [ 'shape' => 'SnapshotMessage', 'resultWrapper' => 'DescribeClusterSnapshotsResult', ], 'errors' => [ [ 'shape' => 'ClusterSnapshotNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeClusterSubnetGroups' => [ 'name' => 'DescribeClusterSubnetGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterSubnetGroupsMessage', ], 'output' => [ 'shape' => 'ClusterSubnetGroupMessage', 'resultWrapper' => 'DescribeClusterSubnetGroupsResult', ], 'errors' => [ [ 'shape' => 'ClusterSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeClusterVersions' => [ 'name' => 'DescribeClusterVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterVersionsMessage', ], 'output' => [ 'shape' => 'ClusterVersionsMessage', 'resultWrapper' => 'DescribeClusterVersionsResult', ], ], 'DescribeClusters' => [ 'name' => 'DescribeClusters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClustersMessage', ], 'output' => [ 'shape' => 'ClustersMessage', 'resultWrapper' => 'DescribeClustersResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeDefaultClusterParameters' => [ 'name' => 'DescribeDefaultClusterParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDefaultClusterParametersMessage', ], 'output' => [ 'shape' => 'DescribeDefaultClusterParametersResult', 'resultWrapper' => 'DescribeDefaultClusterParametersResult', ], ], 'DescribeEventCategories' => [ 'name' => 'DescribeEventCategories', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventCategoriesMessage', ], 'output' => [ 'shape' => 'EventCategoriesMessage', 'resultWrapper' => 'DescribeEventCategoriesResult', ], ], 'DescribeEventSubscriptions' => [ 'name' => 'DescribeEventSubscriptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventSubscriptionsMessage', ], 'output' => [ 'shape' => 'EventSubscriptionsMessage', 'resultWrapper' => 'DescribeEventSubscriptionsResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], ], ], 'DescribeEvents' => [ 'name' => 'DescribeEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventsMessage', ], 'output' => [ 'shape' => 'EventsMessage', 'resultWrapper' => 'DescribeEventsResult', ], ], 'DescribeHsmClientCertificates' => [ 'name' => 'DescribeHsmClientCertificates', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeHsmClientCertificatesMessage', ], 'output' => [ 'shape' => 'HsmClientCertificateMessage', 'resultWrapper' => 'DescribeHsmClientCertificatesResult', ], 'errors' => [ [ 'shape' => 'HsmClientCertificateNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeHsmConfigurations' => [ 'name' => 'DescribeHsmConfigurations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeHsmConfigurationsMessage', ], 'output' => [ 'shape' => 'HsmConfigurationMessage', 'resultWrapper' => 'DescribeHsmConfigurationsResult', ], 'errors' => [ [ 'shape' => 'HsmConfigurationNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeLoggingStatus' => [ 'name' => 'DescribeLoggingStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLoggingStatusMessage', ], 'output' => [ 'shape' => 'LoggingStatus', 'resultWrapper' => 'DescribeLoggingStatusResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], ], ], 'DescribeOrderableClusterOptions' => [ 'name' => 'DescribeOrderableClusterOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOrderableClusterOptionsMessage', ], 'output' => [ 'shape' => 'OrderableClusterOptionsMessage', 'resultWrapper' => 'DescribeOrderableClusterOptionsResult', ], ], 'DescribeReservedNodeOfferings' => [ 'name' => 'DescribeReservedNodeOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedNodeOfferingsMessage', ], 'output' => [ 'shape' => 'ReservedNodeOfferingsMessage', 'resultWrapper' => 'DescribeReservedNodeOfferingsResult', ], 'errors' => [ [ 'shape' => 'ReservedNodeOfferingNotFoundFault', ], [ 'shape' => 'UnsupportedOperationFault', ], ], ], 'DescribeReservedNodes' => [ 'name' => 'DescribeReservedNodes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedNodesMessage', ], 'output' => [ 'shape' => 'ReservedNodesMessage', 'resultWrapper' => 'DescribeReservedNodesResult', ], 'errors' => [ [ 'shape' => 'ReservedNodeNotFoundFault', ], ], ], 'DescribeResize' => [ 'name' => 'DescribeResize', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeResizeMessage', ], 'output' => [ 'shape' => 'ResizeProgressMessage', 'resultWrapper' => 'DescribeResizeResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'ResizeNotFoundFault', ], ], ], 'DescribeSnapshotCopyGrants' => [ 'name' => 'DescribeSnapshotCopyGrants', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSnapshotCopyGrantsMessage', ], 'output' => [ 'shape' => 'SnapshotCopyGrantMessage', 'resultWrapper' => 'DescribeSnapshotCopyGrantsResult', ], 'errors' => [ [ 'shape' => 'SnapshotCopyGrantNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeTableRestoreStatus' => [ 'name' => 'DescribeTableRestoreStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTableRestoreStatusMessage', ], 'output' => [ 'shape' => 'TableRestoreStatusMessage', 'resultWrapper' => 'DescribeTableRestoreStatusResult', ], 'errors' => [ [ 'shape' => 'TableRestoreNotFoundFault', ], [ 'shape' => 'ClusterNotFoundFault', ], ], ], 'DescribeTags' => [ 'name' => 'DescribeTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTagsMessage', ], 'output' => [ 'shape' => 'TaggedResourceListMessage', 'resultWrapper' => 'DescribeTagsResult', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DisableLogging' => [ 'name' => 'DisableLogging', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableLoggingMessage', ], 'output' => [ 'shape' => 'LoggingStatus', 'resultWrapper' => 'DisableLoggingResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], ], ], 'DisableSnapshotCopy' => [ 'name' => 'DisableSnapshotCopy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableSnapshotCopyMessage', ], 'output' => [ 'shape' => 'DisableSnapshotCopyResult', 'resultWrapper' => 'DisableSnapshotCopyResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'SnapshotCopyAlreadyDisabledFault', ], [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'UnauthorizedOperation', ], ], ], 'EnableLogging' => [ 'name' => 'EnableLogging', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableLoggingMessage', ], 'output' => [ 'shape' => 'LoggingStatus', 'resultWrapper' => 'EnableLoggingResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'BucketNotFoundFault', ], [ 'shape' => 'InsufficientS3BucketPolicyFault', ], [ 'shape' => 'InvalidS3KeyPrefixFault', ], [ 'shape' => 'InvalidS3BucketNameFault', ], ], ], 'EnableSnapshotCopy' => [ 'name' => 'EnableSnapshotCopy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableSnapshotCopyMessage', ], 'output' => [ 'shape' => 'EnableSnapshotCopyResult', 'resultWrapper' => 'EnableSnapshotCopyResult', ], 'errors' => [ [ 'shape' => 'IncompatibleOrderableOptions', ], [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'CopyToRegionDisabledFault', ], [ 'shape' => 'SnapshotCopyAlreadyEnabledFault', ], [ 'shape' => 'UnknownSnapshotCopyRegionFault', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'SnapshotCopyGrantNotFoundFault', ], [ 'shape' => 'LimitExceededFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], 'ModifyCluster' => [ 'name' => 'ModifyCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyClusterMessage', ], 'output' => [ 'shape' => 'ModifyClusterResult', 'resultWrapper' => 'ModifyClusterResult', ], 'errors' => [ [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'InvalidClusterSecurityGroupStateFault', ], [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'NumberOfNodesQuotaExceededFault', ], [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], [ 'shape' => 'InsufficientClusterCapacityFault', ], [ 'shape' => 'UnsupportedOptionFault', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'HsmClientCertificateNotFoundFault', ], [ 'shape' => 'HsmConfigurationNotFoundFault', ], [ 'shape' => 'ClusterAlreadyExistsFault', ], [ 'shape' => 'LimitExceededFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], [ 'shape' => 'InvalidElasticIpFault', ], ], ], 'ModifyClusterIamRoles' => [ 'name' => 'ModifyClusterIamRoles', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyClusterIamRolesMessage', ], 'output' => [ 'shape' => 'ModifyClusterIamRolesResult', 'resultWrapper' => 'ModifyClusterIamRolesResult', ], 'errors' => [ [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'ClusterNotFoundFault', ], ], ], 'ModifyClusterParameterGroup' => [ 'name' => 'ModifyClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'ClusterParameterGroupNameMessage', 'resultWrapper' => 'ModifyClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidClusterParameterGroupStateFault', ], ], ], 'ModifyClusterSubnetGroup' => [ 'name' => 'ModifyClusterSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyClusterSubnetGroupMessage', ], 'output' => [ 'shape' => 'ModifyClusterSubnetGroupResult', 'resultWrapper' => 'ModifyClusterSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'ClusterSubnetGroupNotFoundFault', ], [ 'shape' => 'ClusterSubnetQuotaExceededFault', ], [ 'shape' => 'SubnetAlreadyInUse', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], 'ModifyEventSubscription' => [ 'name' => 'ModifyEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyEventSubscriptionMessage', ], 'output' => [ 'shape' => 'ModifyEventSubscriptionResult', 'resultWrapper' => 'ModifyEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SNSInvalidTopicFault', ], [ 'shape' => 'SNSNoAuthorizationFault', ], [ 'shape' => 'SNSTopicArnNotFoundFault', ], [ 'shape' => 'SubscriptionEventIdNotFoundFault', ], [ 'shape' => 'SubscriptionCategoryNotFoundFault', ], [ 'shape' => 'SubscriptionSeverityNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], [ 'shape' => 'InvalidSubscriptionStateFault', ], ], ], 'ModifySnapshotCopyRetentionPeriod' => [ 'name' => 'ModifySnapshotCopyRetentionPeriod', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySnapshotCopyRetentionPeriodMessage', ], 'output' => [ 'shape' => 'ModifySnapshotCopyRetentionPeriodResult', 'resultWrapper' => 'ModifySnapshotCopyRetentionPeriodResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'SnapshotCopyDisabledFault', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'InvalidClusterStateFault', ], ], ], 'PurchaseReservedNodeOffering' => [ 'name' => 'PurchaseReservedNodeOffering', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseReservedNodeOfferingMessage', ], 'output' => [ 'shape' => 'PurchaseReservedNodeOfferingResult', 'resultWrapper' => 'PurchaseReservedNodeOfferingResult', ], 'errors' => [ [ 'shape' => 'ReservedNodeOfferingNotFoundFault', ], [ 'shape' => 'ReservedNodeAlreadyExistsFault', ], [ 'shape' => 'ReservedNodeQuotaExceededFault', ], [ 'shape' => 'UnsupportedOperationFault', ], ], ], 'RebootCluster' => [ 'name' => 'RebootCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebootClusterMessage', ], 'output' => [ 'shape' => 'RebootClusterResult', 'resultWrapper' => 'RebootClusterResult', ], 'errors' => [ [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'ClusterNotFoundFault', ], ], ], 'ResetClusterParameterGroup' => [ 'name' => 'ResetClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'ClusterParameterGroupNameMessage', 'resultWrapper' => 'ResetClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidClusterParameterGroupStateFault', ], [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], ], ], 'RestoreFromClusterSnapshot' => [ 'name' => 'RestoreFromClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreFromClusterSnapshotMessage', ], 'output' => [ 'shape' => 'RestoreFromClusterSnapshotResult', 'resultWrapper' => 'RestoreFromClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'AccessToSnapshotDeniedFault', ], [ 'shape' => 'ClusterAlreadyExistsFault', ], [ 'shape' => 'ClusterSnapshotNotFoundFault', ], [ 'shape' => 'ClusterQuotaExceededFault', ], [ 'shape' => 'InsufficientClusterCapacityFault', ], [ 'shape' => 'InvalidClusterSnapshotStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'NumberOfNodesQuotaExceededFault', ], [ 'shape' => 'NumberOfNodesPerClusterLimitExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidClusterSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'ClusterSubnetGroupNotFoundFault', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'HsmClientCertificateNotFoundFault', ], [ 'shape' => 'HsmConfigurationNotFoundFault', ], [ 'shape' => 'InvalidElasticIpFault', ], [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], [ 'shape' => 'LimitExceededFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], 'RestoreTableFromClusterSnapshot' => [ 'name' => 'RestoreTableFromClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreTableFromClusterSnapshotMessage', ], 'output' => [ 'shape' => 'RestoreTableFromClusterSnapshotResult', 'resultWrapper' => 'RestoreTableFromClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'ClusterSnapshotNotFoundFault', ], [ 'shape' => 'InProgressTableRestoreQuotaExceededFault', ], [ 'shape' => 'InvalidClusterSnapshotStateFault', ], [ 'shape' => 'InvalidTableRestoreArgumentFault', ], [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'UnsupportedOperationFault', ], ], ], 'RevokeClusterSecurityGroupIngress' => [ 'name' => 'RevokeClusterSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeClusterSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'RevokeClusterSecurityGroupIngressResult', 'resultWrapper' => 'RevokeClusterSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'InvalidClusterSecurityGroupStateFault', ], ], ], 'RevokeSnapshotAccess' => [ 'name' => 'RevokeSnapshotAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeSnapshotAccessMessage', ], 'output' => [ 'shape' => 'RevokeSnapshotAccessResult', 'resultWrapper' => 'RevokeSnapshotAccessResult', ], 'errors' => [ [ 'shape' => 'AccessToSnapshotDeniedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'ClusterSnapshotNotFoundFault', ], ], ], 'RotateEncryptionKey' => [ 'name' => 'RotateEncryptionKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RotateEncryptionKeyMessage', ], 'output' => [ 'shape' => 'RotateEncryptionKeyResult', 'resultWrapper' => 'RotateEncryptionKeyResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], ], 'shapes' => [ 'AccessToSnapshotDeniedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AccessToSnapshotDenied', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AccountWithRestoreAccess' => [ 'type' => 'structure', 'members' => [ 'AccountId' => [ 'shape' => 'String', ], ], ], 'AccountsWithRestoreAccessList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountWithRestoreAccess', 'locationName' => 'AccountWithRestoreAccess', ], ], 'AuthorizationAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizeClusterSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSecurityGroupName', ], 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'AuthorizeClusterSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'ClusterSecurityGroup' => [ 'shape' => 'ClusterSecurityGroup', ], ], ], 'AuthorizeSnapshotAccessMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotIdentifier', 'AccountWithRestoreAccess', ], 'members' => [ 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotClusterIdentifier' => [ 'shape' => 'String', ], 'AccountWithRestoreAccess' => [ 'shape' => 'String', ], ], ], 'AuthorizeSnapshotAccessResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'AvailabilityZone' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'AvailabilityZoneList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AvailabilityZone', 'locationName' => 'AvailabilityZone', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'BooleanOptional' => [ 'type' => 'boolean', ], 'BucketNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'BucketNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Cluster' => [ 'type' => 'structure', 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'ClusterStatus' => [ 'shape' => 'String', ], 'ModifyStatus' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Endpoint' => [ 'shape' => 'Endpoint', ], 'ClusterCreateTime' => [ 'shape' => 'TStamp', ], 'AutomatedSnapshotRetentionPeriod' => [ 'shape' => 'Integer', ], 'ClusterSecurityGroups' => [ 'shape' => 'ClusterSecurityGroupMembershipList', ], 'VpcSecurityGroups' => [ 'shape' => 'VpcSecurityGroupMembershipList', ], 'ClusterParameterGroups' => [ 'shape' => 'ClusterParameterGroupStatusList', ], 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'PendingModifiedValues' => [ 'shape' => 'PendingModifiedValues', ], 'ClusterVersion' => [ 'shape' => 'String', ], 'AllowVersionUpgrade' => [ 'shape' => 'Boolean', ], 'NumberOfNodes' => [ 'shape' => 'Integer', ], 'PubliclyAccessible' => [ 'shape' => 'Boolean', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'RestoreStatus' => [ 'shape' => 'RestoreStatus', ], 'HsmStatus' => [ 'shape' => 'HsmStatus', ], 'ClusterSnapshotCopyStatus' => [ 'shape' => 'ClusterSnapshotCopyStatus', ], 'ClusterPublicKey' => [ 'shape' => 'String', ], 'ClusterNodes' => [ 'shape' => 'ClusterNodesList', ], 'ElasticIpStatus' => [ 'shape' => 'ElasticIpStatus', ], 'ClusterRevisionNumber' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'IamRoles' => [ 'shape' => 'ClusterIamRoleList', ], ], 'wrapper' => true, ], 'ClusterAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterIamRole' => [ 'type' => 'structure', 'members' => [ 'IamRoleArn' => [ 'shape' => 'String', ], 'ApplyStatus' => [ 'shape' => 'String', ], ], ], 'ClusterIamRoleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterIamRole', 'locationName' => 'ClusterIamRole', ], ], 'ClusterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Cluster', 'locationName' => 'Cluster', ], ], 'ClusterNode' => [ 'type' => 'structure', 'members' => [ 'NodeRole' => [ 'shape' => 'String', ], 'PrivateIPAddress' => [ 'shape' => 'String', ], 'PublicIPAddress' => [ 'shape' => 'String', ], ], ], 'ClusterNodesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterNode', ], ], 'ClusterNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ClusterParameterGroup' => [ 'type' => 'structure', 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'ParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'ClusterParameterGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterParameterGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterParameterGroupDetails' => [ 'type' => 'structure', 'members' => [ 'Parameters' => [ 'shape' => 'ParametersList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'ClusterParameterGroupNameMessage' => [ 'type' => 'structure', 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'ParameterGroupStatus' => [ 'shape' => 'String', ], ], ], 'ClusterParameterGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterParameterGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ClusterParameterGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterParameterGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterParameterGroupStatus' => [ 'type' => 'structure', 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'ParameterApplyStatus' => [ 'shape' => 'String', ], 'ClusterParameterStatusList' => [ 'shape' => 'ClusterParameterStatusList', ], ], ], 'ClusterParameterGroupStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterParameterGroupStatus', 'locationName' => 'ClusterParameterGroup', ], ], 'ClusterParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ParameterGroups' => [ 'shape' => 'ParameterGroupList', ], ], ], 'ClusterParameterStatus' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'ParameterApplyStatus' => [ 'shape' => 'String', ], 'ParameterApplyErrorDescription' => [ 'shape' => 'String', ], ], ], 'ClusterParameterStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterParameterStatus', ], ], 'ClusterQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'EC2SecurityGroups' => [ 'shape' => 'EC2SecurityGroupList', ], 'IPRanges' => [ 'shape' => 'IPRangeList', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'ClusterSecurityGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSecurityGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'ClusterSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterSecurityGroupMembership', 'locationName' => 'ClusterSecurityGroup', ], ], 'ClusterSecurityGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ClusterSecurityGroups' => [ 'shape' => 'ClusterSecurityGroups', ], ], ], 'ClusterSecurityGroupNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ClusterSecurityGroupName', ], ], 'ClusterSecurityGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSecurityGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSecurityGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'QuotaExceeded.ClusterSecurityGroup', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSecurityGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterSecurityGroup', 'locationName' => 'ClusterSecurityGroup', ], ], 'ClusterSnapshotAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSnapshotAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSnapshotCopyStatus' => [ 'type' => 'structure', 'members' => [ 'DestinationRegion' => [ 'shape' => 'String', ], 'RetentionPeriod' => [ 'shape' => 'Long', ], 'SnapshotCopyGrantName' => [ 'shape' => 'String', ], ], ], 'ClusterSnapshotNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSnapshotNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSnapshotQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSnapshotQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSubnetGroup' => [ 'type' => 'structure', 'members' => [ 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'SubnetGroupStatus' => [ 'shape' => 'String', ], 'Subnets' => [ 'shape' => 'SubnetList', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'ClusterSubnetGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSubnetGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSubnetGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ClusterSubnetGroups' => [ 'shape' => 'ClusterSubnetGroups', ], ], ], 'ClusterSubnetGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSubnetGroupNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSubnetGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSubnetGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSubnetGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterSubnetGroup', 'locationName' => 'ClusterSubnetGroup', ], ], 'ClusterSubnetQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSubnetQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterVersion' => [ 'type' => 'structure', 'members' => [ 'ClusterVersion' => [ 'shape' => 'String', ], 'ClusterParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], ], 'ClusterVersionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterVersion', 'locationName' => 'ClusterVersion', ], ], 'ClusterVersionsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ClusterVersions' => [ 'shape' => 'ClusterVersionList', ], ], ], 'ClustersMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Clusters' => [ 'shape' => 'ClusterList', ], ], ], 'CopyClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SourceSnapshotIdentifier', 'TargetSnapshotIdentifier', ], 'members' => [ 'SourceSnapshotIdentifier' => [ 'shape' => 'String', ], 'SourceSnapshotClusterIdentifier' => [ 'shape' => 'String', ], 'TargetSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'CopyClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'CopyToRegionDisabledFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CopyToRegionDisabledFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CreateClusterMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', 'NodeType', 'MasterUsername', 'MasterUserPassword', ], 'members' => [ 'DBName' => [ 'shape' => 'String', ], 'ClusterIdentifier' => [ 'shape' => 'String', ], 'ClusterType' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'ClusterSecurityGroups' => [ 'shape' => 'ClusterSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'ClusterParameterGroupName' => [ 'shape' => 'String', ], 'AutomatedSnapshotRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'ClusterVersion' => [ 'shape' => 'String', ], 'AllowVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'NumberOfNodes' => [ 'shape' => 'IntegerOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'Encrypted' => [ 'shape' => 'BooleanOptional', ], 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'ElasticIp' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'AdditionalInfo' => [ 'shape' => 'String', ], 'IamRoles' => [ 'shape' => 'IamRoleArnList', ], ], ], 'CreateClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ParameterGroupName', 'ParameterGroupFamily', 'Description', ], 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'ParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateClusterParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'ClusterParameterGroup' => [ 'shape' => 'ClusterParameterGroup', ], ], ], 'CreateClusterResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'CreateClusterSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSecurityGroupName', 'Description', ], 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateClusterSecurityGroupResult' => [ 'type' => 'structure', 'members' => [ 'ClusterSecurityGroup' => [ 'shape' => 'ClusterSecurityGroup', ], ], ], 'CreateClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotIdentifier', 'ClusterIdentifier', ], 'members' => [ 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'ClusterIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'CreateClusterSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSubnetGroupName', 'Description', 'SubnetIds', ], 'members' => [ 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateClusterSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'ClusterSubnetGroup' => [ 'shape' => 'ClusterSubnetGroup', ], ], ], 'CreateEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SnsTopicArn', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'SourceIds' => [ 'shape' => 'SourceIdsList', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Severity' => [ 'shape' => 'String', ], 'Enabled' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'CreateHsmClientCertificateMessage' => [ 'type' => 'structure', 'required' => [ 'HsmClientCertificateIdentifier', ], 'members' => [ 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateHsmClientCertificateResult' => [ 'type' => 'structure', 'members' => [ 'HsmClientCertificate' => [ 'shape' => 'HsmClientCertificate', ], ], ], 'CreateHsmConfigurationMessage' => [ 'type' => 'structure', 'required' => [ 'HsmConfigurationIdentifier', 'Description', 'HsmIpAddress', 'HsmPartitionName', 'HsmPartitionPassword', 'HsmServerPublicCertificate', ], 'members' => [ 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'HsmIpAddress' => [ 'shape' => 'String', ], 'HsmPartitionName' => [ 'shape' => 'String', ], 'HsmPartitionPassword' => [ 'shape' => 'String', ], 'HsmServerPublicCertificate' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateHsmConfigurationResult' => [ 'type' => 'structure', 'members' => [ 'HsmConfiguration' => [ 'shape' => 'HsmConfiguration', ], ], ], 'CreateSnapshotCopyGrantMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotCopyGrantName', ], 'members' => [ 'SnapshotCopyGrantName' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateSnapshotCopyGrantResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotCopyGrant' => [ 'shape' => 'SnapshotCopyGrant', ], ], ], 'CreateTagsMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'Tags', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'DefaultClusterParameters' => [ 'type' => 'structure', 'members' => [ 'ParameterGroupFamily' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], 'wrapper' => true, ], 'DeleteClusterMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'SkipFinalClusterSnapshot' => [ 'shape' => 'Boolean', ], 'FinalClusterSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ParameterGroupName', ], 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteClusterResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'DeleteClusterSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSecurityGroupName', ], 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotIdentifier', ], 'members' => [ 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'DeleteClusterSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSubnetGroupName', ], 'members' => [ 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], ], ], 'DeleteHsmClientCertificateMessage' => [ 'type' => 'structure', 'required' => [ 'HsmClientCertificateIdentifier', ], 'members' => [ 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteHsmConfigurationMessage' => [ 'type' => 'structure', 'required' => [ 'HsmConfigurationIdentifier', ], 'members' => [ 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteSnapshotCopyGrantMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotCopyGrantName', ], 'members' => [ 'SnapshotCopyGrantName' => [ 'shape' => 'String', ], ], ], 'DeleteTagsMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'TagKeys', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], ], ], 'DependentServiceRequestThrottlingFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DependentServiceRequestThrottlingFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DescribeClusterParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeClusterParametersMessage' => [ 'type' => 'structure', 'required' => [ 'ParameterGroupName', ], 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeClusterSecurityGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeClusterSnapshotsMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'EndTime' => [ 'shape' => 'TStamp', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'OwnerAccount' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeClusterSubnetGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeClusterVersionsMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterVersion' => [ 'shape' => 'String', ], 'ClusterParameterGroupFamily' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeClustersMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeDefaultClusterParametersMessage' => [ 'type' => 'structure', 'required' => [ 'ParameterGroupFamily', ], 'members' => [ 'ParameterGroupFamily' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDefaultClusterParametersResult' => [ 'type' => 'structure', 'members' => [ 'DefaultClusterParameters' => [ 'shape' => 'DefaultClusterParameters', ], ], ], 'DescribeEventCategoriesMessage' => [ 'type' => 'structure', 'members' => [ 'SourceType' => [ 'shape' => 'String', ], ], ], 'DescribeEventSubscriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEventsMessage' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'EndTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'IntegerOptional', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeHsmClientCertificatesMessage' => [ 'type' => 'structure', 'members' => [ 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeHsmConfigurationsMessage' => [ 'type' => 'structure', 'members' => [ 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeLoggingStatusMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'DescribeOrderableClusterOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterVersion' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReservedNodeOfferingsMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedNodeOfferingId' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReservedNodesMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedNodeId' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeResizeMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'DescribeSnapshotCopyGrantsMessage' => [ 'type' => 'structure', 'members' => [ 'SnapshotCopyGrantName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeTableRestoreStatusMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'TableRestoreRequestId' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeTagsMessage' => [ 'type' => 'structure', 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'ResourceType' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DisableLoggingMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'DisableSnapshotCopyMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'DisableSnapshotCopyResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'Double' => [ 'type' => 'double', ], 'DoubleOptional' => [ 'type' => 'double', ], 'EC2SecurityGroup' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'EC2SecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EC2SecurityGroup', 'locationName' => 'EC2SecurityGroup', ], ], 'ElasticIpStatus' => [ 'type' => 'structure', 'members' => [ 'ElasticIp' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'EnableLoggingMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', 'BucketName', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'BucketName' => [ 'shape' => 'String', ], 'S3KeyPrefix' => [ 'shape' => 'String', ], ], ], 'EnableSnapshotCopyMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', 'DestinationRegion', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'DestinationRegion' => [ 'shape' => 'String', ], 'RetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'SnapshotCopyGrantName' => [ 'shape' => 'String', ], ], ], 'EnableSnapshotCopyResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'Endpoint' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], ], ], 'Event' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'Message' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Severity' => [ 'shape' => 'String', ], 'Date' => [ 'shape' => 'TStamp', ], 'EventId' => [ 'shape' => 'String', ], ], ], 'EventCategoriesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'EventCategory', ], ], 'EventCategoriesMap' => [ 'type' => 'structure', 'members' => [ 'SourceType' => [ 'shape' => 'String', ], 'Events' => [ 'shape' => 'EventInfoMapList', ], ], 'wrapper' => true, ], 'EventCategoriesMapList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventCategoriesMap', 'locationName' => 'EventCategoriesMap', ], ], 'EventCategoriesMessage' => [ 'type' => 'structure', 'members' => [ 'EventCategoriesMapList' => [ 'shape' => 'EventCategoriesMapList', ], ], ], 'EventInfoMap' => [ 'type' => 'structure', 'members' => [ 'EventId' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'EventDescription' => [ 'shape' => 'String', ], 'Severity' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'EventInfoMapList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventInfoMap', 'locationName' => 'EventInfoMap', ], ], 'EventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Event', 'locationName' => 'Event', ], ], 'EventSubscription' => [ 'type' => 'structure', 'members' => [ 'CustomerAwsId' => [ 'shape' => 'String', ], 'CustSubscriptionId' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'SubscriptionCreationTime' => [ 'shape' => 'TStamp', ], 'SourceType' => [ 'shape' => 'String', ], 'SourceIdsList' => [ 'shape' => 'SourceIdsList', ], 'EventCategoriesList' => [ 'shape' => 'EventCategoriesList', ], 'Severity' => [ 'shape' => 'String', ], 'Enabled' => [ 'shape' => 'Boolean', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'EventSubscriptionQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'EventSubscriptionQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'EventSubscriptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventSubscription', 'locationName' => 'EventSubscription', ], ], 'EventSubscriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'EventSubscriptionsList' => [ 'shape' => 'EventSubscriptionsList', ], ], ], 'EventsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Events' => [ 'shape' => 'EventList', ], ], ], 'HsmClientCertificate' => [ 'type' => 'structure', 'members' => [ 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'HsmClientCertificatePublicKey' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'HsmClientCertificateAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'HsmClientCertificateAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'HsmClientCertificateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'HsmClientCertificate', 'locationName' => 'HsmClientCertificate', ], ], 'HsmClientCertificateMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'HsmClientCertificates' => [ 'shape' => 'HsmClientCertificateList', ], ], ], 'HsmClientCertificateNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'HsmClientCertificateNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'HsmClientCertificateQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'HsmClientCertificateQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'HsmConfiguration' => [ 'type' => 'structure', 'members' => [ 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'HsmIpAddress' => [ 'shape' => 'String', ], 'HsmPartitionName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'HsmConfigurationAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'HsmConfigurationAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'HsmConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'HsmConfiguration', 'locationName' => 'HsmConfiguration', ], ], 'HsmConfigurationMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'HsmConfigurations' => [ 'shape' => 'HsmConfigurationList', ], ], ], 'HsmConfigurationNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'HsmConfigurationNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'HsmConfigurationQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'HsmConfigurationQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'HsmStatus' => [ 'type' => 'structure', 'members' => [ 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'IPRange' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'IPRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPRange', 'locationName' => 'IPRange', ], ], 'IamRoleArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'IamRoleArn', ], ], 'ImportTablesCompleted' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ImportTablesInProgress' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ImportTablesNotStarted' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'InProgressTableRestoreQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InProgressTableRestoreQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'IncompatibleOrderableOptions' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'IncompatibleOrderableOptions', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientClusterCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientClusterCapacity', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientS3BucketPolicyFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientS3BucketPolicyFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Integer' => [ 'type' => 'integer', ], 'IntegerOptional' => [ 'type' => 'integer', ], 'InvalidClusterParameterGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidClusterParameterGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidClusterSecurityGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidClusterSecurityGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidClusterSnapshotStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidClusterSnapshotState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidClusterStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidClusterState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidClusterSubnetGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidClusterSubnetGroupStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidClusterSubnetStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidClusterSubnetStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidElasticIpFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidElasticIpFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidHsmClientCertificateStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidHsmClientCertificateStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidHsmConfigurationStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidHsmConfigurationStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidRestoreFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidRestore', 'httpStatusCode' => 406, 'senderFault' => true, ], 'exception' => true, ], 'InvalidS3BucketNameFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidS3BucketNameFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidS3KeyPrefixFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidS3KeyPrefixFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSnapshotCopyGrantStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSnapshotCopyGrantStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSubnet' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSubnet', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSubscriptionStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSubscriptionStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidTableRestoreArgumentFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidTableRestoreArgument', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidTagFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidTagFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidVPCNetworkStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidVPCNetworkStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'LimitExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'LimitExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'LoggingStatus' => [ 'type' => 'structure', 'members' => [ 'LoggingEnabled' => [ 'shape' => 'Boolean', ], 'BucketName' => [ 'shape' => 'String', ], 'S3KeyPrefix' => [ 'shape' => 'String', ], 'LastSuccessfulDeliveryTime' => [ 'shape' => 'TStamp', ], 'LastFailureTime' => [ 'shape' => 'TStamp', ], 'LastFailureMessage' => [ 'shape' => 'String', ], ], ], 'Long' => [ 'type' => 'long', ], 'LongOptional' => [ 'type' => 'long', ], 'ModifyClusterIamRolesMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'AddIamRoles' => [ 'shape' => 'IamRoleArnList', ], 'RemoveIamRoles' => [ 'shape' => 'IamRoleArnList', ], ], ], 'ModifyClusterIamRolesResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'ModifyClusterMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'ClusterType' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'NumberOfNodes' => [ 'shape' => 'IntegerOptional', ], 'ClusterSecurityGroups' => [ 'shape' => 'ClusterSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'ClusterParameterGroupName' => [ 'shape' => 'String', ], 'AutomatedSnapshotRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'ClusterVersion' => [ 'shape' => 'String', ], 'AllowVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'NewClusterIdentifier' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'ElasticIp' => [ 'shape' => 'String', ], ], ], 'ModifyClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ParameterGroupName', 'Parameters', ], 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ModifyClusterResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'ModifyClusterSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSubnetGroupName', 'SubnetIds', ], 'members' => [ 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], ], ], 'ModifyClusterSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'ClusterSubnetGroup' => [ 'shape' => 'ClusterSubnetGroup', ], ], ], 'ModifyEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'SourceIds' => [ 'shape' => 'SourceIdsList', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Severity' => [ 'shape' => 'String', ], 'Enabled' => [ 'shape' => 'BooleanOptional', ], ], ], 'ModifyEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'ModifySnapshotCopyRetentionPeriodMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', 'RetentionPeriod', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'RetentionPeriod' => [ 'shape' => 'Integer', ], ], ], 'ModifySnapshotCopyRetentionPeriodResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'NumberOfNodesPerClusterLimitExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'NumberOfNodesPerClusterLimitExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'NumberOfNodesQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'NumberOfNodesQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'OrderableClusterOption' => [ 'type' => 'structure', 'members' => [ 'ClusterVersion' => [ 'shape' => 'String', ], 'ClusterType' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'AvailabilityZones' => [ 'shape' => 'AvailabilityZoneList', ], ], 'wrapper' => true, ], 'OrderableClusterOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OrderableClusterOption', 'locationName' => 'OrderableClusterOption', ], ], 'OrderableClusterOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'OrderableClusterOptions' => [ 'shape' => 'OrderableClusterOptionsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'Parameter' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'ParameterValue' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'ParameterApplyType', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'MinimumEngineVersion' => [ 'shape' => 'String', ], ], ], 'ParameterApplyType' => [ 'type' => 'string', 'enum' => [ 'static', 'dynamic', ], ], 'ParameterGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterParameterGroup', 'locationName' => 'ClusterParameterGroup', ], ], 'ParametersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Parameter', 'locationName' => 'Parameter', ], ], 'PendingModifiedValues' => [ 'type' => 'structure', 'members' => [ 'MasterUserPassword' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'NumberOfNodes' => [ 'shape' => 'IntegerOptional', ], 'ClusterType' => [ 'shape' => 'String', ], 'ClusterVersion' => [ 'shape' => 'String', ], 'AutomatedSnapshotRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'ClusterIdentifier' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], ], ], 'PurchaseReservedNodeOfferingMessage' => [ 'type' => 'structure', 'required' => [ 'ReservedNodeOfferingId', ], 'members' => [ 'ReservedNodeOfferingId' => [ 'shape' => 'String', ], 'NodeCount' => [ 'shape' => 'IntegerOptional', ], ], ], 'PurchaseReservedNodeOfferingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedNode' => [ 'shape' => 'ReservedNode', ], ], ], 'RebootClusterMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'RebootClusterResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'RecurringCharge' => [ 'type' => 'structure', 'members' => [ 'RecurringChargeAmount' => [ 'shape' => 'Double', ], 'RecurringChargeFrequency' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'RecurringChargeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecurringCharge', 'locationName' => 'RecurringCharge', ], ], 'ReservedNode' => [ 'type' => 'structure', 'members' => [ 'ReservedNodeId' => [ 'shape' => 'String', ], 'ReservedNodeOfferingId' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CurrencyCode' => [ 'shape' => 'String', ], 'NodeCount' => [ 'shape' => 'Integer', ], 'State' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], ], 'wrapper' => true, ], 'ReservedNodeAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedNodeAlreadyExists', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedNodeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedNode', 'locationName' => 'ReservedNode', ], ], 'ReservedNodeNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedNodeNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedNodeOffering' => [ 'type' => 'structure', 'members' => [ 'ReservedNodeOfferingId' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CurrencyCode' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], ], 'wrapper' => true, ], 'ReservedNodeOfferingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedNodeOffering', 'locationName' => 'ReservedNodeOffering', ], ], 'ReservedNodeOfferingNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedNodeOfferingNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedNodeOfferingsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedNodeOfferings' => [ 'shape' => 'ReservedNodeOfferingList', ], ], ], 'ReservedNodeQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedNodeQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ReservedNodesMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedNodes' => [ 'shape' => 'ReservedNodeList', ], ], ], 'ResetClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ParameterGroupName', ], 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'ResetAllParameters' => [ 'shape' => 'Boolean', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ResizeNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ResizeNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ResizeProgressMessage' => [ 'type' => 'structure', 'members' => [ 'TargetNodeType' => [ 'shape' => 'String', ], 'TargetNumberOfNodes' => [ 'shape' => 'IntegerOptional', ], 'TargetClusterType' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'ImportTablesCompleted' => [ 'shape' => 'ImportTablesCompleted', ], 'ImportTablesInProgress' => [ 'shape' => 'ImportTablesInProgress', ], 'ImportTablesNotStarted' => [ 'shape' => 'ImportTablesNotStarted', ], 'AvgResizeRateInMegaBytesPerSecond' => [ 'shape' => 'DoubleOptional', ], 'TotalResizeDataInMegaBytes' => [ 'shape' => 'LongOptional', ], 'ProgressInMegaBytes' => [ 'shape' => 'LongOptional', ], 'ElapsedTimeInSeconds' => [ 'shape' => 'LongOptional', ], 'EstimatedTimeToCompletionInSeconds' => [ 'shape' => 'LongOptional', ], ], ], 'ResourceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ResourceNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'RestorableNodeTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'NodeType', ], ], 'RestoreFromClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', 'SnapshotIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotClusterIdentifier' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'AllowVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'OwnerAccount' => [ 'shape' => 'String', ], 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'ElasticIp' => [ 'shape' => 'String', ], 'ClusterParameterGroupName' => [ 'shape' => 'String', ], 'ClusterSecurityGroups' => [ 'shape' => 'ClusterSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'AutomatedSnapshotRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'AdditionalInfo' => [ 'shape' => 'String', ], 'IamRoles' => [ 'shape' => 'IamRoleArnList', ], ], ], 'RestoreFromClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'RestoreStatus' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'CurrentRestoreRateInMegaBytesPerSecond' => [ 'shape' => 'Double', ], 'SnapshotSizeInMegaBytes' => [ 'shape' => 'Long', ], 'ProgressInMegaBytes' => [ 'shape' => 'Long', ], 'ElapsedTimeInSeconds' => [ 'shape' => 'Long', ], 'EstimatedTimeToCompletionInSeconds' => [ 'shape' => 'Long', ], ], ], 'RestoreTableFromClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', 'SnapshotIdentifier', 'SourceDatabaseName', 'SourceTableName', 'NewTableName', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SourceDatabaseName' => [ 'shape' => 'String', ], 'SourceSchemaName' => [ 'shape' => 'String', ], 'SourceTableName' => [ 'shape' => 'String', ], 'TargetDatabaseName' => [ 'shape' => 'String', ], 'TargetSchemaName' => [ 'shape' => 'String', ], 'NewTableName' => [ 'shape' => 'String', ], ], ], 'RestoreTableFromClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'TableRestoreStatus' => [ 'shape' => 'TableRestoreStatus', ], ], ], 'RevokeClusterSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSecurityGroupName', ], 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'RevokeClusterSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'ClusterSecurityGroup' => [ 'shape' => 'ClusterSecurityGroup', ], ], ], 'RevokeSnapshotAccessMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotIdentifier', 'AccountWithRestoreAccess', ], 'members' => [ 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotClusterIdentifier' => [ 'shape' => 'String', ], 'AccountWithRestoreAccess' => [ 'shape' => 'String', ], ], ], 'RevokeSnapshotAccessResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'RotateEncryptionKeyMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'RotateEncryptionKeyResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'SNSInvalidTopicFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSInvalidTopic', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SNSNoAuthorizationFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSNoAuthorization', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SNSTopicArnNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSTopicArnNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'Snapshot' => [ 'type' => 'structure', 'members' => [ 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'ClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotCreateTime' => [ 'shape' => 'TStamp', ], 'Status' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'ClusterCreateTime' => [ 'shape' => 'TStamp', ], 'MasterUsername' => [ 'shape' => 'String', ], 'ClusterVersion' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'NumberOfNodes' => [ 'shape' => 'Integer', ], 'DBName' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'EncryptedWithHSM' => [ 'shape' => 'Boolean', ], 'AccountsWithRestoreAccess' => [ 'shape' => 'AccountsWithRestoreAccessList', ], 'OwnerAccount' => [ 'shape' => 'String', ], 'TotalBackupSizeInMegaBytes' => [ 'shape' => 'Double', ], 'ActualIncrementalBackupSizeInMegaBytes' => [ 'shape' => 'Double', ], 'BackupProgressInMegaBytes' => [ 'shape' => 'Double', ], 'CurrentBackupRateInMegaBytesPerSecond' => [ 'shape' => 'Double', ], 'EstimatedSecondsToCompletion' => [ 'shape' => 'Long', ], 'ElapsedTimeInSeconds' => [ 'shape' => 'Long', ], 'SourceRegion' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'RestorableNodeTypes' => [ 'shape' => 'RestorableNodeTypeList', ], ], 'wrapper' => true, ], 'SnapshotCopyAlreadyDisabledFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotCopyAlreadyDisabledFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotCopyAlreadyEnabledFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotCopyAlreadyEnabledFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotCopyDisabledFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotCopyDisabledFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotCopyGrant' => [ 'type' => 'structure', 'members' => [ 'SnapshotCopyGrantName' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'SnapshotCopyGrantAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotCopyGrantAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotCopyGrantList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SnapshotCopyGrant', 'locationName' => 'SnapshotCopyGrant', ], ], 'SnapshotCopyGrantMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'SnapshotCopyGrants' => [ 'shape' => 'SnapshotCopyGrantList', ], ], ], 'SnapshotCopyGrantNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotCopyGrantNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotCopyGrantQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotCopyGrantQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Snapshot', 'locationName' => 'Snapshot', ], ], 'SnapshotMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Snapshots' => [ 'shape' => 'SnapshotList', ], ], ], 'SourceIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SourceId', ], ], 'SourceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SourceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SourceType' => [ 'type' => 'string', 'enum' => [ 'cluster', 'cluster-parameter-group', 'cluster-security-group', 'cluster-snapshot', ], ], 'String' => [ 'type' => 'string', ], 'Subnet' => [ 'type' => 'structure', 'members' => [ 'SubnetIdentifier' => [ 'shape' => 'String', ], 'SubnetAvailabilityZone' => [ 'shape' => 'AvailabilityZone', ], 'SubnetStatus' => [ 'shape' => 'String', ], ], ], 'SubnetAlreadyInUse' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubnetAlreadyInUse', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubnetIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SubnetIdentifier', ], ], 'SubnetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subnet', 'locationName' => 'Subnet', ], ], 'SubscriptionAlreadyExistFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionAlreadyExist', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionCategoryNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionCategoryNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionEventIdNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionEventIdNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionSeverityNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionSeverityNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'TStamp' => [ 'type' => 'timestamp', ], 'TableRestoreNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TableRestoreNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'TableRestoreStatus' => [ 'type' => 'structure', 'members' => [ 'TableRestoreRequestId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'TableRestoreStatusType', ], 'Message' => [ 'shape' => 'String', ], 'RequestTime' => [ 'shape' => 'TStamp', ], 'ProgressInMegaBytes' => [ 'shape' => 'LongOptional', ], 'TotalDataInMegaBytes' => [ 'shape' => 'LongOptional', ], 'ClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SourceDatabaseName' => [ 'shape' => 'String', ], 'SourceSchemaName' => [ 'shape' => 'String', ], 'SourceTableName' => [ 'shape' => 'String', ], 'TargetDatabaseName' => [ 'shape' => 'String', ], 'TargetSchemaName' => [ 'shape' => 'String', ], 'NewTableName' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'TableRestoreStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TableRestoreStatus', 'locationName' => 'TableRestoreStatus', ], ], 'TableRestoreStatusMessage' => [ 'type' => 'structure', 'members' => [ 'TableRestoreStatusDetails' => [ 'shape' => 'TableRestoreStatusList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'TableRestoreStatusType' => [ 'type' => 'string', 'enum' => [ 'PENDING', 'IN_PROGRESS', 'SUCCEEDED', 'FAILED', 'CANCELED', ], ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'TagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'TagKey', ], ], 'TagLimitExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TagLimitExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], ], 'TagValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'TagValue', ], ], 'TaggedResource' => [ 'type' => 'structure', 'members' => [ 'Tag' => [ 'shape' => 'Tag', ], 'ResourceName' => [ 'shape' => 'String', ], 'ResourceType' => [ 'shape' => 'String', ], ], ], 'TaggedResourceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TaggedResource', 'locationName' => 'TaggedResource', ], ], 'TaggedResourceListMessage' => [ 'type' => 'structure', 'members' => [ 'TaggedResources' => [ 'shape' => 'TaggedResourceList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'UnauthorizedOperation' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'UnauthorizedOperation', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'UnknownSnapshotCopyRegionFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'UnknownSnapshotCopyRegionFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'UnsupportedOperationFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'UnsupportedOperation', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'UnsupportedOptionFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'UnsupportedOptionFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'VpcSecurityGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'VpcSecurityGroupId', ], ], 'VpcSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'VpcSecurityGroupId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'VpcSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcSecurityGroupMembership', 'locationName' => 'VpcSecurityGroup', ], ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2012-12-01', 'endpointPrefix' => 'redshift', 'protocol' => 'query', 'serviceFullName' => 'Amazon Redshift', 'signatureVersion' => 'v4', 'xmlNamespace' => 'http://redshift.amazonaws.com/doc/2012-12-01/', ], 'operations' => [ 'AuthorizeClusterSecurityGroupIngress' => [ 'name' => 'AuthorizeClusterSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeClusterSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'AuthorizeClusterSecurityGroupIngressResult', 'resultWrapper' => 'AuthorizeClusterSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidClusterSecurityGroupStateFault', ], [ 'shape' => 'AuthorizationAlreadyExistsFault', ], [ 'shape' => 'AuthorizationQuotaExceededFault', ], ], ], 'AuthorizeSnapshotAccess' => [ 'name' => 'AuthorizeSnapshotAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AuthorizeSnapshotAccessMessage', ], 'output' => [ 'shape' => 'AuthorizeSnapshotAccessResult', 'resultWrapper' => 'AuthorizeSnapshotAccessResult', ], 'errors' => [ [ 'shape' => 'ClusterSnapshotNotFoundFault', ], [ 'shape' => 'AuthorizationAlreadyExistsFault', ], [ 'shape' => 'AuthorizationQuotaExceededFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], [ 'shape' => 'InvalidClusterSnapshotStateFault', ], [ 'shape' => 'LimitExceededFault', ], ], ], 'CopyClusterSnapshot' => [ 'name' => 'CopyClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CopyClusterSnapshotMessage', ], 'output' => [ 'shape' => 'CopyClusterSnapshotResult', 'resultWrapper' => 'CopyClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'ClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'ClusterSnapshotNotFoundFault', ], [ 'shape' => 'InvalidClusterSnapshotStateFault', ], [ 'shape' => 'ClusterSnapshotQuotaExceededFault', ], ], ], 'CreateCluster' => [ 'name' => 'CreateCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClusterMessage', ], 'output' => [ 'shape' => 'CreateClusterResult', 'resultWrapper' => 'CreateClusterResult', ], 'errors' => [ [ 'shape' => 'ClusterAlreadyExistsFault', ], [ 'shape' => 'InsufficientClusterCapacityFault', ], [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], [ 'shape' => 'ClusterQuotaExceededFault', ], [ 'shape' => 'NumberOfNodesQuotaExceededFault', ], [ 'shape' => 'NumberOfNodesPerClusterLimitExceededFault', ], [ 'shape' => 'ClusterSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidClusterSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'HsmClientCertificateNotFoundFault', ], [ 'shape' => 'HsmConfigurationNotFoundFault', ], [ 'shape' => 'InvalidElasticIpFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], [ 'shape' => 'LimitExceededFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], 'CreateClusterParameterGroup' => [ 'name' => 'CreateClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'CreateClusterParameterGroupResult', 'resultWrapper' => 'CreateClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'ClusterParameterGroupQuotaExceededFault', ], [ 'shape' => 'ClusterParameterGroupAlreadyExistsFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'CreateClusterSecurityGroup' => [ 'name' => 'CreateClusterSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClusterSecurityGroupMessage', ], 'output' => [ 'shape' => 'CreateClusterSecurityGroupResult', 'resultWrapper' => 'CreateClusterSecurityGroupResult', ], 'errors' => [ [ 'shape' => 'ClusterSecurityGroupAlreadyExistsFault', ], [ 'shape' => 'ClusterSecurityGroupQuotaExceededFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'CreateClusterSnapshot' => [ 'name' => 'CreateClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClusterSnapshotMessage', ], 'output' => [ 'shape' => 'CreateClusterSnapshotResult', 'resultWrapper' => 'CreateClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'ClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'ClusterSnapshotQuotaExceededFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'CreateClusterSubnetGroup' => [ 'name' => 'CreateClusterSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateClusterSubnetGroupMessage', ], 'output' => [ 'shape' => 'CreateClusterSubnetGroupResult', 'resultWrapper' => 'CreateClusterSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'ClusterSubnetGroupAlreadyExistsFault', ], [ 'shape' => 'ClusterSubnetGroupQuotaExceededFault', ], [ 'shape' => 'ClusterSubnetQuotaExceededFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], 'CreateEventSubscription' => [ 'name' => 'CreateEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateEventSubscriptionMessage', ], 'output' => [ 'shape' => 'CreateEventSubscriptionResult', 'resultWrapper' => 'CreateEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'EventSubscriptionQuotaExceededFault', ], [ 'shape' => 'SubscriptionAlreadyExistFault', ], [ 'shape' => 'SNSInvalidTopicFault', ], [ 'shape' => 'SNSNoAuthorizationFault', ], [ 'shape' => 'SNSTopicArnNotFoundFault', ], [ 'shape' => 'SubscriptionEventIdNotFoundFault', ], [ 'shape' => 'SubscriptionCategoryNotFoundFault', ], [ 'shape' => 'SubscriptionSeverityNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'CreateHsmClientCertificate' => [ 'name' => 'CreateHsmClientCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateHsmClientCertificateMessage', ], 'output' => [ 'shape' => 'CreateHsmClientCertificateResult', 'resultWrapper' => 'CreateHsmClientCertificateResult', ], 'errors' => [ [ 'shape' => 'HsmClientCertificateAlreadyExistsFault', ], [ 'shape' => 'HsmClientCertificateQuotaExceededFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'CreateHsmConfiguration' => [ 'name' => 'CreateHsmConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateHsmConfigurationMessage', ], 'output' => [ 'shape' => 'CreateHsmConfigurationResult', 'resultWrapper' => 'CreateHsmConfigurationResult', ], 'errors' => [ [ 'shape' => 'HsmConfigurationAlreadyExistsFault', ], [ 'shape' => 'HsmConfigurationQuotaExceededFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'CreateSnapshotCopyGrant' => [ 'name' => 'CreateSnapshotCopyGrant', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSnapshotCopyGrantMessage', ], 'output' => [ 'shape' => 'CreateSnapshotCopyGrantResult', 'resultWrapper' => 'CreateSnapshotCopyGrantResult', ], 'errors' => [ [ 'shape' => 'SnapshotCopyGrantAlreadyExistsFault', ], [ 'shape' => 'SnapshotCopyGrantQuotaExceededFault', ], [ 'shape' => 'LimitExceededFault', ], [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'InvalidTagFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], 'CreateTags' => [ 'name' => 'CreateTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateTagsMessage', ], 'errors' => [ [ 'shape' => 'TagLimitExceededFault', ], [ 'shape' => 'ResourceNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DeleteCluster' => [ 'name' => 'DeleteCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClusterMessage', ], 'output' => [ 'shape' => 'DeleteClusterResult', 'resultWrapper' => 'DeleteClusterResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'ClusterSnapshotAlreadyExistsFault', ], [ 'shape' => 'ClusterSnapshotQuotaExceededFault', ], ], ], 'DeleteClusterParameterGroup' => [ 'name' => 'DeleteClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClusterParameterGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidClusterParameterGroupStateFault', ], [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], ], ], 'DeleteClusterSecurityGroup' => [ 'name' => 'DeleteClusterSecurityGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClusterSecurityGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidClusterSecurityGroupStateFault', ], [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], ], ], 'DeleteClusterSnapshot' => [ 'name' => 'DeleteClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClusterSnapshotMessage', ], 'output' => [ 'shape' => 'DeleteClusterSnapshotResult', 'resultWrapper' => 'DeleteClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'InvalidClusterSnapshotStateFault', ], [ 'shape' => 'ClusterSnapshotNotFoundFault', ], ], ], 'DeleteClusterSubnetGroup' => [ 'name' => 'DeleteClusterSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteClusterSubnetGroupMessage', ], 'errors' => [ [ 'shape' => 'InvalidClusterSubnetGroupStateFault', ], [ 'shape' => 'InvalidClusterSubnetStateFault', ], [ 'shape' => 'ClusterSubnetGroupNotFoundFault', ], ], ], 'DeleteEventSubscription' => [ 'name' => 'DeleteEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteEventSubscriptionMessage', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'InvalidSubscriptionStateFault', ], ], ], 'DeleteHsmClientCertificate' => [ 'name' => 'DeleteHsmClientCertificate', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteHsmClientCertificateMessage', ], 'errors' => [ [ 'shape' => 'InvalidHsmClientCertificateStateFault', ], [ 'shape' => 'HsmClientCertificateNotFoundFault', ], ], ], 'DeleteHsmConfiguration' => [ 'name' => 'DeleteHsmConfiguration', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteHsmConfigurationMessage', ], 'errors' => [ [ 'shape' => 'InvalidHsmConfigurationStateFault', ], [ 'shape' => 'HsmConfigurationNotFoundFault', ], ], ], 'DeleteSnapshotCopyGrant' => [ 'name' => 'DeleteSnapshotCopyGrant', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSnapshotCopyGrantMessage', ], 'errors' => [ [ 'shape' => 'InvalidSnapshotCopyGrantStateFault', ], [ 'shape' => 'SnapshotCopyGrantNotFoundFault', ], ], ], 'DeleteTags' => [ 'name' => 'DeleteTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteTagsMessage', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeClusterParameterGroups' => [ 'name' => 'DescribeClusterParameterGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterParameterGroupsMessage', ], 'output' => [ 'shape' => 'ClusterParameterGroupsMessage', 'resultWrapper' => 'DescribeClusterParameterGroupsResult', ], 'errors' => [ [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeClusterParameters' => [ 'name' => 'DescribeClusterParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterParametersMessage', ], 'output' => [ 'shape' => 'ClusterParameterGroupDetails', 'resultWrapper' => 'DescribeClusterParametersResult', ], 'errors' => [ [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], ], ], 'DescribeClusterSecurityGroups' => [ 'name' => 'DescribeClusterSecurityGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterSecurityGroupsMessage', ], 'output' => [ 'shape' => 'ClusterSecurityGroupMessage', 'resultWrapper' => 'DescribeClusterSecurityGroupsResult', ], 'errors' => [ [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeClusterSnapshots' => [ 'name' => 'DescribeClusterSnapshots', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterSnapshotsMessage', ], 'output' => [ 'shape' => 'SnapshotMessage', 'resultWrapper' => 'DescribeClusterSnapshotsResult', ], 'errors' => [ [ 'shape' => 'ClusterSnapshotNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeClusterSubnetGroups' => [ 'name' => 'DescribeClusterSubnetGroups', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterSubnetGroupsMessage', ], 'output' => [ 'shape' => 'ClusterSubnetGroupMessage', 'resultWrapper' => 'DescribeClusterSubnetGroupsResult', ], 'errors' => [ [ 'shape' => 'ClusterSubnetGroupNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeClusterVersions' => [ 'name' => 'DescribeClusterVersions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClusterVersionsMessage', ], 'output' => [ 'shape' => 'ClusterVersionsMessage', 'resultWrapper' => 'DescribeClusterVersionsResult', ], ], 'DescribeClusters' => [ 'name' => 'DescribeClusters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeClustersMessage', ], 'output' => [ 'shape' => 'ClustersMessage', 'resultWrapper' => 'DescribeClustersResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeDefaultClusterParameters' => [ 'name' => 'DescribeDefaultClusterParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeDefaultClusterParametersMessage', ], 'output' => [ 'shape' => 'DescribeDefaultClusterParametersResult', 'resultWrapper' => 'DescribeDefaultClusterParametersResult', ], ], 'DescribeEventCategories' => [ 'name' => 'DescribeEventCategories', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventCategoriesMessage', ], 'output' => [ 'shape' => 'EventCategoriesMessage', 'resultWrapper' => 'DescribeEventCategoriesResult', ], ], 'DescribeEventSubscriptions' => [ 'name' => 'DescribeEventSubscriptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventSubscriptionsMessage', ], 'output' => [ 'shape' => 'EventSubscriptionsMessage', 'resultWrapper' => 'DescribeEventSubscriptionsResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], ], ], 'DescribeEvents' => [ 'name' => 'DescribeEvents', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeEventsMessage', ], 'output' => [ 'shape' => 'EventsMessage', 'resultWrapper' => 'DescribeEventsResult', ], ], 'DescribeHsmClientCertificates' => [ 'name' => 'DescribeHsmClientCertificates', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeHsmClientCertificatesMessage', ], 'output' => [ 'shape' => 'HsmClientCertificateMessage', 'resultWrapper' => 'DescribeHsmClientCertificatesResult', ], 'errors' => [ [ 'shape' => 'HsmClientCertificateNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeHsmConfigurations' => [ 'name' => 'DescribeHsmConfigurations', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeHsmConfigurationsMessage', ], 'output' => [ 'shape' => 'HsmConfigurationMessage', 'resultWrapper' => 'DescribeHsmConfigurationsResult', ], 'errors' => [ [ 'shape' => 'HsmConfigurationNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeLoggingStatus' => [ 'name' => 'DescribeLoggingStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeLoggingStatusMessage', ], 'output' => [ 'shape' => 'LoggingStatus', 'resultWrapper' => 'DescribeLoggingStatusResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], ], ], 'DescribeOrderableClusterOptions' => [ 'name' => 'DescribeOrderableClusterOptions', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeOrderableClusterOptionsMessage', ], 'output' => [ 'shape' => 'OrderableClusterOptionsMessage', 'resultWrapper' => 'DescribeOrderableClusterOptionsResult', ], ], 'DescribeReservedNodeOfferings' => [ 'name' => 'DescribeReservedNodeOfferings', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedNodeOfferingsMessage', ], 'output' => [ 'shape' => 'ReservedNodeOfferingsMessage', 'resultWrapper' => 'DescribeReservedNodeOfferingsResult', ], 'errors' => [ [ 'shape' => 'ReservedNodeOfferingNotFoundFault', ], [ 'shape' => 'UnsupportedOperationFault', ], ], ], 'DescribeReservedNodes' => [ 'name' => 'DescribeReservedNodes', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeReservedNodesMessage', ], 'output' => [ 'shape' => 'ReservedNodesMessage', 'resultWrapper' => 'DescribeReservedNodesResult', ], 'errors' => [ [ 'shape' => 'ReservedNodeNotFoundFault', ], ], ], 'DescribeResize' => [ 'name' => 'DescribeResize', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeResizeMessage', ], 'output' => [ 'shape' => 'ResizeProgressMessage', 'resultWrapper' => 'DescribeResizeResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'ResizeNotFoundFault', ], ], ], 'DescribeSnapshotCopyGrants' => [ 'name' => 'DescribeSnapshotCopyGrants', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSnapshotCopyGrantsMessage', ], 'output' => [ 'shape' => 'SnapshotCopyGrantMessage', 'resultWrapper' => 'DescribeSnapshotCopyGrantsResult', ], 'errors' => [ [ 'shape' => 'SnapshotCopyGrantNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DescribeTableRestoreStatus' => [ 'name' => 'DescribeTableRestoreStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTableRestoreStatusMessage', ], 'output' => [ 'shape' => 'TableRestoreStatusMessage', 'resultWrapper' => 'DescribeTableRestoreStatusResult', ], 'errors' => [ [ 'shape' => 'TableRestoreNotFoundFault', ], [ 'shape' => 'ClusterNotFoundFault', ], ], ], 'DescribeTags' => [ 'name' => 'DescribeTags', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTagsMessage', ], 'output' => [ 'shape' => 'TaggedResourceListMessage', 'resultWrapper' => 'DescribeTagsResult', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundFault', ], [ 'shape' => 'InvalidTagFault', ], ], ], 'DisableLogging' => [ 'name' => 'DisableLogging', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableLoggingMessage', ], 'output' => [ 'shape' => 'LoggingStatus', 'resultWrapper' => 'DisableLoggingResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], ], ], 'DisableSnapshotCopy' => [ 'name' => 'DisableSnapshotCopy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisableSnapshotCopyMessage', ], 'output' => [ 'shape' => 'DisableSnapshotCopyResult', 'resultWrapper' => 'DisableSnapshotCopyResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'SnapshotCopyAlreadyDisabledFault', ], [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'UnauthorizedOperation', ], ], ], 'EnableLogging' => [ 'name' => 'EnableLogging', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableLoggingMessage', ], 'output' => [ 'shape' => 'LoggingStatus', 'resultWrapper' => 'EnableLoggingResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'BucketNotFoundFault', ], [ 'shape' => 'InsufficientS3BucketPolicyFault', ], [ 'shape' => 'InvalidS3KeyPrefixFault', ], [ 'shape' => 'InvalidS3BucketNameFault', ], ], ], 'EnableSnapshotCopy' => [ 'name' => 'EnableSnapshotCopy', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'EnableSnapshotCopyMessage', ], 'output' => [ 'shape' => 'EnableSnapshotCopyResult', 'resultWrapper' => 'EnableSnapshotCopyResult', ], 'errors' => [ [ 'shape' => 'IncompatibleOrderableOptions', ], [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'CopyToRegionDisabledFault', ], [ 'shape' => 'SnapshotCopyAlreadyEnabledFault', ], [ 'shape' => 'UnknownSnapshotCopyRegionFault', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'SnapshotCopyGrantNotFoundFault', ], [ 'shape' => 'LimitExceededFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], 'ModifyCluster' => [ 'name' => 'ModifyCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyClusterMessage', ], 'output' => [ 'shape' => 'ModifyClusterResult', 'resultWrapper' => 'ModifyClusterResult', ], 'errors' => [ [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'InvalidClusterSecurityGroupStateFault', ], [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'NumberOfNodesQuotaExceededFault', ], [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], [ 'shape' => 'InsufficientClusterCapacityFault', ], [ 'shape' => 'UnsupportedOptionFault', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'HsmClientCertificateNotFoundFault', ], [ 'shape' => 'HsmConfigurationNotFoundFault', ], [ 'shape' => 'ClusterAlreadyExistsFault', ], [ 'shape' => 'LimitExceededFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], [ 'shape' => 'InvalidElasticIpFault', ], ], ], 'ModifyClusterIamRoles' => [ 'name' => 'ModifyClusterIamRoles', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyClusterIamRolesMessage', ], 'output' => [ 'shape' => 'ModifyClusterIamRolesResult', 'resultWrapper' => 'ModifyClusterIamRolesResult', ], 'errors' => [ [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'ClusterNotFoundFault', ], ], ], 'ModifyClusterParameterGroup' => [ 'name' => 'ModifyClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'ClusterParameterGroupNameMessage', 'resultWrapper' => 'ModifyClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], [ 'shape' => 'InvalidClusterParameterGroupStateFault', ], ], ], 'ModifyClusterSubnetGroup' => [ 'name' => 'ModifyClusterSubnetGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyClusterSubnetGroupMessage', ], 'output' => [ 'shape' => 'ModifyClusterSubnetGroupResult', 'resultWrapper' => 'ModifyClusterSubnetGroupResult', ], 'errors' => [ [ 'shape' => 'ClusterSubnetGroupNotFoundFault', ], [ 'shape' => 'ClusterSubnetQuotaExceededFault', ], [ 'shape' => 'SubnetAlreadyInUse', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], 'ModifyEventSubscription' => [ 'name' => 'ModifyEventSubscription', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifyEventSubscriptionMessage', ], 'output' => [ 'shape' => 'ModifyEventSubscriptionResult', 'resultWrapper' => 'ModifyEventSubscriptionResult', ], 'errors' => [ [ 'shape' => 'SubscriptionNotFoundFault', ], [ 'shape' => 'SNSInvalidTopicFault', ], [ 'shape' => 'SNSNoAuthorizationFault', ], [ 'shape' => 'SNSTopicArnNotFoundFault', ], [ 'shape' => 'SubscriptionEventIdNotFoundFault', ], [ 'shape' => 'SubscriptionCategoryNotFoundFault', ], [ 'shape' => 'SubscriptionSeverityNotFoundFault', ], [ 'shape' => 'SourceNotFoundFault', ], [ 'shape' => 'InvalidSubscriptionStateFault', ], ], ], 'ModifySnapshotCopyRetentionPeriod' => [ 'name' => 'ModifySnapshotCopyRetentionPeriod', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ModifySnapshotCopyRetentionPeriodMessage', ], 'output' => [ 'shape' => 'ModifySnapshotCopyRetentionPeriodResult', 'resultWrapper' => 'ModifySnapshotCopyRetentionPeriodResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'SnapshotCopyDisabledFault', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'InvalidClusterStateFault', ], ], ], 'PurchaseReservedNodeOffering' => [ 'name' => 'PurchaseReservedNodeOffering', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'PurchaseReservedNodeOfferingMessage', ], 'output' => [ 'shape' => 'PurchaseReservedNodeOfferingResult', 'resultWrapper' => 'PurchaseReservedNodeOfferingResult', ], 'errors' => [ [ 'shape' => 'ReservedNodeOfferingNotFoundFault', ], [ 'shape' => 'ReservedNodeAlreadyExistsFault', ], [ 'shape' => 'ReservedNodeQuotaExceededFault', ], [ 'shape' => 'UnsupportedOperationFault', ], ], ], 'RebootCluster' => [ 'name' => 'RebootCluster', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RebootClusterMessage', ], 'output' => [ 'shape' => 'RebootClusterResult', 'resultWrapper' => 'RebootClusterResult', ], 'errors' => [ [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'ClusterNotFoundFault', ], ], ], 'ResetClusterParameterGroup' => [ 'name' => 'ResetClusterParameterGroup', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResetClusterParameterGroupMessage', ], 'output' => [ 'shape' => 'ClusterParameterGroupNameMessage', 'resultWrapper' => 'ResetClusterParameterGroupResult', ], 'errors' => [ [ 'shape' => 'InvalidClusterParameterGroupStateFault', ], [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], ], ], 'RestoreFromClusterSnapshot' => [ 'name' => 'RestoreFromClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreFromClusterSnapshotMessage', ], 'output' => [ 'shape' => 'RestoreFromClusterSnapshotResult', 'resultWrapper' => 'RestoreFromClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'AccessToSnapshotDeniedFault', ], [ 'shape' => 'ClusterAlreadyExistsFault', ], [ 'shape' => 'ClusterSnapshotNotFoundFault', ], [ 'shape' => 'ClusterQuotaExceededFault', ], [ 'shape' => 'InsufficientClusterCapacityFault', ], [ 'shape' => 'InvalidClusterSnapshotStateFault', ], [ 'shape' => 'InvalidRestoreFault', ], [ 'shape' => 'NumberOfNodesQuotaExceededFault', ], [ 'shape' => 'NumberOfNodesPerClusterLimitExceededFault', ], [ 'shape' => 'InvalidVPCNetworkStateFault', ], [ 'shape' => 'InvalidClusterSubnetGroupStateFault', ], [ 'shape' => 'InvalidSubnet', ], [ 'shape' => 'ClusterSubnetGroupNotFoundFault', ], [ 'shape' => 'UnauthorizedOperation', ], [ 'shape' => 'HsmClientCertificateNotFoundFault', ], [ 'shape' => 'HsmConfigurationNotFoundFault', ], [ 'shape' => 'InvalidElasticIpFault', ], [ 'shape' => 'ClusterParameterGroupNotFoundFault', ], [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], [ 'shape' => 'LimitExceededFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], 'RestoreTableFromClusterSnapshot' => [ 'name' => 'RestoreTableFromClusterSnapshot', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RestoreTableFromClusterSnapshotMessage', ], 'output' => [ 'shape' => 'RestoreTableFromClusterSnapshotResult', 'resultWrapper' => 'RestoreTableFromClusterSnapshotResult', ], 'errors' => [ [ 'shape' => 'ClusterSnapshotNotFoundFault', ], [ 'shape' => 'InProgressTableRestoreQuotaExceededFault', ], [ 'shape' => 'InvalidClusterSnapshotStateFault', ], [ 'shape' => 'InvalidTableRestoreArgumentFault', ], [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'UnsupportedOperationFault', ], ], ], 'RevokeClusterSecurityGroupIngress' => [ 'name' => 'RevokeClusterSecurityGroupIngress', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeClusterSecurityGroupIngressMessage', ], 'output' => [ 'shape' => 'RevokeClusterSecurityGroupIngressResult', 'resultWrapper' => 'RevokeClusterSecurityGroupIngressResult', ], 'errors' => [ [ 'shape' => 'ClusterSecurityGroupNotFoundFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'InvalidClusterSecurityGroupStateFault', ], ], ], 'RevokeSnapshotAccess' => [ 'name' => 'RevokeSnapshotAccess', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RevokeSnapshotAccessMessage', ], 'output' => [ 'shape' => 'RevokeSnapshotAccessResult', 'resultWrapper' => 'RevokeSnapshotAccessResult', ], 'errors' => [ [ 'shape' => 'AccessToSnapshotDeniedFault', ], [ 'shape' => 'AuthorizationNotFoundFault', ], [ 'shape' => 'ClusterSnapshotNotFoundFault', ], ], ], 'RotateEncryptionKey' => [ 'name' => 'RotateEncryptionKey', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RotateEncryptionKeyMessage', ], 'output' => [ 'shape' => 'RotateEncryptionKeyResult', 'resultWrapper' => 'RotateEncryptionKeyResult', ], 'errors' => [ [ 'shape' => 'ClusterNotFoundFault', ], [ 'shape' => 'InvalidClusterStateFault', ], [ 'shape' => 'DependentServiceRequestThrottlingFault', ], ], ], ], 'shapes' => [ 'AccessToSnapshotDeniedFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AccessToSnapshotDenied', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AccountWithRestoreAccess' => [ 'type' => 'structure', 'members' => [ 'AccountId' => [ 'shape' => 'String', ], ], ], 'AccountsWithRestoreAccessList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AccountWithRestoreAccess', 'locationName' => 'AccountWithRestoreAccess', ], ], 'AuthorizationAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizationQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'AuthorizationQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'AuthorizeClusterSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSecurityGroupName', ], 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'AuthorizeClusterSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'ClusterSecurityGroup' => [ 'shape' => 'ClusterSecurityGroup', ], ], ], 'AuthorizeSnapshotAccessMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotIdentifier', 'AccountWithRestoreAccess', ], 'members' => [ 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotClusterIdentifier' => [ 'shape' => 'String', ], 'AccountWithRestoreAccess' => [ 'shape' => 'String', ], ], ], 'AuthorizeSnapshotAccessResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'AvailabilityZone' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'AvailabilityZoneList' => [ 'type' => 'list', 'member' => [ 'shape' => 'AvailabilityZone', 'locationName' => 'AvailabilityZone', ], ], 'Boolean' => [ 'type' => 'boolean', ], 'BooleanOptional' => [ 'type' => 'boolean', ], 'BucketNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'BucketNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Cluster' => [ 'type' => 'structure', 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'ClusterStatus' => [ 'shape' => 'String', ], 'ModifyStatus' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'DBName' => [ 'shape' => 'String', ], 'Endpoint' => [ 'shape' => 'Endpoint', ], 'ClusterCreateTime' => [ 'shape' => 'TStamp', ], 'AutomatedSnapshotRetentionPeriod' => [ 'shape' => 'Integer', ], 'ClusterSecurityGroups' => [ 'shape' => 'ClusterSecurityGroupMembershipList', ], 'VpcSecurityGroups' => [ 'shape' => 'VpcSecurityGroupMembershipList', ], 'ClusterParameterGroups' => [ 'shape' => 'ClusterParameterGroupStatusList', ], 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'PendingModifiedValues' => [ 'shape' => 'PendingModifiedValues', ], 'ClusterVersion' => [ 'shape' => 'String', ], 'AllowVersionUpgrade' => [ 'shape' => 'Boolean', ], 'NumberOfNodes' => [ 'shape' => 'Integer', ], 'PubliclyAccessible' => [ 'shape' => 'Boolean', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'RestoreStatus' => [ 'shape' => 'RestoreStatus', ], 'HsmStatus' => [ 'shape' => 'HsmStatus', ], 'ClusterSnapshotCopyStatus' => [ 'shape' => 'ClusterSnapshotCopyStatus', ], 'ClusterPublicKey' => [ 'shape' => 'String', ], 'ClusterNodes' => [ 'shape' => 'ClusterNodesList', ], 'ElasticIpStatus' => [ 'shape' => 'ElasticIpStatus', ], 'ClusterRevisionNumber' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'EnhancedVpcRouting' => [ 'shape' => 'Boolean', ], 'IamRoles' => [ 'shape' => 'ClusterIamRoleList', ], ], 'wrapper' => true, ], 'ClusterAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterIamRole' => [ 'type' => 'structure', 'members' => [ 'IamRoleArn' => [ 'shape' => 'String', ], 'ApplyStatus' => [ 'shape' => 'String', ], ], ], 'ClusterIamRoleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterIamRole', 'locationName' => 'ClusterIamRole', ], ], 'ClusterList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Cluster', 'locationName' => 'Cluster', ], ], 'ClusterNode' => [ 'type' => 'structure', 'members' => [ 'NodeRole' => [ 'shape' => 'String', ], 'PrivateIPAddress' => [ 'shape' => 'String', ], 'PublicIPAddress' => [ 'shape' => 'String', ], ], ], 'ClusterNodesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterNode', ], ], 'ClusterNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ClusterParameterGroup' => [ 'type' => 'structure', 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'ParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'ClusterParameterGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterParameterGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterParameterGroupDetails' => [ 'type' => 'structure', 'members' => [ 'Parameters' => [ 'shape' => 'ParametersList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'ClusterParameterGroupNameMessage' => [ 'type' => 'structure', 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'ParameterGroupStatus' => [ 'shape' => 'String', ], ], ], 'ClusterParameterGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterParameterGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ClusterParameterGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterParameterGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterParameterGroupStatus' => [ 'type' => 'structure', 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'ParameterApplyStatus' => [ 'shape' => 'String', ], 'ClusterParameterStatusList' => [ 'shape' => 'ClusterParameterStatusList', ], ], ], 'ClusterParameterGroupStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterParameterGroupStatus', 'locationName' => 'ClusterParameterGroup', ], ], 'ClusterParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ParameterGroups' => [ 'shape' => 'ParameterGroupList', ], ], ], 'ClusterParameterStatus' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'ParameterApplyStatus' => [ 'shape' => 'String', ], 'ParameterApplyErrorDescription' => [ 'shape' => 'String', ], ], ], 'ClusterParameterStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterParameterStatus', ], ], 'ClusterQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSecurityGroup' => [ 'type' => 'structure', 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'EC2SecurityGroups' => [ 'shape' => 'EC2SecurityGroupList', ], 'IPRanges' => [ 'shape' => 'IPRangeList', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'ClusterSecurityGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSecurityGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'ClusterSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterSecurityGroupMembership', 'locationName' => 'ClusterSecurityGroup', ], ], 'ClusterSecurityGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ClusterSecurityGroups' => [ 'shape' => 'ClusterSecurityGroups', ], ], ], 'ClusterSecurityGroupNameList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'ClusterSecurityGroupName', ], ], 'ClusterSecurityGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSecurityGroupNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSecurityGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'QuotaExceeded.ClusterSecurityGroup', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSecurityGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterSecurityGroup', 'locationName' => 'ClusterSecurityGroup', ], ], 'ClusterSnapshotAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSnapshotAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSnapshotCopyStatus' => [ 'type' => 'structure', 'members' => [ 'DestinationRegion' => [ 'shape' => 'String', ], 'RetentionPeriod' => [ 'shape' => 'Long', ], 'SnapshotCopyGrantName' => [ 'shape' => 'String', ], ], ], 'ClusterSnapshotNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSnapshotNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSnapshotQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSnapshotQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSubnetGroup' => [ 'type' => 'structure', 'members' => [ 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'SubnetGroupStatus' => [ 'shape' => 'String', ], 'Subnets' => [ 'shape' => 'SubnetList', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'ClusterSubnetGroupAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSubnetGroupAlreadyExists', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSubnetGroupMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ClusterSubnetGroups' => [ 'shape' => 'ClusterSubnetGroups', ], ], ], 'ClusterSubnetGroupNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSubnetGroupNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSubnetGroupQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSubnetGroupQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterSubnetGroups' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterSubnetGroup', 'locationName' => 'ClusterSubnetGroup', ], ], 'ClusterSubnetQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ClusterSubnetQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ClusterVersion' => [ 'type' => 'structure', 'members' => [ 'ClusterVersion' => [ 'shape' => 'String', ], 'ClusterParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], ], ], 'ClusterVersionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterVersion', 'locationName' => 'ClusterVersion', ], ], 'ClusterVersionsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ClusterVersions' => [ 'shape' => 'ClusterVersionList', ], ], ], 'ClustersMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Clusters' => [ 'shape' => 'ClusterList', ], ], ], 'CopyClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SourceSnapshotIdentifier', 'TargetSnapshotIdentifier', ], 'members' => [ 'SourceSnapshotIdentifier' => [ 'shape' => 'String', ], 'SourceSnapshotClusterIdentifier' => [ 'shape' => 'String', ], 'TargetSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'CopyClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'CopyToRegionDisabledFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'CopyToRegionDisabledFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'CreateClusterMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', 'NodeType', 'MasterUsername', 'MasterUserPassword', ], 'members' => [ 'DBName' => [ 'shape' => 'String', ], 'ClusterIdentifier' => [ 'shape' => 'String', ], 'ClusterType' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'MasterUsername' => [ 'shape' => 'String', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'ClusterSecurityGroups' => [ 'shape' => 'ClusterSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'ClusterParameterGroupName' => [ 'shape' => 'String', ], 'AutomatedSnapshotRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'ClusterVersion' => [ 'shape' => 'String', ], 'AllowVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'NumberOfNodes' => [ 'shape' => 'IntegerOptional', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'Encrypted' => [ 'shape' => 'BooleanOptional', ], 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'ElasticIp' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'EnhancedVpcRouting' => [ 'shape' => 'BooleanOptional', ], 'AdditionalInfo' => [ 'shape' => 'String', ], 'IamRoles' => [ 'shape' => 'IamRoleArnList', ], ], ], 'CreateClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ParameterGroupName', 'ParameterGroupFamily', 'Description', ], 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'ParameterGroupFamily' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateClusterParameterGroupResult' => [ 'type' => 'structure', 'members' => [ 'ClusterParameterGroup' => [ 'shape' => 'ClusterParameterGroup', ], ], ], 'CreateClusterResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'CreateClusterSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSecurityGroupName', 'Description', ], 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateClusterSecurityGroupResult' => [ 'type' => 'structure', 'members' => [ 'ClusterSecurityGroup' => [ 'shape' => 'ClusterSecurityGroup', ], ], ], 'CreateClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotIdentifier', 'ClusterIdentifier', ], 'members' => [ 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'ClusterIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'CreateClusterSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSubnetGroupName', 'Description', 'SubnetIds', ], 'members' => [ 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateClusterSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'ClusterSubnetGroup' => [ 'shape' => 'ClusterSubnetGroup', ], ], ], 'CreateEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', 'SnsTopicArn', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'SourceIds' => [ 'shape' => 'SourceIdsList', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Severity' => [ 'shape' => 'String', ], 'Enabled' => [ 'shape' => 'BooleanOptional', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'CreateHsmClientCertificateMessage' => [ 'type' => 'structure', 'required' => [ 'HsmClientCertificateIdentifier', ], 'members' => [ 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateHsmClientCertificateResult' => [ 'type' => 'structure', 'members' => [ 'HsmClientCertificate' => [ 'shape' => 'HsmClientCertificate', ], ], ], 'CreateHsmConfigurationMessage' => [ 'type' => 'structure', 'required' => [ 'HsmConfigurationIdentifier', 'Description', 'HsmIpAddress', 'HsmPartitionName', 'HsmPartitionPassword', 'HsmServerPublicCertificate', ], 'members' => [ 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'HsmIpAddress' => [ 'shape' => 'String', ], 'HsmPartitionName' => [ 'shape' => 'String', ], 'HsmPartitionPassword' => [ 'shape' => 'String', ], 'HsmServerPublicCertificate' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateHsmConfigurationResult' => [ 'type' => 'structure', 'members' => [ 'HsmConfiguration' => [ 'shape' => 'HsmConfiguration', ], ], ], 'CreateSnapshotCopyGrantMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotCopyGrantName', ], 'members' => [ 'SnapshotCopyGrantName' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'CreateSnapshotCopyGrantResult' => [ 'type' => 'structure', 'members' => [ 'SnapshotCopyGrant' => [ 'shape' => 'SnapshotCopyGrant', ], ], ], 'CreateTagsMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'Tags', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'DefaultClusterParameters' => [ 'type' => 'structure', 'members' => [ 'ParameterGroupFamily' => [ 'shape' => 'String', ], 'Marker' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], 'wrapper' => true, ], 'DeleteClusterMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'SkipFinalClusterSnapshot' => [ 'shape' => 'Boolean', ], 'FinalClusterSnapshotIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ParameterGroupName', ], 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteClusterResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'DeleteClusterSecurityGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSecurityGroupName', ], 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotIdentifier', ], 'members' => [ 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'DeleteClusterSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSubnetGroupName', ], 'members' => [ 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], ], ], 'DeleteEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], ], ], 'DeleteHsmClientCertificateMessage' => [ 'type' => 'structure', 'required' => [ 'HsmClientCertificateIdentifier', ], 'members' => [ 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteHsmConfigurationMessage' => [ 'type' => 'structure', 'required' => [ 'HsmConfigurationIdentifier', ], 'members' => [ 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], ], ], 'DeleteSnapshotCopyGrantMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotCopyGrantName', ], 'members' => [ 'SnapshotCopyGrantName' => [ 'shape' => 'String', ], ], ], 'DeleteTagsMessage' => [ 'type' => 'structure', 'required' => [ 'ResourceName', 'TagKeys', ], 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], ], ], 'DependentServiceRequestThrottlingFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'DependentServiceRequestThrottlingFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'DescribeClusterParameterGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeClusterParametersMessage' => [ 'type' => 'structure', 'required' => [ 'ParameterGroupName', ], 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeClusterSecurityGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeClusterSnapshotsMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'EndTime' => [ 'shape' => 'TStamp', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'OwnerAccount' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeClusterSubnetGroupsMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeClusterVersionsMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterVersion' => [ 'shape' => 'String', ], 'ClusterParameterGroupFamily' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeClustersMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeDefaultClusterParametersMessage' => [ 'type' => 'structure', 'required' => [ 'ParameterGroupFamily', ], 'members' => [ 'ParameterGroupFamily' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeDefaultClusterParametersResult' => [ 'type' => 'structure', 'members' => [ 'DefaultClusterParameters' => [ 'shape' => 'DefaultClusterParameters', ], ], ], 'DescribeEventCategoriesMessage' => [ 'type' => 'structure', 'members' => [ 'SourceType' => [ 'shape' => 'String', ], ], ], 'DescribeEventSubscriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeEventsMessage' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'EndTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'IntegerOptional', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeHsmClientCertificatesMessage' => [ 'type' => 'structure', 'members' => [ 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeHsmConfigurationsMessage' => [ 'type' => 'structure', 'members' => [ 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeLoggingStatusMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'DescribeOrderableClusterOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterVersion' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReservedNodeOfferingsMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedNodeOfferingId' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeReservedNodesMessage' => [ 'type' => 'structure', 'members' => [ 'ReservedNodeId' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeResizeMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'DescribeSnapshotCopyGrantsMessage' => [ 'type' => 'structure', 'members' => [ 'SnapshotCopyGrantName' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DescribeTableRestoreStatusMessage' => [ 'type' => 'structure', 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'TableRestoreRequestId' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'DescribeTagsMessage' => [ 'type' => 'structure', 'members' => [ 'ResourceName' => [ 'shape' => 'String', ], 'ResourceType' => [ 'shape' => 'String', ], 'MaxRecords' => [ 'shape' => 'IntegerOptional', ], 'Marker' => [ 'shape' => 'String', ], 'TagKeys' => [ 'shape' => 'TagKeyList', ], 'TagValues' => [ 'shape' => 'TagValueList', ], ], ], 'DisableLoggingMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'DisableSnapshotCopyMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'DisableSnapshotCopyResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'Double' => [ 'type' => 'double', ], 'DoubleOptional' => [ 'type' => 'double', ], 'EC2SecurityGroup' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'EC2SecurityGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EC2SecurityGroup', 'locationName' => 'EC2SecurityGroup', ], ], 'ElasticIpStatus' => [ 'type' => 'structure', 'members' => [ 'ElasticIp' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'EnableLoggingMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', 'BucketName', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'BucketName' => [ 'shape' => 'String', ], 'S3KeyPrefix' => [ 'shape' => 'String', ], ], ], 'EnableSnapshotCopyMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', 'DestinationRegion', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'DestinationRegion' => [ 'shape' => 'String', ], 'RetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'SnapshotCopyGrantName' => [ 'shape' => 'String', ], ], ], 'EnableSnapshotCopyResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'Endpoint' => [ 'type' => 'structure', 'members' => [ 'Address' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], ], ], 'Event' => [ 'type' => 'structure', 'members' => [ 'SourceIdentifier' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'SourceType', ], 'Message' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Severity' => [ 'shape' => 'String', ], 'Date' => [ 'shape' => 'TStamp', ], 'EventId' => [ 'shape' => 'String', ], ], ], 'EventCategoriesList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'EventCategory', ], ], 'EventCategoriesMap' => [ 'type' => 'structure', 'members' => [ 'SourceType' => [ 'shape' => 'String', ], 'Events' => [ 'shape' => 'EventInfoMapList', ], ], 'wrapper' => true, ], 'EventCategoriesMapList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventCategoriesMap', 'locationName' => 'EventCategoriesMap', ], ], 'EventCategoriesMessage' => [ 'type' => 'structure', 'members' => [ 'EventCategoriesMapList' => [ 'shape' => 'EventCategoriesMapList', ], ], ], 'EventInfoMap' => [ 'type' => 'structure', 'members' => [ 'EventId' => [ 'shape' => 'String', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'EventDescription' => [ 'shape' => 'String', ], 'Severity' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'EventInfoMapList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventInfoMap', 'locationName' => 'EventInfoMap', ], ], 'EventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Event', 'locationName' => 'Event', ], ], 'EventSubscription' => [ 'type' => 'structure', 'members' => [ 'CustomerAwsId' => [ 'shape' => 'String', ], 'CustSubscriptionId' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'SubscriptionCreationTime' => [ 'shape' => 'TStamp', ], 'SourceType' => [ 'shape' => 'String', ], 'SourceIdsList' => [ 'shape' => 'SourceIdsList', ], 'EventCategoriesList' => [ 'shape' => 'EventCategoriesList', ], 'Severity' => [ 'shape' => 'String', ], 'Enabled' => [ 'shape' => 'Boolean', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'EventSubscriptionQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'EventSubscriptionQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'EventSubscriptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'EventSubscription', 'locationName' => 'EventSubscription', ], ], 'EventSubscriptionsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'EventSubscriptionsList' => [ 'shape' => 'EventSubscriptionsList', ], ], ], 'EventsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Events' => [ 'shape' => 'EventList', ], ], ], 'HsmClientCertificate' => [ 'type' => 'structure', 'members' => [ 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'HsmClientCertificatePublicKey' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'HsmClientCertificateAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'HsmClientCertificateAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'HsmClientCertificateList' => [ 'type' => 'list', 'member' => [ 'shape' => 'HsmClientCertificate', 'locationName' => 'HsmClientCertificate', ], ], 'HsmClientCertificateMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'HsmClientCertificates' => [ 'shape' => 'HsmClientCertificateList', ], ], ], 'HsmClientCertificateNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'HsmClientCertificateNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'HsmClientCertificateQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'HsmClientCertificateQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'HsmConfiguration' => [ 'type' => 'structure', 'members' => [ 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'HsmIpAddress' => [ 'shape' => 'String', ], 'HsmPartitionName' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'HsmConfigurationAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'HsmConfigurationAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'HsmConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'HsmConfiguration', 'locationName' => 'HsmConfiguration', ], ], 'HsmConfigurationMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'HsmConfigurations' => [ 'shape' => 'HsmConfigurationList', ], ], ], 'HsmConfigurationNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'HsmConfigurationNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'HsmConfigurationQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'HsmConfigurationQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'HsmStatus' => [ 'type' => 'structure', 'members' => [ 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'IPRange' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'IPRangeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPRange', 'locationName' => 'IPRange', ], ], 'IamRoleArnList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'IamRoleArn', ], ], 'ImportTablesCompleted' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ImportTablesInProgress' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'ImportTablesNotStarted' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'InProgressTableRestoreQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InProgressTableRestoreQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'IncompatibleOrderableOptions' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'IncompatibleOrderableOptions', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientClusterCapacityFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientClusterCapacity', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InsufficientS3BucketPolicyFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InsufficientS3BucketPolicyFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'Integer' => [ 'type' => 'integer', ], 'IntegerOptional' => [ 'type' => 'integer', ], 'InvalidClusterParameterGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidClusterParameterGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidClusterSecurityGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidClusterSecurityGroupState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidClusterSnapshotStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidClusterSnapshotState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidClusterStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidClusterState', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidClusterSubnetGroupStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidClusterSubnetGroupStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidClusterSubnetStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidClusterSubnetStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidElasticIpFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidElasticIpFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidHsmClientCertificateStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidHsmClientCertificateStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidHsmConfigurationStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidHsmConfigurationStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidRestoreFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidRestore', 'httpStatusCode' => 406, 'senderFault' => true, ], 'exception' => true, ], 'InvalidS3BucketNameFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidS3BucketNameFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidS3KeyPrefixFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidS3KeyPrefixFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSnapshotCopyGrantStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSnapshotCopyGrantStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSubnet' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSubnet', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidSubscriptionStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidSubscriptionStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidTableRestoreArgumentFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidTableRestoreArgument', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidTagFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidTagFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'InvalidVPCNetworkStateFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'InvalidVPCNetworkStateFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'LimitExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'LimitExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'LoggingStatus' => [ 'type' => 'structure', 'members' => [ 'LoggingEnabled' => [ 'shape' => 'Boolean', ], 'BucketName' => [ 'shape' => 'String', ], 'S3KeyPrefix' => [ 'shape' => 'String', ], 'LastSuccessfulDeliveryTime' => [ 'shape' => 'TStamp', ], 'LastFailureTime' => [ 'shape' => 'TStamp', ], 'LastFailureMessage' => [ 'shape' => 'String', ], ], ], 'Long' => [ 'type' => 'long', ], 'LongOptional' => [ 'type' => 'long', ], 'ModifyClusterIamRolesMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'AddIamRoles' => [ 'shape' => 'IamRoleArnList', ], 'RemoveIamRoles' => [ 'shape' => 'IamRoleArnList', ], ], ], 'ModifyClusterIamRolesResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'ModifyClusterMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'ClusterType' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'NumberOfNodes' => [ 'shape' => 'IntegerOptional', ], 'ClusterSecurityGroups' => [ 'shape' => 'ClusterSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'MasterUserPassword' => [ 'shape' => 'String', ], 'ClusterParameterGroupName' => [ 'shape' => 'String', ], 'AutomatedSnapshotRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'ClusterVersion' => [ 'shape' => 'String', ], 'AllowVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'NewClusterIdentifier' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'ElasticIp' => [ 'shape' => 'String', ], 'EnhancedVpcRouting' => [ 'shape' => 'BooleanOptional', ], ], ], 'ModifyClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ParameterGroupName', 'Parameters', ], 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ModifyClusterResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'ModifyClusterSubnetGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSubnetGroupName', 'SubnetIds', ], 'members' => [ 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'SubnetIds' => [ 'shape' => 'SubnetIdentifierList', ], ], ], 'ModifyClusterSubnetGroupResult' => [ 'type' => 'structure', 'members' => [ 'ClusterSubnetGroup' => [ 'shape' => 'ClusterSubnetGroup', ], ], ], 'ModifyEventSubscriptionMessage' => [ 'type' => 'structure', 'required' => [ 'SubscriptionName', ], 'members' => [ 'SubscriptionName' => [ 'shape' => 'String', ], 'SnsTopicArn' => [ 'shape' => 'String', ], 'SourceType' => [ 'shape' => 'String', ], 'SourceIds' => [ 'shape' => 'SourceIdsList', ], 'EventCategories' => [ 'shape' => 'EventCategoriesList', ], 'Severity' => [ 'shape' => 'String', ], 'Enabled' => [ 'shape' => 'BooleanOptional', ], ], ], 'ModifyEventSubscriptionResult' => [ 'type' => 'structure', 'members' => [ 'EventSubscription' => [ 'shape' => 'EventSubscription', ], ], ], 'ModifySnapshotCopyRetentionPeriodMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', 'RetentionPeriod', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'RetentionPeriod' => [ 'shape' => 'Integer', ], ], ], 'ModifySnapshotCopyRetentionPeriodResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'NumberOfNodesPerClusterLimitExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'NumberOfNodesPerClusterLimitExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'NumberOfNodesQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'NumberOfNodesQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'OrderableClusterOption' => [ 'type' => 'structure', 'members' => [ 'ClusterVersion' => [ 'shape' => 'String', ], 'ClusterType' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'AvailabilityZones' => [ 'shape' => 'AvailabilityZoneList', ], ], 'wrapper' => true, ], 'OrderableClusterOptionsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'OrderableClusterOption', 'locationName' => 'OrderableClusterOption', ], ], 'OrderableClusterOptionsMessage' => [ 'type' => 'structure', 'members' => [ 'OrderableClusterOptions' => [ 'shape' => 'OrderableClusterOptionsList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'Parameter' => [ 'type' => 'structure', 'members' => [ 'ParameterName' => [ 'shape' => 'String', ], 'ParameterValue' => [ 'shape' => 'String', ], 'Description' => [ 'shape' => 'String', ], 'Source' => [ 'shape' => 'String', ], 'DataType' => [ 'shape' => 'String', ], 'AllowedValues' => [ 'shape' => 'String', ], 'ApplyType' => [ 'shape' => 'ParameterApplyType', ], 'IsModifiable' => [ 'shape' => 'Boolean', ], 'MinimumEngineVersion' => [ 'shape' => 'String', ], ], ], 'ParameterApplyType' => [ 'type' => 'string', 'enum' => [ 'static', 'dynamic', ], ], 'ParameterGroupList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ClusterParameterGroup', 'locationName' => 'ClusterParameterGroup', ], ], 'ParametersList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Parameter', 'locationName' => 'Parameter', ], ], 'PendingModifiedValues' => [ 'type' => 'structure', 'members' => [ 'MasterUserPassword' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'NumberOfNodes' => [ 'shape' => 'IntegerOptional', ], 'ClusterType' => [ 'shape' => 'String', ], 'ClusterVersion' => [ 'shape' => 'String', ], 'AutomatedSnapshotRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'ClusterIdentifier' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'EnhancedVpcRouting' => [ 'shape' => 'BooleanOptional', ], ], ], 'PurchaseReservedNodeOfferingMessage' => [ 'type' => 'structure', 'required' => [ 'ReservedNodeOfferingId', ], 'members' => [ 'ReservedNodeOfferingId' => [ 'shape' => 'String', ], 'NodeCount' => [ 'shape' => 'IntegerOptional', ], ], ], 'PurchaseReservedNodeOfferingResult' => [ 'type' => 'structure', 'members' => [ 'ReservedNode' => [ 'shape' => 'ReservedNode', ], ], ], 'RebootClusterMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'RebootClusterResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'RecurringCharge' => [ 'type' => 'structure', 'members' => [ 'RecurringChargeAmount' => [ 'shape' => 'Double', ], 'RecurringChargeFrequency' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'RecurringChargeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecurringCharge', 'locationName' => 'RecurringCharge', ], ], 'ReservedNode' => [ 'type' => 'structure', 'members' => [ 'ReservedNodeId' => [ 'shape' => 'String', ], 'ReservedNodeOfferingId' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'StartTime' => [ 'shape' => 'TStamp', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CurrencyCode' => [ 'shape' => 'String', ], 'NodeCount' => [ 'shape' => 'Integer', ], 'State' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], ], 'wrapper' => true, ], 'ReservedNodeAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedNodeAlreadyExists', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedNodeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedNode', 'locationName' => 'ReservedNode', ], ], 'ReservedNodeNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedNodeNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedNodeOffering' => [ 'type' => 'structure', 'members' => [ 'ReservedNodeOfferingId' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'Duration' => [ 'shape' => 'Integer', ], 'FixedPrice' => [ 'shape' => 'Double', ], 'UsagePrice' => [ 'shape' => 'Double', ], 'CurrencyCode' => [ 'shape' => 'String', ], 'OfferingType' => [ 'shape' => 'String', ], 'RecurringCharges' => [ 'shape' => 'RecurringChargeList', ], ], 'wrapper' => true, ], 'ReservedNodeOfferingList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReservedNodeOffering', 'locationName' => 'ReservedNodeOffering', ], ], 'ReservedNodeOfferingNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedNodeOfferingNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ReservedNodeOfferingsMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedNodeOfferings' => [ 'shape' => 'ReservedNodeOfferingList', ], ], ], 'ReservedNodeQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ReservedNodeQuotaExceeded', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'ReservedNodesMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'ReservedNodes' => [ 'shape' => 'ReservedNodeList', ], ], ], 'ResetClusterParameterGroupMessage' => [ 'type' => 'structure', 'required' => [ 'ParameterGroupName', ], 'members' => [ 'ParameterGroupName' => [ 'shape' => 'String', ], 'ResetAllParameters' => [ 'shape' => 'Boolean', ], 'Parameters' => [ 'shape' => 'ParametersList', ], ], ], 'ResizeNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ResizeNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'ResizeProgressMessage' => [ 'type' => 'structure', 'members' => [ 'TargetNodeType' => [ 'shape' => 'String', ], 'TargetNumberOfNodes' => [ 'shape' => 'IntegerOptional', ], 'TargetClusterType' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], 'ImportTablesCompleted' => [ 'shape' => 'ImportTablesCompleted', ], 'ImportTablesInProgress' => [ 'shape' => 'ImportTablesInProgress', ], 'ImportTablesNotStarted' => [ 'shape' => 'ImportTablesNotStarted', ], 'AvgResizeRateInMegaBytesPerSecond' => [ 'shape' => 'DoubleOptional', ], 'TotalResizeDataInMegaBytes' => [ 'shape' => 'LongOptional', ], 'ProgressInMegaBytes' => [ 'shape' => 'LongOptional', ], 'ElapsedTimeInSeconds' => [ 'shape' => 'LongOptional', ], 'EstimatedTimeToCompletionInSeconds' => [ 'shape' => 'LongOptional', ], ], ], 'ResourceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'ResourceNotFoundFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'RestorableNodeTypeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'NodeType', ], ], 'RestoreFromClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', 'SnapshotIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotClusterIdentifier' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'IntegerOptional', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'AllowVersionUpgrade' => [ 'shape' => 'BooleanOptional', ], 'ClusterSubnetGroupName' => [ 'shape' => 'String', ], 'PubliclyAccessible' => [ 'shape' => 'BooleanOptional', ], 'OwnerAccount' => [ 'shape' => 'String', ], 'HsmClientCertificateIdentifier' => [ 'shape' => 'String', ], 'HsmConfigurationIdentifier' => [ 'shape' => 'String', ], 'ElasticIp' => [ 'shape' => 'String', ], 'ClusterParameterGroupName' => [ 'shape' => 'String', ], 'ClusterSecurityGroups' => [ 'shape' => 'ClusterSecurityGroupNameList', ], 'VpcSecurityGroupIds' => [ 'shape' => 'VpcSecurityGroupIdList', ], 'PreferredMaintenanceWindow' => [ 'shape' => 'String', ], 'AutomatedSnapshotRetentionPeriod' => [ 'shape' => 'IntegerOptional', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'EnhancedVpcRouting' => [ 'shape' => 'BooleanOptional', ], 'AdditionalInfo' => [ 'shape' => 'String', ], 'IamRoles' => [ 'shape' => 'IamRoleArnList', ], ], ], 'RestoreFromClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'RestoreStatus' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'String', ], 'CurrentRestoreRateInMegaBytesPerSecond' => [ 'shape' => 'Double', ], 'SnapshotSizeInMegaBytes' => [ 'shape' => 'Long', ], 'ProgressInMegaBytes' => [ 'shape' => 'Long', ], 'ElapsedTimeInSeconds' => [ 'shape' => 'Long', ], 'EstimatedTimeToCompletionInSeconds' => [ 'shape' => 'Long', ], ], ], 'RestoreTableFromClusterSnapshotMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', 'SnapshotIdentifier', 'SourceDatabaseName', 'SourceTableName', 'NewTableName', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SourceDatabaseName' => [ 'shape' => 'String', ], 'SourceSchemaName' => [ 'shape' => 'String', ], 'SourceTableName' => [ 'shape' => 'String', ], 'TargetDatabaseName' => [ 'shape' => 'String', ], 'TargetSchemaName' => [ 'shape' => 'String', ], 'NewTableName' => [ 'shape' => 'String', ], ], ], 'RestoreTableFromClusterSnapshotResult' => [ 'type' => 'structure', 'members' => [ 'TableRestoreStatus' => [ 'shape' => 'TableRestoreStatus', ], ], ], 'RevokeClusterSecurityGroupIngressMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterSecurityGroupName', ], 'members' => [ 'ClusterSecurityGroupName' => [ 'shape' => 'String', ], 'CIDRIP' => [ 'shape' => 'String', ], 'EC2SecurityGroupName' => [ 'shape' => 'String', ], 'EC2SecurityGroupOwnerId' => [ 'shape' => 'String', ], ], ], 'RevokeClusterSecurityGroupIngressResult' => [ 'type' => 'structure', 'members' => [ 'ClusterSecurityGroup' => [ 'shape' => 'ClusterSecurityGroup', ], ], ], 'RevokeSnapshotAccessMessage' => [ 'type' => 'structure', 'required' => [ 'SnapshotIdentifier', 'AccountWithRestoreAccess', ], 'members' => [ 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SnapshotClusterIdentifier' => [ 'shape' => 'String', ], 'AccountWithRestoreAccess' => [ 'shape' => 'String', ], ], ], 'RevokeSnapshotAccessResult' => [ 'type' => 'structure', 'members' => [ 'Snapshot' => [ 'shape' => 'Snapshot', ], ], ], 'RotateEncryptionKeyMessage' => [ 'type' => 'structure', 'required' => [ 'ClusterIdentifier', ], 'members' => [ 'ClusterIdentifier' => [ 'shape' => 'String', ], ], ], 'RotateEncryptionKeyResult' => [ 'type' => 'structure', 'members' => [ 'Cluster' => [ 'shape' => 'Cluster', ], ], ], 'SNSInvalidTopicFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSInvalidTopic', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SNSNoAuthorizationFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSNoAuthorization', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SNSTopicArnNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SNSTopicArnNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'Snapshot' => [ 'type' => 'structure', 'members' => [ 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'ClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotCreateTime' => [ 'shape' => 'TStamp', ], 'Status' => [ 'shape' => 'String', ], 'Port' => [ 'shape' => 'Integer', ], 'AvailabilityZone' => [ 'shape' => 'String', ], 'ClusterCreateTime' => [ 'shape' => 'TStamp', ], 'MasterUsername' => [ 'shape' => 'String', ], 'ClusterVersion' => [ 'shape' => 'String', ], 'SnapshotType' => [ 'shape' => 'String', ], 'NodeType' => [ 'shape' => 'String', ], 'NumberOfNodes' => [ 'shape' => 'Integer', ], 'DBName' => [ 'shape' => 'String', ], 'VpcId' => [ 'shape' => 'String', ], 'Encrypted' => [ 'shape' => 'Boolean', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'EncryptedWithHSM' => [ 'shape' => 'Boolean', ], 'AccountsWithRestoreAccess' => [ 'shape' => 'AccountsWithRestoreAccessList', ], 'OwnerAccount' => [ 'shape' => 'String', ], 'TotalBackupSizeInMegaBytes' => [ 'shape' => 'Double', ], 'ActualIncrementalBackupSizeInMegaBytes' => [ 'shape' => 'Double', ], 'BackupProgressInMegaBytes' => [ 'shape' => 'Double', ], 'CurrentBackupRateInMegaBytesPerSecond' => [ 'shape' => 'Double', ], 'EstimatedSecondsToCompletion' => [ 'shape' => 'Long', ], 'ElapsedTimeInSeconds' => [ 'shape' => 'Long', ], 'SourceRegion' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], 'RestorableNodeTypes' => [ 'shape' => 'RestorableNodeTypeList', ], 'EnhancedVpcRouting' => [ 'shape' => 'Boolean', ], ], 'wrapper' => true, ], 'SnapshotCopyAlreadyDisabledFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotCopyAlreadyDisabledFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotCopyAlreadyEnabledFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotCopyAlreadyEnabledFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotCopyDisabledFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotCopyDisabledFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotCopyGrant' => [ 'type' => 'structure', 'members' => [ 'SnapshotCopyGrantName' => [ 'shape' => 'String', ], 'KmsKeyId' => [ 'shape' => 'String', ], 'Tags' => [ 'shape' => 'TagList', ], ], 'wrapper' => true, ], 'SnapshotCopyGrantAlreadyExistsFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotCopyGrantAlreadyExistsFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotCopyGrantList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SnapshotCopyGrant', 'locationName' => 'SnapshotCopyGrant', ], ], 'SnapshotCopyGrantMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'SnapshotCopyGrants' => [ 'shape' => 'SnapshotCopyGrantList', ], ], ], 'SnapshotCopyGrantNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotCopyGrantNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotCopyGrantQuotaExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SnapshotCopyGrantQuotaExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SnapshotList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Snapshot', 'locationName' => 'Snapshot', ], ], 'SnapshotMessage' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'String', ], 'Snapshots' => [ 'shape' => 'SnapshotList', ], ], ], 'SourceIdsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SourceId', ], ], 'SourceNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SourceNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SourceType' => [ 'type' => 'string', 'enum' => [ 'cluster', 'cluster-parameter-group', 'cluster-security-group', 'cluster-snapshot', ], ], 'String' => [ 'type' => 'string', ], 'Subnet' => [ 'type' => 'structure', 'members' => [ 'SubnetIdentifier' => [ 'shape' => 'String', ], 'SubnetAvailabilityZone' => [ 'shape' => 'AvailabilityZone', ], 'SubnetStatus' => [ 'shape' => 'String', ], ], ], 'SubnetAlreadyInUse' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubnetAlreadyInUse', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubnetIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'SubnetIdentifier', ], ], 'SubnetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Subnet', 'locationName' => 'Subnet', ], ], 'SubscriptionAlreadyExistFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionAlreadyExist', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionCategoryNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionCategoryNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionEventIdNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionEventIdNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'SubscriptionSeverityNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'SubscriptionSeverityNotFound', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'TStamp' => [ 'type' => 'timestamp', ], 'TableRestoreNotFoundFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TableRestoreNotFoundFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'TableRestoreStatus' => [ 'type' => 'structure', 'members' => [ 'TableRestoreRequestId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'TableRestoreStatusType', ], 'Message' => [ 'shape' => 'String', ], 'RequestTime' => [ 'shape' => 'TStamp', ], 'ProgressInMegaBytes' => [ 'shape' => 'LongOptional', ], 'TotalDataInMegaBytes' => [ 'shape' => 'LongOptional', ], 'ClusterIdentifier' => [ 'shape' => 'String', ], 'SnapshotIdentifier' => [ 'shape' => 'String', ], 'SourceDatabaseName' => [ 'shape' => 'String', ], 'SourceSchemaName' => [ 'shape' => 'String', ], 'SourceTableName' => [ 'shape' => 'String', ], 'TargetDatabaseName' => [ 'shape' => 'String', ], 'TargetSchemaName' => [ 'shape' => 'String', ], 'NewTableName' => [ 'shape' => 'String', ], ], 'wrapper' => true, ], 'TableRestoreStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TableRestoreStatus', 'locationName' => 'TableRestoreStatus', ], ], 'TableRestoreStatusMessage' => [ 'type' => 'structure', 'members' => [ 'TableRestoreStatusDetails' => [ 'shape' => 'TableRestoreStatusList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'TableRestoreStatusType' => [ 'type' => 'string', 'enum' => [ 'PENDING', 'IN_PROGRESS', 'SUCCEEDED', 'FAILED', 'CANCELED', ], ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'String', ], 'Value' => [ 'shape' => 'String', ], ], ], 'TagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'TagKey', ], ], 'TagLimitExceededFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'TagLimitExceededFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], ], 'TagValueList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'TagValue', ], ], 'TaggedResource' => [ 'type' => 'structure', 'members' => [ 'Tag' => [ 'shape' => 'Tag', ], 'ResourceName' => [ 'shape' => 'String', ], 'ResourceType' => [ 'shape' => 'String', ], ], ], 'TaggedResourceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TaggedResource', 'locationName' => 'TaggedResource', ], ], 'TaggedResourceListMessage' => [ 'type' => 'structure', 'members' => [ 'TaggedResources' => [ 'shape' => 'TaggedResourceList', ], 'Marker' => [ 'shape' => 'String', ], ], ], 'UnauthorizedOperation' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'UnauthorizedOperation', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'UnknownSnapshotCopyRegionFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'UnknownSnapshotCopyRegionFault', 'httpStatusCode' => 404, 'senderFault' => true, ], 'exception' => true, ], 'UnsupportedOperationFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'UnsupportedOperation', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'UnsupportedOptionFault' => [ 'type' => 'structure', 'members' => [], 'error' => [ 'code' => 'UnsupportedOptionFault', 'httpStatusCode' => 400, 'senderFault' => true, ], 'exception' => true, ], 'VpcSecurityGroupIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', 'locationName' => 'VpcSecurityGroupId', ], ], 'VpcSecurityGroupMembership' => [ 'type' => 'structure', 'members' => [ 'VpcSecurityGroupId' => [ 'shape' => 'String', ], 'Status' => [ 'shape' => 'String', ], ], ], 'VpcSecurityGroupMembershipList' => [ 'type' => 'list', 'member' => [ 'shape' => 'VpcSecurityGroupMembership', 'locationName' => 'VpcSecurityGroup', ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/waiters-1.json.php new file mode 100644 index 000000000..37e96b9ff --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/waiters-1.json.php @@ -0,0 +1,3 @@ + [ '__default__' => [ 'acceptor_type' => 'output', ], '__ClusterState' => [ 'interval' => 60, 'max_attempts' => 30, 'operation' => 'DescribeClusters', 'acceptor_path' => 'Clusters[].ClusterStatus', ], 'ClusterAvailable' => [ 'extends' => '__ClusterState', 'ignore_errors' => [ 'ClusterNotFound', ], 'success_value' => 'available', 'failure_value' => [ 'deleting', ], ], 'ClusterDeleted' => [ 'extends' => '__ClusterState', 'success_type' => 'error', 'success_value' => 'ClusterNotFound', 'failure_value' => [ 'creating', 'rebooting', ], ], 'SnapshotAvailable' => [ 'interval' => 15, 'max_attempts' => 20, 'operation' => 'DescribeClusterSnapshots', 'acceptor_path' => 'Snapshots[].Status', 'success_value' => 'available', 'failure_value' => [ 'failed', 'deleted', ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/api-2.json.php index dc22e9f0d..cbeca8b84 100644 --- a/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2013-04-01', 'endpointPrefix' => 'route53', 'globalEndpoint' => 'route53.amazonaws.com', 'protocol' => 'rest-xml', 'serviceAbbreviation' => 'Route 53', 'serviceFullName' => 'Amazon Route 53', 'signatureVersion' => 'v4', ], 'operations' => [ 'AssociateVPCWithHostedZone' => [ 'name' => 'AssociateVPCWithHostedZone', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/hostedzone/{Id}/associatevpc', ], 'input' => [ 'shape' => 'AssociateVPCWithHostedZoneRequest', 'locationName' => 'AssociateVPCWithHostedZoneRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'AssociateVPCWithHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidVPCId', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'PublicZoneVPCAssociation', ], [ 'shape' => 'ConflictingDomainExists', ], [ 'shape' => 'LimitsExceeded', ], ], ], 'ChangeResourceRecordSets' => [ 'name' => 'ChangeResourceRecordSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/hostedzone/{Id}/rrset/', ], 'input' => [ 'shape' => 'ChangeResourceRecordSetsRequest', 'locationName' => 'ChangeResourceRecordSetsRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'ChangeResourceRecordSetsResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'InvalidChangeBatch', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'PriorRequestNotComplete', ], ], ], 'ChangeTagsForResource' => [ 'name' => 'ChangeTagsForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/tags/{ResourceType}/{ResourceId}', ], 'input' => [ 'shape' => 'ChangeTagsForResourceRequest', 'locationName' => 'ChangeTagsForResourceRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'ChangeTagsForResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'PriorRequestNotComplete', ], [ 'shape' => 'ThrottlingException', ], ], ], 'CreateHealthCheck' => [ 'name' => 'CreateHealthCheck', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/healthcheck', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateHealthCheckRequest', 'locationName' => 'CreateHealthCheckRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'CreateHealthCheckResponse', ], 'errors' => [ [ 'shape' => 'TooManyHealthChecks', ], [ 'shape' => 'HealthCheckAlreadyExists', ], [ 'shape' => 'InvalidInput', ], ], ], 'CreateHostedZone' => [ 'name' => 'CreateHostedZone', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/hostedzone', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateHostedZoneRequest', 'locationName' => 'CreateHostedZoneRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'CreateHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'InvalidDomainName', ], [ 'shape' => 'HostedZoneAlreadyExists', ], [ 'shape' => 'TooManyHostedZones', ], [ 'shape' => 'InvalidVPCId', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'DelegationSetNotAvailable', ], [ 'shape' => 'ConflictingDomainExists', ], [ 'shape' => 'NoSuchDelegationSet', ], [ 'shape' => 'DelegationSetNotReusable', ], ], ], 'CreateReusableDelegationSet' => [ 'name' => 'CreateReusableDelegationSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/delegationset', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateReusableDelegationSetRequest', 'locationName' => 'CreateReusableDelegationSetRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'CreateReusableDelegationSetResponse', ], 'errors' => [ [ 'shape' => 'DelegationSetAlreadyCreated', ], [ 'shape' => 'LimitsExceeded', ], [ 'shape' => 'HostedZoneNotFound', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'DelegationSetNotAvailable', ], [ 'shape' => 'DelegationSetAlreadyReusable', ], ], ], 'CreateTrafficPolicy' => [ 'name' => 'CreateTrafficPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/trafficpolicy', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateTrafficPolicyRequest', 'locationName' => 'CreateTrafficPolicyRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'CreateTrafficPolicyResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'TooManyTrafficPolicies', ], [ 'shape' => 'TrafficPolicyAlreadyExists', ], [ 'shape' => 'InvalidTrafficPolicyDocument', ], ], ], 'CreateTrafficPolicyInstance' => [ 'name' => 'CreateTrafficPolicyInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/trafficpolicyinstance', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateTrafficPolicyInstanceRequest', 'locationName' => 'CreateTrafficPolicyInstanceRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'CreateTrafficPolicyInstanceResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'TooManyTrafficPolicyInstances', ], [ 'shape' => 'NoSuchTrafficPolicy', ], [ 'shape' => 'TrafficPolicyInstanceAlreadyExists', ], ], ], 'CreateTrafficPolicyVersion' => [ 'name' => 'CreateTrafficPolicyVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/trafficpolicy/{Id}', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateTrafficPolicyVersionRequest', 'locationName' => 'CreateTrafficPolicyVersionRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'CreateTrafficPolicyVersionResponse', ], 'errors' => [ [ 'shape' => 'NoSuchTrafficPolicy', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'ConcurrentModification', ], [ 'shape' => 'InvalidTrafficPolicyDocument', ], ], ], 'DeleteHealthCheck' => [ 'name' => 'DeleteHealthCheck', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2013-04-01/healthcheck/{HealthCheckId}', ], 'input' => [ 'shape' => 'DeleteHealthCheckRequest', ], 'output' => [ 'shape' => 'DeleteHealthCheckResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'HealthCheckInUse', ], [ 'shape' => 'InvalidInput', ], ], ], 'DeleteHostedZone' => [ 'name' => 'DeleteHostedZone', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2013-04-01/hostedzone/{Id}', ], 'input' => [ 'shape' => 'DeleteHostedZoneRequest', ], 'output' => [ 'shape' => 'DeleteHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'HostedZoneNotEmpty', ], [ 'shape' => 'PriorRequestNotComplete', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'InvalidDomainName', ], ], ], 'DeleteReusableDelegationSet' => [ 'name' => 'DeleteReusableDelegationSet', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2013-04-01/delegationset/{Id}', ], 'input' => [ 'shape' => 'DeleteReusableDelegationSetRequest', ], 'output' => [ 'shape' => 'DeleteReusableDelegationSetResponse', ], 'errors' => [ [ 'shape' => 'NoSuchDelegationSet', ], [ 'shape' => 'DelegationSetInUse', ], [ 'shape' => 'DelegationSetNotReusable', ], [ 'shape' => 'InvalidInput', ], ], ], 'DeleteTrafficPolicy' => [ 'name' => 'DeleteTrafficPolicy', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2013-04-01/trafficpolicy/{Id}/{Version}', ], 'input' => [ 'shape' => 'DeleteTrafficPolicyRequest', ], 'output' => [ 'shape' => 'DeleteTrafficPolicyResponse', ], 'errors' => [ [ 'shape' => 'NoSuchTrafficPolicy', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'TrafficPolicyInUse', ], [ 'shape' => 'ConcurrentModification', ], ], ], 'DeleteTrafficPolicyInstance' => [ 'name' => 'DeleteTrafficPolicyInstance', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2013-04-01/trafficpolicyinstance/{Id}', ], 'input' => [ 'shape' => 'DeleteTrafficPolicyInstanceRequest', ], 'output' => [ 'shape' => 'DeleteTrafficPolicyInstanceResponse', ], 'errors' => [ [ 'shape' => 'NoSuchTrafficPolicyInstance', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'PriorRequestNotComplete', ], ], ], 'DisassociateVPCFromHostedZone' => [ 'name' => 'DisassociateVPCFromHostedZone', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/hostedzone/{Id}/disassociatevpc', ], 'input' => [ 'shape' => 'DisassociateVPCFromHostedZoneRequest', 'locationName' => 'DisassociateVPCFromHostedZoneRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'DisassociateVPCFromHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidVPCId', ], [ 'shape' => 'VPCAssociationNotFound', ], [ 'shape' => 'LastVPCAssociation', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetChange' => [ 'name' => 'GetChange', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/change/{Id}', ], 'input' => [ 'shape' => 'GetChangeRequest', ], 'output' => [ 'shape' => 'GetChangeResponse', ], 'errors' => [ [ 'shape' => 'NoSuchChange', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetChangeDetails' => [ 'name' => 'GetChangeDetails', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/changedetails/{Id}', ], 'input' => [ 'shape' => 'GetChangeDetailsRequest', ], 'output' => [ 'shape' => 'GetChangeDetailsResponse', ], 'errors' => [ [ 'shape' => 'NoSuchChange', ], [ 'shape' => 'InvalidInput', ], ], 'deprecated' => true, ], 'GetCheckerIpRanges' => [ 'name' => 'GetCheckerIpRanges', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/checkeripranges', ], 'input' => [ 'shape' => 'GetCheckerIpRangesRequest', ], 'output' => [ 'shape' => 'GetCheckerIpRangesResponse', ], ], 'GetGeoLocation' => [ 'name' => 'GetGeoLocation', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/geolocation', ], 'input' => [ 'shape' => 'GetGeoLocationRequest', ], 'output' => [ 'shape' => 'GetGeoLocationResponse', ], 'errors' => [ [ 'shape' => 'NoSuchGeoLocation', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetHealthCheck' => [ 'name' => 'GetHealthCheck', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/healthcheck/{HealthCheckId}', ], 'input' => [ 'shape' => 'GetHealthCheckRequest', ], 'output' => [ 'shape' => 'GetHealthCheckResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'IncompatibleVersion', ], ], ], 'GetHealthCheckCount' => [ 'name' => 'GetHealthCheckCount', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/healthcheckcount', ], 'input' => [ 'shape' => 'GetHealthCheckCountRequest', ], 'output' => [ 'shape' => 'GetHealthCheckCountResponse', ], ], 'GetHealthCheckLastFailureReason' => [ 'name' => 'GetHealthCheckLastFailureReason', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/healthcheck/{HealthCheckId}/lastfailurereason', ], 'input' => [ 'shape' => 'GetHealthCheckLastFailureReasonRequest', ], 'output' => [ 'shape' => 'GetHealthCheckLastFailureReasonResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetHealthCheckStatus' => [ 'name' => 'GetHealthCheckStatus', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/healthcheck/{HealthCheckId}/status', ], 'input' => [ 'shape' => 'GetHealthCheckStatusRequest', ], 'output' => [ 'shape' => 'GetHealthCheckStatusResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetHostedZone' => [ 'name' => 'GetHostedZone', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzone/{Id}', ], 'input' => [ 'shape' => 'GetHostedZoneRequest', ], 'output' => [ 'shape' => 'GetHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetHostedZoneCount' => [ 'name' => 'GetHostedZoneCount', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzonecount', ], 'input' => [ 'shape' => 'GetHostedZoneCountRequest', ], 'output' => [ 'shape' => 'GetHostedZoneCountResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], ], ], 'GetReusableDelegationSet' => [ 'name' => 'GetReusableDelegationSet', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/delegationset/{Id}', ], 'input' => [ 'shape' => 'GetReusableDelegationSetRequest', ], 'output' => [ 'shape' => 'GetReusableDelegationSetResponse', ], 'errors' => [ [ 'shape' => 'NoSuchDelegationSet', ], [ 'shape' => 'DelegationSetNotReusable', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetTrafficPolicy' => [ 'name' => 'GetTrafficPolicy', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicy/{Id}/{Version}', ], 'input' => [ 'shape' => 'GetTrafficPolicyRequest', ], 'output' => [ 'shape' => 'GetTrafficPolicyResponse', ], 'errors' => [ [ 'shape' => 'NoSuchTrafficPolicy', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetTrafficPolicyInstance' => [ 'name' => 'GetTrafficPolicyInstance', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicyinstance/{Id}', ], 'input' => [ 'shape' => 'GetTrafficPolicyInstanceRequest', ], 'output' => [ 'shape' => 'GetTrafficPolicyInstanceResponse', ], 'errors' => [ [ 'shape' => 'NoSuchTrafficPolicyInstance', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetTrafficPolicyInstanceCount' => [ 'name' => 'GetTrafficPolicyInstanceCount', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicyinstancecount', ], 'input' => [ 'shape' => 'GetTrafficPolicyInstanceCountRequest', ], 'output' => [ 'shape' => 'GetTrafficPolicyInstanceCountResponse', ], ], 'ListChangeBatchesByHostedZone' => [ 'name' => 'ListChangeBatchesByHostedZone', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzone/{Id}/changes', ], 'input' => [ 'shape' => 'ListChangeBatchesByHostedZoneRequest', ], 'output' => [ 'shape' => 'ListChangeBatchesByHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], ], 'deprecated' => true, ], 'ListChangeBatchesByRRSet' => [ 'name' => 'ListChangeBatchesByRRSet', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzone/{Id}/rrsChanges', ], 'input' => [ 'shape' => 'ListChangeBatchesByRRSetRequest', ], 'output' => [ 'shape' => 'ListChangeBatchesByRRSetResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], ], 'deprecated' => true, ], 'ListGeoLocations' => [ 'name' => 'ListGeoLocations', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/geolocations', ], 'input' => [ 'shape' => 'ListGeoLocationsRequest', ], 'output' => [ 'shape' => 'ListGeoLocationsResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], ], ], 'ListHealthChecks' => [ 'name' => 'ListHealthChecks', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/healthcheck', ], 'input' => [ 'shape' => 'ListHealthChecksRequest', ], 'output' => [ 'shape' => 'ListHealthChecksResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'IncompatibleVersion', ], ], ], 'ListHostedZones' => [ 'name' => 'ListHostedZones', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzone', ], 'input' => [ 'shape' => 'ListHostedZonesRequest', ], 'output' => [ 'shape' => 'ListHostedZonesResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchDelegationSet', ], [ 'shape' => 'DelegationSetNotReusable', ], ], ], 'ListHostedZonesByName' => [ 'name' => 'ListHostedZonesByName', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzonesbyname', ], 'input' => [ 'shape' => 'ListHostedZonesByNameRequest', ], 'output' => [ 'shape' => 'ListHostedZonesByNameResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'InvalidDomainName', ], ], ], 'ListResourceRecordSets' => [ 'name' => 'ListResourceRecordSets', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzone/{Id}/rrset', ], 'input' => [ 'shape' => 'ListResourceRecordSetsRequest', ], 'output' => [ 'shape' => 'ListResourceRecordSetsResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], ], ], 'ListReusableDelegationSets' => [ 'name' => 'ListReusableDelegationSets', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/delegationset', ], 'input' => [ 'shape' => 'ListReusableDelegationSetsRequest', ], 'output' => [ 'shape' => 'ListReusableDelegationSetsResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/tags/{ResourceType}/{ResourceId}', ], 'input' => [ 'shape' => 'ListTagsForResourceRequest', ], 'output' => [ 'shape' => 'ListTagsForResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'PriorRequestNotComplete', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListTagsForResources' => [ 'name' => 'ListTagsForResources', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/tags/{ResourceType}', ], 'input' => [ 'shape' => 'ListTagsForResourcesRequest', 'locationName' => 'ListTagsForResourcesRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'ListTagsForResourcesResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'PriorRequestNotComplete', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListTrafficPolicies' => [ 'name' => 'ListTrafficPolicies', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicies', ], 'input' => [ 'shape' => 'ListTrafficPoliciesRequest', ], 'output' => [ 'shape' => 'ListTrafficPoliciesResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], ], ], 'ListTrafficPolicyInstances' => [ 'name' => 'ListTrafficPolicyInstances', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicyinstances', ], 'input' => [ 'shape' => 'ListTrafficPolicyInstancesRequest', ], 'output' => [ 'shape' => 'ListTrafficPolicyInstancesResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchTrafficPolicyInstance', ], ], ], 'ListTrafficPolicyInstancesByHostedZone' => [ 'name' => 'ListTrafficPolicyInstancesByHostedZone', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicyinstances/hostedzone', ], 'input' => [ 'shape' => 'ListTrafficPolicyInstancesByHostedZoneRequest', ], 'output' => [ 'shape' => 'ListTrafficPolicyInstancesByHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchTrafficPolicyInstance', ], [ 'shape' => 'NoSuchHostedZone', ], ], ], 'ListTrafficPolicyInstancesByPolicy' => [ 'name' => 'ListTrafficPolicyInstancesByPolicy', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicyinstances/trafficpolicy', ], 'input' => [ 'shape' => 'ListTrafficPolicyInstancesByPolicyRequest', ], 'output' => [ 'shape' => 'ListTrafficPolicyInstancesByPolicyResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchTrafficPolicyInstance', ], [ 'shape' => 'NoSuchTrafficPolicy', ], ], ], 'ListTrafficPolicyVersions' => [ 'name' => 'ListTrafficPolicyVersions', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicies/{Id}/versions', ], 'input' => [ 'shape' => 'ListTrafficPolicyVersionsRequest', ], 'output' => [ 'shape' => 'ListTrafficPolicyVersionsResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchTrafficPolicy', ], ], ], 'TestDNSAnswer' => [ 'name' => 'TestDNSAnswer', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/testdnsanswer', ], 'input' => [ 'shape' => 'TestDNSAnswerRequest', ], 'output' => [ 'shape' => 'TestDNSAnswerResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], ], ], 'UpdateHealthCheck' => [ 'name' => 'UpdateHealthCheck', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/healthcheck/{HealthCheckId}', ], 'input' => [ 'shape' => 'UpdateHealthCheckRequest', 'locationName' => 'UpdateHealthCheckRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'UpdateHealthCheckResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'HealthCheckVersionMismatch', ], ], ], 'UpdateHostedZoneComment' => [ 'name' => 'UpdateHostedZoneComment', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/hostedzone/{Id}', ], 'input' => [ 'shape' => 'UpdateHostedZoneCommentRequest', 'locationName' => 'UpdateHostedZoneCommentRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'UpdateHostedZoneCommentResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], ], ], 'UpdateTrafficPolicyComment' => [ 'name' => 'UpdateTrafficPolicyComment', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/trafficpolicy/{Id}/{Version}', ], 'input' => [ 'shape' => 'UpdateTrafficPolicyCommentRequest', 'locationName' => 'UpdateTrafficPolicyCommentRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'UpdateTrafficPolicyCommentResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchTrafficPolicy', ], [ 'shape' => 'ConcurrentModification', ], ], ], 'UpdateTrafficPolicyInstance' => [ 'name' => 'UpdateTrafficPolicyInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/trafficpolicyinstance/{Id}', ], 'input' => [ 'shape' => 'UpdateTrafficPolicyInstanceRequest', 'locationName' => 'UpdateTrafficPolicyInstanceRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'UpdateTrafficPolicyInstanceResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchTrafficPolicy', ], [ 'shape' => 'NoSuchTrafficPolicyInstance', ], [ 'shape' => 'PriorRequestNotComplete', ], [ 'shape' => 'ConflictingTypes', ], ], ], ], 'shapes' => [ 'AWSAccountID' => [ 'type' => 'string', ], 'AlarmIdentifier' => [ 'type' => 'structure', 'required' => [ 'Region', 'Name', ], 'members' => [ 'Region' => [ 'shape' => 'CloudWatchRegion', ], 'Name' => [ 'shape' => 'AlarmName', ], ], ], 'AlarmName' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'AliasHealthEnabled' => [ 'type' => 'boolean', ], 'AliasTarget' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'DNSName', 'EvaluateTargetHealth', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', ], 'DNSName' => [ 'shape' => 'DNSName', ], 'EvaluateTargetHealth' => [ 'shape' => 'AliasHealthEnabled', ], ], ], 'AssociateVPCComment' => [ 'type' => 'string', ], 'AssociateVPCWithHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'VPC', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'VPC' => [ 'shape' => 'VPC', ], 'Comment' => [ 'shape' => 'AssociateVPCComment', ], ], ], 'AssociateVPCWithHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'ChangeInfo', ], 'members' => [ 'ChangeInfo' => [ 'shape' => 'ChangeInfo', ], ], ], 'Change' => [ 'type' => 'structure', 'required' => [ 'Action', 'ResourceRecordSet', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'ResourceRecordSet' => [ 'shape' => 'ResourceRecordSet', ], ], ], 'ChangeAction' => [ 'type' => 'string', 'enum' => [ 'CREATE', 'DELETE', 'UPSERT', ], ], 'ChangeBatch' => [ 'type' => 'structure', 'required' => [ 'Changes', ], 'members' => [ 'Comment' => [ 'shape' => 'ResourceDescription', ], 'Changes' => [ 'shape' => 'Changes', ], ], ], 'ChangeBatchRecord' => [ 'type' => 'structure', 'required' => [ 'Id', 'Status', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', ], 'SubmittedAt' => [ 'shape' => 'TimeStamp', ], 'Status' => [ 'shape' => 'ChangeStatus', ], 'Comment' => [ 'shape' => 'ResourceDescription', ], 'Submitter' => [ 'shape' => 'AWSAccountID', ], 'Changes' => [ 'shape' => 'Changes', ], ], 'deprecated' => true, ], 'ChangeBatchRecords' => [ 'type' => 'list', 'member' => [ 'shape' => 'ChangeBatchRecord', 'locationName' => 'ChangeBatchRecord', ], 'deprecated' => true, 'min' => 1, ], 'ChangeInfo' => [ 'type' => 'structure', 'required' => [ 'Id', 'Status', 'SubmittedAt', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', ], 'Status' => [ 'shape' => 'ChangeStatus', ], 'SubmittedAt' => [ 'shape' => 'TimeStamp', ], 'Comment' => [ 'shape' => 'ResourceDescription', ], ], ], 'ChangeResourceRecordSetsRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'ChangeBatch', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'ChangeBatch' => [ 'shape' => 'ChangeBatch', ], ], ], 'ChangeResourceRecordSetsResponse' => [ 'type' => 'structure', 'required' => [ 'ChangeInfo', ], 'members' => [ 'ChangeInfo' => [ 'shape' => 'ChangeInfo', ], ], ], 'ChangeStatus' => [ 'type' => 'string', 'enum' => [ 'PENDING', 'INSYNC', ], ], 'ChangeTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceType', 'ResourceId', ], 'members' => [ 'ResourceType' => [ 'shape' => 'TagResourceType', 'location' => 'uri', 'locationName' => 'ResourceType', ], 'ResourceId' => [ 'shape' => 'TagResourceId', 'location' => 'uri', 'locationName' => 'ResourceId', ], 'AddTags' => [ 'shape' => 'TagList', ], 'RemoveTagKeys' => [ 'shape' => 'TagKeyList', ], ], ], 'ChangeTagsForResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'Changes' => [ 'type' => 'list', 'member' => [ 'shape' => 'Change', 'locationName' => 'Change', ], 'min' => 1, ], 'CheckerIpRanges' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPAddressCidr', ], ], 'ChildHealthCheckList' => [ 'type' => 'list', 'member' => [ 'shape' => 'HealthCheckId', 'locationName' => 'ChildHealthCheck', ], 'max' => 256, ], 'CloudWatchAlarmConfiguration' => [ 'type' => 'structure', 'required' => [ 'EvaluationPeriods', 'Threshold', 'ComparisonOperator', 'Period', 'MetricName', 'Namespace', 'Statistic', ], 'members' => [ 'EvaluationPeriods' => [ 'shape' => 'EvaluationPeriods', ], 'Threshold' => [ 'shape' => 'Threshold', ], 'ComparisonOperator' => [ 'shape' => 'ComparisonOperator', ], 'Period' => [ 'shape' => 'Period', ], 'MetricName' => [ 'shape' => 'MetricName', ], 'Namespace' => [ 'shape' => 'Namespace', ], 'Statistic' => [ 'shape' => 'Statistic', ], 'Dimensions' => [ 'shape' => 'DimensionList', ], ], ], 'CloudWatchRegion' => [ 'type' => 'string', 'enum' => [ 'us-east-1', 'us-west-1', 'us-west-2', 'eu-central-1', 'eu-west-1', 'ap-south-1', 'ap-southeast-1', 'ap-southeast-2', 'ap-northeast-1', 'ap-northeast-2', 'sa-east-1', ], 'max' => 64, 'min' => 1, ], 'ComparisonOperator' => [ 'type' => 'string', 'enum' => [ 'GreaterThanOrEqualToThreshold', 'GreaterThanThreshold', 'LessThanThreshold', 'LessThanOrEqualToThreshold', ], ], 'ConcurrentModification' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'ConflictingDomainExists' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ConflictingTypes' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'CreateHealthCheckRequest' => [ 'type' => 'structure', 'required' => [ 'CallerReference', 'HealthCheckConfig', ], 'members' => [ 'CallerReference' => [ 'shape' => 'HealthCheckNonce', ], 'HealthCheckConfig' => [ 'shape' => 'HealthCheckConfig', ], ], ], 'CreateHealthCheckResponse' => [ 'type' => 'structure', 'required' => [ 'HealthCheck', 'Location', ], 'members' => [ 'HealthCheck' => [ 'shape' => 'HealthCheck', ], 'Location' => [ 'shape' => 'ResourceURI', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'CreateHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'CallerReference', ], 'members' => [ 'Name' => [ 'shape' => 'DNSName', ], 'VPC' => [ 'shape' => 'VPC', ], 'CallerReference' => [ 'shape' => 'Nonce', ], 'HostedZoneConfig' => [ 'shape' => 'HostedZoneConfig', ], 'DelegationSetId' => [ 'shape' => 'ResourceId', ], ], ], 'CreateHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'HostedZone', 'ChangeInfo', 'DelegationSet', 'Location', ], 'members' => [ 'HostedZone' => [ 'shape' => 'HostedZone', ], 'ChangeInfo' => [ 'shape' => 'ChangeInfo', ], 'DelegationSet' => [ 'shape' => 'DelegationSet', ], 'VPC' => [ 'shape' => 'VPC', ], 'Location' => [ 'shape' => 'ResourceURI', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'CreateReusableDelegationSetRequest' => [ 'type' => 'structure', 'required' => [ 'CallerReference', ], 'members' => [ 'CallerReference' => [ 'shape' => 'Nonce', ], 'HostedZoneId' => [ 'shape' => 'ResourceId', ], ], ], 'CreateReusableDelegationSetResponse' => [ 'type' => 'structure', 'required' => [ 'DelegationSet', 'Location', ], 'members' => [ 'DelegationSet' => [ 'shape' => 'DelegationSet', ], 'Location' => [ 'shape' => 'ResourceURI', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'CreateTrafficPolicyInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'Name', 'TTL', 'TrafficPolicyId', 'TrafficPolicyVersion', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'DNSName', ], 'TTL' => [ 'shape' => 'TTL', ], 'TrafficPolicyId' => [ 'shape' => 'TrafficPolicyId', ], 'TrafficPolicyVersion' => [ 'shape' => 'TrafficPolicyVersion', ], ], ], 'CreateTrafficPolicyInstanceResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstance', 'Location', ], 'members' => [ 'TrafficPolicyInstance' => [ 'shape' => 'TrafficPolicyInstance', ], 'Location' => [ 'shape' => 'ResourceURI', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'CreateTrafficPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Document', ], 'members' => [ 'Name' => [ 'shape' => 'TrafficPolicyName', ], 'Document' => [ 'shape' => 'TrafficPolicyDocument', ], 'Comment' => [ 'shape' => 'TrafficPolicyComment', ], ], ], 'CreateTrafficPolicyResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicy', 'Location', ], 'members' => [ 'TrafficPolicy' => [ 'shape' => 'TrafficPolicy', ], 'Location' => [ 'shape' => 'ResourceURI', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'CreateTrafficPolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'Id', 'Document', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', 'location' => 'uri', 'locationName' => 'Id', ], 'Document' => [ 'shape' => 'TrafficPolicyDocument', ], 'Comment' => [ 'shape' => 'TrafficPolicyComment', ], ], ], 'CreateTrafficPolicyVersionResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicy', 'Location', ], 'members' => [ 'TrafficPolicy' => [ 'shape' => 'TrafficPolicy', ], 'Location' => [ 'shape' => 'ResourceURI', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'DNSName' => [ 'type' => 'string', 'max' => 1024, ], 'DNSRCode' => [ 'type' => 'string', ], 'Date' => [ 'type' => 'string', 'deprecated' => true, 'max' => 256, ], 'DelegationSet' => [ 'type' => 'structure', 'required' => [ 'NameServers', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', ], 'CallerReference' => [ 'shape' => 'Nonce', ], 'NameServers' => [ 'shape' => 'DelegationSetNameServers', ], ], ], 'DelegationSetAlreadyCreated' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DelegationSetAlreadyReusable' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DelegationSetInUse' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DelegationSetNameServers' => [ 'type' => 'list', 'member' => [ 'shape' => 'DNSName', 'locationName' => 'NameServer', ], 'min' => 1, ], 'DelegationSetNotAvailable' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DelegationSetNotReusable' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DelegationSets' => [ 'type' => 'list', 'member' => [ 'shape' => 'DelegationSet', 'locationName' => 'DelegationSet', ], ], 'DeleteHealthCheckRequest' => [ 'type' => 'structure', 'required' => [ 'HealthCheckId', ], 'members' => [ 'HealthCheckId' => [ 'shape' => 'HealthCheckId', 'location' => 'uri', 'locationName' => 'HealthCheckId', ], ], ], 'DeleteHealthCheckResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'DeleteHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'ChangeInfo', ], 'members' => [ 'ChangeInfo' => [ 'shape' => 'ChangeInfo', ], ], ], 'DeleteReusableDelegationSetRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'DeleteReusableDelegationSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteTrafficPolicyInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyInstanceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'DeleteTrafficPolicyInstanceResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteTrafficPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Id', 'Version', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', 'location' => 'uri', 'locationName' => 'Id', ], 'Version' => [ 'shape' => 'TrafficPolicyVersion', 'location' => 'uri', 'locationName' => 'Version', ], ], ], 'DeleteTrafficPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'Dimension' => [ 'type' => 'structure', 'required' => [ 'Name', 'Value', ], 'members' => [ 'Name' => [ 'shape' => 'DimensionField', ], 'Value' => [ 'shape' => 'DimensionField', ], ], ], 'DimensionField' => [ 'type' => 'string', 'max' => 255, 'min' => 1, ], 'DimensionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Dimension', 'locationName' => 'Dimension', ], 'max' => 10, ], 'DisassociateVPCComment' => [ 'type' => 'string', ], 'DisassociateVPCFromHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'VPC', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'VPC' => [ 'shape' => 'VPC', ], 'Comment' => [ 'shape' => 'DisassociateVPCComment', ], ], ], 'DisassociateVPCFromHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'ChangeInfo', ], 'members' => [ 'ChangeInfo' => [ 'shape' => 'ChangeInfo', ], ], ], 'EnableSNI' => [ 'type' => 'boolean', ], 'ErrorMessage' => [ 'type' => 'string', ], 'ErrorMessages' => [ 'type' => 'list', 'member' => [ 'shape' => 'ErrorMessage', 'locationName' => 'Message', ], ], 'EvaluationPeriods' => [ 'type' => 'integer', 'min' => 1, ], 'FailureThreshold' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'FullyQualifiedDomainName' => [ 'type' => 'string', 'max' => 255, ], 'GeoLocation' => [ 'type' => 'structure', 'members' => [ 'ContinentCode' => [ 'shape' => 'GeoLocationContinentCode', ], 'CountryCode' => [ 'shape' => 'GeoLocationCountryCode', ], 'SubdivisionCode' => [ 'shape' => 'GeoLocationSubdivisionCode', ], ], ], 'GeoLocationContinentCode' => [ 'type' => 'string', 'max' => 2, 'min' => 2, ], 'GeoLocationContinentName' => [ 'type' => 'string', 'max' => 32, 'min' => 1, ], 'GeoLocationCountryCode' => [ 'type' => 'string', 'max' => 2, 'min' => 1, ], 'GeoLocationCountryName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'GeoLocationDetails' => [ 'type' => 'structure', 'members' => [ 'ContinentCode' => [ 'shape' => 'GeoLocationContinentCode', ], 'ContinentName' => [ 'shape' => 'GeoLocationContinentName', ], 'CountryCode' => [ 'shape' => 'GeoLocationCountryCode', ], 'CountryName' => [ 'shape' => 'GeoLocationCountryName', ], 'SubdivisionCode' => [ 'shape' => 'GeoLocationSubdivisionCode', ], 'SubdivisionName' => [ 'shape' => 'GeoLocationSubdivisionName', ], ], ], 'GeoLocationDetailsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GeoLocationDetails', 'locationName' => 'GeoLocationDetails', ], ], 'GeoLocationSubdivisionCode' => [ 'type' => 'string', 'max' => 3, 'min' => 1, ], 'GeoLocationSubdivisionName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'GetChangeDetailsRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], ], 'deprecated' => true, ], 'GetChangeDetailsResponse' => [ 'type' => 'structure', 'required' => [ 'ChangeBatchRecord', ], 'members' => [ 'ChangeBatchRecord' => [ 'shape' => 'ChangeBatchRecord', ], ], 'deprecated' => true, ], 'GetChangeRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetChangeResponse' => [ 'type' => 'structure', 'required' => [ 'ChangeInfo', ], 'members' => [ 'ChangeInfo' => [ 'shape' => 'ChangeInfo', ], ], ], 'GetCheckerIpRangesRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetCheckerIpRangesResponse' => [ 'type' => 'structure', 'required' => [ 'CheckerIpRanges', ], 'members' => [ 'CheckerIpRanges' => [ 'shape' => 'CheckerIpRanges', ], ], ], 'GetGeoLocationRequest' => [ 'type' => 'structure', 'members' => [ 'ContinentCode' => [ 'shape' => 'GeoLocationContinentCode', 'location' => 'querystring', 'locationName' => 'continentcode', ], 'CountryCode' => [ 'shape' => 'GeoLocationCountryCode', 'location' => 'querystring', 'locationName' => 'countrycode', ], 'SubdivisionCode' => [ 'shape' => 'GeoLocationSubdivisionCode', 'location' => 'querystring', 'locationName' => 'subdivisioncode', ], ], ], 'GetGeoLocationResponse' => [ 'type' => 'structure', 'required' => [ 'GeoLocationDetails', ], 'members' => [ 'GeoLocationDetails' => [ 'shape' => 'GeoLocationDetails', ], ], ], 'GetHealthCheckCountRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetHealthCheckCountResponse' => [ 'type' => 'structure', 'required' => [ 'HealthCheckCount', ], 'members' => [ 'HealthCheckCount' => [ 'shape' => 'HealthCheckCount', ], ], ], 'GetHealthCheckLastFailureReasonRequest' => [ 'type' => 'structure', 'required' => [ 'HealthCheckId', ], 'members' => [ 'HealthCheckId' => [ 'shape' => 'HealthCheckId', 'location' => 'uri', 'locationName' => 'HealthCheckId', ], ], ], 'GetHealthCheckLastFailureReasonResponse' => [ 'type' => 'structure', 'required' => [ 'HealthCheckObservations', ], 'members' => [ 'HealthCheckObservations' => [ 'shape' => 'HealthCheckObservations', ], ], ], 'GetHealthCheckRequest' => [ 'type' => 'structure', 'required' => [ 'HealthCheckId', ], 'members' => [ 'HealthCheckId' => [ 'shape' => 'HealthCheckId', 'location' => 'uri', 'locationName' => 'HealthCheckId', ], ], ], 'GetHealthCheckResponse' => [ 'type' => 'structure', 'required' => [ 'HealthCheck', ], 'members' => [ 'HealthCheck' => [ 'shape' => 'HealthCheck', ], ], ], 'GetHealthCheckStatusRequest' => [ 'type' => 'structure', 'required' => [ 'HealthCheckId', ], 'members' => [ 'HealthCheckId' => [ 'shape' => 'HealthCheckId', 'location' => 'uri', 'locationName' => 'HealthCheckId', ], ], ], 'GetHealthCheckStatusResponse' => [ 'type' => 'structure', 'required' => [ 'HealthCheckObservations', ], 'members' => [ 'HealthCheckObservations' => [ 'shape' => 'HealthCheckObservations', ], ], ], 'GetHostedZoneCountRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetHostedZoneCountResponse' => [ 'type' => 'structure', 'required' => [ 'HostedZoneCount', ], 'members' => [ 'HostedZoneCount' => [ 'shape' => 'HostedZoneCount', ], ], ], 'GetHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'HostedZone', ], 'members' => [ 'HostedZone' => [ 'shape' => 'HostedZone', ], 'DelegationSet' => [ 'shape' => 'DelegationSet', ], 'VPCs' => [ 'shape' => 'VPCs', ], ], ], 'GetReusableDelegationSetRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetReusableDelegationSetResponse' => [ 'type' => 'structure', 'required' => [ 'DelegationSet', ], 'members' => [ 'DelegationSet' => [ 'shape' => 'DelegationSet', ], ], ], 'GetTrafficPolicyInstanceCountRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetTrafficPolicyInstanceCountResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstanceCount', ], 'members' => [ 'TrafficPolicyInstanceCount' => [ 'shape' => 'TrafficPolicyInstanceCount', ], ], ], 'GetTrafficPolicyInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyInstanceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetTrafficPolicyInstanceResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstance', ], 'members' => [ 'TrafficPolicyInstance' => [ 'shape' => 'TrafficPolicyInstance', ], ], ], 'GetTrafficPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Id', 'Version', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', 'location' => 'uri', 'locationName' => 'Id', ], 'Version' => [ 'shape' => 'TrafficPolicyVersion', 'location' => 'uri', 'locationName' => 'Version', ], ], ], 'GetTrafficPolicyResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicy', ], 'members' => [ 'TrafficPolicy' => [ 'shape' => 'TrafficPolicy', ], ], ], 'HealthCheck' => [ 'type' => 'structure', 'required' => [ 'Id', 'CallerReference', 'HealthCheckConfig', 'HealthCheckVersion', ], 'members' => [ 'Id' => [ 'shape' => 'HealthCheckId', ], 'CallerReference' => [ 'shape' => 'HealthCheckNonce', ], 'HealthCheckConfig' => [ 'shape' => 'HealthCheckConfig', ], 'HealthCheckVersion' => [ 'shape' => 'HealthCheckVersion', ], 'CloudWatchAlarmConfiguration' => [ 'shape' => 'CloudWatchAlarmConfiguration', ], ], ], 'HealthCheckAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'HealthCheckConfig' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'IPAddress' => [ 'shape' => 'IPAddress', ], 'Port' => [ 'shape' => 'Port', ], 'Type' => [ 'shape' => 'HealthCheckType', ], 'ResourcePath' => [ 'shape' => 'ResourcePath', ], 'FullyQualifiedDomainName' => [ 'shape' => 'FullyQualifiedDomainName', ], 'SearchString' => [ 'shape' => 'SearchString', ], 'RequestInterval' => [ 'shape' => 'RequestInterval', ], 'FailureThreshold' => [ 'shape' => 'FailureThreshold', ], 'MeasureLatency' => [ 'shape' => 'MeasureLatency', ], 'Inverted' => [ 'shape' => 'Inverted', ], 'HealthThreshold' => [ 'shape' => 'HealthThreshold', ], 'ChildHealthChecks' => [ 'shape' => 'ChildHealthCheckList', ], 'EnableSNI' => [ 'shape' => 'EnableSNI', ], 'Regions' => [ 'shape' => 'HealthCheckRegionList', ], 'AlarmIdentifier' => [ 'shape' => 'AlarmIdentifier', ], 'InsufficientDataHealthStatus' => [ 'shape' => 'InsufficientDataHealthStatus', ], ], ], 'HealthCheckCount' => [ 'type' => 'long', ], 'HealthCheckId' => [ 'type' => 'string', 'max' => 64, ], 'HealthCheckInUse' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'HealthCheckNonce' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'HealthCheckObservation' => [ 'type' => 'structure', 'members' => [ 'Region' => [ 'shape' => 'HealthCheckRegion', ], 'IPAddress' => [ 'shape' => 'IPAddress', ], 'StatusReport' => [ 'shape' => 'StatusReport', ], ], ], 'HealthCheckObservations' => [ 'type' => 'list', 'member' => [ 'shape' => 'HealthCheckObservation', 'locationName' => 'HealthCheckObservation', ], ], 'HealthCheckRegion' => [ 'type' => 'string', 'enum' => [ 'us-east-1', 'us-west-1', 'us-west-2', 'eu-west-1', 'ap-southeast-1', 'ap-southeast-2', 'ap-northeast-1', 'sa-east-1', ], 'max' => 64, 'min' => 1, ], 'HealthCheckRegionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'HealthCheckRegion', 'locationName' => 'Region', ], 'max' => 64, 'min' => 1, ], 'HealthCheckType' => [ 'type' => 'string', 'enum' => [ 'HTTP', 'HTTPS', 'HTTP_STR_MATCH', 'HTTPS_STR_MATCH', 'TCP', 'CALCULATED', 'CLOUDWATCH_METRIC', ], ], 'HealthCheckVersion' => [ 'type' => 'long', 'min' => 1, ], 'HealthCheckVersionMismatch' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'HealthChecks' => [ 'type' => 'list', 'member' => [ 'shape' => 'HealthCheck', 'locationName' => 'HealthCheck', ], ], 'HealthThreshold' => [ 'type' => 'integer', 'max' => 256, 'min' => 0, ], 'HostedZone' => [ 'type' => 'structure', 'required' => [ 'Id', 'Name', 'CallerReference', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'DNSName', ], 'CallerReference' => [ 'shape' => 'Nonce', ], 'Config' => [ 'shape' => 'HostedZoneConfig', ], 'ResourceRecordSetCount' => [ 'shape' => 'HostedZoneRRSetCount', ], ], ], 'HostedZoneAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'HostedZoneConfig' => [ 'type' => 'structure', 'members' => [ 'Comment' => [ 'shape' => 'ResourceDescription', ], 'PrivateZone' => [ 'shape' => 'IsPrivateZone', ], ], ], 'HostedZoneCount' => [ 'type' => 'long', ], 'HostedZoneNotEmpty' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'HostedZoneNotFound' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'HostedZoneRRSetCount' => [ 'type' => 'long', ], 'HostedZones' => [ 'type' => 'list', 'member' => [ 'shape' => 'HostedZone', 'locationName' => 'HostedZone', ], ], 'IPAddress' => [ 'type' => 'string', 'max' => 15, 'pattern' => '^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$', ], 'IPAddressCidr' => [ 'type' => 'string', ], 'IncompatibleVersion' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InsufficientDataHealthStatus' => [ 'type' => 'string', 'enum' => [ 'Healthy', 'Unhealthy', 'LastKnownStatus', ], ], 'InvalidArgument' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'InvalidChangeBatch' => [ 'type' => 'structure', 'members' => [ 'messages' => [ 'shape' => 'ErrorMessages', ], ], 'exception' => true, ], 'InvalidDomainName' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidInput' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidTrafficPolicyDocument' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidVPCId' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'Inverted' => [ 'type' => 'boolean', ], 'IsPrivateZone' => [ 'type' => 'boolean', ], 'LastVPCAssociation' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'LimitsExceeded' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ListChangeBatchesByHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'StartDate', 'EndDate', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'StartDate' => [ 'shape' => 'Date', 'location' => 'querystring', 'locationName' => 'startDate', ], 'EndDate' => [ 'shape' => 'Date', 'location' => 'querystring', 'locationName' => 'endDate', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxItems', ], 'Marker' => [ 'shape' => 'PageMarker', 'location' => 'querystring', 'locationName' => 'marker', ], ], 'deprecated' => true, ], 'ListChangeBatchesByHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'MaxItems', 'Marker', 'ChangeBatchRecords', ], 'members' => [ 'MaxItems' => [ 'shape' => 'PageMaxItems', ], 'Marker' => [ 'shape' => 'PageMarker', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'ChangeBatchRecords' => [ 'shape' => 'ChangeBatchRecords', ], 'NextMarker' => [ 'shape' => 'PageMarker', ], ], 'deprecated' => true, ], 'ListChangeBatchesByRRSetRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'Name', 'Type', 'StartDate', 'EndDate', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'Name' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'rrSet_name', ], 'Type' => [ 'shape' => 'RRType', 'location' => 'querystring', 'locationName' => 'type', ], 'SetIdentifier' => [ 'shape' => 'ResourceRecordSetIdentifier', 'location' => 'querystring', 'locationName' => 'identifier', ], 'StartDate' => [ 'shape' => 'Date', 'location' => 'querystring', 'locationName' => 'startDate', ], 'EndDate' => [ 'shape' => 'Date', 'location' => 'querystring', 'locationName' => 'endDate', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxItems', ], 'Marker' => [ 'shape' => 'PageMarker', 'location' => 'querystring', 'locationName' => 'marker', ], ], 'deprecated' => true, ], 'ListChangeBatchesByRRSetResponse' => [ 'type' => 'structure', 'required' => [ 'MaxItems', 'Marker', 'ChangeBatchRecords', ], 'members' => [ 'MaxItems' => [ 'shape' => 'PageMaxItems', ], 'Marker' => [ 'shape' => 'PageMarker', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'ChangeBatchRecords' => [ 'shape' => 'ChangeBatchRecords', ], 'NextMarker' => [ 'shape' => 'PageMarker', ], ], 'deprecated' => true, ], 'ListGeoLocationsRequest' => [ 'type' => 'structure', 'members' => [ 'StartContinentCode' => [ 'shape' => 'GeoLocationContinentCode', 'location' => 'querystring', 'locationName' => 'startcontinentcode', ], 'StartCountryCode' => [ 'shape' => 'GeoLocationCountryCode', 'location' => 'querystring', 'locationName' => 'startcountrycode', ], 'StartSubdivisionCode' => [ 'shape' => 'GeoLocationSubdivisionCode', 'location' => 'querystring', 'locationName' => 'startsubdivisioncode', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListGeoLocationsResponse' => [ 'type' => 'structure', 'required' => [ 'GeoLocationDetailsList', 'IsTruncated', 'MaxItems', ], 'members' => [ 'GeoLocationDetailsList' => [ 'shape' => 'GeoLocationDetailsList', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'NextContinentCode' => [ 'shape' => 'GeoLocationContinentCode', ], 'NextCountryCode' => [ 'shape' => 'GeoLocationCountryCode', ], 'NextSubdivisionCode' => [ 'shape' => 'GeoLocationSubdivisionCode', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListHealthChecksRequest' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'PageMarker', 'location' => 'querystring', 'locationName' => 'marker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListHealthChecksResponse' => [ 'type' => 'structure', 'required' => [ 'HealthChecks', 'Marker', 'IsTruncated', 'MaxItems', ], 'members' => [ 'HealthChecks' => [ 'shape' => 'HealthChecks', ], 'Marker' => [ 'shape' => 'PageMarker', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'NextMarker' => [ 'shape' => 'PageMarker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListHostedZonesByNameRequest' => [ 'type' => 'structure', 'members' => [ 'DNSName' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'dnsname', ], 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'querystring', 'locationName' => 'hostedzoneid', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListHostedZonesByNameResponse' => [ 'type' => 'structure', 'required' => [ 'HostedZones', 'IsTruncated', 'MaxItems', ], 'members' => [ 'HostedZones' => [ 'shape' => 'HostedZones', ], 'DNSName' => [ 'shape' => 'DNSName', ], 'HostedZoneId' => [ 'shape' => 'ResourceId', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'NextDNSName' => [ 'shape' => 'DNSName', ], 'NextHostedZoneId' => [ 'shape' => 'ResourceId', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListHostedZonesRequest' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'PageMarker', 'location' => 'querystring', 'locationName' => 'marker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], 'DelegationSetId' => [ 'shape' => 'ResourceId', 'location' => 'querystring', 'locationName' => 'delegationsetid', ], ], ], 'ListHostedZonesResponse' => [ 'type' => 'structure', 'required' => [ 'HostedZones', 'Marker', 'IsTruncated', 'MaxItems', ], 'members' => [ 'HostedZones' => [ 'shape' => 'HostedZones', ], 'Marker' => [ 'shape' => 'PageMarker', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'NextMarker' => [ 'shape' => 'PageMarker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListResourceRecordSetsRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'StartRecordName' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'name', ], 'StartRecordType' => [ 'shape' => 'RRType', 'location' => 'querystring', 'locationName' => 'type', ], 'StartRecordIdentifier' => [ 'shape' => 'ResourceRecordSetIdentifier', 'location' => 'querystring', 'locationName' => 'identifier', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListResourceRecordSetsResponse' => [ 'type' => 'structure', 'required' => [ 'ResourceRecordSets', 'IsTruncated', 'MaxItems', ], 'members' => [ 'ResourceRecordSets' => [ 'shape' => 'ResourceRecordSets', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'NextRecordName' => [ 'shape' => 'DNSName', ], 'NextRecordType' => [ 'shape' => 'RRType', ], 'NextRecordIdentifier' => [ 'shape' => 'ResourceRecordSetIdentifier', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListReusableDelegationSetsRequest' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'PageMarker', 'location' => 'querystring', 'locationName' => 'marker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListReusableDelegationSetsResponse' => [ 'type' => 'structure', 'required' => [ 'DelegationSets', 'Marker', 'IsTruncated', 'MaxItems', ], 'members' => [ 'DelegationSets' => [ 'shape' => 'DelegationSets', ], 'Marker' => [ 'shape' => 'PageMarker', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'NextMarker' => [ 'shape' => 'PageMarker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceType', 'ResourceId', ], 'members' => [ 'ResourceType' => [ 'shape' => 'TagResourceType', 'location' => 'uri', 'locationName' => 'ResourceType', ], 'ResourceId' => [ 'shape' => 'TagResourceId', 'location' => 'uri', 'locationName' => 'ResourceId', ], ], ], 'ListTagsForResourceResponse' => [ 'type' => 'structure', 'required' => [ 'ResourceTagSet', ], 'members' => [ 'ResourceTagSet' => [ 'shape' => 'ResourceTagSet', ], ], ], 'ListTagsForResourcesRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceType', 'ResourceIds', ], 'members' => [ 'ResourceType' => [ 'shape' => 'TagResourceType', 'location' => 'uri', 'locationName' => 'ResourceType', ], 'ResourceIds' => [ 'shape' => 'TagResourceIdList', ], ], ], 'ListTagsForResourcesResponse' => [ 'type' => 'structure', 'required' => [ 'ResourceTagSets', ], 'members' => [ 'ResourceTagSets' => [ 'shape' => 'ResourceTagSetList', ], ], ], 'ListTrafficPoliciesRequest' => [ 'type' => 'structure', 'members' => [ 'TrafficPolicyIdMarker' => [ 'shape' => 'TrafficPolicyId', 'location' => 'querystring', 'locationName' => 'trafficpolicyid', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListTrafficPoliciesResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicySummaries', 'IsTruncated', 'TrafficPolicyIdMarker', 'MaxItems', ], 'members' => [ 'TrafficPolicySummaries' => [ 'shape' => 'TrafficPolicySummaries', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'TrafficPolicyIdMarker' => [ 'shape' => 'TrafficPolicyId', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListTrafficPolicyInstancesByHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'querystring', 'locationName' => 'id', ], 'TrafficPolicyInstanceNameMarker' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'trafficpolicyinstancename', ], 'TrafficPolicyInstanceTypeMarker' => [ 'shape' => 'RRType', 'location' => 'querystring', 'locationName' => 'trafficpolicyinstancetype', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListTrafficPolicyInstancesByHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstances', 'IsTruncated', 'MaxItems', ], 'members' => [ 'TrafficPolicyInstances' => [ 'shape' => 'TrafficPolicyInstances', ], 'TrafficPolicyInstanceNameMarker' => [ 'shape' => 'DNSName', ], 'TrafficPolicyInstanceTypeMarker' => [ 'shape' => 'RRType', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListTrafficPolicyInstancesByPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyId', 'TrafficPolicyVersion', ], 'members' => [ 'TrafficPolicyId' => [ 'shape' => 'TrafficPolicyId', 'location' => 'querystring', 'locationName' => 'id', ], 'TrafficPolicyVersion' => [ 'shape' => 'TrafficPolicyVersion', 'location' => 'querystring', 'locationName' => 'version', ], 'HostedZoneIdMarker' => [ 'shape' => 'ResourceId', 'location' => 'querystring', 'locationName' => 'hostedzoneid', ], 'TrafficPolicyInstanceNameMarker' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'trafficpolicyinstancename', ], 'TrafficPolicyInstanceTypeMarker' => [ 'shape' => 'RRType', 'location' => 'querystring', 'locationName' => 'trafficpolicyinstancetype', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListTrafficPolicyInstancesByPolicyResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstances', 'IsTruncated', 'MaxItems', ], 'members' => [ 'TrafficPolicyInstances' => [ 'shape' => 'TrafficPolicyInstances', ], 'HostedZoneIdMarker' => [ 'shape' => 'ResourceId', ], 'TrafficPolicyInstanceNameMarker' => [ 'shape' => 'DNSName', ], 'TrafficPolicyInstanceTypeMarker' => [ 'shape' => 'RRType', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListTrafficPolicyInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'HostedZoneIdMarker' => [ 'shape' => 'ResourceId', 'location' => 'querystring', 'locationName' => 'hostedzoneid', ], 'TrafficPolicyInstanceNameMarker' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'trafficpolicyinstancename', ], 'TrafficPolicyInstanceTypeMarker' => [ 'shape' => 'RRType', 'location' => 'querystring', 'locationName' => 'trafficpolicyinstancetype', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListTrafficPolicyInstancesResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstances', 'IsTruncated', 'MaxItems', ], 'members' => [ 'TrafficPolicyInstances' => [ 'shape' => 'TrafficPolicyInstances', ], 'HostedZoneIdMarker' => [ 'shape' => 'ResourceId', ], 'TrafficPolicyInstanceNameMarker' => [ 'shape' => 'DNSName', ], 'TrafficPolicyInstanceTypeMarker' => [ 'shape' => 'RRType', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListTrafficPolicyVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', 'location' => 'uri', 'locationName' => 'Id', ], 'TrafficPolicyVersionMarker' => [ 'shape' => 'TrafficPolicyVersionMarker', 'location' => 'querystring', 'locationName' => 'trafficpolicyversion', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListTrafficPolicyVersionsResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicies', 'IsTruncated', 'TrafficPolicyVersionMarker', 'MaxItems', ], 'members' => [ 'TrafficPolicies' => [ 'shape' => 'TrafficPolicies', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'TrafficPolicyVersionMarker' => [ 'shape' => 'TrafficPolicyVersionMarker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'MeasureLatency' => [ 'type' => 'boolean', ], 'Message' => [ 'type' => 'string', 'max' => 1024, ], 'MetricName' => [ 'type' => 'string', 'max' => 255, 'min' => 1, ], 'Nameserver' => [ 'type' => 'string', 'max' => 255, 'min' => 0, ], 'Namespace' => [ 'type' => 'string', 'max' => 255, 'min' => 1, ], 'NoSuchChange' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchDelegationSet' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'NoSuchGeoLocation' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchHealthCheck' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchHostedZone' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchTrafficPolicy' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchTrafficPolicyInstance' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'Nonce' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'PageMarker' => [ 'type' => 'string', 'max' => 64, ], 'PageMaxItems' => [ 'type' => 'string', ], 'PageTruncated' => [ 'type' => 'boolean', ], 'Period' => [ 'type' => 'integer', 'min' => 60, ], 'Port' => [ 'type' => 'integer', 'max' => 65535, 'min' => 1, ], 'PriorRequestNotComplete' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'PublicZoneVPCAssociation' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'RData' => [ 'type' => 'string', 'max' => 4000, ], 'RRType' => [ 'type' => 'string', 'enum' => [ 'SOA', 'A', 'TXT', 'NS', 'CNAME', 'MX', 'NAPTR', 'PTR', 'SRV', 'SPF', 'AAAA', ], ], 'RecordData' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecordDataEntry', 'locationName' => 'RecordDataEntry', ], ], 'RecordDataEntry' => [ 'type' => 'string', 'max' => 512, 'min' => 0, ], 'RequestInterval' => [ 'type' => 'integer', 'max' => 30, 'min' => 10, ], 'ResourceDescription' => [ 'type' => 'string', 'max' => 256, ], 'ResourceId' => [ 'type' => 'string', 'max' => 32, ], 'ResourcePath' => [ 'type' => 'string', 'max' => 255, ], 'ResourceRecord' => [ 'type' => 'structure', 'required' => [ 'Value', ], 'members' => [ 'Value' => [ 'shape' => 'RData', ], ], ], 'ResourceRecordSet' => [ 'type' => 'structure', 'required' => [ 'Name', 'Type', ], 'members' => [ 'Name' => [ 'shape' => 'DNSName', ], 'Type' => [ 'shape' => 'RRType', ], 'SetIdentifier' => [ 'shape' => 'ResourceRecordSetIdentifier', ], 'Weight' => [ 'shape' => 'ResourceRecordSetWeight', ], 'Region' => [ 'shape' => 'ResourceRecordSetRegion', ], 'GeoLocation' => [ 'shape' => 'GeoLocation', ], 'Failover' => [ 'shape' => 'ResourceRecordSetFailover', ], 'TTL' => [ 'shape' => 'TTL', ], 'ResourceRecords' => [ 'shape' => 'ResourceRecords', ], 'AliasTarget' => [ 'shape' => 'AliasTarget', ], 'HealthCheckId' => [ 'shape' => 'HealthCheckId', ], 'TrafficPolicyInstanceId' => [ 'shape' => 'TrafficPolicyInstanceId', ], ], ], 'ResourceRecordSetFailover' => [ 'type' => 'string', 'enum' => [ 'PRIMARY', 'SECONDARY', ], ], 'ResourceRecordSetIdentifier' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'ResourceRecordSetRegion' => [ 'type' => 'string', 'enum' => [ 'us-east-1', 'us-west-1', 'us-west-2', 'eu-west-1', 'eu-central-1', 'ap-southeast-1', 'ap-southeast-2', 'ap-northeast-1', 'ap-northeast-2', 'sa-east-1', 'cn-north-1', 'ap-south-1', ], 'max' => 64, 'min' => 1, ], 'ResourceRecordSetWeight' => [ 'type' => 'long', 'max' => 255, 'min' => 0, ], 'ResourceRecordSets' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceRecordSet', 'locationName' => 'ResourceRecordSet', ], ], 'ResourceRecords' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceRecord', 'locationName' => 'ResourceRecord', ], 'min' => 1, ], 'ResourceTagSet' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'TagResourceType', ], 'ResourceId' => [ 'shape' => 'TagResourceId', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'ResourceTagSetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceTagSet', 'locationName' => 'ResourceTagSet', ], ], 'ResourceURI' => [ 'type' => 'string', 'max' => 1024, ], 'SearchString' => [ 'type' => 'string', 'max' => 255, ], 'Statistic' => [ 'type' => 'string', 'enum' => [ 'Average', 'Sum', 'SampleCount', 'Maximum', 'Minimum', ], ], 'Status' => [ 'type' => 'string', ], 'StatusReport' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'Status', ], 'CheckedTime' => [ 'shape' => 'TimeStamp', ], ], ], 'SubnetMask' => [ 'type' => 'string', 'max' => 2, 'min' => 0, ], 'TTL' => [ 'type' => 'long', 'max' => 2147483647, 'min' => 0, ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, ], 'TagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagKey', 'locationName' => 'Key', ], 'max' => 10, 'min' => 1, ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], 'max' => 10, 'min' => 1, ], 'TagResourceId' => [ 'type' => 'string', 'max' => 64, ], 'TagResourceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagResourceId', 'locationName' => 'ResourceId', ], 'max' => 10, 'min' => 1, ], 'TagResourceType' => [ 'type' => 'string', 'enum' => [ 'healthcheck', 'hostedzone', ], ], 'TagValue' => [ 'type' => 'string', 'max' => 256, ], 'TestDNSAnswerRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'RecordName', 'RecordType', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'querystring', 'locationName' => 'hostedzoneid', ], 'RecordName' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'recordname', ], 'RecordType' => [ 'shape' => 'RRType', 'location' => 'querystring', 'locationName' => 'recordtype', ], 'ResolverIP' => [ 'shape' => 'IPAddress', 'location' => 'querystring', 'locationName' => 'resolverip', ], 'EDNS0ClientSubnetIP' => [ 'shape' => 'IPAddress', 'location' => 'querystring', 'locationName' => 'edns0clientsubnetip', ], 'EDNS0ClientSubnetMask' => [ 'shape' => 'SubnetMask', 'location' => 'querystring', 'locationName' => 'edns0clientsubnetmask', ], ], ], 'TestDNSAnswerResponse' => [ 'type' => 'structure', 'required' => [ 'Nameserver', 'RecordName', 'RecordType', 'RecordData', 'ResponseCode', 'Protocol', ], 'members' => [ 'Nameserver' => [ 'shape' => 'Nameserver', ], 'RecordName' => [ 'shape' => 'DNSName', ], 'RecordType' => [ 'shape' => 'RRType', ], 'RecordData' => [ 'shape' => 'RecordData', ], 'ResponseCode' => [ 'shape' => 'DNSRCode', ], 'Protocol' => [ 'shape' => 'TransportProtocol', ], ], ], 'Threshold' => [ 'type' => 'double', ], 'ThrottlingException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TimeStamp' => [ 'type' => 'timestamp', ], 'TooManyHealthChecks' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'TooManyHostedZones' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyTrafficPolicies' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyTrafficPolicyInstances' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TrafficPolicies' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficPolicy', 'locationName' => 'TrafficPolicy', ], ], 'TrafficPolicy' => [ 'type' => 'structure', 'required' => [ 'Id', 'Version', 'Name', 'Type', 'Document', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', ], 'Version' => [ 'shape' => 'TrafficPolicyVersion', ], 'Name' => [ 'shape' => 'TrafficPolicyName', ], 'Type' => [ 'shape' => 'RRType', ], 'Document' => [ 'shape' => 'TrafficPolicyDocument', ], 'Comment' => [ 'shape' => 'TrafficPolicyComment', ], ], ], 'TrafficPolicyAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'TrafficPolicyComment' => [ 'type' => 'string', 'max' => 1024, ], 'TrafficPolicyDocument' => [ 'type' => 'string', 'max' => 102400, ], 'TrafficPolicyId' => [ 'type' => 'string', 'max' => 36, ], 'TrafficPolicyInUse' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TrafficPolicyInstance' => [ 'type' => 'structure', 'required' => [ 'Id', 'HostedZoneId', 'Name', 'TTL', 'State', 'Message', 'TrafficPolicyId', 'TrafficPolicyVersion', 'TrafficPolicyType', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyInstanceId', ], 'HostedZoneId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'DNSName', ], 'TTL' => [ 'shape' => 'TTL', ], 'State' => [ 'shape' => 'TrafficPolicyInstanceState', ], 'Message' => [ 'shape' => 'Message', ], 'TrafficPolicyId' => [ 'shape' => 'TrafficPolicyId', ], 'TrafficPolicyVersion' => [ 'shape' => 'TrafficPolicyVersion', ], 'TrafficPolicyType' => [ 'shape' => 'RRType', ], ], ], 'TrafficPolicyInstanceAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'TrafficPolicyInstanceCount' => [ 'type' => 'integer', ], 'TrafficPolicyInstanceId' => [ 'type' => 'string', 'max' => 36, ], 'TrafficPolicyInstanceState' => [ 'type' => 'string', ], 'TrafficPolicyInstances' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficPolicyInstance', 'locationName' => 'TrafficPolicyInstance', ], ], 'TrafficPolicyName' => [ 'type' => 'string', 'max' => 512, ], 'TrafficPolicySummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficPolicySummary', 'locationName' => 'TrafficPolicySummary', ], ], 'TrafficPolicySummary' => [ 'type' => 'structure', 'required' => [ 'Id', 'Name', 'Type', 'LatestVersion', 'TrafficPolicyCount', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', ], 'Name' => [ 'shape' => 'TrafficPolicyName', ], 'Type' => [ 'shape' => 'RRType', ], 'LatestVersion' => [ 'shape' => 'TrafficPolicyVersion', ], 'TrafficPolicyCount' => [ 'shape' => 'TrafficPolicyVersion', ], ], ], 'TrafficPolicyVersion' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'TrafficPolicyVersionMarker' => [ 'type' => 'string', 'max' => 4, ], 'TransportProtocol' => [ 'type' => 'string', ], 'UpdateHealthCheckRequest' => [ 'type' => 'structure', 'required' => [ 'HealthCheckId', ], 'members' => [ 'HealthCheckId' => [ 'shape' => 'HealthCheckId', 'location' => 'uri', 'locationName' => 'HealthCheckId', ], 'HealthCheckVersion' => [ 'shape' => 'HealthCheckVersion', ], 'IPAddress' => [ 'shape' => 'IPAddress', ], 'Port' => [ 'shape' => 'Port', ], 'ResourcePath' => [ 'shape' => 'ResourcePath', ], 'FullyQualifiedDomainName' => [ 'shape' => 'FullyQualifiedDomainName', ], 'SearchString' => [ 'shape' => 'SearchString', ], 'FailureThreshold' => [ 'shape' => 'FailureThreshold', ], 'Inverted' => [ 'shape' => 'Inverted', ], 'HealthThreshold' => [ 'shape' => 'HealthThreshold', ], 'ChildHealthChecks' => [ 'shape' => 'ChildHealthCheckList', ], 'EnableSNI' => [ 'shape' => 'EnableSNI', ], 'Regions' => [ 'shape' => 'HealthCheckRegionList', ], 'AlarmIdentifier' => [ 'shape' => 'AlarmIdentifier', ], 'InsufficientDataHealthStatus' => [ 'shape' => 'InsufficientDataHealthStatus', ], ], ], 'UpdateHealthCheckResponse' => [ 'type' => 'structure', 'required' => [ 'HealthCheck', ], 'members' => [ 'HealthCheck' => [ 'shape' => 'HealthCheck', ], ], ], 'UpdateHostedZoneCommentRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'Comment' => [ 'shape' => 'ResourceDescription', ], ], ], 'UpdateHostedZoneCommentResponse' => [ 'type' => 'structure', 'required' => [ 'HostedZone', ], 'members' => [ 'HostedZone' => [ 'shape' => 'HostedZone', ], ], ], 'UpdateTrafficPolicyCommentRequest' => [ 'type' => 'structure', 'required' => [ 'Id', 'Version', 'Comment', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', 'location' => 'uri', 'locationName' => 'Id', ], 'Version' => [ 'shape' => 'TrafficPolicyVersion', 'location' => 'uri', 'locationName' => 'Version', ], 'Comment' => [ 'shape' => 'TrafficPolicyComment', ], ], ], 'UpdateTrafficPolicyCommentResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicy', ], 'members' => [ 'TrafficPolicy' => [ 'shape' => 'TrafficPolicy', ], ], ], 'UpdateTrafficPolicyInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'Id', 'TTL', 'TrafficPolicyId', 'TrafficPolicyVersion', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyInstanceId', 'location' => 'uri', 'locationName' => 'Id', ], 'TTL' => [ 'shape' => 'TTL', ], 'TrafficPolicyId' => [ 'shape' => 'TrafficPolicyId', ], 'TrafficPolicyVersion' => [ 'shape' => 'TrafficPolicyVersion', ], ], ], 'UpdateTrafficPolicyInstanceResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstance', ], 'members' => [ 'TrafficPolicyInstance' => [ 'shape' => 'TrafficPolicyInstance', ], ], ], 'VPC' => [ 'type' => 'structure', 'members' => [ 'VPCRegion' => [ 'shape' => 'VPCRegion', ], 'VPCId' => [ 'shape' => 'VPCId', ], ], ], 'VPCAssociationNotFound' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'VPCId' => [ 'type' => 'string', 'max' => 1024, ], 'VPCRegion' => [ 'type' => 'string', 'enum' => [ 'us-east-1', 'us-west-1', 'us-west-2', 'eu-west-1', 'eu-central-1', 'ap-southeast-1', 'ap-southeast-2', 'ap-south-1', 'ap-northeast-1', 'ap-northeast-2', 'sa-east-1', 'cn-north-1', ], 'max' => 64, 'min' => 1, ], 'VPCs' => [ 'type' => 'list', 'member' => [ 'shape' => 'VPC', 'locationName' => 'VPC', ], 'min' => 1, ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2013-04-01', 'endpointPrefix' => 'route53', 'globalEndpoint' => 'route53.amazonaws.com', 'protocol' => 'rest-xml', 'serviceAbbreviation' => 'Route 53', 'serviceFullName' => 'Amazon Route 53', 'signatureVersion' => 'v4', ], 'operations' => [ 'AssociateVPCWithHostedZone' => [ 'name' => 'AssociateVPCWithHostedZone', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/hostedzone/{Id}/associatevpc', ], 'input' => [ 'shape' => 'AssociateVPCWithHostedZoneRequest', 'locationName' => 'AssociateVPCWithHostedZoneRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'AssociateVPCWithHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidVPCId', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'PublicZoneVPCAssociation', ], [ 'shape' => 'ConflictingDomainExists', ], [ 'shape' => 'LimitsExceeded', ], ], ], 'ChangeResourceRecordSets' => [ 'name' => 'ChangeResourceRecordSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/hostedzone/{Id}/rrset/', ], 'input' => [ 'shape' => 'ChangeResourceRecordSetsRequest', 'locationName' => 'ChangeResourceRecordSetsRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'ChangeResourceRecordSetsResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'InvalidChangeBatch', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'PriorRequestNotComplete', ], ], ], 'ChangeTagsForResource' => [ 'name' => 'ChangeTagsForResource', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/tags/{ResourceType}/{ResourceId}', ], 'input' => [ 'shape' => 'ChangeTagsForResourceRequest', 'locationName' => 'ChangeTagsForResourceRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'ChangeTagsForResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'PriorRequestNotComplete', ], [ 'shape' => 'ThrottlingException', ], ], ], 'CreateHealthCheck' => [ 'name' => 'CreateHealthCheck', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/healthcheck', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateHealthCheckRequest', 'locationName' => 'CreateHealthCheckRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'CreateHealthCheckResponse', ], 'errors' => [ [ 'shape' => 'TooManyHealthChecks', ], [ 'shape' => 'HealthCheckAlreadyExists', ], [ 'shape' => 'InvalidInput', ], ], ], 'CreateHostedZone' => [ 'name' => 'CreateHostedZone', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/hostedzone', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateHostedZoneRequest', 'locationName' => 'CreateHostedZoneRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'CreateHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'InvalidDomainName', ], [ 'shape' => 'HostedZoneAlreadyExists', ], [ 'shape' => 'TooManyHostedZones', ], [ 'shape' => 'InvalidVPCId', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'DelegationSetNotAvailable', ], [ 'shape' => 'ConflictingDomainExists', ], [ 'shape' => 'NoSuchDelegationSet', ], [ 'shape' => 'DelegationSetNotReusable', ], ], ], 'CreateReusableDelegationSet' => [ 'name' => 'CreateReusableDelegationSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/delegationset', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateReusableDelegationSetRequest', 'locationName' => 'CreateReusableDelegationSetRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'CreateReusableDelegationSetResponse', ], 'errors' => [ [ 'shape' => 'DelegationSetAlreadyCreated', ], [ 'shape' => 'LimitsExceeded', ], [ 'shape' => 'HostedZoneNotFound', ], [ 'shape' => 'InvalidArgument', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'DelegationSetNotAvailable', ], [ 'shape' => 'DelegationSetAlreadyReusable', ], ], ], 'CreateTrafficPolicy' => [ 'name' => 'CreateTrafficPolicy', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/trafficpolicy', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateTrafficPolicyRequest', 'locationName' => 'CreateTrafficPolicyRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'CreateTrafficPolicyResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'TooManyTrafficPolicies', ], [ 'shape' => 'TrafficPolicyAlreadyExists', ], [ 'shape' => 'InvalidTrafficPolicyDocument', ], ], ], 'CreateTrafficPolicyInstance' => [ 'name' => 'CreateTrafficPolicyInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/trafficpolicyinstance', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateTrafficPolicyInstanceRequest', 'locationName' => 'CreateTrafficPolicyInstanceRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'CreateTrafficPolicyInstanceResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'TooManyTrafficPolicyInstances', ], [ 'shape' => 'NoSuchTrafficPolicy', ], [ 'shape' => 'TrafficPolicyInstanceAlreadyExists', ], ], ], 'CreateTrafficPolicyVersion' => [ 'name' => 'CreateTrafficPolicyVersion', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/trafficpolicy/{Id}', 'responseCode' => 201, ], 'input' => [ 'shape' => 'CreateTrafficPolicyVersionRequest', 'locationName' => 'CreateTrafficPolicyVersionRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'CreateTrafficPolicyVersionResponse', ], 'errors' => [ [ 'shape' => 'NoSuchTrafficPolicy', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'ConcurrentModification', ], [ 'shape' => 'InvalidTrafficPolicyDocument', ], ], ], 'DeleteHealthCheck' => [ 'name' => 'DeleteHealthCheck', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2013-04-01/healthcheck/{HealthCheckId}', ], 'input' => [ 'shape' => 'DeleteHealthCheckRequest', ], 'output' => [ 'shape' => 'DeleteHealthCheckResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'HealthCheckInUse', ], [ 'shape' => 'InvalidInput', ], ], ], 'DeleteHostedZone' => [ 'name' => 'DeleteHostedZone', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2013-04-01/hostedzone/{Id}', ], 'input' => [ 'shape' => 'DeleteHostedZoneRequest', ], 'output' => [ 'shape' => 'DeleteHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'HostedZoneNotEmpty', ], [ 'shape' => 'PriorRequestNotComplete', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'InvalidDomainName', ], ], ], 'DeleteReusableDelegationSet' => [ 'name' => 'DeleteReusableDelegationSet', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2013-04-01/delegationset/{Id}', ], 'input' => [ 'shape' => 'DeleteReusableDelegationSetRequest', ], 'output' => [ 'shape' => 'DeleteReusableDelegationSetResponse', ], 'errors' => [ [ 'shape' => 'NoSuchDelegationSet', ], [ 'shape' => 'DelegationSetInUse', ], [ 'shape' => 'DelegationSetNotReusable', ], [ 'shape' => 'InvalidInput', ], ], ], 'DeleteTrafficPolicy' => [ 'name' => 'DeleteTrafficPolicy', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2013-04-01/trafficpolicy/{Id}/{Version}', ], 'input' => [ 'shape' => 'DeleteTrafficPolicyRequest', ], 'output' => [ 'shape' => 'DeleteTrafficPolicyResponse', ], 'errors' => [ [ 'shape' => 'NoSuchTrafficPolicy', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'TrafficPolicyInUse', ], [ 'shape' => 'ConcurrentModification', ], ], ], 'DeleteTrafficPolicyInstance' => [ 'name' => 'DeleteTrafficPolicyInstance', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/2013-04-01/trafficpolicyinstance/{Id}', ], 'input' => [ 'shape' => 'DeleteTrafficPolicyInstanceRequest', ], 'output' => [ 'shape' => 'DeleteTrafficPolicyInstanceResponse', ], 'errors' => [ [ 'shape' => 'NoSuchTrafficPolicyInstance', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'PriorRequestNotComplete', ], ], ], 'DisassociateVPCFromHostedZone' => [ 'name' => 'DisassociateVPCFromHostedZone', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/hostedzone/{Id}/disassociatevpc', ], 'input' => [ 'shape' => 'DisassociateVPCFromHostedZoneRequest', 'locationName' => 'DisassociateVPCFromHostedZoneRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'DisassociateVPCFromHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidVPCId', ], [ 'shape' => 'VPCAssociationNotFound', ], [ 'shape' => 'LastVPCAssociation', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetChange' => [ 'name' => 'GetChange', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/change/{Id}', ], 'input' => [ 'shape' => 'GetChangeRequest', ], 'output' => [ 'shape' => 'GetChangeResponse', ], 'errors' => [ [ 'shape' => 'NoSuchChange', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetChangeDetails' => [ 'name' => 'GetChangeDetails', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/changedetails/{Id}', ], 'input' => [ 'shape' => 'GetChangeDetailsRequest', ], 'output' => [ 'shape' => 'GetChangeDetailsResponse', ], 'errors' => [ [ 'shape' => 'NoSuchChange', ], [ 'shape' => 'InvalidInput', ], ], 'deprecated' => true, ], 'GetCheckerIpRanges' => [ 'name' => 'GetCheckerIpRanges', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/checkeripranges', ], 'input' => [ 'shape' => 'GetCheckerIpRangesRequest', ], 'output' => [ 'shape' => 'GetCheckerIpRangesResponse', ], ], 'GetGeoLocation' => [ 'name' => 'GetGeoLocation', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/geolocation', ], 'input' => [ 'shape' => 'GetGeoLocationRequest', ], 'output' => [ 'shape' => 'GetGeoLocationResponse', ], 'errors' => [ [ 'shape' => 'NoSuchGeoLocation', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetHealthCheck' => [ 'name' => 'GetHealthCheck', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/healthcheck/{HealthCheckId}', ], 'input' => [ 'shape' => 'GetHealthCheckRequest', ], 'output' => [ 'shape' => 'GetHealthCheckResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'IncompatibleVersion', ], ], ], 'GetHealthCheckCount' => [ 'name' => 'GetHealthCheckCount', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/healthcheckcount', ], 'input' => [ 'shape' => 'GetHealthCheckCountRequest', ], 'output' => [ 'shape' => 'GetHealthCheckCountResponse', ], ], 'GetHealthCheckLastFailureReason' => [ 'name' => 'GetHealthCheckLastFailureReason', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/healthcheck/{HealthCheckId}/lastfailurereason', ], 'input' => [ 'shape' => 'GetHealthCheckLastFailureReasonRequest', ], 'output' => [ 'shape' => 'GetHealthCheckLastFailureReasonResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetHealthCheckStatus' => [ 'name' => 'GetHealthCheckStatus', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/healthcheck/{HealthCheckId}/status', ], 'input' => [ 'shape' => 'GetHealthCheckStatusRequest', ], 'output' => [ 'shape' => 'GetHealthCheckStatusResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetHostedZone' => [ 'name' => 'GetHostedZone', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzone/{Id}', ], 'input' => [ 'shape' => 'GetHostedZoneRequest', ], 'output' => [ 'shape' => 'GetHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetHostedZoneCount' => [ 'name' => 'GetHostedZoneCount', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzonecount', ], 'input' => [ 'shape' => 'GetHostedZoneCountRequest', ], 'output' => [ 'shape' => 'GetHostedZoneCountResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], ], ], 'GetReusableDelegationSet' => [ 'name' => 'GetReusableDelegationSet', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/delegationset/{Id}', ], 'input' => [ 'shape' => 'GetReusableDelegationSetRequest', ], 'output' => [ 'shape' => 'GetReusableDelegationSetResponse', ], 'errors' => [ [ 'shape' => 'NoSuchDelegationSet', ], [ 'shape' => 'DelegationSetNotReusable', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetTrafficPolicy' => [ 'name' => 'GetTrafficPolicy', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicy/{Id}/{Version}', ], 'input' => [ 'shape' => 'GetTrafficPolicyRequest', ], 'output' => [ 'shape' => 'GetTrafficPolicyResponse', ], 'errors' => [ [ 'shape' => 'NoSuchTrafficPolicy', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetTrafficPolicyInstance' => [ 'name' => 'GetTrafficPolicyInstance', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicyinstance/{Id}', ], 'input' => [ 'shape' => 'GetTrafficPolicyInstanceRequest', ], 'output' => [ 'shape' => 'GetTrafficPolicyInstanceResponse', ], 'errors' => [ [ 'shape' => 'NoSuchTrafficPolicyInstance', ], [ 'shape' => 'InvalidInput', ], ], ], 'GetTrafficPolicyInstanceCount' => [ 'name' => 'GetTrafficPolicyInstanceCount', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicyinstancecount', ], 'input' => [ 'shape' => 'GetTrafficPolicyInstanceCountRequest', ], 'output' => [ 'shape' => 'GetTrafficPolicyInstanceCountResponse', ], ], 'ListChangeBatchesByHostedZone' => [ 'name' => 'ListChangeBatchesByHostedZone', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzone/{Id}/changes', ], 'input' => [ 'shape' => 'ListChangeBatchesByHostedZoneRequest', ], 'output' => [ 'shape' => 'ListChangeBatchesByHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], ], 'deprecated' => true, ], 'ListChangeBatchesByRRSet' => [ 'name' => 'ListChangeBatchesByRRSet', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzone/{Id}/rrsChanges', ], 'input' => [ 'shape' => 'ListChangeBatchesByRRSetRequest', ], 'output' => [ 'shape' => 'ListChangeBatchesByRRSetResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], ], 'deprecated' => true, ], 'ListGeoLocations' => [ 'name' => 'ListGeoLocations', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/geolocations', ], 'input' => [ 'shape' => 'ListGeoLocationsRequest', ], 'output' => [ 'shape' => 'ListGeoLocationsResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], ], ], 'ListHealthChecks' => [ 'name' => 'ListHealthChecks', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/healthcheck', ], 'input' => [ 'shape' => 'ListHealthChecksRequest', ], 'output' => [ 'shape' => 'ListHealthChecksResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'IncompatibleVersion', ], ], ], 'ListHostedZones' => [ 'name' => 'ListHostedZones', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzone', ], 'input' => [ 'shape' => 'ListHostedZonesRequest', ], 'output' => [ 'shape' => 'ListHostedZonesResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchDelegationSet', ], [ 'shape' => 'DelegationSetNotReusable', ], ], ], 'ListHostedZonesByName' => [ 'name' => 'ListHostedZonesByName', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzonesbyname', ], 'input' => [ 'shape' => 'ListHostedZonesByNameRequest', ], 'output' => [ 'shape' => 'ListHostedZonesByNameResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'InvalidDomainName', ], ], ], 'ListResourceRecordSets' => [ 'name' => 'ListResourceRecordSets', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/hostedzone/{Id}/rrset', ], 'input' => [ 'shape' => 'ListResourceRecordSetsRequest', ], 'output' => [ 'shape' => 'ListResourceRecordSetsResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], ], ], 'ListReusableDelegationSets' => [ 'name' => 'ListReusableDelegationSets', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/delegationset', ], 'input' => [ 'shape' => 'ListReusableDelegationSetsRequest', ], 'output' => [ 'shape' => 'ListReusableDelegationSetsResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], ], ], 'ListTagsForResource' => [ 'name' => 'ListTagsForResource', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/tags/{ResourceType}/{ResourceId}', ], 'input' => [ 'shape' => 'ListTagsForResourceRequest', ], 'output' => [ 'shape' => 'ListTagsForResourceResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'PriorRequestNotComplete', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListTagsForResources' => [ 'name' => 'ListTagsForResources', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/tags/{ResourceType}', ], 'input' => [ 'shape' => 'ListTagsForResourcesRequest', 'locationName' => 'ListTagsForResourcesRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'ListTagsForResourcesResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'PriorRequestNotComplete', ], [ 'shape' => 'ThrottlingException', ], ], ], 'ListTrafficPolicies' => [ 'name' => 'ListTrafficPolicies', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicies', ], 'input' => [ 'shape' => 'ListTrafficPoliciesRequest', ], 'output' => [ 'shape' => 'ListTrafficPoliciesResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], ], ], 'ListTrafficPolicyInstances' => [ 'name' => 'ListTrafficPolicyInstances', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicyinstances', ], 'input' => [ 'shape' => 'ListTrafficPolicyInstancesRequest', ], 'output' => [ 'shape' => 'ListTrafficPolicyInstancesResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchTrafficPolicyInstance', ], ], ], 'ListTrafficPolicyInstancesByHostedZone' => [ 'name' => 'ListTrafficPolicyInstancesByHostedZone', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicyinstances/hostedzone', ], 'input' => [ 'shape' => 'ListTrafficPolicyInstancesByHostedZoneRequest', ], 'output' => [ 'shape' => 'ListTrafficPolicyInstancesByHostedZoneResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchTrafficPolicyInstance', ], [ 'shape' => 'NoSuchHostedZone', ], ], ], 'ListTrafficPolicyInstancesByPolicy' => [ 'name' => 'ListTrafficPolicyInstancesByPolicy', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicyinstances/trafficpolicy', ], 'input' => [ 'shape' => 'ListTrafficPolicyInstancesByPolicyRequest', ], 'output' => [ 'shape' => 'ListTrafficPolicyInstancesByPolicyResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchTrafficPolicyInstance', ], [ 'shape' => 'NoSuchTrafficPolicy', ], ], ], 'ListTrafficPolicyVersions' => [ 'name' => 'ListTrafficPolicyVersions', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/trafficpolicies/{Id}/versions', ], 'input' => [ 'shape' => 'ListTrafficPolicyVersionsRequest', ], 'output' => [ 'shape' => 'ListTrafficPolicyVersionsResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchTrafficPolicy', ], ], ], 'TestDNSAnswer' => [ 'name' => 'TestDNSAnswer', 'http' => [ 'method' => 'GET', 'requestUri' => '/2013-04-01/testdnsanswer', ], 'input' => [ 'shape' => 'TestDNSAnswerRequest', ], 'output' => [ 'shape' => 'TestDNSAnswerResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], ], ], 'UpdateHealthCheck' => [ 'name' => 'UpdateHealthCheck', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/healthcheck/{HealthCheckId}', ], 'input' => [ 'shape' => 'UpdateHealthCheckRequest', 'locationName' => 'UpdateHealthCheckRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'UpdateHealthCheckResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHealthCheck', ], [ 'shape' => 'InvalidInput', ], [ 'shape' => 'HealthCheckVersionMismatch', ], ], ], 'UpdateHostedZoneComment' => [ 'name' => 'UpdateHostedZoneComment', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/hostedzone/{Id}', ], 'input' => [ 'shape' => 'UpdateHostedZoneCommentRequest', 'locationName' => 'UpdateHostedZoneCommentRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'UpdateHostedZoneCommentResponse', ], 'errors' => [ [ 'shape' => 'NoSuchHostedZone', ], [ 'shape' => 'InvalidInput', ], ], ], 'UpdateTrafficPolicyComment' => [ 'name' => 'UpdateTrafficPolicyComment', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/trafficpolicy/{Id}/{Version}', ], 'input' => [ 'shape' => 'UpdateTrafficPolicyCommentRequest', 'locationName' => 'UpdateTrafficPolicyCommentRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'UpdateTrafficPolicyCommentResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchTrafficPolicy', ], [ 'shape' => 'ConcurrentModification', ], ], ], 'UpdateTrafficPolicyInstance' => [ 'name' => 'UpdateTrafficPolicyInstance', 'http' => [ 'method' => 'POST', 'requestUri' => '/2013-04-01/trafficpolicyinstance/{Id}', ], 'input' => [ 'shape' => 'UpdateTrafficPolicyInstanceRequest', 'locationName' => 'UpdateTrafficPolicyInstanceRequest', 'xmlNamespace' => [ 'uri' => 'https://route53.amazonaws.com/doc/2013-04-01/', ], ], 'output' => [ 'shape' => 'UpdateTrafficPolicyInstanceResponse', ], 'errors' => [ [ 'shape' => 'InvalidInput', ], [ 'shape' => 'NoSuchTrafficPolicy', ], [ 'shape' => 'NoSuchTrafficPolicyInstance', ], [ 'shape' => 'PriorRequestNotComplete', ], [ 'shape' => 'ConflictingTypes', ], ], ], ], 'shapes' => [ 'AWSAccountID' => [ 'type' => 'string', ], 'AlarmIdentifier' => [ 'type' => 'structure', 'required' => [ 'Region', 'Name', ], 'members' => [ 'Region' => [ 'shape' => 'CloudWatchRegion', ], 'Name' => [ 'shape' => 'AlarmName', ], ], ], 'AlarmName' => [ 'type' => 'string', 'max' => 256, 'min' => 1, ], 'AliasHealthEnabled' => [ 'type' => 'boolean', ], 'AliasTarget' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'DNSName', 'EvaluateTargetHealth', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', ], 'DNSName' => [ 'shape' => 'DNSName', ], 'EvaluateTargetHealth' => [ 'shape' => 'AliasHealthEnabled', ], ], ], 'AssociateVPCComment' => [ 'type' => 'string', ], 'AssociateVPCWithHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'VPC', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'VPC' => [ 'shape' => 'VPC', ], 'Comment' => [ 'shape' => 'AssociateVPCComment', ], ], ], 'AssociateVPCWithHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'ChangeInfo', ], 'members' => [ 'ChangeInfo' => [ 'shape' => 'ChangeInfo', ], ], ], 'Change' => [ 'type' => 'structure', 'required' => [ 'Action', 'ResourceRecordSet', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'ResourceRecordSet' => [ 'shape' => 'ResourceRecordSet', ], ], ], 'ChangeAction' => [ 'type' => 'string', 'enum' => [ 'CREATE', 'DELETE', 'UPSERT', ], ], 'ChangeBatch' => [ 'type' => 'structure', 'required' => [ 'Changes', ], 'members' => [ 'Comment' => [ 'shape' => 'ResourceDescription', ], 'Changes' => [ 'shape' => 'Changes', ], ], ], 'ChangeBatchRecord' => [ 'type' => 'structure', 'required' => [ 'Id', 'Status', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', ], 'SubmittedAt' => [ 'shape' => 'TimeStamp', ], 'Status' => [ 'shape' => 'ChangeStatus', ], 'Comment' => [ 'shape' => 'ResourceDescription', ], 'Submitter' => [ 'shape' => 'AWSAccountID', ], 'Changes' => [ 'shape' => 'Changes', ], ], 'deprecated' => true, ], 'ChangeBatchRecords' => [ 'type' => 'list', 'member' => [ 'shape' => 'ChangeBatchRecord', 'locationName' => 'ChangeBatchRecord', ], 'deprecated' => true, 'min' => 1, ], 'ChangeInfo' => [ 'type' => 'structure', 'required' => [ 'Id', 'Status', 'SubmittedAt', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', ], 'Status' => [ 'shape' => 'ChangeStatus', ], 'SubmittedAt' => [ 'shape' => 'TimeStamp', ], 'Comment' => [ 'shape' => 'ResourceDescription', ], ], ], 'ChangeResourceRecordSetsRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'ChangeBatch', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'ChangeBatch' => [ 'shape' => 'ChangeBatch', ], ], ], 'ChangeResourceRecordSetsResponse' => [ 'type' => 'structure', 'required' => [ 'ChangeInfo', ], 'members' => [ 'ChangeInfo' => [ 'shape' => 'ChangeInfo', ], ], ], 'ChangeStatus' => [ 'type' => 'string', 'enum' => [ 'PENDING', 'INSYNC', ], ], 'ChangeTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceType', 'ResourceId', ], 'members' => [ 'ResourceType' => [ 'shape' => 'TagResourceType', 'location' => 'uri', 'locationName' => 'ResourceType', ], 'ResourceId' => [ 'shape' => 'TagResourceId', 'location' => 'uri', 'locationName' => 'ResourceId', ], 'AddTags' => [ 'shape' => 'TagList', ], 'RemoveTagKeys' => [ 'shape' => 'TagKeyList', ], ], ], 'ChangeTagsForResourceResponse' => [ 'type' => 'structure', 'members' => [], ], 'Changes' => [ 'type' => 'list', 'member' => [ 'shape' => 'Change', 'locationName' => 'Change', ], 'min' => 1, ], 'CheckerIpRanges' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPAddressCidr', ], ], 'ChildHealthCheckList' => [ 'type' => 'list', 'member' => [ 'shape' => 'HealthCheckId', 'locationName' => 'ChildHealthCheck', ], 'max' => 256, ], 'CloudWatchAlarmConfiguration' => [ 'type' => 'structure', 'required' => [ 'EvaluationPeriods', 'Threshold', 'ComparisonOperator', 'Period', 'MetricName', 'Namespace', 'Statistic', ], 'members' => [ 'EvaluationPeriods' => [ 'shape' => 'EvaluationPeriods', ], 'Threshold' => [ 'shape' => 'Threshold', ], 'ComparisonOperator' => [ 'shape' => 'ComparisonOperator', ], 'Period' => [ 'shape' => 'Period', ], 'MetricName' => [ 'shape' => 'MetricName', ], 'Namespace' => [ 'shape' => 'Namespace', ], 'Statistic' => [ 'shape' => 'Statistic', ], 'Dimensions' => [ 'shape' => 'DimensionList', ], ], ], 'CloudWatchRegion' => [ 'type' => 'string', 'enum' => [ 'us-east-1', 'us-west-1', 'us-west-2', 'eu-central-1', 'eu-west-1', 'ap-south-1', 'ap-southeast-1', 'ap-southeast-2', 'ap-northeast-1', 'ap-northeast-2', 'sa-east-1', ], 'max' => 64, 'min' => 1, ], 'ComparisonOperator' => [ 'type' => 'string', 'enum' => [ 'GreaterThanOrEqualToThreshold', 'GreaterThanThreshold', 'LessThanThreshold', 'LessThanOrEqualToThreshold', ], ], 'ConcurrentModification' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'ConflictingDomainExists' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ConflictingTypes' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'CreateHealthCheckRequest' => [ 'type' => 'structure', 'required' => [ 'CallerReference', 'HealthCheckConfig', ], 'members' => [ 'CallerReference' => [ 'shape' => 'HealthCheckNonce', ], 'HealthCheckConfig' => [ 'shape' => 'HealthCheckConfig', ], ], ], 'CreateHealthCheckResponse' => [ 'type' => 'structure', 'required' => [ 'HealthCheck', 'Location', ], 'members' => [ 'HealthCheck' => [ 'shape' => 'HealthCheck', ], 'Location' => [ 'shape' => 'ResourceURI', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'CreateHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'CallerReference', ], 'members' => [ 'Name' => [ 'shape' => 'DNSName', ], 'VPC' => [ 'shape' => 'VPC', ], 'CallerReference' => [ 'shape' => 'Nonce', ], 'HostedZoneConfig' => [ 'shape' => 'HostedZoneConfig', ], 'DelegationSetId' => [ 'shape' => 'ResourceId', ], ], ], 'CreateHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'HostedZone', 'ChangeInfo', 'DelegationSet', 'Location', ], 'members' => [ 'HostedZone' => [ 'shape' => 'HostedZone', ], 'ChangeInfo' => [ 'shape' => 'ChangeInfo', ], 'DelegationSet' => [ 'shape' => 'DelegationSet', ], 'VPC' => [ 'shape' => 'VPC', ], 'Location' => [ 'shape' => 'ResourceURI', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'CreateReusableDelegationSetRequest' => [ 'type' => 'structure', 'required' => [ 'CallerReference', ], 'members' => [ 'CallerReference' => [ 'shape' => 'Nonce', ], 'HostedZoneId' => [ 'shape' => 'ResourceId', ], ], ], 'CreateReusableDelegationSetResponse' => [ 'type' => 'structure', 'required' => [ 'DelegationSet', 'Location', ], 'members' => [ 'DelegationSet' => [ 'shape' => 'DelegationSet', ], 'Location' => [ 'shape' => 'ResourceURI', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'CreateTrafficPolicyInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'Name', 'TTL', 'TrafficPolicyId', 'TrafficPolicyVersion', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'DNSName', ], 'TTL' => [ 'shape' => 'TTL', ], 'TrafficPolicyId' => [ 'shape' => 'TrafficPolicyId', ], 'TrafficPolicyVersion' => [ 'shape' => 'TrafficPolicyVersion', ], ], ], 'CreateTrafficPolicyInstanceResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstance', 'Location', ], 'members' => [ 'TrafficPolicyInstance' => [ 'shape' => 'TrafficPolicyInstance', ], 'Location' => [ 'shape' => 'ResourceURI', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'CreateTrafficPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'Document', ], 'members' => [ 'Name' => [ 'shape' => 'TrafficPolicyName', ], 'Document' => [ 'shape' => 'TrafficPolicyDocument', ], 'Comment' => [ 'shape' => 'TrafficPolicyComment', ], ], ], 'CreateTrafficPolicyResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicy', 'Location', ], 'members' => [ 'TrafficPolicy' => [ 'shape' => 'TrafficPolicy', ], 'Location' => [ 'shape' => 'ResourceURI', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'CreateTrafficPolicyVersionRequest' => [ 'type' => 'structure', 'required' => [ 'Id', 'Document', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', 'location' => 'uri', 'locationName' => 'Id', ], 'Document' => [ 'shape' => 'TrafficPolicyDocument', ], 'Comment' => [ 'shape' => 'TrafficPolicyComment', ], ], ], 'CreateTrafficPolicyVersionResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicy', 'Location', ], 'members' => [ 'TrafficPolicy' => [ 'shape' => 'TrafficPolicy', ], 'Location' => [ 'shape' => 'ResourceURI', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'DNSName' => [ 'type' => 'string', 'max' => 1024, ], 'DNSRCode' => [ 'type' => 'string', ], 'Date' => [ 'type' => 'string', 'deprecated' => true, 'max' => 256, ], 'DelegationSet' => [ 'type' => 'structure', 'required' => [ 'NameServers', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', ], 'CallerReference' => [ 'shape' => 'Nonce', ], 'NameServers' => [ 'shape' => 'DelegationSetNameServers', ], ], ], 'DelegationSetAlreadyCreated' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DelegationSetAlreadyReusable' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DelegationSetInUse' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DelegationSetNameServers' => [ 'type' => 'list', 'member' => [ 'shape' => 'DNSName', 'locationName' => 'NameServer', ], 'min' => 1, ], 'DelegationSetNotAvailable' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DelegationSetNotReusable' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DelegationSets' => [ 'type' => 'list', 'member' => [ 'shape' => 'DelegationSet', 'locationName' => 'DelegationSet', ], ], 'DeleteHealthCheckRequest' => [ 'type' => 'structure', 'required' => [ 'HealthCheckId', ], 'members' => [ 'HealthCheckId' => [ 'shape' => 'HealthCheckId', 'location' => 'uri', 'locationName' => 'HealthCheckId', ], ], ], 'DeleteHealthCheckResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'DeleteHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'ChangeInfo', ], 'members' => [ 'ChangeInfo' => [ 'shape' => 'ChangeInfo', ], ], ], 'DeleteReusableDelegationSetRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'DeleteReusableDelegationSetResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteTrafficPolicyInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyInstanceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'DeleteTrafficPolicyInstanceResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteTrafficPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Id', 'Version', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', 'location' => 'uri', 'locationName' => 'Id', ], 'Version' => [ 'shape' => 'TrafficPolicyVersion', 'location' => 'uri', 'locationName' => 'Version', ], ], ], 'DeleteTrafficPolicyResponse' => [ 'type' => 'structure', 'members' => [], ], 'Dimension' => [ 'type' => 'structure', 'required' => [ 'Name', 'Value', ], 'members' => [ 'Name' => [ 'shape' => 'DimensionField', ], 'Value' => [ 'shape' => 'DimensionField', ], ], ], 'DimensionField' => [ 'type' => 'string', 'max' => 255, 'min' => 1, ], 'DimensionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Dimension', 'locationName' => 'Dimension', ], 'max' => 10, ], 'DisassociateVPCComment' => [ 'type' => 'string', ], 'DisassociateVPCFromHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'VPC', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'VPC' => [ 'shape' => 'VPC', ], 'Comment' => [ 'shape' => 'DisassociateVPCComment', ], ], ], 'DisassociateVPCFromHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'ChangeInfo', ], 'members' => [ 'ChangeInfo' => [ 'shape' => 'ChangeInfo', ], ], ], 'EnableSNI' => [ 'type' => 'boolean', ], 'ErrorMessage' => [ 'type' => 'string', ], 'ErrorMessages' => [ 'type' => 'list', 'member' => [ 'shape' => 'ErrorMessage', 'locationName' => 'Message', ], ], 'EvaluationPeriods' => [ 'type' => 'integer', 'min' => 1, ], 'FailureThreshold' => [ 'type' => 'integer', 'max' => 10, 'min' => 1, ], 'FullyQualifiedDomainName' => [ 'type' => 'string', 'max' => 255, ], 'GeoLocation' => [ 'type' => 'structure', 'members' => [ 'ContinentCode' => [ 'shape' => 'GeoLocationContinentCode', ], 'CountryCode' => [ 'shape' => 'GeoLocationCountryCode', ], 'SubdivisionCode' => [ 'shape' => 'GeoLocationSubdivisionCode', ], ], ], 'GeoLocationContinentCode' => [ 'type' => 'string', 'max' => 2, 'min' => 2, ], 'GeoLocationContinentName' => [ 'type' => 'string', 'max' => 32, 'min' => 1, ], 'GeoLocationCountryCode' => [ 'type' => 'string', 'max' => 2, 'min' => 1, ], 'GeoLocationCountryName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'GeoLocationDetails' => [ 'type' => 'structure', 'members' => [ 'ContinentCode' => [ 'shape' => 'GeoLocationContinentCode', ], 'ContinentName' => [ 'shape' => 'GeoLocationContinentName', ], 'CountryCode' => [ 'shape' => 'GeoLocationCountryCode', ], 'CountryName' => [ 'shape' => 'GeoLocationCountryName', ], 'SubdivisionCode' => [ 'shape' => 'GeoLocationSubdivisionCode', ], 'SubdivisionName' => [ 'shape' => 'GeoLocationSubdivisionName', ], ], ], 'GeoLocationDetailsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'GeoLocationDetails', 'locationName' => 'GeoLocationDetails', ], ], 'GeoLocationSubdivisionCode' => [ 'type' => 'string', 'max' => 3, 'min' => 1, ], 'GeoLocationSubdivisionName' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'GetChangeDetailsRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], ], 'deprecated' => true, ], 'GetChangeDetailsResponse' => [ 'type' => 'structure', 'required' => [ 'ChangeBatchRecord', ], 'members' => [ 'ChangeBatchRecord' => [ 'shape' => 'ChangeBatchRecord', ], ], 'deprecated' => true, ], 'GetChangeRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetChangeResponse' => [ 'type' => 'structure', 'required' => [ 'ChangeInfo', ], 'members' => [ 'ChangeInfo' => [ 'shape' => 'ChangeInfo', ], ], ], 'GetCheckerIpRangesRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetCheckerIpRangesResponse' => [ 'type' => 'structure', 'required' => [ 'CheckerIpRanges', ], 'members' => [ 'CheckerIpRanges' => [ 'shape' => 'CheckerIpRanges', ], ], ], 'GetGeoLocationRequest' => [ 'type' => 'structure', 'members' => [ 'ContinentCode' => [ 'shape' => 'GeoLocationContinentCode', 'location' => 'querystring', 'locationName' => 'continentcode', ], 'CountryCode' => [ 'shape' => 'GeoLocationCountryCode', 'location' => 'querystring', 'locationName' => 'countrycode', ], 'SubdivisionCode' => [ 'shape' => 'GeoLocationSubdivisionCode', 'location' => 'querystring', 'locationName' => 'subdivisioncode', ], ], ], 'GetGeoLocationResponse' => [ 'type' => 'structure', 'required' => [ 'GeoLocationDetails', ], 'members' => [ 'GeoLocationDetails' => [ 'shape' => 'GeoLocationDetails', ], ], ], 'GetHealthCheckCountRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetHealthCheckCountResponse' => [ 'type' => 'structure', 'required' => [ 'HealthCheckCount', ], 'members' => [ 'HealthCheckCount' => [ 'shape' => 'HealthCheckCount', ], ], ], 'GetHealthCheckLastFailureReasonRequest' => [ 'type' => 'structure', 'required' => [ 'HealthCheckId', ], 'members' => [ 'HealthCheckId' => [ 'shape' => 'HealthCheckId', 'location' => 'uri', 'locationName' => 'HealthCheckId', ], ], ], 'GetHealthCheckLastFailureReasonResponse' => [ 'type' => 'structure', 'required' => [ 'HealthCheckObservations', ], 'members' => [ 'HealthCheckObservations' => [ 'shape' => 'HealthCheckObservations', ], ], ], 'GetHealthCheckRequest' => [ 'type' => 'structure', 'required' => [ 'HealthCheckId', ], 'members' => [ 'HealthCheckId' => [ 'shape' => 'HealthCheckId', 'location' => 'uri', 'locationName' => 'HealthCheckId', ], ], ], 'GetHealthCheckResponse' => [ 'type' => 'structure', 'required' => [ 'HealthCheck', ], 'members' => [ 'HealthCheck' => [ 'shape' => 'HealthCheck', ], ], ], 'GetHealthCheckStatusRequest' => [ 'type' => 'structure', 'required' => [ 'HealthCheckId', ], 'members' => [ 'HealthCheckId' => [ 'shape' => 'HealthCheckId', 'location' => 'uri', 'locationName' => 'HealthCheckId', ], ], ], 'GetHealthCheckStatusResponse' => [ 'type' => 'structure', 'required' => [ 'HealthCheckObservations', ], 'members' => [ 'HealthCheckObservations' => [ 'shape' => 'HealthCheckObservations', ], ], ], 'GetHostedZoneCountRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetHostedZoneCountResponse' => [ 'type' => 'structure', 'required' => [ 'HostedZoneCount', ], 'members' => [ 'HostedZoneCount' => [ 'shape' => 'HostedZoneCount', ], ], ], 'GetHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'HostedZone', ], 'members' => [ 'HostedZone' => [ 'shape' => 'HostedZone', ], 'DelegationSet' => [ 'shape' => 'DelegationSet', ], 'VPCs' => [ 'shape' => 'VPCs', ], ], ], 'GetReusableDelegationSetRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetReusableDelegationSetResponse' => [ 'type' => 'structure', 'required' => [ 'DelegationSet', ], 'members' => [ 'DelegationSet' => [ 'shape' => 'DelegationSet', ], ], ], 'GetTrafficPolicyInstanceCountRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetTrafficPolicyInstanceCountResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstanceCount', ], 'members' => [ 'TrafficPolicyInstanceCount' => [ 'shape' => 'TrafficPolicyInstanceCount', ], ], ], 'GetTrafficPolicyInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyInstanceId', 'location' => 'uri', 'locationName' => 'Id', ], ], ], 'GetTrafficPolicyInstanceResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstance', ], 'members' => [ 'TrafficPolicyInstance' => [ 'shape' => 'TrafficPolicyInstance', ], ], ], 'GetTrafficPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Id', 'Version', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', 'location' => 'uri', 'locationName' => 'Id', ], 'Version' => [ 'shape' => 'TrafficPolicyVersion', 'location' => 'uri', 'locationName' => 'Version', ], ], ], 'GetTrafficPolicyResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicy', ], 'members' => [ 'TrafficPolicy' => [ 'shape' => 'TrafficPolicy', ], ], ], 'HealthCheck' => [ 'type' => 'structure', 'required' => [ 'Id', 'CallerReference', 'HealthCheckConfig', 'HealthCheckVersion', ], 'members' => [ 'Id' => [ 'shape' => 'HealthCheckId', ], 'CallerReference' => [ 'shape' => 'HealthCheckNonce', ], 'HealthCheckConfig' => [ 'shape' => 'HealthCheckConfig', ], 'HealthCheckVersion' => [ 'shape' => 'HealthCheckVersion', ], 'CloudWatchAlarmConfiguration' => [ 'shape' => 'CloudWatchAlarmConfiguration', ], ], ], 'HealthCheckAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'HealthCheckConfig' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'IPAddress' => [ 'shape' => 'IPAddress', ], 'Port' => [ 'shape' => 'Port', ], 'Type' => [ 'shape' => 'HealthCheckType', ], 'ResourcePath' => [ 'shape' => 'ResourcePath', ], 'FullyQualifiedDomainName' => [ 'shape' => 'FullyQualifiedDomainName', ], 'SearchString' => [ 'shape' => 'SearchString', ], 'RequestInterval' => [ 'shape' => 'RequestInterval', ], 'FailureThreshold' => [ 'shape' => 'FailureThreshold', ], 'MeasureLatency' => [ 'shape' => 'MeasureLatency', ], 'Inverted' => [ 'shape' => 'Inverted', ], 'HealthThreshold' => [ 'shape' => 'HealthThreshold', ], 'ChildHealthChecks' => [ 'shape' => 'ChildHealthCheckList', ], 'EnableSNI' => [ 'shape' => 'EnableSNI', ], 'Regions' => [ 'shape' => 'HealthCheckRegionList', ], 'AlarmIdentifier' => [ 'shape' => 'AlarmIdentifier', ], 'InsufficientDataHealthStatus' => [ 'shape' => 'InsufficientDataHealthStatus', ], ], ], 'HealthCheckCount' => [ 'type' => 'long', ], 'HealthCheckId' => [ 'type' => 'string', 'max' => 64, ], 'HealthCheckInUse' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'HealthCheckNonce' => [ 'type' => 'string', 'max' => 64, 'min' => 1, ], 'HealthCheckObservation' => [ 'type' => 'structure', 'members' => [ 'Region' => [ 'shape' => 'HealthCheckRegion', ], 'IPAddress' => [ 'shape' => 'IPAddress', ], 'StatusReport' => [ 'shape' => 'StatusReport', ], ], ], 'HealthCheckObservations' => [ 'type' => 'list', 'member' => [ 'shape' => 'HealthCheckObservation', 'locationName' => 'HealthCheckObservation', ], ], 'HealthCheckRegion' => [ 'type' => 'string', 'enum' => [ 'us-east-1', 'us-west-1', 'us-west-2', 'eu-west-1', 'ap-southeast-1', 'ap-southeast-2', 'ap-northeast-1', 'sa-east-1', ], 'max' => 64, 'min' => 1, ], 'HealthCheckRegionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'HealthCheckRegion', 'locationName' => 'Region', ], 'max' => 64, 'min' => 1, ], 'HealthCheckType' => [ 'type' => 'string', 'enum' => [ 'HTTP', 'HTTPS', 'HTTP_STR_MATCH', 'HTTPS_STR_MATCH', 'TCP', 'CALCULATED', 'CLOUDWATCH_METRIC', ], ], 'HealthCheckVersion' => [ 'type' => 'long', 'min' => 1, ], 'HealthCheckVersionMismatch' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'HealthChecks' => [ 'type' => 'list', 'member' => [ 'shape' => 'HealthCheck', 'locationName' => 'HealthCheck', ], ], 'HealthThreshold' => [ 'type' => 'integer', 'max' => 256, 'min' => 0, ], 'HostedZone' => [ 'type' => 'structure', 'required' => [ 'Id', 'Name', 'CallerReference', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'DNSName', ], 'CallerReference' => [ 'shape' => 'Nonce', ], 'Config' => [ 'shape' => 'HostedZoneConfig', ], 'ResourceRecordSetCount' => [ 'shape' => 'HostedZoneRRSetCount', ], ], ], 'HostedZoneAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'HostedZoneConfig' => [ 'type' => 'structure', 'members' => [ 'Comment' => [ 'shape' => 'ResourceDescription', ], 'PrivateZone' => [ 'shape' => 'IsPrivateZone', ], ], ], 'HostedZoneCount' => [ 'type' => 'long', ], 'HostedZoneNotEmpty' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'HostedZoneNotFound' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'HostedZoneRRSetCount' => [ 'type' => 'long', ], 'HostedZones' => [ 'type' => 'list', 'member' => [ 'shape' => 'HostedZone', 'locationName' => 'HostedZone', ], ], 'IPAddress' => [ 'type' => 'string', 'max' => 15, 'pattern' => '^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$', ], 'IPAddressCidr' => [ 'type' => 'string', ], 'IncompatibleVersion' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InsufficientDataHealthStatus' => [ 'type' => 'string', 'enum' => [ 'Healthy', 'Unhealthy', 'LastKnownStatus', ], ], 'InvalidArgument' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'InvalidChangeBatch' => [ 'type' => 'structure', 'members' => [ 'messages' => [ 'shape' => 'ErrorMessages', ], ], 'exception' => true, ], 'InvalidDomainName' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidInput' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidTrafficPolicyDocument' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'InvalidVPCId' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'Inverted' => [ 'type' => 'boolean', ], 'IsPrivateZone' => [ 'type' => 'boolean', ], 'LastVPCAssociation' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'LimitsExceeded' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ListChangeBatchesByHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'StartDate', 'EndDate', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'StartDate' => [ 'shape' => 'Date', 'location' => 'querystring', 'locationName' => 'startDate', ], 'EndDate' => [ 'shape' => 'Date', 'location' => 'querystring', 'locationName' => 'endDate', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxItems', ], 'Marker' => [ 'shape' => 'PageMarker', 'location' => 'querystring', 'locationName' => 'marker', ], ], 'deprecated' => true, ], 'ListChangeBatchesByHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'MaxItems', 'Marker', 'ChangeBatchRecords', ], 'members' => [ 'MaxItems' => [ 'shape' => 'PageMaxItems', ], 'Marker' => [ 'shape' => 'PageMarker', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'ChangeBatchRecords' => [ 'shape' => 'ChangeBatchRecords', ], 'NextMarker' => [ 'shape' => 'PageMarker', ], ], 'deprecated' => true, ], 'ListChangeBatchesByRRSetRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'Name', 'Type', 'StartDate', 'EndDate', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'Name' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'rrSet_name', ], 'Type' => [ 'shape' => 'RRType', 'location' => 'querystring', 'locationName' => 'type', ], 'SetIdentifier' => [ 'shape' => 'ResourceRecordSetIdentifier', 'location' => 'querystring', 'locationName' => 'identifier', ], 'StartDate' => [ 'shape' => 'Date', 'location' => 'querystring', 'locationName' => 'startDate', ], 'EndDate' => [ 'shape' => 'Date', 'location' => 'querystring', 'locationName' => 'endDate', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxItems', ], 'Marker' => [ 'shape' => 'PageMarker', 'location' => 'querystring', 'locationName' => 'marker', ], ], 'deprecated' => true, ], 'ListChangeBatchesByRRSetResponse' => [ 'type' => 'structure', 'required' => [ 'MaxItems', 'Marker', 'ChangeBatchRecords', ], 'members' => [ 'MaxItems' => [ 'shape' => 'PageMaxItems', ], 'Marker' => [ 'shape' => 'PageMarker', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'ChangeBatchRecords' => [ 'shape' => 'ChangeBatchRecords', ], 'NextMarker' => [ 'shape' => 'PageMarker', ], ], 'deprecated' => true, ], 'ListGeoLocationsRequest' => [ 'type' => 'structure', 'members' => [ 'StartContinentCode' => [ 'shape' => 'GeoLocationContinentCode', 'location' => 'querystring', 'locationName' => 'startcontinentcode', ], 'StartCountryCode' => [ 'shape' => 'GeoLocationCountryCode', 'location' => 'querystring', 'locationName' => 'startcountrycode', ], 'StartSubdivisionCode' => [ 'shape' => 'GeoLocationSubdivisionCode', 'location' => 'querystring', 'locationName' => 'startsubdivisioncode', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListGeoLocationsResponse' => [ 'type' => 'structure', 'required' => [ 'GeoLocationDetailsList', 'IsTruncated', 'MaxItems', ], 'members' => [ 'GeoLocationDetailsList' => [ 'shape' => 'GeoLocationDetailsList', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'NextContinentCode' => [ 'shape' => 'GeoLocationContinentCode', ], 'NextCountryCode' => [ 'shape' => 'GeoLocationCountryCode', ], 'NextSubdivisionCode' => [ 'shape' => 'GeoLocationSubdivisionCode', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListHealthChecksRequest' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'PageMarker', 'location' => 'querystring', 'locationName' => 'marker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListHealthChecksResponse' => [ 'type' => 'structure', 'required' => [ 'HealthChecks', 'Marker', 'IsTruncated', 'MaxItems', ], 'members' => [ 'HealthChecks' => [ 'shape' => 'HealthChecks', ], 'Marker' => [ 'shape' => 'PageMarker', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'NextMarker' => [ 'shape' => 'PageMarker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListHostedZonesByNameRequest' => [ 'type' => 'structure', 'members' => [ 'DNSName' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'dnsname', ], 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'querystring', 'locationName' => 'hostedzoneid', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListHostedZonesByNameResponse' => [ 'type' => 'structure', 'required' => [ 'HostedZones', 'IsTruncated', 'MaxItems', ], 'members' => [ 'HostedZones' => [ 'shape' => 'HostedZones', ], 'DNSName' => [ 'shape' => 'DNSName', ], 'HostedZoneId' => [ 'shape' => 'ResourceId', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'NextDNSName' => [ 'shape' => 'DNSName', ], 'NextHostedZoneId' => [ 'shape' => 'ResourceId', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListHostedZonesRequest' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'PageMarker', 'location' => 'querystring', 'locationName' => 'marker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], 'DelegationSetId' => [ 'shape' => 'ResourceId', 'location' => 'querystring', 'locationName' => 'delegationsetid', ], ], ], 'ListHostedZonesResponse' => [ 'type' => 'structure', 'required' => [ 'HostedZones', 'Marker', 'IsTruncated', 'MaxItems', ], 'members' => [ 'HostedZones' => [ 'shape' => 'HostedZones', ], 'Marker' => [ 'shape' => 'PageMarker', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'NextMarker' => [ 'shape' => 'PageMarker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListResourceRecordSetsRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'StartRecordName' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'name', ], 'StartRecordType' => [ 'shape' => 'RRType', 'location' => 'querystring', 'locationName' => 'type', ], 'StartRecordIdentifier' => [ 'shape' => 'ResourceRecordSetIdentifier', 'location' => 'querystring', 'locationName' => 'identifier', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListResourceRecordSetsResponse' => [ 'type' => 'structure', 'required' => [ 'ResourceRecordSets', 'IsTruncated', 'MaxItems', ], 'members' => [ 'ResourceRecordSets' => [ 'shape' => 'ResourceRecordSets', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'NextRecordName' => [ 'shape' => 'DNSName', ], 'NextRecordType' => [ 'shape' => 'RRType', ], 'NextRecordIdentifier' => [ 'shape' => 'ResourceRecordSetIdentifier', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListReusableDelegationSetsRequest' => [ 'type' => 'structure', 'members' => [ 'Marker' => [ 'shape' => 'PageMarker', 'location' => 'querystring', 'locationName' => 'marker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListReusableDelegationSetsResponse' => [ 'type' => 'structure', 'required' => [ 'DelegationSets', 'Marker', 'IsTruncated', 'MaxItems', ], 'members' => [ 'DelegationSets' => [ 'shape' => 'DelegationSets', ], 'Marker' => [ 'shape' => 'PageMarker', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'NextMarker' => [ 'shape' => 'PageMarker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListTagsForResourceRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceType', 'ResourceId', ], 'members' => [ 'ResourceType' => [ 'shape' => 'TagResourceType', 'location' => 'uri', 'locationName' => 'ResourceType', ], 'ResourceId' => [ 'shape' => 'TagResourceId', 'location' => 'uri', 'locationName' => 'ResourceId', ], ], ], 'ListTagsForResourceResponse' => [ 'type' => 'structure', 'required' => [ 'ResourceTagSet', ], 'members' => [ 'ResourceTagSet' => [ 'shape' => 'ResourceTagSet', ], ], ], 'ListTagsForResourcesRequest' => [ 'type' => 'structure', 'required' => [ 'ResourceType', 'ResourceIds', ], 'members' => [ 'ResourceType' => [ 'shape' => 'TagResourceType', 'location' => 'uri', 'locationName' => 'ResourceType', ], 'ResourceIds' => [ 'shape' => 'TagResourceIdList', ], ], ], 'ListTagsForResourcesResponse' => [ 'type' => 'structure', 'required' => [ 'ResourceTagSets', ], 'members' => [ 'ResourceTagSets' => [ 'shape' => 'ResourceTagSetList', ], ], ], 'ListTrafficPoliciesRequest' => [ 'type' => 'structure', 'members' => [ 'TrafficPolicyIdMarker' => [ 'shape' => 'TrafficPolicyId', 'location' => 'querystring', 'locationName' => 'trafficpolicyid', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListTrafficPoliciesResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicySummaries', 'IsTruncated', 'TrafficPolicyIdMarker', 'MaxItems', ], 'members' => [ 'TrafficPolicySummaries' => [ 'shape' => 'TrafficPolicySummaries', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'TrafficPolicyIdMarker' => [ 'shape' => 'TrafficPolicyId', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListTrafficPolicyInstancesByHostedZoneRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'querystring', 'locationName' => 'id', ], 'TrafficPolicyInstanceNameMarker' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'trafficpolicyinstancename', ], 'TrafficPolicyInstanceTypeMarker' => [ 'shape' => 'RRType', 'location' => 'querystring', 'locationName' => 'trafficpolicyinstancetype', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListTrafficPolicyInstancesByHostedZoneResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstances', 'IsTruncated', 'MaxItems', ], 'members' => [ 'TrafficPolicyInstances' => [ 'shape' => 'TrafficPolicyInstances', ], 'TrafficPolicyInstanceNameMarker' => [ 'shape' => 'DNSName', ], 'TrafficPolicyInstanceTypeMarker' => [ 'shape' => 'RRType', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListTrafficPolicyInstancesByPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyId', 'TrafficPolicyVersion', ], 'members' => [ 'TrafficPolicyId' => [ 'shape' => 'TrafficPolicyId', 'location' => 'querystring', 'locationName' => 'id', ], 'TrafficPolicyVersion' => [ 'shape' => 'TrafficPolicyVersion', 'location' => 'querystring', 'locationName' => 'version', ], 'HostedZoneIdMarker' => [ 'shape' => 'ResourceId', 'location' => 'querystring', 'locationName' => 'hostedzoneid', ], 'TrafficPolicyInstanceNameMarker' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'trafficpolicyinstancename', ], 'TrafficPolicyInstanceTypeMarker' => [ 'shape' => 'RRType', 'location' => 'querystring', 'locationName' => 'trafficpolicyinstancetype', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListTrafficPolicyInstancesByPolicyResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstances', 'IsTruncated', 'MaxItems', ], 'members' => [ 'TrafficPolicyInstances' => [ 'shape' => 'TrafficPolicyInstances', ], 'HostedZoneIdMarker' => [ 'shape' => 'ResourceId', ], 'TrafficPolicyInstanceNameMarker' => [ 'shape' => 'DNSName', ], 'TrafficPolicyInstanceTypeMarker' => [ 'shape' => 'RRType', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListTrafficPolicyInstancesRequest' => [ 'type' => 'structure', 'members' => [ 'HostedZoneIdMarker' => [ 'shape' => 'ResourceId', 'location' => 'querystring', 'locationName' => 'hostedzoneid', ], 'TrafficPolicyInstanceNameMarker' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'trafficpolicyinstancename', ], 'TrafficPolicyInstanceTypeMarker' => [ 'shape' => 'RRType', 'location' => 'querystring', 'locationName' => 'trafficpolicyinstancetype', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListTrafficPolicyInstancesResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstances', 'IsTruncated', 'MaxItems', ], 'members' => [ 'TrafficPolicyInstances' => [ 'shape' => 'TrafficPolicyInstances', ], 'HostedZoneIdMarker' => [ 'shape' => 'ResourceId', ], 'TrafficPolicyInstanceNameMarker' => [ 'shape' => 'DNSName', ], 'TrafficPolicyInstanceTypeMarker' => [ 'shape' => 'RRType', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'ListTrafficPolicyVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', 'location' => 'uri', 'locationName' => 'Id', ], 'TrafficPolicyVersionMarker' => [ 'shape' => 'TrafficPolicyVersionMarker', 'location' => 'querystring', 'locationName' => 'trafficpolicyversion', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', 'location' => 'querystring', 'locationName' => 'maxitems', ], ], ], 'ListTrafficPolicyVersionsResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicies', 'IsTruncated', 'TrafficPolicyVersionMarker', 'MaxItems', ], 'members' => [ 'TrafficPolicies' => [ 'shape' => 'TrafficPolicies', ], 'IsTruncated' => [ 'shape' => 'PageTruncated', ], 'TrafficPolicyVersionMarker' => [ 'shape' => 'TrafficPolicyVersionMarker', ], 'MaxItems' => [ 'shape' => 'PageMaxItems', ], ], ], 'MeasureLatency' => [ 'type' => 'boolean', ], 'Message' => [ 'type' => 'string', 'max' => 1024, ], 'MetricName' => [ 'type' => 'string', 'max' => 255, 'min' => 1, ], 'Nameserver' => [ 'type' => 'string', 'max' => 255, 'min' => 0, ], 'Namespace' => [ 'type' => 'string', 'max' => 255, 'min' => 1, ], 'NoSuchChange' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchDelegationSet' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'NoSuchGeoLocation' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchHealthCheck' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchHostedZone' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchTrafficPolicy' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'NoSuchTrafficPolicyInstance' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'Nonce' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'PageMarker' => [ 'type' => 'string', 'max' => 64, ], 'PageMaxItems' => [ 'type' => 'string', ], 'PageTruncated' => [ 'type' => 'boolean', ], 'Period' => [ 'type' => 'integer', 'min' => 60, ], 'Port' => [ 'type' => 'integer', 'max' => 65535, 'min' => 1, ], 'PriorRequestNotComplete' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'PublicZoneVPCAssociation' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'RData' => [ 'type' => 'string', 'max' => 4000, ], 'RRType' => [ 'type' => 'string', 'enum' => [ 'SOA', 'A', 'TXT', 'NS', 'CNAME', 'MX', 'NAPTR', 'PTR', 'SRV', 'SPF', 'AAAA', ], ], 'RecordData' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecordDataEntry', 'locationName' => 'RecordDataEntry', ], ], 'RecordDataEntry' => [ 'type' => 'string', 'max' => 512, 'min' => 0, ], 'RequestInterval' => [ 'type' => 'integer', 'max' => 30, 'min' => 10, ], 'ResourceDescription' => [ 'type' => 'string', 'max' => 256, ], 'ResourceId' => [ 'type' => 'string', 'max' => 32, ], 'ResourcePath' => [ 'type' => 'string', 'max' => 255, ], 'ResourceRecord' => [ 'type' => 'structure', 'required' => [ 'Value', ], 'members' => [ 'Value' => [ 'shape' => 'RData', ], ], ], 'ResourceRecordSet' => [ 'type' => 'structure', 'required' => [ 'Name', 'Type', ], 'members' => [ 'Name' => [ 'shape' => 'DNSName', ], 'Type' => [ 'shape' => 'RRType', ], 'SetIdentifier' => [ 'shape' => 'ResourceRecordSetIdentifier', ], 'Weight' => [ 'shape' => 'ResourceRecordSetWeight', ], 'Region' => [ 'shape' => 'ResourceRecordSetRegion', ], 'GeoLocation' => [ 'shape' => 'GeoLocation', ], 'Failover' => [ 'shape' => 'ResourceRecordSetFailover', ], 'TTL' => [ 'shape' => 'TTL', ], 'ResourceRecords' => [ 'shape' => 'ResourceRecords', ], 'AliasTarget' => [ 'shape' => 'AliasTarget', ], 'HealthCheckId' => [ 'shape' => 'HealthCheckId', ], 'TrafficPolicyInstanceId' => [ 'shape' => 'TrafficPolicyInstanceId', ], ], ], 'ResourceRecordSetFailover' => [ 'type' => 'string', 'enum' => [ 'PRIMARY', 'SECONDARY', ], ], 'ResourceRecordSetIdentifier' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'ResourceRecordSetRegion' => [ 'type' => 'string', 'enum' => [ 'us-east-1', 'us-east-2', 'us-west-1', 'us-west-2', 'eu-west-1', 'eu-central-1', 'ap-southeast-1', 'ap-southeast-2', 'ap-northeast-1', 'ap-northeast-2', 'sa-east-1', 'cn-north-1', 'ap-south-1', ], 'max' => 64, 'min' => 1, ], 'ResourceRecordSetWeight' => [ 'type' => 'long', 'max' => 255, 'min' => 0, ], 'ResourceRecordSets' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceRecordSet', 'locationName' => 'ResourceRecordSet', ], ], 'ResourceRecords' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceRecord', 'locationName' => 'ResourceRecord', ], 'min' => 1, ], 'ResourceTagSet' => [ 'type' => 'structure', 'members' => [ 'ResourceType' => [ 'shape' => 'TagResourceType', ], 'ResourceId' => [ 'shape' => 'TagResourceId', ], 'Tags' => [ 'shape' => 'TagList', ], ], ], 'ResourceTagSetList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ResourceTagSet', 'locationName' => 'ResourceTagSet', ], ], 'ResourceURI' => [ 'type' => 'string', 'max' => 1024, ], 'SearchString' => [ 'type' => 'string', 'max' => 255, ], 'Statistic' => [ 'type' => 'string', 'enum' => [ 'Average', 'Sum', 'SampleCount', 'Maximum', 'Minimum', ], ], 'Status' => [ 'type' => 'string', ], 'StatusReport' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'Status', ], 'CheckedTime' => [ 'shape' => 'TimeStamp', ], ], ], 'SubnetMask' => [ 'type' => 'string', 'max' => 2, 'min' => 0, ], 'TTL' => [ 'type' => 'long', 'max' => 2147483647, 'min' => 0, ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, ], 'TagKeyList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagKey', 'locationName' => 'Key', ], 'max' => 10, 'min' => 1, ], 'TagList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], 'max' => 10, 'min' => 1, ], 'TagResourceId' => [ 'type' => 'string', 'max' => 64, ], 'TagResourceIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagResourceId', 'locationName' => 'ResourceId', ], 'max' => 10, 'min' => 1, ], 'TagResourceType' => [ 'type' => 'string', 'enum' => [ 'healthcheck', 'hostedzone', ], ], 'TagValue' => [ 'type' => 'string', 'max' => 256, ], 'TestDNSAnswerRequest' => [ 'type' => 'structure', 'required' => [ 'HostedZoneId', 'RecordName', 'RecordType', ], 'members' => [ 'HostedZoneId' => [ 'shape' => 'ResourceId', 'location' => 'querystring', 'locationName' => 'hostedzoneid', ], 'RecordName' => [ 'shape' => 'DNSName', 'location' => 'querystring', 'locationName' => 'recordname', ], 'RecordType' => [ 'shape' => 'RRType', 'location' => 'querystring', 'locationName' => 'recordtype', ], 'ResolverIP' => [ 'shape' => 'IPAddress', 'location' => 'querystring', 'locationName' => 'resolverip', ], 'EDNS0ClientSubnetIP' => [ 'shape' => 'IPAddress', 'location' => 'querystring', 'locationName' => 'edns0clientsubnetip', ], 'EDNS0ClientSubnetMask' => [ 'shape' => 'SubnetMask', 'location' => 'querystring', 'locationName' => 'edns0clientsubnetmask', ], ], ], 'TestDNSAnswerResponse' => [ 'type' => 'structure', 'required' => [ 'Nameserver', 'RecordName', 'RecordType', 'RecordData', 'ResponseCode', 'Protocol', ], 'members' => [ 'Nameserver' => [ 'shape' => 'Nameserver', ], 'RecordName' => [ 'shape' => 'DNSName', ], 'RecordType' => [ 'shape' => 'RRType', ], 'RecordData' => [ 'shape' => 'RecordData', ], 'ResponseCode' => [ 'shape' => 'DNSRCode', ], 'Protocol' => [ 'shape' => 'TransportProtocol', ], ], ], 'Threshold' => [ 'type' => 'double', ], 'ThrottlingException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TimeStamp' => [ 'type' => 'timestamp', ], 'TooManyHealthChecks' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'TooManyHostedZones' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyTrafficPolicies' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TooManyTrafficPolicyInstances' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TrafficPolicies' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficPolicy', 'locationName' => 'TrafficPolicy', ], ], 'TrafficPolicy' => [ 'type' => 'structure', 'required' => [ 'Id', 'Version', 'Name', 'Type', 'Document', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', ], 'Version' => [ 'shape' => 'TrafficPolicyVersion', ], 'Name' => [ 'shape' => 'TrafficPolicyName', ], 'Type' => [ 'shape' => 'RRType', ], 'Document' => [ 'shape' => 'TrafficPolicyDocument', ], 'Comment' => [ 'shape' => 'TrafficPolicyComment', ], ], ], 'TrafficPolicyAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'TrafficPolicyComment' => [ 'type' => 'string', 'max' => 1024, ], 'TrafficPolicyDocument' => [ 'type' => 'string', 'max' => 102400, ], 'TrafficPolicyId' => [ 'type' => 'string', 'max' => 36, ], 'TrafficPolicyInUse' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 400, ], 'exception' => true, ], 'TrafficPolicyInstance' => [ 'type' => 'structure', 'required' => [ 'Id', 'HostedZoneId', 'Name', 'TTL', 'State', 'Message', 'TrafficPolicyId', 'TrafficPolicyVersion', 'TrafficPolicyType', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyInstanceId', ], 'HostedZoneId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'DNSName', ], 'TTL' => [ 'shape' => 'TTL', ], 'State' => [ 'shape' => 'TrafficPolicyInstanceState', ], 'Message' => [ 'shape' => 'Message', ], 'TrafficPolicyId' => [ 'shape' => 'TrafficPolicyId', ], 'TrafficPolicyVersion' => [ 'shape' => 'TrafficPolicyVersion', ], 'TrafficPolicyType' => [ 'shape' => 'RRType', ], ], ], 'TrafficPolicyInstanceAlreadyExists' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 409, ], 'exception' => true, ], 'TrafficPolicyInstanceCount' => [ 'type' => 'integer', ], 'TrafficPolicyInstanceId' => [ 'type' => 'string', 'max' => 36, ], 'TrafficPolicyInstanceState' => [ 'type' => 'string', ], 'TrafficPolicyInstances' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficPolicyInstance', 'locationName' => 'TrafficPolicyInstance', ], ], 'TrafficPolicyName' => [ 'type' => 'string', 'max' => 512, ], 'TrafficPolicySummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrafficPolicySummary', 'locationName' => 'TrafficPolicySummary', ], ], 'TrafficPolicySummary' => [ 'type' => 'structure', 'required' => [ 'Id', 'Name', 'Type', 'LatestVersion', 'TrafficPolicyCount', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', ], 'Name' => [ 'shape' => 'TrafficPolicyName', ], 'Type' => [ 'shape' => 'RRType', ], 'LatestVersion' => [ 'shape' => 'TrafficPolicyVersion', ], 'TrafficPolicyCount' => [ 'shape' => 'TrafficPolicyVersion', ], ], ], 'TrafficPolicyVersion' => [ 'type' => 'integer', 'max' => 1000, 'min' => 1, ], 'TrafficPolicyVersionMarker' => [ 'type' => 'string', 'max' => 4, ], 'TransportProtocol' => [ 'type' => 'string', ], 'UpdateHealthCheckRequest' => [ 'type' => 'structure', 'required' => [ 'HealthCheckId', ], 'members' => [ 'HealthCheckId' => [ 'shape' => 'HealthCheckId', 'location' => 'uri', 'locationName' => 'HealthCheckId', ], 'HealthCheckVersion' => [ 'shape' => 'HealthCheckVersion', ], 'IPAddress' => [ 'shape' => 'IPAddress', ], 'Port' => [ 'shape' => 'Port', ], 'ResourcePath' => [ 'shape' => 'ResourcePath', ], 'FullyQualifiedDomainName' => [ 'shape' => 'FullyQualifiedDomainName', ], 'SearchString' => [ 'shape' => 'SearchString', ], 'FailureThreshold' => [ 'shape' => 'FailureThreshold', ], 'Inverted' => [ 'shape' => 'Inverted', ], 'HealthThreshold' => [ 'shape' => 'HealthThreshold', ], 'ChildHealthChecks' => [ 'shape' => 'ChildHealthCheckList', ], 'EnableSNI' => [ 'shape' => 'EnableSNI', ], 'Regions' => [ 'shape' => 'HealthCheckRegionList', ], 'AlarmIdentifier' => [ 'shape' => 'AlarmIdentifier', ], 'InsufficientDataHealthStatus' => [ 'shape' => 'InsufficientDataHealthStatus', ], ], ], 'UpdateHealthCheckResponse' => [ 'type' => 'structure', 'required' => [ 'HealthCheck', ], 'members' => [ 'HealthCheck' => [ 'shape' => 'HealthCheck', ], ], ], 'UpdateHostedZoneCommentRequest' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'Id' => [ 'shape' => 'ResourceId', 'location' => 'uri', 'locationName' => 'Id', ], 'Comment' => [ 'shape' => 'ResourceDescription', ], ], ], 'UpdateHostedZoneCommentResponse' => [ 'type' => 'structure', 'required' => [ 'HostedZone', ], 'members' => [ 'HostedZone' => [ 'shape' => 'HostedZone', ], ], ], 'UpdateTrafficPolicyCommentRequest' => [ 'type' => 'structure', 'required' => [ 'Id', 'Version', 'Comment', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyId', 'location' => 'uri', 'locationName' => 'Id', ], 'Version' => [ 'shape' => 'TrafficPolicyVersion', 'location' => 'uri', 'locationName' => 'Version', ], 'Comment' => [ 'shape' => 'TrafficPolicyComment', ], ], ], 'UpdateTrafficPolicyCommentResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicy', ], 'members' => [ 'TrafficPolicy' => [ 'shape' => 'TrafficPolicy', ], ], ], 'UpdateTrafficPolicyInstanceRequest' => [ 'type' => 'structure', 'required' => [ 'Id', 'TTL', 'TrafficPolicyId', 'TrafficPolicyVersion', ], 'members' => [ 'Id' => [ 'shape' => 'TrafficPolicyInstanceId', 'location' => 'uri', 'locationName' => 'Id', ], 'TTL' => [ 'shape' => 'TTL', ], 'TrafficPolicyId' => [ 'shape' => 'TrafficPolicyId', ], 'TrafficPolicyVersion' => [ 'shape' => 'TrafficPolicyVersion', ], ], ], 'UpdateTrafficPolicyInstanceResponse' => [ 'type' => 'structure', 'required' => [ 'TrafficPolicyInstance', ], 'members' => [ 'TrafficPolicyInstance' => [ 'shape' => 'TrafficPolicyInstance', ], ], ], 'VPC' => [ 'type' => 'structure', 'members' => [ 'VPCRegion' => [ 'shape' => 'VPCRegion', ], 'VPCId' => [ 'shape' => 'VPCId', ], ], ], 'VPCAssociationNotFound' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'error' => [ 'httpStatusCode' => 404, ], 'exception' => true, ], 'VPCId' => [ 'type' => 'string', 'max' => 1024, ], 'VPCRegion' => [ 'type' => 'string', 'enum' => [ 'us-east-1', 'us-east-2', 'us-west-1', 'us-west-2', 'eu-west-1', 'eu-central-1', 'ap-southeast-1', 'ap-southeast-2', 'ap-south-1', 'ap-northeast-1', 'ap-northeast-2', 'sa-east-1', 'cn-north-1', ], 'max' => 64, 'min' => 1, ], 'VPCs' => [ 'type' => 'list', 'member' => [ 'shape' => 'VPC', 'locationName' => 'VPC', ], 'min' => 1, ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/api-2.json.php index 5003f4737..1520111c0 100644 --- a/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2006-03-01', 'checksumFormat' => 'md5', 'endpointPrefix' => 's3', 'globalEndpoint' => 's3.amazonaws.com', 'protocol' => 'rest-xml', 'serviceAbbreviation' => 'Amazon S3', 'serviceFullName' => 'Amazon Simple Storage Service', 'signatureVersion' => 's3', 'timestampFormat' => 'rfc822', ], 'operations' => [ 'AbortMultipartUpload' => [ 'name' => 'AbortMultipartUpload', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'AbortMultipartUploadRequest', ], 'output' => [ 'shape' => 'AbortMultipartUploadOutput', ], 'errors' => [ [ 'shape' => 'NoSuchUpload', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadAbort.html', ], 'CompleteMultipartUpload' => [ 'name' => 'CompleteMultipartUpload', 'http' => [ 'method' => 'POST', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'CompleteMultipartUploadRequest', ], 'output' => [ 'shape' => 'CompleteMultipartUploadOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadComplete.html', ], 'CopyObject' => [ 'name' => 'CopyObject', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'CopyObjectRequest', ], 'output' => [ 'shape' => 'CopyObjectOutput', ], 'errors' => [ [ 'shape' => 'ObjectNotInActiveTierError', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectCOPY.html', 'alias' => 'PutObjectCopy', ], 'CreateBucket' => [ 'name' => 'CreateBucket', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}', ], 'input' => [ 'shape' => 'CreateBucketRequest', ], 'output' => [ 'shape' => 'CreateBucketOutput', ], 'errors' => [ [ 'shape' => 'BucketAlreadyExists', ], [ 'shape' => 'BucketAlreadyOwnedByYou', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUT.html', 'alias' => 'PutBucket', ], 'CreateMultipartUpload' => [ 'name' => 'CreateMultipartUpload', 'http' => [ 'method' => 'POST', 'requestUri' => '/{Bucket}/{Key+}?uploads', ], 'input' => [ 'shape' => 'CreateMultipartUploadRequest', ], 'output' => [ 'shape' => 'CreateMultipartUploadOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadInitiate.html', 'alias' => 'InitiateMultipartUpload', ], 'DeleteBucket' => [ 'name' => 'DeleteBucket', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}', ], 'input' => [ 'shape' => 'DeleteBucketRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETE.html', ], 'DeleteBucketCors' => [ 'name' => 'DeleteBucketCors', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}?cors', ], 'input' => [ 'shape' => 'DeleteBucketCorsRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEcors.html', ], 'DeleteBucketLifecycle' => [ 'name' => 'DeleteBucketLifecycle', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}?lifecycle', ], 'input' => [ 'shape' => 'DeleteBucketLifecycleRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETElifecycle.html', ], 'DeleteBucketPolicy' => [ 'name' => 'DeleteBucketPolicy', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}?policy', ], 'input' => [ 'shape' => 'DeleteBucketPolicyRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEpolicy.html', ], 'DeleteBucketReplication' => [ 'name' => 'DeleteBucketReplication', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}?replication', ], 'input' => [ 'shape' => 'DeleteBucketReplicationRequest', ], ], 'DeleteBucketTagging' => [ 'name' => 'DeleteBucketTagging', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}?tagging', ], 'input' => [ 'shape' => 'DeleteBucketTaggingRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEtagging.html', ], 'DeleteBucketWebsite' => [ 'name' => 'DeleteBucketWebsite', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}?website', ], 'input' => [ 'shape' => 'DeleteBucketWebsiteRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEwebsite.html', ], 'DeleteObject' => [ 'name' => 'DeleteObject', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'DeleteObjectRequest', ], 'output' => [ 'shape' => 'DeleteObjectOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectDELETE.html', ], 'DeleteObjects' => [ 'name' => 'DeleteObjects', 'http' => [ 'method' => 'POST', 'requestUri' => '/{Bucket}?delete', ], 'input' => [ 'shape' => 'DeleteObjectsRequest', ], 'output' => [ 'shape' => 'DeleteObjectsOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/multiobjectdeleteapi.html', 'alias' => 'DeleteMultipleObjects', ], 'GetBucketAccelerateConfiguration' => [ 'name' => 'GetBucketAccelerateConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?accelerate', ], 'input' => [ 'shape' => 'GetBucketAccelerateConfigurationRequest', ], 'output' => [ 'shape' => 'GetBucketAccelerateConfigurationOutput', ], ], 'GetBucketAcl' => [ 'name' => 'GetBucketAcl', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?acl', ], 'input' => [ 'shape' => 'GetBucketAclRequest', ], 'output' => [ 'shape' => 'GetBucketAclOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETacl.html', ], 'GetBucketCors' => [ 'name' => 'GetBucketCors', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?cors', ], 'input' => [ 'shape' => 'GetBucketCorsRequest', ], 'output' => [ 'shape' => 'GetBucketCorsOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETcors.html', ], 'GetBucketLifecycle' => [ 'name' => 'GetBucketLifecycle', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?lifecycle', ], 'input' => [ 'shape' => 'GetBucketLifecycleRequest', ], 'output' => [ 'shape' => 'GetBucketLifecycleOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlifecycle.html', 'deprecated' => true, ], 'GetBucketLifecycleConfiguration' => [ 'name' => 'GetBucketLifecycleConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?lifecycle', ], 'input' => [ 'shape' => 'GetBucketLifecycleConfigurationRequest', ], 'output' => [ 'shape' => 'GetBucketLifecycleConfigurationOutput', ], ], 'GetBucketLocation' => [ 'name' => 'GetBucketLocation', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?location', ], 'input' => [ 'shape' => 'GetBucketLocationRequest', ], 'output' => [ 'shape' => 'GetBucketLocationOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlocation.html', ], 'GetBucketLogging' => [ 'name' => 'GetBucketLogging', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?logging', ], 'input' => [ 'shape' => 'GetBucketLoggingRequest', ], 'output' => [ 'shape' => 'GetBucketLoggingOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlogging.html', ], 'GetBucketNotification' => [ 'name' => 'GetBucketNotification', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?notification', ], 'input' => [ 'shape' => 'GetBucketNotificationConfigurationRequest', ], 'output' => [ 'shape' => 'NotificationConfigurationDeprecated', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETnotification.html', 'deprecated' => true, ], 'GetBucketNotificationConfiguration' => [ 'name' => 'GetBucketNotificationConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?notification', ], 'input' => [ 'shape' => 'GetBucketNotificationConfigurationRequest', ], 'output' => [ 'shape' => 'NotificationConfiguration', ], ], 'GetBucketPolicy' => [ 'name' => 'GetBucketPolicy', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?policy', ], 'input' => [ 'shape' => 'GetBucketPolicyRequest', ], 'output' => [ 'shape' => 'GetBucketPolicyOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETpolicy.html', ], 'GetBucketReplication' => [ 'name' => 'GetBucketReplication', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?replication', ], 'input' => [ 'shape' => 'GetBucketReplicationRequest', ], 'output' => [ 'shape' => 'GetBucketReplicationOutput', ], ], 'GetBucketRequestPayment' => [ 'name' => 'GetBucketRequestPayment', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?requestPayment', ], 'input' => [ 'shape' => 'GetBucketRequestPaymentRequest', ], 'output' => [ 'shape' => 'GetBucketRequestPaymentOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTrequestPaymentGET.html', ], 'GetBucketTagging' => [ 'name' => 'GetBucketTagging', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?tagging', ], 'input' => [ 'shape' => 'GetBucketTaggingRequest', ], 'output' => [ 'shape' => 'GetBucketTaggingOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETtagging.html', ], 'GetBucketVersioning' => [ 'name' => 'GetBucketVersioning', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?versioning', ], 'input' => [ 'shape' => 'GetBucketVersioningRequest', ], 'output' => [ 'shape' => 'GetBucketVersioningOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETversioningStatus.html', ], 'GetBucketWebsite' => [ 'name' => 'GetBucketWebsite', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?website', ], 'input' => [ 'shape' => 'GetBucketWebsiteRequest', ], 'output' => [ 'shape' => 'GetBucketWebsiteOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETwebsite.html', ], 'GetObject' => [ 'name' => 'GetObject', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'GetObjectRequest', ], 'output' => [ 'shape' => 'GetObjectOutput', ], 'errors' => [ [ 'shape' => 'NoSuchKey', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGET.html', ], 'GetObjectAcl' => [ 'name' => 'GetObjectAcl', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}/{Key+}?acl', ], 'input' => [ 'shape' => 'GetObjectAclRequest', ], 'output' => [ 'shape' => 'GetObjectAclOutput', ], 'errors' => [ [ 'shape' => 'NoSuchKey', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGETacl.html', ], 'GetObjectTorrent' => [ 'name' => 'GetObjectTorrent', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}/{Key+}?torrent', ], 'input' => [ 'shape' => 'GetObjectTorrentRequest', ], 'output' => [ 'shape' => 'GetObjectTorrentOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGETtorrent.html', ], 'HeadBucket' => [ 'name' => 'HeadBucket', 'http' => [ 'method' => 'HEAD', 'requestUri' => '/{Bucket}', ], 'input' => [ 'shape' => 'HeadBucketRequest', ], 'errors' => [ [ 'shape' => 'NoSuchBucket', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketHEAD.html', ], 'HeadObject' => [ 'name' => 'HeadObject', 'http' => [ 'method' => 'HEAD', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'HeadObjectRequest', ], 'output' => [ 'shape' => 'HeadObjectOutput', ], 'errors' => [ [ 'shape' => 'NoSuchKey', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectHEAD.html', ], 'ListBuckets' => [ 'name' => 'ListBuckets', 'http' => [ 'method' => 'GET', 'requestUri' => '/', ], 'output' => [ 'shape' => 'ListBucketsOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTServiceGET.html', 'alias' => 'GetService', ], 'ListMultipartUploads' => [ 'name' => 'ListMultipartUploads', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?uploads', ], 'input' => [ 'shape' => 'ListMultipartUploadsRequest', ], 'output' => [ 'shape' => 'ListMultipartUploadsOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadListMPUpload.html', ], 'ListObjectVersions' => [ 'name' => 'ListObjectVersions', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?versions', ], 'input' => [ 'shape' => 'ListObjectVersionsRequest', ], 'output' => [ 'shape' => 'ListObjectVersionsOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETVersion.html', 'alias' => 'GetBucketObjectVersions', ], 'ListObjects' => [ 'name' => 'ListObjects', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}', ], 'input' => [ 'shape' => 'ListObjectsRequest', ], 'output' => [ 'shape' => 'ListObjectsOutput', ], 'errors' => [ [ 'shape' => 'NoSuchBucket', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGET.html', 'alias' => 'GetBucket', ], 'ListObjectsV2' => [ 'name' => 'ListObjectsV2', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?list-type=2', ], 'input' => [ 'shape' => 'ListObjectsV2Request', ], 'output' => [ 'shape' => 'ListObjectsV2Output', ], 'errors' => [ [ 'shape' => 'NoSuchBucket', ], ], ], 'ListParts' => [ 'name' => 'ListParts', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'ListPartsRequest', ], 'output' => [ 'shape' => 'ListPartsOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadListParts.html', ], 'PutBucketAccelerateConfiguration' => [ 'name' => 'PutBucketAccelerateConfiguration', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?accelerate', ], 'input' => [ 'shape' => 'PutBucketAccelerateConfigurationRequest', ], ], 'PutBucketAcl' => [ 'name' => 'PutBucketAcl', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?acl', ], 'input' => [ 'shape' => 'PutBucketAclRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTacl.html', ], 'PutBucketCors' => [ 'name' => 'PutBucketCors', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?cors', ], 'input' => [ 'shape' => 'PutBucketCorsRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTcors.html', ], 'PutBucketLifecycle' => [ 'name' => 'PutBucketLifecycle', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?lifecycle', ], 'input' => [ 'shape' => 'PutBucketLifecycleRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTlifecycle.html', 'deprecated' => true, ], 'PutBucketLifecycleConfiguration' => [ 'name' => 'PutBucketLifecycleConfiguration', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?lifecycle', ], 'input' => [ 'shape' => 'PutBucketLifecycleConfigurationRequest', ], ], 'PutBucketLogging' => [ 'name' => 'PutBucketLogging', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?logging', ], 'input' => [ 'shape' => 'PutBucketLoggingRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTlogging.html', ], 'PutBucketNotification' => [ 'name' => 'PutBucketNotification', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?notification', ], 'input' => [ 'shape' => 'PutBucketNotificationRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTnotification.html', 'deprecated' => true, ], 'PutBucketNotificationConfiguration' => [ 'name' => 'PutBucketNotificationConfiguration', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?notification', ], 'input' => [ 'shape' => 'PutBucketNotificationConfigurationRequest', ], ], 'PutBucketPolicy' => [ 'name' => 'PutBucketPolicy', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?policy', ], 'input' => [ 'shape' => 'PutBucketPolicyRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTpolicy.html', ], 'PutBucketReplication' => [ 'name' => 'PutBucketReplication', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?replication', ], 'input' => [ 'shape' => 'PutBucketReplicationRequest', ], ], 'PutBucketRequestPayment' => [ 'name' => 'PutBucketRequestPayment', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?requestPayment', ], 'input' => [ 'shape' => 'PutBucketRequestPaymentRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTrequestPaymentPUT.html', ], 'PutBucketTagging' => [ 'name' => 'PutBucketTagging', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?tagging', ], 'input' => [ 'shape' => 'PutBucketTaggingRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTtagging.html', ], 'PutBucketVersioning' => [ 'name' => 'PutBucketVersioning', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?versioning', ], 'input' => [ 'shape' => 'PutBucketVersioningRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTVersioningStatus.html', ], 'PutBucketWebsite' => [ 'name' => 'PutBucketWebsite', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?website', ], 'input' => [ 'shape' => 'PutBucketWebsiteRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTwebsite.html', ], 'PutObject' => [ 'name' => 'PutObject', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'PutObjectRequest', ], 'output' => [ 'shape' => 'PutObjectOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectPUT.html', ], 'PutObjectAcl' => [ 'name' => 'PutObjectAcl', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}/{Key+}?acl', ], 'input' => [ 'shape' => 'PutObjectAclRequest', ], 'output' => [ 'shape' => 'PutObjectAclOutput', ], 'errors' => [ [ 'shape' => 'NoSuchKey', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectPUTacl.html', ], 'RestoreObject' => [ 'name' => 'RestoreObject', 'http' => [ 'method' => 'POST', 'requestUri' => '/{Bucket}/{Key+}?restore', ], 'input' => [ 'shape' => 'RestoreObjectRequest', ], 'output' => [ 'shape' => 'RestoreObjectOutput', ], 'errors' => [ [ 'shape' => 'ObjectAlreadyInActiveTierError', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectRestore.html', 'alias' => 'PostObjectRestore', ], 'UploadPart' => [ 'name' => 'UploadPart', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'UploadPartRequest', ], 'output' => [ 'shape' => 'UploadPartOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadUploadPart.html', ], 'UploadPartCopy' => [ 'name' => 'UploadPartCopy', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'UploadPartCopyRequest', ], 'output' => [ 'shape' => 'UploadPartCopyOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadUploadPartCopy.html', ], ], 'shapes' => [ 'AbortDate' => [ 'type' => 'timestamp', ], 'AbortIncompleteMultipartUpload' => [ 'type' => 'structure', 'members' => [ 'DaysAfterInitiation' => [ 'shape' => 'DaysAfterInitiation', ], ], ], 'AbortMultipartUploadOutput' => [ 'type' => 'structure', 'members' => [ 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'AbortMultipartUploadRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', 'UploadId', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'UploadId' => [ 'shape' => 'MultipartUploadId', 'location' => 'querystring', 'locationName' => 'uploadId', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'AbortRuleId' => [ 'type' => 'string', ], 'AccelerateConfiguration' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'BucketAccelerateStatus', ], ], ], 'AcceptRanges' => [ 'type' => 'string', ], 'AccessControlPolicy' => [ 'type' => 'structure', 'members' => [ 'Grants' => [ 'shape' => 'Grants', 'locationName' => 'AccessControlList', ], 'Owner' => [ 'shape' => 'Owner', ], ], ], 'AllowedHeader' => [ 'type' => 'string', ], 'AllowedHeaders' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedHeader', ], 'flattened' => true, ], 'AllowedMethod' => [ 'type' => 'string', ], 'AllowedMethods' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedMethod', ], 'flattened' => true, ], 'AllowedOrigin' => [ 'type' => 'string', ], 'AllowedOrigins' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedOrigin', ], 'flattened' => true, ], 'Body' => [ 'type' => 'blob', ], 'Bucket' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'BucketName', ], 'CreationDate' => [ 'shape' => 'CreationDate', ], ], ], 'BucketAccelerateStatus' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Suspended', ], ], 'BucketAlreadyExists' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'BucketAlreadyOwnedByYou' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'BucketCannedACL' => [ 'type' => 'string', 'enum' => [ 'private', 'public-read', 'public-read-write', 'authenticated-read', ], ], 'BucketLifecycleConfiguration' => [ 'type' => 'structure', 'required' => [ 'Rules', ], 'members' => [ 'Rules' => [ 'shape' => 'LifecycleRules', 'locationName' => 'Rule', ], ], ], 'BucketLocationConstraint' => [ 'type' => 'string', 'enum' => [ 'EU', 'eu-west-1', 'us-west-1', 'us-west-2', 'ap-south-1', 'ap-southeast-1', 'ap-southeast-2', 'ap-northeast-1', 'sa-east-1', 'cn-north-1', 'eu-central-1', ], ], 'BucketLoggingStatus' => [ 'type' => 'structure', 'members' => [ 'LoggingEnabled' => [ 'shape' => 'LoggingEnabled', ], ], ], 'BucketLogsPermission' => [ 'type' => 'string', 'enum' => [ 'FULL_CONTROL', 'READ', 'WRITE', ], ], 'BucketName' => [ 'type' => 'string', ], 'BucketVersioningStatus' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Suspended', ], ], 'Buckets' => [ 'type' => 'list', 'member' => [ 'shape' => 'Bucket', 'locationName' => 'Bucket', ], ], 'CORSConfiguration' => [ 'type' => 'structure', 'required' => [ 'CORSRules', ], 'members' => [ 'CORSRules' => [ 'shape' => 'CORSRules', 'locationName' => 'CORSRule', ], ], ], 'CORSRule' => [ 'type' => 'structure', 'required' => [ 'AllowedMethods', 'AllowedOrigins', ], 'members' => [ 'AllowedHeaders' => [ 'shape' => 'AllowedHeaders', 'locationName' => 'AllowedHeader', ], 'AllowedMethods' => [ 'shape' => 'AllowedMethods', 'locationName' => 'AllowedMethod', ], 'AllowedOrigins' => [ 'shape' => 'AllowedOrigins', 'locationName' => 'AllowedOrigin', ], 'ExposeHeaders' => [ 'shape' => 'ExposeHeaders', 'locationName' => 'ExposeHeader', ], 'MaxAgeSeconds' => [ 'shape' => 'MaxAgeSeconds', ], ], ], 'CORSRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'CORSRule', ], 'flattened' => true, ], 'CacheControl' => [ 'type' => 'string', ], 'CloudFunction' => [ 'type' => 'string', ], 'CloudFunctionConfiguration' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'NotificationId', ], 'Event' => [ 'shape' => 'Event', 'deprecated' => true, ], 'Events' => [ 'shape' => 'EventList', 'locationName' => 'Event', ], 'CloudFunction' => [ 'shape' => 'CloudFunction', ], 'InvocationRole' => [ 'shape' => 'CloudFunctionInvocationRole', ], ], ], 'CloudFunctionInvocationRole' => [ 'type' => 'string', ], 'Code' => [ 'type' => 'string', ], 'CommonPrefix' => [ 'type' => 'structure', 'members' => [ 'Prefix' => [ 'shape' => 'Prefix', ], ], ], 'CommonPrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CommonPrefix', ], 'flattened' => true, ], 'CompleteMultipartUploadOutput' => [ 'type' => 'structure', 'members' => [ 'Location' => [ 'shape' => 'Location', ], 'Bucket' => [ 'shape' => 'BucketName', ], 'Key' => [ 'shape' => 'ObjectKey', ], 'Expiration' => [ 'shape' => 'Expiration', 'location' => 'header', 'locationName' => 'x-amz-expiration', ], 'ETag' => [ 'shape' => 'ETag', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'header', 'locationName' => 'x-amz-version-id', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'CompleteMultipartUploadRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', 'UploadId', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'MultipartUpload' => [ 'shape' => 'CompletedMultipartUpload', 'locationName' => 'CompleteMultipartUpload', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'UploadId' => [ 'shape' => 'MultipartUploadId', 'location' => 'querystring', 'locationName' => 'uploadId', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], 'payload' => 'MultipartUpload', ], 'CompletedMultipartUpload' => [ 'type' => 'structure', 'members' => [ 'Parts' => [ 'shape' => 'CompletedPartList', 'locationName' => 'Part', ], ], ], 'CompletedPart' => [ 'type' => 'structure', 'members' => [ 'ETag' => [ 'shape' => 'ETag', ], 'PartNumber' => [ 'shape' => 'PartNumber', ], ], ], 'CompletedPartList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CompletedPart', ], 'flattened' => true, ], 'Condition' => [ 'type' => 'structure', 'members' => [ 'HttpErrorCodeReturnedEquals' => [ 'shape' => 'HttpErrorCodeReturnedEquals', ], 'KeyPrefixEquals' => [ 'shape' => 'KeyPrefixEquals', ], ], ], 'ContentDisposition' => [ 'type' => 'string', ], 'ContentEncoding' => [ 'type' => 'string', ], 'ContentLanguage' => [ 'type' => 'string', ], 'ContentLength' => [ 'type' => 'long', ], 'ContentMD5' => [ 'type' => 'string', ], 'ContentRange' => [ 'type' => 'string', ], 'ContentType' => [ 'type' => 'string', ], 'CopyObjectOutput' => [ 'type' => 'structure', 'members' => [ 'CopyObjectResult' => [ 'shape' => 'CopyObjectResult', ], 'Expiration' => [ 'shape' => 'Expiration', 'location' => 'header', 'locationName' => 'x-amz-expiration', ], 'CopySourceVersionId' => [ 'shape' => 'CopySourceVersionId', 'location' => 'header', 'locationName' => 'x-amz-copy-source-version-id', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'header', 'locationName' => 'x-amz-version-id', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], 'payload' => 'CopyObjectResult', ], 'CopyObjectRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'CopySource', 'Key', ], 'members' => [ 'ACL' => [ 'shape' => 'ObjectCannedACL', 'location' => 'header', 'locationName' => 'x-amz-acl', ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'CacheControl' => [ 'shape' => 'CacheControl', 'location' => 'header', 'locationName' => 'Cache-Control', ], 'ContentDisposition' => [ 'shape' => 'ContentDisposition', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'ContentEncoding' => [ 'shape' => 'ContentEncoding', 'location' => 'header', 'locationName' => 'Content-Encoding', ], 'ContentLanguage' => [ 'shape' => 'ContentLanguage', 'location' => 'header', 'locationName' => 'Content-Language', ], 'ContentType' => [ 'shape' => 'ContentType', 'location' => 'header', 'locationName' => 'Content-Type', ], 'CopySource' => [ 'shape' => 'CopySource', 'location' => 'header', 'locationName' => 'x-amz-copy-source', ], 'CopySourceIfMatch' => [ 'shape' => 'CopySourceIfMatch', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-match', ], 'CopySourceIfModifiedSince' => [ 'shape' => 'CopySourceIfModifiedSince', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-modified-since', ], 'CopySourceIfNoneMatch' => [ 'shape' => 'CopySourceIfNoneMatch', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-none-match', ], 'CopySourceIfUnmodifiedSince' => [ 'shape' => 'CopySourceIfUnmodifiedSince', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-unmodified-since', ], 'Expires' => [ 'shape' => 'Expires', 'location' => 'header', 'locationName' => 'Expires', ], 'GrantFullControl' => [ 'shape' => 'GrantFullControl', 'location' => 'header', 'locationName' => 'x-amz-grant-full-control', ], 'GrantRead' => [ 'shape' => 'GrantRead', 'location' => 'header', 'locationName' => 'x-amz-grant-read', ], 'GrantReadACP' => [ 'shape' => 'GrantReadACP', 'location' => 'header', 'locationName' => 'x-amz-grant-read-acp', ], 'GrantWriteACP' => [ 'shape' => 'GrantWriteACP', 'location' => 'header', 'locationName' => 'x-amz-grant-write-acp', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'Metadata' => [ 'shape' => 'Metadata', 'location' => 'headers', 'locationName' => 'x-amz-meta-', ], 'MetadataDirective' => [ 'shape' => 'MetadataDirective', 'location' => 'header', 'locationName' => 'x-amz-metadata-directive', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'StorageClass' => [ 'shape' => 'StorageClass', 'location' => 'header', 'locationName' => 'x-amz-storage-class', ], 'WebsiteRedirectLocation' => [ 'shape' => 'WebsiteRedirectLocation', 'location' => 'header', 'locationName' => 'x-amz-website-redirect-location', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'CopySourceSSECustomerAlgorithm' => [ 'shape' => 'CopySourceSSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-copy-source-server-side-encryption-customer-algorithm', ], 'CopySourceSSECustomerKey' => [ 'shape' => 'CopySourceSSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-copy-source-server-side-encryption-customer-key', ], 'CopySourceSSECustomerKeyMD5' => [ 'shape' => 'CopySourceSSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-copy-source-server-side-encryption-customer-key-MD5', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'CopyObjectResult' => [ 'type' => 'structure', 'members' => [ 'ETag' => [ 'shape' => 'ETag', ], 'LastModified' => [ 'shape' => 'LastModified', ], ], ], 'CopyPartResult' => [ 'type' => 'structure', 'members' => [ 'ETag' => [ 'shape' => 'ETag', ], 'LastModified' => [ 'shape' => 'LastModified', ], ], ], 'CopySource' => [ 'type' => 'string', 'pattern' => '\\/.+\\/.+', ], 'CopySourceIfMatch' => [ 'type' => 'string', ], 'CopySourceIfModifiedSince' => [ 'type' => 'timestamp', ], 'CopySourceIfNoneMatch' => [ 'type' => 'string', ], 'CopySourceIfUnmodifiedSince' => [ 'type' => 'timestamp', ], 'CopySourceRange' => [ 'type' => 'string', ], 'CopySourceSSECustomerAlgorithm' => [ 'type' => 'string', ], 'CopySourceSSECustomerKey' => [ 'type' => 'string', 'sensitive' => true, ], 'CopySourceSSECustomerKeyMD5' => [ 'type' => 'string', ], 'CopySourceVersionId' => [ 'type' => 'string', ], 'CreateBucketConfiguration' => [ 'type' => 'structure', 'members' => [ 'LocationConstraint' => [ 'shape' => 'BucketLocationConstraint', ], ], ], 'CreateBucketOutput' => [ 'type' => 'structure', 'members' => [ 'Location' => [ 'shape' => 'Location', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'CreateBucketRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'ACL' => [ 'shape' => 'BucketCannedACL', 'location' => 'header', 'locationName' => 'x-amz-acl', ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'CreateBucketConfiguration' => [ 'shape' => 'CreateBucketConfiguration', 'locationName' => 'CreateBucketConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'GrantFullControl' => [ 'shape' => 'GrantFullControl', 'location' => 'header', 'locationName' => 'x-amz-grant-full-control', ], 'GrantRead' => [ 'shape' => 'GrantRead', 'location' => 'header', 'locationName' => 'x-amz-grant-read', ], 'GrantReadACP' => [ 'shape' => 'GrantReadACP', 'location' => 'header', 'locationName' => 'x-amz-grant-read-acp', ], 'GrantWrite' => [ 'shape' => 'GrantWrite', 'location' => 'header', 'locationName' => 'x-amz-grant-write', ], 'GrantWriteACP' => [ 'shape' => 'GrantWriteACP', 'location' => 'header', 'locationName' => 'x-amz-grant-write-acp', ], ], 'payload' => 'CreateBucketConfiguration', ], 'CreateMultipartUploadOutput' => [ 'type' => 'structure', 'members' => [ 'AbortDate' => [ 'shape' => 'AbortDate', 'location' => 'header', 'locationName' => 'x-amz-abort-date', ], 'AbortRuleId' => [ 'shape' => 'AbortRuleId', 'location' => 'header', 'locationName' => 'x-amz-abort-rule-id', ], 'Bucket' => [ 'shape' => 'BucketName', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', ], 'UploadId' => [ 'shape' => 'MultipartUploadId', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'CreateMultipartUploadRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'ACL' => [ 'shape' => 'ObjectCannedACL', 'location' => 'header', 'locationName' => 'x-amz-acl', ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'CacheControl' => [ 'shape' => 'CacheControl', 'location' => 'header', 'locationName' => 'Cache-Control', ], 'ContentDisposition' => [ 'shape' => 'ContentDisposition', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'ContentEncoding' => [ 'shape' => 'ContentEncoding', 'location' => 'header', 'locationName' => 'Content-Encoding', ], 'ContentLanguage' => [ 'shape' => 'ContentLanguage', 'location' => 'header', 'locationName' => 'Content-Language', ], 'ContentType' => [ 'shape' => 'ContentType', 'location' => 'header', 'locationName' => 'Content-Type', ], 'Expires' => [ 'shape' => 'Expires', 'location' => 'header', 'locationName' => 'Expires', ], 'GrantFullControl' => [ 'shape' => 'GrantFullControl', 'location' => 'header', 'locationName' => 'x-amz-grant-full-control', ], 'GrantRead' => [ 'shape' => 'GrantRead', 'location' => 'header', 'locationName' => 'x-amz-grant-read', ], 'GrantReadACP' => [ 'shape' => 'GrantReadACP', 'location' => 'header', 'locationName' => 'x-amz-grant-read-acp', ], 'GrantWriteACP' => [ 'shape' => 'GrantWriteACP', 'location' => 'header', 'locationName' => 'x-amz-grant-write-acp', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'Metadata' => [ 'shape' => 'Metadata', 'location' => 'headers', 'locationName' => 'x-amz-meta-', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'StorageClass' => [ 'shape' => 'StorageClass', 'location' => 'header', 'locationName' => 'x-amz-storage-class', ], 'WebsiteRedirectLocation' => [ 'shape' => 'WebsiteRedirectLocation', 'location' => 'header', 'locationName' => 'x-amz-website-redirect-location', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'CreationDate' => [ 'type' => 'timestamp', ], 'Date' => [ 'type' => 'timestamp', 'timestampFormat' => 'iso8601', ], 'Days' => [ 'type' => 'integer', ], 'DaysAfterInitiation' => [ 'type' => 'integer', ], 'Delete' => [ 'type' => 'structure', 'required' => [ 'Objects', ], 'members' => [ 'Objects' => [ 'shape' => 'ObjectIdentifierList', 'locationName' => 'Object', ], 'Quiet' => [ 'shape' => 'Quiet', ], ], ], 'DeleteBucketCorsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteBucketLifecycleRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteBucketPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteBucketReplicationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteBucketRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteBucketTaggingRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteBucketWebsiteRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteMarker' => [ 'type' => 'boolean', ], 'DeleteMarkerEntry' => [ 'type' => 'structure', 'members' => [ 'Owner' => [ 'shape' => 'Owner', ], 'Key' => [ 'shape' => 'ObjectKey', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', ], 'IsLatest' => [ 'shape' => 'IsLatest', ], 'LastModified' => [ 'shape' => 'LastModified', ], ], ], 'DeleteMarkerVersionId' => [ 'type' => 'string', ], 'DeleteMarkers' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeleteMarkerEntry', ], 'flattened' => true, ], 'DeleteObjectOutput' => [ 'type' => 'structure', 'members' => [ 'DeleteMarker' => [ 'shape' => 'DeleteMarker', 'location' => 'header', 'locationName' => 'x-amz-delete-marker', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'header', 'locationName' => 'x-amz-version-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'DeleteObjectRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'MFA' => [ 'shape' => 'MFA', 'location' => 'header', 'locationName' => 'x-amz-mfa', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'querystring', 'locationName' => 'versionId', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'DeleteObjectsOutput' => [ 'type' => 'structure', 'members' => [ 'Deleted' => [ 'shape' => 'DeletedObjects', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], 'Errors' => [ 'shape' => 'Errors', 'locationName' => 'Error', ], ], ], 'DeleteObjectsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Delete', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Delete' => [ 'shape' => 'Delete', 'locationName' => 'Delete', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'MFA' => [ 'shape' => 'MFA', 'location' => 'header', 'locationName' => 'x-amz-mfa', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], 'payload' => 'Delete', ], 'DeletedObject' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'ObjectKey', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', ], 'DeleteMarker' => [ 'shape' => 'DeleteMarker', ], 'DeleteMarkerVersionId' => [ 'shape' => 'DeleteMarkerVersionId', ], ], ], 'DeletedObjects' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeletedObject', ], 'flattened' => true, ], 'Delimiter' => [ 'type' => 'string', ], 'Destination' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', ], 'StorageClass' => [ 'shape' => 'StorageClass', ], ], ], 'DisplayName' => [ 'type' => 'string', ], 'ETag' => [ 'type' => 'string', ], 'EmailAddress' => [ 'type' => 'string', ], 'EncodingType' => [ 'type' => 'string', 'enum' => [ 'url', ], ], 'Error' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'ObjectKey', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', ], 'Code' => [ 'shape' => 'Code', ], 'Message' => [ 'shape' => 'Message', ], ], ], 'ErrorDocument' => [ 'type' => 'structure', 'required' => [ 'Key', ], 'members' => [ 'Key' => [ 'shape' => 'ObjectKey', ], ], ], 'Errors' => [ 'type' => 'list', 'member' => [ 'shape' => 'Error', ], 'flattened' => true, ], 'Event' => [ 'type' => 'string', 'enum' => [ 's3:ReducedRedundancyLostObject', 's3:ObjectCreated:*', 's3:ObjectCreated:Put', 's3:ObjectCreated:Post', 's3:ObjectCreated:Copy', 's3:ObjectCreated:CompleteMultipartUpload', 's3:ObjectRemoved:*', 's3:ObjectRemoved:Delete', 's3:ObjectRemoved:DeleteMarkerCreated', ], ], 'EventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Event', ], 'flattened' => true, ], 'Expiration' => [ 'type' => 'string', ], 'ExpirationStatus' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', ], ], 'ExpiredObjectDeleteMarker' => [ 'type' => 'boolean', ], 'Expires' => [ 'type' => 'timestamp', ], 'ExposeHeader' => [ 'type' => 'string', ], 'ExposeHeaders' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExposeHeader', ], 'flattened' => true, ], 'FetchOwner' => [ 'type' => 'boolean', ], 'FilterRule' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'FilterRuleName', ], 'Value' => [ 'shape' => 'FilterRuleValue', ], ], ], 'FilterRuleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FilterRule', ], 'flattened' => true, ], 'FilterRuleName' => [ 'type' => 'string', 'enum' => [ 'prefix', 'suffix', ], ], 'FilterRuleValue' => [ 'type' => 'string', ], 'GetBucketAccelerateConfigurationOutput' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'BucketAccelerateStatus', ], ], ], 'GetBucketAccelerateConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketAclOutput' => [ 'type' => 'structure', 'members' => [ 'Owner' => [ 'shape' => 'Owner', ], 'Grants' => [ 'shape' => 'Grants', 'locationName' => 'AccessControlList', ], ], ], 'GetBucketAclRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketCorsOutput' => [ 'type' => 'structure', 'members' => [ 'CORSRules' => [ 'shape' => 'CORSRules', 'locationName' => 'CORSRule', ], ], ], 'GetBucketCorsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketLifecycleConfigurationOutput' => [ 'type' => 'structure', 'members' => [ 'Rules' => [ 'shape' => 'LifecycleRules', 'locationName' => 'Rule', ], ], ], 'GetBucketLifecycleConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketLifecycleOutput' => [ 'type' => 'structure', 'members' => [ 'Rules' => [ 'shape' => 'Rules', 'locationName' => 'Rule', ], ], ], 'GetBucketLifecycleRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketLocationOutput' => [ 'type' => 'structure', 'members' => [ 'LocationConstraint' => [ 'shape' => 'BucketLocationConstraint', ], ], ], 'GetBucketLocationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketLoggingOutput' => [ 'type' => 'structure', 'members' => [ 'LoggingEnabled' => [ 'shape' => 'LoggingEnabled', ], ], ], 'GetBucketLoggingRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketNotificationConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketPolicyOutput' => [ 'type' => 'structure', 'members' => [ 'Policy' => [ 'shape' => 'Policy', ], ], 'payload' => 'Policy', ], 'GetBucketPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketReplicationOutput' => [ 'type' => 'structure', 'members' => [ 'ReplicationConfiguration' => [ 'shape' => 'ReplicationConfiguration', ], ], 'payload' => 'ReplicationConfiguration', ], 'GetBucketReplicationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketRequestPaymentOutput' => [ 'type' => 'structure', 'members' => [ 'Payer' => [ 'shape' => 'Payer', ], ], ], 'GetBucketRequestPaymentRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketTaggingOutput' => [ 'type' => 'structure', 'required' => [ 'TagSet', ], 'members' => [ 'TagSet' => [ 'shape' => 'TagSet', ], ], ], 'GetBucketTaggingRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketVersioningOutput' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'BucketVersioningStatus', ], 'MFADelete' => [ 'shape' => 'MFADeleteStatus', 'locationName' => 'MfaDelete', ], ], ], 'GetBucketVersioningRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketWebsiteOutput' => [ 'type' => 'structure', 'members' => [ 'RedirectAllRequestsTo' => [ 'shape' => 'RedirectAllRequestsTo', ], 'IndexDocument' => [ 'shape' => 'IndexDocument', ], 'ErrorDocument' => [ 'shape' => 'ErrorDocument', ], 'RoutingRules' => [ 'shape' => 'RoutingRules', ], ], ], 'GetBucketWebsiteRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetObjectAclOutput' => [ 'type' => 'structure', 'members' => [ 'Owner' => [ 'shape' => 'Owner', ], 'Grants' => [ 'shape' => 'Grants', 'locationName' => 'AccessControlList', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'GetObjectAclRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'querystring', 'locationName' => 'versionId', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'GetObjectOutput' => [ 'type' => 'structure', 'members' => [ 'Body' => [ 'shape' => 'Body', 'streaming' => true, ], 'DeleteMarker' => [ 'shape' => 'DeleteMarker', 'location' => 'header', 'locationName' => 'x-amz-delete-marker', ], 'AcceptRanges' => [ 'shape' => 'AcceptRanges', 'location' => 'header', 'locationName' => 'accept-ranges', ], 'Expiration' => [ 'shape' => 'Expiration', 'location' => 'header', 'locationName' => 'x-amz-expiration', ], 'Restore' => [ 'shape' => 'Restore', 'location' => 'header', 'locationName' => 'x-amz-restore', ], 'LastModified' => [ 'shape' => 'LastModified', 'location' => 'header', 'locationName' => 'Last-Modified', ], 'ContentLength' => [ 'shape' => 'ContentLength', 'location' => 'header', 'locationName' => 'Content-Length', ], 'ETag' => [ 'shape' => 'ETag', 'location' => 'header', 'locationName' => 'ETag', ], 'MissingMeta' => [ 'shape' => 'MissingMeta', 'location' => 'header', 'locationName' => 'x-amz-missing-meta', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'header', 'locationName' => 'x-amz-version-id', ], 'CacheControl' => [ 'shape' => 'CacheControl', 'location' => 'header', 'locationName' => 'Cache-Control', ], 'ContentDisposition' => [ 'shape' => 'ContentDisposition', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'ContentEncoding' => [ 'shape' => 'ContentEncoding', 'location' => 'header', 'locationName' => 'Content-Encoding', ], 'ContentLanguage' => [ 'shape' => 'ContentLanguage', 'location' => 'header', 'locationName' => 'Content-Language', ], 'ContentRange' => [ 'shape' => 'ContentRange', 'location' => 'header', 'locationName' => 'Content-Range', ], 'ContentType' => [ 'shape' => 'ContentType', 'location' => 'header', 'locationName' => 'Content-Type', ], 'Expires' => [ 'shape' => 'Expires', 'location' => 'header', 'locationName' => 'Expires', ], 'WebsiteRedirectLocation' => [ 'shape' => 'WebsiteRedirectLocation', 'location' => 'header', 'locationName' => 'x-amz-website-redirect-location', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'Metadata' => [ 'shape' => 'Metadata', 'location' => 'headers', 'locationName' => 'x-amz-meta-', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'StorageClass' => [ 'shape' => 'StorageClass', 'location' => 'header', 'locationName' => 'x-amz-storage-class', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], 'ReplicationStatus' => [ 'shape' => 'ReplicationStatus', 'location' => 'header', 'locationName' => 'x-amz-replication-status', ], ], 'payload' => 'Body', ], 'GetObjectRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'IfMatch' => [ 'shape' => 'IfMatch', 'location' => 'header', 'locationName' => 'If-Match', ], 'IfModifiedSince' => [ 'shape' => 'IfModifiedSince', 'location' => 'header', 'locationName' => 'If-Modified-Since', ], 'IfNoneMatch' => [ 'shape' => 'IfNoneMatch', 'location' => 'header', 'locationName' => 'If-None-Match', ], 'IfUnmodifiedSince' => [ 'shape' => 'IfUnmodifiedSince', 'location' => 'header', 'locationName' => 'If-Unmodified-Since', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'Range' => [ 'shape' => 'Range', 'location' => 'header', 'locationName' => 'Range', ], 'ResponseCacheControl' => [ 'shape' => 'ResponseCacheControl', 'location' => 'querystring', 'locationName' => 'response-cache-control', ], 'ResponseContentDisposition' => [ 'shape' => 'ResponseContentDisposition', 'location' => 'querystring', 'locationName' => 'response-content-disposition', ], 'ResponseContentEncoding' => [ 'shape' => 'ResponseContentEncoding', 'location' => 'querystring', 'locationName' => 'response-content-encoding', ], 'ResponseContentLanguage' => [ 'shape' => 'ResponseContentLanguage', 'location' => 'querystring', 'locationName' => 'response-content-language', ], 'ResponseContentType' => [ 'shape' => 'ResponseContentType', 'location' => 'querystring', 'locationName' => 'response-content-type', ], 'ResponseExpires' => [ 'shape' => 'ResponseExpires', 'location' => 'querystring', 'locationName' => 'response-expires', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'querystring', 'locationName' => 'versionId', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'GetObjectTorrentOutput' => [ 'type' => 'structure', 'members' => [ 'Body' => [ 'shape' => 'Body', 'streaming' => true, ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], 'payload' => 'Body', ], 'GetObjectTorrentRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'Grant' => [ 'type' => 'structure', 'members' => [ 'Grantee' => [ 'shape' => 'Grantee', ], 'Permission' => [ 'shape' => 'Permission', ], ], ], 'GrantFullControl' => [ 'type' => 'string', ], 'GrantRead' => [ 'type' => 'string', ], 'GrantReadACP' => [ 'type' => 'string', ], 'GrantWrite' => [ 'type' => 'string', ], 'GrantWriteACP' => [ 'type' => 'string', ], 'Grantee' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'DisplayName' => [ 'shape' => 'DisplayName', ], 'EmailAddress' => [ 'shape' => 'EmailAddress', ], 'ID' => [ 'shape' => 'ID', ], 'Type' => [ 'shape' => 'Type', 'locationName' => 'xsi:type', 'xmlAttribute' => true, ], 'URI' => [ 'shape' => 'URI', ], ], 'xmlNamespace' => [ 'prefix' => 'xsi', 'uri' => 'http://www.w3.org/2001/XMLSchema-instance', ], ], 'Grants' => [ 'type' => 'list', 'member' => [ 'shape' => 'Grant', 'locationName' => 'Grant', ], ], 'HeadBucketRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'HeadObjectOutput' => [ 'type' => 'structure', 'members' => [ 'DeleteMarker' => [ 'shape' => 'DeleteMarker', 'location' => 'header', 'locationName' => 'x-amz-delete-marker', ], 'AcceptRanges' => [ 'shape' => 'AcceptRanges', 'location' => 'header', 'locationName' => 'accept-ranges', ], 'Expiration' => [ 'shape' => 'Expiration', 'location' => 'header', 'locationName' => 'x-amz-expiration', ], 'Restore' => [ 'shape' => 'Restore', 'location' => 'header', 'locationName' => 'x-amz-restore', ], 'LastModified' => [ 'shape' => 'LastModified', 'location' => 'header', 'locationName' => 'Last-Modified', ], 'ContentLength' => [ 'shape' => 'ContentLength', 'location' => 'header', 'locationName' => 'Content-Length', ], 'ETag' => [ 'shape' => 'ETag', 'location' => 'header', 'locationName' => 'ETag', ], 'MissingMeta' => [ 'shape' => 'MissingMeta', 'location' => 'header', 'locationName' => 'x-amz-missing-meta', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'header', 'locationName' => 'x-amz-version-id', ], 'CacheControl' => [ 'shape' => 'CacheControl', 'location' => 'header', 'locationName' => 'Cache-Control', ], 'ContentDisposition' => [ 'shape' => 'ContentDisposition', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'ContentEncoding' => [ 'shape' => 'ContentEncoding', 'location' => 'header', 'locationName' => 'Content-Encoding', ], 'ContentLanguage' => [ 'shape' => 'ContentLanguage', 'location' => 'header', 'locationName' => 'Content-Language', ], 'ContentType' => [ 'shape' => 'ContentType', 'location' => 'header', 'locationName' => 'Content-Type', ], 'Expires' => [ 'shape' => 'Expires', 'location' => 'header', 'locationName' => 'Expires', ], 'WebsiteRedirectLocation' => [ 'shape' => 'WebsiteRedirectLocation', 'location' => 'header', 'locationName' => 'x-amz-website-redirect-location', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'Metadata' => [ 'shape' => 'Metadata', 'location' => 'headers', 'locationName' => 'x-amz-meta-', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'StorageClass' => [ 'shape' => 'StorageClass', 'location' => 'header', 'locationName' => 'x-amz-storage-class', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], 'ReplicationStatus' => [ 'shape' => 'ReplicationStatus', 'location' => 'header', 'locationName' => 'x-amz-replication-status', ], ], ], 'HeadObjectRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'IfMatch' => [ 'shape' => 'IfMatch', 'location' => 'header', 'locationName' => 'If-Match', ], 'IfModifiedSince' => [ 'shape' => 'IfModifiedSince', 'location' => 'header', 'locationName' => 'If-Modified-Since', ], 'IfNoneMatch' => [ 'shape' => 'IfNoneMatch', 'location' => 'header', 'locationName' => 'If-None-Match', ], 'IfUnmodifiedSince' => [ 'shape' => 'IfUnmodifiedSince', 'location' => 'header', 'locationName' => 'If-Unmodified-Since', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'Range' => [ 'shape' => 'Range', 'location' => 'header', 'locationName' => 'Range', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'querystring', 'locationName' => 'versionId', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'HostName' => [ 'type' => 'string', ], 'HttpErrorCodeReturnedEquals' => [ 'type' => 'string', ], 'HttpRedirectCode' => [ 'type' => 'string', ], 'ID' => [ 'type' => 'string', ], 'IfMatch' => [ 'type' => 'string', ], 'IfModifiedSince' => [ 'type' => 'timestamp', ], 'IfNoneMatch' => [ 'type' => 'string', ], 'IfUnmodifiedSince' => [ 'type' => 'timestamp', ], 'IndexDocument' => [ 'type' => 'structure', 'required' => [ 'Suffix', ], 'members' => [ 'Suffix' => [ 'shape' => 'Suffix', ], ], ], 'Initiated' => [ 'type' => 'timestamp', ], 'Initiator' => [ 'type' => 'structure', 'members' => [ 'ID' => [ 'shape' => 'ID', ], 'DisplayName' => [ 'shape' => 'DisplayName', ], ], ], 'IsLatest' => [ 'type' => 'boolean', ], 'IsTruncated' => [ 'type' => 'boolean', ], 'KeyCount' => [ 'type' => 'integer', ], 'KeyMarker' => [ 'type' => 'string', ], 'KeyPrefixEquals' => [ 'type' => 'string', ], 'LambdaFunctionArn' => [ 'type' => 'string', ], 'LambdaFunctionConfiguration' => [ 'type' => 'structure', 'required' => [ 'LambdaFunctionArn', 'Events', ], 'members' => [ 'Id' => [ 'shape' => 'NotificationId', ], 'LambdaFunctionArn' => [ 'shape' => 'LambdaFunctionArn', 'locationName' => 'CloudFunction', ], 'Events' => [ 'shape' => 'EventList', 'locationName' => 'Event', ], 'Filter' => [ 'shape' => 'NotificationConfigurationFilter', ], ], ], 'LambdaFunctionConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LambdaFunctionConfiguration', ], 'flattened' => true, ], 'LastModified' => [ 'type' => 'timestamp', ], 'LifecycleConfiguration' => [ 'type' => 'structure', 'required' => [ 'Rules', ], 'members' => [ 'Rules' => [ 'shape' => 'Rules', 'locationName' => 'Rule', ], ], ], 'LifecycleExpiration' => [ 'type' => 'structure', 'members' => [ 'Date' => [ 'shape' => 'Date', ], 'Days' => [ 'shape' => 'Days', ], 'ExpiredObjectDeleteMarker' => [ 'shape' => 'ExpiredObjectDeleteMarker', ], ], ], 'LifecycleRule' => [ 'type' => 'structure', 'required' => [ 'Prefix', 'Status', ], 'members' => [ 'Expiration' => [ 'shape' => 'LifecycleExpiration', ], 'ID' => [ 'shape' => 'ID', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Status' => [ 'shape' => 'ExpirationStatus', ], 'Transitions' => [ 'shape' => 'TransitionList', 'locationName' => 'Transition', ], 'NoncurrentVersionTransitions' => [ 'shape' => 'NoncurrentVersionTransitionList', 'locationName' => 'NoncurrentVersionTransition', ], 'NoncurrentVersionExpiration' => [ 'shape' => 'NoncurrentVersionExpiration', ], 'AbortIncompleteMultipartUpload' => [ 'shape' => 'AbortIncompleteMultipartUpload', ], ], ], 'LifecycleRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'LifecycleRule', ], 'flattened' => true, ], 'ListBucketsOutput' => [ 'type' => 'structure', 'members' => [ 'Buckets' => [ 'shape' => 'Buckets', ], 'Owner' => [ 'shape' => 'Owner', ], ], ], 'ListMultipartUploadsOutput' => [ 'type' => 'structure', 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', ], 'KeyMarker' => [ 'shape' => 'KeyMarker', ], 'UploadIdMarker' => [ 'shape' => 'UploadIdMarker', ], 'NextKeyMarker' => [ 'shape' => 'NextKeyMarker', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Delimiter' => [ 'shape' => 'Delimiter', ], 'NextUploadIdMarker' => [ 'shape' => 'NextUploadIdMarker', ], 'MaxUploads' => [ 'shape' => 'MaxUploads', ], 'IsTruncated' => [ 'shape' => 'IsTruncated', ], 'Uploads' => [ 'shape' => 'MultipartUploadList', 'locationName' => 'Upload', ], 'CommonPrefixes' => [ 'shape' => 'CommonPrefixList', ], 'EncodingType' => [ 'shape' => 'EncodingType', ], ], ], 'ListMultipartUploadsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Delimiter' => [ 'shape' => 'Delimiter', 'location' => 'querystring', 'locationName' => 'delimiter', ], 'EncodingType' => [ 'shape' => 'EncodingType', 'location' => 'querystring', 'locationName' => 'encoding-type', ], 'KeyMarker' => [ 'shape' => 'KeyMarker', 'location' => 'querystring', 'locationName' => 'key-marker', ], 'MaxUploads' => [ 'shape' => 'MaxUploads', 'location' => 'querystring', 'locationName' => 'max-uploads', ], 'Prefix' => [ 'shape' => 'Prefix', 'location' => 'querystring', 'locationName' => 'prefix', ], 'UploadIdMarker' => [ 'shape' => 'UploadIdMarker', 'location' => 'querystring', 'locationName' => 'upload-id-marker', ], ], ], 'ListObjectVersionsOutput' => [ 'type' => 'structure', 'members' => [ 'IsTruncated' => [ 'shape' => 'IsTruncated', ], 'KeyMarker' => [ 'shape' => 'KeyMarker', ], 'VersionIdMarker' => [ 'shape' => 'VersionIdMarker', ], 'NextKeyMarker' => [ 'shape' => 'NextKeyMarker', ], 'NextVersionIdMarker' => [ 'shape' => 'NextVersionIdMarker', ], 'Versions' => [ 'shape' => 'ObjectVersionList', 'locationName' => 'Version', ], 'DeleteMarkers' => [ 'shape' => 'DeleteMarkers', 'locationName' => 'DeleteMarker', ], 'Name' => [ 'shape' => 'BucketName', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Delimiter' => [ 'shape' => 'Delimiter', ], 'MaxKeys' => [ 'shape' => 'MaxKeys', ], 'CommonPrefixes' => [ 'shape' => 'CommonPrefixList', ], 'EncodingType' => [ 'shape' => 'EncodingType', ], ], ], 'ListObjectVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Delimiter' => [ 'shape' => 'Delimiter', 'location' => 'querystring', 'locationName' => 'delimiter', ], 'EncodingType' => [ 'shape' => 'EncodingType', 'location' => 'querystring', 'locationName' => 'encoding-type', ], 'KeyMarker' => [ 'shape' => 'KeyMarker', 'location' => 'querystring', 'locationName' => 'key-marker', ], 'MaxKeys' => [ 'shape' => 'MaxKeys', 'location' => 'querystring', 'locationName' => 'max-keys', ], 'Prefix' => [ 'shape' => 'Prefix', 'location' => 'querystring', 'locationName' => 'prefix', ], 'VersionIdMarker' => [ 'shape' => 'VersionIdMarker', 'location' => 'querystring', 'locationName' => 'version-id-marker', ], ], ], 'ListObjectsOutput' => [ 'type' => 'structure', 'members' => [ 'IsTruncated' => [ 'shape' => 'IsTruncated', ], 'Marker' => [ 'shape' => 'Marker', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Contents' => [ 'shape' => 'ObjectList', ], 'Name' => [ 'shape' => 'BucketName', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Delimiter' => [ 'shape' => 'Delimiter', ], 'MaxKeys' => [ 'shape' => 'MaxKeys', ], 'CommonPrefixes' => [ 'shape' => 'CommonPrefixList', ], 'EncodingType' => [ 'shape' => 'EncodingType', ], ], ], 'ListObjectsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Delimiter' => [ 'shape' => 'Delimiter', 'location' => 'querystring', 'locationName' => 'delimiter', ], 'EncodingType' => [ 'shape' => 'EncodingType', 'location' => 'querystring', 'locationName' => 'encoding-type', ], 'Marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'MaxKeys' => [ 'shape' => 'MaxKeys', 'location' => 'querystring', 'locationName' => 'max-keys', ], 'Prefix' => [ 'shape' => 'Prefix', 'location' => 'querystring', 'locationName' => 'prefix', ], ], ], 'ListObjectsV2Output' => [ 'type' => 'structure', 'members' => [ 'IsTruncated' => [ 'shape' => 'IsTruncated', ], 'Contents' => [ 'shape' => 'ObjectList', ], 'Name' => [ 'shape' => 'BucketName', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Delimiter' => [ 'shape' => 'Delimiter', ], 'MaxKeys' => [ 'shape' => 'MaxKeys', ], 'CommonPrefixes' => [ 'shape' => 'CommonPrefixList', ], 'EncodingType' => [ 'shape' => 'EncodingType', ], 'KeyCount' => [ 'shape' => 'KeyCount', ], 'ContinuationToken' => [ 'shape' => 'Token', ], 'NextContinuationToken' => [ 'shape' => 'NextToken', ], 'StartAfter' => [ 'shape' => 'StartAfter', ], ], ], 'ListObjectsV2Request' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Delimiter' => [ 'shape' => 'Delimiter', 'location' => 'querystring', 'locationName' => 'delimiter', ], 'EncodingType' => [ 'shape' => 'EncodingType', 'location' => 'querystring', 'locationName' => 'encoding-type', ], 'MaxKeys' => [ 'shape' => 'MaxKeys', 'location' => 'querystring', 'locationName' => 'max-keys', ], 'Prefix' => [ 'shape' => 'Prefix', 'location' => 'querystring', 'locationName' => 'prefix', ], 'ContinuationToken' => [ 'shape' => 'Token', 'location' => 'querystring', 'locationName' => 'continuation-token', ], 'FetchOwner' => [ 'shape' => 'FetchOwner', 'location' => 'querystring', 'locationName' => 'fetch-owner', ], 'StartAfter' => [ 'shape' => 'StartAfter', 'location' => 'querystring', 'locationName' => 'start-after', ], ], ], 'ListPartsOutput' => [ 'type' => 'structure', 'members' => [ 'AbortDate' => [ 'shape' => 'AbortDate', 'location' => 'header', 'locationName' => 'x-amz-abort-date', ], 'AbortRuleId' => [ 'shape' => 'AbortRuleId', 'location' => 'header', 'locationName' => 'x-amz-abort-rule-id', ], 'Bucket' => [ 'shape' => 'BucketName', ], 'Key' => [ 'shape' => 'ObjectKey', ], 'UploadId' => [ 'shape' => 'MultipartUploadId', ], 'PartNumberMarker' => [ 'shape' => 'PartNumberMarker', ], 'NextPartNumberMarker' => [ 'shape' => 'NextPartNumberMarker', ], 'MaxParts' => [ 'shape' => 'MaxParts', ], 'IsTruncated' => [ 'shape' => 'IsTruncated', ], 'Parts' => [ 'shape' => 'Parts', 'locationName' => 'Part', ], 'Initiator' => [ 'shape' => 'Initiator', ], 'Owner' => [ 'shape' => 'Owner', ], 'StorageClass' => [ 'shape' => 'StorageClass', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'ListPartsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', 'UploadId', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'MaxParts' => [ 'shape' => 'MaxParts', 'location' => 'querystring', 'locationName' => 'max-parts', ], 'PartNumberMarker' => [ 'shape' => 'PartNumberMarker', 'location' => 'querystring', 'locationName' => 'part-number-marker', ], 'UploadId' => [ 'shape' => 'MultipartUploadId', 'location' => 'querystring', 'locationName' => 'uploadId', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'Location' => [ 'type' => 'string', ], 'LoggingEnabled' => [ 'type' => 'structure', 'members' => [ 'TargetBucket' => [ 'shape' => 'TargetBucket', ], 'TargetGrants' => [ 'shape' => 'TargetGrants', ], 'TargetPrefix' => [ 'shape' => 'TargetPrefix', ], ], ], 'MFA' => [ 'type' => 'string', ], 'MFADelete' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', ], ], 'MFADeleteStatus' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', ], ], 'Marker' => [ 'type' => 'string', ], 'MaxAgeSeconds' => [ 'type' => 'integer', ], 'MaxKeys' => [ 'type' => 'integer', ], 'MaxParts' => [ 'type' => 'integer', ], 'MaxUploads' => [ 'type' => 'integer', ], 'Message' => [ 'type' => 'string', ], 'Metadata' => [ 'type' => 'map', 'key' => [ 'shape' => 'MetadataKey', ], 'value' => [ 'shape' => 'MetadataValue', ], ], 'MetadataDirective' => [ 'type' => 'string', 'enum' => [ 'COPY', 'REPLACE', ], ], 'MetadataKey' => [ 'type' => 'string', ], 'MetadataValue' => [ 'type' => 'string', ], 'MissingMeta' => [ 'type' => 'integer', ], 'MultipartUpload' => [ 'type' => 'structure', 'members' => [ 'UploadId' => [ 'shape' => 'MultipartUploadId', ], 'Key' => [ 'shape' => 'ObjectKey', ], 'Initiated' => [ 'shape' => 'Initiated', ], 'StorageClass' => [ 'shape' => 'StorageClass', ], 'Owner' => [ 'shape' => 'Owner', ], 'Initiator' => [ 'shape' => 'Initiator', ], ], ], 'MultipartUploadId' => [ 'type' => 'string', ], 'MultipartUploadList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MultipartUpload', ], 'flattened' => true, ], 'NextKeyMarker' => [ 'type' => 'string', ], 'NextMarker' => [ 'type' => 'string', ], 'NextPartNumberMarker' => [ 'type' => 'integer', ], 'NextToken' => [ 'type' => 'string', ], 'NextUploadIdMarker' => [ 'type' => 'string', ], 'NextVersionIdMarker' => [ 'type' => 'string', ], 'NoSuchBucket' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoSuchKey' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoSuchUpload' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoncurrentVersionExpiration' => [ 'type' => 'structure', 'members' => [ 'NoncurrentDays' => [ 'shape' => 'Days', ], ], ], 'NoncurrentVersionTransition' => [ 'type' => 'structure', 'members' => [ 'NoncurrentDays' => [ 'shape' => 'Days', ], 'StorageClass' => [ 'shape' => 'TransitionStorageClass', ], ], ], 'NoncurrentVersionTransitionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NoncurrentVersionTransition', ], 'flattened' => true, ], 'NotificationConfiguration' => [ 'type' => 'structure', 'members' => [ 'TopicConfigurations' => [ 'shape' => 'TopicConfigurationList', 'locationName' => 'TopicConfiguration', ], 'QueueConfigurations' => [ 'shape' => 'QueueConfigurationList', 'locationName' => 'QueueConfiguration', ], 'LambdaFunctionConfigurations' => [ 'shape' => 'LambdaFunctionConfigurationList', 'locationName' => 'CloudFunctionConfiguration', ], ], ], 'NotificationConfigurationDeprecated' => [ 'type' => 'structure', 'members' => [ 'TopicConfiguration' => [ 'shape' => 'TopicConfigurationDeprecated', ], 'QueueConfiguration' => [ 'shape' => 'QueueConfigurationDeprecated', ], 'CloudFunctionConfiguration' => [ 'shape' => 'CloudFunctionConfiguration', ], ], ], 'NotificationConfigurationFilter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'S3KeyFilter', 'locationName' => 'S3Key', ], ], ], 'NotificationId' => [ 'type' => 'string', ], 'Object' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'ObjectKey', ], 'LastModified' => [ 'shape' => 'LastModified', ], 'ETag' => [ 'shape' => 'ETag', ], 'Size' => [ 'shape' => 'Size', ], 'StorageClass' => [ 'shape' => 'ObjectStorageClass', ], 'Owner' => [ 'shape' => 'Owner', ], ], ], 'ObjectAlreadyInActiveTierError' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ObjectCannedACL' => [ 'type' => 'string', 'enum' => [ 'private', 'public-read', 'public-read-write', 'authenticated-read', 'aws-exec-read', 'bucket-owner-read', 'bucket-owner-full-control', ], ], 'ObjectIdentifier' => [ 'type' => 'structure', 'required' => [ 'Key', ], 'members' => [ 'Key' => [ 'shape' => 'ObjectKey', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', ], ], ], 'ObjectIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ObjectIdentifier', ], 'flattened' => true, ], 'ObjectKey' => [ 'type' => 'string', 'min' => 1, ], 'ObjectList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Object', ], 'flattened' => true, ], 'ObjectNotInActiveTierError' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ObjectStorageClass' => [ 'type' => 'string', 'enum' => [ 'STANDARD', 'REDUCED_REDUNDANCY', 'GLACIER', ], ], 'ObjectVersion' => [ 'type' => 'structure', 'members' => [ 'ETag' => [ 'shape' => 'ETag', ], 'Size' => [ 'shape' => 'Size', ], 'StorageClass' => [ 'shape' => 'ObjectVersionStorageClass', ], 'Key' => [ 'shape' => 'ObjectKey', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', ], 'IsLatest' => [ 'shape' => 'IsLatest', ], 'LastModified' => [ 'shape' => 'LastModified', ], 'Owner' => [ 'shape' => 'Owner', ], ], ], 'ObjectVersionId' => [ 'type' => 'string', ], 'ObjectVersionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ObjectVersion', ], 'flattened' => true, ], 'ObjectVersionStorageClass' => [ 'type' => 'string', 'enum' => [ 'STANDARD', ], ], 'Owner' => [ 'type' => 'structure', 'members' => [ 'DisplayName' => [ 'shape' => 'DisplayName', ], 'ID' => [ 'shape' => 'ID', ], ], ], 'Part' => [ 'type' => 'structure', 'members' => [ 'PartNumber' => [ 'shape' => 'PartNumber', ], 'LastModified' => [ 'shape' => 'LastModified', ], 'ETag' => [ 'shape' => 'ETag', ], 'Size' => [ 'shape' => 'Size', ], ], ], 'PartNumber' => [ 'type' => 'integer', ], 'PartNumberMarker' => [ 'type' => 'integer', ], 'Parts' => [ 'type' => 'list', 'member' => [ 'shape' => 'Part', ], 'flattened' => true, ], 'Payer' => [ 'type' => 'string', 'enum' => [ 'Requester', 'BucketOwner', ], ], 'Permission' => [ 'type' => 'string', 'enum' => [ 'FULL_CONTROL', 'WRITE', 'WRITE_ACP', 'READ', 'READ_ACP', ], ], 'Policy' => [ 'type' => 'string', ], 'Prefix' => [ 'type' => 'string', ], 'Protocol' => [ 'type' => 'string', 'enum' => [ 'http', 'https', ], ], 'PutBucketAccelerateConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'AccelerateConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'AccelerateConfiguration' => [ 'shape' => 'AccelerateConfiguration', 'locationName' => 'AccelerateConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'AccelerateConfiguration', ], 'PutBucketAclRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'ACL' => [ 'shape' => 'BucketCannedACL', 'location' => 'header', 'locationName' => 'x-amz-acl', ], 'AccessControlPolicy' => [ 'shape' => 'AccessControlPolicy', 'locationName' => 'AccessControlPolicy', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'GrantFullControl' => [ 'shape' => 'GrantFullControl', 'location' => 'header', 'locationName' => 'x-amz-grant-full-control', ], 'GrantRead' => [ 'shape' => 'GrantRead', 'location' => 'header', 'locationName' => 'x-amz-grant-read', ], 'GrantReadACP' => [ 'shape' => 'GrantReadACP', 'location' => 'header', 'locationName' => 'x-amz-grant-read-acp', ], 'GrantWrite' => [ 'shape' => 'GrantWrite', 'location' => 'header', 'locationName' => 'x-amz-grant-write', ], 'GrantWriteACP' => [ 'shape' => 'GrantWriteACP', 'location' => 'header', 'locationName' => 'x-amz-grant-write-acp', ], ], 'payload' => 'AccessControlPolicy', ], 'PutBucketCorsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'CORSConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'CORSConfiguration' => [ 'shape' => 'CORSConfiguration', 'locationName' => 'CORSConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], ], 'payload' => 'CORSConfiguration', ], 'PutBucketLifecycleConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'LifecycleConfiguration' => [ 'shape' => 'BucketLifecycleConfiguration', 'locationName' => 'LifecycleConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'LifecycleConfiguration', ], 'PutBucketLifecycleRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'LifecycleConfiguration' => [ 'shape' => 'LifecycleConfiguration', 'locationName' => 'LifecycleConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'LifecycleConfiguration', ], 'PutBucketLoggingRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'BucketLoggingStatus', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'BucketLoggingStatus' => [ 'shape' => 'BucketLoggingStatus', 'locationName' => 'BucketLoggingStatus', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], ], 'payload' => 'BucketLoggingStatus', ], 'PutBucketNotificationConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'NotificationConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'NotificationConfiguration' => [ 'shape' => 'NotificationConfiguration', 'locationName' => 'NotificationConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'NotificationConfiguration', ], 'PutBucketNotificationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'NotificationConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'NotificationConfiguration' => [ 'shape' => 'NotificationConfigurationDeprecated', 'locationName' => 'NotificationConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'NotificationConfiguration', ], 'PutBucketPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Policy', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'Policy' => [ 'shape' => 'Policy', ], ], 'payload' => 'Policy', ], 'PutBucketReplicationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'ReplicationConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'ReplicationConfiguration' => [ 'shape' => 'ReplicationConfiguration', 'locationName' => 'ReplicationConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'ReplicationConfiguration', ], 'PutBucketRequestPaymentRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'RequestPaymentConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'RequestPaymentConfiguration' => [ 'shape' => 'RequestPaymentConfiguration', 'locationName' => 'RequestPaymentConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'RequestPaymentConfiguration', ], 'PutBucketTaggingRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Tagging', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'Tagging' => [ 'shape' => 'Tagging', 'locationName' => 'Tagging', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'Tagging', ], 'PutBucketVersioningRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'VersioningConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'MFA' => [ 'shape' => 'MFA', 'location' => 'header', 'locationName' => 'x-amz-mfa', ], 'VersioningConfiguration' => [ 'shape' => 'VersioningConfiguration', 'locationName' => 'VersioningConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'VersioningConfiguration', ], 'PutBucketWebsiteRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'WebsiteConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'WebsiteConfiguration' => [ 'shape' => 'WebsiteConfiguration', 'locationName' => 'WebsiteConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'WebsiteConfiguration', ], 'PutObjectAclOutput' => [ 'type' => 'structure', 'members' => [ 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'PutObjectAclRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'ACL' => [ 'shape' => 'ObjectCannedACL', 'location' => 'header', 'locationName' => 'x-amz-acl', ], 'AccessControlPolicy' => [ 'shape' => 'AccessControlPolicy', 'locationName' => 'AccessControlPolicy', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'GrantFullControl' => [ 'shape' => 'GrantFullControl', 'location' => 'header', 'locationName' => 'x-amz-grant-full-control', ], 'GrantRead' => [ 'shape' => 'GrantRead', 'location' => 'header', 'locationName' => 'x-amz-grant-read', ], 'GrantReadACP' => [ 'shape' => 'GrantReadACP', 'location' => 'header', 'locationName' => 'x-amz-grant-read-acp', ], 'GrantWrite' => [ 'shape' => 'GrantWrite', 'location' => 'header', 'locationName' => 'x-amz-grant-write', ], 'GrantWriteACP' => [ 'shape' => 'GrantWriteACP', 'location' => 'header', 'locationName' => 'x-amz-grant-write-acp', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'querystring', 'locationName' => 'versionId', ], ], 'payload' => 'AccessControlPolicy', ], 'PutObjectOutput' => [ 'type' => 'structure', 'members' => [ 'Expiration' => [ 'shape' => 'Expiration', 'location' => 'header', 'locationName' => 'x-amz-expiration', ], 'ETag' => [ 'shape' => 'ETag', 'location' => 'header', 'locationName' => 'ETag', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'header', 'locationName' => 'x-amz-version-id', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'PutObjectRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'ACL' => [ 'shape' => 'ObjectCannedACL', 'location' => 'header', 'locationName' => 'x-amz-acl', ], 'Body' => [ 'shape' => 'Body', 'streaming' => true, ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'CacheControl' => [ 'shape' => 'CacheControl', 'location' => 'header', 'locationName' => 'Cache-Control', ], 'ContentDisposition' => [ 'shape' => 'ContentDisposition', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'ContentEncoding' => [ 'shape' => 'ContentEncoding', 'location' => 'header', 'locationName' => 'Content-Encoding', ], 'ContentLanguage' => [ 'shape' => 'ContentLanguage', 'location' => 'header', 'locationName' => 'Content-Language', ], 'ContentLength' => [ 'shape' => 'ContentLength', 'location' => 'header', 'locationName' => 'Content-Length', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'ContentType' => [ 'shape' => 'ContentType', 'location' => 'header', 'locationName' => 'Content-Type', ], 'Expires' => [ 'shape' => 'Expires', 'location' => 'header', 'locationName' => 'Expires', ], 'GrantFullControl' => [ 'shape' => 'GrantFullControl', 'location' => 'header', 'locationName' => 'x-amz-grant-full-control', ], 'GrantRead' => [ 'shape' => 'GrantRead', 'location' => 'header', 'locationName' => 'x-amz-grant-read', ], 'GrantReadACP' => [ 'shape' => 'GrantReadACP', 'location' => 'header', 'locationName' => 'x-amz-grant-read-acp', ], 'GrantWriteACP' => [ 'shape' => 'GrantWriteACP', 'location' => 'header', 'locationName' => 'x-amz-grant-write-acp', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'Metadata' => [ 'shape' => 'Metadata', 'location' => 'headers', 'locationName' => 'x-amz-meta-', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'StorageClass' => [ 'shape' => 'StorageClass', 'location' => 'header', 'locationName' => 'x-amz-storage-class', ], 'WebsiteRedirectLocation' => [ 'shape' => 'WebsiteRedirectLocation', 'location' => 'header', 'locationName' => 'x-amz-website-redirect-location', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], 'payload' => 'Body', ], 'QueueArn' => [ 'type' => 'string', ], 'QueueConfiguration' => [ 'type' => 'structure', 'required' => [ 'QueueArn', 'Events', ], 'members' => [ 'Id' => [ 'shape' => 'NotificationId', ], 'QueueArn' => [ 'shape' => 'QueueArn', 'locationName' => 'Queue', ], 'Events' => [ 'shape' => 'EventList', 'locationName' => 'Event', ], 'Filter' => [ 'shape' => 'NotificationConfigurationFilter', ], ], ], 'QueueConfigurationDeprecated' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'NotificationId', ], 'Event' => [ 'shape' => 'Event', 'deprecated' => true, ], 'Events' => [ 'shape' => 'EventList', 'locationName' => 'Event', ], 'Queue' => [ 'shape' => 'QueueArn', ], ], ], 'QueueConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'QueueConfiguration', ], 'flattened' => true, ], 'Quiet' => [ 'type' => 'boolean', ], 'Range' => [ 'type' => 'string', ], 'Redirect' => [ 'type' => 'structure', 'members' => [ 'HostName' => [ 'shape' => 'HostName', ], 'HttpRedirectCode' => [ 'shape' => 'HttpRedirectCode', ], 'Protocol' => [ 'shape' => 'Protocol', ], 'ReplaceKeyPrefixWith' => [ 'shape' => 'ReplaceKeyPrefixWith', ], 'ReplaceKeyWith' => [ 'shape' => 'ReplaceKeyWith', ], ], ], 'RedirectAllRequestsTo' => [ 'type' => 'structure', 'required' => [ 'HostName', ], 'members' => [ 'HostName' => [ 'shape' => 'HostName', ], 'Protocol' => [ 'shape' => 'Protocol', ], ], ], 'ReplaceKeyPrefixWith' => [ 'type' => 'string', ], 'ReplaceKeyWith' => [ 'type' => 'string', ], 'ReplicationConfiguration' => [ 'type' => 'structure', 'required' => [ 'Role', 'Rules', ], 'members' => [ 'Role' => [ 'shape' => 'Role', ], 'Rules' => [ 'shape' => 'ReplicationRules', 'locationName' => 'Rule', ], ], ], 'ReplicationRule' => [ 'type' => 'structure', 'required' => [ 'Prefix', 'Status', 'Destination', ], 'members' => [ 'ID' => [ 'shape' => 'ID', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Status' => [ 'shape' => 'ReplicationRuleStatus', ], 'Destination' => [ 'shape' => 'Destination', ], ], ], 'ReplicationRuleStatus' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', ], ], 'ReplicationRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReplicationRule', ], 'flattened' => true, ], 'ReplicationStatus' => [ 'type' => 'string', 'enum' => [ 'COMPLETE', 'PENDING', 'FAILED', 'REPLICA', ], ], 'RequestCharged' => [ 'type' => 'string', 'enum' => [ 'requester', ], ], 'RequestPayer' => [ 'type' => 'string', 'enum' => [ 'requester', ], ], 'RequestPaymentConfiguration' => [ 'type' => 'structure', 'required' => [ 'Payer', ], 'members' => [ 'Payer' => [ 'shape' => 'Payer', ], ], ], 'ResponseCacheControl' => [ 'type' => 'string', ], 'ResponseContentDisposition' => [ 'type' => 'string', ], 'ResponseContentEncoding' => [ 'type' => 'string', ], 'ResponseContentLanguage' => [ 'type' => 'string', ], 'ResponseContentType' => [ 'type' => 'string', ], 'ResponseExpires' => [ 'type' => 'timestamp', ], 'Restore' => [ 'type' => 'string', ], 'RestoreObjectOutput' => [ 'type' => 'structure', 'members' => [ 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'RestoreObjectRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'querystring', 'locationName' => 'versionId', ], 'RestoreRequest' => [ 'shape' => 'RestoreRequest', 'locationName' => 'RestoreRequest', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], 'payload' => 'RestoreRequest', ], 'RestoreRequest' => [ 'type' => 'structure', 'required' => [ 'Days', ], 'members' => [ 'Days' => [ 'shape' => 'Days', ], ], ], 'Role' => [ 'type' => 'string', ], 'RoutingRule' => [ 'type' => 'structure', 'required' => [ 'Redirect', ], 'members' => [ 'Condition' => [ 'shape' => 'Condition', ], 'Redirect' => [ 'shape' => 'Redirect', ], ], ], 'RoutingRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'RoutingRule', 'locationName' => 'RoutingRule', ], ], 'Rule' => [ 'type' => 'structure', 'required' => [ 'Prefix', 'Status', ], 'members' => [ 'Expiration' => [ 'shape' => 'LifecycleExpiration', ], 'ID' => [ 'shape' => 'ID', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Status' => [ 'shape' => 'ExpirationStatus', ], 'Transition' => [ 'shape' => 'Transition', ], 'NoncurrentVersionTransition' => [ 'shape' => 'NoncurrentVersionTransition', ], 'NoncurrentVersionExpiration' => [ 'shape' => 'NoncurrentVersionExpiration', ], 'AbortIncompleteMultipartUpload' => [ 'shape' => 'AbortIncompleteMultipartUpload', ], ], ], 'Rules' => [ 'type' => 'list', 'member' => [ 'shape' => 'Rule', ], 'flattened' => true, ], 'S3KeyFilter' => [ 'type' => 'structure', 'members' => [ 'FilterRules' => [ 'shape' => 'FilterRuleList', 'locationName' => 'FilterRule', ], ], ], 'SSECustomerAlgorithm' => [ 'type' => 'string', ], 'SSECustomerKey' => [ 'type' => 'string', 'sensitive' => true, ], 'SSECustomerKeyMD5' => [ 'type' => 'string', ], 'SSEKMSKeyId' => [ 'type' => 'string', 'sensitive' => true, ], 'ServerSideEncryption' => [ 'type' => 'string', 'enum' => [ 'AES256', 'aws:kms', ], ], 'Size' => [ 'type' => 'integer', ], 'StartAfter' => [ 'type' => 'string', ], 'StorageClass' => [ 'type' => 'string', 'enum' => [ 'STANDARD', 'REDUCED_REDUNDANCY', 'STANDARD_IA', ], ], 'Suffix' => [ 'type' => 'string', ], 'Tag' => [ 'type' => 'structure', 'required' => [ 'Key', 'Value', ], 'members' => [ 'Key' => [ 'shape' => 'ObjectKey', ], 'Value' => [ 'shape' => 'Value', ], ], ], 'TagSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], ], 'Tagging' => [ 'type' => 'structure', 'required' => [ 'TagSet', ], 'members' => [ 'TagSet' => [ 'shape' => 'TagSet', ], ], ], 'TargetBucket' => [ 'type' => 'string', ], 'TargetGrant' => [ 'type' => 'structure', 'members' => [ 'Grantee' => [ 'shape' => 'Grantee', ], 'Permission' => [ 'shape' => 'BucketLogsPermission', ], ], ], 'TargetGrants' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetGrant', 'locationName' => 'Grant', ], ], 'TargetPrefix' => [ 'type' => 'string', ], 'Token' => [ 'type' => 'string', ], 'TopicArn' => [ 'type' => 'string', ], 'TopicConfiguration' => [ 'type' => 'structure', 'required' => [ 'TopicArn', 'Events', ], 'members' => [ 'Id' => [ 'shape' => 'NotificationId', ], 'TopicArn' => [ 'shape' => 'TopicArn', 'locationName' => 'Topic', ], 'Events' => [ 'shape' => 'EventList', 'locationName' => 'Event', ], 'Filter' => [ 'shape' => 'NotificationConfigurationFilter', ], ], ], 'TopicConfigurationDeprecated' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'NotificationId', ], 'Events' => [ 'shape' => 'EventList', 'locationName' => 'Event', ], 'Event' => [ 'shape' => 'Event', 'deprecated' => true, ], 'Topic' => [ 'shape' => 'TopicArn', ], ], ], 'TopicConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TopicConfiguration', ], 'flattened' => true, ], 'Transition' => [ 'type' => 'structure', 'members' => [ 'Date' => [ 'shape' => 'Date', ], 'Days' => [ 'shape' => 'Days', ], 'StorageClass' => [ 'shape' => 'TransitionStorageClass', ], ], ], 'TransitionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Transition', ], 'flattened' => true, ], 'TransitionStorageClass' => [ 'type' => 'string', 'enum' => [ 'GLACIER', 'STANDARD_IA', ], ], 'Type' => [ 'type' => 'string', 'enum' => [ 'CanonicalUser', 'AmazonCustomerByEmail', 'Group', ], ], 'URI' => [ 'type' => 'string', ], 'UploadIdMarker' => [ 'type' => 'string', ], 'UploadPartCopyOutput' => [ 'type' => 'structure', 'members' => [ 'CopySourceVersionId' => [ 'shape' => 'CopySourceVersionId', 'location' => 'header', 'locationName' => 'x-amz-copy-source-version-id', ], 'CopyPartResult' => [ 'shape' => 'CopyPartResult', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], 'payload' => 'CopyPartResult', ], 'UploadPartCopyRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'CopySource', 'Key', 'PartNumber', 'UploadId', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'CopySource' => [ 'shape' => 'CopySource', 'location' => 'header', 'locationName' => 'x-amz-copy-source', ], 'CopySourceIfMatch' => [ 'shape' => 'CopySourceIfMatch', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-match', ], 'CopySourceIfModifiedSince' => [ 'shape' => 'CopySourceIfModifiedSince', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-modified-since', ], 'CopySourceIfNoneMatch' => [ 'shape' => 'CopySourceIfNoneMatch', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-none-match', ], 'CopySourceIfUnmodifiedSince' => [ 'shape' => 'CopySourceIfUnmodifiedSince', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-unmodified-since', ], 'CopySourceRange' => [ 'shape' => 'CopySourceRange', 'location' => 'header', 'locationName' => 'x-amz-copy-source-range', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'PartNumber' => [ 'shape' => 'PartNumber', 'location' => 'querystring', 'locationName' => 'partNumber', ], 'UploadId' => [ 'shape' => 'MultipartUploadId', 'location' => 'querystring', 'locationName' => 'uploadId', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'CopySourceSSECustomerAlgorithm' => [ 'shape' => 'CopySourceSSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-copy-source-server-side-encryption-customer-algorithm', ], 'CopySourceSSECustomerKey' => [ 'shape' => 'CopySourceSSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-copy-source-server-side-encryption-customer-key', ], 'CopySourceSSECustomerKeyMD5' => [ 'shape' => 'CopySourceSSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-copy-source-server-side-encryption-customer-key-MD5', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'UploadPartOutput' => [ 'type' => 'structure', 'members' => [ 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'ETag' => [ 'shape' => 'ETag', 'location' => 'header', 'locationName' => 'ETag', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'UploadPartRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', 'PartNumber', 'UploadId', ], 'members' => [ 'Body' => [ 'shape' => 'Body', 'streaming' => true, ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentLength' => [ 'shape' => 'ContentLength', 'location' => 'header', 'locationName' => 'Content-Length', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'PartNumber' => [ 'shape' => 'PartNumber', 'location' => 'querystring', 'locationName' => 'partNumber', ], 'UploadId' => [ 'shape' => 'MultipartUploadId', 'location' => 'querystring', 'locationName' => 'uploadId', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], 'payload' => 'Body', ], 'Value' => [ 'type' => 'string', ], 'VersionIdMarker' => [ 'type' => 'string', ], 'VersioningConfiguration' => [ 'type' => 'structure', 'members' => [ 'MFADelete' => [ 'shape' => 'MFADelete', 'locationName' => 'MfaDelete', ], 'Status' => [ 'shape' => 'BucketVersioningStatus', ], ], ], 'WebsiteConfiguration' => [ 'type' => 'structure', 'members' => [ 'ErrorDocument' => [ 'shape' => 'ErrorDocument', ], 'IndexDocument' => [ 'shape' => 'IndexDocument', ], 'RedirectAllRequestsTo' => [ 'shape' => 'RedirectAllRequestsTo', ], 'RoutingRules' => [ 'shape' => 'RoutingRules', ], ], ], 'WebsiteRedirectLocation' => [ 'type' => 'string', ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2006-03-01', 'checksumFormat' => 'md5', 'endpointPrefix' => 's3', 'globalEndpoint' => 's3.amazonaws.com', 'protocol' => 'rest-xml', 'serviceAbbreviation' => 'Amazon S3', 'serviceFullName' => 'Amazon Simple Storage Service', 'signatureVersion' => 's3', 'timestampFormat' => 'rfc822', ], 'operations' => [ 'AbortMultipartUpload' => [ 'name' => 'AbortMultipartUpload', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'AbortMultipartUploadRequest', ], 'output' => [ 'shape' => 'AbortMultipartUploadOutput', ], 'errors' => [ [ 'shape' => 'NoSuchUpload', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadAbort.html', ], 'CompleteMultipartUpload' => [ 'name' => 'CompleteMultipartUpload', 'http' => [ 'method' => 'POST', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'CompleteMultipartUploadRequest', ], 'output' => [ 'shape' => 'CompleteMultipartUploadOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadComplete.html', ], 'CopyObject' => [ 'name' => 'CopyObject', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'CopyObjectRequest', ], 'output' => [ 'shape' => 'CopyObjectOutput', ], 'errors' => [ [ 'shape' => 'ObjectNotInActiveTierError', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectCOPY.html', 'alias' => 'PutObjectCopy', ], 'CreateBucket' => [ 'name' => 'CreateBucket', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}', ], 'input' => [ 'shape' => 'CreateBucketRequest', ], 'output' => [ 'shape' => 'CreateBucketOutput', ], 'errors' => [ [ 'shape' => 'BucketAlreadyExists', ], [ 'shape' => 'BucketAlreadyOwnedByYou', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUT.html', 'alias' => 'PutBucket', ], 'CreateMultipartUpload' => [ 'name' => 'CreateMultipartUpload', 'http' => [ 'method' => 'POST', 'requestUri' => '/{Bucket}/{Key+}?uploads', ], 'input' => [ 'shape' => 'CreateMultipartUploadRequest', ], 'output' => [ 'shape' => 'CreateMultipartUploadOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadInitiate.html', 'alias' => 'InitiateMultipartUpload', ], 'DeleteBucket' => [ 'name' => 'DeleteBucket', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}', ], 'input' => [ 'shape' => 'DeleteBucketRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETE.html', ], 'DeleteBucketCors' => [ 'name' => 'DeleteBucketCors', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}?cors', ], 'input' => [ 'shape' => 'DeleteBucketCorsRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEcors.html', ], 'DeleteBucketLifecycle' => [ 'name' => 'DeleteBucketLifecycle', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}?lifecycle', ], 'input' => [ 'shape' => 'DeleteBucketLifecycleRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETElifecycle.html', ], 'DeleteBucketPolicy' => [ 'name' => 'DeleteBucketPolicy', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}?policy', ], 'input' => [ 'shape' => 'DeleteBucketPolicyRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEpolicy.html', ], 'DeleteBucketReplication' => [ 'name' => 'DeleteBucketReplication', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}?replication', ], 'input' => [ 'shape' => 'DeleteBucketReplicationRequest', ], ], 'DeleteBucketTagging' => [ 'name' => 'DeleteBucketTagging', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}?tagging', ], 'input' => [ 'shape' => 'DeleteBucketTaggingRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEtagging.html', ], 'DeleteBucketWebsite' => [ 'name' => 'DeleteBucketWebsite', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}?website', ], 'input' => [ 'shape' => 'DeleteBucketWebsiteRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEwebsite.html', ], 'DeleteObject' => [ 'name' => 'DeleteObject', 'http' => [ 'method' => 'DELETE', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'DeleteObjectRequest', ], 'output' => [ 'shape' => 'DeleteObjectOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectDELETE.html', ], 'DeleteObjects' => [ 'name' => 'DeleteObjects', 'http' => [ 'method' => 'POST', 'requestUri' => '/{Bucket}?delete', ], 'input' => [ 'shape' => 'DeleteObjectsRequest', ], 'output' => [ 'shape' => 'DeleteObjectsOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/multiobjectdeleteapi.html', 'alias' => 'DeleteMultipleObjects', ], 'GetBucketAccelerateConfiguration' => [ 'name' => 'GetBucketAccelerateConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?accelerate', ], 'input' => [ 'shape' => 'GetBucketAccelerateConfigurationRequest', ], 'output' => [ 'shape' => 'GetBucketAccelerateConfigurationOutput', ], ], 'GetBucketAcl' => [ 'name' => 'GetBucketAcl', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?acl', ], 'input' => [ 'shape' => 'GetBucketAclRequest', ], 'output' => [ 'shape' => 'GetBucketAclOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETacl.html', ], 'GetBucketCors' => [ 'name' => 'GetBucketCors', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?cors', ], 'input' => [ 'shape' => 'GetBucketCorsRequest', ], 'output' => [ 'shape' => 'GetBucketCorsOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETcors.html', ], 'GetBucketLifecycle' => [ 'name' => 'GetBucketLifecycle', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?lifecycle', ], 'input' => [ 'shape' => 'GetBucketLifecycleRequest', ], 'output' => [ 'shape' => 'GetBucketLifecycleOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlifecycle.html', 'deprecated' => true, ], 'GetBucketLifecycleConfiguration' => [ 'name' => 'GetBucketLifecycleConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?lifecycle', ], 'input' => [ 'shape' => 'GetBucketLifecycleConfigurationRequest', ], 'output' => [ 'shape' => 'GetBucketLifecycleConfigurationOutput', ], ], 'GetBucketLocation' => [ 'name' => 'GetBucketLocation', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?location', ], 'input' => [ 'shape' => 'GetBucketLocationRequest', ], 'output' => [ 'shape' => 'GetBucketLocationOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlocation.html', ], 'GetBucketLogging' => [ 'name' => 'GetBucketLogging', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?logging', ], 'input' => [ 'shape' => 'GetBucketLoggingRequest', ], 'output' => [ 'shape' => 'GetBucketLoggingOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlogging.html', ], 'GetBucketNotification' => [ 'name' => 'GetBucketNotification', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?notification', ], 'input' => [ 'shape' => 'GetBucketNotificationConfigurationRequest', ], 'output' => [ 'shape' => 'NotificationConfigurationDeprecated', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETnotification.html', 'deprecated' => true, ], 'GetBucketNotificationConfiguration' => [ 'name' => 'GetBucketNotificationConfiguration', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?notification', ], 'input' => [ 'shape' => 'GetBucketNotificationConfigurationRequest', ], 'output' => [ 'shape' => 'NotificationConfiguration', ], ], 'GetBucketPolicy' => [ 'name' => 'GetBucketPolicy', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?policy', ], 'input' => [ 'shape' => 'GetBucketPolicyRequest', ], 'output' => [ 'shape' => 'GetBucketPolicyOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETpolicy.html', ], 'GetBucketReplication' => [ 'name' => 'GetBucketReplication', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?replication', ], 'input' => [ 'shape' => 'GetBucketReplicationRequest', ], 'output' => [ 'shape' => 'GetBucketReplicationOutput', ], ], 'GetBucketRequestPayment' => [ 'name' => 'GetBucketRequestPayment', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?requestPayment', ], 'input' => [ 'shape' => 'GetBucketRequestPaymentRequest', ], 'output' => [ 'shape' => 'GetBucketRequestPaymentOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTrequestPaymentGET.html', ], 'GetBucketTagging' => [ 'name' => 'GetBucketTagging', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?tagging', ], 'input' => [ 'shape' => 'GetBucketTaggingRequest', ], 'output' => [ 'shape' => 'GetBucketTaggingOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETtagging.html', ], 'GetBucketVersioning' => [ 'name' => 'GetBucketVersioning', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?versioning', ], 'input' => [ 'shape' => 'GetBucketVersioningRequest', ], 'output' => [ 'shape' => 'GetBucketVersioningOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETversioningStatus.html', ], 'GetBucketWebsite' => [ 'name' => 'GetBucketWebsite', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?website', ], 'input' => [ 'shape' => 'GetBucketWebsiteRequest', ], 'output' => [ 'shape' => 'GetBucketWebsiteOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETwebsite.html', ], 'GetObject' => [ 'name' => 'GetObject', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'GetObjectRequest', ], 'output' => [ 'shape' => 'GetObjectOutput', ], 'errors' => [ [ 'shape' => 'NoSuchKey', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGET.html', ], 'GetObjectAcl' => [ 'name' => 'GetObjectAcl', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}/{Key+}?acl', ], 'input' => [ 'shape' => 'GetObjectAclRequest', ], 'output' => [ 'shape' => 'GetObjectAclOutput', ], 'errors' => [ [ 'shape' => 'NoSuchKey', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGETacl.html', ], 'GetObjectTorrent' => [ 'name' => 'GetObjectTorrent', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}/{Key+}?torrent', ], 'input' => [ 'shape' => 'GetObjectTorrentRequest', ], 'output' => [ 'shape' => 'GetObjectTorrentOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGETtorrent.html', ], 'HeadBucket' => [ 'name' => 'HeadBucket', 'http' => [ 'method' => 'HEAD', 'requestUri' => '/{Bucket}', ], 'input' => [ 'shape' => 'HeadBucketRequest', ], 'errors' => [ [ 'shape' => 'NoSuchBucket', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketHEAD.html', ], 'HeadObject' => [ 'name' => 'HeadObject', 'http' => [ 'method' => 'HEAD', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'HeadObjectRequest', ], 'output' => [ 'shape' => 'HeadObjectOutput', ], 'errors' => [ [ 'shape' => 'NoSuchKey', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectHEAD.html', ], 'ListBuckets' => [ 'name' => 'ListBuckets', 'http' => [ 'method' => 'GET', 'requestUri' => '/', ], 'output' => [ 'shape' => 'ListBucketsOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTServiceGET.html', 'alias' => 'GetService', ], 'ListMultipartUploads' => [ 'name' => 'ListMultipartUploads', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?uploads', ], 'input' => [ 'shape' => 'ListMultipartUploadsRequest', ], 'output' => [ 'shape' => 'ListMultipartUploadsOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadListMPUpload.html', ], 'ListObjectVersions' => [ 'name' => 'ListObjectVersions', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?versions', ], 'input' => [ 'shape' => 'ListObjectVersionsRequest', ], 'output' => [ 'shape' => 'ListObjectVersionsOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETVersion.html', 'alias' => 'GetBucketObjectVersions', ], 'ListObjects' => [ 'name' => 'ListObjects', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}', ], 'input' => [ 'shape' => 'ListObjectsRequest', ], 'output' => [ 'shape' => 'ListObjectsOutput', ], 'errors' => [ [ 'shape' => 'NoSuchBucket', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGET.html', 'alias' => 'GetBucket', ], 'ListObjectsV2' => [ 'name' => 'ListObjectsV2', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}?list-type=2', ], 'input' => [ 'shape' => 'ListObjectsV2Request', ], 'output' => [ 'shape' => 'ListObjectsV2Output', ], 'errors' => [ [ 'shape' => 'NoSuchBucket', ], ], ], 'ListParts' => [ 'name' => 'ListParts', 'http' => [ 'method' => 'GET', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'ListPartsRequest', ], 'output' => [ 'shape' => 'ListPartsOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadListParts.html', ], 'PutBucketAccelerateConfiguration' => [ 'name' => 'PutBucketAccelerateConfiguration', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?accelerate', ], 'input' => [ 'shape' => 'PutBucketAccelerateConfigurationRequest', ], ], 'PutBucketAcl' => [ 'name' => 'PutBucketAcl', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?acl', ], 'input' => [ 'shape' => 'PutBucketAclRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTacl.html', ], 'PutBucketCors' => [ 'name' => 'PutBucketCors', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?cors', ], 'input' => [ 'shape' => 'PutBucketCorsRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTcors.html', ], 'PutBucketLifecycle' => [ 'name' => 'PutBucketLifecycle', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?lifecycle', ], 'input' => [ 'shape' => 'PutBucketLifecycleRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTlifecycle.html', 'deprecated' => true, ], 'PutBucketLifecycleConfiguration' => [ 'name' => 'PutBucketLifecycleConfiguration', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?lifecycle', ], 'input' => [ 'shape' => 'PutBucketLifecycleConfigurationRequest', ], ], 'PutBucketLogging' => [ 'name' => 'PutBucketLogging', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?logging', ], 'input' => [ 'shape' => 'PutBucketLoggingRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTlogging.html', ], 'PutBucketNotification' => [ 'name' => 'PutBucketNotification', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?notification', ], 'input' => [ 'shape' => 'PutBucketNotificationRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTnotification.html', 'deprecated' => true, ], 'PutBucketNotificationConfiguration' => [ 'name' => 'PutBucketNotificationConfiguration', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?notification', ], 'input' => [ 'shape' => 'PutBucketNotificationConfigurationRequest', ], ], 'PutBucketPolicy' => [ 'name' => 'PutBucketPolicy', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?policy', ], 'input' => [ 'shape' => 'PutBucketPolicyRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTpolicy.html', ], 'PutBucketReplication' => [ 'name' => 'PutBucketReplication', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?replication', ], 'input' => [ 'shape' => 'PutBucketReplicationRequest', ], ], 'PutBucketRequestPayment' => [ 'name' => 'PutBucketRequestPayment', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?requestPayment', ], 'input' => [ 'shape' => 'PutBucketRequestPaymentRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTrequestPaymentPUT.html', ], 'PutBucketTagging' => [ 'name' => 'PutBucketTagging', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?tagging', ], 'input' => [ 'shape' => 'PutBucketTaggingRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTtagging.html', ], 'PutBucketVersioning' => [ 'name' => 'PutBucketVersioning', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?versioning', ], 'input' => [ 'shape' => 'PutBucketVersioningRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTVersioningStatus.html', ], 'PutBucketWebsite' => [ 'name' => 'PutBucketWebsite', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}?website', ], 'input' => [ 'shape' => 'PutBucketWebsiteRequest', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTwebsite.html', ], 'PutObject' => [ 'name' => 'PutObject', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'PutObjectRequest', ], 'output' => [ 'shape' => 'PutObjectOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectPUT.html', ], 'PutObjectAcl' => [ 'name' => 'PutObjectAcl', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}/{Key+}?acl', ], 'input' => [ 'shape' => 'PutObjectAclRequest', ], 'output' => [ 'shape' => 'PutObjectAclOutput', ], 'errors' => [ [ 'shape' => 'NoSuchKey', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectPUTacl.html', ], 'RestoreObject' => [ 'name' => 'RestoreObject', 'http' => [ 'method' => 'POST', 'requestUri' => '/{Bucket}/{Key+}?restore', ], 'input' => [ 'shape' => 'RestoreObjectRequest', ], 'output' => [ 'shape' => 'RestoreObjectOutput', ], 'errors' => [ [ 'shape' => 'ObjectAlreadyInActiveTierError', ], ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectRestore.html', 'alias' => 'PostObjectRestore', ], 'UploadPart' => [ 'name' => 'UploadPart', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'UploadPartRequest', ], 'output' => [ 'shape' => 'UploadPartOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadUploadPart.html', ], 'UploadPartCopy' => [ 'name' => 'UploadPartCopy', 'http' => [ 'method' => 'PUT', 'requestUri' => '/{Bucket}/{Key+}', ], 'input' => [ 'shape' => 'UploadPartCopyRequest', ], 'output' => [ 'shape' => 'UploadPartCopyOutput', ], 'documentationUrl' => 'http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadUploadPartCopy.html', ], ], 'shapes' => [ 'AbortDate' => [ 'type' => 'timestamp', ], 'AbortIncompleteMultipartUpload' => [ 'type' => 'structure', 'members' => [ 'DaysAfterInitiation' => [ 'shape' => 'DaysAfterInitiation', ], ], ], 'AbortMultipartUploadOutput' => [ 'type' => 'structure', 'members' => [ 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'AbortMultipartUploadRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', 'UploadId', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'UploadId' => [ 'shape' => 'MultipartUploadId', 'location' => 'querystring', 'locationName' => 'uploadId', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'AbortRuleId' => [ 'type' => 'string', ], 'AccelerateConfiguration' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'BucketAccelerateStatus', ], ], ], 'AcceptRanges' => [ 'type' => 'string', ], 'AccessControlPolicy' => [ 'type' => 'structure', 'members' => [ 'Grants' => [ 'shape' => 'Grants', 'locationName' => 'AccessControlList', ], 'Owner' => [ 'shape' => 'Owner', ], ], ], 'AllowedHeader' => [ 'type' => 'string', ], 'AllowedHeaders' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedHeader', ], 'flattened' => true, ], 'AllowedMethod' => [ 'type' => 'string', ], 'AllowedMethods' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedMethod', ], 'flattened' => true, ], 'AllowedOrigin' => [ 'type' => 'string', ], 'AllowedOrigins' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedOrigin', ], 'flattened' => true, ], 'Body' => [ 'type' => 'blob', ], 'Bucket' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'BucketName', ], 'CreationDate' => [ 'shape' => 'CreationDate', ], ], ], 'BucketAccelerateStatus' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Suspended', ], ], 'BucketAlreadyExists' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'BucketAlreadyOwnedByYou' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'BucketCannedACL' => [ 'type' => 'string', 'enum' => [ 'private', 'public-read', 'public-read-write', 'authenticated-read', ], ], 'BucketLifecycleConfiguration' => [ 'type' => 'structure', 'required' => [ 'Rules', ], 'members' => [ 'Rules' => [ 'shape' => 'LifecycleRules', 'locationName' => 'Rule', ], ], ], 'BucketLocationConstraint' => [ 'type' => 'string', 'enum' => [ 'EU', 'eu-west-1', 'us-west-1', 'us-west-2', 'ap-south-1', 'ap-southeast-1', 'ap-southeast-2', 'ap-northeast-1', 'sa-east-1', 'cn-north-1', 'eu-central-1', ], ], 'BucketLoggingStatus' => [ 'type' => 'structure', 'members' => [ 'LoggingEnabled' => [ 'shape' => 'LoggingEnabled', ], ], ], 'BucketLogsPermission' => [ 'type' => 'string', 'enum' => [ 'FULL_CONTROL', 'READ', 'WRITE', ], ], 'BucketName' => [ 'type' => 'string', ], 'BucketVersioningStatus' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Suspended', ], ], 'Buckets' => [ 'type' => 'list', 'member' => [ 'shape' => 'Bucket', 'locationName' => 'Bucket', ], ], 'CORSConfiguration' => [ 'type' => 'structure', 'required' => [ 'CORSRules', ], 'members' => [ 'CORSRules' => [ 'shape' => 'CORSRules', 'locationName' => 'CORSRule', ], ], ], 'CORSRule' => [ 'type' => 'structure', 'required' => [ 'AllowedMethods', 'AllowedOrigins', ], 'members' => [ 'AllowedHeaders' => [ 'shape' => 'AllowedHeaders', 'locationName' => 'AllowedHeader', ], 'AllowedMethods' => [ 'shape' => 'AllowedMethods', 'locationName' => 'AllowedMethod', ], 'AllowedOrigins' => [ 'shape' => 'AllowedOrigins', 'locationName' => 'AllowedOrigin', ], 'ExposeHeaders' => [ 'shape' => 'ExposeHeaders', 'locationName' => 'ExposeHeader', ], 'MaxAgeSeconds' => [ 'shape' => 'MaxAgeSeconds', ], ], ], 'CORSRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'CORSRule', ], 'flattened' => true, ], 'CacheControl' => [ 'type' => 'string', ], 'CloudFunction' => [ 'type' => 'string', ], 'CloudFunctionConfiguration' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'NotificationId', ], 'Event' => [ 'shape' => 'Event', 'deprecated' => true, ], 'Events' => [ 'shape' => 'EventList', 'locationName' => 'Event', ], 'CloudFunction' => [ 'shape' => 'CloudFunction', ], 'InvocationRole' => [ 'shape' => 'CloudFunctionInvocationRole', ], ], ], 'CloudFunctionInvocationRole' => [ 'type' => 'string', ], 'Code' => [ 'type' => 'string', ], 'CommonPrefix' => [ 'type' => 'structure', 'members' => [ 'Prefix' => [ 'shape' => 'Prefix', ], ], ], 'CommonPrefixList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CommonPrefix', ], 'flattened' => true, ], 'CompleteMultipartUploadOutput' => [ 'type' => 'structure', 'members' => [ 'Location' => [ 'shape' => 'Location', ], 'Bucket' => [ 'shape' => 'BucketName', ], 'Key' => [ 'shape' => 'ObjectKey', ], 'Expiration' => [ 'shape' => 'Expiration', 'location' => 'header', 'locationName' => 'x-amz-expiration', ], 'ETag' => [ 'shape' => 'ETag', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'header', 'locationName' => 'x-amz-version-id', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'CompleteMultipartUploadRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', 'UploadId', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'MultipartUpload' => [ 'shape' => 'CompletedMultipartUpload', 'locationName' => 'CompleteMultipartUpload', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'UploadId' => [ 'shape' => 'MultipartUploadId', 'location' => 'querystring', 'locationName' => 'uploadId', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], 'payload' => 'MultipartUpload', ], 'CompletedMultipartUpload' => [ 'type' => 'structure', 'members' => [ 'Parts' => [ 'shape' => 'CompletedPartList', 'locationName' => 'Part', ], ], ], 'CompletedPart' => [ 'type' => 'structure', 'members' => [ 'ETag' => [ 'shape' => 'ETag', ], 'PartNumber' => [ 'shape' => 'PartNumber', ], ], ], 'CompletedPartList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CompletedPart', ], 'flattened' => true, ], 'Condition' => [ 'type' => 'structure', 'members' => [ 'HttpErrorCodeReturnedEquals' => [ 'shape' => 'HttpErrorCodeReturnedEquals', ], 'KeyPrefixEquals' => [ 'shape' => 'KeyPrefixEquals', ], ], ], 'ContentDisposition' => [ 'type' => 'string', ], 'ContentEncoding' => [ 'type' => 'string', ], 'ContentLanguage' => [ 'type' => 'string', ], 'ContentLength' => [ 'type' => 'long', ], 'ContentMD5' => [ 'type' => 'string', ], 'ContentRange' => [ 'type' => 'string', ], 'ContentType' => [ 'type' => 'string', ], 'CopyObjectOutput' => [ 'type' => 'structure', 'members' => [ 'CopyObjectResult' => [ 'shape' => 'CopyObjectResult', ], 'Expiration' => [ 'shape' => 'Expiration', 'location' => 'header', 'locationName' => 'x-amz-expiration', ], 'CopySourceVersionId' => [ 'shape' => 'CopySourceVersionId', 'location' => 'header', 'locationName' => 'x-amz-copy-source-version-id', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'header', 'locationName' => 'x-amz-version-id', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], 'payload' => 'CopyObjectResult', ], 'CopyObjectRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'CopySource', 'Key', ], 'members' => [ 'ACL' => [ 'shape' => 'ObjectCannedACL', 'location' => 'header', 'locationName' => 'x-amz-acl', ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'CacheControl' => [ 'shape' => 'CacheControl', 'location' => 'header', 'locationName' => 'Cache-Control', ], 'ContentDisposition' => [ 'shape' => 'ContentDisposition', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'ContentEncoding' => [ 'shape' => 'ContentEncoding', 'location' => 'header', 'locationName' => 'Content-Encoding', ], 'ContentLanguage' => [ 'shape' => 'ContentLanguage', 'location' => 'header', 'locationName' => 'Content-Language', ], 'ContentType' => [ 'shape' => 'ContentType', 'location' => 'header', 'locationName' => 'Content-Type', ], 'CopySource' => [ 'shape' => 'CopySource', 'location' => 'header', 'locationName' => 'x-amz-copy-source', ], 'CopySourceIfMatch' => [ 'shape' => 'CopySourceIfMatch', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-match', ], 'CopySourceIfModifiedSince' => [ 'shape' => 'CopySourceIfModifiedSince', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-modified-since', ], 'CopySourceIfNoneMatch' => [ 'shape' => 'CopySourceIfNoneMatch', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-none-match', ], 'CopySourceIfUnmodifiedSince' => [ 'shape' => 'CopySourceIfUnmodifiedSince', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-unmodified-since', ], 'Expires' => [ 'shape' => 'Expires', 'location' => 'header', 'locationName' => 'Expires', ], 'GrantFullControl' => [ 'shape' => 'GrantFullControl', 'location' => 'header', 'locationName' => 'x-amz-grant-full-control', ], 'GrantRead' => [ 'shape' => 'GrantRead', 'location' => 'header', 'locationName' => 'x-amz-grant-read', ], 'GrantReadACP' => [ 'shape' => 'GrantReadACP', 'location' => 'header', 'locationName' => 'x-amz-grant-read-acp', ], 'GrantWriteACP' => [ 'shape' => 'GrantWriteACP', 'location' => 'header', 'locationName' => 'x-amz-grant-write-acp', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'Metadata' => [ 'shape' => 'Metadata', 'location' => 'headers', 'locationName' => 'x-amz-meta-', ], 'MetadataDirective' => [ 'shape' => 'MetadataDirective', 'location' => 'header', 'locationName' => 'x-amz-metadata-directive', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'StorageClass' => [ 'shape' => 'StorageClass', 'location' => 'header', 'locationName' => 'x-amz-storage-class', ], 'WebsiteRedirectLocation' => [ 'shape' => 'WebsiteRedirectLocation', 'location' => 'header', 'locationName' => 'x-amz-website-redirect-location', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'CopySourceSSECustomerAlgorithm' => [ 'shape' => 'CopySourceSSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-copy-source-server-side-encryption-customer-algorithm', ], 'CopySourceSSECustomerKey' => [ 'shape' => 'CopySourceSSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-copy-source-server-side-encryption-customer-key', ], 'CopySourceSSECustomerKeyMD5' => [ 'shape' => 'CopySourceSSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-copy-source-server-side-encryption-customer-key-MD5', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'CopyObjectResult' => [ 'type' => 'structure', 'members' => [ 'ETag' => [ 'shape' => 'ETag', ], 'LastModified' => [ 'shape' => 'LastModified', ], ], ], 'CopyPartResult' => [ 'type' => 'structure', 'members' => [ 'ETag' => [ 'shape' => 'ETag', ], 'LastModified' => [ 'shape' => 'LastModified', ], ], ], 'CopySource' => [ 'type' => 'string', 'pattern' => '\\/.+\\/.+', ], 'CopySourceIfMatch' => [ 'type' => 'string', ], 'CopySourceIfModifiedSince' => [ 'type' => 'timestamp', ], 'CopySourceIfNoneMatch' => [ 'type' => 'string', ], 'CopySourceIfUnmodifiedSince' => [ 'type' => 'timestamp', ], 'CopySourceRange' => [ 'type' => 'string', ], 'CopySourceSSECustomerAlgorithm' => [ 'type' => 'string', ], 'CopySourceSSECustomerKey' => [ 'type' => 'string', 'sensitive' => true, ], 'CopySourceSSECustomerKeyMD5' => [ 'type' => 'string', ], 'CopySourceVersionId' => [ 'type' => 'string', ], 'CreateBucketConfiguration' => [ 'type' => 'structure', 'members' => [ 'LocationConstraint' => [ 'shape' => 'BucketLocationConstraint', ], ], ], 'CreateBucketOutput' => [ 'type' => 'structure', 'members' => [ 'Location' => [ 'shape' => 'Location', 'location' => 'header', 'locationName' => 'Location', ], ], ], 'CreateBucketRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'ACL' => [ 'shape' => 'BucketCannedACL', 'location' => 'header', 'locationName' => 'x-amz-acl', ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'CreateBucketConfiguration' => [ 'shape' => 'CreateBucketConfiguration', 'locationName' => 'CreateBucketConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'GrantFullControl' => [ 'shape' => 'GrantFullControl', 'location' => 'header', 'locationName' => 'x-amz-grant-full-control', ], 'GrantRead' => [ 'shape' => 'GrantRead', 'location' => 'header', 'locationName' => 'x-amz-grant-read', ], 'GrantReadACP' => [ 'shape' => 'GrantReadACP', 'location' => 'header', 'locationName' => 'x-amz-grant-read-acp', ], 'GrantWrite' => [ 'shape' => 'GrantWrite', 'location' => 'header', 'locationName' => 'x-amz-grant-write', ], 'GrantWriteACP' => [ 'shape' => 'GrantWriteACP', 'location' => 'header', 'locationName' => 'x-amz-grant-write-acp', ], ], 'payload' => 'CreateBucketConfiguration', ], 'CreateMultipartUploadOutput' => [ 'type' => 'structure', 'members' => [ 'AbortDate' => [ 'shape' => 'AbortDate', 'location' => 'header', 'locationName' => 'x-amz-abort-date', ], 'AbortRuleId' => [ 'shape' => 'AbortRuleId', 'location' => 'header', 'locationName' => 'x-amz-abort-rule-id', ], 'Bucket' => [ 'shape' => 'BucketName', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', ], 'UploadId' => [ 'shape' => 'MultipartUploadId', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'CreateMultipartUploadRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'ACL' => [ 'shape' => 'ObjectCannedACL', 'location' => 'header', 'locationName' => 'x-amz-acl', ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'CacheControl' => [ 'shape' => 'CacheControl', 'location' => 'header', 'locationName' => 'Cache-Control', ], 'ContentDisposition' => [ 'shape' => 'ContentDisposition', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'ContentEncoding' => [ 'shape' => 'ContentEncoding', 'location' => 'header', 'locationName' => 'Content-Encoding', ], 'ContentLanguage' => [ 'shape' => 'ContentLanguage', 'location' => 'header', 'locationName' => 'Content-Language', ], 'ContentType' => [ 'shape' => 'ContentType', 'location' => 'header', 'locationName' => 'Content-Type', ], 'Expires' => [ 'shape' => 'Expires', 'location' => 'header', 'locationName' => 'Expires', ], 'GrantFullControl' => [ 'shape' => 'GrantFullControl', 'location' => 'header', 'locationName' => 'x-amz-grant-full-control', ], 'GrantRead' => [ 'shape' => 'GrantRead', 'location' => 'header', 'locationName' => 'x-amz-grant-read', ], 'GrantReadACP' => [ 'shape' => 'GrantReadACP', 'location' => 'header', 'locationName' => 'x-amz-grant-read-acp', ], 'GrantWriteACP' => [ 'shape' => 'GrantWriteACP', 'location' => 'header', 'locationName' => 'x-amz-grant-write-acp', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'Metadata' => [ 'shape' => 'Metadata', 'location' => 'headers', 'locationName' => 'x-amz-meta-', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'StorageClass' => [ 'shape' => 'StorageClass', 'location' => 'header', 'locationName' => 'x-amz-storage-class', ], 'WebsiteRedirectLocation' => [ 'shape' => 'WebsiteRedirectLocation', 'location' => 'header', 'locationName' => 'x-amz-website-redirect-location', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'CreationDate' => [ 'type' => 'timestamp', ], 'Date' => [ 'type' => 'timestamp', 'timestampFormat' => 'iso8601', ], 'Days' => [ 'type' => 'integer', ], 'DaysAfterInitiation' => [ 'type' => 'integer', ], 'Delete' => [ 'type' => 'structure', 'required' => [ 'Objects', ], 'members' => [ 'Objects' => [ 'shape' => 'ObjectIdentifierList', 'locationName' => 'Object', ], 'Quiet' => [ 'shape' => 'Quiet', ], ], ], 'DeleteBucketCorsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteBucketLifecycleRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteBucketPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteBucketReplicationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteBucketRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteBucketTaggingRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteBucketWebsiteRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'DeleteMarker' => [ 'type' => 'boolean', ], 'DeleteMarkerEntry' => [ 'type' => 'structure', 'members' => [ 'Owner' => [ 'shape' => 'Owner', ], 'Key' => [ 'shape' => 'ObjectKey', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', ], 'IsLatest' => [ 'shape' => 'IsLatest', ], 'LastModified' => [ 'shape' => 'LastModified', ], ], ], 'DeleteMarkerVersionId' => [ 'type' => 'string', ], 'DeleteMarkers' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeleteMarkerEntry', ], 'flattened' => true, ], 'DeleteObjectOutput' => [ 'type' => 'structure', 'members' => [ 'DeleteMarker' => [ 'shape' => 'DeleteMarker', 'location' => 'header', 'locationName' => 'x-amz-delete-marker', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'header', 'locationName' => 'x-amz-version-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'DeleteObjectRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'MFA' => [ 'shape' => 'MFA', 'location' => 'header', 'locationName' => 'x-amz-mfa', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'querystring', 'locationName' => 'versionId', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'DeleteObjectsOutput' => [ 'type' => 'structure', 'members' => [ 'Deleted' => [ 'shape' => 'DeletedObjects', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], 'Errors' => [ 'shape' => 'Errors', 'locationName' => 'Error', ], ], ], 'DeleteObjectsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Delete', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Delete' => [ 'shape' => 'Delete', 'locationName' => 'Delete', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'MFA' => [ 'shape' => 'MFA', 'location' => 'header', 'locationName' => 'x-amz-mfa', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], 'payload' => 'Delete', ], 'DeletedObject' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'ObjectKey', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', ], 'DeleteMarker' => [ 'shape' => 'DeleteMarker', ], 'DeleteMarkerVersionId' => [ 'shape' => 'DeleteMarkerVersionId', ], ], ], 'DeletedObjects' => [ 'type' => 'list', 'member' => [ 'shape' => 'DeletedObject', ], 'flattened' => true, ], 'Delimiter' => [ 'type' => 'string', ], 'Destination' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', ], 'StorageClass' => [ 'shape' => 'StorageClass', ], ], ], 'DisplayName' => [ 'type' => 'string', ], 'ETag' => [ 'type' => 'string', ], 'EmailAddress' => [ 'type' => 'string', ], 'EncodingType' => [ 'type' => 'string', 'enum' => [ 'url', ], ], 'Error' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'ObjectKey', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', ], 'Code' => [ 'shape' => 'Code', ], 'Message' => [ 'shape' => 'Message', ], ], ], 'ErrorDocument' => [ 'type' => 'structure', 'required' => [ 'Key', ], 'members' => [ 'Key' => [ 'shape' => 'ObjectKey', ], ], ], 'Errors' => [ 'type' => 'list', 'member' => [ 'shape' => 'Error', ], 'flattened' => true, ], 'Event' => [ 'type' => 'string', 'enum' => [ 's3:ReducedRedundancyLostObject', 's3:ObjectCreated:*', 's3:ObjectCreated:Put', 's3:ObjectCreated:Post', 's3:ObjectCreated:Copy', 's3:ObjectCreated:CompleteMultipartUpload', 's3:ObjectRemoved:*', 's3:ObjectRemoved:Delete', 's3:ObjectRemoved:DeleteMarkerCreated', ], ], 'EventList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Event', ], 'flattened' => true, ], 'Expiration' => [ 'type' => 'string', ], 'ExpirationStatus' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', ], ], 'ExpiredObjectDeleteMarker' => [ 'type' => 'boolean', ], 'Expires' => [ 'type' => 'timestamp', ], 'ExposeHeader' => [ 'type' => 'string', ], 'ExposeHeaders' => [ 'type' => 'list', 'member' => [ 'shape' => 'ExposeHeader', ], 'flattened' => true, ], 'FetchOwner' => [ 'type' => 'boolean', ], 'FilterRule' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'FilterRuleName', ], 'Value' => [ 'shape' => 'FilterRuleValue', ], ], ], 'FilterRuleList' => [ 'type' => 'list', 'member' => [ 'shape' => 'FilterRule', ], 'flattened' => true, ], 'FilterRuleName' => [ 'type' => 'string', 'enum' => [ 'prefix', 'suffix', ], ], 'FilterRuleValue' => [ 'type' => 'string', ], 'GetBucketAccelerateConfigurationOutput' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'BucketAccelerateStatus', ], ], ], 'GetBucketAccelerateConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketAclOutput' => [ 'type' => 'structure', 'members' => [ 'Owner' => [ 'shape' => 'Owner', ], 'Grants' => [ 'shape' => 'Grants', 'locationName' => 'AccessControlList', ], ], ], 'GetBucketAclRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketCorsOutput' => [ 'type' => 'structure', 'members' => [ 'CORSRules' => [ 'shape' => 'CORSRules', 'locationName' => 'CORSRule', ], ], ], 'GetBucketCorsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketLifecycleConfigurationOutput' => [ 'type' => 'structure', 'members' => [ 'Rules' => [ 'shape' => 'LifecycleRules', 'locationName' => 'Rule', ], ], ], 'GetBucketLifecycleConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketLifecycleOutput' => [ 'type' => 'structure', 'members' => [ 'Rules' => [ 'shape' => 'Rules', 'locationName' => 'Rule', ], ], ], 'GetBucketLifecycleRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketLocationOutput' => [ 'type' => 'structure', 'members' => [ 'LocationConstraint' => [ 'shape' => 'BucketLocationConstraint', ], ], ], 'GetBucketLocationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketLoggingOutput' => [ 'type' => 'structure', 'members' => [ 'LoggingEnabled' => [ 'shape' => 'LoggingEnabled', ], ], ], 'GetBucketLoggingRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketNotificationConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketPolicyOutput' => [ 'type' => 'structure', 'members' => [ 'Policy' => [ 'shape' => 'Policy', ], ], 'payload' => 'Policy', ], 'GetBucketPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketReplicationOutput' => [ 'type' => 'structure', 'members' => [ 'ReplicationConfiguration' => [ 'shape' => 'ReplicationConfiguration', ], ], 'payload' => 'ReplicationConfiguration', ], 'GetBucketReplicationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketRequestPaymentOutput' => [ 'type' => 'structure', 'members' => [ 'Payer' => [ 'shape' => 'Payer', ], ], ], 'GetBucketRequestPaymentRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketTaggingOutput' => [ 'type' => 'structure', 'required' => [ 'TagSet', ], 'members' => [ 'TagSet' => [ 'shape' => 'TagSet', ], ], ], 'GetBucketTaggingRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketVersioningOutput' => [ 'type' => 'structure', 'members' => [ 'Status' => [ 'shape' => 'BucketVersioningStatus', ], 'MFADelete' => [ 'shape' => 'MFADeleteStatus', 'locationName' => 'MfaDelete', ], ], ], 'GetBucketVersioningRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetBucketWebsiteOutput' => [ 'type' => 'structure', 'members' => [ 'RedirectAllRequestsTo' => [ 'shape' => 'RedirectAllRequestsTo', ], 'IndexDocument' => [ 'shape' => 'IndexDocument', ], 'ErrorDocument' => [ 'shape' => 'ErrorDocument', ], 'RoutingRules' => [ 'shape' => 'RoutingRules', ], ], ], 'GetBucketWebsiteRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'GetObjectAclOutput' => [ 'type' => 'structure', 'members' => [ 'Owner' => [ 'shape' => 'Owner', ], 'Grants' => [ 'shape' => 'Grants', 'locationName' => 'AccessControlList', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'GetObjectAclRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'querystring', 'locationName' => 'versionId', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'GetObjectOutput' => [ 'type' => 'structure', 'members' => [ 'Body' => [ 'shape' => 'Body', 'streaming' => true, ], 'DeleteMarker' => [ 'shape' => 'DeleteMarker', 'location' => 'header', 'locationName' => 'x-amz-delete-marker', ], 'AcceptRanges' => [ 'shape' => 'AcceptRanges', 'location' => 'header', 'locationName' => 'accept-ranges', ], 'Expiration' => [ 'shape' => 'Expiration', 'location' => 'header', 'locationName' => 'x-amz-expiration', ], 'Restore' => [ 'shape' => 'Restore', 'location' => 'header', 'locationName' => 'x-amz-restore', ], 'LastModified' => [ 'shape' => 'LastModified', 'location' => 'header', 'locationName' => 'Last-Modified', ], 'ContentLength' => [ 'shape' => 'ContentLength', 'location' => 'header', 'locationName' => 'Content-Length', ], 'ETag' => [ 'shape' => 'ETag', 'location' => 'header', 'locationName' => 'ETag', ], 'MissingMeta' => [ 'shape' => 'MissingMeta', 'location' => 'header', 'locationName' => 'x-amz-missing-meta', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'header', 'locationName' => 'x-amz-version-id', ], 'CacheControl' => [ 'shape' => 'CacheControl', 'location' => 'header', 'locationName' => 'Cache-Control', ], 'ContentDisposition' => [ 'shape' => 'ContentDisposition', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'ContentEncoding' => [ 'shape' => 'ContentEncoding', 'location' => 'header', 'locationName' => 'Content-Encoding', ], 'ContentLanguage' => [ 'shape' => 'ContentLanguage', 'location' => 'header', 'locationName' => 'Content-Language', ], 'ContentRange' => [ 'shape' => 'ContentRange', 'location' => 'header', 'locationName' => 'Content-Range', ], 'ContentType' => [ 'shape' => 'ContentType', 'location' => 'header', 'locationName' => 'Content-Type', ], 'Expires' => [ 'shape' => 'Expires', 'location' => 'header', 'locationName' => 'Expires', ], 'WebsiteRedirectLocation' => [ 'shape' => 'WebsiteRedirectLocation', 'location' => 'header', 'locationName' => 'x-amz-website-redirect-location', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'Metadata' => [ 'shape' => 'Metadata', 'location' => 'headers', 'locationName' => 'x-amz-meta-', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'StorageClass' => [ 'shape' => 'StorageClass', 'location' => 'header', 'locationName' => 'x-amz-storage-class', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], 'ReplicationStatus' => [ 'shape' => 'ReplicationStatus', 'location' => 'header', 'locationName' => 'x-amz-replication-status', ], 'PartsCount' => [ 'shape' => 'PartsCount', 'location' => 'header', 'locationName' => 'x-amz-mp-parts-count', ], ], 'payload' => 'Body', ], 'GetObjectRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'IfMatch' => [ 'shape' => 'IfMatch', 'location' => 'header', 'locationName' => 'If-Match', ], 'IfModifiedSince' => [ 'shape' => 'IfModifiedSince', 'location' => 'header', 'locationName' => 'If-Modified-Since', ], 'IfNoneMatch' => [ 'shape' => 'IfNoneMatch', 'location' => 'header', 'locationName' => 'If-None-Match', ], 'IfUnmodifiedSince' => [ 'shape' => 'IfUnmodifiedSince', 'location' => 'header', 'locationName' => 'If-Unmodified-Since', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'Range' => [ 'shape' => 'Range', 'location' => 'header', 'locationName' => 'Range', ], 'ResponseCacheControl' => [ 'shape' => 'ResponseCacheControl', 'location' => 'querystring', 'locationName' => 'response-cache-control', ], 'ResponseContentDisposition' => [ 'shape' => 'ResponseContentDisposition', 'location' => 'querystring', 'locationName' => 'response-content-disposition', ], 'ResponseContentEncoding' => [ 'shape' => 'ResponseContentEncoding', 'location' => 'querystring', 'locationName' => 'response-content-encoding', ], 'ResponseContentLanguage' => [ 'shape' => 'ResponseContentLanguage', 'location' => 'querystring', 'locationName' => 'response-content-language', ], 'ResponseContentType' => [ 'shape' => 'ResponseContentType', 'location' => 'querystring', 'locationName' => 'response-content-type', ], 'ResponseExpires' => [ 'shape' => 'ResponseExpires', 'location' => 'querystring', 'locationName' => 'response-expires', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'querystring', 'locationName' => 'versionId', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], 'PartNumber' => [ 'shape' => 'PartNumber', 'location' => 'querystring', 'locationName' => 'partNumber', ], ], ], 'GetObjectTorrentOutput' => [ 'type' => 'structure', 'members' => [ 'Body' => [ 'shape' => 'Body', 'streaming' => true, ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], 'payload' => 'Body', ], 'GetObjectTorrentRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'Grant' => [ 'type' => 'structure', 'members' => [ 'Grantee' => [ 'shape' => 'Grantee', ], 'Permission' => [ 'shape' => 'Permission', ], ], ], 'GrantFullControl' => [ 'type' => 'string', ], 'GrantRead' => [ 'type' => 'string', ], 'GrantReadACP' => [ 'type' => 'string', ], 'GrantWrite' => [ 'type' => 'string', ], 'GrantWriteACP' => [ 'type' => 'string', ], 'Grantee' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'DisplayName' => [ 'shape' => 'DisplayName', ], 'EmailAddress' => [ 'shape' => 'EmailAddress', ], 'ID' => [ 'shape' => 'ID', ], 'Type' => [ 'shape' => 'Type', 'locationName' => 'xsi:type', 'xmlAttribute' => true, ], 'URI' => [ 'shape' => 'URI', ], ], 'xmlNamespace' => [ 'prefix' => 'xsi', 'uri' => 'http://www.w3.org/2001/XMLSchema-instance', ], ], 'Grants' => [ 'type' => 'list', 'member' => [ 'shape' => 'Grant', 'locationName' => 'Grant', ], ], 'HeadBucketRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], ], ], 'HeadObjectOutput' => [ 'type' => 'structure', 'members' => [ 'DeleteMarker' => [ 'shape' => 'DeleteMarker', 'location' => 'header', 'locationName' => 'x-amz-delete-marker', ], 'AcceptRanges' => [ 'shape' => 'AcceptRanges', 'location' => 'header', 'locationName' => 'accept-ranges', ], 'Expiration' => [ 'shape' => 'Expiration', 'location' => 'header', 'locationName' => 'x-amz-expiration', ], 'Restore' => [ 'shape' => 'Restore', 'location' => 'header', 'locationName' => 'x-amz-restore', ], 'LastModified' => [ 'shape' => 'LastModified', 'location' => 'header', 'locationName' => 'Last-Modified', ], 'ContentLength' => [ 'shape' => 'ContentLength', 'location' => 'header', 'locationName' => 'Content-Length', ], 'ETag' => [ 'shape' => 'ETag', 'location' => 'header', 'locationName' => 'ETag', ], 'MissingMeta' => [ 'shape' => 'MissingMeta', 'location' => 'header', 'locationName' => 'x-amz-missing-meta', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'header', 'locationName' => 'x-amz-version-id', ], 'CacheControl' => [ 'shape' => 'CacheControl', 'location' => 'header', 'locationName' => 'Cache-Control', ], 'ContentDisposition' => [ 'shape' => 'ContentDisposition', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'ContentEncoding' => [ 'shape' => 'ContentEncoding', 'location' => 'header', 'locationName' => 'Content-Encoding', ], 'ContentLanguage' => [ 'shape' => 'ContentLanguage', 'location' => 'header', 'locationName' => 'Content-Language', ], 'ContentType' => [ 'shape' => 'ContentType', 'location' => 'header', 'locationName' => 'Content-Type', ], 'Expires' => [ 'shape' => 'Expires', 'location' => 'header', 'locationName' => 'Expires', ], 'WebsiteRedirectLocation' => [ 'shape' => 'WebsiteRedirectLocation', 'location' => 'header', 'locationName' => 'x-amz-website-redirect-location', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'Metadata' => [ 'shape' => 'Metadata', 'location' => 'headers', 'locationName' => 'x-amz-meta-', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'StorageClass' => [ 'shape' => 'StorageClass', 'location' => 'header', 'locationName' => 'x-amz-storage-class', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], 'ReplicationStatus' => [ 'shape' => 'ReplicationStatus', 'location' => 'header', 'locationName' => 'x-amz-replication-status', ], 'PartsCount' => [ 'shape' => 'PartsCount', 'location' => 'header', 'locationName' => 'x-amz-mp-parts-count', ], ], ], 'HeadObjectRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'IfMatch' => [ 'shape' => 'IfMatch', 'location' => 'header', 'locationName' => 'If-Match', ], 'IfModifiedSince' => [ 'shape' => 'IfModifiedSince', 'location' => 'header', 'locationName' => 'If-Modified-Since', ], 'IfNoneMatch' => [ 'shape' => 'IfNoneMatch', 'location' => 'header', 'locationName' => 'If-None-Match', ], 'IfUnmodifiedSince' => [ 'shape' => 'IfUnmodifiedSince', 'location' => 'header', 'locationName' => 'If-Unmodified-Since', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'Range' => [ 'shape' => 'Range', 'location' => 'header', 'locationName' => 'Range', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'querystring', 'locationName' => 'versionId', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], 'PartNumber' => [ 'shape' => 'PartNumber', 'location' => 'querystring', 'locationName' => 'partNumber', ], ], ], 'HostName' => [ 'type' => 'string', ], 'HttpErrorCodeReturnedEquals' => [ 'type' => 'string', ], 'HttpRedirectCode' => [ 'type' => 'string', ], 'ID' => [ 'type' => 'string', ], 'IfMatch' => [ 'type' => 'string', ], 'IfModifiedSince' => [ 'type' => 'timestamp', ], 'IfNoneMatch' => [ 'type' => 'string', ], 'IfUnmodifiedSince' => [ 'type' => 'timestamp', ], 'IndexDocument' => [ 'type' => 'structure', 'required' => [ 'Suffix', ], 'members' => [ 'Suffix' => [ 'shape' => 'Suffix', ], ], ], 'Initiated' => [ 'type' => 'timestamp', ], 'Initiator' => [ 'type' => 'structure', 'members' => [ 'ID' => [ 'shape' => 'ID', ], 'DisplayName' => [ 'shape' => 'DisplayName', ], ], ], 'IsLatest' => [ 'type' => 'boolean', ], 'IsTruncated' => [ 'type' => 'boolean', ], 'KeyCount' => [ 'type' => 'integer', ], 'KeyMarker' => [ 'type' => 'string', ], 'KeyPrefixEquals' => [ 'type' => 'string', ], 'LambdaFunctionArn' => [ 'type' => 'string', ], 'LambdaFunctionConfiguration' => [ 'type' => 'structure', 'required' => [ 'LambdaFunctionArn', 'Events', ], 'members' => [ 'Id' => [ 'shape' => 'NotificationId', ], 'LambdaFunctionArn' => [ 'shape' => 'LambdaFunctionArn', 'locationName' => 'CloudFunction', ], 'Events' => [ 'shape' => 'EventList', 'locationName' => 'Event', ], 'Filter' => [ 'shape' => 'NotificationConfigurationFilter', ], ], ], 'LambdaFunctionConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'LambdaFunctionConfiguration', ], 'flattened' => true, ], 'LastModified' => [ 'type' => 'timestamp', ], 'LifecycleConfiguration' => [ 'type' => 'structure', 'required' => [ 'Rules', ], 'members' => [ 'Rules' => [ 'shape' => 'Rules', 'locationName' => 'Rule', ], ], ], 'LifecycleExpiration' => [ 'type' => 'structure', 'members' => [ 'Date' => [ 'shape' => 'Date', ], 'Days' => [ 'shape' => 'Days', ], 'ExpiredObjectDeleteMarker' => [ 'shape' => 'ExpiredObjectDeleteMarker', ], ], ], 'LifecycleRule' => [ 'type' => 'structure', 'required' => [ 'Prefix', 'Status', ], 'members' => [ 'Expiration' => [ 'shape' => 'LifecycleExpiration', ], 'ID' => [ 'shape' => 'ID', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Status' => [ 'shape' => 'ExpirationStatus', ], 'Transitions' => [ 'shape' => 'TransitionList', 'locationName' => 'Transition', ], 'NoncurrentVersionTransitions' => [ 'shape' => 'NoncurrentVersionTransitionList', 'locationName' => 'NoncurrentVersionTransition', ], 'NoncurrentVersionExpiration' => [ 'shape' => 'NoncurrentVersionExpiration', ], 'AbortIncompleteMultipartUpload' => [ 'shape' => 'AbortIncompleteMultipartUpload', ], ], ], 'LifecycleRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'LifecycleRule', ], 'flattened' => true, ], 'ListBucketsOutput' => [ 'type' => 'structure', 'members' => [ 'Buckets' => [ 'shape' => 'Buckets', ], 'Owner' => [ 'shape' => 'Owner', ], ], ], 'ListMultipartUploadsOutput' => [ 'type' => 'structure', 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', ], 'KeyMarker' => [ 'shape' => 'KeyMarker', ], 'UploadIdMarker' => [ 'shape' => 'UploadIdMarker', ], 'NextKeyMarker' => [ 'shape' => 'NextKeyMarker', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Delimiter' => [ 'shape' => 'Delimiter', ], 'NextUploadIdMarker' => [ 'shape' => 'NextUploadIdMarker', ], 'MaxUploads' => [ 'shape' => 'MaxUploads', ], 'IsTruncated' => [ 'shape' => 'IsTruncated', ], 'Uploads' => [ 'shape' => 'MultipartUploadList', 'locationName' => 'Upload', ], 'CommonPrefixes' => [ 'shape' => 'CommonPrefixList', ], 'EncodingType' => [ 'shape' => 'EncodingType', ], ], ], 'ListMultipartUploadsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Delimiter' => [ 'shape' => 'Delimiter', 'location' => 'querystring', 'locationName' => 'delimiter', ], 'EncodingType' => [ 'shape' => 'EncodingType', 'location' => 'querystring', 'locationName' => 'encoding-type', ], 'KeyMarker' => [ 'shape' => 'KeyMarker', 'location' => 'querystring', 'locationName' => 'key-marker', ], 'MaxUploads' => [ 'shape' => 'MaxUploads', 'location' => 'querystring', 'locationName' => 'max-uploads', ], 'Prefix' => [ 'shape' => 'Prefix', 'location' => 'querystring', 'locationName' => 'prefix', ], 'UploadIdMarker' => [ 'shape' => 'UploadIdMarker', 'location' => 'querystring', 'locationName' => 'upload-id-marker', ], ], ], 'ListObjectVersionsOutput' => [ 'type' => 'structure', 'members' => [ 'IsTruncated' => [ 'shape' => 'IsTruncated', ], 'KeyMarker' => [ 'shape' => 'KeyMarker', ], 'VersionIdMarker' => [ 'shape' => 'VersionIdMarker', ], 'NextKeyMarker' => [ 'shape' => 'NextKeyMarker', ], 'NextVersionIdMarker' => [ 'shape' => 'NextVersionIdMarker', ], 'Versions' => [ 'shape' => 'ObjectVersionList', 'locationName' => 'Version', ], 'DeleteMarkers' => [ 'shape' => 'DeleteMarkers', 'locationName' => 'DeleteMarker', ], 'Name' => [ 'shape' => 'BucketName', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Delimiter' => [ 'shape' => 'Delimiter', ], 'MaxKeys' => [ 'shape' => 'MaxKeys', ], 'CommonPrefixes' => [ 'shape' => 'CommonPrefixList', ], 'EncodingType' => [ 'shape' => 'EncodingType', ], ], ], 'ListObjectVersionsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Delimiter' => [ 'shape' => 'Delimiter', 'location' => 'querystring', 'locationName' => 'delimiter', ], 'EncodingType' => [ 'shape' => 'EncodingType', 'location' => 'querystring', 'locationName' => 'encoding-type', ], 'KeyMarker' => [ 'shape' => 'KeyMarker', 'location' => 'querystring', 'locationName' => 'key-marker', ], 'MaxKeys' => [ 'shape' => 'MaxKeys', 'location' => 'querystring', 'locationName' => 'max-keys', ], 'Prefix' => [ 'shape' => 'Prefix', 'location' => 'querystring', 'locationName' => 'prefix', ], 'VersionIdMarker' => [ 'shape' => 'VersionIdMarker', 'location' => 'querystring', 'locationName' => 'version-id-marker', ], ], ], 'ListObjectsOutput' => [ 'type' => 'structure', 'members' => [ 'IsTruncated' => [ 'shape' => 'IsTruncated', ], 'Marker' => [ 'shape' => 'Marker', ], 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Contents' => [ 'shape' => 'ObjectList', ], 'Name' => [ 'shape' => 'BucketName', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Delimiter' => [ 'shape' => 'Delimiter', ], 'MaxKeys' => [ 'shape' => 'MaxKeys', ], 'CommonPrefixes' => [ 'shape' => 'CommonPrefixList', ], 'EncodingType' => [ 'shape' => 'EncodingType', ], ], ], 'ListObjectsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Delimiter' => [ 'shape' => 'Delimiter', 'location' => 'querystring', 'locationName' => 'delimiter', ], 'EncodingType' => [ 'shape' => 'EncodingType', 'location' => 'querystring', 'locationName' => 'encoding-type', ], 'Marker' => [ 'shape' => 'Marker', 'location' => 'querystring', 'locationName' => 'marker', ], 'MaxKeys' => [ 'shape' => 'MaxKeys', 'location' => 'querystring', 'locationName' => 'max-keys', ], 'Prefix' => [ 'shape' => 'Prefix', 'location' => 'querystring', 'locationName' => 'prefix', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'ListObjectsV2Output' => [ 'type' => 'structure', 'members' => [ 'IsTruncated' => [ 'shape' => 'IsTruncated', ], 'Contents' => [ 'shape' => 'ObjectList', ], 'Name' => [ 'shape' => 'BucketName', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Delimiter' => [ 'shape' => 'Delimiter', ], 'MaxKeys' => [ 'shape' => 'MaxKeys', ], 'CommonPrefixes' => [ 'shape' => 'CommonPrefixList', ], 'EncodingType' => [ 'shape' => 'EncodingType', ], 'KeyCount' => [ 'shape' => 'KeyCount', ], 'ContinuationToken' => [ 'shape' => 'Token', ], 'NextContinuationToken' => [ 'shape' => 'NextToken', ], 'StartAfter' => [ 'shape' => 'StartAfter', ], ], ], 'ListObjectsV2Request' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Delimiter' => [ 'shape' => 'Delimiter', 'location' => 'querystring', 'locationName' => 'delimiter', ], 'EncodingType' => [ 'shape' => 'EncodingType', 'location' => 'querystring', 'locationName' => 'encoding-type', ], 'MaxKeys' => [ 'shape' => 'MaxKeys', 'location' => 'querystring', 'locationName' => 'max-keys', ], 'Prefix' => [ 'shape' => 'Prefix', 'location' => 'querystring', 'locationName' => 'prefix', ], 'ContinuationToken' => [ 'shape' => 'Token', 'location' => 'querystring', 'locationName' => 'continuation-token', ], 'FetchOwner' => [ 'shape' => 'FetchOwner', 'location' => 'querystring', 'locationName' => 'fetch-owner', ], 'StartAfter' => [ 'shape' => 'StartAfter', 'location' => 'querystring', 'locationName' => 'start-after', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'ListPartsOutput' => [ 'type' => 'structure', 'members' => [ 'AbortDate' => [ 'shape' => 'AbortDate', 'location' => 'header', 'locationName' => 'x-amz-abort-date', ], 'AbortRuleId' => [ 'shape' => 'AbortRuleId', 'location' => 'header', 'locationName' => 'x-amz-abort-rule-id', ], 'Bucket' => [ 'shape' => 'BucketName', ], 'Key' => [ 'shape' => 'ObjectKey', ], 'UploadId' => [ 'shape' => 'MultipartUploadId', ], 'PartNumberMarker' => [ 'shape' => 'PartNumberMarker', ], 'NextPartNumberMarker' => [ 'shape' => 'NextPartNumberMarker', ], 'MaxParts' => [ 'shape' => 'MaxParts', ], 'IsTruncated' => [ 'shape' => 'IsTruncated', ], 'Parts' => [ 'shape' => 'Parts', 'locationName' => 'Part', ], 'Initiator' => [ 'shape' => 'Initiator', ], 'Owner' => [ 'shape' => 'Owner', ], 'StorageClass' => [ 'shape' => 'StorageClass', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'ListPartsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', 'UploadId', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'MaxParts' => [ 'shape' => 'MaxParts', 'location' => 'querystring', 'locationName' => 'max-parts', ], 'PartNumberMarker' => [ 'shape' => 'PartNumberMarker', 'location' => 'querystring', 'locationName' => 'part-number-marker', ], 'UploadId' => [ 'shape' => 'MultipartUploadId', 'location' => 'querystring', 'locationName' => 'uploadId', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'Location' => [ 'type' => 'string', ], 'LoggingEnabled' => [ 'type' => 'structure', 'members' => [ 'TargetBucket' => [ 'shape' => 'TargetBucket', ], 'TargetGrants' => [ 'shape' => 'TargetGrants', ], 'TargetPrefix' => [ 'shape' => 'TargetPrefix', ], ], ], 'MFA' => [ 'type' => 'string', ], 'MFADelete' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', ], ], 'MFADeleteStatus' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', ], ], 'Marker' => [ 'type' => 'string', ], 'MaxAgeSeconds' => [ 'type' => 'integer', ], 'MaxKeys' => [ 'type' => 'integer', ], 'MaxParts' => [ 'type' => 'integer', ], 'MaxUploads' => [ 'type' => 'integer', ], 'Message' => [ 'type' => 'string', ], 'Metadata' => [ 'type' => 'map', 'key' => [ 'shape' => 'MetadataKey', ], 'value' => [ 'shape' => 'MetadataValue', ], ], 'MetadataDirective' => [ 'type' => 'string', 'enum' => [ 'COPY', 'REPLACE', ], ], 'MetadataKey' => [ 'type' => 'string', ], 'MetadataValue' => [ 'type' => 'string', ], 'MissingMeta' => [ 'type' => 'integer', ], 'MultipartUpload' => [ 'type' => 'structure', 'members' => [ 'UploadId' => [ 'shape' => 'MultipartUploadId', ], 'Key' => [ 'shape' => 'ObjectKey', ], 'Initiated' => [ 'shape' => 'Initiated', ], 'StorageClass' => [ 'shape' => 'StorageClass', ], 'Owner' => [ 'shape' => 'Owner', ], 'Initiator' => [ 'shape' => 'Initiator', ], ], ], 'MultipartUploadId' => [ 'type' => 'string', ], 'MultipartUploadList' => [ 'type' => 'list', 'member' => [ 'shape' => 'MultipartUpload', ], 'flattened' => true, ], 'NextKeyMarker' => [ 'type' => 'string', ], 'NextMarker' => [ 'type' => 'string', ], 'NextPartNumberMarker' => [ 'type' => 'integer', ], 'NextToken' => [ 'type' => 'string', ], 'NextUploadIdMarker' => [ 'type' => 'string', ], 'NextVersionIdMarker' => [ 'type' => 'string', ], 'NoSuchBucket' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoSuchKey' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoSuchUpload' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'NoncurrentVersionExpiration' => [ 'type' => 'structure', 'members' => [ 'NoncurrentDays' => [ 'shape' => 'Days', ], ], ], 'NoncurrentVersionTransition' => [ 'type' => 'structure', 'members' => [ 'NoncurrentDays' => [ 'shape' => 'Days', ], 'StorageClass' => [ 'shape' => 'TransitionStorageClass', ], ], ], 'NoncurrentVersionTransitionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'NoncurrentVersionTransition', ], 'flattened' => true, ], 'NotificationConfiguration' => [ 'type' => 'structure', 'members' => [ 'TopicConfigurations' => [ 'shape' => 'TopicConfigurationList', 'locationName' => 'TopicConfiguration', ], 'QueueConfigurations' => [ 'shape' => 'QueueConfigurationList', 'locationName' => 'QueueConfiguration', ], 'LambdaFunctionConfigurations' => [ 'shape' => 'LambdaFunctionConfigurationList', 'locationName' => 'CloudFunctionConfiguration', ], ], ], 'NotificationConfigurationDeprecated' => [ 'type' => 'structure', 'members' => [ 'TopicConfiguration' => [ 'shape' => 'TopicConfigurationDeprecated', ], 'QueueConfiguration' => [ 'shape' => 'QueueConfigurationDeprecated', ], 'CloudFunctionConfiguration' => [ 'shape' => 'CloudFunctionConfiguration', ], ], ], 'NotificationConfigurationFilter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'S3KeyFilter', 'locationName' => 'S3Key', ], ], ], 'NotificationId' => [ 'type' => 'string', ], 'Object' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'ObjectKey', ], 'LastModified' => [ 'shape' => 'LastModified', ], 'ETag' => [ 'shape' => 'ETag', ], 'Size' => [ 'shape' => 'Size', ], 'StorageClass' => [ 'shape' => 'ObjectStorageClass', ], 'Owner' => [ 'shape' => 'Owner', ], ], ], 'ObjectAlreadyInActiveTierError' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ObjectCannedACL' => [ 'type' => 'string', 'enum' => [ 'private', 'public-read', 'public-read-write', 'authenticated-read', 'aws-exec-read', 'bucket-owner-read', 'bucket-owner-full-control', ], ], 'ObjectIdentifier' => [ 'type' => 'structure', 'required' => [ 'Key', ], 'members' => [ 'Key' => [ 'shape' => 'ObjectKey', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', ], ], ], 'ObjectIdentifierList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ObjectIdentifier', ], 'flattened' => true, ], 'ObjectKey' => [ 'type' => 'string', 'min' => 1, ], 'ObjectList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Object', ], 'flattened' => true, ], 'ObjectNotInActiveTierError' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ObjectStorageClass' => [ 'type' => 'string', 'enum' => [ 'STANDARD', 'REDUCED_REDUNDANCY', 'GLACIER', ], ], 'ObjectVersion' => [ 'type' => 'structure', 'members' => [ 'ETag' => [ 'shape' => 'ETag', ], 'Size' => [ 'shape' => 'Size', ], 'StorageClass' => [ 'shape' => 'ObjectVersionStorageClass', ], 'Key' => [ 'shape' => 'ObjectKey', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', ], 'IsLatest' => [ 'shape' => 'IsLatest', ], 'LastModified' => [ 'shape' => 'LastModified', ], 'Owner' => [ 'shape' => 'Owner', ], ], ], 'ObjectVersionId' => [ 'type' => 'string', ], 'ObjectVersionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ObjectVersion', ], 'flattened' => true, ], 'ObjectVersionStorageClass' => [ 'type' => 'string', 'enum' => [ 'STANDARD', ], ], 'Owner' => [ 'type' => 'structure', 'members' => [ 'DisplayName' => [ 'shape' => 'DisplayName', ], 'ID' => [ 'shape' => 'ID', ], ], ], 'Part' => [ 'type' => 'structure', 'members' => [ 'PartNumber' => [ 'shape' => 'PartNumber', ], 'LastModified' => [ 'shape' => 'LastModified', ], 'ETag' => [ 'shape' => 'ETag', ], 'Size' => [ 'shape' => 'Size', ], ], ], 'PartNumber' => [ 'type' => 'integer', ], 'PartNumberMarker' => [ 'type' => 'integer', ], 'Parts' => [ 'type' => 'list', 'member' => [ 'shape' => 'Part', ], 'flattened' => true, ], 'PartsCount' => [ 'type' => 'integer', ], 'Payer' => [ 'type' => 'string', 'enum' => [ 'Requester', 'BucketOwner', ], ], 'Permission' => [ 'type' => 'string', 'enum' => [ 'FULL_CONTROL', 'WRITE', 'WRITE_ACP', 'READ', 'READ_ACP', ], ], 'Policy' => [ 'type' => 'string', ], 'Prefix' => [ 'type' => 'string', ], 'Protocol' => [ 'type' => 'string', 'enum' => [ 'http', 'https', ], ], 'PutBucketAccelerateConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'AccelerateConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'AccelerateConfiguration' => [ 'shape' => 'AccelerateConfiguration', 'locationName' => 'AccelerateConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'AccelerateConfiguration', ], 'PutBucketAclRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'ACL' => [ 'shape' => 'BucketCannedACL', 'location' => 'header', 'locationName' => 'x-amz-acl', ], 'AccessControlPolicy' => [ 'shape' => 'AccessControlPolicy', 'locationName' => 'AccessControlPolicy', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'GrantFullControl' => [ 'shape' => 'GrantFullControl', 'location' => 'header', 'locationName' => 'x-amz-grant-full-control', ], 'GrantRead' => [ 'shape' => 'GrantRead', 'location' => 'header', 'locationName' => 'x-amz-grant-read', ], 'GrantReadACP' => [ 'shape' => 'GrantReadACP', 'location' => 'header', 'locationName' => 'x-amz-grant-read-acp', ], 'GrantWrite' => [ 'shape' => 'GrantWrite', 'location' => 'header', 'locationName' => 'x-amz-grant-write', ], 'GrantWriteACP' => [ 'shape' => 'GrantWriteACP', 'location' => 'header', 'locationName' => 'x-amz-grant-write-acp', ], ], 'payload' => 'AccessControlPolicy', ], 'PutBucketCorsRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'CORSConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'CORSConfiguration' => [ 'shape' => 'CORSConfiguration', 'locationName' => 'CORSConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], ], 'payload' => 'CORSConfiguration', ], 'PutBucketLifecycleConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'LifecycleConfiguration' => [ 'shape' => 'BucketLifecycleConfiguration', 'locationName' => 'LifecycleConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'LifecycleConfiguration', ], 'PutBucketLifecycleRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'LifecycleConfiguration' => [ 'shape' => 'LifecycleConfiguration', 'locationName' => 'LifecycleConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'LifecycleConfiguration', ], 'PutBucketLoggingRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'BucketLoggingStatus', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'BucketLoggingStatus' => [ 'shape' => 'BucketLoggingStatus', 'locationName' => 'BucketLoggingStatus', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], ], 'payload' => 'BucketLoggingStatus', ], 'PutBucketNotificationConfigurationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'NotificationConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'NotificationConfiguration' => [ 'shape' => 'NotificationConfiguration', 'locationName' => 'NotificationConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'NotificationConfiguration', ], 'PutBucketNotificationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'NotificationConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'NotificationConfiguration' => [ 'shape' => 'NotificationConfigurationDeprecated', 'locationName' => 'NotificationConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'NotificationConfiguration', ], 'PutBucketPolicyRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Policy', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'Policy' => [ 'shape' => 'Policy', ], ], 'payload' => 'Policy', ], 'PutBucketReplicationRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'ReplicationConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'ReplicationConfiguration' => [ 'shape' => 'ReplicationConfiguration', 'locationName' => 'ReplicationConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'ReplicationConfiguration', ], 'PutBucketRequestPaymentRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'RequestPaymentConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'RequestPaymentConfiguration' => [ 'shape' => 'RequestPaymentConfiguration', 'locationName' => 'RequestPaymentConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'RequestPaymentConfiguration', ], 'PutBucketTaggingRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Tagging', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'Tagging' => [ 'shape' => 'Tagging', 'locationName' => 'Tagging', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'Tagging', ], 'PutBucketVersioningRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'VersioningConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'MFA' => [ 'shape' => 'MFA', 'location' => 'header', 'locationName' => 'x-amz-mfa', ], 'VersioningConfiguration' => [ 'shape' => 'VersioningConfiguration', 'locationName' => 'VersioningConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'VersioningConfiguration', ], 'PutBucketWebsiteRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'WebsiteConfiguration', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'WebsiteConfiguration' => [ 'shape' => 'WebsiteConfiguration', 'locationName' => 'WebsiteConfiguration', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], ], 'payload' => 'WebsiteConfiguration', ], 'PutObjectAclOutput' => [ 'type' => 'structure', 'members' => [ 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'PutObjectAclRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'ACL' => [ 'shape' => 'ObjectCannedACL', 'location' => 'header', 'locationName' => 'x-amz-acl', ], 'AccessControlPolicy' => [ 'shape' => 'AccessControlPolicy', 'locationName' => 'AccessControlPolicy', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'GrantFullControl' => [ 'shape' => 'GrantFullControl', 'location' => 'header', 'locationName' => 'x-amz-grant-full-control', ], 'GrantRead' => [ 'shape' => 'GrantRead', 'location' => 'header', 'locationName' => 'x-amz-grant-read', ], 'GrantReadACP' => [ 'shape' => 'GrantReadACP', 'location' => 'header', 'locationName' => 'x-amz-grant-read-acp', ], 'GrantWrite' => [ 'shape' => 'GrantWrite', 'location' => 'header', 'locationName' => 'x-amz-grant-write', ], 'GrantWriteACP' => [ 'shape' => 'GrantWriteACP', 'location' => 'header', 'locationName' => 'x-amz-grant-write-acp', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'querystring', 'locationName' => 'versionId', ], ], 'payload' => 'AccessControlPolicy', ], 'PutObjectOutput' => [ 'type' => 'structure', 'members' => [ 'Expiration' => [ 'shape' => 'Expiration', 'location' => 'header', 'locationName' => 'x-amz-expiration', ], 'ETag' => [ 'shape' => 'ETag', 'location' => 'header', 'locationName' => 'ETag', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'header', 'locationName' => 'x-amz-version-id', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'PutObjectRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'ACL' => [ 'shape' => 'ObjectCannedACL', 'location' => 'header', 'locationName' => 'x-amz-acl', ], 'Body' => [ 'shape' => 'Body', 'streaming' => true, ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'CacheControl' => [ 'shape' => 'CacheControl', 'location' => 'header', 'locationName' => 'Cache-Control', ], 'ContentDisposition' => [ 'shape' => 'ContentDisposition', 'location' => 'header', 'locationName' => 'Content-Disposition', ], 'ContentEncoding' => [ 'shape' => 'ContentEncoding', 'location' => 'header', 'locationName' => 'Content-Encoding', ], 'ContentLanguage' => [ 'shape' => 'ContentLanguage', 'location' => 'header', 'locationName' => 'Content-Language', ], 'ContentLength' => [ 'shape' => 'ContentLength', 'location' => 'header', 'locationName' => 'Content-Length', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'ContentType' => [ 'shape' => 'ContentType', 'location' => 'header', 'locationName' => 'Content-Type', ], 'Expires' => [ 'shape' => 'Expires', 'location' => 'header', 'locationName' => 'Expires', ], 'GrantFullControl' => [ 'shape' => 'GrantFullControl', 'location' => 'header', 'locationName' => 'x-amz-grant-full-control', ], 'GrantRead' => [ 'shape' => 'GrantRead', 'location' => 'header', 'locationName' => 'x-amz-grant-read', ], 'GrantReadACP' => [ 'shape' => 'GrantReadACP', 'location' => 'header', 'locationName' => 'x-amz-grant-read-acp', ], 'GrantWriteACP' => [ 'shape' => 'GrantWriteACP', 'location' => 'header', 'locationName' => 'x-amz-grant-write-acp', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'Metadata' => [ 'shape' => 'Metadata', 'location' => 'headers', 'locationName' => 'x-amz-meta-', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'StorageClass' => [ 'shape' => 'StorageClass', 'location' => 'header', 'locationName' => 'x-amz-storage-class', ], 'WebsiteRedirectLocation' => [ 'shape' => 'WebsiteRedirectLocation', 'location' => 'header', 'locationName' => 'x-amz-website-redirect-location', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], 'payload' => 'Body', ], 'QueueArn' => [ 'type' => 'string', ], 'QueueConfiguration' => [ 'type' => 'structure', 'required' => [ 'QueueArn', 'Events', ], 'members' => [ 'Id' => [ 'shape' => 'NotificationId', ], 'QueueArn' => [ 'shape' => 'QueueArn', 'locationName' => 'Queue', ], 'Events' => [ 'shape' => 'EventList', 'locationName' => 'Event', ], 'Filter' => [ 'shape' => 'NotificationConfigurationFilter', ], ], ], 'QueueConfigurationDeprecated' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'NotificationId', ], 'Event' => [ 'shape' => 'Event', 'deprecated' => true, ], 'Events' => [ 'shape' => 'EventList', 'locationName' => 'Event', ], 'Queue' => [ 'shape' => 'QueueArn', ], ], ], 'QueueConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'QueueConfiguration', ], 'flattened' => true, ], 'Quiet' => [ 'type' => 'boolean', ], 'Range' => [ 'type' => 'string', ], 'Redirect' => [ 'type' => 'structure', 'members' => [ 'HostName' => [ 'shape' => 'HostName', ], 'HttpRedirectCode' => [ 'shape' => 'HttpRedirectCode', ], 'Protocol' => [ 'shape' => 'Protocol', ], 'ReplaceKeyPrefixWith' => [ 'shape' => 'ReplaceKeyPrefixWith', ], 'ReplaceKeyWith' => [ 'shape' => 'ReplaceKeyWith', ], ], ], 'RedirectAllRequestsTo' => [ 'type' => 'structure', 'required' => [ 'HostName', ], 'members' => [ 'HostName' => [ 'shape' => 'HostName', ], 'Protocol' => [ 'shape' => 'Protocol', ], ], ], 'ReplaceKeyPrefixWith' => [ 'type' => 'string', ], 'ReplaceKeyWith' => [ 'type' => 'string', ], 'ReplicationConfiguration' => [ 'type' => 'structure', 'required' => [ 'Role', 'Rules', ], 'members' => [ 'Role' => [ 'shape' => 'Role', ], 'Rules' => [ 'shape' => 'ReplicationRules', 'locationName' => 'Rule', ], ], ], 'ReplicationRule' => [ 'type' => 'structure', 'required' => [ 'Prefix', 'Status', 'Destination', ], 'members' => [ 'ID' => [ 'shape' => 'ID', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Status' => [ 'shape' => 'ReplicationRuleStatus', ], 'Destination' => [ 'shape' => 'Destination', ], ], ], 'ReplicationRuleStatus' => [ 'type' => 'string', 'enum' => [ 'Enabled', 'Disabled', ], ], 'ReplicationRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReplicationRule', ], 'flattened' => true, ], 'ReplicationStatus' => [ 'type' => 'string', 'enum' => [ 'COMPLETE', 'PENDING', 'FAILED', 'REPLICA', ], ], 'RequestCharged' => [ 'type' => 'string', 'enum' => [ 'requester', ], ], 'RequestPayer' => [ 'type' => 'string', 'enum' => [ 'requester', ], ], 'RequestPaymentConfiguration' => [ 'type' => 'structure', 'required' => [ 'Payer', ], 'members' => [ 'Payer' => [ 'shape' => 'Payer', ], ], ], 'ResponseCacheControl' => [ 'type' => 'string', ], 'ResponseContentDisposition' => [ 'type' => 'string', ], 'ResponseContentEncoding' => [ 'type' => 'string', ], 'ResponseContentLanguage' => [ 'type' => 'string', ], 'ResponseContentType' => [ 'type' => 'string', ], 'ResponseExpires' => [ 'type' => 'timestamp', ], 'Restore' => [ 'type' => 'string', ], 'RestoreObjectOutput' => [ 'type' => 'structure', 'members' => [ 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'RestoreObjectRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'VersionId' => [ 'shape' => 'ObjectVersionId', 'location' => 'querystring', 'locationName' => 'versionId', ], 'RestoreRequest' => [ 'shape' => 'RestoreRequest', 'locationName' => 'RestoreRequest', 'xmlNamespace' => [ 'uri' => 'http://s3.amazonaws.com/doc/2006-03-01/', ], ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], 'payload' => 'RestoreRequest', ], 'RestoreRequest' => [ 'type' => 'structure', 'required' => [ 'Days', ], 'members' => [ 'Days' => [ 'shape' => 'Days', ], ], ], 'Role' => [ 'type' => 'string', ], 'RoutingRule' => [ 'type' => 'structure', 'required' => [ 'Redirect', ], 'members' => [ 'Condition' => [ 'shape' => 'Condition', ], 'Redirect' => [ 'shape' => 'Redirect', ], ], ], 'RoutingRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'RoutingRule', 'locationName' => 'RoutingRule', ], ], 'Rule' => [ 'type' => 'structure', 'required' => [ 'Prefix', 'Status', ], 'members' => [ 'Expiration' => [ 'shape' => 'LifecycleExpiration', ], 'ID' => [ 'shape' => 'ID', ], 'Prefix' => [ 'shape' => 'Prefix', ], 'Status' => [ 'shape' => 'ExpirationStatus', ], 'Transition' => [ 'shape' => 'Transition', ], 'NoncurrentVersionTransition' => [ 'shape' => 'NoncurrentVersionTransition', ], 'NoncurrentVersionExpiration' => [ 'shape' => 'NoncurrentVersionExpiration', ], 'AbortIncompleteMultipartUpload' => [ 'shape' => 'AbortIncompleteMultipartUpload', ], ], ], 'Rules' => [ 'type' => 'list', 'member' => [ 'shape' => 'Rule', ], 'flattened' => true, ], 'S3KeyFilter' => [ 'type' => 'structure', 'members' => [ 'FilterRules' => [ 'shape' => 'FilterRuleList', 'locationName' => 'FilterRule', ], ], ], 'SSECustomerAlgorithm' => [ 'type' => 'string', ], 'SSECustomerKey' => [ 'type' => 'string', 'sensitive' => true, ], 'SSECustomerKeyMD5' => [ 'type' => 'string', ], 'SSEKMSKeyId' => [ 'type' => 'string', 'sensitive' => true, ], 'ServerSideEncryption' => [ 'type' => 'string', 'enum' => [ 'AES256', 'aws:kms', ], ], 'Size' => [ 'type' => 'integer', ], 'StartAfter' => [ 'type' => 'string', ], 'StorageClass' => [ 'type' => 'string', 'enum' => [ 'STANDARD', 'REDUCED_REDUNDANCY', 'STANDARD_IA', ], ], 'Suffix' => [ 'type' => 'string', ], 'Tag' => [ 'type' => 'structure', 'required' => [ 'Key', 'Value', ], 'members' => [ 'Key' => [ 'shape' => 'ObjectKey', ], 'Value' => [ 'shape' => 'Value', ], ], ], 'TagSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', 'locationName' => 'Tag', ], ], 'Tagging' => [ 'type' => 'structure', 'required' => [ 'TagSet', ], 'members' => [ 'TagSet' => [ 'shape' => 'TagSet', ], ], ], 'TargetBucket' => [ 'type' => 'string', ], 'TargetGrant' => [ 'type' => 'structure', 'members' => [ 'Grantee' => [ 'shape' => 'Grantee', ], 'Permission' => [ 'shape' => 'BucketLogsPermission', ], ], ], 'TargetGrants' => [ 'type' => 'list', 'member' => [ 'shape' => 'TargetGrant', 'locationName' => 'Grant', ], ], 'TargetPrefix' => [ 'type' => 'string', ], 'Token' => [ 'type' => 'string', ], 'TopicArn' => [ 'type' => 'string', ], 'TopicConfiguration' => [ 'type' => 'structure', 'required' => [ 'TopicArn', 'Events', ], 'members' => [ 'Id' => [ 'shape' => 'NotificationId', ], 'TopicArn' => [ 'shape' => 'TopicArn', 'locationName' => 'Topic', ], 'Events' => [ 'shape' => 'EventList', 'locationName' => 'Event', ], 'Filter' => [ 'shape' => 'NotificationConfigurationFilter', ], ], ], 'TopicConfigurationDeprecated' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'NotificationId', ], 'Events' => [ 'shape' => 'EventList', 'locationName' => 'Event', ], 'Event' => [ 'shape' => 'Event', 'deprecated' => true, ], 'Topic' => [ 'shape' => 'TopicArn', ], ], ], 'TopicConfigurationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TopicConfiguration', ], 'flattened' => true, ], 'Transition' => [ 'type' => 'structure', 'members' => [ 'Date' => [ 'shape' => 'Date', ], 'Days' => [ 'shape' => 'Days', ], 'StorageClass' => [ 'shape' => 'TransitionStorageClass', ], ], ], 'TransitionList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Transition', ], 'flattened' => true, ], 'TransitionStorageClass' => [ 'type' => 'string', 'enum' => [ 'GLACIER', 'STANDARD_IA', ], ], 'Type' => [ 'type' => 'string', 'enum' => [ 'CanonicalUser', 'AmazonCustomerByEmail', 'Group', ], ], 'URI' => [ 'type' => 'string', ], 'UploadIdMarker' => [ 'type' => 'string', ], 'UploadPartCopyOutput' => [ 'type' => 'structure', 'members' => [ 'CopySourceVersionId' => [ 'shape' => 'CopySourceVersionId', 'location' => 'header', 'locationName' => 'x-amz-copy-source-version-id', ], 'CopyPartResult' => [ 'shape' => 'CopyPartResult', ], 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], 'payload' => 'CopyPartResult', ], 'UploadPartCopyRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'CopySource', 'Key', 'PartNumber', 'UploadId', ], 'members' => [ 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'CopySource' => [ 'shape' => 'CopySource', 'location' => 'header', 'locationName' => 'x-amz-copy-source', ], 'CopySourceIfMatch' => [ 'shape' => 'CopySourceIfMatch', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-match', ], 'CopySourceIfModifiedSince' => [ 'shape' => 'CopySourceIfModifiedSince', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-modified-since', ], 'CopySourceIfNoneMatch' => [ 'shape' => 'CopySourceIfNoneMatch', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-none-match', ], 'CopySourceIfUnmodifiedSince' => [ 'shape' => 'CopySourceIfUnmodifiedSince', 'location' => 'header', 'locationName' => 'x-amz-copy-source-if-unmodified-since', ], 'CopySourceRange' => [ 'shape' => 'CopySourceRange', 'location' => 'header', 'locationName' => 'x-amz-copy-source-range', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'PartNumber' => [ 'shape' => 'PartNumber', 'location' => 'querystring', 'locationName' => 'partNumber', ], 'UploadId' => [ 'shape' => 'MultipartUploadId', 'location' => 'querystring', 'locationName' => 'uploadId', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'CopySourceSSECustomerAlgorithm' => [ 'shape' => 'CopySourceSSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-copy-source-server-side-encryption-customer-algorithm', ], 'CopySourceSSECustomerKey' => [ 'shape' => 'CopySourceSSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-copy-source-server-side-encryption-customer-key', ], 'CopySourceSSECustomerKeyMD5' => [ 'shape' => 'CopySourceSSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-copy-source-server-side-encryption-customer-key-MD5', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], ], 'UploadPartOutput' => [ 'type' => 'structure', 'members' => [ 'ServerSideEncryption' => [ 'shape' => 'ServerSideEncryption', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption', ], 'ETag' => [ 'shape' => 'ETag', 'location' => 'header', 'locationName' => 'ETag', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'SSEKMSKeyId' => [ 'shape' => 'SSEKMSKeyId', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-aws-kms-key-id', ], 'RequestCharged' => [ 'shape' => 'RequestCharged', 'location' => 'header', 'locationName' => 'x-amz-request-charged', ], ], ], 'UploadPartRequest' => [ 'type' => 'structure', 'required' => [ 'Bucket', 'Key', 'PartNumber', 'UploadId', ], 'members' => [ 'Body' => [ 'shape' => 'Body', 'streaming' => true, ], 'Bucket' => [ 'shape' => 'BucketName', 'location' => 'uri', 'locationName' => 'Bucket', ], 'ContentLength' => [ 'shape' => 'ContentLength', 'location' => 'header', 'locationName' => 'Content-Length', ], 'ContentMD5' => [ 'shape' => 'ContentMD5', 'location' => 'header', 'locationName' => 'Content-MD5', ], 'Key' => [ 'shape' => 'ObjectKey', 'location' => 'uri', 'locationName' => 'Key', ], 'PartNumber' => [ 'shape' => 'PartNumber', 'location' => 'querystring', 'locationName' => 'partNumber', ], 'UploadId' => [ 'shape' => 'MultipartUploadId', 'location' => 'querystring', 'locationName' => 'uploadId', ], 'SSECustomerAlgorithm' => [ 'shape' => 'SSECustomerAlgorithm', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-algorithm', ], 'SSECustomerKey' => [ 'shape' => 'SSECustomerKey', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key', ], 'SSECustomerKeyMD5' => [ 'shape' => 'SSECustomerKeyMD5', 'location' => 'header', 'locationName' => 'x-amz-server-side-encryption-customer-key-MD5', ], 'RequestPayer' => [ 'shape' => 'RequestPayer', 'location' => 'header', 'locationName' => 'x-amz-request-payer', ], ], 'payload' => 'Body', ], 'Value' => [ 'type' => 'string', ], 'VersionIdMarker' => [ 'type' => 'string', ], 'VersioningConfiguration' => [ 'type' => 'structure', 'members' => [ 'MFADelete' => [ 'shape' => 'MFADelete', 'locationName' => 'MfaDelete', ], 'Status' => [ 'shape' => 'BucketVersioningStatus', ], ], ], 'WebsiteConfiguration' => [ 'type' => 'structure', 'members' => [ 'ErrorDocument' => [ 'shape' => 'ErrorDocument', ], 'IndexDocument' => [ 'shape' => 'IndexDocument', ], 'RedirectAllRequestsTo' => [ 'shape' => 'RedirectAllRequestsTo', ], 'RoutingRules' => [ 'shape' => 'RoutingRules', ], ], ], 'WebsiteRedirectLocation' => [ 'type' => 'string', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/waiters-1.json.php new file mode 100644 index 000000000..70e0bdb8a --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/waiters-1.json.php @@ -0,0 +1,3 @@ + [ '__default__' => [ 'interval' => 5, 'max_attempts' => 20, ], 'BucketExists' => [ 'operation' => 'HeadBucket', 'ignore_errors' => [ 'NoSuchBucket', ], 'success_type' => 'output', ], 'BucketNotExists' => [ 'operation' => 'HeadBucket', 'success_type' => 'error', 'success_value' => 'NoSuchBucket', ], 'ObjectExists' => [ 'operation' => 'HeadObject', 'ignore_errors' => [ 'NoSuchKey', ], 'success_type' => 'output', ], 'ObjectNotExists' => [ 'operation' => 'HeadObject', 'success_type' => 'error', 'success_value' => 'NoSuchKey', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10/api-2.json.php index ad11f8621..93261a7bc 100644 --- a/vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2015-12-10', 'endpointPrefix' => 'servicecatalog', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceFullName' => 'AWS Service Catalog', 'signatureVersion' => 'v4', 'targetPrefix' => 'AWS242ServiceCatalogService', ], 'operations' => [ 'DescribeProduct' => [ 'name' => 'DescribeProduct', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeProductInput', ], 'output' => [ 'shape' => 'DescribeProductOutput', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParametersException', ], ], ], 'DescribeProductView' => [ 'name' => 'DescribeProductView', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeProductViewInput', ], 'output' => [ 'shape' => 'DescribeProductViewOutput', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParametersException', ], ], ], 'DescribeProvisioningParameters' => [ 'name' => 'DescribeProvisioningParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeProvisioningParametersInput', ], 'output' => [ 'shape' => 'DescribeProvisioningParametersOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeRecord' => [ 'name' => 'DescribeRecord', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeRecordInput', ], 'output' => [ 'shape' => 'DescribeRecordOutput', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListLaunchPaths' => [ 'name' => 'ListLaunchPaths', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListLaunchPathsInput', ], 'output' => [ 'shape' => 'ListLaunchPathsOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListRecordHistory' => [ 'name' => 'ListRecordHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListRecordHistoryInput', ], 'output' => [ 'shape' => 'ListRecordHistoryOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], ], ], 'ProvisionProduct' => [ 'name' => 'ProvisionProduct', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ProvisionProductInput', ], 'output' => [ 'shape' => 'ProvisionProductOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'DuplicateResourceException', ], ], ], 'ScanProvisionedProducts' => [ 'name' => 'ScanProvisionedProducts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ScanProvisionedProductsInput', ], 'output' => [ 'shape' => 'ScanProvisionedProductsOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], ], ], 'SearchProducts' => [ 'name' => 'SearchProducts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SearchProductsInput', ], 'output' => [ 'shape' => 'SearchProductsOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], ], ], 'TerminateProvisionedProduct' => [ 'name' => 'TerminateProvisionedProduct', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TerminateProvisionedProductInput', ], 'output' => [ 'shape' => 'TerminateProvisionedProductOutput', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], ], ], 'UpdateProvisionedProduct' => [ 'name' => 'UpdateProvisionedProduct', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateProvisionedProductInput', ], 'output' => [ 'shape' => 'UpdateProvisionedProductOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], ], 'shapes' => [ 'AcceptLanguage' => [ 'type' => 'string', ], 'AllowedValue' => [ 'type' => 'string', ], 'AllowedValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedValue', ], ], 'ApproximateCount' => [ 'type' => 'integer', ], 'AttributeValue' => [ 'type' => 'string', ], 'ConstraintDescription' => [ 'type' => 'string', ], 'ConstraintSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConstraintSummary', ], ], 'ConstraintSummary' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'ConstraintType', ], 'Description' => [ 'shape' => 'ConstraintDescription', ], ], ], 'ConstraintType' => [ 'type' => 'string', ], 'CreatedTime' => [ 'type' => 'timestamp', ], 'DefaultValue' => [ 'type' => 'string', ], 'DescribeProductInput' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'Id' => [ 'shape' => 'Id', ], ], ], 'DescribeProductOutput' => [ 'type' => 'structure', 'members' => [ 'ProductViewSummary' => [ 'shape' => 'ProductViewSummary', ], 'ProvisioningArtifacts' => [ 'shape' => 'ProvisioningArtifacts', ], ], ], 'DescribeProductViewInput' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'Id' => [ 'shape' => 'Id', ], ], ], 'DescribeProductViewOutput' => [ 'type' => 'structure', 'members' => [ 'ProductViewSummary' => [ 'shape' => 'ProductViewSummary', ], 'ProvisioningArtifacts' => [ 'shape' => 'ProvisioningArtifacts', ], ], ], 'DescribeProvisioningParametersInput' => [ 'type' => 'structure', 'required' => [ 'ProductId', 'ProvisioningArtifactId', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'ProductId' => [ 'shape' => 'Id', ], 'ProvisioningArtifactId' => [ 'shape' => 'Id', ], 'PathId' => [ 'shape' => 'Id', ], ], ], 'DescribeProvisioningParametersOutput' => [ 'type' => 'structure', 'members' => [ 'ProvisioningArtifactParameters' => [ 'shape' => 'ProvisioningArtifactParameters', ], 'ConstraintSummaries' => [ 'shape' => 'ConstraintSummaries', ], 'UsageInstructions' => [ 'shape' => 'UsageInstructions', ], ], ], 'DescribeRecordInput' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'Id' => [ 'shape' => 'Id', ], 'PageToken' => [ 'shape' => 'PageToken', ], 'PageSize' => [ 'shape' => 'PageSize', ], ], ], 'DescribeRecordOutput' => [ 'type' => 'structure', 'members' => [ 'RecordDetail' => [ 'shape' => 'RecordDetail', ], 'RecordOutputs' => [ 'shape' => 'RecordOutputs', ], 'NextPageToken' => [ 'shape' => 'PageToken', ], ], ], 'Description' => [ 'type' => 'string', ], 'DuplicateResourceException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ErrorCode' => [ 'type' => 'string', ], 'ErrorDescription' => [ 'type' => 'string', ], 'HasDefaultPath' => [ 'type' => 'boolean', ], 'Id' => [ 'type' => 'string', ], 'IdempotencyToken' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9][a-zA-Z0-9_-]*', ], 'IgnoreErrors' => [ 'type' => 'boolean', ], 'InstructionType' => [ 'type' => 'string', ], 'InstructionValue' => [ 'type' => 'string', ], 'InvalidParametersException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'LastRequestId' => [ 'type' => 'string', ], 'LaunchPathSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchPathSummary', ], ], 'LaunchPathSummary' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'Id', ], 'ConstraintSummaries' => [ 'shape' => 'ConstraintSummaries', ], 'Tags' => [ 'shape' => 'Tags', ], 'Name' => [ 'shape' => 'PortfolioName', ], ], ], 'ListLaunchPathsInput' => [ 'type' => 'structure', 'required' => [ 'ProductId', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'ProductId' => [ 'shape' => 'Id', ], 'PageSize' => [ 'shape' => 'PageSize', ], 'PageToken' => [ 'shape' => 'PageToken', ], ], ], 'ListLaunchPathsOutput' => [ 'type' => 'structure', 'members' => [ 'LaunchPathSummaries' => [ 'shape' => 'LaunchPathSummaries', ], 'NextPageToken' => [ 'shape' => 'PageToken', ], ], ], 'ListRecordHistoryInput' => [ 'type' => 'structure', 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'SearchFilter' => [ 'shape' => 'ListRecordHistorySearchFilter', ], 'PageSize' => [ 'shape' => 'PageSize', ], 'PageToken' => [ 'shape' => 'PageToken', ], ], ], 'ListRecordHistoryOutput' => [ 'type' => 'structure', 'members' => [ 'RecordDetails' => [ 'shape' => 'RecordDetails', ], 'NextPageToken' => [ 'shape' => 'PageToken', ], ], ], 'ListRecordHistorySearchFilter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'SearchFilterKey', ], 'Value' => [ 'shape' => 'SearchFilterValue', ], ], ], 'NoEcho' => [ 'type' => 'boolean', ], 'NotificationArn' => [ 'type' => 'string', 'max' => 1224, 'min' => 1, 'pattern' => 'arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}', ], 'NotificationArns' => [ 'type' => 'list', 'member' => [ 'shape' => 'NotificationArn', ], 'max' => 5, ], 'OutputKey' => [ 'type' => 'string', ], 'OutputValue' => [ 'type' => 'string', ], 'PageSize' => [ 'type' => 'integer', 'max' => 20, 'min' => 0, ], 'PageToken' => [ 'type' => 'string', 'pattern' => '[\\u0009\\u000a\\u000d\\u0020-\\uD7FF\\uE000-\\uFFFD]*', ], 'ParameterConstraints' => [ 'type' => 'structure', 'members' => [ 'AllowedValues' => [ 'shape' => 'AllowedValues', ], ], ], 'ParameterKey' => [ 'type' => 'string', ], 'ParameterType' => [ 'type' => 'string', ], 'ParameterValue' => [ 'type' => 'string', ], 'PortfolioName' => [ 'type' => 'string', ], 'ProductType' => [ 'type' => 'string', ], 'ProductViewAggregationType' => [ 'type' => 'string', ], 'ProductViewAggregationValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'AttributeValue', ], 'ApproximateCount' => [ 'shape' => 'ApproximateCount', ], ], ], 'ProductViewAggregationValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProductViewAggregationValue', ], ], 'ProductViewAggregations' => [ 'type' => 'map', 'key' => [ 'shape' => 'ProductViewAggregationType', ], 'value' => [ 'shape' => 'ProductViewAggregationValues', ], ], 'ProductViewDistributor' => [ 'type' => 'string', ], 'ProductViewFilterBy' => [ 'type' => 'string', 'enum' => [ 'FullTextSearch', 'Owner', 'ProductType', ], ], 'ProductViewFilterValue' => [ 'type' => 'string', ], 'ProductViewFilterValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProductViewFilterValue', ], ], 'ProductViewFilters' => [ 'type' => 'map', 'key' => [ 'shape' => 'ProductViewFilterBy', ], 'value' => [ 'shape' => 'ProductViewFilterValues', ], ], 'ProductViewName' => [ 'type' => 'string', ], 'ProductViewOwner' => [ 'type' => 'string', ], 'ProductViewShortDescription' => [ 'type' => 'string', ], 'ProductViewSortBy' => [ 'type' => 'string', 'enum' => [ 'Title', 'VersionCount', 'CreationDate', ], ], 'ProductViewSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProductViewSummary', ], ], 'ProductViewSummary' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'Id', ], 'ProductId' => [ 'shape' => 'Id', ], 'Name' => [ 'shape' => 'ProductViewName', ], 'Owner' => [ 'shape' => 'ProductViewOwner', ], 'ShortDescription' => [ 'shape' => 'ProductViewShortDescription', ], 'Type' => [ 'shape' => 'ProductType', ], 'Distributor' => [ 'shape' => 'ProductViewDistributor', ], 'HasDefaultPath' => [ 'shape' => 'HasDefaultPath', ], 'SupportEmail' => [ 'shape' => 'SupportEmail', ], 'SupportDescription' => [ 'shape' => 'SupportDescription', ], 'SupportUrl' => [ 'shape' => 'SupportUrl', ], ], ], 'ProvisionProductInput' => [ 'type' => 'structure', 'required' => [ 'ProductId', 'ProvisioningArtifactId', 'ProvisionedProductName', 'ProvisionToken', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'ProductId' => [ 'shape' => 'Id', ], 'ProvisioningArtifactId' => [ 'shape' => 'Id', ], 'PathId' => [ 'shape' => 'Id', ], 'ProvisionedProductName' => [ 'shape' => 'ProvisionedProductName', ], 'ProvisioningParameters' => [ 'shape' => 'ProvisioningParameters', ], 'Tags' => [ 'shape' => 'Tags', ], 'NotificationArns' => [ 'shape' => 'NotificationArns', ], 'ProvisionToken' => [ 'shape' => 'IdempotencyToken', 'idempotencyToken' => true, ], ], ], 'ProvisionProductOutput' => [ 'type' => 'structure', 'members' => [ 'RecordDetail' => [ 'shape' => 'RecordDetail', ], ], ], 'ProvisionedProductDetail' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'ProvisionedProductNameOrArn', ], 'Arn' => [ 'shape' => 'ProvisionedProductNameOrArn', ], 'Type' => [ 'shape' => 'ProvisionedProductType', ], 'Id' => [ 'shape' => 'ProvisionedProductId', ], 'Status' => [ 'shape' => 'RecordStatus', ], 'StatusMessage' => [ 'shape' => 'ProvisionedProductStatusMessage', ], 'CreatedTime' => [ 'shape' => 'CreatedTime', ], 'IdempotencyToken' => [ 'shape' => 'IdempotencyToken', ], 'LastRecordId' => [ 'shape' => 'LastRequestId', ], ], ], 'ProvisionedProductDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProvisionedProductDetail', ], ], 'ProvisionedProductId' => [ 'type' => 'string', ], 'ProvisionedProductName' => [ 'type' => 'string', ], 'ProvisionedProductNameOrArn' => [ 'type' => 'string', 'max' => 1224, 'min' => 1, 'pattern' => '[a-zA-Z0-9][a-zA-Z0-9_-]{0,127}|arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}', ], 'ProvisionedProductStatusMessage' => [ 'type' => 'string', ], 'ProvisionedProductType' => [ 'type' => 'string', ], 'ProvisioningArtifact' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'Id', ], 'Name' => [ 'shape' => 'ProvisioningArtifactName', ], 'Description' => [ 'shape' => 'ProvisioningArtifactDescription', ], 'CreatedTime' => [ 'shape' => 'ProvisioningArtifactCreatedTime', ], ], ], 'ProvisioningArtifactCreatedTime' => [ 'type' => 'timestamp', ], 'ProvisioningArtifactDescription' => [ 'type' => 'string', ], 'ProvisioningArtifactName' => [ 'type' => 'string', ], 'ProvisioningArtifactParameter' => [ 'type' => 'structure', 'members' => [ 'ParameterKey' => [ 'shape' => 'ParameterKey', ], 'DefaultValue' => [ 'shape' => 'DefaultValue', ], 'ParameterType' => [ 'shape' => 'ParameterType', ], 'IsNoEcho' => [ 'shape' => 'NoEcho', ], 'Description' => [ 'shape' => 'Description', ], 'ParameterConstraints' => [ 'shape' => 'ParameterConstraints', ], ], ], 'ProvisioningArtifactParameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProvisioningArtifactParameter', ], ], 'ProvisioningArtifacts' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProvisioningArtifact', ], ], 'ProvisioningParameter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'ParameterKey', ], 'Value' => [ 'shape' => 'ParameterValue', ], ], ], 'ProvisioningParameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProvisioningParameter', ], ], 'RecordDetail' => [ 'type' => 'structure', 'members' => [ 'RecordId' => [ 'shape' => 'Id', ], 'ProvisionedProductName' => [ 'shape' => 'ProvisionedProductName', ], 'Status' => [ 'shape' => 'RecordStatus', ], 'CreatedTime' => [ 'shape' => 'CreatedTime', ], 'UpdatedTime' => [ 'shape' => 'UpdatedTime', ], 'ProvisionedProductType' => [ 'shape' => 'ProvisionedProductType', ], 'RecordType' => [ 'shape' => 'RecordType', ], 'ProvisionedProductId' => [ 'shape' => 'Id', ], 'ProductId' => [ 'shape' => 'Id', ], 'ProvisioningArtifactId' => [ 'shape' => 'Id', ], 'PathId' => [ 'shape' => 'Id', ], 'RecordErrors' => [ 'shape' => 'RecordErrors', ], 'RecordTags' => [ 'shape' => 'RecordTags', ], ], ], 'RecordDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecordDetail', ], ], 'RecordError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ErrorCode', ], 'Description' => [ 'shape' => 'ErrorDescription', ], ], ], 'RecordErrors' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecordError', ], ], 'RecordOutput' => [ 'type' => 'structure', 'members' => [ 'OutputKey' => [ 'shape' => 'OutputKey', ], 'OutputValue' => [ 'shape' => 'OutputValue', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'RecordOutputs' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecordOutput', ], ], 'RecordStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'SUCCEEDED', 'ERROR', ], ], 'RecordTag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'RecordTagKey', ], 'Value' => [ 'shape' => 'RecordTagValue', ], ], ], 'RecordTagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$', ], 'RecordTagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$', ], 'RecordTags' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecordTag', ], 'max' => 10, ], 'RecordType' => [ 'type' => 'string', ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ScanProvisionedProductsInput' => [ 'type' => 'structure', 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'PageSize' => [ 'shape' => 'PageSize', ], 'PageToken' => [ 'shape' => 'PageToken', ], ], ], 'ScanProvisionedProductsOutput' => [ 'type' => 'structure', 'members' => [ 'ProvisionedProducts' => [ 'shape' => 'ProvisionedProductDetails', ], 'NextPageToken' => [ 'shape' => 'PageToken', ], ], ], 'SearchFilterKey' => [ 'type' => 'string', ], 'SearchFilterValue' => [ 'type' => 'string', ], 'SearchProductsInput' => [ 'type' => 'structure', 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'Filters' => [ 'shape' => 'ProductViewFilters', ], 'PageSize' => [ 'shape' => 'PageSize', ], 'SortBy' => [ 'shape' => 'ProductViewSortBy', ], 'SortOrder' => [ 'shape' => 'SortOrder', ], 'PageToken' => [ 'shape' => 'PageToken', ], ], ], 'SearchProductsOutput' => [ 'type' => 'structure', 'members' => [ 'ProductViewSummaries' => [ 'shape' => 'ProductViewSummaries', ], 'ProductViewAggregations' => [ 'shape' => 'ProductViewAggregations', ], 'NextPageToken' => [ 'shape' => 'PageToken', ], ], ], 'SortOrder' => [ 'type' => 'string', 'enum' => [ 'ASCENDING', 'DESCENDING', ], ], 'SupportDescription' => [ 'type' => 'string', ], 'SupportEmail' => [ 'type' => 'string', ], 'SupportUrl' => [ 'type' => 'string', ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$', ], 'TagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$', ], 'Tags' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], 'max' => 10, ], 'TerminateProvisionedProductInput' => [ 'type' => 'structure', 'required' => [ 'TerminateToken', ], 'members' => [ 'ProvisionedProductName' => [ 'shape' => 'ProvisionedProductNameOrArn', ], 'ProvisionedProductId' => [ 'shape' => 'Id', ], 'TerminateToken' => [ 'shape' => 'IdempotencyToken', 'idempotencyToken' => true, ], 'IgnoreErrors' => [ 'shape' => 'IgnoreErrors', ], 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], ], ], 'TerminateProvisionedProductOutput' => [ 'type' => 'structure', 'members' => [ 'RecordDetail' => [ 'shape' => 'RecordDetail', ], ], ], 'UpdateProvisionedProductInput' => [ 'type' => 'structure', 'required' => [ 'UpdateToken', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'ProvisionedProductName' => [ 'shape' => 'ProvisionedProductNameOrArn', ], 'ProvisionedProductId' => [ 'shape' => 'Id', ], 'ProductId' => [ 'shape' => 'Id', ], 'ProvisioningArtifactId' => [ 'shape' => 'Id', ], 'PathId' => [ 'shape' => 'Id', ], 'ProvisioningParameters' => [ 'shape' => 'UpdateProvisioningParameters', ], 'UpdateToken' => [ 'shape' => 'IdempotencyToken', 'idempotencyToken' => true, ], ], ], 'UpdateProvisionedProductOutput' => [ 'type' => 'structure', 'members' => [ 'RecordDetail' => [ 'shape' => 'RecordDetail', ], ], ], 'UpdateProvisioningParameter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'ParameterKey', ], 'Value' => [ 'shape' => 'ParameterValue', ], 'UsePreviousValue' => [ 'shape' => 'UsePreviousValue', ], ], ], 'UpdateProvisioningParameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'UpdateProvisioningParameter', ], ], 'UpdatedTime' => [ 'type' => 'timestamp', ], 'UsageInstruction' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'InstructionType', ], 'Value' => [ 'shape' => 'InstructionValue', ], ], ], 'UsageInstructions' => [ 'type' => 'list', 'member' => [ 'shape' => 'UsageInstruction', ], ], 'UsePreviousValue' => [ 'type' => 'boolean', ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2015-12-10', 'endpointPrefix' => 'servicecatalog', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceFullName' => 'AWS Service Catalog', 'signatureVersion' => 'v4', 'targetPrefix' => 'AWS242ServiceCatalogService', ], 'operations' => [ 'DescribeProduct' => [ 'name' => 'DescribeProduct', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeProductInput', ], 'output' => [ 'shape' => 'DescribeProductOutput', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParametersException', ], ], ], 'DescribeProductView' => [ 'name' => 'DescribeProductView', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeProductViewInput', ], 'output' => [ 'shape' => 'DescribeProductViewOutput', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'InvalidParametersException', ], ], ], 'DescribeProvisioningParameters' => [ 'name' => 'DescribeProvisioningParameters', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeProvisioningParametersInput', ], 'output' => [ 'shape' => 'DescribeProvisioningParametersOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'DescribeRecord' => [ 'name' => 'DescribeRecord', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeRecordInput', ], 'output' => [ 'shape' => 'DescribeRecordOutput', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListLaunchPaths' => [ 'name' => 'ListLaunchPaths', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListLaunchPathsInput', ], 'output' => [ 'shape' => 'ListLaunchPathsOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], 'ListRecordHistory' => [ 'name' => 'ListRecordHistory', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListRecordHistoryInput', ], 'output' => [ 'shape' => 'ListRecordHistoryOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], ], ], 'ProvisionProduct' => [ 'name' => 'ProvisionProduct', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ProvisionProductInput', ], 'output' => [ 'shape' => 'ProvisionProductOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], [ 'shape' => 'ResourceNotFoundException', ], [ 'shape' => 'DuplicateResourceException', ], ], ], 'ScanProvisionedProducts' => [ 'name' => 'ScanProvisionedProducts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ScanProvisionedProductsInput', ], 'output' => [ 'shape' => 'ScanProvisionedProductsOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], ], ], 'SearchProducts' => [ 'name' => 'SearchProducts', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'SearchProductsInput', ], 'output' => [ 'shape' => 'SearchProductsOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], ], ], 'TerminateProvisionedProduct' => [ 'name' => 'TerminateProvisionedProduct', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'TerminateProvisionedProductInput', ], 'output' => [ 'shape' => 'TerminateProvisionedProductOutput', ], 'errors' => [ [ 'shape' => 'ResourceNotFoundException', ], ], ], 'UpdateProvisionedProduct' => [ 'name' => 'UpdateProvisionedProduct', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateProvisionedProductInput', ], 'output' => [ 'shape' => 'UpdateProvisionedProductOutput', ], 'errors' => [ [ 'shape' => 'InvalidParametersException', ], [ 'shape' => 'ResourceNotFoundException', ], ], ], ], 'shapes' => [ 'AcceptLanguage' => [ 'type' => 'string', ], 'AccessLevelFilter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'AccessLevelFilterKey', ], 'Value' => [ 'shape' => 'AccessLevelFilterValue', ], ], ], 'AccessLevelFilterKey' => [ 'type' => 'string', 'enum' => [ 'Account', 'Role', 'User', ], ], 'AccessLevelFilterValue' => [ 'type' => 'string', ], 'AllowedValue' => [ 'type' => 'string', ], 'AllowedValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'AllowedValue', ], ], 'ApproximateCount' => [ 'type' => 'integer', ], 'AttributeValue' => [ 'type' => 'string', ], 'ConstraintDescription' => [ 'type' => 'string', ], 'ConstraintSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConstraintSummary', ], ], 'ConstraintSummary' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'ConstraintType', ], 'Description' => [ 'shape' => 'ConstraintDescription', ], ], ], 'ConstraintType' => [ 'type' => 'string', ], 'CreatedTime' => [ 'type' => 'timestamp', ], 'DefaultValue' => [ 'type' => 'string', ], 'DescribeProductInput' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'Id' => [ 'shape' => 'Id', ], ], ], 'DescribeProductOutput' => [ 'type' => 'structure', 'members' => [ 'ProductViewSummary' => [ 'shape' => 'ProductViewSummary', ], 'ProvisioningArtifacts' => [ 'shape' => 'ProvisioningArtifacts', ], ], ], 'DescribeProductViewInput' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'Id' => [ 'shape' => 'Id', ], ], ], 'DescribeProductViewOutput' => [ 'type' => 'structure', 'members' => [ 'ProductViewSummary' => [ 'shape' => 'ProductViewSummary', ], 'ProvisioningArtifacts' => [ 'shape' => 'ProvisioningArtifacts', ], ], ], 'DescribeProvisioningParametersInput' => [ 'type' => 'structure', 'required' => [ 'ProductId', 'ProvisioningArtifactId', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'ProductId' => [ 'shape' => 'Id', ], 'ProvisioningArtifactId' => [ 'shape' => 'Id', ], 'PathId' => [ 'shape' => 'Id', ], ], ], 'DescribeProvisioningParametersOutput' => [ 'type' => 'structure', 'members' => [ 'ProvisioningArtifactParameters' => [ 'shape' => 'ProvisioningArtifactParameters', ], 'ConstraintSummaries' => [ 'shape' => 'ConstraintSummaries', ], 'UsageInstructions' => [ 'shape' => 'UsageInstructions', ], ], ], 'DescribeRecordInput' => [ 'type' => 'structure', 'required' => [ 'Id', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'Id' => [ 'shape' => 'Id', ], 'PageToken' => [ 'shape' => 'PageToken', ], 'PageSize' => [ 'shape' => 'PageSize', ], ], ], 'DescribeRecordOutput' => [ 'type' => 'structure', 'members' => [ 'RecordDetail' => [ 'shape' => 'RecordDetail', ], 'RecordOutputs' => [ 'shape' => 'RecordOutputs', ], 'NextPageToken' => [ 'shape' => 'PageToken', ], ], ], 'Description' => [ 'type' => 'string', ], 'DuplicateResourceException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ErrorCode' => [ 'type' => 'string', ], 'ErrorDescription' => [ 'type' => 'string', ], 'HasDefaultPath' => [ 'type' => 'boolean', ], 'Id' => [ 'type' => 'string', 'min' => 1, ], 'IdempotencyToken' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '[a-zA-Z0-9][a-zA-Z0-9_-]*', ], 'IgnoreErrors' => [ 'type' => 'boolean', ], 'InstructionType' => [ 'type' => 'string', ], 'InstructionValue' => [ 'type' => 'string', ], 'InvalidParametersException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'LastRequestId' => [ 'type' => 'string', ], 'LaunchPathSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'LaunchPathSummary', ], ], 'LaunchPathSummary' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'Id', ], 'ConstraintSummaries' => [ 'shape' => 'ConstraintSummaries', ], 'Tags' => [ 'shape' => 'Tags', ], 'Name' => [ 'shape' => 'PortfolioName', ], ], ], 'ListLaunchPathsInput' => [ 'type' => 'structure', 'required' => [ 'ProductId', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'ProductId' => [ 'shape' => 'Id', ], 'PageSize' => [ 'shape' => 'PageSize', ], 'PageToken' => [ 'shape' => 'PageToken', ], ], ], 'ListLaunchPathsOutput' => [ 'type' => 'structure', 'members' => [ 'LaunchPathSummaries' => [ 'shape' => 'LaunchPathSummaries', ], 'NextPageToken' => [ 'shape' => 'PageToken', ], ], ], 'ListRecordHistoryInput' => [ 'type' => 'structure', 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'AccessLevelFilter' => [ 'shape' => 'AccessLevelFilter', ], 'SearchFilter' => [ 'shape' => 'ListRecordHistorySearchFilter', ], 'PageSize' => [ 'shape' => 'PageSize', ], 'PageToken' => [ 'shape' => 'PageToken', ], ], ], 'ListRecordHistoryOutput' => [ 'type' => 'structure', 'members' => [ 'RecordDetails' => [ 'shape' => 'RecordDetails', ], 'NextPageToken' => [ 'shape' => 'PageToken', ], ], ], 'ListRecordHistorySearchFilter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'SearchFilterKey', ], 'Value' => [ 'shape' => 'SearchFilterValue', ], ], ], 'NoEcho' => [ 'type' => 'boolean', ], 'NotificationArn' => [ 'type' => 'string', 'max' => 1224, 'min' => 1, 'pattern' => 'arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}', ], 'NotificationArns' => [ 'type' => 'list', 'member' => [ 'shape' => 'NotificationArn', ], 'max' => 5, ], 'OutputKey' => [ 'type' => 'string', ], 'OutputValue' => [ 'type' => 'string', ], 'PageSize' => [ 'type' => 'integer', 'max' => 20, 'min' => 0, ], 'PageToken' => [ 'type' => 'string', 'pattern' => '[\\u0009\\u000a\\u000d\\u0020-\\uD7FF\\uE000-\\uFFFD]*', ], 'ParameterConstraints' => [ 'type' => 'structure', 'members' => [ 'AllowedValues' => [ 'shape' => 'AllowedValues', ], ], ], 'ParameterKey' => [ 'type' => 'string', ], 'ParameterType' => [ 'type' => 'string', ], 'ParameterValue' => [ 'type' => 'string', ], 'PortfolioName' => [ 'type' => 'string', ], 'ProductType' => [ 'type' => 'string', ], 'ProductViewAggregationType' => [ 'type' => 'string', ], 'ProductViewAggregationValue' => [ 'type' => 'structure', 'members' => [ 'Value' => [ 'shape' => 'AttributeValue', ], 'ApproximateCount' => [ 'shape' => 'ApproximateCount', ], ], ], 'ProductViewAggregationValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProductViewAggregationValue', ], ], 'ProductViewAggregations' => [ 'type' => 'map', 'key' => [ 'shape' => 'ProductViewAggregationType', ], 'value' => [ 'shape' => 'ProductViewAggregationValues', ], ], 'ProductViewDistributor' => [ 'type' => 'string', ], 'ProductViewFilterBy' => [ 'type' => 'string', 'enum' => [ 'FullTextSearch', 'Owner', 'ProductType', ], ], 'ProductViewFilterValue' => [ 'type' => 'string', ], 'ProductViewFilterValues' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProductViewFilterValue', ], ], 'ProductViewFilters' => [ 'type' => 'map', 'key' => [ 'shape' => 'ProductViewFilterBy', ], 'value' => [ 'shape' => 'ProductViewFilterValues', ], ], 'ProductViewName' => [ 'type' => 'string', ], 'ProductViewOwner' => [ 'type' => 'string', ], 'ProductViewShortDescription' => [ 'type' => 'string', ], 'ProductViewSortBy' => [ 'type' => 'string', 'enum' => [ 'Title', 'VersionCount', 'CreationDate', ], ], 'ProductViewSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProductViewSummary', ], ], 'ProductViewSummary' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'Id', ], 'ProductId' => [ 'shape' => 'Id', ], 'Name' => [ 'shape' => 'ProductViewName', ], 'Owner' => [ 'shape' => 'ProductViewOwner', ], 'ShortDescription' => [ 'shape' => 'ProductViewShortDescription', ], 'Type' => [ 'shape' => 'ProductType', ], 'Distributor' => [ 'shape' => 'ProductViewDistributor', ], 'HasDefaultPath' => [ 'shape' => 'HasDefaultPath', ], 'SupportEmail' => [ 'shape' => 'SupportEmail', ], 'SupportDescription' => [ 'shape' => 'SupportDescription', ], 'SupportUrl' => [ 'shape' => 'SupportUrl', ], ], ], 'ProvisionProductInput' => [ 'type' => 'structure', 'required' => [ 'ProductId', 'ProvisioningArtifactId', 'ProvisionedProductName', 'ProvisionToken', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'ProductId' => [ 'shape' => 'Id', ], 'ProvisioningArtifactId' => [ 'shape' => 'Id', ], 'PathId' => [ 'shape' => 'Id', ], 'ProvisionedProductName' => [ 'shape' => 'ProvisionedProductName', ], 'ProvisioningParameters' => [ 'shape' => 'ProvisioningParameters', ], 'Tags' => [ 'shape' => 'Tags', ], 'NotificationArns' => [ 'shape' => 'NotificationArns', ], 'ProvisionToken' => [ 'shape' => 'IdempotencyToken', 'idempotencyToken' => true, ], ], ], 'ProvisionProductOutput' => [ 'type' => 'structure', 'members' => [ 'RecordDetail' => [ 'shape' => 'RecordDetail', ], ], ], 'ProvisionedProductDetail' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'ProvisionedProductNameOrArn', ], 'Arn' => [ 'shape' => 'ProvisionedProductNameOrArn', ], 'Type' => [ 'shape' => 'ProvisionedProductType', ], 'Id' => [ 'shape' => 'ProvisionedProductId', ], 'Status' => [ 'shape' => 'RecordStatus', ], 'StatusMessage' => [ 'shape' => 'ProvisionedProductStatusMessage', ], 'CreatedTime' => [ 'shape' => 'CreatedTime', ], 'IdempotencyToken' => [ 'shape' => 'IdempotencyToken', ], 'LastRecordId' => [ 'shape' => 'LastRequestId', ], ], ], 'ProvisionedProductDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProvisionedProductDetail', ], ], 'ProvisionedProductId' => [ 'type' => 'string', ], 'ProvisionedProductName' => [ 'type' => 'string', ], 'ProvisionedProductNameOrArn' => [ 'type' => 'string', 'max' => 1224, 'min' => 1, 'pattern' => '[a-zA-Z0-9][a-zA-Z0-9_-]{0,127}|arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}', ], 'ProvisionedProductStatusMessage' => [ 'type' => 'string', ], 'ProvisionedProductType' => [ 'type' => 'string', ], 'ProvisioningArtifact' => [ 'type' => 'structure', 'members' => [ 'Id' => [ 'shape' => 'Id', ], 'Name' => [ 'shape' => 'ProvisioningArtifactName', ], 'Description' => [ 'shape' => 'ProvisioningArtifactDescription', ], 'CreatedTime' => [ 'shape' => 'ProvisioningArtifactCreatedTime', ], ], ], 'ProvisioningArtifactCreatedTime' => [ 'type' => 'timestamp', ], 'ProvisioningArtifactDescription' => [ 'type' => 'string', ], 'ProvisioningArtifactName' => [ 'type' => 'string', ], 'ProvisioningArtifactParameter' => [ 'type' => 'structure', 'members' => [ 'ParameterKey' => [ 'shape' => 'ParameterKey', ], 'DefaultValue' => [ 'shape' => 'DefaultValue', ], 'ParameterType' => [ 'shape' => 'ParameterType', ], 'IsNoEcho' => [ 'shape' => 'NoEcho', ], 'Description' => [ 'shape' => 'Description', ], 'ParameterConstraints' => [ 'shape' => 'ParameterConstraints', ], ], ], 'ProvisioningArtifactParameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProvisioningArtifactParameter', ], ], 'ProvisioningArtifacts' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProvisioningArtifact', ], ], 'ProvisioningParameter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'ParameterKey', ], 'Value' => [ 'shape' => 'ParameterValue', ], ], ], 'ProvisioningParameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'ProvisioningParameter', ], ], 'RecordDetail' => [ 'type' => 'structure', 'members' => [ 'RecordId' => [ 'shape' => 'Id', ], 'ProvisionedProductName' => [ 'shape' => 'ProvisionedProductName', ], 'Status' => [ 'shape' => 'RecordStatus', ], 'CreatedTime' => [ 'shape' => 'CreatedTime', ], 'UpdatedTime' => [ 'shape' => 'UpdatedTime', ], 'ProvisionedProductType' => [ 'shape' => 'ProvisionedProductType', ], 'RecordType' => [ 'shape' => 'RecordType', ], 'ProvisionedProductId' => [ 'shape' => 'Id', ], 'ProductId' => [ 'shape' => 'Id', ], 'ProvisioningArtifactId' => [ 'shape' => 'Id', ], 'PathId' => [ 'shape' => 'Id', ], 'RecordErrors' => [ 'shape' => 'RecordErrors', ], 'RecordTags' => [ 'shape' => 'RecordTags', ], ], ], 'RecordDetails' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecordDetail', ], ], 'RecordError' => [ 'type' => 'structure', 'members' => [ 'Code' => [ 'shape' => 'ErrorCode', ], 'Description' => [ 'shape' => 'ErrorDescription', ], ], ], 'RecordErrors' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecordError', ], ], 'RecordOutput' => [ 'type' => 'structure', 'members' => [ 'OutputKey' => [ 'shape' => 'OutputKey', ], 'OutputValue' => [ 'shape' => 'OutputValue', ], 'Description' => [ 'shape' => 'Description', ], ], ], 'RecordOutputs' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecordOutput', ], ], 'RecordStatus' => [ 'type' => 'string', 'enum' => [ 'IN_PROGRESS', 'SUCCEEDED', 'ERROR', ], ], 'RecordTag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'RecordTagKey', ], 'Value' => [ 'shape' => 'RecordTagValue', ], ], ], 'RecordTagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$', ], 'RecordTagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$', ], 'RecordTags' => [ 'type' => 'list', 'member' => [ 'shape' => 'RecordTag', ], 'max' => 10, ], 'RecordType' => [ 'type' => 'string', ], 'ResourceNotFoundException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'ScanProvisionedProductsInput' => [ 'type' => 'structure', 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'AccessLevelFilter' => [ 'shape' => 'AccessLevelFilter', ], 'PageSize' => [ 'shape' => 'PageSize', ], 'PageToken' => [ 'shape' => 'PageToken', ], ], ], 'ScanProvisionedProductsOutput' => [ 'type' => 'structure', 'members' => [ 'ProvisionedProducts' => [ 'shape' => 'ProvisionedProductDetails', ], 'NextPageToken' => [ 'shape' => 'PageToken', ], ], ], 'SearchFilterKey' => [ 'type' => 'string', ], 'SearchFilterValue' => [ 'type' => 'string', ], 'SearchProductsInput' => [ 'type' => 'structure', 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'Filters' => [ 'shape' => 'ProductViewFilters', ], 'PageSize' => [ 'shape' => 'PageSize', ], 'SortBy' => [ 'shape' => 'ProductViewSortBy', ], 'SortOrder' => [ 'shape' => 'SortOrder', ], 'PageToken' => [ 'shape' => 'PageToken', ], ], ], 'SearchProductsOutput' => [ 'type' => 'structure', 'members' => [ 'ProductViewSummaries' => [ 'shape' => 'ProductViewSummaries', ], 'ProductViewAggregations' => [ 'shape' => 'ProductViewAggregations', ], 'NextPageToken' => [ 'shape' => 'PageToken', ], ], ], 'SortOrder' => [ 'type' => 'string', 'enum' => [ 'ASCENDING', 'DESCENDING', ], ], 'SupportDescription' => [ 'type' => 'string', ], 'SupportEmail' => [ 'type' => 'string', ], 'SupportUrl' => [ 'type' => 'string', ], 'Tag' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'TagKey', ], 'Value' => [ 'shape' => 'TagValue', ], ], ], 'TagKey' => [ 'type' => 'string', 'max' => 128, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$', ], 'TagValue' => [ 'type' => 'string', 'max' => 256, 'min' => 1, 'pattern' => '^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$', ], 'Tags' => [ 'type' => 'list', 'member' => [ 'shape' => 'Tag', ], 'max' => 10, ], 'TerminateProvisionedProductInput' => [ 'type' => 'structure', 'required' => [ 'TerminateToken', ], 'members' => [ 'ProvisionedProductName' => [ 'shape' => 'ProvisionedProductNameOrArn', ], 'ProvisionedProductId' => [ 'shape' => 'Id', ], 'TerminateToken' => [ 'shape' => 'IdempotencyToken', 'idempotencyToken' => true, ], 'IgnoreErrors' => [ 'shape' => 'IgnoreErrors', ], 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], ], ], 'TerminateProvisionedProductOutput' => [ 'type' => 'structure', 'members' => [ 'RecordDetail' => [ 'shape' => 'RecordDetail', ], ], ], 'UpdateProvisionedProductInput' => [ 'type' => 'structure', 'required' => [ 'UpdateToken', ], 'members' => [ 'AcceptLanguage' => [ 'shape' => 'AcceptLanguage', ], 'ProvisionedProductName' => [ 'shape' => 'ProvisionedProductNameOrArn', ], 'ProvisionedProductId' => [ 'shape' => 'Id', ], 'ProductId' => [ 'shape' => 'Id', ], 'ProvisioningArtifactId' => [ 'shape' => 'Id', ], 'PathId' => [ 'shape' => 'Id', ], 'ProvisioningParameters' => [ 'shape' => 'UpdateProvisioningParameters', ], 'UpdateToken' => [ 'shape' => 'IdempotencyToken', 'idempotencyToken' => true, ], ], ], 'UpdateProvisionedProductOutput' => [ 'type' => 'structure', 'members' => [ 'RecordDetail' => [ 'shape' => 'RecordDetail', ], ], ], 'UpdateProvisioningParameter' => [ 'type' => 'structure', 'members' => [ 'Key' => [ 'shape' => 'ParameterKey', ], 'Value' => [ 'shape' => 'ParameterValue', ], 'UsePreviousValue' => [ 'shape' => 'UsePreviousValue', ], ], ], 'UpdateProvisioningParameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'UpdateProvisioningParameter', ], ], 'UpdatedTime' => [ 'type' => 'timestamp', ], 'UsageInstruction' => [ 'type' => 'structure', 'members' => [ 'Type' => [ 'shape' => 'InstructionType', ], 'Value' => [ 'shape' => 'InstructionValue', ], ], ], 'UsageInstructions' => [ 'type' => 'list', 'member' => [ 'shape' => 'UsageInstruction', ], ], 'UsePreviousValue' => [ 'type' => 'boolean', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/sms/2016-10-24/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sms/2016-10-24/api-2.json.php new file mode 100644 index 000000000..039cb2596 --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/sms/2016-10-24/api-2.json.php @@ -0,0 +1,3 @@ + '2.0', 'metadata' => [ 'apiVersion' => '2016-10-24', 'endpointPrefix' => 'sms', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'SMS', 'serviceFullName' => 'AWS Server Migration Service', 'signatureVersion' => 'v4', 'targetPrefix' => 'AWSServerMigrationService_V2016_10_24', ], 'operations' => [ 'CreateReplicationJob' => [ 'name' => 'CreateReplicationJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateReplicationJobRequest', ], 'output' => [ 'shape' => 'CreateReplicationJobResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'MissingRequiredParameterException', ], [ 'shape' => 'UnauthorizedOperationException', ], [ 'shape' => 'OperationNotPermittedException', ], [ 'shape' => 'ServerCannotBeReplicatedException', ], [ 'shape' => 'ReplicationJobAlreadyExistsException', ], [ 'shape' => 'NoConnectorsAvailableException', ], [ 'shape' => 'InternalError', ], ], ], 'DeleteReplicationJob' => [ 'name' => 'DeleteReplicationJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteReplicationJobRequest', ], 'output' => [ 'shape' => 'DeleteReplicationJobResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'MissingRequiredParameterException', ], [ 'shape' => 'UnauthorizedOperationException', ], [ 'shape' => 'OperationNotPermittedException', ], [ 'shape' => 'ReplicationJobNotFoundException', ], ], ], 'DeleteServerCatalog' => [ 'name' => 'DeleteServerCatalog', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteServerCatalogRequest', ], 'output' => [ 'shape' => 'DeleteServerCatalogResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedOperationException', ], [ 'shape' => 'OperationNotPermittedException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'MissingRequiredParameterException', ], ], ], 'DisassociateConnector' => [ 'name' => 'DisassociateConnector', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DisassociateConnectorRequest', ], 'output' => [ 'shape' => 'DisassociateConnectorResponse', ], 'errors' => [ [ 'shape' => 'MissingRequiredParameterException', ], [ 'shape' => 'UnauthorizedOperationException', ], [ 'shape' => 'OperationNotPermittedException', ], [ 'shape' => 'InvalidParameterException', ], ], ], 'GetConnectors' => [ 'name' => 'GetConnectors', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetConnectorsRequest', ], 'output' => [ 'shape' => 'GetConnectorsResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedOperationException', ], ], ], 'GetReplicationJobs' => [ 'name' => 'GetReplicationJobs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetReplicationJobsRequest', ], 'output' => [ 'shape' => 'GetReplicationJobsResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'MissingRequiredParameterException', ], [ 'shape' => 'UnauthorizedOperationException', ], ], ], 'GetReplicationRuns' => [ 'name' => 'GetReplicationRuns', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetReplicationRunsRequest', ], 'output' => [ 'shape' => 'GetReplicationRunsResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'MissingRequiredParameterException', ], [ 'shape' => 'UnauthorizedOperationException', ], ], ], 'GetServers' => [ 'name' => 'GetServers', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetServersRequest', ], 'output' => [ 'shape' => 'GetServersResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedOperationException', ], ], ], 'ImportServerCatalog' => [ 'name' => 'ImportServerCatalog', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ImportServerCatalogRequest', ], 'output' => [ 'shape' => 'ImportServerCatalogResponse', ], 'errors' => [ [ 'shape' => 'UnauthorizedOperationException', ], [ 'shape' => 'OperationNotPermittedException', ], [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'MissingRequiredParameterException', ], [ 'shape' => 'NoConnectorsAvailableException', ], ], ], 'StartOnDemandReplicationRun' => [ 'name' => 'StartOnDemandReplicationRun', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'StartOnDemandReplicationRunRequest', ], 'output' => [ 'shape' => 'StartOnDemandReplicationRunResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'MissingRequiredParameterException', ], [ 'shape' => 'UnauthorizedOperationException', ], [ 'shape' => 'OperationNotPermittedException', ], [ 'shape' => 'ReplicationRunLimitExceededException', ], ], ], 'UpdateReplicationJob' => [ 'name' => 'UpdateReplicationJob', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateReplicationJobRequest', ], 'output' => [ 'shape' => 'UpdateReplicationJobResponse', ], 'errors' => [ [ 'shape' => 'InvalidParameterException', ], [ 'shape' => 'MissingRequiredParameterException', ], [ 'shape' => 'OperationNotPermittedException', ], [ 'shape' => 'UnauthorizedOperationException', ], [ 'shape' => 'ServerCannotBeReplicatedException', ], [ 'shape' => 'ReplicationJobNotFoundException', ], [ 'shape' => 'InternalError', ], ], ], ], 'shapes' => [ 'AmiId' => [ 'type' => 'string', ], 'Connector' => [ 'type' => 'structure', 'members' => [ 'connectorId' => [ 'shape' => 'ConnectorId', ], 'version' => [ 'shape' => 'ConnectorVersion', ], 'status' => [ 'shape' => 'ConnectorStatus', ], 'capabilityList' => [ 'shape' => 'ConnectorCapabilityList', ], 'vmManagerName' => [ 'shape' => 'VmManagerName', ], 'vmManagerType' => [ 'shape' => 'VmManagerType', ], 'vmManagerId' => [ 'shape' => 'VmManagerId', ], 'ipAddress' => [ 'shape' => 'IpAddress', ], 'macAddress' => [ 'shape' => 'MacAddress', ], 'associatedOn' => [ 'shape' => 'Timestamp', ], ], ], 'ConnectorCapability' => [ 'type' => 'string', 'enum' => [ 'VSPHERE', ], ], 'ConnectorCapabilityList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ConnectorCapability', 'locationName' => 'item', ], ], 'ConnectorId' => [ 'type' => 'string', ], 'ConnectorList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Connector', 'locationName' => 'item', ], ], 'ConnectorStatus' => [ 'type' => 'string', 'enum' => [ 'HEALTHY', 'UNHEALTHY', ], ], 'ConnectorVersion' => [ 'type' => 'string', ], 'CreateReplicationJobRequest' => [ 'type' => 'structure', 'required' => [ 'serverId', 'seedReplicationTime', 'frequency', ], 'members' => [ 'serverId' => [ 'shape' => 'ServerId', ], 'seedReplicationTime' => [ 'shape' => 'Timestamp', ], 'frequency' => [ 'shape' => 'Frequency', ], 'licenseType' => [ 'shape' => 'LicenseType', ], 'roleName' => [ 'shape' => 'RoleName', ], 'description' => [ 'shape' => 'Description', ], ], ], 'CreateReplicationJobResponse' => [ 'type' => 'structure', 'members' => [ 'replicationJobId' => [ 'shape' => 'ReplicationJobId', ], ], ], 'DeleteReplicationJobRequest' => [ 'type' => 'structure', 'required' => [ 'replicationJobId', ], 'members' => [ 'replicationJobId' => [ 'shape' => 'ReplicationJobId', ], ], ], 'DeleteReplicationJobResponse' => [ 'type' => 'structure', 'members' => [], ], 'DeleteServerCatalogRequest' => [ 'type' => 'structure', 'members' => [], ], 'DeleteServerCatalogResponse' => [ 'type' => 'structure', 'members' => [], ], 'Description' => [ 'type' => 'string', ], 'DisassociateConnectorRequest' => [ 'type' => 'structure', 'required' => [ 'connectorId', ], 'members' => [ 'connectorId' => [ 'shape' => 'ConnectorId', ], ], ], 'DisassociateConnectorResponse' => [ 'type' => 'structure', 'members' => [], ], 'ErrorMessage' => [ 'type' => 'string', ], 'Frequency' => [ 'type' => 'integer', ], 'GetConnectorsRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], ], ], 'GetConnectorsResponse' => [ 'type' => 'structure', 'members' => [ 'connectorList' => [ 'shape' => 'ConnectorList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetReplicationJobsRequest' => [ 'type' => 'structure', 'members' => [ 'replicationJobId' => [ 'shape' => 'ReplicationJobId', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], ], ], 'GetReplicationJobsResponse' => [ 'type' => 'structure', 'members' => [ 'replicationJobList' => [ 'shape' => 'ReplicationJobList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetReplicationRunsRequest' => [ 'type' => 'structure', 'required' => [ 'replicationJobId', ], 'members' => [ 'replicationJobId' => [ 'shape' => 'ReplicationJobId', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], ], ], 'GetReplicationRunsResponse' => [ 'type' => 'structure', 'members' => [ 'replicationJob' => [ 'shape' => 'ReplicationJob', ], 'replicationRunList' => [ 'shape' => 'ReplicationRunList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'GetServersRequest' => [ 'type' => 'structure', 'members' => [ 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], ], ], 'GetServersResponse' => [ 'type' => 'structure', 'members' => [ 'lastModifiedOn' => [ 'shape' => 'Timestamp', ], 'serverCatalogStatus' => [ 'shape' => 'ServerCatalogStatus', ], 'serverList' => [ 'shape' => 'ServerList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'ImportServerCatalogRequest' => [ 'type' => 'structure', 'members' => [], ], 'ImportServerCatalogResponse' => [ 'type' => 'structure', 'members' => [], ], 'InternalError' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, 'fault' => true, ], 'InvalidParameterException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'IpAddress' => [ 'type' => 'string', ], 'LicenseType' => [ 'type' => 'string', 'enum' => [ 'AWS', 'BYOL', ], ], 'MacAddress' => [ 'type' => 'string', ], 'MaxResults' => [ 'type' => 'integer', ], 'MissingRequiredParameterException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'NextToken' => [ 'type' => 'string', ], 'NoConnectorsAvailableException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'OperationNotPermittedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ReplicationJob' => [ 'type' => 'structure', 'members' => [ 'replicationJobId' => [ 'shape' => 'ReplicationJobId', ], 'serverId' => [ 'shape' => 'ServerId', ], 'serverType' => [ 'shape' => 'ServerType', ], 'vmServer' => [ 'shape' => 'VmServer', ], 'seedReplicationTime' => [ 'shape' => 'Timestamp', ], 'frequency' => [ 'shape' => 'Frequency', ], 'nextReplicationRunStartTime' => [ 'shape' => 'Timestamp', ], 'licenseType' => [ 'shape' => 'LicenseType', ], 'roleName' => [ 'shape' => 'RoleName', ], 'latestAmiId' => [ 'shape' => 'AmiId', ], 'state' => [ 'shape' => 'ReplicationJobState', ], 'statusMessage' => [ 'shape' => 'ReplicationJobStatusMessage', ], 'description' => [ 'shape' => 'Description', ], 'replicationRunList' => [ 'shape' => 'ReplicationRunList', ], ], ], 'ReplicationJobAlreadyExistsException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ReplicationJobId' => [ 'type' => 'string', ], 'ReplicationJobList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReplicationJob', 'locationName' => 'item', ], ], 'ReplicationJobNotFoundException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ReplicationJobState' => [ 'type' => 'string', 'enum' => [ 'PENDING', 'ACTIVE', 'FAILED', 'DELETING', 'DELETED', ], ], 'ReplicationJobStatusMessage' => [ 'type' => 'string', ], 'ReplicationJobTerminated' => [ 'type' => 'boolean', ], 'ReplicationRun' => [ 'type' => 'structure', 'members' => [ 'replicationRunId' => [ 'shape' => 'ReplicationRunId', ], 'state' => [ 'shape' => 'ReplicationRunState', ], 'type' => [ 'shape' => 'ReplicationRunType', ], 'statusMessage' => [ 'shape' => 'ReplicationRunStatusMessage', ], 'amiId' => [ 'shape' => 'AmiId', ], 'scheduledStartTime' => [ 'shape' => 'Timestamp', ], 'completedTime' => [ 'shape' => 'Timestamp', ], 'description' => [ 'shape' => 'Description', ], ], ], 'ReplicationRunId' => [ 'type' => 'string', ], 'ReplicationRunLimitExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ReplicationRunList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ReplicationRun', 'locationName' => 'item', ], ], 'ReplicationRunState' => [ 'type' => 'string', 'enum' => [ 'PENDING', 'MISSED', 'ACTIVE', 'FAILED', 'COMPLETED', 'DELETING', 'DELETED', ], ], 'ReplicationRunStatusMessage' => [ 'type' => 'string', ], 'ReplicationRunType' => [ 'type' => 'string', 'enum' => [ 'ON_DEMAND', 'AUTOMATIC', ], ], 'RoleName' => [ 'type' => 'string', ], 'Server' => [ 'type' => 'structure', 'members' => [ 'serverId' => [ 'shape' => 'ServerId', ], 'serverType' => [ 'shape' => 'ServerType', ], 'vmServer' => [ 'shape' => 'VmServer', ], 'replicationJobId' => [ 'shape' => 'ReplicationJobId', ], 'replicationJobTerminated' => [ 'shape' => 'ReplicationJobTerminated', ], ], ], 'ServerCannotBeReplicatedException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'ServerCatalogStatus' => [ 'type' => 'string', 'enum' => [ 'NOT_IMPORTED', 'IMPORTING', 'AVAILABLE', 'DELETED', 'EXPIRED', ], ], 'ServerId' => [ 'type' => 'string', ], 'ServerList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Server', 'locationName' => 'item', ], ], 'ServerType' => [ 'type' => 'string', 'enum' => [ 'VIRTUAL_MACHINE', ], ], 'StartOnDemandReplicationRunRequest' => [ 'type' => 'structure', 'required' => [ 'replicationJobId', ], 'members' => [ 'replicationJobId' => [ 'shape' => 'ReplicationJobId', ], 'description' => [ 'shape' => 'Description', ], ], ], 'StartOnDemandReplicationRunResponse' => [ 'type' => 'structure', 'members' => [ 'replicationRunId' => [ 'shape' => 'ReplicationRunId', ], ], ], 'Timestamp' => [ 'type' => 'timestamp', ], 'UnauthorizedOperationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'UpdateReplicationJobRequest' => [ 'type' => 'structure', 'required' => [ 'replicationJobId', ], 'members' => [ 'replicationJobId' => [ 'shape' => 'ReplicationJobId', ], 'frequency' => [ 'shape' => 'Frequency', ], 'nextReplicationRunStartTime' => [ 'shape' => 'Timestamp', ], 'licenseType' => [ 'shape' => 'LicenseType', ], 'roleName' => [ 'shape' => 'RoleName', ], 'description' => [ 'shape' => 'Description', ], ], ], 'UpdateReplicationJobResponse' => [ 'type' => 'structure', 'members' => [], ], 'VmId' => [ 'type' => 'string', ], 'VmManagerId' => [ 'type' => 'string', ], 'VmManagerName' => [ 'type' => 'string', ], 'VmManagerType' => [ 'type' => 'string', 'enum' => [ 'VSPHERE', ], ], 'VmName' => [ 'type' => 'string', ], 'VmPath' => [ 'type' => 'string', ], 'VmServer' => [ 'type' => 'structure', 'members' => [ 'vmServerAddress' => [ 'shape' => 'VmServerAddress', ], 'vmName' => [ 'shape' => 'VmName', ], 'vmManagerName' => [ 'shape' => 'VmManagerName', ], 'vmManagerType' => [ 'shape' => 'VmManagerType', ], 'vmPath' => [ 'shape' => 'VmPath', ], ], ], 'VmServerAddress' => [ 'type' => 'structure', 'members' => [ 'vmManagerId' => [ 'shape' => 'VmManagerId', ], 'vmId' => [ 'shape' => 'VmId', ], ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/sms/2016-10-24/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sms/2016-10-24/paginators-1.json.php new file mode 100644 index 000000000..ad2a8c171 --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/data/sms/2016-10-24/paginators-1.json.php @@ -0,0 +1,3 @@ + [ 'GetReplicationJobs' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'replicationJobList', ], 'GetReplicationRuns' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'replicationRunList', ], 'GetConnectors' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'connectorList', ], 'GetServers' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'serverList', ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/api-2.json.php index 3aa6b6f5f..0eb4df426 100644 --- a/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/api-2.json.php @@ -1,3 +1,3 @@ [ 'apiVersion' => '2013-04-15', 'endpointPrefix' => 'support', 'jsonVersion' => '1.1', 'serviceFullName' => 'AWS Support', 'signatureVersion' => 'v4', 'targetPrefix' => 'AWSSupport_20130415', 'protocol' => 'json', ], 'operations' => [ 'AddAttachmentsToSet' => [ 'name' => 'AddAttachmentsToSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddAttachmentsToSetRequest', ], 'output' => [ 'shape' => 'AddAttachmentsToSetResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], [ 'shape' => 'AttachmentSetIdNotFound', 'exception' => true, ], [ 'shape' => 'AttachmentSetExpired', 'exception' => true, ], [ 'shape' => 'AttachmentSetSizeLimitExceeded', 'exception' => true, ], [ 'shape' => 'AttachmentLimitExceeded', 'exception' => true, ], ], ], 'AddCommunicationToCase' => [ 'name' => 'AddCommunicationToCase', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddCommunicationToCaseRequest', ], 'output' => [ 'shape' => 'AddCommunicationToCaseResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], [ 'shape' => 'CaseIdNotFound', 'exception' => true, ], [ 'shape' => 'AttachmentSetIdNotFound', 'exception' => true, ], [ 'shape' => 'AttachmentSetExpired', 'exception' => true, ], ], ], 'CreateCase' => [ 'name' => 'CreateCase', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCaseRequest', ], 'output' => [ 'shape' => 'CreateCaseResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], [ 'shape' => 'CaseCreationLimitExceeded', 'exception' => true, ], [ 'shape' => 'AttachmentSetIdNotFound', 'exception' => true, ], [ 'shape' => 'AttachmentSetExpired', 'exception' => true, ], ], ], 'DescribeAttachment' => [ 'name' => 'DescribeAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAttachmentRequest', ], 'output' => [ 'shape' => 'DescribeAttachmentResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], [ 'shape' => 'DescribeAttachmentLimitExceeded', 'exception' => true, ], [ 'shape' => 'AttachmentIdNotFound', 'exception' => true, ], ], ], 'DescribeCases' => [ 'name' => 'DescribeCases', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCasesRequest', ], 'output' => [ 'shape' => 'DescribeCasesResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], [ 'shape' => 'CaseIdNotFound', 'exception' => true, ], ], ], 'DescribeCommunications' => [ 'name' => 'DescribeCommunications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCommunicationsRequest', ], 'output' => [ 'shape' => 'DescribeCommunicationsResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], [ 'shape' => 'CaseIdNotFound', 'exception' => true, ], ], ], 'DescribeServices' => [ 'name' => 'DescribeServices', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeServicesRequest', ], 'output' => [ 'shape' => 'DescribeServicesResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], ], ], 'DescribeSeverityLevels' => [ 'name' => 'DescribeSeverityLevels', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSeverityLevelsRequest', ], 'output' => [ 'shape' => 'DescribeSeverityLevelsResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], ], ], 'DescribeTrustedAdvisorCheckRefreshStatuses' => [ 'name' => 'DescribeTrustedAdvisorCheckRefreshStatuses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrustedAdvisorCheckRefreshStatusesRequest', ], 'output' => [ 'shape' => 'DescribeTrustedAdvisorCheckRefreshStatusesResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], ], ], 'DescribeTrustedAdvisorCheckResult' => [ 'name' => 'DescribeTrustedAdvisorCheckResult', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrustedAdvisorCheckResultRequest', ], 'output' => [ 'shape' => 'DescribeTrustedAdvisorCheckResultResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], ], ], 'DescribeTrustedAdvisorCheckSummaries' => [ 'name' => 'DescribeTrustedAdvisorCheckSummaries', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrustedAdvisorCheckSummariesRequest', ], 'output' => [ 'shape' => 'DescribeTrustedAdvisorCheckSummariesResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], ], ], 'DescribeTrustedAdvisorChecks' => [ 'name' => 'DescribeTrustedAdvisorChecks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrustedAdvisorChecksRequest', ], 'output' => [ 'shape' => 'DescribeTrustedAdvisorChecksResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], ], ], 'RefreshTrustedAdvisorCheck' => [ 'name' => 'RefreshTrustedAdvisorCheck', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RefreshTrustedAdvisorCheckRequest', ], 'output' => [ 'shape' => 'RefreshTrustedAdvisorCheckResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], ], ], 'ResolveCase' => [ 'name' => 'ResolveCase', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResolveCaseRequest', ], 'output' => [ 'shape' => 'ResolveCaseResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', 'exception' => true, 'fault' => true, ], [ 'shape' => 'CaseIdNotFound', 'exception' => true, ], ], ], ], 'shapes' => [ 'AddAttachmentsToSetRequest' => [ 'type' => 'structure', 'required' => [ 'attachments', ], 'members' => [ 'attachmentSetId' => [ 'shape' => 'AttachmentSetId', ], 'attachments' => [ 'shape' => 'Attachments', ], ], ], 'AddAttachmentsToSetResponse' => [ 'type' => 'structure', 'members' => [ 'attachmentSetId' => [ 'shape' => 'AttachmentSetId', ], 'expiryTime' => [ 'shape' => 'ExpiryTime', ], ], ], 'AddCommunicationToCaseRequest' => [ 'type' => 'structure', 'required' => [ 'communicationBody', ], 'members' => [ 'caseId' => [ 'shape' => 'CaseId', ], 'communicationBody' => [ 'shape' => 'CommunicationBody', ], 'ccEmailAddresses' => [ 'shape' => 'CcEmailAddressList', ], 'attachmentSetId' => [ 'shape' => 'AttachmentSetId', ], ], ], 'AddCommunicationToCaseResponse' => [ 'type' => 'structure', 'members' => [ 'result' => [ 'shape' => 'Result', ], ], ], 'AfterTime' => [ 'type' => 'string', ], 'Attachment' => [ 'type' => 'structure', 'members' => [ 'fileName' => [ 'shape' => 'FileName', ], 'data' => [ 'shape' => 'Data', ], ], ], 'AttachmentDetails' => [ 'type' => 'structure', 'members' => [ 'attachmentId' => [ 'shape' => 'AttachmentId', ], 'fileName' => [ 'shape' => 'FileName', ], ], ], 'AttachmentId' => [ 'type' => 'string', ], 'AttachmentIdNotFound' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'AttachmentLimitExceeded' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'AttachmentSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttachmentDetails', ], ], 'AttachmentSetExpired' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'AttachmentSetId' => [ 'type' => 'string', ], 'AttachmentSetIdNotFound' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'AttachmentSetSizeLimitExceeded' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'Attachments' => [ 'type' => 'list', 'member' => [ 'shape' => 'Attachment', ], ], 'BeforeTime' => [ 'type' => 'string', ], 'Boolean' => [ 'type' => 'boolean', ], 'CaseCreationLimitExceeded' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'CaseDetails' => [ 'type' => 'structure', 'members' => [ 'caseId' => [ 'shape' => 'CaseId', ], 'displayId' => [ 'shape' => 'DisplayId', ], 'subject' => [ 'shape' => 'Subject', ], 'status' => [ 'shape' => 'Status', ], 'serviceCode' => [ 'shape' => 'ServiceCode', ], 'categoryCode' => [ 'shape' => 'CategoryCode', ], 'severityCode' => [ 'shape' => 'SeverityCode', ], 'submittedBy' => [ 'shape' => 'SubmittedBy', ], 'timeCreated' => [ 'shape' => 'TimeCreated', ], 'recentCommunications' => [ 'shape' => 'RecentCaseCommunications', ], 'ccEmailAddresses' => [ 'shape' => 'CcEmailAddressList', ], 'language' => [ 'shape' => 'Language', ], ], ], 'CaseId' => [ 'type' => 'string', ], 'CaseIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CaseId', ], 'min' => 0, 'max' => 100, ], 'CaseIdNotFound' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'CaseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CaseDetails', ], ], 'CaseStatus' => [ 'type' => 'string', ], 'Category' => [ 'type' => 'structure', 'members' => [ 'code' => [ 'shape' => 'CategoryCode', ], 'name' => [ 'shape' => 'CategoryName', ], ], ], 'CategoryCode' => [ 'type' => 'string', ], 'CategoryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Category', ], ], 'CategoryName' => [ 'type' => 'string', ], 'CcEmailAddress' => [ 'type' => 'string', ], 'CcEmailAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CcEmailAddress', ], ], 'Communication' => [ 'type' => 'structure', 'members' => [ 'caseId' => [ 'shape' => 'CaseId', ], 'body' => [ 'shape' => 'CommunicationBody', ], 'submittedBy' => [ 'shape' => 'SubmittedBy', ], 'timeCreated' => [ 'shape' => 'TimeCreated', ], 'attachmentSet' => [ 'shape' => 'AttachmentSet', ], ], ], 'CommunicationBody' => [ 'type' => 'string', ], 'CommunicationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Communication', ], ], 'CreateCaseRequest' => [ 'type' => 'structure', 'required' => [ 'subject', 'communicationBody', ], 'members' => [ 'subject' => [ 'shape' => 'Subject', ], 'serviceCode' => [ 'shape' => 'ServiceCode', ], 'severityCode' => [ 'shape' => 'SeverityCode', ], 'categoryCode' => [ 'shape' => 'CategoryCode', ], 'communicationBody' => [ 'shape' => 'CommunicationBody', ], 'ccEmailAddresses' => [ 'shape' => 'CcEmailAddressList', ], 'language' => [ 'shape' => 'Language', ], 'issueType' => [ 'shape' => 'IssueType', ], 'attachmentSetId' => [ 'shape' => 'AttachmentSetId', ], ], ], 'CreateCaseResponse' => [ 'type' => 'structure', 'members' => [ 'caseId' => [ 'shape' => 'CaseId', ], ], ], 'Data' => [ 'type' => 'blob', ], 'DescribeAttachmentLimitExceeded' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DescribeAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'attachmentId', ], 'members' => [ 'attachmentId' => [ 'shape' => 'AttachmentId', ], ], ], 'DescribeAttachmentResponse' => [ 'type' => 'structure', 'members' => [ 'attachment' => [ 'shape' => 'Attachment', ], ], ], 'DescribeCasesRequest' => [ 'type' => 'structure', 'members' => [ 'caseIdList' => [ 'shape' => 'CaseIdList', ], 'displayId' => [ 'shape' => 'DisplayId', ], 'afterTime' => [ 'shape' => 'AfterTime', ], 'beforeTime' => [ 'shape' => 'BeforeTime', ], 'includeResolvedCases' => [ 'shape' => 'IncludeResolvedCases', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], 'language' => [ 'shape' => 'Language', ], 'includeCommunications' => [ 'shape' => 'IncludeCommunications', ], ], ], 'DescribeCasesResponse' => [ 'type' => 'structure', 'members' => [ 'cases' => [ 'shape' => 'CaseList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeCommunicationsRequest' => [ 'type' => 'structure', 'required' => [ 'caseId', ], 'members' => [ 'caseId' => [ 'shape' => 'CaseId', ], 'beforeTime' => [ 'shape' => 'BeforeTime', ], 'afterTime' => [ 'shape' => 'AfterTime', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], ], ], 'DescribeCommunicationsResponse' => [ 'type' => 'structure', 'members' => [ 'communications' => [ 'shape' => 'CommunicationList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeServicesRequest' => [ 'type' => 'structure', 'members' => [ 'serviceCodeList' => [ 'shape' => 'ServiceCodeList', ], 'language' => [ 'shape' => 'Language', ], ], ], 'DescribeServicesResponse' => [ 'type' => 'structure', 'members' => [ 'services' => [ 'shape' => 'ServiceList', ], ], ], 'DescribeSeverityLevelsRequest' => [ 'type' => 'structure', 'members' => [ 'language' => [ 'shape' => 'Language', ], ], ], 'DescribeSeverityLevelsResponse' => [ 'type' => 'structure', 'members' => [ 'severityLevels' => [ 'shape' => 'SeverityLevelsList', ], ], ], 'DescribeTrustedAdvisorCheckRefreshStatusesRequest' => [ 'type' => 'structure', 'required' => [ 'checkIds', ], 'members' => [ 'checkIds' => [ 'shape' => 'StringList', ], ], ], 'DescribeTrustedAdvisorCheckRefreshStatusesResponse' => [ 'type' => 'structure', 'required' => [ 'statuses', ], 'members' => [ 'statuses' => [ 'shape' => 'TrustedAdvisorCheckRefreshStatusList', ], ], ], 'DescribeTrustedAdvisorCheckResultRequest' => [ 'type' => 'structure', 'required' => [ 'checkId', ], 'members' => [ 'checkId' => [ 'shape' => 'String', ], 'language' => [ 'shape' => 'String', ], ], ], 'DescribeTrustedAdvisorCheckResultResponse' => [ 'type' => 'structure', 'members' => [ 'result' => [ 'shape' => 'TrustedAdvisorCheckResult', ], ], ], 'DescribeTrustedAdvisorCheckSummariesRequest' => [ 'type' => 'structure', 'required' => [ 'checkIds', ], 'members' => [ 'checkIds' => [ 'shape' => 'StringList', ], ], ], 'DescribeTrustedAdvisorCheckSummariesResponse' => [ 'type' => 'structure', 'required' => [ 'summaries', ], 'members' => [ 'summaries' => [ 'shape' => 'TrustedAdvisorCheckSummaryList', ], ], ], 'DescribeTrustedAdvisorChecksRequest' => [ 'type' => 'structure', 'required' => [ 'language', ], 'members' => [ 'language' => [ 'shape' => 'String', ], ], ], 'DescribeTrustedAdvisorChecksResponse' => [ 'type' => 'structure', 'required' => [ 'checks', ], 'members' => [ 'checks' => [ 'shape' => 'TrustedAdvisorCheckList', ], ], ], 'DisplayId' => [ 'type' => 'string', ], 'Double' => [ 'type' => 'double', ], 'ErrorMessage' => [ 'type' => 'string', ], 'ExpiryTime' => [ 'type' => 'string', ], 'FileName' => [ 'type' => 'string', ], 'IncludeCommunications' => [ 'type' => 'boolean', ], 'IncludeResolvedCases' => [ 'type' => 'boolean', ], 'InternalServerError' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, 'fault' => true, ], 'IssueType' => [ 'type' => 'string', ], 'Language' => [ 'type' => 'string', ], 'Long' => [ 'type' => 'long', ], 'MaxResults' => [ 'type' => 'integer', 'min' => 10, 'max' => 100, ], 'NextToken' => [ 'type' => 'string', ], 'RecentCaseCommunications' => [ 'type' => 'structure', 'members' => [ 'communications' => [ 'shape' => 'CommunicationList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'RefreshTrustedAdvisorCheckRequest' => [ 'type' => 'structure', 'required' => [ 'checkId', ], 'members' => [ 'checkId' => [ 'shape' => 'String', ], ], ], 'RefreshTrustedAdvisorCheckResponse' => [ 'type' => 'structure', 'required' => [ 'status', ], 'members' => [ 'status' => [ 'shape' => 'TrustedAdvisorCheckRefreshStatus', ], ], ], 'ResolveCaseRequest' => [ 'type' => 'structure', 'members' => [ 'caseId' => [ 'shape' => 'CaseId', ], ], ], 'ResolveCaseResponse' => [ 'type' => 'structure', 'members' => [ 'initialCaseStatus' => [ 'shape' => 'CaseStatus', ], 'finalCaseStatus' => [ 'shape' => 'CaseStatus', ], ], ], 'Result' => [ 'type' => 'boolean', ], 'Service' => [ 'type' => 'structure', 'members' => [ 'code' => [ 'shape' => 'ServiceCode', ], 'name' => [ 'shape' => 'ServiceName', ], 'categories' => [ 'shape' => 'CategoryList', ], ], ], 'ServiceCode' => [ 'type' => 'string', 'pattern' => '[0-9a-z\\-_]+', ], 'ServiceCodeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServiceCode', ], 'min' => 0, 'max' => 100, ], 'ServiceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Service', ], ], 'ServiceName' => [ 'type' => 'string', ], 'SeverityCode' => [ 'type' => 'string', ], 'SeverityLevel' => [ 'type' => 'structure', 'members' => [ 'code' => [ 'shape' => 'SeverityLevelCode', ], 'name' => [ 'shape' => 'SeverityLevelName', ], ], ], 'SeverityLevelCode' => [ 'type' => 'string', ], 'SeverityLevelName' => [ 'type' => 'string', ], 'SeverityLevelsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SeverityLevel', ], ], 'Status' => [ 'type' => 'string', ], 'String' => [ 'type' => 'string', ], 'StringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'Subject' => [ 'type' => 'string', ], 'SubmittedBy' => [ 'type' => 'string', ], 'TimeCreated' => [ 'type' => 'string', ], 'TrustedAdvisorCategorySpecificSummary' => [ 'type' => 'structure', 'members' => [ 'costOptimizing' => [ 'shape' => 'TrustedAdvisorCostOptimizingSummary', ], ], ], 'TrustedAdvisorCheckDescription' => [ 'type' => 'structure', 'required' => [ 'id', 'name', 'description', 'category', 'metadata', ], 'members' => [ 'id' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'category' => [ 'shape' => 'String', ], 'metadata' => [ 'shape' => 'StringList', ], ], ], 'TrustedAdvisorCheckList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrustedAdvisorCheckDescription', ], ], 'TrustedAdvisorCheckRefreshStatus' => [ 'type' => 'structure', 'required' => [ 'checkId', 'status', 'millisUntilNextRefreshable', ], 'members' => [ 'checkId' => [ 'shape' => 'String', ], 'status' => [ 'shape' => 'String', ], 'millisUntilNextRefreshable' => [ 'shape' => 'Long', ], ], ], 'TrustedAdvisorCheckRefreshStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrustedAdvisorCheckRefreshStatus', ], ], 'TrustedAdvisorCheckResult' => [ 'type' => 'structure', 'required' => [ 'checkId', 'timestamp', 'status', 'resourcesSummary', 'categorySpecificSummary', 'flaggedResources', ], 'members' => [ 'checkId' => [ 'shape' => 'String', ], 'timestamp' => [ 'shape' => 'String', ], 'status' => [ 'shape' => 'String', ], 'resourcesSummary' => [ 'shape' => 'TrustedAdvisorResourcesSummary', ], 'categorySpecificSummary' => [ 'shape' => 'TrustedAdvisorCategorySpecificSummary', ], 'flaggedResources' => [ 'shape' => 'TrustedAdvisorResourceDetailList', ], ], ], 'TrustedAdvisorCheckSummary' => [ 'type' => 'structure', 'required' => [ 'checkId', 'timestamp', 'status', 'resourcesSummary', 'categorySpecificSummary', ], 'members' => [ 'checkId' => [ 'shape' => 'String', ], 'timestamp' => [ 'shape' => 'String', ], 'status' => [ 'shape' => 'String', ], 'hasFlaggedResources' => [ 'shape' => 'Boolean', ], 'resourcesSummary' => [ 'shape' => 'TrustedAdvisorResourcesSummary', ], 'categorySpecificSummary' => [ 'shape' => 'TrustedAdvisorCategorySpecificSummary', ], ], ], 'TrustedAdvisorCheckSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrustedAdvisorCheckSummary', ], ], 'TrustedAdvisorCostOptimizingSummary' => [ 'type' => 'structure', 'required' => [ 'estimatedMonthlySavings', 'estimatedPercentMonthlySavings', ], 'members' => [ 'estimatedMonthlySavings' => [ 'shape' => 'Double', ], 'estimatedPercentMonthlySavings' => [ 'shape' => 'Double', ], ], ], 'TrustedAdvisorResourceDetail' => [ 'type' => 'structure', 'required' => [ 'status', 'region', 'resourceId', 'metadata', ], 'members' => [ 'status' => [ 'shape' => 'String', ], 'region' => [ 'shape' => 'String', ], 'resourceId' => [ 'shape' => 'String', ], 'isSuppressed' => [ 'shape' => 'Boolean', ], 'metadata' => [ 'shape' => 'StringList', ], ], ], 'TrustedAdvisorResourceDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrustedAdvisorResourceDetail', ], ], 'TrustedAdvisorResourcesSummary' => [ 'type' => 'structure', 'required' => [ 'resourcesProcessed', 'resourcesFlagged', 'resourcesIgnored', 'resourcesSuppressed', ], 'members' => [ 'resourcesProcessed' => [ 'shape' => 'Long', ], 'resourcesFlagged' => [ 'shape' => 'Long', ], 'resourcesIgnored' => [ 'shape' => 'Long', ], 'resourcesSuppressed' => [ 'shape' => 'Long', ], ], ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2013-04-15', 'endpointPrefix' => 'support', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceFullName' => 'AWS Support', 'signatureVersion' => 'v4', 'targetPrefix' => 'AWSSupport_20130415', ], 'operations' => [ 'AddAttachmentsToSet' => [ 'name' => 'AddAttachmentsToSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddAttachmentsToSetRequest', ], 'output' => [ 'shape' => 'AddAttachmentsToSetResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], [ 'shape' => 'AttachmentSetIdNotFound', ], [ 'shape' => 'AttachmentSetExpired', ], [ 'shape' => 'AttachmentSetSizeLimitExceeded', ], [ 'shape' => 'AttachmentLimitExceeded', ], ], ], 'AddCommunicationToCase' => [ 'name' => 'AddCommunicationToCase', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'AddCommunicationToCaseRequest', ], 'output' => [ 'shape' => 'AddCommunicationToCaseResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], [ 'shape' => 'CaseIdNotFound', ], [ 'shape' => 'AttachmentSetIdNotFound', ], [ 'shape' => 'AttachmentSetExpired', ], ], ], 'CreateCase' => [ 'name' => 'CreateCase', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateCaseRequest', ], 'output' => [ 'shape' => 'CreateCaseResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], [ 'shape' => 'CaseCreationLimitExceeded', ], [ 'shape' => 'AttachmentSetIdNotFound', ], [ 'shape' => 'AttachmentSetExpired', ], ], ], 'DescribeAttachment' => [ 'name' => 'DescribeAttachment', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeAttachmentRequest', ], 'output' => [ 'shape' => 'DescribeAttachmentResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], [ 'shape' => 'DescribeAttachmentLimitExceeded', ], [ 'shape' => 'AttachmentIdNotFound', ], ], ], 'DescribeCases' => [ 'name' => 'DescribeCases', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCasesRequest', ], 'output' => [ 'shape' => 'DescribeCasesResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], [ 'shape' => 'CaseIdNotFound', ], ], ], 'DescribeCommunications' => [ 'name' => 'DescribeCommunications', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeCommunicationsRequest', ], 'output' => [ 'shape' => 'DescribeCommunicationsResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], [ 'shape' => 'CaseIdNotFound', ], ], ], 'DescribeServices' => [ 'name' => 'DescribeServices', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeServicesRequest', ], 'output' => [ 'shape' => 'DescribeServicesResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'DescribeSeverityLevels' => [ 'name' => 'DescribeSeverityLevels', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeSeverityLevelsRequest', ], 'output' => [ 'shape' => 'DescribeSeverityLevelsResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'DescribeTrustedAdvisorCheckRefreshStatuses' => [ 'name' => 'DescribeTrustedAdvisorCheckRefreshStatuses', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrustedAdvisorCheckRefreshStatusesRequest', ], 'output' => [ 'shape' => 'DescribeTrustedAdvisorCheckRefreshStatusesResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'DescribeTrustedAdvisorCheckResult' => [ 'name' => 'DescribeTrustedAdvisorCheckResult', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrustedAdvisorCheckResultRequest', ], 'output' => [ 'shape' => 'DescribeTrustedAdvisorCheckResultResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'DescribeTrustedAdvisorCheckSummaries' => [ 'name' => 'DescribeTrustedAdvisorCheckSummaries', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrustedAdvisorCheckSummariesRequest', ], 'output' => [ 'shape' => 'DescribeTrustedAdvisorCheckSummariesResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'DescribeTrustedAdvisorChecks' => [ 'name' => 'DescribeTrustedAdvisorChecks', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DescribeTrustedAdvisorChecksRequest', ], 'output' => [ 'shape' => 'DescribeTrustedAdvisorChecksResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'RefreshTrustedAdvisorCheck' => [ 'name' => 'RefreshTrustedAdvisorCheck', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'RefreshTrustedAdvisorCheckRequest', ], 'output' => [ 'shape' => 'RefreshTrustedAdvisorCheckResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], ], ], 'ResolveCase' => [ 'name' => 'ResolveCase', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ResolveCaseRequest', ], 'output' => [ 'shape' => 'ResolveCaseResponse', ], 'errors' => [ [ 'shape' => 'InternalServerError', ], [ 'shape' => 'CaseIdNotFound', ], ], ], ], 'shapes' => [ 'AddAttachmentsToSetRequest' => [ 'type' => 'structure', 'required' => [ 'attachments', ], 'members' => [ 'attachmentSetId' => [ 'shape' => 'AttachmentSetId', ], 'attachments' => [ 'shape' => 'Attachments', ], ], ], 'AddAttachmentsToSetResponse' => [ 'type' => 'structure', 'members' => [ 'attachmentSetId' => [ 'shape' => 'AttachmentSetId', ], 'expiryTime' => [ 'shape' => 'ExpiryTime', ], ], ], 'AddCommunicationToCaseRequest' => [ 'type' => 'structure', 'required' => [ 'communicationBody', ], 'members' => [ 'caseId' => [ 'shape' => 'CaseId', ], 'communicationBody' => [ 'shape' => 'CommunicationBody', ], 'ccEmailAddresses' => [ 'shape' => 'CcEmailAddressList', ], 'attachmentSetId' => [ 'shape' => 'AttachmentSetId', ], ], ], 'AddCommunicationToCaseResponse' => [ 'type' => 'structure', 'members' => [ 'result' => [ 'shape' => 'Result', ], ], ], 'AfterTime' => [ 'type' => 'string', ], 'Attachment' => [ 'type' => 'structure', 'members' => [ 'fileName' => [ 'shape' => 'FileName', ], 'data' => [ 'shape' => 'Data', ], ], ], 'AttachmentDetails' => [ 'type' => 'structure', 'members' => [ 'attachmentId' => [ 'shape' => 'AttachmentId', ], 'fileName' => [ 'shape' => 'FileName', ], ], ], 'AttachmentId' => [ 'type' => 'string', ], 'AttachmentIdNotFound' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'AttachmentLimitExceeded' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'AttachmentSet' => [ 'type' => 'list', 'member' => [ 'shape' => 'AttachmentDetails', ], ], 'AttachmentSetExpired' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'AttachmentSetId' => [ 'type' => 'string', ], 'AttachmentSetIdNotFound' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'AttachmentSetSizeLimitExceeded' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'Attachments' => [ 'type' => 'list', 'member' => [ 'shape' => 'Attachment', ], ], 'BeforeTime' => [ 'type' => 'string', ], 'Boolean' => [ 'type' => 'boolean', ], 'CaseCreationLimitExceeded' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'CaseDetails' => [ 'type' => 'structure', 'members' => [ 'caseId' => [ 'shape' => 'CaseId', ], 'displayId' => [ 'shape' => 'DisplayId', ], 'subject' => [ 'shape' => 'Subject', ], 'status' => [ 'shape' => 'Status', ], 'serviceCode' => [ 'shape' => 'ServiceCode', ], 'categoryCode' => [ 'shape' => 'CategoryCode', ], 'severityCode' => [ 'shape' => 'SeverityCode', ], 'submittedBy' => [ 'shape' => 'SubmittedBy', ], 'timeCreated' => [ 'shape' => 'TimeCreated', ], 'recentCommunications' => [ 'shape' => 'RecentCaseCommunications', ], 'ccEmailAddresses' => [ 'shape' => 'CcEmailAddressList', ], 'language' => [ 'shape' => 'Language', ], ], ], 'CaseId' => [ 'type' => 'string', ], 'CaseIdList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CaseId', ], 'max' => 100, 'min' => 0, ], 'CaseIdNotFound' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'CaseList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CaseDetails', ], ], 'CaseStatus' => [ 'type' => 'string', ], 'Category' => [ 'type' => 'structure', 'members' => [ 'code' => [ 'shape' => 'CategoryCode', ], 'name' => [ 'shape' => 'CategoryName', ], ], ], 'CategoryCode' => [ 'type' => 'string', ], 'CategoryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Category', ], ], 'CategoryName' => [ 'type' => 'string', ], 'CcEmailAddress' => [ 'type' => 'string', ], 'CcEmailAddressList' => [ 'type' => 'list', 'member' => [ 'shape' => 'CcEmailAddress', ], 'max' => 10, 'min' => 0, ], 'Communication' => [ 'type' => 'structure', 'members' => [ 'caseId' => [ 'shape' => 'CaseId', ], 'body' => [ 'shape' => 'CommunicationBody', ], 'submittedBy' => [ 'shape' => 'SubmittedBy', ], 'timeCreated' => [ 'shape' => 'TimeCreated', ], 'attachmentSet' => [ 'shape' => 'AttachmentSet', ], ], ], 'CommunicationBody' => [ 'type' => 'string', 'max' => 8000, 'min' => 1, ], 'CommunicationList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Communication', ], ], 'CreateCaseRequest' => [ 'type' => 'structure', 'required' => [ 'subject', 'communicationBody', ], 'members' => [ 'subject' => [ 'shape' => 'Subject', ], 'serviceCode' => [ 'shape' => 'ServiceCode', ], 'severityCode' => [ 'shape' => 'SeverityCode', ], 'categoryCode' => [ 'shape' => 'CategoryCode', ], 'communicationBody' => [ 'shape' => 'CommunicationBody', ], 'ccEmailAddresses' => [ 'shape' => 'CcEmailAddressList', ], 'language' => [ 'shape' => 'Language', ], 'issueType' => [ 'shape' => 'IssueType', ], 'attachmentSetId' => [ 'shape' => 'AttachmentSetId', ], ], ], 'CreateCaseResponse' => [ 'type' => 'structure', 'members' => [ 'caseId' => [ 'shape' => 'CaseId', ], ], ], 'Data' => [ 'type' => 'blob', ], 'DescribeAttachmentLimitExceeded' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, ], 'DescribeAttachmentRequest' => [ 'type' => 'structure', 'required' => [ 'attachmentId', ], 'members' => [ 'attachmentId' => [ 'shape' => 'AttachmentId', ], ], ], 'DescribeAttachmentResponse' => [ 'type' => 'structure', 'members' => [ 'attachment' => [ 'shape' => 'Attachment', ], ], ], 'DescribeCasesRequest' => [ 'type' => 'structure', 'members' => [ 'caseIdList' => [ 'shape' => 'CaseIdList', ], 'displayId' => [ 'shape' => 'DisplayId', ], 'afterTime' => [ 'shape' => 'AfterTime', ], 'beforeTime' => [ 'shape' => 'BeforeTime', ], 'includeResolvedCases' => [ 'shape' => 'IncludeResolvedCases', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], 'language' => [ 'shape' => 'Language', ], 'includeCommunications' => [ 'shape' => 'IncludeCommunications', ], ], ], 'DescribeCasesResponse' => [ 'type' => 'structure', 'members' => [ 'cases' => [ 'shape' => 'CaseList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeCommunicationsRequest' => [ 'type' => 'structure', 'required' => [ 'caseId', ], 'members' => [ 'caseId' => [ 'shape' => 'CaseId', ], 'beforeTime' => [ 'shape' => 'BeforeTime', ], 'afterTime' => [ 'shape' => 'AfterTime', ], 'nextToken' => [ 'shape' => 'NextToken', ], 'maxResults' => [ 'shape' => 'MaxResults', ], ], ], 'DescribeCommunicationsResponse' => [ 'type' => 'structure', 'members' => [ 'communications' => [ 'shape' => 'CommunicationList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'DescribeServicesRequest' => [ 'type' => 'structure', 'members' => [ 'serviceCodeList' => [ 'shape' => 'ServiceCodeList', ], 'language' => [ 'shape' => 'Language', ], ], ], 'DescribeServicesResponse' => [ 'type' => 'structure', 'members' => [ 'services' => [ 'shape' => 'ServiceList', ], ], ], 'DescribeSeverityLevelsRequest' => [ 'type' => 'structure', 'members' => [ 'language' => [ 'shape' => 'Language', ], ], ], 'DescribeSeverityLevelsResponse' => [ 'type' => 'structure', 'members' => [ 'severityLevels' => [ 'shape' => 'SeverityLevelsList', ], ], ], 'DescribeTrustedAdvisorCheckRefreshStatusesRequest' => [ 'type' => 'structure', 'required' => [ 'checkIds', ], 'members' => [ 'checkIds' => [ 'shape' => 'StringList', ], ], ], 'DescribeTrustedAdvisorCheckRefreshStatusesResponse' => [ 'type' => 'structure', 'required' => [ 'statuses', ], 'members' => [ 'statuses' => [ 'shape' => 'TrustedAdvisorCheckRefreshStatusList', ], ], ], 'DescribeTrustedAdvisorCheckResultRequest' => [ 'type' => 'structure', 'required' => [ 'checkId', ], 'members' => [ 'checkId' => [ 'shape' => 'String', ], 'language' => [ 'shape' => 'String', ], ], ], 'DescribeTrustedAdvisorCheckResultResponse' => [ 'type' => 'structure', 'members' => [ 'result' => [ 'shape' => 'TrustedAdvisorCheckResult', ], ], ], 'DescribeTrustedAdvisorCheckSummariesRequest' => [ 'type' => 'structure', 'required' => [ 'checkIds', ], 'members' => [ 'checkIds' => [ 'shape' => 'StringList', ], ], ], 'DescribeTrustedAdvisorCheckSummariesResponse' => [ 'type' => 'structure', 'required' => [ 'summaries', ], 'members' => [ 'summaries' => [ 'shape' => 'TrustedAdvisorCheckSummaryList', ], ], ], 'DescribeTrustedAdvisorChecksRequest' => [ 'type' => 'structure', 'required' => [ 'language', ], 'members' => [ 'language' => [ 'shape' => 'String', ], ], ], 'DescribeTrustedAdvisorChecksResponse' => [ 'type' => 'structure', 'required' => [ 'checks', ], 'members' => [ 'checks' => [ 'shape' => 'TrustedAdvisorCheckList', ], ], ], 'DisplayId' => [ 'type' => 'string', ], 'Double' => [ 'type' => 'double', ], 'ErrorMessage' => [ 'type' => 'string', ], 'ExpiryTime' => [ 'type' => 'string', ], 'FileName' => [ 'type' => 'string', ], 'IncludeCommunications' => [ 'type' => 'boolean', ], 'IncludeResolvedCases' => [ 'type' => 'boolean', ], 'InternalServerError' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'ErrorMessage', ], ], 'exception' => true, 'fault' => true, ], 'IssueType' => [ 'type' => 'string', ], 'Language' => [ 'type' => 'string', ], 'Long' => [ 'type' => 'long', ], 'MaxResults' => [ 'type' => 'integer', 'max' => 100, 'min' => 10, ], 'NextToken' => [ 'type' => 'string', ], 'RecentCaseCommunications' => [ 'type' => 'structure', 'members' => [ 'communications' => [ 'shape' => 'CommunicationList', ], 'nextToken' => [ 'shape' => 'NextToken', ], ], ], 'RefreshTrustedAdvisorCheckRequest' => [ 'type' => 'structure', 'required' => [ 'checkId', ], 'members' => [ 'checkId' => [ 'shape' => 'String', ], ], ], 'RefreshTrustedAdvisorCheckResponse' => [ 'type' => 'structure', 'required' => [ 'status', ], 'members' => [ 'status' => [ 'shape' => 'TrustedAdvisorCheckRefreshStatus', ], ], ], 'ResolveCaseRequest' => [ 'type' => 'structure', 'members' => [ 'caseId' => [ 'shape' => 'CaseId', ], ], ], 'ResolveCaseResponse' => [ 'type' => 'structure', 'members' => [ 'initialCaseStatus' => [ 'shape' => 'CaseStatus', ], 'finalCaseStatus' => [ 'shape' => 'CaseStatus', ], ], ], 'Result' => [ 'type' => 'boolean', ], 'Service' => [ 'type' => 'structure', 'members' => [ 'code' => [ 'shape' => 'ServiceCode', ], 'name' => [ 'shape' => 'ServiceName', ], 'categories' => [ 'shape' => 'CategoryList', ], ], ], 'ServiceCode' => [ 'type' => 'string', ], 'ServiceCodeList' => [ 'type' => 'list', 'member' => [ 'shape' => 'ServiceCode', ], 'max' => 100, 'min' => 0, ], 'ServiceList' => [ 'type' => 'list', 'member' => [ 'shape' => 'Service', ], ], 'ServiceName' => [ 'type' => 'string', ], 'SeverityCode' => [ 'type' => 'string', ], 'SeverityLevel' => [ 'type' => 'structure', 'members' => [ 'code' => [ 'shape' => 'SeverityLevelCode', ], 'name' => [ 'shape' => 'SeverityLevelName', ], ], ], 'SeverityLevelCode' => [ 'type' => 'string', ], 'SeverityLevelName' => [ 'type' => 'string', ], 'SeverityLevelsList' => [ 'type' => 'list', 'member' => [ 'shape' => 'SeverityLevel', ], ], 'Status' => [ 'type' => 'string', ], 'String' => [ 'type' => 'string', ], 'StringList' => [ 'type' => 'list', 'member' => [ 'shape' => 'String', ], ], 'Subject' => [ 'type' => 'string', ], 'SubmittedBy' => [ 'type' => 'string', ], 'TimeCreated' => [ 'type' => 'string', ], 'TrustedAdvisorCategorySpecificSummary' => [ 'type' => 'structure', 'members' => [ 'costOptimizing' => [ 'shape' => 'TrustedAdvisorCostOptimizingSummary', ], ], ], 'TrustedAdvisorCheckDescription' => [ 'type' => 'structure', 'required' => [ 'id', 'name', 'description', 'category', 'metadata', ], 'members' => [ 'id' => [ 'shape' => 'String', ], 'name' => [ 'shape' => 'String', ], 'description' => [ 'shape' => 'String', ], 'category' => [ 'shape' => 'String', ], 'metadata' => [ 'shape' => 'StringList', ], ], ], 'TrustedAdvisorCheckList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrustedAdvisorCheckDescription', ], ], 'TrustedAdvisorCheckRefreshStatus' => [ 'type' => 'structure', 'required' => [ 'checkId', 'status', 'millisUntilNextRefreshable', ], 'members' => [ 'checkId' => [ 'shape' => 'String', ], 'status' => [ 'shape' => 'String', ], 'millisUntilNextRefreshable' => [ 'shape' => 'Long', ], ], ], 'TrustedAdvisorCheckRefreshStatusList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrustedAdvisorCheckRefreshStatus', ], ], 'TrustedAdvisorCheckResult' => [ 'type' => 'structure', 'required' => [ 'checkId', 'timestamp', 'status', 'resourcesSummary', 'categorySpecificSummary', 'flaggedResources', ], 'members' => [ 'checkId' => [ 'shape' => 'String', ], 'timestamp' => [ 'shape' => 'String', ], 'status' => [ 'shape' => 'String', ], 'resourcesSummary' => [ 'shape' => 'TrustedAdvisorResourcesSummary', ], 'categorySpecificSummary' => [ 'shape' => 'TrustedAdvisorCategorySpecificSummary', ], 'flaggedResources' => [ 'shape' => 'TrustedAdvisorResourceDetailList', ], ], ], 'TrustedAdvisorCheckSummary' => [ 'type' => 'structure', 'required' => [ 'checkId', 'timestamp', 'status', 'resourcesSummary', 'categorySpecificSummary', ], 'members' => [ 'checkId' => [ 'shape' => 'String', ], 'timestamp' => [ 'shape' => 'String', ], 'status' => [ 'shape' => 'String', ], 'hasFlaggedResources' => [ 'shape' => 'Boolean', ], 'resourcesSummary' => [ 'shape' => 'TrustedAdvisorResourcesSummary', ], 'categorySpecificSummary' => [ 'shape' => 'TrustedAdvisorCategorySpecificSummary', ], ], ], 'TrustedAdvisorCheckSummaryList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrustedAdvisorCheckSummary', ], ], 'TrustedAdvisorCostOptimizingSummary' => [ 'type' => 'structure', 'required' => [ 'estimatedMonthlySavings', 'estimatedPercentMonthlySavings', ], 'members' => [ 'estimatedMonthlySavings' => [ 'shape' => 'Double', ], 'estimatedPercentMonthlySavings' => [ 'shape' => 'Double', ], ], ], 'TrustedAdvisorResourceDetail' => [ 'type' => 'structure', 'required' => [ 'status', 'resourceId', 'metadata', ], 'members' => [ 'status' => [ 'shape' => 'String', ], 'region' => [ 'shape' => 'String', ], 'resourceId' => [ 'shape' => 'String', ], 'isSuppressed' => [ 'shape' => 'Boolean', ], 'metadata' => [ 'shape' => 'StringList', ], ], ], 'TrustedAdvisorResourceDetailList' => [ 'type' => 'list', 'member' => [ 'shape' => 'TrustedAdvisorResourceDetail', ], ], 'TrustedAdvisorResourcesSummary' => [ 'type' => 'structure', 'required' => [ 'resourcesProcessed', 'resourcesFlagged', 'resourcesIgnored', 'resourcesSuppressed', ], 'members' => [ 'resourcesProcessed' => [ 'shape' => 'Long', ], 'resourcesFlagged' => [ 'shape' => 'Long', ], 'resourcesIgnored' => [ 'shape' => 'Long', ], 'resourcesSuppressed' => [ 'shape' => 'Long', ], ], ], ],]; diff --git a/vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/api-2.json.php index 6da551a7e..422b61521 100644 --- a/vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/api-2.json.php +++ b/vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/api-2.json.php @@ -1,3 +1,3 @@ '2.0', 'metadata' => [ 'apiVersion' => '2015-08-24', 'endpointPrefix' => 'waf', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'WAF', 'serviceFullName' => 'AWS WAF', 'signatureVersion' => 'v4', 'targetPrefix' => 'AWSWAF_20150824', ], 'operations' => [ 'CreateByteMatchSet' => [ 'name' => 'CreateByteMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateByteMatchSetRequest', ], 'output' => [ 'shape' => 'CreateByteMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateIPSet' => [ 'name' => 'CreateIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateIPSetRequest', ], 'output' => [ 'shape' => 'CreateIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateRule' => [ 'name' => 'CreateRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRuleRequest', ], 'output' => [ 'shape' => 'CreateRuleResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateSizeConstraintSet' => [ 'name' => 'CreateSizeConstraintSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSizeConstraintSetRequest', ], 'output' => [ 'shape' => 'CreateSizeConstraintSetResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateSqlInjectionMatchSet' => [ 'name' => 'CreateSqlInjectionMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSqlInjectionMatchSetRequest', ], 'output' => [ 'shape' => 'CreateSqlInjectionMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateWebACL' => [ 'name' => 'CreateWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateWebACLRequest', ], 'output' => [ 'shape' => 'CreateWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateXssMatchSet' => [ 'name' => 'CreateXssMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateXssMatchSetRequest', ], 'output' => [ 'shape' => 'CreateXssMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'DeleteByteMatchSet' => [ 'name' => 'DeleteByteMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteByteMatchSetRequest', ], 'output' => [ 'shape' => 'DeleteByteMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'DeleteIPSet' => [ 'name' => 'DeleteIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIPSetRequest', ], 'output' => [ 'shape' => 'DeleteIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'DeleteRule' => [ 'name' => 'DeleteRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRuleRequest', ], 'output' => [ 'shape' => 'DeleteRuleResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'DeleteSizeConstraintSet' => [ 'name' => 'DeleteSizeConstraintSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSizeConstraintSetRequest', ], 'output' => [ 'shape' => 'DeleteSizeConstraintSetResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'DeleteSqlInjectionMatchSet' => [ 'name' => 'DeleteSqlInjectionMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSqlInjectionMatchSetRequest', ], 'output' => [ 'shape' => 'DeleteSqlInjectionMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'DeleteWebACL' => [ 'name' => 'DeleteWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteWebACLRequest', ], 'output' => [ 'shape' => 'DeleteWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'DeleteXssMatchSet' => [ 'name' => 'DeleteXssMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteXssMatchSetRequest', ], 'output' => [ 'shape' => 'DeleteXssMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'GetByteMatchSet' => [ 'name' => 'GetByteMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetByteMatchSetRequest', ], 'output' => [ 'shape' => 'GetByteMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'GetChangeToken' => [ 'name' => 'GetChangeToken', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetChangeTokenRequest', ], 'output' => [ 'shape' => 'GetChangeTokenResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], ], ], 'GetChangeTokenStatus' => [ 'name' => 'GetChangeTokenStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetChangeTokenStatusRequest', ], 'output' => [ 'shape' => 'GetChangeTokenStatusResponse', ], 'errors' => [ [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInternalErrorException', ], ], ], 'GetIPSet' => [ 'name' => 'GetIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIPSetRequest', ], 'output' => [ 'shape' => 'GetIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'GetRule' => [ 'name' => 'GetRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetRuleRequest', ], 'output' => [ 'shape' => 'GetRuleResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'GetSampledRequests' => [ 'name' => 'GetSampledRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSampledRequestsRequest', ], 'output' => [ 'shape' => 'GetSampledRequestsResponse', ], 'errors' => [ [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInternalErrorException', ], ], ], 'GetSizeConstraintSet' => [ 'name' => 'GetSizeConstraintSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSizeConstraintSetRequest', ], 'output' => [ 'shape' => 'GetSizeConstraintSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'GetSqlInjectionMatchSet' => [ 'name' => 'GetSqlInjectionMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSqlInjectionMatchSetRequest', ], 'output' => [ 'shape' => 'GetSqlInjectionMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'GetWebACL' => [ 'name' => 'GetWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetWebACLRequest', ], 'output' => [ 'shape' => 'GetWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'GetXssMatchSet' => [ 'name' => 'GetXssMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetXssMatchSetRequest', ], 'output' => [ 'shape' => 'GetXssMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'ListByteMatchSets' => [ 'name' => 'ListByteMatchSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListByteMatchSetsRequest', ], 'output' => [ 'shape' => 'ListByteMatchSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'ListIPSets' => [ 'name' => 'ListIPSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListIPSetsRequest', ], 'output' => [ 'shape' => 'ListIPSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'ListRules' => [ 'name' => 'ListRules', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListRulesRequest', ], 'output' => [ 'shape' => 'ListRulesResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'ListSizeConstraintSets' => [ 'name' => 'ListSizeConstraintSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListSizeConstraintSetsRequest', ], 'output' => [ 'shape' => 'ListSizeConstraintSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'ListSqlInjectionMatchSets' => [ 'name' => 'ListSqlInjectionMatchSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListSqlInjectionMatchSetsRequest', ], 'output' => [ 'shape' => 'ListSqlInjectionMatchSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'ListWebACLs' => [ 'name' => 'ListWebACLs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListWebACLsRequest', ], 'output' => [ 'shape' => 'ListWebACLsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'ListXssMatchSets' => [ 'name' => 'ListXssMatchSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListXssMatchSetsRequest', ], 'output' => [ 'shape' => 'ListXssMatchSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'UpdateByteMatchSet' => [ 'name' => 'UpdateByteMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateByteMatchSetRequest', ], 'output' => [ 'shape' => 'UpdateByteMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'UpdateIPSet' => [ 'name' => 'UpdateIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateIPSetRequest', ], 'output' => [ 'shape' => 'UpdateIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'UpdateRule' => [ 'name' => 'UpdateRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateRuleRequest', ], 'output' => [ 'shape' => 'UpdateRuleResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'UpdateSizeConstraintSet' => [ 'name' => 'UpdateSizeConstraintSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateSizeConstraintSetRequest', ], 'output' => [ 'shape' => 'UpdateSizeConstraintSetResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'UpdateSqlInjectionMatchSet' => [ 'name' => 'UpdateSqlInjectionMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateSqlInjectionMatchSetRequest', ], 'output' => [ 'shape' => 'UpdateSqlInjectionMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'UpdateWebACL' => [ 'name' => 'UpdateWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateWebACLRequest', ], 'output' => [ 'shape' => 'UpdateWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'UpdateXssMatchSet' => [ 'name' => 'UpdateXssMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateXssMatchSetRequest', ], 'output' => [ 'shape' => 'UpdateXssMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], ], 'shapes' => [ 'Action' => [ 'type' => 'string', ], 'ActivatedRule' => [ 'type' => 'structure', 'required' => [ 'Priority', 'RuleId', 'Action', ], 'members' => [ 'Priority' => [ 'shape' => 'RulePriority', ], 'RuleId' => [ 'shape' => 'ResourceId', ], 'Action' => [ 'shape' => 'WafAction', ], ], ], 'ActivatedRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'ActivatedRule', ], ], 'ByteMatchSet' => [ 'type' => 'structure', 'required' => [ 'ByteMatchSetId', 'ByteMatchTuples', ], 'members' => [ 'ByteMatchSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'ByteMatchTuples' => [ 'shape' => 'ByteMatchTuples', ], ], ], 'ByteMatchSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ByteMatchSetSummary', ], ], 'ByteMatchSetSummary' => [ 'type' => 'structure', 'required' => [ 'ByteMatchSetId', 'Name', ], 'members' => [ 'ByteMatchSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'ByteMatchSetUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'ByteMatchTuple', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'ByteMatchTuple' => [ 'shape' => 'ByteMatchTuple', ], ], ], 'ByteMatchSetUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'ByteMatchSetUpdate', ], ], 'ByteMatchTargetString' => [ 'type' => 'blob', ], 'ByteMatchTuple' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'TargetString', 'TextTransformation', 'PositionalConstraint', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TargetString' => [ 'shape' => 'ByteMatchTargetString', ], 'TextTransformation' => [ 'shape' => 'TextTransformation', ], 'PositionalConstraint' => [ 'shape' => 'PositionalConstraint', ], ], ], 'ByteMatchTuples' => [ 'type' => 'list', 'member' => [ 'shape' => 'ByteMatchTuple', ], ], 'ChangeAction' => [ 'type' => 'string', 'enum' => [ 'INSERT', 'DELETE', ], ], 'ChangeToken' => [ 'type' => 'string', ], 'ChangeTokenStatus' => [ 'type' => 'string', 'enum' => [ 'PROVISIONED', 'PENDING', 'INSYNC', ], ], 'ComparisonOperator' => [ 'type' => 'string', 'enum' => [ 'EQ', 'NE', 'LE', 'LT', 'GE', 'GT', ], ], 'Country' => [ 'type' => 'string', ], 'CreateByteMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateByteMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ByteMatchSet' => [ 'shape' => 'ByteMatchSet', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'IPSet' => [ 'shape' => 'IPSet', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateRuleRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'MetricName', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'MetricName' => [ 'shape' => 'MetricName', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateRuleResponse' => [ 'type' => 'structure', 'members' => [ 'Rule' => [ 'shape' => 'Rule', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateSizeConstraintSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateSizeConstraintSetResponse' => [ 'type' => 'structure', 'members' => [ 'SizeConstraintSet' => [ 'shape' => 'SizeConstraintSet', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateSqlInjectionMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateSqlInjectionMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'SqlInjectionMatchSet' => [ 'shape' => 'SqlInjectionMatchSet', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'MetricName', 'DefaultAction', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'MetricName' => [ 'shape' => 'MetricName', ], 'DefaultAction' => [ 'shape' => 'WafAction', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'WebACL' => [ 'shape' => 'WebACL', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateXssMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateXssMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'XssMatchSet' => [ 'shape' => 'XssMatchSet', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteByteMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'ByteMatchSetId', 'ChangeToken', ], 'members' => [ 'ByteMatchSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteByteMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'IPSetId', 'ChangeToken', ], 'members' => [ 'IPSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleId', 'ChangeToken', ], 'members' => [ 'RuleId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteRuleResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteSizeConstraintSetRequest' => [ 'type' => 'structure', 'required' => [ 'SizeConstraintSetId', 'ChangeToken', ], 'members' => [ 'SizeConstraintSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteSizeConstraintSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteSqlInjectionMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'SqlInjectionMatchSetId', 'ChangeToken', ], 'members' => [ 'SqlInjectionMatchSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteSqlInjectionMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLId', 'ChangeToken', ], 'members' => [ 'WebACLId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteXssMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'XssMatchSetId', 'ChangeToken', ], 'members' => [ 'XssMatchSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteXssMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'FieldToMatch' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'Type' => [ 'shape' => 'MatchFieldType', ], 'Data' => [ 'shape' => 'MatchFieldData', ], ], ], 'GetByteMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'ByteMatchSetId', ], 'members' => [ 'ByteMatchSetId' => [ 'shape' => 'ResourceId', ], ], ], 'GetByteMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ByteMatchSet' => [ 'shape' => 'ByteMatchSet', ], ], ], 'GetChangeTokenRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetChangeTokenResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'GetChangeTokenStatusRequest' => [ 'type' => 'structure', 'required' => [ 'ChangeToken', ], 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'GetChangeTokenStatusResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeTokenStatus' => [ 'shape' => 'ChangeTokenStatus', ], ], ], 'GetIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'IPSetId', ], 'members' => [ 'IPSetId' => [ 'shape' => 'ResourceId', ], ], ], 'GetIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'IPSet' => [ 'shape' => 'IPSet', ], ], ], 'GetRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleId', ], 'members' => [ 'RuleId' => [ 'shape' => 'ResourceId', ], ], ], 'GetRuleResponse' => [ 'type' => 'structure', 'members' => [ 'Rule' => [ 'shape' => 'Rule', ], ], ], 'GetSampledRequestsRequest' => [ 'type' => 'structure', 'required' => [ 'WebAclId', 'RuleId', 'TimeWindow', 'MaxItems', ], 'members' => [ 'WebAclId' => [ 'shape' => 'ResourceId', ], 'RuleId' => [ 'shape' => 'ResourceId', ], 'TimeWindow' => [ 'shape' => 'TimeWindow', ], 'MaxItems' => [ 'shape' => 'ListMaxItems', ], ], ], 'GetSampledRequestsResponse' => [ 'type' => 'structure', 'members' => [ 'SampledRequests' => [ 'shape' => 'SampledHTTPRequests', ], 'PopulationSize' => [ 'shape' => 'PopulationSize', ], 'TimeWindow' => [ 'shape' => 'TimeWindow', ], ], ], 'GetSizeConstraintSetRequest' => [ 'type' => 'structure', 'required' => [ 'SizeConstraintSetId', ], 'members' => [ 'SizeConstraintSetId' => [ 'shape' => 'ResourceId', ], ], ], 'GetSizeConstraintSetResponse' => [ 'type' => 'structure', 'members' => [ 'SizeConstraintSet' => [ 'shape' => 'SizeConstraintSet', ], ], ], 'GetSqlInjectionMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'SqlInjectionMatchSetId', ], 'members' => [ 'SqlInjectionMatchSetId' => [ 'shape' => 'ResourceId', ], ], ], 'GetSqlInjectionMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'SqlInjectionMatchSet' => [ 'shape' => 'SqlInjectionMatchSet', ], ], ], 'GetWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLId', ], 'members' => [ 'WebACLId' => [ 'shape' => 'ResourceId', ], ], ], 'GetWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'WebACL' => [ 'shape' => 'WebACL', ], ], ], 'GetXssMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'XssMatchSetId', ], 'members' => [ 'XssMatchSetId' => [ 'shape' => 'ResourceId', ], ], ], 'GetXssMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'XssMatchSet' => [ 'shape' => 'XssMatchSet', ], ], ], 'HTTPHeader' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'HeaderName', ], 'Value' => [ 'shape' => 'HeaderValue', ], ], ], 'HTTPHeaders' => [ 'type' => 'list', 'member' => [ 'shape' => 'HTTPHeader', ], ], 'HTTPMethod' => [ 'type' => 'string', ], 'HTTPRequest' => [ 'type' => 'structure', 'members' => [ 'ClientIP' => [ 'shape' => 'IPString', ], 'Country' => [ 'shape' => 'Country', ], 'URI' => [ 'shape' => 'URIString', ], 'Method' => [ 'shape' => 'HTTPMethod', ], 'HTTPVersion' => [ 'shape' => 'HTTPVersion', ], 'Headers' => [ 'shape' => 'HTTPHeaders', ], ], ], 'HTTPVersion' => [ 'type' => 'string', ], 'HeaderName' => [ 'type' => 'string', ], 'HeaderValue' => [ 'type' => 'string', ], 'IPSet' => [ 'type' => 'structure', 'required' => [ 'IPSetId', 'IPSetDescriptors', ], 'members' => [ 'IPSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'IPSetDescriptors' => [ 'shape' => 'IPSetDescriptors', ], ], ], 'IPSetDescriptor' => [ 'type' => 'structure', 'required' => [ 'Type', 'Value', ], 'members' => [ 'Type' => [ 'shape' => 'IPSetDescriptorType', ], 'Value' => [ 'shape' => 'IPSetDescriptorValue', ], ], ], 'IPSetDescriptorType' => [ 'type' => 'string', 'enum' => [ 'IPV4', ], ], 'IPSetDescriptorValue' => [ 'type' => 'string', ], 'IPSetDescriptors' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPSetDescriptor', ], ], 'IPSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPSetSummary', ], ], 'IPSetSummary' => [ 'type' => 'structure', 'required' => [ 'IPSetId', 'Name', ], 'members' => [ 'IPSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'IPSetUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'IPSetDescriptor', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'IPSetDescriptor' => [ 'shape' => 'IPSetDescriptor', ], ], ], 'IPSetUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPSetUpdate', ], ], 'IPString' => [ 'type' => 'string', ], 'ListByteMatchSetsRequest' => [ 'type' => 'structure', 'required' => [ 'Limit', ], 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListByteMatchSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'ByteMatchSets' => [ 'shape' => 'ByteMatchSetSummaries', ], ], ], 'ListIPSetsRequest' => [ 'type' => 'structure', 'required' => [ 'Limit', ], 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListIPSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'IPSets' => [ 'shape' => 'IPSetSummaries', ], ], ], 'ListMaxItems' => [ 'type' => 'long', 'max' => 100, 'min' => 1, ], 'ListRulesRequest' => [ 'type' => 'structure', 'required' => [ 'Limit', ], 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListRulesResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Rules' => [ 'shape' => 'RuleSummaries', ], ], ], 'ListSizeConstraintSetsRequest' => [ 'type' => 'structure', 'required' => [ 'Limit', ], 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListSizeConstraintSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'SizeConstraintSets' => [ 'shape' => 'SizeConstraintSetSummaries', ], ], ], 'ListSqlInjectionMatchSetsRequest' => [ 'type' => 'structure', 'required' => [ 'Limit', ], 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListSqlInjectionMatchSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'SqlInjectionMatchSets' => [ 'shape' => 'SqlInjectionMatchSetSummaries', ], ], ], 'ListWebACLsRequest' => [ 'type' => 'structure', 'required' => [ 'Limit', ], 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListWebACLsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'WebACLs' => [ 'shape' => 'WebACLSummaries', ], ], ], 'ListXssMatchSetsRequest' => [ 'type' => 'structure', 'required' => [ 'Limit', ], 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListXssMatchSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'XssMatchSets' => [ 'shape' => 'XssMatchSetSummaries', ], ], ], 'MatchFieldData' => [ 'type' => 'string', ], 'MatchFieldType' => [ 'type' => 'string', 'enum' => [ 'URI', 'QUERY_STRING', 'HEADER', 'METHOD', 'BODY', ], ], 'MetricName' => [ 'type' => 'string', ], 'Negated' => [ 'type' => 'boolean', ], 'NextMarker' => [ 'type' => 'string', 'min' => 1, ], 'PaginationLimit' => [ 'type' => 'integer', 'max' => 100, 'min' => 1, ], 'ParameterExceptionField' => [ 'type' => 'string', 'enum' => [ 'CHANGE_ACTION', 'WAF_ACTION', 'PREDICATE_TYPE', 'IPSET_TYPE', 'BYTE_MATCH_FIELD_TYPE', 'SQL_INJECTION_MATCH_FIELD_TYPE', 'BYTE_MATCH_TEXT_TRANSFORMATION', 'BYTE_MATCH_POSITIONAL_CONSTRAINT', 'SIZE_CONSTRAINT_COMPARISON_OPERATOR', ], ], 'ParameterExceptionParameter' => [ 'type' => 'string', 'min' => 1, ], 'ParameterExceptionReason' => [ 'type' => 'string', 'enum' => [ 'INVALID_OPTION', 'ILLEGAL_COMBINATION', ], ], 'PopulationSize' => [ 'type' => 'long', ], 'PositionalConstraint' => [ 'type' => 'string', 'enum' => [ 'EXACTLY', 'STARTS_WITH', 'ENDS_WITH', 'CONTAINS', 'CONTAINS_WORD', ], ], 'Predicate' => [ 'type' => 'structure', 'required' => [ 'Negated', 'Type', 'DataId', ], 'members' => [ 'Negated' => [ 'shape' => 'Negated', ], 'Type' => [ 'shape' => 'PredicateType', ], 'DataId' => [ 'shape' => 'ResourceId', ], ], ], 'PredicateType' => [ 'type' => 'string', 'enum' => [ 'IPMatch', 'ByteMatch', 'SqlInjectionMatch', 'SizeConstraint', 'XssMatch', ], ], 'Predicates' => [ 'type' => 'list', 'member' => [ 'shape' => 'Predicate', ], ], 'ResourceId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'ResourceName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'Rule' => [ 'type' => 'structure', 'required' => [ 'RuleId', 'Predicates', ], 'members' => [ 'RuleId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'MetricName' => [ 'shape' => 'MetricName', ], 'Predicates' => [ 'shape' => 'Predicates', ], ], ], 'RulePriority' => [ 'type' => 'integer', ], 'RuleSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleSummary', ], ], 'RuleSummary' => [ 'type' => 'structure', 'required' => [ 'RuleId', 'Name', ], 'members' => [ 'RuleId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'RuleUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'Predicate', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'Predicate' => [ 'shape' => 'Predicate', ], ], ], 'RuleUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleUpdate', ], ], 'SampleWeight' => [ 'type' => 'long', 'min' => 0, ], 'SampledHTTPRequest' => [ 'type' => 'structure', 'required' => [ 'Request', 'Weight', ], 'members' => [ 'Request' => [ 'shape' => 'HTTPRequest', ], 'Weight' => [ 'shape' => 'SampleWeight', ], 'Timestamp' => [ 'shape' => 'Timestamp', ], 'Action' => [ 'shape' => 'Action', ], ], ], 'SampledHTTPRequests' => [ 'type' => 'list', 'member' => [ 'shape' => 'SampledHTTPRequest', ], ], 'Size' => [ 'type' => 'long', 'max' => 21474836480, 'min' => 0, ], 'SizeConstraint' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'TextTransformation', 'ComparisonOperator', 'Size', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformation' => [ 'shape' => 'TextTransformation', ], 'ComparisonOperator' => [ 'shape' => 'ComparisonOperator', ], 'Size' => [ 'shape' => 'Size', ], ], ], 'SizeConstraintSet' => [ 'type' => 'structure', 'required' => [ 'SizeConstraintSetId', 'SizeConstraints', ], 'members' => [ 'SizeConstraintSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'SizeConstraints' => [ 'shape' => 'SizeConstraints', ], ], ], 'SizeConstraintSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'SizeConstraintSetSummary', ], ], 'SizeConstraintSetSummary' => [ 'type' => 'structure', 'required' => [ 'SizeConstraintSetId', 'Name', ], 'members' => [ 'SizeConstraintSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'SizeConstraintSetUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'SizeConstraint', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'SizeConstraint' => [ 'shape' => 'SizeConstraint', ], ], ], 'SizeConstraintSetUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'SizeConstraintSetUpdate', ], ], 'SizeConstraints' => [ 'type' => 'list', 'member' => [ 'shape' => 'SizeConstraint', ], ], 'SqlInjectionMatchSet' => [ 'type' => 'structure', 'required' => [ 'SqlInjectionMatchSetId', 'SqlInjectionMatchTuples', ], 'members' => [ 'SqlInjectionMatchSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'SqlInjectionMatchTuples' => [ 'shape' => 'SqlInjectionMatchTuples', ], ], ], 'SqlInjectionMatchSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'SqlInjectionMatchSetSummary', ], ], 'SqlInjectionMatchSetSummary' => [ 'type' => 'structure', 'required' => [ 'SqlInjectionMatchSetId', 'Name', ], 'members' => [ 'SqlInjectionMatchSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'SqlInjectionMatchSetUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'SqlInjectionMatchTuple', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'SqlInjectionMatchTuple' => [ 'shape' => 'SqlInjectionMatchTuple', ], ], ], 'SqlInjectionMatchSetUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'SqlInjectionMatchSetUpdate', ], ], 'SqlInjectionMatchTuple' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'TextTransformation', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformation' => [ 'shape' => 'TextTransformation', ], ], ], 'SqlInjectionMatchTuples' => [ 'type' => 'list', 'member' => [ 'shape' => 'SqlInjectionMatchTuple', ], ], 'TextTransformation' => [ 'type' => 'string', 'enum' => [ 'NONE', 'COMPRESS_WHITE_SPACE', 'HTML_ENTITY_DECODE', 'LOWERCASE', 'CMD_LINE', 'URL_DECODE', ], ], 'TimeWindow' => [ 'type' => 'structure', 'required' => [ 'StartTime', 'EndTime', ], 'members' => [ 'StartTime' => [ 'shape' => 'Timestamp', ], 'EndTime' => [ 'shape' => 'Timestamp', ], ], ], 'Timestamp' => [ 'type' => 'timestamp', ], 'URIString' => [ 'type' => 'string', ], 'UpdateByteMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'ByteMatchSetId', 'ChangeToken', 'Updates', ], 'members' => [ 'ByteMatchSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'ByteMatchSetUpdates', ], ], ], 'UpdateByteMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'UpdateIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'IPSetId', 'ChangeToken', 'Updates', ], 'members' => [ 'IPSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'IPSetUpdates', ], ], ], 'UpdateIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'UpdateRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleId', 'ChangeToken', 'Updates', ], 'members' => [ 'RuleId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'RuleUpdates', ], ], ], 'UpdateRuleResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'UpdateSizeConstraintSetRequest' => [ 'type' => 'structure', 'required' => [ 'SizeConstraintSetId', 'ChangeToken', 'Updates', ], 'members' => [ 'SizeConstraintSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'SizeConstraintSetUpdates', ], ], ], 'UpdateSizeConstraintSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'UpdateSqlInjectionMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'SqlInjectionMatchSetId', 'ChangeToken', 'Updates', ], 'members' => [ 'SqlInjectionMatchSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'SqlInjectionMatchSetUpdates', ], ], ], 'UpdateSqlInjectionMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'UpdateWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLId', 'ChangeToken', ], 'members' => [ 'WebACLId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'WebACLUpdates', ], 'DefaultAction' => [ 'shape' => 'WafAction', ], ], ], 'UpdateWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'UpdateXssMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'XssMatchSetId', 'ChangeToken', 'Updates', ], 'members' => [ 'XssMatchSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'XssMatchSetUpdates', ], ], ], 'UpdateXssMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'WAFDisallowedNameException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFInternalErrorException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, 'fault' => true, ], 'WAFInvalidAccountException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'WAFInvalidOperationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFInvalidParameterException' => [ 'type' => 'structure', 'members' => [ 'field' => [ 'shape' => 'ParameterExceptionField', ], 'parameter' => [ 'shape' => 'ParameterExceptionParameter', ], 'reason' => [ 'shape' => 'ParameterExceptionReason', ], ], 'exception' => true, ], 'WAFLimitsExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFNonEmptyEntityException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFNonexistentContainerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFNonexistentItemException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFReferencedItemException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFStaleDataException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WafAction' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'Type' => [ 'shape' => 'WafActionType', ], ], ], 'WafActionType' => [ 'type' => 'string', 'enum' => [ 'BLOCK', 'ALLOW', 'COUNT', ], ], 'WebACL' => [ 'type' => 'structure', 'required' => [ 'WebACLId', 'DefaultAction', 'Rules', ], 'members' => [ 'WebACLId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'MetricName' => [ 'shape' => 'MetricName', ], 'DefaultAction' => [ 'shape' => 'WafAction', ], 'Rules' => [ 'shape' => 'ActivatedRules', ], ], ], 'WebACLSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'WebACLSummary', ], ], 'WebACLSummary' => [ 'type' => 'structure', 'required' => [ 'WebACLId', 'Name', ], 'members' => [ 'WebACLId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'WebACLUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'ActivatedRule', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'ActivatedRule' => [ 'shape' => 'ActivatedRule', ], ], ], 'WebACLUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'WebACLUpdate', ], ], 'XssMatchSet' => [ 'type' => 'structure', 'required' => [ 'XssMatchSetId', 'XssMatchTuples', ], 'members' => [ 'XssMatchSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'XssMatchTuples' => [ 'shape' => 'XssMatchTuples', ], ], ], 'XssMatchSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'XssMatchSetSummary', ], ], 'XssMatchSetSummary' => [ 'type' => 'structure', 'required' => [ 'XssMatchSetId', 'Name', ], 'members' => [ 'XssMatchSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'XssMatchSetUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'XssMatchTuple', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'XssMatchTuple' => [ 'shape' => 'XssMatchTuple', ], ], ], 'XssMatchSetUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'XssMatchSetUpdate', ], ], 'XssMatchTuple' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'TextTransformation', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformation' => [ 'shape' => 'TextTransformation', ], ], ], 'XssMatchTuples' => [ 'type' => 'list', 'member' => [ 'shape' => 'XssMatchTuple', ], ], 'errorMessage' => [ 'type' => 'string', ], ],]; +return [ 'version' => '2.0', 'metadata' => [ 'apiVersion' => '2015-08-24', 'endpointPrefix' => 'waf', 'jsonVersion' => '1.1', 'protocol' => 'json', 'serviceAbbreviation' => 'WAF', 'serviceFullName' => 'AWS WAF', 'signatureVersion' => 'v4', 'targetPrefix' => 'AWSWAF_20150824', ], 'operations' => [ 'CreateByteMatchSet' => [ 'name' => 'CreateByteMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateByteMatchSetRequest', ], 'output' => [ 'shape' => 'CreateByteMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateIPSet' => [ 'name' => 'CreateIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateIPSetRequest', ], 'output' => [ 'shape' => 'CreateIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateRule' => [ 'name' => 'CreateRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateRuleRequest', ], 'output' => [ 'shape' => 'CreateRuleResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateSizeConstraintSet' => [ 'name' => 'CreateSizeConstraintSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSizeConstraintSetRequest', ], 'output' => [ 'shape' => 'CreateSizeConstraintSetResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateSqlInjectionMatchSet' => [ 'name' => 'CreateSqlInjectionMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateSqlInjectionMatchSetRequest', ], 'output' => [ 'shape' => 'CreateSqlInjectionMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateWebACL' => [ 'name' => 'CreateWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateWebACLRequest', ], 'output' => [ 'shape' => 'CreateWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'CreateXssMatchSet' => [ 'name' => 'CreateXssMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'CreateXssMatchSetRequest', ], 'output' => [ 'shape' => 'CreateXssMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFDisallowedNameException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'DeleteByteMatchSet' => [ 'name' => 'DeleteByteMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteByteMatchSetRequest', ], 'output' => [ 'shape' => 'DeleteByteMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'DeleteIPSet' => [ 'name' => 'DeleteIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteIPSetRequest', ], 'output' => [ 'shape' => 'DeleteIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'DeleteRule' => [ 'name' => 'DeleteRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteRuleRequest', ], 'output' => [ 'shape' => 'DeleteRuleResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'DeleteSizeConstraintSet' => [ 'name' => 'DeleteSizeConstraintSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSizeConstraintSetRequest', ], 'output' => [ 'shape' => 'DeleteSizeConstraintSetResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'DeleteSqlInjectionMatchSet' => [ 'name' => 'DeleteSqlInjectionMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteSqlInjectionMatchSetRequest', ], 'output' => [ 'shape' => 'DeleteSqlInjectionMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'DeleteWebACL' => [ 'name' => 'DeleteWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteWebACLRequest', ], 'output' => [ 'shape' => 'DeleteWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'DeleteXssMatchSet' => [ 'name' => 'DeleteXssMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'DeleteXssMatchSetRequest', ], 'output' => [ 'shape' => 'DeleteXssMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFNonEmptyEntityException', ], ], ], 'GetByteMatchSet' => [ 'name' => 'GetByteMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetByteMatchSetRequest', ], 'output' => [ 'shape' => 'GetByteMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'GetChangeToken' => [ 'name' => 'GetChangeToken', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetChangeTokenRequest', ], 'output' => [ 'shape' => 'GetChangeTokenResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], ], ], 'GetChangeTokenStatus' => [ 'name' => 'GetChangeTokenStatus', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetChangeTokenStatusRequest', ], 'output' => [ 'shape' => 'GetChangeTokenStatusResponse', ], 'errors' => [ [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInternalErrorException', ], ], ], 'GetIPSet' => [ 'name' => 'GetIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetIPSetRequest', ], 'output' => [ 'shape' => 'GetIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'GetRule' => [ 'name' => 'GetRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetRuleRequest', ], 'output' => [ 'shape' => 'GetRuleResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'GetSampledRequests' => [ 'name' => 'GetSampledRequests', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSampledRequestsRequest', ], 'output' => [ 'shape' => 'GetSampledRequestsResponse', ], 'errors' => [ [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFInternalErrorException', ], ], ], 'GetSizeConstraintSet' => [ 'name' => 'GetSizeConstraintSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSizeConstraintSetRequest', ], 'output' => [ 'shape' => 'GetSizeConstraintSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'GetSqlInjectionMatchSet' => [ 'name' => 'GetSqlInjectionMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetSqlInjectionMatchSetRequest', ], 'output' => [ 'shape' => 'GetSqlInjectionMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'GetWebACL' => [ 'name' => 'GetWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetWebACLRequest', ], 'output' => [ 'shape' => 'GetWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'GetXssMatchSet' => [ 'name' => 'GetXssMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'GetXssMatchSetRequest', ], 'output' => [ 'shape' => 'GetXssMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFNonexistentItemException', ], ], ], 'ListByteMatchSets' => [ 'name' => 'ListByteMatchSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListByteMatchSetsRequest', ], 'output' => [ 'shape' => 'ListByteMatchSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'ListIPSets' => [ 'name' => 'ListIPSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListIPSetsRequest', ], 'output' => [ 'shape' => 'ListIPSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'ListRules' => [ 'name' => 'ListRules', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListRulesRequest', ], 'output' => [ 'shape' => 'ListRulesResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'ListSizeConstraintSets' => [ 'name' => 'ListSizeConstraintSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListSizeConstraintSetsRequest', ], 'output' => [ 'shape' => 'ListSizeConstraintSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'ListSqlInjectionMatchSets' => [ 'name' => 'ListSqlInjectionMatchSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListSqlInjectionMatchSetsRequest', ], 'output' => [ 'shape' => 'ListSqlInjectionMatchSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'ListWebACLs' => [ 'name' => 'ListWebACLs', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListWebACLsRequest', ], 'output' => [ 'shape' => 'ListWebACLsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'ListXssMatchSets' => [ 'name' => 'ListXssMatchSets', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'ListXssMatchSetsRequest', ], 'output' => [ 'shape' => 'ListXssMatchSetsResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], ], ], 'UpdateByteMatchSet' => [ 'name' => 'UpdateByteMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateByteMatchSetRequest', ], 'output' => [ 'shape' => 'UpdateByteMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'UpdateIPSet' => [ 'name' => 'UpdateIPSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateIPSetRequest', ], 'output' => [ 'shape' => 'UpdateIPSetResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'UpdateRule' => [ 'name' => 'UpdateRule', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateRuleRequest', ], 'output' => [ 'shape' => 'UpdateRuleResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'UpdateSizeConstraintSet' => [ 'name' => 'UpdateSizeConstraintSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateSizeConstraintSetRequest', ], 'output' => [ 'shape' => 'UpdateSizeConstraintSetResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'UpdateSqlInjectionMatchSet' => [ 'name' => 'UpdateSqlInjectionMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateSqlInjectionMatchSetRequest', ], 'output' => [ 'shape' => 'UpdateSqlInjectionMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'UpdateWebACL' => [ 'name' => 'UpdateWebACL', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateWebACLRequest', ], 'output' => [ 'shape' => 'UpdateWebACLResponse', ], 'errors' => [ [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFReferencedItemException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], 'UpdateXssMatchSet' => [ 'name' => 'UpdateXssMatchSet', 'http' => [ 'method' => 'POST', 'requestUri' => '/', ], 'input' => [ 'shape' => 'UpdateXssMatchSetRequest', ], 'output' => [ 'shape' => 'UpdateXssMatchSetResponse', ], 'errors' => [ [ 'shape' => 'WAFInternalErrorException', ], [ 'shape' => 'WAFInvalidAccountException', ], [ 'shape' => 'WAFInvalidOperationException', ], [ 'shape' => 'WAFInvalidParameterException', ], [ 'shape' => 'WAFNonexistentContainerException', ], [ 'shape' => 'WAFNonexistentItemException', ], [ 'shape' => 'WAFStaleDataException', ], [ 'shape' => 'WAFLimitsExceededException', ], ], ], ], 'shapes' => [ 'Action' => [ 'type' => 'string', ], 'ActivatedRule' => [ 'type' => 'structure', 'required' => [ 'Priority', 'RuleId', 'Action', ], 'members' => [ 'Priority' => [ 'shape' => 'RulePriority', ], 'RuleId' => [ 'shape' => 'ResourceId', ], 'Action' => [ 'shape' => 'WafAction', ], ], ], 'ActivatedRules' => [ 'type' => 'list', 'member' => [ 'shape' => 'ActivatedRule', ], ], 'ByteMatchSet' => [ 'type' => 'structure', 'required' => [ 'ByteMatchSetId', 'ByteMatchTuples', ], 'members' => [ 'ByteMatchSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'ByteMatchTuples' => [ 'shape' => 'ByteMatchTuples', ], ], ], 'ByteMatchSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'ByteMatchSetSummary', ], ], 'ByteMatchSetSummary' => [ 'type' => 'structure', 'required' => [ 'ByteMatchSetId', 'Name', ], 'members' => [ 'ByteMatchSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'ByteMatchSetUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'ByteMatchTuple', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'ByteMatchTuple' => [ 'shape' => 'ByteMatchTuple', ], ], ], 'ByteMatchSetUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'ByteMatchSetUpdate', ], ], 'ByteMatchTargetString' => [ 'type' => 'blob', ], 'ByteMatchTuple' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'TargetString', 'TextTransformation', 'PositionalConstraint', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TargetString' => [ 'shape' => 'ByteMatchTargetString', ], 'TextTransformation' => [ 'shape' => 'TextTransformation', ], 'PositionalConstraint' => [ 'shape' => 'PositionalConstraint', ], ], ], 'ByteMatchTuples' => [ 'type' => 'list', 'member' => [ 'shape' => 'ByteMatchTuple', ], ], 'ChangeAction' => [ 'type' => 'string', 'enum' => [ 'INSERT', 'DELETE', ], ], 'ChangeToken' => [ 'type' => 'string', 'min' => 1, ], 'ChangeTokenStatus' => [ 'type' => 'string', 'enum' => [ 'PROVISIONED', 'PENDING', 'INSYNC', ], ], 'ComparisonOperator' => [ 'type' => 'string', 'enum' => [ 'EQ', 'NE', 'LE', 'LT', 'GE', 'GT', ], ], 'Country' => [ 'type' => 'string', ], 'CreateByteMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateByteMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ByteMatchSet' => [ 'shape' => 'ByteMatchSet', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'IPSet' => [ 'shape' => 'IPSet', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateRuleRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'MetricName', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'MetricName' => [ 'shape' => 'MetricName', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateRuleResponse' => [ 'type' => 'structure', 'members' => [ 'Rule' => [ 'shape' => 'Rule', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateSizeConstraintSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateSizeConstraintSetResponse' => [ 'type' => 'structure', 'members' => [ 'SizeConstraintSet' => [ 'shape' => 'SizeConstraintSet', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateSqlInjectionMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateSqlInjectionMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'SqlInjectionMatchSet' => [ 'shape' => 'SqlInjectionMatchSet', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'MetricName', 'DefaultAction', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'MetricName' => [ 'shape' => 'MetricName', ], 'DefaultAction' => [ 'shape' => 'WafAction', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'WebACL' => [ 'shape' => 'WebACL', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateXssMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'Name', 'ChangeToken', ], 'members' => [ 'Name' => [ 'shape' => 'ResourceName', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'CreateXssMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'XssMatchSet' => [ 'shape' => 'XssMatchSet', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteByteMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'ByteMatchSetId', 'ChangeToken', ], 'members' => [ 'ByteMatchSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteByteMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'IPSetId', 'ChangeToken', ], 'members' => [ 'IPSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleId', 'ChangeToken', ], 'members' => [ 'RuleId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteRuleResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteSizeConstraintSetRequest' => [ 'type' => 'structure', 'required' => [ 'SizeConstraintSetId', 'ChangeToken', ], 'members' => [ 'SizeConstraintSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteSizeConstraintSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteSqlInjectionMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'SqlInjectionMatchSetId', 'ChangeToken', ], 'members' => [ 'SqlInjectionMatchSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteSqlInjectionMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLId', 'ChangeToken', ], 'members' => [ 'WebACLId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteXssMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'XssMatchSetId', 'ChangeToken', ], 'members' => [ 'XssMatchSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'DeleteXssMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'FieldToMatch' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'Type' => [ 'shape' => 'MatchFieldType', ], 'Data' => [ 'shape' => 'MatchFieldData', ], ], ], 'GetByteMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'ByteMatchSetId', ], 'members' => [ 'ByteMatchSetId' => [ 'shape' => 'ResourceId', ], ], ], 'GetByteMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ByteMatchSet' => [ 'shape' => 'ByteMatchSet', ], ], ], 'GetChangeTokenRequest' => [ 'type' => 'structure', 'members' => [], ], 'GetChangeTokenResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'GetChangeTokenStatusRequest' => [ 'type' => 'structure', 'required' => [ 'ChangeToken', ], 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'GetChangeTokenStatusResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeTokenStatus' => [ 'shape' => 'ChangeTokenStatus', ], ], ], 'GetIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'IPSetId', ], 'members' => [ 'IPSetId' => [ 'shape' => 'ResourceId', ], ], ], 'GetIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'IPSet' => [ 'shape' => 'IPSet', ], ], ], 'GetRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleId', ], 'members' => [ 'RuleId' => [ 'shape' => 'ResourceId', ], ], ], 'GetRuleResponse' => [ 'type' => 'structure', 'members' => [ 'Rule' => [ 'shape' => 'Rule', ], ], ], 'GetSampledRequestsRequest' => [ 'type' => 'structure', 'required' => [ 'WebAclId', 'RuleId', 'TimeWindow', 'MaxItems', ], 'members' => [ 'WebAclId' => [ 'shape' => 'ResourceId', ], 'RuleId' => [ 'shape' => 'ResourceId', ], 'TimeWindow' => [ 'shape' => 'TimeWindow', ], 'MaxItems' => [ 'shape' => 'ListMaxItems', ], ], ], 'GetSampledRequestsResponse' => [ 'type' => 'structure', 'members' => [ 'SampledRequests' => [ 'shape' => 'SampledHTTPRequests', ], 'PopulationSize' => [ 'shape' => 'PopulationSize', ], 'TimeWindow' => [ 'shape' => 'TimeWindow', ], ], ], 'GetSizeConstraintSetRequest' => [ 'type' => 'structure', 'required' => [ 'SizeConstraintSetId', ], 'members' => [ 'SizeConstraintSetId' => [ 'shape' => 'ResourceId', ], ], ], 'GetSizeConstraintSetResponse' => [ 'type' => 'structure', 'members' => [ 'SizeConstraintSet' => [ 'shape' => 'SizeConstraintSet', ], ], ], 'GetSqlInjectionMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'SqlInjectionMatchSetId', ], 'members' => [ 'SqlInjectionMatchSetId' => [ 'shape' => 'ResourceId', ], ], ], 'GetSqlInjectionMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'SqlInjectionMatchSet' => [ 'shape' => 'SqlInjectionMatchSet', ], ], ], 'GetWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLId', ], 'members' => [ 'WebACLId' => [ 'shape' => 'ResourceId', ], ], ], 'GetWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'WebACL' => [ 'shape' => 'WebACL', ], ], ], 'GetXssMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'XssMatchSetId', ], 'members' => [ 'XssMatchSetId' => [ 'shape' => 'ResourceId', ], ], ], 'GetXssMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'XssMatchSet' => [ 'shape' => 'XssMatchSet', ], ], ], 'HTTPHeader' => [ 'type' => 'structure', 'members' => [ 'Name' => [ 'shape' => 'HeaderName', ], 'Value' => [ 'shape' => 'HeaderValue', ], ], ], 'HTTPHeaders' => [ 'type' => 'list', 'member' => [ 'shape' => 'HTTPHeader', ], ], 'HTTPMethod' => [ 'type' => 'string', ], 'HTTPRequest' => [ 'type' => 'structure', 'members' => [ 'ClientIP' => [ 'shape' => 'IPString', ], 'Country' => [ 'shape' => 'Country', ], 'URI' => [ 'shape' => 'URIString', ], 'Method' => [ 'shape' => 'HTTPMethod', ], 'HTTPVersion' => [ 'shape' => 'HTTPVersion', ], 'Headers' => [ 'shape' => 'HTTPHeaders', ], ], ], 'HTTPVersion' => [ 'type' => 'string', ], 'HeaderName' => [ 'type' => 'string', ], 'HeaderValue' => [ 'type' => 'string', ], 'IPSet' => [ 'type' => 'structure', 'required' => [ 'IPSetId', 'IPSetDescriptors', ], 'members' => [ 'IPSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'IPSetDescriptors' => [ 'shape' => 'IPSetDescriptors', ], ], ], 'IPSetDescriptor' => [ 'type' => 'structure', 'required' => [ 'Type', 'Value', ], 'members' => [ 'Type' => [ 'shape' => 'IPSetDescriptorType', ], 'Value' => [ 'shape' => 'IPSetDescriptorValue', ], ], ], 'IPSetDescriptorType' => [ 'type' => 'string', 'enum' => [ 'IPV4', 'IPV6', ], ], 'IPSetDescriptorValue' => [ 'type' => 'string', ], 'IPSetDescriptors' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPSetDescriptor', ], ], 'IPSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPSetSummary', ], ], 'IPSetSummary' => [ 'type' => 'structure', 'required' => [ 'IPSetId', 'Name', ], 'members' => [ 'IPSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'IPSetUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'IPSetDescriptor', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'IPSetDescriptor' => [ 'shape' => 'IPSetDescriptor', ], ], ], 'IPSetUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'IPSetUpdate', ], ], 'IPString' => [ 'type' => 'string', ], 'ListByteMatchSetsRequest' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListByteMatchSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'ByteMatchSets' => [ 'shape' => 'ByteMatchSetSummaries', ], ], ], 'ListIPSetsRequest' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListIPSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'IPSets' => [ 'shape' => 'IPSetSummaries', ], ], ], 'ListMaxItems' => [ 'type' => 'long', 'max' => 100, 'min' => 1, ], 'ListRulesRequest' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListRulesResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Rules' => [ 'shape' => 'RuleSummaries', ], ], ], 'ListSizeConstraintSetsRequest' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListSizeConstraintSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'SizeConstraintSets' => [ 'shape' => 'SizeConstraintSetSummaries', ], ], ], 'ListSqlInjectionMatchSetsRequest' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListSqlInjectionMatchSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'SqlInjectionMatchSets' => [ 'shape' => 'SqlInjectionMatchSetSummaries', ], ], ], 'ListWebACLsRequest' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListWebACLsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'WebACLs' => [ 'shape' => 'WebACLSummaries', ], ], ], 'ListXssMatchSetsRequest' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'Limit' => [ 'shape' => 'PaginationLimit', ], ], ], 'ListXssMatchSetsResponse' => [ 'type' => 'structure', 'members' => [ 'NextMarker' => [ 'shape' => 'NextMarker', ], 'XssMatchSets' => [ 'shape' => 'XssMatchSetSummaries', ], ], ], 'MatchFieldData' => [ 'type' => 'string', ], 'MatchFieldType' => [ 'type' => 'string', 'enum' => [ 'URI', 'QUERY_STRING', 'HEADER', 'METHOD', 'BODY', ], ], 'MetricName' => [ 'type' => 'string', ], 'Negated' => [ 'type' => 'boolean', ], 'NextMarker' => [ 'type' => 'string', 'min' => 1, ], 'PaginationLimit' => [ 'type' => 'integer', 'max' => 100, 'min' => 0, ], 'ParameterExceptionField' => [ 'type' => 'string', 'enum' => [ 'CHANGE_ACTION', 'WAF_ACTION', 'PREDICATE_TYPE', 'IPSET_TYPE', 'BYTE_MATCH_FIELD_TYPE', 'SQL_INJECTION_MATCH_FIELD_TYPE', 'BYTE_MATCH_TEXT_TRANSFORMATION', 'BYTE_MATCH_POSITIONAL_CONSTRAINT', 'SIZE_CONSTRAINT_COMPARISON_OPERATOR', ], ], 'ParameterExceptionParameter' => [ 'type' => 'string', 'min' => 1, ], 'ParameterExceptionReason' => [ 'type' => 'string', 'enum' => [ 'INVALID_OPTION', 'ILLEGAL_COMBINATION', ], ], 'PopulationSize' => [ 'type' => 'long', ], 'PositionalConstraint' => [ 'type' => 'string', 'enum' => [ 'EXACTLY', 'STARTS_WITH', 'ENDS_WITH', 'CONTAINS', 'CONTAINS_WORD', ], ], 'Predicate' => [ 'type' => 'structure', 'required' => [ 'Negated', 'Type', 'DataId', ], 'members' => [ 'Negated' => [ 'shape' => 'Negated', ], 'Type' => [ 'shape' => 'PredicateType', ], 'DataId' => [ 'shape' => 'ResourceId', ], ], ], 'PredicateType' => [ 'type' => 'string', 'enum' => [ 'IPMatch', 'ByteMatch', 'SqlInjectionMatch', 'SizeConstraint', 'XssMatch', ], ], 'Predicates' => [ 'type' => 'list', 'member' => [ 'shape' => 'Predicate', ], ], 'ResourceId' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'ResourceName' => [ 'type' => 'string', 'max' => 128, 'min' => 1, ], 'Rule' => [ 'type' => 'structure', 'required' => [ 'RuleId', 'Predicates', ], 'members' => [ 'RuleId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'MetricName' => [ 'shape' => 'MetricName', ], 'Predicates' => [ 'shape' => 'Predicates', ], ], ], 'RulePriority' => [ 'type' => 'integer', ], 'RuleSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleSummary', ], ], 'RuleSummary' => [ 'type' => 'structure', 'required' => [ 'RuleId', 'Name', ], 'members' => [ 'RuleId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'RuleUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'Predicate', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'Predicate' => [ 'shape' => 'Predicate', ], ], ], 'RuleUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'RuleUpdate', ], ], 'SampleWeight' => [ 'type' => 'long', 'min' => 0, ], 'SampledHTTPRequest' => [ 'type' => 'structure', 'required' => [ 'Request', 'Weight', ], 'members' => [ 'Request' => [ 'shape' => 'HTTPRequest', ], 'Weight' => [ 'shape' => 'SampleWeight', ], 'Timestamp' => [ 'shape' => 'Timestamp', ], 'Action' => [ 'shape' => 'Action', ], ], ], 'SampledHTTPRequests' => [ 'type' => 'list', 'member' => [ 'shape' => 'SampledHTTPRequest', ], ], 'Size' => [ 'type' => 'long', 'max' => 21474836480, 'min' => 0, ], 'SizeConstraint' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'TextTransformation', 'ComparisonOperator', 'Size', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformation' => [ 'shape' => 'TextTransformation', ], 'ComparisonOperator' => [ 'shape' => 'ComparisonOperator', ], 'Size' => [ 'shape' => 'Size', ], ], ], 'SizeConstraintSet' => [ 'type' => 'structure', 'required' => [ 'SizeConstraintSetId', 'SizeConstraints', ], 'members' => [ 'SizeConstraintSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'SizeConstraints' => [ 'shape' => 'SizeConstraints', ], ], ], 'SizeConstraintSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'SizeConstraintSetSummary', ], ], 'SizeConstraintSetSummary' => [ 'type' => 'structure', 'required' => [ 'SizeConstraintSetId', 'Name', ], 'members' => [ 'SizeConstraintSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'SizeConstraintSetUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'SizeConstraint', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'SizeConstraint' => [ 'shape' => 'SizeConstraint', ], ], ], 'SizeConstraintSetUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'SizeConstraintSetUpdate', ], ], 'SizeConstraints' => [ 'type' => 'list', 'member' => [ 'shape' => 'SizeConstraint', ], ], 'SqlInjectionMatchSet' => [ 'type' => 'structure', 'required' => [ 'SqlInjectionMatchSetId', 'SqlInjectionMatchTuples', ], 'members' => [ 'SqlInjectionMatchSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'SqlInjectionMatchTuples' => [ 'shape' => 'SqlInjectionMatchTuples', ], ], ], 'SqlInjectionMatchSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'SqlInjectionMatchSetSummary', ], ], 'SqlInjectionMatchSetSummary' => [ 'type' => 'structure', 'required' => [ 'SqlInjectionMatchSetId', 'Name', ], 'members' => [ 'SqlInjectionMatchSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'SqlInjectionMatchSetUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'SqlInjectionMatchTuple', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'SqlInjectionMatchTuple' => [ 'shape' => 'SqlInjectionMatchTuple', ], ], ], 'SqlInjectionMatchSetUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'SqlInjectionMatchSetUpdate', ], ], 'SqlInjectionMatchTuple' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'TextTransformation', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformation' => [ 'shape' => 'TextTransformation', ], ], ], 'SqlInjectionMatchTuples' => [ 'type' => 'list', 'member' => [ 'shape' => 'SqlInjectionMatchTuple', ], ], 'TextTransformation' => [ 'type' => 'string', 'enum' => [ 'NONE', 'COMPRESS_WHITE_SPACE', 'HTML_ENTITY_DECODE', 'LOWERCASE', 'CMD_LINE', 'URL_DECODE', ], ], 'TimeWindow' => [ 'type' => 'structure', 'required' => [ 'StartTime', 'EndTime', ], 'members' => [ 'StartTime' => [ 'shape' => 'Timestamp', ], 'EndTime' => [ 'shape' => 'Timestamp', ], ], ], 'Timestamp' => [ 'type' => 'timestamp', ], 'URIString' => [ 'type' => 'string', ], 'UpdateByteMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'ByteMatchSetId', 'ChangeToken', 'Updates', ], 'members' => [ 'ByteMatchSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'ByteMatchSetUpdates', ], ], ], 'UpdateByteMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'UpdateIPSetRequest' => [ 'type' => 'structure', 'required' => [ 'IPSetId', 'ChangeToken', 'Updates', ], 'members' => [ 'IPSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'IPSetUpdates', ], ], ], 'UpdateIPSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'UpdateRuleRequest' => [ 'type' => 'structure', 'required' => [ 'RuleId', 'ChangeToken', 'Updates', ], 'members' => [ 'RuleId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'RuleUpdates', ], ], ], 'UpdateRuleResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'UpdateSizeConstraintSetRequest' => [ 'type' => 'structure', 'required' => [ 'SizeConstraintSetId', 'ChangeToken', 'Updates', ], 'members' => [ 'SizeConstraintSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'SizeConstraintSetUpdates', ], ], ], 'UpdateSizeConstraintSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'UpdateSqlInjectionMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'SqlInjectionMatchSetId', 'ChangeToken', 'Updates', ], 'members' => [ 'SqlInjectionMatchSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'SqlInjectionMatchSetUpdates', ], ], ], 'UpdateSqlInjectionMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'UpdateWebACLRequest' => [ 'type' => 'structure', 'required' => [ 'WebACLId', 'ChangeToken', ], 'members' => [ 'WebACLId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'WebACLUpdates', ], 'DefaultAction' => [ 'shape' => 'WafAction', ], ], ], 'UpdateWebACLResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'UpdateXssMatchSetRequest' => [ 'type' => 'structure', 'required' => [ 'XssMatchSetId', 'ChangeToken', 'Updates', ], 'members' => [ 'XssMatchSetId' => [ 'shape' => 'ResourceId', ], 'ChangeToken' => [ 'shape' => 'ChangeToken', ], 'Updates' => [ 'shape' => 'XssMatchSetUpdates', ], ], ], 'UpdateXssMatchSetResponse' => [ 'type' => 'structure', 'members' => [ 'ChangeToken' => [ 'shape' => 'ChangeToken', ], ], ], 'WAFDisallowedNameException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFInternalErrorException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, 'fault' => true, ], 'WAFInvalidAccountException' => [ 'type' => 'structure', 'members' => [], 'exception' => true, ], 'WAFInvalidOperationException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFInvalidParameterException' => [ 'type' => 'structure', 'members' => [ 'field' => [ 'shape' => 'ParameterExceptionField', ], 'parameter' => [ 'shape' => 'ParameterExceptionParameter', ], 'reason' => [ 'shape' => 'ParameterExceptionReason', ], ], 'exception' => true, ], 'WAFLimitsExceededException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFNonEmptyEntityException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFNonexistentContainerException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFNonexistentItemException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFReferencedItemException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WAFStaleDataException' => [ 'type' => 'structure', 'members' => [ 'message' => [ 'shape' => 'errorMessage', ], ], 'exception' => true, ], 'WafAction' => [ 'type' => 'structure', 'required' => [ 'Type', ], 'members' => [ 'Type' => [ 'shape' => 'WafActionType', ], ], ], 'WafActionType' => [ 'type' => 'string', 'enum' => [ 'BLOCK', 'ALLOW', 'COUNT', ], ], 'WebACL' => [ 'type' => 'structure', 'required' => [ 'WebACLId', 'DefaultAction', 'Rules', ], 'members' => [ 'WebACLId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'MetricName' => [ 'shape' => 'MetricName', ], 'DefaultAction' => [ 'shape' => 'WafAction', ], 'Rules' => [ 'shape' => 'ActivatedRules', ], ], ], 'WebACLSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'WebACLSummary', ], ], 'WebACLSummary' => [ 'type' => 'structure', 'required' => [ 'WebACLId', 'Name', ], 'members' => [ 'WebACLId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'WebACLUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'ActivatedRule', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'ActivatedRule' => [ 'shape' => 'ActivatedRule', ], ], ], 'WebACLUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'WebACLUpdate', ], ], 'XssMatchSet' => [ 'type' => 'structure', 'required' => [ 'XssMatchSetId', 'XssMatchTuples', ], 'members' => [ 'XssMatchSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], 'XssMatchTuples' => [ 'shape' => 'XssMatchTuples', ], ], ], 'XssMatchSetSummaries' => [ 'type' => 'list', 'member' => [ 'shape' => 'XssMatchSetSummary', ], ], 'XssMatchSetSummary' => [ 'type' => 'structure', 'required' => [ 'XssMatchSetId', 'Name', ], 'members' => [ 'XssMatchSetId' => [ 'shape' => 'ResourceId', ], 'Name' => [ 'shape' => 'ResourceName', ], ], ], 'XssMatchSetUpdate' => [ 'type' => 'structure', 'required' => [ 'Action', 'XssMatchTuple', ], 'members' => [ 'Action' => [ 'shape' => 'ChangeAction', ], 'XssMatchTuple' => [ 'shape' => 'XssMatchTuple', ], ], ], 'XssMatchSetUpdates' => [ 'type' => 'list', 'member' => [ 'shape' => 'XssMatchSetUpdate', ], ], 'XssMatchTuple' => [ 'type' => 'structure', 'required' => [ 'FieldToMatch', 'TextTransformation', ], 'members' => [ 'FieldToMatch' => [ 'shape' => 'FieldToMatch', ], 'TextTransformation' => [ 'shape' => 'TextTransformation', ], ], ], 'XssMatchTuples' => [ 'type' => 'list', 'member' => [ 'shape' => 'XssMatchTuple', ], ], 'errorMessage' => [ 'type' => 'string', ], ],]; diff --git a/vendor/barryvdh/laravel-debugbar/composer.json b/vendor/barryvdh/laravel-debugbar/composer.json index 2f29345eb..e77c76de4 100644 --- a/vendor/barryvdh/laravel-debugbar/composer.json +++ b/vendor/barryvdh/laravel-debugbar/composer.json @@ -13,7 +13,7 @@ "php": ">=5.5.9", "illuminate/support": "5.1.*|5.2.*|5.3.*", "symfony/finder": "~2.7|~3.0", - "maximebf/debugbar": "~1.11.0|~1.12.0" + "maximebf/debugbar": "~1.13.0" }, "autoload": { "psr-4": { @@ -25,7 +25,7 @@ }, "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-master": "2.3-dev" } } } diff --git a/vendor/barryvdh/laravel-debugbar/src/DataCollector/QueryCollector.php b/vendor/barryvdh/laravel-debugbar/src/DataCollector/QueryCollector.php index cafecbdb1..aa55ffcd4 100644 --- a/vendor/barryvdh/laravel-debugbar/src/DataCollector/QueryCollector.php +++ b/vendor/barryvdh/laravel-debugbar/src/DataCollector/QueryCollector.php @@ -100,7 +100,12 @@ class QueryCollector extends PDOCollector $bindings = $this->checkBindings($bindings); if (!empty($bindings) && $this->renderSqlWithParams) { foreach ($bindings as $key => $binding) { - $regex = is_numeric($key) ? '/\?/' : "/:{$key}/"; + // This regex matches placeholders only, not the question marks, + // nested in quotes, while we iterate through the bindings + // and substitute placeholders by suitable values. + $regex = is_numeric($key) + ? "/\?(?=(?:[^'\\\']*'[^'\\\']*')*[^'\\\']*$)/" + : "/:{$key}(?=(?:[^'\\\']*'[^'\\\']*')*[^'\\\']*$)/"; $query = preg_replace($regex, $pdo->quote($binding), $query, 1); } } diff --git a/vendor/barryvdh/laravel-debugbar/src/LaravelDebugbar.php b/vendor/barryvdh/laravel-debugbar/src/LaravelDebugbar.php index 3fb6c73ff..9b140ad91 100644 --- a/vendor/barryvdh/laravel-debugbar/src/LaravelDebugbar.php +++ b/vendor/barryvdh/laravel-debugbar/src/LaravelDebugbar.php @@ -182,7 +182,7 @@ class LaravelDebugbar extends DebugBar $this->app['events']->subscribe($eventCollector); } catch (\Exception $e) { - $this->addException( + $this->addThrowable( new Exception( 'Cannot add EventCollector to Laravel Debugbar: ' . $e->getMessage(), $e->getCode(), @@ -203,7 +203,7 @@ class LaravelDebugbar extends DebugBar } ); } catch (\Exception $e) { - $this->addException( + $this->addThrowable( new Exception( 'Cannot add ViewCollector to Laravel Debugbar: ' . $e->getMessage(), $e->getCode(), $e ) @@ -215,7 +215,7 @@ class LaravelDebugbar extends DebugBar try { $this->addCollector($this->app->make('Barryvdh\Debugbar\DataCollector\IlluminateRouteCollector')); } catch (\Exception $e) { - $this->addException( + $this->addThrowable( new Exception( 'Cannot add RouteCollector to Laravel Debugbar: ' . $e->getMessage(), $e->getCode(), @@ -253,7 +253,7 @@ class LaravelDebugbar extends DebugBar $this->addCollector(new MonologCollector($this->app['log']->getMonolog())); } } catch (\Exception $e) { - $this->addException( + $this->addThrowable( new Exception( 'Cannot add LogsCollector to Laravel Debugbar: ' . $e->getMessage(), $e->getCode(), $e ) @@ -313,7 +313,7 @@ class LaravelDebugbar extends DebugBar } ); } catch (\Exception $e) { - $this->addException( + $this->addThrowable( new Exception( 'Cannot add listen to Queries for Laravel Debugbar: ' . $e->getMessage(), $e->getCode(), @@ -334,7 +334,7 @@ class LaravelDebugbar extends DebugBar $this['messages']->aggregate(new SwiftLogCollector($mailer)); } } catch (\Exception $e) { - $this->addException( + $this->addThrowable( new Exception( 'Cannot add MailCollector to Laravel Debugbar: ' . $e->getMessage(), $e->getCode(), $e ) @@ -347,7 +347,7 @@ class LaravelDebugbar extends DebugBar $file = $this->app['config']->get('debugbar.options.logs.file'); $this->addCollector(new LogsCollector($file)); } catch (\Exception $e) { - $this->addException( + $this->addThrowable( new Exception( 'Cannot add LogsCollector to Laravel Debugbar: ' . $e->getMessage(), $e->getCode(), $e ) @@ -373,7 +373,7 @@ class LaravelDebugbar extends DebugBar ); $this->addCollector($authCollector); } catch (\Exception $e) { - $this->addException( + $this->addThrowable( new Exception( 'Cannot add AuthCollector to Laravel Debugbar: ' . $e->getMessage(), $e->getCode(), $e ) @@ -430,7 +430,7 @@ class LaravelDebugbar extends DebugBar try { $collector->stopMeasure($name); } catch (\Exception $e) { - // $this->addException($e); + // $this->addThrowable($e); } } } @@ -439,13 +439,24 @@ class LaravelDebugbar extends DebugBar * Adds an exception to be profiled in the debug bar * * @param Exception $e + * @deprecated in favor of addThrowable */ public function addException(Exception $e) + { + return $this->addThrowable($e); + } + + /** + * Adds an exception to be profiled in the debug bar + * + * @param Exception $e + */ + public function addThrowable($e) { if ($this->hasCollector('exceptions')) { /** @var \DebugBar\DataCollector\ExceptionsCollector $collector */ $collector = $this->getCollector('exceptions'); - $collector->addException($e); + $collector->addThrowable($e); } } @@ -480,7 +491,7 @@ class LaravelDebugbar extends DebugBar // Show the Http Response Exception in the Debugbar, when available if (isset($response->exception)) { - $this->addException($response->exception); + $this->addThrowable($response->exception); } if ($this->shouldCollect('config', false)) { @@ -489,7 +500,7 @@ class LaravelDebugbar extends DebugBar $configCollector->setData($app['config']->all()); $this->addCollector($configCollector); } catch (\Exception $e) { - $this->addException( + $this->addThrowable( new Exception( 'Cannot add ConfigCollector to Laravel Debugbar: ' . $e->getMessage(), $e->getCode(), @@ -510,7 +521,7 @@ class LaravelDebugbar extends DebugBar try { $this->addCollector(new SessionCollector($sessionManager)); } catch (\Exception $e) { - $this->addException( + $this->addThrowable( new Exception( 'Cannot add SessionCollector to Laravel Debugbar: ' . $e->getMessage(), $e->getCode(), @@ -527,7 +538,7 @@ class LaravelDebugbar extends DebugBar try { $this->addCollector(new SymfonyRequestCollector($request, $response, $sessionManager)); } catch (\Exception $e) { - $this->addException( + $this->addThrowable( new Exception( 'Cannot add SymfonyRequestCollector to Laravel Debugbar: ' . $e->getMessage(), $e->getCode(), @@ -542,7 +553,7 @@ class LaravelDebugbar extends DebugBar try { $this->addCollector(new ClockworkCollector($request, $response, $sessionManager)); } catch (\Exception $e) { - $this->addException( + $this->addThrowable( new Exception( 'Cannot add ClockworkCollector to Laravel Debugbar: ' . $e->getMessage(), $e->getCode(), @@ -697,7 +708,9 @@ class LaravelDebugbar extends DebugBar $content = $content . $renderedContent; } + // Update the new content and reset the content length $response->setContent($content); + $response->headers->remove('Content-Length'); } /** diff --git a/vendor/barryvdh/laravel-debugbar/src/Middleware/Debugbar.php b/vendor/barryvdh/laravel-debugbar/src/Middleware/Debugbar.php index 6386068e6..edbc12779 100644 --- a/vendor/barryvdh/laravel-debugbar/src/Middleware/Debugbar.php +++ b/vendor/barryvdh/laravel-debugbar/src/Middleware/Debugbar.php @@ -1,11 +1,13 @@ handleException($request, $e); + } catch (Error $error) { + $e = new FatalThrowableError($error); + $response = $this->handleException($request, $e); } // Modify the response to add the Debugbar diff --git a/vendor/bin/np b/vendor/bin/np new file mode 100644 index 000000000..4dc5a0c10 --- /dev/null +++ b/vendor/bin/np @@ -0,0 +1,17 @@ +#!/usr/bin/env sh + +dir=$(d=${0%[/\\]*}; cd "$d"; cd "../sly/notification-pusher" && pwd) + +# See if we are running in Cygwin by checking for cygpath program +if command -v 'cygpath' >/dev/null 2>&1; then + # Cygwin paths start with /cygdrive/ which will break windows PHP, + # so we need to translate the dir path to windows format. However + # we could be using cygwin PHP which does not require this, so we + # test if the path to PHP starts with /cygdrive/ rather than /usr/bin + if [[ $(which php) == /cygdrive/* ]]; then + dir=$(cygpath -m "$dir"); + fi +fi + +dir=$(echo $dir | sed 's/ /\ /g') +"${dir}/np" "$@" diff --git a/vendor/bin/np.bat b/vendor/bin/np.bat new file mode 100644 index 000000000..290ce7694 --- /dev/null +++ b/vendor/bin/np.bat @@ -0,0 +1,4 @@ +@ECHO OFF +setlocal DISABLEDELAYEDEXPANSION +SET BIN_TARGET=%~dp0/../sly/notification-pusher/np +php "%BIN_TARGET%" %* diff --git a/vendor/bin/phpspec b/vendor/bin/phpspec index 034a5ff91..a41d0af90 100644 --- a/vendor/bin/phpspec +++ b/vendor/bin/phpspec @@ -1 +1,17 @@ -../phpspec/phpspec/bin/phpspec \ No newline at end of file +#!/usr/bin/env sh + +dir=$(d=${0%[/\\]*}; cd "$d"; cd "../phpspec/phpspec/bin" && pwd) + +# See if we are running in Cygwin by checking for cygpath program +if command -v 'cygpath' >/dev/null 2>&1; then + # Cygwin paths start with /cygdrive/ which will break windows PHP, + # so we need to translate the dir path to windows format. However + # we could be using cygwin PHP which does not require this, so we + # test if the path to PHP starts with /cygdrive/ rather than /usr/bin + if [[ $(which php) == /cygdrive/* ]]; then + dir=$(cygpath -m "$dir"); + fi +fi + +dir=$(echo $dir | sed 's/ /\ /g') +"${dir}/phpspec" "$@" diff --git a/vendor/bin/phpspec.bat b/vendor/bin/phpspec.bat new file mode 100644 index 000000000..59a4582b4 --- /dev/null +++ b/vendor/bin/phpspec.bat @@ -0,0 +1,4 @@ +@ECHO OFF +setlocal DISABLEDELAYEDEXPANSION +SET BIN_TARGET=%~dp0/../phpspec/phpspec/bin/phpspec +php "%BIN_TARGET%" %* diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index 5e1469e83..ac67d302a 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -13,9 +13,7 @@ namespace Composer\Autoload; /** - * ClassLoader implements a PSR-0 class loader - * - * See https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md + * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. * * $loader = new \Composer\Autoload\ClassLoader(); * @@ -39,6 +37,8 @@ namespace Composer\Autoload; * * @author Fabien Potencier * @author Jordi Boggiano + * @see http://www.php-fig.org/psr/psr-0/ + * @see http://www.php-fig.org/psr/psr-4/ */ class ClassLoader { @@ -53,8 +53,8 @@ class ClassLoader private $useIncludePath = false; private $classMap = array(); - private $classMapAuthoritative = false; + private $missingClasses = array(); public function getPrefixes() { @@ -147,7 +147,7 @@ class ClassLoader * appending or prepending to the ones previously set for this namespace. * * @param string $prefix The prefix/namespace, with trailing '\\' - * @param array|string $paths The PSR-0 base directories + * @param array|string $paths The PSR-4 base directories * @param bool $prepend Whether to prepend the directories * * @throws \InvalidArgumentException @@ -322,20 +322,20 @@ class ClassLoader if (isset($this->classMap[$class])) { return $this->classMap[$class]; } - if ($this->classMapAuthoritative) { + if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { return false; } $file = $this->findFileWithExtension($class, '.php'); // Search for Hack files if we are running on HHVM - if ($file === null && defined('HHVM_VERSION')) { + if (false === $file && defined('HHVM_VERSION')) { $file = $this->findFileWithExtension($class, '.hh'); } - if ($file === null) { + if (false === $file) { // Remember that this class does not exist. - return $this->classMap[$class] = false; + $this->missingClasses[$class] = true; } return $file; @@ -399,6 +399,8 @@ class ClassLoader if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { return $file; } + + return false; } } diff --git a/vendor/composer/LICENSE b/vendor/composer/LICENSE index c8d57af8b..1a2812488 100644 --- a/vendor/composer/LICENSE +++ b/vendor/composer/LICENSE @@ -1,5 +1,5 @@ -Copyright (c) 2015 Nils Adermann, Jordi Boggiano +Copyright (c) 2016 Nils Adermann, Jordi Boggiano Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 97da8ae24..0b0eff77f 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -28,17 +28,689 @@ return array( 'AddForeignKeysToUsersTable' => $baseDir . '/database/migrations/2016_02_16_140454_add_foreign_keys_to_users_table.php', 'Adobe_Font_Metrics' => $vendorDir . '/phenx/php-font-lib/classes/Adobe_Font_Metrics.php', 'AlterTicketSourceTable' => $baseDir . '/database/migrations/2016_08_16_104539_alter_ticket_source_table.php', + 'App\\BaseModel' => $baseDir . '/app/BaseModel.php', + 'App\\Console\\Commands\\CloseWork' => $baseDir . '/app/Console/Commands/CloseWork.php', + 'App\\Console\\Commands\\Inspire' => $baseDir . '/app/Console/Commands/Inspire.php', + 'App\\Console\\Commands\\SendReport' => $baseDir . '/app/Console/Commands/SendReport.php', + 'App\\Console\\Commands\\TicketFetch' => $baseDir . '/app/Console/Commands/TicketFetch.php', + 'App\\Console\\Kernel' => $baseDir . '/app/Console/Kernel.php', + 'App\\Events\\ClientTicketForm' => $baseDir . '/app/Events/ClientTicketForm.php', + 'App\\Events\\ClientTicketFormPost' => $baseDir . '/app/Events/ClientTicketFormPost.php', + 'App\\Events\\Event' => $baseDir . '/app/Events/Event.php', + 'App\\Events\\FaveoAfterReply' => $baseDir . '/app/Events/FaveoAfterReply.php', + 'App\\Events\\FormRegisterEvent' => $baseDir . '/app/Events/FormRegisterEvent.php', + 'App\\Events\\LoginEvent' => $baseDir . '/app/Events/LoginEvent.php', + 'App\\Events\\PostRegisterEvent' => $baseDir . '/app/Events/PostRegisterEvent.php', + 'App\\Events\\ReadMailEvent' => $baseDir . '/app/Events/ReadMailEvent.php', + 'App\\Events\\TicketBoxHeader' => $baseDir . '/app/Events/TicketBoxHeader.php', + 'App\\Events\\TicketDetailTable' => $baseDir . '/app/Events/TicketDetailTable.php', + 'App\\Events\\TimeLineFormEvent' => $baseDir . '/app/Events/TimeLineFormEvent.php', + 'App\\Events\\Timeline' => $baseDir . '/app/Events/Timeline.php', + 'App\\Events\\TopNavEvent' => $baseDir . '/app/Events/TopNavEvent.php', + 'App\\Exceptions\\Handler' => $baseDir . '/app/Exceptions/Handler.php', + 'App\\FaveoLog\\LaravelLogViewer' => $baseDir . '/app/FaveoLog/LaravelLogViewer.php', + 'App\\FaveoLog\\LaravelLogViewerServiceProvider' => $baseDir . '/app/FaveoLog/LaravelLogViewerServiceProvider.php', + 'App\\FaveoLog\\controllers\\LogViewerController' => $baseDir . '/app/FaveoLog/controllers/LogViewerController.php', + 'App\\Helper\\Finder' => $baseDir . '/app/Helper/Finder.php', + 'App\\Http\\Controllers\\Admin\\MailFetch' => $baseDir . '/app/Http/Controllers/Admin/MailFetch.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\AgentController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/AgentController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\BanlistController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/BanlistController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\CloseWrokflowController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/CloseWrokflowController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\DepartmentController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/DepartmentController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\EmailsController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/EmailsController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\EmailsControllerOld' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/EmailsControllerOld.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\ErrorAndDebuggingController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/ErrorAndDebuggingController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\FormController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/FormController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\GroupController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/GroupController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\HelptopicController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/HelptopicController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\HomeController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/HomeController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\LanguageController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/LanguageController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\PriorityController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/PriorityController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\ProfileController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/ProfileController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\SecurityController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/SecurityController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\SettingsController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/SettingsController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\SettingsController2' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/SettingsController2.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\SlaController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/SlaController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\SocialMedia\\SocialMediaController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/SocialMedia/SocialMediaController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\TeamController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/TeamController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\TemplateController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/TemplateController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\ThreadController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/ThreadController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\UrlSettingController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/UrlSettingController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\WorkflowController' => $baseDir . '/app/Http/Controllers/Admin/helpdesk/WorkflowController.php', + 'App\\Http\\Controllers\\Agent\\helpdesk\\CannedController' => $baseDir . '/app/Http/Controllers/Agent/helpdesk/CannedController.php', + 'App\\Http\\Controllers\\Agent\\helpdesk\\DashboardController' => $baseDir . '/app/Http/Controllers/Agent/helpdesk/DashboardController.php', + 'App\\Http\\Controllers\\Agent\\helpdesk\\DashboardController2' => $baseDir . '/app/Http/Controllers/Agent/helpdesk/DashboardController2.php', + 'App\\Http\\Controllers\\Agent\\helpdesk\\ImapMail' => $baseDir . '/app/Http/Controllers/Agent/helpdesk/ImapMail.php', + 'App\\Http\\Controllers\\Agent\\helpdesk\\MailController' => $baseDir . '/app/Http/Controllers/Agent/helpdesk/MailController.php', + 'App\\Http\\Controllers\\Agent\\helpdesk\\NotificationController' => $baseDir . '/app/Http/Controllers/Agent/helpdesk/NotificationController.php', + 'App\\Http\\Controllers\\Agent\\helpdesk\\OrganizationController' => $baseDir . '/app/Http/Controllers/Agent/helpdesk/OrganizationController.php', + 'App\\Http\\Controllers\\Agent\\helpdesk\\ReportController' => $baseDir . '/app/Http/Controllers/Agent/helpdesk/ReportController.php', + 'App\\Http\\Controllers\\Agent\\helpdesk\\Ticket2Controller' => $baseDir . '/app/Http/Controllers/Agent/helpdesk/Ticket2Controller.php', + 'App\\Http\\Controllers\\Agent\\helpdesk\\TicketController' => $baseDir . '/app/Http/Controllers/Agent/helpdesk/TicketController.php', + 'App\\Http\\Controllers\\Agent\\helpdesk\\TicketWorkflowController' => $baseDir . '/app/Http/Controllers/Agent/helpdesk/TicketWorkflowController.php', + 'App\\Http\\Controllers\\Agent\\helpdesk\\UserController' => $baseDir . '/app/Http/Controllers/Agent/helpdesk/UserController.php', + 'App\\Http\\Controllers\\Agent\\kb\\ArticleController' => $baseDir . '/app/Http/Controllers/Agent/kb/ArticleController.php', + 'App\\Http\\Controllers\\Agent\\kb\\CategoryController' => $baseDir . '/app/Http/Controllers/Agent/kb/CategoryController.php', + 'App\\Http\\Controllers\\Agent\\kb\\PageController' => $baseDir . '/app/Http/Controllers/Agent/kb/PageController.php', + 'App\\Http\\Controllers\\Agent\\kb\\SettingsController' => $baseDir . '/app/Http/Controllers/Agent/kb/SettingsController.php', + 'App\\Http\\Controllers\\Api\\v1\\ApiController' => $baseDir . '/app/Http/Controllers/Api/v1/ApiController.php', + 'App\\Http\\Controllers\\Api\\v1\\ApiExceptAuthController' => $baseDir . '/app/Http/Controllers/Api/v1/ApiExceptAuthController.php', + 'App\\Http\\Controllers\\Api\\v1\\InstallerApiController' => $baseDir . '/app/Http/Controllers/Api/v1/InstallerApiController.php', + 'App\\Http\\Controllers\\Api\\v1\\TestController' => $baseDir . '/app/Http/Controllers/Api/v1/TestController.php', + 'App\\Http\\Controllers\\Api\\v1\\TicketController' => $baseDir . '/app/Http/Controllers/Api/v1/TicketController.php', + 'App\\Http\\Controllers\\Api\\v1\\TokenAuthController' => $baseDir . '/app/Http/Controllers/Api/v1/TokenAuthController.php', + 'App\\Http\\Controllers\\Auth\\AuthController' => $baseDir . '/app/Http/Controllers/Auth/AuthController.php', + 'App\\Http\\Controllers\\Auth\\PasswordController' => $baseDir . '/app/Http/Controllers/Auth/PasswordController.php', + 'App\\Http\\Controllers\\Client\\helpdesk\\ClientTicketController' => $baseDir . '/app/Http/Controllers/Client/helpdesk/ClientTicketController.php', + 'App\\Http\\Controllers\\Client\\helpdesk\\FormController' => $baseDir . '/app/Http/Controllers/Client/helpdesk/FormController.php', + 'App\\Http\\Controllers\\Client\\helpdesk\\GuestController' => $baseDir . '/app/Http/Controllers/Client/helpdesk/GuestController.php', + 'App\\Http\\Controllers\\Client\\helpdesk\\UnAuthController' => $baseDir . '/app/Http/Controllers/Client/helpdesk/UnAuthController.php', + 'App\\Http\\Controllers\\Client\\helpdesk\\WelcomepageController' => $baseDir . '/app/Http/Controllers/Client/helpdesk/WelcomepageController.php', + 'App\\Http\\Controllers\\Client\\kb\\UserController' => $baseDir . '/app/Http/Controllers/Client/kb/UserController.php', + 'App\\Http\\Controllers\\Common\\ApiSettings' => $baseDir . '/app/Http/Controllers/Common/ApiSettings.php', + 'App\\Http\\Controllers\\Common\\ExcelController' => $baseDir . '/app/Http/Controllers/Common/ExcelController.php', + 'App\\Http\\Controllers\\Common\\FileuploadController' => $baseDir . '/app/Http/Controllers/Common/FileuploadController.php', + 'App\\Http\\Controllers\\Common\\NotificationController' => $baseDir . '/app/Http/Controllers/Common/NotificationController.php', + 'App\\Http\\Controllers\\Common\\PhpMailController' => $baseDir . '/app/Http/Controllers/Common/PhpMailController.php', + 'App\\Http\\Controllers\\Common\\SettingsController' => $baseDir . '/app/Http/Controllers/Common/SettingsController.php', + 'App\\Http\\Controllers\\Common\\Socialite' => $baseDir . '/app/Http/Controllers/Common/Socialite.php', + 'App\\Http\\Controllers\\Common\\TemplateController' => $baseDir . '/app/Http/Controllers/Common/TemplateController.php', + 'App\\Http\\Controllers\\Common\\TemplateSetController' => $baseDir . '/app/Http/Controllers/Common/TemplateSetController.php', + 'App\\Http\\Controllers\\Controller' => $baseDir . '/app/Http/Controllers/Controller.php', + 'App\\Http\\Controllers\\Error\\ErrorController' => $baseDir . '/app/Http/Controllers/Error/ErrorController.php', + 'App\\Http\\Controllers\\HomeController' => $baseDir . '/app/Http/Controllers/HomeController.php', + 'App\\Http\\Controllers\\Installer\\helpdesk\\InstallController' => $baseDir . '/app/Http/Controllers/Installer/helpdesk/InstallController.php', + 'App\\Http\\Controllers\\Job\\MailController' => $baseDir . '/app/Http/Controllers/Job/MailController.php', + 'App\\Http\\Controllers\\Job\\QueueController' => $baseDir . '/app/Http/Controllers/Job/QueueController.php', + 'App\\Http\\Controllers\\Update\\UpgradeController' => $baseDir . '/app/Http/Controllers/Update/UpgradeController.php', + 'App\\Http\\Controllers\\Utility\\LibraryController' => $baseDir . '/app/Http/Controllers/Utility/LibraryController.php', + 'App\\Http\\Kernel' => $baseDir . '/app/Http/Kernel.php', + 'App\\Http\\Middleware\\ApiKey' => $baseDir . '/app/Http/Middleware/ApiKey.php', + 'App\\Http\\Middleware\\Authenticate' => $baseDir . '/app/Http/Middleware/Authenticate.php', + 'App\\Http\\Middleware\\CheckBoard' => $baseDir . '/app/Http/Middleware/CheckBoard.php', + 'App\\Http\\Middleware\\CheckRole' => $baseDir . '/app/Http/Middleware/CheckRole.php', + 'App\\Http\\Middleware\\CheckRoleAgent' => $baseDir . '/app/Http/Middleware/CheckRoleAgent.php', + 'App\\Http\\Middleware\\CheckRoleUser' => $baseDir . '/app/Http/Middleware/CheckRoleUser.php', + 'App\\Http\\Middleware\\CheckUpdate' => $baseDir . '/app/Http/Middleware/CheckUpdate.php', + 'App\\Http\\Middleware\\EncryptCookies' => $baseDir . '/app/Http/Middleware/EncryptCookies.php', + 'App\\Http\\Middleware\\Install' => $baseDir . '/app/Http/Middleware/Install.php', + 'App\\Http\\Middleware\\LanguageMiddleware' => $baseDir . '/app/Http/Middleware/LanguageMiddleware.php', + 'App\\Http\\Middleware\\RedirectIfAuthenticated' => $baseDir . '/app/Http/Middleware/RedirectIfAuthenticated.php', + 'App\\Http\\Middleware\\VerifyCsrfToken' => $baseDir . '/app/Http/Middleware/VerifyCsrfToken.php', + 'App\\Http\\Requests\\Request' => $baseDir . '/app/Http/Requests/Request.php', + 'App\\Http\\Requests\\helpdesk\\AgentRequest' => $baseDir . '/app/Http/Requests/helpdesk/AgentRequest.php', + 'App\\Http\\Requests\\helpdesk\\AgentUpdate' => $baseDir . '/app/Http/Requests/helpdesk/AgentUpdate.php', + 'App\\Http\\Requests\\helpdesk\\ArticleRequest' => $baseDir . '/app/Http/Requests/helpdesk/ArticleRequest.php', + 'App\\Http\\Requests\\helpdesk\\BanRequest' => $baseDir . '/app/Http/Requests/helpdesk/BanRequest.php', + 'App\\Http\\Requests\\helpdesk\\BanlistRequest' => $baseDir . '/app/Http/Requests/helpdesk/BanlistRequest.php', + 'App\\Http\\Requests\\helpdesk\\CannedRequest' => $baseDir . '/app/Http/Requests/helpdesk/CannedRequest.php', + 'App\\Http\\Requests\\helpdesk\\CannedUpdateRequest' => $baseDir . '/app/Http/Requests/helpdesk/CannedUpdateRequest.php', + 'App\\Http\\Requests\\helpdesk\\ChangepasswordRequest' => $baseDir . '/app/Http/Requests/helpdesk/ChangepasswordRequest.php', + 'App\\Http\\Requests\\helpdesk\\CheckTicket' => $baseDir . '/app/Http/Requests/helpdesk/CheckTicket.php', + 'App\\Http\\Requests\\helpdesk\\ClientRequest' => $baseDir . '/app/Http/Requests/helpdesk/ClientRequest.php', + 'App\\Http\\Requests\\helpdesk\\CommentRequest' => $baseDir . '/app/Http/Requests/helpdesk/CommentRequest.php', + 'App\\Http\\Requests\\helpdesk\\CompanyRequest' => $baseDir . '/app/Http/Requests/helpdesk/CompanyRequest.php', + 'App\\Http\\Requests\\helpdesk\\ContactRequest' => $baseDir . '/app/Http/Requests/helpdesk/ContactRequest.php', + 'App\\Http\\Requests\\helpdesk\\CreateTicketRequest' => $baseDir . '/app/Http/Requests/helpdesk/CreateTicketRequest.php', + 'App\\Http\\Requests\\helpdesk\\DatabaseRequest' => $baseDir . '/app/Http/Requests/helpdesk/DatabaseRequest.php', + 'App\\Http\\Requests\\helpdesk\\DepartmentRequest' => $baseDir . '/app/Http/Requests/helpdesk/DepartmentRequest.php', + 'App\\Http\\Requests\\helpdesk\\DepartmentUpdate' => $baseDir . '/app/Http/Requests/helpdesk/DepartmentUpdate.php', + 'App\\Http\\Requests\\helpdesk\\DiagnoRequest' => $baseDir . '/app/Http/Requests/helpdesk/DiagnoRequest.php', + 'App\\Http\\Requests\\helpdesk\\DiagnosRequest' => $baseDir . '/app/Http/Requests/helpdesk/DiagnosRequest.php', + 'App\\Http\\Requests\\helpdesk\\EmailRequest' => $baseDir . '/app/Http/Requests/helpdesk/EmailRequest.php', + 'App\\Http\\Requests\\helpdesk\\EmailsEditRequest' => $baseDir . '/app/Http/Requests/helpdesk/EmailsEditRequest.php', + 'App\\Http\\Requests\\helpdesk\\EmailsRequest' => $baseDir . '/app/Http/Requests/helpdesk/EmailsRequest.php', + 'App\\Http\\Requests\\helpdesk\\FormRequest' => $baseDir . '/app/Http/Requests/helpdesk/FormRequest.php', + 'App\\Http\\Requests\\helpdesk\\GroupRequest' => $baseDir . '/app/Http/Requests/helpdesk/GroupRequest.php', + 'App\\Http\\Requests\\helpdesk\\GroupUpdateRequest' => $baseDir . '/app/Http/Requests/helpdesk/GroupUpdateRequest.php', + 'App\\Http\\Requests\\helpdesk\\HelptopicRequest' => $baseDir . '/app/Http/Requests/helpdesk/HelptopicRequest.php', + 'App\\Http\\Requests\\helpdesk\\HelptopicUpdate' => $baseDir . '/app/Http/Requests/helpdesk/HelptopicUpdate.php', + 'App\\Http\\Requests\\helpdesk\\InstallerRequest' => $baseDir . '/app/Http/Requests/helpdesk/InstallerRequest.php', + 'App\\Http\\Requests\\helpdesk\\Job\\TaskRequest' => $baseDir . '/app/Http/Requests/helpdesk/Job/TaskRequest.php', + 'App\\Http\\Requests\\helpdesk\\LoginRequest' => $baseDir . '/app/Http/Requests/helpdesk/LoginRequest.php', + 'App\\Http\\Requests\\helpdesk\\Mail\\MailRequest' => $baseDir . '/app/Http/Requests/helpdesk/Mail/MailRequest.php', + 'App\\Http\\Requests\\helpdesk\\MessageRequest' => $baseDir . '/app/Http/Requests/helpdesk/MessageRequest.php', + 'App\\Http\\Requests\\helpdesk\\OrganizationRequest' => $baseDir . '/app/Http/Requests/helpdesk/OrganizationRequest.php', + 'App\\Http\\Requests\\helpdesk\\OrganizationUpdate' => $baseDir . '/app/Http/Requests/helpdesk/OrganizationUpdate.php', + 'App\\Http\\Requests\\helpdesk\\OtpVerifyRequest' => $baseDir . '/app/Http/Requests/helpdesk/OtpVerifyRequest.php', + 'App\\Http\\Requests\\helpdesk\\PriorityRequest' => $baseDir . '/app/Http/Requests/helpdesk/PriorityRequest.php', + 'App\\Http\\Requests\\helpdesk\\ProfilePassword' => $baseDir . '/app/Http/Requests/helpdesk/ProfilePassword.php', + 'App\\Http\\Requests\\helpdesk\\ProfileRequest' => $baseDir . '/app/Http/Requests/helpdesk/ProfileRequest.php', + 'App\\Http\\Requests\\helpdesk\\Queue\\QueueRequest' => $baseDir . '/app/Http/Requests/helpdesk/Queue/QueueRequest.php', + 'App\\Http\\Requests\\helpdesk\\RatingRequest' => $baseDir . '/app/Http/Requests/helpdesk/RatingRequest.php', + 'App\\Http\\Requests\\helpdesk\\RatingUpdateRequest' => $baseDir . '/app/Http/Requests/helpdesk/RatingUpdateRequest.php', + 'App\\Http\\Requests\\helpdesk\\RegisterRequest' => $baseDir . '/app/Http/Requests/helpdesk/RegisterRequest.php', + 'App\\Http\\Requests\\helpdesk\\SecurityRequest' => $baseDir . '/app/Http/Requests/helpdesk/SecurityRequest.php', + 'App\\Http\\Requests\\helpdesk\\SlaRequest' => $baseDir . '/app/Http/Requests/helpdesk/SlaRequest.php', + 'App\\Http\\Requests\\helpdesk\\SlaUpdate' => $baseDir . '/app/Http/Requests/helpdesk/SlaUpdate.php', + 'App\\Http\\Requests\\helpdesk\\SmtpRequest' => $baseDir . '/app/Http/Requests/helpdesk/SmtpRequest.php', + 'App\\Http\\Requests\\helpdesk\\StatusRequest' => $baseDir . '/app/Http/Requests/helpdesk/StatusRequest.php', + 'App\\Http\\Requests\\helpdesk\\Sys_userRequest' => $baseDir . '/app/Http/Requests/helpdesk/Sys_userRequest.php', + 'App\\Http\\Requests\\helpdesk\\Sys_userUpdate' => $baseDir . '/app/Http/Requests/helpdesk/Sys_userUpdate.php', + 'App\\Http\\Requests\\helpdesk\\SystemRequest' => $baseDir . '/app/Http/Requests/helpdesk/SystemRequest.php', + 'App\\Http\\Requests\\helpdesk\\TeamRequest' => $baseDir . '/app/Http/Requests/helpdesk/TeamRequest.php', + 'App\\Http\\Requests\\helpdesk\\TeamUpdate' => $baseDir . '/app/Http/Requests/helpdesk/TeamUpdate.php', + 'App\\Http\\Requests\\helpdesk\\TemplateRequest' => $baseDir . '/app/Http/Requests/helpdesk/TemplateRequest.php', + 'App\\Http\\Requests\\helpdesk\\TemplateRequest2' => $baseDir . '/app/Http/Requests/helpdesk/TemplateRequest2.php', + 'App\\Http\\Requests\\helpdesk\\TemplateSetRequest' => $baseDir . '/app/Http/Requests/helpdesk/TemplateSetRequest.php', + 'App\\Http\\Requests\\helpdesk\\TemplateUdate' => $baseDir . '/app/Http/Requests/helpdesk/TemplateUdate.php', + 'App\\Http\\Requests\\helpdesk\\TemplateUdate2' => $baseDir . '/app/Http/Requests/helpdesk/TemplateUdate2.php', + 'App\\Http\\Requests\\helpdesk\\TicketEditRequest' => $baseDir . '/app/Http/Requests/helpdesk/TicketEditRequest.php', + 'App\\Http\\Requests\\helpdesk\\TicketForm' => $baseDir . '/app/Http/Requests/helpdesk/TicketForm.php', + 'App\\Http\\Requests\\helpdesk\\TicketRequest' => $baseDir . '/app/Http/Requests/helpdesk/TicketRequest.php', + 'App\\Http\\Requests\\helpdesk\\WorkflowCloseRequest' => $baseDir . '/app/Http/Requests/helpdesk/WorkflowCloseRequest.php', + 'App\\Http\\Requests\\helpdesk\\WorkflowCreateRequest' => $baseDir . '/app/Http/Requests/helpdesk/WorkflowCreateRequest.php', + 'App\\Http\\Requests\\helpdesk\\WorkflowUpdateRequest' => $baseDir . '/app/Http/Requests/helpdesk/WorkflowUpdateRequest.php', + 'App\\Http\\Requests\\kb\\ArticleRequest' => $baseDir . '/app/Http/Requests/kb/ArticleRequest.php', + 'App\\Http\\Requests\\kb\\ArticleUpdate' => $baseDir . '/app/Http/Requests/kb/ArticleUpdate.php', + 'App\\Http\\Requests\\kb\\CategoryRequest' => $baseDir . '/app/Http/Requests/kb/CategoryRequest.php', + 'App\\Http\\Requests\\kb\\CommentRequest' => $baseDir . '/app/Http/Requests/kb/CommentRequest.php', + 'App\\Http\\Requests\\kb\\ContactRequest' => $baseDir . '/app/Http/Requests/kb/ContactRequest.php', + 'App\\Http\\Requests\\kb\\FooterRequest' => $baseDir . '/app/Http/Requests/kb/FooterRequest.php', + 'App\\Http\\Requests\\kb\\InstallerRequest' => $baseDir . '/app/Http/Requests/kb/InstallerRequest.php', + 'App\\Http\\Requests\\kb\\PageRequest' => $baseDir . '/app/Http/Requests/kb/PageRequest.php', + 'App\\Http\\Requests\\kb\\ProfilePassword' => $baseDir . '/app/Http/Requests/kb/ProfilePassword.php', + 'App\\Http\\Requests\\kb\\ProfileRequest' => $baseDir . '/app/Http/Requests/kb/ProfileRequest.php', + 'App\\Http\\Requests\\kb\\SearchRequest' => $baseDir . '/app/Http/Requests/kb/SearchRequest.php', + 'App\\Http\\Requests\\kb\\SettingsRequests' => $baseDir . '/app/Http/Requests/kb/SettingsRequests.php', + 'App\\Http\\Requests\\kb\\SocialRequest' => $baseDir . '/app/Http/Requests/kb/SocialRequest.php', + 'App\\Jobs\\Job' => $baseDir . '/app/Jobs/Job.php', + 'App\\Jobs\\SendEmail' => $baseDir . '/app/Jobs/SendEmail.php', + 'App\\Model\\Api\\ApiSetting' => $baseDir . '/app/Model/Api/ApiSetting.php', + 'App\\Model\\Common\\Template' => $baseDir . '/app/Model/Common/Template.php', + 'App\\Model\\Common\\TemplateSet' => $baseDir . '/app/Model/Common/TemplateSet.php', + 'App\\Model\\Common\\TemplateType' => $baseDir . '/app/Model/Common/TemplateType.php', + 'App\\Model\\MailJob\\Condition' => $baseDir . '/app/Model/MailJob/Condition.php', + 'App\\Model\\MailJob\\FaveoMail' => $baseDir . '/app/Model/MailJob/FaveoMail.php', + 'App\\Model\\MailJob\\FaveoQueue' => $baseDir . '/app/Model/MailJob/FaveoQueue.php', + 'App\\Model\\MailJob\\MailService' => $baseDir . '/app/Model/MailJob/MailService.php', + 'App\\Model\\MailJob\\QueueService' => $baseDir . '/app/Model/MailJob/QueueService.php', + 'App\\Model\\Update\\BarNotification' => $baseDir . '/app/Model/Update/BarNotification.php', + 'App\\Model\\helpdesk\\Agent\\Agents' => $baseDir . '/app/Model/helpdesk/Agent/Agents.php', + 'App\\Model\\helpdesk\\Agent\\Assign_team_agent' => $baseDir . '/app/Model/helpdesk/Agent/Assign_team_agent.php', + 'App\\Model\\helpdesk\\Agent\\Department' => $baseDir . '/app/Model/helpdesk/Agent/Department.php', + 'App\\Model\\helpdesk\\Agent\\Group_assign_department' => $baseDir . '/app/Model/helpdesk/Agent/Group_assign_department.php', + 'App\\Model\\helpdesk\\Agent\\Groups' => $baseDir . '/app/Model/helpdesk/Agent/Groups.php', + 'App\\Model\\helpdesk\\Agent\\Teams' => $baseDir . '/app/Model/helpdesk/Agent/Teams.php', + 'App\\Model\\helpdesk\\Agent_panel\\Canned' => $baseDir . '/app/Model/helpdesk/Agent_panel/Canned.php', + 'App\\Model\\helpdesk\\Agent_panel\\Organization' => $baseDir . '/app/Model/helpdesk/Agent_panel/Organization.php', + 'App\\Model\\helpdesk\\Agent_panel\\User_org' => $baseDir . '/app/Model/helpdesk/Agent_panel/User_org.php', + 'App\\Model\\helpdesk\\Agent_panel\\User_org_head' => $baseDir . '/app/Model/helpdesk/Agent_panel/User_org_head.php', + 'App\\Model\\helpdesk\\Email\\Banlist' => $baseDir . '/app/Model/helpdesk/Email/Banlist.php', + 'App\\Model\\helpdesk\\Email\\Emails' => $baseDir . '/app/Model/helpdesk/Email/Emails.php', + 'App\\Model\\helpdesk\\Email\\Template' => $baseDir . '/app/Model/helpdesk/Email/Template.php', + 'App\\Model\\helpdesk\\Form\\FieldValue' => $baseDir . '/app/Model/helpdesk/Form/FieldValue.php', + 'App\\Model\\helpdesk\\Form\\Fields' => $baseDir . '/app/Model/helpdesk/Form/Fields.php', + 'App\\Model\\helpdesk\\Form\\Form_details' => $baseDir . '/app/Model/helpdesk/Form/Form_details.php', + 'App\\Model\\helpdesk\\Form\\Form_name' => $baseDir . '/app/Model/helpdesk/Form/Form_name.php', + 'App\\Model\\helpdesk\\Form\\Form_value' => $baseDir . '/app/Model/helpdesk/Form/Form_value.php', + 'App\\Model\\helpdesk\\Form\\Forms' => $baseDir . '/app/Model/helpdesk/Form/Forms.php', + 'App\\Model\\helpdesk\\Guest\\Guest_note' => $baseDir . '/app/Model/helpdesk/Guest/Guest_note.php', + 'App\\Model\\helpdesk\\Manage\\Forms' => $baseDir . '/app/Model/helpdesk/Manage/Forms.php', + 'App\\Model\\helpdesk\\Manage\\Help_topic' => $baseDir . '/app/Model/helpdesk/Manage/Help_topic.php', + 'App\\Model\\helpdesk\\Manage\\Sla_plan' => $baseDir . '/app/Model/helpdesk/Manage/Sla_plan.php', + 'App\\Model\\helpdesk\\Notification\\Notification' => $baseDir . '/app/Model/helpdesk/Notification/Notification.php', + 'App\\Model\\helpdesk\\Notification\\NotificationType' => $baseDir . '/app/Model/helpdesk/Notification/NotificationType.php', + 'App\\Model\\helpdesk\\Notification\\UserNotification' => $baseDir . '/app/Model/helpdesk/Notification/UserNotification.php', + 'App\\Model\\helpdesk\\Ratings\\Rating' => $baseDir . '/app/Model/helpdesk/Ratings/Rating.php', + 'App\\Model\\helpdesk\\Ratings\\RatingRef' => $baseDir . '/app/Model/helpdesk/Ratings/RatingRef.php', + 'App\\Model\\helpdesk\\Settings\\Access' => $baseDir . '/app/Model/helpdesk/Settings/Access.php', + 'App\\Model\\helpdesk\\Settings\\Alert' => $baseDir . '/app/Model/helpdesk/Settings/Alert.php', + 'App\\Model\\helpdesk\\Settings\\Approval' => $baseDir . '/app/Model/helpdesk/Settings/Approval.php', + 'App\\Model\\helpdesk\\Settings\\CommonSettings' => $baseDir . '/app/Model/helpdesk/Settings/CommonSettings.php', + 'App\\Model\\helpdesk\\Settings\\Company' => $baseDir . '/app/Model/helpdesk/Settings/Company.php', + 'App\\Model\\helpdesk\\Settings\\Email' => $baseDir . '/app/Model/helpdesk/Settings/Email.php', + 'App\\Model\\helpdesk\\Settings\\Followup' => $baseDir . '/app/Model/helpdesk/Settings/Followup.php', + 'App\\Model\\helpdesk\\Settings\\Plugin' => $baseDir . '/app/Model/helpdesk/Settings/Plugin.php', + 'App\\Model\\helpdesk\\Settings\\Responder' => $baseDir . '/app/Model/helpdesk/Settings/Responder.php', + 'App\\Model\\helpdesk\\Settings\\Security' => $baseDir . '/app/Model/helpdesk/Settings/Security.php', + 'App\\Model\\helpdesk\\Settings\\SocialMedia' => $baseDir . '/app/Model/helpdesk/Settings/SocialMedia.php', + 'App\\Model\\helpdesk\\Settings\\System' => $baseDir . '/app/Model/helpdesk/Settings/System.php', + 'App\\Model\\helpdesk\\Settings\\Ticket' => $baseDir . '/app/Model/helpdesk/Settings/Ticket.php', + 'App\\Model\\helpdesk\\Theme\\Footer' => $baseDir . '/app/Model/helpdesk/Theme/Footer.php', + 'App\\Model\\helpdesk\\Theme\\Footer2' => $baseDir . '/app/Model/helpdesk/Theme/Footer2.php', + 'App\\Model\\helpdesk\\Theme\\Footer3' => $baseDir . '/app/Model/helpdesk/Theme/Footer3.php', + 'App\\Model\\helpdesk\\Theme\\Footer4' => $baseDir . '/app/Model/helpdesk/Theme/Footer4.php', + 'App\\Model\\helpdesk\\Theme\\Widgets' => $baseDir . '/app/Model/helpdesk/Theme/Widgets.php', + 'App\\Model\\helpdesk\\Ticket\\TicketToken' => $baseDir . '/app/Model/helpdesk/Ticket/TicketToken.php', + 'App\\Model\\helpdesk\\Ticket\\Ticket_Collaborator' => $baseDir . '/app/Model/helpdesk/Ticket/Ticket_Collaborator.php', + 'App\\Model\\helpdesk\\Ticket\\Ticket_Form_Data' => $baseDir . '/app/Model/helpdesk/Ticket/Ticket_Form_Data.php', + 'App\\Model\\helpdesk\\Ticket\\Ticket_Priority' => $baseDir . '/app/Model/helpdesk/Ticket/Ticket_Priority.php', + 'App\\Model\\helpdesk\\Ticket\\Ticket_Status' => $baseDir . '/app/Model/helpdesk/Ticket/Ticket_Status.php', + 'App\\Model\\helpdesk\\Ticket\\Ticket_Thread' => $baseDir . '/app/Model/helpdesk/Ticket/Ticket_Thread.php', + 'App\\Model\\helpdesk\\Ticket\\Ticket_attachments' => $baseDir . '/app/Model/helpdesk/Ticket/Ticket_attachments.php', + 'App\\Model\\helpdesk\\Ticket\\Ticket_source' => $baseDir . '/app/Model/helpdesk/Ticket/Ticket_source.php', + 'App\\Model\\helpdesk\\Ticket\\Tickets' => $baseDir . '/app/Model/helpdesk/Ticket/Tickets.php', + 'App\\Model\\helpdesk\\Utility\\CountryCode' => $baseDir . '/app/Model/helpdesk/Utility/CountryCode.php', + 'App\\Model\\helpdesk\\Utility\\Date_format' => $baseDir . '/app/Model/helpdesk/Utility/Date_format.php', + 'App\\Model\\helpdesk\\Utility\\Date_time_format' => $baseDir . '/app/Model/helpdesk/Utility/Date_time_format.php', + 'App\\Model\\helpdesk\\Utility\\Email' => $baseDir . '/app/Model/helpdesk/Utility/Email.php', + 'App\\Model\\helpdesk\\Utility\\Form_type' => $baseDir . '/app/Model/helpdesk/Utility/Form_type.php', + 'App\\Model\\helpdesk\\Utility\\Form_visibility' => $baseDir . '/app/Model/helpdesk/Utility/Form_visibility.php', + 'App\\Model\\helpdesk\\Utility\\Languages' => $baseDir . '/app/Model/helpdesk/Utility/Languages.php', + 'App\\Model\\helpdesk\\Utility\\Limit_Login' => $baseDir . '/app/Model/helpdesk/Utility/Limit_Login.php', + 'App\\Model\\helpdesk\\Utility\\Log_notification' => $baseDir . '/app/Model/helpdesk/Utility/Log_notification.php', + 'App\\Model\\helpdesk\\Utility\\Logs' => $baseDir . '/app/Model/helpdesk/Utility/Logs.php', + 'App\\Model\\helpdesk\\Utility\\MailboxProtocol' => $baseDir . '/app/Model/helpdesk/Utility/MailboxProtocol.php', + 'App\\Model\\helpdesk\\Utility\\Otp' => $baseDir . '/app/Model/helpdesk/Utility/Otp.php', + 'App\\Model\\helpdesk\\Utility\\Priority' => $baseDir . '/app/Model/helpdesk/Utility/Priority.php', + 'App\\Model\\helpdesk\\Utility\\Ticket_thread' => $baseDir . '/app/Model/helpdesk/Utility/Ticket_thread.php', + 'App\\Model\\helpdesk\\Utility\\Time_format' => $baseDir . '/app/Model/helpdesk/Utility/Time_format.php', + 'App\\Model\\helpdesk\\Utility\\Timezones' => $baseDir . '/app/Model/helpdesk/Utility/Timezones.php', + 'App\\Model\\helpdesk\\Utility\\Version_Check' => $baseDir . '/app/Model/helpdesk/Utility/Version_Check.php', + 'App\\Model\\helpdesk\\Workflow\\WorkflowAction' => $baseDir . '/app/Model/helpdesk/Workflow/WorkflowAction.php', + 'App\\Model\\helpdesk\\Workflow\\WorkflowClose' => $baseDir . '/app/Model/helpdesk/Workflow/WorkflowClose.php', + 'App\\Model\\helpdesk\\Workflow\\WorkflowName' => $baseDir . '/app/Model/helpdesk/Workflow/WorkflowName.php', + 'App\\Model\\helpdesk\\Workflow\\WorkflowRules' => $baseDir . '/app/Model/helpdesk/Workflow/WorkflowRules.php', + 'App\\Model\\kb\\Article' => $baseDir . '/app/Model/kb/Article.php', + 'App\\Model\\kb\\Category' => $baseDir . '/app/Model/kb/Category.php', + 'App\\Model\\kb\\Comment' => $baseDir . '/app/Model/kb/Comment.php', + 'App\\Model\\kb\\Contact' => $baseDir . '/app/Model/kb/Contact.php', + 'App\\Model\\kb\\Country' => $baseDir . '/app/Model/kb/Country.php', + 'App\\Model\\kb\\DateFormat' => $baseDir . '/app/Model/kb/DateFormat.php', + 'App\\Model\\kb\\Faq' => $baseDir . '/app/Model/kb/Faq.php', + 'App\\Model\\kb\\Footer' => $baseDir . '/app/Model/kb/Footer.php', + 'App\\Model\\kb\\Footer2' => $baseDir . '/app/Model/kb/Footer2.php', + 'App\\Model\\kb\\Footer3' => $baseDir . '/app/Model/kb/Footer3.php', + 'App\\Model\\kb\\Footer4' => $baseDir . '/app/Model/kb/Footer4.php', + 'App\\Model\\kb\\Options' => $baseDir . '/app/Model/kb/Options.php', + 'App\\Model\\kb\\Page' => $baseDir . '/app/Model/kb/Page.php', + 'App\\Model\\kb\\Relationship' => $baseDir . '/app/Model/kb/Relationship.php', + 'App\\Model\\kb\\Settings' => $baseDir . '/app/Model/kb/Settings.php', + 'App\\Model\\kb\\Side1' => $baseDir . '/app/Model/kb/Side1.php', + 'App\\Model\\kb\\Side2' => $baseDir . '/app/Model/kb/Side2.php', + 'App\\Model\\kb\\Social' => $baseDir . '/app/Model/kb/Social.php', + 'App\\Model\\kb\\Timezone' => $baseDir . '/app/Model/kb/Timezone.php', + 'App\\Model\\kb\\Zone' => $baseDir . '/app/Model/kb/Zone.php', + 'App\\Plugins\\ServiceProvider' => $baseDir . '/app/Plugins/ServiceProvider.php', + 'App\\Providers\\AppServiceProvider' => $baseDir . '/app/Providers/AppServiceProvider.php', + 'App\\Providers\\AuthServiceProvider' => $baseDir . '/app/Providers/AuthServiceProvider.php', + 'App\\Providers\\ConfigServiceProvider' => $baseDir . '/app/Providers/ConfigServiceProvider.php', + 'App\\Providers\\EventServiceProvider' => $baseDir . '/app/Providers/EventServiceProvider.php', + 'App\\Providers\\RouteServiceProvider' => $baseDir . '/app/Providers/RouteServiceProvider.php', + 'App\\User' => $baseDir . '/app/User.php', + 'App\\UserAdditionalInfo' => $baseDir . '/app/UserAdditionalInfo.php', 'Attribute_Translator' => $vendorDir . '/dompdf/dompdf/include/attribute_translator.cls.php', + 'Aws\\Acm\\AcmClient' => $vendorDir . '/aws/aws-sdk-php/src/Acm/AcmClient.php', + 'Aws\\Acm\\Exception\\AcmException' => $vendorDir . '/aws/aws-sdk-php/src/Acm/Exception/AcmException.php', + 'Aws\\ApiGateway\\ApiGatewayClient' => $vendorDir . '/aws/aws-sdk-php/src/ApiGateway/ApiGatewayClient.php', + 'Aws\\ApiGateway\\Exception\\ApiGatewayException' => $vendorDir . '/aws/aws-sdk-php/src/ApiGateway/Exception/ApiGatewayException.php', + 'Aws\\Api\\AbstractModel' => $vendorDir . '/aws/aws-sdk-php/src/Api/AbstractModel.php', + 'Aws\\Api\\ApiProvider' => $vendorDir . '/aws/aws-sdk-php/src/Api/ApiProvider.php', + 'Aws\\Api\\DateTimeResult' => $vendorDir . '/aws/aws-sdk-php/src/Api/DateTimeResult.php', + 'Aws\\Api\\DocModel' => $vendorDir . '/aws/aws-sdk-php/src/Api/DocModel.php', + 'Aws\\Api\\ErrorParser\\JsonParserTrait' => $vendorDir . '/aws/aws-sdk-php/src/Api/ErrorParser/JsonParserTrait.php', + 'Aws\\Api\\ErrorParser\\JsonRpcErrorParser' => $vendorDir . '/aws/aws-sdk-php/src/Api/ErrorParser/JsonRpcErrorParser.php', + 'Aws\\Api\\ErrorParser\\RestJsonErrorParser' => $vendorDir . '/aws/aws-sdk-php/src/Api/ErrorParser/RestJsonErrorParser.php', + 'Aws\\Api\\ErrorParser\\XmlErrorParser' => $vendorDir . '/aws/aws-sdk-php/src/Api/ErrorParser/XmlErrorParser.php', + 'Aws\\Api\\ListShape' => $vendorDir . '/aws/aws-sdk-php/src/Api/ListShape.php', + 'Aws\\Api\\MapShape' => $vendorDir . '/aws/aws-sdk-php/src/Api/MapShape.php', + 'Aws\\Api\\Operation' => $vendorDir . '/aws/aws-sdk-php/src/Api/Operation.php', + 'Aws\\Api\\Parser\\AbstractParser' => $vendorDir . '/aws/aws-sdk-php/src/Api/Parser/AbstractParser.php', + 'Aws\\Api\\Parser\\AbstractRestParser' => $vendorDir . '/aws/aws-sdk-php/src/Api/Parser/AbstractRestParser.php', + 'Aws\\Api\\Parser\\Crc32ValidatingParser' => $vendorDir . '/aws/aws-sdk-php/src/Api/Parser/Crc32ValidatingParser.php', + 'Aws\\Api\\Parser\\Exception\\ParserException' => $vendorDir . '/aws/aws-sdk-php/src/Api/Parser/Exception/ParserException.php', + 'Aws\\Api\\Parser\\JsonParser' => $vendorDir . '/aws/aws-sdk-php/src/Api/Parser/JsonParser.php', + 'Aws\\Api\\Parser\\JsonRpcParser' => $vendorDir . '/aws/aws-sdk-php/src/Api/Parser/JsonRpcParser.php', + 'Aws\\Api\\Parser\\PayloadParserTrait' => $vendorDir . '/aws/aws-sdk-php/src/Api/Parser/PayloadParserTrait.php', + 'Aws\\Api\\Parser\\QueryParser' => $vendorDir . '/aws/aws-sdk-php/src/Api/Parser/QueryParser.php', + 'Aws\\Api\\Parser\\RestJsonParser' => $vendorDir . '/aws/aws-sdk-php/src/Api/Parser/RestJsonParser.php', + 'Aws\\Api\\Parser\\RestXmlParser' => $vendorDir . '/aws/aws-sdk-php/src/Api/Parser/RestXmlParser.php', + 'Aws\\Api\\Parser\\XmlParser' => $vendorDir . '/aws/aws-sdk-php/src/Api/Parser/XmlParser.php', + 'Aws\\Api\\Serializer\\Ec2ParamBuilder' => $vendorDir . '/aws/aws-sdk-php/src/Api/Serializer/Ec2ParamBuilder.php', + 'Aws\\Api\\Serializer\\JsonBody' => $vendorDir . '/aws/aws-sdk-php/src/Api/Serializer/JsonBody.php', + 'Aws\\Api\\Serializer\\JsonRpcSerializer' => $vendorDir . '/aws/aws-sdk-php/src/Api/Serializer/JsonRpcSerializer.php', + 'Aws\\Api\\Serializer\\QueryParamBuilder' => $vendorDir . '/aws/aws-sdk-php/src/Api/Serializer/QueryParamBuilder.php', + 'Aws\\Api\\Serializer\\QuerySerializer' => $vendorDir . '/aws/aws-sdk-php/src/Api/Serializer/QuerySerializer.php', + 'Aws\\Api\\Serializer\\RestJsonSerializer' => $vendorDir . '/aws/aws-sdk-php/src/Api/Serializer/RestJsonSerializer.php', + 'Aws\\Api\\Serializer\\RestSerializer' => $vendorDir . '/aws/aws-sdk-php/src/Api/Serializer/RestSerializer.php', + 'Aws\\Api\\Serializer\\RestXmlSerializer' => $vendorDir . '/aws/aws-sdk-php/src/Api/Serializer/RestXmlSerializer.php', + 'Aws\\Api\\Serializer\\XmlBody' => $vendorDir . '/aws/aws-sdk-php/src/Api/Serializer/XmlBody.php', + 'Aws\\Api\\Service' => $vendorDir . '/aws/aws-sdk-php/src/Api/Service.php', + 'Aws\\Api\\Shape' => $vendorDir . '/aws/aws-sdk-php/src/Api/Shape.php', + 'Aws\\Api\\ShapeMap' => $vendorDir . '/aws/aws-sdk-php/src/Api/ShapeMap.php', + 'Aws\\Api\\StructureShape' => $vendorDir . '/aws/aws-sdk-php/src/Api/StructureShape.php', + 'Aws\\Api\\TimestampShape' => $vendorDir . '/aws/aws-sdk-php/src/Api/TimestampShape.php', + 'Aws\\Api\\Validator' => $vendorDir . '/aws/aws-sdk-php/src/Api/Validator.php', + 'Aws\\ApplicationAutoScaling\\ApplicationAutoScalingClient' => $vendorDir . '/aws/aws-sdk-php/src/ApplicationAutoScaling/ApplicationAutoScalingClient.php', + 'Aws\\ApplicationAutoScaling\\Exception\\ApplicationAutoScalingException' => $vendorDir . '/aws/aws-sdk-php/src/ApplicationAutoScaling/Exception/ApplicationAutoScalingException.php', + 'Aws\\ApplicationDiscoveryService\\ApplicationDiscoveryServiceClient' => $vendorDir . '/aws/aws-sdk-php/src/ApplicationDiscoveryService/ApplicationDiscoveryServiceClient.php', + 'Aws\\ApplicationDiscoveryService\\Exception\\ApplicationDiscoveryServiceException' => $vendorDir . '/aws/aws-sdk-php/src/ApplicationDiscoveryService/Exception/ApplicationDiscoveryServiceException.php', + 'Aws\\AutoScaling\\AutoScalingClient' => $vendorDir . '/aws/aws-sdk-php/src/AutoScaling/AutoScalingClient.php', + 'Aws\\AutoScaling\\Exception\\AutoScalingException' => $vendorDir . '/aws/aws-sdk-php/src/AutoScaling/Exception/AutoScalingException.php', + 'Aws\\AwsClient' => $vendorDir . '/aws/aws-sdk-php/src/AwsClient.php', + 'Aws\\AwsClientInterface' => $vendorDir . '/aws/aws-sdk-php/src/AwsClientInterface.php', + 'Aws\\AwsClientTrait' => $vendorDir . '/aws/aws-sdk-php/src/AwsClientTrait.php', + 'Aws\\Budgets\\BudgetsClient' => $vendorDir . '/aws/aws-sdk-php/src/Budgets/BudgetsClient.php', + 'Aws\\Budgets\\Exception\\BudgetsException' => $vendorDir . '/aws/aws-sdk-php/src/Budgets/Exception/BudgetsException.php', + 'Aws\\CacheInterface' => $vendorDir . '/aws/aws-sdk-php/src/CacheInterface.php', + 'Aws\\ClientResolver' => $vendorDir . '/aws/aws-sdk-php/src/ClientResolver.php', + 'Aws\\CloudFormation\\CloudFormationClient' => $vendorDir . '/aws/aws-sdk-php/src/CloudFormation/CloudFormationClient.php', + 'Aws\\CloudFormation\\Exception\\CloudFormationException' => $vendorDir . '/aws/aws-sdk-php/src/CloudFormation/Exception/CloudFormationException.php', + 'Aws\\CloudFront\\CloudFrontClient' => $vendorDir . '/aws/aws-sdk-php/src/CloudFront/CloudFrontClient.php', + 'Aws\\CloudFront\\CookieSigner' => $vendorDir . '/aws/aws-sdk-php/src/CloudFront/CookieSigner.php', + 'Aws\\CloudFront\\Exception\\CloudFrontException' => $vendorDir . '/aws/aws-sdk-php/src/CloudFront/Exception/CloudFrontException.php', + 'Aws\\CloudFront\\Signer' => $vendorDir . '/aws/aws-sdk-php/src/CloudFront/Signer.php', + 'Aws\\CloudFront\\UrlSigner' => $vendorDir . '/aws/aws-sdk-php/src/CloudFront/UrlSigner.php', + 'Aws\\CloudHsm\\CloudHsmClient' => $vendorDir . '/aws/aws-sdk-php/src/CloudHsm/CloudHsmClient.php', + 'Aws\\CloudHsm\\Exception\\CloudHsmException' => $vendorDir . '/aws/aws-sdk-php/src/CloudHsm/Exception/CloudHsmException.php', + 'Aws\\CloudSearchDomain\\CloudSearchDomainClient' => $vendorDir . '/aws/aws-sdk-php/src/CloudSearchDomain/CloudSearchDomainClient.php', + 'Aws\\CloudSearchDomain\\Exception\\CloudSearchDomainException' => $vendorDir . '/aws/aws-sdk-php/src/CloudSearchDomain/Exception/CloudSearchDomainException.php', + 'Aws\\CloudSearch\\CloudSearchClient' => $vendorDir . '/aws/aws-sdk-php/src/CloudSearch/CloudSearchClient.php', + 'Aws\\CloudSearch\\Exception\\CloudSearchException' => $vendorDir . '/aws/aws-sdk-php/src/CloudSearch/Exception/CloudSearchException.php', + 'Aws\\CloudTrail\\CloudTrailClient' => $vendorDir . '/aws/aws-sdk-php/src/CloudTrail/CloudTrailClient.php', + 'Aws\\CloudTrail\\Exception\\CloudTrailException' => $vendorDir . '/aws/aws-sdk-php/src/CloudTrail/Exception/CloudTrailException.php', + 'Aws\\CloudTrail\\LogFileIterator' => $vendorDir . '/aws/aws-sdk-php/src/CloudTrail/LogFileIterator.php', + 'Aws\\CloudTrail\\LogFileReader' => $vendorDir . '/aws/aws-sdk-php/src/CloudTrail/LogFileReader.php', + 'Aws\\CloudTrail\\LogRecordIterator' => $vendorDir . '/aws/aws-sdk-php/src/CloudTrail/LogRecordIterator.php', + 'Aws\\CloudWatchEvents\\CloudWatchEventsClient' => $vendorDir . '/aws/aws-sdk-php/src/CloudWatchEvents/CloudWatchEventsClient.php', + 'Aws\\CloudWatchEvents\\Exception\\CloudWatchEventsException' => $vendorDir . '/aws/aws-sdk-php/src/CloudWatchEvents/Exception/CloudWatchEventsException.php', + 'Aws\\CloudWatchLogs\\CloudWatchLogsClient' => $vendorDir . '/aws/aws-sdk-php/src/CloudWatchLogs/CloudWatchLogsClient.php', + 'Aws\\CloudWatchLogs\\Exception\\CloudWatchLogsException' => $vendorDir . '/aws/aws-sdk-php/src/CloudWatchLogs/Exception/CloudWatchLogsException.php', + 'Aws\\CloudWatch\\CloudWatchClient' => $vendorDir . '/aws/aws-sdk-php/src/CloudWatch/CloudWatchClient.php', + 'Aws\\CloudWatch\\Exception\\CloudWatchException' => $vendorDir . '/aws/aws-sdk-php/src/CloudWatch/Exception/CloudWatchException.php', + 'Aws\\CodeCommit\\CodeCommitClient' => $vendorDir . '/aws/aws-sdk-php/src/CodeCommit/CodeCommitClient.php', + 'Aws\\CodeCommit\\Exception\\CodeCommitException' => $vendorDir . '/aws/aws-sdk-php/src/CodeCommit/Exception/CodeCommitException.php', + 'Aws\\CodeDeploy\\CodeDeployClient' => $vendorDir . '/aws/aws-sdk-php/src/CodeDeploy/CodeDeployClient.php', + 'Aws\\CodeDeploy\\Exception\\CodeDeployException' => $vendorDir . '/aws/aws-sdk-php/src/CodeDeploy/Exception/CodeDeployException.php', + 'Aws\\CodePipeline\\CodePipelineClient' => $vendorDir . '/aws/aws-sdk-php/src/CodePipeline/CodePipelineClient.php', + 'Aws\\CodePipeline\\Exception\\CodePipelineException' => $vendorDir . '/aws/aws-sdk-php/src/CodePipeline/Exception/CodePipelineException.php', + 'Aws\\CognitoIdentityProvider\\CognitoIdentityProviderClient' => $vendorDir . '/aws/aws-sdk-php/src/CognitoIdentityProvider/CognitoIdentityProviderClient.php', + 'Aws\\CognitoIdentityProvider\\Exception\\CognitoIdentityProviderException' => $vendorDir . '/aws/aws-sdk-php/src/CognitoIdentityProvider/Exception/CognitoIdentityProviderException.php', + 'Aws\\CognitoIdentity\\CognitoIdentityClient' => $vendorDir . '/aws/aws-sdk-php/src/CognitoIdentity/CognitoIdentityClient.php', + 'Aws\\CognitoIdentity\\CognitoIdentityProvider' => $vendorDir . '/aws/aws-sdk-php/src/CognitoIdentity/CognitoIdentityProvider.php', + 'Aws\\CognitoIdentity\\Exception\\CognitoIdentityException' => $vendorDir . '/aws/aws-sdk-php/src/CognitoIdentity/Exception/CognitoIdentityException.php', + 'Aws\\CognitoSync\\CognitoSyncClient' => $vendorDir . '/aws/aws-sdk-php/src/CognitoSync/CognitoSyncClient.php', + 'Aws\\CognitoSync\\Exception\\CognitoSyncException' => $vendorDir . '/aws/aws-sdk-php/src/CognitoSync/Exception/CognitoSyncException.php', + 'Aws\\Command' => $vendorDir . '/aws/aws-sdk-php/src/Command.php', + 'Aws\\CommandInterface' => $vendorDir . '/aws/aws-sdk-php/src/CommandInterface.php', + 'Aws\\CommandPool' => $vendorDir . '/aws/aws-sdk-php/src/CommandPool.php', + 'Aws\\ConfigService\\ConfigServiceClient' => $vendorDir . '/aws/aws-sdk-php/src/ConfigService/ConfigServiceClient.php', + 'Aws\\ConfigService\\Exception\\ConfigServiceException' => $vendorDir . '/aws/aws-sdk-php/src/ConfigService/Exception/ConfigServiceException.php', + 'Aws\\Credentials\\CredentialProvider' => $vendorDir . '/aws/aws-sdk-php/src/Credentials/CredentialProvider.php', + 'Aws\\Credentials\\Credentials' => $vendorDir . '/aws/aws-sdk-php/src/Credentials/Credentials.php', + 'Aws\\Credentials\\CredentialsInterface' => $vendorDir . '/aws/aws-sdk-php/src/Credentials/CredentialsInterface.php', + 'Aws\\Credentials\\EcsCredentialProvider' => $vendorDir . '/aws/aws-sdk-php/src/Credentials/EcsCredentialProvider.php', + 'Aws\\Credentials\\InstanceProfileProvider' => $vendorDir . '/aws/aws-sdk-php/src/Credentials/InstanceProfileProvider.php', + 'Aws\\DataPipeline\\DataPipelineClient' => $vendorDir . '/aws/aws-sdk-php/src/DataPipeline/DataPipelineClient.php', + 'Aws\\DataPipeline\\Exception\\DataPipelineException' => $vendorDir . '/aws/aws-sdk-php/src/DataPipeline/Exception/DataPipelineException.php', + 'Aws\\DatabaseMigrationService\\DatabaseMigrationServiceClient' => $vendorDir . '/aws/aws-sdk-php/src/DatabaseMigrationService/DatabaseMigrationServiceClient.php', + 'Aws\\DatabaseMigrationService\\Exception\\DatabaseMigrationServiceException' => $vendorDir . '/aws/aws-sdk-php/src/DatabaseMigrationService/Exception/DatabaseMigrationServiceException.php', + 'Aws\\DeviceFarm\\DeviceFarmClient' => $vendorDir . '/aws/aws-sdk-php/src/DeviceFarm/DeviceFarmClient.php', + 'Aws\\DeviceFarm\\Exception\\DeviceFarmException' => $vendorDir . '/aws/aws-sdk-php/src/DeviceFarm/Exception/DeviceFarmException.php', + 'Aws\\DirectConnect\\DirectConnectClient' => $vendorDir . '/aws/aws-sdk-php/src/DirectConnect/DirectConnectClient.php', + 'Aws\\DirectConnect\\Exception\\DirectConnectException' => $vendorDir . '/aws/aws-sdk-php/src/DirectConnect/Exception/DirectConnectException.php', + 'Aws\\DirectoryService\\DirectoryServiceClient' => $vendorDir . '/aws/aws-sdk-php/src/DirectoryService/DirectoryServiceClient.php', + 'Aws\\DirectoryService\\Exception\\DirectoryServiceException' => $vendorDir . '/aws/aws-sdk-php/src/DirectoryService/Exception/DirectoryServiceException.php', + 'Aws\\DoctrineCacheAdapter' => $vendorDir . '/aws/aws-sdk-php/src/DoctrineCacheAdapter.php', + 'Aws\\DynamoDbStreams\\DynamoDbStreamsClient' => $vendorDir . '/aws/aws-sdk-php/src/DynamoDbStreams/DynamoDbStreamsClient.php', + 'Aws\\DynamoDbStreams\\Exception\\DynamoDbStreamsException' => $vendorDir . '/aws/aws-sdk-php/src/DynamoDbStreams/Exception/DynamoDbStreamsException.php', + 'Aws\\DynamoDb\\BinaryValue' => $vendorDir . '/aws/aws-sdk-php/src/DynamoDb/BinaryValue.php', + 'Aws\\DynamoDb\\DynamoDbClient' => $vendorDir . '/aws/aws-sdk-php/src/DynamoDb/DynamoDbClient.php', + 'Aws\\DynamoDb\\Exception\\DynamoDbException' => $vendorDir . '/aws/aws-sdk-php/src/DynamoDb/Exception/DynamoDbException.php', + 'Aws\\DynamoDb\\LockingSessionConnection' => $vendorDir . '/aws/aws-sdk-php/src/DynamoDb/LockingSessionConnection.php', + 'Aws\\DynamoDb\\Marshaler' => $vendorDir . '/aws/aws-sdk-php/src/DynamoDb/Marshaler.php', + 'Aws\\DynamoDb\\NumberValue' => $vendorDir . '/aws/aws-sdk-php/src/DynamoDb/NumberValue.php', + 'Aws\\DynamoDb\\SessionConnectionInterface' => $vendorDir . '/aws/aws-sdk-php/src/DynamoDb/SessionConnectionInterface.php', + 'Aws\\DynamoDb\\SessionHandler' => $vendorDir . '/aws/aws-sdk-php/src/DynamoDb/SessionHandler.php', + 'Aws\\DynamoDb\\SetValue' => $vendorDir . '/aws/aws-sdk-php/src/DynamoDb/SetValue.php', + 'Aws\\DynamoDb\\StandardSessionConnection' => $vendorDir . '/aws/aws-sdk-php/src/DynamoDb/StandardSessionConnection.php', + 'Aws\\DynamoDb\\WriteRequestBatch' => $vendorDir . '/aws/aws-sdk-php/src/DynamoDb/WriteRequestBatch.php', + 'Aws\\Ec2\\CopySnapshotMiddleware' => $vendorDir . '/aws/aws-sdk-php/src/Ec2/CopySnapshotMiddleware.php', + 'Aws\\Ec2\\Ec2Client' => $vendorDir . '/aws/aws-sdk-php/src/Ec2/Ec2Client.php', + 'Aws\\Ec2\\Exception\\Ec2Exception' => $vendorDir . '/aws/aws-sdk-php/src/Ec2/Exception/Ec2Exception.php', + 'Aws\\Ecr\\EcrClient' => $vendorDir . '/aws/aws-sdk-php/src/Ecr/EcrClient.php', + 'Aws\\Ecr\\Exception\\EcrException' => $vendorDir . '/aws/aws-sdk-php/src/Ecr/Exception/EcrException.php', + 'Aws\\Ecs\\EcsClient' => $vendorDir . '/aws/aws-sdk-php/src/Ecs/EcsClient.php', + 'Aws\\Ecs\\Exception\\EcsException' => $vendorDir . '/aws/aws-sdk-php/src/Ecs/Exception/EcsException.php', + 'Aws\\Efs\\EfsClient' => $vendorDir . '/aws/aws-sdk-php/src/Efs/EfsClient.php', + 'Aws\\Efs\\Exception\\EfsException' => $vendorDir . '/aws/aws-sdk-php/src/Efs/Exception/EfsException.php', + 'Aws\\ElastiCache\\ElastiCacheClient' => $vendorDir . '/aws/aws-sdk-php/src/ElastiCache/ElastiCacheClient.php', + 'Aws\\ElastiCache\\Exception\\ElastiCacheException' => $vendorDir . '/aws/aws-sdk-php/src/ElastiCache/Exception/ElastiCacheException.php', + 'Aws\\ElasticBeanstalk\\ElasticBeanstalkClient' => $vendorDir . '/aws/aws-sdk-php/src/ElasticBeanstalk/ElasticBeanstalkClient.php', + 'Aws\\ElasticBeanstalk\\Exception\\ElasticBeanstalkException' => $vendorDir . '/aws/aws-sdk-php/src/ElasticBeanstalk/Exception/ElasticBeanstalkException.php', + 'Aws\\ElasticLoadBalancingV2\\ElasticLoadBalancingV2Client' => $vendorDir . '/aws/aws-sdk-php/src/ElasticLoadBalancingV2/ElasticLoadBalancingV2Client.php', + 'Aws\\ElasticLoadBalancingV2\\Exception\\ElasticLoadBalancingV2Exception' => $vendorDir . '/aws/aws-sdk-php/src/ElasticLoadBalancingV2/Exception/ElasticLoadBalancingV2Exception.php', + 'Aws\\ElasticLoadBalancing\\ElasticLoadBalancingClient' => $vendorDir . '/aws/aws-sdk-php/src/ElasticLoadBalancing/ElasticLoadBalancingClient.php', + 'Aws\\ElasticLoadBalancing\\Exception\\ElasticLoadBalancingException' => $vendorDir . '/aws/aws-sdk-php/src/ElasticLoadBalancing/Exception/ElasticLoadBalancingException.php', + 'Aws\\ElasticTranscoder\\ElasticTranscoderClient' => $vendorDir . '/aws/aws-sdk-php/src/ElasticTranscoder/ElasticTranscoderClient.php', + 'Aws\\ElasticTranscoder\\Exception\\ElasticTranscoderException' => $vendorDir . '/aws/aws-sdk-php/src/ElasticTranscoder/Exception/ElasticTranscoderException.php', + 'Aws\\ElasticsearchService\\ElasticsearchServiceClient' => $vendorDir . '/aws/aws-sdk-php/src/ElasticsearchService/ElasticsearchServiceClient.php', + 'Aws\\ElasticsearchService\\Exception\\ElasticsearchServiceException' => $vendorDir . '/aws/aws-sdk-php/src/ElasticsearchService/Exception/ElasticsearchServiceException.php', + 'Aws\\Emr\\EmrClient' => $vendorDir . '/aws/aws-sdk-php/src/Emr/EmrClient.php', + 'Aws\\Emr\\Exception\\EmrException' => $vendorDir . '/aws/aws-sdk-php/src/Emr/Exception/EmrException.php', + 'Aws\\Endpoint\\EndpointProvider' => $vendorDir . '/aws/aws-sdk-php/src/Endpoint/EndpointProvider.php', + 'Aws\\Endpoint\\Partition' => $vendorDir . '/aws/aws-sdk-php/src/Endpoint/Partition.php', + 'Aws\\Endpoint\\PartitionEndpointProvider' => $vendorDir . '/aws/aws-sdk-php/src/Endpoint/PartitionEndpointProvider.php', + 'Aws\\Endpoint\\PartitionInterface' => $vendorDir . '/aws/aws-sdk-php/src/Endpoint/PartitionInterface.php', + 'Aws\\Endpoint\\PatternEndpointProvider' => $vendorDir . '/aws/aws-sdk-php/src/Endpoint/PatternEndpointProvider.php', + 'Aws\\Exception\\AwsException' => $vendorDir . '/aws/aws-sdk-php/src/Exception/AwsException.php', + 'Aws\\Exception\\CouldNotCreateChecksumException' => $vendorDir . '/aws/aws-sdk-php/src/Exception/CouldNotCreateChecksumException.php', + 'Aws\\Exception\\CredentialsException' => $vendorDir . '/aws/aws-sdk-php/src/Exception/CredentialsException.php', + 'Aws\\Exception\\MultipartUploadException' => $vendorDir . '/aws/aws-sdk-php/src/Exception/MultipartUploadException.php', + 'Aws\\Exception\\UnresolvedApiException' => $vendorDir . '/aws/aws-sdk-php/src/Exception/UnresolvedApiException.php', + 'Aws\\Exception\\UnresolvedEndpointException' => $vendorDir . '/aws/aws-sdk-php/src/Exception/UnresolvedEndpointException.php', + 'Aws\\Exception\\UnresolvedSignatureException' => $vendorDir . '/aws/aws-sdk-php/src/Exception/UnresolvedSignatureException.php', + 'Aws\\Firehose\\Exception\\FirehoseException' => $vendorDir . '/aws/aws-sdk-php/src/Firehose/Exception/FirehoseException.php', + 'Aws\\Firehose\\FirehoseClient' => $vendorDir . '/aws/aws-sdk-php/src/Firehose/FirehoseClient.php', + 'Aws\\GameLift\\Exception\\GameLiftException' => $vendorDir . '/aws/aws-sdk-php/src/GameLift/Exception/GameLiftException.php', + 'Aws\\GameLift\\GameLiftClient' => $vendorDir . '/aws/aws-sdk-php/src/GameLift/GameLiftClient.php', + 'Aws\\Glacier\\Exception\\GlacierException' => $vendorDir . '/aws/aws-sdk-php/src/Glacier/Exception/GlacierException.php', + 'Aws\\Glacier\\GlacierClient' => $vendorDir . '/aws/aws-sdk-php/src/Glacier/GlacierClient.php', + 'Aws\\Glacier\\MultipartUploader' => $vendorDir . '/aws/aws-sdk-php/src/Glacier/MultipartUploader.php', + 'Aws\\Glacier\\TreeHash' => $vendorDir . '/aws/aws-sdk-php/src/Glacier/TreeHash.php', + 'Aws\\HandlerList' => $vendorDir . '/aws/aws-sdk-php/src/HandlerList.php', + 'Aws\\Handler\\GuzzleV5\\GuzzleHandler' => $vendorDir . '/aws/aws-sdk-php/src/Handler/GuzzleV5/GuzzleHandler.php', + 'Aws\\Handler\\GuzzleV5\\GuzzleStream' => $vendorDir . '/aws/aws-sdk-php/src/Handler/GuzzleV5/GuzzleStream.php', + 'Aws\\Handler\\GuzzleV5\\PsrStream' => $vendorDir . '/aws/aws-sdk-php/src/Handler/GuzzleV5/PsrStream.php', + 'Aws\\Handler\\GuzzleV6\\GuzzleHandler' => $vendorDir . '/aws/aws-sdk-php/src/Handler/GuzzleV6/GuzzleHandler.php', + 'Aws\\HasDataTrait' => $vendorDir . '/aws/aws-sdk-php/src/HasDataTrait.php', + 'Aws\\HashInterface' => $vendorDir . '/aws/aws-sdk-php/src/HashInterface.php', + 'Aws\\HashingStream' => $vendorDir . '/aws/aws-sdk-php/src/HashingStream.php', + 'Aws\\History' => $vendorDir . '/aws/aws-sdk-php/src/History.php', + 'Aws\\Iam\\Exception\\IamException' => $vendorDir . '/aws/aws-sdk-php/src/Iam/Exception/IamException.php', + 'Aws\\Iam\\IamClient' => $vendorDir . '/aws/aws-sdk-php/src/Iam/IamClient.php', + 'Aws\\ImportExport\\Exception\\ImportExportException' => $vendorDir . '/aws/aws-sdk-php/src/ImportExport/Exception/ImportExportException.php', + 'Aws\\ImportExport\\ImportExportClient' => $vendorDir . '/aws/aws-sdk-php/src/ImportExport/ImportExportClient.php', + 'Aws\\Inspector\\Exception\\InspectorException' => $vendorDir . '/aws/aws-sdk-php/src/Inspector/Exception/InspectorException.php', + 'Aws\\Inspector\\InspectorClient' => $vendorDir . '/aws/aws-sdk-php/src/Inspector/InspectorClient.php', + 'Aws\\IotDataPlane\\Exception\\IotDataPlaneException' => $vendorDir . '/aws/aws-sdk-php/src/IotDataPlane/Exception/IotDataPlaneException.php', + 'Aws\\IotDataPlane\\IotDataPlaneClient' => $vendorDir . '/aws/aws-sdk-php/src/IotDataPlane/IotDataPlaneClient.php', + 'Aws\\Iot\\Exception\\IotException' => $vendorDir . '/aws/aws-sdk-php/src/Iot/Exception/IotException.php', + 'Aws\\Iot\\IotClient' => $vendorDir . '/aws/aws-sdk-php/src/Iot/IotClient.php', + 'Aws\\JsonCompiler' => $vendorDir . '/aws/aws-sdk-php/src/JsonCompiler.php', + 'Aws\\KinesisAnalytics\\Exception\\KinesisAnalyticsException' => $vendorDir . '/aws/aws-sdk-php/src/KinesisAnalytics/Exception/KinesisAnalyticsException.php', + 'Aws\\KinesisAnalytics\\KinesisAnalyticsClient' => $vendorDir . '/aws/aws-sdk-php/src/KinesisAnalytics/KinesisAnalyticsClient.php', + 'Aws\\Kinesis\\Exception\\KinesisException' => $vendorDir . '/aws/aws-sdk-php/src/Kinesis/Exception/KinesisException.php', + 'Aws\\Kinesis\\KinesisClient' => $vendorDir . '/aws/aws-sdk-php/src/Kinesis/KinesisClient.php', + 'Aws\\Kms\\Exception\\KmsException' => $vendorDir . '/aws/aws-sdk-php/src/Kms/Exception/KmsException.php', + 'Aws\\Kms\\KmsClient' => $vendorDir . '/aws/aws-sdk-php/src/Kms/KmsClient.php', + 'Aws\\Lambda\\Exception\\LambdaException' => $vendorDir . '/aws/aws-sdk-php/src/Lambda/Exception/LambdaException.php', + 'Aws\\Lambda\\LambdaClient' => $vendorDir . '/aws/aws-sdk-php/src/Lambda/LambdaClient.php', + 'Aws\\LruArrayCache' => $vendorDir . '/aws/aws-sdk-php/src/LruArrayCache.php', + 'Aws\\MachineLearning\\Exception\\MachineLearningException' => $vendorDir . '/aws/aws-sdk-php/src/MachineLearning/Exception/MachineLearningException.php', + 'Aws\\MachineLearning\\MachineLearningClient' => $vendorDir . '/aws/aws-sdk-php/src/MachineLearning/MachineLearningClient.php', + 'Aws\\MarketplaceCommerceAnalytics\\Exception\\MarketplaceCommerceAnalyticsException' => $vendorDir . '/aws/aws-sdk-php/src/MarketplaceCommerceAnalytics/Exception/MarketplaceCommerceAnalyticsException.php', + 'Aws\\MarketplaceCommerceAnalytics\\MarketplaceCommerceAnalyticsClient' => $vendorDir . '/aws/aws-sdk-php/src/MarketplaceCommerceAnalytics/MarketplaceCommerceAnalyticsClient.php', + 'Aws\\MarketplaceMetering\\Exception\\MarketplaceMeteringException' => $vendorDir . '/aws/aws-sdk-php/src/MarketplaceMetering/Exception/MarketplaceMeteringException.php', + 'Aws\\MarketplaceMetering\\MarketplaceMeteringClient' => $vendorDir . '/aws/aws-sdk-php/src/MarketplaceMetering/MarketplaceMeteringClient.php', + 'Aws\\Middleware' => $vendorDir . '/aws/aws-sdk-php/src/Middleware.php', + 'Aws\\MockHandler' => $vendorDir . '/aws/aws-sdk-php/src/MockHandler.php', + 'Aws\\MultiRegionClient' => $vendorDir . '/aws/aws-sdk-php/src/MultiRegionClient.php', + 'Aws\\Multipart\\AbstractUploadManager' => $vendorDir . '/aws/aws-sdk-php/src/Multipart/AbstractUploadManager.php', + 'Aws\\Multipart\\AbstractUploader' => $vendorDir . '/aws/aws-sdk-php/src/Multipart/AbstractUploader.php', + 'Aws\\Multipart\\UploadState' => $vendorDir . '/aws/aws-sdk-php/src/Multipart/UploadState.php', + 'Aws\\OpsWorks\\Exception\\OpsWorksException' => $vendorDir . '/aws/aws-sdk-php/src/OpsWorks/Exception/OpsWorksException.php', + 'Aws\\OpsWorks\\OpsWorksClient' => $vendorDir . '/aws/aws-sdk-php/src/OpsWorks/OpsWorksClient.php', + 'Aws\\PhpHash' => $vendorDir . '/aws/aws-sdk-php/src/PhpHash.php', + 'Aws\\PsrCacheAdapter' => $vendorDir . '/aws/aws-sdk-php/src/PsrCacheAdapter.php', + 'Aws\\Rds\\Exception\\RdsException' => $vendorDir . '/aws/aws-sdk-php/src/Rds/Exception/RdsException.php', + 'Aws\\Rds\\RdsClient' => $vendorDir . '/aws/aws-sdk-php/src/Rds/RdsClient.php', + 'Aws\\Redshift\\Exception\\RedshiftException' => $vendorDir . '/aws/aws-sdk-php/src/Redshift/Exception/RedshiftException.php', + 'Aws\\Redshift\\RedshiftClient' => $vendorDir . '/aws/aws-sdk-php/src/Redshift/RedshiftClient.php', + 'Aws\\Result' => $vendorDir . '/aws/aws-sdk-php/src/Result.php', + 'Aws\\ResultInterface' => $vendorDir . '/aws/aws-sdk-php/src/ResultInterface.php', + 'Aws\\ResultPaginator' => $vendorDir . '/aws/aws-sdk-php/src/ResultPaginator.php', + 'Aws\\RetryMiddleware' => $vendorDir . '/aws/aws-sdk-php/src/RetryMiddleware.php', + 'Aws\\Route53Domains\\Exception\\Route53DomainsException' => $vendorDir . '/aws/aws-sdk-php/src/Route53Domains/Exception/Route53DomainsException.php', + 'Aws\\Route53Domains\\Route53DomainsClient' => $vendorDir . '/aws/aws-sdk-php/src/Route53Domains/Route53DomainsClient.php', + 'Aws\\Route53\\Exception\\Route53Exception' => $vendorDir . '/aws/aws-sdk-php/src/Route53/Exception/Route53Exception.php', + 'Aws\\Route53\\Route53Client' => $vendorDir . '/aws/aws-sdk-php/src/Route53/Route53Client.php', + 'Aws\\S3\\AmbiguousSuccessParser' => $vendorDir . '/aws/aws-sdk-php/src/S3/AmbiguousSuccessParser.php', + 'Aws\\S3\\ApplyChecksumMiddleware' => $vendorDir . '/aws/aws-sdk-php/src/S3/ApplyChecksumMiddleware.php', + 'Aws\\S3\\BatchDelete' => $vendorDir . '/aws/aws-sdk-php/src/S3/BatchDelete.php', + 'Aws\\S3\\BucketEndpointMiddleware' => $vendorDir . '/aws/aws-sdk-php/src/S3/BucketEndpointMiddleware.php', + 'Aws\\S3\\Exception\\DeleteMultipleObjectsException' => $vendorDir . '/aws/aws-sdk-php/src/S3/Exception/DeleteMultipleObjectsException.php', + 'Aws\\S3\\Exception\\PermanentRedirectException' => $vendorDir . '/aws/aws-sdk-php/src/S3/Exception/PermanentRedirectException.php', + 'Aws\\S3\\Exception\\S3Exception' => $vendorDir . '/aws/aws-sdk-php/src/S3/Exception/S3Exception.php', + 'Aws\\S3\\GetBucketLocationParser' => $vendorDir . '/aws/aws-sdk-php/src/S3/GetBucketLocationParser.php', + 'Aws\\S3\\MultipartCopy' => $vendorDir . '/aws/aws-sdk-php/src/S3/MultipartCopy.php', + 'Aws\\S3\\MultipartUploader' => $vendorDir . '/aws/aws-sdk-php/src/S3/MultipartUploader.php', + 'Aws\\S3\\MultipartUploadingTrait' => $vendorDir . '/aws/aws-sdk-php/src/S3/MultipartUploadingTrait.php', + 'Aws\\S3\\ObjectCopier' => $vendorDir . '/aws/aws-sdk-php/src/S3/ObjectCopier.php', + 'Aws\\S3\\ObjectUploader' => $vendorDir . '/aws/aws-sdk-php/src/S3/ObjectUploader.php', + 'Aws\\S3\\PermanentRedirectMiddleware' => $vendorDir . '/aws/aws-sdk-php/src/S3/PermanentRedirectMiddleware.php', + 'Aws\\S3\\PostObject' => $vendorDir . '/aws/aws-sdk-php/src/S3/PostObject.php', + 'Aws\\S3\\PostObjectV4' => $vendorDir . '/aws/aws-sdk-php/src/S3/PostObjectV4.php', + 'Aws\\S3\\PutObjectUrlMiddleware' => $vendorDir . '/aws/aws-sdk-php/src/S3/PutObjectUrlMiddleware.php', + 'Aws\\S3\\RetryableMalformedResponseParser' => $vendorDir . '/aws/aws-sdk-php/src/S3/RetryableMalformedResponseParser.php', + 'Aws\\S3\\S3Client' => $vendorDir . '/aws/aws-sdk-php/src/S3/S3Client.php', + 'Aws\\S3\\S3ClientInterface' => $vendorDir . '/aws/aws-sdk-php/src/S3/S3ClientInterface.php', + 'Aws\\S3\\S3ClientTrait' => $vendorDir . '/aws/aws-sdk-php/src/S3/S3ClientTrait.php', + 'Aws\\S3\\S3EndpointMiddleware' => $vendorDir . '/aws/aws-sdk-php/src/S3/S3EndpointMiddleware.php', + 'Aws\\S3\\S3MultiRegionClient' => $vendorDir . '/aws/aws-sdk-php/src/S3/S3MultiRegionClient.php', + 'Aws\\S3\\S3UriParser' => $vendorDir . '/aws/aws-sdk-php/src/S3/S3UriParser.php', + 'Aws\\S3\\SSECMiddleware' => $vendorDir . '/aws/aws-sdk-php/src/S3/SSECMiddleware.php', + 'Aws\\S3\\StreamWrapper' => $vendorDir . '/aws/aws-sdk-php/src/S3/StreamWrapper.php', + 'Aws\\S3\\Transfer' => $vendorDir . '/aws/aws-sdk-php/src/S3/Transfer.php', + 'Aws\\Sdk' => $vendorDir . '/aws/aws-sdk-php/src/Sdk.php', + 'Aws\\ServiceCatalog\\Exception\\ServiceCatalogException' => $vendorDir . '/aws/aws-sdk-php/src/ServiceCatalog/Exception/ServiceCatalogException.php', + 'Aws\\ServiceCatalog\\ServiceCatalogClient' => $vendorDir . '/aws/aws-sdk-php/src/ServiceCatalog/ServiceCatalogClient.php', + 'Aws\\Ses\\Exception\\SesException' => $vendorDir . '/aws/aws-sdk-php/src/Ses/Exception/SesException.php', + 'Aws\\Ses\\SesClient' => $vendorDir . '/aws/aws-sdk-php/src/Ses/SesClient.php', + 'Aws\\Signature\\AnonymousSignature' => $vendorDir . '/aws/aws-sdk-php/src/Signature/AnonymousSignature.php', + 'Aws\\Signature\\S3SignatureV4' => $vendorDir . '/aws/aws-sdk-php/src/Signature/S3SignatureV4.php', + 'Aws\\Signature\\SignatureInterface' => $vendorDir . '/aws/aws-sdk-php/src/Signature/SignatureInterface.php', + 'Aws\\Signature\\SignatureProvider' => $vendorDir . '/aws/aws-sdk-php/src/Signature/SignatureProvider.php', + 'Aws\\Signature\\SignatureTrait' => $vendorDir . '/aws/aws-sdk-php/src/Signature/SignatureTrait.php', + 'Aws\\Signature\\SignatureV4' => $vendorDir . '/aws/aws-sdk-php/src/Signature/SignatureV4.php', + 'Aws\\Sms\\Exception\\SmsException' => $vendorDir . '/aws/aws-sdk-php/src/Sms/Exception/SmsException.php', + 'Aws\\Sms\\SmsClient' => $vendorDir . '/aws/aws-sdk-php/src/Sms/SmsClient.php', + 'Aws\\SnowBall\\Exception\\SnowBallException' => $vendorDir . '/aws/aws-sdk-php/src/SnowBall/Exception/SnowBallException.php', + 'Aws\\SnowBall\\SnowBallClient' => $vendorDir . '/aws/aws-sdk-php/src/SnowBall/SnowBallClient.php', + 'Aws\\Sns\\Exception\\SnsException' => $vendorDir . '/aws/aws-sdk-php/src/Sns/Exception/SnsException.php', + 'Aws\\Sns\\SnsClient' => $vendorDir . '/aws/aws-sdk-php/src/Sns/SnsClient.php', + 'Aws\\Sqs\\Exception\\SqsException' => $vendorDir . '/aws/aws-sdk-php/src/Sqs/Exception/SqsException.php', + 'Aws\\Sqs\\SqsClient' => $vendorDir . '/aws/aws-sdk-php/src/Sqs/SqsClient.php', + 'Aws\\Ssm\\Exception\\SsmException' => $vendorDir . '/aws/aws-sdk-php/src/Ssm/Exception/SsmException.php', + 'Aws\\Ssm\\SsmClient' => $vendorDir . '/aws/aws-sdk-php/src/Ssm/SsmClient.php', + 'Aws\\StorageGateway\\Exception\\StorageGatewayException' => $vendorDir . '/aws/aws-sdk-php/src/StorageGateway/Exception/StorageGatewayException.php', + 'Aws\\StorageGateway\\StorageGatewayClient' => $vendorDir . '/aws/aws-sdk-php/src/StorageGateway/StorageGatewayClient.php', + 'Aws\\Sts\\Exception\\StsException' => $vendorDir . '/aws/aws-sdk-php/src/Sts/Exception/StsException.php', + 'Aws\\Sts\\StsClient' => $vendorDir . '/aws/aws-sdk-php/src/Sts/StsClient.php', + 'Aws\\Support\\Exception\\SupportException' => $vendorDir . '/aws/aws-sdk-php/src/Support/Exception/SupportException.php', + 'Aws\\Support\\SupportClient' => $vendorDir . '/aws/aws-sdk-php/src/Support/SupportClient.php', + 'Aws\\Swf\\Exception\\SwfException' => $vendorDir . '/aws/aws-sdk-php/src/Swf/Exception/SwfException.php', + 'Aws\\Swf\\SwfClient' => $vendorDir . '/aws/aws-sdk-php/src/Swf/SwfClient.php', + 'Aws\\TraceMiddleware' => $vendorDir . '/aws/aws-sdk-php/src/TraceMiddleware.php', + 'Aws\\Waf\\Exception\\WafException' => $vendorDir . '/aws/aws-sdk-php/src/Waf/Exception/WafException.php', + 'Aws\\Waf\\WafClient' => $vendorDir . '/aws/aws-sdk-php/src/Waf/WafClient.php', + 'Aws\\Waiter' => $vendorDir . '/aws/aws-sdk-php/src/Waiter.php', + 'Aws\\WorkSpaces\\Exception\\WorkSpacesException' => $vendorDir . '/aws/aws-sdk-php/src/WorkSpaces/Exception/WorkSpacesException.php', + 'Aws\\WorkSpaces\\WorkSpacesClient' => $vendorDir . '/aws/aws-sdk-php/src/WorkSpaces/WorkSpacesClient.php', + 'Aws\\WrappedHttpHandler' => $vendorDir . '/aws/aws-sdk-php/src/WrappedHttpHandler.php', + 'Barryvdh\\Debugbar\\Console\\ClearCommand' => $vendorDir . '/barryvdh/laravel-debugbar/src/Console/ClearCommand.php', + 'Barryvdh\\Debugbar\\Console\\PublishCommand' => $vendorDir . '/barryvdh/laravel-debugbar/src/Console/PublishCommand.php', + 'Barryvdh\\Debugbar\\Controllers\\AssetController' => $vendorDir . '/barryvdh/laravel-debugbar/src/Controllers/AssetController.php', + 'Barryvdh\\Debugbar\\Controllers\\BaseController' => $vendorDir . '/barryvdh/laravel-debugbar/src/Controllers/BaseController.php', + 'Barryvdh\\Debugbar\\Controllers\\OpenHandlerController' => $vendorDir . '/barryvdh/laravel-debugbar/src/Controllers/OpenHandlerController.php', + 'Barryvdh\\Debugbar\\DataCollector\\AuthCollector' => $vendorDir . '/barryvdh/laravel-debugbar/src/DataCollector/AuthCollector.php', + 'Barryvdh\\Debugbar\\DataCollector\\EventCollector' => $vendorDir . '/barryvdh/laravel-debugbar/src/DataCollector/EventCollector.php', + 'Barryvdh\\Debugbar\\DataCollector\\FilesCollector' => $vendorDir . '/barryvdh/laravel-debugbar/src/DataCollector/FilesCollector.php', + 'Barryvdh\\Debugbar\\DataCollector\\GateCollector' => $vendorDir . '/barryvdh/laravel-debugbar/src/DataCollector/GateCollector.php', + 'Barryvdh\\Debugbar\\DataCollector\\IlluminateRouteCollector' => $vendorDir . '/barryvdh/laravel-debugbar/src/DataCollector/IlluminateRouteCollector.php', + 'Barryvdh\\Debugbar\\DataCollector\\LaravelCollector' => $vendorDir . '/barryvdh/laravel-debugbar/src/DataCollector/LaravelCollector.php', + 'Barryvdh\\Debugbar\\DataCollector\\LogsCollector' => $vendorDir . '/barryvdh/laravel-debugbar/src/DataCollector/LogsCollector.php', + 'Barryvdh\\Debugbar\\DataCollector\\MultiAuthCollector' => $vendorDir . '/barryvdh/laravel-debugbar/src/DataCollector/MultiAuthCollector.php', + 'Barryvdh\\Debugbar\\DataCollector\\QueryCollector' => $vendorDir . '/barryvdh/laravel-debugbar/src/DataCollector/QueryCollector.php', + 'Barryvdh\\Debugbar\\DataCollector\\SessionCollector' => $vendorDir . '/barryvdh/laravel-debugbar/src/DataCollector/SessionCollector.php', + 'Barryvdh\\Debugbar\\DataCollector\\SymfonyRequestCollector' => $vendorDir . '/barryvdh/laravel-debugbar/src/DataCollector/SymfonyRequestCollector.php', + 'Barryvdh\\Debugbar\\DataCollector\\ViewCollector' => $vendorDir . '/barryvdh/laravel-debugbar/src/DataCollector/ViewCollector.php', + 'Barryvdh\\Debugbar\\Facade' => $vendorDir . '/barryvdh/laravel-debugbar/src/Facade.php', + 'Barryvdh\\Debugbar\\JavascriptRenderer' => $vendorDir . '/barryvdh/laravel-debugbar/src/JavascriptRenderer.php', + 'Barryvdh\\Debugbar\\LaravelDebugbar' => $vendorDir . '/barryvdh/laravel-debugbar/src/LaravelDebugbar.php', + 'Barryvdh\\Debugbar\\LumenServiceProvider' => $vendorDir . '/barryvdh/laravel-debugbar/src/LumenServiceProvider.php', + 'Barryvdh\\Debugbar\\Middleware\\Debugbar' => $vendorDir . '/barryvdh/laravel-debugbar/src/Middleware/Debugbar.php', + 'Barryvdh\\Debugbar\\ServiceProvider' => $vendorDir . '/barryvdh/laravel-debugbar/src/ServiceProvider.php', + 'Barryvdh\\Debugbar\\Storage\\FilesystemStorage' => $vendorDir . '/barryvdh/laravel-debugbar/src/Storage/FilesystemStorage.php', + 'Barryvdh\\Debugbar\\Support\\Clockwork\\ClockworkCollector' => $vendorDir . '/barryvdh/laravel-debugbar/src/Support/Clockwork/ClockworkCollector.php', + 'Barryvdh\\Debugbar\\Support\\Clockwork\\Converter' => $vendorDir . '/barryvdh/laravel-debugbar/src/Support/Clockwork/Converter.php', + 'Barryvdh\\Debugbar\\SymfonyHttpDriver' => $vendorDir . '/barryvdh/laravel-debugbar/src/SymfonyHttpDriver.php', + 'Barryvdh\\Debugbar\\Twig\\Extension\\Debug' => $vendorDir . '/barryvdh/laravel-debugbar/src/Twig/Extension/Debug.php', + 'Barryvdh\\Debugbar\\Twig\\Extension\\Dump' => $vendorDir . '/barryvdh/laravel-debugbar/src/Twig/Extension/Dump.php', + 'Barryvdh\\Debugbar\\Twig\\Extension\\Stopwatch' => $vendorDir . '/barryvdh/laravel-debugbar/src/Twig/Extension/Stopwatch.php', + 'Barryvdh\\Debugbar\\Twig\\Node\\StopwatchNode' => $vendorDir . '/barryvdh/laravel-debugbar/src/Twig/Node/StopwatchNode.php', + 'Barryvdh\\Debugbar\\Twig\\TokenParser\\StopwatchTokenParser' => $vendorDir . '/barryvdh/laravel-debugbar/src/Twig/TokenParser/StopwatchTokenParser.php', 'Block_Frame_Decorator' => $vendorDir . '/dompdf/dompdf/include/block_frame_decorator.cls.php', 'Block_Frame_Reflower' => $vendorDir . '/dompdf/dompdf/include/block_frame_reflower.cls.php', 'Block_Positioner' => $vendorDir . '/dompdf/dompdf/include/block_positioner.cls.php', 'Block_Renderer' => $vendorDir . '/dompdf/dompdf/include/block_renderer.cls.php', + 'Bugsnag\\BugsnagLaravel\\BugsnagExceptionHandler' => $vendorDir . '/bugsnag/bugsnag-laravel/src/Bugsnag/BugsnagLaravel/BugsnagExceptionHandler.php', + 'Bugsnag\\BugsnagLaravel\\BugsnagFacade' => $vendorDir . '/bugsnag/bugsnag-laravel/src/Bugsnag/BugsnagLaravel/BugsnagFacade.php', + 'Bugsnag\\BugsnagLaravel\\BugsnagLaravelServiceProvider' => $vendorDir . '/bugsnag/bugsnag-laravel/src/Bugsnag/BugsnagLaravel/BugsnagLaravelServiceProvider.php', + 'Bugsnag\\BugsnagLaravel\\BugsnagLumenServiceProvider' => $vendorDir . '/bugsnag/bugsnag-laravel/src/Bugsnag/BugsnagLaravel/BugsnagLumenServiceProvider.php', + 'Bugsnag_Client' => $vendorDir . '/bugsnag/bugsnag/src/Bugsnag/Client.php', + 'Bugsnag_Configuration' => $vendorDir . '/bugsnag/bugsnag/src/Bugsnag/Configuration.php', + 'Bugsnag_Diagnostics' => $vendorDir . '/bugsnag/bugsnag/src/Bugsnag/Diagnostics.php', + 'Bugsnag_Error' => $vendorDir . '/bugsnag/bugsnag/src/Bugsnag/Error.php', + 'Bugsnag_ErrorTypes' => $vendorDir . '/bugsnag/bugsnag/src/Bugsnag/ErrorTypes.php', + 'Bugsnag_Notification' => $vendorDir . '/bugsnag/bugsnag/src/Bugsnag/Notification.php', + 'Bugsnag_Request' => $vendorDir . '/bugsnag/bugsnag/src/Bugsnag/Request.php', + 'Bugsnag_Stacktrace' => $vendorDir . '/bugsnag/bugsnag/src/Bugsnag/Stacktrace.php', 'CPDF_Adapter' => $vendorDir . '/dompdf/dompdf/include/cpdf_adapter.cls.php', 'CSS_Color' => $vendorDir . '/dompdf/dompdf/include/css_color.cls.php', 'Cached_PDF_Decorator' => $vendorDir . '/dompdf/dompdf/include/cached_pdf_decorator.cls.php', 'Canvas' => $vendorDir . '/dompdf/dompdf/include/canvas.cls.php', 'Canvas_Factory' => $vendorDir . '/dompdf/dompdf/include/canvas_factory.cls.php', + 'Carbon\\Carbon' => $vendorDir . '/nesbot/carbon/src/Carbon/Carbon.php', + 'Carbon\\CarbonInterval' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonInterval.php', 'Cellmap' => $vendorDir . '/dompdf/dompdf/include/cellmap.cls.php', + 'Chumper\\Datatable\\Columns\\BaseColumn' => $vendorDir . '/chumper/datatable/src/Chumper/Datatable/Columns/BaseColumn.php', + 'Chumper\\Datatable\\Columns\\DateColumn' => $vendorDir . '/chumper/datatable/src/Chumper/Datatable/Columns/DateColumn.php', + 'Chumper\\Datatable\\Columns\\FunctionColumn' => $vendorDir . '/chumper/datatable/src/Chumper/Datatable/Columns/FunctionColumn.php', + 'Chumper\\Datatable\\Columns\\TextColumn' => $vendorDir . '/chumper/datatable/src/Chumper/Datatable/Columns/TextColumn.php', + 'Chumper\\Datatable\\Datatable' => $vendorDir . '/chumper/datatable/src/Chumper/Datatable/Datatable.php', + 'Chumper\\Datatable\\DatatableServiceProvider' => $vendorDir . '/chumper/datatable/src/Chumper/Datatable/DatatableServiceProvider.php', + 'Chumper\\Datatable\\Engines\\BaseEngine' => $vendorDir . '/chumper/datatable/src/Chumper/Datatable/Engines/BaseEngine.php', + 'Chumper\\Datatable\\Engines\\CollectionEngine' => $vendorDir . '/chumper/datatable/src/Chumper/Datatable/Engines/CollectionEngine.php', + 'Chumper\\Datatable\\Engines\\QueryEngine' => $vendorDir . '/chumper/datatable/src/Chumper/Datatable/Engines/QueryEngine.php', + 'Chumper\\Datatable\\Facades\\DatatableFacade' => $vendorDir . '/chumper/datatable/src/Chumper/Datatable/Facades/DatatableFacade.php', + 'Chumper\\Datatable\\Table' => $vendorDir . '/chumper/datatable/src/Chumper/Datatable/Table.php', + 'Chumper\\Zipper\\Facades\\Zipper' => $vendorDir . '/chumper/zipper/src/Chumper/Zipper/Facades/Zipper.php', + 'Chumper\\Zipper\\Repositories\\RepositoryInterface' => $vendorDir . '/chumper/zipper/src/Chumper/Zipper/Repositories/RepositoryInterface.php', + 'Chumper\\Zipper\\Repositories\\ZipRepository' => $vendorDir . '/chumper/zipper/src/Chumper/Zipper/Repositories/ZipRepository.php', + 'Chumper\\Zipper\\Zipper' => $vendorDir . '/chumper/zipper/src/Chumper/Zipper/Zipper.php', + 'Chumper\\Zipper\\ZipperServiceProvider' => $vendorDir . '/chumper/zipper/src/Chumper/Zipper/ZipperServiceProvider.php', + 'ClassPreloader\\ClassList' => $vendorDir . '/classpreloader/classpreloader/src/ClassList.php', + 'ClassPreloader\\ClassLoader' => $vendorDir . '/classpreloader/classpreloader/src/ClassLoader.php', + 'ClassPreloader\\ClassNode' => $vendorDir . '/classpreloader/classpreloader/src/ClassNode.php', + 'ClassPreloader\\ClassPreloader' => $vendorDir . '/classpreloader/classpreloader/src/ClassPreloader.php', + 'ClassPreloader\\Config' => $vendorDir . '/classpreloader/classpreloader/src/Config.php', + 'ClassPreloader\\Exceptions\\DirConstantException' => $vendorDir . '/classpreloader/classpreloader/src/Exceptions/DirConstantException.php', + 'ClassPreloader\\Exceptions\\FileConstantException' => $vendorDir . '/classpreloader/classpreloader/src/Exceptions/FileConstantException.php', + 'ClassPreloader\\Exceptions\\StrictTypesException' => $vendorDir . '/classpreloader/classpreloader/src/Exceptions/StrictTypesException.php', + 'ClassPreloader\\Exceptions\\VisitorExceptionInterface' => $vendorDir . '/classpreloader/classpreloader/src/Exceptions/VisitorExceptionInterface.php', + 'ClassPreloader\\Factory' => $vendorDir . '/classpreloader/classpreloader/src/Factory.php', + 'ClassPreloader\\Parser\\AbstractNodeVisitor' => $vendorDir . '/classpreloader/classpreloader/src/Parser/AbstractNodeVisitor.php', + 'ClassPreloader\\Parser\\DirVisitor' => $vendorDir . '/classpreloader/classpreloader/src/Parser/DirVisitor.php', + 'ClassPreloader\\Parser\\FileVisitor' => $vendorDir . '/classpreloader/classpreloader/src/Parser/FileVisitor.php', + 'ClassPreloader\\Parser\\NodeTraverser' => $vendorDir . '/classpreloader/classpreloader/src/Parser/NodeTraverser.php', + 'ClassPreloader\\Parser\\StrictTypesVisitor' => $vendorDir . '/classpreloader/classpreloader/src/Parser/StrictTypesVisitor.php', + 'Collective\\Bus\\BusServiceProvider' => $vendorDir . '/laravelcollective/bus/src/BusServiceProvider.php', + 'Collective\\Bus\\Dispatcher' => $vendorDir . '/laravelcollective/bus/src/Dispatcher.php', + 'Collective\\Bus\\HandlerResolver' => $vendorDir . '/laravelcollective/bus/src/HandlerResolver.php', + 'Collective\\Bus\\MarshalException' => $vendorDir . '/laravelcollective/bus/src/MarshalException.php', + 'Collective\\Bus\\Queueable' => $vendorDir . '/laravelcollective/bus/src/Queueable.php', 'CreateApiSettingsTable' => $baseDir . '/database/migrations/2016_05_11_105244_create_api_settings_table.php', 'CreateApprovalTable' => $baseDir . '/database/migrations/2016_08_31_223407_create_approval_table.php', 'CreateBanlistTable' => $baseDir . '/database/migrations/2016_02_16_140450_create_banlist_table.php', @@ -118,14 +790,121 @@ return array( 'CreateWorkflowCloseTable' => $baseDir . '/database/migrations/2016_05_19_055008_create_workflow_close_table.php', 'CreateWorkflowNameTable' => $baseDir . '/database/migrations/2016_04_18_115852_create_workflow_name_table.php', 'CreateWorkflowRuleTable' => $baseDir . '/database/migrations/2016_04_18_115900_create_workflow_rule_table.php', + 'Cron\\AbstractField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/AbstractField.php', + 'Cron\\CronExpression' => $vendorDir . '/mtdowling/cron-expression/src/Cron/CronExpression.php', + 'Cron\\DayOfMonthField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/DayOfMonthField.php', + 'Cron\\DayOfWeekField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/DayOfWeekField.php', + 'Cron\\FieldFactory' => $vendorDir . '/mtdowling/cron-expression/src/Cron/FieldFactory.php', + 'Cron\\FieldInterface' => $vendorDir . '/mtdowling/cron-expression/src/Cron/FieldInterface.php', + 'Cron\\HoursField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/HoursField.php', + 'Cron\\MinutesField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/MinutesField.php', + 'Cron\\MonthField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/MonthField.php', + 'Cron\\YearField' => $vendorDir . '/mtdowling/cron-expression/src/Cron/YearField.php', + 'Crypt_AES' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/AES.php', + 'Crypt_Base' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Base.php', + 'Crypt_Blowfish' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php', + 'Crypt_DES' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DES.php', + 'Crypt_Hash' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Hash.php', + 'Crypt_RC2' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RC2.php', + 'Crypt_RC4' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RC4.php', + 'Crypt_RSA' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RSA.php', + 'Crypt_Rijndael' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php', + 'Crypt_TripleDES' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php', + 'Crypt_Twofish' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php', 'DOMPDF' => $vendorDir . '/dompdf/dompdf/include/dompdf.cls.php', 'DOMPDF_Exception' => $vendorDir . '/dompdf/dompdf/include/dompdf_exception.cls.php', 'DOMPDF_Image_Exception' => $vendorDir . '/dompdf/dompdf/include/dompdf_image_exception.cls.php', 'DatabaseSeeder' => $baseDir . '/database/seeds/DatabaseSeeder.php', + 'DaveJamesMiller\\Breadcrumbs\\CurrentRoute' => $vendorDir . '/davejamesmiller/laravel-breadcrumbs/src/CurrentRoute.php', + 'DaveJamesMiller\\Breadcrumbs\\Exception' => $vendorDir . '/davejamesmiller/laravel-breadcrumbs/src/Exception.php', + 'DaveJamesMiller\\Breadcrumbs\\Facade' => $vendorDir . '/davejamesmiller/laravel-breadcrumbs/src/Facade.php', + 'DaveJamesMiller\\Breadcrumbs\\Generator' => $vendorDir . '/davejamesmiller/laravel-breadcrumbs/src/Generator.php', + 'DaveJamesMiller\\Breadcrumbs\\Manager' => $vendorDir . '/davejamesmiller/laravel-breadcrumbs/src/Manager.php', + 'DaveJamesMiller\\Breadcrumbs\\ServiceProvider' => $vendorDir . '/davejamesmiller/laravel-breadcrumbs/src/ServiceProvider.php', + 'DaveJamesMiller\\Breadcrumbs\\View' => $vendorDir . '/davejamesmiller/laravel-breadcrumbs/src/View.php', + 'Davibennun\\LaravelPushNotification\\App' => $vendorDir . '/davibennun/laravel-push-notification/src/Davibennun/LaravelPushNotification/App.php', + 'Davibennun\\LaravelPushNotification\\Facades\\PushNotification' => $vendorDir . '/davibennun/laravel-push-notification/src/Davibennun/LaravelPushNotification/Facades/PushNotification.php', + 'Davibennun\\LaravelPushNotification\\LaravelPushNotificationServiceProvider' => $vendorDir . '/davibennun/laravel-push-notification/src/Davibennun/LaravelPushNotification/LaravelPushNotificationServiceProvider.php', + 'Davibennun\\LaravelPushNotification\\PushNotification' => $vendorDir . '/davibennun/laravel-push-notification/src/Davibennun/LaravelPushNotification/PushNotification.php', + 'DebugBar\\Bridge\\CacheCacheCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Bridge/CacheCacheCollector.php', + 'DebugBar\\Bridge\\DoctrineCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Bridge/DoctrineCollector.php', + 'DebugBar\\Bridge\\MonologCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Bridge/MonologCollector.php', + 'DebugBar\\Bridge\\Propel2Collector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Bridge/Propel2Collector.php', + 'DebugBar\\Bridge\\PropelCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Bridge/PropelCollector.php', + 'DebugBar\\Bridge\\SlimCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Bridge/SlimCollector.php', + 'DebugBar\\Bridge\\SwiftMailer\\SwiftLogCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Bridge/SwiftMailer/SwiftLogCollector.php', + 'DebugBar\\Bridge\\SwiftMailer\\SwiftMailCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Bridge/SwiftMailer/SwiftMailCollector.php', + 'DebugBar\\Bridge\\Twig\\TraceableTwigEnvironment' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Bridge/Twig/TraceableTwigEnvironment.php', + 'DebugBar\\Bridge\\Twig\\TraceableTwigTemplate' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Bridge/Twig/TraceableTwigTemplate.php', + 'DebugBar\\Bridge\\Twig\\TwigCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Bridge/Twig/TwigCollector.php', + 'DebugBar\\DataCollector\\AggregatedCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/AggregatedCollector.php', + 'DebugBar\\DataCollector\\AssetProvider' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/AssetProvider.php', + 'DebugBar\\DataCollector\\ConfigCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/ConfigCollector.php', + 'DebugBar\\DataCollector\\DataCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/DataCollector.php', + 'DebugBar\\DataCollector\\DataCollectorInterface' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/DataCollectorInterface.php', + 'DebugBar\\DataCollector\\ExceptionsCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/ExceptionsCollector.php', + 'DebugBar\\DataCollector\\LocalizationCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/LocalizationCollector.php', + 'DebugBar\\DataCollector\\MemoryCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/MemoryCollector.php', + 'DebugBar\\DataCollector\\MessagesAggregateInterface' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/MessagesAggregateInterface.php', + 'DebugBar\\DataCollector\\MessagesCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/MessagesCollector.php', + 'DebugBar\\DataCollector\\PDO\\PDOCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/PDO/PDOCollector.php', + 'DebugBar\\DataCollector\\PDO\\TraceablePDO' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/PDO/TraceablePDO.php', + 'DebugBar\\DataCollector\\PDO\\TraceablePDOStatement' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/PDO/TraceablePDOStatement.php', + 'DebugBar\\DataCollector\\PDO\\TracedStatement' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/PDO/TracedStatement.php', + 'DebugBar\\DataCollector\\PhpInfoCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/PhpInfoCollector.php', + 'DebugBar\\DataCollector\\Renderable' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/Renderable.php', + 'DebugBar\\DataCollector\\RequestDataCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/RequestDataCollector.php', + 'DebugBar\\DataCollector\\TimeDataCollector' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataCollector/TimeDataCollector.php', + 'DebugBar\\DataFormatter\\DataFormatter' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataFormatter/DataFormatter.php', + 'DebugBar\\DataFormatter\\DataFormatterInterface' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DataFormatter/DataFormatterInterface.php', + 'DebugBar\\DebugBar' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DebugBar.php', + 'DebugBar\\DebugBarException' => $vendorDir . '/maximebf/debugbar/src/DebugBar/DebugBarException.php', + 'DebugBar\\HttpDriverInterface' => $vendorDir . '/maximebf/debugbar/src/DebugBar/HttpDriverInterface.php', + 'DebugBar\\JavascriptRenderer' => $vendorDir . '/maximebf/debugbar/src/DebugBar/JavascriptRenderer.php', + 'DebugBar\\OpenHandler' => $vendorDir . '/maximebf/debugbar/src/DebugBar/OpenHandler.php', + 'DebugBar\\PhpHttpDriver' => $vendorDir . '/maximebf/debugbar/src/DebugBar/PhpHttpDriver.php', + 'DebugBar\\RequestIdGenerator' => $vendorDir . '/maximebf/debugbar/src/DebugBar/RequestIdGenerator.php', + 'DebugBar\\RequestIdGeneratorInterface' => $vendorDir . '/maximebf/debugbar/src/DebugBar/RequestIdGeneratorInterface.php', + 'DebugBar\\StandardDebugBar' => $vendorDir . '/maximebf/debugbar/src/DebugBar/StandardDebugBar.php', + 'DebugBar\\Storage\\FileStorage' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Storage/FileStorage.php', + 'DebugBar\\Storage\\MemcachedStorage' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Storage/MemcachedStorage.php', + 'DebugBar\\Storage\\PdoStorage' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Storage/PdoStorage.php', + 'DebugBar\\Storage\\RedisStorage' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Storage/RedisStorage.php', + 'DebugBar\\Storage\\StorageInterface' => $vendorDir . '/maximebf/debugbar/src/DebugBar/Storage/StorageInterface.php', + 'Diff' => $vendorDir . '/phpspec/php-diff/lib/Diff.php', + 'Diff_Renderer_Abstract' => $vendorDir . '/phpspec/php-diff/lib/Diff/Renderer/Abstract.php', + 'Diff_Renderer_Html_Array' => $vendorDir . '/phpspec/php-diff/lib/Diff/Renderer/Html/Array.php', + 'Diff_Renderer_Html_Inline' => $vendorDir . '/phpspec/php-diff/lib/Diff/Renderer/Html/Inline.php', + 'Diff_Renderer_Html_SideBySide' => $vendorDir . '/phpspec/php-diff/lib/Diff/Renderer/Html/SideBySide.php', + 'Diff_Renderer_Text_Context' => $vendorDir . '/phpspec/php-diff/lib/Diff/Renderer/Text/Context.php', + 'Diff_Renderer_Text_Unified' => $vendorDir . '/phpspec/php-diff/lib/Diff/Renderer/Text/Unified.php', + 'Diff_SequenceMatcher' => $vendorDir . '/phpspec/php-diff/lib/Diff/SequenceMatcher.php', + 'Doctrine\\Common\\Inflector\\Inflector' => $vendorDir . '/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php', + 'Doctrine\\Instantiator\\Exception\\ExceptionInterface' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php', + 'Doctrine\\Instantiator\\Exception\\InvalidArgumentException' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php', + 'Doctrine\\Instantiator\\Exception\\UnexpectedValueException' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php', + 'Doctrine\\Instantiator\\Instantiator' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php', + 'Doctrine\\Instantiator\\InstantiatorInterface' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php', + 'Dotenv\\Dotenv' => $vendorDir . '/vlucas/phpdotenv/src/Dotenv.php', + 'Dotenv\\Exception\\ExceptionInterface' => $vendorDir . '/vlucas/phpdotenv/src/Exception/ExceptionInterface.php', + 'Dotenv\\Exception\\InvalidCallbackException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidCallbackException.php', + 'Dotenv\\Exception\\InvalidFileException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidFileException.php', + 'Dotenv\\Exception\\InvalidPathException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidPathException.php', + 'Dotenv\\Exception\\ValidationException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/ValidationException.php', + 'Dotenv\\Loader' => $vendorDir . '/vlucas/phpdotenv/src/Loader.php', + 'Dotenv\\Validator' => $vendorDir . '/vlucas/phpdotenv/src/Validator.php', + 'EasyPeasyICS' => $vendorDir . '/phpmailer/phpmailer/extras/EasyPeasyICS.php', 'Encoding_Map' => $vendorDir . '/phenx/php-font-lib/classes/Encoding_Map.php', + 'Fetch\\Attachment' => $vendorDir . '/tedivm/fetch/src/Fetch/Attachment.php', + 'Fetch\\Message' => $vendorDir . '/tedivm/fetch/src/Fetch/Message.php', + 'Fetch\\Server' => $vendorDir . '/tedivm/fetch/src/Fetch/Server.php', + 'File_ANSI' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ANSI.php', + 'File_ASN1' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1.php', + 'File_ASN1_Element' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1.php', 'File_Iterator' => $vendorDir . '/phpunit/php-file-iterator/src/Iterator.php', 'File_Iterator_Facade' => $vendorDir . '/phpunit/php-file-iterator/src/Facade.php', 'File_Iterator_Factory' => $vendorDir . '/phpunit/php-file-iterator/src/Factory.php', + 'File_X509' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/X509.php', 'Fixed_Positioner' => $vendorDir . '/dompdf/dompdf/include/fixed_positioner.cls.php', 'Font' => $vendorDir . '/phenx/php-font-lib/classes/Font.php', 'Font_Binary_Stream' => $vendorDir . '/phenx/php-font-lib/classes/Font_Binary_Stream.php', @@ -160,6 +939,7 @@ return array( 'Font_WOFF' => $vendorDir . '/phenx/php-font-lib/classes/Font_WOFF.php', 'Font_WOFF_Header' => $vendorDir . '/phenx/php-font-lib/classes/Font_WOFF_Header.php', 'Font_WOFF_Table_Directory_Entry' => $vendorDir . '/phenx/php-font-lib/classes/Font_WOFF_Table_Directory_Entry.php', + 'ForceUTF8\\Encoding' => $vendorDir . '/neitanod/forceutf8/src/ForceUTF8/Encoding.php', 'Frame' => $vendorDir . '/dompdf/dompdf/include/frame.cls.php', 'FrameList' => $vendorDir . '/dompdf/dompdf/include/frame.cls.php', 'FrameListIterator' => $vendorDir . '/dompdf/dompdf/include/frame.cls.php', @@ -170,7 +950,1047 @@ return array( 'Frame_Reflower' => $vendorDir . '/dompdf/dompdf/include/frame_reflower.cls.php', 'Frame_Tree' => $vendorDir . '/dompdf/dompdf/include/frame_tree.cls.php', 'GD_Adapter' => $vendorDir . '/dompdf/dompdf/include/gd_adapter.cls.php', + 'Giggsey\\Locale\\Locale' => $vendorDir . '/giggsey/locale/src/Locale.php', + 'GuzzleHttp\\Client' => $vendorDir . '/guzzlehttp/guzzle/src/Client.php', + 'GuzzleHttp\\ClientInterface' => $vendorDir . '/guzzlehttp/guzzle/src/ClientInterface.php', + 'GuzzleHttp\\Cookie\\CookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php', + 'GuzzleHttp\\Cookie\\CookieJarInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php', + 'GuzzleHttp\\Cookie\\FileCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php', + 'GuzzleHttp\\Cookie\\SessionCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php', + 'GuzzleHttp\\Cookie\\SetCookie' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php', + 'GuzzleHttp\\Exception\\BadResponseException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php', + 'GuzzleHttp\\Exception\\ClientException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ClientException.php', + 'GuzzleHttp\\Exception\\ConnectException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ConnectException.php', + 'GuzzleHttp\\Exception\\GuzzleException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php', + 'GuzzleHttp\\Exception\\RequestException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/RequestException.php', + 'GuzzleHttp\\Exception\\SeekException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/SeekException.php', + 'GuzzleHttp\\Exception\\ServerException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ServerException.php', + 'GuzzleHttp\\Exception\\TooManyRedirectsException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php', + 'GuzzleHttp\\Exception\\TransferException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TransferException.php', + 'GuzzleHttp\\HandlerStack' => $vendorDir . '/guzzlehttp/guzzle/src/HandlerStack.php', + 'GuzzleHttp\\Handler\\CurlFactory' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php', + 'GuzzleHttp\\Handler\\CurlFactoryInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php', + 'GuzzleHttp\\Handler\\CurlHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php', + 'GuzzleHttp\\Handler\\CurlMultiHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php', + 'GuzzleHttp\\Handler\\EasyHandle' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php', + 'GuzzleHttp\\Handler\\MockHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/MockHandler.php', + 'GuzzleHttp\\Handler\\Proxy' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/Proxy.php', + 'GuzzleHttp\\Handler\\StreamHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php', + 'GuzzleHttp\\MessageFormatter' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatter.php', + 'GuzzleHttp\\Middleware' => $vendorDir . '/guzzlehttp/guzzle/src/Middleware.php', + 'GuzzleHttp\\Pool' => $vendorDir . '/guzzlehttp/guzzle/src/Pool.php', + 'GuzzleHttp\\PrepareBodyMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php', + 'GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/guzzlehttp/promises/src/AggregateException.php', + 'GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/guzzlehttp/promises/src/CancellationException.php', + 'GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/guzzlehttp/promises/src/EachPromise.php', + 'GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/guzzlehttp/promises/src/FulfilledPromise.php', + 'GuzzleHttp\\Promise\\Promise' => $vendorDir . '/guzzlehttp/promises/src/Promise.php', + 'GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/guzzlehttp/promises/src/PromiseInterface.php', + 'GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/guzzlehttp/promises/src/PromisorInterface.php', + 'GuzzleHttp\\Promise\\RejectedPromise' => $vendorDir . '/guzzlehttp/promises/src/RejectedPromise.php', + 'GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/guzzlehttp/promises/src/RejectionException.php', + 'GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/guzzlehttp/promises/src/TaskQueue.php', + 'GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/guzzlehttp/psr7/src/AppendStream.php', + 'GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/guzzlehttp/psr7/src/BufferStream.php', + 'GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/guzzlehttp/psr7/src/CachingStream.php', + 'GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/guzzlehttp/psr7/src/DroppingStream.php', + 'GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/guzzlehttp/psr7/src/FnStream.php', + 'GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/guzzlehttp/psr7/src/InflateStream.php', + 'GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/guzzlehttp/psr7/src/LazyOpenStream.php', + 'GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/guzzlehttp/psr7/src/LimitStream.php', + 'GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/guzzlehttp/psr7/src/MessageTrait.php', + 'GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/guzzlehttp/psr7/src/MultipartStream.php', + 'GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/guzzlehttp/psr7/src/NoSeekStream.php', + 'GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/guzzlehttp/psr7/src/PumpStream.php', + 'GuzzleHttp\\Psr7\\Request' => $vendorDir . '/guzzlehttp/psr7/src/Request.php', + 'GuzzleHttp\\Psr7\\Response' => $vendorDir . '/guzzlehttp/psr7/src/Response.php', + 'GuzzleHttp\\Psr7\\ServerRequest' => $vendorDir . '/guzzlehttp/psr7/src/ServerRequest.php', + 'GuzzleHttp\\Psr7\\Stream' => $vendorDir . '/guzzlehttp/psr7/src/Stream.php', + 'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => $vendorDir . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php', + 'GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/guzzlehttp/psr7/src/StreamWrapper.php', + 'GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/guzzlehttp/psr7/src/UploadedFile.php', + 'GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php', + 'GuzzleHttp\\RedirectMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RedirectMiddleware.php', + 'GuzzleHttp\\RequestOptions' => $vendorDir . '/guzzlehttp/guzzle/src/RequestOptions.php', + 'GuzzleHttp\\RetryMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RetryMiddleware.php', + 'GuzzleHttp\\TransferStats' => $vendorDir . '/guzzlehttp/guzzle/src/TransferStats.php', + 'GuzzleHttp\\UriTemplate' => $vendorDir . '/guzzlehttp/guzzle/src/UriTemplate.php', + 'Guzzle\\Batch\\AbstractBatchDecorator' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/AbstractBatchDecorator.php', + 'Guzzle\\Batch\\Batch' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/Batch.php', + 'Guzzle\\Batch\\BatchBuilder' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/BatchBuilder.php', + 'Guzzle\\Batch\\BatchClosureDivisor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/BatchClosureDivisor.php', + 'Guzzle\\Batch\\BatchClosureTransfer' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/BatchClosureTransfer.php', + 'Guzzle\\Batch\\BatchCommandTransfer' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/BatchCommandTransfer.php', + 'Guzzle\\Batch\\BatchDivisorInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php', + 'Guzzle\\Batch\\BatchInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php', + 'Guzzle\\Batch\\BatchRequestTransfer' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/BatchRequestTransfer.php', + 'Guzzle\\Batch\\BatchSizeDivisor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/BatchSizeDivisor.php', + 'Guzzle\\Batch\\BatchTransferInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php', + 'Guzzle\\Batch\\ExceptionBufferingBatch' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/ExceptionBufferingBatch.php', + 'Guzzle\\Batch\\Exception\\BatchTransferException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/Exception/BatchTransferException.php', + 'Guzzle\\Batch\\FlushingBatch' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/FlushingBatch.php', + 'Guzzle\\Batch\\HistoryBatch' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/HistoryBatch.php', + 'Guzzle\\Batch\\NotifyingBatch' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Batch/NotifyingBatch.php', + 'Guzzle\\Cache\\AbstractCacheAdapter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Cache/AbstractCacheAdapter.php', + 'Guzzle\\Cache\\CacheAdapterFactory' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterFactory.php', + 'Guzzle\\Cache\\CacheAdapterInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterInterface.php', + 'Guzzle\\Cache\\ClosureCacheAdapter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Cache/ClosureCacheAdapter.php', + 'Guzzle\\Cache\\DoctrineCacheAdapter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Cache/DoctrineCacheAdapter.php', + 'Guzzle\\Cache\\NullCacheAdapter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Cache/NullCacheAdapter.php', + 'Guzzle\\Cache\\Zf1CacheAdapter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php', + 'Guzzle\\Cache\\Zf2CacheAdapter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Cache/Zf2CacheAdapter.php', + 'Guzzle\\Common\\AbstractHasDispatcher' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Common/AbstractHasDispatcher.php', + 'Guzzle\\Common\\Collection' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Common/Collection.php', + 'Guzzle\\Common\\Event' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Common/Event.php', + 'Guzzle\\Common\\Exception\\BadMethodCallException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Common/Exception/BadMethodCallException.php', + 'Guzzle\\Common\\Exception\\ExceptionCollection' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Common/Exception/ExceptionCollection.php', + 'Guzzle\\Common\\Exception\\GuzzleException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Common/Exception/GuzzleException.php', + 'Guzzle\\Common\\Exception\\InvalidArgumentException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php', + 'Guzzle\\Common\\Exception\\RuntimeException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php', + 'Guzzle\\Common\\Exception\\UnexpectedValueException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Common/Exception/UnexpectedValueException.php', + 'Guzzle\\Common\\FromConfigInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Common/FromConfigInterface.php', + 'Guzzle\\Common\\HasDispatcherInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Common/HasDispatcherInterface.php', + 'Guzzle\\Common\\ToArrayInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php', + 'Guzzle\\Common\\Version' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Common/Version.php', + 'Guzzle\\Http\\AbstractEntityBodyDecorator' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php', + 'Guzzle\\Http\\CachingEntityBody' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/CachingEntityBody.php', + 'Guzzle\\Http\\Client' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Client.php', + 'Guzzle\\Http\\ClientInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/ClientInterface.php', + 'Guzzle\\Http\\Curl\\CurlHandle' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Curl/CurlHandle.php', + 'Guzzle\\Http\\Curl\\CurlMulti' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMulti.php', + 'Guzzle\\Http\\Curl\\CurlMultiInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiInterface.php', + 'Guzzle\\Http\\Curl\\CurlMultiProxy' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php', + 'Guzzle\\Http\\Curl\\CurlVersion' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Curl/CurlVersion.php', + 'Guzzle\\Http\\Curl\\RequestMediator' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Curl/RequestMediator.php', + 'Guzzle\\Http\\EntityBody' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/EntityBody.php', + 'Guzzle\\Http\\EntityBodyInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/EntityBodyInterface.php', + 'Guzzle\\Http\\Exception\\BadResponseException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php', + 'Guzzle\\Http\\Exception\\ClientErrorResponseException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Exception/ClientErrorResponseException.php', + 'Guzzle\\Http\\Exception\\CouldNotRewindStreamException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Exception/CouldNotRewindStreamException.php', + 'Guzzle\\Http\\Exception\\CurlException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php', + 'Guzzle\\Http\\Exception\\HttpException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Exception/HttpException.php', + 'Guzzle\\Http\\Exception\\MultiTransferException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Exception/MultiTransferException.php', + 'Guzzle\\Http\\Exception\\RequestException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Exception/RequestException.php', + 'Guzzle\\Http\\Exception\\ServerErrorResponseException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Exception/ServerErrorResponseException.php', + 'Guzzle\\Http\\Exception\\TooManyRedirectsException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Exception/TooManyRedirectsException.php', + 'Guzzle\\Http\\IoEmittingEntityBody' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/IoEmittingEntityBody.php', + 'Guzzle\\Http\\Message\\AbstractMessage' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/AbstractMessage.php', + 'Guzzle\\Http\\Message\\EntityEnclosingRequest' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequest.php', + 'Guzzle\\Http\\Message\\EntityEnclosingRequestInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequestInterface.php', + 'Guzzle\\Http\\Message\\Header' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/Header.php', + 'Guzzle\\Http\\Message\\Header\\CacheControl' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/Header/CacheControl.php', + 'Guzzle\\Http\\Message\\Header\\HeaderCollection' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderCollection.php', + 'Guzzle\\Http\\Message\\Header\\HeaderFactory' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactory.php', + 'Guzzle\\Http\\Message\\Header\\HeaderFactoryInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactoryInterface.php', + 'Guzzle\\Http\\Message\\Header\\HeaderInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderInterface.php', + 'Guzzle\\Http\\Message\\Header\\Link' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/Header/Link.php', + 'Guzzle\\Http\\Message\\MessageInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/MessageInterface.php', + 'Guzzle\\Http\\Message\\PostFile' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/PostFile.php', + 'Guzzle\\Http\\Message\\PostFileInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/PostFileInterface.php', + 'Guzzle\\Http\\Message\\Request' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/Request.php', + 'Guzzle\\Http\\Message\\RequestFactory' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactory.php', + 'Guzzle\\Http\\Message\\RequestFactoryInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactoryInterface.php', + 'Guzzle\\Http\\Message\\RequestInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/RequestInterface.php', + 'Guzzle\\Http\\Message\\Response' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Message/Response.php', + 'Guzzle\\Http\\Mimetypes' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Mimetypes.php', + 'Guzzle\\Http\\QueryAggregator\\CommaAggregator' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/CommaAggregator.php', + 'Guzzle\\Http\\QueryAggregator\\DuplicateAggregator' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/DuplicateAggregator.php', + 'Guzzle\\Http\\QueryAggregator\\PhpAggregator' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/PhpAggregator.php', + 'Guzzle\\Http\\QueryAggregator\\QueryAggregatorInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php', + 'Guzzle\\Http\\QueryString' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/QueryString.php', + 'Guzzle\\Http\\ReadLimitEntityBody' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/ReadLimitEntityBody.php', + 'Guzzle\\Http\\RedirectPlugin' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php', + 'Guzzle\\Http\\StaticClient' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/StaticClient.php', + 'Guzzle\\Http\\Url' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Http/Url.php', + 'Guzzle\\Inflection\\Inflector' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Inflection/Inflector.php', + 'Guzzle\\Inflection\\InflectorInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php', + 'Guzzle\\Inflection\\MemoizingInflector' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Inflection/MemoizingInflector.php', + 'Guzzle\\Inflection\\PreComputedInflector' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Inflection/PreComputedInflector.php', + 'Guzzle\\Iterator\\AppendIterator' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Iterator/AppendIterator.php', + 'Guzzle\\Iterator\\ChunkedIterator' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Iterator/ChunkedIterator.php', + 'Guzzle\\Iterator\\FilterIterator' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Iterator/FilterIterator.php', + 'Guzzle\\Iterator\\MapIterator' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Iterator/MapIterator.php', + 'Guzzle\\Iterator\\MethodProxyIterator' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Iterator/MethodProxyIterator.php', + 'Guzzle\\Log\\AbstractLogAdapter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Log/AbstractLogAdapter.php', + 'Guzzle\\Log\\ArrayLogAdapter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Log/ArrayLogAdapter.php', + 'Guzzle\\Log\\ClosureLogAdapter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Log/ClosureLogAdapter.php', + 'Guzzle\\Log\\LogAdapterInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Log/LogAdapterInterface.php', + 'Guzzle\\Log\\MessageFormatter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Log/MessageFormatter.php', + 'Guzzle\\Log\\MonologLogAdapter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Log/MonologLogAdapter.php', + 'Guzzle\\Log\\PsrLogAdapter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Log/PsrLogAdapter.php', + 'Guzzle\\Log\\Zf1LogAdapter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Log/Zf1LogAdapter.php', + 'Guzzle\\Log\\Zf2LogAdapter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Log/Zf2LogAdapter.php', + 'Guzzle\\Parser\\Cookie\\CookieParser' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParser.php', + 'Guzzle\\Parser\\Cookie\\CookieParserInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParserInterface.php', + 'Guzzle\\Parser\\Message\\AbstractMessageParser' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Parser/Message/AbstractMessageParser.php', + 'Guzzle\\Parser\\Message\\MessageParser' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParser.php', + 'Guzzle\\Parser\\Message\\MessageParserInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParserInterface.php', + 'Guzzle\\Parser\\Message\\PeclHttpMessageParser' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Parser/Message/PeclHttpMessageParser.php', + 'Guzzle\\Parser\\ParserRegistry' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Parser/ParserRegistry.php', + 'Guzzle\\Parser\\UriTemplate\\PeclUriTemplate' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/PeclUriTemplate.php', + 'Guzzle\\Parser\\UriTemplate\\UriTemplate' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplate.php', + 'Guzzle\\Parser\\UriTemplate\\UriTemplateInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplateInterface.php', + 'Guzzle\\Parser\\Url\\UrlParser' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParser.php', + 'Guzzle\\Parser\\Url\\UrlParserInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParserInterface.php', + 'Guzzle\\Plugin\\Async\\AsyncPlugin' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php', + 'Guzzle\\Plugin\\Backoff\\AbstractBackoffStrategy' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractBackoffStrategy.php', + 'Guzzle\\Plugin\\Backoff\\AbstractErrorCodeBackoffStrategy' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractErrorCodeBackoffStrategy.php', + 'Guzzle\\Plugin\\Backoff\\BackoffLogger' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffLogger.php', + 'Guzzle\\Plugin\\Backoff\\BackoffPlugin' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffPlugin.php', + 'Guzzle\\Plugin\\Backoff\\BackoffStrategyInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffStrategyInterface.php', + 'Guzzle\\Plugin\\Backoff\\CallbackBackoffStrategy' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CallbackBackoffStrategy.php', + 'Guzzle\\Plugin\\Backoff\\ConstantBackoffStrategy' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ConstantBackoffStrategy.php', + 'Guzzle\\Plugin\\Backoff\\CurlBackoffStrategy' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CurlBackoffStrategy.php', + 'Guzzle\\Plugin\\Backoff\\ExponentialBackoffStrategy' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ExponentialBackoffStrategy.php', + 'Guzzle\\Plugin\\Backoff\\HttpBackoffStrategy' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Backoff/HttpBackoffStrategy.php', + 'Guzzle\\Plugin\\Backoff\\LinearBackoffStrategy' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Backoff/LinearBackoffStrategy.php', + 'Guzzle\\Plugin\\Backoff\\ReasonPhraseBackoffStrategy' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ReasonPhraseBackoffStrategy.php', + 'Guzzle\\Plugin\\Backoff\\TruncatedBackoffStrategy' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Backoff/TruncatedBackoffStrategy.php', + 'Guzzle\\Plugin\\Cache\\CacheKeyProviderInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php', + 'Guzzle\\Plugin\\Cache\\CachePlugin' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php', + 'Guzzle\\Plugin\\Cache\\CacheStorageInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheStorageInterface.php', + 'Guzzle\\Plugin\\Cache\\CallbackCanCacheStrategy' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cache/CallbackCanCacheStrategy.php', + 'Guzzle\\Plugin\\Cache\\CanCacheStrategyInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php', + 'Guzzle\\Plugin\\Cache\\DefaultCacheKeyProvider' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheKeyProvider.php', + 'Guzzle\\Plugin\\Cache\\DefaultCacheStorage' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheStorage.php', + 'Guzzle\\Plugin\\Cache\\DefaultCanCacheStrategy' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCanCacheStrategy.php', + 'Guzzle\\Plugin\\Cache\\DefaultRevalidation' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultRevalidation.php', + 'Guzzle\\Plugin\\Cache\\DenyRevalidation' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cache/DenyRevalidation.php', + 'Guzzle\\Plugin\\Cache\\RevalidationInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cache/RevalidationInterface.php', + 'Guzzle\\Plugin\\Cache\\SkipRevalidation' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cache/SkipRevalidation.php', + 'Guzzle\\Plugin\\Cookie\\Cookie' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Cookie.php', + 'Guzzle\\Plugin\\Cookie\\CookieJar\\ArrayCookieJar' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/ArrayCookieJar.php', + 'Guzzle\\Plugin\\Cookie\\CookieJar\\CookieJarInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/CookieJarInterface.php', + 'Guzzle\\Plugin\\Cookie\\CookieJar\\FileCookieJar' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/FileCookieJar.php', + 'Guzzle\\Plugin\\Cookie\\CookiePlugin' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookiePlugin.php', + 'Guzzle\\Plugin\\Cookie\\Exception\\InvalidCookieException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php', + 'Guzzle\\Plugin\\CurlAuth\\CurlAuthPlugin' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/CurlAuthPlugin.php', + 'Guzzle\\Plugin\\ErrorResponse\\ErrorResponseExceptionInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponseExceptionInterface.php', + 'Guzzle\\Plugin\\ErrorResponse\\ErrorResponsePlugin' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponsePlugin.php', + 'Guzzle\\Plugin\\ErrorResponse\\Exception\\ErrorResponseException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php', + 'Guzzle\\Plugin\\History\\HistoryPlugin' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/History/HistoryPlugin.php', + 'Guzzle\\Plugin\\Log\\LogPlugin' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Log/LogPlugin.php', + 'Guzzle\\Plugin\\Md5\\CommandContentMd5Plugin' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Md5/CommandContentMd5Plugin.php', + 'Guzzle\\Plugin\\Md5\\Md5ValidatorPlugin' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Md5/Md5ValidatorPlugin.php', + 'Guzzle\\Plugin\\Mock\\MockPlugin' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Mock/MockPlugin.php', + 'Guzzle\\Plugin\\Oauth\\OauthPlugin' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Plugin/Oauth/OauthPlugin.php', + 'Guzzle\\Service\\AbstractConfigLoader' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/AbstractConfigLoader.php', + 'Guzzle\\Service\\Builder\\ServiceBuilder' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilder.php', + 'Guzzle\\Service\\Builder\\ServiceBuilderInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderInterface.php', + 'Guzzle\\Service\\Builder\\ServiceBuilderLoader' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderLoader.php', + 'Guzzle\\Service\\CachingConfigLoader' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/CachingConfigLoader.php', + 'Guzzle\\Service\\Client' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Client.php', + 'Guzzle\\Service\\ClientInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/ClientInterface.php', + 'Guzzle\\Service\\Command\\AbstractCommand' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/AbstractCommand.php', + 'Guzzle\\Service\\Command\\ClosureCommand' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/ClosureCommand.php', + 'Guzzle\\Service\\Command\\CommandInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/CommandInterface.php', + 'Guzzle\\Service\\Command\\CreateResponseClassEvent' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/CreateResponseClassEvent.php', + 'Guzzle\\Service\\Command\\DefaultRequestSerializer' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php', + 'Guzzle\\Service\\Command\\DefaultResponseParser' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/DefaultResponseParser.php', + 'Guzzle\\Service\\Command\\Factory\\AliasFactory' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/Factory/AliasFactory.php', + 'Guzzle\\Service\\Command\\Factory\\CompositeFactory' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/Factory/CompositeFactory.php', + 'Guzzle\\Service\\Command\\Factory\\ConcreteClassFactory' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ConcreteClassFactory.php', + 'Guzzle\\Service\\Command\\Factory\\FactoryInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/Factory/FactoryInterface.php', + 'Guzzle\\Service\\Command\\Factory\\MapFactory' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/Factory/MapFactory.php', + 'Guzzle\\Service\\Command\\Factory\\ServiceDescriptionFactory' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ServiceDescriptionFactory.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Request\\AbstractRequestVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/AbstractRequestVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Request\\BodyVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/BodyVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Request\\HeaderVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/HeaderVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Request\\JsonVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Request\\PostFieldVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Request\\PostFileVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Request\\QueryVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Request\\RequestVisitorInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/RequestVisitorInterface.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Request\\ResponseBodyVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Request\\XmlVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/XmlVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Response\\AbstractResponseVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Response\\BodyVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/BodyVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Response\\HeaderVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Response\\JsonVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/JsonVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Response\\ReasonPhraseVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Response\\ResponseVisitorInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ResponseVisitorInterface.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Response\\StatusCodeVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\Response\\XmlVisitor' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/XmlVisitor.php', + 'Guzzle\\Service\\Command\\LocationVisitor\\VisitorFlyweight' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/VisitorFlyweight.php', + 'Guzzle\\Service\\Command\\OperationCommand' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/OperationCommand.php', + 'Guzzle\\Service\\Command\\OperationResponseParser' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/OperationResponseParser.php', + 'Guzzle\\Service\\Command\\RequestSerializerInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/RequestSerializerInterface.php', + 'Guzzle\\Service\\Command\\ResponseClassInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/ResponseClassInterface.php', + 'Guzzle\\Service\\Command\\ResponseParserInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Command/ResponseParserInterface.php', + 'Guzzle\\Service\\ConfigLoaderInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/ConfigLoaderInterface.php', + 'Guzzle\\Service\\Description\\Operation' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Description/Operation.php', + 'Guzzle\\Service\\Description\\OperationInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Description/OperationInterface.php', + 'Guzzle\\Service\\Description\\Parameter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Description/Parameter.php', + 'Guzzle\\Service\\Description\\SchemaFormatter' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Description/SchemaFormatter.php', + 'Guzzle\\Service\\Description\\SchemaValidator' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Description/SchemaValidator.php', + 'Guzzle\\Service\\Description\\ServiceDescription' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescription.php', + 'Guzzle\\Service\\Description\\ServiceDescriptionInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionInterface.php', + 'Guzzle\\Service\\Description\\ServiceDescriptionLoader' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionLoader.php', + 'Guzzle\\Service\\Description\\ValidatorInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Description/ValidatorInterface.php', + 'Guzzle\\Service\\Exception\\CommandException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php', + 'Guzzle\\Service\\Exception\\CommandTransferException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Exception/CommandTransferException.php', + 'Guzzle\\Service\\Exception\\DescriptionBuilderException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Exception/DescriptionBuilderException.php', + 'Guzzle\\Service\\Exception\\InconsistentClientTransferException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Exception/InconsistentClientTransferException.php', + 'Guzzle\\Service\\Exception\\ResponseClassException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Exception/ResponseClassException.php', + 'Guzzle\\Service\\Exception\\ServiceBuilderException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceBuilderException.php', + 'Guzzle\\Service\\Exception\\ServiceNotFoundException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php', + 'Guzzle\\Service\\Exception\\ValidationException' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Exception/ValidationException.php', + 'Guzzle\\Service\\Resource\\AbstractResourceIteratorFactory' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Resource/AbstractResourceIteratorFactory.php', + 'Guzzle\\Service\\Resource\\CompositeResourceIteratorFactory' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Resource/CompositeResourceIteratorFactory.php', + 'Guzzle\\Service\\Resource\\MapResourceIteratorFactory' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Resource/MapResourceIteratorFactory.php', + 'Guzzle\\Service\\Resource\\Model' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Resource/Model.php', + 'Guzzle\\Service\\Resource\\ResourceIterator' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIterator.php', + 'Guzzle\\Service\\Resource\\ResourceIteratorApplyBatched' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorApplyBatched.php', + 'Guzzle\\Service\\Resource\\ResourceIteratorClassFactory' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorClassFactory.php', + 'Guzzle\\Service\\Resource\\ResourceIteratorFactoryInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorFactoryInterface.php', + 'Guzzle\\Service\\Resource\\ResourceIteratorInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorInterface.php', + 'Guzzle\\Stream\\PhpStreamRequestFactory' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Stream/PhpStreamRequestFactory.php', + 'Guzzle\\Stream\\Stream' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Stream/Stream.php', + 'Guzzle\\Stream\\StreamInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Stream/StreamInterface.php', + 'Guzzle\\Stream\\StreamRequestFactoryInterface' => $vendorDir . '/guzzle/guzzle/src/Guzzle/Stream/StreamRequestFactoryInterface.php', + 'Guzzle\\Tests\\Batch\\AbstractBatchDecoratorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Batch/AbstractBatchDecoratorTest.php', + 'Guzzle\\Tests\\Batch\\BatchBuilderTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchBuilderTest.php', + 'Guzzle\\Tests\\Batch\\BatchClosureDivisorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchClosureDivisorTest.php', + 'Guzzle\\Tests\\Batch\\BatchClosureTransferTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchClosureTransferTest.php', + 'Guzzle\\Tests\\Batch\\BatchCommandTransferTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchCommandTransferTest.php', + 'Guzzle\\Tests\\Batch\\BatchRequestTransferTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchRequestTransferTest.php', + 'Guzzle\\Tests\\Batch\\BatchSizeDivisorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchSizeDivisorTest.php', + 'Guzzle\\Tests\\Batch\\BatchTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchTest.php', + 'Guzzle\\Tests\\Batch\\ExceptionBufferingBatchTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Batch/ExceptionBufferingBatchTest.php', + 'Guzzle\\Tests\\Batch\\FlushingBatchTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Batch/FlushingBatchTest.php', + 'Guzzle\\Tests\\Batch\\HistoryBatchTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Batch/HistoryBatchTest.php', + 'Guzzle\\Tests\\Batch\\NotifyingBatchTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Batch/NotifyingBatchTest.php', + 'Guzzle\\Tests\\Cache\\CacheAdapterFactoryTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Cache/CacheAdapterFactoryTest.php', + 'Guzzle\\Tests\\Cache\\CacheAdapterTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Cache/CacheAdapterTest.php', + 'Guzzle\\Tests\\Cache\\ClosureCacheAdapterTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Cache/ClosureCacheAdapterTest.php', + 'Guzzle\\Tests\\Cache\\Zf2CacheAdapterTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Cache/Zf2CacheAdapterTest.php', + 'Guzzle\\Tests\\Common\\AbstractHasAdapterTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Common/AbstractHasDispatcherTest.php', + 'Guzzle\\Tests\\Common\\Cache\\NullCacheAdapterTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Cache/NullCacheAdapterTest.php', + 'Guzzle\\Tests\\Common\\CollectionTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Common/CollectionTest.php', + 'Guzzle\\Tests\\Common\\EventTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Common/EventTest.php', + 'Guzzle\\Tests\\Common\\Exception\\BatchTransferExceptionTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Common/Exception/BatchTransferExceptionTest.php', + 'Guzzle\\Tests\\Common\\Exception\\ExceptionCollectionTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Common/Exception/ExceptionCollectionTest.php', + 'Guzzle\\Tests\\Common\\VersionTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Common/VersionTest.php', + 'Guzzle\\Tests\\GuzzleTestCase' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/GuzzleTestCase.php', + 'Guzzle\\Tests\\Http\\AbstractEntityBodyDecoratorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/AbstractEntityBodyDecoratorTest.php', + 'Guzzle\\Tests\\Http\\CachingEntityBodyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/CachingEntityBodyTest.php', + 'Guzzle\\Tests\\Http\\ClientTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/ClientTest.php', + 'Guzzle\\Tests\\Http\\CommaAggregatorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/QueryAggregator/CommaAggregatorTest.php', + 'Guzzle\\Tests\\Http\\Curl\\CurlHandleTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl/CurlHandleTest.php', + 'Guzzle\\Tests\\Http\\Curl\\CurlMultiProxyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl/CurlMultiProxyTest.php', + 'Guzzle\\Tests\\Http\\Curl\\CurlMultiTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl/CurlMultiTest.php', + 'Guzzle\\Tests\\Http\\Curl\\CurlVersionTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl/CurlVersionTest.php', + 'Guzzle\\Tests\\Http\\Curl\\RequestMediatorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl/RequestMediatorTest.php', + 'Guzzle\\Tests\\Http\\DuplicateAggregatorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/QueryAggregator/DuplicateAggregatorTest.php', + 'Guzzle\\Tests\\Http\\EntityBodyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/EntityBodyTest.php', + 'Guzzle\\Tests\\Http\\Exception\\CurlExceptionTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Exception/CurlExceptionTest.php', + 'Guzzle\\Tests\\Http\\Exception\\ExceptionTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Exception/ExceptionTest.php', + 'Guzzle\\Tests\\Http\\Exception\\MultiTransferExceptionTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Exception/MultiTransferExceptionTest.php', + 'Guzzle\\Tests\\Http\\IoEmittingEntityBodyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/IoEmittingEntityBodyTest.php', + 'Guzzle\\Tests\\Http\\Message\\AbstractMessageTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/AbstractMessageTest.php', + 'Guzzle\\Tests\\Http\\Message\\EntityEnclosingRequestTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/EntityEnclosingRequestTest.php', + 'Guzzle\\Tests\\Http\\Message\\HeaderComparison' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/HeaderComparison.php', + 'Guzzle\\Tests\\Http\\Message\\HeaderTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/HeaderTest.php', + 'Guzzle\\Tests\\Http\\Message\\Header\\HeaderFactoryTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/Header/HeaderFactoryTest.php', + 'Guzzle\\Tests\\Http\\Message\\Header\\LinkTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/Header/LinkTest.php', + 'Guzzle\\Tests\\Http\\Message\\HttpRequestFactoryTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/RequestFactoryTest.php', + 'Guzzle\\Tests\\Http\\Message\\PostFileTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/PostFileTest.php', + 'Guzzle\\Tests\\Http\\Message\\RequestTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/RequestTest.php', + 'Guzzle\\Tests\\Http\\MimetypesTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/MimetypesTest.php', + 'Guzzle\\Tests\\Http\\PhpAggregatorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/QueryAggregator/PhpAggregatorTest.php', + 'Guzzle\\Tests\\Http\\QueryStringTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/QueryStringTest.php', + 'Guzzle\\Tests\\Http\\ReadLimitEntityBodyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/ReadLimitEntityBodyTest.php', + 'Guzzle\\Tests\\Http\\Server' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Server.php', + 'Guzzle\\Tests\\Http\\UrlTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/UrlTest.php', + 'Guzzle\\Tests\\Inflection\\InflectorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Inflection/InflectorTest.php', + 'Guzzle\\Tests\\Inflection\\MemoizingInflectorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Inflection/MemoizingInflectorTest.php', + 'Guzzle\\Tests\\Inflection\\PreComputedInflectorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Inflection/PreComputedInflectorTest.php', + 'Guzzle\\Tests\\Iterator\\AppendIteratorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Iterator/AppendIteratorTest.php', + 'Guzzle\\Tests\\Iterator\\ChunkedIteratorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Iterator/ChunkedIteratorTest.php', + 'Guzzle\\Tests\\Iterator\\FilterIteratorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Iterator/FilterIteratorTest.php', + 'Guzzle\\Tests\\Iterator\\MapIteratorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Iterator/MapIteratorTest.php', + 'Guzzle\\Tests\\Iterator\\MethodProxyIteratorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Iterator/MethodProxyIteratorTest.php', + 'Guzzle\\Tests\\Log\\ArrayLogAdapterTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Log/ArrayLogAdapterTest.php', + 'Guzzle\\Tests\\Log\\ClosureLogAdapterTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Log/ClosureLogAdapterTest.php', + 'Guzzle\\Tests\\Log\\MessageFormatterTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Log/MessageFormatterTest.php', + 'Guzzle\\Tests\\Log\\PsrLogAdapterTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Log/PsrLogAdapterTest.php', + 'Guzzle\\Tests\\Log\\Zf2LogAdapterTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Log/Zf2LogAdapterTest.php', + 'Guzzle\\Tests\\Message\\HeaderComparisonTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/HeaderComparisonTest.php', + 'Guzzle\\Tests\\Message\\ResponseTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/ResponseTest.php', + 'Guzzle\\Tests\\Mock\\CustomResponseModel' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Mock/CustomResponseModel.php', + 'Guzzle\\Tests\\Mock\\ErrorResponseMock' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Mock/ErrorResponseMock.php', + 'Guzzle\\Tests\\Mock\\ExceptionMock' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Mock/ExceptionMock.php', + 'Guzzle\\Tests\\Mock\\MockMulti' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Mock/MockMulti.php', + 'Guzzle\\Tests\\Mock\\MockObserver' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Mock/MockObserver.php', + 'Guzzle\\Tests\\Mock\\MockSubject' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Mock/MockSubject.php', + 'Guzzle\\Tests\\Parser\\Cookie\\CookieParserProvider' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Parser/Cookie/CookieParserProvider.php', + 'Guzzle\\Tests\\Parser\\Cookie\\CookieParserTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Parser/Cookie/CookieParserTest.php', + 'Guzzle\\Tests\\Parser\\Message\\MessageParserProvider' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Parser/Message/MessageParserProvider.php', + 'Guzzle\\Tests\\Parser\\Message\\MessageParserTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Parser/Message/MessageParserTest.php', + 'Guzzle\\Tests\\Parser\\Message\\PeclHttpMessageParserTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Parser/Message/PeclHttpMessageParserTest.php', + 'Guzzle\\Tests\\Parser\\ParserRegistryTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Parser/ParserRegistryTest.php', + 'Guzzle\\Tests\\Parsers\\UriTemplate\\AbstractUriTemplateTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Parser/UriTemplate/AbstractUriTemplateTest.php', + 'Guzzle\\Tests\\Parsers\\UriTemplate\\PeclUriTemplateTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Parser/UriTemplate/PeclUriTemplateTest.php', + 'Guzzle\\Tests\\Parsers\\UriTemplate\\UriTemplateTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Parser/UriTemplate/UriTemplateTest.php', + 'Guzzle\\Tests\\Plugin\\Async\\AsyncPluginTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Async/AsyncPluginTest.php', + 'Guzzle\\Tests\\Plugin\\Backoff\\AbstractBackoffStrategyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/AbstractBackoffStrategyTest.php', + 'Guzzle\\Tests\\Plugin\\Backoff\\BackoffLoggerTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/BackoffLoggerTest.php', + 'Guzzle\\Tests\\Plugin\\Backoff\\BackoffPluginTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/BackoffPluginTest.php', + 'Guzzle\\Tests\\Plugin\\Backoff\\CallbackBackoffStrategyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/CallbackBackoffStrategyTest.php', + 'Guzzle\\Tests\\Plugin\\Backoff\\ConstantBackoffStrategyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/ConstantBackoffStrategyTest.php', + 'Guzzle\\Tests\\Plugin\\Backoff\\CurlBackoffStrategyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/CurlBackoffStrategyTest.php', + 'Guzzle\\Tests\\Plugin\\Backoff\\ExponentialBackoffStrategyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/ExponentialBackoffStrategyTest.php', + 'Guzzle\\Tests\\Plugin\\Backoff\\HttpBackoffStrategyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/HttpBackoffStrategyTest.php', + 'Guzzle\\Tests\\Plugin\\Backoff\\LinearBackoffStrategyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/LinearBackoffStrategyTest.php', + 'Guzzle\\Tests\\Plugin\\Backoff\\ReasonPhraseBackoffStrategyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/ReasonPhraseBackoffStrategyTest.php', + 'Guzzle\\Tests\\Plugin\\Backoff\\TruncatedBackoffStrategyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/TruncatedBackoffStrategyTest.php', + 'Guzzle\\Tests\\Plugin\\Cache\\CachePluginTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/CachePluginTest.php', + 'Guzzle\\Tests\\Plugin\\Cache\\CallbackCanCacheStrategyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/CallbackCanCacheStrategyTest.php', + 'Guzzle\\Tests\\Plugin\\Cache\\DefaultCacheStorageTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/DefaultCacheStorageTest.php', + 'Guzzle\\Tests\\Plugin\\Cache\\DefaultCanCacheStrategyTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/DefaultCanCacheStrategyTest.php', + 'Guzzle\\Tests\\Plugin\\Cache\\DefaultRevalidationTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/DefaultRevalidationTest.php', + 'Guzzle\\Tests\\Plugin\\Cache\\DenyRevalidationTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/DenyRevalidationTest.php', + 'Guzzle\\Tests\\Plugin\\Cache\\SkipRevalidationTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/SkipRevalidationTest.php', + 'Guzzle\\Tests\\Plugin\\Cookie\\CookieJar\\ArrayCookieJarTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie/CookieJar/ArrayCookieJarTest.php', + 'Guzzle\\Tests\\Plugin\\Cookie\\CookieJar\\FileCookieJarTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie/CookieJar/FileCookieJarTest.php', + 'Guzzle\\Tests\\Plugin\\Cookie\\CookiePluginTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie/CookiePluginTest.php', + 'Guzzle\\Tests\\Plugin\\Cookie\\CookieTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie/CookieTest.php', + 'Guzzle\\Tests\\Plugin\\CurlAuth\\CurlAuthPluginTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/CurlAuth/CurlAuthPluginTest.php', + 'Guzzle\\Tests\\Plugin\\ErrorResponse\\ErrorResponsePluginTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/ErrorResponse/ErrorResponsePluginTest.php', + 'Guzzle\\Tests\\Plugin\\History\\HistoryPluginTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/History/HistoryPluginTest.php', + 'Guzzle\\Tests\\Plugin\\Log\\LogPluginTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Log/LogPluginTest.php', + 'Guzzle\\Tests\\Plugin\\Md5\\CommandContentMd5PluginTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Md5/CommandContentMd5PluginTest.php', + 'Guzzle\\Tests\\Plugin\\Md5\\Md5ValidatorPluginTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Md5/Md5ValidatorPluginTest.php', + 'Guzzle\\Tests\\Plugin\\Mock\\MockPluginTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Mock/MockPluginTest.php', + 'Guzzle\\Tests\\Plugin\\Oauth\\OauthPluginTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Oauth/OauthPluginTest.php', + 'Guzzle\\Tests\\Plugin\\Redirect\\RedirectPluginTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/RedirectPluginTest.php', + 'Guzzle\\Tests\\Plugin\\Redirect\\StaticClientTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Http/StaticClientTest.php', + 'Guzzle\\Tests\\Service\\AbstractConfigLoaderTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/AbstractConfigLoaderTest.php', + 'Guzzle\\Tests\\Service\\Builder\\ServiceBuilderLoaderTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Builder/ServiceBuilderLoaderTest.php', + 'Guzzle\\Tests\\Service\\CachingConfigLoaderTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/CachingConfigLoaderTest.php', + 'Guzzle\\Tests\\Service\\ClientTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/ClientTest.php', + 'Guzzle\\Tests\\Service\\Command\\AbstractCommandTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/AbstractCommandTest.php', + 'Guzzle\\Tests\\Service\\Command\\AliasFactoryTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory/AliasFactoryTest.php', + 'Guzzle\\Tests\\Service\\Command\\ClosureCommandTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/ClosureCommandTest.php', + 'Guzzle\\Tests\\Service\\Command\\CommandTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/CommandTest.php', + 'Guzzle\\Tests\\Service\\Command\\CompositeFactoryTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory/CompositeFactoryTest.php', + 'Guzzle\\Tests\\Service\\Command\\ConcreteClassFactoryTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory/ConcreteClassFactoryTest.php', + 'Guzzle\\Tests\\Service\\Command\\DefaultRequestSerializerTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/DefaultRequestSerializerTest.php', + 'Guzzle\\Tests\\Service\\Command\\DefaultResponseParserTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/DefaultResponseParserTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Request\\AbstractVisitorTestCase' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/AbstractVisitorTestCase.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Request\\BodyVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/BodyVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Request\\HeaderVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/HeaderVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Request\\JsonVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/JsonVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Request\\PostFieldVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/PostFieldVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Request\\PostFileVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/PostFileVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Request\\QueryVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/QueryVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Request\\ResponseBodyVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/ResponseBodyVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Request\\XmlVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/XmlVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Response\\AbstractResponseVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/AbstractResponseVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Response\\BodyVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/BodyVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Response\\HeaderVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/HeaderVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Response\\JsonVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/JsonVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Response\\ReasonPhraseVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/ReasonPhraseVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Response\\StatusCodeVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/StatusCodeVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\LocationVisitor\\Response\\XmlVisitorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/XmlVisitorTest.php', + 'Guzzle\\Tests\\Service\\Command\\MapFactoryTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory/MapFactoryTest.php', + 'Guzzle\\Tests\\Service\\Command\\OperationCommandTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/OperationCommandTest.php', + 'Guzzle\\Tests\\Service\\Command\\OperationResponseParserTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/OperationResponseParserTest.php', + 'Guzzle\\Tests\\Service\\Command\\ServiceDescriptionFactoryTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory/ServiceDescriptionFactoryTest.php', + 'Guzzle\\Tests\\Service\\Command\\VisitorFlyweightTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/VisitorFlyweightTest.php', + 'Guzzle\\Tests\\Service\\Description\\OperationTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Description/OperationTest.php', + 'Guzzle\\Tests\\Service\\Description\\ParameterTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Description/ParameterTest.php', + 'Guzzle\\Tests\\Service\\Description\\SchemaFormatterTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Description/SchemaFormatterTest.php', + 'Guzzle\\Tests\\Service\\Description\\SchemaValidatorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Description/SchemaValidatorTest.php', + 'Guzzle\\Tests\\Service\\Description\\ServiceDescriptionLoaderTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Description/ServiceDescriptionLoaderTest.php', + 'Guzzle\\Tests\\Service\\Description\\ServiceDescriptionTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Description/ServiceDescriptionTest.php', + 'Guzzle\\Tests\\Service\\Exception\\CommandTransferExceptionTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Exception/CommandTransferExceptionTest.php', + 'Guzzle\\Tests\\Service\\Exception\\InconsistentClientTransferExceptionTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Exception/InconsistentClientTransferExceptionTest.php', + 'Guzzle\\Tests\\Service\\Exception\\ValidationExceptionTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Exception/ValidationExceptionTest.php', + 'Guzzle\\Tests\\Service\\Mock\\Command\\IterableCommand' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command/IterableCommand.php', + 'Guzzle\\Tests\\Service\\Mock\\Command\\MockCommand' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command/MockCommand.php', + 'Guzzle\\Tests\\Service\\Mock\\Command\\OtherCommand' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command/OtherCommand.php', + 'Guzzle\\Tests\\Service\\Mock\\Command\\Sub\\Sub' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command/Sub/Sub.php', + 'Guzzle\\Tests\\Service\\Mock\\MockClient' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/MockClient.php', + 'Guzzle\\Tests\\Service\\Mock\\Model\\MockCommandIterator' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Model/MockCommandIterator.php', + 'Guzzle\\Tests\\Service\\Resource\\CompositeResourceIteratorFactoryTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource/CompositeResourceIteratorFactoryTest.php', + 'Guzzle\\Tests\\Service\\Resource\\MapResourceIteratorFactoryTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource/MapResourceIteratorFactoryTest.php', + 'Guzzle\\Tests\\Service\\Resource\\ModelTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource/ModelTest.php', + 'Guzzle\\Tests\\Service\\Resource\\ResourceIteratorClassFactoryTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource/ResourceIteratorClassFactoryTest.php', + 'Guzzle\\Tests\\Service\\Resource\\ResourceIteratorTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource/ResourceIteratorTest.php', + 'Guzzle\\Tests\\Service\\ServiceBuilderTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Service/Builder/ServiceBuilderTest.php', + 'Guzzle\\Tests\\Stream\\PhpStreamRequestFactoryTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Stream/PhpStreamRequestFactoryTest.php', + 'Guzzle\\Tests\\Stream\\StreamTest' => $vendorDir . '/guzzle/guzzle/tests/Guzzle/Tests/Stream/StreamTest.php', 'IlluminateQueueClosure' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/IlluminateQueueClosure.php', + 'Illuminate\\Auth\\Access\\AuthorizationException' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Access/AuthorizationException.php', + 'Illuminate\\Auth\\Access\\Gate' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Access/Gate.php', + 'Illuminate\\Auth\\Access\\HandlesAuthorization' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Access/HandlesAuthorization.php', + 'Illuminate\\Auth\\Access\\Response' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Access/Response.php', + 'Illuminate\\Auth\\AuthManager' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/AuthManager.php', + 'Illuminate\\Auth\\AuthServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/AuthServiceProvider.php', + 'Illuminate\\Auth\\Authenticatable' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Authenticatable.php', + 'Illuminate\\Auth\\AuthenticationException' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/AuthenticationException.php', + 'Illuminate\\Auth\\Console\\ClearResetsCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Console/ClearResetsCommand.php', + 'Illuminate\\Auth\\Console\\MakeAuthCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Console/MakeAuthCommand.php', + 'Illuminate\\Auth\\CreatesUserProviders' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/CreatesUserProviders.php', + 'Illuminate\\Auth\\DatabaseUserProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/DatabaseUserProvider.php', + 'Illuminate\\Auth\\EloquentUserProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/EloquentUserProvider.php', + 'Illuminate\\Auth\\Events\\Attempting' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Events/Attempting.php', + 'Illuminate\\Auth\\Events\\Failed' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Events/Failed.php', + 'Illuminate\\Auth\\Events\\Lockout' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Events/Lockout.php', + 'Illuminate\\Auth\\Events\\Login' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Events/Login.php', + 'Illuminate\\Auth\\Events\\Logout' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Events/Logout.php', + 'Illuminate\\Auth\\GenericUser' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/GenericUser.php', + 'Illuminate\\Auth\\GuardHelpers' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/GuardHelpers.php', + 'Illuminate\\Auth\\Middleware\\AuthenticateWithBasicAuth' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Middleware/AuthenticateWithBasicAuth.php', + 'Illuminate\\Auth\\Passwords\\CanResetPassword' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Passwords/CanResetPassword.php', + 'Illuminate\\Auth\\Passwords\\DatabaseTokenRepository' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Passwords/DatabaseTokenRepository.php', + 'Illuminate\\Auth\\Passwords\\PasswordBroker' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Passwords/PasswordBroker.php', + 'Illuminate\\Auth\\Passwords\\PasswordBrokerManager' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Passwords/PasswordBrokerManager.php', + 'Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Passwords/PasswordResetServiceProvider.php', + 'Illuminate\\Auth\\Passwords\\TokenRepositoryInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/Passwords/TokenRepositoryInterface.php', + 'Illuminate\\Auth\\RequestGuard' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/RequestGuard.php', + 'Illuminate\\Auth\\SessionGuard' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/SessionGuard.php', + 'Illuminate\\Auth\\TokenGuard' => $vendorDir . '/laravel/framework/src/Illuminate/Auth/TokenGuard.php', + 'Illuminate\\Broadcasting\\BroadcastEvent' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/BroadcastEvent.php', + 'Illuminate\\Broadcasting\\BroadcastManager' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/BroadcastManager.php', + 'Illuminate\\Broadcasting\\BroadcastServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/BroadcastServiceProvider.php', + 'Illuminate\\Broadcasting\\Broadcasters\\LogBroadcaster' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/LogBroadcaster.php', + 'Illuminate\\Broadcasting\\Broadcasters\\PusherBroadcaster' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/PusherBroadcaster.php', + 'Illuminate\\Broadcasting\\Broadcasters\\RedisBroadcaster' => $vendorDir . '/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/RedisBroadcaster.php', + 'Illuminate\\Bus\\BusServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Bus/BusServiceProvider.php', + 'Illuminate\\Bus\\Dispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Bus/Dispatcher.php', + 'Illuminate\\Bus\\Queueable' => $vendorDir . '/laravel/framework/src/Illuminate/Bus/Queueable.php', + 'Illuminate\\Cache\\ApcStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/ApcStore.php', + 'Illuminate\\Cache\\ApcWrapper' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/ApcWrapper.php', + 'Illuminate\\Cache\\ArrayStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/ArrayStore.php', + 'Illuminate\\Cache\\CacheManager' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/CacheManager.php', + 'Illuminate\\Cache\\CacheServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/CacheServiceProvider.php', + 'Illuminate\\Cache\\Console\\CacheTableCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Console/CacheTableCommand.php', + 'Illuminate\\Cache\\Console\\ClearCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Console/ClearCommand.php', + 'Illuminate\\Cache\\DatabaseStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/DatabaseStore.php', + 'Illuminate\\Cache\\Events\\CacheHit' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Events/CacheHit.php', + 'Illuminate\\Cache\\Events\\CacheMissed' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Events/CacheMissed.php', + 'Illuminate\\Cache\\Events\\KeyForgotten' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Events/KeyForgotten.php', + 'Illuminate\\Cache\\Events\\KeyWritten' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Events/KeyWritten.php', + 'Illuminate\\Cache\\FileStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/FileStore.php', + 'Illuminate\\Cache\\MemcachedConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/MemcachedConnector.php', + 'Illuminate\\Cache\\MemcachedStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/MemcachedStore.php', + 'Illuminate\\Cache\\NullStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/NullStore.php', + 'Illuminate\\Cache\\RateLimiter' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/RateLimiter.php', + 'Illuminate\\Cache\\RedisStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/RedisStore.php', + 'Illuminate\\Cache\\RedisTaggedCache' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/RedisTaggedCache.php', + 'Illuminate\\Cache\\Repository' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/Repository.php', + 'Illuminate\\Cache\\RetrievesMultipleKeys' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/RetrievesMultipleKeys.php', + 'Illuminate\\Cache\\TagSet' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/TagSet.php', + 'Illuminate\\Cache\\TaggableStore' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/TaggableStore.php', + 'Illuminate\\Cache\\TaggedCache' => $vendorDir . '/laravel/framework/src/Illuminate/Cache/TaggedCache.php', + 'Illuminate\\Config\\Repository' => $vendorDir . '/laravel/framework/src/Illuminate/Config/Repository.php', + 'Illuminate\\Console\\AppNamespaceDetectorTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Console/AppNamespaceDetectorTrait.php', + 'Illuminate\\Console\\Application' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Application.php', + 'Illuminate\\Console\\Command' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Command.php', + 'Illuminate\\Console\\ConfirmableTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Console/ConfirmableTrait.php', + 'Illuminate\\Console\\Events\\ArtisanStarting' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Events/ArtisanStarting.php', + 'Illuminate\\Console\\GeneratorCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Console/GeneratorCommand.php', + 'Illuminate\\Console\\OutputStyle' => $vendorDir . '/laravel/framework/src/Illuminate/Console/OutputStyle.php', + 'Illuminate\\Console\\Parser' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Parser.php', + 'Illuminate\\Console\\ScheduleServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Console/ScheduleServiceProvider.php', + 'Illuminate\\Console\\Scheduling\\CallbackEvent' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Scheduling/CallbackEvent.php', + 'Illuminate\\Console\\Scheduling\\Event' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Scheduling/Event.php', + 'Illuminate\\Console\\Scheduling\\Schedule' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Scheduling/Schedule.php', + 'Illuminate\\Console\\Scheduling\\ScheduleRunCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Console/Scheduling/ScheduleRunCommand.php', + 'Illuminate\\Container\\Container' => $vendorDir . '/laravel/framework/src/Illuminate/Container/Container.php', + 'Illuminate\\Container\\ContextualBindingBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Container/ContextualBindingBuilder.php', + 'Illuminate\\Contracts\\Auth\\Access\\Authorizable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/Access/Authorizable.php', + 'Illuminate\\Contracts\\Auth\\Access\\Gate' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/Access/Gate.php', + 'Illuminate\\Contracts\\Auth\\Authenticatable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/Authenticatable.php', + 'Illuminate\\Contracts\\Auth\\CanResetPassword' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/CanResetPassword.php', + 'Illuminate\\Contracts\\Auth\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/Factory.php', + 'Illuminate\\Contracts\\Auth\\Guard' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/Guard.php', + 'Illuminate\\Contracts\\Auth\\PasswordBroker' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/PasswordBroker.php', + 'Illuminate\\Contracts\\Auth\\PasswordBrokerFactory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/PasswordBrokerFactory.php', + 'Illuminate\\Contracts\\Auth\\Registrar' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/Registrar.php', + 'Illuminate\\Contracts\\Auth\\StatefulGuard' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/StatefulGuard.php', + 'Illuminate\\Contracts\\Auth\\SupportsBasicAuth' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/SupportsBasicAuth.php', + 'Illuminate\\Contracts\\Auth\\UserProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Auth/UserProvider.php', + 'Illuminate\\Contracts\\Broadcasting\\Broadcaster' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Broadcasting/Broadcaster.php', + 'Illuminate\\Contracts\\Broadcasting\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Broadcasting/Factory.php', + 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcast' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Broadcasting/ShouldBroadcast.php', + 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcastNow' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Broadcasting/ShouldBroadcastNow.php', + 'Illuminate\\Contracts\\Bus\\Dispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Bus/Dispatcher.php', + 'Illuminate\\Contracts\\Bus\\QueueingDispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Bus/QueueingDispatcher.php', + 'Illuminate\\Contracts\\Bus\\SelfHandling' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Bus/SelfHandling.php', + 'Illuminate\\Contracts\\Cache\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Cache/Factory.php', + 'Illuminate\\Contracts\\Cache\\Repository' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Cache/Repository.php', + 'Illuminate\\Contracts\\Cache\\Store' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Cache/Store.php', + 'Illuminate\\Contracts\\Config\\Repository' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Config/Repository.php', + 'Illuminate\\Contracts\\Console\\Application' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Console/Application.php', + 'Illuminate\\Contracts\\Console\\Kernel' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Console/Kernel.php', + 'Illuminate\\Contracts\\Container\\BindingResolutionException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Container/BindingResolutionException.php', + 'Illuminate\\Contracts\\Container\\Container' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Container/Container.php', + 'Illuminate\\Contracts\\Container\\ContextualBindingBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Container/ContextualBindingBuilder.php', + 'Illuminate\\Contracts\\Cookie\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Cookie/Factory.php', + 'Illuminate\\Contracts\\Cookie\\QueueingFactory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Cookie/QueueingFactory.php', + 'Illuminate\\Contracts\\Database\\ModelIdentifier' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Database/ModelIdentifier.php', + 'Illuminate\\Contracts\\Debug\\ExceptionHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Debug/ExceptionHandler.php', + 'Illuminate\\Contracts\\Encryption\\DecryptException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Encryption/DecryptException.php', + 'Illuminate\\Contracts\\Encryption\\EncryptException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Encryption/EncryptException.php', + 'Illuminate\\Contracts\\Encryption\\Encrypter' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Encryption/Encrypter.php', + 'Illuminate\\Contracts\\Events\\Dispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Events/Dispatcher.php', + 'Illuminate\\Contracts\\Filesystem\\Cloud' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Filesystem/Cloud.php', + 'Illuminate\\Contracts\\Filesystem\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Filesystem/Factory.php', + 'Illuminate\\Contracts\\Filesystem\\FileNotFoundException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Filesystem/FileNotFoundException.php', + 'Illuminate\\Contracts\\Filesystem\\Filesystem' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Filesystem/Filesystem.php', + 'Illuminate\\Contracts\\Foundation\\Application' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Foundation/Application.php', + 'Illuminate\\Contracts\\Hashing\\Hasher' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Hashing/Hasher.php', + 'Illuminate\\Contracts\\Http\\Kernel' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Http/Kernel.php', + 'Illuminate\\Contracts\\Logging\\Log' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Logging/Log.php', + 'Illuminate\\Contracts\\Mail\\MailQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Mail/MailQueue.php', + 'Illuminate\\Contracts\\Mail\\Mailer' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Mail/Mailer.php', + 'Illuminate\\Contracts\\Pagination\\LengthAwarePaginator' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Pagination/LengthAwarePaginator.php', + 'Illuminate\\Contracts\\Pagination\\Paginator' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Pagination/Paginator.php', + 'Illuminate\\Contracts\\Pagination\\Presenter' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Pagination/Presenter.php', + 'Illuminate\\Contracts\\Pipeline\\Hub' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Pipeline/Hub.php', + 'Illuminate\\Contracts\\Pipeline\\Pipeline' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Pipeline/Pipeline.php', + 'Illuminate\\Contracts\\Queue\\EntityNotFoundException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/EntityNotFoundException.php', + 'Illuminate\\Contracts\\Queue\\EntityResolver' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/EntityResolver.php', + 'Illuminate\\Contracts\\Queue\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/Factory.php', + 'Illuminate\\Contracts\\Queue\\Job' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/Job.php', + 'Illuminate\\Contracts\\Queue\\Monitor' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/Monitor.php', + 'Illuminate\\Contracts\\Queue\\Queue' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/Queue.php', + 'Illuminate\\Contracts\\Queue\\QueueableCollection' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/QueueableCollection.php', + 'Illuminate\\Contracts\\Queue\\QueueableEntity' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/QueueableEntity.php', + 'Illuminate\\Contracts\\Queue\\ShouldQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Queue/ShouldQueue.php', + 'Illuminate\\Contracts\\Redis\\Database' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Redis/Database.php', + 'Illuminate\\Contracts\\Routing\\Registrar' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Routing/Registrar.php', + 'Illuminate\\Contracts\\Routing\\ResponseFactory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Routing/ResponseFactory.php', + 'Illuminate\\Contracts\\Routing\\UrlGenerator' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Routing/UrlGenerator.php', + 'Illuminate\\Contracts\\Routing\\UrlRoutable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Routing/UrlRoutable.php', + 'Illuminate\\Contracts\\Support\\Arrayable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Support/Arrayable.php', + 'Illuminate\\Contracts\\Support\\Htmlable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Support/Htmlable.php', + 'Illuminate\\Contracts\\Support\\Jsonable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Support/Jsonable.php', + 'Illuminate\\Contracts\\Support\\MessageBag' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Support/MessageBag.php', + 'Illuminate\\Contracts\\Support\\MessageProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Support/MessageProvider.php', + 'Illuminate\\Contracts\\Support\\Renderable' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Support/Renderable.php', + 'Illuminate\\Contracts\\Validation\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Validation/Factory.php', + 'Illuminate\\Contracts\\Validation\\UnauthorizedException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Validation/UnauthorizedException.php', + 'Illuminate\\Contracts\\Validation\\ValidatesWhenResolved' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Validation/ValidatesWhenResolved.php', + 'Illuminate\\Contracts\\Validation\\ValidationException' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Validation/ValidationException.php', + 'Illuminate\\Contracts\\Validation\\Validator' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/Validation/Validator.php', + 'Illuminate\\Contracts\\View\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/View/Factory.php', + 'Illuminate\\Contracts\\View\\View' => $vendorDir . '/laravel/framework/src/Illuminate/Contracts/View/View.php', + 'Illuminate\\Cookie\\CookieJar' => $vendorDir . '/laravel/framework/src/Illuminate/Cookie/CookieJar.php', + 'Illuminate\\Cookie\\CookieServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Cookie/CookieServiceProvider.php', + 'Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse' => $vendorDir . '/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php', + 'Illuminate\\Cookie\\Middleware\\EncryptCookies' => $vendorDir . '/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php', + 'Illuminate\\Database\\Capsule\\Manager' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Capsule/Manager.php', + 'Illuminate\\Database\\Connection' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connection.php', + 'Illuminate\\Database\\ConnectionInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Database/ConnectionInterface.php', + 'Illuminate\\Database\\ConnectionResolver' => $vendorDir . '/laravel/framework/src/Illuminate/Database/ConnectionResolver.php', + 'Illuminate\\Database\\ConnectionResolverInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Database/ConnectionResolverInterface.php', + 'Illuminate\\Database\\Connectors\\ConnectionFactory' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php', + 'Illuminate\\Database\\Connectors\\Connector' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/Connector.php', + 'Illuminate\\Database\\Connectors\\ConnectorInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/ConnectorInterface.php', + 'Illuminate\\Database\\Connectors\\MySqlConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php', + 'Illuminate\\Database\\Connectors\\PostgresConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/PostgresConnector.php', + 'Illuminate\\Database\\Connectors\\SQLiteConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/SQLiteConnector.php', + 'Illuminate\\Database\\Connectors\\SqlServerConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Connectors/SqlServerConnector.php', + 'Illuminate\\Database\\Console\\Migrations\\BaseCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/BaseCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\InstallCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/InstallCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\MigrateCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\MigrateMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateMakeCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\RefreshCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/RefreshCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\ResetCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/ResetCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\RollbackCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/RollbackCommand.php', + 'Illuminate\\Database\\Console\\Migrations\\StatusCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Migrations/StatusCommand.php', + 'Illuminate\\Database\\Console\\Seeds\\SeedCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php', + 'Illuminate\\Database\\Console\\Seeds\\SeederMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Console/Seeds/SeederMakeCommand.php', + 'Illuminate\\Database\\DatabaseManager' => $vendorDir . '/laravel/framework/src/Illuminate/Database/DatabaseManager.php', + 'Illuminate\\Database\\DatabaseServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Database/DatabaseServiceProvider.php', + 'Illuminate\\Database\\DetectsLostConnections' => $vendorDir . '/laravel/framework/src/Illuminate/Database/DetectsLostConnections.php', + 'Illuminate\\Database\\Eloquent\\Builder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php', + 'Illuminate\\Database\\Eloquent\\Collection' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Collection.php', + 'Illuminate\\Database\\Eloquent\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Factory.php', + 'Illuminate\\Database\\Eloquent\\FactoryBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/FactoryBuilder.php', + 'Illuminate\\Database\\Eloquent\\MassAssignmentException' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/MassAssignmentException.php', + 'Illuminate\\Database\\Eloquent\\Model' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Model.php', + 'Illuminate\\Database\\Eloquent\\ModelNotFoundException' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/ModelNotFoundException.php', + 'Illuminate\\Database\\Eloquent\\QueueEntityResolver' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/QueueEntityResolver.php', + 'Illuminate\\Database\\Eloquent\\Relations\\BelongsTo' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php', + 'Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsToMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\HasMany' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasManyThrough.php', + 'Illuminate\\Database\\Eloquent\\Relations\\HasOne' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasOne.php', + 'Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasOneOrMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphMany' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphOne' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphOne.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphOneOrMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphPivot' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphPivot.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphTo' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphTo.php', + 'Illuminate\\Database\\Eloquent\\Relations\\MorphToMany' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphToMany.php', + 'Illuminate\\Database\\Eloquent\\Relations\\Pivot' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Pivot.php', + 'Illuminate\\Database\\Eloquent\\Relations\\Relation' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php', + 'Illuminate\\Database\\Eloquent\\Scope' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/Scope.php', + 'Illuminate\\Database\\Eloquent\\ScopeInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/ScopeInterface.php', + 'Illuminate\\Database\\Eloquent\\SoftDeletes' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/SoftDeletes.php', + 'Illuminate\\Database\\Eloquent\\SoftDeletingScope' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Eloquent/SoftDeletingScope.php', + 'Illuminate\\Database\\Events\\ConnectionEvent' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Events/ConnectionEvent.php', + 'Illuminate\\Database\\Events\\QueryExecuted' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Events/QueryExecuted.php', + 'Illuminate\\Database\\Events\\TransactionBeginning' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Events/TransactionBeginning.php', + 'Illuminate\\Database\\Events\\TransactionCommitted' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Events/TransactionCommitted.php', + 'Illuminate\\Database\\Events\\TransactionRolledBack' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Events/TransactionRolledBack.php', + 'Illuminate\\Database\\Grammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Grammar.php', + 'Illuminate\\Database\\MigrationServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Database/MigrationServiceProvider.php', + 'Illuminate\\Database\\Migrations\\DatabaseMigrationRepository' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php', + 'Illuminate\\Database\\Migrations\\Migration' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Migrations/Migration.php', + 'Illuminate\\Database\\Migrations\\MigrationCreator' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Migrations/MigrationCreator.php', + 'Illuminate\\Database\\Migrations\\MigrationRepositoryInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Migrations/MigrationRepositoryInterface.php', + 'Illuminate\\Database\\Migrations\\Migrator' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php', + 'Illuminate\\Database\\MySqlConnection' => $vendorDir . '/laravel/framework/src/Illuminate/Database/MySqlConnection.php', + 'Illuminate\\Database\\PostgresConnection' => $vendorDir . '/laravel/framework/src/Illuminate/Database/PostgresConnection.php', + 'Illuminate\\Database\\QueryException' => $vendorDir . '/laravel/framework/src/Illuminate/Database/QueryException.php', + 'Illuminate\\Database\\Query\\Builder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Builder.php', + 'Illuminate\\Database\\Query\\Expression' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Expression.php', + 'Illuminate\\Database\\Query\\Grammars\\Grammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Grammars/Grammar.php', + 'Illuminate\\Database\\Query\\Grammars\\MySqlGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Grammars/MySqlGrammar.php', + 'Illuminate\\Database\\Query\\Grammars\\PostgresGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Grammars/PostgresGrammar.php', + 'Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Grammars/SQLiteGrammar.php', + 'Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Grammars/SqlServerGrammar.php', + 'Illuminate\\Database\\Query\\JoinClause' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/JoinClause.php', + 'Illuminate\\Database\\Query\\JsonExpression' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/JsonExpression.php', + 'Illuminate\\Database\\Query\\Processors\\MySqlProcessor' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Processors/MySqlProcessor.php', + 'Illuminate\\Database\\Query\\Processors\\PostgresProcessor' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Processors/PostgresProcessor.php', + 'Illuminate\\Database\\Query\\Processors\\Processor' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php', + 'Illuminate\\Database\\Query\\Processors\\SQLiteProcessor' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Processors/SQLiteProcessor.php', + 'Illuminate\\Database\\Query\\Processors\\SqlServerProcessor' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Query/Processors/SqlServerProcessor.php', + 'Illuminate\\Database\\SQLiteConnection' => $vendorDir . '/laravel/framework/src/Illuminate/Database/SQLiteConnection.php', + 'Illuminate\\Database\\Schema\\Blueprint' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php', + 'Illuminate\\Database\\Schema\\Builder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Builder.php', + 'Illuminate\\Database\\Schema\\Grammars\\Grammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/Grammar.php', + 'Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/MySqlGrammar.php', + 'Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/PostgresGrammar.php', + 'Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/SQLiteGrammar.php', + 'Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/Grammars/SqlServerGrammar.php', + 'Illuminate\\Database\\Schema\\MySqlBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php', + 'Illuminate\\Database\\Schema\\PostgresBuilder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Schema/PostgresBuilder.php', + 'Illuminate\\Database\\SeedServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Database/SeedServiceProvider.php', + 'Illuminate\\Database\\Seeder' => $vendorDir . '/laravel/framework/src/Illuminate/Database/Seeder.php', + 'Illuminate\\Database\\SqlServerConnection' => $vendorDir . '/laravel/framework/src/Illuminate/Database/SqlServerConnection.php', + 'Illuminate\\Encryption\\BaseEncrypter' => $vendorDir . '/laravel/framework/src/Illuminate/Encryption/BaseEncrypter.php', + 'Illuminate\\Encryption\\Encrypter' => $vendorDir . '/laravel/framework/src/Illuminate/Encryption/Encrypter.php', + 'Illuminate\\Encryption\\EncryptionServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php', + 'Illuminate\\Encryption\\McryptEncrypter' => $vendorDir . '/laravel/framework/src/Illuminate/Encryption/McryptEncrypter.php', + 'Illuminate\\Events\\CallQueuedHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Events/CallQueuedHandler.php', + 'Illuminate\\Events\\Dispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Events/Dispatcher.php', + 'Illuminate\\Events\\EventServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Events/EventServiceProvider.php', + 'Illuminate\\Filesystem\\ClassFinder' => $vendorDir . '/laravel/framework/src/Illuminate/Filesystem/ClassFinder.php', + 'Illuminate\\Filesystem\\Filesystem' => $vendorDir . '/laravel/framework/src/Illuminate/Filesystem/Filesystem.php', + 'Illuminate\\Filesystem\\FilesystemAdapter' => $vendorDir . '/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php', + 'Illuminate\\Filesystem\\FilesystemManager' => $vendorDir . '/laravel/framework/src/Illuminate/Filesystem/FilesystemManager.php', + 'Illuminate\\Filesystem\\FilesystemServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Filesystem/FilesystemServiceProvider.php', + 'Illuminate\\Foundation\\AliasLoader' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/AliasLoader.php', + 'Illuminate\\Foundation\\Application' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Application.php', + 'Illuminate\\Foundation\\Auth\\Access\\Authorizable' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/Access/Authorizable.php', + 'Illuminate\\Foundation\\Auth\\Access\\AuthorizesRequests' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/Access/AuthorizesRequests.php', + 'Illuminate\\Foundation\\Auth\\Access\\AuthorizesResources' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/Access/AuthorizesResources.php', + 'Illuminate\\Foundation\\Auth\\AuthenticatesAndRegistersUsers' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/AuthenticatesAndRegistersUsers.php', + 'Illuminate\\Foundation\\Auth\\AuthenticatesUsers' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/AuthenticatesUsers.php', + 'Illuminate\\Foundation\\Auth\\RedirectsUsers' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/RedirectsUsers.php', + 'Illuminate\\Foundation\\Auth\\RegistersUsers' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/RegistersUsers.php', + 'Illuminate\\Foundation\\Auth\\ResetsPasswords' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/ResetsPasswords.php', + 'Illuminate\\Foundation\\Auth\\ThrottlesLogins' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/ThrottlesLogins.php', + 'Illuminate\\Foundation\\Auth\\User' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Auth/User.php', + 'Illuminate\\Foundation\\Bootstrap\\BootProviders' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php', + 'Illuminate\\Foundation\\Bootstrap\\ConfigureLogging' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/ConfigureLogging.php', + 'Illuminate\\Foundation\\Bootstrap\\DetectEnvironment' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/DetectEnvironment.php', + 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php', + 'Illuminate\\Foundation\\Bootstrap\\LoadConfiguration' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php', + 'Illuminate\\Foundation\\Bootstrap\\RegisterFacades' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php', + 'Illuminate\\Foundation\\Bootstrap\\RegisterProviders' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php', + 'Illuminate\\Foundation\\Bootstrap\\SetRequestForConsole' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bootstrap/SetRequestForConsole.php', + 'Illuminate\\Foundation\\Bus\\DispatchesJobs' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Bus/DispatchesJobs.php', + 'Illuminate\\Foundation\\ComposerScripts' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/ComposerScripts.php', + 'Illuminate\\Foundation\\Console\\AppNameCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/AppNameCommand.php', + 'Illuminate\\Foundation\\Console\\ClearCompiledCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ClearCompiledCommand.php', + 'Illuminate\\Foundation\\Console\\ConfigCacheCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ConfigCacheCommand.php', + 'Illuminate\\Foundation\\Console\\ConfigClearCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ConfigClearCommand.php', + 'Illuminate\\Foundation\\Console\\ConsoleMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ConsoleMakeCommand.php', + 'Illuminate\\Foundation\\Console\\DownCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/DownCommand.php', + 'Illuminate\\Foundation\\Console\\EnvironmentCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/EnvironmentCommand.php', + 'Illuminate\\Foundation\\Console\\EventGenerateCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/EventGenerateCommand.php', + 'Illuminate\\Foundation\\Console\\EventMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/EventMakeCommand.php', + 'Illuminate\\Foundation\\Console\\IlluminateCaster' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/IlluminateCaster.php', + 'Illuminate\\Foundation\\Console\\JobMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/JobMakeCommand.php', + 'Illuminate\\Foundation\\Console\\Kernel' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php', + 'Illuminate\\Foundation\\Console\\KeyGenerateCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/KeyGenerateCommand.php', + 'Illuminate\\Foundation\\Console\\ListenerMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ListenerMakeCommand.php', + 'Illuminate\\Foundation\\Console\\ModelMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ModelMakeCommand.php', + 'Illuminate\\Foundation\\Console\\OptimizeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/OptimizeCommand.php', + 'Illuminate\\Foundation\\Console\\PolicyMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/PolicyMakeCommand.php', + 'Illuminate\\Foundation\\Console\\ProviderMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ProviderMakeCommand.php', + 'Illuminate\\Foundation\\Console\\QueuedJob' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/QueuedJob.php', + 'Illuminate\\Foundation\\Console\\RequestMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/RequestMakeCommand.php', + 'Illuminate\\Foundation\\Console\\RouteCacheCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/RouteCacheCommand.php', + 'Illuminate\\Foundation\\Console\\RouteClearCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/RouteClearCommand.php', + 'Illuminate\\Foundation\\Console\\RouteListCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/RouteListCommand.php', + 'Illuminate\\Foundation\\Console\\ServeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ServeCommand.php', + 'Illuminate\\Foundation\\Console\\TestMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/TestMakeCommand.php', + 'Illuminate\\Foundation\\Console\\TinkerCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/TinkerCommand.php', + 'Illuminate\\Foundation\\Console\\UpCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/UpCommand.php', + 'Illuminate\\Foundation\\Console\\VendorPublishCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/VendorPublishCommand.php', + 'Illuminate\\Foundation\\Console\\ViewClearCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Console/ViewClearCommand.php', + 'Illuminate\\Foundation\\EnvironmentDetector' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/EnvironmentDetector.php', + 'Illuminate\\Foundation\\Exceptions\\Handler' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', + 'Illuminate\\Foundation\\Http\\FormRequest' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/FormRequest.php', + 'Illuminate\\Foundation\\Http\\Kernel' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', + 'Illuminate\\Foundation\\Http\\Middleware\\Authorize' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/Authorize.php', + 'Illuminate\\Foundation\\Http\\Middleware\\CheckForMaintenanceMode' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php', + 'Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php', + 'Illuminate\\Foundation\\Http\\Middleware\\VerifyPostSize' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyPostSize.php', + 'Illuminate\\Foundation\\Inspiring' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Inspiring.php', + 'Illuminate\\Foundation\\ProviderRepository' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php', + 'Illuminate\\Foundation\\Providers\\ArtisanServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Providers/ArtisanServiceProvider.php', + 'Illuminate\\Foundation\\Providers\\ComposerServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Providers/ComposerServiceProvider.php', + 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Providers/ConsoleSupportServiceProvider.php', + 'Illuminate\\Foundation\\Providers\\FoundationServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Providers/FoundationServiceProvider.php', + 'Illuminate\\Foundation\\Support\\Providers\\AuthServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Support/Providers/AuthServiceProvider.php', + 'Illuminate\\Foundation\\Support\\Providers\\EventServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Support/Providers/EventServiceProvider.php', + 'Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\ImpersonatesUsers' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/ImpersonatesUsers.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithAuthentication' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithAuthentication.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithConsole' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithConsole.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithContainer' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithContainer.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithDatabase' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithDatabase.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithPages' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithPages.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\InteractsWithSession' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithSession.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\MakesHttpRequests' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php', + 'Illuminate\\Foundation\\Testing\\Concerns\\MocksApplicationServices' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MocksApplicationServices.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\FormFieldConstraint' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/FormFieldConstraint.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\HasElement' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/HasElement.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\HasInElement' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/HasInElement.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\HasLink' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/HasLink.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\HasSource' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/HasSource.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\HasText' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/HasText.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\HasValue' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/HasValue.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\IsChecked' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/IsChecked.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\IsSelected' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/IsSelected.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\PageConstraint' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/PageConstraint.php', + 'Illuminate\\Foundation\\Testing\\Constraints\\ReversePageConstraint' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/ReversePageConstraint.php', + 'Illuminate\\Foundation\\Testing\\DatabaseMigrations' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/DatabaseMigrations.php', + 'Illuminate\\Foundation\\Testing\\DatabaseTransactions' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/DatabaseTransactions.php', + 'Illuminate\\Foundation\\Testing\\HttpException' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/HttpException.php', + 'Illuminate\\Foundation\\Testing\\TestCase' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/TestCase.php', + 'Illuminate\\Foundation\\Testing\\WithoutEvents' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/WithoutEvents.php', + 'Illuminate\\Foundation\\Testing\\WithoutMiddleware' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Testing/WithoutMiddleware.php', + 'Illuminate\\Foundation\\Validation\\ValidatesRequests' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Validation/ValidatesRequests.php', + 'Illuminate\\Foundation\\Validation\\ValidationException' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/Validation/ValidationException.php', + 'Illuminate\\Hashing\\BcryptHasher' => $vendorDir . '/laravel/framework/src/Illuminate/Hashing/BcryptHasher.php', + 'Illuminate\\Hashing\\HashServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Hashing/HashServiceProvider.php', + 'Illuminate\\Html\\FormBuilder' => $vendorDir . '/illuminate/html/FormBuilder.php', + 'Illuminate\\Html\\FormFacade' => $vendorDir . '/illuminate/html/FormFacade.php', + 'Illuminate\\Html\\HtmlBuilder' => $vendorDir . '/illuminate/html/HtmlBuilder.php', + 'Illuminate\\Html\\HtmlFacade' => $vendorDir . '/illuminate/html/HtmlFacade.php', + 'Illuminate\\Html\\HtmlServiceProvider' => $vendorDir . '/illuminate/html/HtmlServiceProvider.php', + 'Illuminate\\Http\\Exception\\HttpResponseException' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Exception/HttpResponseException.php', + 'Illuminate\\Http\\Exception\\PostTooLargeException' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Exception/PostTooLargeException.php', + 'Illuminate\\Http\\JsonResponse' => $vendorDir . '/laravel/framework/src/Illuminate/Http/JsonResponse.php', + 'Illuminate\\Http\\Middleware\\CheckResponseForModifications' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Middleware/CheckResponseForModifications.php', + 'Illuminate\\Http\\Middleware\\FrameGuard' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Middleware/FrameGuard.php', + 'Illuminate\\Http\\RedirectResponse' => $vendorDir . '/laravel/framework/src/Illuminate/Http/RedirectResponse.php', + 'Illuminate\\Http\\Request' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Request.php', + 'Illuminate\\Http\\Response' => $vendorDir . '/laravel/framework/src/Illuminate/Http/Response.php', + 'Illuminate\\Http\\ResponseTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Http/ResponseTrait.php', + 'Illuminate\\Http\\UploadedFile' => $vendorDir . '/laravel/framework/src/Illuminate/Http/UploadedFile.php', + 'Illuminate\\Log\\Writer' => $vendorDir . '/laravel/framework/src/Illuminate/Log/Writer.php', + 'Illuminate\\Mail\\Events\\MessageSending' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Events/MessageSending.php', + 'Illuminate\\Mail\\MailServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/MailServiceProvider.php', + 'Illuminate\\Mail\\Mailer' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Mailer.php', + 'Illuminate\\Mail\\Message' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Message.php', + 'Illuminate\\Mail\\TransportManager' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/TransportManager.php', + 'Illuminate\\Mail\\Transport\\LogTransport' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Transport/LogTransport.php', + 'Illuminate\\Mail\\Transport\\MailgunTransport' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Transport/MailgunTransport.php', + 'Illuminate\\Mail\\Transport\\MandrillTransport' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Transport/MandrillTransport.php', + 'Illuminate\\Mail\\Transport\\SesTransport' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Transport/SesTransport.php', + 'Illuminate\\Mail\\Transport\\SparkPostTransport' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Transport/SparkPostTransport.php', + 'Illuminate\\Mail\\Transport\\Transport' => $vendorDir . '/laravel/framework/src/Illuminate/Mail/Transport/Transport.php', + 'Illuminate\\Pagination\\AbstractPaginator' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/AbstractPaginator.php', + 'Illuminate\\Pagination\\BootstrapFourNextPreviousButtonRendererTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/BootstrapFourNextPreviousButtonRendererTrait.php', + 'Illuminate\\Pagination\\BootstrapFourPresenter' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/BootstrapFourPresenter.php', + 'Illuminate\\Pagination\\BootstrapThreeNextPreviousButtonRendererTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/BootstrapThreeNextPreviousButtonRendererTrait.php', + 'Illuminate\\Pagination\\BootstrapThreePresenter' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/BootstrapThreePresenter.php', + 'Illuminate\\Pagination\\LengthAwarePaginator' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/LengthAwarePaginator.php', + 'Illuminate\\Pagination\\PaginationServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/PaginationServiceProvider.php', + 'Illuminate\\Pagination\\Paginator' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/Paginator.php', + 'Illuminate\\Pagination\\SimpleBootstrapFourPresenter' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/SimpleBootstrapFourPresenter.php', + 'Illuminate\\Pagination\\SimpleBootstrapThreePresenter' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/SimpleBootstrapThreePresenter.php', + 'Illuminate\\Pagination\\UrlWindow' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/UrlWindow.php', + 'Illuminate\\Pagination\\UrlWindowPresenterTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Pagination/UrlWindowPresenterTrait.php', + 'Illuminate\\Pipeline\\Hub' => $vendorDir . '/laravel/framework/src/Illuminate/Pipeline/Hub.php', + 'Illuminate\\Pipeline\\Pipeline' => $vendorDir . '/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', + 'Illuminate\\Pipeline\\PipelineServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Pipeline/PipelineServiceProvider.php', + 'Illuminate\\Queue\\BeanstalkdQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/BeanstalkdQueue.php', + 'Illuminate\\Queue\\CallQueuedHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php', + 'Illuminate\\Queue\\Capsule\\Manager' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Capsule/Manager.php', + 'Illuminate\\Queue\\Connectors\\BeanstalkdConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/BeanstalkdConnector.php', + 'Illuminate\\Queue\\Connectors\\ConnectorInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/ConnectorInterface.php', + 'Illuminate\\Queue\\Connectors\\DatabaseConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/DatabaseConnector.php', + 'Illuminate\\Queue\\Connectors\\NullConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/NullConnector.php', + 'Illuminate\\Queue\\Connectors\\RedisConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/RedisConnector.php', + 'Illuminate\\Queue\\Connectors\\SqsConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/SqsConnector.php', + 'Illuminate\\Queue\\Connectors\\SyncConnector' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Connectors/SyncConnector.php', + 'Illuminate\\Queue\\ConsoleServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/ConsoleServiceProvider.php', + 'Illuminate\\Queue\\Console\\FailedTableCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/FailedTableCommand.php', + 'Illuminate\\Queue\\Console\\FlushFailedCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/FlushFailedCommand.php', + 'Illuminate\\Queue\\Console\\ForgetFailedCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/ForgetFailedCommand.php', + 'Illuminate\\Queue\\Console\\ListFailedCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/ListFailedCommand.php', + 'Illuminate\\Queue\\Console\\ListenCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/ListenCommand.php', + 'Illuminate\\Queue\\Console\\RestartCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/RestartCommand.php', + 'Illuminate\\Queue\\Console\\RetryCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/RetryCommand.php', + 'Illuminate\\Queue\\Console\\TableCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/TableCommand.php', + 'Illuminate\\Queue\\Console\\WorkCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php', + 'Illuminate\\Queue\\DatabaseQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/DatabaseQueue.php', + 'Illuminate\\Queue\\Events\\JobExceptionOccurred' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Events/JobExceptionOccurred.php', + 'Illuminate\\Queue\\Events\\JobFailed' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Events/JobFailed.php', + 'Illuminate\\Queue\\Events\\JobProcessed' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Events/JobProcessed.php', + 'Illuminate\\Queue\\Events\\JobProcessing' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Events/JobProcessing.php', + 'Illuminate\\Queue\\Events\\WorkerStopping' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Events/WorkerStopping.php', + 'Illuminate\\Queue\\Failed\\DatabaseFailedJobProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Failed/DatabaseFailedJobProvider.php', + 'Illuminate\\Queue\\Failed\\FailedJobProviderInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Failed/FailedJobProviderInterface.php', + 'Illuminate\\Queue\\Failed\\NullFailedJobProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Failed/NullFailedJobProvider.php', + 'Illuminate\\Queue\\InteractsWithQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/InteractsWithQueue.php', + 'Illuminate\\Queue\\Jobs\\BeanstalkdJob' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/BeanstalkdJob.php', + 'Illuminate\\Queue\\Jobs\\DatabaseJob' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/DatabaseJob.php', + 'Illuminate\\Queue\\Jobs\\Job' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/Job.php', + 'Illuminate\\Queue\\Jobs\\RedisJob' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/RedisJob.php', + 'Illuminate\\Queue\\Jobs\\SqsJob' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/SqsJob.php', + 'Illuminate\\Queue\\Jobs\\SyncJob' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Jobs/SyncJob.php', + 'Illuminate\\Queue\\Listener' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Listener.php', + 'Illuminate\\Queue\\NullQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/NullQueue.php', + 'Illuminate\\Queue\\Queue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Queue.php', + 'Illuminate\\Queue\\QueueManager' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/QueueManager.php', + 'Illuminate\\Queue\\QueueServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/QueueServiceProvider.php', + 'Illuminate\\Queue\\RedisQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/RedisQueue.php', + 'Illuminate\\Queue\\SerializesModels' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/SerializesModels.php', + 'Illuminate\\Queue\\SqsQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/SqsQueue.php', + 'Illuminate\\Queue\\SyncQueue' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/SyncQueue.php', + 'Illuminate\\Queue\\Worker' => $vendorDir . '/laravel/framework/src/Illuminate/Queue/Worker.php', + 'Illuminate\\Redis\\Database' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/Database.php', + 'Illuminate\\Redis\\RedisServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Redis/RedisServiceProvider.php', + 'Illuminate\\Routing\\Console\\ControllerMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Console/ControllerMakeCommand.php', + 'Illuminate\\Routing\\Console\\MiddlewareMakeCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Console/MiddlewareMakeCommand.php', + 'Illuminate\\Routing\\Controller' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Controller.php', + 'Illuminate\\Routing\\ControllerDispatcher' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php', + 'Illuminate\\Routing\\ControllerInspector' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/ControllerInspector.php', + 'Illuminate\\Routing\\ControllerMiddlewareOptions' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/ControllerMiddlewareOptions.php', + 'Illuminate\\Routing\\Events\\RouteMatched' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Events/RouteMatched.php', + 'Illuminate\\Routing\\Exceptions\\UrlGenerationException' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Exceptions/UrlGenerationException.php', + 'Illuminate\\Routing\\Matching\\HostValidator' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Matching/HostValidator.php', + 'Illuminate\\Routing\\Matching\\MethodValidator' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Matching/MethodValidator.php', + 'Illuminate\\Routing\\Matching\\SchemeValidator' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Matching/SchemeValidator.php', + 'Illuminate\\Routing\\Matching\\UriValidator' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Matching/UriValidator.php', + 'Illuminate\\Routing\\Matching\\ValidatorInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Matching/ValidatorInterface.php', + 'Illuminate\\Routing\\Middleware\\ThrottleRequests' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php', + 'Illuminate\\Routing\\Pipeline' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Pipeline.php', + 'Illuminate\\Routing\\Redirector' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Redirector.php', + 'Illuminate\\Routing\\ResourceRegistrar' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/ResourceRegistrar.php', + 'Illuminate\\Routing\\ResponseFactory' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/ResponseFactory.php', + 'Illuminate\\Routing\\Route' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Route.php', + 'Illuminate\\Routing\\RouteCollection' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RouteCollection.php', + 'Illuminate\\Routing\\RouteDependencyResolverTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RouteDependencyResolverTrait.php', + 'Illuminate\\Routing\\Router' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/Router.php', + 'Illuminate\\Routing\\RoutingServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php', + 'Illuminate\\Routing\\UrlGenerator' => $vendorDir . '/laravel/framework/src/Illuminate/Routing/UrlGenerator.php', + 'Illuminate\\Session\\CacheBasedSessionHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Session/CacheBasedSessionHandler.php', + 'Illuminate\\Session\\Console\\SessionTableCommand' => $vendorDir . '/laravel/framework/src/Illuminate/Session/Console/SessionTableCommand.php', + 'Illuminate\\Session\\CookieSessionHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Session/CookieSessionHandler.php', + 'Illuminate\\Session\\DatabaseSessionHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Session/DatabaseSessionHandler.php', + 'Illuminate\\Session\\EncryptedStore' => $vendorDir . '/laravel/framework/src/Illuminate/Session/EncryptedStore.php', + 'Illuminate\\Session\\ExistenceAwareInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Session/ExistenceAwareInterface.php', + 'Illuminate\\Session\\FileSessionHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Session/FileSessionHandler.php', + 'Illuminate\\Session\\LegacyDatabaseSessionHandler' => $vendorDir . '/laravel/framework/src/Illuminate/Session/LegacyDatabaseSessionHandler.php', + 'Illuminate\\Session\\Middleware\\StartSession' => $vendorDir . '/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php', + 'Illuminate\\Session\\SessionInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Session/SessionInterface.php', + 'Illuminate\\Session\\SessionManager' => $vendorDir . '/laravel/framework/src/Illuminate/Session/SessionManager.php', + 'Illuminate\\Session\\SessionServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Session/SessionServiceProvider.php', + 'Illuminate\\Session\\Store' => $vendorDir . '/laravel/framework/src/Illuminate/Session/Store.php', + 'Illuminate\\Session\\TokenMismatchException' => $vendorDir . '/laravel/framework/src/Illuminate/Session/TokenMismatchException.php', + 'Illuminate\\Support\\AggregateServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Support/AggregateServiceProvider.php', + 'Illuminate\\Support\\Arr' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Arr.php', + 'Illuminate\\Support\\ClassLoader' => $vendorDir . '/laravel/framework/src/Illuminate/Support/ClassLoader.php', + 'Illuminate\\Support\\Collection' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Collection.php', + 'Illuminate\\Support\\Composer' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Composer.php', + 'Illuminate\\Support\\Debug\\Dumper' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Debug/Dumper.php', + 'Illuminate\\Support\\Debug\\HtmlDumper' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Debug/HtmlDumper.php', + 'Illuminate\\Support\\Facades\\App' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/App.php', + 'Illuminate\\Support\\Facades\\Artisan' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Artisan.php', + 'Illuminate\\Support\\Facades\\Auth' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Auth.php', + 'Illuminate\\Support\\Facades\\Blade' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Blade.php', + 'Illuminate\\Support\\Facades\\Bus' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Bus.php', + 'Illuminate\\Support\\Facades\\Cache' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Cache.php', + 'Illuminate\\Support\\Facades\\Config' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Config.php', + 'Illuminate\\Support\\Facades\\Cookie' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Cookie.php', + 'Illuminate\\Support\\Facades\\Crypt' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Crypt.php', + 'Illuminate\\Support\\Facades\\DB' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/DB.php', + 'Illuminate\\Support\\Facades\\Event' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Event.php', + 'Illuminate\\Support\\Facades\\Facade' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Facade.php', + 'Illuminate\\Support\\Facades\\File' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/File.php', + 'Illuminate\\Support\\Facades\\Gate' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Gate.php', + 'Illuminate\\Support\\Facades\\Hash' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Hash.php', + 'Illuminate\\Support\\Facades\\Input' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Input.php', + 'Illuminate\\Support\\Facades\\Lang' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Lang.php', + 'Illuminate\\Support\\Facades\\Log' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Log.php', + 'Illuminate\\Support\\Facades\\Mail' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Mail.php', + 'Illuminate\\Support\\Facades\\Password' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Password.php', + 'Illuminate\\Support\\Facades\\Queue' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Queue.php', + 'Illuminate\\Support\\Facades\\Redirect' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Redirect.php', + 'Illuminate\\Support\\Facades\\Redis' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Redis.php', + 'Illuminate\\Support\\Facades\\Request' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Request.php', + 'Illuminate\\Support\\Facades\\Response' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Response.php', + 'Illuminate\\Support\\Facades\\Route' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Route.php', + 'Illuminate\\Support\\Facades\\Schema' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Schema.php', + 'Illuminate\\Support\\Facades\\Session' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Session.php', + 'Illuminate\\Support\\Facades\\Storage' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Storage.php', + 'Illuminate\\Support\\Facades\\URL' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/URL.php', + 'Illuminate\\Support\\Facades\\Validator' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/Validator.php', + 'Illuminate\\Support\\Facades\\View' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Facades/View.php', + 'Illuminate\\Support\\Fluent' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Fluent.php', + 'Illuminate\\Support\\HtmlString' => $vendorDir . '/laravel/framework/src/Illuminate/Support/HtmlString.php', + 'Illuminate\\Support\\Manager' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Manager.php', + 'Illuminate\\Support\\MessageBag' => $vendorDir . '/laravel/framework/src/Illuminate/Support/MessageBag.php', + 'Illuminate\\Support\\NamespacedItemResolver' => $vendorDir . '/laravel/framework/src/Illuminate/Support/NamespacedItemResolver.php', + 'Illuminate\\Support\\Pluralizer' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Pluralizer.php', + 'Illuminate\\Support\\ServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Support/ServiceProvider.php', + 'Illuminate\\Support\\Str' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Str.php', + 'Illuminate\\Support\\Traits\\CapsuleManagerTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Traits/CapsuleManagerTrait.php', + 'Illuminate\\Support\\Traits\\Macroable' => $vendorDir . '/laravel/framework/src/Illuminate/Support/Traits/Macroable.php', + 'Illuminate\\Support\\ViewErrorBag' => $vendorDir . '/laravel/framework/src/Illuminate/Support/ViewErrorBag.php', + 'Illuminate\\Translation\\ArrayLoader' => $vendorDir . '/laravel/framework/src/Illuminate/Translation/ArrayLoader.php', + 'Illuminate\\Translation\\FileLoader' => $vendorDir . '/laravel/framework/src/Illuminate/Translation/FileLoader.php', + 'Illuminate\\Translation\\LoaderInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Translation/LoaderInterface.php', + 'Illuminate\\Translation\\TranslationServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Translation/TranslationServiceProvider.php', + 'Illuminate\\Translation\\Translator' => $vendorDir . '/laravel/framework/src/Illuminate/Translation/Translator.php', + 'Illuminate\\Validation\\DatabasePresenceVerifier' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/DatabasePresenceVerifier.php', + 'Illuminate\\Validation\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Factory.php', + 'Illuminate\\Validation\\PresenceVerifierInterface' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/PresenceVerifierInterface.php', + 'Illuminate\\Validation\\ValidatesWhenResolvedTrait' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/ValidatesWhenResolvedTrait.php', + 'Illuminate\\Validation\\ValidationException' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/ValidationException.php', + 'Illuminate\\Validation\\ValidationServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/ValidationServiceProvider.php', + 'Illuminate\\Validation\\Validator' => $vendorDir . '/laravel/framework/src/Illuminate/Validation/Validator.php', + 'Illuminate\\View\\Compilers\\BladeCompiler' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php', + 'Illuminate\\View\\Compilers\\Compiler' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/Compiler.php', + 'Illuminate\\View\\Compilers\\CompilerInterface' => $vendorDir . '/laravel/framework/src/Illuminate/View/Compilers/CompilerInterface.php', + 'Illuminate\\View\\Engines\\CompilerEngine' => $vendorDir . '/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php', + 'Illuminate\\View\\Engines\\Engine' => $vendorDir . '/laravel/framework/src/Illuminate/View/Engines/Engine.php', + 'Illuminate\\View\\Engines\\EngineInterface' => $vendorDir . '/laravel/framework/src/Illuminate/View/Engines/EngineInterface.php', + 'Illuminate\\View\\Engines\\EngineResolver' => $vendorDir . '/laravel/framework/src/Illuminate/View/Engines/EngineResolver.php', + 'Illuminate\\View\\Engines\\PhpEngine' => $vendorDir . '/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php', + 'Illuminate\\View\\Expression' => $vendorDir . '/laravel/framework/src/Illuminate/View/Expression.php', + 'Illuminate\\View\\Factory' => $vendorDir . '/laravel/framework/src/Illuminate/View/Factory.php', + 'Illuminate\\View\\FileViewFinder' => $vendorDir . '/laravel/framework/src/Illuminate/View/FileViewFinder.php', + 'Illuminate\\View\\Middleware\\ShareErrorsFromSession' => $vendorDir . '/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php', + 'Illuminate\\View\\View' => $vendorDir . '/laravel/framework/src/Illuminate/View/View.php', + 'Illuminate\\View\\ViewFinderInterface' => $vendorDir . '/laravel/framework/src/Illuminate/View/ViewFinderInterface.php', + 'Illuminate\\View\\ViewServiceProvider' => $vendorDir . '/laravel/framework/src/Illuminate/View/ViewServiceProvider.php', 'Image_Cache' => $vendorDir . '/dompdf/dompdf/include/image_cache.cls.php', 'Image_Frame_Decorator' => $vendorDir . '/dompdf/dompdf/include/image_frame_decorator.cls.php', 'Image_Frame_Reflower' => $vendorDir . '/dompdf/dompdf/include/image_frame_reflower.cls.php', @@ -179,7 +1999,265 @@ return array( 'Inline_Frame_Reflower' => $vendorDir . '/dompdf/dompdf/include/inline_frame_reflower.cls.php', 'Inline_Positioner' => $vendorDir . '/dompdf/dompdf/include/inline_positioner.cls.php', 'Inline_Renderer' => $vendorDir . '/dompdf/dompdf/include/inline_renderer.cls.php', + 'Interop\\Container\\ContainerInterface' => $vendorDir . '/container-interop/container-interop/src/Interop/Container/ContainerInterface.php', + 'Interop\\Container\\Exception\\ContainerException' => $vendorDir . '/container-interop/container-interop/src/Interop/Container/Exception/ContainerException.php', + 'Interop\\Container\\Exception\\NotFoundException' => $vendorDir . '/container-interop/container-interop/src/Interop/Container/Exception/NotFoundException.php', + 'Intervention\\Image\\AbstractColor' => $vendorDir . '/intervention/image/src/Intervention/Image/AbstractColor.php', + 'Intervention\\Image\\AbstractDecoder' => $vendorDir . '/intervention/image/src/Intervention/Image/AbstractDecoder.php', + 'Intervention\\Image\\AbstractDriver' => $vendorDir . '/intervention/image/src/Intervention/Image/AbstractDriver.php', + 'Intervention\\Image\\AbstractEncoder' => $vendorDir . '/intervention/image/src/Intervention/Image/AbstractEncoder.php', + 'Intervention\\Image\\AbstractFont' => $vendorDir . '/intervention/image/src/Intervention/Image/AbstractFont.php', + 'Intervention\\Image\\AbstractShape' => $vendorDir . '/intervention/image/src/Intervention/Image/AbstractShape.php', + 'Intervention\\Image\\Commands\\AbstractCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/AbstractCommand.php', + 'Intervention\\Image\\Commands\\Argument' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/Argument.php', + 'Intervention\\Image\\Commands\\ChecksumCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/ChecksumCommand.php', + 'Intervention\\Image\\Commands\\CircleCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/CircleCommand.php', + 'Intervention\\Image\\Commands\\EllipseCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/EllipseCommand.php', + 'Intervention\\Image\\Commands\\ExifCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/ExifCommand.php', + 'Intervention\\Image\\Commands\\IptcCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/IptcCommand.php', + 'Intervention\\Image\\Commands\\LineCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/LineCommand.php', + 'Intervention\\Image\\Commands\\OrientateCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/OrientateCommand.php', + 'Intervention\\Image\\Commands\\PolygonCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/PolygonCommand.php', + 'Intervention\\Image\\Commands\\PsrResponseCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/PsrResponseCommand.php', + 'Intervention\\Image\\Commands\\RectangleCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/RectangleCommand.php', + 'Intervention\\Image\\Commands\\ResponseCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/ResponseCommand.php', + 'Intervention\\Image\\Commands\\StreamCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/StreamCommand.php', + 'Intervention\\Image\\Commands\\TextCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Commands/TextCommand.php', + 'Intervention\\Image\\Constraint' => $vendorDir . '/intervention/image/src/Intervention/Image/Constraint.php', + 'Intervention\\Image\\Exception\\InvalidArgumentException' => $vendorDir . '/intervention/image/src/Intervention/Image/Exception/InvalidArgumentException.php', + 'Intervention\\Image\\Exception\\MissingDependencyException' => $vendorDir . '/intervention/image/src/Intervention/Image/Exception/MissingDependencyException.php', + 'Intervention\\Image\\Exception\\NotFoundException' => $vendorDir . '/intervention/image/src/Intervention/Image/Exception/NotFoundException.php', + 'Intervention\\Image\\Exception\\NotReadableException' => $vendorDir . '/intervention/image/src/Intervention/Image/Exception/NotReadableException.php', + 'Intervention\\Image\\Exception\\NotSupportedException' => $vendorDir . '/intervention/image/src/Intervention/Image/Exception/NotSupportedException.php', + 'Intervention\\Image\\Exception\\NotWritableException' => $vendorDir . '/intervention/image/src/Intervention/Image/Exception/NotWritableException.php', + 'Intervention\\Image\\Exception\\RuntimeException' => $vendorDir . '/intervention/image/src/Intervention/Image/Exception/RuntimeException.php', + 'Intervention\\Image\\Facades\\Image' => $vendorDir . '/intervention/image/src/Intervention/Image/Facades/Image.php', + 'Intervention\\Image\\File' => $vendorDir . '/intervention/image/src/Intervention/Image/File.php', + 'Intervention\\Image\\Filters\\DemoFilter' => $vendorDir . '/intervention/image/src/Intervention/Image/Filters/DemoFilter.php', + 'Intervention\\Image\\Filters\\FilterInterface' => $vendorDir . '/intervention/image/src/Intervention/Image/Filters/FilterInterface.php', + 'Intervention\\Image\\Gd\\Color' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Color.php', + 'Intervention\\Image\\Gd\\Commands\\BackupCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/BackupCommand.php', + 'Intervention\\Image\\Gd\\Commands\\BlurCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/BlurCommand.php', + 'Intervention\\Image\\Gd\\Commands\\BrightnessCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/BrightnessCommand.php', + 'Intervention\\Image\\Gd\\Commands\\ColorizeCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/ColorizeCommand.php', + 'Intervention\\Image\\Gd\\Commands\\ContrastCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/ContrastCommand.php', + 'Intervention\\Image\\Gd\\Commands\\CropCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/CropCommand.php', + 'Intervention\\Image\\Gd\\Commands\\DestroyCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/DestroyCommand.php', + 'Intervention\\Image\\Gd\\Commands\\FillCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/FillCommand.php', + 'Intervention\\Image\\Gd\\Commands\\FitCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/FitCommand.php', + 'Intervention\\Image\\Gd\\Commands\\FlipCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/FlipCommand.php', + 'Intervention\\Image\\Gd\\Commands\\GammaCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/GammaCommand.php', + 'Intervention\\Image\\Gd\\Commands\\GetSizeCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/GetSizeCommand.php', + 'Intervention\\Image\\Gd\\Commands\\GreyscaleCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/GreyscaleCommand.php', + 'Intervention\\Image\\Gd\\Commands\\HeightenCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/HeightenCommand.php', + 'Intervention\\Image\\Gd\\Commands\\InsertCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/InsertCommand.php', + 'Intervention\\Image\\Gd\\Commands\\InterlaceCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/InterlaceCommand.php', + 'Intervention\\Image\\Gd\\Commands\\InvertCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/InvertCommand.php', + 'Intervention\\Image\\Gd\\Commands\\LimitColorsCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/LimitColorsCommand.php', + 'Intervention\\Image\\Gd\\Commands\\MaskCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/MaskCommand.php', + 'Intervention\\Image\\Gd\\Commands\\OpacityCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/OpacityCommand.php', + 'Intervention\\Image\\Gd\\Commands\\PickColorCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/PickColorCommand.php', + 'Intervention\\Image\\Gd\\Commands\\PixelCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/PixelCommand.php', + 'Intervention\\Image\\Gd\\Commands\\PixelateCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/PixelateCommand.php', + 'Intervention\\Image\\Gd\\Commands\\ResetCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/ResetCommand.php', + 'Intervention\\Image\\Gd\\Commands\\ResizeCanvasCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/ResizeCanvasCommand.php', + 'Intervention\\Image\\Gd\\Commands\\ResizeCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/ResizeCommand.php', + 'Intervention\\Image\\Gd\\Commands\\RotateCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/RotateCommand.php', + 'Intervention\\Image\\Gd\\Commands\\SharpenCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/SharpenCommand.php', + 'Intervention\\Image\\Gd\\Commands\\TrimCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/TrimCommand.php', + 'Intervention\\Image\\Gd\\Commands\\WidenCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Commands/WidenCommand.php', + 'Intervention\\Image\\Gd\\Decoder' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Decoder.php', + 'Intervention\\Image\\Gd\\Driver' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Driver.php', + 'Intervention\\Image\\Gd\\Encoder' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Encoder.php', + 'Intervention\\Image\\Gd\\Font' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Font.php', + 'Intervention\\Image\\Gd\\Shapes\\CircleShape' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Shapes/CircleShape.php', + 'Intervention\\Image\\Gd\\Shapes\\EllipseShape' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Shapes/EllipseShape.php', + 'Intervention\\Image\\Gd\\Shapes\\LineShape' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Shapes/LineShape.php', + 'Intervention\\Image\\Gd\\Shapes\\PolygonShape' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Shapes/PolygonShape.php', + 'Intervention\\Image\\Gd\\Shapes\\RectangleShape' => $vendorDir . '/intervention/image/src/Intervention/Image/Gd/Shapes/RectangleShape.php', + 'Intervention\\Image\\Image' => $vendorDir . '/intervention/image/src/Intervention/Image/Image.php', + 'Intervention\\Image\\ImageManager' => $vendorDir . '/intervention/image/src/Intervention/Image/ImageManager.php', + 'Intervention\\Image\\ImageManagerStatic' => $vendorDir . '/intervention/image/src/Intervention/Image/ImageManagerStatic.php', + 'Intervention\\Image\\ImageServiceProvider' => $vendorDir . '/intervention/image/src/Intervention/Image/ImageServiceProvider.php', + 'Intervention\\Image\\ImageServiceProviderLaravel4' => $vendorDir . '/intervention/image/src/Intervention/Image/ImageServiceProviderLaravel4.php', + 'Intervention\\Image\\ImageServiceProviderLaravel5' => $vendorDir . '/intervention/image/src/Intervention/Image/ImageServiceProviderLaravel5.php', + 'Intervention\\Image\\ImageServiceProviderLeague' => $vendorDir . '/intervention/image/src/Intervention/Image/ImageServiceProviderLeague.php', + 'Intervention\\Image\\ImageServiceProviderLumen' => $vendorDir . '/intervention/image/src/Intervention/Image/ImageServiceProviderLumen.php', + 'Intervention\\Image\\Imagick\\Color' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Color.php', + 'Intervention\\Image\\Imagick\\Commands\\BackupCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/BackupCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\BlurCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/BlurCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\BrightnessCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/BrightnessCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\ColorizeCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/ColorizeCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\ContrastCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/ContrastCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\CropCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/CropCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\DestroyCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/DestroyCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\FillCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/FillCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\FitCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/FitCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\FlipCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/FlipCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\GammaCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/GammaCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\GetSizeCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/GetSizeCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\GreyscaleCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/GreyscaleCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\HeightenCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/HeightenCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\InsertCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/InsertCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\InterlaceCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/InterlaceCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\InvertCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/InvertCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\LimitColorsCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/LimitColorsCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\MaskCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/MaskCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\OpacityCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/OpacityCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\PickColorCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/PickColorCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\PixelCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/PixelCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\PixelateCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/PixelateCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\ResetCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/ResetCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\ResizeCanvasCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/ResizeCanvasCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\ResizeCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/ResizeCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\RotateCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/RotateCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\SharpenCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/SharpenCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\TrimCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/TrimCommand.php', + 'Intervention\\Image\\Imagick\\Commands\\WidenCommand' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Commands/WidenCommand.php', + 'Intervention\\Image\\Imagick\\Decoder' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Decoder.php', + 'Intervention\\Image\\Imagick\\Driver' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Driver.php', + 'Intervention\\Image\\Imagick\\Encoder' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Encoder.php', + 'Intervention\\Image\\Imagick\\Font' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Font.php', + 'Intervention\\Image\\Imagick\\Shapes\\CircleShape' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Shapes/CircleShape.php', + 'Intervention\\Image\\Imagick\\Shapes\\EllipseShape' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Shapes/EllipseShape.php', + 'Intervention\\Image\\Imagick\\Shapes\\LineShape' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Shapes/LineShape.php', + 'Intervention\\Image\\Imagick\\Shapes\\PolygonShape' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Shapes/PolygonShape.php', + 'Intervention\\Image\\Imagick\\Shapes\\RectangleShape' => $vendorDir . '/intervention/image/src/Intervention/Image/Imagick/Shapes/RectangleShape.php', + 'Intervention\\Image\\Point' => $vendorDir . '/intervention/image/src/Intervention/Image/Point.php', + 'Intervention\\Image\\Response' => $vendorDir . '/intervention/image/src/Intervention/Image/Response.php', + 'Intervention\\Image\\Size' => $vendorDir . '/intervention/image/src/Intervention/Image/Size.php', + 'Iso3166\\Codes' => $vendorDir . '/julien-c/iso3166/src/Codes.php', + 'JakubOnderka\\PhpConsoleColor\\ConsoleColor' => $vendorDir . '/jakub-onderka/php-console-color/src/JakubOnderka/PhpConsoleColor/ConsoleColor.php', + 'JakubOnderka\\PhpConsoleColor\\InvalidStyleException' => $vendorDir . '/jakub-onderka/php-console-color/src/JakubOnderka/PhpConsoleColor/InvalidStyleException.php', + 'JakubOnderka\\PhpConsoleHighlighter\\Highlighter' => $vendorDir . '/jakub-onderka/php-console-highlighter/src/JakubOnderka/PhpConsoleHighlighter/Highlighter.php', 'Javascript_Embedder' => $vendorDir . '/dompdf/dompdf/include/javascript_embedder.cls.php', + 'JmesPath\\AstRuntime' => $vendorDir . '/mtdowling/jmespath.php/src/AstRuntime.php', + 'JmesPath\\CompilerRuntime' => $vendorDir . '/mtdowling/jmespath.php/src/CompilerRuntime.php', + 'JmesPath\\DebugRuntime' => $vendorDir . '/mtdowling/jmespath.php/src/DebugRuntime.php', + 'JmesPath\\Env' => $vendorDir . '/mtdowling/jmespath.php/src/Env.php', + 'JmesPath\\FnDispatcher' => $vendorDir . '/mtdowling/jmespath.php/src/FnDispatcher.php', + 'JmesPath\\Lexer' => $vendorDir . '/mtdowling/jmespath.php/src/Lexer.php', + 'JmesPath\\Parser' => $vendorDir . '/mtdowling/jmespath.php/src/Parser.php', + 'JmesPath\\SyntaxErrorException' => $vendorDir . '/mtdowling/jmespath.php/src/SyntaxErrorException.php', + 'JmesPath\\TreeCompiler' => $vendorDir . '/mtdowling/jmespath.php/src/TreeCompiler.php', + 'JmesPath\\TreeInterpreter' => $vendorDir . '/mtdowling/jmespath.php/src/TreeInterpreter.php', + 'JmesPath\\Utils' => $vendorDir . '/mtdowling/jmespath.php/src/Utils.php', + 'LaravelFCM\\FCMManager' => $vendorDir . '/brozot/laravel-fcm/src/FCMManager.php', + 'LaravelFCM\\FCMServiceProvider' => $vendorDir . '/brozot/laravel-fcm/src/FCMServiceProvider.php', + 'LaravelFCM\\Facades\\FCM' => $vendorDir . '/brozot/laravel-fcm/src/Facades/FCM.php', + 'LaravelFCM\\Facades\\FCMGroup' => $vendorDir . '/brozot/laravel-fcm/src/Facades/FCMGroup.php', + 'LaravelFCM\\Message\\Exceptions\\InvalidOptionsException' => $vendorDir . '/brozot/laravel-fcm/src/Message/Exceptions/InvalidOptionsException.php', + 'LaravelFCM\\Message\\Exceptions\\NoTopicProvidedException' => $vendorDir . '/brozot/laravel-fcm/src/Message/Exceptions/NoTopicProvidedException.php', + 'LaravelFCM\\Message\\Options' => $vendorDir . '/brozot/laravel-fcm/src/Message/Options.php', + 'LaravelFCM\\Message\\OptionsBuilder' => $vendorDir . '/brozot/laravel-fcm/src/Message/OptionsBuilder.php', + 'LaravelFCM\\Message\\OptionsPriorities' => $vendorDir . '/brozot/laravel-fcm/src/Message/OptionsBuilder.php', + 'LaravelFCM\\Message\\PayloadData' => $vendorDir . '/brozot/laravel-fcm/src/Message/PayloadData.php', + 'LaravelFCM\\Message\\PayloadDataBuilder' => $vendorDir . '/brozot/laravel-fcm/src/Message/PayloadDataBuilder.php', + 'LaravelFCM\\Message\\PayloadNotification' => $vendorDir . '/brozot/laravel-fcm/src/Message/PayloadNotification.php', + 'LaravelFCM\\Message\\PayloadNotificationBuilder' => $vendorDir . '/brozot/laravel-fcm/src/Message/PayloadNotificationBuilder.php', + 'LaravelFCM\\Message\\Topics' => $vendorDir . '/brozot/laravel-fcm/src/Message/Topics.php', + 'LaravelFCM\\Mocks\\MockDownstreamResponse' => $vendorDir . '/brozot/laravel-fcm/tests/mocks/MockDownstreamResponse.php', + 'LaravelFCM\\Mocks\\MockGroupResponse' => $vendorDir . '/brozot/laravel-fcm/tests/mocks/MockGroupResponse.php', + 'LaravelFCM\\Mocks\\MockTopicResponse' => $vendorDir . '/brozot/laravel-fcm/tests/mocks/MockTopicResponse.php', + 'LaravelFCM\\Request\\BaseRequest' => $vendorDir . '/brozot/laravel-fcm/src/Request/BaseRequest.php', + 'LaravelFCM\\Request\\GroupRequest' => $vendorDir . '/brozot/laravel-fcm/src/Request/GroupRequest.php', + 'LaravelFCM\\Request\\Request' => $vendorDir . '/brozot/laravel-fcm/src/Request/Request.php', + 'LaravelFCM\\Response\\BaseResponse' => $vendorDir . '/brozot/laravel-fcm/src/Response/BaseResponse.php', + 'LaravelFCM\\Response\\DownstreamResponse' => $vendorDir . '/brozot/laravel-fcm/src/Response/DownstreamResponse.php', + 'LaravelFCM\\Response\\DownstreamResponseContract' => $vendorDir . '/brozot/laravel-fcm/src/Response/DownstreamResponseContract.php', + 'LaravelFCM\\Response\\Exceptions\\InvalidRequestException' => $vendorDir . '/brozot/laravel-fcm/src/Response/Exceptions/InvalidRequestException.php', + 'LaravelFCM\\Response\\Exceptions\\ServerResponseException' => $vendorDir . '/brozot/laravel-fcm/src/Response/Exceptions/ServerResponseException.php', + 'LaravelFCM\\Response\\Exceptions\\UnauthorizedRequestException' => $vendorDir . '/brozot/laravel-fcm/src/Response/Exceptions/UnauthorizedRequestException.php', + 'LaravelFCM\\Response\\GroupResponse' => $vendorDir . '/brozot/laravel-fcm/src/Response/GroupResponse.php', + 'LaravelFCM\\Response\\GroupResponseContract' => $vendorDir . '/brozot/laravel-fcm/src/Response/GroupResponseContract.php', + 'LaravelFCM\\Response\\TopicResponse' => $vendorDir . '/brozot/laravel-fcm/src/Response/TopicResponse.php', + 'LaravelFCM\\Response\\TopicResponseContract' => $vendorDir . '/brozot/laravel-fcm/src/Response/TopicResponseContract.php', + 'LaravelFCM\\Sender\\FCMGroup' => $vendorDir . '/brozot/laravel-fcm/src/Sender/FCMGroup.php', + 'LaravelFCM\\Sender\\FCMSender' => $vendorDir . '/brozot/laravel-fcm/src/Sender/FCMSender.php', + 'LaravelFCM\\Sender\\HTTPSender' => $vendorDir . '/brozot/laravel-fcm/src/Sender/HTTPSender.php', + 'Laravel\\Socialite\\AbstractUser' => $vendorDir . '/laravel/socialite/src/AbstractUser.php', + 'Laravel\\Socialite\\Contracts\\Factory' => $vendorDir . '/laravel/socialite/src/Contracts/Factory.php', + 'Laravel\\Socialite\\Contracts\\Provider' => $vendorDir . '/laravel/socialite/src/Contracts/Provider.php', + 'Laravel\\Socialite\\Contracts\\User' => $vendorDir . '/laravel/socialite/src/Contracts/User.php', + 'Laravel\\Socialite\\Facades\\Socialite' => $vendorDir . '/laravel/socialite/src/Facades/Socialite.php', + 'Laravel\\Socialite\\One\\AbstractProvider' => $vendorDir . '/laravel/socialite/src/One/AbstractProvider.php', + 'Laravel\\Socialite\\One\\BitbucketProvider' => $vendorDir . '/laravel/socialite/src/One/BitbucketProvider.php', + 'Laravel\\Socialite\\One\\TwitterProvider' => $vendorDir . '/laravel/socialite/src/One/TwitterProvider.php', + 'Laravel\\Socialite\\One\\User' => $vendorDir . '/laravel/socialite/src/One/User.php', + 'Laravel\\Socialite\\SocialiteManager' => $vendorDir . '/laravel/socialite/src/SocialiteManager.php', + 'Laravel\\Socialite\\SocialiteServiceProvider' => $vendorDir . '/laravel/socialite/src/SocialiteServiceProvider.php', + 'Laravel\\Socialite\\Two\\AbstractProvider' => $vendorDir . '/laravel/socialite/src/Two/AbstractProvider.php', + 'Laravel\\Socialite\\Two\\FacebookProvider' => $vendorDir . '/laravel/socialite/src/Two/FacebookProvider.php', + 'Laravel\\Socialite\\Two\\GithubProvider' => $vendorDir . '/laravel/socialite/src/Two/GithubProvider.php', + 'Laravel\\Socialite\\Two\\GoogleProvider' => $vendorDir . '/laravel/socialite/src/Two/GoogleProvider.php', + 'Laravel\\Socialite\\Two\\InvalidStateException' => $vendorDir . '/laravel/socialite/src/Two/InvalidStateException.php', + 'Laravel\\Socialite\\Two\\LinkedInProvider' => $vendorDir . '/laravel/socialite/src/Two/LinkedInProvider.php', + 'Laravel\\Socialite\\Two\\ProviderInterface' => $vendorDir . '/laravel/socialite/src/Two/ProviderInterface.php', + 'Laravel\\Socialite\\Two\\User' => $vendorDir . '/laravel/socialite/src/Two/User.php', + 'League\\Flysystem\\AdapterInterface' => $vendorDir . '/league/flysystem/src/AdapterInterface.php', + 'League\\Flysystem\\Adapter\\AbstractAdapter' => $vendorDir . '/league/flysystem/src/Adapter/AbstractAdapter.php', + 'League\\Flysystem\\Adapter\\AbstractFtpAdapter' => $vendorDir . '/league/flysystem/src/Adapter/AbstractFtpAdapter.php', + 'League\\Flysystem\\Adapter\\Ftp' => $vendorDir . '/league/flysystem/src/Adapter/Ftp.php', + 'League\\Flysystem\\Adapter\\Ftpd' => $vendorDir . '/league/flysystem/src/Adapter/Ftpd.php', + 'League\\Flysystem\\Adapter\\Local' => $vendorDir . '/league/flysystem/src/Adapter/Local.php', + 'League\\Flysystem\\Adapter\\NullAdapter' => $vendorDir . '/league/flysystem/src/Adapter/NullAdapter.php', + 'League\\Flysystem\\Adapter\\Polyfill\\NotSupportingVisibilityTrait' => $vendorDir . '/league/flysystem/src/Adapter/Polyfill/NotSupportingVisibilityTrait.php', + 'League\\Flysystem\\Adapter\\Polyfill\\StreamedCopyTrait' => $vendorDir . '/league/flysystem/src/Adapter/Polyfill/StreamedCopyTrait.php', + 'League\\Flysystem\\Adapter\\Polyfill\\StreamedReadingTrait' => $vendorDir . '/league/flysystem/src/Adapter/Polyfill/StreamedReadingTrait.php', + 'League\\Flysystem\\Adapter\\Polyfill\\StreamedTrait' => $vendorDir . '/league/flysystem/src/Adapter/Polyfill/StreamedTrait.php', + 'League\\Flysystem\\Adapter\\Polyfill\\StreamedWritingTrait' => $vendorDir . '/league/flysystem/src/Adapter/Polyfill/StreamedWritingTrait.php', + 'League\\Flysystem\\Adapter\\SynologyFtp' => $vendorDir . '/league/flysystem/src/Adapter/SynologyFtp.php', + 'League\\Flysystem\\Config' => $vendorDir . '/league/flysystem/src/Config.php', + 'League\\Flysystem\\ConfigAwareTrait' => $vendorDir . '/league/flysystem/src/ConfigAwareTrait.php', + 'League\\Flysystem\\Directory' => $vendorDir . '/league/flysystem/src/Directory.php', + 'League\\Flysystem\\Exception' => $vendorDir . '/league/flysystem/src/Exception.php', + 'League\\Flysystem\\File' => $vendorDir . '/league/flysystem/src/File.php', + 'League\\Flysystem\\FileExistsException' => $vendorDir . '/league/flysystem/src/FileExistsException.php', + 'League\\Flysystem\\FileNotFoundException' => $vendorDir . '/league/flysystem/src/FileNotFoundException.php', + 'League\\Flysystem\\Filesystem' => $vendorDir . '/league/flysystem/src/Filesystem.php', + 'League\\Flysystem\\FilesystemInterface' => $vendorDir . '/league/flysystem/src/FilesystemInterface.php', + 'League\\Flysystem\\Handler' => $vendorDir . '/league/flysystem/src/Handler.php', + 'League\\Flysystem\\MountManager' => $vendorDir . '/league/flysystem/src/MountManager.php', + 'League\\Flysystem\\NotSupportedException' => $vendorDir . '/league/flysystem/src/NotSupportedException.php', + 'League\\Flysystem\\PluginInterface' => $vendorDir . '/league/flysystem/src/PluginInterface.php', + 'League\\Flysystem\\Plugin\\AbstractPlugin' => $vendorDir . '/league/flysystem/src/Plugin/AbstractPlugin.php', + 'League\\Flysystem\\Plugin\\EmptyDir' => $vendorDir . '/league/flysystem/src/Plugin/EmptyDir.php', + 'League\\Flysystem\\Plugin\\ForcedCopy' => $vendorDir . '/league/flysystem/src/Plugin/ForcedCopy.php', + 'League\\Flysystem\\Plugin\\ForcedRename' => $vendorDir . '/league/flysystem/src/Plugin/ForcedRename.php', + 'League\\Flysystem\\Plugin\\GetWithMetadata' => $vendorDir . '/league/flysystem/src/Plugin/GetWithMetadata.php', + 'League\\Flysystem\\Plugin\\ListFiles' => $vendorDir . '/league/flysystem/src/Plugin/ListFiles.php', + 'League\\Flysystem\\Plugin\\ListPaths' => $vendorDir . '/league/flysystem/src/Plugin/ListPaths.php', + 'League\\Flysystem\\Plugin\\ListWith' => $vendorDir . '/league/flysystem/src/Plugin/ListWith.php', + 'League\\Flysystem\\Plugin\\PluggableTrait' => $vendorDir . '/league/flysystem/src/Plugin/PluggableTrait.php', + 'League\\Flysystem\\Plugin\\PluginNotFoundException' => $vendorDir . '/league/flysystem/src/Plugin/PluginNotFoundException.php', + 'League\\Flysystem\\ReadInterface' => $vendorDir . '/league/flysystem/src/ReadInterface.php', + 'League\\Flysystem\\RootViolationException' => $vendorDir . '/league/flysystem/src/RootViolationException.php', + 'League\\Flysystem\\SafeStorage' => $vendorDir . '/league/flysystem/src/SafeStorage.php', + 'League\\Flysystem\\UnreadableFileException' => $vendorDir . '/league/flysystem/src/UnreadableFileException.php', + 'League\\Flysystem\\Util' => $vendorDir . '/league/flysystem/src/Util.php', + 'League\\Flysystem\\Util\\ContentListingFormatter' => $vendorDir . '/league/flysystem/src/Util/ContentListingFormatter.php', + 'League\\Flysystem\\Util\\MimeType' => $vendorDir . '/league/flysystem/src/Util/MimeType.php', + 'League\\Flysystem\\Util\\StreamHasher' => $vendorDir . '/league/flysystem/src/Util/StreamHasher.php', + 'League\\OAuth1\\Client\\Credentials\\ClientCredentials' => $vendorDir . '/league/oauth1-client/src/Client/Credentials/ClientCredentials.php', + 'League\\OAuth1\\Client\\Credentials\\ClientCredentialsInterface' => $vendorDir . '/league/oauth1-client/src/Client/Credentials/ClientCredentialsInterface.php', + 'League\\OAuth1\\Client\\Credentials\\Credentials' => $vendorDir . '/league/oauth1-client/src/Client/Credentials/Credentials.php', + 'League\\OAuth1\\Client\\Credentials\\CredentialsException' => $vendorDir . '/league/oauth1-client/src/Client/Credentials/CredentialsException.php', + 'League\\OAuth1\\Client\\Credentials\\CredentialsInterface' => $vendorDir . '/league/oauth1-client/src/Client/Credentials/CredentialsInterface.php', + 'League\\OAuth1\\Client\\Credentials\\TemporaryCredentials' => $vendorDir . '/league/oauth1-client/src/Client/Credentials/TemporaryCredentials.php', + 'League\\OAuth1\\Client\\Credentials\\TokenCredentials' => $vendorDir . '/league/oauth1-client/src/Client/Credentials/TokenCredentials.php', + 'League\\OAuth1\\Client\\Server\\Bitbucket' => $vendorDir . '/league/oauth1-client/src/Client/Server/Bitbucket.php', + 'League\\OAuth1\\Client\\Server\\Magento' => $vendorDir . '/league/oauth1-client/src/Client/Server/Magento.php', + 'League\\OAuth1\\Client\\Server\\Server' => $vendorDir . '/league/oauth1-client/src/Client/Server/Server.php', + 'League\\OAuth1\\Client\\Server\\Trello' => $vendorDir . '/league/oauth1-client/src/Client/Server/Trello.php', + 'League\\OAuth1\\Client\\Server\\Tumblr' => $vendorDir . '/league/oauth1-client/src/Client/Server/Tumblr.php', + 'League\\OAuth1\\Client\\Server\\Twitter' => $vendorDir . '/league/oauth1-client/src/Client/Server/Twitter.php', + 'League\\OAuth1\\Client\\Server\\User' => $vendorDir . '/league/oauth1-client/src/Client/Server/User.php', + 'League\\OAuth1\\Client\\Server\\Uservoice' => $vendorDir . '/league/oauth1-client/src/Client/Server/Uservoice.php', + 'League\\OAuth1\\Client\\Server\\Xing' => $vendorDir . '/league/oauth1-client/src/Client/Server/Xing.php', + 'League\\OAuth1\\Client\\Signature\\HmacSha1Signature' => $vendorDir . '/league/oauth1-client/src/Client/Signature/HmacSha1Signature.php', + 'League\\OAuth1\\Client\\Signature\\PlainTextSignature' => $vendorDir . '/league/oauth1-client/src/Client/Signature/PlainTextSignature.php', + 'League\\OAuth1\\Client\\Signature\\Signature' => $vendorDir . '/league/oauth1-client/src/Client/Signature/Signature.php', + 'League\\OAuth1\\Client\\Signature\\SignatureInterface' => $vendorDir . '/league/oauth1-client/src/Client/Signature/SignatureInterface.php', 'Line_Box' => $vendorDir . '/dompdf/dompdf/include/line_box.cls.php', 'List_Bullet_Frame_Decorator' => $vendorDir . '/dompdf/dompdf/include/list_bullet_frame_decorator.cls.php', 'List_Bullet_Frame_Reflower' => $vendorDir . '/dompdf/dompdf/include/list_bullet_frame_reflower.cls.php', @@ -214,10 +2292,341 @@ return array( 'Maatwebsite\\Excel\\Readers\\LaravelExcelReader' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/LaravelExcelReader.php', 'Maatwebsite\\Excel\\Writers\\CellWriter' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Writers/CellWriter.php', 'Maatwebsite\\Excel\\Writers\\LaravelExcelWriter' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Writers/LaravelExcelWriter.php', + 'Math_BigInteger' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger.php', + 'Monolog\\ErrorHandler' => $vendorDir . '/monolog/monolog/src/Monolog/ErrorHandler.php', + 'Monolog\\Formatter\\ChromePHPFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php', + 'Monolog\\Formatter\\ElasticaFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php', + 'Monolog\\Formatter\\FlowdockFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php', + 'Monolog\\Formatter\\FluentdFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php', + 'Monolog\\Formatter\\FormatterInterface' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php', + 'Monolog\\Formatter\\GelfMessageFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php', + 'Monolog\\Formatter\\HtmlFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php', + 'Monolog\\Formatter\\JsonFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php', + 'Monolog\\Formatter\\LineFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LineFormatter.php', + 'Monolog\\Formatter\\LogglyFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php', + 'Monolog\\Formatter\\LogstashFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php', + 'Monolog\\Formatter\\MongoDBFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php', + 'Monolog\\Formatter\\NormalizerFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php', + 'Monolog\\Formatter\\ScalarFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php', + 'Monolog\\Formatter\\WildfireFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php', + 'Monolog\\Handler\\AbstractHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AbstractHandler.php', + 'Monolog\\Handler\\AbstractProcessingHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php', + 'Monolog\\Handler\\AbstractSyslogHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php', + 'Monolog\\Handler\\AmqpHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AmqpHandler.php', + 'Monolog\\Handler\\BrowserConsoleHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php', + 'Monolog\\Handler\\BufferHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/BufferHandler.php', + 'Monolog\\Handler\\ChromePHPHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php', + 'Monolog\\Handler\\CouchDBHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php', + 'Monolog\\Handler\\CubeHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/CubeHandler.php', + 'Monolog\\Handler\\Curl\\Util' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/Curl/Util.php', + 'Monolog\\Handler\\DeduplicationHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php', + 'Monolog\\Handler\\DoctrineCouchDBHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php', + 'Monolog\\Handler\\DynamoDbHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php', + 'Monolog\\Handler\\ElasticSearchHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ElasticSearchHandler.php', + 'Monolog\\Handler\\ErrorLogHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php', + 'Monolog\\Handler\\FilterHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FilterHandler.php', + 'Monolog\\Handler\\FingersCrossedHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php', + 'Monolog\\Handler\\FingersCrossed\\ActivationStrategyInterface' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php', + 'Monolog\\Handler\\FingersCrossed\\ChannelLevelActivationStrategy' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php', + 'Monolog\\Handler\\FingersCrossed\\ErrorLevelActivationStrategy' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php', + 'Monolog\\Handler\\FirePHPHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php', + 'Monolog\\Handler\\FleepHookHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php', + 'Monolog\\Handler\\FlowdockHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php', + 'Monolog\\Handler\\GelfHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/GelfHandler.php', + 'Monolog\\Handler\\GroupHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/GroupHandler.php', + 'Monolog\\Handler\\HandlerInterface' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/HandlerInterface.php', + 'Monolog\\Handler\\HandlerWrapper' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php', + 'Monolog\\Handler\\HipChatHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/HipChatHandler.php', + 'Monolog\\Handler\\IFTTTHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php', + 'Monolog\\Handler\\LogEntriesHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php', + 'Monolog\\Handler\\LogglyHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/LogglyHandler.php', + 'Monolog\\Handler\\MailHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MailHandler.php', + 'Monolog\\Handler\\MandrillHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MandrillHandler.php', + 'Monolog\\Handler\\MissingExtensionException' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php', + 'Monolog\\Handler\\MongoDBHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php', + 'Monolog\\Handler\\NativeMailerHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php', + 'Monolog\\Handler\\NewRelicHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php', + 'Monolog\\Handler\\NullHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/NullHandler.php', + 'Monolog\\Handler\\PHPConsoleHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php', + 'Monolog\\Handler\\PsrHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/PsrHandler.php', + 'Monolog\\Handler\\PushoverHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/PushoverHandler.php', + 'Monolog\\Handler\\RavenHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RavenHandler.php', + 'Monolog\\Handler\\RedisHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RedisHandler.php', + 'Monolog\\Handler\\RollbarHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RollbarHandler.php', + 'Monolog\\Handler\\RotatingFileHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php', + 'Monolog\\Handler\\SamplingHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SamplingHandler.php', + 'Monolog\\Handler\\SlackHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SlackHandler.php', + 'Monolog\\Handler\\SocketHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SocketHandler.php', + 'Monolog\\Handler\\StreamHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/StreamHandler.php', + 'Monolog\\Handler\\SwiftMailerHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php', + 'Monolog\\Handler\\SyslogHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SyslogHandler.php', + 'Monolog\\Handler\\SyslogUdpHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php', + 'Monolog\\Handler\\SyslogUdp\\UdpSocket' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php', + 'Monolog\\Handler\\TestHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/TestHandler.php', + 'Monolog\\Handler\\WhatFailureGroupHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php', + 'Monolog\\Handler\\ZendMonitorHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php', + 'Monolog\\Logger' => $vendorDir . '/monolog/monolog/src/Monolog/Logger.php', + 'Monolog\\Processor\\GitProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/GitProcessor.php', + 'Monolog\\Processor\\IntrospectionProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php', + 'Monolog\\Processor\\MemoryPeakUsageProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php', + 'Monolog\\Processor\\MemoryProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php', + 'Monolog\\Processor\\MemoryUsageProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php', + 'Monolog\\Processor\\ProcessIdProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php', + 'Monolog\\Processor\\PsrLogMessageProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php', + 'Monolog\\Processor\\TagProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/TagProcessor.php', + 'Monolog\\Processor\\UidProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/UidProcessor.php', + 'Monolog\\Processor\\WebProcessor' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/WebProcessor.php', + 'Monolog\\Registry' => $vendorDir . '/monolog/monolog/src/Monolog/Registry.php', + 'Mremi\\UrlShortener\\Exception\\InvalidApiResponseException' => $vendorDir . '/mremi/url-shortener/src/Mremi/UrlShortener/Exception/InvalidApiResponseException.php', + 'Mremi\\UrlShortener\\Model\\Link' => $vendorDir . '/mremi/url-shortener/src/Mremi/UrlShortener/Model/Link.php', + 'Mremi\\UrlShortener\\Model\\LinkInterface' => $vendorDir . '/mremi/url-shortener/src/Mremi/UrlShortener/Model/LinkInterface.php', + 'Mremi\\UrlShortener\\Model\\LinkManager' => $vendorDir . '/mremi/url-shortener/src/Mremi/UrlShortener/Model/LinkManager.php', + 'Mremi\\UrlShortener\\Model\\LinkManagerInterface' => $vendorDir . '/mremi/url-shortener/src/Mremi/UrlShortener/Model/LinkManagerInterface.php', + 'Mremi\\UrlShortener\\Provider\\Bitly\\AuthenticationInterface' => $vendorDir . '/mremi/url-shortener/src/Mremi/UrlShortener/Provider/Bitly/AuthenticationInterface.php', + 'Mremi\\UrlShortener\\Provider\\Bitly\\BitlyProvider' => $vendorDir . '/mremi/url-shortener/src/Mremi/UrlShortener/Provider/Bitly/BitlyProvider.php', + 'Mremi\\UrlShortener\\Provider\\Bitly\\OAuthClient' => $vendorDir . '/mremi/url-shortener/src/Mremi/UrlShortener/Provider/Bitly/OAuthClient.php', + 'Mremi\\UrlShortener\\Provider\\ChainProvider' => $vendorDir . '/mremi/url-shortener/src/Mremi/UrlShortener/Provider/ChainProvider.php', + 'Mremi\\UrlShortener\\Provider\\Google\\GoogleProvider' => $vendorDir . '/mremi/url-shortener/src/Mremi/UrlShortener/Provider/Google/GoogleProvider.php', + 'Mremi\\UrlShortener\\Provider\\UrlShortenerProviderInterface' => $vendorDir . '/mremi/url-shortener/src/Mremi/UrlShortener/Provider/UrlShortenerProviderInterface.php', + 'Namshi\\JOSE\\Base64\\Base64Encoder' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Base64/Base64Encoder.php', + 'Namshi\\JOSE\\Base64\\Base64UrlSafeEncoder' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Base64/Base64UrlSafeEncoder.php', + 'Namshi\\JOSE\\Base64\\Encoder' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Base64/Encoder.php', + 'Namshi\\JOSE\\JWS' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/JWS.php', + 'Namshi\\JOSE\\JWT' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/JWT.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\ECDSA' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/ECDSA.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\ES256' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/ES256.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\ES384' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/ES384.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\ES512' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/ES512.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\HMAC' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/HMAC.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\HS256' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/HS256.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\HS384' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/HS384.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\HS512' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/HS512.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\None' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/None.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\PublicKey' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/PublicKey.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\RS256' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/RS256.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\RS384' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/RS384.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\RS512' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/RS512.php', + 'Namshi\\JOSE\\Signer\\OpenSSL\\RSA' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/OpenSSL/RSA.php', + 'Namshi\\JOSE\\Signer\\SecLib\\PublicKey' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/SecLib/PublicKey.php', + 'Namshi\\JOSE\\Signer\\SecLib\\RS256' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/SecLib/RS256.php', + 'Namshi\\JOSE\\Signer\\SecLib\\RS384' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/SecLib/RS384.php', + 'Namshi\\JOSE\\Signer\\SecLib\\RS512' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/SecLib/RS512.php', + 'Namshi\\JOSE\\Signer\\SecLib\\RSA' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/SecLib/RSA.php', + 'Namshi\\JOSE\\Signer\\SignerInterface' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/Signer/SignerInterface.php', + 'Namshi\\JOSE\\SimpleJWS' => $vendorDir . '/namshi/jose/src/Namshi/JOSE/SimpleJWS.php', + 'Net_SCP' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Net/SCP.php', + 'Net_SFTP' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Net/SFTP.php', + 'Net_SFTP_Stream' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php', + 'Net_SSH1' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Net/SSH1.php', + 'Net_SSH2' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Net/SSH2.php', + 'Nicolaslopezj\\Searchable\\SearchableTrait' => $vendorDir . '/nicolaslopezj/searchable/src/SearchableTrait.php', 'Null_Frame_Decorator' => $vendorDir . '/dompdf/dompdf/include/null_frame_decorator.cls.php', 'Null_Frame_Reflower' => $vendorDir . '/dompdf/dompdf/include/null_frame_reflower.cls.php', 'Null_Positioner' => $vendorDir . '/dompdf/dompdf/include/null_positioner.cls.php', 'PDFLib_Adapter' => $vendorDir . '/dompdf/dompdf/include/pdflib_adapter.cls.php', + 'PHPExcel' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel.php', + 'PHPExcel_Autoloader' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Autoloader.php', + 'PHPExcel_Best_Fit' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/bestFitClass.php', + 'PHPExcel_CachedObjectStorageFactory' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorageFactory.php', + 'PHPExcel_CachedObjectStorage_APC' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/APC.php', + 'PHPExcel_CachedObjectStorage_CacheBase' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php', + 'PHPExcel_CachedObjectStorage_DiscISAM' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php', + 'PHPExcel_CachedObjectStorage_ICache' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/ICache.php', + 'PHPExcel_CachedObjectStorage_Igbinary' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Igbinary.php', + 'PHPExcel_CachedObjectStorage_Memcache' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php', + 'PHPExcel_CachedObjectStorage_Memory' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memory.php', + 'PHPExcel_CachedObjectStorage_MemoryGZip' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemoryGZip.php', + 'PHPExcel_CachedObjectStorage_MemorySerialized' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemorySerialized.php', + 'PHPExcel_CachedObjectStorage_PHPTemp' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php', + 'PHPExcel_CachedObjectStorage_SQLite' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite.php', + 'PHPExcel_CachedObjectStorage_SQLite3' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite3.php', + 'PHPExcel_CachedObjectStorage_Wincache' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Wincache.php', + 'PHPExcel_CalcEngine_CyclicReferenceStack' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/CyclicReferenceStack.php', + 'PHPExcel_CalcEngine_Logger' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/Logger.php', + 'PHPExcel_Calculation' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php', + 'PHPExcel_Calculation_Database' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Database.php', + 'PHPExcel_Calculation_DateTime' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php', + 'PHPExcel_Calculation_Engineering' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php', + 'PHPExcel_Calculation_Exception' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Exception.php', + 'PHPExcel_Calculation_ExceptionHandler' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/ExceptionHandler.php', + 'PHPExcel_Calculation_Financial' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php', + 'PHPExcel_Calculation_FormulaParser' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaParser.php', + 'PHPExcel_Calculation_FormulaToken' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaToken.php', + 'PHPExcel_Calculation_Function' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Function.php', + 'PHPExcel_Calculation_Functions' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php', + 'PHPExcel_Calculation_Logical' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Logical.php', + 'PHPExcel_Calculation_LookupRef' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/LookupRef.php', + 'PHPExcel_Calculation_MathTrig' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php', + 'PHPExcel_Calculation_Statistical' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php', + 'PHPExcel_Calculation_TextData' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/TextData.php', + 'PHPExcel_Calculation_Token_Stack' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Token/Stack.php', + 'PHPExcel_Cell' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Cell.php', + 'PHPExcel_Cell_AdvancedValueBinder' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Cell/AdvancedValueBinder.php', + 'PHPExcel_Cell_DataType' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataType.php', + 'PHPExcel_Cell_DataValidation' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataValidation.php', + 'PHPExcel_Cell_DefaultValueBinder' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Cell/DefaultValueBinder.php', + 'PHPExcel_Cell_Hyperlink' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Cell/Hyperlink.php', + 'PHPExcel_Cell_IValueBinder' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Cell/IValueBinder.php', + 'PHPExcel_Chart' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Chart.php', + 'PHPExcel_Chart_Axis' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php', + 'PHPExcel_Chart_DataSeries' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeries.php', + 'PHPExcel_Chart_DataSeriesValues' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeriesValues.php', + 'PHPExcel_Chart_Exception' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Exception.php', + 'PHPExcel_Chart_GridLines' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/GridLines.php', + 'PHPExcel_Chart_Layout' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Layout.php', + 'PHPExcel_Chart_Legend' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Legend.php', + 'PHPExcel_Chart_PlotArea' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/PlotArea.php', + 'PHPExcel_Chart_Renderer_jpgraph' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer/jpgraph.php', + 'PHPExcel_Chart_Title' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Title.php', + 'PHPExcel_Comment' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Comment.php', + 'PHPExcel_DocumentProperties' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/DocumentProperties.php', + 'PHPExcel_DocumentSecurity' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/DocumentSecurity.php', + 'PHPExcel_Exception' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Exception.php', + 'PHPExcel_Exponential_Best_Fit' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/exponentialBestFitClass.php', + 'PHPExcel_HashTable' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/HashTable.php', + 'PHPExcel_Helper_HTML' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Helper/HTML.php', + 'PHPExcel_IComparable' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/IComparable.php', + 'PHPExcel_IOFactory' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/IOFactory.php', + 'PHPExcel_Linear_Best_Fit' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/linearBestFitClass.php', + 'PHPExcel_Logarithmic_Best_Fit' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/logarithmicBestFitClass.php', + 'PHPExcel_NamedRange' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/NamedRange.php', + 'PHPExcel_Polynomial_Best_Fit' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/polynomialBestFitClass.php', + 'PHPExcel_Power_Best_Fit' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/powerBestFitClass.php', + 'PHPExcel_Properties' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Properties.php', + 'PHPExcel_Reader_Abstract' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Abstract.php', + 'PHPExcel_Reader_CSV' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/CSV.php', + 'PHPExcel_Reader_DefaultReadFilter' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/DefaultReadFilter.php', + 'PHPExcel_Reader_Excel2003XML' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2003XML.php', + 'PHPExcel_Reader_Excel2007' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007.php', + 'PHPExcel_Reader_Excel2007_Chart' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Chart.php', + 'PHPExcel_Reader_Excel2007_Theme' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Theme.php', + 'PHPExcel_Reader_Excel5' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php', + 'PHPExcel_Reader_Excel5_Escher' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Escher.php', + 'PHPExcel_Reader_Excel5_MD5' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/MD5.php', + 'PHPExcel_Reader_Excel5_RC4' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/RC4.php', + 'PHPExcel_Reader_Exception' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Exception.php', + 'PHPExcel_Reader_Gnumeric' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Gnumeric.php', + 'PHPExcel_Reader_HTML' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/HTML.php', + 'PHPExcel_Reader_IReadFilter' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReadFilter.php', + 'PHPExcel_Reader_IReader' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReader.php', + 'PHPExcel_Reader_OOCalc' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/OOCalc.php', + 'PHPExcel_Reader_SYLK' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/SYLK.php', + 'PHPExcel_ReferenceHelper' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/ReferenceHelper.php', + 'PHPExcel_RichText' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/RichText.php', + 'PHPExcel_RichText_ITextElement' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/RichText/ITextElement.php', + 'PHPExcel_RichText_Run' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/RichText/Run.php', + 'PHPExcel_RichText_TextElement' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/RichText/TextElement.php', + 'PHPExcel_Settings' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Settings.php', + 'PHPExcel_Shared_CodePage' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/CodePage.php', + 'PHPExcel_Shared_Date' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Date.php', + 'PHPExcel_Shared_Drawing' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Drawing.php', + 'PHPExcel_Shared_Escher' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher.php', + 'PHPExcel_Shared_Escher_DgContainer' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer.php', + 'PHPExcel_Shared_Escher_DgContainer_SpgrContainer' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php', + 'PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php', + 'PHPExcel_Shared_Escher_DggContainer' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer.php', + 'PHPExcel_Shared_Escher_DggContainer_BstoreContainer' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php', + 'PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php', + 'PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php', + 'PHPExcel_Shared_Excel5' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Excel5.php', + 'PHPExcel_Shared_File' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/File.php', + 'PHPExcel_Shared_Font' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Font.php', + 'PHPExcel_Shared_JAMA_LUDecomposition' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/LUDecomposition.php', + 'PHPExcel_Shared_JAMA_Matrix' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/Matrix.php', + 'PHPExcel_Shared_JAMA_QRDecomposition' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/QRDecomposition.php', + 'PHPExcel_Shared_OLE' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE.php', + 'PHPExcel_Shared_OLERead' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLERead.php', + 'PHPExcel_Shared_OLE_ChainedBlockStream' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/ChainedBlockStream.php', + 'PHPExcel_Shared_OLE_PPS' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS.php', + 'PHPExcel_Shared_OLE_PPS_File' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/File.php', + 'PHPExcel_Shared_OLE_PPS_Root' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/Root.php', + 'PHPExcel_Shared_PasswordHasher' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/PasswordHasher.php', + 'PHPExcel_Shared_String' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/String.php', + 'PHPExcel_Shared_TimeZone' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/TimeZone.php', + 'PHPExcel_Shared_XMLWriter' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/XMLWriter.php', + 'PHPExcel_Shared_ZipArchive' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipArchive.php', + 'PHPExcel_Shared_ZipStreamWrapper' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipStreamWrapper.php', + 'PHPExcel_Style' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Style.php', + 'PHPExcel_Style_Alignment' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Alignment.php', + 'PHPExcel_Style_Border' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Border.php', + 'PHPExcel_Style_Borders' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Borders.php', + 'PHPExcel_Style_Color' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Color.php', + 'PHPExcel_Style_Conditional' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php', + 'PHPExcel_Style_Fill' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Fill.php', + 'PHPExcel_Style_Font' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php', + 'PHPExcel_Style_NumberFormat' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Style/NumberFormat.php', + 'PHPExcel_Style_Protection' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Protection.php', + 'PHPExcel_Style_Supervisor' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Supervisor.php', + 'PHPExcel_Worksheet' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php', + 'PHPExcel_WorksheetIterator' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/WorksheetIterator.php', + 'PHPExcel_Worksheet_AutoFilter' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter.php', + 'PHPExcel_Worksheet_AutoFilter_Column' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column.php', + 'PHPExcel_Worksheet_AutoFilter_Column_Rule' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column/Rule.php', + 'PHPExcel_Worksheet_BaseDrawing' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/BaseDrawing.php', + 'PHPExcel_Worksheet_CellIterator' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/CellIterator.php', + 'PHPExcel_Worksheet_Column' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Column.php', + 'PHPExcel_Worksheet_ColumnCellIterator' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnCellIterator.php', + 'PHPExcel_Worksheet_ColumnDimension' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnDimension.php', + 'PHPExcel_Worksheet_ColumnIterator' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnIterator.php', + 'PHPExcel_Worksheet_Drawing' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing.php', + 'PHPExcel_Worksheet_Drawing_Shadow' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing/Shadow.php', + 'PHPExcel_Worksheet_HeaderFooter' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooter.php', + 'PHPExcel_Worksheet_HeaderFooterDrawing' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php', + 'PHPExcel_Worksheet_MemoryDrawing' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/MemoryDrawing.php', + 'PHPExcel_Worksheet_PageMargins' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageMargins.php', + 'PHPExcel_Worksheet_PageSetup' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageSetup.php', + 'PHPExcel_Worksheet_Protection' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Protection.php', + 'PHPExcel_Worksheet_Row' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Row.php', + 'PHPExcel_Worksheet_RowCellIterator' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowCellIterator.php', + 'PHPExcel_Worksheet_RowDimension' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowDimension.php', + 'PHPExcel_Worksheet_RowIterator' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowIterator.php', + 'PHPExcel_Worksheet_SheetView' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/SheetView.php', + 'PHPExcel_Writer_Abstract' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Abstract.php', + 'PHPExcel_Writer_CSV' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/CSV.php', + 'PHPExcel_Writer_Excel2007' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007.php', + 'PHPExcel_Writer_Excel2007_Chart' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Chart.php', + 'PHPExcel_Writer_Excel2007_Comments' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Comments.php', + 'PHPExcel_Writer_Excel2007_ContentTypes' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/ContentTypes.php', + 'PHPExcel_Writer_Excel2007_DocProps' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/DocProps.php', + 'PHPExcel_Writer_Excel2007_Drawing' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Drawing.php', + 'PHPExcel_Writer_Excel2007_Rels' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Rels.php', + 'PHPExcel_Writer_Excel2007_RelsRibbon' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsRibbon.php', + 'PHPExcel_Writer_Excel2007_RelsVBA' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsVBA.php', + 'PHPExcel_Writer_Excel2007_StringTable' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/StringTable.php', + 'PHPExcel_Writer_Excel2007_Style' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Style.php', + 'PHPExcel_Writer_Excel2007_Theme' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Theme.php', + 'PHPExcel_Writer_Excel2007_Workbook' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Workbook.php', + 'PHPExcel_Writer_Excel2007_Worksheet' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Worksheet.php', + 'PHPExcel_Writer_Excel2007_WriterPart' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/WriterPart.php', + 'PHPExcel_Writer_Excel5' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5.php', + 'PHPExcel_Writer_Excel5_BIFFwriter' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php', + 'PHPExcel_Writer_Excel5_Escher' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Escher.php', + 'PHPExcel_Writer_Excel5_Font' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Font.php', + 'PHPExcel_Writer_Excel5_Parser' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Parser.php', + 'PHPExcel_Writer_Excel5_Workbook' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Workbook.php', + 'PHPExcel_Writer_Excel5_Worksheet' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Worksheet.php', + 'PHPExcel_Writer_Excel5_Xf' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Xf.php', + 'PHPExcel_Writer_Exception' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Exception.php', + 'PHPExcel_Writer_HTML' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/HTML.php', + 'PHPExcel_Writer_IWriter' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/IWriter.php', + 'PHPExcel_Writer_OpenDocument' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument.php', + 'PHPExcel_Writer_OpenDocument_Cell_Comment' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Cell/Comment.php', + 'PHPExcel_Writer_OpenDocument_Content' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Content.php', + 'PHPExcel_Writer_OpenDocument_Meta' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Meta.php', + 'PHPExcel_Writer_OpenDocument_MetaInf' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/MetaInf.php', + 'PHPExcel_Writer_OpenDocument_Mimetype' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Mimetype.php', + 'PHPExcel_Writer_OpenDocument_Settings' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Settings.php', + 'PHPExcel_Writer_OpenDocument_Styles' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Styles.php', + 'PHPExcel_Writer_OpenDocument_Thumbnails' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Thumbnails.php', + 'PHPExcel_Writer_OpenDocument_WriterPart' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/WriterPart.php', + 'PHPExcel_Writer_PDF' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF.php', + 'PHPExcel_Writer_PDF_Core' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/Core.php', + 'PHPExcel_Writer_PDF_DomPDF' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/DomPDF.php', + 'PHPExcel_Writer_PDF_mPDF' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/mPDF.php', + 'PHPExcel_Writer_PDF_tcPDF' => $vendorDir . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/tcPDF.php', + 'PHPMailer' => $vendorDir . '/phpmailer/phpmailer/class.phpmailer.php', + 'PHPMailerOAuth' => $vendorDir . '/phpmailer/phpmailer/class.phpmaileroauth.php', + 'PHPMailerOAuthGoogle' => $vendorDir . '/phpmailer/phpmailer/class.phpmaileroauthgoogle.php', 'PHPUnit_Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php', 'PHPUnit_Extensions_GroupTestSuite' => $vendorDir . '/phpunit/phpunit/src/Extensions/GroupTestSuite.php', 'PHPUnit_Extensions_PhptTestCase' => $vendorDir . '/phpunit/phpunit/src/Extensions/PhptTestCase.php', @@ -614,11 +3023,933 @@ return array( 'PHP_Token_XOR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_YIELD' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_YIELD_FROM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'POP3' => $vendorDir . '/phpmailer/phpmailer/class.pop3.php', 'Page_Cache' => $vendorDir . '/dompdf/dompdf/include/page_cache.cls.php', 'Page_Frame_Decorator' => $vendorDir . '/dompdf/dompdf/include/page_frame_decorator.cls.php', 'Page_Frame_Reflower' => $vendorDir . '/dompdf/dompdf/include/page_frame_reflower.cls.php', + 'PhpImap\\Exception' => $vendorDir . '/php-imap/php-imap/src/PhpImap/Mailbox.php', + 'PhpImap\\IncomingMail' => $vendorDir . '/php-imap/php-imap/src/PhpImap/IncomingMail.php', + 'PhpImap\\IncomingMailAttachment' => $vendorDir . '/php-imap/php-imap/src/PhpImap/IncomingMail.php', + 'PhpImap\\Mailbox' => $vendorDir . '/php-imap/php-imap/src/PhpImap/Mailbox.php', + 'PhpParser\\Autoloader' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Autoloader.php', + 'PhpParser\\Builder' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder.php', + 'PhpParser\\BuilderAbstract' => $vendorDir . '/nikic/php-parser/lib/PhpParser/BuilderAbstract.php', + 'PhpParser\\BuilderFactory' => $vendorDir . '/nikic/php-parser/lib/PhpParser/BuilderFactory.php', + 'PhpParser\\Builder\\Class_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Class_.php', + 'PhpParser\\Builder\\Declaration' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Declaration.php', + 'PhpParser\\Builder\\FunctionLike' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/FunctionLike.php', + 'PhpParser\\Builder\\Function_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Function_.php', + 'PhpParser\\Builder\\Interface_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Interface_.php', + 'PhpParser\\Builder\\Method' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Method.php', + 'PhpParser\\Builder\\Namespace_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Namespace_.php', + 'PhpParser\\Builder\\Param' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Param.php', + 'PhpParser\\Builder\\Property' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Property.php', + 'PhpParser\\Builder\\Trait_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Trait_.php', + 'PhpParser\\Builder\\Use_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Builder/Use_.php', + 'PhpParser\\Comment' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Comment.php', + 'PhpParser\\Comment\\Doc' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Comment/Doc.php', + 'PhpParser\\Error' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Error.php', + 'PhpParser\\Lexer' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Lexer.php', + 'PhpParser\\Lexer\\Emulative' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php', + 'PhpParser\\Node' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node.php', + 'PhpParser\\NodeAbstract' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeAbstract.php', + 'PhpParser\\NodeDumper' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeDumper.php', + 'PhpParser\\NodeTraverser' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeTraverser.php', + 'PhpParser\\NodeTraverserInterface' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeTraverserInterface.php', + 'PhpParser\\NodeVisitor' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeVisitor.php', + 'PhpParser\\NodeVisitorAbstract' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php', + 'PhpParser\\NodeVisitor\\NameResolver' => $vendorDir . '/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php', + 'PhpParser\\Node\\Arg' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Arg.php', + 'PhpParser\\Node\\Const_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Const_.php', + 'PhpParser\\Node\\Expr' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr.php', + 'PhpParser\\Node\\Expr\\ArrayDimFetch' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php', + 'PhpParser\\Node\\Expr\\ArrayItem' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayItem.php', + 'PhpParser\\Node\\Expr\\Array_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Array_.php', + 'PhpParser\\Node\\Expr\\Assign' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Assign.php', + 'PhpParser\\Node\\Expr\\AssignOp' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp.php', + 'PhpParser\\Node\\Expr\\AssignOp\\BitwiseAnd' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php', + 'PhpParser\\Node\\Expr\\AssignOp\\BitwiseOr' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php', + 'PhpParser\\Node\\Expr\\AssignOp\\BitwiseXor' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Concat' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Div' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Div.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Minus' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Mod' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Mul' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Plus' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php', + 'PhpParser\\Node\\Expr\\AssignOp\\Pow' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php', + 'PhpParser\\Node\\Expr\\AssignOp\\ShiftLeft' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php', + 'PhpParser\\Node\\Expr\\AssignOp\\ShiftRight' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php', + 'PhpParser\\Node\\Expr\\AssignRef' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/AssignRef.php', + 'PhpParser\\Node\\Expr\\BinaryOp' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BitwiseAnd' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BitwiseOr' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BitwiseXor' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BooleanAnd' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\BooleanOr' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Coalesce' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Coalesce.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Concat' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Div' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Equal' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Greater' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\GreaterOrEqual' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Identical' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\LogicalAnd' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\LogicalOr' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\LogicalXor' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Minus' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Mod' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Mul' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\NotEqual' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\NotIdentical' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Plus' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Pow' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\ShiftLeft' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\ShiftRight' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Smaller' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\SmallerOrEqual' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php', + 'PhpParser\\Node\\Expr\\BinaryOp\\Spaceship' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Spaceship.php', + 'PhpParser\\Node\\Expr\\BitwiseNot' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BitwiseNot.php', + 'PhpParser\\Node\\Expr\\BooleanNot' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/BooleanNot.php', + 'PhpParser\\Node\\Expr\\Cast' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast.php', + 'PhpParser\\Node\\Expr\\Cast\\Array_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php', + 'PhpParser\\Node\\Expr\\Cast\\Bool_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Bool_.php', + 'PhpParser\\Node\\Expr\\Cast\\Double' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php', + 'PhpParser\\Node\\Expr\\Cast\\Int_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php', + 'PhpParser\\Node\\Expr\\Cast\\Object_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Object_.php', + 'PhpParser\\Node\\Expr\\Cast\\String_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/String_.php', + 'PhpParser\\Node\\Expr\\Cast\\Unset_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Unset_.php', + 'PhpParser\\Node\\Expr\\ClassConstFetch' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ClassConstFetch.php', + 'PhpParser\\Node\\Expr\\Clone_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Clone_.php', + 'PhpParser\\Node\\Expr\\Closure' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Closure.php', + 'PhpParser\\Node\\Expr\\ClosureUse' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ClosureUse.php', + 'PhpParser\\Node\\Expr\\ConstFetch' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ConstFetch.php', + 'PhpParser\\Node\\Expr\\Empty_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Empty_.php', + 'PhpParser\\Node\\Expr\\ErrorSuppress' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ErrorSuppress.php', + 'PhpParser\\Node\\Expr\\Eval_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Eval_.php', + 'PhpParser\\Node\\Expr\\Exit_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Exit_.php', + 'PhpParser\\Node\\Expr\\FuncCall' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/FuncCall.php', + 'PhpParser\\Node\\Expr\\Include_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Include_.php', + 'PhpParser\\Node\\Expr\\Instanceof_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Instanceof_.php', + 'PhpParser\\Node\\Expr\\Isset_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Isset_.php', + 'PhpParser\\Node\\Expr\\List_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/List_.php', + 'PhpParser\\Node\\Expr\\MethodCall' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/MethodCall.php', + 'PhpParser\\Node\\Expr\\New_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/New_.php', + 'PhpParser\\Node\\Expr\\PostDec' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/PostDec.php', + 'PhpParser\\Node\\Expr\\PostInc' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/PostInc.php', + 'PhpParser\\Node\\Expr\\PreDec' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/PreDec.php', + 'PhpParser\\Node\\Expr\\PreInc' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/PreInc.php', + 'PhpParser\\Node\\Expr\\Print_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Print_.php', + 'PhpParser\\Node\\Expr\\PropertyFetch' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/PropertyFetch.php', + 'PhpParser\\Node\\Expr\\ShellExec' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/ShellExec.php', + 'PhpParser\\Node\\Expr\\StaticCall' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/StaticCall.php', + 'PhpParser\\Node\\Expr\\StaticPropertyFetch' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php', + 'PhpParser\\Node\\Expr\\Ternary' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Ternary.php', + 'PhpParser\\Node\\Expr\\UnaryMinus' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryMinus.php', + 'PhpParser\\Node\\Expr\\UnaryPlus' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryPlus.php', + 'PhpParser\\Node\\Expr\\Variable' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Variable.php', + 'PhpParser\\Node\\Expr\\YieldFrom' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/YieldFrom.php', + 'PhpParser\\Node\\Expr\\Yield_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Expr/Yield_.php', + 'PhpParser\\Node\\FunctionLike' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php', + 'PhpParser\\Node\\Name' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Name.php', + 'PhpParser\\Node\\Name\\FullyQualified' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Name/FullyQualified.php', + 'PhpParser\\Node\\Name\\Relative' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Name/Relative.php', + 'PhpParser\\Node\\Param' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Param.php', + 'PhpParser\\Node\\Scalar' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar.php', + 'PhpParser\\Node\\Scalar\\DNumber' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/DNumber.php', + 'PhpParser\\Node\\Scalar\\Encapsed' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/Encapsed.php', + 'PhpParser\\Node\\Scalar\\EncapsedStringPart' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/EncapsedStringPart.php', + 'PhpParser\\Node\\Scalar\\LNumber' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/LNumber.php', + 'PhpParser\\Node\\Scalar\\MagicConst' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Class_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Class_.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Dir' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\File' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/File.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Function_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Function_.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Line' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Method' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Namespace_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace_.php', + 'PhpParser\\Node\\Scalar\\MagicConst\\Trait_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Trait_.php', + 'PhpParser\\Node\\Scalar\\String_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Scalar/String_.php', + 'PhpParser\\Node\\Stmt' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt.php', + 'PhpParser\\Node\\Stmt\\Break_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Break_.php', + 'PhpParser\\Node\\Stmt\\Case_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Case_.php', + 'PhpParser\\Node\\Stmt\\Catch_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Catch_.php', + 'PhpParser\\Node\\Stmt\\ClassConst' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassConst.php', + 'PhpParser\\Node\\Stmt\\ClassLike' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassLike.php', + 'PhpParser\\Node\\Stmt\\ClassMethod' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassMethod.php', + 'PhpParser\\Node\\Stmt\\Class_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Class_.php', + 'PhpParser\\Node\\Stmt\\Const_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Const_.php', + 'PhpParser\\Node\\Stmt\\Continue_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Continue_.php', + 'PhpParser\\Node\\Stmt\\DeclareDeclare' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php', + 'PhpParser\\Node\\Stmt\\Declare_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Declare_.php', + 'PhpParser\\Node\\Stmt\\Do_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Do_.php', + 'PhpParser\\Node\\Stmt\\Echo_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Echo_.php', + 'PhpParser\\Node\\Stmt\\ElseIf_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/ElseIf_.php', + 'PhpParser\\Node\\Stmt\\Else_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Else_.php', + 'PhpParser\\Node\\Stmt\\For_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/For_.php', + 'PhpParser\\Node\\Stmt\\Foreach_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Foreach_.php', + 'PhpParser\\Node\\Stmt\\Function_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Function_.php', + 'PhpParser\\Node\\Stmt\\Global_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Global_.php', + 'PhpParser\\Node\\Stmt\\Goto_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Goto_.php', + 'PhpParser\\Node\\Stmt\\GroupUse' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/GroupUse.php', + 'PhpParser\\Node\\Stmt\\HaltCompiler' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/HaltCompiler.php', + 'PhpParser\\Node\\Stmt\\If_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/If_.php', + 'PhpParser\\Node\\Stmt\\InlineHTML' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/InlineHTML.php', + 'PhpParser\\Node\\Stmt\\Interface_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Interface_.php', + 'PhpParser\\Node\\Stmt\\Label' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Label.php', + 'PhpParser\\Node\\Stmt\\Namespace_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Namespace_.php', + 'PhpParser\\Node\\Stmt\\Nop' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Nop.php', + 'PhpParser\\Node\\Stmt\\Property' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php', + 'PhpParser\\Node\\Stmt\\PropertyProperty' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/PropertyProperty.php', + 'PhpParser\\Node\\Stmt\\Return_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Return_.php', + 'PhpParser\\Node\\Stmt\\StaticVar' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/StaticVar.php', + 'PhpParser\\Node\\Stmt\\Static_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Static_.php', + 'PhpParser\\Node\\Stmt\\Switch_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Switch_.php', + 'PhpParser\\Node\\Stmt\\Throw_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Throw_.php', + 'PhpParser\\Node\\Stmt\\TraitUse' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUse.php', + 'PhpParser\\Node\\Stmt\\TraitUseAdaptation' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php', + 'PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php', + 'PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Precedence' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php', + 'PhpParser\\Node\\Stmt\\Trait_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Trait_.php', + 'PhpParser\\Node\\Stmt\\TryCatch' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/TryCatch.php', + 'PhpParser\\Node\\Stmt\\Unset_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Unset_.php', + 'PhpParser\\Node\\Stmt\\UseUse' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/UseUse.php', + 'PhpParser\\Node\\Stmt\\Use_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/Use_.php', + 'PhpParser\\Node\\Stmt\\While_' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Node/Stmt/While_.php', + 'PhpParser\\Parser' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Parser.php', + 'PhpParser\\ParserAbstract' => $vendorDir . '/nikic/php-parser/lib/PhpParser/ParserAbstract.php', + 'PhpParser\\ParserFactory' => $vendorDir . '/nikic/php-parser/lib/PhpParser/ParserFactory.php', + 'PhpParser\\Parser\\Multiple' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Parser/Multiple.php', + 'PhpParser\\Parser\\Php5' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Parser/Php5.php', + 'PhpParser\\Parser\\Php7' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Parser/Php7.php', + 'PhpParser\\Parser\\Tokens' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Parser/Tokens.php', + 'PhpParser\\PrettyPrinterAbstract' => $vendorDir . '/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php', + 'PhpParser\\PrettyPrinter\\Standard' => $vendorDir . '/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php', + 'PhpParser\\Serializer' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Serializer.php', + 'PhpParser\\Serializer\\XML' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Serializer/XML.php', + 'PhpParser\\Unserializer' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Unserializer.php', + 'PhpParser\\Unserializer\\XML' => $vendorDir . '/nikic/php-parser/lib/PhpParser/Unserializer/XML.php', + 'PhpSpec\\CodeAnalysis\\AccessInspectorInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeAnalysis/AccessInspectorInterface.php', + 'PhpSpec\\CodeAnalysis\\DisallowedScalarTypehintException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeAnalysis/DisallowedScalarTypehintException.php', + 'PhpSpec\\CodeAnalysis\\MagicAwareAccessInspector' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeAnalysis/MagicAwareAccessInspector.php', + 'PhpSpec\\CodeAnalysis\\NamespaceResolver' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeAnalysis/NamespaceResolver.php', + 'PhpSpec\\CodeAnalysis\\StaticRejectingNamespaceResolver' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeAnalysis/StaticRejectingNamespaceResolver.php', + 'PhpSpec\\CodeAnalysis\\TokenizedNamespaceResolver' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeAnalysis/TokenizedNamespaceResolver.php', + 'PhpSpec\\CodeAnalysis\\TokenizedTypeHintRewriter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeAnalysis/TokenizedTypeHintRewriter.php', + 'PhpSpec\\CodeAnalysis\\TypeHintRewriter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeAnalysis/TypeHintRewriter.php', + 'PhpSpec\\CodeAnalysis\\VisibilityAccessInspector' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeAnalysis/VisibilityAccessInspector.php', + 'PhpSpec\\CodeGenerator\\GeneratorManager' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/GeneratorManager.php', + 'PhpSpec\\CodeGenerator\\Generator\\ClassGenerator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/ClassGenerator.php', + 'PhpSpec\\CodeGenerator\\Generator\\CreateObjectTemplate' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/CreateObjectTemplate.php', + 'PhpSpec\\CodeGenerator\\Generator\\ExistingConstructorTemplate' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/ExistingConstructorTemplate.php', + 'PhpSpec\\CodeGenerator\\Generator\\GeneratorInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/GeneratorInterface.php', + 'PhpSpec\\CodeGenerator\\Generator\\InterfaceGenerator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/InterfaceGenerator.php', + 'PhpSpec\\CodeGenerator\\Generator\\MethodGenerator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/MethodGenerator.php', + 'PhpSpec\\CodeGenerator\\Generator\\MethodSignatureGenerator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/MethodSignatureGenerator.php', + 'PhpSpec\\CodeGenerator\\Generator\\NamedConstructorGenerator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/NamedConstructorGenerator.php', + 'PhpSpec\\CodeGenerator\\Generator\\NewFileNotifyingGenerator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/NewFileNotifyingGenerator.php', + 'PhpSpec\\CodeGenerator\\Generator\\PrivateConstructorGenerator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/PrivateConstructorGenerator.php', + 'PhpSpec\\CodeGenerator\\Generator\\PromptingGenerator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/PromptingGenerator.php', + 'PhpSpec\\CodeGenerator\\Generator\\ReturnConstantGenerator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/ReturnConstantGenerator.php', + 'PhpSpec\\CodeGenerator\\Generator\\SpecificationGenerator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/SpecificationGenerator.php', + 'PhpSpec\\CodeGenerator\\TemplateRenderer' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/TemplateRenderer.php', + 'PhpSpec\\CodeGenerator\\Writer\\CodeWriter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Writer/CodeWriter.php', + 'PhpSpec\\CodeGenerator\\Writer\\TokenizedCodeWriter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/CodeGenerator/Writer/TokenizedCodeWriter.php', + 'PhpSpec\\Config\\OptionsConfig' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Config/OptionsConfig.php', + 'PhpSpec\\Console\\Application' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Console/Application.php', + 'PhpSpec\\Console\\Assembler\\PresenterAssembler' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Console/Assembler/PresenterAssembler.php', + 'PhpSpec\\Console\\Command\\DescribeCommand' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Console/Command/DescribeCommand.php', + 'PhpSpec\\Console\\Command\\RunCommand' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Console/Command/RunCommand.php', + 'PhpSpec\\Console\\ContainerAssembler' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Console/ContainerAssembler.php', + 'PhpSpec\\Console\\Formatter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Console/Formatter.php', + 'PhpSpec\\Console\\IO' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Console/IO.php', + 'PhpSpec\\Console\\Prompter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Console/Prompter.php', + 'PhpSpec\\Console\\Prompter\\Dialog' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Console/Prompter/Dialog.php', + 'PhpSpec\\Console\\Prompter\\Factory' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Console/Prompter/Factory.php', + 'PhpSpec\\Console\\Prompter\\Question' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Console/Prompter/Question.php', + 'PhpSpec\\Console\\ResultConverter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Console/ResultConverter.php', + 'PhpSpec\\Event\\EventInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Event/EventInterface.php', + 'PhpSpec\\Event\\ExampleEvent' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Event/ExampleEvent.php', + 'PhpSpec\\Event\\ExpectationEvent' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Event/ExpectationEvent.php', + 'PhpSpec\\Event\\FileCreationEvent' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Event/FileCreationEvent.php', + 'PhpSpec\\Event\\MethodCallEvent' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Event/MethodCallEvent.php', + 'PhpSpec\\Event\\SpecificationEvent' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Event/SpecificationEvent.php', + 'PhpSpec\\Event\\SuiteEvent' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Event/SuiteEvent.php', + 'PhpSpec\\Exception\\Example\\ErrorException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Example/ErrorException.php', + 'PhpSpec\\Exception\\Example\\ExampleException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Example/ExampleException.php', + 'PhpSpec\\Exception\\Example\\FailureException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Example/FailureException.php', + 'PhpSpec\\Exception\\Example\\MatcherException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Example/MatcherException.php', + 'PhpSpec\\Exception\\Example\\NotEqualException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Example/NotEqualException.php', + 'PhpSpec\\Exception\\Example\\PendingException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Example/PendingException.php', + 'PhpSpec\\Exception\\Example\\SkippingException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Example/SkippingException.php', + 'PhpSpec\\Exception\\Example\\StopOnFailureException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Example/StopOnFailureException.php', + 'PhpSpec\\Exception\\Exception' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Exception.php', + 'PhpSpec\\Exception\\ExceptionFactory' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/ExceptionFactory.php', + 'PhpSpec\\Exception\\Fracture\\ClassNotFoundException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Fracture/ClassNotFoundException.php', + 'PhpSpec\\Exception\\Fracture\\CollaboratorNotFoundException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Fracture/CollaboratorNotFoundException.php', + 'PhpSpec\\Exception\\Fracture\\FactoryDoesNotReturnObjectException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Fracture/FactoryDoesNotReturnObjectException.php', + 'PhpSpec\\Exception\\Fracture\\FractureException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Fracture/FractureException.php', + 'PhpSpec\\Exception\\Fracture\\InterfaceNotImplementedException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Fracture/InterfaceNotImplementedException.php', + 'PhpSpec\\Exception\\Fracture\\MethodInvocationException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Fracture/MethodInvocationException.php', + 'PhpSpec\\Exception\\Fracture\\MethodNotFoundException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Fracture/MethodNotFoundException.php', + 'PhpSpec\\Exception\\Fracture\\MethodNotVisibleException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Fracture/MethodNotVisibleException.php', + 'PhpSpec\\Exception\\Fracture\\NamedConstructorNotFoundException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Fracture/NamedConstructorNotFoundException.php', + 'PhpSpec\\Exception\\Fracture\\PropertyNotFoundException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Fracture/PropertyNotFoundException.php', + 'PhpSpec\\Exception\\Generator\\NamedMethodNotFoundException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Generator/NamedMethodNotFoundException.php', + 'PhpSpec\\Exception\\Generator\\NoMethodFoundInClass' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Generator/NoMethodFoundInClass.php', + 'PhpSpec\\Exception\\Locator\\ResourceCreationException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Locator/ResourceCreationException.php', + 'PhpSpec\\Exception\\Wrapper\\CollaboratorException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Wrapper/CollaboratorException.php', + 'PhpSpec\\Exception\\Wrapper\\InvalidCollaboratorTypeException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Wrapper/InvalidCollaboratorTypeException.php', + 'PhpSpec\\Exception\\Wrapper\\MatcherNotFoundException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Wrapper/MatcherNotFoundException.php', + 'PhpSpec\\Exception\\Wrapper\\SubjectException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Exception/Wrapper/SubjectException.php', + 'PhpSpec\\Extension\\ExtensionInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Extension/ExtensionInterface.php', + 'PhpSpec\\Factory\\ReflectionFactory' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Factory/ReflectionFactory.php', + 'PhpSpec\\Formatter\\BasicFormatter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/BasicFormatter.php', + 'PhpSpec\\Formatter\\ConsoleFormatter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/ConsoleFormatter.php', + 'PhpSpec\\Formatter\\DotFormatter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/DotFormatter.php', + 'PhpSpec\\Formatter\\FatalPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/FatalPresenter.php', + 'PhpSpec\\Formatter\\HtmlFormatter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/HtmlFormatter.php', + 'PhpSpec\\Formatter\\Html\\HtmlPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Html/HtmlPresenter.php', + 'PhpSpec\\Formatter\\Html\\IO' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Html/IO.php', + 'PhpSpec\\Formatter\\Html\\InvalidExampleResultException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Html/InvalidExampleResultException.php', + 'PhpSpec\\Formatter\\Html\\ReportFailedItem' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Html/ReportFailedItem.php', + 'PhpSpec\\Formatter\\Html\\ReportItem' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Html/ReportItem.php', + 'PhpSpec\\Formatter\\Html\\ReportItemFactory' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Html/ReportItemFactory.php', + 'PhpSpec\\Formatter\\Html\\ReportPassedItem' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Html/ReportPassedItem.php', + 'PhpSpec\\Formatter\\Html\\ReportPendingItem' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Html/ReportPendingItem.php', + 'PhpSpec\\Formatter\\Html\\ReportSkippedItem' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Html/ReportSkippedItem.php', + 'PhpSpec\\Formatter\\Html\\Template' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Html/Template.php', + 'PhpSpec\\Formatter\\JUnitFormatter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/JUnitFormatter.php', + 'PhpSpec\\Formatter\\Presenter\\Differ\\ArrayEngine' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Differ/ArrayEngine.php', + 'PhpSpec\\Formatter\\Presenter\\Differ\\Differ' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Differ/Differ.php', + 'PhpSpec\\Formatter\\Presenter\\Differ\\EngineInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Differ/EngineInterface.php', + 'PhpSpec\\Formatter\\Presenter\\Differ\\ObjectEngine' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Differ/ObjectEngine.php', + 'PhpSpec\\Formatter\\Presenter\\Differ\\StringEngine' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Differ/StringEngine.php', + 'PhpSpec\\Formatter\\Presenter\\Exception\\AbstractPhpSpecExceptionPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Exception/AbstractPhpSpecExceptionPresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Exception\\CallArgumentsPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Exception/CallArgumentsPresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Exception\\ExceptionElementPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Exception/ExceptionElementPresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Exception\\ExceptionPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Exception/ExceptionPresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Exception\\GenericPhpSpecExceptionPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Exception/GenericPhpSpecExceptionPresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Exception\\HtmlPhpSpecExceptionPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Exception/HtmlPhpSpecExceptionPresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Exception\\PhpSpecExceptionPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Exception/PhpSpecExceptionPresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Exception\\SimpleExceptionElementPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Exception/SimpleExceptionElementPresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Exception\\SimpleExceptionPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Exception/SimpleExceptionPresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Exception\\TaggingExceptionElementPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Exception/TaggingExceptionElementPresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Presenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Presenter.php', + 'PhpSpec\\Formatter\\Presenter\\PresenterInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/PresenterInterface.php', + 'PhpSpec\\Formatter\\Presenter\\SimplePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/SimplePresenter.php', + 'PhpSpec\\Formatter\\Presenter\\StringPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/StringPresenter.php', + 'PhpSpec\\Formatter\\Presenter\\TaggedPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/TaggedPresenter.php', + 'PhpSpec\\Formatter\\Presenter\\TaggingPresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/TaggingPresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Value\\ArrayTypePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Value/ArrayTypePresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Value\\BaseExceptionTypePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Value/BaseExceptionTypePresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Value\\BooleanTypePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Value/BooleanTypePresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Value\\CallableTypePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Value/CallableTypePresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Value\\ComposedValuePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Value/ComposedValuePresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Value\\ExceptionTypePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Value/ExceptionTypePresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Value\\NullTypePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Value/NullTypePresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Value\\ObjectTypePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Value/ObjectTypePresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Value\\QuotingStringTypePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Value/QuotingStringTypePresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Value\\StringTypePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Value/StringTypePresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Value\\TruncatingStringTypePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Value/TruncatingStringTypePresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Value\\TypePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Value/TypePresenter.php', + 'PhpSpec\\Formatter\\Presenter\\Value\\ValuePresenter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/Value/ValuePresenter.php', + 'PhpSpec\\Formatter\\PrettyFormatter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/PrettyFormatter.php', + 'PhpSpec\\Formatter\\ProgressFormatter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/ProgressFormatter.php', + 'PhpSpec\\Formatter\\TapFormatter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/TapFormatter.php', + 'PhpSpec\\Formatter\\Template' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Formatter/Template.php', + 'PhpSpec\\IO\\IOInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/IO/IOInterface.php', + 'PhpSpec\\Listener\\BootstrapListener' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Listener/BootstrapListener.php', + 'PhpSpec\\Listener\\ClassNotFoundListener' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Listener/ClassNotFoundListener.php', + 'PhpSpec\\Listener\\CollaboratorMethodNotFoundListener' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Listener/CollaboratorMethodNotFoundListener.php', + 'PhpSpec\\Listener\\CollaboratorNotFoundListener' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Listener/CollaboratorNotFoundListener.php', + 'PhpSpec\\Listener\\CurrentExampleListener' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Listener/CurrentExampleListener.php', + 'PhpSpec\\Listener\\MethodNotFoundListener' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Listener/MethodNotFoundListener.php', + 'PhpSpec\\Listener\\MethodReturnedNullListener' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Listener/MethodReturnedNullListener.php', + 'PhpSpec\\Listener\\NamedConstructorNotFoundListener' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Listener/NamedConstructorNotFoundListener.php', + 'PhpSpec\\Listener\\RerunListener' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Listener/RerunListener.php', + 'PhpSpec\\Listener\\StatisticsCollector' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Listener/StatisticsCollector.php', + 'PhpSpec\\Listener\\StopOnFailureListener' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Listener/StopOnFailureListener.php', + 'PhpSpec\\Loader\\Node\\ExampleNode' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Loader/Node/ExampleNode.php', + 'PhpSpec\\Loader\\Node\\SpecificationNode' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Loader/Node/SpecificationNode.php', + 'PhpSpec\\Loader\\ResourceLoader' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Loader/ResourceLoader.php', + 'PhpSpec\\Loader\\SpecTransformer' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Loader/SpecTransformer.php', + 'PhpSpec\\Loader\\StreamWrapper' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Loader/StreamWrapper.php', + 'PhpSpec\\Loader\\Suite' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Loader/Suite.php', + 'PhpSpec\\Loader\\Transformer\\InMemoryTypeHintIndex' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Loader/Transformer/InMemoryTypeHintIndex.php', + 'PhpSpec\\Loader\\Transformer\\TypeHintIndex' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Loader/Transformer/TypeHintIndex.php', + 'PhpSpec\\Loader\\Transformer\\TypeHintRewriter' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Loader/Transformer/TypeHintRewriter.php', + 'PhpSpec\\Locator\\PSR0\\PSR0Locator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Locator/PSR0/PSR0Locator.php', + 'PhpSpec\\Locator\\PSR0\\PSR0Resource' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Locator/PSR0/PSR0Resource.php', + 'PhpSpec\\Locator\\ResourceInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Locator/ResourceInterface.php', + 'PhpSpec\\Locator\\ResourceLocatorInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Locator/ResourceLocatorInterface.php', + 'PhpSpec\\Locator\\ResourceManager' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Locator/ResourceManager.php', + 'PhpSpec\\Locator\\ResourceManagerInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Locator/ResourceManagerInterface.php', + 'PhpSpec\\Matcher\\ArrayContainMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/ArrayContainMatcher.php', + 'PhpSpec\\Matcher\\ArrayCountMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/ArrayCountMatcher.php', + 'PhpSpec\\Matcher\\ArrayKeyMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/ArrayKeyMatcher.php', + 'PhpSpec\\Matcher\\ArrayKeyValueMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/ArrayKeyValueMatcher.php', + 'PhpSpec\\Matcher\\BasicMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/BasicMatcher.php', + 'PhpSpec\\Matcher\\CallbackMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/CallbackMatcher.php', + 'PhpSpec\\Matcher\\ComparisonMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/ComparisonMatcher.php', + 'PhpSpec\\Matcher\\IdentityMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/IdentityMatcher.php', + 'PhpSpec\\Matcher\\MatcherInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/MatcherInterface.php', + 'PhpSpec\\Matcher\\MatchersProviderInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/MatchersProviderInterface.php', + 'PhpSpec\\Matcher\\ObjectStateMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/ObjectStateMatcher.php', + 'PhpSpec\\Matcher\\ScalarMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/ScalarMatcher.php', + 'PhpSpec\\Matcher\\StringContainMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/StringContainMatcher.php', + 'PhpSpec\\Matcher\\StringEndMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/StringEndMatcher.php', + 'PhpSpec\\Matcher\\StringRegexMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/StringRegexMatcher.php', + 'PhpSpec\\Matcher\\StringStartMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/StringStartMatcher.php', + 'PhpSpec\\Matcher\\ThrowMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/ThrowMatcher.php', + 'PhpSpec\\Matcher\\TypeMatcher' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Matcher/TypeMatcher.php', + 'PhpSpec\\Message\\CurrentExampleTracker' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Message/CurrentExampleTracker.php', + 'PhpSpec\\ObjectBehavior' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/ObjectBehavior.php', + 'PhpSpec\\Process\\Context\\ExecutionContextInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/Context/ExecutionContextInterface.php', + 'PhpSpec\\Process\\Context\\JsonExecutionContext' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/Context/JsonExecutionContext.php', + 'PhpSpec\\Process\\Prerequisites\\PrerequisiteFailedException' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/Prerequisites/PrerequisiteFailedException.php', + 'PhpSpec\\Process\\Prerequisites\\SuitePrerequisites' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/Prerequisites/SuitePrerequisites.php', + 'PhpSpec\\Process\\Prerequisites\\SuitePrerequisitesInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/Prerequisites/SuitePrerequisitesInterface.php', + 'PhpSpec\\Process\\ReRunner' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/ReRunner.php', + 'PhpSpec\\Process\\ReRunner\\CompositeReRunner' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/ReRunner/CompositeReRunner.php', + 'PhpSpec\\Process\\ReRunner\\OptionalReRunner' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/ReRunner/OptionalReRunner.php', + 'PhpSpec\\Process\\ReRunner\\PassthruReRunner' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/ReRunner/PassthruReRunner.php', + 'PhpSpec\\Process\\ReRunner\\PcntlReRunner' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/ReRunner/PcntlReRunner.php', + 'PhpSpec\\Process\\ReRunner\\PhpExecutableReRunner' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/ReRunner/PhpExecutableReRunner.php', + 'PhpSpec\\Process\\ReRunner\\PlatformSpecificReRunner' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/ReRunner/PlatformSpecificReRunner.php', + 'PhpSpec\\Process\\ReRunner\\ProcOpenReRunner' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/ReRunner/ProcOpenReRunner.php', + 'PhpSpec\\Process\\ReRunner\\WindowsPassthruReRunner' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/ReRunner/WindowsPassthruReRunner.php', + 'PhpSpec\\Process\\Shutdown\\Shutdown' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/Shutdown/Shutdown.php', + 'PhpSpec\\Process\\Shutdown\\ShutdownActionInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/Shutdown/ShutdownActionInterface.php', + 'PhpSpec\\Process\\Shutdown\\UpdateConsoleAction' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Process/Shutdown/UpdateConsoleAction.php', + 'PhpSpec\\Runner\\CollaboratorManager' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Runner/CollaboratorManager.php', + 'PhpSpec\\Runner\\ExampleRunner' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Runner/ExampleRunner.php', + 'PhpSpec\\Runner\\Maintainer\\CollaboratorsMaintainer' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Runner/Maintainer/CollaboratorsMaintainer.php', + 'PhpSpec\\Runner\\Maintainer\\ErrorMaintainer' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Runner/Maintainer/ErrorMaintainer.php', + 'PhpSpec\\Runner\\Maintainer\\LetAndLetgoMaintainer' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Runner/Maintainer/LetAndLetgoMaintainer.php', + 'PhpSpec\\Runner\\Maintainer\\MaintainerInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Runner/Maintainer/MaintainerInterface.php', + 'PhpSpec\\Runner\\Maintainer\\MatchersMaintainer' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Runner/Maintainer/MatchersMaintainer.php', + 'PhpSpec\\Runner\\Maintainer\\SubjectMaintainer' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Runner/Maintainer/SubjectMaintainer.php', + 'PhpSpec\\Runner\\MatcherManager' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Runner/MatcherManager.php', + 'PhpSpec\\Runner\\SpecificationRunner' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Runner/SpecificationRunner.php', + 'PhpSpec\\Runner\\SuiteRunner' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Runner/SuiteRunner.php', + 'PhpSpec\\ServiceContainer' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/ServiceContainer.php', + 'PhpSpec\\SpecificationInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/SpecificationInterface.php', + 'PhpSpec\\Util\\ClassFileAnalyser' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Util/ClassFileAnalyser.php', + 'PhpSpec\\Util\\Filesystem' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Util/Filesystem.php', + 'PhpSpec\\Util\\Instantiator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Util/Instantiator.php', + 'PhpSpec\\Util\\MethodAnalyser' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Util/MethodAnalyser.php', + 'PhpSpec\\Util\\NameCheckerInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Util/NameCheckerInterface.php', + 'PhpSpec\\Util\\ReservedWordsMethodNameChecker' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Util/ReservedWordsMethodNameChecker.php', + 'PhpSpec\\Wrapper\\Collaborator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Collaborator.php', + 'PhpSpec\\Wrapper\\DelayedCall' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/DelayedCall.php', + 'PhpSpec\\Wrapper\\Subject' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject.php', + 'PhpSpec\\Wrapper\\SubjectContainerInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/SubjectContainerInterface.php', + 'PhpSpec\\Wrapper\\Subject\\Caller' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/Caller.php', + 'PhpSpec\\Wrapper\\Subject\\ExpectationFactory' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/ExpectationFactory.php', + 'PhpSpec\\Wrapper\\Subject\\Expectation\\ConstructorDecorator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/Expectation/ConstructorDecorator.php', + 'PhpSpec\\Wrapper\\Subject\\Expectation\\Decorator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/Expectation/Decorator.php', + 'PhpSpec\\Wrapper\\Subject\\Expectation\\DispatcherDecorator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/Expectation/DispatcherDecorator.php', + 'PhpSpec\\Wrapper\\Subject\\Expectation\\DuringCall' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/Expectation/DuringCall.php', + 'PhpSpec\\Wrapper\\Subject\\Expectation\\ExpectationInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/Expectation/ExpectationInterface.php', + 'PhpSpec\\Wrapper\\Subject\\Expectation\\Negative' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/Expectation/Negative.php', + 'PhpSpec\\Wrapper\\Subject\\Expectation\\NegativeThrow' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/Expectation/NegativeThrow.php', + 'PhpSpec\\Wrapper\\Subject\\Expectation\\Positive' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/Expectation/Positive.php', + 'PhpSpec\\Wrapper\\Subject\\Expectation\\PositiveThrow' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/Expectation/PositiveThrow.php', + 'PhpSpec\\Wrapper\\Subject\\Expectation\\ThrowExpectation' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/Expectation/ThrowExpectation.php', + 'PhpSpec\\Wrapper\\Subject\\Expectation\\UnwrapDecorator' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/Expectation/UnwrapDecorator.php', + 'PhpSpec\\Wrapper\\Subject\\SubjectWithArrayAccess' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/SubjectWithArrayAccess.php', + 'PhpSpec\\Wrapper\\Subject\\WrappedObject' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Subject/WrappedObject.php', + 'PhpSpec\\Wrapper\\Unwrapper' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Unwrapper.php', + 'PhpSpec\\Wrapper\\Wrapper' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/Wrapper.php', + 'PhpSpec\\Wrapper\\WrapperInterface' => $vendorDir . '/phpspec/phpspec/src/PhpSpec/Wrapper/WrapperInterface.php', 'Positioner' => $vendorDir . '/dompdf/dompdf/include/positioner.cls.php', + 'Predis\\Autoloader' => $vendorDir . '/predis/predis/src/Autoloader.php', + 'Predis\\Client' => $vendorDir . '/predis/predis/src/Client.php', + 'Predis\\ClientContextInterface' => $vendorDir . '/predis/predis/src/ClientContextInterface.php', + 'Predis\\ClientException' => $vendorDir . '/predis/predis/src/ClientException.php', + 'Predis\\ClientInterface' => $vendorDir . '/predis/predis/src/ClientInterface.php', + 'Predis\\Cluster\\ClusterStrategy' => $vendorDir . '/predis/predis/src/Cluster/ClusterStrategy.php', + 'Predis\\Cluster\\Distributor\\DistributorInterface' => $vendorDir . '/predis/predis/src/Cluster/Distributor/DistributorInterface.php', + 'Predis\\Cluster\\Distributor\\EmptyRingException' => $vendorDir . '/predis/predis/src/Cluster/Distributor/EmptyRingException.php', + 'Predis\\Cluster\\Distributor\\HashRing' => $vendorDir . '/predis/predis/src/Cluster/Distributor/HashRing.php', + 'Predis\\Cluster\\Distributor\\KetamaRing' => $vendorDir . '/predis/predis/src/Cluster/Distributor/KetamaRing.php', + 'Predis\\Cluster\\Hash\\CRC16' => $vendorDir . '/predis/predis/src/Cluster/Hash/CRC16.php', + 'Predis\\Cluster\\Hash\\HashGeneratorInterface' => $vendorDir . '/predis/predis/src/Cluster/Hash/HashGeneratorInterface.php', + 'Predis\\Cluster\\PredisStrategy' => $vendorDir . '/predis/predis/src/Cluster/PredisStrategy.php', + 'Predis\\Cluster\\RedisStrategy' => $vendorDir . '/predis/predis/src/Cluster/RedisStrategy.php', + 'Predis\\Cluster\\StrategyInterface' => $vendorDir . '/predis/predis/src/Cluster/StrategyInterface.php', + 'Predis\\Collection\\Iterator\\CursorBasedIterator' => $vendorDir . '/predis/predis/src/Collection/Iterator/CursorBasedIterator.php', + 'Predis\\Collection\\Iterator\\HashKey' => $vendorDir . '/predis/predis/src/Collection/Iterator/HashKey.php', + 'Predis\\Collection\\Iterator\\Keyspace' => $vendorDir . '/predis/predis/src/Collection/Iterator/Keyspace.php', + 'Predis\\Collection\\Iterator\\ListKey' => $vendorDir . '/predis/predis/src/Collection/Iterator/ListKey.php', + 'Predis\\Collection\\Iterator\\SetKey' => $vendorDir . '/predis/predis/src/Collection/Iterator/SetKey.php', + 'Predis\\Collection\\Iterator\\SortedSetKey' => $vendorDir . '/predis/predis/src/Collection/Iterator/SortedSetKey.php', + 'Predis\\Command\\Command' => $vendorDir . '/predis/predis/src/Command/Command.php', + 'Predis\\Command\\CommandInterface' => $vendorDir . '/predis/predis/src/Command/CommandInterface.php', + 'Predis\\Command\\ConnectionAuth' => $vendorDir . '/predis/predis/src/Command/ConnectionAuth.php', + 'Predis\\Command\\ConnectionEcho' => $vendorDir . '/predis/predis/src/Command/ConnectionEcho.php', + 'Predis\\Command\\ConnectionPing' => $vendorDir . '/predis/predis/src/Command/ConnectionPing.php', + 'Predis\\Command\\ConnectionQuit' => $vendorDir . '/predis/predis/src/Command/ConnectionQuit.php', + 'Predis\\Command\\ConnectionSelect' => $vendorDir . '/predis/predis/src/Command/ConnectionSelect.php', + 'Predis\\Command\\GeospatialGeoAdd' => $vendorDir . '/predis/predis/src/Command/GeospatialGeoAdd.php', + 'Predis\\Command\\GeospatialGeoDist' => $vendorDir . '/predis/predis/src/Command/GeospatialGeoDist.php', + 'Predis\\Command\\GeospatialGeoHash' => $vendorDir . '/predis/predis/src/Command/GeospatialGeoHash.php', + 'Predis\\Command\\GeospatialGeoPos' => $vendorDir . '/predis/predis/src/Command/GeospatialGeoPos.php', + 'Predis\\Command\\GeospatialGeoRadius' => $vendorDir . '/predis/predis/src/Command/GeospatialGeoRadius.php', + 'Predis\\Command\\GeospatialGeoRadiusByMember' => $vendorDir . '/predis/predis/src/Command/GeospatialGeoRadiusByMember.php', + 'Predis\\Command\\HashDelete' => $vendorDir . '/predis/predis/src/Command/HashDelete.php', + 'Predis\\Command\\HashExists' => $vendorDir . '/predis/predis/src/Command/HashExists.php', + 'Predis\\Command\\HashGet' => $vendorDir . '/predis/predis/src/Command/HashGet.php', + 'Predis\\Command\\HashGetAll' => $vendorDir . '/predis/predis/src/Command/HashGetAll.php', + 'Predis\\Command\\HashGetMultiple' => $vendorDir . '/predis/predis/src/Command/HashGetMultiple.php', + 'Predis\\Command\\HashIncrementBy' => $vendorDir . '/predis/predis/src/Command/HashIncrementBy.php', + 'Predis\\Command\\HashIncrementByFloat' => $vendorDir . '/predis/predis/src/Command/HashIncrementByFloat.php', + 'Predis\\Command\\HashKeys' => $vendorDir . '/predis/predis/src/Command/HashKeys.php', + 'Predis\\Command\\HashLength' => $vendorDir . '/predis/predis/src/Command/HashLength.php', + 'Predis\\Command\\HashScan' => $vendorDir . '/predis/predis/src/Command/HashScan.php', + 'Predis\\Command\\HashSet' => $vendorDir . '/predis/predis/src/Command/HashSet.php', + 'Predis\\Command\\HashSetMultiple' => $vendorDir . '/predis/predis/src/Command/HashSetMultiple.php', + 'Predis\\Command\\HashSetPreserve' => $vendorDir . '/predis/predis/src/Command/HashSetPreserve.php', + 'Predis\\Command\\HashStringLength' => $vendorDir . '/predis/predis/src/Command/HashStringLength.php', + 'Predis\\Command\\HashValues' => $vendorDir . '/predis/predis/src/Command/HashValues.php', + 'Predis\\Command\\HyperLogLogAdd' => $vendorDir . '/predis/predis/src/Command/HyperLogLogAdd.php', + 'Predis\\Command\\HyperLogLogCount' => $vendorDir . '/predis/predis/src/Command/HyperLogLogCount.php', + 'Predis\\Command\\HyperLogLogMerge' => $vendorDir . '/predis/predis/src/Command/HyperLogLogMerge.php', + 'Predis\\Command\\KeyDelete' => $vendorDir . '/predis/predis/src/Command/KeyDelete.php', + 'Predis\\Command\\KeyDump' => $vendorDir . '/predis/predis/src/Command/KeyDump.php', + 'Predis\\Command\\KeyExists' => $vendorDir . '/predis/predis/src/Command/KeyExists.php', + 'Predis\\Command\\KeyExpire' => $vendorDir . '/predis/predis/src/Command/KeyExpire.php', + 'Predis\\Command\\KeyExpireAt' => $vendorDir . '/predis/predis/src/Command/KeyExpireAt.php', + 'Predis\\Command\\KeyKeys' => $vendorDir . '/predis/predis/src/Command/KeyKeys.php', + 'Predis\\Command\\KeyMigrate' => $vendorDir . '/predis/predis/src/Command/KeyMigrate.php', + 'Predis\\Command\\KeyMove' => $vendorDir . '/predis/predis/src/Command/KeyMove.php', + 'Predis\\Command\\KeyPersist' => $vendorDir . '/predis/predis/src/Command/KeyPersist.php', + 'Predis\\Command\\KeyPreciseExpire' => $vendorDir . '/predis/predis/src/Command/KeyPreciseExpire.php', + 'Predis\\Command\\KeyPreciseExpireAt' => $vendorDir . '/predis/predis/src/Command/KeyPreciseExpireAt.php', + 'Predis\\Command\\KeyPreciseTimeToLive' => $vendorDir . '/predis/predis/src/Command/KeyPreciseTimeToLive.php', + 'Predis\\Command\\KeyRandom' => $vendorDir . '/predis/predis/src/Command/KeyRandom.php', + 'Predis\\Command\\KeyRename' => $vendorDir . '/predis/predis/src/Command/KeyRename.php', + 'Predis\\Command\\KeyRenamePreserve' => $vendorDir . '/predis/predis/src/Command/KeyRenamePreserve.php', + 'Predis\\Command\\KeyRestore' => $vendorDir . '/predis/predis/src/Command/KeyRestore.php', + 'Predis\\Command\\KeyScan' => $vendorDir . '/predis/predis/src/Command/KeyScan.php', + 'Predis\\Command\\KeySort' => $vendorDir . '/predis/predis/src/Command/KeySort.php', + 'Predis\\Command\\KeyTimeToLive' => $vendorDir . '/predis/predis/src/Command/KeyTimeToLive.php', + 'Predis\\Command\\KeyType' => $vendorDir . '/predis/predis/src/Command/KeyType.php', + 'Predis\\Command\\ListIndex' => $vendorDir . '/predis/predis/src/Command/ListIndex.php', + 'Predis\\Command\\ListInsert' => $vendorDir . '/predis/predis/src/Command/ListInsert.php', + 'Predis\\Command\\ListLength' => $vendorDir . '/predis/predis/src/Command/ListLength.php', + 'Predis\\Command\\ListPopFirst' => $vendorDir . '/predis/predis/src/Command/ListPopFirst.php', + 'Predis\\Command\\ListPopFirstBlocking' => $vendorDir . '/predis/predis/src/Command/ListPopFirstBlocking.php', + 'Predis\\Command\\ListPopLast' => $vendorDir . '/predis/predis/src/Command/ListPopLast.php', + 'Predis\\Command\\ListPopLastBlocking' => $vendorDir . '/predis/predis/src/Command/ListPopLastBlocking.php', + 'Predis\\Command\\ListPopLastPushHead' => $vendorDir . '/predis/predis/src/Command/ListPopLastPushHead.php', + 'Predis\\Command\\ListPopLastPushHeadBlocking' => $vendorDir . '/predis/predis/src/Command/ListPopLastPushHeadBlocking.php', + 'Predis\\Command\\ListPushHead' => $vendorDir . '/predis/predis/src/Command/ListPushHead.php', + 'Predis\\Command\\ListPushHeadX' => $vendorDir . '/predis/predis/src/Command/ListPushHeadX.php', + 'Predis\\Command\\ListPushTail' => $vendorDir . '/predis/predis/src/Command/ListPushTail.php', + 'Predis\\Command\\ListPushTailX' => $vendorDir . '/predis/predis/src/Command/ListPushTailX.php', + 'Predis\\Command\\ListRange' => $vendorDir . '/predis/predis/src/Command/ListRange.php', + 'Predis\\Command\\ListRemove' => $vendorDir . '/predis/predis/src/Command/ListRemove.php', + 'Predis\\Command\\ListSet' => $vendorDir . '/predis/predis/src/Command/ListSet.php', + 'Predis\\Command\\ListTrim' => $vendorDir . '/predis/predis/src/Command/ListTrim.php', + 'Predis\\Command\\PrefixableCommandInterface' => $vendorDir . '/predis/predis/src/Command/PrefixableCommandInterface.php', + 'Predis\\Command\\Processor\\KeyPrefixProcessor' => $vendorDir . '/predis/predis/src/Command/Processor/KeyPrefixProcessor.php', + 'Predis\\Command\\Processor\\ProcessorChain' => $vendorDir . '/predis/predis/src/Command/Processor/ProcessorChain.php', + 'Predis\\Command\\Processor\\ProcessorInterface' => $vendorDir . '/predis/predis/src/Command/Processor/ProcessorInterface.php', + 'Predis\\Command\\PubSubPublish' => $vendorDir . '/predis/predis/src/Command/PubSubPublish.php', + 'Predis\\Command\\PubSubPubsub' => $vendorDir . '/predis/predis/src/Command/PubSubPubsub.php', + 'Predis\\Command\\PubSubSubscribe' => $vendorDir . '/predis/predis/src/Command/PubSubSubscribe.php', + 'Predis\\Command\\PubSubSubscribeByPattern' => $vendorDir . '/predis/predis/src/Command/PubSubSubscribeByPattern.php', + 'Predis\\Command\\PubSubUnsubscribe' => $vendorDir . '/predis/predis/src/Command/PubSubUnsubscribe.php', + 'Predis\\Command\\PubSubUnsubscribeByPattern' => $vendorDir . '/predis/predis/src/Command/PubSubUnsubscribeByPattern.php', + 'Predis\\Command\\RawCommand' => $vendorDir . '/predis/predis/src/Command/RawCommand.php', + 'Predis\\Command\\ScriptCommand' => $vendorDir . '/predis/predis/src/Command/ScriptCommand.php', + 'Predis\\Command\\ServerBackgroundRewriteAOF' => $vendorDir . '/predis/predis/src/Command/ServerBackgroundRewriteAOF.php', + 'Predis\\Command\\ServerBackgroundSave' => $vendorDir . '/predis/predis/src/Command/ServerBackgroundSave.php', + 'Predis\\Command\\ServerClient' => $vendorDir . '/predis/predis/src/Command/ServerClient.php', + 'Predis\\Command\\ServerCommand' => $vendorDir . '/predis/predis/src/Command/ServerCommand.php', + 'Predis\\Command\\ServerConfig' => $vendorDir . '/predis/predis/src/Command/ServerConfig.php', + 'Predis\\Command\\ServerDatabaseSize' => $vendorDir . '/predis/predis/src/Command/ServerDatabaseSize.php', + 'Predis\\Command\\ServerEval' => $vendorDir . '/predis/predis/src/Command/ServerEval.php', + 'Predis\\Command\\ServerEvalSHA' => $vendorDir . '/predis/predis/src/Command/ServerEvalSHA.php', + 'Predis\\Command\\ServerFlushAll' => $vendorDir . '/predis/predis/src/Command/ServerFlushAll.php', + 'Predis\\Command\\ServerFlushDatabase' => $vendorDir . '/predis/predis/src/Command/ServerFlushDatabase.php', + 'Predis\\Command\\ServerInfo' => $vendorDir . '/predis/predis/src/Command/ServerInfo.php', + 'Predis\\Command\\ServerInfoV26x' => $vendorDir . '/predis/predis/src/Command/ServerInfoV26x.php', + 'Predis\\Command\\ServerLastSave' => $vendorDir . '/predis/predis/src/Command/ServerLastSave.php', + 'Predis\\Command\\ServerMonitor' => $vendorDir . '/predis/predis/src/Command/ServerMonitor.php', + 'Predis\\Command\\ServerObject' => $vendorDir . '/predis/predis/src/Command/ServerObject.php', + 'Predis\\Command\\ServerSave' => $vendorDir . '/predis/predis/src/Command/ServerSave.php', + 'Predis\\Command\\ServerScript' => $vendorDir . '/predis/predis/src/Command/ServerScript.php', + 'Predis\\Command\\ServerSentinel' => $vendorDir . '/predis/predis/src/Command/ServerSentinel.php', + 'Predis\\Command\\ServerShutdown' => $vendorDir . '/predis/predis/src/Command/ServerShutdown.php', + 'Predis\\Command\\ServerSlaveOf' => $vendorDir . '/predis/predis/src/Command/ServerSlaveOf.php', + 'Predis\\Command\\ServerSlowlog' => $vendorDir . '/predis/predis/src/Command/ServerSlowlog.php', + 'Predis\\Command\\ServerTime' => $vendorDir . '/predis/predis/src/Command/ServerTime.php', + 'Predis\\Command\\SetAdd' => $vendorDir . '/predis/predis/src/Command/SetAdd.php', + 'Predis\\Command\\SetCardinality' => $vendorDir . '/predis/predis/src/Command/SetCardinality.php', + 'Predis\\Command\\SetDifference' => $vendorDir . '/predis/predis/src/Command/SetDifference.php', + 'Predis\\Command\\SetDifferenceStore' => $vendorDir . '/predis/predis/src/Command/SetDifferenceStore.php', + 'Predis\\Command\\SetIntersection' => $vendorDir . '/predis/predis/src/Command/SetIntersection.php', + 'Predis\\Command\\SetIntersectionStore' => $vendorDir . '/predis/predis/src/Command/SetIntersectionStore.php', + 'Predis\\Command\\SetIsMember' => $vendorDir . '/predis/predis/src/Command/SetIsMember.php', + 'Predis\\Command\\SetMembers' => $vendorDir . '/predis/predis/src/Command/SetMembers.php', + 'Predis\\Command\\SetMove' => $vendorDir . '/predis/predis/src/Command/SetMove.php', + 'Predis\\Command\\SetPop' => $vendorDir . '/predis/predis/src/Command/SetPop.php', + 'Predis\\Command\\SetRandomMember' => $vendorDir . '/predis/predis/src/Command/SetRandomMember.php', + 'Predis\\Command\\SetRemove' => $vendorDir . '/predis/predis/src/Command/SetRemove.php', + 'Predis\\Command\\SetScan' => $vendorDir . '/predis/predis/src/Command/SetScan.php', + 'Predis\\Command\\SetUnion' => $vendorDir . '/predis/predis/src/Command/SetUnion.php', + 'Predis\\Command\\SetUnionStore' => $vendorDir . '/predis/predis/src/Command/SetUnionStore.php', + 'Predis\\Command\\StringAppend' => $vendorDir . '/predis/predis/src/Command/StringAppend.php', + 'Predis\\Command\\StringBitCount' => $vendorDir . '/predis/predis/src/Command/StringBitCount.php', + 'Predis\\Command\\StringBitField' => $vendorDir . '/predis/predis/src/Command/StringBitField.php', + 'Predis\\Command\\StringBitOp' => $vendorDir . '/predis/predis/src/Command/StringBitOp.php', + 'Predis\\Command\\StringBitPos' => $vendorDir . '/predis/predis/src/Command/StringBitPos.php', + 'Predis\\Command\\StringDecrement' => $vendorDir . '/predis/predis/src/Command/StringDecrement.php', + 'Predis\\Command\\StringDecrementBy' => $vendorDir . '/predis/predis/src/Command/StringDecrementBy.php', + 'Predis\\Command\\StringGet' => $vendorDir . '/predis/predis/src/Command/StringGet.php', + 'Predis\\Command\\StringGetBit' => $vendorDir . '/predis/predis/src/Command/StringGetBit.php', + 'Predis\\Command\\StringGetMultiple' => $vendorDir . '/predis/predis/src/Command/StringGetMultiple.php', + 'Predis\\Command\\StringGetRange' => $vendorDir . '/predis/predis/src/Command/StringGetRange.php', + 'Predis\\Command\\StringGetSet' => $vendorDir . '/predis/predis/src/Command/StringGetSet.php', + 'Predis\\Command\\StringIncrement' => $vendorDir . '/predis/predis/src/Command/StringIncrement.php', + 'Predis\\Command\\StringIncrementBy' => $vendorDir . '/predis/predis/src/Command/StringIncrementBy.php', + 'Predis\\Command\\StringIncrementByFloat' => $vendorDir . '/predis/predis/src/Command/StringIncrementByFloat.php', + 'Predis\\Command\\StringPreciseSetExpire' => $vendorDir . '/predis/predis/src/Command/StringPreciseSetExpire.php', + 'Predis\\Command\\StringSet' => $vendorDir . '/predis/predis/src/Command/StringSet.php', + 'Predis\\Command\\StringSetBit' => $vendorDir . '/predis/predis/src/Command/StringSetBit.php', + 'Predis\\Command\\StringSetExpire' => $vendorDir . '/predis/predis/src/Command/StringSetExpire.php', + 'Predis\\Command\\StringSetMultiple' => $vendorDir . '/predis/predis/src/Command/StringSetMultiple.php', + 'Predis\\Command\\StringSetMultiplePreserve' => $vendorDir . '/predis/predis/src/Command/StringSetMultiplePreserve.php', + 'Predis\\Command\\StringSetPreserve' => $vendorDir . '/predis/predis/src/Command/StringSetPreserve.php', + 'Predis\\Command\\StringSetRange' => $vendorDir . '/predis/predis/src/Command/StringSetRange.php', + 'Predis\\Command\\StringStrlen' => $vendorDir . '/predis/predis/src/Command/StringStrlen.php', + 'Predis\\Command\\StringSubstr' => $vendorDir . '/predis/predis/src/Command/StringSubstr.php', + 'Predis\\Command\\TransactionDiscard' => $vendorDir . '/predis/predis/src/Command/TransactionDiscard.php', + 'Predis\\Command\\TransactionExec' => $vendorDir . '/predis/predis/src/Command/TransactionExec.php', + 'Predis\\Command\\TransactionMulti' => $vendorDir . '/predis/predis/src/Command/TransactionMulti.php', + 'Predis\\Command\\TransactionUnwatch' => $vendorDir . '/predis/predis/src/Command/TransactionUnwatch.php', + 'Predis\\Command\\TransactionWatch' => $vendorDir . '/predis/predis/src/Command/TransactionWatch.php', + 'Predis\\Command\\ZSetAdd' => $vendorDir . '/predis/predis/src/Command/ZSetAdd.php', + 'Predis\\Command\\ZSetCardinality' => $vendorDir . '/predis/predis/src/Command/ZSetCardinality.php', + 'Predis\\Command\\ZSetCount' => $vendorDir . '/predis/predis/src/Command/ZSetCount.php', + 'Predis\\Command\\ZSetIncrementBy' => $vendorDir . '/predis/predis/src/Command/ZSetIncrementBy.php', + 'Predis\\Command\\ZSetIntersectionStore' => $vendorDir . '/predis/predis/src/Command/ZSetIntersectionStore.php', + 'Predis\\Command\\ZSetLexCount' => $vendorDir . '/predis/predis/src/Command/ZSetLexCount.php', + 'Predis\\Command\\ZSetRange' => $vendorDir . '/predis/predis/src/Command/ZSetRange.php', + 'Predis\\Command\\ZSetRangeByLex' => $vendorDir . '/predis/predis/src/Command/ZSetRangeByLex.php', + 'Predis\\Command\\ZSetRangeByScore' => $vendorDir . '/predis/predis/src/Command/ZSetRangeByScore.php', + 'Predis\\Command\\ZSetRank' => $vendorDir . '/predis/predis/src/Command/ZSetRank.php', + 'Predis\\Command\\ZSetRemove' => $vendorDir . '/predis/predis/src/Command/ZSetRemove.php', + 'Predis\\Command\\ZSetRemoveRangeByLex' => $vendorDir . '/predis/predis/src/Command/ZSetRemoveRangeByLex.php', + 'Predis\\Command\\ZSetRemoveRangeByRank' => $vendorDir . '/predis/predis/src/Command/ZSetRemoveRangeByRank.php', + 'Predis\\Command\\ZSetRemoveRangeByScore' => $vendorDir . '/predis/predis/src/Command/ZSetRemoveRangeByScore.php', + 'Predis\\Command\\ZSetReverseRange' => $vendorDir . '/predis/predis/src/Command/ZSetReverseRange.php', + 'Predis\\Command\\ZSetReverseRangeByLex' => $vendorDir . '/predis/predis/src/Command/ZSetReverseRangeByLex.php', + 'Predis\\Command\\ZSetReverseRangeByScore' => $vendorDir . '/predis/predis/src/Command/ZSetReverseRangeByScore.php', + 'Predis\\Command\\ZSetReverseRank' => $vendorDir . '/predis/predis/src/Command/ZSetReverseRank.php', + 'Predis\\Command\\ZSetScan' => $vendorDir . '/predis/predis/src/Command/ZSetScan.php', + 'Predis\\Command\\ZSetScore' => $vendorDir . '/predis/predis/src/Command/ZSetScore.php', + 'Predis\\Command\\ZSetUnionStore' => $vendorDir . '/predis/predis/src/Command/ZSetUnionStore.php', + 'Predis\\CommunicationException' => $vendorDir . '/predis/predis/src/CommunicationException.php', + 'Predis\\Configuration\\ClusterOption' => $vendorDir . '/predis/predis/src/Configuration/ClusterOption.php', + 'Predis\\Configuration\\ConnectionFactoryOption' => $vendorDir . '/predis/predis/src/Configuration/ConnectionFactoryOption.php', + 'Predis\\Configuration\\ExceptionsOption' => $vendorDir . '/predis/predis/src/Configuration/ExceptionsOption.php', + 'Predis\\Configuration\\OptionInterface' => $vendorDir . '/predis/predis/src/Configuration/OptionInterface.php', + 'Predis\\Configuration\\Options' => $vendorDir . '/predis/predis/src/Configuration/Options.php', + 'Predis\\Configuration\\OptionsInterface' => $vendorDir . '/predis/predis/src/Configuration/OptionsInterface.php', + 'Predis\\Configuration\\PrefixOption' => $vendorDir . '/predis/predis/src/Configuration/PrefixOption.php', + 'Predis\\Configuration\\ProfileOption' => $vendorDir . '/predis/predis/src/Configuration/ProfileOption.php', + 'Predis\\Configuration\\ReplicationOption' => $vendorDir . '/predis/predis/src/Configuration/ReplicationOption.php', + 'Predis\\Connection\\AbstractConnection' => $vendorDir . '/predis/predis/src/Connection/AbstractConnection.php', + 'Predis\\Connection\\AggregateConnectionInterface' => $vendorDir . '/predis/predis/src/Connection/AggregateConnectionInterface.php', + 'Predis\\Connection\\Aggregate\\ClusterInterface' => $vendorDir . '/predis/predis/src/Connection/Aggregate/ClusterInterface.php', + 'Predis\\Connection\\Aggregate\\MasterSlaveReplication' => $vendorDir . '/predis/predis/src/Connection/Aggregate/MasterSlaveReplication.php', + 'Predis\\Connection\\Aggregate\\PredisCluster' => $vendorDir . '/predis/predis/src/Connection/Aggregate/PredisCluster.php', + 'Predis\\Connection\\Aggregate\\RedisCluster' => $vendorDir . '/predis/predis/src/Connection/Aggregate/RedisCluster.php', + 'Predis\\Connection\\Aggregate\\ReplicationInterface' => $vendorDir . '/predis/predis/src/Connection/Aggregate/ReplicationInterface.php', + 'Predis\\Connection\\Aggregate\\SentinelReplication' => $vendorDir . '/predis/predis/src/Connection/Aggregate/SentinelReplication.php', + 'Predis\\Connection\\CompositeConnectionInterface' => $vendorDir . '/predis/predis/src/Connection/CompositeConnectionInterface.php', + 'Predis\\Connection\\CompositeStreamConnection' => $vendorDir . '/predis/predis/src/Connection/CompositeStreamConnection.php', + 'Predis\\Connection\\ConnectionException' => $vendorDir . '/predis/predis/src/Connection/ConnectionException.php', + 'Predis\\Connection\\ConnectionInterface' => $vendorDir . '/predis/predis/src/Connection/ConnectionInterface.php', + 'Predis\\Connection\\Factory' => $vendorDir . '/predis/predis/src/Connection/Factory.php', + 'Predis\\Connection\\FactoryInterface' => $vendorDir . '/predis/predis/src/Connection/FactoryInterface.php', + 'Predis\\Connection\\NodeConnectionInterface' => $vendorDir . '/predis/predis/src/Connection/NodeConnectionInterface.php', + 'Predis\\Connection\\Parameters' => $vendorDir . '/predis/predis/src/Connection/Parameters.php', + 'Predis\\Connection\\ParametersInterface' => $vendorDir . '/predis/predis/src/Connection/ParametersInterface.php', + 'Predis\\Connection\\PhpiredisSocketConnection' => $vendorDir . '/predis/predis/src/Connection/PhpiredisSocketConnection.php', + 'Predis\\Connection\\PhpiredisStreamConnection' => $vendorDir . '/predis/predis/src/Connection/PhpiredisStreamConnection.php', + 'Predis\\Connection\\StreamConnection' => $vendorDir . '/predis/predis/src/Connection/StreamConnection.php', + 'Predis\\Connection\\WebdisConnection' => $vendorDir . '/predis/predis/src/Connection/WebdisConnection.php', + 'Predis\\Monitor\\Consumer' => $vendorDir . '/predis/predis/src/Monitor/Consumer.php', + 'Predis\\NotSupportedException' => $vendorDir . '/predis/predis/src/NotSupportedException.php', + 'Predis\\Pipeline\\Atomic' => $vendorDir . '/predis/predis/src/Pipeline/Atomic.php', + 'Predis\\Pipeline\\ConnectionErrorProof' => $vendorDir . '/predis/predis/src/Pipeline/ConnectionErrorProof.php', + 'Predis\\Pipeline\\FireAndForget' => $vendorDir . '/predis/predis/src/Pipeline/FireAndForget.php', + 'Predis\\Pipeline\\Pipeline' => $vendorDir . '/predis/predis/src/Pipeline/Pipeline.php', + 'Predis\\PredisException' => $vendorDir . '/predis/predis/src/PredisException.php', + 'Predis\\Profile\\Factory' => $vendorDir . '/predis/predis/src/Profile/Factory.php', + 'Predis\\Profile\\ProfileInterface' => $vendorDir . '/predis/predis/src/Profile/ProfileInterface.php', + 'Predis\\Profile\\RedisProfile' => $vendorDir . '/predis/predis/src/Profile/RedisProfile.php', + 'Predis\\Profile\\RedisUnstable' => $vendorDir . '/predis/predis/src/Profile/RedisUnstable.php', + 'Predis\\Profile\\RedisVersion200' => $vendorDir . '/predis/predis/src/Profile/RedisVersion200.php', + 'Predis\\Profile\\RedisVersion220' => $vendorDir . '/predis/predis/src/Profile/RedisVersion220.php', + 'Predis\\Profile\\RedisVersion240' => $vendorDir . '/predis/predis/src/Profile/RedisVersion240.php', + 'Predis\\Profile\\RedisVersion260' => $vendorDir . '/predis/predis/src/Profile/RedisVersion260.php', + 'Predis\\Profile\\RedisVersion280' => $vendorDir . '/predis/predis/src/Profile/RedisVersion280.php', + 'Predis\\Profile\\RedisVersion300' => $vendorDir . '/predis/predis/src/Profile/RedisVersion300.php', + 'Predis\\Profile\\RedisVersion320' => $vendorDir . '/predis/predis/src/Profile/RedisVersion320.php', + 'Predis\\Protocol\\ProtocolException' => $vendorDir . '/predis/predis/src/Protocol/ProtocolException.php', + 'Predis\\Protocol\\ProtocolProcessorInterface' => $vendorDir . '/predis/predis/src/Protocol/ProtocolProcessorInterface.php', + 'Predis\\Protocol\\RequestSerializerInterface' => $vendorDir . '/predis/predis/src/Protocol/RequestSerializerInterface.php', + 'Predis\\Protocol\\ResponseReaderInterface' => $vendorDir . '/predis/predis/src/Protocol/ResponseReaderInterface.php', + 'Predis\\Protocol\\Text\\CompositeProtocolProcessor' => $vendorDir . '/predis/predis/src/Protocol/Text/CompositeProtocolProcessor.php', + 'Predis\\Protocol\\Text\\Handler\\BulkResponse' => $vendorDir . '/predis/predis/src/Protocol/Text/Handler/BulkResponse.php', + 'Predis\\Protocol\\Text\\Handler\\ErrorResponse' => $vendorDir . '/predis/predis/src/Protocol/Text/Handler/ErrorResponse.php', + 'Predis\\Protocol\\Text\\Handler\\IntegerResponse' => $vendorDir . '/predis/predis/src/Protocol/Text/Handler/IntegerResponse.php', + 'Predis\\Protocol\\Text\\Handler\\MultiBulkResponse' => $vendorDir . '/predis/predis/src/Protocol/Text/Handler/MultiBulkResponse.php', + 'Predis\\Protocol\\Text\\Handler\\ResponseHandlerInterface' => $vendorDir . '/predis/predis/src/Protocol/Text/Handler/ResponseHandlerInterface.php', + 'Predis\\Protocol\\Text\\Handler\\StatusResponse' => $vendorDir . '/predis/predis/src/Protocol/Text/Handler/StatusResponse.php', + 'Predis\\Protocol\\Text\\Handler\\StreamableMultiBulkResponse' => $vendorDir . '/predis/predis/src/Protocol/Text/Handler/StreamableMultiBulkResponse.php', + 'Predis\\Protocol\\Text\\ProtocolProcessor' => $vendorDir . '/predis/predis/src/Protocol/Text/ProtocolProcessor.php', + 'Predis\\Protocol\\Text\\RequestSerializer' => $vendorDir . '/predis/predis/src/Protocol/Text/RequestSerializer.php', + 'Predis\\Protocol\\Text\\ResponseReader' => $vendorDir . '/predis/predis/src/Protocol/Text/ResponseReader.php', + 'Predis\\PubSub\\AbstractConsumer' => $vendorDir . '/predis/predis/src/PubSub/AbstractConsumer.php', + 'Predis\\PubSub\\Consumer' => $vendorDir . '/predis/predis/src/PubSub/Consumer.php', + 'Predis\\PubSub\\DispatcherLoop' => $vendorDir . '/predis/predis/src/PubSub/DispatcherLoop.php', + 'Predis\\Replication\\MissingMasterException' => $vendorDir . '/predis/predis/src/Replication/MissingMasterException.php', + 'Predis\\Replication\\ReplicationStrategy' => $vendorDir . '/predis/predis/src/Replication/ReplicationStrategy.php', + 'Predis\\Replication\\RoleException' => $vendorDir . '/predis/predis/src/Replication/RoleException.php', + 'Predis\\Response\\Error' => $vendorDir . '/predis/predis/src/Response/Error.php', + 'Predis\\Response\\ErrorInterface' => $vendorDir . '/predis/predis/src/Response/ErrorInterface.php', + 'Predis\\Response\\Iterator\\MultiBulk' => $vendorDir . '/predis/predis/src/Response/Iterator/MultiBulk.php', + 'Predis\\Response\\Iterator\\MultiBulkIterator' => $vendorDir . '/predis/predis/src/Response/Iterator/MultiBulkIterator.php', + 'Predis\\Response\\Iterator\\MultiBulkTuple' => $vendorDir . '/predis/predis/src/Response/Iterator/MultiBulkTuple.php', + 'Predis\\Response\\ResponseInterface' => $vendorDir . '/predis/predis/src/Response/ResponseInterface.php', + 'Predis\\Response\\ServerException' => $vendorDir . '/predis/predis/src/Response/ServerException.php', + 'Predis\\Response\\Status' => $vendorDir . '/predis/predis/src/Response/Status.php', + 'Predis\\Session\\Handler' => $vendorDir . '/predis/predis/src/Session/Handler.php', + 'Predis\\Transaction\\AbortedMultiExecException' => $vendorDir . '/predis/predis/src/Transaction/AbortedMultiExecException.php', + 'Predis\\Transaction\\MultiExec' => $vendorDir . '/predis/predis/src/Transaction/MultiExec.php', + 'Predis\\Transaction\\MultiExecState' => $vendorDir . '/predis/predis/src/Transaction/MultiExecState.php', + 'Propaganistas\\LaravelPhone\\Exceptions\\InvalidParameterException' => $vendorDir . '/propaganistas/laravel-phone/src/Exceptions/InvalidParameterException.php', + 'Propaganistas\\LaravelPhone\\Exceptions\\NoValidCountryFoundException' => $vendorDir . '/propaganistas/laravel-phone/src/Exceptions/NoValidCountryFoundException.php', + 'Propaganistas\\LaravelPhone\\LaravelPhoneFacade' => $vendorDir . '/propaganistas/laravel-phone/src/LaravelPhoneFacade.php', + 'Propaganistas\\LaravelPhone\\LaravelPhoneServiceProvider' => $vendorDir . '/propaganistas/laravel-phone/src/LaravelPhoneServiceProvider.php', + 'Propaganistas\\LaravelPhone\\PhoneValidator' => $vendorDir . '/propaganistas/laravel-phone/src/PhoneValidator.php', + 'Prophecy\\Argument' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument.php', + 'Prophecy\\Argument\\ArgumentsWildcard' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/ArgumentsWildcard.php', + 'Prophecy\\Argument\\Token\\AnyValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php', + 'Prophecy\\Argument\\Token\\AnyValuesToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php', + 'Prophecy\\Argument\\Token\\ApproximateValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ApproximateValueToken.php', + 'Prophecy\\Argument\\Token\\ArrayCountToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php', + 'Prophecy\\Argument\\Token\\ArrayEntryToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php', + 'Prophecy\\Argument\\Token\\ArrayEveryEntryToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php', + 'Prophecy\\Argument\\Token\\CallbackToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/CallbackToken.php', + 'Prophecy\\Argument\\Token\\ExactValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php', + 'Prophecy\\Argument\\Token\\IdenticalValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/IdenticalValueToken.php', + 'Prophecy\\Argument\\Token\\LogicalAndToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php', + 'Prophecy\\Argument\\Token\\LogicalNotToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php', + 'Prophecy\\Argument\\Token\\ObjectStateToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php', + 'Prophecy\\Argument\\Token\\StringContainsToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/StringContainsToken.php', + 'Prophecy\\Argument\\Token\\TokenInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/TokenInterface.php', + 'Prophecy\\Argument\\Token\\TypeToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/TypeToken.php', + 'Prophecy\\Call\\Call' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Call/Call.php', + 'Prophecy\\Call\\CallCenter' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Call/CallCenter.php', + 'Prophecy\\Comparator\\ClosureComparator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/ClosureComparator.php', + 'Prophecy\\Comparator\\Factory' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/Factory.php', + 'Prophecy\\Comparator\\ProphecyComparator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/ProphecyComparator.php', + 'Prophecy\\Doubler\\CachedDoubler' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/CachedDoubler.php', + 'Prophecy\\Doubler\\ClassPatch\\ClassPatchInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php', + 'Prophecy\\Doubler\\ClassPatch\\DisableConstructorPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\HhvmExceptionPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\KeywordPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/KeywordPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\MagicCallPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/MagicCallPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\ProphecySubjectPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\ReflectionClassNewInstancePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php', + 'Prophecy\\Doubler\\ClassPatch\\SplFileInfoPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\TraversablePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/TraversablePatch.php', + 'Prophecy\\Doubler\\DoubleInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/DoubleInterface.php', + 'Prophecy\\Doubler\\Doubler' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Doubler.php', + 'Prophecy\\Doubler\\Generator\\ClassCodeGenerator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCodeGenerator.php', + 'Prophecy\\Doubler\\Generator\\ClassCreator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCreator.php', + 'Prophecy\\Doubler\\Generator\\ClassMirror' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassMirror.php', + 'Prophecy\\Doubler\\Generator\\Node\\ArgumentNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentNode.php', + 'Prophecy\\Doubler\\Generator\\Node\\ClassNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ClassNode.php', + 'Prophecy\\Doubler\\Generator\\Node\\MethodNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/MethodNode.php', + 'Prophecy\\Doubler\\Generator\\ReflectionInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ReflectionInterface.php', + 'Prophecy\\Doubler\\LazyDouble' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php', + 'Prophecy\\Doubler\\NameGenerator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/NameGenerator.php', + 'Prophecy\\Exception\\Call\\UnexpectedCallException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Call/UnexpectedCallException.php', + 'Prophecy\\Exception\\Doubler\\ClassCreatorException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassCreatorException.php', + 'Prophecy\\Exception\\Doubler\\ClassMirrorException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassMirrorException.php', + 'Prophecy\\Exception\\Doubler\\ClassNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\DoubleException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php', + 'Prophecy\\Exception\\Doubler\\DoublerException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php', + 'Prophecy\\Exception\\Doubler\\InterfaceNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/InterfaceNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\MethodNotExtendableException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotExtendableException.php', + 'Prophecy\\Exception\\Doubler\\MethodNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\ReturnByReferenceException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ReturnByReferenceException.php', + 'Prophecy\\Exception\\Exception' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Exception.php', + 'Prophecy\\Exception\\InvalidArgumentException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php', + 'Prophecy\\Exception\\Prediction\\AggregateException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/AggregateException.php', + 'Prophecy\\Exception\\Prediction\\FailedPredictionException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/FailedPredictionException.php', + 'Prophecy\\Exception\\Prediction\\NoCallsException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.php', + 'Prophecy\\Exception\\Prediction\\PredictionException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.php', + 'Prophecy\\Exception\\Prediction\\UnexpectedCallsCountException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsCountException.php', + 'Prophecy\\Exception\\Prediction\\UnexpectedCallsException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php', + 'Prophecy\\Exception\\Prophecy\\MethodProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/MethodProphecyException.php', + 'Prophecy\\Exception\\Prophecy\\ObjectProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ObjectProphecyException.php', + 'Prophecy\\Exception\\Prophecy\\ProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php', + 'Prophecy\\PhpDocumentor\\ClassAndInterfaceTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php', + 'Prophecy\\PhpDocumentor\\ClassTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassTagRetriever.php', + 'Prophecy\\PhpDocumentor\\LegacyClassTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php', + 'Prophecy\\PhpDocumentor\\MethodTagRetrieverInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php', + 'Prophecy\\Prediction\\CallPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallPrediction.php', + 'Prophecy\\Prediction\\CallTimesPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallTimesPrediction.php', + 'Prophecy\\Prediction\\CallbackPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallbackPrediction.php', + 'Prophecy\\Prediction\\NoCallsPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/NoCallsPrediction.php', + 'Prophecy\\Prediction\\PredictionInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/PredictionInterface.php', + 'Prophecy\\Promise\\CallbackPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/CallbackPromise.php', + 'Prophecy\\Promise\\PromiseInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/PromiseInterface.php', + 'Prophecy\\Promise\\ReturnArgumentPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ReturnArgumentPromise.php', + 'Prophecy\\Promise\\ReturnPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ReturnPromise.php', + 'Prophecy\\Promise\\ThrowPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ThrowPromise.php', + 'Prophecy\\Prophecy\\MethodProphecy' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php', + 'Prophecy\\Prophecy\\ObjectProphecy' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php', + 'Prophecy\\Prophecy\\ProphecyInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecyInterface.php', + 'Prophecy\\Prophecy\\ProphecySubjectInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecySubjectInterface.php', + 'Prophecy\\Prophecy\\Revealer' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/Revealer.php', + 'Prophecy\\Prophecy\\RevealerInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/RevealerInterface.php', + 'Prophecy\\Prophet' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophet.php', + 'Prophecy\\Util\\ExportUtil' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Util/ExportUtil.php', + 'Prophecy\\Util\\StringUtil' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Util/StringUtil.php', + 'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php', + 'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php', + 'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php', + 'Psr\\Http\\Message\\ServerRequestInterface' => $vendorDir . '/psr/http-message/src/ServerRequestInterface.php', + 'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php', + 'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php', + 'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php', + 'Psr\\Log\\AbstractLogger' => $vendorDir . '/psr/log/Psr/Log/AbstractLogger.php', + 'Psr\\Log\\InvalidArgumentException' => $vendorDir . '/psr/log/Psr/Log/InvalidArgumentException.php', + 'Psr\\Log\\LogLevel' => $vendorDir . '/psr/log/Psr/Log/LogLevel.php', + 'Psr\\Log\\LoggerAwareInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareInterface.php', + 'Psr\\Log\\LoggerAwareTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareTrait.php', + 'Psr\\Log\\LoggerInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerInterface.php', + 'Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php', + 'Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php', + 'Psr\\Log\\Test\\DummyTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psr\\Log\\Test\\LoggerInterfaceTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psy\\Autoloader' => $vendorDir . '/psy/psysh/src/Psy/Autoloader.php', + 'Psy\\CodeCleaner' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner.php', + 'Psy\\CodeCleaner\\AbstractClassPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/AbstractClassPass.php', + 'Psy\\CodeCleaner\\AssignThisVariablePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/AssignThisVariablePass.php', + 'Psy\\CodeCleaner\\CallTimePassByReferencePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/CallTimePassByReferencePass.php', + 'Psy\\CodeCleaner\\CalledClassPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/CalledClassPass.php', + 'Psy\\CodeCleaner\\CodeCleanerPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/CodeCleanerPass.php', + 'Psy\\CodeCleaner\\ExitPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/ExitPass.php', + 'Psy\\CodeCleaner\\FunctionReturnInWriteContextPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/FunctionReturnInWriteContextPass.php', + 'Psy\\CodeCleaner\\ImplicitReturnPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/ImplicitReturnPass.php', + 'Psy\\CodeCleaner\\InstanceOfPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/InstanceOfPass.php', + 'Psy\\CodeCleaner\\LeavePsyshAlonePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/LeavePsyshAlonePass.php', + 'Psy\\CodeCleaner\\LegacyEmptyPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/LegacyEmptyPass.php', + 'Psy\\CodeCleaner\\MagicConstantsPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/MagicConstantsPass.php', + 'Psy\\CodeCleaner\\NamespaceAwarePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/NamespaceAwarePass.php', + 'Psy\\CodeCleaner\\NamespacePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/NamespacePass.php', + 'Psy\\CodeCleaner\\StaticConstructorPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/StaticConstructorPass.php', + 'Psy\\CodeCleaner\\StrictTypesPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/StrictTypesPass.php', + 'Psy\\CodeCleaner\\UseStatementPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/UseStatementPass.php', + 'Psy\\CodeCleaner\\ValidClassNamePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/ValidClassNamePass.php', + 'Psy\\CodeCleaner\\ValidConstantPass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/ValidConstantPass.php', + 'Psy\\CodeCleaner\\ValidFunctionNamePass' => $vendorDir . '/psy/psysh/src/Psy/CodeCleaner/ValidFunctionNamePass.php', + 'Psy\\Command\\BufferCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/BufferCommand.php', + 'Psy\\Command\\ClearCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ClearCommand.php', + 'Psy\\Command\\Command' => $vendorDir . '/psy/psysh/src/Psy/Command/Command.php', + 'Psy\\Command\\DocCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/DocCommand.php', + 'Psy\\Command\\DumpCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/DumpCommand.php', + 'Psy\\Command\\ExitCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ExitCommand.php', + 'Psy\\Command\\HelpCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/HelpCommand.php', + 'Psy\\Command\\HistoryCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/HistoryCommand.php', + 'Psy\\Command\\ListCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand.php', + 'Psy\\Command\\ListCommand\\ClassConstantEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/ClassConstantEnumerator.php', + 'Psy\\Command\\ListCommand\\ClassEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/ClassEnumerator.php', + 'Psy\\Command\\ListCommand\\ConstantEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/ConstantEnumerator.php', + 'Psy\\Command\\ListCommand\\Enumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/Enumerator.php', + 'Psy\\Command\\ListCommand\\FunctionEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/FunctionEnumerator.php', + 'Psy\\Command\\ListCommand\\GlobalVariableEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/GlobalVariableEnumerator.php', + 'Psy\\Command\\ListCommand\\InterfaceEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/InterfaceEnumerator.php', + 'Psy\\Command\\ListCommand\\MethodEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/MethodEnumerator.php', + 'Psy\\Command\\ListCommand\\PropertyEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/PropertyEnumerator.php', + 'Psy\\Command\\ListCommand\\TraitEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/TraitEnumerator.php', + 'Psy\\Command\\ListCommand\\VariableEnumerator' => $vendorDir . '/psy/psysh/src/Psy/Command/ListCommand/VariableEnumerator.php', + 'Psy\\Command\\ParseCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ParseCommand.php', + 'Psy\\Command\\PsyVersionCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/PsyVersionCommand.php', + 'Psy\\Command\\ReflectingCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ReflectingCommand.php', + 'Psy\\Command\\ShowCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ShowCommand.php', + 'Psy\\Command\\ThrowUpCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/ThrowUpCommand.php', + 'Psy\\Command\\TraceCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/TraceCommand.php', + 'Psy\\Command\\WhereamiCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/WhereamiCommand.php', + 'Psy\\Command\\WtfCommand' => $vendorDir . '/psy/psysh/src/Psy/Command/WtfCommand.php', + 'Psy\\Compiler' => $vendorDir . '/psy/psysh/src/Psy/Compiler.php', + 'Psy\\ConfigPaths' => $vendorDir . '/psy/psysh/src/Psy/ConfigPaths.php', + 'Psy\\Configuration' => $vendorDir . '/psy/psysh/src/Psy/Configuration.php', + 'Psy\\ConsoleColorFactory' => $vendorDir . '/psy/psysh/src/Psy/ConsoleColorFactory.php', + 'Psy\\Context' => $vendorDir . '/psy/psysh/src/Psy/Context.php', + 'Psy\\ContextAware' => $vendorDir . '/psy/psysh/src/Psy/ContextAware.php', + 'Psy\\Exception\\BreakException' => $vendorDir . '/psy/psysh/src/Psy/Exception/BreakException.php', + 'Psy\\Exception\\DeprecatedException' => $vendorDir . '/psy/psysh/src/Psy/Exception/DeprecatedException.php', + 'Psy\\Exception\\ErrorException' => $vendorDir . '/psy/psysh/src/Psy/Exception/ErrorException.php', + 'Psy\\Exception\\Exception' => $vendorDir . '/psy/psysh/src/Psy/Exception/Exception.php', + 'Psy\\Exception\\FatalErrorException' => $vendorDir . '/psy/psysh/src/Psy/Exception/FatalErrorException.php', + 'Psy\\Exception\\ParseErrorException' => $vendorDir . '/psy/psysh/src/Psy/Exception/ParseErrorException.php', + 'Psy\\Exception\\RuntimeException' => $vendorDir . '/psy/psysh/src/Psy/Exception/RuntimeException.php', + 'Psy\\Exception\\ThrowUpException' => $vendorDir . '/psy/psysh/src/Psy/Exception/ThrowUpException.php', + 'Psy\\Exception\\TypeErrorException' => $vendorDir . '/psy/psysh/src/Psy/Exception/TypeErrorException.php', + 'Psy\\ExecutionLoop\\ForkingLoop' => $vendorDir . '/psy/psysh/src/Psy/ExecutionLoop/ForkingLoop.php', + 'Psy\\ExecutionLoop\\Loop' => $vendorDir . '/psy/psysh/src/Psy/ExecutionLoop/Loop.php', + 'Psy\\Formatter\\CodeFormatter' => $vendorDir . '/psy/psysh/src/Psy/Formatter/CodeFormatter.php', + 'Psy\\Formatter\\DocblockFormatter' => $vendorDir . '/psy/psysh/src/Psy/Formatter/DocblockFormatter.php', + 'Psy\\Formatter\\Formatter' => $vendorDir . '/psy/psysh/src/Psy/Formatter/Formatter.php', + 'Psy\\Formatter\\SignatureFormatter' => $vendorDir . '/psy/psysh/src/Psy/Formatter/SignatureFormatter.php', + 'Psy\\Output\\OutputPager' => $vendorDir . '/psy/psysh/src/Psy/Output/OutputPager.php', + 'Psy\\Output\\PassthruPager' => $vendorDir . '/psy/psysh/src/Psy/Output/PassthruPager.php', + 'Psy\\Output\\ProcOutputPager' => $vendorDir . '/psy/psysh/src/Psy/Output/ProcOutputPager.php', + 'Psy\\Output\\ShellOutput' => $vendorDir . '/psy/psysh/src/Psy/Output/ShellOutput.php', + 'Psy\\ParserFactory' => $vendorDir . '/psy/psysh/src/Psy/ParserFactory.php', + 'Psy\\Readline\\GNUReadline' => $vendorDir . '/psy/psysh/src/Psy/Readline/GNUReadline.php', + 'Psy\\Readline\\Libedit' => $vendorDir . '/psy/psysh/src/Psy/Readline/Libedit.php', + 'Psy\\Readline\\Readline' => $vendorDir . '/psy/psysh/src/Psy/Readline/Readline.php', + 'Psy\\Readline\\Transient' => $vendorDir . '/psy/psysh/src/Psy/Readline/Transient.php', + 'Psy\\Reflection\\ReflectionConstant' => $vendorDir . '/psy/psysh/src/Psy/Reflection/ReflectionConstant.php', + 'Psy\\Shell' => $vendorDir . '/psy/psysh/src/Psy/Shell.php', + 'Psy\\TabCompletion\\AutoCompleter' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/AutoCompleter.php', + 'Psy\\TabCompletion\\Matcher\\AbstractContextAwareMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/AbstractContextAwareMatcher.php', + 'Psy\\TabCompletion\\Matcher\\AbstractMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/AbstractMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ClassAttributesMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/ClassAttributesMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ClassMethodsMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/ClassMethodsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ClassNamesMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/ClassNamesMatcher.php', + 'Psy\\TabCompletion\\Matcher\\CommandsMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/CommandsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ConstantsMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/ConstantsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\FunctionsMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/FunctionsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\KeywordsMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/KeywordsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\MongoClientMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/MongoClientMatcher.php', + 'Psy\\TabCompletion\\Matcher\\MongoDatabaseMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/MongoDatabaseMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ObjectAttributesMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/ObjectAttributesMatcher.php', + 'Psy\\TabCompletion\\Matcher\\ObjectMethodsMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/ObjectMethodsMatcher.php', + 'Psy\\TabCompletion\\Matcher\\VariablesMatcher' => $vendorDir . '/psy/psysh/src/Psy/TabCompletion/Matcher/VariablesMatcher.php', + 'Psy\\Util\\Docblock' => $vendorDir . '/psy/psysh/src/Psy/Util/Docblock.php', + 'Psy\\Util\\Json' => $vendorDir . '/psy/psysh/src/Psy/Util/Json.php', + 'Psy\\Util\\Mirror' => $vendorDir . '/psy/psysh/src/Psy/Util/Mirror.php', + 'Psy\\Util\\Str' => $vendorDir . '/psy/psysh/src/Psy/Util/Str.php', + 'Psy\\VarDumper\\Cloner' => $vendorDir . '/psy/psysh/src/Psy/VarDumper/Cloner.php', + 'Psy\\VarDumper\\Dumper' => $vendorDir . '/psy/psysh/src/Psy/VarDumper/Dumper.php', + 'Psy\\VarDumper\\Presenter' => $vendorDir . '/psy/psysh/src/Psy/VarDumper/Presenter.php', + 'Psy\\VarDumper\\PresenterAware' => $vendorDir . '/psy/psysh/src/Psy/VarDumper/PresenterAware.php', 'Renderer' => $vendorDir . '/dompdf/dompdf/include/renderer.cls.php', + 'SMTP' => $vendorDir . '/phpmailer/phpmailer/class.smtp.php', 'SebastianBergmann\\Comparator\\ArrayComparator' => $vendorDir . '/sebastian/comparator/src/ArrayComparator.php', 'SebastianBergmann\\Comparator\\Comparator' => $vendorDir . '/sebastian/comparator/src/Comparator.php', 'SebastianBergmann\\Comparator\\ComparisonFailure' => $vendorDir . '/sebastian/comparator/src/ComparisonFailure.php', @@ -655,8 +3986,561 @@ return array( 'SebastianBergmann\\RecursionContext\\Exception' => $vendorDir . '/sebastian/recursion-context/src/Exception.php', 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => $vendorDir . '/sebastian/recursion-context/src/InvalidArgumentException.php', 'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php', + 'Sly\\NotificationPusher\\Adapter\\AdapterInterface' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Adapter/AdapterInterface.php', + 'Sly\\NotificationPusher\\Adapter\\Apns' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Adapter/Apns.php', + 'Sly\\NotificationPusher\\Adapter\\BaseAdapter' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Adapter/BaseAdapter.php', + 'Sly\\NotificationPusher\\Adapter\\Gcm' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Adapter/Gcm.php', + 'Sly\\NotificationPusher\\Collection\\AbstractCollection' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Collection/AbstractCollection.php', + 'Sly\\NotificationPusher\\Collection\\DeviceCollection' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Collection/DeviceCollection.php', + 'Sly\\NotificationPusher\\Collection\\MessageCollection' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Collection/MessageCollection.php', + 'Sly\\NotificationPusher\\Collection\\PushCollection' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Collection/PushCollection.php', + 'Sly\\NotificationPusher\\Console\\Application' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Console/Application.php', + 'Sly\\NotificationPusher\\Console\\Command\\PushCommand' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Console/Command/PushCommand.php', + 'Sly\\NotificationPusher\\Exception\\AdapterException' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Exception/AdapterException.php', + 'Sly\\NotificationPusher\\Exception\\ExceptionInterface' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Exception/ExceptionInterface.php', + 'Sly\\NotificationPusher\\Exception\\InvalidException' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Exception/InvalidException.php', + 'Sly\\NotificationPusher\\Exception\\PushException' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Exception/PushException.php', + 'Sly\\NotificationPusher\\Exception\\RuntimeException' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Exception/RuntimeException.php', + 'Sly\\NotificationPusher\\Model\\BaseOptionedModel' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Model/BaseOptionedModel.php', + 'Sly\\NotificationPusher\\Model\\BaseParameteredModel' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Model/BaseParameteredModel.php', + 'Sly\\NotificationPusher\\Model\\Device' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Model/Device.php', + 'Sly\\NotificationPusher\\Model\\DeviceInterface' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Model/DeviceInterface.php', + 'Sly\\NotificationPusher\\Model\\Message' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Model/Message.php', + 'Sly\\NotificationPusher\\Model\\MessageInterface' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Model/MessageInterface.php', + 'Sly\\NotificationPusher\\Model\\Push' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Model/Push.php', + 'Sly\\NotificationPusher\\Model\\PushInterface' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/Model/PushInterface.php', + 'Sly\\NotificationPusher\\NotificationPusher' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/NotificationPusher.php', + 'Sly\\NotificationPusher\\PushManager' => $vendorDir . '/sly/notification-pusher/src/Sly/NotificationPusher/PushManager.php', 'Style' => $vendorDir . '/dompdf/dompdf/include/style.cls.php', 'Stylesheet' => $vendorDir . '/dompdf/dompdf/include/stylesheet.cls.php', + 'SuperClosure\\Analyzer\\AstAnalyzer' => $vendorDir . '/jeremeamia/SuperClosure/src/Analyzer/AstAnalyzer.php', + 'SuperClosure\\Analyzer\\ClosureAnalyzer' => $vendorDir . '/jeremeamia/SuperClosure/src/Analyzer/ClosureAnalyzer.php', + 'SuperClosure\\Analyzer\\Token' => $vendorDir . '/jeremeamia/SuperClosure/src/Analyzer/Token.php', + 'SuperClosure\\Analyzer\\TokenAnalyzer' => $vendorDir . '/jeremeamia/SuperClosure/src/Analyzer/TokenAnalyzer.php', + 'SuperClosure\\Analyzer\\Visitor\\ClosureLocatorVisitor' => $vendorDir . '/jeremeamia/SuperClosure/src/Analyzer/Visitor/ClosureLocatorVisitor.php', + 'SuperClosure\\Analyzer\\Visitor\\MagicConstantVisitor' => $vendorDir . '/jeremeamia/SuperClosure/src/Analyzer/Visitor/MagicConstantVisitor.php', + 'SuperClosure\\Analyzer\\Visitor\\ThisDetectorVisitor' => $vendorDir . '/jeremeamia/SuperClosure/src/Analyzer/Visitor/ThisDetectorVisitor.php', + 'SuperClosure\\Exception\\ClosureAnalysisException' => $vendorDir . '/jeremeamia/SuperClosure/src/Exception/ClosureAnalysisException.php', + 'SuperClosure\\Exception\\ClosureUnserializationException' => $vendorDir . '/jeremeamia/SuperClosure/src/Exception/ClosureUnserializationException.php', + 'SuperClosure\\Exception\\SuperClosureException' => $vendorDir . '/jeremeamia/SuperClosure/src/Exception/SuperClosureException.php', + 'SuperClosure\\SerializableClosure' => $vendorDir . '/jeremeamia/SuperClosure/src/SerializableClosure.php', + 'SuperClosure\\Serializer' => $vendorDir . '/jeremeamia/SuperClosure/src/Serializer.php', + 'SuperClosure\\SerializerInterface' => $vendorDir . '/jeremeamia/SuperClosure/src/SerializerInterface.php', + 'Symfony\\Component\\Console\\Application' => $vendorDir . '/symfony/console/Application.php', + 'Symfony\\Component\\Console\\Command\\Command' => $vendorDir . '/symfony/console/Command/Command.php', + 'Symfony\\Component\\Console\\Command\\HelpCommand' => $vendorDir . '/symfony/console/Command/HelpCommand.php', + 'Symfony\\Component\\Console\\Command\\ListCommand' => $vendorDir . '/symfony/console/Command/ListCommand.php', + 'Symfony\\Component\\Console\\ConsoleEvents' => $vendorDir . '/symfony/console/ConsoleEvents.php', + 'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription' => $vendorDir . '/symfony/console/Descriptor/ApplicationDescription.php', + 'Symfony\\Component\\Console\\Descriptor\\Descriptor' => $vendorDir . '/symfony/console/Descriptor/Descriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface' => $vendorDir . '/symfony/console/Descriptor/DescriptorInterface.php', + 'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor' => $vendorDir . '/symfony/console/Descriptor/JsonDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor' => $vendorDir . '/symfony/console/Descriptor/MarkdownDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\TextDescriptor' => $vendorDir . '/symfony/console/Descriptor/TextDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor' => $vendorDir . '/symfony/console/Descriptor/XmlDescriptor.php', + 'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent' => $vendorDir . '/symfony/console/Event/ConsoleCommandEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleEvent' => $vendorDir . '/symfony/console/Event/ConsoleEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleExceptionEvent' => $vendorDir . '/symfony/console/Event/ConsoleExceptionEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent' => $vendorDir . '/symfony/console/Event/ConsoleTerminateEvent.php', + 'Symfony\\Component\\Console\\Exception\\CommandNotFoundException' => $vendorDir . '/symfony/console/Exception/CommandNotFoundException.php', + 'Symfony\\Component\\Console\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/console/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Console\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/console/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Console\\Exception\\InvalidOptionException' => $vendorDir . '/symfony/console/Exception/InvalidOptionException.php', + 'Symfony\\Component\\Console\\Exception\\LogicException' => $vendorDir . '/symfony/console/Exception/LogicException.php', + 'Symfony\\Component\\Console\\Exception\\RuntimeException' => $vendorDir . '/symfony/console/Exception/RuntimeException.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatter' => $vendorDir . '/symfony/console/Formatter/OutputFormatter.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterInterface.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyle.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleInterface.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleStack.php', + 'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper' => $vendorDir . '/symfony/console/Helper/DebugFormatterHelper.php', + 'Symfony\\Component\\Console\\Helper\\DescriptorHelper' => $vendorDir . '/symfony/console/Helper/DescriptorHelper.php', + 'Symfony\\Component\\Console\\Helper\\FormatterHelper' => $vendorDir . '/symfony/console/Helper/FormatterHelper.php', + 'Symfony\\Component\\Console\\Helper\\Helper' => $vendorDir . '/symfony/console/Helper/Helper.php', + 'Symfony\\Component\\Console\\Helper\\HelperInterface' => $vendorDir . '/symfony/console/Helper/HelperInterface.php', + 'Symfony\\Component\\Console\\Helper\\HelperSet' => $vendorDir . '/symfony/console/Helper/HelperSet.php', + 'Symfony\\Component\\Console\\Helper\\InputAwareHelper' => $vendorDir . '/symfony/console/Helper/InputAwareHelper.php', + 'Symfony\\Component\\Console\\Helper\\ProcessHelper' => $vendorDir . '/symfony/console/Helper/ProcessHelper.php', + 'Symfony\\Component\\Console\\Helper\\ProgressBar' => $vendorDir . '/symfony/console/Helper/ProgressBar.php', + 'Symfony\\Component\\Console\\Helper\\ProgressIndicator' => $vendorDir . '/symfony/console/Helper/ProgressIndicator.php', + 'Symfony\\Component\\Console\\Helper\\QuestionHelper' => $vendorDir . '/symfony/console/Helper/QuestionHelper.php', + 'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper' => $vendorDir . '/symfony/console/Helper/SymfonyQuestionHelper.php', + 'Symfony\\Component\\Console\\Helper\\Table' => $vendorDir . '/symfony/console/Helper/Table.php', + 'Symfony\\Component\\Console\\Helper\\TableCell' => $vendorDir . '/symfony/console/Helper/TableCell.php', + 'Symfony\\Component\\Console\\Helper\\TableSeparator' => $vendorDir . '/symfony/console/Helper/TableSeparator.php', + 'Symfony\\Component\\Console\\Helper\\TableStyle' => $vendorDir . '/symfony/console/Helper/TableStyle.php', + 'Symfony\\Component\\Console\\Input\\ArgvInput' => $vendorDir . '/symfony/console/Input/ArgvInput.php', + 'Symfony\\Component\\Console\\Input\\ArrayInput' => $vendorDir . '/symfony/console/Input/ArrayInput.php', + 'Symfony\\Component\\Console\\Input\\Input' => $vendorDir . '/symfony/console/Input/Input.php', + 'Symfony\\Component\\Console\\Input\\InputArgument' => $vendorDir . '/symfony/console/Input/InputArgument.php', + 'Symfony\\Component\\Console\\Input\\InputAwareInterface' => $vendorDir . '/symfony/console/Input/InputAwareInterface.php', + 'Symfony\\Component\\Console\\Input\\InputDefinition' => $vendorDir . '/symfony/console/Input/InputDefinition.php', + 'Symfony\\Component\\Console\\Input\\InputInterface' => $vendorDir . '/symfony/console/Input/InputInterface.php', + 'Symfony\\Component\\Console\\Input\\InputOption' => $vendorDir . '/symfony/console/Input/InputOption.php', + 'Symfony\\Component\\Console\\Input\\StringInput' => $vendorDir . '/symfony/console/Input/StringInput.php', + 'Symfony\\Component\\Console\\Logger\\ConsoleLogger' => $vendorDir . '/symfony/console/Logger/ConsoleLogger.php', + 'Symfony\\Component\\Console\\Output\\BufferedOutput' => $vendorDir . '/symfony/console/Output/BufferedOutput.php', + 'Symfony\\Component\\Console\\Output\\ConsoleOutput' => $vendorDir . '/symfony/console/Output/ConsoleOutput.php', + 'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface' => $vendorDir . '/symfony/console/Output/ConsoleOutputInterface.php', + 'Symfony\\Component\\Console\\Output\\NullOutput' => $vendorDir . '/symfony/console/Output/NullOutput.php', + 'Symfony\\Component\\Console\\Output\\Output' => $vendorDir . '/symfony/console/Output/Output.php', + 'Symfony\\Component\\Console\\Output\\OutputInterface' => $vendorDir . '/symfony/console/Output/OutputInterface.php', + 'Symfony\\Component\\Console\\Output\\StreamOutput' => $vendorDir . '/symfony/console/Output/StreamOutput.php', + 'Symfony\\Component\\Console\\Question\\ChoiceQuestion' => $vendorDir . '/symfony/console/Question/ChoiceQuestion.php', + 'Symfony\\Component\\Console\\Question\\ConfirmationQuestion' => $vendorDir . '/symfony/console/Question/ConfirmationQuestion.php', + 'Symfony\\Component\\Console\\Question\\Question' => $vendorDir . '/symfony/console/Question/Question.php', + 'Symfony\\Component\\Console\\Style\\OutputStyle' => $vendorDir . '/symfony/console/Style/OutputStyle.php', + 'Symfony\\Component\\Console\\Style\\StyleInterface' => $vendorDir . '/symfony/console/Style/StyleInterface.php', + 'Symfony\\Component\\Console\\Style\\SymfonyStyle' => $vendorDir . '/symfony/console/Style/SymfonyStyle.php', + 'Symfony\\Component\\Console\\Tester\\ApplicationTester' => $vendorDir . '/symfony/console/Tester/ApplicationTester.php', + 'Symfony\\Component\\Console\\Tester\\CommandTester' => $vendorDir . '/symfony/console/Tester/CommandTester.php', + 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => $vendorDir . '/symfony/css-selector/CssSelectorConverter.php', + 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/css-selector/Exception/ExceptionInterface.php', + 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => $vendorDir . '/symfony/css-selector/Exception/ExpressionErrorException.php', + 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => $vendorDir . '/symfony/css-selector/Exception/InternalErrorException.php', + 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => $vendorDir . '/symfony/css-selector/Exception/ParseException.php', + 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => $vendorDir . '/symfony/css-selector/Exception/SyntaxErrorException.php', + 'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => $vendorDir . '/symfony/css-selector/Node/AbstractNode.php', + 'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => $vendorDir . '/symfony/css-selector/Node/AttributeNode.php', + 'Symfony\\Component\\CssSelector\\Node\\ClassNode' => $vendorDir . '/symfony/css-selector/Node/ClassNode.php', + 'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => $vendorDir . '/symfony/css-selector/Node/CombinedSelectorNode.php', + 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => $vendorDir . '/symfony/css-selector/Node/ElementNode.php', + 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => $vendorDir . '/symfony/css-selector/Node/FunctionNode.php', + 'Symfony\\Component\\CssSelector\\Node\\HashNode' => $vendorDir . '/symfony/css-selector/Node/HashNode.php', + 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => $vendorDir . '/symfony/css-selector/Node/NegationNode.php', + 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => $vendorDir . '/symfony/css-selector/Node/NodeInterface.php', + 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => $vendorDir . '/symfony/css-selector/Node/PseudoNode.php', + 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => $vendorDir . '/symfony/css-selector/Node/SelectorNode.php', + 'Symfony\\Component\\CssSelector\\Node\\Specificity' => $vendorDir . '/symfony/css-selector/Node/Specificity.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/CommentHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => $vendorDir . '/symfony/css-selector/Parser/Handler/HandlerInterface.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/HashHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/NumberHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/StringHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Parser' => $vendorDir . '/symfony/css-selector/Parser/Parser.php', + 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => $vendorDir . '/symfony/css-selector/Parser/ParserInterface.php', + 'Symfony\\Component\\CssSelector\\Parser\\Reader' => $vendorDir . '/symfony/css-selector/Parser/Reader.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ClassParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ElementParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/HashParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Token' => $vendorDir . '/symfony/css-selector/Parser/Token.php', + 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => $vendorDir . '/symfony/css-selector/Parser/TokenStream.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AbstractExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/CombinationExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => $vendorDir . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/FunctionExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/HtmlExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/NodeExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Translator' => $vendorDir . '/symfony/css-selector/XPath/Translator.php', + 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => $vendorDir . '/symfony/css-selector/XPath/TranslatorInterface.php', + 'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => $vendorDir . '/symfony/css-selector/XPath/XPathExpr.php', + 'Symfony\\Component\\Debug\\BufferingLogger' => $vendorDir . '/symfony/debug/BufferingLogger.php', + 'Symfony\\Component\\Debug\\Debug' => $vendorDir . '/symfony/debug/Debug.php', + 'Symfony\\Component\\Debug\\DebugClassLoader' => $vendorDir . '/symfony/debug/DebugClassLoader.php', + 'Symfony\\Component\\Debug\\ErrorHandler' => $vendorDir . '/symfony/debug/ErrorHandler.php', + 'Symfony\\Component\\Debug\\ExceptionHandler' => $vendorDir . '/symfony/debug/ExceptionHandler.php', + 'Symfony\\Component\\Debug\\Exception\\ClassNotFoundException' => $vendorDir . '/symfony/debug/Exception/ClassNotFoundException.php', + 'Symfony\\Component\\Debug\\Exception\\ContextErrorException' => $vendorDir . '/symfony/debug/Exception/ContextErrorException.php', + 'Symfony\\Component\\Debug\\Exception\\FatalErrorException' => $vendorDir . '/symfony/debug/Exception/FatalErrorException.php', + 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError' => $vendorDir . '/symfony/debug/Exception/FatalThrowableError.php', + 'Symfony\\Component\\Debug\\Exception\\FlattenException' => $vendorDir . '/symfony/debug/Exception/FlattenException.php', + 'Symfony\\Component\\Debug\\Exception\\OutOfMemoryException' => $vendorDir . '/symfony/debug/Exception/OutOfMemoryException.php', + 'Symfony\\Component\\Debug\\Exception\\UndefinedFunctionException' => $vendorDir . '/symfony/debug/Exception/UndefinedFunctionException.php', + 'Symfony\\Component\\Debug\\Exception\\UndefinedMethodException' => $vendorDir . '/symfony/debug/Exception/UndefinedMethodException.php', + 'Symfony\\Component\\Debug\\FatalErrorHandler\\ClassNotFoundFatalErrorHandler' => $vendorDir . '/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php', + 'Symfony\\Component\\Debug\\FatalErrorHandler\\FatalErrorHandlerInterface' => $vendorDir . '/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php', + 'Symfony\\Component\\Debug\\FatalErrorHandler\\UndefinedFunctionFatalErrorHandler' => $vendorDir . '/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php', + 'Symfony\\Component\\Debug\\FatalErrorHandler\\UndefinedMethodFatalErrorHandler' => $vendorDir . '/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php', + 'Symfony\\Component\\DomCrawler\\AbstractUriElement' => $vendorDir . '/symfony/dom-crawler/AbstractUriElement.php', + 'Symfony\\Component\\DomCrawler\\Crawler' => $vendorDir . '/symfony/dom-crawler/Crawler.php', + 'Symfony\\Component\\DomCrawler\\Field\\ChoiceFormField' => $vendorDir . '/symfony/dom-crawler/Field/ChoiceFormField.php', + 'Symfony\\Component\\DomCrawler\\Field\\FileFormField' => $vendorDir . '/symfony/dom-crawler/Field/FileFormField.php', + 'Symfony\\Component\\DomCrawler\\Field\\FormField' => $vendorDir . '/symfony/dom-crawler/Field/FormField.php', + 'Symfony\\Component\\DomCrawler\\Field\\InputFormField' => $vendorDir . '/symfony/dom-crawler/Field/InputFormField.php', + 'Symfony\\Component\\DomCrawler\\Field\\TextareaFormField' => $vendorDir . '/symfony/dom-crawler/Field/TextareaFormField.php', + 'Symfony\\Component\\DomCrawler\\Form' => $vendorDir . '/symfony/dom-crawler/Form.php', + 'Symfony\\Component\\DomCrawler\\FormFieldRegistry' => $vendorDir . '/symfony/dom-crawler/FormFieldRegistry.php', + 'Symfony\\Component\\DomCrawler\\Image' => $vendorDir . '/symfony/dom-crawler/Image.php', + 'Symfony\\Component\\DomCrawler\\Link' => $vendorDir . '/symfony/dom-crawler/Link.php', + 'Symfony\\Component\\EventDispatcher\\ContainerAwareEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/ContainerAwareEventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener' => $vendorDir . '/symfony/event-dispatcher/Debug/WrappedListener.php', + 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\RegisterListenersPass' => $vendorDir . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', + 'Symfony\\Component\\EventDispatcher\\Event' => $vendorDir . '/symfony/event-dispatcher/Event.php', + 'Symfony\\Component\\EventDispatcher\\EventDispatcher' => $vendorDir . '/symfony/event-dispatcher/EventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\EventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher/EventDispatcherInterface.php', + 'Symfony\\Component\\EventDispatcher\\EventSubscriberInterface' => $vendorDir . '/symfony/event-dispatcher/EventSubscriberInterface.php', + 'Symfony\\Component\\EventDispatcher\\GenericEvent' => $vendorDir . '/symfony/event-dispatcher/GenericEvent.php', + 'Symfony\\Component\\EventDispatcher\\ImmutableEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/ImmutableEventDispatcher.php', + 'Symfony\\Component\\Finder\\Comparator\\Comparator' => $vendorDir . '/symfony/finder/Comparator/Comparator.php', + 'Symfony\\Component\\Finder\\Comparator\\DateComparator' => $vendorDir . '/symfony/finder/Comparator/DateComparator.php', + 'Symfony\\Component\\Finder\\Comparator\\NumberComparator' => $vendorDir . '/symfony/finder/Comparator/NumberComparator.php', + 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException' => $vendorDir . '/symfony/finder/Exception/AccessDeniedException.php', + 'Symfony\\Component\\Finder\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/finder/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Finder\\Finder' => $vendorDir . '/symfony/finder/Finder.php', + 'Symfony\\Component\\Finder\\Glob' => $vendorDir . '/symfony/finder/Glob.php', + 'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator' => $vendorDir . '/symfony/finder/Iterator/CustomFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DateRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DepthRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator' => $vendorDir . '/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FileTypeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilecontentFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilenameFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator' => $vendorDir . '/symfony/finder/Iterator/MultiplePcreFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator' => $vendorDir . '/symfony/finder/Iterator/PathFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator' => $vendorDir . '/symfony/finder/Iterator/RecursiveDirectoryIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/SizeRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => $vendorDir . '/symfony/finder/Iterator/SortableIterator.php', + 'Symfony\\Component\\Finder\\SplFileInfo' => $vendorDir . '/symfony/finder/SplFileInfo.php', + 'Symfony\\Component\\HttpFoundation\\AcceptHeader' => $vendorDir . '/symfony/http-foundation/AcceptHeader.php', + 'Symfony\\Component\\HttpFoundation\\AcceptHeaderItem' => $vendorDir . '/symfony/http-foundation/AcceptHeaderItem.php', + 'Symfony\\Component\\HttpFoundation\\ApacheRequest' => $vendorDir . '/symfony/http-foundation/ApacheRequest.php', + 'Symfony\\Component\\HttpFoundation\\BinaryFileResponse' => $vendorDir . '/symfony/http-foundation/BinaryFileResponse.php', + 'Symfony\\Component\\HttpFoundation\\Cookie' => $vendorDir . '/symfony/http-foundation/Cookie.php', + 'Symfony\\Component\\HttpFoundation\\Exception\\ConflictingHeadersException' => $vendorDir . '/symfony/http-foundation/Exception/ConflictingHeadersException.php', + 'Symfony\\Component\\HttpFoundation\\ExpressionRequestMatcher' => $vendorDir . '/symfony/http-foundation/ExpressionRequestMatcher.php', + 'Symfony\\Component\\HttpFoundation\\FileBag' => $vendorDir . '/symfony/http-foundation/FileBag.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\AccessDeniedException' => $vendorDir . '/symfony/http-foundation/File/Exception/AccessDeniedException.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\FileException' => $vendorDir . '/symfony/http-foundation/File/Exception/FileException.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\FileNotFoundException' => $vendorDir . '/symfony/http-foundation/File/Exception/FileNotFoundException.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\UnexpectedTypeException' => $vendorDir . '/symfony/http-foundation/File/Exception/UnexpectedTypeException.php', + 'Symfony\\Component\\HttpFoundation\\File\\Exception\\UploadException' => $vendorDir . '/symfony/http-foundation/File/Exception/UploadException.php', + 'Symfony\\Component\\HttpFoundation\\File\\File' => $vendorDir . '/symfony/http-foundation/File/File.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\ExtensionGuesser' => $vendorDir . '/symfony/http-foundation/File/MimeType/ExtensionGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\ExtensionGuesserInterface' => $vendorDir . '/symfony/http-foundation/File/MimeType/ExtensionGuesserInterface.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\FileBinaryMimeTypeGuesser' => $vendorDir . '/symfony/http-foundation/File/MimeType/FileBinaryMimeTypeGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\FileinfoMimeTypeGuesser' => $vendorDir . '/symfony/http-foundation/File/MimeType/FileinfoMimeTypeGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\MimeTypeExtensionGuesser' => $vendorDir . '/symfony/http-foundation/File/MimeType/MimeTypeExtensionGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\MimeTypeGuesser' => $vendorDir . '/symfony/http-foundation/File/MimeType/MimeTypeGuesser.php', + 'Symfony\\Component\\HttpFoundation\\File\\MimeType\\MimeTypeGuesserInterface' => $vendorDir . '/symfony/http-foundation/File/MimeType/MimeTypeGuesserInterface.php', + 'Symfony\\Component\\HttpFoundation\\File\\UploadedFile' => $vendorDir . '/symfony/http-foundation/File/UploadedFile.php', + 'Symfony\\Component\\HttpFoundation\\HeaderBag' => $vendorDir . '/symfony/http-foundation/HeaderBag.php', + 'Symfony\\Component\\HttpFoundation\\IpUtils' => $vendorDir . '/symfony/http-foundation/IpUtils.php', + 'Symfony\\Component\\HttpFoundation\\JsonResponse' => $vendorDir . '/symfony/http-foundation/JsonResponse.php', + 'Symfony\\Component\\HttpFoundation\\ParameterBag' => $vendorDir . '/symfony/http-foundation/ParameterBag.php', + 'Symfony\\Component\\HttpFoundation\\RedirectResponse' => $vendorDir . '/symfony/http-foundation/RedirectResponse.php', + 'Symfony\\Component\\HttpFoundation\\Request' => $vendorDir . '/symfony/http-foundation/Request.php', + 'Symfony\\Component\\HttpFoundation\\RequestMatcher' => $vendorDir . '/symfony/http-foundation/RequestMatcher.php', + 'Symfony\\Component\\HttpFoundation\\RequestMatcherInterface' => $vendorDir . '/symfony/http-foundation/RequestMatcherInterface.php', + 'Symfony\\Component\\HttpFoundation\\RequestStack' => $vendorDir . '/symfony/http-foundation/RequestStack.php', + 'Symfony\\Component\\HttpFoundation\\Response' => $vendorDir . '/symfony/http-foundation/Response.php', + 'Symfony\\Component\\HttpFoundation\\ResponseHeaderBag' => $vendorDir . '/symfony/http-foundation/ResponseHeaderBag.php', + 'Symfony\\Component\\HttpFoundation\\ServerBag' => $vendorDir . '/symfony/http-foundation/ServerBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Attribute\\AttributeBag' => $vendorDir . '/symfony/http-foundation/Session/Attribute/AttributeBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Attribute\\AttributeBagInterface' => $vendorDir . '/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Attribute\\NamespacedAttributeBag' => $vendorDir . '/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Flash\\AutoExpireFlashBag' => $vendorDir . '/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Flash\\FlashBag' => $vendorDir . '/symfony/http-foundation/Session/Flash/FlashBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Flash\\FlashBagInterface' => $vendorDir . '/symfony/http-foundation/Session/Flash/FlashBagInterface.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Session' => $vendorDir . '/symfony/http-foundation/Session/Session.php', + 'Symfony\\Component\\HttpFoundation\\Session\\SessionBagInterface' => $vendorDir . '/symfony/http-foundation/Session/SessionBagInterface.php', + 'Symfony\\Component\\HttpFoundation\\Session\\SessionInterface' => $vendorDir . '/symfony/http-foundation/Session/SessionInterface.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\MemcacheSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/MemcacheSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\MemcachedSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\MongoDbSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NativeFileSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NativeSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/NativeSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NullSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\PdoSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\WriteCheckSessionHandler' => $vendorDir . '/symfony/http-foundation/Session/Storage/Handler/WriteCheckSessionHandler.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\MetadataBag' => $vendorDir . '/symfony/http-foundation/Session/Storage/MetadataBag.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockArraySessionStorage' => $vendorDir . '/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage' => $vendorDir . '/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage' => $vendorDir . '/symfony/http-foundation/Session/Storage/NativeSessionStorage.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\PhpBridgeSessionStorage' => $vendorDir . '/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\AbstractProxy' => $vendorDir . '/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\NativeProxy' => $vendorDir . '/symfony/http-foundation/Session/Storage/Proxy/NativeProxy.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\SessionHandlerProxy' => $vendorDir . '/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php', + 'Symfony\\Component\\HttpFoundation\\Session\\Storage\\SessionStorageInterface' => $vendorDir . '/symfony/http-foundation/Session/Storage/SessionStorageInterface.php', + 'Symfony\\Component\\HttpFoundation\\StreamedResponse' => $vendorDir . '/symfony/http-foundation/StreamedResponse.php', + 'Symfony\\Component\\HttpKernel\\Bundle\\Bundle' => $vendorDir . '/symfony/http-kernel/Bundle/Bundle.php', + 'Symfony\\Component\\HttpKernel\\Bundle\\BundleInterface' => $vendorDir . '/symfony/http-kernel/Bundle/BundleInterface.php', + 'Symfony\\Component\\HttpKernel\\CacheClearer\\CacheClearerInterface' => $vendorDir . '/symfony/http-kernel/CacheClearer/CacheClearerInterface.php', + 'Symfony\\Component\\HttpKernel\\CacheClearer\\ChainCacheClearer' => $vendorDir . '/symfony/http-kernel/CacheClearer/ChainCacheClearer.php', + 'Symfony\\Component\\HttpKernel\\CacheWarmer\\CacheWarmer' => $vendorDir . '/symfony/http-kernel/CacheWarmer/CacheWarmer.php', + 'Symfony\\Component\\HttpKernel\\CacheWarmer\\CacheWarmerAggregate' => $vendorDir . '/symfony/http-kernel/CacheWarmer/CacheWarmerAggregate.php', + 'Symfony\\Component\\HttpKernel\\CacheWarmer\\CacheWarmerInterface' => $vendorDir . '/symfony/http-kernel/CacheWarmer/CacheWarmerInterface.php', + 'Symfony\\Component\\HttpKernel\\CacheWarmer\\WarmableInterface' => $vendorDir . '/symfony/http-kernel/CacheWarmer/WarmableInterface.php', + 'Symfony\\Component\\HttpKernel\\Client' => $vendorDir . '/symfony/http-kernel/Client.php', + 'Symfony\\Component\\HttpKernel\\Config\\EnvParametersResource' => $vendorDir . '/symfony/http-kernel/Config/EnvParametersResource.php', + 'Symfony\\Component\\HttpKernel\\Config\\FileLocator' => $vendorDir . '/symfony/http-kernel/Config/FileLocator.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ControllerReference' => $vendorDir . '/symfony/http-kernel/Controller/ControllerReference.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ControllerResolver' => $vendorDir . '/symfony/http-kernel/Controller/ControllerResolver.php', + 'Symfony\\Component\\HttpKernel\\Controller\\ControllerResolverInterface' => $vendorDir . '/symfony/http-kernel/Controller/ControllerResolverInterface.php', + 'Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver' => $vendorDir . '/symfony/http-kernel/Controller/TraceableControllerResolver.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\AjaxDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/AjaxDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\ConfigDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/ConfigDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\DataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/DataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\DataCollectorInterface' => $vendorDir . '/symfony/http-kernel/DataCollector/DataCollectorInterface.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\DumpDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/DumpDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\EventDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/EventDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\ExceptionDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/ExceptionDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\LateDataCollectorInterface' => $vendorDir . '/symfony/http-kernel/DataCollector/LateDataCollectorInterface.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\LoggerDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/LoggerDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\MemoryDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/MemoryDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/RequestDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\RouterDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/RouterDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\TimeDataCollector' => $vendorDir . '/symfony/http-kernel/DataCollector/TimeDataCollector.php', + 'Symfony\\Component\\HttpKernel\\DataCollector\\Util\\ValueExporter' => $vendorDir . '/symfony/http-kernel/DataCollector/Util/ValueExporter.php', + 'Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher' => $vendorDir . '/symfony/http-kernel/Debug/TraceableEventDispatcher.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\AddClassesToCachePass' => $vendorDir . '/symfony/http-kernel/DependencyInjection/AddClassesToCachePass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\ConfigurableExtension' => $vendorDir . '/symfony/http-kernel/DependencyInjection/ConfigurableExtension.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\Extension' => $vendorDir . '/symfony/http-kernel/DependencyInjection/Extension.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\FragmentRendererPass' => $vendorDir . '/symfony/http-kernel/DependencyInjection/FragmentRendererPass.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\LazyLoadingFragmentHandler' => $vendorDir . '/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php', + 'Symfony\\Component\\HttpKernel\\DependencyInjection\\MergeExtensionConfigurationPass' => $vendorDir . '/symfony/http-kernel/DependencyInjection/MergeExtensionConfigurationPass.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\AddRequestFormatsListener' => $vendorDir . '/symfony/http-kernel/EventListener/AddRequestFormatsListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener' => $vendorDir . '/symfony/http-kernel/EventListener/DebugHandlersListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\DumpListener' => $vendorDir . '/symfony/http-kernel/EventListener/DumpListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\ExceptionListener' => $vendorDir . '/symfony/http-kernel/EventListener/ExceptionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener' => $vendorDir . '/symfony/http-kernel/EventListener/FragmentListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener' => $vendorDir . '/symfony/http-kernel/EventListener/LocaleListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener' => $vendorDir . '/symfony/http-kernel/EventListener/ProfilerListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener' => $vendorDir . '/symfony/http-kernel/EventListener/ResponseListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\RouterListener' => $vendorDir . '/symfony/http-kernel/EventListener/RouterListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\SaveSessionListener' => $vendorDir . '/symfony/http-kernel/EventListener/SaveSessionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\SessionListener' => $vendorDir . '/symfony/http-kernel/EventListener/SessionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener' => $vendorDir . '/symfony/http-kernel/EventListener/StreamedResponseListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener' => $vendorDir . '/symfony/http-kernel/EventListener/SurrogateListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\TestSessionListener' => $vendorDir . '/symfony/http-kernel/EventListener/TestSessionListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\TranslatorListener' => $vendorDir . '/symfony/http-kernel/EventListener/TranslatorListener.php', + 'Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener' => $vendorDir . '/symfony/http-kernel/EventListener/ValidateRequestListener.php', + 'Symfony\\Component\\HttpKernel\\Event\\FilterControllerEvent' => $vendorDir . '/symfony/http-kernel/Event/FilterControllerEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\FilterResponseEvent' => $vendorDir . '/symfony/http-kernel/Event/FilterResponseEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\FinishRequestEvent' => $vendorDir . '/symfony/http-kernel/Event/FinishRequestEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent' => $vendorDir . '/symfony/http-kernel/Event/GetResponseEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\GetResponseForControllerResultEvent' => $vendorDir . '/symfony/http-kernel/Event/GetResponseForControllerResultEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\GetResponseForExceptionEvent' => $vendorDir . '/symfony/http-kernel/Event/GetResponseForExceptionEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\KernelEvent' => $vendorDir . '/symfony/http-kernel/Event/KernelEvent.php', + 'Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent' => $vendorDir . '/symfony/http-kernel/Event/PostResponseEvent.php', + 'Symfony\\Component\\HttpKernel\\Exception\\AccessDeniedHttpException' => $vendorDir . '/symfony/http-kernel/Exception/AccessDeniedHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\BadRequestHttpException' => $vendorDir . '/symfony/http-kernel/Exception/BadRequestHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\ConflictHttpException' => $vendorDir . '/symfony/http-kernel/Exception/ConflictHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\GoneHttpException' => $vendorDir . '/symfony/http-kernel/Exception/GoneHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\HttpException' => $vendorDir . '/symfony/http-kernel/Exception/HttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface' => $vendorDir . '/symfony/http-kernel/Exception/HttpExceptionInterface.php', + 'Symfony\\Component\\HttpKernel\\Exception\\LengthRequiredHttpException' => $vendorDir . '/symfony/http-kernel/Exception/LengthRequiredHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\MethodNotAllowedHttpException' => $vendorDir . '/symfony/http-kernel/Exception/MethodNotAllowedHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\NotAcceptableHttpException' => $vendorDir . '/symfony/http-kernel/Exception/NotAcceptableHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException' => $vendorDir . '/symfony/http-kernel/Exception/NotFoundHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\PreconditionFailedHttpException' => $vendorDir . '/symfony/http-kernel/Exception/PreconditionFailedHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\PreconditionRequiredHttpException' => $vendorDir . '/symfony/http-kernel/Exception/PreconditionRequiredHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\ServiceUnavailableHttpException' => $vendorDir . '/symfony/http-kernel/Exception/ServiceUnavailableHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\TooManyRequestsHttpException' => $vendorDir . '/symfony/http-kernel/Exception/TooManyRequestsHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\UnauthorizedHttpException' => $vendorDir . '/symfony/http-kernel/Exception/UnauthorizedHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\UnprocessableEntityHttpException' => $vendorDir . '/symfony/http-kernel/Exception/UnprocessableEntityHttpException.php', + 'Symfony\\Component\\HttpKernel\\Exception\\UnsupportedMediaTypeHttpException' => $vendorDir . '/symfony/http-kernel/Exception/UnsupportedMediaTypeHttpException.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\AbstractSurrogateFragmentRenderer' => $vendorDir . '/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\EsiFragmentRenderer' => $vendorDir . '/symfony/http-kernel/Fragment/EsiFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\FragmentHandler' => $vendorDir . '/symfony/http-kernel/Fragment/FragmentHandler.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\FragmentRendererInterface' => $vendorDir . '/symfony/http-kernel/Fragment/FragmentRendererInterface.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\HIncludeFragmentRenderer' => $vendorDir . '/symfony/http-kernel/Fragment/HIncludeFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\InlineFragmentRenderer' => $vendorDir . '/symfony/http-kernel/Fragment/InlineFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\RoutableFragmentRenderer' => $vendorDir . '/symfony/http-kernel/Fragment/RoutableFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\Fragment\\SsiFragmentRenderer' => $vendorDir . '/symfony/http-kernel/Fragment/SsiFragmentRenderer.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\Esi' => $vendorDir . '/symfony/http-kernel/HttpCache/Esi.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\HttpCache' => $vendorDir . '/symfony/http-kernel/HttpCache/HttpCache.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\ResponseCacheStrategy' => $vendorDir . '/symfony/http-kernel/HttpCache/ResponseCacheStrategy.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\ResponseCacheStrategyInterface' => $vendorDir . '/symfony/http-kernel/HttpCache/ResponseCacheStrategyInterface.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\Ssi' => $vendorDir . '/symfony/http-kernel/HttpCache/Ssi.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\Store' => $vendorDir . '/symfony/http-kernel/HttpCache/Store.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\StoreInterface' => $vendorDir . '/symfony/http-kernel/HttpCache/StoreInterface.php', + 'Symfony\\Component\\HttpKernel\\HttpCache\\SurrogateInterface' => $vendorDir . '/symfony/http-kernel/HttpCache/SurrogateInterface.php', + 'Symfony\\Component\\HttpKernel\\HttpKernel' => $vendorDir . '/symfony/http-kernel/HttpKernel.php', + 'Symfony\\Component\\HttpKernel\\HttpKernelInterface' => $vendorDir . '/symfony/http-kernel/HttpKernelInterface.php', + 'Symfony\\Component\\HttpKernel\\Kernel' => $vendorDir . '/symfony/http-kernel/Kernel.php', + 'Symfony\\Component\\HttpKernel\\KernelEvents' => $vendorDir . '/symfony/http-kernel/KernelEvents.php', + 'Symfony\\Component\\HttpKernel\\KernelInterface' => $vendorDir . '/symfony/http-kernel/KernelInterface.php', + 'Symfony\\Component\\HttpKernel\\Log\\DebugLoggerInterface' => $vendorDir . '/symfony/http-kernel/Log/DebugLoggerInterface.php', + 'Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage' => $vendorDir . '/symfony/http-kernel/Profiler/FileProfilerStorage.php', + 'Symfony\\Component\\HttpKernel\\Profiler\\Profile' => $vendorDir . '/symfony/http-kernel/Profiler/Profile.php', + 'Symfony\\Component\\HttpKernel\\Profiler\\Profiler' => $vendorDir . '/symfony/http-kernel/Profiler/Profiler.php', + 'Symfony\\Component\\HttpKernel\\Profiler\\ProfilerStorageInterface' => $vendorDir . '/symfony/http-kernel/Profiler/ProfilerStorageInterface.php', + 'Symfony\\Component\\HttpKernel\\TerminableInterface' => $vendorDir . '/symfony/http-kernel/TerminableInterface.php', + 'Symfony\\Component\\HttpKernel\\UriSigner' => $vendorDir . '/symfony/http-kernel/UriSigner.php', + 'Symfony\\Component\\OptionsResolver\\Exception\\AccessException' => $vendorDir . '/symfony/options-resolver/Exception/AccessException.php', + 'Symfony\\Component\\OptionsResolver\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/options-resolver/Exception/ExceptionInterface.php', + 'Symfony\\Component\\OptionsResolver\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/options-resolver/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\OptionsResolver\\Exception\\InvalidOptionsException' => $vendorDir . '/symfony/options-resolver/Exception/InvalidOptionsException.php', + 'Symfony\\Component\\OptionsResolver\\Exception\\MissingOptionsException' => $vendorDir . '/symfony/options-resolver/Exception/MissingOptionsException.php', + 'Symfony\\Component\\OptionsResolver\\Exception\\NoSuchOptionException' => $vendorDir . '/symfony/options-resolver/Exception/NoSuchOptionException.php', + 'Symfony\\Component\\OptionsResolver\\Exception\\OptionDefinitionException' => $vendorDir . '/symfony/options-resolver/Exception/OptionDefinitionException.php', + 'Symfony\\Component\\OptionsResolver\\Exception\\UndefinedOptionsException' => $vendorDir . '/symfony/options-resolver/Exception/UndefinedOptionsException.php', + 'Symfony\\Component\\OptionsResolver\\Options' => $vendorDir . '/symfony/options-resolver/Options.php', + 'Symfony\\Component\\OptionsResolver\\OptionsResolver' => $vendorDir . '/symfony/options-resolver/OptionsResolver.php', + 'Symfony\\Component\\Process\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/process/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Process\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/process/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Process\\Exception\\LogicException' => $vendorDir . '/symfony/process/Exception/LogicException.php', + 'Symfony\\Component\\Process\\Exception\\ProcessFailedException' => $vendorDir . '/symfony/process/Exception/ProcessFailedException.php', + 'Symfony\\Component\\Process\\Exception\\ProcessTimedOutException' => $vendorDir . '/symfony/process/Exception/ProcessTimedOutException.php', + 'Symfony\\Component\\Process\\Exception\\RuntimeException' => $vendorDir . '/symfony/process/Exception/RuntimeException.php', + 'Symfony\\Component\\Process\\ExecutableFinder' => $vendorDir . '/symfony/process/ExecutableFinder.php', + 'Symfony\\Component\\Process\\PhpExecutableFinder' => $vendorDir . '/symfony/process/PhpExecutableFinder.php', + 'Symfony\\Component\\Process\\PhpProcess' => $vendorDir . '/symfony/process/PhpProcess.php', + 'Symfony\\Component\\Process\\Pipes\\AbstractPipes' => $vendorDir . '/symfony/process/Pipes/AbstractPipes.php', + 'Symfony\\Component\\Process\\Pipes\\PipesInterface' => $vendorDir . '/symfony/process/Pipes/PipesInterface.php', + 'Symfony\\Component\\Process\\Pipes\\UnixPipes' => $vendorDir . '/symfony/process/Pipes/UnixPipes.php', + 'Symfony\\Component\\Process\\Pipes\\WindowsPipes' => $vendorDir . '/symfony/process/Pipes/WindowsPipes.php', + 'Symfony\\Component\\Process\\Process' => $vendorDir . '/symfony/process/Process.php', + 'Symfony\\Component\\Process\\ProcessBuilder' => $vendorDir . '/symfony/process/ProcessBuilder.php', + 'Symfony\\Component\\Process\\ProcessUtils' => $vendorDir . '/symfony/process/ProcessUtils.php', + 'Symfony\\Component\\Routing\\Annotation\\Route' => $vendorDir . '/symfony/routing/Annotation/Route.php', + 'Symfony\\Component\\Routing\\CompiledRoute' => $vendorDir . '/symfony/routing/CompiledRoute.php', + 'Symfony\\Component\\Routing\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/routing/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Routing\\Exception\\InvalidParameterException' => $vendorDir . '/symfony/routing/Exception/InvalidParameterException.php', + 'Symfony\\Component\\Routing\\Exception\\MethodNotAllowedException' => $vendorDir . '/symfony/routing/Exception/MethodNotAllowedException.php', + 'Symfony\\Component\\Routing\\Exception\\MissingMandatoryParametersException' => $vendorDir . '/symfony/routing/Exception/MissingMandatoryParametersException.php', + 'Symfony\\Component\\Routing\\Exception\\ResourceNotFoundException' => $vendorDir . '/symfony/routing/Exception/ResourceNotFoundException.php', + 'Symfony\\Component\\Routing\\Exception\\RouteNotFoundException' => $vendorDir . '/symfony/routing/Exception/RouteNotFoundException.php', + 'Symfony\\Component\\Routing\\Generator\\ConfigurableRequirementsInterface' => $vendorDir . '/symfony/routing/Generator/ConfigurableRequirementsInterface.php', + 'Symfony\\Component\\Routing\\Generator\\Dumper\\GeneratorDumper' => $vendorDir . '/symfony/routing/Generator/Dumper/GeneratorDumper.php', + 'Symfony\\Component\\Routing\\Generator\\Dumper\\GeneratorDumperInterface' => $vendorDir . '/symfony/routing/Generator/Dumper/GeneratorDumperInterface.php', + 'Symfony\\Component\\Routing\\Generator\\Dumper\\PhpGeneratorDumper' => $vendorDir . '/symfony/routing/Generator/Dumper/PhpGeneratorDumper.php', + 'Symfony\\Component\\Routing\\Generator\\UrlGenerator' => $vendorDir . '/symfony/routing/Generator/UrlGenerator.php', + 'Symfony\\Component\\Routing\\Generator\\UrlGeneratorInterface' => $vendorDir . '/symfony/routing/Generator/UrlGeneratorInterface.php', + 'Symfony\\Component\\Routing\\Loader\\AnnotationClassLoader' => $vendorDir . '/symfony/routing/Loader/AnnotationClassLoader.php', + 'Symfony\\Component\\Routing\\Loader\\AnnotationDirectoryLoader' => $vendorDir . '/symfony/routing/Loader/AnnotationDirectoryLoader.php', + 'Symfony\\Component\\Routing\\Loader\\AnnotationFileLoader' => $vendorDir . '/symfony/routing/Loader/AnnotationFileLoader.php', + 'Symfony\\Component\\Routing\\Loader\\ClosureLoader' => $vendorDir . '/symfony/routing/Loader/ClosureLoader.php', + 'Symfony\\Component\\Routing\\Loader\\DependencyInjection\\ServiceRouterLoader' => $vendorDir . '/symfony/routing/Loader/DependencyInjection/ServiceRouterLoader.php', + 'Symfony\\Component\\Routing\\Loader\\DirectoryLoader' => $vendorDir . '/symfony/routing/Loader/DirectoryLoader.php', + 'Symfony\\Component\\Routing\\Loader\\ObjectRouteLoader' => $vendorDir . '/symfony/routing/Loader/ObjectRouteLoader.php', + 'Symfony\\Component\\Routing\\Loader\\PhpFileLoader' => $vendorDir . '/symfony/routing/Loader/PhpFileLoader.php', + 'Symfony\\Component\\Routing\\Loader\\XmlFileLoader' => $vendorDir . '/symfony/routing/Loader/XmlFileLoader.php', + 'Symfony\\Component\\Routing\\Loader\\YamlFileLoader' => $vendorDir . '/symfony/routing/Loader/YamlFileLoader.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\DumperCollection' => $vendorDir . '/symfony/routing/Matcher/Dumper/DumperCollection.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\DumperPrefixCollection' => $vendorDir . '/symfony/routing/Matcher/Dumper/DumperPrefixCollection.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\DumperRoute' => $vendorDir . '/symfony/routing/Matcher/Dumper/DumperRoute.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\MatcherDumper' => $vendorDir . '/symfony/routing/Matcher/Dumper/MatcherDumper.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\MatcherDumperInterface' => $vendorDir . '/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php', + 'Symfony\\Component\\Routing\\Matcher\\Dumper\\PhpMatcherDumper' => $vendorDir . '/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php', + 'Symfony\\Component\\Routing\\Matcher\\RedirectableUrlMatcher' => $vendorDir . '/symfony/routing/Matcher/RedirectableUrlMatcher.php', + 'Symfony\\Component\\Routing\\Matcher\\RedirectableUrlMatcherInterface' => $vendorDir . '/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php', + 'Symfony\\Component\\Routing\\Matcher\\RequestMatcherInterface' => $vendorDir . '/symfony/routing/Matcher/RequestMatcherInterface.php', + 'Symfony\\Component\\Routing\\Matcher\\TraceableUrlMatcher' => $vendorDir . '/symfony/routing/Matcher/TraceableUrlMatcher.php', + 'Symfony\\Component\\Routing\\Matcher\\UrlMatcher' => $vendorDir . '/symfony/routing/Matcher/UrlMatcher.php', + 'Symfony\\Component\\Routing\\Matcher\\UrlMatcherInterface' => $vendorDir . '/symfony/routing/Matcher/UrlMatcherInterface.php', + 'Symfony\\Component\\Routing\\RequestContext' => $vendorDir . '/symfony/routing/RequestContext.php', + 'Symfony\\Component\\Routing\\RequestContextAwareInterface' => $vendorDir . '/symfony/routing/RequestContextAwareInterface.php', + 'Symfony\\Component\\Routing\\Route' => $vendorDir . '/symfony/routing/Route.php', + 'Symfony\\Component\\Routing\\RouteCollection' => $vendorDir . '/symfony/routing/RouteCollection.php', + 'Symfony\\Component\\Routing\\RouteCollectionBuilder' => $vendorDir . '/symfony/routing/RouteCollectionBuilder.php', + 'Symfony\\Component\\Routing\\RouteCompiler' => $vendorDir . '/symfony/routing/RouteCompiler.php', + 'Symfony\\Component\\Routing\\RouteCompilerInterface' => $vendorDir . '/symfony/routing/RouteCompilerInterface.php', + 'Symfony\\Component\\Routing\\Router' => $vendorDir . '/symfony/routing/Router.php', + 'Symfony\\Component\\Routing\\RouterInterface' => $vendorDir . '/symfony/routing/RouterInterface.php', + 'Symfony\\Component\\Translation\\Catalogue\\AbstractOperation' => $vendorDir . '/symfony/translation/Catalogue/AbstractOperation.php', + 'Symfony\\Component\\Translation\\Catalogue\\MergeOperation' => $vendorDir . '/symfony/translation/Catalogue/MergeOperation.php', + 'Symfony\\Component\\Translation\\Catalogue\\OperationInterface' => $vendorDir . '/symfony/translation/Catalogue/OperationInterface.php', + 'Symfony\\Component\\Translation\\Catalogue\\TargetOperation' => $vendorDir . '/symfony/translation/Catalogue/TargetOperation.php', + 'Symfony\\Component\\Translation\\DataCollectorTranslator' => $vendorDir . '/symfony/translation/DataCollectorTranslator.php', + 'Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector' => $vendorDir . '/symfony/translation/DataCollector/TranslationDataCollector.php', + 'Symfony\\Component\\Translation\\Dumper\\CsvFileDumper' => $vendorDir . '/symfony/translation/Dumper/CsvFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\DumperInterface' => $vendorDir . '/symfony/translation/Dumper/DumperInterface.php', + 'Symfony\\Component\\Translation\\Dumper\\FileDumper' => $vendorDir . '/symfony/translation/Dumper/FileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper' => $vendorDir . '/symfony/translation/Dumper/IcuResFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\IniFileDumper' => $vendorDir . '/symfony/translation/Dumper/IniFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\JsonFileDumper' => $vendorDir . '/symfony/translation/Dumper/JsonFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\MoFileDumper' => $vendorDir . '/symfony/translation/Dumper/MoFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\PhpFileDumper' => $vendorDir . '/symfony/translation/Dumper/PhpFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\PoFileDumper' => $vendorDir . '/symfony/translation/Dumper/PoFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\QtFileDumper' => $vendorDir . '/symfony/translation/Dumper/QtFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\XliffFileDumper' => $vendorDir . '/symfony/translation/Dumper/XliffFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\YamlFileDumper' => $vendorDir . '/symfony/translation/Dumper/YamlFileDumper.php', + 'Symfony\\Component\\Translation\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/translation/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Translation\\Exception\\InvalidResourceException' => $vendorDir . '/symfony/translation/Exception/InvalidResourceException.php', + 'Symfony\\Component\\Translation\\Exception\\NotFoundResourceException' => $vendorDir . '/symfony/translation/Exception/NotFoundResourceException.php', + 'Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor' => $vendorDir . '/symfony/translation/Extractor/AbstractFileExtractor.php', + 'Symfony\\Component\\Translation\\Extractor\\ChainExtractor' => $vendorDir . '/symfony/translation/Extractor/ChainExtractor.php', + 'Symfony\\Component\\Translation\\Extractor\\ExtractorInterface' => $vendorDir . '/symfony/translation/Extractor/ExtractorInterface.php', + 'Symfony\\Component\\Translation\\IdentityTranslator' => $vendorDir . '/symfony/translation/IdentityTranslator.php', + 'Symfony\\Component\\Translation\\Interval' => $vendorDir . '/symfony/translation/Interval.php', + 'Symfony\\Component\\Translation\\Loader\\ArrayLoader' => $vendorDir . '/symfony/translation/Loader/ArrayLoader.php', + 'Symfony\\Component\\Translation\\Loader\\CsvFileLoader' => $vendorDir . '/symfony/translation/Loader/CsvFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\FileLoader' => $vendorDir . '/symfony/translation/Loader/FileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuDatFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IcuResFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuResFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IniFileLoader' => $vendorDir . '/symfony/translation/Loader/IniFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\JsonFileLoader' => $vendorDir . '/symfony/translation/Loader/JsonFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\LoaderInterface' => $vendorDir . '/symfony/translation/Loader/LoaderInterface.php', + 'Symfony\\Component\\Translation\\Loader\\MoFileLoader' => $vendorDir . '/symfony/translation/Loader/MoFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\PhpFileLoader' => $vendorDir . '/symfony/translation/Loader/PhpFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\PoFileLoader' => $vendorDir . '/symfony/translation/Loader/PoFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\QtFileLoader' => $vendorDir . '/symfony/translation/Loader/QtFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\XliffFileLoader' => $vendorDir . '/symfony/translation/Loader/XliffFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\YamlFileLoader' => $vendorDir . '/symfony/translation/Loader/YamlFileLoader.php', + 'Symfony\\Component\\Translation\\LoggingTranslator' => $vendorDir . '/symfony/translation/LoggingTranslator.php', + 'Symfony\\Component\\Translation\\MessageCatalogue' => $vendorDir . '/symfony/translation/MessageCatalogue.php', + 'Symfony\\Component\\Translation\\MessageCatalogueInterface' => $vendorDir . '/symfony/translation/MessageCatalogueInterface.php', + 'Symfony\\Component\\Translation\\MessageSelector' => $vendorDir . '/symfony/translation/MessageSelector.php', + 'Symfony\\Component\\Translation\\MetadataAwareInterface' => $vendorDir . '/symfony/translation/MetadataAwareInterface.php', + 'Symfony\\Component\\Translation\\PluralizationRules' => $vendorDir . '/symfony/translation/PluralizationRules.php', + 'Symfony\\Component\\Translation\\Translator' => $vendorDir . '/symfony/translation/Translator.php', + 'Symfony\\Component\\Translation\\TranslatorBagInterface' => $vendorDir . '/symfony/translation/TranslatorBagInterface.php', + 'Symfony\\Component\\Translation\\TranslatorInterface' => $vendorDir . '/symfony/translation/TranslatorInterface.php', + 'Symfony\\Component\\Translation\\Util\\ArrayConverter' => $vendorDir . '/symfony/translation/Util/ArrayConverter.php', + 'Symfony\\Component\\Translation\\Writer\\TranslationWriter' => $vendorDir . '/symfony/translation/Writer/TranslationWriter.php', + 'Symfony\\Component\\VarDumper\\Caster\\AmqpCaster' => $vendorDir . '/symfony/var-dumper/Caster/AmqpCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\Caster' => $vendorDir . '/symfony/var-dumper/Caster/Caster.php', + 'Symfony\\Component\\VarDumper\\Caster\\ConstStub' => $vendorDir . '/symfony/var-dumper/Caster/ConstStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\CutArrayStub' => $vendorDir . '/symfony/var-dumper/Caster/CutArrayStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\CutStub' => $vendorDir . '/symfony/var-dumper/Caster/CutStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\DOMCaster' => $vendorDir . '/symfony/var-dumper/Caster/DOMCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\DoctrineCaster' => $vendorDir . '/symfony/var-dumper/Caster/DoctrineCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\EnumStub' => $vendorDir . '/symfony/var-dumper/Caster/EnumStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster' => $vendorDir . '/symfony/var-dumper/Caster/ExceptionCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\FrameStub' => $vendorDir . '/symfony/var-dumper/Caster/FrameStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\MongoCaster' => $vendorDir . '/symfony/var-dumper/Caster/MongoCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\PdoCaster' => $vendorDir . '/symfony/var-dumper/Caster/PdoCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\PgSqlCaster' => $vendorDir . '/symfony/var-dumper/Caster/PgSqlCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster' => $vendorDir . '/symfony/var-dumper/Caster/ReflectionCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\ResourceCaster' => $vendorDir . '/symfony/var-dumper/Caster/ResourceCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\SplCaster' => $vendorDir . '/symfony/var-dumper/Caster/SplCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\StubCaster' => $vendorDir . '/symfony/var-dumper/Caster/StubCaster.php', + 'Symfony\\Component\\VarDumper\\Caster\\TraceStub' => $vendorDir . '/symfony/var-dumper/Caster/TraceStub.php', + 'Symfony\\Component\\VarDumper\\Caster\\XmlResourceCaster' => $vendorDir . '/symfony/var-dumper/Caster/XmlResourceCaster.php', + 'Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner' => $vendorDir . '/symfony/var-dumper/Cloner/AbstractCloner.php', + 'Symfony\\Component\\VarDumper\\Cloner\\ClonerInterface' => $vendorDir . '/symfony/var-dumper/Cloner/ClonerInterface.php', + 'Symfony\\Component\\VarDumper\\Cloner\\Cursor' => $vendorDir . '/symfony/var-dumper/Cloner/Cursor.php', + 'Symfony\\Component\\VarDumper\\Cloner\\Data' => $vendorDir . '/symfony/var-dumper/Cloner/Data.php', + 'Symfony\\Component\\VarDumper\\Cloner\\DumperInterface' => $vendorDir . '/symfony/var-dumper/Cloner/DumperInterface.php', + 'Symfony\\Component\\VarDumper\\Cloner\\Stub' => $vendorDir . '/symfony/var-dumper/Cloner/Stub.php', + 'Symfony\\Component\\VarDumper\\Cloner\\VarCloner' => $vendorDir . '/symfony/var-dumper/Cloner/VarCloner.php', + 'Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper' => $vendorDir . '/symfony/var-dumper/Dumper/AbstractDumper.php', + 'Symfony\\Component\\VarDumper\\Dumper\\CliDumper' => $vendorDir . '/symfony/var-dumper/Dumper/CliDumper.php', + 'Symfony\\Component\\VarDumper\\Dumper\\DataDumperInterface' => $vendorDir . '/symfony/var-dumper/Dumper/DataDumperInterface.php', + 'Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper' => $vendorDir . '/symfony/var-dumper/Dumper/HtmlDumper.php', + 'Symfony\\Component\\VarDumper\\Exception\\ThrowingCasterException' => $vendorDir . '/symfony/var-dumper/Exception/ThrowingCasterException.php', + 'Symfony\\Component\\VarDumper\\Test\\VarDumperTestTrait' => $vendorDir . '/symfony/var-dumper/Test/VarDumperTestTrait.php', + 'Symfony\\Component\\VarDumper\\VarDumper' => $vendorDir . '/symfony/var-dumper/VarDumper.php', + 'Symfony\\Component\\Yaml\\Dumper' => $vendorDir . '/symfony/yaml/Dumper.php', + 'Symfony\\Component\\Yaml\\Escaper' => $vendorDir . '/symfony/yaml/Escaper.php', + 'Symfony\\Component\\Yaml\\Exception\\DumpException' => $vendorDir . '/symfony/yaml/Exception/DumpException.php', + 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/yaml/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Yaml\\Exception\\ParseException' => $vendorDir . '/symfony/yaml/Exception/ParseException.php', + 'Symfony\\Component\\Yaml\\Exception\\RuntimeException' => $vendorDir . '/symfony/yaml/Exception/RuntimeException.php', + 'Symfony\\Component\\Yaml\\Inline' => $vendorDir . '/symfony/yaml/Inline.php', + 'Symfony\\Component\\Yaml\\Parser' => $vendorDir . '/symfony/yaml/Parser.php', + 'Symfony\\Component\\Yaml\\Unescaper' => $vendorDir . '/symfony/yaml/Unescaper.php', + 'Symfony\\Component\\Yaml\\Yaml' => $vendorDir . '/symfony/yaml/Yaml.php', + 'Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php', + 'Symfony\\Polyfill\\Php56\\Php56' => $vendorDir . '/symfony/polyfill-php56/Php56.php', + 'Symfony\\Polyfill\\Util\\Binary' => $vendorDir . '/symfony/polyfill-util/Binary.php', + 'Symfony\\Polyfill\\Util\\BinaryNoFuncOverload' => $vendorDir . '/symfony/polyfill-util/BinaryNoFuncOverload.php', + 'Symfony\\Polyfill\\Util\\BinaryOnFuncOverload' => $vendorDir . '/symfony/polyfill-util/BinaryOnFuncOverload.php', + 'Symfony\\Polyfill\\Util\\TestListener' => $vendorDir . '/symfony/polyfill-util/TestListener.php', + 'System_SSH_Agent' => $vendorDir . '/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php', + 'System_SSH_Agent_Identity' => $vendorDir . '/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php', 'TCPDF_Adapter' => $vendorDir . '/dompdf/dompdf/include/tcpdf_adapter.cls.php', 'Table_Cell_Frame_Decorator' => $vendorDir . '/dompdf/dompdf/include/table_cell_frame_decorator.cls.php', 'Table_Cell_Frame_Reflower' => $vendorDir . '/dompdf/dompdf/include/table_cell_frame_reflower.cls.php', @@ -675,8 +4559,538 @@ return array( 'Text_Frame_Reflower' => $vendorDir . '/dompdf/dompdf/include/text_frame_reflower.cls.php', 'Text_Renderer' => $vendorDir . '/dompdf/dompdf/include/text_renderer.cls.php', 'Text_Template' => $vendorDir . '/phpunit/php-text-template/src/Template.php', + 'Thomaswelton\\LaravelGravatar\\Facades\\Gravatar' => $vendorDir . '/thomaswelton/laravel-gravatar/src/Facades/Gravatar.php', + 'Thomaswelton\\LaravelGravatar\\Gravatar' => $vendorDir . '/thomaswelton/laravel-gravatar/src/Gravatar.php', + 'Thomaswelton\\LaravelGravatar\\LaravelGravatarServiceProvider' => $vendorDir . '/thomaswelton/laravel-gravatar/src/LaravelGravatarServiceProvider.php', + 'TijsVerkoyen\\CssToInlineStyles\\CssToInlineStyles' => $vendorDir . '/tijsverkoyen/css-to-inline-styles/src/CssToInlineStyles.php', + 'TijsVerkoyen\\CssToInlineStyles\\Exception' => $vendorDir . '/tijsverkoyen/css-to-inline-styles/src/Exception.php', + 'TijsVerkoyen\\CssToInlineStyles\\Selector' => $vendorDir . '/tijsverkoyen/css-to-inline-styles/src/Selector.php', + 'TijsVerkoyen\\CssToInlineStyles\\Specificity' => $vendorDir . '/tijsverkoyen/css-to-inline-styles/src/Specificity.php', + 'Torann\\GeoIP\\Cache' => $vendorDir . '/torann/geoip/src/Cache.php', + 'Torann\\GeoIP\\Console\\Clear' => $vendorDir . '/torann/geoip/src/Console/Clear.php', + 'Torann\\GeoIP\\Console\\Update' => $vendorDir . '/torann/geoip/src/Console/Update.php', + 'Torann\\GeoIP\\Contracts\\ServiceInterface' => $vendorDir . '/torann/geoip/src/Contracts/ServiceInterface.php', + 'Torann\\GeoIP\\Facades\\GeoIP' => $vendorDir . '/torann/geoip/src/Facades/GeoIP.php', + 'Torann\\GeoIP\\GeoIP' => $vendorDir . '/torann/geoip/src/GeoIP.php', + 'Torann\\GeoIP\\GeoIPServiceProvider' => $vendorDir . '/torann/geoip/src/GeoIPServiceProvider.php', + 'Torann\\GeoIP\\Location' => $vendorDir . '/torann/geoip/src/Location.php', + 'Torann\\GeoIP\\Services\\AbstractService' => $vendorDir . '/torann/geoip/src/Services/AbstractService.php', + 'Torann\\GeoIP\\Services\\IPApi' => $vendorDir . '/torann/geoip/src/Services/IPApi.php', + 'Torann\\GeoIP\\Services\\MaxMindDatabase' => $vendorDir . '/torann/geoip/src/Services/MaxMindDatabase.php', + 'Torann\\GeoIP\\Services\\MaxMindWebService' => $vendorDir . '/torann/geoip/src/Services/MaxMindWebService.php', + 'Torann\\GeoIP\\Support\\HttpClient' => $vendorDir . '/torann/geoip/src/Support/HttpClient.php', + 'Tymon\\JWTAuth\\Blacklist' => $vendorDir . '/tymon/jwt-auth/src/Blacklist.php', + 'Tymon\\JWTAuth\\Claims\\Audience' => $vendorDir . '/tymon/jwt-auth/src/Claims/Audience.php', + 'Tymon\\JWTAuth\\Claims\\Claim' => $vendorDir . '/tymon/jwt-auth/src/Claims/Claim.php', + 'Tymon\\JWTAuth\\Claims\\ClaimInterface' => $vendorDir . '/tymon/jwt-auth/src/Claims/ClaimInterface.php', + 'Tymon\\JWTAuth\\Claims\\Custom' => $vendorDir . '/tymon/jwt-auth/src/Claims/Custom.php', + 'Tymon\\JWTAuth\\Claims\\Expiration' => $vendorDir . '/tymon/jwt-auth/src/Claims/Expiration.php', + 'Tymon\\JWTAuth\\Claims\\Factory' => $vendorDir . '/tymon/jwt-auth/src/Claims/Factory.php', + 'Tymon\\JWTAuth\\Claims\\IssuedAt' => $vendorDir . '/tymon/jwt-auth/src/Claims/IssuedAt.php', + 'Tymon\\JWTAuth\\Claims\\Issuer' => $vendorDir . '/tymon/jwt-auth/src/Claims/Issuer.php', + 'Tymon\\JWTAuth\\Claims\\JwtId' => $vendorDir . '/tymon/jwt-auth/src/Claims/JwtId.php', + 'Tymon\\JWTAuth\\Claims\\NotBefore' => $vendorDir . '/tymon/jwt-auth/src/Claims/NotBefore.php', + 'Tymon\\JWTAuth\\Claims\\Subject' => $vendorDir . '/tymon/jwt-auth/src/Claims/Subject.php', + 'Tymon\\JWTAuth\\Commands\\JWTGenerateCommand' => $vendorDir . '/tymon/jwt-auth/src/Commands/JWTGenerateCommand.php', + 'Tymon\\JWTAuth\\Exceptions\\InvalidClaimException' => $vendorDir . '/tymon/jwt-auth/src/Exceptions/InvalidClaimException.php', + 'Tymon\\JWTAuth\\Exceptions\\JWTException' => $vendorDir . '/tymon/jwt-auth/src/Exceptions/JWTException.php', + 'Tymon\\JWTAuth\\Exceptions\\PayloadException' => $vendorDir . '/tymon/jwt-auth/src/Exceptions/PayloadException.php', + 'Tymon\\JWTAuth\\Exceptions\\TokenBlacklistedException' => $vendorDir . '/tymon/jwt-auth/src/Exceptions/TokenBlacklistedException.php', + 'Tymon\\JWTAuth\\Exceptions\\TokenExpiredException' => $vendorDir . '/tymon/jwt-auth/src/Exceptions/TokenExpiredException.php', + 'Tymon\\JWTAuth\\Exceptions\\TokenInvalidException' => $vendorDir . '/tymon/jwt-auth/src/Exceptions/TokenInvalidException.php', + 'Tymon\\JWTAuth\\Facades\\JWTAuth' => $vendorDir . '/tymon/jwt-auth/src/Facades/JWTAuth.php', + 'Tymon\\JWTAuth\\Facades\\JWTFactory' => $vendorDir . '/tymon/jwt-auth/src/Facades/JWTFactory.php', + 'Tymon\\JWTAuth\\JWTAuth' => $vendorDir . '/tymon/jwt-auth/src/JWTAuth.php', + 'Tymon\\JWTAuth\\JWTManager' => $vendorDir . '/tymon/jwt-auth/src/JWTManager.php', + 'Tymon\\JWTAuth\\Middleware\\BaseMiddleware' => $vendorDir . '/tymon/jwt-auth/src/Middleware/BaseMiddleware.php', + 'Tymon\\JWTAuth\\Middleware\\GetUserFromToken' => $vendorDir . '/tymon/jwt-auth/src/Middleware/GetUserFromToken.php', + 'Tymon\\JWTAuth\\Middleware\\RefreshToken' => $vendorDir . '/tymon/jwt-auth/src/Middleware/RefreshToken.php', + 'Tymon\\JWTAuth\\Payload' => $vendorDir . '/tymon/jwt-auth/src/Payload.php', + 'Tymon\\JWTAuth\\PayloadFactory' => $vendorDir . '/tymon/jwt-auth/src/PayloadFactory.php', + 'Tymon\\JWTAuth\\Providers\\Auth\\AuthInterface' => $vendorDir . '/tymon/jwt-auth/src/Providers/Auth/AuthInterface.php', + 'Tymon\\JWTAuth\\Providers\\Auth\\IlluminateAuthAdapter' => $vendorDir . '/tymon/jwt-auth/src/Providers/Auth/IlluminateAuthAdapter.php', + 'Tymon\\JWTAuth\\Providers\\JWTAuthServiceProvider' => $vendorDir . '/tymon/jwt-auth/src/Providers/JWTAuthServiceProvider.php', + 'Tymon\\JWTAuth\\Providers\\JWT\\JWTInterface' => $vendorDir . '/tymon/jwt-auth/src/Providers/JWT/JWTInterface.php', + 'Tymon\\JWTAuth\\Providers\\JWT\\JWTProvider' => $vendorDir . '/tymon/jwt-auth/src/Providers/JWT/JWTProvider.php', + 'Tymon\\JWTAuth\\Providers\\JWT\\NamshiAdapter' => $vendorDir . '/tymon/jwt-auth/src/Providers/JWT/NamshiAdapter.php', + 'Tymon\\JWTAuth\\Providers\\Storage\\IlluminateCacheAdapter' => $vendorDir . '/tymon/jwt-auth/src/Providers/Storage/IlluminateCacheAdapter.php', + 'Tymon\\JWTAuth\\Providers\\Storage\\StorageInterface' => $vendorDir . '/tymon/jwt-auth/src/Providers/Storage/StorageInterface.php', + 'Tymon\\JWTAuth\\Providers\\User\\EloquentUserAdapter' => $vendorDir . '/tymon/jwt-auth/src/Providers/User/EloquentUserAdapter.php', + 'Tymon\\JWTAuth\\Providers\\User\\UserInterface' => $vendorDir . '/tymon/jwt-auth/src/Providers/User/UserInterface.php', + 'Tymon\\JWTAuth\\Token' => $vendorDir . '/tymon/jwt-auth/src/Token.php', + 'Tymon\\JWTAuth\\Utils' => $vendorDir . '/tymon/jwt-auth/src/Utils.php', + 'Tymon\\JWTAuth\\Validators\\AbstractValidator' => $vendorDir . '/tymon/jwt-auth/src/Validators/AbstractValidator.php', + 'Tymon\\JWTAuth\\Validators\\PayloadValidator' => $vendorDir . '/tymon/jwt-auth/src/Validators/PayloadValidator.php', + 'Tymon\\JWTAuth\\Validators\\TokenValidator' => $vendorDir . '/tymon/jwt-auth/src/Validators/TokenValidator.php', + 'Tymon\\JWTAuth\\Validators\\ValidatorInterface' => $vendorDir . '/tymon/jwt-auth/src/Validators/ValidatorInterface.php', + 'Unisharp\\Ckeditor\\ServiceProvider' => $vendorDir . '/unisharp/laravel-ckeditor/ServiceProvider.php', + 'Unisharp\\Laravelfilemanager\\Events\\FolderWasRenamed' => $vendorDir . '/unisharp/laravel-filemanager/src/Events/FolderWasRenamed.php', + 'Unisharp\\Laravelfilemanager\\Events\\ImageWasDeleted' => $vendorDir . '/unisharp/laravel-filemanager/src/Events/ImageWasDeleted.php', + 'Unisharp\\Laravelfilemanager\\Events\\ImageWasRenamed' => $vendorDir . '/unisharp/laravel-filemanager/src/Events/ImageWasRenamed.php', + 'Unisharp\\Laravelfilemanager\\Events\\ImageWasUploaded' => $vendorDir . '/unisharp/laravel-filemanager/src/Events/ImageWasUploaded.php', + 'Unisharp\\Laravelfilemanager\\LaravelFilemanagerServiceProvider' => $vendorDir . '/unisharp/laravel-filemanager/src/LaravelFilemanagerServiceProvider.php', + 'Unisharp\\Laravelfilemanager\\controllers\\Controller' => $vendorDir . '/unisharp/laravel-filemanager/src/controllers/Controller.php', + 'Unisharp\\Laravelfilemanager\\controllers\\CropController' => $vendorDir . '/unisharp/laravel-filemanager/src/controllers/CropController.php', + 'Unisharp\\Laravelfilemanager\\controllers\\DeleteController' => $vendorDir . '/unisharp/laravel-filemanager/src/controllers/DeleteController.php', + 'Unisharp\\Laravelfilemanager\\controllers\\DownloadController' => $vendorDir . '/unisharp/laravel-filemanager/src/controllers/DownloadController.php', + 'Unisharp\\Laravelfilemanager\\controllers\\FolderController' => $vendorDir . '/unisharp/laravel-filemanager/src/controllers/FolderController.php', + 'Unisharp\\Laravelfilemanager\\controllers\\ItemsController' => $vendorDir . '/unisharp/laravel-filemanager/src/controllers/ItemsController.php', + 'Unisharp\\Laravelfilemanager\\controllers\\LfmController' => $vendorDir . '/unisharp/laravel-filemanager/src/controllers/LfmController.php', + 'Unisharp\\Laravelfilemanager\\controllers\\RenameController' => $vendorDir . '/unisharp/laravel-filemanager/src/controllers/RenameController.php', + 'Unisharp\\Laravelfilemanager\\controllers\\ResizeController' => $vendorDir . '/unisharp/laravel-filemanager/src/controllers/ResizeController.php', + 'Unisharp\\Laravelfilemanager\\controllers\\UploadController' => $vendorDir . '/unisharp/laravel-filemanager/src/controllers/UploadController.php', + 'Unisharp\\Laravelfilemanager\\middleware\\MultiUser' => $vendorDir . '/unisharp/laravel-filemanager/src/middleware/MultiUser.php', 'Version1079table' => $baseDir . '/database/migrations/2016_06_28_141613_version1079table.php', + 'Vsmoraes\\Pdf\\Dompdf' => $vendorDir . '/vsmoraes/laravel-pdf/src/Dompdf.php', + 'Vsmoraes\\Pdf\\Pdf' => $vendorDir . '/vsmoraes/laravel-pdf/src/Pdf.php', + 'Vsmoraes\\Pdf\\PdfFacade' => $vendorDir . '/vsmoraes/laravel-pdf/src/PdfFacade.php', + 'Vsmoraes\\Pdf\\PdfServiceProvider' => $vendorDir . '/vsmoraes/laravel-pdf/src/PdfServiceProvider.php', + 'Webmozart\\Assert\\Assert' => $vendorDir . '/webmozart/assert/src/Assert.php', + 'Whoops\\Exception\\ErrorException' => $vendorDir . '/filp/whoops/src/Whoops/Exception/ErrorException.php', + 'Whoops\\Exception\\Formatter' => $vendorDir . '/filp/whoops/src/Whoops/Exception/Formatter.php', + 'Whoops\\Exception\\Frame' => $vendorDir . '/filp/whoops/src/Whoops/Exception/Frame.php', + 'Whoops\\Exception\\FrameCollection' => $vendorDir . '/filp/whoops/src/Whoops/Exception/FrameCollection.php', + 'Whoops\\Exception\\Inspector' => $vendorDir . '/filp/whoops/src/Whoops/Exception/Inspector.php', + 'Whoops\\Handler\\CallbackHandler' => $vendorDir . '/filp/whoops/src/Whoops/Handler/CallbackHandler.php', + 'Whoops\\Handler\\Handler' => $vendorDir . '/filp/whoops/src/Whoops/Handler/Handler.php', + 'Whoops\\Handler\\HandlerInterface' => $vendorDir . '/filp/whoops/src/Whoops/Handler/HandlerInterface.php', + 'Whoops\\Handler\\JsonResponseHandler' => $vendorDir . '/filp/whoops/src/Whoops/Handler/JsonResponseHandler.php', + 'Whoops\\Handler\\PlainTextHandler' => $vendorDir . '/filp/whoops/src/Whoops/Handler/PlainTextHandler.php', + 'Whoops\\Handler\\PrettyPageHandler' => $vendorDir . '/filp/whoops/src/Whoops/Handler/PrettyPageHandler.php', + 'Whoops\\Handler\\SoapResponseHandler' => $vendorDir . '/filp/whoops/src/Whoops/Handler/SoapResponseHandler.php', + 'Whoops\\Handler\\XmlResponseHandler' => $vendorDir . '/filp/whoops/src/Whoops/Handler/XmlResponseHandler.php', 'Whoops\\Module' => $vendorDir . '/filp/whoops/src/deprecated/Zend/Module.php', + 'Whoops\\Provider\\Phalcon\\WhoopsServiceProvider' => $vendorDir . '/filp/whoops/src/Whoops/Provider/Phalcon/WhoopsServiceProvider.php', + 'Whoops\\Provider\\Silex\\WhoopsServiceProvider' => $vendorDir . '/filp/whoops/src/Whoops/Provider/Silex/WhoopsServiceProvider.php', 'Whoops\\Provider\\Zend\\ExceptionStrategy' => $vendorDir . '/filp/whoops/src/deprecated/Zend/ExceptionStrategy.php', 'Whoops\\Provider\\Zend\\RouteNotFoundStrategy' => $vendorDir . '/filp/whoops/src/deprecated/Zend/RouteNotFoundStrategy.php', + 'Whoops\\Run' => $vendorDir . '/filp/whoops/src/Whoops/Run.php', + 'Whoops\\Util\\Misc' => $vendorDir . '/filp/whoops/src/Whoops/Util/Misc.php', + 'Whoops\\Util\\TemplateHelper' => $vendorDir . '/filp/whoops/src/Whoops/Util/TemplateHelper.php', + 'XdgBaseDir\\Xdg' => $vendorDir . '/dnoegel/php-xdg-base-dir/src/Xdg.php', + 'ZendService\\Apple\\Apns\\Client\\AbstractClient' => $vendorDir . '/zendframework/zendservice-apple-apns/library/ZendService/Apple/Apns/Client/AbstractClient.php', + 'ZendService\\Apple\\Apns\\Client\\Feedback' => $vendorDir . '/zendframework/zendservice-apple-apns/library/ZendService/Apple/Apns/Client/Feedback.php', + 'ZendService\\Apple\\Apns\\Client\\Message' => $vendorDir . '/zendframework/zendservice-apple-apns/library/ZendService/Apple/Apns/Client/Message.php', + 'ZendService\\Apple\\Apns\\Message' => $vendorDir . '/zendframework/zendservice-apple-apns/library/ZendService/Apple/Apns/Message.php', + 'ZendService\\Apple\\Apns\\Message\\Alert' => $vendorDir . '/zendframework/zendservice-apple-apns/library/ZendService/Apple/Apns/Message/Alert.php', + 'ZendService\\Apple\\Apns\\Response\\Feedback' => $vendorDir . '/zendframework/zendservice-apple-apns/library/ZendService/Apple/Apns/Response/Feedback.php', + 'ZendService\\Apple\\Apns\\Response\\Message' => $vendorDir . '/zendframework/zendservice-apple-apns/library/ZendService/Apple/Apns/Response/Message.php', + 'ZendService\\Apple\\Exception\\InvalidArgumentException' => $vendorDir . '/zendframework/zendservice-apple-apns/library/ZendService/Apple/Exception/InvalidArgumentException.php', + 'ZendService\\Apple\\Exception\\RuntimeException' => $vendorDir . '/zendframework/zendservice-apple-apns/library/ZendService/Apple/Exception/RuntimeException.php', + 'ZendService\\Apple\\Exception\\StreamSocketClientException' => $vendorDir . '/zendframework/zendservice-apple-apns/library/ZendService/Apple/Exception/StreamSocketClientException.php', + 'ZendService\\Google\\Exception\\InvalidArgumentException' => $vendorDir . '/zendframework/zendservice-google-gcm/library/ZendService/Google/Exception/InvalidArgumentException.php', + 'ZendService\\Google\\Exception\\RuntimeException' => $vendorDir . '/zendframework/zendservice-google-gcm/library/ZendService/Google/Exception/RuntimeException.php', + 'ZendService\\Google\\Gcm\\Client' => $vendorDir . '/zendframework/zendservice-google-gcm/library/ZendService/Google/Gcm/Client.php', + 'ZendService\\Google\\Gcm\\Message' => $vendorDir . '/zendframework/zendservice-google-gcm/library/ZendService/Google/Gcm/Message.php', + 'ZendService\\Google\\Gcm\\Response' => $vendorDir . '/zendframework/zendservice-google-gcm/library/ZendService/Google/Gcm/Response.php', + 'Zend\\Escaper\\Escaper' => $vendorDir . '/zendframework/zend-escaper/src/Escaper.php', + 'Zend\\Escaper\\Exception\\ExceptionInterface' => $vendorDir . '/zendframework/zend-escaper/src/Exception/ExceptionInterface.php', + 'Zend\\Escaper\\Exception\\InvalidArgumentException' => $vendorDir . '/zendframework/zend-escaper/src/Exception/InvalidArgumentException.php', + 'Zend\\Escaper\\Exception\\RuntimeException' => $vendorDir . '/zendframework/zend-escaper/src/Exception/RuntimeException.php', + 'Zend\\Http\\AbstractMessage' => $vendorDir . '/zendframework/zend-http/src/AbstractMessage.php', + 'Zend\\Http\\Client' => $vendorDir . '/zendframework/zend-http/src/Client.php', + 'Zend\\Http\\ClientStatic' => $vendorDir . '/zendframework/zend-http/src/ClientStatic.php', + 'Zend\\Http\\Client\\Adapter\\AdapterInterface' => $vendorDir . '/zendframework/zend-http/src/Client/Adapter/AdapterInterface.php', + 'Zend\\Http\\Client\\Adapter\\Curl' => $vendorDir . '/zendframework/zend-http/src/Client/Adapter/Curl.php', + 'Zend\\Http\\Client\\Adapter\\Exception\\ExceptionInterface' => $vendorDir . '/zendframework/zend-http/src/Client/Adapter/Exception/ExceptionInterface.php', + 'Zend\\Http\\Client\\Adapter\\Exception\\InitializationException' => $vendorDir . '/zendframework/zend-http/src/Client/Adapter/Exception/InitializationException.php', + 'Zend\\Http\\Client\\Adapter\\Exception\\InvalidArgumentException' => $vendorDir . '/zendframework/zend-http/src/Client/Adapter/Exception/InvalidArgumentException.php', + 'Zend\\Http\\Client\\Adapter\\Exception\\OutOfRangeException' => $vendorDir . '/zendframework/zend-http/src/Client/Adapter/Exception/OutOfRangeException.php', + 'Zend\\Http\\Client\\Adapter\\Exception\\RuntimeException' => $vendorDir . '/zendframework/zend-http/src/Client/Adapter/Exception/RuntimeException.php', + 'Zend\\Http\\Client\\Adapter\\Exception\\TimeoutException' => $vendorDir . '/zendframework/zend-http/src/Client/Adapter/Exception/TimeoutException.php', + 'Zend\\Http\\Client\\Adapter\\Proxy' => $vendorDir . '/zendframework/zend-http/src/Client/Adapter/Proxy.php', + 'Zend\\Http\\Client\\Adapter\\Socket' => $vendorDir . '/zendframework/zend-http/src/Client/Adapter/Socket.php', + 'Zend\\Http\\Client\\Adapter\\StreamInterface' => $vendorDir . '/zendframework/zend-http/src/Client/Adapter/StreamInterface.php', + 'Zend\\Http\\Client\\Adapter\\Test' => $vendorDir . '/zendframework/zend-http/src/Client/Adapter/Test.php', + 'Zend\\Http\\Client\\Exception\\ExceptionInterface' => $vendorDir . '/zendframework/zend-http/src/Client/Exception/ExceptionInterface.php', + 'Zend\\Http\\Client\\Exception\\InvalidArgumentException' => $vendorDir . '/zendframework/zend-http/src/Client/Exception/InvalidArgumentException.php', + 'Zend\\Http\\Client\\Exception\\OutOfRangeException' => $vendorDir . '/zendframework/zend-http/src/Client/Exception/OutOfRangeException.php', + 'Zend\\Http\\Client\\Exception\\RuntimeException' => $vendorDir . '/zendframework/zend-http/src/Client/Exception/RuntimeException.php', + 'Zend\\Http\\Cookies' => $vendorDir . '/zendframework/zend-http/src/Cookies.php', + 'Zend\\Http\\Exception\\ExceptionInterface' => $vendorDir . '/zendframework/zend-http/src/Exception/ExceptionInterface.php', + 'Zend\\Http\\Exception\\InvalidArgumentException' => $vendorDir . '/zendframework/zend-http/src/Exception/InvalidArgumentException.php', + 'Zend\\Http\\Exception\\OutOfRangeException' => $vendorDir . '/zendframework/zend-http/src/Exception/OutOfRangeException.php', + 'Zend\\Http\\Exception\\RuntimeException' => $vendorDir . '/zendframework/zend-http/src/Exception/RuntimeException.php', + 'Zend\\Http\\HeaderLoader' => $vendorDir . '/zendframework/zend-http/src/HeaderLoader.php', + 'Zend\\Http\\Header\\AbstractAccept' => $vendorDir . '/zendframework/zend-http/src/Header/AbstractAccept.php', + 'Zend\\Http\\Header\\AbstractDate' => $vendorDir . '/zendframework/zend-http/src/Header/AbstractDate.php', + 'Zend\\Http\\Header\\AbstractLocation' => $vendorDir . '/zendframework/zend-http/src/Header/AbstractLocation.php', + 'Zend\\Http\\Header\\Accept' => $vendorDir . '/zendframework/zend-http/src/Header/Accept.php', + 'Zend\\Http\\Header\\AcceptCharset' => $vendorDir . '/zendframework/zend-http/src/Header/AcceptCharset.php', + 'Zend\\Http\\Header\\AcceptEncoding' => $vendorDir . '/zendframework/zend-http/src/Header/AcceptEncoding.php', + 'Zend\\Http\\Header\\AcceptLanguage' => $vendorDir . '/zendframework/zend-http/src/Header/AcceptLanguage.php', + 'Zend\\Http\\Header\\AcceptRanges' => $vendorDir . '/zendframework/zend-http/src/Header/AcceptRanges.php', + 'Zend\\Http\\Header\\Accept\\FieldValuePart\\AbstractFieldValuePart' => $vendorDir . '/zendframework/zend-http/src/Header/Accept/FieldValuePart/AbstractFieldValuePart.php', + 'Zend\\Http\\Header\\Accept\\FieldValuePart\\AcceptFieldValuePart' => $vendorDir . '/zendframework/zend-http/src/Header/Accept/FieldValuePart/AcceptFieldValuePart.php', + 'Zend\\Http\\Header\\Accept\\FieldValuePart\\CharsetFieldValuePart' => $vendorDir . '/zendframework/zend-http/src/Header/Accept/FieldValuePart/CharsetFieldValuePart.php', + 'Zend\\Http\\Header\\Accept\\FieldValuePart\\EncodingFieldValuePart' => $vendorDir . '/zendframework/zend-http/src/Header/Accept/FieldValuePart/EncodingFieldValuePart.php', + 'Zend\\Http\\Header\\Accept\\FieldValuePart\\LanguageFieldValuePart' => $vendorDir . '/zendframework/zend-http/src/Header/Accept/FieldValuePart/LanguageFieldValuePart.php', + 'Zend\\Http\\Header\\Age' => $vendorDir . '/zendframework/zend-http/src/Header/Age.php', + 'Zend\\Http\\Header\\Allow' => $vendorDir . '/zendframework/zend-http/src/Header/Allow.php', + 'Zend\\Http\\Header\\AuthenticationInfo' => $vendorDir . '/zendframework/zend-http/src/Header/AuthenticationInfo.php', + 'Zend\\Http\\Header\\Authorization' => $vendorDir . '/zendframework/zend-http/src/Header/Authorization.php', + 'Zend\\Http\\Header\\CacheControl' => $vendorDir . '/zendframework/zend-http/src/Header/CacheControl.php', + 'Zend\\Http\\Header\\Connection' => $vendorDir . '/zendframework/zend-http/src/Header/Connection.php', + 'Zend\\Http\\Header\\ContentDisposition' => $vendorDir . '/zendframework/zend-http/src/Header/ContentDisposition.php', + 'Zend\\Http\\Header\\ContentEncoding' => $vendorDir . '/zendframework/zend-http/src/Header/ContentEncoding.php', + 'Zend\\Http\\Header\\ContentLanguage' => $vendorDir . '/zendframework/zend-http/src/Header/ContentLanguage.php', + 'Zend\\Http\\Header\\ContentLength' => $vendorDir . '/zendframework/zend-http/src/Header/ContentLength.php', + 'Zend\\Http\\Header\\ContentLocation' => $vendorDir . '/zendframework/zend-http/src/Header/ContentLocation.php', + 'Zend\\Http\\Header\\ContentMD5' => $vendorDir . '/zendframework/zend-http/src/Header/ContentMD5.php', + 'Zend\\Http\\Header\\ContentRange' => $vendorDir . '/zendframework/zend-http/src/Header/ContentRange.php', + 'Zend\\Http\\Header\\ContentSecurityPolicy' => $vendorDir . '/zendframework/zend-http/src/Header/ContentSecurityPolicy.php', + 'Zend\\Http\\Header\\ContentTransferEncoding' => $vendorDir . '/zendframework/zend-http/src/Header/ContentTransferEncoding.php', + 'Zend\\Http\\Header\\ContentType' => $vendorDir . '/zendframework/zend-http/src/Header/ContentType.php', + 'Zend\\Http\\Header\\Cookie' => $vendorDir . '/zendframework/zend-http/src/Header/Cookie.php', + 'Zend\\Http\\Header\\Date' => $vendorDir . '/zendframework/zend-http/src/Header/Date.php', + 'Zend\\Http\\Header\\Etag' => $vendorDir . '/zendframework/zend-http/src/Header/Etag.php', + 'Zend\\Http\\Header\\Exception\\DomainException' => $vendorDir . '/zendframework/zend-http/src/Header/Exception/DomainException.php', + 'Zend\\Http\\Header\\Exception\\ExceptionInterface' => $vendorDir . '/zendframework/zend-http/src/Header/Exception/ExceptionInterface.php', + 'Zend\\Http\\Header\\Exception\\InvalidArgumentException' => $vendorDir . '/zendframework/zend-http/src/Header/Exception/InvalidArgumentException.php', + 'Zend\\Http\\Header\\Exception\\RuntimeException' => $vendorDir . '/zendframework/zend-http/src/Header/Exception/RuntimeException.php', + 'Zend\\Http\\Header\\Expect' => $vendorDir . '/zendframework/zend-http/src/Header/Expect.php', + 'Zend\\Http\\Header\\Expires' => $vendorDir . '/zendframework/zend-http/src/Header/Expires.php', + 'Zend\\Http\\Header\\From' => $vendorDir . '/zendframework/zend-http/src/Header/From.php', + 'Zend\\Http\\Header\\GenericHeader' => $vendorDir . '/zendframework/zend-http/src/Header/GenericHeader.php', + 'Zend\\Http\\Header\\GenericMultiHeader' => $vendorDir . '/zendframework/zend-http/src/Header/GenericMultiHeader.php', + 'Zend\\Http\\Header\\HeaderInterface' => $vendorDir . '/zendframework/zend-http/src/Header/HeaderInterface.php', + 'Zend\\Http\\Header\\HeaderValue' => $vendorDir . '/zendframework/zend-http/src/Header/HeaderValue.php', + 'Zend\\Http\\Header\\Host' => $vendorDir . '/zendframework/zend-http/src/Header/Host.php', + 'Zend\\Http\\Header\\IfMatch' => $vendorDir . '/zendframework/zend-http/src/Header/IfMatch.php', + 'Zend\\Http\\Header\\IfModifiedSince' => $vendorDir . '/zendframework/zend-http/src/Header/IfModifiedSince.php', + 'Zend\\Http\\Header\\IfNoneMatch' => $vendorDir . '/zendframework/zend-http/src/Header/IfNoneMatch.php', + 'Zend\\Http\\Header\\IfRange' => $vendorDir . '/zendframework/zend-http/src/Header/IfRange.php', + 'Zend\\Http\\Header\\IfUnmodifiedSince' => $vendorDir . '/zendframework/zend-http/src/Header/IfUnmodifiedSince.php', + 'Zend\\Http\\Header\\KeepAlive' => $vendorDir . '/zendframework/zend-http/src/Header/KeepAlive.php', + 'Zend\\Http\\Header\\LastModified' => $vendorDir . '/zendframework/zend-http/src/Header/LastModified.php', + 'Zend\\Http\\Header\\Location' => $vendorDir . '/zendframework/zend-http/src/Header/Location.php', + 'Zend\\Http\\Header\\MaxForwards' => $vendorDir . '/zendframework/zend-http/src/Header/MaxForwards.php', + 'Zend\\Http\\Header\\MultipleHeaderInterface' => $vendorDir . '/zendframework/zend-http/src/Header/MultipleHeaderInterface.php', + 'Zend\\Http\\Header\\Origin' => $vendorDir . '/zendframework/zend-http/src/Header/Origin.php', + 'Zend\\Http\\Header\\Pragma' => $vendorDir . '/zendframework/zend-http/src/Header/Pragma.php', + 'Zend\\Http\\Header\\ProxyAuthenticate' => $vendorDir . '/zendframework/zend-http/src/Header/ProxyAuthenticate.php', + 'Zend\\Http\\Header\\ProxyAuthorization' => $vendorDir . '/zendframework/zend-http/src/Header/ProxyAuthorization.php', + 'Zend\\Http\\Header\\Range' => $vendorDir . '/zendframework/zend-http/src/Header/Range.php', + 'Zend\\Http\\Header\\Referer' => $vendorDir . '/zendframework/zend-http/src/Header/Referer.php', + 'Zend\\Http\\Header\\Refresh' => $vendorDir . '/zendframework/zend-http/src/Header/Refresh.php', + 'Zend\\Http\\Header\\RetryAfter' => $vendorDir . '/zendframework/zend-http/src/Header/RetryAfter.php', + 'Zend\\Http\\Header\\Server' => $vendorDir . '/zendframework/zend-http/src/Header/Server.php', + 'Zend\\Http\\Header\\SetCookie' => $vendorDir . '/zendframework/zend-http/src/Header/SetCookie.php', + 'Zend\\Http\\Header\\TE' => $vendorDir . '/zendframework/zend-http/src/Header/TE.php', + 'Zend\\Http\\Header\\Trailer' => $vendorDir . '/zendframework/zend-http/src/Header/Trailer.php', + 'Zend\\Http\\Header\\TransferEncoding' => $vendorDir . '/zendframework/zend-http/src/Header/TransferEncoding.php', + 'Zend\\Http\\Header\\Upgrade' => $vendorDir . '/zendframework/zend-http/src/Header/Upgrade.php', + 'Zend\\Http\\Header\\UserAgent' => $vendorDir . '/zendframework/zend-http/src/Header/UserAgent.php', + 'Zend\\Http\\Header\\Vary' => $vendorDir . '/zendframework/zend-http/src/Header/Vary.php', + 'Zend\\Http\\Header\\Via' => $vendorDir . '/zendframework/zend-http/src/Header/Via.php', + 'Zend\\Http\\Header\\WWWAuthenticate' => $vendorDir . '/zendframework/zend-http/src/Header/WWWAuthenticate.php', + 'Zend\\Http\\Header\\Warning' => $vendorDir . '/zendframework/zend-http/src/Header/Warning.php', + 'Zend\\Http\\Headers' => $vendorDir . '/zendframework/zend-http/src/Headers.php', + 'Zend\\Http\\PhpEnvironment\\RemoteAddress' => $vendorDir . '/zendframework/zend-http/src/PhpEnvironment/RemoteAddress.php', + 'Zend\\Http\\PhpEnvironment\\Request' => $vendorDir . '/zendframework/zend-http/src/PhpEnvironment/Request.php', + 'Zend\\Http\\PhpEnvironment\\Response' => $vendorDir . '/zendframework/zend-http/src/PhpEnvironment/Response.php', + 'Zend\\Http\\Request' => $vendorDir . '/zendframework/zend-http/src/Request.php', + 'Zend\\Http\\Response' => $vendorDir . '/zendframework/zend-http/src/Response.php', + 'Zend\\Http\\Response\\Stream' => $vendorDir . '/zendframework/zend-http/src/Response/Stream.php', + 'Zend\\Json\\Decoder' => $vendorDir . '/zendframework/zend-json/src/Decoder.php', + 'Zend\\Json\\Encoder' => $vendorDir . '/zendframework/zend-json/src/Encoder.php', + 'Zend\\Json\\Exception\\BadMethodCallException' => $vendorDir . '/zendframework/zend-json/src/Exception/BadMethodCallException.php', + 'Zend\\Json\\Exception\\ExceptionInterface' => $vendorDir . '/zendframework/zend-json/src/Exception/ExceptionInterface.php', + 'Zend\\Json\\Exception\\InvalidArgumentException' => $vendorDir . '/zendframework/zend-json/src/Exception/InvalidArgumentException.php', + 'Zend\\Json\\Exception\\RecursionException' => $vendorDir . '/zendframework/zend-json/src/Exception/RecursionException.php', + 'Zend\\Json\\Exception\\RuntimeException' => $vendorDir . '/zendframework/zend-json/src/Exception/RuntimeException.php', + 'Zend\\Json\\Expr' => $vendorDir . '/zendframework/zend-json/src/Expr.php', + 'Zend\\Json\\Json' => $vendorDir . '/zendframework/zend-json/src/Json.php', + 'Zend\\Json\\Server\\Cache' => $vendorDir . '/zendframework/zend-json/src/Server/Cache.php', + 'Zend\\Json\\Server\\Client' => $vendorDir . '/zendframework/zend-json/src/Server/Client.php', + 'Zend\\Json\\Server\\Error' => $vendorDir . '/zendframework/zend-json/src/Server/Error.php', + 'Zend\\Json\\Server\\Exception\\ErrorException' => $vendorDir . '/zendframework/zend-json/src/Server/Exception/ErrorException.php', + 'Zend\\Json\\Server\\Exception\\ExceptionInterface' => $vendorDir . '/zendframework/zend-json/src/Server/Exception/ExceptionInterface.php', + 'Zend\\Json\\Server\\Exception\\HttpException' => $vendorDir . '/zendframework/zend-json/src/Server/Exception/HttpException.php', + 'Zend\\Json\\Server\\Exception\\InvalidArgumentException' => $vendorDir . '/zendframework/zend-json/src/Server/Exception/InvalidArgumentException.php', + 'Zend\\Json\\Server\\Exception\\RuntimeException' => $vendorDir . '/zendframework/zend-json/src/Server/Exception/RuntimeException.php', + 'Zend\\Json\\Server\\Request' => $vendorDir . '/zendframework/zend-json/src/Server/Request.php', + 'Zend\\Json\\Server\\Request\\Http' => $vendorDir . '/zendframework/zend-json/src/Server/Request/Http.php', + 'Zend\\Json\\Server\\Response' => $vendorDir . '/zendframework/zend-json/src/Server/Response.php', + 'Zend\\Json\\Server\\Response\\Http' => $vendorDir . '/zendframework/zend-json/src/Server/Response/Http.php', + 'Zend\\Json\\Server\\Server' => $vendorDir . '/zendframework/zend-json/src/Server/Server.php', + 'Zend\\Json\\Server\\Smd' => $vendorDir . '/zendframework/zend-json/src/Server/Smd.php', + 'Zend\\Json\\Server\\Smd\\Service' => $vendorDir . '/zendframework/zend-json/src/Server/Smd/Service.php', + 'Zend\\Loader\\AutoloaderFactory' => $vendorDir . '/zendframework/zend-loader/src/AutoloaderFactory.php', + 'Zend\\Loader\\ClassMapAutoloader' => $vendorDir . '/zendframework/zend-loader/src/ClassMapAutoloader.php', + 'Zend\\Loader\\Exception\\BadMethodCallException' => $vendorDir . '/zendframework/zend-loader/src/Exception/BadMethodCallException.php', + 'Zend\\Loader\\Exception\\DomainException' => $vendorDir . '/zendframework/zend-loader/src/Exception/DomainException.php', + 'Zend\\Loader\\Exception\\ExceptionInterface' => $vendorDir . '/zendframework/zend-loader/src/Exception/ExceptionInterface.php', + 'Zend\\Loader\\Exception\\InvalidArgumentException' => $vendorDir . '/zendframework/zend-loader/src/Exception/InvalidArgumentException.php', + 'Zend\\Loader\\Exception\\InvalidPathException' => $vendorDir . '/zendframework/zend-loader/src/Exception/InvalidPathException.php', + 'Zend\\Loader\\Exception\\MissingResourceNamespaceException' => $vendorDir . '/zendframework/zend-loader/src/Exception/MissingResourceNamespaceException.php', + 'Zend\\Loader\\Exception\\PluginLoaderException' => $vendorDir . '/zendframework/zend-loader/src/Exception/PluginLoaderException.php', + 'Zend\\Loader\\Exception\\RuntimeException' => $vendorDir . '/zendframework/zend-loader/src/Exception/RuntimeException.php', + 'Zend\\Loader\\Exception\\SecurityException' => $vendorDir . '/zendframework/zend-loader/src/Exception/SecurityException.php', + 'Zend\\Loader\\ModuleAutoloader' => $vendorDir . '/zendframework/zend-loader/src/ModuleAutoloader.php', + 'Zend\\Loader\\PluginClassLoader' => $vendorDir . '/zendframework/zend-loader/src/PluginClassLoader.php', + 'Zend\\Loader\\PluginClassLocator' => $vendorDir . '/zendframework/zend-loader/src/PluginClassLocator.php', + 'Zend\\Loader\\ShortNameLocator' => $vendorDir . '/zendframework/zend-loader/src/ShortNameLocator.php', + 'Zend\\Loader\\SplAutoloader' => $vendorDir . '/zendframework/zend-loader/src/SplAutoloader.php', + 'Zend\\Loader\\StandardAutoloader' => $vendorDir . '/zendframework/zend-loader/src/StandardAutoloader.php', + 'Zend\\Stdlib\\AbstractOptions' => $vendorDir . '/zendframework/zend-stdlib/src/AbstractOptions.php', + 'Zend\\Stdlib\\ArrayObject' => $vendorDir . '/zendframework/zend-stdlib/src/ArrayObject.php', + 'Zend\\Stdlib\\ArraySerializableInterface' => $vendorDir . '/zendframework/zend-stdlib/src/ArraySerializableInterface.php', + 'Zend\\Stdlib\\ArrayStack' => $vendorDir . '/zendframework/zend-stdlib/src/ArrayStack.php', + 'Zend\\Stdlib\\ArrayUtils' => $vendorDir . '/zendframework/zend-stdlib/src/ArrayUtils.php', + 'Zend\\Stdlib\\ArrayUtils\\MergeRemoveKey' => $vendorDir . '/zendframework/zend-stdlib/src/ArrayUtils/MergeRemoveKey.php', + 'Zend\\Stdlib\\ArrayUtils\\MergeReplaceKey' => $vendorDir . '/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKey.php', + 'Zend\\Stdlib\\ArrayUtils\\MergeReplaceKeyInterface' => $vendorDir . '/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKeyInterface.php', + 'Zend\\Stdlib\\ConsoleHelper' => $vendorDir . '/zendframework/zend-stdlib/src/ConsoleHelper.php', + 'Zend\\Stdlib\\DispatchableInterface' => $vendorDir . '/zendframework/zend-stdlib/src/DispatchableInterface.php', + 'Zend\\Stdlib\\ErrorHandler' => $vendorDir . '/zendframework/zend-stdlib/src/ErrorHandler.php', + 'Zend\\Stdlib\\Exception\\BadMethodCallException' => $vendorDir . '/zendframework/zend-stdlib/src/Exception/BadMethodCallException.php', + 'Zend\\Stdlib\\Exception\\DomainException' => $vendorDir . '/zendframework/zend-stdlib/src/Exception/DomainException.php', + 'Zend\\Stdlib\\Exception\\ExceptionInterface' => $vendorDir . '/zendframework/zend-stdlib/src/Exception/ExceptionInterface.php', + 'Zend\\Stdlib\\Exception\\ExtensionNotLoadedException' => $vendorDir . '/zendframework/zend-stdlib/src/Exception/ExtensionNotLoadedException.php', + 'Zend\\Stdlib\\Exception\\InvalidArgumentException' => $vendorDir . '/zendframework/zend-stdlib/src/Exception/InvalidArgumentException.php', + 'Zend\\Stdlib\\Exception\\LogicException' => $vendorDir . '/zendframework/zend-stdlib/src/Exception/LogicException.php', + 'Zend\\Stdlib\\Exception\\RuntimeException' => $vendorDir . '/zendframework/zend-stdlib/src/Exception/RuntimeException.php', + 'Zend\\Stdlib\\FastPriorityQueue' => $vendorDir . '/zendframework/zend-stdlib/src/FastPriorityQueue.php', + 'Zend\\Stdlib\\Glob' => $vendorDir . '/zendframework/zend-stdlib/src/Glob.php', + 'Zend\\Stdlib\\Guard\\AllGuardsTrait' => $vendorDir . '/zendframework/zend-stdlib/src/Guard/AllGuardsTrait.php', + 'Zend\\Stdlib\\Guard\\ArrayOrTraversableGuardTrait' => $vendorDir . '/zendframework/zend-stdlib/src/Guard/ArrayOrTraversableGuardTrait.php', + 'Zend\\Stdlib\\Guard\\EmptyGuardTrait' => $vendorDir . '/zendframework/zend-stdlib/src/Guard/EmptyGuardTrait.php', + 'Zend\\Stdlib\\Guard\\NullGuardTrait' => $vendorDir . '/zendframework/zend-stdlib/src/Guard/NullGuardTrait.php', + 'Zend\\Stdlib\\InitializableInterface' => $vendorDir . '/zendframework/zend-stdlib/src/InitializableInterface.php', + 'Zend\\Stdlib\\JsonSerializable' => $vendorDir . '/zendframework/zend-stdlib/src/JsonSerializable.php', + 'Zend\\Stdlib\\Message' => $vendorDir . '/zendframework/zend-stdlib/src/Message.php', + 'Zend\\Stdlib\\MessageInterface' => $vendorDir . '/zendframework/zend-stdlib/src/MessageInterface.php', + 'Zend\\Stdlib\\ParameterObjectInterface' => $vendorDir . '/zendframework/zend-stdlib/src/ParameterObjectInterface.php', + 'Zend\\Stdlib\\Parameters' => $vendorDir . '/zendframework/zend-stdlib/src/Parameters.php', + 'Zend\\Stdlib\\ParametersInterface' => $vendorDir . '/zendframework/zend-stdlib/src/ParametersInterface.php', + 'Zend\\Stdlib\\PriorityList' => $vendorDir . '/zendframework/zend-stdlib/src/PriorityList.php', + 'Zend\\Stdlib\\PriorityQueue' => $vendorDir . '/zendframework/zend-stdlib/src/PriorityQueue.php', + 'Zend\\Stdlib\\Request' => $vendorDir . '/zendframework/zend-stdlib/src/Request.php', + 'Zend\\Stdlib\\RequestInterface' => $vendorDir . '/zendframework/zend-stdlib/src/RequestInterface.php', + 'Zend\\Stdlib\\Response' => $vendorDir . '/zendframework/zend-stdlib/src/Response.php', + 'Zend\\Stdlib\\ResponseInterface' => $vendorDir . '/zendframework/zend-stdlib/src/ResponseInterface.php', + 'Zend\\Stdlib\\SplPriorityQueue' => $vendorDir . '/zendframework/zend-stdlib/src/SplPriorityQueue.php', + 'Zend\\Stdlib\\SplQueue' => $vendorDir . '/zendframework/zend-stdlib/src/SplQueue.php', + 'Zend\\Stdlib\\SplStack' => $vendorDir . '/zendframework/zend-stdlib/src/SplStack.php', + 'Zend\\Stdlib\\StringUtils' => $vendorDir . '/zendframework/zend-stdlib/src/StringUtils.php', + 'Zend\\Stdlib\\StringWrapper\\AbstractStringWrapper' => $vendorDir . '/zendframework/zend-stdlib/src/StringWrapper/AbstractStringWrapper.php', + 'Zend\\Stdlib\\StringWrapper\\Iconv' => $vendorDir . '/zendframework/zend-stdlib/src/StringWrapper/Iconv.php', + 'Zend\\Stdlib\\StringWrapper\\Intl' => $vendorDir . '/zendframework/zend-stdlib/src/StringWrapper/Intl.php', + 'Zend\\Stdlib\\StringWrapper\\MbString' => $vendorDir . '/zendframework/zend-stdlib/src/StringWrapper/MbString.php', + 'Zend\\Stdlib\\StringWrapper\\Native' => $vendorDir . '/zendframework/zend-stdlib/src/StringWrapper/Native.php', + 'Zend\\Stdlib\\StringWrapper\\StringWrapperInterface' => $vendorDir . '/zendframework/zend-stdlib/src/StringWrapper/StringWrapperInterface.php', + 'Zend\\Uri\\Exception\\ExceptionInterface' => $vendorDir . '/zendframework/zend-uri/src/Exception/ExceptionInterface.php', + 'Zend\\Uri\\Exception\\InvalidArgumentException' => $vendorDir . '/zendframework/zend-uri/src/Exception/InvalidArgumentException.php', + 'Zend\\Uri\\Exception\\InvalidUriException' => $vendorDir . '/zendframework/zend-uri/src/Exception/InvalidUriException.php', + 'Zend\\Uri\\Exception\\InvalidUriPartException' => $vendorDir . '/zendframework/zend-uri/src/Exception/InvalidUriPartException.php', + 'Zend\\Uri\\File' => $vendorDir . '/zendframework/zend-uri/src/File.php', + 'Zend\\Uri\\Http' => $vendorDir . '/zendframework/zend-uri/src/Http.php', + 'Zend\\Uri\\Mailto' => $vendorDir . '/zendframework/zend-uri/src/Mailto.php', + 'Zend\\Uri\\Uri' => $vendorDir . '/zendframework/zend-uri/src/Uri.php', + 'Zend\\Uri\\UriFactory' => $vendorDir . '/zendframework/zend-uri/src/UriFactory.php', + 'Zend\\Uri\\UriInterface' => $vendorDir . '/zendframework/zend-uri/src/UriInterface.php', + 'Zend\\Validator\\AbstractValidator' => $vendorDir . '/zendframework/zend-validator/src/AbstractValidator.php', + 'Zend\\Validator\\Barcode' => $vendorDir . '/zendframework/zend-validator/src/Barcode.php', + 'Zend\\Validator\\Barcode\\AbstractAdapter' => $vendorDir . '/zendframework/zend-validator/src/Barcode/AbstractAdapter.php', + 'Zend\\Validator\\Barcode\\AdapterInterface' => $vendorDir . '/zendframework/zend-validator/src/Barcode/AdapterInterface.php', + 'Zend\\Validator\\Barcode\\Codabar' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Codabar.php', + 'Zend\\Validator\\Barcode\\Code128' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Code128.php', + 'Zend\\Validator\\Barcode\\Code25' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Code25.php', + 'Zend\\Validator\\Barcode\\Code25interleaved' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Code25interleaved.php', + 'Zend\\Validator\\Barcode\\Code39' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Code39.php', + 'Zend\\Validator\\Barcode\\Code39ext' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Code39ext.php', + 'Zend\\Validator\\Barcode\\Code93' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Code93.php', + 'Zend\\Validator\\Barcode\\Code93ext' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Code93ext.php', + 'Zend\\Validator\\Barcode\\Ean12' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Ean12.php', + 'Zend\\Validator\\Barcode\\Ean13' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Ean13.php', + 'Zend\\Validator\\Barcode\\Ean14' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Ean14.php', + 'Zend\\Validator\\Barcode\\Ean18' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Ean18.php', + 'Zend\\Validator\\Barcode\\Ean2' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Ean2.php', + 'Zend\\Validator\\Barcode\\Ean5' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Ean5.php', + 'Zend\\Validator\\Barcode\\Ean8' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Ean8.php', + 'Zend\\Validator\\Barcode\\Gtin12' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Gtin12.php', + 'Zend\\Validator\\Barcode\\Gtin13' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Gtin13.php', + 'Zend\\Validator\\Barcode\\Gtin14' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Gtin14.php', + 'Zend\\Validator\\Barcode\\Identcode' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Identcode.php', + 'Zend\\Validator\\Barcode\\Intelligentmail' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Intelligentmail.php', + 'Zend\\Validator\\Barcode\\Issn' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Issn.php', + 'Zend\\Validator\\Barcode\\Itf14' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Itf14.php', + 'Zend\\Validator\\Barcode\\Leitcode' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Leitcode.php', + 'Zend\\Validator\\Barcode\\Planet' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Planet.php', + 'Zend\\Validator\\Barcode\\Postnet' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Postnet.php', + 'Zend\\Validator\\Barcode\\Royalmail' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Royalmail.php', + 'Zend\\Validator\\Barcode\\Sscc' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Sscc.php', + 'Zend\\Validator\\Barcode\\Upca' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Upca.php', + 'Zend\\Validator\\Barcode\\Upce' => $vendorDir . '/zendframework/zend-validator/src/Barcode/Upce.php', + 'Zend\\Validator\\Between' => $vendorDir . '/zendframework/zend-validator/src/Between.php', + 'Zend\\Validator\\Bitwise' => $vendorDir . '/zendframework/zend-validator/src/Bitwise.php', + 'Zend\\Validator\\Callback' => $vendorDir . '/zendframework/zend-validator/src/Callback.php', + 'Zend\\Validator\\ConfigProvider' => $vendorDir . '/zendframework/zend-validator/src/ConfigProvider.php', + 'Zend\\Validator\\CreditCard' => $vendorDir . '/zendframework/zend-validator/src/CreditCard.php', + 'Zend\\Validator\\Csrf' => $vendorDir . '/zendframework/zend-validator/src/Csrf.php', + 'Zend\\Validator\\Date' => $vendorDir . '/zendframework/zend-validator/src/Date.php', + 'Zend\\Validator\\DateStep' => $vendorDir . '/zendframework/zend-validator/src/DateStep.php', + 'Zend\\Validator\\Db\\AbstractDb' => $vendorDir . '/zendframework/zend-validator/src/Db/AbstractDb.php', + 'Zend\\Validator\\Db\\NoRecordExists' => $vendorDir . '/zendframework/zend-validator/src/Db/NoRecordExists.php', + 'Zend\\Validator\\Db\\RecordExists' => $vendorDir . '/zendframework/zend-validator/src/Db/RecordExists.php', + 'Zend\\Validator\\Digits' => $vendorDir . '/zendframework/zend-validator/src/Digits.php', + 'Zend\\Validator\\EmailAddress' => $vendorDir . '/zendframework/zend-validator/src/EmailAddress.php', + 'Zend\\Validator\\Exception\\BadMethodCallException' => $vendorDir . '/zendframework/zend-validator/src/Exception/BadMethodCallException.php', + 'Zend\\Validator\\Exception\\ExceptionInterface' => $vendorDir . '/zendframework/zend-validator/src/Exception/ExceptionInterface.php', + 'Zend\\Validator\\Exception\\ExtensionNotLoadedException' => $vendorDir . '/zendframework/zend-validator/src/Exception/ExtensionNotLoadedException.php', + 'Zend\\Validator\\Exception\\InvalidArgumentException' => $vendorDir . '/zendframework/zend-validator/src/Exception/InvalidArgumentException.php', + 'Zend\\Validator\\Exception\\InvalidMagicMimeFileException' => $vendorDir . '/zendframework/zend-validator/src/Exception/InvalidMagicMimeFileException.php', + 'Zend\\Validator\\Exception\\RuntimeException' => $vendorDir . '/zendframework/zend-validator/src/Exception/RuntimeException.php', + 'Zend\\Validator\\Explode' => $vendorDir . '/zendframework/zend-validator/src/Explode.php', + 'Zend\\Validator\\File\\Count' => $vendorDir . '/zendframework/zend-validator/src/File/Count.php', + 'Zend\\Validator\\File\\Crc32' => $vendorDir . '/zendframework/zend-validator/src/File/Crc32.php', + 'Zend\\Validator\\File\\ExcludeExtension' => $vendorDir . '/zendframework/zend-validator/src/File/ExcludeExtension.php', + 'Zend\\Validator\\File\\ExcludeMimeType' => $vendorDir . '/zendframework/zend-validator/src/File/ExcludeMimeType.php', + 'Zend\\Validator\\File\\Exists' => $vendorDir . '/zendframework/zend-validator/src/File/Exists.php', + 'Zend\\Validator\\File\\Extension' => $vendorDir . '/zendframework/zend-validator/src/File/Extension.php', + 'Zend\\Validator\\File\\FilesSize' => $vendorDir . '/zendframework/zend-validator/src/File/FilesSize.php', + 'Zend\\Validator\\File\\Hash' => $vendorDir . '/zendframework/zend-validator/src/File/Hash.php', + 'Zend\\Validator\\File\\ImageSize' => $vendorDir . '/zendframework/zend-validator/src/File/ImageSize.php', + 'Zend\\Validator\\File\\IsCompressed' => $vendorDir . '/zendframework/zend-validator/src/File/IsCompressed.php', + 'Zend\\Validator\\File\\IsImage' => $vendorDir . '/zendframework/zend-validator/src/File/IsImage.php', + 'Zend\\Validator\\File\\Md5' => $vendorDir . '/zendframework/zend-validator/src/File/Md5.php', + 'Zend\\Validator\\File\\MimeType' => $vendorDir . '/zendframework/zend-validator/src/File/MimeType.php', + 'Zend\\Validator\\File\\NotExists' => $vendorDir . '/zendframework/zend-validator/src/File/NotExists.php', + 'Zend\\Validator\\File\\Sha1' => $vendorDir . '/zendframework/zend-validator/src/File/Sha1.php', + 'Zend\\Validator\\File\\Size' => $vendorDir . '/zendframework/zend-validator/src/File/Size.php', + 'Zend\\Validator\\File\\Upload' => $vendorDir . '/zendframework/zend-validator/src/File/Upload.php', + 'Zend\\Validator\\File\\UploadFile' => $vendorDir . '/zendframework/zend-validator/src/File/UploadFile.php', + 'Zend\\Validator\\File\\WordCount' => $vendorDir . '/zendframework/zend-validator/src/File/WordCount.php', + 'Zend\\Validator\\GpsPoint' => $vendorDir . '/zendframework/zend-validator/src/GpsPoint.php', + 'Zend\\Validator\\GreaterThan' => $vendorDir . '/zendframework/zend-validator/src/GreaterThan.php', + 'Zend\\Validator\\Hex' => $vendorDir . '/zendframework/zend-validator/src/Hex.php', + 'Zend\\Validator\\Hostname' => $vendorDir . '/zendframework/zend-validator/src/Hostname.php', + 'Zend\\Validator\\Iban' => $vendorDir . '/zendframework/zend-validator/src/Iban.php', + 'Zend\\Validator\\Identical' => $vendorDir . '/zendframework/zend-validator/src/Identical.php', + 'Zend\\Validator\\InArray' => $vendorDir . '/zendframework/zend-validator/src/InArray.php', + 'Zend\\Validator\\Ip' => $vendorDir . '/zendframework/zend-validator/src/Ip.php', + 'Zend\\Validator\\IsInstanceOf' => $vendorDir . '/zendframework/zend-validator/src/IsInstanceOf.php', + 'Zend\\Validator\\Isbn' => $vendorDir . '/zendframework/zend-validator/src/Isbn.php', + 'Zend\\Validator\\Isbn\\Isbn10' => $vendorDir . '/zendframework/zend-validator/src/Isbn/Isbn10.php', + 'Zend\\Validator\\Isbn\\Isbn13' => $vendorDir . '/zendframework/zend-validator/src/Isbn/Isbn13.php', + 'Zend\\Validator\\LessThan' => $vendorDir . '/zendframework/zend-validator/src/LessThan.php', + 'Zend\\Validator\\Module' => $vendorDir . '/zendframework/zend-validator/src/Module.php', + 'Zend\\Validator\\NotEmpty' => $vendorDir . '/zendframework/zend-validator/src/NotEmpty.php', + 'Zend\\Validator\\Regex' => $vendorDir . '/zendframework/zend-validator/src/Regex.php', + 'Zend\\Validator\\Sitemap\\Changefreq' => $vendorDir . '/zendframework/zend-validator/src/Sitemap/Changefreq.php', + 'Zend\\Validator\\Sitemap\\Lastmod' => $vendorDir . '/zendframework/zend-validator/src/Sitemap/Lastmod.php', + 'Zend\\Validator\\Sitemap\\Loc' => $vendorDir . '/zendframework/zend-validator/src/Sitemap/Loc.php', + 'Zend\\Validator\\Sitemap\\Priority' => $vendorDir . '/zendframework/zend-validator/src/Sitemap/Priority.php', + 'Zend\\Validator\\StaticValidator' => $vendorDir . '/zendframework/zend-validator/src/StaticValidator.php', + 'Zend\\Validator\\Step' => $vendorDir . '/zendframework/zend-validator/src/Step.php', + 'Zend\\Validator\\StringLength' => $vendorDir . '/zendframework/zend-validator/src/StringLength.php', + 'Zend\\Validator\\Timezone' => $vendorDir . '/zendframework/zend-validator/src/Timezone.php', + 'Zend\\Validator\\Translator\\TranslatorAwareInterface' => $vendorDir . '/zendframework/zend-validator/src/Translator/TranslatorAwareInterface.php', + 'Zend\\Validator\\Translator\\TranslatorInterface' => $vendorDir . '/zendframework/zend-validator/src/Translator/TranslatorInterface.php', + 'Zend\\Validator\\Uri' => $vendorDir . '/zendframework/zend-validator/src/Uri.php', + 'Zend\\Validator\\Uuid' => $vendorDir . '/zendframework/zend-validator/src/Uuid.php', + 'Zend\\Validator\\ValidatorChain' => $vendorDir . '/zendframework/zend-validator/src/ValidatorChain.php', + 'Zend\\Validator\\ValidatorInterface' => $vendorDir . '/zendframework/zend-validator/src/ValidatorInterface.php', + 'Zend\\Validator\\ValidatorPluginManager' => $vendorDir . '/zendframework/zend-validator/src/ValidatorPluginManager.php', + 'Zend\\Validator\\ValidatorPluginManagerAwareInterface' => $vendorDir . '/zendframework/zend-validator/src/ValidatorPluginManagerAwareInterface.php', + 'Zend\\Validator\\ValidatorPluginManagerFactory' => $vendorDir . '/zendframework/zend-validator/src/ValidatorPluginManagerFactory.php', + 'Zend\\Validator\\ValidatorProviderInterface' => $vendorDir . '/zendframework/zend-validator/src/ValidatorProviderInterface.php', + 'libphonenumber\\AlternateFormatsCountryCodeSet' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/AlternateFormatsCountryCodeSet.php', + 'libphonenumber\\CountryCodeSource' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/CountryCodeSource.php', + 'libphonenumber\\CountryCodeToRegionCodeMap' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/CountryCodeToRegionCodeMap.php', + 'libphonenumber\\CountryCodeToRegionCodeMapForTesting' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/CountryCodeToRegionCodeMapForTesting.php', + 'libphonenumber\\DefaultMetadataLoader' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/DefaultMetadataLoader.php', + 'libphonenumber\\MatchType' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/MatchType.php', + 'libphonenumber\\Matcher' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/Matcher.php', + 'libphonenumber\\MatcherAPIInterface' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/MatcherAPIInterface.php', + 'libphonenumber\\MetadataLoaderInterface' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/MetadataLoaderInterface.php', + 'libphonenumber\\MetadataSourceInterface' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/MetadataSourceInterface.php', + 'libphonenumber\\MultiFileMetadataSourceImpl' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/MultiFileMetadataSourceImpl.php', + 'libphonenumber\\NumberFormat' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/NumberFormat.php', + 'libphonenumber\\NumberParseException' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/NumberParseException.php', + 'libphonenumber\\PhoneMetadata' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneMetadata.php', + 'libphonenumber\\PhoneNumber' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumber.php', + 'libphonenumber\\PhoneNumberDesc' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberDesc.php', + 'libphonenumber\\PhoneNumberFormat' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberFormat.php', + 'libphonenumber\\PhoneNumberToCarrierMapper' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberToCarrierMapper.php', + 'libphonenumber\\PhoneNumberToTimeZonesMapper' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberToTimeZonesMapper.php', + 'libphonenumber\\PhoneNumberType' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberType.php', + 'libphonenumber\\PhoneNumberUtil' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberUtil.php', + 'libphonenumber\\RegexBasedMatcher' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/RegexBasedMatcher.php', + 'libphonenumber\\RegionCode' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/RegionCode.php', + 'libphonenumber\\ShortNumberCost' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumberCost.php', + 'libphonenumber\\ShortNumberInfo' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumberInfo.php', + 'libphonenumber\\ShortNumberUtil' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumberUtil.php', + 'libphonenumber\\ShortNumbersRegionCodeSet' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumbersRegionCodeSet.php', + 'libphonenumber\\ValidationResult' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/ValidationResult.php', + 'libphonenumber\\geocoding\\PhoneNumberOfflineGeocoder' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/PhoneNumberOfflineGeocoder.php', + 'libphonenumber\\prefixmapper\\MappingFileProvider' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/MappingFileProvider.php', + 'libphonenumber\\prefixmapper\\PhonePrefixMap' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/PhonePrefixMap.php', + 'libphonenumber\\prefixmapper\\PrefixFileReader' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/PrefixFileReader.php', + 'libphonenumber\\prefixmapper\\PrefixTimeZonesMap' => $vendorDir . '/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/PrefixTimeZonesMap.php', + 'ntlm_sasl_client_class' => $vendorDir . '/phpmailer/phpmailer/extras/ntlm_sasl_client.php', + 'phpDocumentor\\Reflection\\DocBlock' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock.php', + 'phpDocumentor\\Reflection\\DocBlockFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlockFactory.php', + 'phpDocumentor\\Reflection\\DocBlockFactoryInterface' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php', + 'phpDocumentor\\Reflection\\DocBlock\\Description' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Description.php', + 'phpDocumentor\\Reflection\\DocBlock\\DescriptionFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/DescriptionFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\Serializer' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Serializer.php', + 'phpDocumentor\\Reflection\\DocBlock\\StandardTagFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/StandardTagFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tag' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tag.php', + 'phpDocumentor\\Reflection\\DocBlock\\TagFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/TagFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Author' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\BaseTag' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/BaseTag.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Covers' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Deprecated' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Example' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\StaticMethod' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\Strategy' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Strategy.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\PassthroughFormatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/PassthroughFormatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Generic' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Generic.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Link' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Link.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Method' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Param' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Property' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyWrite.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Return_.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\See' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/See.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Since' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Source' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Version' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php', + 'phpDocumentor\\Reflection\\Element' => $vendorDir . '/phpdocumentor/reflection-common/src/Element.php', + 'phpDocumentor\\Reflection\\ExampleFinder' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/ExampleFinder.php', + 'phpDocumentor\\Reflection\\File' => $vendorDir . '/phpdocumentor/reflection-common/src/File.php', + 'phpDocumentor\\Reflection\\Fqsen' => $vendorDir . '/phpdocumentor/reflection-common/src/Fqsen.php', + 'phpDocumentor\\Reflection\\FqsenResolver' => $vendorDir . '/phpdocumentor/type-resolver/src/FqsenResolver.php', + 'phpDocumentor\\Reflection\\Location' => $vendorDir . '/phpdocumentor/reflection-common/src/Location.php', + 'phpDocumentor\\Reflection\\Project' => $vendorDir . '/phpdocumentor/reflection-common/src/Project.php', + 'phpDocumentor\\Reflection\\ProjectFactory' => $vendorDir . '/phpdocumentor/reflection-common/src/ProjectFactory.php', + 'phpDocumentor\\Reflection\\Type' => $vendorDir . '/phpdocumentor/type-resolver/src/Type.php', + 'phpDocumentor\\Reflection\\TypeResolver' => $vendorDir . '/phpdocumentor/type-resolver/src/TypeResolver.php', + 'phpDocumentor\\Reflection\\Types\\Array_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Array_.php', + 'phpDocumentor\\Reflection\\Types\\Boolean' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Boolean.php', + 'phpDocumentor\\Reflection\\Types\\Callable_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Callable_.php', + 'phpDocumentor\\Reflection\\Types\\Compound' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Compound.php', + 'phpDocumentor\\Reflection\\Types\\Context' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Context.php', + 'phpDocumentor\\Reflection\\Types\\ContextFactory' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/ContextFactory.php', + 'phpDocumentor\\Reflection\\Types\\Float_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Float_.php', + 'phpDocumentor\\Reflection\\Types\\Integer' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Integer.php', + 'phpDocumentor\\Reflection\\Types\\Mixed' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Mixed.php', + 'phpDocumentor\\Reflection\\Types\\Null_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Null_.php', + 'phpDocumentor\\Reflection\\Types\\Object_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Object_.php', + 'phpDocumentor\\Reflection\\Types\\Resource' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Resource.php', + 'phpDocumentor\\Reflection\\Types\\Scalar' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Scalar.php', + 'phpDocumentor\\Reflection\\Types\\Self_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Self_.php', + 'phpDocumentor\\Reflection\\Types\\Static_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Static_.php', + 'phpDocumentor\\Reflection\\Types\\String_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/String_.php', + 'phpDocumentor\\Reflection\\Types\\This' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/This.php', + 'phpDocumentor\\Reflection\\Types\\Void_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Void_.php', + 'phpmailerException' => $vendorDir . '/phpmailer/phpmailer/class.phpmailer.php', + 'thomaswelton\\GravatarLib\\Gravatar' => $vendorDir . '/thomaswelton/gravatarlib/thomaswelton/GravatarLib/Gravatar.php', ); diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php index 2a18e7b00..203cfdd38 100644 --- a/vendor/composer/autoload_files.php +++ b/vendor/composer/autoload_files.php @@ -6,21 +6,22 @@ $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( - $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', - $vendorDir . '/guzzlehttp/psr7/src/functions_include.php', - $vendorDir . '/guzzlehttp/promises/src/functions_include.php', - $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', - $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php', - $vendorDir . '/mtdowling/jmespath.php/src/JmesPath.php', - $vendorDir . '/swiftmailer/swiftmailer/lib/swift_required.php', - $vendorDir . '/aws/aws-sdk-php/src/functions.php', - $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Random.php', - $vendorDir . '/symfony/polyfill-php56/bootstrap.php', - $vendorDir . '/paragonie/random_compat/lib/random.php', - $vendorDir . '/psy/psysh/src/Psy/functions.php', - $vendorDir . '/illuminate/html/helpers.php', - $vendorDir . '/propaganistas/laravel-phone/src/helpers.php', - $vendorDir . '/laravel/framework/src/Illuminate/Foundation/helpers.php', - $vendorDir . '/laravel/framework/src/Illuminate/Support/helpers.php', - $vendorDir . '/barryvdh/laravel-debugbar/src/helpers.php', + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', + 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php', + 'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php', + '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', + '667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php', + 'b067bc7112e384b61c701452d53a14a8' => $vendorDir . '/mtdowling/jmespath.php/src/JmesPath.php', + '2c102faa651ef8ea5874edb585946bce' => $vendorDir . '/swiftmailer/swiftmailer/lib/swift_required.php', + '8a9dc1de0ca7e01f3e08231539562f61' => $vendorDir . '/aws/aws-sdk-php/src/functions.php', + '3919eeb97e98d4648304477f8ef734ba' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Random.php', + 'bd9634f2d41831496de0d3dfe4c94881' => $vendorDir . '/symfony/polyfill-php56/bootstrap.php', + '5255c38a0faeba867671b61dfda6d864' => $vendorDir . '/paragonie/random_compat/lib/random.php', + 'e7223560d890eab89cda23685e711e2c' => $vendorDir . '/psy/psysh/src/Psy/functions.php', + '752af1c2bdb339e8474c3c31b22b7d54' => $vendorDir . '/illuminate/html/helpers.php', + 'f0906e6318348a765ffb6eb24e0d0938' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/helpers.php', + '58571171fd5812e6e447dce228f52f4d' => $vendorDir . '/laravel/framework/src/Illuminate/Support/helpers.php', + '017b24472353920ed42bb364f7653c43' => $vendorDir . '/propaganistas/laravel-phone/src/helpers.php', + '4a1f389d6ce373bda9e57857d3b61c84' => $vendorDir . '/barryvdh/laravel-debugbar/src/helpers.php', + '1e298922c3e2134d42dcdb03e6d5f55a' => $vendorDir . '/torann/geoip/src/helpers.php', ); diff --git a/vendor/composer/autoload_namespaces.php b/vendor/composer/autoload_namespaces.php index a0b5f94ee..26fb7f587 100644 --- a/vendor/composer/autoload_namespaces.php +++ b/vendor/composer/autoload_namespaces.php @@ -21,7 +21,6 @@ return array( 'Net' => array($vendorDir . '/phpseclib/phpseclib/phpseclib'), 'Namshi\\JOSE' => array($vendorDir . '/namshi/jose/src'), 'Mremi\\UrlShortener' => array($vendorDir . '/mremi/url-shortener/src'), - 'MaxMind' => array($vendorDir . '/maxmind-db/reader/src'), 'Math' => array($vendorDir . '/phpseclib/phpseclib/phpseclib'), 'Maatwebsite\\Excel\\' => array($vendorDir . '/maatwebsite/excel/src'), 'JakubOnderka\\PhpConsoleHighlighter' => array($vendorDir . '/jakub-onderka/php-console-highlighter/src'), diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php index 61fac95db..820c84a6b 100644 --- a/vendor/composer/autoload_psr4.php +++ b/vendor/composer/autoload_psr4.php @@ -20,7 +20,7 @@ return array( 'Unisharp\\Laravelfilemanager\\' => array($vendorDir . '/unisharp/laravel-filemanager/src'), 'Unisharp\\Ckeditor\\' => array($vendorDir . '/unisharp/laravel-ckeditor'), 'Tymon\\JWTAuth\\' => array($vendorDir . '/tymon/jwt-auth/src'), - 'Torann\\GeoIP\\' => array($vendorDir . '/torann/geoip/src/Torann/GeoIP'), + 'Torann\\GeoIP\\' => array($vendorDir . '/torann/geoip/src'), 'TijsVerkoyen\\CssToInlineStyles\\' => array($vendorDir . '/tijsverkoyen/css-to-inline-styles/src'), 'Thomaswelton\\Tests\\LaravelGravatar\\' => array($vendorDir . '/thomaswelton/laravel-gravatar/tests'), 'Thomaswelton\\LaravelGravatar\\' => array($vendorDir . '/thomaswelton/laravel-gravatar/src'), @@ -48,9 +48,9 @@ return array( 'Propaganistas\\LaravelPhone\\' => array($vendorDir . '/propaganistas/laravel-phone/src'), 'Predis\\' => array($vendorDir . '/predis/predis/src'), 'PhpParser\\' => array($vendorDir . '/nikic/php-parser/lib/PhpParser'), + 'PhpImap\\' => array($vendorDir . '/php-imap/php-imap/src/PhpImap'), 'Nicolaslopezj\\Searchable\\' => array($vendorDir . '/nicolaslopezj/searchable/src'), 'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'), - 'MaxMind\\' => array($vendorDir . '/maxmind/web-service-common/src'), 'League\\OAuth1\\' => array($vendorDir . '/league/oauth1-client/src'), 'League\\Flysystem\\' => array($vendorDir . '/league/flysystem/src'), 'Laravel\\Socialite\\' => array($vendorDir . '/laravel/socialite/src'), @@ -66,12 +66,10 @@ return array( 'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'), 'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'), 'Giggsey\\Locale\\' => array($vendorDir . '/giggsey/locale/src'), - 'GeoIp2\\' => array($vendorDir . '/geoip2/geoip2/src'), 'Dotenv\\' => array($vendorDir . '/vlucas/phpdotenv/src'), 'Doctrine\\Instantiator\\' => array($vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator'), 'DebugBar\\' => array($vendorDir . '/maximebf/debugbar/src/DebugBar'), 'DaveJamesMiller\\Breadcrumbs\\' => array($vendorDir . '/davejamesmiller/laravel-breadcrumbs/src'), - 'Composer\\CaBundle\\' => array($vendorDir . '/composer/ca-bundle/src'), 'Collective\\Bus\\' => array($vendorDir . '/laravelcollective/bus/src'), 'ClassPreloader\\' => array($vendorDir . '/classpreloader/classpreloader/src'), 'Carbon\\' => array($vendorDir . '/nesbot/carbon/src/Carbon'), diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 75a64860e..efc7dcb96 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -27,33 +27,48 @@ class ComposerAutoloaderInit1bacc9bd2a82216bf11bc15e6aee6c79 array_push($includePaths, get_include_path()); set_include_path(join(PATH_SEPARATOR, $includePaths)); - $map = require __DIR__ . '/autoload_namespaces.php'; - foreach ($map as $namespace => $path) { - $loader->set($namespace, $path); - } + $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION'); + if ($useStaticLoader) { + require_once __DIR__ . '/autoload_static.php'; - $map = require __DIR__ . '/autoload_psr4.php'; - foreach ($map as $namespace => $path) { - $loader->setPsr4($namespace, $path); - } + call_user_func(\Composer\Autoload\ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79::getInitializer($loader)); + } else { + $map = require __DIR__ . '/autoload_namespaces.php'; + foreach ($map as $namespace => $path) { + $loader->set($namespace, $path); + } - $classMap = require __DIR__ . '/autoload_classmap.php'; - if ($classMap) { - $loader->addClassMap($classMap); + $map = require __DIR__ . '/autoload_psr4.php'; + foreach ($map as $namespace => $path) { + $loader->setPsr4($namespace, $path); + } + + $classMap = require __DIR__ . '/autoload_classmap.php'; + if ($classMap) { + $loader->addClassMap($classMap); + } } $loader->register(true); - $includeFiles = require __DIR__ . '/autoload_files.php'; - foreach ($includeFiles as $file) { - composerRequire1bacc9bd2a82216bf11bc15e6aee6c79($file); + if ($useStaticLoader) { + $includeFiles = Composer\Autoload\ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79::$files; + } else { + $includeFiles = require __DIR__ . '/autoload_files.php'; + } + foreach ($includeFiles as $fileIdentifier => $file) { + composerRequire1bacc9bd2a82216bf11bc15e6aee6c79($fileIdentifier, $file); } return $loader; } } -function composerRequire1bacc9bd2a82216bf11bc15e6aee6c79($file) +function composerRequire1bacc9bd2a82216bf11bc15e6aee6c79($fileIdentifier, $file) { - require $file; + if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { + require $file; + + $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; + } } diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 465a0b426..1a40a99d5 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -10,20 +10,21 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', 'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php', 'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php', - '667aeda72477189d0494fecd327c3641' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php', '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php', + '667aeda72477189d0494fecd327c3641' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php', 'b067bc7112e384b61c701452d53a14a8' => __DIR__ . '/..' . '/mtdowling/jmespath.php/src/JmesPath.php', '2c102faa651ef8ea5874edb585946bce' => __DIR__ . '/..' . '/swiftmailer/swiftmailer/lib/swift_required.php', '8a9dc1de0ca7e01f3e08231539562f61' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/functions.php', - 'bd9634f2d41831496de0d3dfe4c94881' => __DIR__ . '/..' . '/symfony/polyfill-php56/bootstrap.php', '3919eeb97e98d4648304477f8ef734ba' => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib/Crypt/Random.php', + 'bd9634f2d41831496de0d3dfe4c94881' => __DIR__ . '/..' . '/symfony/polyfill-php56/bootstrap.php', '5255c38a0faeba867671b61dfda6d864' => __DIR__ . '/..' . '/paragonie/random_compat/lib/random.php', 'e7223560d890eab89cda23685e711e2c' => __DIR__ . '/..' . '/psy/psysh/src/Psy/functions.php', '752af1c2bdb339e8474c3c31b22b7d54' => __DIR__ . '/..' . '/illuminate/html/helpers.php', - '017b24472353920ed42bb364f7653c43' => __DIR__ . '/..' . '/propaganistas/laravel-phone/src/helpers.php', - '4a1f389d6ce373bda9e57857d3b61c84' => __DIR__ . '/..' . '/barryvdh/laravel-debugbar/src/helpers.php', 'f0906e6318348a765ffb6eb24e0d0938' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/helpers.php', '58571171fd5812e6e447dce228f52f4d' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/helpers.php', + '017b24472353920ed42bb364f7653c43' => __DIR__ . '/..' . '/propaganistas/laravel-phone/src/helpers.php', + '4a1f389d6ce373bda9e57857d3b61c84' => __DIR__ . '/..' . '/barryvdh/laravel-debugbar/src/helpers.php', + '1e298922c3e2134d42dcdb03e6d5f55a' => __DIR__ . '/..' . '/torann/geoip/src/helpers.php', ); public static $prefixLengthsPsr4 = array ( @@ -56,11 +57,13 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'U' => array ( 'Unisharp\\Laravelfilemanager\\' => 28, + 'Unisharp\\Ckeditor\\' => 18, ), 'T' => array ( 'Tymon\\JWTAuth\\' => 14, 'Torann\\GeoIP\\' => 13, + 'TijsVerkoyen\\CssToInlineStyles\\' => 31, 'Thomaswelton\\Tests\\LaravelGravatar\\' => 35, 'Thomaswelton\\LaravelGravatar\\' => 29, ), @@ -88,6 +91,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'P' => array ( 'Psy\\' => 4, + 'Psr\\Log\\' => 8, 'Psr\\Http\\Message\\' => 17, 'Propaganistas\\LaravelPhone\\' => 27, 'Predis\\' => 7, @@ -101,11 +105,12 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'M' => array ( 'Monolog\\' => 8, - 'MaxMind\\' => 8, ), 'L' => array ( + 'League\\OAuth1\\' => 14, 'League\\Flysystem\\' => 17, + 'Laravel\\Socialite\\' => 18, 'LaravelFCM\\Mocks\\' => 17, 'LaravelFCM\\' => 11, ), @@ -126,7 +131,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'GuzzleHttp\\Psr7\\' => 16, 'GuzzleHttp\\Promise\\' => 19, 'GuzzleHttp\\' => 11, - 'GeoIp2\\' => 7, + 'Giggsey\\Locale\\' => 15, ), 'D' => array ( @@ -137,6 +142,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 ), 'C' => array ( + 'Collective\\Bus\\' => 15, 'ClassPreloader\\' => 15, 'Carbon\\' => 7, ), @@ -202,13 +208,21 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 array ( 0 => __DIR__ . '/..' . '/unisharp/laravel-filemanager/src', ), + 'Unisharp\\Ckeditor\\' => + array ( + 0 => __DIR__ . '/..' . '/unisharp/laravel-ckeditor', + ), 'Tymon\\JWTAuth\\' => array ( 0 => __DIR__ . '/..' . '/tymon/jwt-auth/src', ), 'Torann\\GeoIP\\' => array ( - 0 => __DIR__ . '/..' . '/torann/geoip/src/Torann/GeoIP', + 0 => __DIR__ . '/..' . '/torann/geoip/src', + ), + 'TijsVerkoyen\\CssToInlineStyles\\' => + array ( + 0 => __DIR__ . '/..' . '/tijsverkoyen/css-to-inline-styles/src', ), 'Thomaswelton\\Tests\\LaravelGravatar\\' => array ( @@ -294,6 +308,10 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 array ( 0 => __DIR__ . '/..' . '/psy/psysh/src/Psy', ), + 'Psr\\Log\\' => + array ( + 0 => __DIR__ . '/..' . '/psr/log/Psr/Log', + ), 'Psr\\Http\\Message\\' => array ( 0 => __DIR__ . '/..' . '/psr/http-message/src', @@ -322,14 +340,18 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 array ( 0 => __DIR__ . '/..' . '/monolog/monolog/src/Monolog', ), - 'MaxMind\\' => + 'League\\OAuth1\\' => array ( - 0 => __DIR__ . '/..' . '/maxmind/web-service-common/src', + 0 => __DIR__ . '/..' . '/league/oauth1-client/src', ), 'League\\Flysystem\\' => array ( 0 => __DIR__ . '/..' . '/league/flysystem/src', ), + 'Laravel\\Socialite\\' => + array ( + 0 => __DIR__ . '/..' . '/laravel/socialite/src', + ), 'LaravelFCM\\Mocks\\' => array ( 0 => __DIR__ . '/..' . '/brozot/laravel-fcm/tests/mocks', @@ -374,9 +396,9 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 array ( 0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src', ), - 'GeoIp2\\' => + 'Giggsey\\Locale\\' => array ( - 0 => __DIR__ . '/..' . '/geoip2/geoip2/src', + 0 => __DIR__ . '/..' . '/giggsey/locale/src', ), 'Dotenv\\' => array ( @@ -394,6 +416,10 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 array ( 0 => __DIR__ . '/..' . '/davejamesmiller/laravel-breadcrumbs/src', ), + 'Collective\\Bus\\' => + array ( + 0 => __DIR__ . '/..' . '/laravelcollective/bus/src', + ), 'ClassPreloader\\' => array ( 0 => __DIR__ . '/..' . '/classpreloader/classpreloader/src', @@ -470,10 +496,6 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 ), 'P' => array ( - 'Psr\\Log\\' => - array ( - 0 => __DIR__ . '/..' . '/psr/log', - ), 'Prophecy\\' => array ( 0 => __DIR__ . '/..' . '/phpspec/prophecy/src', @@ -482,6 +504,10 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 array ( 0 => __DIR__ . '/..' . '/phpspec/phpspec/src', ), + 'PHPExcel' => + array ( + 0 => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes', + ), ), 'N' => array ( @@ -500,14 +526,14 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 array ( 0 => __DIR__ . '/..' . '/mremi/url-shortener/src', ), - 'MaxMind' => - array ( - 0 => __DIR__ . '/..' . '/maxmind-db/reader/src', - ), 'Math' => array ( 0 => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib', ), + 'Maatwebsite\\Excel\\' => + array ( + 0 => __DIR__ . '/..' . '/maatwebsite/excel/src', + ), ), 'J' => array ( @@ -541,6 +567,10 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 array ( 0 => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib', ), + 'Fetch' => + array ( + 0 => __DIR__ . '/..' . '/tedivm/fetch/src', + ), ), 'D' => array ( @@ -611,6 +641,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'AddForeignKeysToUserAssignOrganizationTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140454_add_foreign_keys_to_user_assign_organization_table.php', 'AddForeignKeysToUsersTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140454_add_foreign_keys_to_users_table.php', 'Adobe_Font_Metrics' => __DIR__ . '/..' . '/phenx/php-font-lib/classes/Adobe_Font_Metrics.php', + 'AlterTicketSourceTable' => __DIR__ . '/../..' . '/database/migrations/2016_08_16_104539_alter_ticket_source_table.php', 'App\\BaseModel' => __DIR__ . '/../..' . '/app/BaseModel.php', 'App\\Console\\Commands\\CloseWork' => __DIR__ . '/../..' . '/app/Console/Commands/CloseWork.php', 'App\\Console\\Commands\\Inspire' => __DIR__ . '/../..' . '/app/Console/Commands/Inspire.php', @@ -631,25 +662,34 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'App\\Events\\Timeline' => __DIR__ . '/../..' . '/app/Events/Timeline.php', 'App\\Events\\TopNavEvent' => __DIR__ . '/../..' . '/app/Events/TopNavEvent.php', 'App\\Exceptions\\Handler' => __DIR__ . '/../..' . '/app/Exceptions/Handler.php', + 'App\\FaveoLog\\LaravelLogViewer' => __DIR__ . '/../..' . '/app/FaveoLog/LaravelLogViewer.php', + 'App\\FaveoLog\\LaravelLogViewerServiceProvider' => __DIR__ . '/../..' . '/app/FaveoLog/LaravelLogViewerServiceProvider.php', + 'App\\FaveoLog\\controllers\\LogViewerController' => __DIR__ . '/../..' . '/app/FaveoLog/controllers/LogViewerController.php', + 'App\\Helper\\Finder' => __DIR__ . '/../..' . '/app/Helper/Finder.php', + 'App\\Http\\Controllers\\Admin\\MailFetch' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/MailFetch.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\AgentController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/AgentController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\BanlistController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/BanlistController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\CloseWrokflowController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/CloseWrokflowController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\DepartmentController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/DepartmentController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\EmailsController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/EmailsController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\EmailsControllerOld' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/EmailsControllerOld.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\ErrorAndDebuggingController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/ErrorAndDebuggingController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\FormController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/FormController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\GroupController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/GroupController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\HelptopicController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/HelptopicController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\HomeController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/HomeController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\LanguageController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/LanguageController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\PriorityController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/PriorityController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\ProfileController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/ProfileController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\SecurityController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/SecurityController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\SettingsController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/SettingsController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\SettingsController2' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/SettingsController2.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\SlaController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/SlaController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\SocialMedia\\SocialMediaController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/SocialMedia/SocialMediaController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\TeamController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/TeamController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\TemplateController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/TemplateController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\ThreadController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/ThreadController.php', + 'App\\Http\\Controllers\\Admin\\helpdesk\\UrlSettingController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/UrlSettingController.php', 'App\\Http\\Controllers\\Admin\\helpdesk\\WorkflowController' => __DIR__ . '/../..' . '/app/Http/Controllers/Admin/helpdesk/WorkflowController.php', 'App\\Http\\Controllers\\Agent\\helpdesk\\CannedController' => __DIR__ . '/../..' . '/app/Http/Controllers/Agent/helpdesk/CannedController.php', 'App\\Http\\Controllers\\Agent\\helpdesk\\DashboardController' => __DIR__ . '/../..' . '/app/Http/Controllers/Agent/helpdesk/DashboardController.php', @@ -658,6 +698,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'App\\Http\\Controllers\\Agent\\helpdesk\\MailController' => __DIR__ . '/../..' . '/app/Http/Controllers/Agent/helpdesk/MailController.php', 'App\\Http\\Controllers\\Agent\\helpdesk\\NotificationController' => __DIR__ . '/../..' . '/app/Http/Controllers/Agent/helpdesk/NotificationController.php', 'App\\Http\\Controllers\\Agent\\helpdesk\\OrganizationController' => __DIR__ . '/../..' . '/app/Http/Controllers/Agent/helpdesk/OrganizationController.php', + 'App\\Http\\Controllers\\Agent\\helpdesk\\ReportController' => __DIR__ . '/../..' . '/app/Http/Controllers/Agent/helpdesk/ReportController.php', 'App\\Http\\Controllers\\Agent\\helpdesk\\Ticket2Controller' => __DIR__ . '/../..' . '/app/Http/Controllers/Agent/helpdesk/Ticket2Controller.php', 'App\\Http\\Controllers\\Agent\\helpdesk\\TicketController' => __DIR__ . '/../..' . '/app/Http/Controllers/Agent/helpdesk/TicketController.php', 'App\\Http\\Controllers\\Agent\\helpdesk\\TicketWorkflowController' => __DIR__ . '/../..' . '/app/Http/Controllers/Agent/helpdesk/TicketWorkflowController.php', @@ -681,11 +722,12 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'App\\Http\\Controllers\\Client\\helpdesk\\WelcomepageController' => __DIR__ . '/../..' . '/app/Http/Controllers/Client/helpdesk/WelcomepageController.php', 'App\\Http\\Controllers\\Client\\kb\\UserController' => __DIR__ . '/../..' . '/app/Http/Controllers/Client/kb/UserController.php', 'App\\Http\\Controllers\\Common\\ApiSettings' => __DIR__ . '/../..' . '/app/Http/Controllers/Common/ApiSettings.php', + 'App\\Http\\Controllers\\Common\\ExcelController' => __DIR__ . '/../..' . '/app/Http/Controllers/Common/ExcelController.php', 'App\\Http\\Controllers\\Common\\FileuploadController' => __DIR__ . '/../..' . '/app/Http/Controllers/Common/FileuploadController.php', 'App\\Http\\Controllers\\Common\\NotificationController' => __DIR__ . '/../..' . '/app/Http/Controllers/Common/NotificationController.php', 'App\\Http\\Controllers\\Common\\PhpMailController' => __DIR__ . '/../..' . '/app/Http/Controllers/Common/PhpMailController.php', - 'App\\Http\\Controllers\\Common\\PushNotificationController' => __DIR__ . '/../..' . '/app/Http/Controllers/Common/PushNotificationController.php', 'App\\Http\\Controllers\\Common\\SettingsController' => __DIR__ . '/../..' . '/app/Http/Controllers/Common/SettingsController.php', + 'App\\Http\\Controllers\\Common\\Socialite' => __DIR__ . '/../..' . '/app/Http/Controllers/Common/Socialite.php', 'App\\Http\\Controllers\\Common\\TemplateController' => __DIR__ . '/../..' . '/app/Http/Controllers/Common/TemplateController.php', 'App\\Http\\Controllers\\Common\\TemplateSetController' => __DIR__ . '/../..' . '/app/Http/Controllers/Common/TemplateSetController.php', 'App\\Http\\Controllers\\Controller' => __DIR__ . '/../..' . '/app/Http/Controllers/Controller.php', @@ -717,6 +759,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'App\\Http\\Requests\\helpdesk\\BanlistRequest' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/BanlistRequest.php', 'App\\Http\\Requests\\helpdesk\\CannedRequest' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/CannedRequest.php', 'App\\Http\\Requests\\helpdesk\\CannedUpdateRequest' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/CannedUpdateRequest.php', + 'App\\Http\\Requests\\helpdesk\\ChangepasswordRequest' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/ChangepasswordRequest.php', 'App\\Http\\Requests\\helpdesk\\CheckTicket' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/CheckTicket.php', 'App\\Http\\Requests\\helpdesk\\ClientRequest' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/ClientRequest.php', 'App\\Http\\Requests\\helpdesk\\CommentRequest' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/CommentRequest.php', @@ -744,6 +787,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'App\\Http\\Requests\\helpdesk\\OrganizationRequest' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/OrganizationRequest.php', 'App\\Http\\Requests\\helpdesk\\OrganizationUpdate' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/OrganizationUpdate.php', 'App\\Http\\Requests\\helpdesk\\OtpVerifyRequest' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/OtpVerifyRequest.php', + 'App\\Http\\Requests\\helpdesk\\PriorityRequest' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/PriorityRequest.php', 'App\\Http\\Requests\\helpdesk\\ProfilePassword' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/ProfilePassword.php', 'App\\Http\\Requests\\helpdesk\\ProfileRequest' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/ProfileRequest.php', 'App\\Http\\Requests\\helpdesk\\Queue\\QueueRequest' => __DIR__ . '/../..' . '/app/Http/Requests/helpdesk/Queue/QueueRequest.php', @@ -826,12 +870,15 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'App\\Model\\helpdesk\\Ratings\\RatingRef' => __DIR__ . '/../..' . '/app/Model/helpdesk/Ratings/RatingRef.php', 'App\\Model\\helpdesk\\Settings\\Access' => __DIR__ . '/../..' . '/app/Model/helpdesk/Settings/Access.php', 'App\\Model\\helpdesk\\Settings\\Alert' => __DIR__ . '/../..' . '/app/Model/helpdesk/Settings/Alert.php', + 'App\\Model\\helpdesk\\Settings\\Approval' => __DIR__ . '/../..' . '/app/Model/helpdesk/Settings/Approval.php', 'App\\Model\\helpdesk\\Settings\\CommonSettings' => __DIR__ . '/../..' . '/app/Model/helpdesk/Settings/CommonSettings.php', 'App\\Model\\helpdesk\\Settings\\Company' => __DIR__ . '/../..' . '/app/Model/helpdesk/Settings/Company.php', 'App\\Model\\helpdesk\\Settings\\Email' => __DIR__ . '/../..' . '/app/Model/helpdesk/Settings/Email.php', + 'App\\Model\\helpdesk\\Settings\\Followup' => __DIR__ . '/../..' . '/app/Model/helpdesk/Settings/Followup.php', 'App\\Model\\helpdesk\\Settings\\Plugin' => __DIR__ . '/../..' . '/app/Model/helpdesk/Settings/Plugin.php', 'App\\Model\\helpdesk\\Settings\\Responder' => __DIR__ . '/../..' . '/app/Model/helpdesk/Settings/Responder.php', 'App\\Model\\helpdesk\\Settings\\Security' => __DIR__ . '/../..' . '/app/Model/helpdesk/Settings/Security.php', + 'App\\Model\\helpdesk\\Settings\\SocialMedia' => __DIR__ . '/../..' . '/app/Model/helpdesk/Settings/SocialMedia.php', 'App\\Model\\helpdesk\\Settings\\System' => __DIR__ . '/../..' . '/app/Model/helpdesk/Settings/System.php', 'App\\Model\\helpdesk\\Settings\\Ticket' => __DIR__ . '/../..' . '/app/Model/helpdesk/Settings/Ticket.php', 'App\\Model\\helpdesk\\Theme\\Footer' => __DIR__ . '/../..' . '/app/Model/helpdesk/Theme/Footer.php', @@ -889,19 +936,6 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'App\\Model\\kb\\Social' => __DIR__ . '/../..' . '/app/Model/kb/Social.php', 'App\\Model\\kb\\Timezone' => __DIR__ . '/../..' . '/app/Model/kb/Timezone.php', 'App\\Model\\kb\\Zone' => __DIR__ . '/../..' . '/app/Model/kb/Zone.php', - 'App\\Plugins\\Msg91\\Controllers\\AgentTimeLineController' => __DIR__ . '/../..' . '/app/Plugins/Msg91/Controllers/AgentTimeLineController.php', - 'App\\Plugins\\Msg91\\Controllers\\Msg91Controller' => __DIR__ . '/../..' . '/app/Plugins/Msg91/Controllers/Msg91Controller.php', - 'App\\Plugins\\Msg91\\Controllers\\Msg91SettingsController' => __DIR__ . '/../..' . '/app/Plugins/Msg91/Controllers/Msg91SettingsController.php', - 'App\\Plugins\\Msg91\\Controllers\\SendOtpController' => __DIR__ . '/../..' . '/app/Plugins/Msg91/Controllers/SendOtpController.php', - 'App\\Plugins\\Msg91\\Model\\Msg91' => __DIR__ . '/../..' . '/app/Plugins/Msg91/Model/Msg91.php', - 'App\\Plugins\\Msg91\\Model\\Provider' => __DIR__ . '/../..' . '/app/Plugins/Msg91/Model/Provider.php', - 'App\\Plugins\\Msg91\\ServiceProvider' => __DIR__ . '/../..' . '/app/Plugins/Msg91/ServiceProvider.php', - 'App\\Plugins\\Podio\\Controllers\\PodioController' => __DIR__ . '/../..' . '/app/Plugins/Podio/Controllers/PodioController.php', - 'App\\Plugins\\Podio\\Controllers\\SettingsController' => __DIR__ . '/../..' . '/app/Plugins/Podio/Controllers/SettingsController.php', - 'App\\Plugins\\Podio\\Model\\Podio' => __DIR__ . '/../..' . '/app/Plugins/Podio/Model/Podio.php', - 'App\\Plugins\\Podio\\Model\\PodioClient' => __DIR__ . '/../..' . '/app/Plugins/Podio/Model/PodioClient.php', - 'App\\Plugins\\Podio\\Model\\PodioTicket' => __DIR__ . '/../..' . '/app/Plugins/Podio/Model/PodioTicket.php', - 'App\\Plugins\\Podio\\ServiceProvider' => __DIR__ . '/../..' . '/app/Plugins/Podio/ServiceProvider.php', 'App\\Plugins\\ServiceProvider' => __DIR__ . '/../..' . '/app/Plugins/ServiceProvider.php', 'App\\Providers\\AppServiceProvider' => __DIR__ . '/../..' . '/app/Providers/AppServiceProvider.php', 'App\\Providers\\AuthServiceProvider' => __DIR__ . '/../..' . '/app/Providers/AuthServiceProvider.php', @@ -909,6 +943,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'App\\Providers\\EventServiceProvider' => __DIR__ . '/../..' . '/app/Providers/EventServiceProvider.php', 'App\\Providers\\RouteServiceProvider' => __DIR__ . '/../..' . '/app/Providers/RouteServiceProvider.php', 'App\\User' => __DIR__ . '/../..' . '/app/User.php', + 'App\\UserAdditionalInfo' => __DIR__ . '/../..' . '/app/UserAdditionalInfo.php', 'Attribute_Translator' => __DIR__ . '/..' . '/dompdf/dompdf/include/attribute_translator.cls.php', 'Aws\\Acm\\AcmClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Acm/AcmClient.php', 'Aws\\Acm\\Exception\\AcmException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Acm/Exception/AcmException.php', @@ -960,6 +995,8 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'Aws\\AwsClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/AwsClient.php', 'Aws\\AwsClientInterface' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/AwsClientInterface.php', 'Aws\\AwsClientTrait' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/AwsClientTrait.php', + 'Aws\\Budgets\\BudgetsClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Budgets/BudgetsClient.php', + 'Aws\\Budgets\\Exception\\BudgetsException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Budgets/Exception/BudgetsException.php', 'Aws\\CacheInterface' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/CacheInterface.php', 'Aws\\ClientResolver' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/ClientResolver.php', 'Aws\\CloudFormation\\CloudFormationClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/CloudFormation/CloudFormationClient.php', @@ -1046,6 +1083,8 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'Aws\\ElastiCache\\Exception\\ElastiCacheException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/ElastiCache/Exception/ElastiCacheException.php', 'Aws\\ElasticBeanstalk\\ElasticBeanstalkClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/ElasticBeanstalk/ElasticBeanstalkClient.php', 'Aws\\ElasticBeanstalk\\Exception\\ElasticBeanstalkException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/ElasticBeanstalk/Exception/ElasticBeanstalkException.php', + 'Aws\\ElasticLoadBalancingV2\\ElasticLoadBalancingV2Client' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/ElasticLoadBalancingV2/ElasticLoadBalancingV2Client.php', + 'Aws\\ElasticLoadBalancingV2\\Exception\\ElasticLoadBalancingV2Exception' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/ElasticLoadBalancingV2/Exception/ElasticLoadBalancingV2Exception.php', 'Aws\\ElasticLoadBalancing\\ElasticLoadBalancingClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/ElasticLoadBalancing/ElasticLoadBalancingClient.php', 'Aws\\ElasticLoadBalancing\\Exception\\ElasticLoadBalancingException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/ElasticLoadBalancing/Exception/ElasticLoadBalancingException.php', 'Aws\\ElasticTranscoder\\ElasticTranscoderClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/ElasticTranscoder/ElasticTranscoderClient.php', @@ -1094,6 +1133,8 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'Aws\\Iot\\Exception\\IotException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Iot/Exception/IotException.php', 'Aws\\Iot\\IotClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Iot/IotClient.php', 'Aws\\JsonCompiler' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/JsonCompiler.php', + 'Aws\\KinesisAnalytics\\Exception\\KinesisAnalyticsException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/KinesisAnalytics/Exception/KinesisAnalyticsException.php', + 'Aws\\KinesisAnalytics\\KinesisAnalyticsClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/KinesisAnalytics/KinesisAnalyticsClient.php', 'Aws\\Kinesis\\Exception\\KinesisException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Kinesis/Exception/KinesisException.php', 'Aws\\Kinesis\\KinesisClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Kinesis/KinesisClient.php', 'Aws\\Kms\\Exception\\KmsException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Kms/Exception/KmsException.php', @@ -1129,7 +1170,6 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'Aws\\Route53Domains\\Route53DomainsClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Route53Domains/Route53DomainsClient.php', 'Aws\\Route53\\Exception\\Route53Exception' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Route53/Exception/Route53Exception.php', 'Aws\\Route53\\Route53Client' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Route53/Route53Client.php', - 'Aws\\S3\\AccelerateMiddleware' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/S3/AccelerateMiddleware.php', 'Aws\\S3\\AmbiguousSuccessParser' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/S3/AmbiguousSuccessParser.php', 'Aws\\S3\\ApplyChecksumMiddleware' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/S3/ApplyChecksumMiddleware.php', 'Aws\\S3\\BatchDelete' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/S3/BatchDelete.php', @@ -1151,6 +1191,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'Aws\\S3\\S3Client' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/S3/S3Client.php', 'Aws\\S3\\S3ClientInterface' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/S3/S3ClientInterface.php', 'Aws\\S3\\S3ClientTrait' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/S3/S3ClientTrait.php', + 'Aws\\S3\\S3EndpointMiddleware' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/S3/S3EndpointMiddleware.php', 'Aws\\S3\\S3MultiRegionClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/S3/S3MultiRegionClient.php', 'Aws\\S3\\S3UriParser' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/S3/S3UriParser.php', 'Aws\\S3\\SSECMiddleware' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/S3/SSECMiddleware.php', @@ -1167,6 +1208,10 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'Aws\\Signature\\SignatureProvider' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Signature/SignatureProvider.php', 'Aws\\Signature\\SignatureTrait' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Signature/SignatureTrait.php', 'Aws\\Signature\\SignatureV4' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Signature/SignatureV4.php', + 'Aws\\Sms\\Exception\\SmsException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Sms/Exception/SmsException.php', + 'Aws\\Sms\\SmsClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Sms/SmsClient.php', + 'Aws\\SnowBall\\Exception\\SnowBallException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/SnowBall/Exception/SnowBallException.php', + 'Aws\\SnowBall\\SnowBallClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/SnowBall/SnowBallClient.php', 'Aws\\Sns\\Exception\\SnsException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Sns/Exception/SnsException.php', 'Aws\\Sns\\SnsClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Sns/SnsClient.php', 'Aws\\Sqs\\Exception\\SqsException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Sqs/Exception/SqsException.php', @@ -1275,7 +1320,13 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'ClassPreloader\\Parser\\FileVisitor' => __DIR__ . '/..' . '/classpreloader/classpreloader/src/Parser/FileVisitor.php', 'ClassPreloader\\Parser\\NodeTraverser' => __DIR__ . '/..' . '/classpreloader/classpreloader/src/Parser/NodeTraverser.php', 'ClassPreloader\\Parser\\StrictTypesVisitor' => __DIR__ . '/..' . '/classpreloader/classpreloader/src/Parser/StrictTypesVisitor.php', + 'Collective\\Bus\\BusServiceProvider' => __DIR__ . '/..' . '/laravelcollective/bus/src/BusServiceProvider.php', + 'Collective\\Bus\\Dispatcher' => __DIR__ . '/..' . '/laravelcollective/bus/src/Dispatcher.php', + 'Collective\\Bus\\HandlerResolver' => __DIR__ . '/..' . '/laravelcollective/bus/src/HandlerResolver.php', + 'Collective\\Bus\\MarshalException' => __DIR__ . '/..' . '/laravelcollective/bus/src/MarshalException.php', + 'Collective\\Bus\\Queueable' => __DIR__ . '/..' . '/laravelcollective/bus/src/Queueable.php', 'CreateApiSettingsTable' => __DIR__ . '/../..' . '/database/migrations/2016_05_11_105244_create_api_settings_table.php', + 'CreateApprovalTable' => __DIR__ . '/../..' . '/database/migrations/2016_08_31_223407_create_approval_table.php', 'CreateBanlistTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_banlist_table.php', 'CreateBarNotificationsTable' => __DIR__ . '/../..' . '/database/migrations/2016_05_10_102604_create_bar_notifications_table.php', 'CreateCannedResponseTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_canned_response_table.php', @@ -1292,6 +1343,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'CreateFaveoMailsTable' => __DIR__ . '/../..' . '/database/migrations/2016_07_26_084458_create_faveo_mails_table.php', 'CreateFaveoQueuesTable' => __DIR__ . '/../..' . '/database/migrations/2016_07_26_090201_create_faveo_queues_table.php', 'CreateFieldValuesTable' => __DIR__ . '/../..' . '/database/migrations/2016_07_19_071910_create_field_values_table.php', + 'CreateFollowUpTable' => __DIR__ . '/../..' . '/database/migrations/2016_09_02_165516_create_follow_up_table.php', 'CreateGroupAssignDepartmentTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_group_assign_department_table.php', 'CreateGroupsTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_groups_table.php', 'CreateHelpTopicTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_help_topic_table.php', @@ -1324,6 +1376,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'CreateSettingsSystemTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_settings_system_table.php', 'CreateSettingsTicketTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_settings_ticket_table.php', 'CreateSlaPlanTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_sla_plan_table.php', + 'CreateSocialMediaTable' => __DIR__ . '/../..' . '/database/migrations/2016_08_08_095744_create_social_media_table.php', 'CreateTeamAssignAgentTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_team_assign_agent_table.php', 'CreateTeamsTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_teams_table.php', 'CreateTemplateSetsTable' => __DIR__ . '/../..' . '/database/migrations/2016_06_02_094409_create_template_sets_table.php', @@ -1341,6 +1394,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'CreateTicketsTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_tickets_table.php', 'CreateTimeFormatTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_time_format_table.php', 'CreateTimezoneTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_timezone_table.php', + 'CreateUserAdditionalInfosTable' => __DIR__ . '/../..' . '/database/migrations/2016_08_12_104410_create_user_additional_infos_table.php', 'CreateUserAssignOrganizationTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_user_assign_organization_table.php', 'CreateUserNotificationTable' => __DIR__ . '/../..' . '/database/migrations/2016_03_31_061740_create_user_notification_table.php', 'CreateUsersTable' => __DIR__ . '/../..' . '/database/migrations/2016_02_16_140450_create_users_table.php', @@ -1455,6 +1509,9 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'Dotenv\\Validator' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Validator.php', 'EasyPeasyICS' => __DIR__ . '/..' . '/phpmailer/phpmailer/extras/EasyPeasyICS.php', 'Encoding_Map' => __DIR__ . '/..' . '/phenx/php-font-lib/classes/Encoding_Map.php', + 'Fetch\\Attachment' => __DIR__ . '/..' . '/tedivm/fetch/src/Fetch/Attachment.php', + 'Fetch\\Message' => __DIR__ . '/..' . '/tedivm/fetch/src/Fetch/Message.php', + 'Fetch\\Server' => __DIR__ . '/..' . '/tedivm/fetch/src/Fetch/Server.php', 'File_ANSI' => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib/File/ANSI.php', 'File_ASN1' => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib/File/ASN1.php', 'File_ASN1_Element' => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib/File/ASN1.php', @@ -1507,36 +1564,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'Frame_Reflower' => __DIR__ . '/..' . '/dompdf/dompdf/include/frame_reflower.cls.php', 'Frame_Tree' => __DIR__ . '/..' . '/dompdf/dompdf/include/frame_tree.cls.php', 'GD_Adapter' => __DIR__ . '/..' . '/dompdf/dompdf/include/gd_adapter.cls.php', - 'GeoIp2\\Compat\\JsonSerializable' => __DIR__ . '/..' . '/geoip2/geoip2/src/Compat/JsonSerializable.php', - 'GeoIp2\\Database\\Reader' => __DIR__ . '/..' . '/geoip2/geoip2/src/Database/Reader.php', - 'GeoIp2\\Exception\\AddressNotFoundException' => __DIR__ . '/..' . '/geoip2/geoip2/src/Exception/AddressNotFoundException.php', - 'GeoIp2\\Exception\\AuthenticationException' => __DIR__ . '/..' . '/geoip2/geoip2/src/Exception/AuthenticationException.php', - 'GeoIp2\\Exception\\GeoIp2Exception' => __DIR__ . '/..' . '/geoip2/geoip2/src/Exception/GeoIp2Exception.php', - 'GeoIp2\\Exception\\HttpException' => __DIR__ . '/..' . '/geoip2/geoip2/src/Exception/HttpException.php', - 'GeoIp2\\Exception\\InvalidRequestException' => __DIR__ . '/..' . '/geoip2/geoip2/src/Exception/InvalidRequestException.php', - 'GeoIp2\\Exception\\OutOfQueriesException' => __DIR__ . '/..' . '/geoip2/geoip2/src/Exception/OutOfQueriesException.php', - 'GeoIp2\\Model\\AbstractModel' => __DIR__ . '/..' . '/geoip2/geoip2/src/Model/AbstractModel.php', - 'GeoIp2\\Model\\AnonymousIp' => __DIR__ . '/..' . '/geoip2/geoip2/src/Model/AnonymousIp.php', - 'GeoIp2\\Model\\City' => __DIR__ . '/..' . '/geoip2/geoip2/src/Model/City.php', - 'GeoIp2\\Model\\ConnectionType' => __DIR__ . '/..' . '/geoip2/geoip2/src/Model/ConnectionType.php', - 'GeoIp2\\Model\\Country' => __DIR__ . '/..' . '/geoip2/geoip2/src/Model/Country.php', - 'GeoIp2\\Model\\Domain' => __DIR__ . '/..' . '/geoip2/geoip2/src/Model/Domain.php', - 'GeoIp2\\Model\\Enterprise' => __DIR__ . '/..' . '/geoip2/geoip2/src/Model/Enterprise.php', - 'GeoIp2\\Model\\Insights' => __DIR__ . '/..' . '/geoip2/geoip2/src/Model/Insights.php', - 'GeoIp2\\Model\\Isp' => __DIR__ . '/..' . '/geoip2/geoip2/src/Model/Isp.php', - 'GeoIp2\\ProviderInterface' => __DIR__ . '/..' . '/geoip2/geoip2/src/ProviderInterface.php', - 'GeoIp2\\Record\\AbstractPlaceRecord' => __DIR__ . '/..' . '/geoip2/geoip2/src/Record/AbstractPlaceRecord.php', - 'GeoIp2\\Record\\AbstractRecord' => __DIR__ . '/..' . '/geoip2/geoip2/src/Record/AbstractRecord.php', - 'GeoIp2\\Record\\City' => __DIR__ . '/..' . '/geoip2/geoip2/src/Record/City.php', - 'GeoIp2\\Record\\Continent' => __DIR__ . '/..' . '/geoip2/geoip2/src/Record/Continent.php', - 'GeoIp2\\Record\\Country' => __DIR__ . '/..' . '/geoip2/geoip2/src/Record/Country.php', - 'GeoIp2\\Record\\Location' => __DIR__ . '/..' . '/geoip2/geoip2/src/Record/Location.php', - 'GeoIp2\\Record\\MaxMind' => __DIR__ . '/..' . '/geoip2/geoip2/src/Record/MaxMind.php', - 'GeoIp2\\Record\\Postal' => __DIR__ . '/..' . '/geoip2/geoip2/src/Record/Postal.php', - 'GeoIp2\\Record\\RepresentedCountry' => __DIR__ . '/..' . '/geoip2/geoip2/src/Record/RepresentedCountry.php', - 'GeoIp2\\Record\\Subdivision' => __DIR__ . '/..' . '/geoip2/geoip2/src/Record/Subdivision.php', - 'GeoIp2\\Record\\Traits' => __DIR__ . '/..' . '/geoip2/geoip2/src/Record/Traits.php', - 'GeoIp2\\WebService\\Client' => __DIR__ . '/..' . '/geoip2/geoip2/src/WebService/Client.php', + 'Giggsey\\Locale\\Locale' => __DIR__ . '/..' . '/giggsey/locale/src/Locale.php', 'GuzzleHttp\\Client' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Client.php', 'GuzzleHttp\\ClientInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientInterface.php', 'GuzzleHttp\\Cookie\\CookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php', @@ -2758,9 +2786,28 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'LaravelFCM\\Response\\GroupResponseContract' => __DIR__ . '/..' . '/brozot/laravel-fcm/src/Response/GroupResponseContract.php', 'LaravelFCM\\Response\\TopicResponse' => __DIR__ . '/..' . '/brozot/laravel-fcm/src/Response/TopicResponse.php', 'LaravelFCM\\Response\\TopicResponseContract' => __DIR__ . '/..' . '/brozot/laravel-fcm/src/Response/TopicResponseContract.php', - 'LaravelFCM\\Sender\\BaseSender' => __DIR__ . '/..' . '/brozot/laravel-fcm/src/Sender/BaseSender.php', 'LaravelFCM\\Sender\\FCMGroup' => __DIR__ . '/..' . '/brozot/laravel-fcm/src/Sender/FCMGroup.php', 'LaravelFCM\\Sender\\FCMSender' => __DIR__ . '/..' . '/brozot/laravel-fcm/src/Sender/FCMSender.php', + 'LaravelFCM\\Sender\\HTTPSender' => __DIR__ . '/..' . '/brozot/laravel-fcm/src/Sender/HTTPSender.php', + 'Laravel\\Socialite\\AbstractUser' => __DIR__ . '/..' . '/laravel/socialite/src/AbstractUser.php', + 'Laravel\\Socialite\\Contracts\\Factory' => __DIR__ . '/..' . '/laravel/socialite/src/Contracts/Factory.php', + 'Laravel\\Socialite\\Contracts\\Provider' => __DIR__ . '/..' . '/laravel/socialite/src/Contracts/Provider.php', + 'Laravel\\Socialite\\Contracts\\User' => __DIR__ . '/..' . '/laravel/socialite/src/Contracts/User.php', + 'Laravel\\Socialite\\Facades\\Socialite' => __DIR__ . '/..' . '/laravel/socialite/src/Facades/Socialite.php', + 'Laravel\\Socialite\\One\\AbstractProvider' => __DIR__ . '/..' . '/laravel/socialite/src/One/AbstractProvider.php', + 'Laravel\\Socialite\\One\\BitbucketProvider' => __DIR__ . '/..' . '/laravel/socialite/src/One/BitbucketProvider.php', + 'Laravel\\Socialite\\One\\TwitterProvider' => __DIR__ . '/..' . '/laravel/socialite/src/One/TwitterProvider.php', + 'Laravel\\Socialite\\One\\User' => __DIR__ . '/..' . '/laravel/socialite/src/One/User.php', + 'Laravel\\Socialite\\SocialiteManager' => __DIR__ . '/..' . '/laravel/socialite/src/SocialiteManager.php', + 'Laravel\\Socialite\\SocialiteServiceProvider' => __DIR__ . '/..' . '/laravel/socialite/src/SocialiteServiceProvider.php', + 'Laravel\\Socialite\\Two\\AbstractProvider' => __DIR__ . '/..' . '/laravel/socialite/src/Two/AbstractProvider.php', + 'Laravel\\Socialite\\Two\\FacebookProvider' => __DIR__ . '/..' . '/laravel/socialite/src/Two/FacebookProvider.php', + 'Laravel\\Socialite\\Two\\GithubProvider' => __DIR__ . '/..' . '/laravel/socialite/src/Two/GithubProvider.php', + 'Laravel\\Socialite\\Two\\GoogleProvider' => __DIR__ . '/..' . '/laravel/socialite/src/Two/GoogleProvider.php', + 'Laravel\\Socialite\\Two\\InvalidStateException' => __DIR__ . '/..' . '/laravel/socialite/src/Two/InvalidStateException.php', + 'Laravel\\Socialite\\Two\\LinkedInProvider' => __DIR__ . '/..' . '/laravel/socialite/src/Two/LinkedInProvider.php', + 'Laravel\\Socialite\\Two\\ProviderInterface' => __DIR__ . '/..' . '/laravel/socialite/src/Two/ProviderInterface.php', + 'Laravel\\Socialite\\Two\\User' => __DIR__ . '/..' . '/laravel/socialite/src/Two/User.php', 'League\\Flysystem\\AdapterInterface' => __DIR__ . '/..' . '/league/flysystem/src/AdapterInterface.php', 'League\\Flysystem\\Adapter\\AbstractAdapter' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/AbstractAdapter.php', 'League\\Flysystem\\Adapter\\AbstractFtpAdapter' => __DIR__ . '/..' . '/league/flysystem/src/Adapter/AbstractFtpAdapter.php', @@ -2799,35 +2846,67 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'League\\Flysystem\\Plugin\\PluginNotFoundException' => __DIR__ . '/..' . '/league/flysystem/src/Plugin/PluginNotFoundException.php', 'League\\Flysystem\\ReadInterface' => __DIR__ . '/..' . '/league/flysystem/src/ReadInterface.php', 'League\\Flysystem\\RootViolationException' => __DIR__ . '/..' . '/league/flysystem/src/RootViolationException.php', + 'League\\Flysystem\\SafeStorage' => __DIR__ . '/..' . '/league/flysystem/src/SafeStorage.php', 'League\\Flysystem\\UnreadableFileException' => __DIR__ . '/..' . '/league/flysystem/src/UnreadableFileException.php', 'League\\Flysystem\\Util' => __DIR__ . '/..' . '/league/flysystem/src/Util.php', 'League\\Flysystem\\Util\\ContentListingFormatter' => __DIR__ . '/..' . '/league/flysystem/src/Util/ContentListingFormatter.php', 'League\\Flysystem\\Util\\MimeType' => __DIR__ . '/..' . '/league/flysystem/src/Util/MimeType.php', 'League\\Flysystem\\Util\\StreamHasher' => __DIR__ . '/..' . '/league/flysystem/src/Util/StreamHasher.php', + 'League\\OAuth1\\Client\\Credentials\\ClientCredentials' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Credentials/ClientCredentials.php', + 'League\\OAuth1\\Client\\Credentials\\ClientCredentialsInterface' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Credentials/ClientCredentialsInterface.php', + 'League\\OAuth1\\Client\\Credentials\\Credentials' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Credentials/Credentials.php', + 'League\\OAuth1\\Client\\Credentials\\CredentialsException' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Credentials/CredentialsException.php', + 'League\\OAuth1\\Client\\Credentials\\CredentialsInterface' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Credentials/CredentialsInterface.php', + 'League\\OAuth1\\Client\\Credentials\\TemporaryCredentials' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Credentials/TemporaryCredentials.php', + 'League\\OAuth1\\Client\\Credentials\\TokenCredentials' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Credentials/TokenCredentials.php', + 'League\\OAuth1\\Client\\Server\\Bitbucket' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Server/Bitbucket.php', + 'League\\OAuth1\\Client\\Server\\Magento' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Server/Magento.php', + 'League\\OAuth1\\Client\\Server\\Server' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Server/Server.php', + 'League\\OAuth1\\Client\\Server\\Trello' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Server/Trello.php', + 'League\\OAuth1\\Client\\Server\\Tumblr' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Server/Tumblr.php', + 'League\\OAuth1\\Client\\Server\\Twitter' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Server/Twitter.php', + 'League\\OAuth1\\Client\\Server\\User' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Server/User.php', + 'League\\OAuth1\\Client\\Server\\Uservoice' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Server/Uservoice.php', + 'League\\OAuth1\\Client\\Server\\Xing' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Server/Xing.php', + 'League\\OAuth1\\Client\\Signature\\HmacSha1Signature' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Signature/HmacSha1Signature.php', + 'League\\OAuth1\\Client\\Signature\\PlainTextSignature' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Signature/PlainTextSignature.php', + 'League\\OAuth1\\Client\\Signature\\Signature' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Signature/Signature.php', + 'League\\OAuth1\\Client\\Signature\\SignatureInterface' => __DIR__ . '/..' . '/league/oauth1-client/src/Client/Signature/SignatureInterface.php', 'Line_Box' => __DIR__ . '/..' . '/dompdf/dompdf/include/line_box.cls.php', 'List_Bullet_Frame_Decorator' => __DIR__ . '/..' . '/dompdf/dompdf/include/list_bullet_frame_decorator.cls.php', 'List_Bullet_Frame_Reflower' => __DIR__ . '/..' . '/dompdf/dompdf/include/list_bullet_frame_reflower.cls.php', 'List_Bullet_Image_Frame_Decorator' => __DIR__ . '/..' . '/dompdf/dompdf/include/list_bullet_image_frame_decorator.cls.php', 'List_Bullet_Positioner' => __DIR__ . '/..' . '/dompdf/dompdf/include/list_bullet_positioner.cls.php', 'List_Bullet_Renderer' => __DIR__ . '/..' . '/dompdf/dompdf/include/list_bullet_renderer.cls.php', + 'Maatwebsite\\Excel\\Classes\\Cache' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Classes/Cache.php', + 'Maatwebsite\\Excel\\Classes\\FormatIdentifier' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Classes/FormatIdentifier.php', + 'Maatwebsite\\Excel\\Classes\\LaravelExcelWorksheet' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Classes/LaravelExcelWorksheet.php', + 'Maatwebsite\\Excel\\Classes\\PHPExcel' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Classes/PHPExcel.php', + 'Maatwebsite\\Excel\\Collections\\CellCollection' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Collections/CellCollection.php', + 'Maatwebsite\\Excel\\Collections\\ExcelCollection' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Collections/ExcelCollection.php', + 'Maatwebsite\\Excel\\Collections\\RowCollection' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Collections/RowCollection.php', + 'Maatwebsite\\Excel\\Collections\\SheetCollection' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Collections/SheetCollection.php', + 'Maatwebsite\\Excel\\Excel' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Excel.php', + 'Maatwebsite\\Excel\\ExcelServiceProvider' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/ExcelServiceProvider.php', + 'Maatwebsite\\Excel\\Exceptions\\LaravelExcelException' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Exceptions/LaravelExcelException.php', + 'Maatwebsite\\Excel\\Facades\\Excel' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Facades/Excel.php', + 'Maatwebsite\\Excel\\Files\\ExcelFile' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/ExcelFile.php', + 'Maatwebsite\\Excel\\Files\\ExportHandler' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/ExportHandler.php', + 'Maatwebsite\\Excel\\Files\\File' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/File.php', + 'Maatwebsite\\Excel\\Files\\ImportHandler' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/ImportHandler.php', + 'Maatwebsite\\Excel\\Files\\NewExcelFile' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/NewExcelFile.php', + 'Maatwebsite\\Excel\\Filters\\ChunkReadFilter' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Filters/ChunkReadFilter.php', + 'Maatwebsite\\Excel\\Parsers\\CssParser' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Parsers/CssParser.php', + 'Maatwebsite\\Excel\\Parsers\\ExcelParser' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Parsers/ExcelParser.php', + 'Maatwebsite\\Excel\\Parsers\\ViewParser' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Parsers/ViewParser.php', + 'Maatwebsite\\Excel\\Readers\\Batch' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/Batch.php', + 'Maatwebsite\\Excel\\Readers\\ChunkedReadJob' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/ChunkedReadJob.php', + 'Maatwebsite\\Excel\\Readers\\ConfigReader' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/ConfigReader.php', + 'Maatwebsite\\Excel\\Readers\\Html' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/HtmlReader.php', + 'Maatwebsite\\Excel\\Readers\\LaravelExcelReader' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/LaravelExcelReader.php', + 'Maatwebsite\\Excel\\Writers\\CellWriter' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Writers/CellWriter.php', + 'Maatwebsite\\Excel\\Writers\\LaravelExcelWriter' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Writers/LaravelExcelWriter.php', 'Math_BigInteger' => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib/Math/BigInteger.php', - 'MaxMind\\Db\\Reader' => __DIR__ . '/..' . '/maxmind-db/reader/src/MaxMind/Db/Reader.php', - 'MaxMind\\Db\\Reader\\Decoder' => __DIR__ . '/..' . '/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php', - 'MaxMind\\Db\\Reader\\InvalidDatabaseException' => __DIR__ . '/..' . '/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php', - 'MaxMind\\Db\\Reader\\Metadata' => __DIR__ . '/..' . '/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php', - 'MaxMind\\Db\\Reader\\Util' => __DIR__ . '/..' . '/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php', - 'MaxMind\\Exception\\AuthenticationException' => __DIR__ . '/..' . '/maxmind/web-service-common/src/Exception/AuthenticationException.php', - 'MaxMind\\Exception\\HttpException' => __DIR__ . '/..' . '/maxmind/web-service-common/src/Exception/HttpException.php', - 'MaxMind\\Exception\\InsufficientFundsException' => __DIR__ . '/..' . '/maxmind/web-service-common/src/Exception/InsufficientFundsException.php', - 'MaxMind\\Exception\\InvalidInputException' => __DIR__ . '/..' . '/maxmind/web-service-common/src/Exception/InvalidInputException.php', - 'MaxMind\\Exception\\InvalidRequestException' => __DIR__ . '/..' . '/maxmind/web-service-common/src/Exception/InvalidRequestException.php', - 'MaxMind\\Exception\\IpAddressNotFoundException' => __DIR__ . '/..' . '/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php', - 'MaxMind\\Exception\\PermissionRequiredException' => __DIR__ . '/..' . '/maxmind/web-service-common/src/Exception/PermissionRequiredException.php', - 'MaxMind\\Exception\\WebServiceException' => __DIR__ . '/..' . '/maxmind/web-service-common/src/Exception/WebServiceException.php', - 'MaxMind\\WebService\\Client' => __DIR__ . '/..' . '/maxmind/web-service-common/src/WebService/Client.php', - 'MaxMind\\WebService\\Http\\CurlRequest' => __DIR__ . '/..' . '/maxmind/web-service-common/src/WebService/Http/CurlRequest.php', - 'MaxMind\\WebService\\Http\\Request' => __DIR__ . '/..' . '/maxmind/web-service-common/src/WebService/Http/Request.php', - 'MaxMind\\WebService\\Http\\RequestFactory' => __DIR__ . '/..' . '/maxmind/web-service-common/src/WebService/Http/RequestFactory.php', 'Monolog\\ErrorHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/ErrorHandler.php', 'Monolog\\Formatter\\ChromePHPFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php', 'Monolog\\Formatter\\ElasticaFormatter' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php', @@ -2959,6 +3038,206 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'Null_Frame_Reflower' => __DIR__ . '/..' . '/dompdf/dompdf/include/null_frame_reflower.cls.php', 'Null_Positioner' => __DIR__ . '/..' . '/dompdf/dompdf/include/null_positioner.cls.php', 'PDFLib_Adapter' => __DIR__ . '/..' . '/dompdf/dompdf/include/pdflib_adapter.cls.php', + 'PHPExcel' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel.php', + 'PHPExcel_Autoloader' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Autoloader.php', + 'PHPExcel_Best_Fit' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/bestFitClass.php', + 'PHPExcel_CachedObjectStorageFactory' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorageFactory.php', + 'PHPExcel_CachedObjectStorage_APC' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/APC.php', + 'PHPExcel_CachedObjectStorage_CacheBase' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php', + 'PHPExcel_CachedObjectStorage_DiscISAM' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php', + 'PHPExcel_CachedObjectStorage_ICache' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/ICache.php', + 'PHPExcel_CachedObjectStorage_Igbinary' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Igbinary.php', + 'PHPExcel_CachedObjectStorage_Memcache' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php', + 'PHPExcel_CachedObjectStorage_Memory' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memory.php', + 'PHPExcel_CachedObjectStorage_MemoryGZip' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemoryGZip.php', + 'PHPExcel_CachedObjectStorage_MemorySerialized' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemorySerialized.php', + 'PHPExcel_CachedObjectStorage_PHPTemp' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php', + 'PHPExcel_CachedObjectStorage_SQLite' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite.php', + 'PHPExcel_CachedObjectStorage_SQLite3' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite3.php', + 'PHPExcel_CachedObjectStorage_Wincache' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Wincache.php', + 'PHPExcel_CalcEngine_CyclicReferenceStack' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/CyclicReferenceStack.php', + 'PHPExcel_CalcEngine_Logger' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/Logger.php', + 'PHPExcel_Calculation' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php', + 'PHPExcel_Calculation_Database' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Database.php', + 'PHPExcel_Calculation_DateTime' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php', + 'PHPExcel_Calculation_Engineering' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php', + 'PHPExcel_Calculation_Exception' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Exception.php', + 'PHPExcel_Calculation_ExceptionHandler' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/ExceptionHandler.php', + 'PHPExcel_Calculation_Financial' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php', + 'PHPExcel_Calculation_FormulaParser' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaParser.php', + 'PHPExcel_Calculation_FormulaToken' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaToken.php', + 'PHPExcel_Calculation_Function' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Function.php', + 'PHPExcel_Calculation_Functions' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php', + 'PHPExcel_Calculation_Logical' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Logical.php', + 'PHPExcel_Calculation_LookupRef' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/LookupRef.php', + 'PHPExcel_Calculation_MathTrig' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php', + 'PHPExcel_Calculation_Statistical' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php', + 'PHPExcel_Calculation_TextData' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/TextData.php', + 'PHPExcel_Calculation_Token_Stack' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Token/Stack.php', + 'PHPExcel_Cell' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Cell.php', + 'PHPExcel_Cell_AdvancedValueBinder' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Cell/AdvancedValueBinder.php', + 'PHPExcel_Cell_DataType' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataType.php', + 'PHPExcel_Cell_DataValidation' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataValidation.php', + 'PHPExcel_Cell_DefaultValueBinder' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Cell/DefaultValueBinder.php', + 'PHPExcel_Cell_Hyperlink' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Cell/Hyperlink.php', + 'PHPExcel_Cell_IValueBinder' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Cell/IValueBinder.php', + 'PHPExcel_Chart' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Chart.php', + 'PHPExcel_Chart_Axis' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php', + 'PHPExcel_Chart_DataSeries' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeries.php', + 'PHPExcel_Chart_DataSeriesValues' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeriesValues.php', + 'PHPExcel_Chart_Exception' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Exception.php', + 'PHPExcel_Chart_GridLines' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/GridLines.php', + 'PHPExcel_Chart_Layout' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Layout.php', + 'PHPExcel_Chart_Legend' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Legend.php', + 'PHPExcel_Chart_PlotArea' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/PlotArea.php', + 'PHPExcel_Chart_Renderer_jpgraph' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer/jpgraph.php', + 'PHPExcel_Chart_Title' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Title.php', + 'PHPExcel_Comment' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Comment.php', + 'PHPExcel_DocumentProperties' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/DocumentProperties.php', + 'PHPExcel_DocumentSecurity' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/DocumentSecurity.php', + 'PHPExcel_Exception' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Exception.php', + 'PHPExcel_Exponential_Best_Fit' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/exponentialBestFitClass.php', + 'PHPExcel_HashTable' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/HashTable.php', + 'PHPExcel_Helper_HTML' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Helper/HTML.php', + 'PHPExcel_IComparable' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/IComparable.php', + 'PHPExcel_IOFactory' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/IOFactory.php', + 'PHPExcel_Linear_Best_Fit' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/linearBestFitClass.php', + 'PHPExcel_Logarithmic_Best_Fit' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/logarithmicBestFitClass.php', + 'PHPExcel_NamedRange' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/NamedRange.php', + 'PHPExcel_Polynomial_Best_Fit' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/polynomialBestFitClass.php', + 'PHPExcel_Power_Best_Fit' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/powerBestFitClass.php', + 'PHPExcel_Properties' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Chart/Properties.php', + 'PHPExcel_Reader_Abstract' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Abstract.php', + 'PHPExcel_Reader_CSV' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/CSV.php', + 'PHPExcel_Reader_DefaultReadFilter' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/DefaultReadFilter.php', + 'PHPExcel_Reader_Excel2003XML' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2003XML.php', + 'PHPExcel_Reader_Excel2007' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007.php', + 'PHPExcel_Reader_Excel2007_Chart' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Chart.php', + 'PHPExcel_Reader_Excel2007_Theme' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Theme.php', + 'PHPExcel_Reader_Excel5' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php', + 'PHPExcel_Reader_Excel5_Escher' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Escher.php', + 'PHPExcel_Reader_Excel5_MD5' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/MD5.php', + 'PHPExcel_Reader_Excel5_RC4' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/RC4.php', + 'PHPExcel_Reader_Exception' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Exception.php', + 'PHPExcel_Reader_Gnumeric' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/Gnumeric.php', + 'PHPExcel_Reader_HTML' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/HTML.php', + 'PHPExcel_Reader_IReadFilter' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReadFilter.php', + 'PHPExcel_Reader_IReader' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReader.php', + 'PHPExcel_Reader_OOCalc' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/OOCalc.php', + 'PHPExcel_Reader_SYLK' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Reader/SYLK.php', + 'PHPExcel_ReferenceHelper' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/ReferenceHelper.php', + 'PHPExcel_RichText' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/RichText.php', + 'PHPExcel_RichText_ITextElement' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/RichText/ITextElement.php', + 'PHPExcel_RichText_Run' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/RichText/Run.php', + 'PHPExcel_RichText_TextElement' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/RichText/TextElement.php', + 'PHPExcel_Settings' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Settings.php', + 'PHPExcel_Shared_CodePage' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/CodePage.php', + 'PHPExcel_Shared_Date' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Date.php', + 'PHPExcel_Shared_Drawing' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Drawing.php', + 'PHPExcel_Shared_Escher' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher.php', + 'PHPExcel_Shared_Escher_DgContainer' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer.php', + 'PHPExcel_Shared_Escher_DgContainer_SpgrContainer' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php', + 'PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php', + 'PHPExcel_Shared_Escher_DggContainer' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer.php', + 'PHPExcel_Shared_Escher_DggContainer_BstoreContainer' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php', + 'PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php', + 'PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php', + 'PHPExcel_Shared_Excel5' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Excel5.php', + 'PHPExcel_Shared_File' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/File.php', + 'PHPExcel_Shared_Font' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/Font.php', + 'PHPExcel_Shared_JAMA_LUDecomposition' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/LUDecomposition.php', + 'PHPExcel_Shared_JAMA_Matrix' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/Matrix.php', + 'PHPExcel_Shared_JAMA_QRDecomposition' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/QRDecomposition.php', + 'PHPExcel_Shared_OLE' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE.php', + 'PHPExcel_Shared_OLERead' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLERead.php', + 'PHPExcel_Shared_OLE_ChainedBlockStream' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/ChainedBlockStream.php', + 'PHPExcel_Shared_OLE_PPS' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS.php', + 'PHPExcel_Shared_OLE_PPS_File' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/File.php', + 'PHPExcel_Shared_OLE_PPS_Root' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/Root.php', + 'PHPExcel_Shared_PasswordHasher' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/PasswordHasher.php', + 'PHPExcel_Shared_String' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/String.php', + 'PHPExcel_Shared_TimeZone' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/TimeZone.php', + 'PHPExcel_Shared_XMLWriter' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/XMLWriter.php', + 'PHPExcel_Shared_ZipArchive' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipArchive.php', + 'PHPExcel_Shared_ZipStreamWrapper' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipStreamWrapper.php', + 'PHPExcel_Style' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Style.php', + 'PHPExcel_Style_Alignment' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Alignment.php', + 'PHPExcel_Style_Border' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Border.php', + 'PHPExcel_Style_Borders' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Borders.php', + 'PHPExcel_Style_Color' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Color.php', + 'PHPExcel_Style_Conditional' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php', + 'PHPExcel_Style_Fill' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Fill.php', + 'PHPExcel_Style_Font' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php', + 'PHPExcel_Style_NumberFormat' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Style/NumberFormat.php', + 'PHPExcel_Style_Protection' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Protection.php', + 'PHPExcel_Style_Supervisor' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Style/Supervisor.php', + 'PHPExcel_Worksheet' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php', + 'PHPExcel_WorksheetIterator' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/WorksheetIterator.php', + 'PHPExcel_Worksheet_AutoFilter' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter.php', + 'PHPExcel_Worksheet_AutoFilter_Column' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column.php', + 'PHPExcel_Worksheet_AutoFilter_Column_Rule' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column/Rule.php', + 'PHPExcel_Worksheet_BaseDrawing' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/BaseDrawing.php', + 'PHPExcel_Worksheet_CellIterator' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/CellIterator.php', + 'PHPExcel_Worksheet_Column' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Column.php', + 'PHPExcel_Worksheet_ColumnCellIterator' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnCellIterator.php', + 'PHPExcel_Worksheet_ColumnDimension' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnDimension.php', + 'PHPExcel_Worksheet_ColumnIterator' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnIterator.php', + 'PHPExcel_Worksheet_Drawing' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing.php', + 'PHPExcel_Worksheet_Drawing_Shadow' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing/Shadow.php', + 'PHPExcel_Worksheet_HeaderFooter' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooter.php', + 'PHPExcel_Worksheet_HeaderFooterDrawing' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php', + 'PHPExcel_Worksheet_MemoryDrawing' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/MemoryDrawing.php', + 'PHPExcel_Worksheet_PageMargins' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageMargins.php', + 'PHPExcel_Worksheet_PageSetup' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageSetup.php', + 'PHPExcel_Worksheet_Protection' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Protection.php', + 'PHPExcel_Worksheet_Row' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Row.php', + 'PHPExcel_Worksheet_RowCellIterator' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowCellIterator.php', + 'PHPExcel_Worksheet_RowDimension' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowDimension.php', + 'PHPExcel_Worksheet_RowIterator' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowIterator.php', + 'PHPExcel_Worksheet_SheetView' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/SheetView.php', + 'PHPExcel_Writer_Abstract' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Abstract.php', + 'PHPExcel_Writer_CSV' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/CSV.php', + 'PHPExcel_Writer_Excel2007' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007.php', + 'PHPExcel_Writer_Excel2007_Chart' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Chart.php', + 'PHPExcel_Writer_Excel2007_Comments' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Comments.php', + 'PHPExcel_Writer_Excel2007_ContentTypes' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/ContentTypes.php', + 'PHPExcel_Writer_Excel2007_DocProps' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/DocProps.php', + 'PHPExcel_Writer_Excel2007_Drawing' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Drawing.php', + 'PHPExcel_Writer_Excel2007_Rels' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Rels.php', + 'PHPExcel_Writer_Excel2007_RelsRibbon' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsRibbon.php', + 'PHPExcel_Writer_Excel2007_RelsVBA' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsVBA.php', + 'PHPExcel_Writer_Excel2007_StringTable' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/StringTable.php', + 'PHPExcel_Writer_Excel2007_Style' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Style.php', + 'PHPExcel_Writer_Excel2007_Theme' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Theme.php', + 'PHPExcel_Writer_Excel2007_Workbook' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Workbook.php', + 'PHPExcel_Writer_Excel2007_Worksheet' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Worksheet.php', + 'PHPExcel_Writer_Excel2007_WriterPart' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/WriterPart.php', + 'PHPExcel_Writer_Excel5' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5.php', + 'PHPExcel_Writer_Excel5_BIFFwriter' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php', + 'PHPExcel_Writer_Excel5_Escher' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Escher.php', + 'PHPExcel_Writer_Excel5_Font' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Font.php', + 'PHPExcel_Writer_Excel5_Parser' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Parser.php', + 'PHPExcel_Writer_Excel5_Workbook' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Workbook.php', + 'PHPExcel_Writer_Excel5_Worksheet' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Worksheet.php', + 'PHPExcel_Writer_Excel5_Xf' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Xf.php', + 'PHPExcel_Writer_Exception' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/Exception.php', + 'PHPExcel_Writer_HTML' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/HTML.php', + 'PHPExcel_Writer_IWriter' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/IWriter.php', + 'PHPExcel_Writer_OpenDocument' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument.php', + 'PHPExcel_Writer_OpenDocument_Cell_Comment' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Cell/Comment.php', + 'PHPExcel_Writer_OpenDocument_Content' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Content.php', + 'PHPExcel_Writer_OpenDocument_Meta' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Meta.php', + 'PHPExcel_Writer_OpenDocument_MetaInf' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/MetaInf.php', + 'PHPExcel_Writer_OpenDocument_Mimetype' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Mimetype.php', + 'PHPExcel_Writer_OpenDocument_Settings' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Settings.php', + 'PHPExcel_Writer_OpenDocument_Styles' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Styles.php', + 'PHPExcel_Writer_OpenDocument_Thumbnails' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Thumbnails.php', + 'PHPExcel_Writer_OpenDocument_WriterPart' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/WriterPart.php', + 'PHPExcel_Writer_PDF' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF.php', + 'PHPExcel_Writer_PDF_Core' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/Core.php', + 'PHPExcel_Writer_PDF_DomPDF' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/DomPDF.php', + 'PHPExcel_Writer_PDF_mPDF' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/mPDF.php', + 'PHPExcel_Writer_PDF_tcPDF' => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/tcPDF.php', 'PHPMailer' => __DIR__ . '/..' . '/phpmailer/phpmailer/class.phpmailer.php', 'PHPMailerOAuth' => __DIR__ . '/..' . '/phpmailer/phpmailer/class.phpmaileroauth.php', 'PHPMailerOAuthGoogle' => __DIR__ . '/..' . '/phpmailer/phpmailer/class.phpmaileroauthgoogle.php', @@ -4071,6 +4350,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'Predis\\Transaction\\MultiExecState' => __DIR__ . '/..' . '/predis/predis/src/Transaction/MultiExecState.php', 'Propaganistas\\LaravelPhone\\Exceptions\\InvalidParameterException' => __DIR__ . '/..' . '/propaganistas/laravel-phone/src/Exceptions/InvalidParameterException.php', 'Propaganistas\\LaravelPhone\\Exceptions\\NoValidCountryFoundException' => __DIR__ . '/..' . '/propaganistas/laravel-phone/src/Exceptions/NoValidCountryFoundException.php', + 'Propaganistas\\LaravelPhone\\LaravelPhoneFacade' => __DIR__ . '/..' . '/propaganistas/laravel-phone/src/LaravelPhoneFacade.php', 'Propaganistas\\LaravelPhone\\LaravelPhoneServiceProvider' => __DIR__ . '/..' . '/propaganistas/laravel-phone/src/LaravelPhoneServiceProvider.php', 'Propaganistas\\LaravelPhone\\PhoneValidator' => __DIR__ . '/..' . '/propaganistas/laravel-phone/src/PhoneValidator.php', 'Prophecy\\Argument' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument.php', @@ -4896,11 +5176,23 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'Thomaswelton\\LaravelGravatar\\Facades\\Gravatar' => __DIR__ . '/..' . '/thomaswelton/laravel-gravatar/src/Facades/Gravatar.php', 'Thomaswelton\\LaravelGravatar\\Gravatar' => __DIR__ . '/..' . '/thomaswelton/laravel-gravatar/src/Gravatar.php', 'Thomaswelton\\LaravelGravatar\\LaravelGravatarServiceProvider' => __DIR__ . '/..' . '/thomaswelton/laravel-gravatar/src/LaravelGravatarServiceProvider.php', - 'Torann\\GeoIP\\Console\\UpdateCommand' => __DIR__ . '/..' . '/torann/geoip/src/Torann/GeoIP/Console/UpdateCommand.php', - 'Torann\\GeoIP\\GeoIP' => __DIR__ . '/..' . '/torann/geoip/src/Torann/GeoIP/GeoIP.php', - 'Torann\\GeoIP\\GeoIPFacade' => __DIR__ . '/..' . '/torann/geoip/src/Torann/GeoIP/GeoIPFacade.php', - 'Torann\\GeoIP\\GeoIPServiceProvider' => __DIR__ . '/..' . '/torann/geoip/src/Torann/GeoIP/GeoIPServiceProvider.php', - 'Torann\\GeoIP\\GeoIPUpdater' => __DIR__ . '/..' . '/torann/geoip/src/Torann/GeoIP/GeoIPUpdater.php', + 'TijsVerkoyen\\CssToInlineStyles\\CssToInlineStyles' => __DIR__ . '/..' . '/tijsverkoyen/css-to-inline-styles/src/CssToInlineStyles.php', + 'TijsVerkoyen\\CssToInlineStyles\\Exception' => __DIR__ . '/..' . '/tijsverkoyen/css-to-inline-styles/src/Exception.php', + 'TijsVerkoyen\\CssToInlineStyles\\Selector' => __DIR__ . '/..' . '/tijsverkoyen/css-to-inline-styles/src/Selector.php', + 'TijsVerkoyen\\CssToInlineStyles\\Specificity' => __DIR__ . '/..' . '/tijsverkoyen/css-to-inline-styles/src/Specificity.php', + 'Torann\\GeoIP\\Cache' => __DIR__ . '/..' . '/torann/geoip/src/Cache.php', + 'Torann\\GeoIP\\Console\\Clear' => __DIR__ . '/..' . '/torann/geoip/src/Console/Clear.php', + 'Torann\\GeoIP\\Console\\Update' => __DIR__ . '/..' . '/torann/geoip/src/Console/Update.php', + 'Torann\\GeoIP\\Contracts\\ServiceInterface' => __DIR__ . '/..' . '/torann/geoip/src/Contracts/ServiceInterface.php', + 'Torann\\GeoIP\\Facades\\GeoIP' => __DIR__ . '/..' . '/torann/geoip/src/Facades/GeoIP.php', + 'Torann\\GeoIP\\GeoIP' => __DIR__ . '/..' . '/torann/geoip/src/GeoIP.php', + 'Torann\\GeoIP\\GeoIPServiceProvider' => __DIR__ . '/..' . '/torann/geoip/src/GeoIPServiceProvider.php', + 'Torann\\GeoIP\\Location' => __DIR__ . '/..' . '/torann/geoip/src/Location.php', + 'Torann\\GeoIP\\Services\\AbstractService' => __DIR__ . '/..' . '/torann/geoip/src/Services/AbstractService.php', + 'Torann\\GeoIP\\Services\\IPApi' => __DIR__ . '/..' . '/torann/geoip/src/Services/IPApi.php', + 'Torann\\GeoIP\\Services\\MaxMindDatabase' => __DIR__ . '/..' . '/torann/geoip/src/Services/MaxMindDatabase.php', + 'Torann\\GeoIP\\Services\\MaxMindWebService' => __DIR__ . '/..' . '/torann/geoip/src/Services/MaxMindWebService.php', + 'Torann\\GeoIP\\Support\\HttpClient' => __DIR__ . '/..' . '/torann/geoip/src/Support/HttpClient.php', 'Tymon\\JWTAuth\\Blacklist' => __DIR__ . '/..' . '/tymon/jwt-auth/src/Blacklist.php', 'Tymon\\JWTAuth\\Claims\\Audience' => __DIR__ . '/..' . '/tymon/jwt-auth/src/Claims/Audience.php', 'Tymon\\JWTAuth\\Claims\\Claim' => __DIR__ . '/..' . '/tymon/jwt-auth/src/Claims/Claim.php', @@ -4945,6 +5237,11 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'Tymon\\JWTAuth\\Validators\\PayloadValidator' => __DIR__ . '/..' . '/tymon/jwt-auth/src/Validators/PayloadValidator.php', 'Tymon\\JWTAuth\\Validators\\TokenValidator' => __DIR__ . '/..' . '/tymon/jwt-auth/src/Validators/TokenValidator.php', 'Tymon\\JWTAuth\\Validators\\ValidatorInterface' => __DIR__ . '/..' . '/tymon/jwt-auth/src/Validators/ValidatorInterface.php', + 'Unisharp\\Ckeditor\\ServiceProvider' => __DIR__ . '/..' . '/unisharp/laravel-ckeditor/ServiceProvider.php', + 'Unisharp\\Laravelfilemanager\\Events\\FolderWasRenamed' => __DIR__ . '/..' . '/unisharp/laravel-filemanager/src/Events/FolderWasRenamed.php', + 'Unisharp\\Laravelfilemanager\\Events\\ImageWasDeleted' => __DIR__ . '/..' . '/unisharp/laravel-filemanager/src/Events/ImageWasDeleted.php', + 'Unisharp\\Laravelfilemanager\\Events\\ImageWasRenamed' => __DIR__ . '/..' . '/unisharp/laravel-filemanager/src/Events/ImageWasRenamed.php', + 'Unisharp\\Laravelfilemanager\\Events\\ImageWasUploaded' => __DIR__ . '/..' . '/unisharp/laravel-filemanager/src/Events/ImageWasUploaded.php', 'Unisharp\\Laravelfilemanager\\LaravelFilemanagerServiceProvider' => __DIR__ . '/..' . '/unisharp/laravel-filemanager/src/LaravelFilemanagerServiceProvider.php', 'Unisharp\\Laravelfilemanager\\controllers\\Controller' => __DIR__ . '/..' . '/unisharp/laravel-filemanager/src/controllers/Controller.php', 'Unisharp\\Laravelfilemanager\\controllers\\CropController' => __DIR__ . '/..' . '/unisharp/laravel-filemanager/src/controllers/CropController.php', @@ -5158,6 +5455,7 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'Zend\\Stdlib\\ArrayUtils\\MergeRemoveKey' => __DIR__ . '/..' . '/zendframework/zend-stdlib/src/ArrayUtils/MergeRemoveKey.php', 'Zend\\Stdlib\\ArrayUtils\\MergeReplaceKey' => __DIR__ . '/..' . '/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKey.php', 'Zend\\Stdlib\\ArrayUtils\\MergeReplaceKeyInterface' => __DIR__ . '/..' . '/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKeyInterface.php', + 'Zend\\Stdlib\\ConsoleHelper' => __DIR__ . '/..' . '/zendframework/zend-stdlib/src/ConsoleHelper.php', 'Zend\\Stdlib\\DispatchableInterface' => __DIR__ . '/..' . '/zendframework/zend-stdlib/src/DispatchableInterface.php', 'Zend\\Stdlib\\ErrorHandler' => __DIR__ . '/..' . '/zendframework/zend-stdlib/src/ErrorHandler.php', 'Zend\\Stdlib\\Exception\\BadMethodCallException' => __DIR__ . '/..' . '/zendframework/zend-stdlib/src/Exception/BadMethodCallException.php', @@ -5340,7 +5638,6 @@ class ComposerStaticInit1bacc9bd2a82216bf11bc15e6aee6c79 'libphonenumber\\ShortNumberUtil' => __DIR__ . '/..' . '/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumberUtil.php', 'libphonenumber\\ShortNumbersRegionCodeSet' => __DIR__ . '/..' . '/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumbersRegionCodeSet.php', 'libphonenumber\\ValidationResult' => __DIR__ . '/..' . '/giggsey/libphonenumber-for-php/src/libphonenumber/ValidationResult.php', - 'libphonenumber\\geocoding\\Locale' => __DIR__ . '/..' . '/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/Locale.php', 'libphonenumber\\geocoding\\PhoneNumberOfflineGeocoder' => __DIR__ . '/..' . '/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/PhoneNumberOfflineGeocoder.php', 'libphonenumber\\prefixmapper\\MappingFileProvider' => __DIR__ . '/..' . '/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/MappingFileProvider.php', 'libphonenumber\\prefixmapper\\PhonePrefixMap' => __DIR__ . '/..' . '/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/PhonePrefixMap.php', diff --git a/vendor/composer/ca-bundle/LICENSE b/vendor/composer/ca-bundle/LICENSE deleted file mode 100644 index c5b5220e8..000000000 --- a/vendor/composer/ca-bundle/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (C) 2016 Composer - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/vendor/composer/ca-bundle/README.md b/vendor/composer/ca-bundle/README.md deleted file mode 100644 index f66c5b5f8..000000000 --- a/vendor/composer/ca-bundle/README.md +++ /dev/null @@ -1,70 +0,0 @@ -composer/ca-bundle -================== - -Small utility library that lets you find a path to the system CA bundle, -and includes a fallback to the Mozilla CA bundle. - -Originally written as part of [composer/composer](https://github.com/composer/composer), -now extracted and made available as a stand-alone library. - - -Installation ------------- - -Install the latest version with: - -```bash -$ composer require composer/ca-bundle -``` - - -Requirements ------------- - -* PHP 5.3.2 is required but using the latest version of PHP is highly recommended. - - -Basic usage ------------ - -# `Composer\CaBundle\CaBundle` - -- `CaBundle::getSystemCaRootBundlePath()`: Returns the system CA bundle path, or a path to the bundled one as fallback -- `CaBundle::getBundledCaBundlePath()`: Returns the path to the bundled CA file -- `CaBundle::validateCaFile($filename)`: Validates a CA file using opensl_x509_parse only if it is safe to use -- `CaBundle::isOpensslParseSafe()`: Test if it is safe to use the PHP function openssl_x509_parse() -- `CaBundle::reset()`: Resets the static caches - - -## To use with curl - -```php -$curl = curl_init("https://example.org/"); -curl_setopt($curl, CURLOPT_CAINFO, \Composer\CaBundle\CaBundle::getSystemCaRootBundlePath()); -$result = curl_exec($curl); -``` - -## To use with php streams - -```php -$opts = array( - 'http' => array( - 'method' => "GET" - ) -); - -$caPath = \Composer\CaBundle\CaBundle::getSystemCaRootBundlePath(); -if (is_dir($caPath)) { - $opts['ssl']['capath'] = $caPath; -} else { - $opts['ssl']['cafile'] = $caPath; -} - -$context = stream_context_create($opts); -$result = file_get_contents('https://example.com', false, $context); -``` - -License -------- - -composer/ca-bundle is licensed under the MIT License, see the LICENSE file for details. diff --git a/vendor/composer/ca-bundle/composer.json b/vendor/composer/ca-bundle/composer.json deleted file mode 100644 index 516359418..000000000 --- a/vendor/composer/ca-bundle/composer.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "name": "composer/ca-bundle", - "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", - "type": "library", - "license": "MIT", - "keywords": [ - "cabundle", - "cacert", - "certificate", - "ssl", - "tls" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "support": { - "irc": "irc://irc.freenode.org/composer", - "issues": "https://github.com/composer/ca-bundle/issues" - }, - "require": { - "ext-openssl": "*", - "ext-pcre": "*", - "php": "^5.3.2 || ^7.0" - }, - "require-dev": { - "psr/log": "^1.0", - "symfony/process": "^2.5 || ^3.0" - }, - "suggest": { - "symfony/process": "This is necessary to reliably check whether openssl_x509_parse is vulnerable on older php versions, but can be ignored on PHP 5.5.6+" - }, - "autoload": { - "psr-4": { - "Composer\\CaBundle\\": "src" - } - }, - "autoload-dev": { - "psr-4": { - "Composer\\CaBundle\\": "tests" - } - }, - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - } -} diff --git a/vendor/composer/ca-bundle/res/cacert.pem b/vendor/composer/ca-bundle/res/cacert.pem deleted file mode 100644 index f1dc9d34d..000000000 --- a/vendor/composer/ca-bundle/res/cacert.pem +++ /dev/null @@ -1,3884 +0,0 @@ -## -## Bundle of CA Root Certificates -## -## Certificate data from Mozilla as of: Wed Apr 20 03:12:05 2016 -## -## This is a bundle of X.509 certificates of public Certificate Authorities -## (CA). These were automatically extracted from Mozilla's root certificates -## file (certdata.txt). This file can be found in the mozilla source tree: -## http://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt -## -## It contains the certificates in PEM format and therefore -## can be directly used with curl / libcurl / php_curl, or with -## an Apache+mod_ssl webserver for SSL client authentication. -## Just configure this file as the SSLCACertificateFile. -## -## Conversion done with mk-ca-bundle.pl version 1.25. -## SHA1: 5df367cda83086392e1acdf22bfef00c48d5eba6 -## - -Equifax Secure CA -================= ------BEGIN CERTIFICATE----- -MIIDIDCCAomgAwIBAgIENd70zzANBgkqhkiG9w0BAQUFADBOMQswCQYDVQQGEwJVUzEQMA4GA1UE -ChMHRXF1aWZheDEtMCsGA1UECxMkRXF1aWZheCBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 -MB4XDTk4MDgyMjE2NDE1MVoXDTE4MDgyMjE2NDE1MVowTjELMAkGA1UEBhMCVVMxEDAOBgNVBAoT -B0VxdWlmYXgxLTArBgNVBAsTJEVxdWlmYXggU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eTCB -nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAwV2xWGcIYu6gmi0fCG2RFGiYCh7+2gRvE4RiIcPR -fM6fBeC4AfBONOziipUEZKzxa1NfBbPLZ4C/QgKO/t0BCezhABRP/PvwDN1Dulsr4R+AcJkVV5MW -8Q+XarfCaCMczE1ZMKxRHjuvK9buY0V7xdlfUNLjUA86iOe/FP3gx7kCAwEAAaOCAQkwggEFMHAG -A1UdHwRpMGcwZaBjoGGkXzBdMQswCQYDVQQGEwJVUzEQMA4GA1UEChMHRXF1aWZheDEtMCsGA1UE -CxMkRXF1aWZheCBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MQ0wCwYDVQQDEwRDUkwxMBoG -A1UdEAQTMBGBDzIwMTgwODIyMTY0MTUxWjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAUSOZo+SvS -spXXR9gjIBBPM5iQn9QwHQYDVR0OBBYEFEjmaPkr0rKV10fYIyAQTzOYkJ/UMAwGA1UdEwQFMAMB -Af8wGgYJKoZIhvZ9B0EABA0wCxsFVjMuMGMDAgbAMA0GCSqGSIb3DQEBBQUAA4GBAFjOKer89961 -zgK5F7WF0bnj4JXMJTENAKaSbn+2kmOeUJXRmm/kEd5jhW6Y7qj/WsjTVbJmcVfewCHrPSqnI0kB -BIZCe/zuf6IWUrVnZ9NA2zsmWLIodz2uFHdh1voqZiegDfqnc1zqcPGUIWVEX/r87yloqaKHee95 -70+sB3c4 ------END CERTIFICATE----- - -GlobalSign Root CA -================== ------BEGIN CERTIFICATE----- -MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkGA1UEBhMCQkUx -GTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkds -b2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAwMDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNV -BAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYD -VQQDExJHbG9iYWxTaWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDa -DuaZjc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavpxy0Sy6sc -THAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp1Wrjsok6Vjk4bwY8iGlb -Kk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdGsnUOhugZitVtbNV4FpWi6cgKOOvyJBNP -c1STE4U6G7weNLWLBYy5d4ux2x8gkasJU26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrX -gzT/LCrBbBlDSgeF59N89iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV -HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0BAQUF -AAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOzyj1hTdNGCbM+w6Dj -Y1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE38NflNUVyRRBnMRddWQVDf9VMOyG -j/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymPAbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhH -hm4qxFYxldBniYUr+WymXUadDKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveC -X4XSQRjbgbMEHMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== ------END CERTIFICATE----- - -GlobalSign Root CA - R2 -======================= ------BEGIN CERTIFICATE----- -MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4GA1UECxMXR2xv -YmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh -bFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT -aWduIFJvb3QgQ0EgLSBSMjETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln -bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6 -ErPLv4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8eoLrvozp -s6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklqtTleiDTsvHgMCJiEbKjN -S7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzdC9XZzPnqJworc5HGnRusyMvo4KD0L5CL -TfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pazq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6C -ygPCm48CAwEAAaOBnDCBmTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E -FgQUm+IHV2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5nbG9i -YWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG3lm0mi3f3BmGLjAN -BgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4GsJ0/WwbgcQ3izDJr86iw8bmEbTUsp -9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu -01yiPqFbQfXf5WRDLenVOavSot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG7 -9G+dwfCMNYxdAfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7 -TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg== ------END CERTIFICATE----- - -Verisign Class 3 Public Primary Certification Authority - G3 -============================================================ ------BEGIN CERTIFICATE----- -MIIEGjCCAwICEQCbfgZJoz5iudXukEhxKe9XMA0GCSqGSIb3DQEBBQUAMIHKMQswCQYDVQQGEwJV -UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv -cmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl -IG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNh -dGlvbiBBdXRob3JpdHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQsw -CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRy -dXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhv -cml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkg -Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC -ggEBAMu6nFL8eB8aHm8bN3O9+MlrlBIwT/A2R/XQkQr1F8ilYcEWQE37imGQ5XYgwREGfassbqb1 -EUGO+i2tKmFZpGcmTNDovFJbcCAEWNF6yaRpvIMXZK0Fi7zQWM6NjPXr8EJJC52XJ2cybuGukxUc -cLwgTS8Y3pKI6GyFVxEa6X7jJhFUokWWVYPKMIno3Nij7SqAP395ZVc+FSBmCC+Vk7+qRy+oRpfw -EuL+wgorUeZ25rdGt+INpsyow0xZVYnm6FNcHOqd8GIWC6fJXwzw3sJ2zq/3avL6QaaiMxTJ5Xpj -055iN9WFZZ4O5lMkdBteHRJTW8cs54NJOxWuimi5V5cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -ERSWwauSCPc/L8my/uRan2Te2yFPhpk0djZX3dAVL8WtfxUfN2JzPtTnX84XA9s1+ivbrmAJXx5f -j267Cz3qWhMeDGBvtcC1IyIuBwvLqXTLR7sdwdela8wv0kL9Sd2nic9TutoAWii/gt/4uhMdUIaC -/Y4wjylGsB49Ndo4YhYYSq3mtlFs3q9i6wHQHiT+eo8SGhJouPtmmRQURVyu565pF4ErWjfJXir0 -xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGtTxzhT5yvDwyd93gN2PQ1VoDa -t20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ== ------END CERTIFICATE----- - -Entrust.net Premium 2048 Secure Server CA -========================================= ------BEGIN CERTIFICATE----- -MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChMLRW50cnVzdC5u -ZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBpbmNvcnAuIGJ5IHJlZi4gKGxp -bWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNV -BAMTKkVudHJ1c3QubmV0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQx -NzUwNTFaFw0yOTA3MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3 -d3d3LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTEl -MCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEGA1UEAxMqRW50cnVzdC5u -ZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A -MIIBCgKCAQEArU1LqRKGsuqjIAcVFmQqK0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOL -Gp18EzoOH1u3Hs/lJBQesYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSr -hRSGlVuXMlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVTXTzW -nLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/HoZdenoVve8AjhUi -VBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH4QIDAQABo0IwQDAOBgNVHQ8BAf8E -BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJ -KoZIhvcNAQEFBQADggEBADubj1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPy -T/4xmf3IDExoU8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf -zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5bu/8j72gZyxKT -J1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+bYQLCIt+jerXmCHG8+c8eS9e -nNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/ErfF6adulZkMV8gzURZVE= ------END CERTIFICATE----- - -Baltimore CyberTrust Root -========================= ------BEGIN CERTIFICATE----- -MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE -ChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li -ZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC -SUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs -dGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME -uyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB -UnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C -G9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9 -XbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr -l3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI -VDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB -BQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh -cL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5 -hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa -Y71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H -RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp ------END CERTIFICATE----- - -AddTrust Low-Value Services Root -================================ ------BEGIN CERTIFICATE----- -MIIEGDCCAwCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQGEwJTRTEUMBIGA1UEChML -QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEwHwYDVQQDExhBZGRU -cnVzdCBDbGFzcyAxIENBIFJvb3QwHhcNMDAwNTMwMTAzODMxWhcNMjAwNTMwMTAzODMxWjBlMQsw -CQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBO -ZXR3b3JrMSEwHwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3QwggEiMA0GCSqGSIb3DQEB -AQUAA4IBDwAwggEKAoIBAQCWltQhSWDia+hBBwzexODcEyPNwTXH+9ZOEQpnXvUGW2ulCDtbKRY6 -54eyNAbFvAWlA3yCyykQruGIgb3WntP+LVbBFc7jJp0VLhD7Bo8wBN6ntGO0/7Gcrjyvd7ZWxbWr -oulpOj0OM3kyP3CCkplhbY0wCI9xP6ZIVxn4JdxLZlyldI+Yrsj5wAYi56xz36Uu+1LcsRVlIPo1 -Zmne3yzxbrww2ywkEtvrNTVokMsAsJchPXQhI2U0K7t4WaPW4XY5mqRJjox0r26kmqPZm9I4XJui -GMx1I4S+6+JNM3GOGvDC+Mcdoq0Dlyz4zyXG9rgkMbFjXZJ/Y/AlyVMuH79NAgMBAAGjgdIwgc8w -HQYDVR0OBBYEFJWxtPCUtr3H2tERCSG+wa9J/RB7MAsGA1UdDwQEAwIBBjAPBgNVHRMBAf8EBTAD -AQH/MIGPBgNVHSMEgYcwgYSAFJWxtPCUtr3H2tERCSG+wa9J/RB7oWmkZzBlMQswCQYDVQQGEwJT -RTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEw -HwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBACxt -ZBsfzQ3duQH6lmM0MkhHma6X7f1yFqZzR1r0693p9db7RcwpiURdv0Y5PejuvE1Uhh4dbOMXJ0Ph -iVYrqW9yTkkz43J8KiOavD7/KCrto/8cI7pDVwlnTUtiBi34/2ydYB7YHEt9tTEv2dB8Xfjea4MY -eDdXL+gzB2ffHsdrKpV2ro9Xo/D0UrSpUwjP4E/TelOL/bscVjby/rK25Xa71SJlpz/+0WatC7xr -mYbvP33zGDLKe8bjq2RGlfgmadlVg3sslgf/WSxEo8bl6ancoWOAWiFeIc9TVPC6b4nbqKqVz4vj -ccweGyBECMB6tkD9xOQ14R0WHNC8K47Wcdk= ------END CERTIFICATE----- - -AddTrust External Root -====================== ------BEGIN CERTIFICATE----- -MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEUMBIGA1UEChML -QWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYD -VQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEw -NDgzOFowbzELMAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMSYwJAYDVQQLEx1BZGRU -cnVzdCBFeHRlcm5hbCBUVFAgTmV0d29yazEiMCAGA1UEAxMZQWRkVHJ1c3QgRXh0ZXJuYWwgQ0Eg -Um9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf3GjPm8gAELTngTlvtH7xsD821 -+iO2zt6bETOXpClMfZOfvUq8k+0DGuOPz+VtUFrWlymUWoCwSXrbLpX9uMq/NzgtHj6RQa1wVsfw -Tz/oMp50ysiQVOnGXw94nZpAPA6sYapeFI+eh6FqUNzXmk6vBbOmcZSccbNQYArHE504B4YCqOmo -aSYYkKtMsE8jqzpPhNjfzp/haW+710LXa0Tkx63ubUFfclpxCDezeWWkWaCUN/cALw3CknLa0Dhy -2xSoRcRdKn23tNbE7qzNE0S3ySvdQwAl+mG5aWpYIxG3pzOPVnVZ9c0p10a3CitlttNCbxWyuHv7 -7+ldU9U0WicCAwEAAaOB3DCB2TAdBgNVHQ4EFgQUrb2YejS0Jvf6xCZU7wO94CTLVBowCwYDVR0P -BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wgZkGA1UdIwSBkTCBjoAUrb2YejS0Jvf6xCZU7wO94CTL -VBqhc6RxMG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEmMCQGA1UECxMdQWRk -VHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsxIjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENB -IFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBALCb4IUlwtYj4g+WBpKdQZic2YR5gdkeWxQHIzZl -j7DYd7usQWxHYINRsPkyPef89iYTx4AWpb9a/IfPeHmJIZriTAcKhjW88t5RxNKWt9x+Tu5w/Rw5 -6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvCNr4TDea9Y355 -e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEXc4g/VhsxOBi0cQ+azcgOno4u -G+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5amnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ= ------END CERTIFICATE----- - -AddTrust Public Services Root -============================= ------BEGIN CERTIFICATE----- -MIIEFTCCAv2gAwIBAgIBATANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQGEwJTRTEUMBIGA1UEChML -QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSAwHgYDVQQDExdBZGRU -cnVzdCBQdWJsaWMgQ0EgUm9vdDAeFw0wMDA1MzAxMDQxNTBaFw0yMDA1MzAxMDQxNTBaMGQxCzAJ -BgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQIE5l -dHdvcmsxIDAeBgNVBAMTF0FkZFRydXN0IFB1YmxpYyBDQSBSb290MIIBIjANBgkqhkiG9w0BAQEF -AAOCAQ8AMIIBCgKCAQEA6Rowj4OIFMEg2Dybjxt+A3S72mnTRqX4jsIMEZBRpS9mVEBV6tsfSlbu -nyNu9DnLoblv8n75XYcmYZ4c+OLspoH4IcUkzBEMP9smcnrHAZcHF/nXGCwwfQ56HmIexkvA/X1i -d9NEHif2P0tEs7c42TkfYNVRknMDtABp4/MUTu7R3AnPdzRGULD4EfL+OHn3Bzn+UZKXC1sIXzSG -Aa2Il+tmzV7R/9x98oTaunet3IAIx6eH1lWfl2royBFkuucZKT8Rs3iQhCBSWxHveNCD9tVIkNAw -HM+A+WD+eeSI8t0A65RF62WUaUC6wNW0uLp9BBGo6zEFlpROWCGOn9Bg/QIDAQABo4HRMIHOMB0G -A1UdDgQWBBSBPjfYkrAfd59ctKtzquf2NGAv+jALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB -/zCBjgYDVR0jBIGGMIGDgBSBPjfYkrAfd59ctKtzquf2NGAv+qFopGYwZDELMAkGA1UEBhMCU0Ux -FDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRUcnVzdCBUVFAgTmV0d29yazEgMB4G -A1UEAxMXQWRkVHJ1c3QgUHVibGljIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBAAP3FUr4 -JNojVhaTdt02KLmuG7jD8WS6IBh4lSknVwW8fCr0uVFV2ocC3g8WFzH4qnkuCRO7r7IgGRLlk/lL -+YPoRNWyQSW/iHVv/xD8SlTQX/D67zZzfRs2RcYhbbQVuE7PnFylPVoAjgbjPGsye/Kf8Lb93/Ao -GEjwxrzQvzSAlsJKsW2Ox5BF3i9nrEUEo3rcVZLJR2bYGozH7ZxOmuASu7VqTITh4SINhwBk/ox9 -Yjllpu9CtoAlEmEBqCQTcAARJl/6NVDFSMwGR+gn2HCNX2TmoUQmXiLsks3/QppEIW1cxeMiHV9H -EufOX1362KqxMy3ZdvJOOjMMK7MtkAY= ------END CERTIFICATE----- - -AddTrust Qualified Certificates Root -==================================== ------BEGIN CERTIFICATE----- -MIIEHjCCAwagAwIBAgIBATANBgkqhkiG9w0BAQUFADBnMQswCQYDVQQGEwJTRTEUMBIGA1UEChML -QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSMwIQYDVQQDExpBZGRU -cnVzdCBRdWFsaWZpZWQgQ0EgUm9vdDAeFw0wMDA1MzAxMDQ0NTBaFw0yMDA1MzAxMDQ0NTBaMGcx -CzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQ -IE5ldHdvcmsxIzAhBgNVBAMTGkFkZFRydXN0IFF1YWxpZmllZCBDQSBSb290MIIBIjANBgkqhkiG -9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5B6a/twJWoekn0e+EV+vhDTbYjx5eLfpMLXsDBwqxBb/4Oxx -64r1EW7tTw2R0hIYLUkVAcKkIhPHEWT/IhKauY5cLwjPcWqzZwFZ8V1G87B4pfYOQnrjfxvM0PC3 -KP0q6p6zsLkEqv32x7SxuCqg+1jxGaBvcCV+PmlKfw8i2O+tCBGaKZnhqkRFmhJePp1tUvznoD1o -L/BLcHwTOK28FSXx1s6rosAx1i+f4P8UWfyEk9mHfExUE+uf0S0R+Bg6Ot4l2ffTQO2kBhLEO+GR -wVY18BTcZTYJbqukB8c10cIDMzZbdSZtQvESa0NvS3GU+jQd7RNuyoB/mC9suWXY6QIDAQABo4HU -MIHRMB0GA1UdDgQWBBQ5lYtii1zJ1IC6WA+XPxUIQ8yYpzALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/ -BAUwAwEB/zCBkQYDVR0jBIGJMIGGgBQ5lYtii1zJ1IC6WA+XPxUIQ8yYp6FrpGkwZzELMAkGA1UE -BhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRUcnVzdCBUVFAgTmV0d29y -azEjMCEGA1UEAxMaQWRkVHJ1c3QgUXVhbGlmaWVkIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQAD -ggEBABmrder4i2VhlRO6aQTvhsoToMeqT2QbPxj2qC0sVY8FtzDqQmodwCVRLae/DLPt7wh/bDxG -GuoYQ992zPlmhpwsaPXpF/gxsxjE1kh9I0xowX67ARRvxdlu3rsEQmr49lx95dr6h+sNNVJn0J6X -dgWTP5XHAeZpVTh/EGGZyeNfpso+gmNIquIISD6q8rKFYqa0p9m9N5xotS1WfbC3P6CxB9bpT9ze -RXEwMn8bLgn5v1Kh7sKAPgZcLlVAwRv1cEWw3F369nJad9Jjzc9YiQBCYz95OdBEsIJuQRno3eDB -iFrRHnGTHyQwdOUeqN48Jzd/g66ed8/wMLH/S5noxqE= ------END CERTIFICATE----- - -Entrust Root Certification Authority -==================================== ------BEGIN CERTIFICATE----- -MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMCVVMxFjAUBgNV -BAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0Lm5ldC9DUFMgaXMgaW5jb3Jw -b3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMWKGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsG -A1UEAxMkRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0 -MloXDTI2MTEyNzIwNTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMu -MTkwNwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSByZWZlcmVu -Y2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNVBAMTJEVudHJ1c3QgUm9v -dCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB -ALaVtkNC+sZtKm9I35RMOVcF7sN5EUFoNu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYsz -A9u3g3s+IIRe7bJWKKf44LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOww -Cj0Yzfv9KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGIrb68 -j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi94DkZfs0Nw4pgHBN -rziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOBsDCBrTAOBgNVHQ8BAf8EBAMCAQYw -DwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAigA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1 -MzQyWjAfBgNVHSMEGDAWgBRokORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DH -hmak8fdLQ/uEvW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA -A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9tO1KzKtvn1ISM -Y/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6ZuaAGAT/3B+XxFNSRuzFVJ7yVTa -v52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTS -W3iDVuycNsMm4hH2Z0kdkquM++v/eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0 -tHuu2guQOHXvgR1m0vdXcDazv/wor3ElhVsT/h5/WrQ8 ------END CERTIFICATE----- - -RSA Security 2048 v3 -==================== ------BEGIN CERTIFICATE----- -MIIDYTCCAkmgAwIBAgIQCgEBAQAAAnwAAAAKAAAAAjANBgkqhkiG9w0BAQUFADA6MRkwFwYDVQQK -ExBSU0EgU2VjdXJpdHkgSW5jMR0wGwYDVQQLExRSU0EgU2VjdXJpdHkgMjA0OCBWMzAeFw0wMTAy -MjIyMDM5MjNaFw0yNjAyMjIyMDM5MjNaMDoxGTAXBgNVBAoTEFJTQSBTZWN1cml0eSBJbmMxHTAb -BgNVBAsTFFJTQSBTZWN1cml0eSAyMDQ4IFYzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC -AQEAt49VcdKA3XtpeafwGFAyPGJn9gqVB93mG/Oe2dJBVGutn3y+Gc37RqtBaB4Y6lXIL5F4iSj7 -Jylg/9+PjDvJSZu1pJTOAeo+tWN7fyb9Gd3AIb2E0S1PRsNO3Ng3OTsor8udGuorryGlwSMiuLgb -WhOHV4PR8CDn6E8jQrAApX2J6elhc5SYcSa8LWrg903w8bYqODGBDSnhAMFRD0xS+ARaqn1y07iH -KrtjEAMqs6FPDVpeRrc9DvV07Jmf+T0kgYim3WBU6JU2PcYJk5qjEoAAVZkZR73QpXzDuvsf9/UP -+Ky5tfQ3mBMY3oVbtwyCO4dvlTlYMNpuAWgXIszACwIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/ -MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBQHw1EwpKrpRa41JPr/JCwz0LGdjDAdBgNVHQ4E -FgQUB8NRMKSq6UWuNST6/yQsM9CxnYwwDQYJKoZIhvcNAQEFBQADggEBAF8+hnZuuDU8TjYcHnmY -v/3VEhF5Ug7uMYm83X/50cYVIeiKAVQNOvtUudZj1LGqlk2iQk3UUx+LEN5/Zb5gEydxiKRz44Rj -0aRV4VCT5hsOedBnvEbIvz8XDZXmxpBp3ue0L96VfdASPz0+f00/FGj1EVDVwfSQpQgdMWD/YIwj -VAqv/qFuxdF6Kmh4zx6CCiC0H63lhbJqaHVOrSU3lIW+vaHU6rcMSzyd6BIA8F+sDeGscGNz9395 -nzIlQnQFgCi/vcEkllgVsRch6YlL2weIZ/QVrXA+L02FO8K32/6YaCOJ4XQP3vTFhGMpG8zLB8kA -pKnXwiJPZ9d37CAFYd4= ------END CERTIFICATE----- - -GeoTrust Global CA -================== ------BEGIN CERTIFICATE----- -MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVTMRYwFAYDVQQK -Ew1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9iYWwgQ0EwHhcNMDIwNTIxMDQw -MDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5j -LjEbMBkGA1UEAxMSR2VvVHJ1c3QgR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB -CgKCAQEA2swYYzD99BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjo -BbdqfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDviS2Aelet -8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU1XupGc1V3sjs0l44U+Vc -T4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+bw8HHa8sHo9gOeL6NlMTOdReJivbPagU -vTLrGAMoUgRx5aszPeE4uwc2hGKceeoWMPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTAD -AQH/MB0GA1UdDgQWBBTAephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVk -DBF9qn1luMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKInZ57Q -zxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfStQWVYrmm3ok9Nns4 -d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcFPseKUgzbFbS9bZvlxrFUaKnjaZC2 -mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Unhw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6p -XE0zX5IJL4hmXXeXxx12E6nV5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvm -Mw== ------END CERTIFICATE----- - -GeoTrust Global CA 2 -==================== ------BEGIN CERTIFICATE----- -MIIDZjCCAk6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBEMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN -R2VvVHJ1c3QgSW5jLjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFsIENBIDIwHhcNMDQwMzA0MDUw -MDAwWhcNMTkwMzA0MDUwMDAwWjBEMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5j -LjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFsIENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw -ggEKAoIBAQDvPE1APRDfO1MA4Wf+lGAVPoWI8YkNkMgoI5kF6CsgncbzYEbYwbLVjDHZ3CB5JIG/ -NTL8Y2nbsSpr7iFY8gjpeMtvy/wWUsiRxP89c96xPqfCfWbB9X5SJBri1WeR0IIQ13hLTytCOb1k -LUCgsBDTOEhGiKEMuzozKmKY+wCdE1l/bztyqu6mD4b5BWHqZ38MN5aL5mkWRxHCJ1kDs6ZgwiFA -Vvqgx306E+PsV8ez1q6diYD3Aecs9pYrEw15LNnA5IZ7S4wMcoKK+xfNAGw6EzywhIdLFnopsk/b -HdQL82Y3vdj2V7teJHq4PIu5+pIaGoSe2HSPqht/XvT+RSIhAgMBAAGjYzBhMA8GA1UdEwEB/wQF -MAMBAf8wHQYDVR0OBBYEFHE4NvICMVNHK266ZUapEBVYIAUJMB8GA1UdIwQYMBaAFHE4NvICMVNH -K266ZUapEBVYIAUJMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQUFAAOCAQEAA/e1K6tdEPx7 -srJerJsOflN4WT5CBP51o62sgU7XAotexC3IUnbHLB/8gTKY0UvGkpMzNTEv/NgdRN3ggX+d6Yvh -ZJFiCzkIjKx0nVnZellSlxG5FntvRdOW2TF9AjYPnDtuzywNA0ZF66D0f0hExghAzN4bcLUprbqL -OzRldRtxIR0sFAqwlpW41uryZfspuk/qkZN0abby/+Ea0AzRdoXLiiW9l14sbxWZJue2Kf8i7MkC -x1YAzUm5s2x7UwQa4qjJqhIFI8LO57sEAszAR6LkxCkvW0VXiVHuPOtSCP8HNR6fNWpHSlaY0VqF -H4z1Ir+rzoPz4iIprn2DQKi6bA== ------END CERTIFICATE----- - -GeoTrust Universal CA -===================== ------BEGIN CERTIFICATE----- -MIIFaDCCA1CgAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN -R2VvVHJ1c3QgSW5jLjEeMBwGA1UEAxMVR2VvVHJ1c3QgVW5pdmVyc2FsIENBMB4XDTA0MDMwNDA1 -MDAwMFoXDTI5MDMwNDA1MDAwMFowRTELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IElu -Yy4xHjAcBgNVBAMTFUdlb1RydXN0IFVuaXZlcnNhbCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIP -ADCCAgoCggIBAKYVVaCjxuAfjJ0hUNfBvitbtaSeodlyWL0AG0y/YckUHUWCq8YdgNY96xCcOq9t -JPi8cQGeBvV8Xx7BDlXKg5pZMK4ZyzBIle0iN430SppyZj6tlcDgFgDgEB8rMQ7XlFTTQjOgNB0e -RXbdT8oYN+yFFXoZCPzVx5zw8qkuEKmS5j1YPakWaDwvdSEYfyh3peFhF7em6fgemdtzbvQKoiFs -7tqqhZJmr/Z6a4LauiIINQ/PQvE1+mrufislzDoR5G2vc7J2Ha3QsnhnGqQ5HFELZ1aD/ThdDc7d -8Lsrlh/eezJS/R27tQahsiFepdaVaH/wmZ7cRQg+59IJDTWU3YBOU5fXtQlEIGQWFwMCTFMNaN7V -qnJNk22CDtucvc+081xdVHppCZbW2xHBjXWotM85yM48vCR85mLK4b19p71XZQvk/iXttmkQ3Cga -Rr0BHdCXteGYO8A3ZNY9lO4L4fUorgtWv3GLIylBjobFS1J72HGrH4oVpjuDWtdYAVHGTEHZf9hB -Z3KiKN9gg6meyHv8U3NyWfWTehd2Ds735VzZC1U0oqpbtWpU5xPKV+yXbfReBi9Fi1jUIxaS5BZu -KGNZMN9QAZxjiRqf2xeUgnA3wySemkfWWspOqGmJch+RbNt+nhutxx9z3SxPGWX9f5NAEC7S8O08 -ni4oPmkmM8V7AgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNq7LqqwDLiIJlF0 -XG0D08DYj3rWMB8GA1UdIwQYMBaAFNq7LqqwDLiIJlF0XG0D08DYj3rWMA4GA1UdDwEB/wQEAwIB -hjANBgkqhkiG9w0BAQUFAAOCAgEAMXjmx7XfuJRAyXHEqDXsRh3ChfMoWIawC/yOsjmPRFWrZIRc -aanQmjg8+uUfNeVE44B5lGiku8SfPeE0zTBGi1QrlaXv9z+ZhP015s8xxtxqv6fXIwjhmF7DWgh2 -qaavdy+3YL1ERmrvl/9zlcGO6JP7/TG37FcREUWbMPEaiDnBTzynANXH/KttgCJwpQzgXQQpAvvL -oJHRfNbDflDVnVi+QTjruXU8FdmbyUqDWcDaU/0zuzYYm4UPFd3uLax2k7nZAY1IEKj79TiG8dsK -xr2EoyNB3tZ3b4XUhRxQ4K5RirqNPnbiucon8l+f725ZDQbYKxek0nxru18UGkiPGkzns0ccjkxF -KyDuSN/n3QmOGKjaQI2SJhFTYXNd673nxE0pN2HrrDktZy4W1vUAg4WhzH92xH3kt0tm7wNFYGm2 -DFKWkoRepqO1pD4r2czYG0eq8kTaT/kD6PAUyz/zg97QwVTjt+gKN02LIFkDMBmhLMi9ER/frslK -xfMnZmaGrGiR/9nmUxwPi1xpZQomyB40w11Re9epnAahNt3ViZS82eQtDF4JbAiXfKM9fJP/P6EU -p8+1Xevb2xzEdt+Iub1FBZUbrvxGakyvSOPOrg/SfuvmbJxPgWp6ZKy7PtXny3YuxadIwVyQD8vI -P/rmMuGNG2+k5o7Y+SlIis5z/iw= ------END CERTIFICATE----- - -GeoTrust Universal CA 2 -======================= ------BEGIN CERTIFICATE----- -MIIFbDCCA1SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBHMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN -R2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVyc2FsIENBIDIwHhcNMDQwMzA0 -MDUwMDAwWhcNMjkwMzA0MDUwMDAwWjBHMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3Qg -SW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVyc2FsIENBIDIwggIiMA0GCSqGSIb3DQEBAQUA -A4ICDwAwggIKAoICAQCzVFLByT7y2dyxUxpZKeexw0Uo5dfR7cXFS6GqdHtXr0om/Nj1XqduGdt0 -DE81WzILAePb63p3NeqqWuDW6KFXlPCQo3RWlEQwAx5cTiuFJnSCegx2oG9NzkEtoBUGFF+3Qs17 -j1hhNNwqCPkuwwGmIkQcTAeC5lvO0Ep8BNMZcyfwqph/Lq9O64ceJHdqXbboW0W63MOhBW9Wjo8Q -JqVJwy7XQYci4E+GymC16qFjwAGXEHm9ADwSbSsVsaxLse4YuU6W3Nx2/zu+z18DwPw76L5GG//a -QMJS9/7jOvdqdzXQ2o3rXhhqMcceujwbKNZrVMaqW9eiLBsZzKIC9ptZvTdrhrVtgrrY6slWvKk2 -WP0+GfPtDCapkzj4T8FdIgbQl+rhrcZV4IErKIM6+vR7IVEAvlI4zs1meaj0gVbi0IMJR1FbUGrP -20gaXT73y/Zl92zxlfgCOzJWgjl6W70viRu/obTo/3+NjN8D8WBOWBFM66M/ECuDmgFz2ZRthAAn -ZqzwcEAJQpKtT5MNYQlRJNiS1QuUYbKHsu3/mjX/hVTK7URDrBs8FmtISgocQIgfksILAAX/8sgC -SqSqqcyZlpwvWOB94b67B9xfBHJcMTTD7F8t4D1kkCLm0ey4Lt1ZrtmhN79UNdxzMk+MBB4zsslG -8dhcyFVQyWi9qLo2CQIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR281Xh+qQ2 -+/CfXGJx7Tz0RzgQKzAfBgNVHSMEGDAWgBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAOBgNVHQ8BAf8E -BAMCAYYwDQYJKoZIhvcNAQEFBQADggIBAGbBxiPz2eAubl/oz66wsCVNK/g7WJtAJDday6sWSf+z -dXkzoS9tcBc0kf5nfo/sm+VegqlVHy/c1FEHEv6sFj4sNcZj/NwQ6w2jqtB8zNHQL1EuxBRa3ugZ -4T7GzKQp5y6EqgYweHZUcyiYWTjgAA1i00J9IZ+uPTqM1fp3DRgrFg5fNuH8KrUwJM/gYwx7WBr+ -mbpCErGR9Hxo4sjoryzqyX6uuyo9DRXcNJW2GHSoag/HtPQTxORb7QrSpJdMKu0vbBKJPfEncKpq -A1Ihn0CoZ1Dy81of398j9tx4TuaYT1U6U+Pv8vSfx3zYWK8pIpe44L2RLrB27FcRz+8pRPPphXpg -Y+RdM4kX2TGq2tbzGDVyz4crL2MjhF2EjD9XoIj8mZEoJmmZ1I+XRL6O1UixpCgp8RW04eWe3fiP -pm8m1wk8OhwRDqZsN/etRIcsKMfYdIKz0G9KV7s1KSegi+ghp4dkNl3M2Basx7InQJJVOCiNUW7d -FGdTbHFcJoRNdVq2fmBWqU2t+5sel/MN2dKXVHfaPRK34B7vCAas+YWH6aLcr34YEoP9VhdBLtUp -gn2Z9DH2canPLAEnpQW5qrJITirvn5NSUZU8UnOOVkwXQMAJKOSLakhT2+zNVVXxxvjpoixMptEm -X36vWkzaH6byHCx+rgIW0lbQL1dTR+iS ------END CERTIFICATE----- - -Visa eCommerce Root -=================== ------BEGIN CERTIFICATE----- -MIIDojCCAoqgAwIBAgIQE4Y1TR0/BvLB+WUF1ZAcYjANBgkqhkiG9w0BAQUFADBrMQswCQYDVQQG -EwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRlcm5hdGlvbmFsIFNlcnZpY2Ug -QXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNvbW1lcmNlIFJvb3QwHhcNMDIwNjI2MDIxODM2 -WhcNMjIwNjI0MDAxNjEyWjBrMQswCQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMm -VmlzYSBJbnRlcm5hdGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNv -bW1lcmNlIFJvb3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvV95WHm6h2mCxlCfL -F9sHP4CFT8icttD0b0/Pmdjh28JIXDqsOTPHH2qLJj0rNfVIsZHBAk4ElpF7sDPwsRROEW+1QK8b -RaVK7362rPKgH1g/EkZgPI2h4H3PVz4zHvtH8aoVlwdVZqW1LS7YgFmypw23RuwhY/81q6UCzyr0 -TP579ZRdhE2o8mCP2w4lPJ9zcc+U30rq299yOIzzlr3xF7zSujtFWsan9sYXiwGd/BmoKoMWuDpI -/k4+oKsGGelT84ATB+0tvz8KPFUgOSwsAGl0lUq8ILKpeeUYiZGo3BxN77t+Nwtd/jmliFKMAGzs -GHxBvfaLdXe6YJ2E5/4tAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEG -MB0GA1UdDgQWBBQVOIMPPyw/cDMezUb+B4wg4NfDtzANBgkqhkiG9w0BAQUFAAOCAQEAX/FBfXxc -CLkr4NWSR/pnXKUTwwMhmytMiUbPWU3J/qVAtmPN3XEolWcRzCSs00Rsca4BIGsDoo8Ytyk6feUW -YFN4PMCvFYP3j1IzJL1kk5fui/fbGKhtcbP3LBfQdCVp9/5rPJS+TUtBjE7ic9DjkCJzQ83z7+pz -zkWKsKZJ/0x9nXGIxHYdkFsd7v3M9+79YKWxehZx0RbQfBI8bGmX265fOZpwLwU8GUYEmSA20GBu -YQa7FkKMcPcw++DbZqMAAb3mLNqRX6BGi01qnD093QVG/na/oAo85ADmJ7f/hC3euiInlhBx6yLt -398znM/jra6O1I7mT1GvFpLgXPYHDw== ------END CERTIFICATE----- - -Certum Root CA -============== ------BEGIN CERTIFICATE----- -MIIDDDCCAfSgAwIBAgIDAQAgMA0GCSqGSIb3DQEBBQUAMD4xCzAJBgNVBAYTAlBMMRswGQYDVQQK -ExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBDQTAeFw0wMjA2MTExMDQ2Mzla -Fw0yNzA2MTExMDQ2MzlaMD4xCzAJBgNVBAYTAlBMMRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8u -by4xEjAQBgNVBAMTCUNlcnR1bSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM6x -wS7TT3zNJc4YPk/EjG+AanPIW1H4m9LcuwBcsaD8dQPugfCI7iNS6eYVM42sLQnFdvkrOYCJ5JdL -kKWoePhzQ3ukYbDYWMzhbGZ+nPMJXlVjhNWo7/OxLjBos8Q82KxujZlakE403Daaj4GIULdtlkIJ -89eVgw1BS7Bqa/j8D35in2fE7SZfECYPCE/wpFcozo+47UX2bu4lXapuOb7kky/ZR6By6/qmW6/K -Uz/iDsaWVhFu9+lmqSbYf5VT7QqFiLpPKaVCjF62/IUgAKpoC6EahQGcxEZjgoi2IrHu/qpGWX7P -NSzVttpd90gzFFS269lvzs2I1qsb2pY7HVkCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkq -hkiG9w0BAQUFAAOCAQEAuI3O7+cUus/usESSbLQ5PqKEbq24IXfS1HeCh+YgQYHu4vgRt2PRFze+ -GXYkHAQaTOs9qmdvLdTN/mUxcMUbpgIKumB7bVjCmkn+YzILa+M6wKyrO7Do0wlRjBCDxjTgxSvg -GrZgFCdsMneMvLJymM/NzD+5yCRCFNZX/OYmQ6kd5YCQzgNUKD73P9P4Te1qCjqTE5s7FCMTY5w/ -0YcneeVMUeMBrYVdGjux1XMQpNPyvG5k9VpWkKjHDkx0Dy5xO/fIR/RpbxXyEV6DHpx8Uq79AtoS -qFlnGNu8cN2bsWntgM6JQEhqDjXKKWYVIZQs6GAqm4VKQPNriiTsBhYscw== ------END CERTIFICATE----- - -Comodo AAA Services root -======================== ------BEGIN CERTIFICATE----- -MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS -R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg -TGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAw -MFoXDTI4MTIzMTIzNTk1OVowezELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hl -c3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNV -BAMMGEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC -ggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQuaBtDFcCLNSS1UY8y2bmhG -C1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe3M/vg4aijJRPn2jymJBGhCfHdr/jzDUs -i14HZGWCwEiwqJH5YZ92IFCokcdmtet4YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszW -Y19zjNoFmag4qMsXeDZRrOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjH -Ypy+g8cmez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQUoBEK -Iz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wewYDVR0f -BHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20vQUFBQ2VydGlmaWNhdGVTZXJ2aWNl -cy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29tb2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2Vz -LmNybDANBgkqhkiG9w0BAQUFAAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm -7l3sAg9g1o1QGE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz -Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2G9w84FoVxp7Z -8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsil2D4kF501KKaU73yqWjgom7C -12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== ------END CERTIFICATE----- - -Comodo Secure Services root -=========================== ------BEGIN CERTIFICATE----- -MIIEPzCCAyegAwIBAgIBATANBgkqhkiG9w0BAQUFADB+MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS -R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg -TGltaXRlZDEkMCIGA1UEAwwbU2VjdXJlIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAw -MDAwMFoXDTI4MTIzMTIzNTk1OVowfjELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFu -Y2hlc3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxJDAi -BgNVBAMMG1NlY3VyZSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP -ADCCAQoCggEBAMBxM4KK0HDrc4eCQNUd5MvJDkKQ+d40uaG6EfQlhfPMcm3ye5drswfxdySRXyWP -9nQ95IDC+DwN879A6vfIUtFyb+/Iq0G4bi4XKpVpDM3SHpR7LZQdqnXXs5jLrLxkU0C8j6ysNstc -rbvd4JQX7NFc0L/vpZXJkMWwrPsbQ996CF23uPJAGysnnlDOXmWCiIxe004MeuoIkbY2qitC++rC -oznl2yY4rYsK7hljxxwk3wN42ubqwUcaCwtGCd0C/N7Lh1/XMGNooa7cMqG6vv5Eq2i2pRcV/b3V -p6ea5EQz6YiO/O1R65NxTq0B50SOqy3LqP4BSUjwwN3HaNiS/j0CAwEAAaOBxzCBxDAdBgNVHQ4E -FgQUPNiTiMLAggnMAZkGkyDpnnAJY08wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w -gYEGA1UdHwR6MHgwO6A5oDeGNWh0dHA6Ly9jcmwuY29tb2RvY2EuY29tL1NlY3VyZUNlcnRpZmlj -YXRlU2VydmljZXMuY3JsMDmgN6A1hjNodHRwOi8vY3JsLmNvbW9kby5uZXQvU2VjdXJlQ2VydGlm -aWNhdGVTZXJ2aWNlcy5jcmwwDQYJKoZIhvcNAQEFBQADggEBAIcBbSMdflsXfcFhMs+P5/OKlFlm -4J4oqF7Tt/Q05qo5spcWxYJvMqTpjOev/e/C6LlLqqP05tqNZSH7uoDrJiiFGv45jN5bBAS0VPmj -Z55B+glSzAVIqMk/IQQezkhr/IXownuvf7fM+F86/TXGDe+X3EyrEeFryzHRbPtIgKvcnDe4IRRL -DXE97IMzbtFuMhbsmMcWi1mmNKsFVy2T96oTy9IT4rcuO81rUBcJaD61JlfutuC23bkpgHl9j6Pw -pCikFcSF9CfUa7/lXORlAnZUtOM3ZiTTGWHIUhDlizeauan5Hb/qmZJhlv8BzaFfDbxxvA6sCx1H -RR3B7Hzs/Sk= ------END CERTIFICATE----- - -Comodo Trusted Services root -============================ ------BEGIN CERTIFICATE----- -MIIEQzCCAyugAwIBAgIBATANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS -R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg -TGltaXRlZDElMCMGA1UEAwwcVHJ1c3RlZCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczAeFw0wNDAxMDEw -MDAwMDBaFw0yODEyMzEyMzU5NTlaMH8xCzAJBgNVBAYTAkdCMRswGQYDVQQIDBJHcmVhdGVyIE1h -bmNoZXN0ZXIxEDAOBgNVBAcMB1NhbGZvcmQxGjAYBgNVBAoMEUNvbW9kbyBDQSBMaW1pdGVkMSUw -IwYDVQQDDBxUcnVzdGVkIENlcnRpZmljYXRlIFNlcnZpY2VzMIIBIjANBgkqhkiG9w0BAQEFAAOC -AQ8AMIIBCgKCAQEA33FvNlhTWvI2VFeAxHQIIO0Yfyod5jWaHiWsnOWWfnJSoBVC21ndZHoa0Lh7 -3TkVvFVIxO06AOoxEbrycXQaZ7jPM8yoMa+j49d/vzMtTGo87IvDktJTdyR0nAducPy9C1t2ul/y -/9c3S0pgePfw+spwtOpZqqPOSC+pw7ILfhdyFgymBwwbOM/JYrc/oJOlh0Hyt3BAd9i+FHzjqMB6 -juljatEPmsbS9Is6FARW1O24zG71++IsWL1/T2sr92AkWCTOJu80kTrV44HQsvAEAtdbtz6SrGsS -ivnkBbA7kUlcsutT6vifR4buv5XAwAaf0lteERv0xwQ1KdJVXOTt6wIDAQABo4HJMIHGMB0GA1Ud -DgQWBBTFe1i97doladL3WRaoszLAeydb9DAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB -/zCBgwYDVR0fBHwwejA8oDqgOIY2aHR0cDovL2NybC5jb21vZG9jYS5jb20vVHJ1c3RlZENlcnRp -ZmljYXRlU2VydmljZXMuY3JsMDqgOKA2hjRodHRwOi8vY3JsLmNvbW9kby5uZXQvVHJ1c3RlZENl -cnRpZmljYXRlU2VydmljZXMuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQDIk4E7ibSvuIQSTI3S8Ntw -uleGFTQQuS9/HrCoiWChisJ3DFBKmwCL2Iv0QeLQg4pKHBQGsKNoBXAxMKdTmw7pSqBYaWcOrp32 -pSxBvzwGa+RZzG0Q8ZZvH9/0BAKkn0U+yNj6NkZEUD+Cl5EfKNsYEYwq5GWDVxISjBc/lDb+XbDA -BHcTuPQV1T84zJQ6VdCsmPW6AF/ghhmBeC8owH7TzEIK9a5QoNE+xqFx7D+gIIxmOom0jtTYsU0l -R+4viMi14QVFwL4Ucd56/Y57fU0IlqUSc/AtyjcndBInTMu2l+nZrghtWjlA3QVHdWpaIbOjGM9O -9y5Xt5hwXsjEeLBi ------END CERTIFICATE----- - -QuoVadis Root CA -================ ------BEGIN CERTIFICATE----- -MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJCTTEZMBcGA1UE -ChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0 -eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAz -MTkxODMzMzNaFw0yMTAzMTcxODMzMzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRp -cyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQD -EyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF -AAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Ypli4kVEAkOPcahdxYTMuk -J0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2DrOpm2RgbaIr1VxqYuvXtdj182d6UajtL -F8HVj71lODqV0D1VNk7feVcxKh7YWWVJWCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeL -YzcS19Dsw3sgQUSj7cugF+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWen -AScOospUxbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCCAk4w -PQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVvdmFkaXNvZmZzaG9y -ZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREwggENMIIBCQYJKwYBBAG+WAABMIH7 -MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNlIG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmlj -YXRlIGJ5IGFueSBwYXJ0eSBhc3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJs -ZSBzdGFuZGFyZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh -Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYIKwYBBQUHAgEW -Fmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3TKbkGGew5Oanwl4Rqy+/fMIGu -BgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rqy+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkw -FwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0 -aG9yaXR5MS4wLAYDVQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6 -tlCLMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSkfnIYj9lo -fFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf87C9TqnN7Az10buYWnuul -LsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1RcHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2x -gI4JVrmcGmD+XcHXetwReNDWXcG31a0ymQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi -5upZIof4l/UO/erMkqQWxFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi -5nrQNiOKSnQ2+Q== ------END CERTIFICATE----- - -QuoVadis Root CA 2 -================== ------BEGIN CERTIFICATE----- -MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT -EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMjAeFw0wNjExMjQx -ODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM -aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4IC -DwAwggIKAoICAQCaGMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6 -XJxgFyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55JWpzmM+Yk -lvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bBrrcCaoF6qUWD4gXmuVbB -lDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp+ARz8un+XJiM9XOva7R+zdRcAitMOeGy -lZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt -66/3FsvbzSUr5R/7mp/iUcw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1Jdxn -wQ5hYIizPtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og/zOh -D7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UHoycR7hYQe7xFSkyy -BNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuIyV77zGHcizN300QyNQliBJIWENie -J0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1Ud -DgQWBBQahGK8SEwzJQTU7tD2A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGU -a6FJpEcwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT -ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2fBluornFdLwUv -Z+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzng/iN/Ae42l9NLmeyhP3ZRPx3 -UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2BlfF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodm -VjB3pjd4M1IQWK4/YY7yarHvGH5KWWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK -+JDSV6IZUaUtl0HaB0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrW -IozchLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPRTUIZ3Ph1 -WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWDmbA4CD/pXvk1B+TJYm5X -f6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0ZohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II -4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8 -VCLAAVBpQ570su9t+Oza8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u ------END CERTIFICATE----- - -QuoVadis Root CA 3 -================== ------BEGIN CERTIFICATE----- -MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT -EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMzAeFw0wNjExMjQx -OTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM -aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4IC -DwAwggIKAoICAQDMV0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNgg -DhoB4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUrH556VOij -KTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd8lyyBTNvijbO0BNO/79K -DDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9CabwvvWhDFlaJKjdhkf2mrk7AyxRllDdLkgbv -BNDInIjbC3uBr7E9KsRlOni27tyAsdLTmZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwp -p5ijJUMv7/FfJuGITfhebtfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8 -nT8KKdjcT5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDtWAEX -MJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZc6tsgLjoC2SToJyM -Gf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A4iLItLRkT9a6fUg+qGkM17uGcclz -uD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYDVR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHT -BgkrBgEEAb5YAAMwgcUwgZMGCCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmlj -YXRlIGNvbnN0aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 -aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVudC4wLQYIKwYB -BQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2NwczALBgNVHQ8EBAMCAQYwHQYD -VR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4GA1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4 -ywLQoUmkRzBFMQswCQYDVQQGEwJCTTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UE -AxMSUXVvVmFkaXMgUm9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZV -qyM07ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSemd1o417+s -hvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd+LJ2w/w4E6oM3kJpK27z -POuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2 -Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadNt54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp -8kokUvd0/bpO5qgdAm6xDYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBC -bjPsMZ57k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6szHXu -g/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0jWy10QJLZYxkNc91p -vGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeTmJlglFwjz1onl14LBQaTNx47aTbr -qZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK4SVhM7JZG+Ju1zdXtg2pEto= ------END CERTIFICATE----- - -Security Communication Root CA -============================== ------BEGIN CERTIFICATE----- -MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP -U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw -HhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP -U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw -ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw -8yl89f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJDKaVv0uM -DPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9Ms+k2Y7CI9eNqPPYJayX -5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/NQV3Is00qVUarH9oe4kA92819uZKAnDfd -DJZkndwi92SL32HeFZRSFaB9UslLqCHJxrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2 -JChzAgMBAAGjPzA9MB0GA1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYw -DwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vGkl3g -0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfrUj94nK9NrvjVT8+a -mCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5Bw+SUEmK3TGXX8npN6o7WWWXlDLJ -s58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJUJRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ -6rBK+1YWc26sTfcioU+tHXotRSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAi -FL39vmwLAw== ------END CERTIFICATE----- - -Sonera Class 2 Root CA -====================== ------BEGIN CERTIFICATE----- -MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEPMA0GA1UEChMG -U29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAxMDQwNjA3Mjk0MFoXDTIxMDQw -NjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNVBAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJh -IENsYXNzMiBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3 -/Ei9vX+ALTU74W+oZ6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybT -dXnt5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s3TmVToMG -f+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2EjvOr7nQKV0ba5cTppCD8P -tOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu8nYybieDwnPz3BjotJPqdURrBGAgcVeH -nfO+oJAjPYok4doh28MCAwEAAaMzMDEwDwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITT -XjwwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt -0jSv9zilzqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/3DEI -cbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvDFNr450kkkdAdavph -Oe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6Tk6ezAyNlNzZRZxe7EJQY670XcSx -EtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLH -llpwrN9M ------END CERTIFICATE----- - -UTN USERFirst Hardware Root CA -============================== ------BEGIN CERTIFICATE----- -MIIEdDCCA1ygAwIBAgIQRL4Mi1AAJLQR0zYq/mUK/TANBgkqhkiG9w0BAQUFADCBlzELMAkGA1UE -BhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhl -IFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xHzAd -BgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdhcmUwHhcNOTkwNzA5MTgxMDQyWhcNMTkwNzA5MTgx -OTIyWjCBlzELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0 -eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVz -ZXJ0cnVzdC5jb20xHzAdBgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdhcmUwggEiMA0GCSqGSIb3 -DQEBAQUAA4IBDwAwggEKAoIBAQCx98M4P7Sof885glFn0G2f0v9Y8+efK+wNiVSZuTiZFvfgIXlI -wrthdBKWHTxqctU8EGc6Oe0rE81m65UJM6Rsl7HoxuzBdXmcRl6Nq9Bq/bkqVRcQVLMZ8Jr28bFd -tqdt++BxF2uiiPsA3/4aMXcMmgF6sTLjKwEHOG7DpV4jvEWbe1DByTCP2+UretNb+zNAHqDVmBe8 -i4fDidNdoI6yqqr2jmmIBsX6iSHzCJ1pLgkzmykNRg+MzEk0sGlRvfkGzWitZky8PqxhvQqIDsjf -Pe58BEydCl5rkdbux+0ojatNh4lz0G6k0B4WixThdkQDf2Os5M1JnMWS9KsyoUhbAgMBAAGjgbkw -gbYwCwYDVR0PBAQDAgHGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFKFyXyYbKJhDlV0HN9WF -lp1L0sNFMEQGA1UdHwQ9MDswOaA3oDWGM2h0dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9VVE4tVVNF -UkZpcnN0LUhhcmR3YXJlLmNybDAxBgNVHSUEKjAoBggrBgEFBQcDAQYIKwYBBQUHAwUGCCsGAQUF -BwMGBggrBgEFBQcDBzANBgkqhkiG9w0BAQUFAAOCAQEARxkP3nTGmZev/K0oXnWO6y1n7k57K9cM -//bey1WiCuFMVGWTYGufEpytXoMs61quwOQt9ABjHbjAbPLPSbtNk28GpgoiskliCE7/yMgUsogW -XecB5BKV5UU0s4tpvc+0hY91UZ59Ojg6FEgSxvunOxqNDYJAB+gECJChicsZUN/KHAG8HQQZexB2 -lzvukJDKxA4fFm517zP4029bHpbj4HR3dHuKom4t3XbWOTCC8KucUvIqx69JXn7HaOWCgchqJ/kn -iCrVWFCVH/A7HFe7fRQ5YiuayZSSKqMiDP+JJn1fIytH1xUdqWqeUQ0qUZ6B+dQ7XnASfxAynB67 -nfhmqA== ------END CERTIFICATE----- - -Camerfirma Chambers of Commerce Root -==================================== ------BEGIN CERTIFICATE----- -MIIEvTCCA6WgAwIBAgIBADANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJFVTEnMCUGA1UEChMe -QUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1i -ZXJzaWduLm9yZzEiMCAGA1UEAxMZQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdDAeFw0wMzA5MzAx -NjEzNDNaFw0zNzA5MzAxNjEzNDRaMH8xCzAJBgNVBAYTAkVVMScwJQYDVQQKEx5BQyBDYW1lcmZp -cm1hIFNBIENJRiBBODI3NDMyODcxIzAhBgNVBAsTGmh0dHA6Ly93d3cuY2hhbWJlcnNpZ24ub3Jn -MSIwIAYDVQQDExlDaGFtYmVycyBvZiBDb21tZXJjZSBSb290MIIBIDANBgkqhkiG9w0BAQEFAAOC -AQ0AMIIBCAKCAQEAtzZV5aVdGDDg2olUkfzIx1L4L1DZ77F1c2VHfRtbunXF/KGIJPov7coISjlU -xFF6tdpg6jg8gbLL8bvZkSM/SAFwdakFKq0fcfPJVD0dBmpAPrMMhe5cG3nCYsS4No41XQEMIwRH -NaqbYE6gZj3LJgqcQKH0XZi/caulAGgq7YN6D6IUtdQis4CwPAxaUWktWBiP7Zme8a7ileb2R6jW -DA+wWFjbw2Y3npuRVDM30pQcakjJyfKl2qUMI/cjDpwyVV5xnIQFUZot/eZOKjRa3spAN2cMVCFV -d9oKDMyXroDclDZK9D7ONhMeU+SsTjoF7Nuucpw4i9A5O4kKPnf+dQIBA6OCAUQwggFAMBIGA1Ud -EwEB/wQIMAYBAf8CAQwwPAYDVR0fBDUwMzAxoC+gLYYraHR0cDovL2NybC5jaGFtYmVyc2lnbi5v -cmcvY2hhbWJlcnNyb290LmNybDAdBgNVHQ4EFgQU45T1sU3p26EpW1eLTXYGduHRooowDgYDVR0P -AQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzAnBgNVHREEIDAegRxjaGFtYmVyc3Jvb3RAY2hh -bWJlcnNpZ24ub3JnMCcGA1UdEgQgMB6BHGNoYW1iZXJzcm9vdEBjaGFtYmVyc2lnbi5vcmcwWAYD -VR0gBFEwTzBNBgsrBgEEAYGHLgoDATA+MDwGCCsGAQUFBwIBFjBodHRwOi8vY3BzLmNoYW1iZXJz -aWduLm9yZy9jcHMvY2hhbWJlcnNyb290Lmh0bWwwDQYJKoZIhvcNAQEFBQADggEBAAxBl8IahsAi -fJ/7kPMa0QOx7xP5IV8EnNrJpY0nbJaHkb5BkAFyk+cefV/2icZdp0AJPaxJRUXcLo0waLIJuvvD -L8y6C98/d3tGfToSJI6WjzwFCm/SlCgdbQzALogi1djPHRPH8EjX1wWnz8dHnjs8NMiAT9QUu/wN -UPf6s+xCX6ndbcj0dc97wXImsQEcXCz9ek60AcUFV7nnPKoF2YjpB0ZBzu9Bga5Y34OirsrXdx/n -ADydb47kMgkdTXg0eDQ8lJsm7U9xxhl6vSAiSFr+S30Dt+dYvsYyTnQeaN2oaFuzPu5ifdmA6Ap1 -erfutGWaIZDgqtCYvDi1czyL+Nw= ------END CERTIFICATE----- - -Camerfirma Global Chambersign Root -================================== ------BEGIN CERTIFICATE----- -MIIExTCCA62gAwIBAgIBADANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJFVTEnMCUGA1UEChMe -QUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1i -ZXJzaWduLm9yZzEgMB4GA1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwHhcNMDMwOTMwMTYx -NDE4WhcNMzcwOTMwMTYxNDE4WjB9MQswCQYDVQQGEwJFVTEnMCUGA1UEChMeQUMgQ2FtZXJmaXJt -YSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEg -MB4GA1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwggEgMA0GCSqGSIb3DQEBAQUAA4IBDQAw -ggEIAoIBAQCicKLQn0KuWxfH2H3PFIP8T8mhtxOviteePgQKkotgVvq0Mi+ITaFgCPS3CU6gSS9J -1tPfnZdan5QEcOw/Wdm3zGaLmFIoCQLfxS+EjXqXd7/sQJ0lcqu1PzKY+7e3/HKE5TWH+VX6ox8O -by4o3Wmg2UIQxvi1RMLQQ3/bvOSiPGpVeAp3qdjqGTK3L/5cPxvusZjsyq16aUXjlg9V9ubtdepl -6DJWk0aJqCWKZQbua795B9Dxt6/tLE2Su8CoX6dnfQTyFQhwrJLWfQTSM/tMtgsL+xrJxI0DqX5c -8lCrEqWhz0hQpe/SyBoT+rB/sYIcd2oPX9wLlY/vQ37mRQklAgEDo4IBUDCCAUwwEgYDVR0TAQH/ -BAgwBgEB/wIBDDA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLmNoYW1iZXJzaWduLm9yZy9j -aGFtYmVyc2lnbnJvb3QuY3JsMB0GA1UdDgQWBBRDnDafsJ4wTcbOX60Qq+UDpfqpFDAOBgNVHQ8B -Af8EBAMCAQYwEQYJYIZIAYb4QgEBBAQDAgAHMCoGA1UdEQQjMCGBH2NoYW1iZXJzaWducm9vdEBj -aGFtYmVyc2lnbi5vcmcwKgYDVR0SBCMwIYEfY2hhbWJlcnNpZ25yb290QGNoYW1iZXJzaWduLm9y -ZzBbBgNVHSAEVDBSMFAGCysGAQQBgYcuCgEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly9jcHMuY2hh -bWJlcnNpZ24ub3JnL2Nwcy9jaGFtYmVyc2lnbnJvb3QuaHRtbDANBgkqhkiG9w0BAQUFAAOCAQEA -PDtwkfkEVCeR4e3t/mh/YV3lQWVPMvEYBZRqHN4fcNs+ezICNLUMbKGKfKX0j//U2K0X1S0E0T9Y -gOKBWYi+wONGkyT+kL0mojAt6JcmVzWJdJYY9hXiryQZVgICsroPFOrGimbBhkVVi76SvpykBMdJ -PJ7oKXqJ1/6v/2j1pReQvayZzKWGVwlnRtvWFsJG8eSpUPWP0ZIV018+xgBJOm5YstHRJw0lyDL4 -IBHNfTIzSJRUTN3cecQwn+uOuFW114hcxWokPbLTBQNRxgfvzBRydD1ucs4YKIxKoHflCStFREes -t2d/AYoFWpO+ocH/+OcOZ6RHSXZddZAa9SaP8A== ------END CERTIFICATE----- - -XRamp Global CA Root -==================== ------BEGIN CERTIFICATE----- -MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCBgjELMAkGA1UE -BhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2Vj -dXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB -dXRob3JpdHkwHhcNMDQxMTAxMTcxNDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMx -HjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkg -U2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3Jp -dHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS638eMpSe2OAtp87ZOqCwu -IR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCPKZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMx -foArtYzAQDsRhtDLooY2YKTVMIJt2W7QDxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FE -zG+gSqmUsE3a56k0enI4qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqs -AxcZZPRaJSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNViPvry -xS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud -EwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASsjVy16bYbMDYGA1UdHwQvMC0wK6Ap -oCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMC -AQEwDQYJKoZIhvcNAQEFBQADggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc -/Kh4ZzXxHfARvbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt -qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLaIR9NmXmd4c8n -nxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSyi6mx5O+aGtA9aZnuqCij4Tyz -8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQO+7ETPTsJ3xCwnR8gooJybQDJbw= ------END CERTIFICATE----- - -Go Daddy Class 2 CA -=================== ------BEGIN CERTIFICATE----- -MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMY -VGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRp -ZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkG -A1UEBhMCVVMxITAfBgNVBAoTGFRoZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28g -RGFkZHkgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQAD -ggENADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCAPVYYYwhv -2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6wwdhFJ2+qN1j3hybX2C32 -qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXiEqITLdiOr18SPaAIBQi2XKVlOARFmR6j -YGB0xUGlcmIbYsUfb18aQr4CUWWoriMYavx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmY -vLEHZ6IVDd2gWMZEewo+YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0O -BBYEFNLEsNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h/t2o -atTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMu -MTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwG -A1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wim -PQoZ+YeAEW5p5JYXMP80kWNyOO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKt -I3lpjbi2Tc7PTMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ -HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mERdEr/VxqHD3VI -Ls9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5CufReYNnyicsbkqWletNw+vHX/b -vZ8= ------END CERTIFICATE----- - -Starfield Class 2 CA -==================== ------BEGIN CERTIFICATE----- -MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzElMCMGA1UEChMc -U3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZpZWxkIENsYXNzIDIg -Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQwNjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBo -MQswCQYDVQQGEwJVUzElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAG -A1UECxMpU3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqG -SIb3DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf8MOh2tTY -bitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN+lq2cwQlZut3f+dZxkqZ -JRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVm -epsZGD3/cVE8MC5fvj13c7JdBmzDI1aaK4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSN -F4Azbl5KXZnJHoe0nRrA1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HF -MIHCMB0GA1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fRzt0f -hvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNo -bm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24g -QXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGs -afPzWdqbAYcaT1epoXkJKtv3L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLM -PUxA2IGvd56Deruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl -xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynpVSJYACPq4xJD -KVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEYWQPJIrSPnNVeKtelttQKbfi3 -QBFGmh95DmK/D5fs4C8fF5Q= ------END CERTIFICATE----- - -StartCom Certification Authority -================================ ------BEGIN CERTIFICATE----- -MIIHyTCCBbGgAwIBAgIBATANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN -U3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmlu -ZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0 -NjM2WhcNMzYwOTE3MTk0NjM2WjB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRk -LjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMg -U3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -ggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZkpMyONvg45iPwbm2xPN1y -o4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rfOQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/ -Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/CJi/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/d -eMotHweXMAEtcnn6RtYTKqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt -2PZE4XNiHzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMMAv+Z -6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w+2OqqGwaVLRcJXrJ -osmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/ -untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVc -UjyJthkqcwEKDwOzEmDyei+B26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT -37uMdBNSSwIDAQABo4ICUjCCAk4wDAYDVR0TBAUwAwEB/zALBgNVHQ8EBAMCAa4wHQYDVR0OBBYE -FE4L7xqkQFulF2mHMMo0aEPQQa7yMGQGA1UdHwRdMFswLKAqoCiGJmh0dHA6Ly9jZXJ0LnN0YXJ0 -Y29tLm9yZy9zZnNjYS1jcmwuY3JsMCugKaAnhiVodHRwOi8vY3JsLnN0YXJ0Y29tLm9yZy9zZnNj -YS1jcmwuY3JsMIIBXQYDVR0gBIIBVDCCAVAwggFMBgsrBgEEAYG1NwEBATCCATswLwYIKwYBBQUH -AgEWI2h0dHA6Ly9jZXJ0LnN0YXJ0Y29tLm9yZy9wb2xpY3kucGRmMDUGCCsGAQUFBwIBFilodHRw -Oi8vY2VydC5zdGFydGNvbS5vcmcvaW50ZXJtZWRpYXRlLnBkZjCB0AYIKwYBBQUHAgIwgcMwJxYg -U3RhcnQgQ29tbWVyY2lhbCAoU3RhcnRDb20pIEx0ZC4wAwIBARqBl0xpbWl0ZWQgTGlhYmlsaXR5 -LCByZWFkIHRoZSBzZWN0aW9uICpMZWdhbCBMaW1pdGF0aW9ucyogb2YgdGhlIFN0YXJ0Q29tIENl -cnRpZmljYXRpb24gQXV0aG9yaXR5IFBvbGljeSBhdmFpbGFibGUgYXQgaHR0cDovL2NlcnQuc3Rh -cnRjb20ub3JnL3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilT -dGFydENvbSBGcmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQUFAAOC -AgEAFmyZ9GYMNPXQhV59CuzaEE44HF7fpiUFS5Eyweg78T3dRAlbB0mKKctmArexmvclmAk8jhvh -3TaHK0u7aNM5Zj2gJsfyOZEdUauCe37Vzlrk4gNXcGmXCPleWKYK34wGmkUWFjgKXlf2Ysd6AgXm -vB618p70qSmD+LIU424oh0TDkBreOKk8rENNZEXO3SipXPJzewT4F+irsfMuXGRuczE6Eri8sxHk -fY+BUZo7jYn0TZNmezwD7dOaHZrzZVD1oNB1ny+v8OqCQ5j4aZyJecRDjkZy42Q2Eq/3JR44iZB3 -fsNrarnDy0RLrHiQi+fHLB5LEUTINFInzQpdn4XBidUaePKVEFMy3YCEZnXZtWgo+2EuvoSoOMCZ -EoalHmdkrQYuL6lwhceWD3yJZfWOQ1QOq92lgDmUYMA0yZZwLKMS9R9Ie70cfmu3nZD0Ijuu+Pwq -yvqCUqDvr0tVk+vBtfAii6w0TiYiBKGHLHVKt+V9E9e4DGTANtLJL4YSjCMJwRuCO3NJo2pXh5Tl -1njFmUNj403gdy3hZZlyaQQaRwnmDwFWJPsfvw55qVguucQJAX6Vum0ABj6y6koQOdjQK/W/7HW/ -lwLFCRsI3FU34oH7N4RDYiDK51ZLZer+bMEkkyShNOsF/5oirpt9P/FlUQqmMGqz9IgcgA38coro -g14= ------END CERTIFICATE----- - -Taiwan GRCA -=========== ------BEGIN CERTIFICATE----- -MIIFcjCCA1qgAwIBAgIQH51ZWtcvwgZEpYAIaeNe9jANBgkqhkiG9w0BAQUFADA/MQswCQYDVQQG -EwJUVzEwMC4GA1UECgwnR292ZXJubWVudCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4X -DTAyMTIwNTEzMjMzM1oXDTMyMTIwNTEzMjMzM1owPzELMAkGA1UEBhMCVFcxMDAuBgNVBAoMJ0dv -dmVybm1lbnQgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQAD -ggIPADCCAgoCggIBAJoluOzMonWoe/fOW1mKydGGEghU7Jzy50b2iPN86aXfTEc2pBsBHH8eV4qN -w8XRIePaJD9IK/ufLqGU5ywck9G/GwGHU5nOp/UKIXZ3/6m3xnOUT0b3EEk3+qhZSV1qgQdW8or5 -BtD3cCJNtLdBuTK4sfCxw5w/cP1T3YGq2GN49thTbqGsaoQkclSGxtKyyhwOeYHWtXBiCAEuTk8O -1RGvqa/lmr/czIdtJuTJV6L7lvnM4T9TjGxMfptTCAtsF/tnyMKtsc2AtJfcdgEWFelq16TheEfO -htX7MfP6Mb40qij7cEwdScevLJ1tZqa2jWR+tSBqnTuBto9AAGdLiYa4zGX+FVPpBMHWXx1E1wov -J5pGfaENda1UhhXcSTvxls4Pm6Dso3pdvtUqdULle96ltqqvKKyskKw4t9VoNSZ63Pc78/1Fm9G7 -Q3hub/FCVGqY8A2tl+lSXunVanLeavcbYBT0peS2cWeqH+riTcFCQP5nRhc4L0c/cZyu5SHKYS1t -B6iEfC3uUSXxY5Ce/eFXiGvviiNtsea9P63RPZYLhY3Naye7twWb7LuRqQoHEgKXTiCQ8P8NHuJB -O9NAOueNXdpm5AKwB1KYXA6OM5zCppX7VRluTI6uSw+9wThNXo+EHWbNxWCWtFJaBYmOlXqYwZE8 -lSOyDvR5tMl8wUohAgMBAAGjajBoMB0GA1UdDgQWBBTMzO/MKWCkO7GStjz6MmKPrCUVOzAMBgNV -HRMEBTADAQH/MDkGBGcqBwAEMTAvMC0CAQAwCQYFKw4DAhoFADAHBgVnKgMAAAQUA5vwIhP/lSg2 -09yewDL7MTqKUWUwDQYJKoZIhvcNAQEFBQADggIBAECASvomyc5eMN1PhnR2WPWus4MzeKR6dBcZ -TulStbngCnRiqmjKeKBMmo4sIy7VahIkv9Ro04rQ2JyftB8M3jh+Vzj8jeJPXgyfqzvS/3WXy6Tj -Zwj/5cAWtUgBfen5Cv8b5Wppv3ghqMKnI6mGq3ZW6A4M9hPdKmaKZEk9GhiHkASfQlK3T8v+R0F2 -Ne//AHY2RTKbxkaFXeIksB7jSJaYV0eUVXoPQbFEJPPB/hprv4j9wabak2BegUqZIJxIZhm1AHlU -D7gsL0u8qV1bYH+Mh6XgUmMqvtg7hUAV/h62ZT/FS9p+tXo1KaMuephgIqP0fSdOLeq0dDzpD6Qz -DxARvBMB1uUO07+1EqLhRSPAzAhuYbeJq4PjJB7mXQfnHyA+z2fI56wwbSdLaG5LKlwCCDTb+Hbk -Z6MmnD+iMsJKxYEYMRBWqoTvLQr/uB930r+lWKBi5NdLkXWNiYCYfm3LU05er/ayl4WXudpVBrkk -7tfGOB5jGxI7leFYrPLfhNVfmS8NVVvmONsuP3LpSIXLuykTjx44VbnzssQwmSNOXfJIoRIM3BKQ -CZBUkQM8R+XVyWXgt0t97EfTsws+rZ7QdAAO671RrcDeLMDDav7v3Aun+kbfYNucpllQdSNpc5Oy -+fwC00fmcc4QAu4njIT/rEUNE1yDMuAlpYYsfPQS ------END CERTIFICATE----- - -Swisscom Root CA 1 -================== ------BEGIN CERTIFICATE----- -MIIF2TCCA8GgAwIBAgIQXAuFXAvnWUHfV8w/f52oNjANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQG -EwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0YWwgQ2VydGlmaWNhdGUgU2Vy -dmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3QgQ0EgMTAeFw0wNTA4MTgxMjA2MjBaFw0yNTA4 -MTgyMjA2MjBaMGQxCzAJBgNVBAYTAmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGln -aXRhbCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAxMIIC -IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0LmwqAzZuz8h+BvVM5OAFmUgdbI9m2BtRsiM -MW8Xw/qabFbtPMWRV8PNq5ZJkCoZSx6jbVfd8StiKHVFXqrWW/oLJdihFvkcxC7mlSpnzNApbjyF -NDhhSbEAn9Y6cV9Nbc5fuankiX9qUvrKm/LcqfmdmUc/TilftKaNXXsLmREDA/7n29uj/x2lzZAe -AR81sH8A25Bvxn570e56eqeqDFdvpG3FEzuwpdntMhy0XmeLVNxzh+XTF3xmUHJd1BpYwdnP2IkC -b6dJtDZd0KTeByy2dbcokdaXvij1mB7qWybJvbCXc9qukSbraMH5ORXWZ0sKbU/Lz7DkQnGMU3nn -7uHbHaBuHYwadzVcFh4rUx80i9Fs/PJnB3r1re3WmquhsUvhzDdf/X/NTa64H5xD+SpYVUNFvJbN -cA78yeNmuk6NO4HLFWR7uZToXTNShXEuT46iBhFRyePLoW4xCGQMwtI89Tbo19AOeCMgkckkKmUp -WyL3Ic6DXqTz3kvTaI9GdVyDCW4pa8RwjPWd1yAv/0bSKzjCL3UcPX7ape8eYIVpQtPM+GP+HkM5 -haa2Y0EQs3MevNP6yn0WR+Kn1dCjigoIlmJWbjTb2QK5MHXjBNLnj8KwEUAKrNVxAmKLMb7dxiNY -MUJDLXT5xp6mig/p/r+D5kNXJLrvRjSq1xIBOO0CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYw -HQYDVR0hBBYwFDASBgdghXQBUwABBgdghXQBUwABMBIGA1UdEwEB/wQIMAYBAf8CAQcwHwYDVR0j -BBgwFoAUAyUv3m+CATpcLNwroWm1Z9SM0/0wHQYDVR0OBBYEFAMlL95vggE6XCzcK6FptWfUjNP9 -MA0GCSqGSIb3DQEBBQUAA4ICAQA1EMvspgQNDQ/NwNurqPKIlwzfky9NfEBWMXrrpA9gzXrzvsMn -jgM+pN0S734edAY8PzHyHHuRMSG08NBsl9Tpl7IkVh5WwzW9iAUPWxAaZOHHgjD5Mq2eUCzneAXQ -MbFamIp1TpBcahQq4FJHgmDmHtqBsfsUC1rxn9KVuj7QG9YVHaO+htXbD8BJZLsuUBlL0iT43R4H -VtA4oJVwIHaM190e3p9xxCPvgxNcoyQVTSlAPGrEqdi3pkSlDfTgnXceQHAm/NrZNuR55LU/vJtl -vrsRls/bxig5OgjOR1tTWsWZ/l2p3e9M1MalrQLmjAcSHm8D0W+go/MpvRLHUKKwf4ipmXeascCl -OS5cfGniLLDqN2qk4Vrh9VDlg++luyqI54zb/W1elxmofmZ1a3Hqv7HHb6D0jqTsNFFbjCYDcKF3 -1QESVwA12yPeDooomf2xEG9L/zgtYE4snOtnta1J7ksfrK/7DZBaZmBwXarNeNQk7shBoJMBkpxq -nvy5JMWzFYJ+vq6VK+uxwNrjAWALXmmshFZhvnEX/h0TD/7Gh0Xp/jKgGg0TpJRVcaUWi7rKibCy -x/yP2FS1k2Kdzs9Z+z0YzirLNRWCXf9UIltxUvu3yf5gmwBBZPCqKuy2QkPOiWaByIufOVQDJdMW -NY6E0F/6MBr1mmz0DlP5OlvRHA== ------END CERTIFICATE----- - -DigiCert Assured ID Root CA -=========================== ------BEGIN CERTIFICATE----- -MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQG -EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw -IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzEx -MTEwMDAwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL -ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0Ew -ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7cJpSIqvTO -9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYPmDI2dsze3Tyoou9q+yHy -UmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW -/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpy -oeb6pNnVFzF1roV9Iq4/AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whf -GHdPAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRF -66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYunpyGd823IDzANBgkq -hkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRCdWKuh+vy1dneVrOfzM4UKLkNl2Bc -EkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTffwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38Fn -SbNd67IJKusm7Xi+fT8r87cmNW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i -8b5QZ7dsvfPxH2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe -+o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== ------END CERTIFICATE----- - -DigiCert Global Root CA -======================= ------BEGIN CERTIFICATE----- -MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG -EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw -HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw -MDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3 -dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq -hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn -TjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5 -BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H -4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y -7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB -o2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm -8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF -BQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr -EbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt -tep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886 -UAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk -CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= ------END CERTIFICATE----- - -DigiCert High Assurance EV Root CA -================================== ------BEGIN CERTIFICATE----- -MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBsMQswCQYDVQQG -EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSsw -KQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAw -MFoXDTMxMTExMDAwMDAwMFowbDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZ -MBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFu -Y2UgRVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm+9S75S0t -Mqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTWPNt0OKRKzE0lgvdKpVMS -OO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEMxChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3 -MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFBIk5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQ -NAQTXKFx01p8VdteZOE3hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUe -h10aUAsgEsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMB -Af8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaAFLE+w2kD+L9HAdSY -JhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3NecnzyIZgYIVyHbIUf4KmeqvxgydkAQ -V8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6zeM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFp -myPInngiK3BD41VHMWEZ71jFhS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkK -mNEVX58Svnw2Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe -vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep+OkuE6N36B9K ------END CERTIFICATE----- - -Certplus Class 2 Primary CA -=========================== ------BEGIN CERTIFICATE----- -MIIDkjCCAnqgAwIBAgIRAIW9S/PY2uNp9pTXX8OlRCMwDQYJKoZIhvcNAQEFBQAwPTELMAkGA1UE -BhMCRlIxETAPBgNVBAoTCENlcnRwbHVzMRswGQYDVQQDExJDbGFzcyAyIFByaW1hcnkgQ0EwHhcN -OTkwNzA3MTcwNTAwWhcNMTkwNzA2MjM1OTU5WjA9MQswCQYDVQQGEwJGUjERMA8GA1UEChMIQ2Vy -dHBsdXMxGzAZBgNVBAMTEkNsYXNzIDIgUHJpbWFyeSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP -ADCCAQoCggEBANxQltAS+DXSCHh6tlJw/W/uz7kRy1134ezpfgSN1sxvc0NXYKwzCkTsA18cgCSR -5aiRVhKC9+Ar9NuuYS6JEI1rbLqzAr3VNsVINyPi8Fo3UjMXEuLRYE2+L0ER4/YXJQyLkcAbmXuZ -Vg2v7tK8R1fjeUl7NIknJITesezpWE7+Tt9avkGtrAjFGA7v0lPubNCdEgETjdyAYveVqUSISnFO -YFWe2yMZeVYHDD9jC1yw4r5+FfyUM1hBOHTE4Y+L3yasH7WLO7dDWWuwJKZtkIvEcupdM5i3y95e -e++U8Rs+yskhwcWYAqqi9lt3m/V+llU0HGdpwPFC40es/CgcZlUCAwEAAaOBjDCBiTAPBgNVHRME -CDAGAQH/AgEKMAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQU43Mt38sOKAze3bOkynm4jrvoMIkwEQYJ -YIZIAYb4QgEBBAQDAgEGMDcGA1UdHwQwMC4wLKAqoCiGJmh0dHA6Ly93d3cuY2VydHBsdXMuY29t -L0NSTC9jbGFzczIuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQCnVM+IRBnL39R/AN9WM2K191EBkOvD -P9GIROkkXe/nFL0gt5o8AP5tn9uQ3Nf0YtaLcF3n5QRIqWh8yfFC82x/xXp8HVGIutIKPidd3i1R -TtMTZGnkLuPT55sJmabglZvOGtd/vjzOUrMRFcEPF80Du5wlFbqidon8BvEY0JNLDnyCt6X09l/+ -7UCmnYR0ObncHoUW2ikbhiMAybuJfm6AiB4vFLQDJKgybwOaRywwvlbGp0ICcBvqQNi6BQNwB6SW -//1IMwrh3KWBkJtN3X3n57LNXMhqlfil9o3EXXgIvnsG1knPGTZQIy4I5p4FTUcY1Rbpsda2ENW7 -l7+ijrRU ------END CERTIFICATE----- - -DST Root CA X3 -============== ------BEGIN CERTIFICATE----- -MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/MSQwIgYDVQQK -ExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMTDkRTVCBSb290IENBIFgzMB4X -DTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVowPzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1 -cmUgVHJ1c3QgQ28uMRcwFQYDVQQDEw5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQAD -ggEPADCCAQoCggEBAN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmT -rE4Orz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEqOLl5CjH9 -UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9bxiqKqy69cK3FCxolkHRy -xXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40d -utolucbY38EVAjqr2m7xPi71XAicPNaDaeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0T -AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQ -MA0GCSqGSIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69ikug -dB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXrAvHRAosZy5Q6XkjE -GB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZzR8srzJmwN0jP41ZL9c8PDHIyh8bw -RLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubS -fZGL+T0yjWW06XyxV3bqxbYoOb8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ ------END CERTIFICATE----- - -DST ACES CA X6 -============== ------BEGIN CERTIFICATE----- -MIIECTCCAvGgAwIBAgIQDV6ZCtadt3js2AdWO4YV2TANBgkqhkiG9w0BAQUFADBbMQswCQYDVQQG -EwJVUzEgMB4GA1UEChMXRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QxETAPBgNVBAsTCERTVCBBQ0VT -MRcwFQYDVQQDEw5EU1QgQUNFUyBDQSBYNjAeFw0wMzExMjAyMTE5NThaFw0xNzExMjAyMTE5NTha -MFsxCzAJBgNVBAYTAlVTMSAwHgYDVQQKExdEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdDERMA8GA1UE -CxMIRFNUIEFDRVMxFzAVBgNVBAMTDkRTVCBBQ0VTIENBIFg2MIIBIjANBgkqhkiG9w0BAQEFAAOC -AQ8AMIIBCgKCAQEAuT31LMmU3HWKlV1j6IR3dma5WZFcRt2SPp/5DgO0PWGSvSMmtWPuktKe1jzI -DZBfZIGxqAgNTNj50wUoUrQBJcWVHAx+PhCEdc/BGZFjz+iokYi5Q1K7gLFViYsx+tC3dr5BPTCa -pCIlF3PoHuLTrCq9Wzgh1SpL11V94zpVvddtawJXa+ZHfAjIgrrep4c9oW24MFbCswKBXy314pow -GCi4ZtPLAZZv6opFVdbgnf9nKxcCpk4aahELfrd755jWjHZvwTvbUJN+5dCOHze4vbrGn2zpfDPy -MjwmR/onJALJfh1biEITajV8fTXpLmaRcpPVMibEdPVTo7NdmvYJywIDAQABo4HIMIHFMA8GA1Ud -EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgHGMB8GA1UdEQQYMBaBFHBraS1vcHNAdHJ1c3Rkc3Qu -Y29tMGIGA1UdIARbMFkwVwYKYIZIAWUDAgEBATBJMEcGCCsGAQUFBwIBFjtodHRwOi8vd3d3LnRy -dXN0ZHN0LmNvbS9jZXJ0aWZpY2F0ZXMvcG9saWN5L0FDRVMtaW5kZXguaHRtbDAdBgNVHQ4EFgQU -CXIGThhDD+XWzMNqizF7eI+og7gwDQYJKoZIhvcNAQEFBQADggEBAKPYjtay284F5zLNAdMEA+V2 -5FYrnJmQ6AgwbN99Pe7lv7UkQIRJ4dEorsTCOlMwiPH1d25Ryvr/ma8kXxug/fKshMrfqfBfBC6t -Fr8hlxCBPeP/h40y3JTlR4peahPJlJU90u7INJXQgNStMgiAVDzgvVJT11J8smk/f3rPanTK+gQq -nExaBqXpIK1FZg9p8d2/6eMyi/rgwYZNcjwu2JN4Cir42NInPRmJX1p7ijvMDNpRrscL9yuwNwXs -vFcj4jjSm2jzVhKIT0J8uDHEtdvkyCE06UgRNe76x5JXxZ805Mf29w4LTJxoeHtxMcfrHuBnQfO3 -oKfN5XozNmr6mis= ------END CERTIFICATE----- - -SwissSign Gold CA - G2 -====================== ------BEGIN CERTIFICATE----- -MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkNIMRUw -EwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2lnbiBHb2xkIENBIC0gRzIwHhcN -MDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBFMQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dp -c3NTaWduIEFHMR8wHQYDVQQDExZTd2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0B -AQEFAAOCAg8AMIICCgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUq -t2/876LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+bbqBHH5C -jCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c6bM8K8vzARO/Ws/BtQpg -vd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqEemA8atufK+ze3gE/bk3lUIbLtK/tREDF -ylqM2tIrfKjuvqblCqoOpd8FUrdVxyJdMmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvR -AiTysybUa9oEVeXBCsdtMDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuend -jIj3o02yMszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69yFGkO -peUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPiaG59je883WX0XaxR -7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxMgI93e2CaHt+28kgeDrpOVG2Y4OGi -GqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw -AwEB/zAdBgNVHQ4EFgQUWyV7lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64 -OfPAeGZe6Drn8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov -L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe645R88a7A3hfm -5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczOUYrHUDFu4Up+GC9pWbY9ZIEr -44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOf -Mke6UiI0HTJ6CVanfCU2qT1L2sCCbwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6m -Gu6uLftIdxf+u+yvGPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxp -mo/a77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCChdiDyyJk -vC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid392qgQmwLOM7XdVAyksLf -KzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEppLd6leNcG2mqeSz53OiATIgHQv2ieY2Br -NU0LbbqhPcCT4H8js1WtciVORvnSFu+wZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6Lqj -viOvrv1vA+ACOzB2+httQc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ ------END CERTIFICATE----- - -SwissSign Silver CA - G2 -======================== ------BEGIN CERTIFICATE----- -MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCQ0gxFTAT -BgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMB4X -DTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0NlowRzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3 -aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG -9w0BAQEFAAOCAg8AMIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644 -N0MvFz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7brYT7QbNHm -+/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieFnbAVlDLaYQ1HTWBCrpJH -6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH6ATK72oxh9TAtvmUcXtnZLi2kUpCe2Uu -MGoM9ZDulebyzYLs2aFK7PayS+VFheZteJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5h -qAaEuSh6XzjZG6k4sIN/c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5 -FZGkECwJMoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRHHTBs -ROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTfjNFusB3hB48IHpmc -celM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb65i/4z3GcRm25xBWNOHkDRUjvxF3X -CO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ -BAUwAwEB/zAdBgNVHQ4EFgQUF6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRB -tjpbO8tFnb0cwpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0 -cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBAHPGgeAn0i0P -4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShpWJHckRE1qTodvBqlYJ7YH39F -kWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L -3XWgwF15kIwb4FDm3jH+mHtwX6WQ2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx -/uNncqCxv1yL5PqZIseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFa -DGi8aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2Xem1ZqSqP -e97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQRdAtq/gsD/KNVV4n+Ssuu -WxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJ -DIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ub -DgEj8Z+7fNzcbBGXJbLytGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u ------END CERTIFICATE----- - -GeoTrust Primary Certification Authority -======================================== ------BEGIN CERTIFICATE----- -MIIDfDCCAmSgAwIBAgIQGKy1av1pthU6Y2yv2vrEoTANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQG -EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjExMC8GA1UEAxMoR2VvVHJ1c3QgUHJpbWFyeSBD -ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjExMjcwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMFgx -CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBQ -cmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB -CgKCAQEAvrgVe//UfH1nrYNke8hCUy3f9oQIIGHWAVlqnEQRr+92/ZV+zmEwu3qDXwK9AWbK7hWN -b6EwnL2hhZ6UOvNWiAAxz9juapYC2e0DjPt1befquFUWBRaa9OBesYjAZIVcFU2Ix7e64HXprQU9 -nceJSOC7KMgD4TCTZF5SwFlwIjVXiIrxlQqD17wxcwE07e9GceBrAqg1cmuXm2bgyxx5X9gaBGge -RwLmnWDiNpcB3841kt++Z8dtd1k7j53WkBWUvEI0EME5+bEnPn7WinXFsq+W06Lem+SYvn3h6YGt -tm/81w7a4DSwDRp35+MImO9Y+pyEtzavwt+s0vQQBnBxNQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD -AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQULNVQQZcVi/CPNmFbSvtr2ZnJM5IwDQYJKoZI -hvcNAQEFBQADggEBAFpwfyzdtzRP9YZRqSa+S7iq8XEN3GHHoOo0Hnp3DwQ16CePbJC/kRYkRj5K -Ts4rFtULUh38H2eiAkUxT87z+gOneZ1TatnaYzr4gNfTmeGl4b7UVXGYNTq+k+qurUKykG/g/CFN -NWMziUnWm07Kx+dOCQD32sfvmWKZd7aVIl6KoKv0uHiYyjgZmclynnjNS6yvGaBzEi38wkG6gZHa -Floxt/m0cYASSJlyc1pZU8FjUjPtp8nSOQJw+uCxQmYpqptR7TBUIhRf2asdweSU8Pj1K/fqynhG -1riR/aYNKxoUAT6A8EKglQdebc3MS6RFjasS6LPeWuWgfOgPIh1a6Vk= ------END CERTIFICATE----- - -thawte Primary Root CA -====================== ------BEGIN CERTIFICATE----- -MIIEIDCCAwigAwIBAgIQNE7VVyDV7exJ9C/ON9srbTANBgkqhkiG9w0BAQUFADCBqTELMAkGA1UE -BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2 -aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv -cml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwHhcNMDYxMTE3 -MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCBqTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwg -SW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMv -KGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMT -FnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCs -oPD7gFnUnMekz52hWXMJEEUMDSxuaPFsW0hoSVk3/AszGcJ3f8wQLZU0HObrTQmnHNK4yZc2AreJ -1CRfBsDMRJSUjQJib+ta3RGNKJpchJAQeg29dGYvajig4tVUROsdB58Hum/u6f1OCyn1PoSgAfGc -q/gcfomk6KHYcWUNo1F77rzSImANuVud37r8UVsLr5iy6S7pBOhih94ryNdOwUxkHt3Ph1i6Sk/K -aAcdHJ1KxtUvkcx8cXIcxcBn6zL9yZJclNqFwJu/U30rCfSMnZEfl2pSy94JNqR32HuHUETVPm4p -afs5SSYeCaWAe0At6+gnhcn+Yf1+5nyXHdWdAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD -VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBR7W0XPr87Lev0xkhpqtvNG61dIUDANBgkqhkiG9w0BAQUF -AAOCAQEAeRHAS7ORtvzw6WfUDW5FvlXok9LOAz/t2iWwHVfLHjp2oEzsUHboZHIMpKnxuIvW1oeE -uzLlQRHAd9mzYJ3rG9XRbkREqaYB7FViHXe4XI5ISXycO1cRrK1zN44veFyQaEfZYGDm/Ac9IiAX -xPcW6cTYcvnIc3zfFi8VqT79aie2oetaupgf1eNNZAqdE8hhuvU5HIe6uL17In/2/qxAeeWsEG89 -jxt5dovEN7MhGITlNgDrYyCZuen+MwS7QcjBAvlEYyCegc5C09Y/LHbTY5xZ3Y+m4Q6gLkH3LpVH -z7z9M/P2C2F+fpErgUfCJzDupxBdN49cOSvkBPB7jVaMaA== ------END CERTIFICATE----- - -VeriSign Class 3 Public Primary Certification Authority - G5 -============================================================ ------BEGIN CERTIFICATE----- -MIIE0zCCA7ugAwIBAgIQGNrRniZ96LtKIVjNzGs7SjANBgkqhkiG9w0BAQUFADCByjELMAkGA1UE -BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO -ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk -IHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRp -ZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwHhcNMDYxMTA4MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCB -yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2ln -biBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBh -dXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmlt -YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw -ggEKAoIBAQCvJAgIKXo1nmAMqudLO07cfLw8RRy7K+D+KQL5VwijZIUVJ/XxrcgxiV0i6CqqpkKz -j/i5Vbext0uz/o9+B1fs70PbZmIVYc9gDaTY3vjgw2IIPVQT60nKWVSFJuUrjxuf6/WhkcIzSdhD -Y2pSS9KP6HBRTdGJaXvHcPaz3BJ023tdS1bTlr8Vd6Gw9KIl8q8ckmcY5fQGBO+QueQA5N06tRn/ -Arr0PO7gi+s3i+z016zy9vA9r911kTMZHRxAy3QkGSGT2RT+rCpSx4/VBEnkjWNHiDxpg8v+R70r -fk/Fla4OndTRQ8Bnc+MUCH7lP59zuDMKz10/NIeWiu5T6CUVAgMBAAGjgbIwga8wDwYDVR0TAQH/ -BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2Uv -Z2lmMCEwHzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVy -aXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFH/TZafC3ey78DAJ80M5+gKvMzEzMA0GCSqG -SIb3DQEBBQUAA4IBAQCTJEowX2LP2BqYLz3q3JktvXf2pXkiOOzEp6B4Eq1iDkVwZMXnl2YtmAl+ -X6/WzChl8gGqCBpH3vn5fJJaCGkgDdk+bW48DW7Y5gaRQBi5+MHt39tBquCWIMnNZBU4gcmU7qKE -KQsTb47bDN0lAtukixlE0kF6BWlKWE9gyn6CagsCqiUXObXbf+eEZSqVir2G3l6BFoMtEMze/aiC -Km0oHw0LxOXnGiYZ4fQRbxC1lfznQgUy286dUV4otp6F01vvpX1FQHKOtw5rDgb7MzVIcbidJ4vE -ZV8NhnacRHr2lVz2XTIIM6RUthg/aFzyQkqFOFSDX9HoLPKsEdao7WNq ------END CERTIFICATE----- - -SecureTrust CA -============== ------BEGIN CERTIFICATE----- -MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBIMQswCQYDVQQG -EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xFzAVBgNVBAMTDlNlY3VyZVRy -dXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIzMTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAe -BgNVBAoTF1NlY3VyZVRydXN0IENvcnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCC -ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQX -OZEzZum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO0gMdA+9t -DWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIaowW8xQmxSPmjL8xk037uH -GFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b -01k/unK8RCSc43Oz969XL0Imnal0ugBS8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmH -ursCAwEAAaOBnTCBmjATBgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/ -BAUwAwEB/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCegJYYj -aHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ -KoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt36Z3q059c4EVlew3KW+JwULKUBRSu -SceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHf -mbx8IVQr5Fiiu1cprp6poxkmD5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZ -nMUFdAvnZyPSCPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR -3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= ------END CERTIFICATE----- - -Secure Global CA -================ ------BEGIN CERTIFICATE----- -MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQG -EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBH -bG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkxMjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEg -MB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwg -Q0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jx -YDiJiQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa/FHtaMbQ -bqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJjnIFHovdRIWCQtBJwB1g -8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnIHmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYV -HDGA76oYa8J719rO+TMg1fW9ajMtgQT7sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi -0XPnj3pDAgMBAAGjgZ0wgZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud -EwEB/wQFMAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCswKaAn -oCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsGAQQBgjcVAQQDAgEA -MA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0LURYD7xh8yOOvaliTFGCRsoTciE6+ -OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXOH0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cn -CDpOGR86p1hcF895P4vkp9MmI50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/5 -3CYNv6ZHdAbYiNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc -f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW ------END CERTIFICATE----- - -COMODO Certification Authority -============================== ------BEGIN CERTIFICATE----- -MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCBgTELMAkGA1UE -BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG -A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNVBAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1 -dGhvcml0eTAeFw0wNjEyMDEwMDAwMDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEb -MBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFD -T01PRE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3UcEbVASY06m/weaKXTuH -+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI2GqGd0S7WWaXUF601CxwRM/aN5VCaTww -xHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV -4EajcNxo2f8ESIl33rXp+2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA -1KGzqSX+DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5OnKVI -rLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW/zAOBgNVHQ8BAf8E -BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6gPKA6hjhodHRwOi8vY3JsLmNvbW9k -b2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOC -AQEAPpiem/Yb6dc5t3iuHXIYSdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CP -OGEIqB6BCsAvIC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ -RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4zJVSk/BwJVmc -IGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5ddBA6+C4OmF4O5MBKgxTMVBbkN -+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IBZQ== ------END CERTIFICATE----- - -Network Solutions Certificate Authority -======================================= ------BEGIN CERTIFICATE----- -MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQG -EwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydOZXR3b3Jr -IFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMx -MjM1OTU5WjBiMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu -MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G -CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwzc7MEL7xx -jOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPPOCwGJgl6cvf6UDL4wpPT -aaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rlmGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXT -crA/vGp97Eh/jcOrqnErU2lBUzS1sLnFBgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc -/Qzpf14Dl847ABSHJ3A4qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMB -AAGjgZcwgZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIBBjAP -BgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwubmV0c29sc3NsLmNv -bS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3JpdHkuY3JsMA0GCSqGSIb3DQEBBQUA -A4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc86fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q -4LqILPxFzBiwmZVRDuwduIj/h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/ -GGUsyfJj4akH/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv -wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHNpGxlaKFJdlxD -ydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey ------END CERTIFICATE----- - -WellsSecure Public Root Certificate Authority -============================================= ------BEGIN CERTIFICATE----- -MIIEvTCCA6WgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoM -F1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYw -NAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcN -MDcxMjEzMTcwNzU0WhcNMjIxMjE0MDAwNzU0WjCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dl -bGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYD -VQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G -CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDub7S9eeKPCCGeOARBJe+rWxxTkqxtnt3CxC5FlAM1 -iGd0V+PfjLindo8796jE2yljDpFoNoqXjopxaAkH5OjUDk/41itMpBb570OYj7OeUt9tkTmPOL13 -i0Nj67eT/DBMHAGTthP796EfvyXhdDcsHqRePGj4S78NuR4uNuip5Kf4D8uCdXw1LSLWwr8L87T8 -bJVhHlfXBIEyg1J55oNjz7fLY4sR4r1e6/aN7ZVyKLSsEmLpSjPmgzKuBXWVvYSV2ypcm44uDLiB -K0HmOFafSZtsdvqKXfcBeYF8wYNABf5x/Qw/zE5gCQ5lRxAvAcAFP4/4s0HvWkJ+We/SlwxlAgMB -AAGjggE0MIIBMDAPBgNVHRMBAf8EBTADAQH/MDkGA1UdHwQyMDAwLqAsoCqGKGh0dHA6Ly9jcmwu -cGtpLndlbGxzZmFyZ28uY29tL3dzcHJjYS5jcmwwDgYDVR0PAQH/BAQDAgHGMB0GA1UdDgQWBBQm -lRkQ2eihl5H/3BnZtQQ+0nMKajCBsgYDVR0jBIGqMIGngBQmlRkQ2eihl5H/3BnZtQQ+0nMKaqGB -i6SBiDCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRww -GgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMg -Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHmCAQEwDQYJKoZIhvcNAQEFBQADggEBALkVsUSRzCPI -K0134/iaeycNzXK7mQDKfGYZUMbVmO2rvwNa5U3lHshPcZeG1eMd/ZDJPHV3V3p9+N701NX3leZ0 -bh08rnyd2wIDBSxxSyU+B+NemvVmFymIGjifz6pBA4SXa5M4esowRBskRDPQ5NHcKDj0E0M1NSlj -qHyita04pO2t/caaH/+Xc/77szWnk4bGdpEA5qxRFsQnMlzbc9qlk1eOPm01JghZ1edE13YgY+es -E2fDbbFwRnzVlhE9iW9dqKHrjQrawx0zbKPqZxmamX9LPYNRKh3KL4YMon4QLSvUFpULB6ouFJJJ -tylv2G0xffX8oRAHh84vWdw+WNs= ------END CERTIFICATE----- - -COMODO ECC Certification Authority -================================== ------BEGIN CERTIFICATE----- -MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTELMAkGA1UEBhMC -R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE -ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBB -dXRob3JpdHkwHhcNMDgwMzA2MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0Ix -GzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR -Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRo -b3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSRFtSrYpn1PlILBs5BAH+X -4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0JcfRK9ChQtP6IHG4/bC8vCVlbpVsLM5ni -wz2J+Wos77LTBumjQjBAMB0GA1UdDgQWBBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8E -BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VG -FAkK+qDmfQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdvGDeA -U/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= ------END CERTIFICATE----- - -IGC/A -===== ------BEGIN CERTIFICATE----- -MIIEAjCCAuqgAwIBAgIFORFFEJQwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYTAkZSMQ8wDQYD -VQQIEwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVE -Q1NTSTEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZy -MB4XDTAyMTIxMzE0MjkyM1oXDTIwMTAxNzE0MjkyMlowgYUxCzAJBgNVBAYTAkZSMQ8wDQYDVQQI -EwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVEQ1NT -STEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZyMIIB -IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsh/R0GLFMzvABIaIs9z4iPf930Pfeo2aSVz2 -TqrMHLmh6yeJ8kbpO0px1R2OLc/mratjUMdUC24SyZA2xtgv2pGqaMVy/hcKshd+ebUyiHDKcMCW -So7kVc0dJ5S/znIq7Fz5cyD+vfcuiWe4u0dzEvfRNWk68gq5rv9GQkaiv6GFGvm/5P9JhfejcIYy -HF2fYPepraX/z9E0+X1bF8bc1g4oa8Ld8fUzaJ1O/Id8NhLWo4DoQw1VYZTqZDdH6nfK0LJYBcNd -frGoRpAxVs5wKpayMLh35nnAvSk7/ZR3TL0gzUEl4C7HG7vupARB0l2tEmqKm0f7yd1GQOGdPDPQ -tQIDAQABo3cwdTAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBRjAVBgNVHSAEDjAMMAoGCCqB -egF5AQEBMB0GA1UdDgQWBBSjBS8YYFDCiQrdKyFP/45OqDAxNjAfBgNVHSMEGDAWgBSjBS8YYFDC -iQrdKyFP/45OqDAxNjANBgkqhkiG9w0BAQUFAAOCAQEABdwm2Pp3FURo/C9mOnTgXeQp/wYHE4RK -q89toB9RlPhJy3Q2FLwV3duJL92PoF189RLrn544pEfMs5bZvpwlqwN+Mw+VgQ39FuCIvjfwbF3Q -MZsyK10XZZOYYLxuj7GoPB7ZHPOpJkL5ZB3C55L29B5aqhlSXa/oovdgoPaN8In1buAKBQGVyYsg -Crpa/JosPL3Dt8ldeCUFP1YUmwza+zpI/pdpXsoQhvdOlgQITeywvl3cO45Pwf2aNjSaTFR+FwNI -lQgRHAdvhQh+XU3Endv7rs6y0bO4g2wdsrN58dhwmX7wEwLOXt1R0982gaEbeC9xs/FZTEYYKKuF -0mBWWg== ------END CERTIFICATE----- - -Security Communication EV RootCA1 -================================= ------BEGIN CERTIFICATE----- -MIIDfTCCAmWgAwIBAgIBADANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJKUDElMCMGA1UEChMc -U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU2VjdXJpdHkgQ29tbXVuaWNh -dGlvbiBFViBSb290Q0ExMB4XDTA3MDYwNjAyMTIzMloXDTM3MDYwNjAyMTIzMlowYDELMAkGA1UE -BhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xKjAoBgNVBAsTIVNl -Y3VyaXR5IENvbW11bmljYXRpb24gRVYgUm9vdENBMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALx/7FebJOD+nLpCeamIivqA4PUHKUPqjgo0No0c+qe1OXj/l3X3L+SqawSERMqm4miO -/VVQYg+kcQ7OBzgtQoVQrTyWb4vVog7P3kmJPdZkLjjlHmy1V4qe70gOzXppFodEtZDkBp2uoQSX -WHnvIEqCa4wiv+wfD+mEce3xDuS4GBPMVjZd0ZoeUWs5bmB2iDQL87PRsJ3KYeJkHcFGB7hj3R4z -ZbOOCVVSPbW9/wfrrWFVGCypaZhKqkDFMxRldAD5kd6vA0jFQFTcD4SQaCDFkpbcLuUCRarAX1T4 -bepJz11sS6/vmsJWXMY1VkJqMF/Cq/biPT+zyRGPMUzXn0kCAwEAAaNCMEAwHQYDVR0OBBYEFDVK -9U2vP9eCOKyrcWUXdYydVZPmMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqG -SIb3DQEBBQUAA4IBAQCoh+ns+EBnXcPBZsdAS5f8hxOQWsTvoMpfi7ent/HWtWS3irO4G8za+6xm -iEHO6Pzk2x6Ipu0nUBsCMCRGef4Eh3CXQHPRwMFXGZpppSeZq51ihPZRwSzJIxXYKLerJRO1RuGG -Av8mjMSIkh1W/hln8lXkgKNrnKt34VFxDSDbEJrbvXZ5B3eZKK2aXtqxT0QsNY6llsf9g/BYxnnW -mHyojf6GPgcWkuF75x3sM3Z+Qi5KhfmRiWiEA4Glm5q+4zfFVKtWOxgtQaQM+ELbmaDgcm+7XeEW -T1MKZPlO9L9OVL14bIjqv5wTJMJwaaJ/D8g8rQjJsJhAoyrniIPtd490 ------END CERTIFICATE----- - -OISTE WISeKey Global Root GA CA -=============================== ------BEGIN CERTIFICATE----- -MIID8TCCAtmgAwIBAgIQQT1yx/RrH4FDffHSKFTfmjANBgkqhkiG9w0BAQUFADCBijELMAkGA1UE -BhMCQ0gxEDAOBgNVBAoTB1dJU2VLZXkxGzAZBgNVBAsTEkNvcHlyaWdodCAoYykgMjAwNTEiMCAG -A1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBH -bG9iYWwgUm9vdCBHQSBDQTAeFw0wNTEyMTExNjAzNDRaFw0zNzEyMTExNjA5NTFaMIGKMQswCQYD -VQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEbMBkGA1UECxMSQ29weXJpZ2h0IChjKSAyMDA1MSIw -IAYDVQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5 -IEdsb2JhbCBSb290IEdBIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy0+zAJs9 -Nt350UlqaxBJH+zYK7LG+DKBKUOVTJoZIyEVRd7jyBxRVVuuk+g3/ytr6dTqvirdqFEr12bDYVxg -Asj1znJ7O7jyTmUIms2kahnBAbtzptf2w93NvKSLtZlhuAGio9RN1AU9ka34tAhxZK9w8RxrfvbD -d50kc3vkDIzh2TbhmYsFmQvtRTEJysIA2/dyoJaqlYfQjse2YXMNdmaM3Bu0Y6Kff5MTMPGhJ9vZ -/yxViJGg4E8HsChWjBgbl0SOid3gF27nKu+POQoxhILYQBRJLnpB5Kf+42TMwVlxSywhp1t94B3R -LoGbw9ho972WG6xwsRYUC9tguSYBBQIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw -AwEB/zAdBgNVHQ4EFgQUswN+rja8sHnR3JQmthG+IbJphpQwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ -KoZIhvcNAQEFBQADggEBAEuh/wuHbrP5wUOxSPMowB0uyQlB+pQAHKSkq0lPjz0e701vvbyk9vIm -MMkQyh2I+3QZH4VFvbBsUfk2ftv1TDI6QU9bR8/oCy22xBmddMVHxjtqD6wU2zz0c5ypBd8A3HR4 -+vg1YFkCExh8vPtNsCBtQ7tgMHpnM1zFmdH4LTlSc/uMqpclXHLZCB6rTjzjgTGfA6b7wP4piFXa -hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZiFj4A4xylNoEY -okxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ/L7fCg0= ------END CERTIFICATE----- - -Microsec e-Szigno Root CA -========================= ------BEGIN CERTIFICATE----- -MIIHqDCCBpCgAwIBAgIRAMy4579OKRr9otxmpRwsDxEwDQYJKoZIhvcNAQEFBQAwcjELMAkGA1UE -BhMCSFUxETAPBgNVBAcTCEJ1ZGFwZXN0MRYwFAYDVQQKEw1NaWNyb3NlYyBMdGQuMRQwEgYDVQQL -EwtlLVN6aWdubyBDQTEiMCAGA1UEAxMZTWljcm9zZWMgZS1Temlnbm8gUm9vdCBDQTAeFw0wNTA0 -MDYxMjI4NDRaFw0xNzA0MDYxMjI4NDRaMHIxCzAJBgNVBAYTAkhVMREwDwYDVQQHEwhCdWRhcGVz -dDEWMBQGA1UEChMNTWljcm9zZWMgTHRkLjEUMBIGA1UECxMLZS1Temlnbm8gQ0ExIjAgBgNVBAMT -GU1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -AQDtyADVgXvNOABHzNuEwSFpLHSQDCHZU4ftPkNEU6+r+ICbPHiN1I2uuO/TEdyB5s87lozWbxXG -d36hL+BfkrYn13aaHUM86tnsL+4582pnS4uCzyL4ZVX+LMsvfUh6PXX5qqAnu3jCBspRwn5mS6/N -oqdNAoI/gqyFxuEPkEeZlApxcpMqyabAvjxWTHOSJ/FrtfX9/DAFYJLG65Z+AZHCabEeHXtTRbjc -QR/Ji3HWVBTji1R4P770Yjtb9aPs1ZJ04nQw7wHb4dSrmZsqa/i9phyGI0Jf7Enemotb9HI6QMVJ -PqW+jqpx62z69Rrkav17fVVA71hu5tnVvCSrwe+3AgMBAAGjggQ3MIIEMzBnBggrBgEFBQcBAQRb -MFkwKAYIKwYBBQUHMAGGHGh0dHBzOi8vcmNhLmUtc3ppZ25vLmh1L29jc3AwLQYIKwYBBQUHMAKG -IWh0dHA6Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNydDAPBgNVHRMBAf8EBTADAQH/MIIBcwYD -VR0gBIIBajCCAWYwggFiBgwrBgEEAYGoGAIBAQEwggFQMCgGCCsGAQUFBwIBFhxodHRwOi8vd3d3 -LmUtc3ppZ25vLmh1L1NaU1ovMIIBIgYIKwYBBQUHAgIwggEUHoIBEABBACAAdABhAG4A+gBzAO0A -dAB2AOEAbgB5ACAA6QByAHQAZQBsAG0AZQB6AOkAcwDpAGgAZQB6ACAA6QBzACAAZQBsAGYAbwBn -AGEAZADhAHMA4QBoAG8AegAgAGEAIABTAHoAbwBsAGcA4QBsAHQAYQB0APMAIABTAHoAbwBsAGcA -4QBsAHQAYQB0AOEAcwBpACAAUwB6AGEAYgDhAGwAeQB6AGEAdABhACAAcwB6AGUAcgBpAG4AdAAg -AGsAZQBsAGwAIABlAGwAagDhAHIAbgBpADoAIABoAHQAdABwADoALwAvAHcAdwB3AC4AZQAtAHMA -egBpAGcAbgBvAC4AaAB1AC8AUwBaAFMAWgAvMIHIBgNVHR8EgcAwgb0wgbqggbeggbSGIWh0dHA6 -Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNybIaBjmxkYXA6Ly9sZGFwLmUtc3ppZ25vLmh1L0NO -PU1pY3Jvc2VjJTIwZS1Temlnbm8lMjBSb290JTIwQ0EsT1U9ZS1Temlnbm8lMjBDQSxPPU1pY3Jv -c2VjJTIwTHRkLixMPUJ1ZGFwZXN0LEM9SFU/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdDtiaW5h -cnkwDgYDVR0PAQH/BAQDAgEGMIGWBgNVHREEgY4wgYuBEGluZm9AZS1zemlnbm8uaHWkdzB1MSMw -IQYDVQQDDBpNaWNyb3NlYyBlLVN6aWduw7MgUm9vdCBDQTEWMBQGA1UECwwNZS1TemlnbsOzIEhT -WjEWMBQGA1UEChMNTWljcm9zZWMgS2Z0LjERMA8GA1UEBxMIQnVkYXBlc3QxCzAJBgNVBAYTAkhV -MIGsBgNVHSMEgaQwgaGAFMegSXUWYYTbMUuE0vE3QJDvTtz3oXakdDByMQswCQYDVQQGEwJIVTER -MA8GA1UEBxMIQnVkYXBlc3QxFjAUBgNVBAoTDU1pY3Jvc2VjIEx0ZC4xFDASBgNVBAsTC2UtU3pp -Z25vIENBMSIwIAYDVQQDExlNaWNyb3NlYyBlLVN6aWdubyBSb290IENBghEAzLjnv04pGv2i3Gal -HCwPETAdBgNVHQ4EFgQUx6BJdRZhhNsxS4TS8TdAkO9O3PcwDQYJKoZIhvcNAQEFBQADggEBANMT -nGZjWS7KXHAM/IO8VbH0jgdsZifOwTsgqRy7RlRw7lrMoHfqaEQn6/Ip3Xep1fvj1KcExJW4C+FE -aGAHQzAxQmHl7tnlJNUb3+FKG6qfx1/4ehHqE5MAyopYse7tDk2016g2JnzgOsHVV4Lxdbb9iV/a -86g4nzUGCM4ilb7N1fy+W955a9x6qWVmvrElWl/tftOsRm1M9DKHtCAE4Gx4sHfRhUZLphK3dehK -yVZs15KrnfVJONJPU+NVkBHbmJbGSfI+9J8b4PeI3CVimUTYc78/MPMMNz7UwiiAc7EBt51alhQB -S6kRnSlqLtBdgcDPsiBDxwPgN05dCtxZICU= ------END CERTIFICATE----- - -Certigna -======== ------BEGIN CERTIFICATE----- -MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNVBAYTAkZSMRIw -EAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4XDTA3MDYyOTE1MTMwNVoXDTI3 -MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwI -Q2VydGlnbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7q -XOEm7RFHYeGifBZ4QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyH -GxnygQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbwzBfsV1/p -ogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q130yGLMLLGq/jj8UEYkg -DncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKf -Irjxwo1p3Po6WAbfAgMBAAGjgbwwgbkwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQ -tCRZvgHyUtVF9lo53BEwZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJ -BgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzjAQ/J -SP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG9w0BAQUFAAOCAQEA -hQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8hbV6lUmPOEvjvKtpv6zf+EwLHyzs+ -ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFncfca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1klu -PBS1xp81HlDQwY9qcEQCYsuuHWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY -1gkIl2PlwS6wt0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw -WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== ------END CERTIFICATE----- - -Deutsche Telekom Root CA 2 -========================== ------BEGIN CERTIFICATE----- -MIIDnzCCAoegAwIBAgIBJjANBgkqhkiG9w0BAQUFADBxMQswCQYDVQQGEwJERTEcMBoGA1UEChMT -RGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxlU2VjIFRydXN0IENlbnRlcjEjMCEG -A1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290IENBIDIwHhcNOTkwNzA5MTIxMTAwWhcNMTkwNzA5 -MjM1OTAwWjBxMQswCQYDVQQGEwJERTEcMBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0G -A1UECxMWVC1UZWxlU2VjIFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBS -b290IENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrC6M14IspFLEUha88EOQ5 -bzVdSq7d6mGNlUn0b2SjGmBmpKlAIoTZ1KXleJMOaAGtuU1cOs7TuKhCQN/Po7qCWWqSG6wcmtoI -KyUn+WkjR/Hg6yx6m/UTAtB+NHzCnjwAWav12gz1MjwrrFDa1sPeg5TKqAyZMg4ISFZbavva4VhY -AUlfckE8FQYBjl2tqriTtM2e66foai1SNNs671x1Udrb8zH57nGYMsRUFUQM+ZtV7a3fGAigo4aK -Se5TBY8ZTNXeWHmb0mocQqvF1afPaA+W5OFhmHZhyJF81j4A4pFQh+GdCuatl9Idxjp9y7zaAzTV -jlsB9WoHtxa2bkp/AgMBAAGjQjBAMB0GA1UdDgQWBBQxw3kbuvVT1xfgiXotF2wKsyudMzAPBgNV -HRMECDAGAQH/AgEFMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAlGRZrTlk5ynr -E/5aw4sTV8gEJPB0d8Bg42f76Ymmg7+Wgnxu1MM9756AbrsptJh6sTtU6zkXR34ajgv8HzFZMQSy -zhfzLMdiNlXiItiJVbSYSKpk+tYcNthEeFpaIzpXl/V6ME+un2pMSyuOoAPjPuCp1NJ70rOo4nI8 -rZ7/gFnkm0W09juwzTkZmDLl6iFhkOQxIY40sfcvNUqFENrnijchvllj4PKFiDFT1FQUhXB59C4G -dyd1Lx+4ivn+xbrYNuSD7Odlt79jWvNGr4GUN9RBjNYj1h7P9WgbRGOiWrqnNVmh5XAFmw4jV5mU -Cm26OWMohpLzGITY+9HPBVZkVw== ------END CERTIFICATE----- - -Cybertrust Global Root -====================== ------BEGIN CERTIFICATE----- -MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYGA1UEChMPQ3li -ZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBSb290MB4XDTA2MTIxNTA4 -MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQD -ExZDeWJlcnRydXN0IEdsb2JhbCBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA -+Mi8vRRQZhP/8NN57CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW -0ozSJ8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2yHLtgwEZL -AfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iPt3sMpTjr3kfb1V05/Iin -89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNzFtApD0mpSPCzqrdsxacwOUBdrsTiXSZT -8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAYXSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAP -BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2 -MDSgMqAwhi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3JsMB8G -A1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUAA4IBAQBW7wojoFRO -lZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMjWqd8BfP9IjsO0QbE2zZMcwSO5bAi -5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUxXOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2 -hO0j9n0Hq0V+09+zv+mKts2oomcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+T -X3EJIrduPuocA06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW -WL1WMRJOEcgh4LMRkWXbtKaIOM5V ------END CERTIFICATE----- - -ePKI Root Certification Authority -================================= ------BEGIN CERTIFICATE----- -MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBeMQswCQYDVQQG -EwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0ZC4xKjAoBgNVBAsMIWVQS0kg -Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMx -MjdaMF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEq -MCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0B -AQEFAAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAHSyZbCUNs -IZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAhijHyl3SJCRImHJ7K2RKi -lTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3XDZoTM1PRYfl61dd4s5oz9wCGzh1NlDiv -qOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX -12ruOzjjK9SXDrkb5wdJfzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0O -WQqraffAsgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uUWH1+ -ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLSnT0IFaUQAS2zMnao -lQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pHdmX2Os+PYhcZewoozRrSgx4hxyy/ -vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJipNiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXi -Zo1jDiVN1Rmy5nk3pyKdVDECAwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/Qkqi -MAwGA1UdEwQFMAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH -ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGBuvl2ICO1J2B0 -1GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6YlPwZpVnPDimZI+ymBV3QGypzq -KOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkPJXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdV -xrsStZf0X4OFunHB2WyBEXYKCrC/gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEP -NXubrjlpC2JgQCA2j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+r -GNm65ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUBo2M3IUxE -xJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS/jQ6fbjpKdx2qcgw+BRx -gMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2zGp1iro2C6pSe3VkQw63d4k3jMdXH7Ojy -sP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTEW9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmOD -BCEIZ43ygknQW/2xzQ+DhNQ+IIX3Sj0rnP0qCglN6oH4EZw= ------END CERTIFICATE----- - -T\xc3\x9c\x42\xC4\xB0TAK UEKAE K\xC3\xB6k Sertifika Hizmet Sa\xC4\x9Flay\xc4\xb1\x63\xc4\xb1s\xc4\xb1 - S\xC3\xBCr\xC3\xBCm 3 -============================================================================================================================= ------BEGIN CERTIFICATE----- -MIIFFzCCA/+gAwIBAgIBETANBgkqhkiG9w0BAQUFADCCASsxCzAJBgNVBAYTAlRSMRgwFgYDVQQH -DA9HZWJ6ZSAtIEtvY2FlbGkxRzBFBgNVBAoMPlTDvHJraXllIEJpbGltc2VsIHZlIFRla25vbG9q -aWsgQXJhxZ90xLFybWEgS3VydW11IC0gVMOcQsSwVEFLMUgwRgYDVQQLDD9VbHVzYWwgRWxla3Ry -b25payB2ZSBLcmlwdG9sb2ppIEFyYcWfdMSxcm1hIEVuc3RpdMO8c8O8IC0gVUVLQUUxIzAhBgNV -BAsMGkthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppMUowSAYDVQQDDEFUw5xCxLBUQUsgVUVLQUUg -S8O2ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSAtIFPDvHLDvG0gMzAeFw0wNzA4 -MjQxMTM3MDdaFw0xNzA4MjExMTM3MDdaMIIBKzELMAkGA1UEBhMCVFIxGDAWBgNVBAcMD0dlYnpl -IC0gS29jYWVsaTFHMEUGA1UECgw+VMO8cmtpeWUgQmlsaW1zZWwgdmUgVGVrbm9sb2ppayBBcmHF -n3TEsXJtYSBLdXJ1bXUgLSBUw5xCxLBUQUsxSDBGBgNVBAsMP1VsdXNhbCBFbGVrdHJvbmlrIHZl -IEtyaXB0b2xvamkgQXJhxZ90xLFybWEgRW5zdGl0w7xzw7wgLSBVRUtBRTEjMCEGA1UECwwaS2Ft -dSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxSjBIBgNVBAMMQVTDnELEsFRBSyBVRUtBRSBLw7ZrIFNl -cnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIC0gU8O8csO8bSAzMIIBIjANBgkqhkiG9w0B -AQEFAAOCAQ8AMIIBCgKCAQEAim1L/xCIOsP2fpTo6iBkcK4hgb46ezzb8R1Sf1n68yJMlaCQvEhO -Eav7t7WNeoMojCZG2E6VQIdhn8WebYGHV2yKO7Rm6sxA/OOqbLLLAdsyv9Lrhc+hDVXDWzhXcLh1 -xnnRFDDtG1hba+818qEhTsXOfJlfbLm4IpNQp81McGq+agV/E5wrHur+R84EpW+sky58K5+eeROR -6Oqeyjh1jmKwlZMq5d/pXpduIF9fhHpEORlAHLpVK/swsoHvhOPc7Jg4OQOFCKlUAwUp8MmPi+oL -hmUZEdPpCSPeaJMDyTYcIW7OjGbxmTDY17PDHfiBLqi9ggtm/oLL4eAagsNAgQIDAQABo0IwQDAd -BgNVHQ4EFgQUvYiHyY/2pAoLquvF/pEjnatKijIwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF -MAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAB18+kmPNOm3JpIWmgV050vQbTlswyb2zrgxvMTfvCr4 -N5EY3ATIZJkrGG2AA1nJrvhY0D7twyOfaTyGOBye79oneNGEN3GKPEs5z35FBtYt2IpNeBLWrcLT -y9LQQfMmNkqblWwM7uXRQydmwYj3erMgbOqwaSvHIOgMA8RBBZniP+Rr+KCGgceExh/VS4ESshYh -LBOhgLJeDEoTniDYYkCrkOpkSi+sDQESeUWoL4cZaMjihccwsnX5OD+ywJO0a+IDRM5noN+J1q2M -dqMTw5RhK2vZbMEHCiIHhWyFJEapvj+LeISCfiQMnf2BN+MlqO02TpUsyZyQ2uypQjyttgI= ------END CERTIFICATE----- - -Buypass Class 2 CA 1 -==================== ------BEGIN CERTIFICATE----- -MIIDUzCCAjugAwIBAgIBATANBgkqhkiG9w0BAQUFADBLMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU -QnV5cGFzcyBBUy05ODMxNjMzMjcxHTAbBgNVBAMMFEJ1eXBhc3MgQ2xhc3MgMiBDQSAxMB4XDTA2 -MTAxMzEwMjUwOVoXDTE2MTAxMzEwMjUwOVowSzELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBh -c3MgQVMtOTgzMTYzMzI3MR0wGwYDVQQDDBRCdXlwYXNzIENsYXNzIDIgQ0EgMTCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBAIs8B0XY9t/mx8q6jUPFR42wWsE425KEHK8T1A9vNkYgxC7M -cXA0ojTTNy7Y3Tp3L8DrKehc0rWpkTSHIln+zNvnma+WwajHQN2lFYxuyHyXA8vmIPLXl18xoS83 -0r7uvqmtqEyeIWZDO6i88wmjONVZJMHCR3axiFyCO7srpgTXjAePzdVBHfCuuCkslFJgNJQ72uA4 -0Z0zPhX0kzLFANq1KWYOOngPIVJfAuWSeyXTkh4vFZ2B5J2O6O+JzhRMVB0cgRJNcKi+EAUXfh/R -uFdV7c27UsKwHnjCTTZoy1YmwVLBvXb3WNVyfh9EdrsAiR0WnVE1703CVu9r4Iw7DekCAwEAAaNC -MEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUP42aWYv8e3uco684sDntkHGA1sgwDgYDVR0P -AQH/BAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQAVGn4TirnoB6NLJzKyQJHyIdFkhb5jatLPgcIV -1Xp+DCmsNx4cfHZSldq1fyOhKXdlyTKdqC5Wq2B2zha0jX94wNWZUYN/Xtm+DKhQ7SLHrQVMdvvt -7h5HZPb3J31cKA9FxVxiXqaakZG3Uxcu3K1gnZZkOb1naLKuBctN518fV4bVIJwo+28TOPX2EZL2 -fZleHwzoq0QkKXJAPTZSr4xYkHPB7GEseaHsh7U/2k3ZIQAw3pDaDtMaSKk+hQsUi4y8QZ5q9w5w -wDX3OaJdZtB7WZ+oRxKaJyOkLY4ng5IgodcVf/EuGO70SH8vf/GhGLWhC5SgYiAynB321O+/TIho ------END CERTIFICATE----- - -EBG Elektronik Sertifika Hizmet Sa\xC4\x9Flay\xc4\xb1\x63\xc4\xb1s\xc4\xb1 -========================================================================== ------BEGIN CERTIFICATE----- -MIIF5zCCA8+gAwIBAgIITK9zQhyOdAIwDQYJKoZIhvcNAQEFBQAwgYAxODA2BgNVBAMML0VCRyBF -bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMTcwNQYDVQQKDC5FQkcg -QmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXptZXRsZXJpIEEuxZ4uMQswCQYDVQQGEwJUUjAe -Fw0wNjA4MTcwMDIxMDlaFw0xNjA4MTQwMDMxMDlaMIGAMTgwNgYDVQQDDC9FQkcgRWxla3Ryb25p -ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTE3MDUGA1UECgwuRUJHIEJpbGnFn2lt -IFRla25vbG9qaWxlcmkgdmUgSGl6bWV0bGVyaSBBLsWeLjELMAkGA1UEBhMCVFIwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQDuoIRh0DpqZhAy2DE4f6en5f2h4fuXd7hxlugTlkaDT7by -X3JWbhNgpQGR4lvFzVcfd2NR/y8927k/qqk153nQ9dAktiHq6yOU/im/+4mRDGSaBUorzAzu8T2b -gmmkTPiab+ci2hC6X5L8GCcKqKpE+i4stPtGmggDg3KriORqcsnlZR9uKg+ds+g75AxuetpX/dfr -eYteIAbTdgtsApWjluTLdlHRKJ2hGvxEok3MenaoDT2/F08iiFD9rrbskFBKW5+VQarKD7JK/oCZ -TqNGFav4c0JqwmZ2sQomFd2TkuzbqV9UIlKRcF0T6kjsbgNs2d1s/OsNA/+mgxKb8amTD8UmTDGy -Y5lhcucqZJnSuOl14nypqZoaqsNW2xCaPINStnuWt6yHd6i58mcLlEOzrz5z+kI2sSXFCjEmN1Zn -uqMLfdb3ic1nobc6HmZP9qBVFCVMLDMNpkGMvQQxahByCp0OLna9XvNRiYuoP1Vzv9s6xiQFlpJI -qkuNKgPlV5EQ9GooFW5Hd4RcUXSfGenmHmMWOeMRFeNYGkS9y8RsZteEBt8w9DeiQyJ50hBs37vm -ExH8nYQKE3vwO9D8owrXieqWfo1IhR5kX9tUoqzVegJ5a9KK8GfaZXINFHDk6Y54jzJ0fFfy1tb0 -Nokb+Clsi7n2l9GkLqq+CxnCRelwXQIDAJ3Zo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB -/wQEAwIBBjAdBgNVHQ4EFgQU587GT/wWZ5b6SqMHwQSny2re2kcwHwYDVR0jBBgwFoAU587GT/wW -Z5b6SqMHwQSny2re2kcwDQYJKoZIhvcNAQEFBQADggIBAJuYml2+8ygjdsZs93/mQJ7ANtyVDR2t -FcU22NU57/IeIl6zgrRdu0waypIN30ckHrMk2pGI6YNw3ZPX6bqz3xZaPt7gyPvT/Wwp+BVGoGgm -zJNSroIBk5DKd8pNSe/iWtkqvTDOTLKBtjDOWU/aWR1qeqRFsIImgYZ29fUQALjuswnoT4cCB64k -XPBfrAowzIpAoHMEwfuJJPaaHFy3PApnNgUIMbOv2AFoKuB4j3TeuFGkjGwgPaL7s9QJ/XvCgKqT -bCmYIai7FvOpEl90tYeY8pUm3zTvilORiF0alKM/fCL414i6poyWqD1SNGKfAB5UVUJnxk1Gj7sU -RT0KlhaOEKGXmdXTMIXM3rRyt7yKPBgpaP3ccQfuJDlq+u2lrDgv+R4QDgZxGhBM/nV+/x5XOULK -1+EVoVZVWRvRo68R2E7DpSvvkL/A7IITW43WciyTTo9qKd+FPNMN4KIYEsxVL0e3p5sC/kH2iExt -2qkBR4NkJ2IQgtYSe14DHzSpyZH+r11thie3I6p1GMog57AP14kOpmciY/SDQSsGS7tY1dHXt7kQ -Y9iJSrSq3RZj9W6+YKH47ejWkE8axsWgKdOnIaj1Wjz3x0miIZpKlVIglnKaZsv30oZDfCK+lvm9 -AahH3eU7QPl1K5srRmSGjR70j/sHd9DqSaIcjVIUpgqT ------END CERTIFICATE----- - -certSIGN ROOT CA -================ ------BEGIN CERTIFICATE----- -MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYTAlJPMREwDwYD -VQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTAeFw0wNjA3MDQxNzIwMDRa -Fw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UE -CxMQY2VydFNJR04gUk9PVCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7I -JUqOtdu0KBuqV5Do0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHH -rfAQUySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5dRdY4zTW2 -ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQOA7+j0xbm0bqQfWwCHTD -0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwvJoIQ4uNllAoEwF73XVv4EOLQunpL+943 -AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B -Af8EBAMCAcYwHQYDVR0OBBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IB -AQA+0hyJLjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecYMnQ8 -SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ44gx+FkagQnIl6Z0 -x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6IJd1hJyMctTEHBDa0GpC9oHRxUIlt -vBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNwi/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7Nz -TogVZ96edhBiIL5VaZVDADlN9u6wWk5JRFRYX0KD ------END CERTIFICATE----- - -CNNIC ROOT -========== ------BEGIN CERTIFICATE----- -MIIDVTCCAj2gAwIBAgIESTMAATANBgkqhkiG9w0BAQUFADAyMQswCQYDVQQGEwJDTjEOMAwGA1UE -ChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1QwHhcNMDcwNDE2MDcwOTE0WhcNMjcwNDE2MDcw -OTE0WjAyMQswCQYDVQQGEwJDTjEOMAwGA1UEChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1Qw -ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDTNfc/c3et6FtzF8LRb+1VvG7q6KR5smzD -o+/hn7E7SIX1mlwhIhAsxYLO2uOabjfhhyzcuQxauohV3/2q2x8x6gHx3zkBwRP9SFIhxFXf2tiz -VHa6dLG3fdfA6PZZxU3Iva0fFNrfWEQlMhkqx35+jq44sDB7R3IJMfAw28Mbdim7aXZOV/kbZKKT -VrdvmW7bCgScEeOAH8tjlBAKqeFkgjH5jCftppkA9nCTGPihNIaj3XrCGHn2emU1z5DrvTOTn1Or -czvmmzQgLx3vqR1jGqCA2wMv+SYahtKNu6m+UjqHZ0gNv7Sg2Ca+I19zN38m5pIEo3/PIKe38zrK -y5nLAgMBAAGjczBxMBEGCWCGSAGG+EIBAQQEAwIABzAfBgNVHSMEGDAWgBRl8jGtKvf33VKWCscC -wQ7vptU7ETAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIB/jAdBgNVHQ4EFgQUZfIxrSr3991S -lgrHAsEO76bVOxEwDQYJKoZIhvcNAQEFBQADggEBAEs17szkrr/Dbq2flTtLP1se31cpolnKOOK5 -Gv+e5m4y3R6u6jW39ZORTtpC4cMXYFDy0VwmuYK36m3knITnA3kXr5g9lNvHugDnuL8BV8F3RTIM -O/G0HAiw/VGgod2aHRM2mm23xzy54cXZF/qD1T0VoDy7HgviyJA/qIYM/PmLXoXLT1tLYhFHxUV8 -BS9BsZ4QaRuZluBVeftOhpm4lNqGOGqTo+fLbuXf6iFViZx9fX+Y9QCJ7uOEwFyWtcVG6kbghVW2 -G8kS1sHNzYDzAgE8yGnLRUhj2JTQ7IUOO04RZfSCjKY9ri4ilAnIXOo8gV0WKgOXFlUJ24pBgp5m -mxE= ------END CERTIFICATE----- - -ApplicationCA - Japanese Government -=================================== ------BEGIN CERTIFICATE----- -MIIDoDCCAoigAwIBAgIBMTANBgkqhkiG9w0BAQUFADBDMQswCQYDVQQGEwJKUDEcMBoGA1UEChMT -SmFwYW5lc2UgR292ZXJubWVudDEWMBQGA1UECxMNQXBwbGljYXRpb25DQTAeFw0wNzEyMTIxNTAw -MDBaFw0xNzEyMTIxNTAwMDBaMEMxCzAJBgNVBAYTAkpQMRwwGgYDVQQKExNKYXBhbmVzZSBHb3Zl -cm5tZW50MRYwFAYDVQQLEw1BcHBsaWNhdGlvbkNBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB -CgKCAQEAp23gdE6Hj6UG3mii24aZS2QNcfAKBZuOquHMLtJqO8F6tJdhjYq+xpqcBrSGUeQ3DnR4 -fl+Kf5Sk10cI/VBaVuRorChzoHvpfxiSQE8tnfWuREhzNgaeZCw7NCPbXCbkcXmP1G55IrmTwcrN -wVbtiGrXoDkhBFcsovW8R0FPXjQilbUfKW1eSvNNcr5BViCH/OlQR9cwFO5cjFW6WY2H/CPek9AE -jP3vbb3QesmlOmpyM8ZKDQUXKi17safY1vC+9D/qDihtQWEjdnjDuGWk81quzMKq2edY3rZ+nYVu -nyoKb58DKTCXKB28t89UKU5RMfkntigm/qJj5kEW8DOYRwIDAQABo4GeMIGbMB0GA1UdDgQWBBRU -WssmP3HMlEYNllPqa0jQk/5CdTAOBgNVHQ8BAf8EBAMCAQYwWQYDVR0RBFIwUKROMEwxCzAJBgNV -BAYTAkpQMRgwFgYDVQQKDA/ml6XmnKzlm73mlL/lupwxIzAhBgNVBAsMGuOCouODl+ODquOCseOD -vOOCt+ODp+ODs0NBMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADlqRHZ3ODrs -o2dGD/mLBqj7apAxzn7s2tGJfHrrLgy9mTLnsCTWw//1sogJhyzjVOGjprIIC8CFqMjSnHH2HZ9g -/DgzE+Ge3Atf2hZQKXsvcJEPmbo0NI2VdMV+eKlmXb3KIXdCEKxmJj3ekav9FfBv7WxfEPjzFvYD -io+nEhEMy/0/ecGc/WLuo89UDNErXxc+4z6/wCs+CZv+iKZ+tJIX/COUgb1up8WMwusRRdv4QcmW -dupwX3kSa+SjB1oF7ydJzyGfikwJcGapJsErEU4z0g781mzSDjJkaP+tBXhfAx2o45CsJOAPQKdL -rosot4LKGAfmt1t06SAZf7IbiVQ= ------END CERTIFICATE----- - -GeoTrust Primary Certification Authority - G3 -============================================= ------BEGIN CERTIFICATE----- -MIID/jCCAuagAwIBAgIQFaxulBmyeUtB9iepwxgPHzANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UE -BhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA4IEdlb1RydXN0 -IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFy -eSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEczMB4XDTA4MDQwMjAwMDAwMFoXDTM3MTIwMTIz -NTk1OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAo -YykgMjAwOCBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMT -LUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBANziXmJYHTNXOTIz+uvLh4yn1ErdBojqZI4xmKU4kB6Yzy5j -K/BGvESyiaHAKAxJcCGVn2TAppMSAmUmhsalifD614SgcK9PGpc/BkTVyetyEH3kMSj7HGHmKAdE -c5IiaacDiGydY8hS2pgn5whMcD60yRLBxWeDXTPzAxHsatBT4tG6NmCUgLthY2xbF37fQJQeqw3C -IShwiP/WJmxsYAQlTlV+fe+/lEjetx3dcI0FX4ilm/LC7urRQEFtYjgdVgbFA0dRIBn8exALDmKu -dlW/X3e+PkkBUz2YJQN2JFodtNuJ6nnltrM7P7pMKEF/BqxqjsHQ9gUdfeZChuOl1UcCAwEAAaNC -MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMR5yo6hTgMdHNxr -2zFblD4/MH8tMA0GCSqGSIb3DQEBCwUAA4IBAQAtxRPPVoB7eni9n64smefv2t+UXglpp+duaIy9 -cr5HqQ6XErhK8WTTOd8lNNTBzU6B8A8ExCSzNJbGpqow32hhc9f5joWJ7w5elShKKiePEI4ufIbE -Ap7aDHdlDkQNkv39sxY2+hENHYwOB4lqKVb3cvTdFZx3NWZXqxNT2I7BQMXXExZacse3aQHEerGD -AWh9jUGhlBjBJVz88P6DAod8DQ3PLghcSkANPuyBYeYk28rgDi0Hsj5W3I31QYUHSJsMC8tJP33s -t/3LjWeJGqvtux6jAAgIFyqCXDFdRootD4abdNlF+9RAsXqqaC2Gspki4cErx5z481+oghLrGREt ------END CERTIFICATE----- - -thawte Primary Root CA - G2 -=========================== ------BEGIN CERTIFICATE----- -MIICiDCCAg2gAwIBAgIQNfwmXNmET8k9Jj1Xm67XVjAKBggqhkjOPQQDAzCBhDELMAkGA1UEBhMC -VVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjE4MDYGA1UECxMvKGMpIDIwMDcgdGhhd3RlLCBJbmMu -IC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3Qg -Q0EgLSBHMjAeFw0wNzExMDUwMDAwMDBaFw0zODAxMTgyMzU5NTlaMIGEMQswCQYDVQQGEwJVUzEV -MBMGA1UEChMMdGhhd3RlLCBJbmMuMTgwNgYDVQQLEy8oYykgMjAwNyB0aGF3dGUsIEluYy4gLSBG -b3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAt -IEcyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEotWcgnuVnfFSeIf+iha/BebfowJPDQfGAFG6DAJS -LSKkQjnE/o/qycG+1E3/n3qe4rF8mq2nhglzh9HnmuN6papu+7qzcMBniKI11KOasf2twu8x+qi5 -8/sIxpHR+ymVo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU -mtgAMADna3+FGO6Lts6KDPgR4bswCgYIKoZIzj0EAwMDaQAwZgIxAN344FdHW6fmCsO99YCKlzUN -G4k8VIZ3KMqh9HneteY4sPBlcIx/AlTCv//YoT7ZzwIxAMSNlPzcU9LcnXgWHxUzI1NS41oxXZ3K -rr0TKUQNJ1uo52icEvdYPy5yAlejj6EULg== ------END CERTIFICATE----- - -thawte Primary Root CA - G3 -=========================== ------BEGIN CERTIFICATE----- -MIIEKjCCAxKgAwIBAgIQYAGXt0an6rS0mtZLL/eQ+zANBgkqhkiG9w0BAQsFADCBrjELMAkGA1UE -BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2 -aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDggdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv -cml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMzAeFw0w -ODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIGuMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhh -d3RlLCBJbmMuMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMTgwNgYD -VQQLEy8oYykgMjAwOCB0aGF3dGUsIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIG -A1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAtIEczMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A -MIIBCgKCAQEAsr8nLPvb2FvdeHsbnndmgcs+vHyu86YnmjSjaDFxODNi5PNxZnmxqWWjpYvVj2At -P0LMqmsywCPLLEHd5N/8YZzic7IilRFDGF/Eth9XbAoFWCLINkw6fKXRz4aviKdEAhN0cXMKQlkC -+BsUa0Lfb1+6a4KinVvnSr0eAXLbS3ToO39/fR8EtCab4LRarEc9VbjXsCZSKAExQGbY2SS99irY -7CFJXJv2eul/VTV+lmuNk5Mny5K76qxAwJ/C+IDPXfRa3M50hqY+bAtTyr2SzhkGcuYMXDhpxwTW -vGzOW/b3aJzcJRVIiKHpqfiYnODz1TEoYRFsZ5aNOZnLwkUkOQIDAQABo0IwQDAPBgNVHRMBAf8E -BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUrWyqlGCc7eT/+j4KdCtjA/e2Wb8wDQYJ -KoZIhvcNAQELBQADggEBABpA2JVlrAmSicY59BDlqQ5mU1143vokkbvnRFHfxhY0Cu9qRFHqKweK -A3rD6z8KLFIWoCtDuSWQP3CpMyVtRRooOyfPqsMpQhvfO0zAMzRbQYi/aytlryjvsvXDqmbOe1bu -t8jLZ8HJnBoYuMTDSQPxYA5QzUbF83d597YV4Djbxy8ooAw/dyZ02SUS2jHaGh7cKUGRIjxpp7sC -8rZcJwOJ9Abqm+RyguOhCcHpABnTPtRwa7pxpqpYrvS76Wy274fMm7v/OeZWYdMKp8RcTGB7BXcm -er/YB1IsYvdwY9k5vG8cwnncdimvzsUsZAReiDZuMdRAGmI0Nj81Aa6sY6A= ------END CERTIFICATE----- - -GeoTrust Primary Certification Authority - G2 -============================================= ------BEGIN CERTIFICATE----- -MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDELMAkGA1UEBhMC -VVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA3IEdlb1RydXN0IElu -Yy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBD -ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1 -OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg -MjAwNyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMTLUdl -b1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMjB2MBAGByqGSM49AgEG -BSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcLSo17VDs6bl8VAsBQps8lL33KSLjHUGMc -KiEIfJo22Av+0SbFWDEwKCXzXV2juLaltJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYD -VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+ -EVXVMAoGCCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGTqQ7m -ndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBuczrD6ogRLQy7rQkgu2 -npaqBA+K ------END CERTIFICATE----- - -VeriSign Universal Root Certification Authority -=============================================== ------BEGIN CERTIFICATE----- -MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCBvTELMAkGA1UE -BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO -ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk -IHVzZSBvbmx5MTgwNgYDVQQDEy9WZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9u -IEF1dGhvcml0eTAeFw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJV -UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv -cmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl -IG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNhbCBSb290IENlcnRpZmljYXRpb24gQXV0 -aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj -1mCOkdeQmIN65lgZOIzF9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGP -MiJhgsWHH26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+HLL72 -9fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN/BMReYTtXlT2NJ8I -AfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPTrJ9VAMf2CGqUuV/c4DPxhGD5WycR -tPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0G -CCsGAQUFBwEMBGEwX6FdoFswWTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2O -a8PPgGrUSBgsexkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud -DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4sAPmLGd75JR3 -Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+seQxIcaBlVZaDrHC1LGmWazx -Y8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTx -P/jgdFcrGJ2BtMQo2pSXpXDrrB2+BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+P -wGZsY6rp2aQW9IHRlRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4 -mJO37M2CYfE45k+XmCpajQ== ------END CERTIFICATE----- - -VeriSign Class 3 Public Primary Certification Authority - G4 -============================================================ ------BEGIN CERTIFICATE----- -MIIDhDCCAwqgAwIBAgIQL4D+I4wOIg9IZxIokYesszAKBggqhkjOPQQDAzCByjELMAkGA1UEBhMC -VVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3 -b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVz -ZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmlj -YXRpb24gQXV0aG9yaXR5IC0gRzQwHhcNMDcxMTA1MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCByjEL -MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBU -cnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRo -b3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5 -IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAASnVnp8 -Utpkmw4tXNherJI9/gHmGUo9FANL+mAnINmDiWn6VMaaGF5VKmTeBvaNSjutEDxlPZCIBIngMGGz -rl0Bp3vefLK+ymVhAIau2o970ImtTR1ZmkGxvEeA3J5iw/mjgbIwga8wDwYDVR0TAQH/BAUwAwEB -/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2UvZ2lmMCEw -HzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVyaXNpZ24u -Y29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFLMWkf3upm7ktS5Jj4d4gYDs5bG1MAoGCCqGSM49BAMD -A2gAMGUCMGYhDBgmYFo4e1ZC4Kf8NoRRkSAsdk1DPcQdhCPQrNZ8NQbOzWm9kA3bbEhCHQ6qQgIx -AJw9SDkjOVgaFRJZap7v1VmyHVIsmXHNxynfGyphe3HR3vPA5Q06Sqotp9iGKt0uEA== ------END CERTIFICATE----- - -NetLock Arany (Class Gold) Főtanúsítvány -============================================ ------BEGIN CERTIFICATE----- -MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQGEwJIVTERMA8G -A1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610 -dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBB -cmFueSAoQ2xhc3MgR29sZCkgRsWRdGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgx -MjA2MTUwODIxWjCBpzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxO -ZXRMb2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlmaWNhdGlv -biBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNzIEdvbGQpIEbFkXRhbsO6 -c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxCRec75LbRTDofTjl5Bu -0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrTlF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw -/HpYzY6b7cNGbIRwXdrzAZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAk -H3B5r9s5VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRGILdw -fzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2BJtr+UBdADTHLpl1 -neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAGAQH/AgEEMA4GA1UdDwEB/wQEAwIB -BjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2MU9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwW -qZw8UQCgwBEIBaeZ5m8BiFRhbvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTta -YtOUZcTh5m2C+C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC -bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2FuLjbvrW5Kfna -NwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2XjG4Kvte9nHfRCaexOYNkbQu -dZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= ------END CERTIFICATE----- - -Staat der Nederlanden Root CA - G2 -================================== ------BEGIN CERTIFICATE----- -MIIFyjCCA7KgAwIBAgIEAJiWjDANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJOTDEeMBwGA1UE -CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFhdCBkZXIgTmVkZXJsYW5kZW4g -Um9vdCBDQSAtIEcyMB4XDTA4MDMyNjExMTgxN1oXDTIwMDMyNTExMDMxMFowWjELMAkGA1UEBhMC -TkwxHjAcBgNVBAoMFVN0YWF0IGRlciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5l -ZGVybGFuZGVuIFJvb3QgQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMVZ -5291qj5LnLW4rJ4L5PnZyqtdj7U5EILXr1HgO+EASGrP2uEGQxGZqhQlEq0i6ABtQ8SpuOUfiUtn -vWFI7/3S4GCI5bkYYCjDdyutsDeqN95kWSpGV+RLufg3fNU254DBtvPUZ5uW6M7XxgpT0GtJlvOj -CwV3SPcl5XCsMBQgJeN/dVrlSPhOewMHBPqCYYdu8DvEpMfQ9XQ+pV0aCPKbJdL2rAQmPlU6Yiil -e7Iwr/g3wtG61jj99O9JMDeZJiFIhQGp5Rbn3JBV3w/oOM2ZNyFPXfUib2rFEhZgF1XyZWampzCR -OME4HYYEhLoaJXhena/MUGDWE4dS7WMfbWV9whUYdMrhfmQpjHLYFhN9C0lK8SgbIHRrxT3dsKpI -CT0ugpTNGmXZK4iambwYfp/ufWZ8Pr2UuIHOzZgweMFvZ9C+X+Bo7d7iscksWXiSqt8rYGPy5V65 -48r6f1CGPqI0GAwJaCgRHOThuVw+R7oyPxjMW4T182t0xHJ04eOLoEq9jWYv6q012iDTiIJh8BIi -trzQ1aTsr1SIJSQ8p22xcik/Plemf1WvbibG/ufMQFxRRIEKeN5KzlW/HdXZt1bv8Hb/C3m1r737 -qWmRRpdogBQ2HbN/uymYNqUg+oJgYjOk7Na6B6duxc8UpufWkjTYgfX8HV2qXB72o007uPc5AgMB -AAGjgZcwgZQwDwYDVR0TAQH/BAUwAwEB/zBSBgNVHSAESzBJMEcGBFUdIAAwPzA9BggrBgEFBQcC -ARYxaHR0cDovL3d3dy5wa2lvdmVyaGVpZC5ubC9wb2xpY2llcy9yb290LXBvbGljeS1HMjAOBgNV -HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJFoMocVHYnitfGsNig0jQt8YojrMA0GCSqGSIb3DQEBCwUA -A4ICAQCoQUpnKpKBglBu4dfYszk78wIVCVBR7y29JHuIhjv5tLySCZa59sCrI2AGeYwRTlHSeYAz -+51IvuxBQ4EffkdAHOV6CMqqi3WtFMTC6GY8ggen5ieCWxjmD27ZUD6KQhgpxrRW/FYQoAUXvQwj -f/ST7ZwaUb7dRUG/kSS0H4zpX897IZmflZ85OkYcbPnNe5yQzSipx6lVu6xiNGI1E0sUOlWDuYaN -kqbG9AclVMwWVxJKgnjIFNkXgiYtXSAfea7+1HAWFpWD2DU5/1JddRwWxRNVz0fMdWVSSt7wsKfk -CpYL+63C4iWEst3kvX5ZbJvw8NjnyvLplzh+ib7M+zkXYT9y2zqR2GUBGR2tUKRXCnxLvJxxcypF -URmFzI79R6d0lR2o0a9OF7FpJsKqeFdbxU2n5Z4FF5TKsl+gSRiNNOkmbEgeqmiSBeGCc1qb3Adb -CG19ndeNIdn8FCCqwkXfP+cAslHkwvgFuXkajDTznlvkN1trSt8sV4pAWja63XVECDdCcAz+3F4h -oKOKwJCcaNpQ5kUQR3i2TtJlycM33+FCY7BXN0Ute4qcvwXqZVUz9zkQxSgqIXobisQk+T8VyJoV -IPVVYpbtbZNQvOSqeK3Zywplh6ZmwcSBo3c6WB4L7oOLnR7SUqTMHW+wmG2UMbX4cQrcufx9MmDm -66+KAQ== ------END CERTIFICATE----- - -Juur-SK -======= ------BEGIN CERTIFICATE----- -MIIE5jCCA86gAwIBAgIEO45L/DANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lA -c2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAw -DgYDVQQDEwdKdXVyLVNLMB4XDTAxMDgzMDE0MjMwMVoXDTE2MDgyNjE0MjMwMVowXTEYMBYGCSqG -SIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVy -aW1pc2tlc2t1czEQMA4GA1UEAxMHSnV1ci1TSzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC -ggEBAIFxNj4zB9bjMI0TfncyRsvPGbJgMUaXhvSYRqTCZUXP00B841oiqBB4M8yIsdOBSvZiF3tf -TQou0M+LI+5PAk676w7KvRhj6IAcjeEcjT3g/1tf6mTll+g/mX8MCgkzABpTpyHhOEvWgxutr2TC -+Rx6jGZITWYfGAriPrsfB2WThbkasLnE+w0R9vXW+RvHLCu3GFH+4Hv2qEivbDtPL+/40UceJlfw -UR0zlv/vWT3aTdEVNMfqPxZIe5EcgEMPPbgFPtGzlc3Yyg/CQ2fbt5PgIoIuvvVoKIO5wTtpeyDa -Tpxt4brNj3pssAki14sL2xzVWiZbDcDq5WDQn/413z8CAwEAAaOCAawwggGoMA8GA1UdEwEB/wQF -MAMBAf8wggEWBgNVHSAEggENMIIBCTCCAQUGCisGAQQBzh8BAQEwgfYwgdAGCCsGAQUFBwICMIHD -HoHAAFMAZQBlACAAcwBlAHIAdABpAGYAaQBrAGEAYQB0ACAAbwBuACAAdgDkAGwAagBhAHMAdABh -AHQAdQBkACAAQQBTAC0AaQBzACAAUwBlAHIAdABpAGYAaQB0AHMAZQBlAHIAaQBtAGkAcwBrAGUA -cwBrAHUAcwAgAGEAbABhAG0ALQBTAEsAIABzAGUAcgB0AGkAZgBpAGsAYQBhAHQAaQBkAGUAIABr -AGkAbgBuAGkAdABhAG0AaQBzAGUAawBzMCEGCCsGAQUFBwIBFhVodHRwOi8vd3d3LnNrLmVlL2Nw -cy8wKwYDVR0fBCQwIjAgoB6gHIYaaHR0cDovL3d3dy5zay5lZS9qdXVyL2NybC8wHQYDVR0OBBYE -FASqekej5ImvGs8KQKcYP2/v6X2+MB8GA1UdIwQYMBaAFASqekej5ImvGs8KQKcYP2/v6X2+MA4G -A1UdDwEB/wQEAwIB5jANBgkqhkiG9w0BAQUFAAOCAQEAe8EYlFOiCfP+JmeaUOTDBS8rNXiRTHyo -ERF5TElZrMj3hWVcRrs7EKACr81Ptcw2Kuxd/u+gkcm2k298gFTsxwhwDY77guwqYHhpNjbRxZyL -abVAyJRld/JXIWY7zoVAtjNjGr95HvxcHdMdkxuLDF2FvZkwMhgJkVLpfKG6/2SSmuz+Ne6ML678 -IIbsSt4beDI3poHSna9aEhbKmVv8b20OxaAehsmR0FyYgl9jDIpaq9iVpszLita/ZEuOyoqysOkh -Mp6qqIWYNIE5ITuoOlIyPfZrN4YGWhWY3PARZv40ILcD9EEQfTmEeZZyY7aWAuVrua0ZTbvGRNs2 -yyqcjg== ------END CERTIFICATE----- - -Hongkong Post Root CA 1 -======================= ------BEGIN CERTIFICATE----- -MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoT -DUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMB4XDTAzMDUx -NTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25n -IFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEF -AAOCAQ8AMIIBCgKCAQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1 -ApzQjVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEnPzlTCeqr -auh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjhZY4bXSNmO7ilMlHIhqqh -qZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9nnV0ttgCXjqQesBCNnLsak3c78QA3xMY -V18meMjWCnl3v/evt3a5pQuEF10Q6m/hq5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNV -HRMBAf8ECDAGAQH/AgEDMA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7i -h9legYsCmEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI37pio -l7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clBoiMBdDhViw+5Lmei -IAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJsEhTkYY2sEJCehFC78JZvRZ+K88ps -T/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpOfMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilT -c4afU9hDDl3WY4JxHYB0yvbiAmvZWg== ------END CERTIFICATE----- - -SecureSign RootCA11 -=================== ------BEGIN CERTIFICATE----- -MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDErMCkGA1UEChMi -SmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoGA1UEAxMTU2VjdXJlU2lnbiBS -b290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSsw -KQYDVQQKEyJKYXBhbiBDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1 -cmVTaWduIFJvb3RDQTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvL -TJszi1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8h9uuywGO -wvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOVMdrAG/LuYpmGYz+/3ZMq -g6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rP -O7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitA -bpSACW22s293bzUIUPsCh8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZX -t94wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAKCh -OBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xmKbabfSVSSUOrTC4r -bnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQX5Ucv+2rIrVls4W6ng+4reV6G4pQ -Oh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWrQbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01 -y8hSyn+B/tlr0/cR7SXf+Of5pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061 -lgeLKBObjBmNQSdJQO7e5iNEOdyhIta6A/I= ------END CERTIFICATE----- - -ACEDICOM Root -============= ------BEGIN CERTIFICATE----- -MIIFtTCCA52gAwIBAgIIYY3HhjsBggUwDQYJKoZIhvcNAQEFBQAwRDEWMBQGA1UEAwwNQUNFRElD -T00gUm9vdDEMMAoGA1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00xCzAJBgNVBAYTAkVTMB4XDTA4 -MDQxODE2MjQyMloXDTI4MDQxMzE2MjQyMlowRDEWMBQGA1UEAwwNQUNFRElDT00gUm9vdDEMMAoG -A1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00xCzAJBgNVBAYTAkVTMIICIjANBgkqhkiG9w0BAQEF -AAOCAg8AMIICCgKCAgEA/5KV4WgGdrQsyFhIyv2AVClVYyT/kGWbEHV7w2rbYgIB8hiGtXxaOLHk -WLn709gtn70yN78sFW2+tfQh0hOR2QetAQXW8713zl9CgQr5auODAKgrLlUTY4HKRxx7XBZXehuD -YAQ6PmXDzQHe3qTWDLqO3tkE7hdWIpuPY/1NFgu3e3eM+SW10W2ZEi5PGrjm6gSSrj0RuVFCPYew -MYWveVqc/udOXpJPQ/yrOq2lEiZmueIM15jO1FillUAKt0SdE3QrwqXrIhWYENiLxQSfHY9g5QYb -m8+5eaA9oiM/Qj9r+hwDezCNzmzAv+YbX79nuIQZ1RXve8uQNjFiybwCq0Zfm/4aaJQ0PZCOrfbk -HQl/Sog4P75n/TSW9R28MHTLOO7VbKvU/PQAtwBbhTIWdjPp2KOZnQUAqhbm84F9b32qhm2tFXTT -xKJxqvQUfecyuB+81fFOvW8XAjnXDpVCOscAPukmYxHqC9FK/xidstd7LzrZlvvoHpKuE1XI2Sf2 -3EgbsCTBheN3nZqk8wwRHQ3ItBTutYJXCb8gWH8vIiPYcMt5bMlL8qkqyPyHK9caUPgn6C9D4zq9 -2Fdx/c6mUlv53U3t5fZvie27k5x2IXXwkkwp9y+cAS7+UEaeZAwUswdbxcJzbPEHXEUkFDWug/Fq -TYl6+rPYLWbwNof1K1MCAwEAAaOBqjCBpzAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKaz -4SsrSbbXc6GqlPUB53NlTKxQMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUprPhKytJttdzoaqU -9QHnc2VMrFAwRAYDVR0gBD0wOzA5BgRVHSAAMDEwLwYIKwYBBQUHAgEWI2h0dHA6Ly9hY2VkaWNv -bS5lZGljb21ncm91cC5jb20vZG9jMA0GCSqGSIb3DQEBBQUAA4ICAQDOLAtSUWImfQwng4/F9tqg -aHtPkl7qpHMyEVNEskTLnewPeUKzEKbHDZ3Ltvo/Onzqv4hTGzz3gvoFNTPhNahXwOf9jU8/kzJP -eGYDdwdY6ZXIfj7QeQCM8htRM5u8lOk6e25SLTKeI6RF+7YuE7CLGLHdztUdp0J/Vb77W7tH1Pwk -zQSulgUV1qzOMPPKC8W64iLgpq0i5ALudBF/TP94HTXa5gI06xgSYXcGCRZj6hitoocf8seACQl1 -ThCojz2GuHURwCRiipZ7SkXp7FnFvmuD5uHorLUwHv4FB4D54SMNUI8FmP8sX+g7tq3PgbUhh8oI -KiMnMCArz+2UW6yyetLHKKGKC5tNSixthT8Jcjxn4tncB7rrZXtaAWPWkFtPF2Y9fwsZo5NjEFIq -nxQWWOLcpfShFosOkYuByptZ+thrkQdlVV9SH686+5DdaaVbnG0OLLb6zqylfDJKZ0DcMDQj3dcE -I2bw/FWAp/tmGYI1Z2JwOV5vx+qQQEQIHriy1tvuWacNGHk0vFQYXlPKNFHtRQrmjseCNj6nOGOp -MCwXEGCSn1WHElkQwg9naRHMTh5+Spqtr0CodaxWkHS4oJyleW/c6RrIaQXpuvoDs3zk4E7Czp3o -tkYNbn5XOmeUwssfnHdKZ05phkOTOPu220+DkdRgfks+KzgHVZhepA== ------END CERTIFICATE----- - -Microsec e-Szigno Root CA 2009 -============================== ------BEGIN CERTIFICATE----- -MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYDVQQGEwJIVTER -MA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jv -c2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o -dTAeFw0wOTA2MTYxMTMwMThaFw0yOTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UE -BwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUt -U3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTCCASIw -DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvPkd6mJviZpWNwrZuuyjNA -fW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tccbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG -0IMZfcChEhyVbUr02MelTTMuhTlAdX4UfIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKA -pxn1ntxVUwOXewdI/5n7N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm -1HxdrtbCxkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1+rUC -AwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTLD8bf -QkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAbBgNVHREE -FDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqGSIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0o -lZMEyL/azXm4Q5DwpL7v8u8hmLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfX -I/OMn74dseGkddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 -tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c2Pm2G2JwCz02 -yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5tHMN1Rq41Bab2XD0h7lbwyYIi -LXpUq3DDfSJlgnCW ------END CERTIFICATE----- - -GlobalSign Root CA - R3 -======================= ------BEGIN CERTIFICATE----- -MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xv -YmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh -bFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT -aWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln -bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWt -iHL8RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsTgHeMCOFJ -0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmmKPZpO/bLyCiR5Z2KYVc3 -rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zdQQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjl -OCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZXriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2 -xmmFghcCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE -FI/wS3+oLkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZURUm7 -lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMpjjM5RcOO5LlXbKr8 -EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK6fBdRoyV3XpYKBovHd7NADdBj+1E -bddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQXmcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18 -YIvDQVETI53O9zJrlAGomecsMx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7r -kpeDMdmztcpHWD9f ------END CERTIFICATE----- - -Autoridad de Certificacion Firmaprofesional CIF A62634068 -========================================================= ------BEGIN CERTIFICATE----- -MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UEBhMCRVMxQjBA -BgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2 -MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEyMzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIw -QAYDVQQDDDlBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBB -NjI2MzQwNjgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDD -Utd9thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQMcas9UX4P -B99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefGL9ItWY16Ck6WaVICqjaY -7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15iNA9wBj4gGFrO93IbJWyTdBSTo3OxDqqH -ECNZXyAFGUftaI6SEspd/NYrspI8IM/hX68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyI -plD9amML9ZMWGxmPsu2bm8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctX -MbScyJCyZ/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirjaEbsX -LZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/TKI8xWVvTyQKmtFLK -bpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF6NkBiDkal4ZkQdU7hwxu+g/GvUgU -vzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVhOSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1Ud -EwEB/wQIMAYBAf8CAQEwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNH -DhpkLzCBpgYDVR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp -cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBvACAAZABlACAA -bABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBlAGwAbwBuAGEAIAAwADgAMAAx -ADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx -51tkljYyGOylMnfX40S2wBEqgLk9am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qk -R71kMrv2JYSiJ0L1ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaP -T481PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS3a/DTg4f -Jl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5kSeTy36LssUzAKh3ntLFl -osS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF3dvd6qJ2gHN99ZwExEWN57kci57q13XR -crHedUTnQn3iV2t93Jm8PYMo6oCTjcVMZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoR -saS8I8nkvof/uZS2+F0gStRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTD -KCOM/iczQ0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQBjLMi -6Et8Vcad+qMUu2WFbm5PEn4KPJ2V ------END CERTIFICATE----- - -Izenpe.com -========== ------BEGIN CERTIFICATE----- -MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4MQswCQYDVQQG -EwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wHhcNMDcxMjEz -MTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMu -QS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ -03rKDx6sp4boFmVqscIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAK -ClaOxdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6HLmYRY2xU -+zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFXuaOKmMPsOzTFlUFpfnXC -PCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQDyCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxT -OTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbK -F7jJeodWLBoBHmy+E60QrLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK -0GqfvEyNBjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8Lhij+ -0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIBQFqNeb+Lz0vPqhbB -leStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+HMh3/1uaD7euBUbl8agW7EekFwID -AQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2luZm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+ -SVpFTlBFIFMuQS4gLSBDSUYgQTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBG -NjIgUzgxQzBBBgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx -MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O -BBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUAA4ICAQB4pgwWSp9MiDrAyw6l -Fn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWblaQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbga -kEyrkgPH7UIBzg/YsfqikuFgba56awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8q -hT/AQKM6WfxZSzwoJNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Cs -g1lwLDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCTVyvehQP5 -aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGkLhObNA5me0mrZJfQRsN5 -nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJbUjWumDqtujWTI6cfSN01RpiyEGjkpTHC -ClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZo -Q0iy2+tzJOeRf1SktoA+naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1Z -WrOZyGlsQyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw== ------END CERTIFICATE----- - -Chambers of Commerce Root - 2008 -================================ ------BEGIN CERTIFICATE----- -MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYDVQQGEwJFVTFD -MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv -bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu -QS4xKTAnBgNVBAMTIENoYW1iZXJzIG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEy -Mjk1MFoXDTM4MDczMTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNl -ZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQF -EwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJl -cnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC -AQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW928sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKA -XuFixrYp4YFs8r/lfTJqVKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorj -h40G072QDuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR5gN/ -ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfLZEFHcpOrUMPrCXZk -NNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05aSd+pZgvMPMZ4fKecHePOjlO+Bd5g -D2vlGts/4+EhySnB8esHnFIbAURRPHsl18TlUlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331 -lubKgdaX8ZSD6e2wsWsSaR6s+12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ -0wlf2eOKNcx5Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj -ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAxhduub+84Mxh2 -EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNVHQ4EFgQU+SSsD7K1+HnA+mCI -G8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1+HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJ -BgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNh -bWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENh -bWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDiC -CQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUH -AgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAJASryI1 -wqM58C7e6bXpeHxIvj99RZJe6dqxGfwWPJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH -3qLPaYRgM+gQDROpI9CF5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbU -RWpGqOt1glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaHFoI6 -M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2pSB7+R5KBWIBpih1 -YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MDxvbxrN8y8NmBGuScvfaAFPDRLLmF -9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QGtjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcK -zBIKinmwPQN/aUv0NCB9szTqjktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvG -nrDQWzilm1DefhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg -OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZd0jQ ------END CERTIFICATE----- - -Global Chambersign Root - 2008 -============================== ------BEGIN CERTIFICATE----- -MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYDVQQGEwJFVTFD -MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv -bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu -QS4xJzAlBgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMx -NDBaFw0zODA3MzExMjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUg -Y3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJ -QTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD -aGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDf -VtPkOpt2RbQT2//BthmLN0EYlVJH6xedKYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXf -XjaOcNFccUMd2drvXNL7G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0 -ZJJ0YPP2zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4ddPB -/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyGHoiMvvKRhI9lNNgA -TH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2Id3UwD2ln58fQ1DJu7xsepeY7s2M -H/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3VyJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfe -Ox2YItaswTXbo6Al/3K1dh3ebeksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSF -HTynyQbehP9r6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh -wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsogzCtLkykPAgMB -AAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQWBBS5CcqcHtvTbDprru1U8VuT -BjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDprru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UE -BhMCRVUxQzBBBgNVBAcTOk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJm -aXJtYS5jb20vYWRkcmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJm -aXJtYSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiCCQDJzdPp -1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0 -dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAICIf3DekijZBZRG -/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZUohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6 -ReAJ3spED8IXDneRRXozX1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/s -dZ7LoR/xfxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVza2Mg -9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yydYhz2rXzdpjEetrHH -foUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMdSqlapskD7+3056huirRXhOukP9Du -qqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9OAP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETr -P3iZ8ntxPjzxmKfFGBI/5rsoM0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVq -c5iJWzouE4gev8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z -09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B ------END CERTIFICATE----- - -Go Daddy Root Certificate Authority - G2 -======================================== ------BEGIN CERTIFICATE----- -MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT -B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMu -MTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 -MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 -b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8G -A1UEAxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKDE6bFIEMBO4Tx5oVJnyfq -9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD -+qK+ihVqf94Lw7YZFAXK6sOoBJQ7RnwyDfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutd -fMh8+7ArU6SSYmlRJQVhGkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMl -NAJWJwGRtDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEAAaNC -MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27/a9 -BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmXWWcDYfF+OwYxdS2hII5PZYe096ac -vNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r -5N9ss4UXnT3ZJE95kTXWXwTrgIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYV -N8Gb5DKj7Tjo2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO -LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI4uJEvlz36hz1 ------END CERTIFICATE----- - -Starfield Root Certificate Authority - G2 -========================================= ------BEGIN CERTIFICATE----- -MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT -B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s -b2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVsZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0 -eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAw -DgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQg -VGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZpY2F0ZSBB -dXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3twQP89o/8ArFv -W59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMgnLRJdzIpVv257IzdIvpy3Cdhl+72WoTs -bhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNk -N3mSwOxGXn/hbVNMYq/NHwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7Nf -ZTD4p7dNdloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0HZbU -JtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC -AQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0GCSqGSIb3DQEBCwUAA4IBAQARWfol -TwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjUsHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx -4mcujJUDJi5DnUox9g61DLu34jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUw -F5okxBDgBPfg8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K -pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1mMpYjn0q7pBZ -c2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 ------END CERTIFICATE----- - -Starfield Services Root Certificate Authority - G2 -================================================== ------BEGIN CERTIFICATE----- -MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgT -B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s -b2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRl -IEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNV -BAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxT -dGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMg -Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2 -h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4Pa -hHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLP -LJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFB -rMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAwDwYDVR0TAQH/BAUw -AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMA0GCSqG -SIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMIbw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPP -E95Dz+I0swSdHynVv/heyNXBve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTy -xQGjhdByPq1zqwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd -iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn0q23KXB56jza -YyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCNsSi6 ------END CERTIFICATE----- - -AffirmTrust Commercial -====================== ------BEGIN CERTIFICATE----- -MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UEBhMCVVMxFDAS -BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMB4XDTEw -MDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly -bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEF -AAOCAQ8AMIIBCgKCAQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6Eqdb -DuKPHx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yrba0F8PrV -C8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPALMeIrJmqbTFeurCA+ukV6 -BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1yHp52UKqK39c/s4mT6NmgTWvRLpUHhww -MmWd5jyTXlBOeuM61G7MGvv50jeuJCqrVwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNV -HQ4EFgQUnZPGU4teyq8/nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC -AQYwDQYJKoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYGXUPG -hi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNjvbz4YYCanrHOQnDi -qX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivtZ8SOyUOyXGsViQK8YvxO8rUzqrJv -0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9gN53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0kh -sUlHRUe072o0EclNmsxZt9YCnlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= ------END CERTIFICATE----- - -AffirmTrust Networking -====================== ------BEGIN CERTIFICATE----- -MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UEBhMCVVMxFDAS -BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMB4XDTEw -MDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly -bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEF -AAOCAQ8AMIIBCgKCAQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SE -Hi3yYJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbuakCNrmreI -dIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRLQESxG9fhwoXA3hA/Pe24 -/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gb -h+0t+nvujArjqWaJGctB+d1ENmHP4ndGyH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNV -HQ4EFgQUBx/S55zawm6iQLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC -AQYwDQYJKoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfOtDIu -UFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzuQY0x2+c06lkh1QF6 -12S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZLgo/bNjR9eUJtGxUAArgFU2HdW23 -WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4uolu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9 -/ZFvgrG+CJPbFEfxojfHRZ48x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= ------END CERTIFICATE----- - -AffirmTrust Premium -=================== ------BEGIN CERTIFICATE----- -MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UEBhMCVVMxFDAS -BgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMB4XDTEwMDEy -OTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRy -dXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A -MIICCgKCAgEAxBLfqV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtn -BKAQJG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ+jjeRFcV -5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrSs8PhaJyJ+HoAVt70VZVs -+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmd -GPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d770O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5R -p9EixAqnOEhss/n/fauGV+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NI -S+LI+H+SqHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S5u04 -6uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4IaC1nEWTJ3s7xgaVY5 -/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TXOwF0lkLgAOIua+rF7nKsu7/+6qqo -+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYEFJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB -/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByv -MiPIs0laUZx2KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg -Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B8OWycvpEgjNC -6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQMKSOyARiqcTtNd56l+0OOF6S -L5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK -+4w1IX2COPKpVJEZNZOUbWo6xbLQu4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmV -BtWVyuEklut89pMFu+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFg -IxpHYoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8GKa1qF60 -g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaORtGdFNrHF+QFlozEJLUb -zxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6eKeC2uAloGRwYQw== ------END CERTIFICATE----- - -AffirmTrust Premium ECC -======================= ------BEGIN CERTIFICATE----- -MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMCVVMxFDASBgNV -BAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQcmVtaXVtIEVDQzAeFw0xMDAx -MjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJBgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1U -cnVzdDEgMB4GA1UEAwwXQWZmaXJtVHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQA -IgNiAAQNMF4bFZ0D0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQ -N8O9ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0GA1UdDgQW -BBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAK -BggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/VsaobgxCd05DhT1wV/GzTjxi+zygk8N53X -57hG8f2h4nECMEJZh0PUUd+60wkyWs6Iflc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKM -eQ== ------END CERTIFICATE----- - -Certum Trusted Network CA -========================= ------BEGIN CERTIFICATE----- -MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBMMSIwIAYDVQQK -ExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlv -biBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBUcnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIy -MTIwNzM3WhcNMjkxMjMxMTIwNzM3WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBU -ZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 -MSIwIAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0BAQEFAAOC -AQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rHUV+rpDKmYYe2bg+G0jAC -l/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LMTXPb865Px1bVWqeWifrzq2jUI4ZZJ88J -J7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVUBBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4 -fOQtf/WsX+sWn7Et0brMkUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0 -cvW0QM8xAcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNVHRMB -Af8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNVHQ8BAf8EBAMCAQYw -DQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15ysHhE49wcrwn9I0j6vSrEuVUEtRCj -jSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfLI9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1 -mS1FhIrlQgnXdAIv94nYmem8J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5aj -Zt3hrvJBW8qYVoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI -03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= ------END CERTIFICATE----- - -Certinomis - Autorité Racine -============================= ------BEGIN CERTIFICATE----- -MIIFnDCCA4SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJGUjETMBEGA1UEChMK -Q2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxJjAkBgNVBAMMHUNlcnRpbm9taXMg -LSBBdXRvcml0w6kgUmFjaW5lMB4XDTA4MDkxNzA4Mjg1OVoXDTI4MDkxNzA4Mjg1OVowYzELMAkG -A1UEBhMCRlIxEzARBgNVBAoTCkNlcnRpbm9taXMxFzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMSYw -JAYDVQQDDB1DZXJ0aW5vbWlzIC0gQXV0b3JpdMOpIFJhY2luZTCCAiIwDQYJKoZIhvcNAQEBBQAD -ggIPADCCAgoCggIBAJ2Fn4bT46/HsmtuM+Cet0I0VZ35gb5j2CN2DpdUzZlMGvE5x4jYF1AMnmHa -wE5V3udauHpOd4cN5bjr+p5eex7Ezyh0x5P1FMYiKAT5kcOrJ3NqDi5N8y4oH3DfVS9O7cdxbwly -Lu3VMpfQ8Vh30WC8Tl7bmoT2R2FFK/ZQpn9qcSdIhDWerP5pqZ56XjUl+rSnSTV3lqc2W+HN3yNw -2F1MpQiD8aYkOBOo7C+ooWfHpi2GR+6K/OybDnT0K0kCe5B1jPyZOQE51kqJ5Z52qz6WKDgmi92N -jMD2AR5vpTESOH2VwnHu7XSu5DaiQ3XV8QCb4uTXzEIDS3h65X27uK4uIJPT5GHfceF2Z5c/tt9q -c1pkIuVC28+BA5PY9OMQ4HL2AHCs8MF6DwV/zzRpRbWT5BnbUhYjBYkOjUjkJW+zeL9i9Qf6lSTC -lrLooyPCXQP8w9PlfMl1I9f09bze5N/NgL+RiH2nE7Q5uiy6vdFrzPOlKO1Enn1So2+WLhl+HPNb -xxaOu2B9d2ZHVIIAEWBsMsGoOBvrbpgT1u449fCfDu/+MYHB0iSVL1N6aaLwD4ZFjliCK0wi1F6g -530mJ0jfJUaNSih8hp75mxpZuWW/Bd22Ql095gBIgl4g9xGC3srYn+Y3RyYe63j3YcNBZFgCQfna -4NH4+ej9Uji29YnfAgMBAAGjWzBZMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G -A1UdDgQWBBQNjLZh2kS40RR9w759XkjwzspqsDAXBgNVHSAEEDAOMAwGCiqBegFWAgIAAQEwDQYJ -KoZIhvcNAQEFBQADggIBACQ+YAZ+He86PtvqrxyaLAEL9MW12Ukx9F1BjYkMTv9sov3/4gbIOZ/x -WqndIlgVqIrTseYyCYIDbNc/CMf4uboAbbnW/FIyXaR/pDGUu7ZMOH8oMDX/nyNTt7buFHAAQCva -R6s0fl6nVjBhK4tDrP22iCj1a7Y+YEq6QpA0Z43q619FVDsXrIvkxmUP7tCMXWY5zjKn2BCXwH40 -nJ+U8/aGH88bc62UeYdocMMzpXDn2NU4lG9jeeu/Cg4I58UvD0KgKxRA/yHgBcUn4YQRE7rWhh1B -CxMjidPJC+iKunqjo3M3NYB9Ergzd0A4wPpeMNLytqOx1qKVl4GbUu1pTP+A5FPbVFsDbVRfsbjv -JL1vnxHDx2TCDyhihWZeGnuyt++uNckZM6i4J9szVb9o4XVIRFb7zdNIu0eJOqxp9YDG5ERQL1TE -qkPFMTFYvZbF6nVsmnWxTfj3l/+WFvKXTej28xH5On2KOG4Ey+HTRRWqpdEdnV1j6CTmNhTih60b -WfVEm/vXd3wfAXBioSAaosUaKPQhA+4u2cGA6rnZgtZbdsLLO7XSAPCjDuGtbkD326C00EauFddE -wk01+dIL8hf2rGbVJLJP0RyZwG71fet0BLj5TXcJ17TPBzAJ8bgAVtkXFhYKK4bfjwEZGuW7gmP/ -vgt2Fl43N+bYdJeimUV5 ------END CERTIFICATE----- - -Root CA Generalitat Valenciana -============================== ------BEGIN CERTIFICATE----- -MIIGizCCBXOgAwIBAgIEO0XlaDANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJFUzEfMB0GA1UE -ChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290 -IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwHhcNMDEwNzA2MTYyMjQ3WhcNMjEwNzAxMTUyMjQ3 -WjBoMQswCQYDVQQGEwJFUzEfMB0GA1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UE -CxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwggEiMA0G -CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGKqtXETcvIorKA3Qdyu0togu8M1JAJke+WmmmO3I2 -F0zo37i7L3bhQEZ0ZQKQUgi0/6iMweDHiVYQOTPvaLRfX9ptI6GJXiKjSgbwJ/BXufjpTjJ3Cj9B -ZPPrZe52/lSqfR0grvPXdMIKX/UIKFIIzFVd0g/bmoGlu6GzwZTNVOAydTGRGmKy3nXiz0+J2ZGQ -D0EbtFpKd71ng+CT516nDOeB0/RSrFOyA8dEJvt55cs0YFAQexvba9dHq198aMpunUEDEO5rmXte -JajCq+TA81yc477OMUxkHl6AovWDfgzWyoxVjr7gvkkHD6MkQXpYHYTqWBLI4bft75PelAgxAgMB -AAGjggM7MIIDNzAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAGGFmh0dHA6Ly9vY3NwLnBraS5n -dmEuZXMwEgYDVR0TAQH/BAgwBgEB/wIBAjCCAjQGA1UdIASCAiswggInMIICIwYKKwYBBAG/VQIB -ADCCAhMwggHoBggrBgEFBQcCAjCCAdoeggHWAEEAdQB0AG8AcgBpAGQAYQBkACAAZABlACAAQwBl -AHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAFIAYQDtAHoAIABkAGUAIABsAGEAIABHAGUAbgBlAHIA -YQBsAGkAdABhAHQAIABWAGEAbABlAG4AYwBpAGEAbgBhAC4ADQAKAEwAYQAgAEQAZQBjAGwAYQBy -AGEAYwBpAPMAbgAgAGQAZQAgAFAAcgDhAGMAdABpAGMAYQBzACAAZABlACAAQwBlAHIAdABpAGYA -aQBjAGEAYwBpAPMAbgAgAHEAdQBlACAAcgBpAGcAZQAgAGUAbAAgAGYAdQBuAGMAaQBvAG4AYQBt -AGkAZQBuAHQAbwAgAGQAZQAgAGwAYQAgAHAAcgBlAHMAZQBuAHQAZQAgAEEAdQB0AG8AcgBpAGQA -YQBkACAAZABlACAAQwBlAHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAHMAZQAgAGUAbgBjAHUAZQBu -AHQAcgBhACAAZQBuACAAbABhACAAZABpAHIAZQBjAGMAaQDzAG4AIAB3AGUAYgAgAGgAdAB0AHAA -OgAvAC8AdwB3AHcALgBwAGsAaQAuAGcAdgBhAC4AZQBzAC8AYwBwAHMwJQYIKwYBBQUHAgEWGWh0 -dHA6Ly93d3cucGtpLmd2YS5lcy9jcHMwHQYDVR0OBBYEFHs100DSHHgZZu90ECjcPk+yeAT8MIGV -BgNVHSMEgY0wgYqAFHs100DSHHgZZu90ECjcPk+yeAT8oWykajBoMQswCQYDVQQGEwJFUzEfMB0G -A1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScwJQYDVQQDEx5S -b290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmGCBDtF5WgwDQYJKoZIhvcNAQEFBQADggEBACRh -TvW1yEICKrNcda3FbcrnlD+laJWIwVTAEGmiEi8YPyVQqHxK6sYJ2fR1xkDar1CdPaUWu20xxsdz -Ckj+IHLtb8zog2EWRpABlUt9jppSCS/2bxzkoXHPjCpaF3ODR00PNvsETUlR4hTJZGH71BTg9J63 -NI8KJr2XXPR5OkowGcytT6CYirQxlyric21+eLj4iIlPsSKRZEv1UN4D2+XFducTZnV+ZfsBn5OH -iJ35Rld8TWCvmHMTI6QgkYH60GFmuH3Rr9ZvHmw96RH9qfmCIoaZM3Fa6hlXPZHNqcCjbgcTpsnt -+GijnsNacgmHKNHEc8RzGF9QdRYxn7fofMM= ------END CERTIFICATE----- - -TWCA Root Certification Authority -================================= ------BEGIN CERTIFICATE----- -MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJ -VEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlmaWNh -dGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMzWhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQG -EwJUVzESMBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NB -IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK -AoIBAQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFEAcK0HMMx -QhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HHK3XLfJ+utdGdIzdjp9xC -oi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeXRfwZVzsrb+RH9JlF/h3x+JejiB03HFyP -4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/zrX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1r -y+UPizgN7gr8/g+YnzAx3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIB -BjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkqhkiG -9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeCMErJk/9q56YAf4lC -mtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdlsXebQ79NqZp4VKIV66IIArB6nCWlW -QtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62Dlhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVY -T0bf+215WfKEIlKuD8z7fDvnaspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocny -Yh0igzyXxfkZYiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== ------END CERTIFICATE----- - -Security Communication RootCA2 -============================== ------BEGIN CERTIFICATE----- -MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc -U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMeU2VjdXJpdHkgQ29tbXVuaWNh -dGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoXDTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMC -SlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3Vy -aXR5IENvbW11bmljYXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB -ANAVOVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGrzbl+dp++ -+T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVMVAX3NuRFg3sUZdbcDE3R -3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQhNBqyjoGADdH5H5XTz+L62e4iKrFvlNV -spHEfbmwhRkGeC7bYRr6hfVKkaHnFtWOojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1K -EOtOghY6rCcMU/Gt1SSwawNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8 -QIH4D5csOPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEB -CwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpFcoJxDjrSzG+ntKEj -u/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXcokgfGT+Ok+vx+hfuzU7jBBJV1uXk -3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6q -tnRGEmyR7jTV7JqR50S+kDFy1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29 -mvVXIwAHIRc/SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 ------END CERTIFICATE----- - -EC-ACC -====== ------BEGIN CERTIFICATE----- -MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB8zELMAkGA1UE -BhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2VydGlmaWNhY2lvIChOSUYgUS0w -ODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYD -VQQLEyxWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UE -CxMsSmVyYXJxdWlhIEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMT -BkVDLUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQGEwJFUzE7 -MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYt -SSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZl -Z2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJh -cnF1aWEgRW50aXRhdHMgZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUND -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R85iK -w5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm4CgPukLjbo73FCeT -ae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaVHMf5NLWUhdWZXqBIoH7nF2W4onW4 -HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNdQlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0a -E9jD2z3Il3rucO2n5nzbcc8tlGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw -0JDnJwIDAQABo4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E -BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4opvpXY0wfwYD -VR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBodHRwczovL3d3dy5jYXRjZXJ0 -Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5l -dC92ZXJhcnJlbCAwDQYJKoZIhvcNAQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJ -lF7W2u++AVtd0x7Y/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNa -Al6kSBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhyRp/7SNVe -l+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOSAgu+TGbrIP65y7WZf+a2 -E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xlnJ2lYJU6Un/10asIbvPuW/mIPX64b24D -5EI= ------END CERTIFICATE----- - -Hellenic Academic and Research Institutions RootCA 2011 -======================================================= ------BEGIN CERTIFICATE----- -MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1IxRDBCBgNVBAoT -O0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9y -aXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z -IFJvb3RDQSAyMDExMB4XDTExMTIwNjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYT -AkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z -IENlcnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNo -IEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB -AKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPzdYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI -1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJfel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa -71HFK9+WXesyHgLacEnsbgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u -8yBRQlqD75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSPFEDH -3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNVHRMBAf8EBTADAQH/ -MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp5dgTBCPuQSUwRwYDVR0eBEAwPqA8 -MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQub3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQu -b3JnMA0GCSqGSIb3DQEBBQUAA4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVt -XdMiKahsog2p6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8 -TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7dIsXRSZMFpGD -/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8AcysNnq/onN694/BtZqhFLKPM58N -7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXIl7WdmplNsDz4SgCbZN2fOUvRJ9e4 ------END CERTIFICATE----- - -Actalis Authentication Root CA -============================== ------BEGIN CERTIFICATE----- -MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UEBhMCSVQxDjAM -BgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UE -AwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDky -MjExMjIwMlowazELMAkGA1UEBhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlz -IFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 -IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNvUTufClrJ -wkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX4ay8IMKx4INRimlNAJZa -by/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9KK3giq0itFZljoZUj5NDKd45RnijMCO6 -zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1f -YVEiVRvjRuPjPdA1YprbrxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2 -oxgkg4YQ51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2Fbe8l -EfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxeKF+w6D9Fz8+vm2/7 -hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4Fv6MGn8i1zeQf1xcGDXqVdFUNaBr8 -EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbnfpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5 -jF66CyCU3nuDuP/jVo23Eek7jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLY -iDrIn3hm7YnzezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt -ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQALe3KHwGCmSUyI -WOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70jsNjLiNmsGe+b7bAEzlgqqI0 -JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDzWochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKx -K3JCaKygvU5a2hi/a5iB0P2avl4VSM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+ -Xlff1ANATIGk0k9jpwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC -4yyXX04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+OkfcvHlXHo -2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7RK4X9p2jIugErsWx0Hbhz -lefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btUZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXem -OR/qnuOf0GZvBeyqdn6/axag67XH/JJULysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9 -vwGYT7JZVEc+NHt4bVaTLnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== ------END CERTIFICATE----- - -Trustis FPS Root CA -=================== ------BEGIN CERTIFICATE----- -MIIDZzCCAk+gAwIBAgIQGx+ttiD5JNM2a/fH8YygWTANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQG -EwJHQjEYMBYGA1UEChMPVHJ1c3RpcyBMaW1pdGVkMRwwGgYDVQQLExNUcnVzdGlzIEZQUyBSb290 -IENBMB4XDTAzMTIyMzEyMTQwNloXDTI0MDEyMTExMzY1NFowRTELMAkGA1UEBhMCR0IxGDAWBgNV -BAoTD1RydXN0aXMgTGltaXRlZDEcMBoGA1UECxMTVHJ1c3RpcyBGUFMgUm9vdCBDQTCCASIwDQYJ -KoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVQe547NdDfxIzNjpvto8A2mfRC6qc+gIMPpqdZh8mQ -RUN+AOqGeSoDvT03mYlmt+WKVoaTnGhLaASMk5MCPjDSNzoiYYkchU59j9WvezX2fihHiTHcDnlk -H5nSW7r+f2C/revnPDgpai/lkQtV/+xvWNUtyd5MZnGPDNcE2gfmHhjjvSkCqPoc4Vu5g6hBSLwa -cY3nYuUtsuvffM/bq1rKMfFMIvMFE/eC+XN5DL7XSxzA0RU8k0Fk0ea+IxciAIleH2ulrG6nS4zt -o3Lmr2NNL4XSFDWaLk6M6jKYKIahkQlBOrTh4/L68MkKokHdqeMDx4gVOxzUGpTXn2RZEm0CAwEA -AaNTMFEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBS6+nEleYtXQSUhhgtx67JkDoshZzAd -BgNVHQ4EFgQUuvpxJXmLV0ElIYYLceuyZA6LIWcwDQYJKoZIhvcNAQEFBQADggEBAH5Y//01GX2c -GE+esCu8jowU/yyg2kdbw++BLa8F6nRIW/M+TgfHbcWzk88iNVy2P3UnXwmWzaD+vkAMXBJV+JOC -yinpXj9WV4s4NvdFGkwozZ5BuO1WTISkQMi4sKUraXAEasP41BIy+Q7DsdwyhEQsb8tGD+pmQQ9P -8Vilpg0ND2HepZ5dfWWhPBfnqFVO76DH7cZEf1T1o+CP8HxVIo8ptoGj4W1OLBuAZ+ytIJ8MYmHV -l/9D7S3B2l0pKoU/rGXuhg8FjZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYl -iB6XzCGcKQENZetX2fNXlrtIzYE= ------END CERTIFICATE----- - -StartCom Certification Authority -================================ ------BEGIN CERTIFICATE----- -MIIHhzCCBW+gAwIBAgIBLTANBgkqhkiG9w0BAQsFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN -U3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmlu -ZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0 -NjM3WhcNMzYwOTE3MTk0NjM2WjB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRk -LjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMg -U3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -ggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZkpMyONvg45iPwbm2xPN1y -o4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rfOQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/ -Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/CJi/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/d -eMotHweXMAEtcnn6RtYTKqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt -2PZE4XNiHzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMMAv+Z -6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w+2OqqGwaVLRcJXrJ -osmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/ -untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVc -UjyJthkqcwEKDwOzEmDyei+B26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT -37uMdBNSSwIDAQABo4ICEDCCAgwwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD -VR0OBBYEFE4L7xqkQFulF2mHMMo0aEPQQa7yMB8GA1UdIwQYMBaAFE4L7xqkQFulF2mHMMo0aEPQ -Qa7yMIIBWgYDVR0gBIIBUTCCAU0wggFJBgsrBgEEAYG1NwEBATCCATgwLgYIKwYBBQUHAgEWImh0 -dHA6Ly93d3cuc3RhcnRzc2wuY29tL3BvbGljeS5wZGYwNAYIKwYBBQUHAgEWKGh0dHA6Ly93d3cu -c3RhcnRzc2wuY29tL2ludGVybWVkaWF0ZS5wZGYwgc8GCCsGAQUFBwICMIHCMCcWIFN0YXJ0IENv -bW1lcmNpYWwgKFN0YXJ0Q29tKSBMdGQuMAMCAQEagZZMaW1pdGVkIExpYWJpbGl0eSwgcmVhZCB0 -aGUgc2VjdGlvbiAqTGVnYWwgTGltaXRhdGlvbnMqIG9mIHRoZSBTdGFydENvbSBDZXJ0aWZpY2F0 -aW9uIEF1dGhvcml0eSBQb2xpY3kgYXZhaWxhYmxlIGF0IGh0dHA6Ly93d3cuc3RhcnRzc2wuY29t -L3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilTdGFydENvbSBG -cmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQsFAAOCAgEAjo/n3JR5 -fPGFf59Jb2vKXfuM/gTFwWLRfUKKvFO3lANmMD+x5wqnUCBVJX92ehQN6wQOQOY+2IirByeDqXWm -N3PH/UvSTa0XQMhGvjt/UfzDtgUx3M2FIk5xt/JxXrAaxrqTi3iSSoX4eA+D/i+tLPfkpLst0OcN -Org+zvZ49q5HJMqjNTbOx8aHmNrs++myziebiMMEofYLWWivydsQD032ZGNcpRJvkrKTlMeIFw6T -tn5ii5B/q06f/ON1FE8qMt9bDeD1e5MNq6HPh+GlBEXoPBKlCcWw0bdT82AUuoVpaiF8H3VhFyAX -e2w7QSlc4axa0c2Mm+tgHRns9+Ww2vl5GKVFP0lDV9LdJNUso/2RjSe15esUBppMeyG7Oq0wBhjA -2MFrLH9ZXF2RsXAiV+uKa0hK1Q8p7MZAwC+ITGgBF3f0JBlPvfrhsiAhS90a2Cl9qrjeVOwhVYBs -HvUwyKMQ5bLmKhQxw4UtjJixhlpPiVktucf3HMiKf8CdBUrmQk9io20ppB+Fq9vlgcitKj1MXVuE -JnHEhV5xJMqlG2zYYdMa4FTbzrqpMrUi9nNBCV24F10OD5mQ1kfabwo6YigUZ4LZ8dCAWZvLMdib -D4x3TrVoivJs9iQOLWxwxXPR3hTQcY+203sC9uO41Alua551hDnmfyWl8kgAwKQB2j8= ------END CERTIFICATE----- - -StartCom Certification Authority G2 -=================================== ------BEGIN CERTIFICATE----- -MIIFYzCCA0ugAwIBAgIBOzANBgkqhkiG9w0BAQsFADBTMQswCQYDVQQGEwJJTDEWMBQGA1UEChMN -U3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg -RzIwHhcNMTAwMTAxMDEwMDAxWhcNMzkxMjMxMjM1OTAxWjBTMQswCQYDVQQGEwJJTDEWMBQGA1UE -ChMNU3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3Jp -dHkgRzIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2iTZbB7cgNr2Cu+EWIAOVeq8O -o1XJJZlKxdBWQYeQTSFgpBSHO839sj60ZwNq7eEPS8CRhXBF4EKe3ikj1AENoBB5uNsDvfOpL9HG -4A/LnooUCri99lZi8cVytjIl2bLzvWXFDSxu1ZJvGIsAQRSCb0AgJnooD/Uefyf3lLE3PbfHkffi -Aez9lInhzG7TNtYKGXmu1zSCZf98Qru23QumNK9LYP5/Q0kGi4xDuFby2X8hQxfqp0iVAXV16iul -Q5XqFYSdCI0mblWbq9zSOdIxHWDirMxWRST1HFSr7obdljKF+ExP6JV2tgXdNiNnvP8V4so75qbs -O+wmETRIjfaAKxojAuuKHDp2KntWFhxyKrOq42ClAJ8Em+JvHhRYW6Vsi1g8w7pOOlz34ZYrPu8H -vKTlXcxNnw3h3Kq74W4a7I/htkxNeXJdFzULHdfBR9qWJODQcqhaX2YtENwvKhOuJv4KHBnM0D4L -nMgJLvlblnpHnOl68wVQdJVznjAJ85eCXuaPOQgeWeU1FEIT/wCc976qUM/iUUjXuG+v+E5+M5iS -FGI6dWPPe/regjupuznixL0sAA7IF6wT700ljtizkC+p2il9Ha90OrInwMEePnWjFqmveiJdnxMa -z6eg6+OGCtP95paV1yPIN93EfKo2rJgaErHgTuixO/XWb/Ew1wIDAQABo0IwQDAPBgNVHRMBAf8E -BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUS8W0QGutHLOlHGVuRjaJhwUMDrYwDQYJ -KoZIhvcNAQELBQADggIBAHNXPyzVlTJ+N9uWkusZXn5T50HsEbZH77Xe7XRcxfGOSeD8bpkTzZ+K -2s06Ctg6Wgk/XzTQLwPSZh0avZyQN8gMjgdalEVGKua+etqhqaRpEpKwfTbURIfXUfEpY9Z1zRbk -J4kd+MIySP3bmdCPX1R0zKxnNBFi2QwKN4fRoxdIjtIXHfbX/dtl6/2o1PXWT6RbdejF0mCy2wl+ -JYt7ulKSnj7oxXehPOBKc2thz4bcQ///If4jXSRK9dNtD2IEBVeC2m6kMyV5Sy5UGYvMLD0w6dEG -/+gyRr61M3Z3qAFdlsHB1b6uJcDJHgoJIIihDsnzb02CVAAgp9KP5DlUFy6NHrgbuxu9mk47EDTc -nIhT76IxW1hPkWLIwpqazRVdOKnWvvgTtZ8SafJQYqz7Fzf07rh1Z2AQ+4NQ+US1dZxAF7L+/Xld -blhYXzD8AK6vM8EOTmy6p6ahfzLbOOCxchcKK5HsamMm7YnUeMx0HgX4a/6ManY5Ka5lIxKVCCIc -l85bBu4M4ru8H0ST9tg4RQUh7eStqxK2A6RCLi3ECToDZ2mEmuFZkIoohdVddLHRDiBYmxOlsGOm -7XtH/UVVMKTumtTm4ofvmMkyghEpIrwACjFeLQ/Ajulrso8uBtjRkcfGEvRM/TAXw8HaOFvjqerm -obp573PYtlNXLfbQ4ddI ------END CERTIFICATE----- - -Buypass Class 2 Root CA -======================= ------BEGIN CERTIFICATE----- -MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU -QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMiBSb290IENBMB4X -DTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1owTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1 -eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIw -DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1 -g1Lr6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPVL4O2fuPn -9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC911K2GScuVr1QGbNgGE41b -/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHxMlAQTn/0hpPshNOOvEu/XAFOBz3cFIqU -CqTqc/sLUegTBxj6DvEr0VQVfTzh97QZQmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeff -awrbD02TTqigzXsu8lkBarcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgI -zRFo1clrUs3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLiFRhn -Bkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRSP/TizPJhk9H9Z2vX -Uq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN9SG9dKpN6nIDSdvHXx1iY8f93ZHs -M+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxPAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD -VR0OBBYEFMmAd+BikoL1RpzzuvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF -AAOCAgEAU18h9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s -A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3tOluwlN5E40EI -osHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo+fsicdl9sz1Gv7SEr5AcD48S -aq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYd -DnkM/crqJIByw5c/8nerQyIKx+u2DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWD -LfJ6v9r9jv6ly0UsH8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0 -oyLQI+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK75t98biGC -wWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h3PFaTWwyI0PurKju7koS -CTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPzY11aWOIv4x3kqdbQCtCev9eBCfHJxyYN -rJgWVqA= ------END CERTIFICATE----- - -Buypass Class 3 Root CA -======================= ------BEGIN CERTIFICATE----- -MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU -QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMyBSb290IENBMB4X -DTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFowTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1 -eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIw -DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRH -sJ8YZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3EN3coTRiR -5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9tznDDgFHmV0ST9tD+leh -7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX0DJq1l1sDPGzbjniazEuOQAnFN44wOwZ -ZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH -2xc519woe2v1n/MuwU8XKhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV -/afmiSTYzIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvSO1UQ -RwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D34xFMFbG02SrZvPA -Xpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgPK9Dx2hzLabjKSWJtyNBjYt1gD1iq -j6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD -VR0OBBYEFEe4zf/lb+74suwvTg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF -AAOCAgEAACAjQTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV -cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXSIGrs/CIBKM+G -uIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2HJLw5QY33KbmkJs4j1xrG0aG -Q0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsaO5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8 -ZORK15FTAaggiG6cX0S5y2CBNOxv033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2 -KSb12tjE8nVhz36udmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz -6MkEkbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg413OEMXbug -UZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvDu79leNKGef9JOxqDDPDe -eOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq4/g7u9xN12TyUb7mqqta6THuBrxzvxNi -Cp/HuZc= ------END CERTIFICATE----- - -T-TeleSec GlobalRoot Class 3 -============================ ------BEGIN CERTIFICATE----- -MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM -IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU -cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgx -MDAxMTAyOTU2WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz -dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD -ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0GCSqGSIb3 -DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN8ELg63iIVl6bmlQdTQyK -9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/RLyTPWGrTs0NvvAgJ1gORH8EGoel15YU -NpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZF -iP0Zf3WHHx+xGwpzJFu5ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W -0eDrXltMEnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGjQjBA -MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1A/d2O2GCahKqGFPr -AyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOyWL6ukK2YJ5f+AbGwUgC4TeQbIXQb -fsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzT -ucpH9sry9uetuUg/vBa3wW306gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7h -P0HHRwA11fXT91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml -e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4pTpPDpFQUWw== ------END CERTIFICATE----- - -EE Certification Centre Root CA -=============================== ------BEGIN CERTIFICATE----- -MIIEAzCCAuugAwIBAgIQVID5oHPtPwBMyonY43HmSjANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQG -EwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2Vy -dGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMCIYDzIw -MTAxMDMwMTAxMDMwWhgPMjAzMDEyMTcyMzU5NTlaMHUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlB -UyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMSgwJgYDVQQDDB9FRSBDZXJ0aWZpY2F0aW9uIENlbnRy -ZSBSb290IENBMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEBAQUAA4IB -DwAwggEKAoIBAQDIIMDs4MVLqwd4lfNE7vsLDP90jmG7sWLqI9iroWUyeuuOF0+W2Ap7kaJjbMeM -TC55v6kF/GlclY1i+blw7cNRfdCT5mzrMEvhvH2/UpvObntl8jixwKIy72KyaOBhU8E2lf/slLo2 -rpwcpzIP5Xy0xm90/XsY6KxX7QYgSzIwWFv9zajmofxwvI6Sc9uXp3whrj3B9UiHbCe9nyV0gVWw -93X2PaRka9ZP585ArQ/dMtO8ihJTmMmJ+xAdTX7Nfh9WDSFwhfYggx/2uh8Ej+p3iDXE/+pOoYtN -P2MbRMNE1CV2yreN1x5KZmTNXMWcg+HCCIia7E6j8T4cLNlsHaFLAgMBAAGjgYowgYcwDwYDVR0T -AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBLyWj7qVhy/zQas8fElyalL1BSZ -MEUGA1UdJQQ+MDwGCCsGAQUFBwMCBggrBgEFBQcDAQYIKwYBBQUHAwMGCCsGAQUFBwMEBggrBgEF -BQcDCAYIKwYBBQUHAwkwDQYJKoZIhvcNAQEFBQADggEBAHv25MANqhlHt01Xo/6tu7Fq1Q+e2+Rj -xY6hUFaTlrg4wCQiZrxTFGGVv9DHKpY5P30osxBAIWrEr7BSdxjhlthWXePdNl4dp1BUoMUq5KqM -lIpPnTX/dqQGE5Gion0ARD9V04I8GtVbvFZMIi5GQ4okQC3zErg7cBqklrkar4dBGmoYDQZPxz5u -uSlNDUmJEYcyW+ZLBMjkXOZ0c5RdFpgTlf7727FE5TpwrDdr5rMzcijJs1eg9gIWiAYLtqZLICjU -3j2LrTcFU3T+bsy8QxdxXvnFzBqpYe73dgzzcvRyrc9yAjYHR8/vGVCJYMzpJJUPwssd8m92kMfM -dcGWxZ0= ------END CERTIFICATE----- - -TURKTRUST Certificate Services Provider Root 2007 -================================================= ------BEGIN CERTIFICATE----- -MIIEPTCCAyWgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBvzE/MD0GA1UEAww2VMOcUktUUlVTVCBF -bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGEwJUUjEP -MA0GA1UEBwwGQW5rYXJhMV4wXAYDVQQKDFVUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUg -QmlsacWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLiAoYykgQXJhbMSxayAyMDA3MB4X -DTA3MTIyNTE4MzcxOVoXDTE3MTIyMjE4MzcxOVowgb8xPzA9BgNVBAMMNlTDnFJLVFJVU1QgRWxl -a3Ryb25payBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTELMAkGA1UEBhMCVFIxDzAN -BgNVBAcMBkFua2FyYTFeMFwGA1UECgxVVMOcUktUUlVTVCBCaWxnaSDEsGxldGnFn2ltIHZlIEJp -bGnFn2ltIEfDvHZlbmxpxJ9pIEhpem1ldGxlcmkgQS7Fni4gKGMpIEFyYWzEsWsgMjAwNzCCASIw -DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKu3PgqMyKVYFeaK7yc9SrToJdPNM8Ig3BnuiD9N -YvDdE3ePYakqtdTyuTFYKTsvP2qcb3N2Je40IIDu6rfwxArNK4aUyeNgsURSsloptJGXg9i3phQv -KUmi8wUG+7RP2qFsmmaf8EMJyupyj+sA1zU511YXRxcw9L6/P8JorzZAwan0qafoEGsIiveGHtya -KhUG9qPw9ODHFNRRf8+0222vR5YXm3dx2KdxnSQM9pQ/hTEST7ruToK4uT6PIzdezKKqdfcYbwnT -rqdUKDT74eA7YH2gvnmJhsifLfkKS8RQouf9eRbHegsYz85M733WB2+Y8a+xwXrXgTW4qhe04MsC -AwEAAaNCMEAwHQYDVR0OBBYEFCnFkKslrxHkYb+j/4hhkeYO/pyBMA4GA1UdDwEB/wQEAwIBBjAP -BgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQAQDdr4Ouwo0RSVgrESLFF6QSU2TJ/s -Px+EnWVUXKgWAkD6bho3hO9ynYYKVZ1WKKxmLNA6VpM0ByWtCLCPyA8JWcqdmBzlVPi5RX9ql2+I -aE1KBiY3iAIOtsbWcpnOa3faYjGkVh+uX4132l32iPwa2Z61gfAyuOOI0JzzaqC5mxRZNTZPz/OO -Xl0XrRWV2N2y1RVuAE6zS89mlOTgzbUF2mNXi+WzqtvALhyQRNsaXRik7r4EW5nVcV9VZWRi1aKb -BFmGyGJ353yCRWo9F7/snXUMrqNvWtMvmDb08PUZqxFdyKbjKlhqQgnDvZImZjINXQhVdP+MmNAK -poRq0Tl9 ------END CERTIFICATE----- - -D-TRUST Root Class 3 CA 2 2009 -============================== ------BEGIN CERTIFICATE----- -MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQK -DAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTAe -Fw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NThaME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxE -LVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIw -DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOAD -ER03UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42tSHKXzlA -BF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9RySPocq60vFYJfxLLHLGv -KZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsMlFqVlNpQmvH/pStmMaTJOKDfHR+4CS7z -p+hnUquVH+BGPtikw8paxTGA6Eian5Rp/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUC -AwEAAaOCARowggEWMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ -4PGEMA4GA1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVjdG9y -eS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUyMENBJTIwMiUyMDIw -MDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRlcmV2b2NhdGlvbmxpc3QwQ6BBoD+G -PWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3JsL2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAw -OS5jcmwwDQYJKoZIhvcNAQELBQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm -2H6NMLVwMeniacfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 -o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4KzCUqNQT4YJEV -dT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8PIWmawomDeCTmGCufsYkl4ph -X5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3YJohw1+qRzT65ysCQblrGXnRl11z+o+I= ------END CERTIFICATE----- - -D-TRUST Root Class 3 CA 2 EV 2009 -================================= ------BEGIN CERTIFICATE----- -MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK -DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw -OTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUwNDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK -DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw -OTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfS -egpnljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM03TP1YtHh -zRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6ZqQTMFexgaDbtCHu39b+T -7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lRp75mpoo6Kr3HGrHhFPC+Oh25z1uxav60 -sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure35 -11H3a6UCAwEAAaOCASQwggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyv -cop9NteaHNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFwOi8v -ZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xhc3MlMjAzJTIwQ0El -MjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1ERT9jZXJ0aWZpY2F0ZXJldm9jYXRp -b25saXN0MEagRKBChkBodHRwOi8vd3d3LmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xh -c3NfM19jYV8yX2V2XzIwMDkuY3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+ -PPoeUSbrh/Yp3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 -nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNFCSuGdXzfX2lX -ANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7naxpeG0ILD5EJt/rDiZE4OJudA -NCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqXKVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVv -w9y4AyHqnxbxLFS1 ------END CERTIFICATE----- - -PSCProcert -========== ------BEGIN CERTIFICATE----- -MIIJhjCCB26gAwIBAgIBCzANBgkqhkiG9w0BAQsFADCCAR4xPjA8BgNVBAMTNUF1dG9yaWRhZCBk -ZSBDZXJ0aWZpY2FjaW9uIFJhaXogZGVsIEVzdGFkbyBWZW5lem9sYW5vMQswCQYDVQQGEwJWRTEQ -MA4GA1UEBxMHQ2FyYWNhczEZMBcGA1UECBMQRGlzdHJpdG8gQ2FwaXRhbDE2MDQGA1UEChMtU2lz -dGVtYSBOYWNpb25hbCBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9uaWNhMUMwQQYDVQQLEzpTdXBl -cmludGVuZGVuY2lhIGRlIFNlcnZpY2lvcyBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9uaWNhMSUw -IwYJKoZIhvcNAQkBFhZhY3JhaXpAc3VzY2VydGUuZ29iLnZlMB4XDTEwMTIyODE2NTEwMFoXDTIw -MTIyNTIzNTk1OVowgdExJjAkBgkqhkiG9w0BCQEWF2NvbnRhY3RvQHByb2NlcnQubmV0LnZlMQ8w -DQYDVQQHEwZDaGFjYW8xEDAOBgNVBAgTB01pcmFuZGExKjAoBgNVBAsTIVByb3ZlZWRvciBkZSBD -ZXJ0aWZpY2Fkb3MgUFJPQ0VSVDE2MDQGA1UEChMtU2lzdGVtYSBOYWNpb25hbCBkZSBDZXJ0aWZp -Y2FjaW9uIEVsZWN0cm9uaWNhMQswCQYDVQQGEwJWRTETMBEGA1UEAxMKUFNDUHJvY2VydDCCAiIw -DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANW39KOUM6FGqVVhSQ2oh3NekS1wwQYalNo97BVC -wfWMrmoX8Yqt/ICV6oNEolt6Vc5Pp6XVurgfoCfAUFM+jbnADrgV3NZs+J74BCXfgI8Qhd19L3uA -3VcAZCP4bsm+lU/hdezgfl6VzbHvvnpC2Mks0+saGiKLt38GieU89RLAu9MLmV+QfI4tL3czkkoh -RqipCKzx9hEC2ZUWno0vluYC3XXCFCpa1sl9JcLB/KpnheLsvtF8PPqv1W7/U0HU9TI4seJfxPmO -EO8GqQKJ/+MMbpfg353bIdD0PghpbNjU5Db4g7ayNo+c7zo3Fn2/omnXO1ty0K+qP1xmk6wKImG2 -0qCZyFSTXai20b1dCl53lKItwIKOvMoDKjSuc/HUtQy9vmebVOvh+qBa7Dh+PsHMosdEMXXqP+UH -0quhJZb25uSgXTcYOWEAM11G1ADEtMo88aKjPvM6/2kwLkDd9p+cJsmWN63nOaK/6mnbVSKVUyqU -td+tFjiBdWbjxywbk5yqjKPK2Ww8F22c3HxT4CAnQzb5EuE8XL1mv6JpIzi4mWCZDlZTOpx+FIyw -Bm/xhnaQr/2v/pDGj59/i5IjnOcVdo/Vi5QTcmn7K2FjiO/mpF7moxdqWEfLcU8UC17IAggmosvp -r2uKGcfLFFb14dq12fy/czja+eevbqQ34gcnAgMBAAGjggMXMIIDEzASBgNVHRMBAf8ECDAGAQH/ -AgEBMDcGA1UdEgQwMC6CD3N1c2NlcnRlLmdvYi52ZaAbBgVghl4CAqASDBBSSUYtRy0yMDAwNDAz -Ni0wMB0GA1UdDgQWBBRBDxk4qpl/Qguk1yeYVKIXTC1RVDCCAVAGA1UdIwSCAUcwggFDgBStuyId -xuDSAaj9dlBSk+2YwU2u06GCASakggEiMIIBHjE+MDwGA1UEAxM1QXV0b3JpZGFkIGRlIENlcnRp -ZmljYWNpb24gUmFpeiBkZWwgRXN0YWRvIFZlbmV6b2xhbm8xCzAJBgNVBAYTAlZFMRAwDgYDVQQH -EwdDYXJhY2FzMRkwFwYDVQQIExBEaXN0cml0byBDYXBpdGFsMTYwNAYDVQQKEy1TaXN0ZW1hIE5h -Y2lvbmFsIGRlIENlcnRpZmljYWNpb24gRWxlY3Ryb25pY2ExQzBBBgNVBAsTOlN1cGVyaW50ZW5k -ZW5jaWEgZGUgU2VydmljaW9zIGRlIENlcnRpZmljYWNpb24gRWxlY3Ryb25pY2ExJTAjBgkqhkiG -9w0BCQEWFmFjcmFpekBzdXNjZXJ0ZS5nb2IudmWCAQowDgYDVR0PAQH/BAQDAgEGME0GA1UdEQRG -MESCDnByb2NlcnQubmV0LnZloBUGBWCGXgIBoAwMClBTQy0wMDAwMDKgGwYFYIZeAgKgEgwQUklG -LUotMzE2MzUzNzMtNzB2BgNVHR8EbzBtMEagRKBChkBodHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52 -ZS9sY3IvQ0VSVElGSUNBRE8tUkFJWi1TSEEzODRDUkxERVIuY3JsMCOgIaAfhh1sZGFwOi8vYWNy -YWl6LnN1c2NlcnRlLmdvYi52ZTA3BggrBgEFBQcBAQQrMCkwJwYIKwYBBQUHMAGGG2h0dHA6Ly9v -Y3NwLnN1c2NlcnRlLmdvYi52ZTBBBgNVHSAEOjA4MDYGBmCGXgMBAjAsMCoGCCsGAQUFBwIBFh5o -dHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52ZS9kcGMwDQYJKoZIhvcNAQELBQADggIBACtZ6yKZu4Sq -T96QxtGGcSOeSwORR3C7wJJg7ODU523G0+1ng3dS1fLld6c2suNUvtm7CpsR72H0xpkzmfWvADmN -g7+mvTV+LFwxNG9s2/NkAZiqlCxB3RWGymspThbASfzXg0gTB1GEMVKIu4YXx2sviiCtxQuPcD4q -uxtxj7mkoP3YldmvWb8lK5jpY5MvYB7Eqvh39YtsL+1+LrVPQA3uvFd359m21D+VJzog1eWuq2w1 -n8GhHVnchIHuTQfiSLaeS5UtQbHh6N5+LwUeaO6/u5BlOsju6rEYNxxik6SgMexxbJHmpHmJWhSn -FFAFTKQAVzAswbVhltw+HoSvOULP5dAssSS830DD7X9jSr3hTxJkhpXzsOfIt+FTvZLm8wyWuevo -5pLtp4EJFAv8lXrPj9Y0TzYS3F7RNHXGRoAvlQSMx4bEqCaJqD8Zm4G7UaRKhqsLEQ+xrmNTbSjq -3TNWOByyrYDT13K9mmyZY+gAu0F2BbdbmRiKw7gSXFbPVgx96OLP7bx0R/vu0xdOIk9W/1DzLuY5 -poLWccret9W6aAjtmcz9opLLabid+Qqkpj5PkygqYWwHJgD/ll9ohri4zspV4KuxPX+Y1zMOWj3Y -eMLEYC/HYvBhkdI4sPaeVdtAgAUSM84dkpvRabP/v/GSCmE1P93+hvS84Bpxs2Km ------END CERTIFICATE----- - -China Internet Network Information Center EV Certificates Root -============================================================== ------BEGIN CERTIFICATE----- -MIID9zCCAt+gAwIBAgIESJ8AATANBgkqhkiG9w0BAQUFADCBijELMAkGA1UEBhMCQ04xMjAwBgNV -BAoMKUNoaW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24gQ2VudGVyMUcwRQYDVQQDDD5D -aGluYSBJbnRlcm5ldCBOZXR3b3JrIEluZm9ybWF0aW9uIENlbnRlciBFViBDZXJ0aWZpY2F0ZXMg -Um9vdDAeFw0xMDA4MzEwNzExMjVaFw0zMDA4MzEwNzExMjVaMIGKMQswCQYDVQQGEwJDTjEyMDAG -A1UECgwpQ2hpbmEgSW50ZXJuZXQgTmV0d29yayBJbmZvcm1hdGlvbiBDZW50ZXIxRzBFBgNVBAMM -PkNoaW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24gQ2VudGVyIEVWIENlcnRpZmljYXRl -cyBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm35z7r07eKpkQ0H1UN+U8i6y -jUqORlTSIRLIOTJCBumD1Z9S7eVnAztUwYyZmczpwA//DdmEEbK40ctb3B75aDFk4Zv6dOtouSCV -98YPjUesWgbdYavi7NifFy2cyjw1l1VxzUOFsUcW9SxTgHbP0wBkvUCZ3czY28Sf1hNfQYOL+Q2H -klY0bBoQCxfVWhyXWIQ8hBouXJE0bhlffxdpxWXvayHG1VA6v2G5BY3vbzQ6sm8UY78WO5upKv23 -KzhmBsUs4qpnHkWnjQRmQvaPK++IIGmPMowUc9orhpFjIpryp9vOiYurXccUwVswah+xt54ugQEC -7c+WXmPbqOY4twIDAQABo2MwYTAfBgNVHSMEGDAWgBR8cks5x8DbYqVPm6oYNJKiyoOCWTAPBgNV -HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUfHJLOcfA22KlT5uqGDSSosqD -glkwDQYJKoZIhvcNAQEFBQADggEBACrDx0M3j92tpLIM7twUbY8opJhJywyA6vPtI2Z1fcXTIWd5 -0XPFtQO3WKwMVC/GVhMPMdoG52U7HW8228gd+f2ABsqjPWYWqJ1MFn3AlUa1UeTiH9fqBk1jjZaM -7+czV0I664zBechNdn3e9rG3geCg+aF4RhcaVpjwTj2rHO3sOdwHSPdj/gauwqRcalsyiMXHM4Ws -ZkJHwlgkmeHlPuV1LI5D1l08eB6olYIpUNHRFrrvwb562bTYzB5MRuF3sTGrvSrIzo9uoV1/A3U0 -5K2JRVRevq4opbs/eHnrc7MKDf2+yfdWrPa37S+bISnHOLaVxATywy39FCqQmbkHzJ8= ------END CERTIFICATE----- - -Swisscom Root CA 2 -================== ------BEGIN CERTIFICATE----- -MIIF2TCCA8GgAwIBAgIQHp4o6Ejy5e/DfEoeWhhntjANBgkqhkiG9w0BAQsFADBkMQswCQYDVQQG -EwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0YWwgQ2VydGlmaWNhdGUgU2Vy -dmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3QgQ0EgMjAeFw0xMTA2MjQwODM4MTRaFw0zMTA2 -MjUwNzM4MTRaMGQxCzAJBgNVBAYTAmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGln -aXRhbCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAyMIIC -IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlUJOhJ1R5tMJ6HJaI2nbeHCOFvErjw0DzpPM -LgAIe6szjPTpQOYXTKueuEcUMncy3SgM3hhLX3af+Dk7/E6J2HzFZ++r0rk0X2s682Q2zsKwzxNo -ysjL67XiPS4h3+os1OD5cJZM/2pYmLcX5BtS5X4HAB1f2uY+lQS3aYg5oUFgJWFLlTloYhyxCwWJ -wDaCFCE/rtuh/bxvHGCGtlOUSbkrRsVPACu/obvLP+DHVxxX6NZp+MEkUp2IVd3Chy50I9AU/SpH -Wrumnf2U5NGKpV+GY3aFy6//SSj8gO1MedK75MDvAe5QQQg1I3ArqRa0jG6F6bYRzzHdUyYb3y1a -SgJA/MTAtukxGggo5WDDH8SQjhBiYEQN7Aq+VRhxLKX0srwVYv8c474d2h5Xszx+zYIdkeNL6yxS -NLCK/RJOlrDrcH+eOfdmQrGrrFLadkBXeyq96G4DsguAhYidDMfCd7Camlf0uPoTXGiTOmekl9Ab -mbeGMktg2M7v0Ax/lZ9vh0+Hio5fCHyqW/xavqGRn1V9TrALacywlKinh/LTSlDcX3KwFnUey7QY -Ypqwpzmqm59m2I2mbJYV4+by+PGDYmy7Velhk6M99bFXi08jsJvllGov34zflVEpYKELKeRcVVi3 -qPyZ7iVNTA6z00yPhOgpD/0QVAKFyPnlw4vP5w8CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYw -HQYDVR0hBBYwFDASBgdghXQBUwIBBgdghXQBUwIBMBIGA1UdEwEB/wQIMAYBAf8CAQcwHQYDVR0O -BBYEFE0mICKJS9PVpAqhb97iEoHF8TwuMB8GA1UdIwQYMBaAFE0mICKJS9PVpAqhb97iEoHF8Twu -MA0GCSqGSIb3DQEBCwUAA4ICAQAyCrKkG8t9voJXiblqf/P0wS4RfbgZPnm3qKhyN2abGu2sEzsO -v2LwnN+ee6FTSA5BesogpxcbtnjsQJHzQq0Qw1zv/2BZf82Fo4s9SBwlAjxnffUy6S8w5X2lejjQ -82YqZh6NM4OKb3xuqFp1mrjX2lhIREeoTPpMSQpKwhI3qEAMw8jh0FcNlzKVxzqfl9NX+Ave5XLz -o9v/tdhZsnPdTSpxsrpJ9csc1fV5yJmz/MFMdOO0vSk3FQQoHt5FRnDsr7p4DooqzgB53MBfGWcs -a0vvaGgLQ+OswWIJ76bdZWGgr4RVSJFSHMYlkSrQwSIjYVmvRRGFHQEkNI/Ps/8XciATwoCqISxx -OQ7Qj1zB09GOInJGTB2Wrk9xseEFKZZZ9LuedT3PDTcNYtsmjGOpI99nBjx8Oto0QuFmtEYE3saW -mA9LSHokMnWRn6z3aOkquVVlzl1h0ydw2Df+n7mvoC5Wt6NlUe07qxS/TFED6F+KBZvuim6c779o -+sjaC+NCydAXFJy3SuCvkychVSa1ZC+N8f+mQAWFBVzKBxlcCxMoTFh/wqXvRdpg065lYZ1Tg3TC -rvJcwhbtkj6EPnNgiLx29CzP0H1907he0ZESEOnN3col49XtmS++dYFLJPlFRpTJKSFTnCZFqhMX -5OfNeOI5wSsSnqaeG8XmDtkx2Q== ------END CERTIFICATE----- - -Swisscom Root EV CA 2 -===================== ------BEGIN CERTIFICATE----- -MIIF4DCCA8igAwIBAgIRAPL6ZOJ0Y9ON/RAdBB92ylgwDQYJKoZIhvcNAQELBQAwZzELMAkGA1UE -BhMCY2gxETAPBgNVBAoTCFN3aXNzY29tMSUwIwYDVQQLExxEaWdpdGFsIENlcnRpZmljYXRlIFNl -cnZpY2VzMR4wHAYDVQQDExVTd2lzc2NvbSBSb290IEVWIENBIDIwHhcNMTEwNjI0MDk0NTA4WhcN -MzEwNjI1MDg0NTA4WjBnMQswCQYDVQQGEwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsT -HERpZ2l0YWwgQ2VydGlmaWNhdGUgU2VydmljZXMxHjAcBgNVBAMTFVN3aXNzY29tIFJvb3QgRVYg -Q0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMT3HS9X6lds93BdY7BxUglgRCgz -o3pOCvrY6myLURYaVa5UJsTMRQdBTxB5f3HSek4/OE6zAMaVylvNwSqD1ycfMQ4jFrclyxy0uYAy -Xhqdk/HoPGAsp15XGVhRXrwsVgu42O+LgrQ8uMIkqBPHoCE2G3pXKSinLr9xJZDzRINpUKTk4Rti -GZQJo/PDvO/0vezbE53PnUgJUmfANykRHvvSEaeFGHR55E+FFOtSN+KxRdjMDUN/rhPSays/p8Li -qG12W0OfvrSdsyaGOx9/5fLoZigWJdBLlzin5M8J0TbDC77aO0RYjb7xnglrPvMyxyuHxuxenPaH -Za0zKcQvidm5y8kDnftslFGXEBuGCxobP/YCfnvUxVFkKJ3106yDgYjTdLRZncHrYTNaRdHLOdAG -alNgHa/2+2m8atwBz735j9m9W8E6X47aD0upm50qKGsaCnw8qyIL5XctcfaCNYGu+HuB5ur+rPQa -m3Rc6I8k9l2dRsQs0h4rIWqDJ2dVSqTjyDKXZpBy2uPUZC5f46Fq9mDU5zXNysRojddxyNMkM3Ox -bPlq4SjbX8Y96L5V5jcb7STZDxmPX2MYWFCBUWVv8p9+agTnNCRxunZLWB4ZvRVgRaoMEkABnRDi -xzgHcgplwLa7JSnaFp6LNYth7eVxV4O1PHGf40+/fh6Bn0GXAgMBAAGjgYYwgYMwDgYDVR0PAQH/ -BAQDAgGGMB0GA1UdIQQWMBQwEgYHYIV0AVMCAgYHYIV0AVMCAjASBgNVHRMBAf8ECDAGAQH/AgED -MB0GA1UdDgQWBBRF2aWBbj2ITY1x0kbBbkUe88SAnTAfBgNVHSMEGDAWgBRF2aWBbj2ITY1x0kbB -bkUe88SAnTANBgkqhkiG9w0BAQsFAAOCAgEAlDpzBp9SSzBc1P6xXCX5145v9Ydkn+0UjrgEjihL -j6p7jjm02Vj2e6E1CqGdivdj5eu9OYLU43otb98TPLr+flaYC/NUn81ETm484T4VvwYmneTwkLbU -wp4wLh/vx3rEUMfqe9pQy3omywC0Wqu1kx+AiYQElY2NfwmTv9SoqORjbdlk5LgpWgi/UOGED1V7 -XwgiG/W9mR4U9s70WBCCswo9GcG/W6uqmdjyMb3lOGbcWAXH7WMaLgqXfIeTK7KK4/HsGOV1timH -59yLGn602MnTihdsfSlEvoqq9X46Lmgxk7lq2prg2+kupYTNHAq4Sgj5nPFhJpiTt3tm7JFe3VE/ -23MPrQRYCd0EApUKPtN236YQHoA96M2kZNEzx5LH4k5E4wnJTsJdhw4Snr8PyQUQ3nqjsTzyP6Wq -J3mtMX0f/fwZacXduT98zca0wjAefm6S139hdlqP65VNvBFuIXxZN5nQBrz5Bm0yFqXZaajh3DyA -HmBR3NdUIR7KYndP+tiPsys6DXhyyWhBWkdKwqPrGtcKqzwyVcgKEZzfdNbwQBUdyLmPtTbFr/gi -uMod89a2GQ+fYWVq6nTIfI/DT11lgh/ZDYnadXL77/FHZxOzyNEZiCcmmpl5fx7kLD977vHeTYuW -l8PVP3wbI+2ksx0WckNLIOFZfsLorSa/ovc= ------END CERTIFICATE----- - -CA Disig Root R1 -================ ------BEGIN CERTIFICATE----- -MIIFaTCCA1GgAwIBAgIJAMMDmu5QkG4oMA0GCSqGSIb3DQEBBQUAMFIxCzAJBgNVBAYTAlNLMRMw -EQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMuMRkwFwYDVQQDExBDQSBEaXNp -ZyBSb290IFIxMB4XDTEyMDcxOTA5MDY1NloXDTQyMDcxOTA5MDY1NlowUjELMAkGA1UEBhMCU0sx -EzARBgNVBAcTCkJyYXRpc2xhdmExEzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERp -c2lnIFJvb3QgUjEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCqw3j33Jijp1pedxiy -3QRkD2P9m5YJgNXoqqXinCaUOuiZc4yd39ffg/N4T0Dhf9Kn0uXKE5Pn7cZ3Xza1lK/oOI7bm+V8 -u8yN63Vz4STN5qctGS7Y1oprFOsIYgrY3LMATcMjfF9DCCMyEtztDK3AfQ+lekLZWnDZv6fXARz2 -m6uOt0qGeKAeVjGu74IKgEH3G8muqzIm1Cxr7X1r5OJeIgpFy4QxTaz+29FHuvlglzmxZcfe+5nk -CiKxLU3lSCZpq+Kq8/v8kiky6bM+TR8noc2OuRf7JT7JbvN32g0S9l3HuzYQ1VTW8+DiR0jm3hTa -YVKvJrT1cU/J19IG32PK/yHoWQbgCNWEFVP3Q+V8xaCJmGtzxmjOZd69fwX3se72V6FglcXM6pM6 -vpmumwKjrckWtc7dXpl4fho5frLABaTAgqWjR56M6ly2vGfb5ipN0gTco65F97yLnByn1tUD3AjL -LhbKXEAz6GfDLuemROoRRRw1ZS0eRWEkG4IupZ0zXWX4Qfkuy5Q/H6MMMSRE7cderVC6xkGbrPAX -ZcD4XW9boAo0PO7X6oifmPmvTiT6l7Jkdtqr9O3jw2Dv1fkCyC2fg69naQanMVXVz0tv/wQFx1is -XxYb5dKj6zHbHzMVTdDypVP1y+E9Tmgt2BLdqvLmTZtJ5cUoobqwWsagtQIDAQABo0IwQDAPBgNV -HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUiQq0OJMa5qvum5EY+fU8PjXQ -04IwDQYJKoZIhvcNAQEFBQADggIBADKL9p1Kyb4U5YysOMo6CdQbzoaz3evUuii+Eq5FLAR0rBNR -xVgYZk2C2tXck8An4b58n1KeElb21Zyp9HWc+jcSjxyT7Ff+Bw+r1RL3D65hXlaASfX8MPWbTx9B -LxyE04nH4toCdu0Jz2zBuByDHBb6lM19oMgY0sidbvW9adRtPTXoHqJPYNcHKfyyo6SdbhWSVhlM -CrDpfNIZTUJG7L399ldb3Zh+pE3McgODWF3vkzpBemOqfDqo9ayk0d2iLbYq/J8BjuIQscTK5Gfb -VSUZP/3oNn6z4eGBrxEWi1CXYBmCAMBrTXO40RMHPuq2MU/wQppt4hF05ZSsjYSVPCGvxdpHyN85 -YmLLW1AL14FABZyb7bq2ix4Eb5YgOe2kfSnbSM6C3NQCjR0EMVrHS/BsYVLXtFHCgWzN4funodKS -ds+xDzdYpPJScWc/DIh4gInByLUfkmO+p3qKViwaqKactV2zY9ATIKHrkWzQjX2v3wvkF7mGnjix -lAxYjOBVqjtjbZqJYLhkKpLGN/R+Q0O3c+gB53+XD9fyexn9GtePyfqFa3qdnom2piiZk4hA9z7N -UaPK6u95RyG1/jLix8NRb76AdPCkwzryT+lf3xkK8jsTQ6wxpLPn6/wY1gGp8yqPNg7rtLG8t0zJ -a7+h89n07eLw4+1knj0vllJPgFOL ------END CERTIFICATE----- - -CA Disig Root R2 -================ ------BEGIN CERTIFICATE----- -MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNVBAYTAlNLMRMw -EQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMuMRkwFwYDVQQDExBDQSBEaXNp -ZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQyMDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sx -EzARBgNVBAcTCkJyYXRpc2xhdmExEzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERp -c2lnIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbC -w3OeNcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNHPWSb6Wia -xswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3Ix2ymrdMxp7zo5eFm1tL7 -A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbeQTg06ov80egEFGEtQX6sx3dOy1FU+16S -GBsEWmjGycT6txOgmLcRK7fWV8x8nhfRyyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqV -g8NTEQxzHQuyRpDRQjrOQG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa -5Beny912H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJQfYE -koopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUDi/ZnWejBBhG93c+A -Ak9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORsnLMOPReisjQS1n6yqEm70XooQL6i -Fh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNV -HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5u -Qu0wDQYJKoZIhvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM -tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqfGopTpti72TVV -sRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkblvdhuDvEK7Z4bLQjb/D907Je -dR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka+elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W8 -1k/BfDxujRNt+3vrMNDcTa/F1balTFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjx -mHHEt38OFdAlab0inSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01 -utI3gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18DrG5gPcFw0 -sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3OszMOl6W8KjptlwlCFtaOg -UxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8xL4ysEr3vQCj8KWefshNPZiTEUxnpHikV -7+ZtsH8tZ/3zbBt1RqPlShfppNcL ------END CERTIFICATE----- - -ACCVRAIZ1 -========= ------BEGIN CERTIFICATE----- -MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UEAwwJQUNDVlJB -SVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQswCQYDVQQGEwJFUzAeFw0xMTA1 -MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQBgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwH -UEtJQUNDVjENMAsGA1UECgwEQUNDVjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4IC -DwAwggIKAoICAQCbqau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gM -jmoYHtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWoG2ioPej0 -RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpAlHPrzg5XPAOBOp0KoVdD -aaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhrIA8wKFSVf+DuzgpmndFALW4ir50awQUZ -0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDG -WuzndN9wrqODJerWx5eHk6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs7 -8yM2x/474KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMOm3WR -5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpacXpkatcnYGMN285J -9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPluUsXQA+xtrn13k/c4LOsOxFwYIRK -Q26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYIKwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRw -Oi8vd3d3LmFjY3YuZXMvZmlsZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEu -Y3J0MB8GCCsGAQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 -VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeTVfZW6oHlNsyM -Hj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIGCCsGAQUFBwICMIIBFB6CARAA -QQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUAcgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBh -AO0AegAgAGQAZQAgAGwAYQAgAEEAQwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUA -YwBuAG8AbABvAGcA7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBj -AHQAcgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAAQwBQAFMA -IABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUAczAwBggrBgEFBQcCARYk -aHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2MuaHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0 -dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRtaW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2 -MV9kZXIuY3JsMA4GA1UdDwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZI -hvcNAQEFBQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdpD70E -R9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gUJyCpZET/LtZ1qmxN -YEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+mAM/EKXMRNt6GGT6d7hmKG9Ww7Y49 -nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepDvV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJ -TS+xJlsndQAJxGJ3KQhfnlmstn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3 -sCPdK6jT2iWH7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h -I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szAh1xA2syVP1Xg -Nce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xFd3+YJ5oyXSrjhO7FmGYvliAd -3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2HpPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3p -EfbRD0tVNEYqi4Y7 ------END CERTIFICATE----- - -TWCA Global Root CA -=================== ------BEGIN CERTIFICATE----- -MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcxEjAQBgNVBAoT -CVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMTVFdDQSBHbG9iYWwgUm9vdCBD -QTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQK -EwlUQUlXQU4tQ0ExEDAOBgNVBAsTB1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3Qg -Q0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2C -nJfF10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz0ALfUPZV -r2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfChMBwqoJimFb3u/Rk28OKR -Q4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbHzIh1HrtsBv+baz4X7GGqcXzGHaL3SekV -tTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1W -KKD+u4ZqyPpcC1jcxkt2yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99 -sy2sbZCilaLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYPoA/p -yJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQABDzfuBSO6N+pjWxn -kjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcEqYSjMq+u7msXi7Kx/mzhkIyIqJdI -zshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMC -AQYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6g -cFGn90xHNcgL1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn -LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WFH6vPNOw/KP4M -8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNoRI2T9GRwoD2dKAXDOXC4Ynsg -/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlg -lPx4mI88k1HtQJAH32RjJMtOcQWh15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryP -A9gK8kxkRr05YuWW6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3m -i4TWnsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5jwa19hAM8 -EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWzaGHQRiapIVJpLesux+t3 -zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmyKwbQBM0= ------END CERTIFICATE----- - -TeliaSonera Root CA v1 -====================== ------BEGIN CERTIFICATE----- -MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAwNzEUMBIGA1UE -CgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJvb3QgQ0EgdjEwHhcNMDcxMDE4 -MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwW -VGVsaWFTb25lcmEgUm9vdCBDQSB2MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+ -6yfwIaPzaSZVfp3FVRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA -3GV17CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+XZ75Ljo1k -B1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+/jXh7VB7qTCNGdMJjmhn -Xb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxH -oLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkmdtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3 -F0fUTPHSiXk+TT2YqGHeOh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJ -oWjiUIMusDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4pgd7 -gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fsslESl1MpWtTwEhDc -TwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQarMCpgKIv7NHfirZ1fpoeDVNAgMB -AAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qW -DNXr+nuqF+gTEjANBgkqhkiG9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNm -zqjMDfz1mgbldxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx -0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1TjTQpgcmLNkQfW -pb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBedY2gea+zDTYa4EzAvXUYNR0PV -G6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpc -c41teyWRyu5FrgZLAMzTsVlQ2jqIOylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOT -JsjrDNYmiLbAJM+7vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2 -qReWt88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcnHL/EVlP6 -Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVxSK236thZiNSQvxaz2ems -WWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= ------END CERTIFICATE----- - -E-Tugra Certification Authority -=============================== ------BEGIN CERTIFICATE----- -MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNVBAYTAlRSMQ8w -DQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamls -ZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN -ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMw -NTEyMDk0OFoXDTIzMDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmEx -QDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxl -cmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQD -DB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8A -MIICCgKCAgEA4vU/kwVRHoViVF56C/UYB4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vd -hQd2h8y/L5VMzH2nPbxHD5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5K -CKpbknSFQ9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEoq1+g -ElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3Dk14opz8n8Y4e0ypQ -BaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcHfC425lAcP9tDJMW/hkd5s3kc91r0 -E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsutdEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gz -rt48Ue7LE3wBf4QOXVGUnhMMti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAq -jqFGOjGY5RH8zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn -rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUXU8u3Zg5mTPj5 -dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6Jyr+zE7S6E5UMA8GA1UdEwEB -/wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEG -MA0GCSqGSIb3DQEBCwUAA4ICAQAFNzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAK -kEh47U6YA5n+KGCRHTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jO -XKqYGwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c77NCR807 -VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3+GbHeJAAFS6LrVE1Uweo -a2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WKvJUawSg5TB9D0pH0clmKuVb8P7Sd2nCc -dlqMQ1DujjByTd//SffGqWfZbawCEeI6FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEV -KV0jq9BgoRJP3vQXzTLlyb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gT -Dx4JnW2PAJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpDy4Q0 -8ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8dNL/+I5c30jn6PQ0G -C7TbO6Orb1wdtn7os4I07QZcJA== ------END CERTIFICATE----- - -T-TeleSec GlobalRoot Class 2 -============================ ------BEGIN CERTIFICATE----- -MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM -IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU -cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgx -MDAxMTA0MDE0WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz -dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD -ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0GCSqGSIb3 -DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUdAqSzm1nzHoqvNK38DcLZ -SBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiCFoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/F -vudocP05l03Sx5iRUKrERLMjfTlH6VJi1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx970 -2cu+fjOlbpSD8DT6IavqjnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGV -WOHAD3bZwI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGjQjBA -MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/WSA2AHmgoCJrjNXy -YdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhyNsZt+U2e+iKo4YFWz827n+qrkRk4 -r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPACuvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNf -vNoBYimipidx5joifsFvHZVwIEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR -3p1m0IvVVGb6g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN -9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlPBSeOE6Fuwg== ------END CERTIFICATE----- - -Atos TrustedRoot 2011 -===================== ------BEGIN CERTIFICATE----- -MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UEAwwVQXRvcyBU -cnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0xMTA3MDcxNDU4 -MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMMFUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsG -A1UECgwEQXRvczELMAkGA1UEBhMCREUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCV -hTuXbyo7LjvPpvMpNb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr -54rMVD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+SZFhyBH+ -DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ4J7sVaE3IqKHBAUsR320 -HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0Lcp2AMBYHlT8oDv3FdU9T1nSatCQujgKR -z3bFmx5VdJx4IbHwLfELn8LVlhgf8FQieowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7R -l+lwrrw7GWzbITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZ -bNshMBgGA1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB -CwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8jvZfza1zv7v1Apt+h -k6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kPDpFrdRbhIfzYJsdHt6bPWHJxfrrh -TZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pcmaHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a9 -61qn8FYiqTxlVMYVqL2Gns2Dlmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G -3mB/ufNPRJLvKrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed ------END CERTIFICATE----- - -QuoVadis Root CA 1 G3 -===================== ------BEGIN CERTIFICATE----- -MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQELBQAwSDELMAkG -A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv -b3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJN -MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEg -RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakE -PBtVwedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWerNrwU8lm -PNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF34168Xfuw6cwI2H44g4hWf6 -Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh4Pw5qlPafX7PGglTvF0FBM+hSo+LdoIN -ofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXpUhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/l -g6AnhF4EwfWQvTA9xO+oabw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV -7qJZjqlc3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/GKubX -9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSthfbZxbGL0eUQMk1f -iyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KOTk0k+17kBL5yG6YnLUlamXrXXAkg -t3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOtzCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTAD -AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZI -hvcNAQELBQADggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC -MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2cDMT/uFPpiN3 -GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUNqXsCHKnQO18LwIE6PWThv6ct -Tr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP -+V04ikkwj+3x6xn0dxoxGE1nVGwvb2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh -3jRJjehZrJ3ydlo28hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fa -wx/kNSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNjZgKAvQU6 -O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhpq1467HxpvMc7hU6eFbm0 -FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFtnh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOV -hMJKzRwuJIczYOXD ------END CERTIFICATE----- - -QuoVadis Root CA 2 G3 -===================== ------BEGIN CERTIFICATE----- -MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQELBQAwSDELMAkG -A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv -b3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJN -MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIg -RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFh -ZiFfqq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMWn4rjyduY -NM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ymc5GQYaYDFCDy54ejiK2t -oIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+O7q414AB+6XrW7PFXmAqMaCvN+ggOp+o -MiwMzAkd056OXbxMmO7FGmh77FOm6RQ1o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+l -V0POKa2Mq1W/xPtbAd0jIaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZo -L1NesNKqIcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz8eQQ -sSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43ehvNURG3YBZwjgQQvD -6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l7ZizlWNof/k19N+IxWA1ksB8aRxh -lRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALGcC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTAD -AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZI -hvcNAQELBQADggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 -AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RCroijQ1h5fq7K -pVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0GaW/ZZGYjeVYg3UQt4XAoeo0L9 -x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4nlv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgz -dWqTHBLmYF5vHX/JHyPLhGGfHoJE+V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6X -U/IyAgkwo1jwDQHVcsaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+Nw -mNtddbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNgKCLjsZWD -zYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeMHVOyToV7BjjHLPj4sHKN -JeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4WSr2Rz0ZiC3oheGe7IUIarFsNMkd7Egr -O3jtZsSOeWmD3n+M ------END CERTIFICATE----- - -QuoVadis Root CA 3 G3 -===================== ------BEGIN CERTIFICATE----- -MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQELBQAwSDELMAkG -A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv -b3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJN -MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMg -RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286 -IxSR/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNuFoM7pmRL -Mon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXRU7Ox7sWTaYI+FrUoRqHe -6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+cra1AdHkrAj80//ogaX3T7mH1urPnMNA3 -I4ZyYUUpSFlob3emLoG+B01vr87ERRORFHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3U -VDmrJqMz6nWB2i3ND0/kA9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f7 -5li59wzweyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634RylsSqi -Md5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBpVzgeAVuNVejH38DM -dyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0QA4XN8f+MFrXBsj6IbGB/kE+V9/Yt -rQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD -AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZI -hvcNAQELBQADggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px -KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnIFUBhynLWcKzS -t/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5WvvoxXqA/4Ti2Tk08HS6IT7SdEQ -TXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFgu/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9Du -DcpmvJRPpq3t/O5jrFc/ZSXPsoaP0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGib -Ih6BJpsQBJFxwAYf3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmD -hPbl8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+DhcI00iX -0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HNPlopNLk9hM6xZdRZkZFW -dSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ywaZWWDYWGWVjUTR939+J399roD1B0y2 -PpxxVJkES/1Y+Zj0 ------END CERTIFICATE----- - -DigiCert Assured ID Root G2 -=========================== ------BEGIN CERTIFICATE----- -MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBlMQswCQYDVQQG -EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw -IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgw -MTE1MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL -ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIw -ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSAn61UQbVH -35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4HteccbiJVMWWXvdMX0h5i89vq -bFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9HpEgjAALAcKxHad3A2m67OeYfcgnDmCXRw -VWmvo2ifv922ebPynXApVfSr/5Vh88lAbx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OP -YLfykqGxvYmJHzDNw6YuYjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+Rn -lTGNAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTO -w0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPIQW5pJ6d1Ee88hjZv -0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I0jJmwYrA8y8678Dj1JGG0VDjA9tz -d29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4GnilmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAW -hsI6yLETcDbYz+70CjTVW0z9B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0M -jomZmWzwPDCvON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo -IhNzbM8m9Yop5w== ------END CERTIFICATE----- - -DigiCert Assured ID Root G3 -=========================== ------BEGIN CERTIFICATE----- -MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV -UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYD -VQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1 -MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQ -BgcqhkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJfZn4f5dwb -RXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17QRSAPWXYQ1qAk8C3eNvJs -KTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgF -UaFNN6KDec6NHSrkhDAKBggqhkjOPQQDAwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5Fy -YZ5eEJJZVrmDxxDnOOlYJjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy -1vUhZscv6pZjamVFkpUBtA== ------END CERTIFICATE----- - -DigiCert Global Root G2 -======================= ------BEGIN CERTIFICATE----- -MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG -EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw -HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx -MjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3 -dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq -hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ -kTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO -3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV -BJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM -UNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB -o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu -5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr -F9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U -WTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH -QRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/ -iyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl -MrY= ------END CERTIFICATE----- - -DigiCert Global Root G3 -======================= ------BEGIN CERTIFICATE----- -MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV -UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD -VQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw -MDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k -aWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C -AQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O -YwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP -BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp -Yim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y -3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34 -VOKa5Vt8sycX ------END CERTIFICATE----- - -DigiCert Trusted Root G4 -======================== ------BEGIN CERTIFICATE----- -MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBiMQswCQYDVQQG -EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSEw -HwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1 -MTIwMDAwWjBiMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0G -CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3yithZwuEp -pz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1Ifxp4VpX6+n6lXFllVcq9o -k3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDVySAdYyktzuxeTsiT+CFhmzTrBcZe7Fsa -vOvJz82sNEBfsXpm7nfISKhmV1efVFiODCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGY -QJB5w3jHtrHEtWoYOAMQjdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6 -MUSaM0C/CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCiEhtm -mnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADMfRyVw4/3IbKyEbe7 -f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QYuKZ3AeEPlAwhHbJUKSWJbOUOUlFH -dL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXKchYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8 -oR7FwI+isX4KJpn15GkvmB0t9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud -DwEB/wQEAwIBhjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD -ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2SV1EY+CtnJYY -ZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd+SeuMIW59mdNOj6PWTkiU0Tr -yF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWcfFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy -7zBZLq7gcfJW5GqXb5JQbZaNaHqasjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iah -ixTXTBmyUEFxPT9NcCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN -5r5N0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie4u1Ki7wb -/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mIr/OSmbaz5mEP0oUA51Aa -5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tK -G48BtieVU+i2iW1bvGjUI+iLUaJW+fCmgKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP -82Z+ ------END CERTIFICATE----- - -WoSign -====== ------BEGIN CERTIFICATE----- -MIIFdjCCA16gAwIBAgIQXmjWEXGUY1BWAGjzPsnFkTANBgkqhkiG9w0BAQUFADBVMQswCQYDVQQG -EwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxKjAoBgNVBAMTIUNlcnRpZmljYXRpb24g -QXV0aG9yaXR5IG9mIFdvU2lnbjAeFw0wOTA4MDgwMTAwMDFaFw0zOTA4MDgwMTAwMDFaMFUxCzAJ -BgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEqMCgGA1UEAxMhQ2VydGlmaWNh -dGlvbiBBdXRob3JpdHkgb2YgV29TaWduMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA -vcqNrLiRFVaXe2tcesLea9mhsMMQI/qnobLMMfo+2aYpbxY94Gv4uEBf2zmoAHqLoE1UfcIiePyO -CbiohdfMlZdLdNiefvAA5A6JrkkoRBoQmTIPJYhTpA2zDxIIFgsDcSccf+Hb0v1naMQFXQoOXXDX -2JegvFNBmpGN9J42Znp+VsGQX+axaCA2pIwkLCxHC1l2ZjC1vt7tj/id07sBMOby8w7gLJKA84X5 -KIq0VC6a7fd2/BVoFutKbOsuEo/Uz/4Mx1wdC34FMr5esAkqQtXJTpCzWQ27en7N1QhatH/YHGkR -+ScPewavVIMYe+HdVHpRaG53/Ma/UkpmRqGyZxq7o093oL5d//xWC0Nyd5DKnvnyOfUNqfTq1+ez -EC8wQjchzDBwyYaYD8xYTYO7feUapTeNtqwylwA6Y3EkHp43xP901DfA4v6IRmAR3Qg/UDaruHqk -lWJqbrDKaiFaafPz+x1wOZXzp26mgYmhiMU7ccqjUu6Du/2gd/Tkb+dC221KmYo0SLwX3OSACCK2 -8jHAPwQ+658geda4BmRkAjHXqc1S+4RFaQkAKtxVi8QGRkvASh0JWzko/amrzgD5LkhLJuYwTKVY -yrREgk/nkR4zw7CT/xH8gdLKH3Ep3XZPkiWvHYG3Dy+MwwbMLyejSuQOmbp8HkUff6oZRZb9/D0C -AwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFOFmzw7R -8bNLtwYgFP6HEtX2/vs+MA0GCSqGSIb3DQEBBQUAA4ICAQCoy3JAsnbBfnv8rWTjMnvMPLZdRtP1 -LOJwXcgu2AZ9mNELIaCJWSQBnfmvCX0KI4I01fx8cpm5o9dU9OpScA7F9dY74ToJMuYhOZO9sxXq -T2r09Ys/L3yNWC7F4TmgPsc9SnOeQHrAK2GpZ8nzJLmzbVUsWh2eJXLOC62qx1ViC777Y7NhRCOj -y+EaDveaBk3e1CNOIZZbOVtXHS9dCF4Jef98l7VNg64N1uajeeAz0JmWAjCnPv/So0M/BVoG6kQC -2nz4SNAzqfkHx5Xh9T71XXG68pWpdIhhWeO/yloTunK0jF02h+mmxTwTv97QRCbut+wucPrXnbes -5cVAWubXbHssw1abR80LzvobtCHXt2a49CUwi1wNuepnsvRtrtWhnk/Yn+knArAdBtaP4/tIEp9/ -EaEQPkxROpaw0RPxx9gmrjrKkcRpnd8BKWRRb2jaFOwIQZeQjdCygPLPwj2/kWjFgGcexGATVdVh -mVd8upUPYUk6ynW8yQqTP2cOEvIo4jEbwFcW3wh8GcF+Dx+FHgo2fFt+J7x6v+Db9NpSvd4MVHAx -kUOVyLzwPt0JfjBkUO1/AaQzZ01oT74V77D2AhGiGxMlOtzCWfHjXEa7ZywCRuoeSKbmW9m1vFGi -kpbbqsY3Iqb+zCB0oy2pLmvLwIIRIbWTee5Ehr7XHuQe+w== ------END CERTIFICATE----- - -WoSign China -============ ------BEGIN CERTIFICATE----- -MIIFWDCCA0CgAwIBAgIQUHBrzdgT/BtOOzNy0hFIjTANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQG -EwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxGzAZBgNVBAMMEkNBIOayg+mAmuagueiv -geS5pjAeFw0wOTA4MDgwMTAwMDFaFw0zOTA4MDgwMTAwMDFaMEYxCzAJBgNVBAYTAkNOMRowGAYD -VQQKExFXb1NpZ24gQ0EgTGltaXRlZDEbMBkGA1UEAwwSQ0Eg5rKD6YCa5qC56K+B5LmmMIICIjAN -BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0EkhHiX8h8EqwqzbdoYGTufQdDTc7WU1/FDWiD+k -8H/rD195L4mx/bxjWDeTmzj4t1up+thxx7S8gJeNbEvxUNUqKaqoGXqW5pWOdO2XCld19AXbbQs5 -uQF/qvbW2mzmBeCkTVL829B0txGMe41P/4eDrv8FAxNXUDf+jJZSEExfv5RxadmWPgxDT74wwJ85 -dE8GRV2j1lY5aAfMh09Qd5Nx2UQIsYo06Yms25tO4dnkUkWMLhQfkWsZHWgpLFbE4h4TV2TwYeO5 -Ed+w4VegG63XX9Gv2ystP9Bojg/qnw+LNVgbExz03jWhCl3W6t8Sb8D7aQdGctyB9gQjF+BNdeFy -b7Ao65vh4YOhn0pdr8yb+gIgthhid5E7o9Vlrdx8kHccREGkSovrlXLp9glk3Kgtn3R46MGiCWOc -76DbT52VqyBPt7D3h1ymoOQ3OMdc4zUPLK2jgKLsLl3Az+2LBcLmc272idX10kaO6m1jGx6KyX2m -+Jzr5dVjhU1zZmkR/sgO9MHHZklTfuQZa/HpelmjbX7FF+Ynxu8b22/8DU0GAbQOXDBGVWCvOGU6 -yke6rCzMRh+yRpY/8+0mBe53oWprfi1tWFxK1I5nuPHa1UaKJ/kR8slC/k7e3x9cxKSGhxYzoacX -GKUN5AXlK8IrC6KVkLn9YDxOiT7nnO4fuwECAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1Ud -EwEB/wQFMAMBAf8wHQYDVR0OBBYEFOBNv9ybQV0T6GTwp+kVpOGBwboxMA0GCSqGSIb3DQEBCwUA -A4ICAQBqinA4WbbaixjIvirTthnVZil6Xc1bL3McJk6jfW+rtylNpumlEYOnOXOvEESS5iVdT2H6 -yAa+Tkvv/vMx/sZ8cApBWNromUuWyXi8mHwCKe0JgOYKOoICKuLJL8hWGSbueBwj/feTZU7n85iY -r83d2Z5AiDEoOqsuC7CsDCT6eiaY8xJhEPRdF/d+4niXVOKM6Cm6jBAyvd0zaziGfjk9DgNyp115 -j0WKWa5bIW4xRtVZjc8VX90xJc/bYNaBRHIpAlf2ltTW/+op2znFuCyKGo3Oy+dCMYYFaA6eFN0A -kLppRQjbbpCBhqcqBT/mhDn4t/lXX0ykeVoQDF7Va/81XwVRHmyjdanPUIPTfPRm94KNPQx96N97 -qA4bLJyuQHCH2u2nFoJavjVsIE4iYdm8UXrNemHcSxH5/mc0zy4EZmFcV5cjjPOGG0jfKq+nwf/Y -jj4Du9gqsPoUJbJRa4ZDhS4HIxaAjUz7tGM7zMN07RujHv41D198HRaG9Q7DlfEvr10lO1Hm13ZB -ONFLAzkopR6RctR9q5czxNM+4Gm2KHmgCY0c0f9BckgG/Jou5yD5m6Leie2uPAmvylezkolwQOQv -T8Jwg0DXJCxr5wkf09XHwQj02w47HAcLQxGEIYbpgNR12KvxAmLBsX5VYc8T1yaw15zLKYs4SgsO -kI26oQ== ------END CERTIFICATE----- - -COMODO RSA Certification Authority -================================== ------BEGIN CERTIFICATE----- -MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCBhTELMAkGA1UE -BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG -A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlv -biBBdXRob3JpdHkwHhcNMTAwMTE5MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMC -R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE -ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBB -dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR6FSS0gpWsawNJN3Fz0Rn -dJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8Xpz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZ -FGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+ -5eNu/Nio5JIk2kNrYrhV/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pG -x8cgoLEfZd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z+pUX -2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7wqP/0uK3pN/u6uPQL -OvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZahSL0896+1DSJMwBGB7FY79tOi4lu3 -sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVICu9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+C -GCe01a60y1Dma/RMhnEw6abfFobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5 -WdYgGq/yapiqcrxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E -FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w -DQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvlwFTPoCWOAvn9sKIN9SCYPBMt -rFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+ -nq6PK7o9mfjYcwlYRm6mnPTXJ9OV2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSg -tZx8jb8uk2IntznaFxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwW -sRqZCuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiKboHGhfKp -pC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmckejkk9u+UJueBPSZI9FoJA -zMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yLS0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHq -ZJx64SIDqZxubw5lT2yHh17zbqD5daWbQOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk52 -7RH89elWsn2/x20Kk4yl0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7I -LaZRfyHBNVOFBkpdn627G190 ------END CERTIFICATE----- - -USERTrust RSA Certification Authority -===================================== ------BEGIN CERTIFICATE----- -MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCBiDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK -ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh -dGlvbiBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK -ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh -dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCAEmUXNg7D2wiz -0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2j -Y0K2dvKpOyuR+OJv0OwWIJAJPuLodMkYtJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFn -RghRy4YUVD+8M/5+bJz/Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O -+T23LLb2VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT79uq -/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6c0Plfg6lZrEpfDKE -Y1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmTYo61Zs8liM2EuLE/pDkP2QKe6xJM -lXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97lc6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8 -yexDJtC/QV9AqURE9JnnV4eeUB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+ -eLf8ZxXhyVeEHg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd -BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF -MAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPFUp/L+M+ZBn8b2kMVn54CVVeW -FPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KOVWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ -7l8wXEskEVX/JJpuXior7gtNn3/3ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQ -Eg9zKC7F4iRO/Fjs8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM -8WcRiQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYzeSf7dNXGi -FSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZXHlKYC6SQK5MNyosycdi -yA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9c -J2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRBVXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGw -sAvgnEzDHNb842m1R0aBL6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gx -Q+6IHdfGjjxDah2nGN59PRbxYvnKkKj9 ------END CERTIFICATE----- - -USERTrust ECC Certification Authority -===================================== ------BEGIN CERTIFICATE----- -MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDELMAkGA1UEBhMC -VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU -aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv -biBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMC -VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU -aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv -biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqfloI+d61SRvU8Za2EurxtW2 -0eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinngo4N+LZfQYcTxmdwlkWOrfzCjtHDix6Ez -nPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0GA1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNV -HQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBB -HU6+4WMBzzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbWRNZu -9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= ------END CERTIFICATE----- - -GlobalSign ECC Root CA - R4 -=========================== ------BEGIN CERTIFICATE----- -MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEkMCIGA1UECxMb -R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD -EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb -R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD -EwpHbG9iYWxTaWduMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprl -OQcJFspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAwDgYDVR0P -AQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61FuOJAf/sKbvu+M8k8o4TV -MAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGXkPoUVy0D7O48027KqGx2vKLeuwIgJ6iF -JzWbVsaj8kfSt24bAgAXqmemFZHe+pTsewv4n4Q= ------END CERTIFICATE----- - -GlobalSign ECC Root CA - R5 -=========================== ------BEGIN CERTIFICATE----- -MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEkMCIGA1UECxMb -R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD -EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb -R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD -EwpHbG9iYWxTaWduMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6 -SFkc8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8kehOvRnkmS -h5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAd -BgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYIKoZIzj0EAwMDaAAwZQIxAOVpEslu28Yx -uglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7 -yFz9SO8NdCKoCOJuxUnOxwy8p2Fp8fc74SrL+SvzZpA3 ------END CERTIFICATE----- - -Staat der Nederlanden Root CA - G3 -================================== ------BEGIN CERTIFICATE----- -MIIFdDCCA1ygAwIBAgIEAJiiOTANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJOTDEeMBwGA1UE -CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFhdCBkZXIgTmVkZXJsYW5kZW4g -Um9vdCBDQSAtIEczMB4XDTEzMTExNDExMjg0MloXDTI4MTExMzIzMDAwMFowWjELMAkGA1UEBhMC -TkwxHjAcBgNVBAoMFVN0YWF0IGRlciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5l -ZGVybGFuZGVuIFJvb3QgQ0EgLSBHMzCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL4y -olQPcPssXFnrbMSkUeiFKrPMSjTysF/zDsccPVMeiAho2G89rcKezIJnByeHaHE6n3WWIkYFsO2t -x1ueKt6c/DrGlaf1F2cY5y9JCAxcz+bMNO14+1Cx3Gsy8KL+tjzk7FqXxz8ecAgwoNzFs21v0IJy -EavSgWhZghe3eJJg+szeP4TrjTgzkApyI/o1zCZxMdFyKJLZWyNtZrVtB0LrpjPOktvA9mxjeM3K -Tj215VKb8b475lRgsGYeCasH/lSJEULR9yS6YHgamPfJEf0WwTUaVHXvQ9Plrk7O53vDxk5hUUur -mkVLoR9BvUhTFXFkC4az5S6+zqQbwSmEorXLCCN2QyIkHxcE1G6cxvx/K2Ya7Irl1s9N9WMJtxU5 -1nus6+N86U78dULI7ViVDAZCopz35HCz33JvWjdAidiFpNfxC95DGdRKWCyMijmev4SH8RY7Ngzp -07TKbBlBUgmhHbBqv4LvcFEhMtwFdozL92TkA1CvjJFnq8Xy7ljY3r735zHPbMk7ccHViLVlvMDo -FxcHErVc0qsgk7TmgoNwNsXNo42ti+yjwUOH5kPiNL6VizXtBznaqB16nzaeErAMZRKQFWDZJkBE -41ZgpRDUajz9QdwOWke275dhdU/Z/seyHdTtXUmzqWrLZoQT1Vyg3N9udwbRcXXIV2+vD3dbAgMB -AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRUrfrHkleu -yjWcLhL75LpdINyUVzANBgkqhkiG9w0BAQsFAAOCAgEAMJmdBTLIXg47mAE6iqTnB/d6+Oea31BD -U5cqPco8R5gu4RV78ZLzYdqQJRZlwJ9UXQ4DO1t3ApyEtg2YXzTdO2PCwyiBwpwpLiniyMMB8jPq -KqrMCQj3ZWfGzd/TtiunvczRDnBfuCPRy5FOCvTIeuXZYzbB1N/8Ipf3YF3qKS9Ysr1YvY2WTxB1 -v0h7PVGHoTx0IsL8B3+A3MSs/mrBcDCw6Y5p4ixpgZQJut3+TcCDjJRYwEYgr5wfAvg1VUkvRtTA -8KCWAg8zxXHzniN9lLf9OtMJgwYh/WA9rjLA0u6NpvDntIJ8CsxwyXmA+P5M9zWEGYox+wrZ13+b -8KKaa8MFSu1BYBQw0aoRQm7TIwIEC8Zl3d1Sd9qBa7Ko+gE4uZbqKmxnl4mUnrzhVNXkanjvSr0r -mj1AfsbAddJu+2gw7OyLnflJNZoaLNmzlTnVHpL3prllL+U9bTpITAjc5CgSKL59NVzq4BZ+Extq -1z7XnvwtdbLBFNUjA9tbbws+eC8N3jONFrdI54OagQ97wUNNVQQXOEpR1VmiiXTTn74eS9fGbbeI -JG9gkaSChVtWQbzQRKtqE77RLFi3EjNYsjdj3BP1lB0/QFH1T/U67cjF68IeHRaVesd+QnGTbksV -tzDfqu1XhUisHWrdOWnk4Xl4vs4Fv6EM94B7IWcnMFk= ------END CERTIFICATE----- - -Staat der Nederlanden EV Root CA -================================ ------BEGIN CERTIFICATE----- -MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJOTDEeMBwGA1UE -CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFhdCBkZXIgTmVkZXJsYW5kZW4g -RVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0yMjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5M -MR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRl -cmxhbmRlbiBFViBSb290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkk -SzrSM4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nCUiY4iKTW -O0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3dZ//BYY1jTw+bbRcwJu+r -0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46prfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8 -Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13lpJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gV -XJrm0w912fxBmJc+qiXbj5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr -08C+eKxCKFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS/ZbV -0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0XcgOPvZuM5l5Tnrmd -74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH1vI4gnPah1vlPNOePqc7nvQDs/nx -fRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrPpx9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNC -MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwa -ivsnuL8wbqg7MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI -eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u2dfOWBfoqSmu -c0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHSv4ilf0X8rLiltTMMgsT7B/Zq -5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTCwPTxGfARKbalGAKb12NMcIxHowNDXLldRqAN -b/9Zjr7dn3LDWyvfjFvO5QxGbJKyCqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tN -f1zuacpzEPuKqf2evTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi -5Dp6Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIaGl6I6lD4 -WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeLeG9QgkRQP2YGiqtDhFZK -DyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGy -eUN51q1veieQA6TqJIc/2b3Z6fJfUEkc7uzXLg== ------END CERTIFICATE----- - -IdenTrust Commercial Root CA 1 -============================== ------BEGIN CERTIFICATE----- -MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBKMQswCQYDVQQG -EwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBS -b290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQwMTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzES -MBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENB -IDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ld -hNlT3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU+ehcCuz/ -mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gpS0l4PJNgiCL8mdo2yMKi -1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1bVoE/c40yiTcdCMbXTMTEl3EASX2MN0C -XZ/g1Ue9tOsbobtJSdifWwLziuQkkORiT0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl -3ZBWzvurpWCdxJ35UrCLvYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzy -NeVJSQjKVsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZKdHzV -WYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHTc+XvvqDtMwt0viAg -xGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hvl7yTmvmcEpB4eoCHFddydJxVdHix -uuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5NiGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMC -AQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZI -hvcNAQELBQADggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH -6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwtLRvM7Kqas6pg -ghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93nAbowacYXVKV7cndJZ5t+qnt -ozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3+wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmV -YjzlVYA211QC//G5Xc7UI2/YRYRKW2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUX -feu+h1sXIFRRk0pTAwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/ro -kTLql1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG4iZZRHUe -2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZmUlO+KWA2yUPHGNiiskz -Z2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7R -cGzM7vRX+Bi6hG6H ------END CERTIFICATE----- - -IdenTrust Public Sector Root CA 1 -================================= ------BEGIN CERTIFICATE----- -MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQG -EwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3Rv -ciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcNMzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJV -UzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBS -b290IENBIDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTy -P4o7ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGyRBb06tD6 -Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlSbdsHyo+1W/CD80/HLaXI -rcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF/YTLNiCBWS2ab21ISGHKTN9T0a9SvESf -qy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoS -mJxZZoY+rfGwyj4GD3vwEUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFn -ol57plzy9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9VGxyh -LrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ2fjXctscvG29ZV/v -iDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsVWaFHVCkugyhfHMKiq3IXAAaOReyL -4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gDW/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8B -Af8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMw -DQYJKoZIhvcNAQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj -t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHVDRDtfULAj+7A -mgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9TaDKQGXSc3z1i9kKlT/YPyNt -GtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8GlwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFt -m6/n6J91eEyrRjuazr8FGF1NFTwWmhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMx -NRF4eKLg6TCMf4DfWN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4 -Mhn5+bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJtshquDDI -ajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhAGaQdp/lLQzfcaFpPz+vC -ZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ -3Wl9af0AVqW3rLatt8o+Ae+c ------END CERTIFICATE----- - -Entrust Root Certification Authority - G2 -========================================= ------BEGIN CERTIFICATE----- -MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMCVVMxFjAUBgNV -BAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVy -bXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ug -b25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIw -HhcNMDkwNzA3MTcyNTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoT -DUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMx -OTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25s -eTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwggEi -MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP -/vaCeb9zYQYKpSfYs1/TRU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXz -HHfV1IWNcCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hWwcKU -s/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1U1+cPvQXLOZprE4y -TGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0jaWvYkxN4FisZDQSA/i2jZRjJKRx -AgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ6 -0B7vfec7aVHUbI2fkBJmqzANBgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5Z -iXMRrEPR9RP/jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ -Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v1fN2D807iDgi -nWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4RnAuknZoh8/CbCzB428Hch0P+ -vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmHVHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xO -e4pIb4tF9g== ------END CERTIFICATE----- - -Entrust Root Certification Authority - EC1 -========================================== ------BEGIN CERTIFICATE----- -MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkGA1UEBhMCVVMx -FjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVn -YWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXpl -ZCB1c2Ugb25seTEzMDEGA1UEAxMqRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5 -IC0gRUMxMB4XDTEyMTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYw -FAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2Fs -LXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQg -dXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAt -IEVDMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHy -AsWfoPZb1YsGGYZPUxBtByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef -9eNi1KlHBz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE -FLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVCR98crlOZF7ZvHH3h -vxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nXhTcGtXsI/esni0qU+eH6p44mCOh8 -kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G ------END CERTIFICATE----- - -CFCA EV ROOT -============ ------BEGIN CERTIFICATE----- -MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJDTjEwMC4GA1UE -CgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNB -IEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkxMjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEw -MC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQD -DAxDRkNBIEVWIFJPT1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnV -BU03sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpLTIpTUnrD -7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5/ZOkVIBMUtRSqy5J35DN -uF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp7hZZLDRJGqgG16iI0gNyejLi6mhNbiyW -ZXvKWfry4t3uMCz7zEasxGPrb382KzRzEpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7 -xzbh72fROdOXW3NiGUgthxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9f -py25IGvPa931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqotaK8K -gWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNgTnYGmE69g60dWIol -hdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfVPKPtl8MeNPo4+QgO48BdK4PRVmrJ -tqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hvcWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAf -BgNVHSMEGDAWgBTj/i39KNALtbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB -/wQEAwIBBjAdBgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB -ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObTej/tUxPQ4i9q -ecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdLjOztUmCypAbqTuv0axn96/Ua -4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBSESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sG -E5uPhnEFtC+NiWYzKXZUmhH4J/qyP5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfX -BDrDMlI1Dlb4pd19xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjn -aH9dCi77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN5mydLIhy -PDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe/v5WOaHIz16eGWRGENoX -kbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+ZAAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3C -ekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su ------END CERTIFICATE----- - -TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H5 -========================================================= ------BEGIN CERTIFICATE----- -MIIEJzCCAw+gAwIBAgIHAI4X/iQggTANBgkqhkiG9w0BAQsFADCBsTELMAkGA1UEBhMCVFIxDzAN -BgNVBAcMBkFua2FyYTFNMEsGA1UECgxEVMOcUktUUlVTVCBCaWxnaSDEsGxldGnFn2ltIHZlIEJp -bGnFn2ltIEfDvHZlbmxpxJ9pIEhpem1ldGxlcmkgQS7Fni4xQjBABgNVBAMMOVTDnFJLVFJVU1Qg -RWxla3Ryb25payBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSBINTAeFw0xMzA0MzAw -ODA3MDFaFw0yMzA0MjgwODA3MDFaMIGxMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMU0w -SwYDVQQKDERUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmlsacWfaW0gR8O8dmVubGnE -n2kgSGl6bWV0bGVyaSBBLsWeLjFCMEAGA1UEAww5VMOcUktUUlVTVCBFbGVrdHJvbmlrIFNlcnRp -ZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIEg1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB -CgKCAQEApCUZ4WWe60ghUEoI5RHwWrom/4NZzkQqL/7hzmAD/I0Dpe3/a6i6zDQGn1k19uwsu537 -jVJp45wnEFPzpALFp/kRGml1bsMdi9GYjZOHp3GXDSHHmflS0yxjXVW86B8BSLlg/kJK9siArs1m -ep5Fimh34khon6La8eHBEJ/rPCmBp+EyCNSgBbGM+42WAA4+Jd9ThiI7/PS98wl+d+yG6w8z5UNP -9FR1bSmZLmZaQ9/LXMrI5Tjxfjs1nQ/0xVqhzPMggCTTV+wVunUlm+hkS7M0hO8EuPbJbKoCPrZV -4jI3X/xml1/N1p7HIL9Nxqw/dV8c7TKcfGkAaZHjIxhT6QIDAQABo0IwQDAdBgNVHQ4EFgQUVpkH -HtOsDGlktAxQR95DLL4gwPswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZI -hvcNAQELBQADggEBAJ5FdnsXSDLyOIspve6WSk6BGLFRRyDN0GSxDsnZAdkJzsiZ3GglE9Rc8qPo -BP5yCccLqh0lVX6Wmle3usURehnmp349hQ71+S4pL+f5bFgWV1Al9j4uPqrtd3GqqpmWRgqujuwq -URawXs3qZwQcWDD1YIq9pr1N5Za0/EKJAWv2cMhQOQwt1WbZyNKzMrcbGW3LM/nfpeYVhDfwwvJl -lpKQd/Ct9JDpEXjXk4nAPQu6KfTomZ1yju2dL+6SfaHx/126M2CFYv4HAqGEVka+lgqaE9chTLd8 -B59OTj+RdPsnnRHM3eaxynFNExc5JsUpISuTKWqW+qtB4Uu2NQvAmxU= ------END CERTIFICATE----- - -TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H6 -========================================================= ------BEGIN CERTIFICATE----- -MIIEJjCCAw6gAwIBAgIGfaHyZeyKMA0GCSqGSIb3DQEBCwUAMIGxMQswCQYDVQQGEwJUUjEPMA0G -A1UEBwwGQW5rYXJhMU0wSwYDVQQKDERUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmls -acWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLjFCMEAGA1UEAww5VMOcUktUUlVTVCBF -bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIEg2MB4XDTEzMTIxODA5 -MDQxMFoXDTIzMTIxNjA5MDQxMFowgbExCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExTTBL -BgNVBAoMRFTDnFJLVFJVU1QgQmlsZ2kgxLBsZXRpxZ9pbSB2ZSBCaWxpxZ9pbSBHw7x2ZW5sacSf -aSBIaXptZXRsZXJpIEEuxZ4uMUIwQAYDVQQDDDlUw5xSS1RSVVNUIEVsZWt0cm9uaWsgU2VydGlm -aWthIEhpem1ldCBTYcSfbGF5xLFjxLFzxLEgSDYwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK -AoIBAQCdsGjW6L0UlqMACprx9MfMkU1xeHe59yEmFXNRFpQJRwXiM/VomjX/3EsvMsew7eKC5W/a -2uqsxgbPJQ1BgfbBOCK9+bGlprMBvD9QFyv26WZV1DOzXPhDIHiTVRZwGTLmiddk671IUP320EED -wnS3/faAz1vFq6TWlRKb55cTMgPp1KtDWxbtMyJkKbbSk60vbNg9tvYdDjTu0n2pVQ8g9P0pu5Fb -HH3GQjhtQiht1AH7zYiXSX6484P4tZgvsycLSF5W506jM7NE1qXyGJTtHB6plVxiSvgNZ1GpryHV -+DKdeboaX+UEVU0TRv/yz3THGmNtwx8XEsMeED5gCLMxAgMBAAGjQjBAMB0GA1UdDgQWBBTdVRcT -9qzoSCHK77Wv0QAy7Z6MtTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG -9w0BAQsFAAOCAQEAb1gNl0OqFlQ+v6nfkkU/hQu7VtMMUszIv3ZnXuaqs6fvuay0EBQNdH49ba3R -fdCaqaXKGDsCQC4qnFAUi/5XfldcEQlLNkVS9z2sFP1E34uXI9TDwe7UU5X+LEr+DXCqu4svLcsy -o4LyVN/Y8t3XSHLuSqMplsNEzm61kod2pLv0kmzOLBQJZo6NrRa1xxsJYTvjIKIDgI6tflEATseW -hvtDmHd9KMeP2Cpu54Rvl0EpABZeTeIT6lnAY2c6RPuY/ATTMHKm9ocJV612ph1jmv3XZch4gyt1 -O6VbuA1df74jrlZVlFjvH4GMKrLN5ptjnhi85WsGtAuYSyher4hYyw== ------END CERTIFICATE----- - -Certinomis - Root CA -==================== ------BEGIN CERTIFICATE----- -MIIFkjCCA3qgAwIBAgIBATANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJGUjETMBEGA1UEChMK -Q2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxHTAbBgNVBAMTFENlcnRpbm9taXMg -LSBSb290IENBMB4XDTEzMTAyMTA5MTcxOFoXDTMzMTAyMTA5MTcxOFowWjELMAkGA1UEBhMCRlIx -EzARBgNVBAoTCkNlcnRpbm9taXMxFzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMR0wGwYDVQQDExRD -ZXJ0aW5vbWlzIC0gUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANTMCQos -P5L2fxSeC5yaah1AMGT9qt8OHgZbn1CF6s2Nq0Nn3rD6foCWnoR4kkjW4znuzuRZWJflLieY6pOo -d5tK8O90gC3rMB+12ceAnGInkYjwSond3IjmFPnVAy//ldu9n+ws+hQVWZUKxkd8aRi5pwP5ynap -z8dvtF4F/u7BUrJ1Mofs7SlmO/NKFoL21prbcpjp3vDFTKWrteoB4owuZH9kb/2jJZOLyKIOSY00 -8B/sWEUuNKqEUL3nskoTuLAPrjhdsKkb5nPJWqHZZkCqqU2mNAKthH6yI8H7KsZn9DS2sJVqM09x -RLWtwHkziOC/7aOgFLScCbAK42C++PhmiM1b8XcF4LVzbsF9Ri6OSyemzTUK/eVNfaoqoynHWmgE -6OXWk6RiwsXm9E/G+Z8ajYJJGYrKWUM66A0ywfRMEwNvbqY/kXPLynNvEiCL7sCCeN5LLsJJwx3t -FvYk9CcbXFcx3FXuqB5vbKziRcxXV4p1VxngtViZSTYxPDMBbRZKzbgqg4SGm/lg0h9tkQPTYKbV -PZrdd5A9NaSfD171UkRpucC63M9933zZxKyGIjK8e2uR73r4F2iw4lNVYC2vPsKD2NkJK/DAZNuH -i5HMkesE/Xa0lZrmFAYb1TQdvtj/dBxThZngWVJKYe2InmtJiUZ+IFrZ50rlau7SZRFDAgMBAAGj -YzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTvkUz1pcMw6C8I -6tNxIqSSaHh02TAfBgNVHSMEGDAWgBTvkUz1pcMw6C8I6tNxIqSSaHh02TANBgkqhkiG9w0BAQsF -AAOCAgEAfj1U2iJdGlg+O1QnurrMyOMaauo++RLrVl89UM7g6kgmJs95Vn6RHJk/0KGRHCwPT5iV -WVO90CLYiF2cN/z7ZMF4jIuaYAnq1fohX9B0ZedQxb8uuQsLrbWwF6YSjNRieOpWauwK0kDDPAUw -Pk2Ut59KA9N9J0u2/kTO+hkzGm2kQtHdzMjI1xZSg081lLMSVX3l4kLr5JyTCcBMWwerx20RoFAX -lCOotQqSD7J6wWAsOMwaplv/8gzjqh8c3LigkyfeY+N/IZ865Z764BNqdeuWXGKRlI5nU7aJ+BIJ -y29SWwNyhlCVCNSNh4YVH5Uk2KRvms6knZtt0rJ2BobGVgjF6wnaNsIbW0G+YSrjcOa4pvi2WsS9 -Iff/ql+hbHY5ZtbqTFXhADObE5hjyW/QASAJN1LnDE8+zbz1X5YnpyACleAu6AdBBR8Vbtaw5Bng -DwKTACdyxYvRVB9dSsNAl35VpnzBMwQUAR1JIGkLGZOdblgi90AMRgwjY/M50n92Uaf0yKHxDHYi -I0ZSKS3io0EHVmmY0gUJvGnHWmHNj4FgFU2A3ZDifcRQ8ow7bkrHxuaAKzyBvBGAFhAn1/DNP3nM -cyrDflOR1m749fPH0FFNjkulW+YZFzvWgQncItzujrnEj1PhZ7szuIgVRs/taTX/dQ1G885x4cVr -hkIGuUE= ------END CERTIFICATE----- - -OISTE WISeKey Global Root GB CA -=============================== ------BEGIN CERTIFICATE----- -MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBtMQswCQYDVQQG -EwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNl -ZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAw -MzJaFw0zOTEyMDExNTEwMzFaMG0xCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYD -VQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEds -b2JhbCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3HEokKtaX -scriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGxWuR51jIjK+FTzJlFXHtP -rby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk -9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNku7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4o -Qnc/nSMbsrY9gBQHTC5P99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvg -GUpuuy9rM2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB -/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZI -hvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrghcViXfa43FK8+5/ea4n32cZiZBKpD -dHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0 -VQreUGdNZtGn//3ZwLWoo4rOZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEui -HZeeevJuQHHfaPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic -Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= ------END CERTIFICATE----- - -Certification Authority of WoSign G2 -==================================== ------BEGIN CERTIFICATE----- -MIIDfDCCAmSgAwIBAgIQayXaioidfLwPBbOxemFFRDANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQG -EwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxLTArBgNVBAMTJENlcnRpZmljYXRpb24g -QXV0aG9yaXR5IG9mIFdvU2lnbiBHMjAeFw0xNDExMDgwMDU4NThaFw00NDExMDgwMDU4NThaMFgx -CzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEtMCsGA1UEAxMkQ2VydGlm -aWNhdGlvbiBBdXRob3JpdHkgb2YgV29TaWduIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB -CgKCAQEAvsXEoCKASU+/2YcRxlPhuw+9YH+v9oIOH9ywjj2X4FA8jzrvZjtFB5sg+OPXJYY1kBai -XW8wGQiHC38Gsp1ij96vkqVg1CuAmlI/9ZqD6TRay9nVYlzmDuDfBpgOgHzKtB0TiGsOqCR3A9Du -W/PKaZE1OVbFbeP3PU9ekzgkyhjpJMuSA93MHD0JcOQg5PGurLtzaaNjOg9FD6FKmsLRY6zLEPg9 -5k4ot+vElbGs/V6r+kHLXZ1L3PR8du9nfwB6jdKgGlxNIuG12t12s9R23164i5jIFFTMaxeSt+BK -v0mUYQs4kI9dJGwlezt52eJ+na2fmKEG/HgUYFf47oB3sQIDAQABo0IwQDAOBgNVHQ8BAf8EBAMC -AQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU+mCp62XF3RYUCE4MD42b4Pdkr2cwDQYJKoZI -hvcNAQELBQADggEBAFfDejaCnI2Y4qtAqkePx6db7XznPWZaOzG73/MWM5H8fHulwqZm46qwtyeY -P0nXYGdnPzZPSsvxFPpahygc7Y9BMsaV+X3avXtbwrAh449G3CE4Q3RM+zD4F3LBMvzIkRfEzFg3 -TgvMWvchNSiDbGAtROtSjFA9tWwS1/oJu2yySrHFieT801LYYRf+epSEj3m2M1m6D8QL4nCgS3gu -+sif/a+RZQp4OBXllxcU3fngLDT4ONCEIgDAFFEYKwLcMFrw6AF8NTojrwjkr6qOKEJJLvD1mTS+ -7Q9LGOHSJDy7XUe3IfKN0QqZjuNuPq1w4I+5ysxugTH2e5x6eeRncRg= ------END CERTIFICATE----- - -CA WoSign ECC Root -================== ------BEGIN CERTIFICATE----- -MIICCTCCAY+gAwIBAgIQaEpYcIBr8I8C+vbe6LCQkDAKBggqhkjOPQQDAzBGMQswCQYDVQQGEwJD -TjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxGzAZBgNVBAMTEkNBIFdvU2lnbiBFQ0MgUm9v -dDAeFw0xNDExMDgwMDU4NThaFw00NDExMDgwMDU4NThaMEYxCzAJBgNVBAYTAkNOMRowGAYDVQQK -ExFXb1NpZ24gQ0EgTGltaXRlZDEbMBkGA1UEAxMSQ0EgV29TaWduIEVDQyBSb290MHYwEAYHKoZI -zj0CAQYFK4EEACIDYgAE4f2OuEMkq5Z7hcK6C62N4DrjJLnSsb6IOsq/Srj57ywvr1FQPEd1bPiU -t5v8KB7FVMxjnRZLU8HnIKvNrCXSf4/CwVqCXjCLelTOA7WRf6qU0NGKSMyCBSah1VES1ns2o0Iw -QDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUqv3VWqP2h4syhf3R -MluARZPzA7gwCgYIKoZIzj0EAwMDaAAwZQIxAOSkhLCB1T2wdKyUpOgOPQB0TKGXa/kNUTyh2Tv0 -Daupn75OcsqF1NnstTJFGG+rrQIwfcf3aWMvoeGY7xMQ0Xk/0f7qO3/eVvSQsRUR2LIiFdAvwyYu -a/GRspBl9JrmkO5K ------END CERTIFICATE----- - -SZAFIR ROOT CA2 -=============== ------BEGIN CERTIFICATE----- -MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQELBQAwUTELMAkG -A1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6ZW5pb3dhIFMuQS4xGDAWBgNV -BAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkwNzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJ -BgNVBAYTAlBMMSgwJgYDVQQKDB9LcmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYD -VQQDDA9TWkFGSVIgUk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5Q -qEvNQLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT3PSQ1hNK -DJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw3gAeqDRHu5rr/gsUvTaE -2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr63fE9biCloBK0TXC5ztdyO4mTp4CEHCdJ -ckm1/zuVnsHMyAHs6A6KCpbns6aH5db5BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwi -ieDhZNRnvDF5YTy7ykHNXGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0P -AQH/BAQDAgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsFAAOC -AQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw8PRBEew/R40/cof5 -O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOGnXkZ7/e7DDWQw4rtTw/1zBLZpD67 -oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCPoky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul -4+vJhaAlIDf7js4MNIThPIGyd05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6 -+/NNIxuZMzSgLvWpCz/UXeHPhJ/iGcJfitYgHuNztw== ------END CERTIFICATE----- - -Certum Trusted Network CA 2 -=========================== ------BEGIN CERTIFICATE----- -MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCBgDELMAkGA1UE -BhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMuQS4xJzAlBgNVBAsTHkNlcnR1 -bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIGA1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29y -ayBDQSAyMCIYDzIwMTExMDA2MDgzOTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQ -TDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENl -cnRpZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENB -IDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWADGSdhhuWZGc/IjoedQF9 -7/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+o -CgCXhVqqndwpyeI1B+twTUrWwbNWuKFBOJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40b -Rr5HMNUuctHFY9rnY3lEfktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2p -uTRZCr+ESv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1mo130 -GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02isx7QBlrd9pPPV3WZ -9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOWOZV7bIBaTxNyxtd9KXpEulKkKtVB -Rgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgezTv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pye -hizKV/Ma5ciSixqClnrDvFASadgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vM -BhBgu4M1t15n3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD -AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZI -hvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQF/xlhMcQSZDe28cmk4gmb3DW -Al45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTfCVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuA -L55MYIR4PSFk1vtBHxgP58l1cb29XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMo -clm2q8KMZiYcdywmdjWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tM -pkT/WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jbAoJnwTnb -w3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksqP/ujmv5zMnHCnsZy4Ypo -J/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Kob7a6bINDd82Kkhehnlt4Fj1F4jNy3eFm -ypnTycUm/Q1oBEauttmbjL4ZvrHG8hnjXALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLX -is7VmFxWlgPF7ncGNf/P5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7 -zAYspsbiDrW5viSP ------END CERTIFICATE----- diff --git a/vendor/composer/ca-bundle/src/CaBundle.php b/vendor/composer/ca-bundle/src/CaBundle.php deleted file mode 100644 index 1798d9e80..000000000 --- a/vendor/composer/ca-bundle/src/CaBundle.php +++ /dev/null @@ -1,291 +0,0 @@ - - * - * For the full copyright and license information, please view - * the LICENSE file that was distributed with this source code. - */ - -namespace Composer\CaBundle; - -use Psr\Log\LoggerInterface; -use Symfony\Component\Process\PhpProcess; - -/** - * @author Chris Smith - * @author Jordi Boggiano - */ -class CaBundle -{ - private static $caPath; - private static $caFileValidity = array(); - private static $useOpensslParse; - - /** - * Returns the system CA bundle path, or a path to the bundled one - * - * This method was adapted from Sslurp. - * https://github.com/EvanDotPro/Sslurp - * - * (c) Evan Coury - * - * For the full copyright and license information, please see below: - * - * Copyright (c) 2013, Evan Coury - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, - * are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR - * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * @param LoggerInterface $logger optional logger for information about which CA files were loaded - * @return string path to a CA bundle file or directory - */ - public static function getSystemCaRootBundlePath(LoggerInterface $logger = null) - { - if (self::$caPath !== null) { - return self::$caPath; - } - - // If SSL_CERT_FILE env variable points to a valid certificate/bundle, use that. - // This mimics how OpenSSL uses the SSL_CERT_FILE env variable. - $envCertFile = getenv('SSL_CERT_FILE'); - if ($envCertFile && is_readable($envCertFile) && static::validateCaFile($envCertFile, $logger)) { - return self::$caPath = $envCertFile; - } - - // If SSL_CERT_DIR env variable points to a valid certificate/bundle, use that. - // This mimics how OpenSSL uses the SSL_CERT_FILE env variable. - $envCertDir = getenv('SSL_CERT_DIR'); - if ($envCertDir && is_dir($envCertDir) && is_readable($envCertDir)) { - return self::$caPath = $envCertDir; - } - - $configured = ini_get('openssl.cafile'); - if ($configured && strlen($configured) > 0 && is_readable($configured) && static::validateCaFile($configured, $logger)) { - return self::$caPath = $configured; - } - - $configured = ini_get('openssl.capath'); - if ($configured && is_dir($configured) && is_readable($configured)) { - return self::$caPath = $configured; - } - - $caBundlePaths = array( - '/etc/pki/tls/certs/ca-bundle.crt', // Fedora, RHEL, CentOS (ca-certificates package) - '/etc/ssl/certs/ca-certificates.crt', // Debian, Ubuntu, Gentoo, Arch Linux (ca-certificates package) - '/etc/ssl/ca-bundle.pem', // SUSE, openSUSE (ca-certificates package) - '/usr/local/share/certs/ca-root-nss.crt', // FreeBSD (ca_root_nss_package) - '/usr/ssl/certs/ca-bundle.crt', // Cygwin - '/opt/local/share/curl/curl-ca-bundle.crt', // OS X macports, curl-ca-bundle package - '/usr/local/share/curl/curl-ca-bundle.crt', // Default cURL CA bunde path (without --with-ca-bundle option) - '/usr/share/ssl/certs/ca-bundle.crt', // Really old RedHat? - '/etc/ssl/cert.pem', // OpenBSD - '/usr/local/etc/ssl/cert.pem', // FreeBSD 10.x - '/usr/local/etc/openssl/cert.pem', // OS X homebrew, openssl package - ); - - foreach ($caBundlePaths as $caBundle) { - if (@is_readable($caBundle) && static::validateCaFile($caBundle, $logger)) { - return self::$caPath = $caBundle; - } - } - - foreach ($caBundlePaths as $caBundle) { - $caBundle = dirname($caBundle); - if (@is_dir($caBundle) && glob($caBundle.'/*')) { - return self::$caPath = $caBundle; - } - } - - return self::$caPath = static::getBundledCaBundlePath(); // Bundled CA file, last resort - } - - /** - * Returns the path to the bundled CA file - * - * In case you don't want to trust the user or the system, you can use this directly - * - * @return string path to a CA bundle file - */ - public static function getBundledCaBundlePath() - { - return __DIR__.'/../res/cacert.pem'; - } - - /** - * Validates a CA file using opensl_x509_parse only if it is safe to use - * - * @param string $filename - * @param LoggerInterface $logger optional logger for information about which CA files were loaded - * - * @return bool - */ - public static function validateCaFile($filename, LoggerInterface $logger = null) - { - static $warned = false; - - if (isset(self::$caFileValidity[$filename])) { - return self::$caFileValidity[$filename]; - } - - $contents = file_get_contents($filename); - - // assume the CA is valid if php is vulnerable to - // https://www.sektioneins.de/advisories/advisory-012013-php-openssl_x509_parse-memory-corruption-vulnerability.html - if (!static::isOpensslParseSafe()) { - if (!$warned && $logger) { - $logger->warning(sprintf( - 'Your version of PHP, %s, is affected by CVE-2013-6420 and cannot safely perform certificate validation, we strongly suggest you upgrade.', - PHP_VERSION - )); - $warned = true; - } - - $isValid = !empty($contents); - } else { - $isValid = (bool) openssl_x509_parse($contents); - } - - if ($logger) { - $logger->debug('Checked CA file '.realpath($filename).': '.($isValid ? 'valid' : 'invalid')); - } - - return self::$caFileValidity[$filename] = $isValid; - } - - /** - * Test if it is safe to use the PHP function openssl_x509_parse(). - * - * This checks if OpenSSL extensions is vulnerable to remote code execution - * via the exploit documented as CVE-2013-6420. - * - * @return bool - */ - public static function isOpensslParseSafe() - { - if (null !== self::$useOpensslParse) { - return self::$useOpensslParse; - } - - if (PHP_VERSION_ID >= 50600) { - return self::$useOpensslParse = true; - } - - // Vulnerable: - // PHP 5.3.0 - PHP 5.3.27 - // PHP 5.4.0 - PHP 5.4.22 - // PHP 5.5.0 - PHP 5.5.6 - if ( - (PHP_VERSION_ID < 50400 && PHP_VERSION_ID >= 50328) - || (PHP_VERSION_ID < 50500 && PHP_VERSION_ID >= 50423) - || (PHP_VERSION_ID < 50600 && PHP_VERSION_ID >= 50507) - ) { - // This version of PHP has the fix for CVE-2013-6420 applied. - return self::$useOpensslParse = true; - } - - if (defined('PHP_WINDOWS_VERSION_BUILD')) { - // Windows is probably insecure in this case. - return self::$useOpensslParse = false; - } - - $compareDistroVersionPrefix = function ($prefix, $fixedVersion) { - $regex = '{^'.preg_quote($prefix).'([0-9]+)$}'; - - if (preg_match($regex, PHP_VERSION, $m)) { - return ((int) $m[1]) >= $fixedVersion; - } - - return false; - }; - - // Hard coded list of PHP distributions with the fix backported. - if ( - $compareDistroVersionPrefix('5.3.3-7+squeeze', 18) // Debian 6 (Squeeze) - || $compareDistroVersionPrefix('5.4.4-14+deb7u', 7) // Debian 7 (Wheezy) - || $compareDistroVersionPrefix('5.3.10-1ubuntu3.', 9) // Ubuntu 12.04 (Precise) - ) { - return self::$useOpensslParse = true; - } - - // Symfony Process component is missing so we assume it is unsafe at this point - if (!class_exists('Symfony\Component\Process\PhpProcess')) { - return self::$useOpensslParse = false; - } - - // This is where things get crazy, because distros backport security - // fixes the chances are on NIX systems the fix has been applied but - // it's not possible to verify that from the PHP version. - // - // To verify exec a new PHP process and run the issue testcase with - // known safe input that replicates the bug. - - // Based on testcase in https://github.com/php/php-src/commit/c1224573c773b6845e83505f717fbf820fc18415 - // changes in https://github.com/php/php-src/commit/76a7fd893b7d6101300cc656058704a73254d593 - $cert = 'LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUVwRENDQTR5Z0F3SUJBZ0lKQUp6dThyNnU2ZUJjTUEwR0NTcUdTSWIzRFFFQkJRVUFNSUhETVFzd0NRWUQKVlFRR0V3SkVSVEVjTUJvR0ExVUVDQXdUVG05eVpISm9aV2x1TFZkbGMzUm1ZV3hsYmpFUU1BNEdBMVVFQnd3SApTOE9Ed3Jac2JqRVVNQklHQTFVRUNnd0xVMlZyZEdsdmJrVnBibk14SHpBZEJnTlZCQXNNRmsxaGJHbGphVzkxCmN5QkRaWEowSUZObFkzUnBiMjR4SVRBZkJnTlZCQU1NR0cxaGJHbGphVzkxY3k1elpXdDBhVzl1WldsdWN5NWsKWlRFcU1DZ0dDU3FHU0liM0RRRUpBUlliYzNSbFptRnVMbVZ6YzJWeVFITmxhM1JwYjI1bGFXNXpMbVJsTUhVWQpaREU1TnpBd01UQXhNREF3TURBd1dnQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBCkFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUEKQUFBQUFBQVhEVEUwTVRFeU9ERXhNemt6TlZvd2djTXhDekFKQmdOVkJBWVRBa1JGTVJ3d0dnWURWUVFJREJOTwpiM0prY21obGFXNHRWMlZ6ZEdaaGJHVnVNUkF3RGdZRFZRUUhEQWRMdzRQQ3RteHVNUlF3RWdZRFZRUUtEQXRUClpXdDBhVzl1UldsdWN6RWZNQjBHQTFVRUN3d1dUV0ZzYVdOcGIzVnpJRU5sY25RZ1UyVmpkR2x2YmpFaE1COEcKQTFVRUF3d1liV0ZzYVdOcGIzVnpMbk5sYTNScGIyNWxhVzV6TG1SbE1Tb3dLQVlKS29aSWh2Y05BUWtCRmh0egpkR1ZtWVc0dVpYTnpaWEpBYzJWcmRHbHZibVZwYm5NdVpHVXdnZ0VpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElCCkR3QXdnZ0VLQW9JQkFRRERBZjNobDdKWTBYY0ZuaXlFSnBTU0RxbjBPcUJyNlFQNjV1c0pQUnQvOFBhRG9xQnUKd0VZVC9OYSs2ZnNnUGpDMHVLOURaZ1dnMnRIV1dvYW5TYmxBTW96NVBINlorUzRTSFJaN2UyZERJalBqZGhqaAowbUxnMlVNTzV5cDBWNzk3R2dzOWxOdDZKUmZIODFNTjJvYlhXczROdHp0TE11RDZlZ3FwcjhkRGJyMzRhT3M4CnBrZHVpNVVhd1Raa3N5NXBMUEhxNWNNaEZHbTA2djY1Q0xvMFYyUGQ5K0tBb2tQclBjTjVLTEtlYno3bUxwazYKU01lRVhPS1A0aWRFcXh5UTdPN2ZCdUhNZWRzUWh1K3ByWTNzaTNCVXlLZlF0UDVDWm5YMmJwMHdLSHhYMTJEWAoxbmZGSXQ5RGJHdkhUY3lPdU4rblpMUEJtM3ZXeG50eUlJdlZBZ01CQUFHalFqQkFNQWtHQTFVZEV3UUNNQUF3CkVRWUpZSVpJQVliNFFnRUJCQVFEQWdlQU1Bc0dBMVVkRHdRRUF3SUZvREFUQmdOVkhTVUVEREFLQmdnckJnRUYKQlFjREFqQU5CZ2txaGtpRzl3MEJBUVVGQUFPQ0FRRUFHMGZaWVlDVGJkajFYWWMrMVNub2FQUit2SThDOENhRAo4KzBVWWhkbnlVNGdnYTBCQWNEclk5ZTk0ZUVBdTZacXljRjZGakxxWFhkQWJvcHBXb2NyNlQ2R0QxeDMzQ2tsClZBcnpHL0t4UW9oR0QySmVxa2hJTWxEb214SE83a2EzOStPYThpMnZXTFZ5alU4QVp2V01BcnVIYTRFRU55RzcKbFcyQWFnYUZLRkNyOVRuWFRmcmR4R1ZFYnY3S1ZRNmJkaGc1cDVTanBXSDErTXEwM3VSM1pYUEJZZHlWODMxOQpvMGxWajFLRkkyRENML2xpV2lzSlJvb2YrMWNSMzVDdGQwd1lCY3BCNlRac2xNY09QbDc2ZHdLd0pnZUpvMlFnClpzZm1jMnZDMS9xT2xOdU5xLzBUenprVkd2OEVUVDNDZ2FVK1VYZTRYT1Z2a2NjZWJKbjJkZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K'; - $script = <<<'EOT' - -error_reporting(-1); -$info = openssl_x509_parse(base64_decode('%s')); -var_dump(PHP_VERSION, $info['issuer']['emailAddress'], $info['validFrom_time_t']); - -EOT; - $script = '<'."?php\n".sprintf($script, $cert); - - try { - $process = new PhpProcess($script); - $process->mustRun(); - } catch (\Exception $e) { - // In the case of any exceptions just accept it is not possible to - // determine the safety of openssl_x509_parse and bail out. - return self::$useOpensslParse = false; - } - - $output = preg_split('{\r?\n}', trim($process->getOutput())); - $errorOutput = trim($process->getErrorOutput()); - - if ( - count($output) === 3 - && $output[0] === sprintf('string(%d) "%s"', strlen(PHP_VERSION), PHP_VERSION) - && $output[1] === 'string(27) "stefan.esser@sektioneins.de"' - && $output[2] === 'int(-1)' - && preg_match('{openssl_x509_parse\(\): illegal (?:ASN1 data type for|length in) timestamp in - on line \d+}', $errorOutput) - ) { - // This PHP has the fix backported probably by a distro security team. - return self::$useOpensslParse = true; - } - - return self::$useOpensslParse = false; - } - - /** - * Resets the static caches - */ - public static function reset() - { - self::$caFileValidity = array(); - self::$caPath = null; - self::$useOpensslParse = null; - } -} diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 769c8ed93..e17d1eeea 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -2013,63 +2013,6 @@ "shim" ] }, - { - "name": "propaganistas/laravel-phone", - "version": "2.7.4", - "version_normalized": "2.7.4.0", - "source": { - "type": "git", - "url": "https://github.com/Propaganistas/Laravel-Phone.git", - "reference": "5fe3af2794433fa721c6bfdc0fffc7faebc56754" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Propaganistas/Laravel-Phone/zipball/5fe3af2794433fa721c6bfdc0fffc7faebc56754", - "reference": "5fe3af2794433fa721c6bfdc0fffc7faebc56754", - "shasum": "" - }, - "require": { - "giggsey/libphonenumber-for-php": "~7.0", - "illuminate/support": "~4.0|~5.0", - "illuminate/validation": "~4.0|~5.0", - "julien-c/iso3166": "~2.0", - "php": ">=5.4.0" - }, - "require-dev": { - "orchestra/testbench": "^3.1" - }, - "suggest": { - "monarobase/country-list": "Adds a compatible (and fully translated) country list API." - }, - "time": "2016-05-20 10:27:25", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "Propaganistas\\LaravelPhone\\": "src/" - }, - "files": [ - "src/helpers.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Propaganistas", - "email": "Propaganistas@users.noreply.github.com" - } - ], - "description": "Adds a phone validator to Laravel based on Google's libphonenumber API.", - "keywords": [ - "laravel", - "libphonenumber", - "phone", - "validation" - ] - }, { "name": "phpunit/php-timer", "version": "1.0.8", @@ -2116,66 +2059,6 @@ "timer" ] }, - { - "name": "torann/geoip", - "version": "dev-master", - "version_normalized": "9999999-dev", - "source": { - "type": "git", - "url": "https://github.com/Torann/laravel-geoip.git", - "reference": "f16f839160b1ab1fe41382e18ec9a32dd09b10fd" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Torann/laravel-geoip/zipball/f16f839160b1ab1fe41382e18ec9a32dd09b10fd", - "reference": "f16f839160b1ab1fe41382e18ec9a32dd09b10fd", - "shasum": "" - }, - "require": { - "geoip2/geoip2": "~2.1", - "illuminate/config": "~5.0", - "illuminate/console": "~5.0", - "illuminate/session": "~5.0", - "illuminate/support": "~5.0", - "monolog/monolog": "~1.11", - "php": ">=5.3.0" - }, - "require-dev": { - "phpspec/phpspec": "~2.1", - "phpunit/phpunit": "~4.0" - }, - "time": "2015-06-30 16:13:35", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.2-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Torann\\GeoIP\\": "src/Torann/GeoIP" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD 2-Clause" - ], - "authors": [ - { - "name": "Daniel Stainback", - "email": "daniel@lyften.com" - } - ], - "description": "Supports the two main GeoIP services (infoDB and Maxmind).", - "keywords": [ - "geoip", - "geolocation", - "laravel", - "laravel 5", - "location" - ] - }, { "name": "phpdocumentor/reflection-common", "version": "1.0", @@ -2281,53 +2164,6 @@ } ] }, - { - "name": "phpdocumentor/reflection-docblock", - "version": "3.1.0", - "version_normalized": "3.1.0.0", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "9270140b940ff02e58ec577c237274e92cd40cdd" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9270140b940ff02e58ec577c237274e92cd40cdd", - "reference": "9270140b940ff02e58ec577c237274e92cd40cdd", - "shasum": "" - }, - "require": { - "php": ">=5.5", - "phpdocumentor/reflection-common": "^1.0@dev", - "phpdocumentor/type-resolver": "^0.2.0", - "webmozart/assert": "^1.0" - }, - "require-dev": { - "mockery/mockery": "^0.9.4", - "phpunit/phpunit": "^4.4" - }, - "time": "2016-06-10 09:48:41", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src/" - ] - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" - } - ], - "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock." - }, { "name": "phpspec/prophecy", "version": "v1.6.1", @@ -2518,53 +2354,6 @@ "zf2" ] }, - { - "name": "zendframework/zend-stdlib", - "version": "3.0.1", - "version_normalized": "3.0.1.0", - "source": { - "type": "git", - "url": "https://github.com/zendframework/zend-stdlib.git", - "reference": "8bafa58574204bdff03c275d1d618aaa601588ae" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/8bafa58574204bdff03c275d1d618aaa601588ae", - "reference": "8bafa58574204bdff03c275d1d618aaa601588ae", - "shasum": "" - }, - "require": { - "php": "^5.5 || ^7.0" - }, - "require-dev": { - "athletic/athletic": "~0.1", - "fabpot/php-cs-fixer": "1.7.*", - "phpunit/phpunit": "~4.0" - }, - "time": "2016-04-12 21:19:36", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev", - "dev-develop": "3.1-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Zend\\Stdlib\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "homepage": "https://github.com/zendframework/zend-stdlib", - "keywords": [ - "stdlib", - "zf2" - ] - }, { "name": "container-interop/container-interop", "version": "1.1.0", @@ -2899,70 +2688,6 @@ "zf2" ] }, - { - "name": "sly/notification-pusher", - "version": "v2.2.2", - "version_normalized": "2.2.2.0", - "source": { - "type": "git", - "url": "https://github.com/Ph3nol/NotificationPusher.git", - "reference": "6112841c4b679bc4f6cf01f6cf655e24794bc670" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Ph3nol/NotificationPusher/zipball/6112841c4b679bc4f6cf01f6cf655e24794bc670", - "reference": "6112841c4b679bc4f6cf01f6cf655e24794bc670", - "shasum": "" - }, - "require": { - "php": ">=5.3.2", - "symfony/console": ">=2.3", - "symfony/options-resolver": ">=2.3", - "symfony/process": ">=2.3", - "zendframework/zendservice-apple-apns": "1.*", - "zendframework/zendservice-google-gcm": "1.*" - }, - "require-dev": { - "atoum/atoum": "dev-master" - }, - "time": "2013-12-08 20:35:03", - "type": "standalone", - "installation-source": "dist", - "autoload": { - "psr-0": { - "Sly": [ - "src/" - ] - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Cédric Dugat", - "email": "cedric@dugat.me" - }, - { - "name": "Contributors", - "homepage": "https://github.com/Ph3nol/NotificationPusher/contributors" - } - ], - "description": "Standalone PHP library for easy devices notifications push.", - "homepage": "https://github.com/Ph3nol/NotificationPusher", - "keywords": [ - "android", - "apns", - "apple", - "gcm", - "iphone", - "message", - "notification", - "push", - "pusher" - ] - }, { "name": "davibennun/laravel-push-notification", "version": "dev-laravel5", @@ -3330,70 +3055,6 @@ "uri" ] }, - { - "name": "guzzlehttp/guzzle", - "version": "6.2.1", - "version_normalized": "6.2.1.0", - "source": { - "type": "git", - "url": "https://github.com/guzzle/guzzle.git", - "reference": "3f808fba627f2c5b69e2501217bf31af349c1427" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/3f808fba627f2c5b69e2501217bf31af349c1427", - "reference": "3f808fba627f2c5b69e2501217bf31af349c1427", - "shasum": "" - }, - "require": { - "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.3.1", - "php": ">=5.5" - }, - "require-dev": { - "ext-curl": "*", - "phpunit/phpunit": "^4.0", - "psr/log": "^1.0" - }, - "time": "2016-07-15 17:22:37", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "6.2-dev" - } - }, - "installation-source": "dist", - "autoload": { - "files": [ - "src/functions_include.php" - ], - "psr-4": { - "GuzzleHttp\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "Guzzle is a PHP HTTP client library", - "homepage": "http://guzzlephp.org/", - "keywords": [ - "client", - "curl", - "framework", - "http", - "http client", - "rest", - "web service" - ] - }, { "name": "phpunit/phpunit", "version": "4.8.27", @@ -4578,62 +4239,6 @@ "xlsx" ] }, - { - "name": "laravel/socialite", - "version": "v2.0.18", - "version_normalized": "2.0.18.0", - "source": { - "type": "git", - "url": "https://github.com/laravel/socialite.git", - "reference": "76ee5397fcdea5a062361392abca4eb397e519a3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laravel/socialite/zipball/76ee5397fcdea5a062361392abca4eb397e519a3", - "reference": "76ee5397fcdea5a062361392abca4eb397e519a3", - "shasum": "" - }, - "require": { - "guzzlehttp/guzzle": "~5.0|~6.0", - "illuminate/contracts": "~5.0", - "illuminate/http": "~5.0", - "illuminate/support": "~5.0", - "league/oauth1-client": "~1.0", - "php": ">=5.4.0" - }, - "require-dev": { - "mockery/mockery": "~0.9", - "phpunit/phpunit": "~4.0|~5.0" - }, - "time": "2016-06-22 12:40:16", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Laravel\\Socialite\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylorotwell@gmail.com" - } - ], - "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.", - "keywords": [ - "laravel", - "oauth" - ] - }, { "name": "vlucas/phpdotenv", "version": "v2.4.0", @@ -4686,153 +4291,6 @@ "environment" ] }, - { - "name": "symfony/event-dispatcher", - "version": "v3.1.4", - "version_normalized": "3.1.4.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c0c00c80b3a69132c4e55c3e7db32b4a387615e5", - "reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5", - "shasum": "" - }, - "require": { - "php": ">=5.5.9" - }, - "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~2.8|~3.0", - "symfony/dependency-injection": "~2.8|~3.0", - "symfony/expression-language": "~2.8|~3.0", - "symfony/stopwatch": "~2.8|~3.0" - }, - "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" - }, - "time": "2016-07-19 10:45:57", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.1-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony EventDispatcher Component", - "homepage": "https://symfony.com" - }, - { - "name": "league/flysystem", - "version": "1.0.27", - "version_normalized": "1.0.27.0", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/flysystem.git", - "reference": "50e2045ed70a7e75a5e30bc3662904f3b67af8a9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/50e2045ed70a7e75a5e30bc3662904f3b67af8a9", - "reference": "50e2045ed70a7e75a5e30bc3662904f3b67af8a9", - "shasum": "" - }, - "require": { - "php": ">=5.4.0" - }, - "conflict": { - "league/flysystem-sftp": "<1.0.6" - }, - "require-dev": { - "ext-fileinfo": "*", - "mockery/mockery": "~0.9", - "phpspec/phpspec": "^2.2", - "phpunit/phpunit": "~4.8" - }, - "suggest": { - "ext-fileinfo": "Required for MimeType", - "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", - "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", - "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", - "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", - "league/flysystem-copy": "Allows you to use Copy.com storage", - "league/flysystem-dropbox": "Allows you to use Dropbox storage", - "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", - "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", - "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", - "league/flysystem-webdav": "Allows you to use WebDAV storage", - "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter" - }, - "time": "2016-08-10 08:55:11", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "League\\Flysystem\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Frank de Jonge", - "email": "info@frenky.net" - } - ], - "description": "Filesystem abstraction: Many filesystems, one API.", - "keywords": [ - "Cloud Files", - "WebDAV", - "abstraction", - "aws", - "cloud", - "copy.com", - "dropbox", - "file systems", - "files", - "filesystem", - "filesystems", - "ftp", - "rackspace", - "remote", - "s3", - "sftp", - "storage" - ] - }, { "name": "laravel/framework", "version": "v5.2.45", @@ -5125,382 +4583,6 @@ "push" ] }, - { - "name": "maximebf/debugbar", - "version": "v1.12.0", - "version_normalized": "1.12.0.0", - "source": { - "type": "git", - "url": "https://github.com/maximebf/php-debugbar.git", - "reference": "e634fbd32cd6bc3fa0e8c972b52d4bf49bab3988" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/e634fbd32cd6bc3fa0e8c972b52d4bf49bab3988", - "reference": "e634fbd32cd6bc3fa0e8c972b52d4bf49bab3988", - "shasum": "" - }, - "require": { - "php": ">=5.3.0", - "psr/log": "^1.0", - "symfony/var-dumper": "^2.6|^3.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.0|^5.0" - }, - "suggest": { - "kriswallsmith/assetic": "The best way to manage assets", - "monolog/monolog": "Log using Monolog", - "predis/predis": "Redis storage" - }, - "time": "2016-05-15 13:11:34", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.12-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "DebugBar\\": "src/DebugBar/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Maxime Bouroumeau-Fuseau", - "email": "maxime.bouroumeau@gmail.com", - "homepage": "http://maximebf.com" - }, - { - "name": "Barry vd. Heuvel", - "email": "barryvdh@gmail.com" - } - ], - "description": "Debug bar in the browser for php application", - "homepage": "https://github.com/maximebf/php-debugbar", - "keywords": [ - "debug", - "debugbar" - ] - }, - { - "name": "barryvdh/laravel-debugbar", - "version": "V2.2.3", - "version_normalized": "2.2.3.0", - "source": { - "type": "git", - "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "ecd1ce5c4a827e2f6a8fb41bcf67713beb1c1cbd" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/ecd1ce5c4a827e2f6a8fb41bcf67713beb1c1cbd", - "reference": "ecd1ce5c4a827e2f6a8fb41bcf67713beb1c1cbd", - "shasum": "" - }, - "require": { - "illuminate/support": "5.1.*|5.2.*|5.3.*", - "maximebf/debugbar": "~1.11.0|~1.12.0", - "php": ">=5.5.9", - "symfony/finder": "~2.7|~3.0" - }, - "time": "2016-07-29 15:00:36", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.2-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Barryvdh\\Debugbar\\": "src/" - }, - "files": [ - "src/helpers.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Barry vd. Heuvel", - "email": "barryvdh@gmail.com" - } - ], - "description": "PHP Debugbar integration for Laravel", - "keywords": [ - "debug", - "debugbar", - "laravel", - "profiler", - "webprofiler" - ] - }, - { - "name": "aws/aws-sdk-php", - "version": "3.19.5", - "version_normalized": "3.19.5.0", - "source": { - "type": "git", - "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "8fbd79d2f7c771b97879cbab09190d77a4fce9fb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/8fbd79d2f7c771b97879cbab09190d77a4fce9fb", - "reference": "8fbd79d2f7c771b97879cbab09190d77a4fce9fb", - "shasum": "" - }, - "require": { - "guzzlehttp/guzzle": "^5.3.1|^6.2.1", - "guzzlehttp/promises": "~1.0", - "guzzlehttp/psr7": "~1.3.1", - "mtdowling/jmespath.php": "~2.2", - "php": ">=5.5" - }, - "require-dev": { - "andrewsville/php-token-reflection": "^1.4", - "aws/aws-php-sns-message-validator": "~1.0", - "behat/behat": "~3.0", - "doctrine/cache": "~1.4", - "ext-dom": "*", - "ext-json": "*", - "ext-openssl": "*", - "ext-pcre": "*", - "ext-simplexml": "*", - "ext-spl": "*", - "nette/neon": "^2.3", - "phpunit/phpunit": "~4.0|~5.0", - "psr/cache": "^1.0" - }, - "suggest": { - "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", - "doctrine/cache": "To use the DoctrineCacheAdapter", - "ext-curl": "To send requests using cURL", - "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages" - }, - "time": "2016-09-06 22:14:20", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Aws\\": "src/" - }, - "files": [ - "src/functions.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Amazon Web Services", - "homepage": "http://aws.amazon.com" - } - ], - "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project", - "homepage": "http://aws.amazon.com/sdkforphp", - "keywords": [ - "amazon", - "aws", - "cloud", - "dynamodb", - "ec2", - "glacier", - "s3", - "sdk" - ] - }, - { - "name": "symfony/css-selector", - "version": "v3.1.4", - "version_normalized": "3.1.4.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "2851e1932d77ce727776154d659b232d061e816a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/2851e1932d77ce727776154d659b232d061e816a", - "reference": "2851e1932d77ce727776154d659b232d061e816a", - "shasum": "" - }, - "require": { - "php": ">=5.5.9" - }, - "time": "2016-06-29 05:41:56", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.1-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Symfony\\Component\\CssSelector\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" - }, - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony CssSelector Component", - "homepage": "https://symfony.com" - }, - { - "name": "maatwebsite/excel", - "version": "2.1.4", - "version_normalized": "2.1.4.0", - "source": { - "type": "git", - "url": "https://github.com/Maatwebsite/Laravel-Excel.git", - "reference": "b5c91156f6bd29f68f4f2c51186faae4310a5a68" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/b5c91156f6bd29f68f4f2c51186faae4310a5a68", - "reference": "b5c91156f6bd29f68f4f2c51186faae4310a5a68", - "shasum": "" - }, - "require": { - "illuminate/cache": "5.0.*|5.1.*|5.2.*|5.3.*", - "illuminate/config": "5.0.*|5.1.*|5.2.*|5.3.*", - "illuminate/filesystem": "5.0.*|5.1.*|5.2.*|5.3.*", - "illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*", - "nesbot/carbon": "~1.0", - "php": ">=5.5", - "phpoffice/phpexcel": "1.8.*", - "tijsverkoyen/css-to-inline-styles": "~1.5" - }, - "require-dev": { - "mockery/mockery": "~0.9", - "orchestra/testbench": "3.1.*", - "phpseclib/phpseclib": "~1.0", - "phpunit/phpunit": "~4.0" - }, - "suggest": { - "illuminate/http": "5.0.*|5.1.*|5.2.*|5.3.*", - "illuminate/queue": "5.0.*|5.1.*|5.2.*|5.3.*", - "illuminate/routing": "5.0.*|5.1.*|5.2.*|5.3.*", - "illuminate/view": "5.0.*|5.1.*|5.2.*|5.3.*" - }, - "time": "2016-08-28 20:25:51", - "type": "library", - "installation-source": "dist", - "autoload": { - "classmap": [ - "src/Maatwebsite/Excel" - ], - "psr-0": { - "Maatwebsite\\Excel\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL" - ], - "authors": [ - { - "name": "Maatwebsite.nl", - "email": "patrick@maatwebsite.nl" - } - ], - "description": "An eloquent way of importing and exporting Excel and CSV in Laravel 4 with the power of PHPExcel", - "keywords": [ - "PHPExcel", - "batch", - "csv", - "excel", - "export", - "import", - "laravel" - ] - }, - { - "name": "symfony/yaml", - "version": "v3.1.4", - "version_normalized": "3.1.4.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/yaml.git", - "reference": "f291ed25eb1435bddbe8a96caaef16469c2a092d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/f291ed25eb1435bddbe8a96caaef16469c2a092d", - "reference": "f291ed25eb1435bddbe8a96caaef16469c2a092d", - "shasum": "" - }, - "require": { - "php": ">=5.5.9" - }, - "time": "2016-09-02 02:12:52", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.1-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Symfony\\Component\\Yaml\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Yaml Component", - "homepage": "https://symfony.com" - }, { "name": "webmozart/assert", "version": "1.1.0", @@ -5553,351 +4635,6 @@ "validate" ] }, - { - "name": "phpspec/phpspec", - "version": "2.5.2", - "version_normalized": "2.5.2.0", - "source": { - "type": "git", - "url": "https://github.com/phpspec/phpspec.git", - "reference": "7e7e104de01b5052195cefefcd0b29f1add4c116" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpspec/phpspec/zipball/7e7e104de01b5052195cefefcd0b29f1add4c116", - "reference": "7e7e104de01b5052195cefefcd0b29f1add4c116", - "shasum": "" - }, - "require": { - "doctrine/instantiator": "^1.0.1", - "ext-tokenizer": "*", - "php": ">=5.3.3", - "phpspec/php-diff": "~1.0.0", - "phpspec/prophecy": "~1.4", - "sebastian/exporter": "~1.0", - "symfony/console": "~2.3|~3.0", - "symfony/event-dispatcher": "~2.1|~3.0", - "symfony/finder": "~2.1|~3.0", - "symfony/process": "^2.6|~3.0", - "symfony/yaml": "~2.1|~3.0" - }, - "require-dev": { - "behat/behat": "^3.0.11", - "ciaranmcnulty/versionbasedtestskipper": "^0.2.1", - "phpunit/phpunit": "~4.4", - "symfony/filesystem": "~2.1|~3.0" - }, - "suggest": { - "phpspec/nyan-formatters": "~1.0 – Adds Nyan formatters" - }, - "time": "2016-09-04 11:59:15", - "bin": [ - "bin/phpspec" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.5.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-0": { - "PhpSpec": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" - }, - { - "name": "Marcello Duarte", - "homepage": "http://marcelloduarte.net/" - } - ], - "description": "Specification-oriented BDD framework for PHP 5.3+", - "homepage": "http://phpspec.net/", - "keywords": [ - "BDD", - "SpecBDD", - "TDD", - "spec", - "specification", - "testing", - "tests" - ] - }, - { - "name": "symfony/dom-crawler", - "version": "v3.1.4", - "version_normalized": "3.1.4.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/dom-crawler.git", - "reference": "bb7395e8b1db3654de82b9f35d019958276de4d7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/bb7395e8b1db3654de82b9f35d019958276de4d7", - "reference": "bb7395e8b1db3654de82b9f35d019958276de4d7", - "shasum": "" - }, - "require": { - "php": ">=5.5.9", - "symfony/polyfill-mbstring": "~1.0" - }, - "require-dev": { - "symfony/css-selector": "~2.8|~3.0" - }, - "suggest": { - "symfony/css-selector": "" - }, - "time": "2016-08-05 08:37:39", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.1-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Symfony\\Component\\DomCrawler\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony DomCrawler Component", - "homepage": "https://symfony.com" - }, - { - "name": "giggsey/locale", - "version": "1.0", - "version_normalized": "1.0.0.0", - "source": { - "type": "git", - "url": "https://github.com/giggsey/Locale.git", - "reference": "9087acaf8493472fcd129118017fd7e06be3d8fa" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/giggsey/Locale/zipball/9087acaf8493472fcd129118017fd7e06be3d8fa", - "reference": "9087acaf8493472fcd129118017fd7e06be3d8fa", - "shasum": "" - }, - "require-dev": { - "pear/pear-core-minimal": "^1.9", - "pear/pear_exception": "^1.0", - "pear/versioncontrol_git": "dev-master", - "phing/phing": "~2.7", - "phpunit/phpunit": "^4.8|^5.0", - "satooshi/php-coveralls": "^1.0", - "symfony/console": "^2.8|^3.0", - "symfony/filesystem": "^2.8|^3.0", - "symfony/finder": "^2.8|^3.0", - "symfony/process": "^2.8|^3.0" - }, - "time": "2016-08-04 23:02:29", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "Giggsey\\Locale\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Joshua Gigg", - "email": "giggsey@gmail.com", - "homepage": "http://giggsey.com/" - } - ], - "description": "Locale functions required by libphonenumber-for-php" - }, - { - "name": "composer/ca-bundle", - "version": "1.0.4", - "version_normalized": "1.0.4.0", - "source": { - "type": "git", - "url": "https://github.com/composer/ca-bundle.git", - "reference": "ec21a59414b99501e723b63fd664aa8ead9c5680" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/ec21a59414b99501e723b63fd664aa8ead9c5680", - "reference": "ec21a59414b99501e723b63fd664aa8ead9c5680", - "shasum": "" - }, - "require": { - "ext-openssl": "*", - "ext-pcre": "*", - "php": "^5.3.2 || ^7.0" - }, - "require-dev": { - "psr/log": "^1.0", - "symfony/process": "^2.5 || ^3.0" - }, - "suggest": { - "symfony/process": "This is necessary to reliably check whether openssl_x509_parse is vulnerable on older php versions, but can be ignored on PHP 5.5.6+" - }, - "time": "2016-09-04 19:00:06", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Composer\\CaBundle\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", - "keywords": [ - "cabundle", - "cacert", - "certificate", - "ssl", - "tls" - ] - }, - { - "name": "maxmind/web-service-common", - "version": "v0.3.1", - "version_normalized": "0.3.1.0", - "source": { - "type": "git", - "url": "https://github.com/maxmind/web-service-common-php.git", - "reference": "1fe780bcd6a9038b7e36b13fa0aeeeeca4cdb0a4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/1fe780bcd6a9038b7e36b13fa0aeeeeca4cdb0a4", - "reference": "1fe780bcd6a9038b7e36b13fa0aeeeeca4cdb0a4", - "shasum": "" - }, - "require": { - "composer/ca-bundle": "^1.0.3", - "ext-curl": "*", - "ext-json": "*", - "php": ">=5.3" - }, - "require-dev": { - "phpunit/phpunit": "4.*", - "squizlabs/php_codesniffer": "2.*" - }, - "time": "2016-08-18 16:36:52", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "MaxMind\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Gregory Oschwald", - "email": "goschwald@maxmind.com" - } - ], - "description": "Internal MaxMind Web Service API", - "homepage": "https://github.com/maxmind/mm-web-service-api-php" - }, - { - "name": "geoip2/geoip2", - "version": "v2.4.2", - "version_normalized": "2.4.2.0", - "source": { - "type": "git", - "url": "https://github.com/maxmind/GeoIP2-php.git", - "reference": "24b278b0195d7067e930b844c44faf8fae5bdbc7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/24b278b0195d7067e930b844c44faf8fae5bdbc7", - "reference": "24b278b0195d7067e930b844c44faf8fae5bdbc7", - "shasum": "" - }, - "require": { - "maxmind-db/reader": "~1.0", - "maxmind/web-service-common": "~0.3", - "php": ">=5.3.1" - }, - "require-dev": { - "phpunit/phpunit": "4.2.*", - "squizlabs/php_codesniffer": "2.*" - }, - "time": "2016-08-17 20:42:55", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "GeoIp2\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Gregory J. Oschwald", - "email": "goschwald@maxmind.com", - "homepage": "http://www.maxmind.com/" - } - ], - "description": "MaxMind GeoIP2 PHP API", - "homepage": "https://github.com/maxmind/GeoIP2-php", - "keywords": [ - "IP", - "geoip", - "geoip2", - "geolocation", - "maxmind" - ] - }, { "name": "sebastian/environment", "version": "1.3.8", @@ -6015,62 +4752,6 @@ "twitter" ] }, - { - "name": "symfony/options-resolver", - "version": "v3.1.4", - "version_normalized": "3.1.4.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/options-resolver.git", - "reference": "30605874d99af0cde6c41fd39e18546330c38100" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/30605874d99af0cde6c41fd39e18546330c38100", - "reference": "30605874d99af0cde6c41fd39e18546330c38100", - "shasum": "" - }, - "require": { - "php": ">=5.5.9" - }, - "time": "2016-05-12 15:59:27", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.1-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Symfony\\Component\\OptionsResolver\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony OptionsResolver Component", - "homepage": "https://symfony.com", - "keywords": [ - "config", - "configuration", - "options" - ] - }, { "name": "zendframework/zend-http", "version": "2.5.5", @@ -6123,106 +4804,6 @@ "zf2" ] }, - { - "name": "tedivm/fetch", - "version": "v0.6.1", - "version_normalized": "0.6.1.0", - "source": { - "type": "git", - "url": "https://github.com/tedious/Fetch.git", - "reference": "154a84fdfa0d045c2871dd9f8708362fb9ea4acf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/tedious/Fetch/zipball/154a84fdfa0d045c2871dd9f8708362fb9ea4acf", - "reference": "154a84fdfa0d045c2871dd9f8708362fb9ea4acf", - "shasum": "" - }, - "require": { - "ext-imap": "*", - "php": ">=5.3.0" - }, - "require-dev": { - "fabpot/php-cs-fixer": "0.5.*", - "phpunit/phpunit": "4.2.*", - "satooshi/php-coveralls": "dev-master", - "tedivm/dovecottesting": "1.2.3" - }, - "time": "2015-01-08 03:22:20", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-0": { - "Fetch": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Robert Hafner", - "email": "tedivm@tedivm.com" - } - ], - "description": "A PHP IMAP Library", - "homepage": "http://github.com/tedious/Fetch", - "keywords": [ - "email", - "imap", - "pop3" - ] - }, - { - "name": "psr/log", - "version": "1.0.1", - "version_normalized": "1.0.1.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "5277094ed527a1c4477177d102fe4c53551953e0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/5277094ed527a1c4477177d102fe4c53551953e0", - "reference": "5277094ed527a1c4477177d102fe4c53551953e0", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "time": "2016-09-19 16:02:08", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Psr\\Log\\": "Psr/Log/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ] - }, { "name": "nikic/php-parser", "version": "v2.1.1", @@ -6276,122 +4857,6 @@ "php" ] }, - { - "name": "giggsey/libphonenumber-for-php", - "version": "7.6.1", - "version_normalized": "7.6.1.0", - "source": { - "type": "git", - "url": "https://github.com/giggsey/libphonenumber-for-php.git", - "reference": "78b06909657a11d3b915bd348adf982854dbbc29" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/78b06909657a11d3b915bd348adf982854dbbc29", - "reference": "78b06909657a11d3b915bd348adf982854dbbc29", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "giggsey/locale": "^1.0", - "php": ">=5.3.2" - }, - "require-dev": { - "pear/pear-core-minimal": "^1.9", - "pear/pear_exception": "^1.0", - "pear/versioncontrol_git": "dev-master", - "phing/phing": "^2.7", - "phpunit/phpunit": "^4.8|^5.0", - "satooshi/php-coveralls": "^1.0", - "symfony/console": "^2.8|^3.0" - }, - "time": "2016-09-12 19:11:13", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "7.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-0": { - "libphonenumber": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Joshua Gigg", - "email": "giggsey@gmail.com", - "homepage": "http://giggsey.com/" - } - ], - "description": "PHP Port of Google's libphonenumber", - "homepage": "https://github.com/giggsey/libphonenumber-for-php", - "keywords": [ - "geocoding", - "geolocation", - "libphonenumber", - "mobile", - "phonenumber", - "validation" - ] - }, - { - "name": "maxmind-db/reader", - "version": "v1.1.1", - "version_normalized": "1.1.1.0", - "source": { - "type": "git", - "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git", - "reference": "8da3b4fcd439779d4b16bba0a4ba98365f78d788" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/8da3b4fcd439779d4b16bba0a4ba98365f78d788", - "reference": "8da3b4fcd439779d4b16bba0a4ba98365f78d788", - "shasum": "" - }, - "require": { - "php": ">=5.3.1" - }, - "require-dev": { - "phpunit/phpunit": "4.2.*", - "satooshi/php-coveralls": "1.0.*", - "squizlabs/php_codesniffer": "2.*" - }, - "time": "2016-09-15 21:26:50", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-0": { - "MaxMind": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Gregory J. Oschwald", - "email": "goschwald@maxmind.com", - "homepage": "http://www.maxmind.com/" - } - ], - "description": "MaxMind DB Reader API", - "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php", - "keywords": [ - "database", - "geoip", - "geoip2", - "geolocation", - "maxmind" - ] - }, { "name": "intervention/image", "version": "2.3.8", @@ -6514,6 +4979,1252 @@ "upload" ] }, + { + "name": "giggsey/locale", + "version": "1.1.1", + "version_normalized": "1.1.1.0", + "source": { + "type": "git", + "url": "https://github.com/giggsey/Locale.git", + "reference": "8238764fa3f2c5bd8bdf981e2e019401d49229e3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/giggsey/Locale/zipball/8238764fa3f2c5bd8bdf981e2e019401d49229e3", + "reference": "8238764fa3f2c5bd8bdf981e2e019401d49229e3", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "require-dev": { + "pear/pear-core-minimal": "^1.9", + "pear/pear_exception": "^1.0", + "pear/versioncontrol_git": "dev-master", + "phing/phing": "~2.7", + "phpunit/phpunit": "^4.8|^5.0", + "satooshi/php-coveralls": "^1.0", + "symfony/console": "^2.8|^3.0", + "symfony/filesystem": "^2.8|^3.0", + "symfony/finder": "^2.8|^3.0", + "symfony/process": "^2.8|^3.0" + }, + "time": "2016-10-24 20:49:55", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Giggsey\\Locale\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Joshua Gigg", + "email": "giggsey@gmail.com", + "homepage": "http://giggsey.com/" + } + ], + "description": "Locale functions required by libphonenumber-for-php" + }, + { + "name": "giggsey/libphonenumber-for-php", + "version": "7.7.3", + "version_normalized": "7.7.3.0", + "source": { + "type": "git", + "url": "https://github.com/giggsey/libphonenumber-for-php.git", + "reference": "e55e956a7a8211af3dfbd9dd5372ccc5eb79e495" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/e55e956a7a8211af3dfbd9dd5372ccc5eb79e495", + "reference": "e55e956a7a8211af3dfbd9dd5372ccc5eb79e495", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "giggsey/locale": "^1.0", + "php": ">=5.3.2" + }, + "require-dev": { + "pear/pear-core-minimal": "^1.9", + "pear/pear_exception": "^1.0", + "pear/versioncontrol_git": "dev-master", + "phing/phing": "^2.7", + "phpunit/phpunit": "^4.8|^5.0", + "satooshi/php-coveralls": "^1.0", + "symfony/console": "^2.8|^3.0" + }, + "time": "2016-10-26 13:35:16", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-0": { + "libphonenumber": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Joshua Gigg", + "email": "giggsey@gmail.com", + "homepage": "http://giggsey.com/" + } + ], + "description": "PHP Port of Google's libphonenumber", + "homepage": "https://github.com/giggsey/libphonenumber-for-php", + "keywords": [ + "geocoding", + "geolocation", + "libphonenumber", + "mobile", + "phonenumber", + "validation" + ] + }, + { + "name": "symfony/event-dispatcher", + "version": "v3.1.6", + "version_normalized": "3.1.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "28b0832b2553ffb80cabef6a7a812ff1e670c0bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/28b0832b2553ffb80cabef6a7a812ff1e670c0bc", + "reference": "28b0832b2553ffb80cabef6a7a812ff1e670c0bc", + "shasum": "" + }, + "require": { + "php": ">=5.5.9" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~2.8|~3.0", + "symfony/dependency-injection": "~2.8|~3.0", + "symfony/expression-language": "~2.8|~3.0", + "symfony/stopwatch": "~2.8|~3.0" + }, + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" + }, + "time": "2016-10-13 06:28:43", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony EventDispatcher Component", + "homepage": "https://symfony.com" + }, + { + "name": "psr/log", + "version": "1.0.2", + "version_normalized": "1.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", + "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "time": "2016-10-10 12:19:37", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\Log\\": "Psr/Log/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ] + }, + { + "name": "league/flysystem", + "version": "1.0.32", + "version_normalized": "1.0.32.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "1b5c4a0031697f46e779a9d1b309c2e1b24daeab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/1b5c4a0031697f46e779a9d1b309c2e1b24daeab", + "reference": "1b5c4a0031697f46e779a9d1b309c2e1b24daeab", + "shasum": "" + }, + "require": { + "php": ">=5.5.9" + }, + "conflict": { + "league/flysystem-sftp": "<1.0.6" + }, + "require-dev": { + "ext-fileinfo": "*", + "mockery/mockery": "~0.9", + "phpspec/phpspec": "^2.2", + "phpunit/phpunit": "~4.8" + }, + "suggest": { + "ext-fileinfo": "Required for MimeType", + "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", + "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", + "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", + "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", + "league/flysystem-copy": "Allows you to use Copy.com storage", + "league/flysystem-dropbox": "Allows you to use Dropbox storage", + "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", + "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", + "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", + "league/flysystem-webdav": "Allows you to use WebDAV storage", + "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter" + }, + "time": "2016-10-19 20:38:46", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frenky.net" + } + ], + "description": "Filesystem abstraction: Many filesystems, one API.", + "keywords": [ + "Cloud Files", + "WebDAV", + "abstraction", + "aws", + "cloud", + "copy.com", + "dropbox", + "file systems", + "files", + "filesystem", + "filesystems", + "ftp", + "rackspace", + "remote", + "s3", + "sftp", + "storage" + ] + }, + { + "name": "propaganistas/laravel-phone", + "version": "2.8.0", + "version_normalized": "2.8.0.0", + "source": { + "type": "git", + "url": "https://github.com/Propaganistas/Laravel-Phone.git", + "reference": "7741a06965bd93b0a247fd596119674a1940d571" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Propaganistas/Laravel-Phone/zipball/7741a06965bd93b0a247fd596119674a1940d571", + "reference": "7741a06965bd93b0a247fd596119674a1940d571", + "shasum": "" + }, + "require": { + "giggsey/libphonenumber-for-php": "^7.0", + "illuminate/support": "^4.0|^5.0", + "illuminate/validation": "^4.0|^5.0", + "julien-c/iso3166": "^2.0", + "php": ">=5.4.0" + }, + "require-dev": { + "orchestra/testbench": "^2.0|^3.0", + "phpunit/phpunit": "^4.0|^5.0" + }, + "suggest": { + "monarobase/country-list": "Adds a compatible (and fully translated) country list API." + }, + "time": "2016-10-01 10:04:04", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Propaganistas\\LaravelPhone\\": "src/" + }, + "files": [ + "src/helpers.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Propaganistas", + "email": "Propaganistas@users.noreply.github.com" + } + ], + "description": "Adds a phone validator to Laravel and Lumen based on Google's libphonenumber API.", + "keywords": [ + "laravel", + "libphonenumber", + "lumen", + "phone", + "validation" + ] + }, + { + "name": "maximebf/debugbar", + "version": "v1.13.0", + "version_normalized": "1.13.0.0", + "source": { + "type": "git", + "url": "https://github.com/maximebf/php-debugbar.git", + "reference": "5f49a5ed6cfde81d31d89378806670d77462526e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/5f49a5ed6cfde81d31d89378806670d77462526e", + "reference": "5f49a5ed6cfde81d31d89378806670d77462526e", + "shasum": "" + }, + "require": { + "php": ">=5.3.0", + "psr/log": "^1.0", + "symfony/var-dumper": "^2.6|^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0|^5.0" + }, + "suggest": { + "kriswallsmith/assetic": "The best way to manage assets", + "monolog/monolog": "Log using Monolog", + "predis/predis": "Redis storage" + }, + "time": "2016-09-15 14:01:59", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.13-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "DebugBar\\": "src/DebugBar/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Maxime Bouroumeau-Fuseau", + "email": "maxime.bouroumeau@gmail.com", + "homepage": "http://maximebf.com" + }, + { + "name": "Barry vd. Heuvel", + "email": "barryvdh@gmail.com" + } + ], + "description": "Debug bar in the browser for php application", + "homepage": "https://github.com/maximebf/php-debugbar", + "keywords": [ + "debug", + "debugbar" + ] + }, + { + "name": "barryvdh/laravel-debugbar", + "version": "v2.3.0", + "version_normalized": "2.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/barryvdh/laravel-debugbar.git", + "reference": "0c87981df959c7c1943abe227baf607c92f204f9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/0c87981df959c7c1943abe227baf607c92f204f9", + "reference": "0c87981df959c7c1943abe227baf607c92f204f9", + "shasum": "" + }, + "require": { + "illuminate/support": "5.1.*|5.2.*|5.3.*", + "maximebf/debugbar": "~1.13.0", + "php": ">=5.5.9", + "symfony/finder": "~2.7|~3.0" + }, + "time": "2016-09-15 14:05:56", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.3-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Barryvdh\\Debugbar\\": "src/" + }, + "files": [ + "src/helpers.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Barry vd. Heuvel", + "email": "barryvdh@gmail.com" + } + ], + "description": "PHP Debugbar integration for Laravel", + "keywords": [ + "debug", + "debugbar", + "laravel", + "profiler", + "webprofiler" + ] + }, + { + "name": "guzzlehttp/guzzle", + "version": "6.2.2", + "version_normalized": "6.2.2.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "ebf29dee597f02f09f4d5bbecc68230ea9b08f60" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/ebf29dee597f02f09f4d5bbecc68230ea9b08f60", + "reference": "ebf29dee597f02f09f4d5bbecc68230ea9b08f60", + "shasum": "" + }, + "require": { + "guzzlehttp/promises": "^1.0", + "guzzlehttp/psr7": "^1.3.1", + "php": ">=5.5" + }, + "require-dev": { + "ext-curl": "*", + "phpunit/phpunit": "^4.0", + "psr/log": "^1.0" + }, + "time": "2016-10-08 15:01:37", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.2-dev" + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "homepage": "http://guzzlephp.org/", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "rest", + "web service" + ] + }, + { + "name": "symfony/css-selector", + "version": "v3.1.6", + "version_normalized": "3.1.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "ca809c64072e0fe61c1c7fb3c76cdc32265042ac" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/ca809c64072e0fe61c1c7fb3c76cdc32265042ac", + "reference": "ca809c64072e0fe61c1c7fb3c76cdc32265042ac", + "shasum": "" + }, + "require": { + "php": ">=5.5.9" + }, + "time": "2016-09-06 11:02:40", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony CssSelector Component", + "homepage": "https://symfony.com" + }, + { + "name": "maatwebsite/excel", + "version": "2.1.6", + "version_normalized": "2.1.6.0", + "source": { + "type": "git", + "url": "https://github.com/Maatwebsite/Laravel-Excel.git", + "reference": "700eba02f76f2971c81726a4f6a04121c1977e64" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/700eba02f76f2971c81726a4f6a04121c1977e64", + "reference": "700eba02f76f2971c81726a4f6a04121c1977e64", + "shasum": "" + }, + "require": { + "illuminate/cache": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/config": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/filesystem": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*", + "nesbot/carbon": "~1.0", + "php": ">=5.5", + "phpoffice/phpexcel": "1.8.*", + "tijsverkoyen/css-to-inline-styles": "~1.5" + }, + "require-dev": { + "mockery/mockery": "~0.9", + "orchestra/testbench": "3.1.*", + "phpseclib/phpseclib": "~1.0", + "phpunit/phpunit": "~4.0" + }, + "suggest": { + "illuminate/http": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/queue": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/routing": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/view": "5.0.*|5.1.*|5.2.*|5.3.*" + }, + "time": "2016-09-15 21:03:21", + "type": "library", + "installation-source": "dist", + "autoload": { + "classmap": [ + "src/Maatwebsite/Excel" + ], + "psr-0": { + "Maatwebsite\\Excel\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL" + ], + "authors": [ + { + "name": "Maatwebsite.nl", + "email": "patrick@maatwebsite.nl" + } + ], + "description": "An eloquent way of importing and exporting Excel and CSV in Laravel 4 with the power of PHPExcel", + "keywords": [ + "PHPExcel", + "batch", + "csv", + "excel", + "export", + "import", + "laravel" + ] + }, + { + "name": "laravel/socialite", + "version": "v2.0.20", + "version_normalized": "2.0.20.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/socialite.git", + "reference": "aca8de9a93a28a119714e289c8bc599bd81aa88d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/socialite/zipball/aca8de9a93a28a119714e289c8bc599bd81aa88d", + "reference": "aca8de9a93a28a119714e289c8bc599bd81aa88d", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "~5.0|~6.0", + "illuminate/contracts": "~5.0", + "illuminate/http": "~5.0", + "illuminate/support": "~5.0", + "league/oauth1-client": "~1.0", + "php": ">=5.4.0" + }, + "require-dev": { + "mockery/mockery": "~0.9", + "phpunit/phpunit": "~4.0|~5.0" + }, + "time": "2016-11-01 18:49:10", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Laravel\\Socialite\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylorotwell@gmail.com" + } + ], + "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.", + "keywords": [ + "laravel", + "oauth" + ] + }, + { + "name": "symfony/yaml", + "version": "v3.1.6", + "version_normalized": "3.1.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "7ff51b06c6c3d5cc6686df69004a42c69df09e27" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/7ff51b06c6c3d5cc6686df69004a42c69df09e27", + "reference": "7ff51b06c6c3d5cc6686df69004a42c69df09e27", + "shasum": "" + }, + "require": { + "php": ">=5.5.9" + }, + "time": "2016-10-24 18:41:13", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Yaml Component", + "homepage": "https://symfony.com" + }, + { + "name": "phpdocumentor/reflection-docblock", + "version": "3.1.1", + "version_normalized": "3.1.1.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/8331b5efe816ae05461b7ca1e721c01b46bafb3e", + "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e", + "shasum": "" + }, + "require": { + "php": ">=5.5", + "phpdocumentor/reflection-common": "^1.0@dev", + "phpdocumentor/type-resolver": "^0.2.0", + "webmozart/assert": "^1.0" + }, + "require-dev": { + "mockery/mockery": "^0.9.4", + "phpunit/phpunit": "^4.4" + }, + "time": "2016-09-30 07:12:33", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock." + }, + { + "name": "phpspec/phpspec", + "version": "2.5.3", + "version_normalized": "2.5.3.0", + "source": { + "type": "git", + "url": "https://github.com/phpspec/phpspec.git", + "reference": "153ebd99d9b842e0c99a024c41f970d79db46475" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/phpspec/zipball/153ebd99d9b842e0c99a024c41f970d79db46475", + "reference": "153ebd99d9b842e0c99a024c41f970d79db46475", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.0.1", + "ext-tokenizer": "*", + "php": ">=5.3.3", + "phpspec/php-diff": "~1.0.0", + "phpspec/prophecy": "~1.4", + "sebastian/exporter": "~1.0", + "symfony/console": "~2.3|~3.0", + "symfony/event-dispatcher": "~2.1|~3.0", + "symfony/finder": "~2.1|~3.0", + "symfony/process": "^2.6|~3.0", + "symfony/yaml": "~2.1|~3.0" + }, + "require-dev": { + "behat/behat": "^3.0.11", + "ciaranmcnulty/versionbasedtestskipper": "^0.2.1", + "phpunit/phpunit": "~4.4", + "symfony/filesystem": "~2.1|~3.0" + }, + "suggest": { + "phpspec/nyan-formatters": "~1.0 – Adds Nyan formatters" + }, + "time": "2016-09-26 20:28:11", + "bin": [ + "bin/phpspec" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.5.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-0": { + "PhpSpec": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + }, + { + "name": "Marcello Duarte", + "homepage": "http://marcelloduarte.net/" + } + ], + "description": "Specification-oriented BDD framework for PHP 5.3+", + "homepage": "http://phpspec.net/", + "keywords": [ + "BDD", + "SpecBDD", + "TDD", + "spec", + "specification", + "testing", + "tests" + ] + }, + { + "name": "symfony/dom-crawler", + "version": "v3.1.6", + "version_normalized": "3.1.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/dom-crawler.git", + "reference": "59eee3c76eb89f21857798620ebdad7a05ad14f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/59eee3c76eb89f21857798620ebdad7a05ad14f4", + "reference": "59eee3c76eb89f21857798620ebdad7a05ad14f4", + "shasum": "" + }, + "require": { + "php": ">=5.5.9", + "symfony/polyfill-mbstring": "~1.0" + }, + "require-dev": { + "symfony/css-selector": "~2.8|~3.0" + }, + "suggest": { + "symfony/css-selector": "" + }, + "time": "2016-10-18 15:46:07", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Component\\DomCrawler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony DomCrawler Component", + "homepage": "https://symfony.com" + }, + { + "name": "zendframework/zend-stdlib", + "version": "3.1.0", + "version_normalized": "3.1.0.0", + "source": { + "type": "git", + "url": "https://github.com/zendframework/zend-stdlib.git", + "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/debedcfc373a293f9250cc9aa03cf121428c8e78", + "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "athletic/athletic": "~0.1", + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "^2.6.2" + }, + "time": "2016-09-13 14:38:50", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev", + "dev-develop": "3.2-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Zend\\Stdlib\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "homepage": "https://github.com/zendframework/zend-stdlib", + "keywords": [ + "stdlib", + "zf2" + ] + }, + { + "name": "symfony/options-resolver", + "version": "v3.1.6", + "version_normalized": "3.1.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/options-resolver.git", + "reference": "30605874d99af0cde6c41fd39e18546330c38100" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/30605874d99af0cde6c41fd39e18546330c38100", + "reference": "30605874d99af0cde6c41fd39e18546330c38100", + "shasum": "" + }, + "require": { + "php": ">=5.5.9" + }, + "time": "2016-05-12 15:59:27", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Component\\OptionsResolver\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony OptionsResolver Component", + "homepage": "https://symfony.com", + "keywords": [ + "config", + "configuration", + "options" + ] + }, + { + "name": "sly/notification-pusher", + "version": "v2.2.13", + "version_normalized": "2.2.13.0", + "source": { + "type": "git", + "url": "https://github.com/Ph3nol/NotificationPusher.git", + "reference": "3542d8bc8cf622568b85392e83141bfdeee7e6ff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Ph3nol/NotificationPusher/zipball/3542d8bc8cf622568b85392e83141bfdeee7e6ff", + "reference": "3542d8bc8cf622568b85392e83141bfdeee7e6ff", + "shasum": "" + }, + "require": { + "doctrine/inflector": "~1.0", + "php": ">=5.5", + "symfony/console": "~2.3|~3.0", + "symfony/options-resolver": "~2.3|~3.0", + "symfony/process": "~2.3|~3.0", + "zendframework/zendservice-apple-apns": "^1.1.0", + "zendframework/zendservice-google-gcm": "1.*" + }, + "require-dev": { + "atoum/atoum": "dev-master" + }, + "time": "2016-10-10 07:02:47", + "bin": [ + "np" + ], + "type": "standalone", + "installation-source": "dist", + "autoload": { + "psr-0": { + "Sly": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Cédric Dugat", + "email": "cedric@dugat.me" + }, + { + "name": "Contributors", + "homepage": "https://github.com/Ph3nol/NotificationPusher/contributors" + } + ], + "description": "Standalone PHP library for easy devices notifications push.", + "homepage": "https://github.com/Ph3nol/NotificationPusher", + "keywords": [ + "android", + "apns", + "apple", + "gcm", + "iphone", + "message", + "notification", + "push", + "pusher" + ] + }, + { + "name": "php-imap/php-imap", + "version": "2.0.8", + "version_normalized": "2.0.8.0", + "source": { + "type": "git", + "url": "https://github.com/barbushin/php-imap.git", + "reference": "949826c9b109113ec93a5214e85afce31cba000c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/barbushin/php-imap/zipball/949826c9b109113ec93a5214e85afce31cba000c", + "reference": "949826c9b109113ec93a5214e85afce31cba000c", + "shasum": "" + }, + "require": { + "ext-imap": "*", + "php": ">=5.3.0" + }, + "time": "2016-08-13 15:39:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "PhpImap\\": "src/PhpImap/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD 3-Clause" + ], + "authors": [ + { + "name": "Sergey Barbushin", + "email": "barbushin@gmail.com", + "homepage": "http://linkedin.com/in/barbushin" + } + ], + "description": "PHP class to access mailbox by POP3/IMAP/NNTP using IMAP extension", + "homepage": "https://github.com/barbushin/php-imap", + "keywords": [ + "imap", + "mail", + "php" + ] + }, + { + "name": "phpmailer/phpmailer", + "version": "v5.2.16", + "version_normalized": "5.2.16.0", + "source": { + "type": "git", + "url": "https://github.com/PHPMailer/PHPMailer.git", + "reference": "1d85f9ef3ecfc42bbc4f3c70d5e37ca9a65f629a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/1d85f9ef3ecfc42bbc4f3c70d5e37ca9a65f629a", + "reference": "1d85f9ef3ecfc42bbc4f3c70d5e37ca9a65f629a", + "shasum": "" + }, + "require": { + "php": ">=5.0.0" + }, + "require-dev": { + "phpdocumentor/phpdocumentor": "*", + "phpunit/phpunit": "4.7.*" + }, + "suggest": { + "league/oauth2-google": "Needed for Google XOAUTH2 authentication" + }, + "time": "2016-06-06 09:09:37", + "type": "library", + "installation-source": "dist", + "autoload": { + "classmap": [ + "class.phpmailer.php", + "class.phpmaileroauth.php", + "class.phpmaileroauthgoogle.php", + "class.smtp.php", + "class.pop3.php", + "extras/EasyPeasyICS.php", + "extras/ntlm_sasl_client.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1" + ], + "authors": [ + { + "name": "Jim Jagielski", + "email": "jimjag@gmail.com" + }, + { + "name": "Marcus Bointon", + "email": "phpmailer@synchromedia.co.uk" + }, + { + "name": "Andy Prevost", + "email": "codeworxtech@users.sourceforge.net" + }, + { + "name": "Brent R. Matzelle" + } + ], + "description": "PHPMailer is a full-featured email creation and transfer class for PHP" + }, { "name": "unisharp/laravel-ckeditor", "version": "4.5.7", @@ -6569,5 +6280,205 @@ "text", "wysiwyg" ] + }, + { + "name": "torann/geoip", + "version": "1.0.2", + "version_normalized": "1.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/Torann/laravel-geoip.git", + "reference": "ae77f4ad99926fa35c89378f00a6a7295a7246ea" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Torann/laravel-geoip/zipball/ae77f4ad99926fa35c89378f00a6a7295a7246ea", + "reference": "ae77f4ad99926fa35c89378f00a6a7295a7246ea", + "shasum": "" + }, + "require": { + "illuminate/console": "~5.0", + "illuminate/support": "~5.0", + "php": ">=5.5.9" + }, + "require-dev": { + "geoip2/geoip2": "~2.1", + "mockery/mockery": "^0.9.4", + "phpunit/phpunit": "^4.8" + }, + "suggest": { + "geoip2/geoip2": "Required to use the MaxMind database or web service with GeoIP (~2.1).", + "monolog/monolog": "Allows for storing location not found errors to the log" + }, + "time": "2016-10-17 17:29:40", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Torann\\GeoIP\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD 2-Clause" + ], + "authors": [ + { + "name": "Daniel Stainback", + "email": "torann@gmail.com" + } + ], + "description": "Support for multiple GeoIP services.", + "keywords": [ + "IP API", + "geoip", + "geolocation", + "infoDB", + "laravel", + "laravel 5", + "location", + "maxmind" + ] + }, + { + "name": "aws/aws-sdk-php", + "version": "3.19.23", + "version_normalized": "3.19.23.0", + "source": { + "type": "git", + "url": "https://github.com/aws/aws-sdk-php.git", + "reference": "fbfb87734e5d298b40354ac7fb3f95d0f72ad16e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/fbfb87734e5d298b40354ac7fb3f95d0f72ad16e", + "reference": "fbfb87734e5d298b40354ac7fb3f95d0f72ad16e", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "^5.3.1|^6.2.1", + "guzzlehttp/promises": "~1.0", + "guzzlehttp/psr7": "~1.3.1", + "mtdowling/jmespath.php": "~2.2", + "php": ">=5.5" + }, + "require-dev": { + "andrewsville/php-token-reflection": "^1.4", + "aws/aws-php-sns-message-validator": "~1.0", + "behat/behat": "~3.0", + "doctrine/cache": "~1.4", + "ext-dom": "*", + "ext-json": "*", + "ext-openssl": "*", + "ext-pcre": "*", + "ext-simplexml": "*", + "ext-spl": "*", + "nette/neon": "^2.3", + "phpunit/phpunit": "~4.0|~5.0", + "psr/cache": "^1.0" + }, + "suggest": { + "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", + "doctrine/cache": "To use the DoctrineCacheAdapter", + "ext-curl": "To send requests using cURL", + "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages" + }, + "time": "2016-11-03 20:28:28", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Aws\\": "src/" + }, + "files": [ + "src/functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Amazon Web Services", + "homepage": "http://aws.amazon.com" + } + ], + "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project", + "homepage": "http://aws.amazon.com/sdkforphp", + "keywords": [ + "amazon", + "aws", + "cloud", + "dynamodb", + "ec2", + "glacier", + "s3", + "sdk" + ] + }, + { + "name": "tedivm/fetch", + "version": "v0.6.1", + "version_normalized": "0.6.1.0", + "source": { + "type": "git", + "url": "https://github.com/tedious/Fetch.git", + "reference": "154a84fdfa0d045c2871dd9f8708362fb9ea4acf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tedious/Fetch/zipball/154a84fdfa0d045c2871dd9f8708362fb9ea4acf", + "reference": "154a84fdfa0d045c2871dd9f8708362fb9ea4acf", + "shasum": "" + }, + "require": { + "ext-imap": "*", + "php": ">=5.3.0" + }, + "require-dev": { + "fabpot/php-cs-fixer": "0.5.*", + "phpunit/phpunit": "4.2.*", + "satooshi/php-coveralls": "dev-master", + "tedivm/dovecottesting": "1.2.3" + }, + "time": "2015-01-08 03:22:20", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-0": { + "Fetch": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Robert Hafner", + "email": "tedivm@tedivm.com" + } + ], + "description": "A PHP IMAP Library", + "homepage": "http://github.com/tedious/Fetch", + "keywords": [ + "email", + "imap", + "pop3" + ] } ] diff --git a/vendor/geoip2/geoip2/.gitmodules b/vendor/geoip2/geoip2/.gitmodules deleted file mode 100644 index 820339f2e..000000000 --- a/vendor/geoip2/geoip2/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "maxmind-db"] - path = maxmind-db - url = git://github.com/maxmind/MaxMind-DB.git diff --git a/vendor/geoip2/geoip2/CHANGELOG.md b/vendor/geoip2/geoip2/CHANGELOG.md deleted file mode 100644 index fc3aa4096..000000000 --- a/vendor/geoip2/geoip2/CHANGELOG.md +++ /dev/null @@ -1,212 +0,0 @@ -CHANGELOG -========= - -2.4.2 (2016-08-17) ------------------- - -* Updated documentation to clarify what the accuracy radius refers to. -* Upgraded `maxmind/web-service-common` to 0.3.0. This version uses - `composer/ca-bundle` rather than our own CA bundle. Fixes #75. -* Improved PHP documentation generation. - -2.4.1 (2016-06-10) ------------------- - -* Corrected type annotations in documentation. GitHub #66. -* Updated documentation to reflect that the accuracy radius is now included - in City. -* Upgraded web service client, which supports setting a proxy. GitHub #59. - -2.4.0 (2016-04-15) ------------------- - -* Added support for the GeoIP2 Enterprise database. - -2.3.3 (2015-09-24) ------------------- - -* Corrected case on `JsonSerializable` interface. Reported by Axel Etcheverry. - GitHub #56. - -2.3.2 (2015-09-23) ------------------- - -* `JsonSerializable` compatibility interface was moved to `GeoIp2\Compat` - rather than the global namespace to prevent autoloading issues. Reported by - Tomas Buteler. GitHub #54. -* Missing documentation for the `$postal` property was added to the - `GeoIp2\Model\City` class. Fix by Roy Sindre Norangshol. GitHub #51. -* In the Phar distribution, source files for this module no longer have their - documentation stripped, allowing IDE introspection to work properly. - Reported by Dominic Black. GitHub #52. - -2.3.1 (2015-06-30) ------------------- - -* Updated `maxmind/web-service-common` to version with fixes for PHP 5.3 and - 5.4. - -2.3.0 (2015-06-29) ------------------- - -* Support for demographics fields `averageIncome` and `populationDensity` in - the `Location` record, returned by the Insights endpoint. -* The `isAnonymousProxy` and `isSatelliteProvider` properties on - `GeoIP2\Record\Traits` have been deprecated. Please use our [GeoIP2 - Anonymous IP database](https://www.maxmind.com/en/geoip2-anonymous-ip-database) - to determine whether an IP address is used by an anonymizing service. - -2.2.0-beta1 (2015-06-09) ------------------------- - -* Typo fix in documentation. - -2.2.0-alpha2 (2015-06-01) -------------------------- - -* `maxmind-ws/web-service-common` was renamed to `maxmind/web-service-common`. - -2.2.0-alpha1 (2015-05-22) -------------------------- - -* The library no longer uses Guzzle and instead uses curl directly. -* Support for `timeout` and `connectTimout` were added to the `$options` array - passed to the `GeoIp2\WebService\Client` constructor. Pull request by Will - Bradley. GitHub #36. - -2.1.1 (2014-12-03) ------------------- - -* The 2.1.0 Phar builds included a shebang line, causing issues when loading - it as a library. This has been corrected. GitHub #33. - -2.1.0 (2014-10-29) ------------------- - -* Update ApiGen dependency to version that isn't broken on case sensitive - file systems. -* Added support for the GeoIP2 Anonymous IP database. The - `GeoIP2\Database\Reader` class now has an `anonymousIp` method which returns - a `GeoIP2\Model\AnonymousIp` object. -* Boolean attributes like those in the `GeoIP2\Record\Traits` class now return - `false` instead of `null` when they were not true. - -2.0.0 (2014-09-22) ------------------- - -* First production release. - -0.9.0 (2014-09-15) ------------------- - -* IMPORTANT: The deprecated `omni()` and `cityIspOrg()` methods have been - removed from `GeoIp2\WebService\Client`. - -0.8.1 (2014-09-12) ------------------- - -* The check added to the `GeoIP2\Database\Reader` lookup methods in 0.8.0 did - not work with the GeoIP2 City Database Subset by Continent with World - Countries. This has been fixed. Fixes GitHub issue #23. - -0.8.0 (2014-09-10) ------------------- - -* The `GeoIp2\Database\Reader` lookup methods (e.g., `city()`, `isp()`) now - throw a `BadMethodCallException` if they are used with a database that - does not match the method. In particular, doing a `city()` lookup on a - GeoIP2 Country database will result in an exception, and vice versa. -* A `metadata()` method has been added to the `GeoIP2\Database\Reader` class. - This returns a `MaxMind\Db\Reader\Metadata` class with information about the - database. -* The name attribute was missing from the RepresentedCountry class. - -0.7.0 (2014-07-22) ------------------- - -* The web service client API has been updated for the v2.1 release of the web - service. In particular, the `cityIspOrg` and `omni` methods on - `GeoIp2\WebService\Client` should be considered deprecated. The `city` - method now provides all of the data formerly provided by `cityIspOrg`, and - the `omni` method has been replaced by the `insights` method. -* Support was added for GeoIP2 Connection Type, Domain and ISP databases. - - -0.6.3 (2014-05-12) ------------------- - -* With the previous Phar builds, some users received `phar error: invalid url - or non-existent phar` errors. The correct alias is now used for the Phar, - and this should no longer be an issue. - -0.6.2 (2014-05-08) ------------------- - -* The Phar build was broken with Guzzle 3.9.0+. This has been fixed. - -0.6.1 (2014-05-01) ------------------- - -* This API now officially supports HHVM. -* The `maxmind-db/reader` dependency was updated to a version that does not - require BC Math. -* The Composer compatibility autoload rules are now targeted more narrowly. -* A `box.json` file is included to build a Phar package. - -0.6.0 (2014-02-19) ------------------- - -* This API is now licensed under the Apache License, Version 2.0. -* Model and record classes now implement `JsonSerializable`. -* `isset` now works with model and record classes. - -0.5.0 (2013-10-21) ------------------- - -* Renamed $languages constructor parameters to $locales for both the Client - and Reader classes. -* Documentation and code clean-up (Ben Morel). -* Added the interface `GeoIp2\ProviderInterface`, which is implemented by both - `\GeoIp2\Database\Reader` and `\GeoIp2\WebService\Client`. - -0.4.0 (2013-07-16) ------------------- - -* This is the first release with the GeoIP2 database reader. Please see the - `README.md` file and the `\GeoIp2\Database\Reader` class. -* The general exception classes were replaced with specific exception classes - representing particular types of errors, such as an authentication error. - -0.3.0 (2013-07-12) ------------------- - -* In namespaces and class names, "GeoIP2" was renamed to "GeoIp2" to improve - consistency. - -0.2.1 (2013-06-10) ------------------- - -* First official beta release. -* Documentation updates and corrections. - -0.2.0 (2013-05-29) ------------------- - -* `GenericException` was renamed to `GeoIP2Exception`. -* We now support more languages. The new languages are de, es, fr, and pt-BR. -* The REST API now returns a record with data about your account. There is - a new `GeoIP\Records\MaxMind` class for this data. -* The `continentCode` attribute on `Continent` was renamed to `code`. -* Documentation updates. - -0.1.1 (2013-05-14) ------------------- - -* Updated Guzzle version requirement. -* Fixed Composer example in README.md. - - -0.1.0 (2013-05-13) ------------------- - -* Initial release. diff --git a/vendor/geoip2/geoip2/LICENSE b/vendor/geoip2/geoip2/LICENSE deleted file mode 100644 index d64569567..000000000 --- a/vendor/geoip2/geoip2/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/vendor/geoip2/geoip2/README.md b/vendor/geoip2/geoip2/README.md deleted file mode 100644 index af78c36ae..000000000 --- a/vendor/geoip2/geoip2/README.md +++ /dev/null @@ -1,383 +0,0 @@ -# GeoIP2 PHP API # - -## Description ## - -This package provides an API for the GeoIP2 -[web services](http://dev.maxmind.com/geoip/geoip2/web-services) and -[databases](http://dev.maxmind.com/geoip/geoip2/downloadable). The API also -works with the free -[GeoLite2 databases](http://dev.maxmind.com/geoip/geoip2/geolite2/). - -## Install via Composer ## - -We recommend installing this package with [Composer](http://getcomposer.org/). - -### Download Composer ### - -To download Composer, run in the root directory of your project: - -```bash -curl -sS https://getcomposer.org/installer | php -``` - -You should now have the file `composer.phar` in your project directory. - -### Install Dependencies ### - -Run in your project root: - -``` -php composer.phar require geoip2/geoip2:~2.0 -``` - -You should now have the files `composer.json` and `composer.lock` as well as -the directory `vendor` in your project directory. If you use a version control -system, `composer.json` should be added to it. - -### Require Autoloader ### - -After installing the dependencies, you need to require the Composer autoloader -from your code: - -```php -require 'vendor/autoload.php'; -``` - -## Install via Phar ## - -Although we strongly recommend using Composer, we also provide a -[phar archive](http://php.net/manual/en/book.phar.php) containing all of the -dependencies for GeoIP2. Our latest phar archive is available on -[our releases page](https://github.com/maxmind/GeoIP2-php/releases). - -To use the archive, just require it from your script: - -```php -require 'geoip2.phar'; -``` - -## Optional C Extension ## - -The [MaxMind DB API](https://github.com/maxmind/MaxMind-DB-Reader-php) -includes an optional C extension that you may install to dramatically increase -the performance of lookups in GeoIP2 or GeoLite2 databases. To install, please -follow the instructions included with that API. - -The extension has no effect on web-service lookups. - -## IP Geolocation Usage ## - -IP geolocation is inherently imprecise. Locations are often near the center of -the population. Any location provided by a GeoIP2 database or web service -should not be used to identify a particular address or household. - -## Database Reader ## - -### Usage ### - -To use this API, you must create a new `\GeoIp2\Database\Reader` object with -the path to the database file as the first argument to the constructor. You -may then call the method corresponding to the database you are using. - -If the lookup succeeds, the method call will return a model class for the -record in the database. This model in turn contains multiple container -classes for the different parts of the data such as the city in which the -IP address is located. - -If the record is not found, a `\GeoIp2\Exception\AddressNotFoundException` -is thrown. If the database is invalid or corrupt, a -`\MaxMind\Db\InvalidDatabaseException` will be thrown. - -See the API documentation for more details. - -### City Example ### - -```php -city('128.101.101.101'); - -print($record->country->isoCode . "\n"); // 'US' -print($record->country->name . "\n"); // 'United States' -print($record->country->names['zh-CN'] . "\n"); // '美国' - -print($record->mostSpecificSubdivision->name . "\n"); // 'Minnesota' -print($record->mostSpecificSubdivision->isoCode . "\n"); // 'MN' - -print($record->city->name . "\n"); // 'Minneapolis' - -print($record->postal->code . "\n"); // '55455' - -print($record->location->latitude . "\n"); // 44.9733 -print($record->location->longitude . "\n"); // -93.2323 - -``` - -### Anonymous IP Example ### - -```php -anonymousIp('128.101.101.101'); - -if ($record->isAnonymous) { print "anon\n"; } -print($record->ipAddress . "\n"); // '128.101.101.101' - -``` - -### Connection-Type Example ### - -```php -connectionType('128.101.101.101'); - -print($record->connectionType . "\n"); // 'Corporate' -print($record->ipAddress . "\n"); // '128.101.101.101' - -``` - -### Domain Example ### - -```php -domain('128.101.101.101'); - -print($record->domain . "\n"); // 'umn.edu' -print($record->ipAddress . "\n"); // '128.101.101.101' - -``` - -### Enterprise Example ### - -```php -enterprise method to do a lookup in the Enterprise database -$record = $reader->enterprise('128.101.101.101'); - -print($record->country->confidence . "\n"); // 99 -print($record->country->isoCode . "\n"); // 'US' -print($record->country->name . "\n"); // 'United States' -print($record->country->names['zh-CN'] . "\n"); // '美国' - -print($record->mostSpecificSubdivision->confidence . "\n"); // 77 -print($record->mostSpecificSubdivision->name . "\n"); // 'Minnesota' -print($record->mostSpecificSubdivision->isoCode . "\n"); // 'MN' - -print($record->city->confidence . "\n"); // 60 -print($record->city->name . "\n"); // 'Minneapolis' - -print($record->postal->code . "\n"); // '55455' - -print($record->location->accuracy_radius . "\n"); // 50 -print($record->location->latitude . "\n"); // 44.9733 -print($record->location->longitude . "\n"); // -93.2323 - -``` - -### ISP Example ### - -```php -isp('128.101.101.101'); - -print($record->autonomousSystemNumber . "\n"); // 217 -print($record->autonomousSystemOrganization . "\n"); // 'University of Minnesota' -print($record->isp . "\n"); // 'University of Minnesota' -print($record->organization . "\n"); // 'University of Minnesota' - -print($record->ipAddress . "\n"); // '128.101.101.101' - -``` - -## Web Service Client ## - -### Usage ### - -To use this API, you must create a new `\GeoIp2\WebService\Client` -object with your `$userId` and `$licenseKey`, then you call the method -corresponding to a specific end point, passing it the IP address you want to -look up. - -If the request succeeds, the method call will return a model class for the end -point you called. This model in turn contains multiple record classes, each of -which represents part of the data returned by the web service. - -If there is an error, a structured exception is thrown. - -See the API documentation for more details. - -### Example ### - -```php -city('128.101.101.101'); - -print($record->country->isoCode . "\n"); // 'US' -print($record->country->name . "\n"); // 'United States' -print($record->country->names['zh-CN'] . "\n"); // '美国' - -print($record->mostSpecificSubdivision->name . "\n"); // 'Minnesota' -print($record->mostSpecificSubdivision->isoCode . "\n"); // 'MN' - -print($record->city->name . "\n"); // 'Minneapolis' - -print($record->postal->code . "\n"); // '55455' - -print($record->location->latitude . "\n"); // 44.9733 -print($record->location->longitude . "\n"); // -93.2323 - -``` - -## Values to use for Database or Array Keys ## - -**We strongly discourage you from using a value from any `names` property as -a key in a database or array.** - -These names may change between releases. Instead we recommend using one of the -following: - -* `GeoIp2\Record\City` - `$city->geonameId` -* `GeoIp2\Record\Continent` - `$continent->code` or `$continent->geonameId` -* `GeoIp2\Record\Country` and `GeoIp2\Record\RepresentedCountry` - - `$country->isoCode` or `$country->geonameId` -* `GeoIp2\Record\Subdivision` - `$subdivision->isoCode` or `$subdivision->geonameId` - -### What data is returned? ### - -While many of the end points return the same basic records, the attributes -which can be populated vary between end points. In addition, while an end -point may offer a particular piece of data, MaxMind does not always have every -piece of data for any given IP address. - -Because of these factors, it is possible for any end point to return a record -where some or all of the attributes are unpopulated. - -See the -[GeoIP2 Precision web service docs](http://dev.maxmind.com/geoip/geoip2/web-services) -for details on what data each end point may return. - -The only piece of data which is always returned is the `ipAddress` -attribute in the `GeoIp2\Record\Traits` record. - -## Integration with GeoNames ## - -[GeoNames](http://www.geonames.org/) offers web services and downloadable -databases with data on geographical features around the world, including -populated places. They offer both free and paid premium data. Each -feature is unique identified by a `geonameId`, which is an integer. - -Many of the records returned by the GeoIP2 web services and databases -include a `geonameId` property. This is the ID of a geographical feature -(city, region, country, etc.) in the GeoNames database. - -Some of the data that MaxMind provides is also sourced from GeoNames. We -source things like place names, ISO codes, and other similar data from -the GeoNames premium data set. - -## Reporting data problems ## - -If the problem you find is that an IP address is incorrectly mapped, -please -[submit your correction to MaxMind](http://www.maxmind.com/en/correction). - -If you find some other sort of mistake, like an incorrect spelling, -please check the [GeoNames site](http://www.geonames.org/) first. Once -you've searched for a place and found it on the GeoNames map view, there -are a number of links you can use to correct data ("move", "edit", -"alternate names", etc.). Once the correction is part of the GeoNames -data set, it will be automatically incorporated into future MaxMind -releases. - -If you are a paying MaxMind customer and you're not sure where to submit -a correction, please -[contact MaxMind support](http://www.maxmind.com/en/support) for help. - -## Other Support ## - -Please report all issues with this code using the -[GitHub issue tracker](https://github.com/maxmind/GeoIP2-php/issues). - -If you are having an issue with a MaxMind service that is not specific -to the client API, please see -[our support page](http://www.maxmind.com/en/support). - -## Requirements ## - -This code requires PHP 5.3 or greater. Older versions of PHP are not -supported. This library works and is tested with HHVM. - -This library also relies on the [MaxMind DB Reader](https://github.com/maxmind/MaxMind-DB-Reader-php). - -If you are using PHP 5.3 with an autoloader besides Composer, you must load -`JsonSerializable.php` in the `compat` directory. - -## Contributing ## - -Patches and pull requests are encouraged. All code should follow the PSR-2 -style guidelines. Please include unit tests whenever possible. You may obtain -the test data for the maxmind-db folder by running `git submodule update ---init --recursive` or adding `--recursive` to your initial clone, or from -https://github.com/maxmind/MaxMind-DB - -## Versioning ## - -The GeoIP2 PHP API uses [Semantic Versioning](http://semver.org/). - -## Copyright and License ## - -This software is Copyright (c) 2013-2016 by MaxMind, Inc. - -This is free software, licensed under the Apache License, Version 2.0. - diff --git a/vendor/geoip2/geoip2/composer.json b/vendor/geoip2/geoip2/composer.json deleted file mode 100644 index 79aca258e..000000000 --- a/vendor/geoip2/geoip2/composer.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "geoip2/geoip2", - "description": "MaxMind GeoIP2 PHP API", - "keywords": ["geoip", "geoip2", "geolocation", "ip", "maxmind"], - "homepage": "https://github.com/maxmind/GeoIP2-php", - "type": "library", - "license": "Apache-2.0", - "authors": [ - { - "name": "Gregory J. Oschwald", - "email": "goschwald@maxmind.com", - "homepage": "http://www.maxmind.com/" - } - ], - "require": { - "maxmind-db/reader": "~1.0", - "maxmind/web-service-common": "~0.3", - "php": ">=5.3.1" - }, - "require-dev": { - "phpunit/phpunit": "4.2.*", - "squizlabs/php_codesniffer": "2.*" - }, - "autoload": { - "psr-4": { - "GeoIp2\\": "src" - } - } -} diff --git a/vendor/geoip2/geoip2/src/Compat/JsonSerializable.php b/vendor/geoip2/geoip2/src/Compat/JsonSerializable.php deleted file mode 100644 index 4846ce716..000000000 --- a/vendor/geoip2/geoip2/src/Compat/JsonSerializable.php +++ /dev/null @@ -1,27 +0,0 @@ -dbReader = new DbReader($filename); - $this->locales = $locales; - } - - /** - * This method returns a GeoIP2 City model. - * - * @param string $ipAddress IPv4 or IPv6 address as a string. - * - * @return \GeoIp2\Model\City - * - * @throws \GeoIp2\Exception\AddressNotFoundException if the address is - * not in the database. - * @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database - * is corrupt or invalid - */ - public function city($ipAddress) - { - return $this->modelFor('City', 'City', $ipAddress); - } - - /** - * This method returns a GeoIP2 Country model. - * - * @param string $ipAddress IPv4 or IPv6 address as a string. - * - * @return \GeoIp2\Model\Country - * - * @throws \GeoIp2\Exception\AddressNotFoundException if the address is - * not in the database. - * @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database - * is corrupt or invalid - */ - public function country($ipAddress) - { - return $this->modelFor('Country', 'Country', $ipAddress); - } - - /** - * This method returns a GeoIP2 Anonymous IP model. - * - * @param string $ipAddress IPv4 or IPv6 address as a string. - * - * @return \GeoIp2\Model\AnonymousIp - * - * @throws \GeoIp2\Exception\AddressNotFoundException if the address is - * not in the database. - * @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database - * is corrupt or invalid - */ - public function anonymousIp($ipAddress) - { - return $this->flatModelFor( - 'AnonymousIp', - 'GeoIP2-Anonymous-IP', - $ipAddress - ); - } - - /** - * This method returns a GeoIP2 Connection Type model. - * - * @param string $ipAddress IPv4 or IPv6 address as a string. - * - * @return \GeoIp2\Model\ConnectionType - * - * @throws \GeoIp2\Exception\AddressNotFoundException if the address is - * not in the database. - * @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database - * is corrupt or invalid - */ - public function connectionType($ipAddress) - { - return $this->flatModelFor( - 'ConnectionType', - 'GeoIP2-Connection-Type', - $ipAddress - ); - } - - /** - * This method returns a GeoIP2 Domain model. - * - * @param string $ipAddress IPv4 or IPv6 address as a string. - * - * @return \GeoIp2\Model\Domain - * - * @throws \GeoIp2\Exception\AddressNotFoundException if the address is - * not in the database. - * @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database - * is corrupt or invalid - */ - public function domain($ipAddress) - { - return $this->flatModelFor( - 'Domain', - 'GeoIP2-Domain', - $ipAddress - ); - } - - /** - * This method returns a GeoIP2 Enterprise model. - * - * @param string $ipAddress IPv4 or IPv6 address as a string. - * - * @return \GeoIp2\Model\Enterprise - * - * @throws \GeoIp2\Exception\AddressNotFoundException if the address is - * not in the database. - * @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database - * is corrupt or invalid - */ - public function enterprise($ipAddress) - { - return $this->modelFor('Enterprise', 'Enterprise', $ipAddress); - } - - /** - * This method returns a GeoIP2 ISP model. - * - * @param string $ipAddress IPv4 or IPv6 address as a string. - * - * @return \GeoIp2\Model\Isp - * - * @throws \GeoIp2\Exception\AddressNotFoundException if the address is - * not in the database. - * @throws \MaxMind\Db\Reader\InvalidDatabaseException if the database - * is corrupt or invalid - */ - public function isp($ipAddress) - { - return $this->flatModelFor( - 'Isp', - 'GeoIP2-ISP', - $ipAddress - ); - } - - private function modelFor($class, $type, $ipAddress) - { - $record = $this->getRecord($class, $type, $ipAddress); - - $record['traits']['ip_address'] = $ipAddress; - $class = "GeoIp2\\Model\\" . $class; - - return new $class($record, $this->locales); - } - - private function flatModelFor($class, $type, $ipAddress) - { - $record = $this->getRecord($class, $type, $ipAddress); - - $record['ip_address'] = $ipAddress; - $class = "GeoIp2\\Model\\" . $class; - - return new $class($record); - } - - private function getRecord($class, $type, $ipAddress) - { - if (strpos($this->metadata()->databaseType, $type) === false) { - $method = lcfirst($class); - throw new \BadMethodCallException( - "The $method method cannot be used to open a " - . $this->metadata()->databaseType . " database" - ); - } - $record = $this->dbReader->get($ipAddress); - if ($record === null) { - throw new AddressNotFoundException( - "The address $ipAddress is not in the database." - ); - } - return $record; - } - - /** - * @throws \InvalidArgumentException if arguments are passed to the method. - * @throws \BadMethodCallException if the database has been closed. - * @return \MaxMind\Db\Reader\Metadata object for the database. - */ - public function metadata() - { - return $this->dbReader->metadata(); - } - - /** - * Closes the GeoIP2 database and returns the resources to the system. - */ - public function close() - { - $this->dbReader->close(); - } -} diff --git a/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php b/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php deleted file mode 100644 index d5483388b..000000000 --- a/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php +++ /dev/null @@ -1,10 +0,0 @@ -uri = $uri; - parent::__construct($message, $httpStatus, $previous); - } -} diff --git a/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php b/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php deleted file mode 100644 index 6712d73e9..000000000 --- a/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php +++ /dev/null @@ -1,26 +0,0 @@ -error = $error; - parent::__construct($message, $httpStatus, $uri, $previous); - } -} diff --git a/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php b/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php deleted file mode 100644 index 87a6ade41..000000000 --- a/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php +++ /dev/null @@ -1,10 +0,0 @@ -raw = $raw; - } - - /** - * @ignore - */ - protected function get($field) - { - if (isset($this->raw[$field])) { - return $this->raw[$field]; - } else { - if (preg_match('/^is_/', $field)) { - return false; - } else { - return null; - } - } - } - - /** - * @ignore - */ - public function __get($attr) - { - if ($attr != "instance" && property_exists($this, $attr)) { - return $this->$attr; - } - - throw new \RuntimeException("Unknown attribute: $attr"); - } - - /** - * @ignore - */ - public function __isset($attr) - { - return $attr != "instance" && isset($this->$attr); - } - - public function jsonSerialize() - { - return $this->raw; - } -} diff --git a/vendor/geoip2/geoip2/src/Model/AnonymousIp.php b/vendor/geoip2/geoip2/src/Model/AnonymousIp.php deleted file mode 100644 index 90e77069d..000000000 --- a/vendor/geoip2/geoip2/src/Model/AnonymousIp.php +++ /dev/null @@ -1,50 +0,0 @@ -isAnonymous = $this->get('is_anonymous'); - $this->isAnonymousVpn = $this->get('is_anonymous_vpn'); - $this->isHostingProvider = $this->get('is_hosting_provider'); - $this->isPublicProxy = $this->get('is_public_proxy'); - $this->isTorExitNode = $this->get('is_tor_exit_node'); - $this->ipAddress = $this->get('ip_address'); - } -} diff --git a/vendor/geoip2/geoip2/src/Model/City.php b/vendor/geoip2/geoip2/src/Model/City.php deleted file mode 100644 index fb7ddda9a..000000000 --- a/vendor/geoip2/geoip2/src/Model/City.php +++ /dev/null @@ -1,122 +0,0 @@ -city = new \GeoIp2\Record\City($this->get('city'), $locales); - $this->location = new \GeoIp2\Record\Location($this->get('location')); - $this->postal = new \GeoIp2\Record\Postal($this->get('postal')); - - $this->createSubdivisions($raw, $locales); - } - - private function createSubdivisions($raw, $locales) - { - if (!isset($raw['subdivisions'])) { - return; - } - - foreach ($raw['subdivisions'] as $sub) { - array_push( - $this->subdivisions, - new \GeoIp2\Record\Subdivision($sub, $locales) - ); - } - } - - /** - * @ignore - */ - public function __get($attr) - { - if ($attr == 'mostSpecificSubdivision') { - return $this->$attr(); - } else { - return parent::__get($attr); - } - } - - private function mostSpecificSubdivision() - { - return empty($this->subdivisions) ? - new \GeoIp2\Record\Subdivision(array(), $this->locales) : - end($this->subdivisions); - } -} diff --git a/vendor/geoip2/geoip2/src/Model/ConnectionType.php b/vendor/geoip2/geoip2/src/Model/ConnectionType.php deleted file mode 100644 index dccd500a8..000000000 --- a/vendor/geoip2/geoip2/src/Model/ConnectionType.php +++ /dev/null @@ -1,31 +0,0 @@ -connectionType = $this->get('connection_type'); - $this->ipAddress = $this->get('ip_address'); - } -} diff --git a/vendor/geoip2/geoip2/src/Model/Country.php b/vendor/geoip2/geoip2/src/Model/Country.php deleted file mode 100644 index 05cdea7eb..000000000 --- a/vendor/geoip2/geoip2/src/Model/Country.php +++ /dev/null @@ -1,73 +0,0 @@ -continent = new \GeoIp2\Record\Continent( - $this->get('continent'), - $locales - ); - $this->country = new \GeoIp2\Record\Country( - $this->get('country'), - $locales - ); - $this->maxmind = new \GeoIp2\Record\MaxMind($this->get('maxmind')); - $this->registeredCountry = new \GeoIp2\Record\Country( - $this->get('registered_country'), - $locales - ); - $this->representedCountry = new \GeoIp2\Record\RepresentedCountry( - $this->get('represented_country'), - $locales - ); - $this->traits = new \GeoIp2\Record\Traits($this->get('traits')); - - $this->locales = $locales; - } -} diff --git a/vendor/geoip2/geoip2/src/Model/Domain.php b/vendor/geoip2/geoip2/src/Model/Domain.php deleted file mode 100644 index c540644d3..000000000 --- a/vendor/geoip2/geoip2/src/Model/Domain.php +++ /dev/null @@ -1,31 +0,0 @@ -domain = $this->get('domain'); - $this->ipAddress = $this->get('ip_address'); - } -} diff --git a/vendor/geoip2/geoip2/src/Model/Enterprise.php b/vendor/geoip2/geoip2/src/Model/Enterprise.php deleted file mode 100644 index 12d45bd79..000000000 --- a/vendor/geoip2/geoip2/src/Model/Enterprise.php +++ /dev/null @@ -1,56 +0,0 @@ -autonomousSystemNumber = $this->get('autonomous_system_number'); - $this->autonomousSystemOrganization = - $this->get('autonomous_system_organization'); - $this->isp = $this->get('isp'); - $this->organization = $this->get('organization'); - - $this->ipAddress = $this->get('ip_address'); - } -} diff --git a/vendor/geoip2/geoip2/src/ProviderInterface.php b/vendor/geoip2/geoip2/src/ProviderInterface.php deleted file mode 100644 index 6c3992f55..000000000 --- a/vendor/geoip2/geoip2/src/ProviderInterface.php +++ /dev/null @@ -1,20 +0,0 @@ -locales = $locales; - parent::__construct($record); - } - - /** - * @ignore - */ - public function __get($attr) - { - if ($attr == 'name') { - return $this->name(); - } else { - return parent::__get($attr); - } - } - - private function name() - { - foreach ($this->locales as $locale) { - if (isset($this->names[$locale])) { - return $this->names[$locale]; - } - } - } -} diff --git a/vendor/geoip2/geoip2/src/Record/AbstractRecord.php b/vendor/geoip2/geoip2/src/Record/AbstractRecord.php deleted file mode 100644 index 7bb1c5bb8..000000000 --- a/vendor/geoip2/geoip2/src/Record/AbstractRecord.php +++ /dev/null @@ -1,60 +0,0 @@ -record = isset($record) ? $record : array(); - } - - /** - * @ignore - */ - public function __get($attr) - { - // XXX - kind of ugly but greatly reduces boilerplate code - $key = $this->attributeToKey($attr); - - if ($this->__isset($attr)) { - return $this->record[$key]; - } elseif ($this->validAttribute($attr)) { - if (preg_match('/^is_/', $key)) { - return false; - } else { - return null; - } - } else { - throw new \RuntimeException("Unknown attribute: $attr"); - } - } - - public function __isset($attr) - { - return $this->validAttribute($attr) && - isset($this->record[$this->attributeToKey($attr)]); - } - - private function attributeToKey($attr) - { - return strtolower(preg_replace('/([A-Z])/', '_\1', $attr)); - } - - private function validAttribute($attr) - { - return in_array($attr, $this->validAttributes); - } - - public function jsonSerialize() - { - return $this->record; - } -} diff --git a/vendor/geoip2/geoip2/src/Record/City.php b/vendor/geoip2/geoip2/src/Record/City.php deleted file mode 100644 index 9f1560f6e..000000000 --- a/vendor/geoip2/geoip2/src/Record/City.php +++ /dev/null @@ -1,32 +0,0 @@ -military - * but this could expand to include other types in the future. - */ -class RepresentedCountry extends Country -{ - protected $validAttributes = array( - 'confidence', - 'geonameId', - 'isoCode', - 'names', - 'type' - ); -} diff --git a/vendor/geoip2/geoip2/src/Record/Subdivision.php b/vendor/geoip2/geoip2/src/Record/Subdivision.php deleted file mode 100644 index cb5256afe..000000000 --- a/vendor/geoip2/geoip2/src/Record/Subdivision.php +++ /dev/null @@ -1,45 +0,0 @@ -The user type associated with the IP - * address. This can be one of the following values:

    - *
      - *
    • business - *
    • cafe - *
    • cellular - *
    • college - *
    • content_delivery_network - *
    • dialup - *
    • government - *
    • hosting - *
    • library - *
    • military - *
    • residential - *
    • router - *
    • school - *
    • search_engine_spider - *
    • traveler - *
    - *

    - * This attribute is only available from the Insights web service and the - * GeoIP2 Enterprise database. - *

    - */ -class Traits extends AbstractRecord -{ - /** - * @ignore - */ - protected $validAttributes = array( - 'autonomousSystemNumber', - 'autonomousSystemOrganization', - 'connectionType', - 'domain', - 'isAnonymousProxy', - 'isLegitimateProxy', - 'isSatelliteProvider', - 'isp', - 'ipAddress', - 'organization', - 'userType' - ); -} diff --git a/vendor/geoip2/geoip2/src/WebService/Client.php b/vendor/geoip2/geoip2/src/WebService/Client.php deleted file mode 100644 index f42ec81a0..000000000 --- a/vendor/geoip2/geoip2/src/WebService/Client.php +++ /dev/null @@ -1,242 +0,0 @@ -locales = $locales; - - // This is for backwards compatibility. Do not remove except for a - // major version bump. - if (is_string($options)) { - $options = array( 'host' => $options ); - } - - if (!isset($options['host'])) { - $options['host'] = 'geoip.maxmind.com'; - } - - $options['userAgent'] = $this->userAgent(); - - $this->client = new WsClient($userId, $licenseKey, $options); - } - - private function userAgent() - { - return 'GeoIP2-API/' . Client::VERSION; - } - - /** - * This method calls the GeoIP2 Precision: City service. - * - * @param string $ipAddress IPv4 or IPv6 address as a string. If no - * address is provided, the address that the web service is called - * from will be used. - * - * @return \GeoIp2\Model\City - * - * @throws \GeoIp2\Exception\AddressNotFoundException if the address you - * provided is not in our database (e.g., a private address). - * @throws \GeoIp2\Exception\AuthenticationException if there is a problem - * with the user ID or license key that you provided. - * @throws \GeoIp2\Exception\OutOfQueriesException if your account is out - * of queries. - * @throws \GeoIp2\Exception\InvalidRequestException} if your request was - * received by the web service but is invalid for some other reason. - * This may indicate an issue with this API. Please report the error to - * MaxMind. - * @throws \GeoIp2\Exception\HttpException if an unexpected HTTP error - * code or message was returned. This could indicate a problem with the - * connection between your server and the web service or that the web - * service returned an invalid document or 500 error code. - * @throws \GeoIp2\Exception\GeoIp2Exception This serves as the parent - * class to the above exceptions. It will be thrown directly if a 200 - * status code is returned but the body is invalid. - */ - public function city($ipAddress = 'me') - { - return $this->responseFor('city', 'City', $ipAddress); - } - - /** - * This method calls the GeoIP2 Precision: Country service. - * - * @param string $ipAddress IPv4 or IPv6 address as a string. If no - * address is provided, the address that the web service is called - * from will be used. - * - * @return \GeoIp2\Model\Country - * - * @throws \GeoIp2\Exception\AddressNotFoundException if the address you - * provided is not in our database (e.g., a private address). - * @throws \GeoIp2\Exception\AuthenticationException if there is a problem - * with the user ID or license key that you provided. - * @throws \GeoIp2\Exception\OutOfQueriesException if your account is out - * of queries. - * @throws \GeoIp2\Exception\InvalidRequestException} if your request was - * received by the web service but is invalid for some other reason. - * This may indicate an issue with this API. Please report the error to - * MaxMind. - * @throws \GeoIp2\Exception\HttpException if an unexpected HTTP error - * code or message was returned. This could indicate a problem with the - * connection between your server and the web service or that the web - * service returned an invalid document or 500 error code. - * @throws \GeoIp2\Exception\GeoIp2Exception This serves as the parent - * class to the above exceptions. It will be thrown directly if a 200 - * status code is returned but the body is invalid. - */ - public function country($ipAddress = 'me') - { - return $this->responseFor('country', 'Country', $ipAddress); - } - - /** - * This method calls the GeoIP2 Precision: Insights service. - * - * @param string $ipAddress IPv4 or IPv6 address as a string. If no - * address is provided, the address that the web service is called - * from will be used. - * - * @return \GeoIp2\Model\Insights - * - * @throws \GeoIp2\Exception\AddressNotFoundException if the address you - * provided is not in our database (e.g., a private address). - * @throws \GeoIp2\Exception\AuthenticationException if there is a problem - * with the user ID or license key that you provided. - * @throws \GeoIp2\Exception\OutOfQueriesException if your account is out - * of queries. - * @throws \GeoIp2\Exception\InvalidRequestException} if your request was - * received by the web service but is invalid for some other reason. - * This may indicate an issue with this API. Please report the error to - * MaxMind. - * @throws \GeoIp2\Exception\HttpException if an unexpected HTTP error - * code or message was returned. This could indicate a problem with the - * connection between your server and the web service or that the web - * service returned an invalid document or 500 error code. - * @throws \GeoIp2\Exception\GeoIp2Exception This serves as the parent - * class to the above exceptions. It will be thrown directly if a 200 - * status code is returned but the body is invalid. - */ - public function insights($ipAddress = 'me') - { - return $this->responseFor('insights', 'Insights', $ipAddress); - } - - private function responseFor($endpoint, $class, $ipAddress) - { - $path = implode('/', array(self::$basePath, $endpoint, $ipAddress)); - - try { - $body = $this->client->get('GeoIP2 ' . $class, $path); - } catch (\MaxMind\Exception\IpAddressNotFoundException $ex) { - throw new AddressNotFoundException( - $ex->getMessage(), - $ex->getStatusCode(), - $ex - ); - } catch (\MaxMind\Exception\AuthenticationException $ex) { - throw new AuthenticationException( - $ex->getMessage(), - $ex->getStatusCode(), - $ex - ); - } catch (\MaxMind\Exception\InsufficientFundsException $ex) { - throw new OutOfQueriesException( - $ex->getMessage(), - $ex->getStatusCode(), - $ex - ); - } catch (\MaxMind\Exception\InvalidRequestException $ex) { - throw new InvalidRequestException( - $ex->getMessage(), - $ex->getErrorCode(), - $ex->getStatusCode(), - $ex->getUri(), - $ex - ); - } catch (\MaxMind\Exception\HttpException $ex) { - throw new HttpException( - $ex->getMessage(), - $ex->getStatusCode(), - $ex->getUri(), - $ex - ); - } catch (\MaxMind\Exception\WebServiceException $ex) { - throw new GeoIp2Exception( - $ex->getMessage(), - $ex->getCode(), - $ex - ); - } - - $class = "GeoIp2\\Model\\" . $class; - return new $class($body, $this->locales); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/.gitattributes b/vendor/giggsey/libphonenumber-for-php/.gitattributes new file mode 100644 index 000000000..0d8ab0fbd --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/.gitattributes @@ -0,0 +1,8 @@ +Tests/ export-ignore +build/ export-ignore +.travis.yml export-ignore +build.xml export-ignore +phpunit.xml.dist export-ignore +libphonenumber-for-php.spec export-ignore + +* text=auto diff --git a/vendor/giggsey/libphonenumber-for-php/.travis.yml b/vendor/giggsey/libphonenumber-for-php/.travis.yml deleted file mode 100644 index ed6b2304c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/.travis.yml +++ /dev/null @@ -1,37 +0,0 @@ -sudo: false - -language: php - -matrix: - allow_failures: - - php: hhvm - - php: nightly - -env: - matrix: - - PREFER_LOWEST="--prefer-lowest" - - PREFER_LOWEST="" - -php: - - 5.3 - - 5.4 - - 5.5 - - 5.6 - - hhvm - - 7 - - nightly - -before_script: - - composer update --no-interaction $PREFER_LOWEST - - mkdir -p build/logs - -script: - - ./vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml - -after_script: - - php vendor/bin/coveralls -v --exclude-no-stmt - - wget https://scrutinizer-ci.com/ocular.phar - - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml - -notifications: - irc: "irc.appliedirc.com#applied" diff --git a/vendor/giggsey/libphonenumber-for-php/METADATA-VERSION.txt b/vendor/giggsey/libphonenumber-for-php/METADATA-VERSION.txt index 70b5e071c..e0ac18533 100644 --- a/vendor/giggsey/libphonenumber-for-php/METADATA-VERSION.txt +++ b/vendor/giggsey/libphonenumber-for-php/METADATA-VERSION.txt @@ -2,4 +2,4 @@ # It can be a commit, branch or tag of the https://github.com/googlei18n/libphonenumber project # # For more information, look at the phing tasks in build.xml -libphonenumber-7.6.1 +libphonenumber-7.7.3 diff --git a/vendor/giggsey/libphonenumber-for-php/README.md b/vendor/giggsey/libphonenumber-for-php/README.md index 1b47726ee..590cc30a8 100644 --- a/vendor/giggsey/libphonenumber-for-php/README.md +++ b/vendor/giggsey/libphonenumber-for-php/README.md @@ -21,7 +21,7 @@ A PHP library for parsing, formatting, storing and validating international phon ## Installation -PHP versions 5.3 up to PHP 7 are currently supported. HHVM is not yet supported. +PHP versions 5.3 up to PHP 7 are currently supported. HHVM is also supported. The PECL [mbstring](http://php.net/mbstring) extension is required. @@ -35,6 +35,10 @@ You can also use any other [PSR-0](https://github.com/php-fig/fig-standards/blob If you do not use composer, ensure that you also load any dependencies that this project has, such as [giggsey/locale](https://github.com/giggsey/Locale). +## Documentation + +Documentation can be found in the [docs](docs/) directory. + ## Versioning This library will try to follow the same version numbers as Google. There could be additional releases where needed to fix critical issues that can not wait until the next release from Google. diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/bootstrap.php b/vendor/giggsey/libphonenumber-for-php/Tests/bootstrap.php deleted file mode 100644 index 15815a4df..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/bootstrap.php +++ /dev/null @@ -1,4 +0,0 @@ -phoneUtil = PhoneNumberUtil::getInstance(); - } - - public function testNullException() - { - try { - $this->phoneUtil->parse(null, null); - } catch (\Exception $e) { - $this->assertEquals("libphonenumber\\NumberParseException", get_class($e)); - $this->assertEquals("The phone number supplied was null.", $e->getMessage()); - - $this->assertEquals("Error type: 1. The phone number supplied was null.", (string)$e); - } - } - - public function testTooShortNumber() - { - try { - $this->phoneUtil->parse("+441", "GB"); - } catch (\Exception $e) { - $this->assertEquals("libphonenumber\\NumberParseException", get_class($e)); - $this->assertEquals("The string supplied is too short to be a phone number.", $e->getMessage()); - $this->assertEquals(3, $e->getCode()); - - $this->assertEquals("Error type: 3. The string supplied is too short to be a phone number.", (string)$e); - } - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue106Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue106Test.php deleted file mode 100644 index 90d1ffa57..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue106Test.php +++ /dev/null @@ -1,39 +0,0 @@ -setCountryCode(886)->setNationalNumber(223113731); - } - - public function setUp() - { - PhoneNumberOfflineGeocoder::resetInstance(); - $this->geocoder = PhoneNumberOfflineGeocoder::getInstance(); - } - - public function testGeocoderForZh() - { - $this->assertEquals("Taipei", $this->geocoder->getDescriptionForNumber(self::$TW_Number1, "en")); - - $this->assertEquals( - pack('H*', 'e58fb0') . pack('H*', 'e58c97'), - $this->geocoder->getDescriptionForNumber(self::$TW_Number1, "zh_CN") - ); - - $this->assertEquals( - pack('H*', 'e887ba') . pack('H*', 'e58c97'), - $this->geocoder->getDescriptionForNumber(self::$TW_Number1, "zh_TW") - ); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue14Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue14Test.php deleted file mode 100644 index 4f0c10fe9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue14Test.php +++ /dev/null @@ -1,29 +0,0 @@ -phoneUtil = PhoneNumberUtil::getInstance(); - } - - public function testKWMobileNumber() - { - $number = "51440519"; - $phoneNumber = $this->phoneUtil->parse($number, "KW"); - - $this->assertTrue($this->phoneUtil->isValidNumber($phoneNumber)); - $this->assertEquals(PhoneNumberType::MOBILE, $this->phoneUtil->getNumberType($phoneNumber)); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue17Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue17Test.php deleted file mode 100644 index e412e650e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue17Test.php +++ /dev/null @@ -1,36 +0,0 @@ -phoneUtil = PhoneNumberUtil::getInstance(); - $this->geocoder = PhoneNumberOfflineGeocoder::getInstance(); - } - - public function testIsleOfManLocale() - { - $number = "447624806000"; - - $phoneNumber = $this->phoneUtil->parse($number, 'GB'); - - $this->assertEquals("Isle of Man", $this->geocoder->getDescriptionForNumber($phoneNumber, 'en')); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue21Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue21Test.php deleted file mode 100644 index 876646d8a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue21Test.php +++ /dev/null @@ -1,49 +0,0 @@ -phoneUtil = PhoneNumberUtil::getInstance(); - } - - public function testFloatNumber() - { - $number = "0358112345678987"; - $phoneNumber = $this->phoneUtil->parse($number, "DE"); - - $this->assertTrue($this->phoneUtil->isValidNumber($phoneNumber)); - - $this->assertEquals('+49358112345678987', $this->phoneUtil->format($phoneNumber, PhoneNumberFormat::E164)); - $this->assertEquals('+49 3581 12345678987', $this->phoneUtil->format($phoneNumber, PhoneNumberFormat::INTERNATIONAL)); - $this->assertEquals('03581 12345678987', $this->phoneUtil->format($phoneNumber, PhoneNumberFormat::NATIONAL)); - - - $this->assertEquals('011 49 3581 12345678987', $this->phoneUtil->formatOutOfCountryCallingNumber($phoneNumber, 'US')); - $this->assertEquals('00 49 3581 12345678987', $this->phoneUtil->formatOutOfCountryCallingNumber($phoneNumber, 'CH')); - } - - public function testLongerNumber() - { - $number = "12345678901234567"; - $phoneNumber = $this->phoneUtil->parse($number, "DE"); - - $this->assertEquals('+4912345678901234567', $this->phoneUtil->format($phoneNumber, PhoneNumberFormat::E164)); - $this->assertEquals('+49 12345678901234567', $this->phoneUtil->format($phoneNumber, PhoneNumberFormat::INTERNATIONAL)); - $this->assertEquals('12345678901234567', $this->phoneUtil->format($phoneNumber, PhoneNumberFormat::NATIONAL)); - - - $this->assertEquals('011 49 12345678901234567', $this->phoneUtil->formatOutOfCountryCallingNumber($phoneNumber, 'US')); - $this->assertEquals('00 49 12345678901234567', $this->phoneUtil->formatOutOfCountryCallingNumber($phoneNumber, 'CH')); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue23Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue23Test.php deleted file mode 100644 index 55ab60d99..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue23Test.php +++ /dev/null @@ -1,38 +0,0 @@ -phoneUtil = PhoneNumberUtil::getInstance(); - - $this->geocoder = PhoneNumberOfflineGeocoder::getInstance(); - } - - public function testTKGeoLocation() - { - $number = '+6903010'; - - $phoneNumber = $this->phoneUtil->parse($number, RegionCode::ZZ); - - $this->assertEquals('TK', $this->phoneUtil->getRegionCodeForNumber($phoneNumber)); - - $this->assertEquals('Tokelau', $this->geocoder->getDescriptionForNumber($phoneNumber, 'en')); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue34Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue34Test.php deleted file mode 100644 index 6749e71cd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue34Test.php +++ /dev/null @@ -1,27 +0,0 @@ -phoneUtil = PhoneNumberUtil::getInstance(); - } - - public function testIsValidNumberForRegion() - { - $number = "+33 6 76 83 51 85"; - $region = "DE"; - $phoneNumber = $this->phoneUtil->parse($number, $region); - - $this->assertFalse($this->phoneUtil->isValidNumberForRegion($phoneNumber, "DE")); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue35Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue35Test.php deleted file mode 100644 index 32a9f5de7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue35Test.php +++ /dev/null @@ -1,50 +0,0 @@ -phoneUtil = PhoneNumberUtil::getInstance(); - } - - public function testSerializingPhoneNumber() - { - $number = "+441174900000"; - $region = "GB"; - $phoneNumber = $this->phoneUtil->parse($number, $region); - - $serializedString = serialize($phoneNumber); - - $phoneObject2 = unserialize($serializedString); - - $this->assertTrue($phoneObject2->equals($phoneNumber)); - } - - public function testSerializingPhoneNumber2() - { - $phoneNumber = new PhoneNumber(); - $phoneNumber->setCountryCode(1); - $phoneNumber->setNationalNumber(1); - $phoneNumber->setExtension(1); - $phoneNumber->setItalianLeadingZero(1); - $phoneNumber->setNumberOfLeadingZeros(1); - $phoneNumber->setRawInput(1); - $phoneNumber->setCountryCodeSource(1); - $phoneNumber->setPreferredDomesticCarrierCode(1); - - $serializedString = serialize($phoneNumber); - $phoneObject2 = unserialize($serializedString); - - $this->assertTrue($phoneObject2->equals($phoneNumber)); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue36Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue36Test.php deleted file mode 100644 index 19912f3c0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue36Test.php +++ /dev/null @@ -1,36 +0,0 @@ -phoneUtil = PhoneNumberUtil::getInstance(); - $this->geocoder = PhoneNumberOfflineGeocoder::getInstance(); - } - - public function testIsleOfManLocale() - { - $number = "447797752305"; - - $phoneNumber = $this->phoneUtil->parse($number, 'GB'); - - $this->assertEquals("Jersey", $this->geocoder->getDescriptionForNumber($phoneNumber, 'en')); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue3Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue3Test.php deleted file mode 100644 index 805aa7e17..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue3Test.php +++ /dev/null @@ -1,28 +0,0 @@ -phoneNumberUtil = PhoneNumberUtil::getInstance(); - } - - public function testParseUSNumber() - { - $number = $this->phoneNumberUtil->parse('011543549480042', 'US'); - - $this->assertEquals("+543549480042", $this->phoneNumberUtil->format($number, PhoneNumberFormat::E164)); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue44Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue44Test.php deleted file mode 100644 index d875a701d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue44Test.php +++ /dev/null @@ -1,77 +0,0 @@ -phoneUtil = PhoneNumberUtil::getInstance(); - - $this->geocoder = PhoneNumberOfflineGeocoder::getInstance(); - } - - public function testMemoryUsageOfGeoLocationWithNoResult() - { - $number = $this->phoneUtil->parse("86-157-9662-1289", "CN"); - - $startMemory = memory_get_usage(); - $location = $this->geocoder->getDescriptionForNumber($number, "en"); - $endMemory = memory_get_usage(); - - $this->assertEquals("China", $location); - - $memoryUsed = $endMemory - $startMemory; - - $this->assertLessThan(5000000, $memoryUsed, "Memory usage should be below 5MB"); - } - - public function testMemoryUsageOfGeoLocationWithResult() - { - $number = $this->phoneUtil->parse("86-131-2270-1411", "CN"); - - $startMemory = memory_get_usage(); - $location = $this->geocoder->getDescriptionForNumber($number, "en"); - $endMemory = memory_get_usage(); - - $this->assertEquals("Shanghai", $location); - - $memoryUsed = $endMemory - $startMemory; - - $this->assertLessThan(5000000, $memoryUsed, "Memory usage should be below 5MB"); - } - - public function testChineseGeolocation() - { - $number = $this->phoneUtil->parse("+86 150 3657 7264", "CN"); - $location = $this->geocoder->getDescriptionForNumber($number, "en"); - - $this->assertEquals("Luoyang, Henan", $location); - } - - public function testChineseCarrierLookup() - { - $number = $this->phoneUtil->parse("+86 150 3657 7264", "CN"); - - $carrier = PhoneNumberToCarrierMapper::getInstance(); - - $location = $carrier->getNameForNumber($number, "en"); - - $this->assertEquals("China Mobile", $location); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue4Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue4Test.php deleted file mode 100644 index 42fa56cda..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue4Test.php +++ /dev/null @@ -1,28 +0,0 @@ -phoneNumberUtil = PhoneNumberUtil::getInstance(); - } - - public function testParseUSNumber() - { - $number = $this->phoneNumberUtil->parse('0351-152-303-473', 'AR'); - - $this->assertEquals("+5493512303473", $this->phoneNumberUtil->format($number, PhoneNumberFormat::E164)); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue64Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue64Test.php deleted file mode 100644 index 18d2c9cc1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue64Test.php +++ /dev/null @@ -1,31 +0,0 @@ -assertTrue($sortNumberUtil->isEmergencyNumber('999', 'GB')); - } - - public function testIssue64WithoutPhoneNumberUtilgetInstance() - { - PhoneNumberUtil::getInstance(); - - $sortNumberUtil = ShortNumberInfo::getInstance(); - $this->assertTrue($sortNumberUtil->isEmergencyNumber('999', 'GB')); - } - - public function testIssue64WithoutPhoneNumberUtilresetInstance() - { - PhoneNumberUtil::resetInstance(); - - $sortNumberUtil = ShortNumberInfo::getInstance(); - $this->assertTrue($sortNumberUtil->isEmergencyNumber('999', 'GB')); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue68Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue68Test.php deleted file mode 100644 index 2437866ad..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue68Test.php +++ /dev/null @@ -1,39 +0,0 @@ -getExampleNumber('NE'); - - $shortNumberInfo = ShortNumberInfo::getInstance(); - - $this->assertFalse($shortNumberInfo->isPossibleShortNumber($exampleNumber)); - } - - public function testShortNumberInfoIsPossibleShortNumberForRegionWithRegionMissingFromCodeSet() - { - $exampleNumber = $this->getExampleNumber('NE'); - - $shortNumberInfo = ShortNumberInfo::getInstance(); - - $this->assertFalse($shortNumberInfo->isPossibleShortNumberForRegion($exampleNumber, 'NE')); - } - - private function getExampleNumber($region) - { - $phoneUtil = PhoneNumberUtil::getInstance(); - - $exampleNumber = $phoneUtil->getExampleNumber($region); - - // Reset PhoneNumberUtil just to make sure that doesn't interfere - PhoneNumberUtil::resetInstance(); - - return $exampleNumber; - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue76Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue76Test.php deleted file mode 100644 index ef23e0ff3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/Issue76Test.php +++ /dev/null @@ -1,21 +0,0 @@ -parse($number, $region); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/LocaleTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/LocaleTest.php deleted file mode 100644 index b19d515e1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/LocaleTest.php +++ /dev/null @@ -1,313 +0,0 @@ -phoneUtil = PhoneNumberUtil::getInstance(); - $this->geocoder = PhoneNumberOfflineGeocoder::getInstance(); - } - - /** - * @dataProvider localeList - * @param string $regionCode - * @param string $countryName - */ - public function testLocales($regionCode, $countryName) - { - if (!in_array($regionCode, $this->phoneUtil->getSupportedRegions())) { - $this->markTestSkipped("{$regionCode} is not supported"); - } - - $phoneNumber = $this->phoneUtil->getExampleNumberForType($regionCode, PhoneNumberType::FIXED_LINE_OR_MOBILE); - - $this->assertContains($regionCode, CountryCodeToRegionCodeMap::$countryCodeToRegionCodeMap[$phoneNumber->getCountryCode()]); - - $this->assertEquals($regionCode, $this->phoneUtil->getRegionCodeForNumber($phoneNumber)); - - $this->assertEquals($countryName, $this->geocoder->getDescriptionForValidNumber($phoneNumber, 'en', 'ZZ'), "Checking {$phoneNumber} is part of {$countryName}"); - } - - public function localeList() - { - $codes = $this->getCountryCodes(); - - $return = array(); - foreach ($codes as $code => $country) { - $return[] = array($code, $country); - } - - return $return; - } - - /** - * This list was got from the Internet, and altered slightly to make the tests pass - * - * @see https://gist.github.com/vxnick/380904 - * @return array - */ - private function getCountryCodes() - { - return array( - 'AF' => 'Afghanistan', - 'AX' => 'Åland Islands', - 'AL' => 'Albania', - 'DZ' => 'Algeria', - 'AS' => 'American Samoa', - 'AD' => 'Andorra', - 'AO' => 'Angola', - 'AI' => 'Anguilla', - 'AG' => 'Antigua & Barbuda', - 'AR' => 'Argentina', - 'AU' => 'Australia', - 'AT' => 'Austria', - 'AZ' => 'Azerbaijan', - 'BS' => 'Bahamas', - 'BH' => 'Bahrain', - 'BD' => 'Bangladesh', - 'BB' => 'Barbados', - 'BY' => 'Belarus', - 'BE' => 'Belgium', - 'BZ' => 'Belize', - 'BJ' => 'Benin', - 'BM' => 'Bermuda', - 'BT' => 'Bhutan', - 'BO' => 'Bolivia', - 'BA' => 'Bosnia & Herzegovina', - 'BW' => 'Botswana', - 'BR' => 'Brazil', - 'IO' => 'British Indian Ocean Territory', - 'BN' => 'Brunei', - 'BG' => 'Bulgaria', - 'BF' => 'Burkina Faso', - 'BI' => 'Burundi', - 'KH' => 'Cambodia', - 'CM' => 'Cameroon', - 'CA' => 'Canada', - 'CV' => 'Cape Verde', - 'KY' => 'Cayman Islands', - 'CF' => 'Central African Republic', - 'TD' => 'Chad', - 'CL' => 'Chile', - 'CN' => 'China', - 'CX' => 'Christmas Island', - 'CC' => 'Cocos (Keeling) Islands', - 'CO' => 'Colombia', - 'KM' => 'Comoros', - 'CG' => 'Congo - Brazzaville', - 'CD' => 'Congo - Kinshasa', - 'CK' => 'Cook Islands', - 'CR' => 'Costa Rica', - 'CI' => 'Côte d’Ivoire', - 'HR' => 'Croatia', - 'CU' => 'Cuba', - 'CY' => 'Cyprus', - 'CZ' => 'Czech Republic', - 'DK' => 'Denmark', - 'DJ' => 'Djibouti', - 'DM' => 'Dominica', - 'DO' => 'Dominican Republic', - 'EC' => 'Ecuador', - 'EG' => 'Egypt', - 'SV' => 'El Salvador', - 'GQ' => 'Equatorial Guinea', - 'ER' => 'Eritrea', - 'EE' => 'Estonia', - 'ET' => 'Ethiopia', - 'FK' => 'Falkland Islands', - 'FO' => 'Faroe Islands', - 'FJ' => 'Fiji', - 'FI' => 'Finland', - 'FR' => 'France', - 'GF' => 'French Guiana', - 'PF' => 'French Polynesia', - 'GA' => 'Gabon', - 'GM' => 'Gambia', - 'GE' => 'Georgia', - 'DE' => 'Germany', - 'GH' => 'Ghana', - 'GI' => 'Gibraltar', - 'GR' => 'Greece', - 'GL' => 'Greenland', - 'GD' => 'Grenada', - 'GP' => 'Guadeloupe', - 'GU' => 'Guam', - 'GT' => 'Guatemala', - 'GG' => 'Guernsey', - 'GN' => 'Guinea', - 'GW' => 'Guinea-Bissau', - 'GY' => 'Guyana', - 'HT' => 'Haiti', - 'HN' => 'Honduras', - 'HK' => 'Hong Kong SAR China', - 'HU' => 'Hungary', - 'IS' => 'Iceland', - 'IN' => 'India', - 'ID' => 'Indonesia', - 'IR' => 'Iran', - 'IQ' => 'Iraq', - 'IE' => 'Ireland', - 'IM' => 'Isle of Man', - 'IL' => 'Israel', - 'IT' => 'Italy', - 'JM' => 'Jamaica', - 'JP' => 'Japan', - 'JE' => 'Jersey', - 'JO' => 'Jordan', - 'KZ' => 'Kazakhstan', - 'KE' => 'Kenya', - 'KI' => 'Kiribati', - 'KP' => 'North Korea', - 'KR' => 'South Korea', - 'KW' => 'Kuwait', - 'KG' => 'Kyrgyzstan', - 'LA' => 'Laos', - 'LV' => 'Latvia', - 'LB' => 'Lebanon', - 'LS' => 'Lesotho', - 'LR' => 'Liberia', - 'LY' => 'Libya', - 'LI' => 'Liechtenstein', - 'LT' => 'Lithuania', - 'LU' => 'Luxembourg', - 'MO' => 'Macau SAR China', - 'MK' => 'Macedonia', - 'MG' => 'Madagascar', - 'MW' => 'Malawi', - 'MY' => 'Malaysia', - 'MV' => 'Maldives', - 'ML' => 'Mali', - 'MT' => 'Malta', - 'MH' => 'Marshall Islands', - 'MQ' => 'Martinique', - 'MR' => 'Mauritania', - 'MU' => 'Mauritius', - 'YT' => 'Mayotte', - 'MX' => 'Mexico', - 'FM' => 'Micronesia', - 'MD' => 'Moldova', - 'MC' => 'Monaco', - 'MN' => 'Mongolia', - 'ME' => 'Montenegro', - 'MS' => 'Montserrat', - 'MA' => 'Morocco', - 'MZ' => 'Mozambique', - 'MM' => 'Myanmar (Burma)', - 'NA' => 'Namibia', - 'NR' => 'Nauru', - 'NP' => 'Nepal', - 'NL' => 'Netherlands', - 'NC' => 'New Caledonia', - 'NZ' => 'New Zealand', - 'NI' => 'Nicaragua', - 'NE' => 'Niger', - 'NG' => 'Nigeria', - 'NU' => 'Niue', - 'NF' => 'Norfolk Island', - 'MP' => 'Northern Mariana Islands', - 'NO' => 'Norway', - 'OM' => 'Oman', - 'PK' => 'Pakistan', - 'PW' => 'Palau', - 'PS' => 'Palestinian Territories', - 'PA' => 'Panama', - 'PG' => 'Papua New Guinea', - 'PY' => 'Paraguay', - 'PE' => 'Peru', - 'PH' => 'Philippines', - 'PL' => 'Poland', - 'PT' => 'Portugal', - 'PR' => 'Puerto Rico', - 'QA' => 'Qatar', - 'RE' => 'Réunion', - 'RO' => 'Romania', - 'RU' => 'Russia', - 'RW' => 'Rwanda', - 'SH' => 'St. Helena', - 'KN' => 'St. Kitts & Nevis', - 'LC' => 'St. Lucia', - 'PM' => 'St. Pierre & Miquelon', - 'VC' => 'St. Vincent & Grenadines', - 'WS' => 'Samoa', - 'SM' => 'San Marino', - 'ST' => 'São Tomé & Príncipe', - 'SA' => 'Saudi Arabia', - 'SN' => 'Senegal', - 'RS' => 'Serbia', - 'SC' => 'Seychelles', - 'SL' => 'Sierra Leone', - 'SG' => 'Singapore', - 'SK' => 'Slovakia', - 'SI' => 'Slovenia', - 'SB' => 'Solomon Islands', - 'SO' => 'Somalia', - 'ZA' => 'South Africa', - 'ES' => 'Spain', - 'LK' => 'Sri Lanka', - 'SD' => 'Sudan', - 'SR' => 'Suriname', - 'SJ' => 'Svalbard & Jan Mayen', - 'SZ' => 'Swaziland', - 'SE' => 'Sweden', - 'CH' => 'Switzerland', - 'SY' => 'Syria', - 'TW' => 'Taiwan', - 'TJ' => 'Tajikistan', - 'TZ' => 'Tanzania', - 'TH' => 'Thailand', - 'TL' => 'Timor-Leste', - 'TG' => 'Togo', - 'TK' => 'Tokelau', - 'TO' => 'Tonga', - 'TT' => 'Trinidad & Tobago', - 'TN' => 'Tunisia', - 'TR' => 'Turkey', - 'TM' => 'Turkmenistan', - 'TC' => 'Turks & Caicos Islands', - 'TV' => 'Tuvalu', - 'UG' => 'Uganda', - 'UA' => 'Ukraine', - 'AE' => 'United Arab Emirates', - 'GB' => 'United Kingdom', - 'US' => 'United States', - 'UY' => 'Uruguay', - 'UZ' => 'Uzbekistan', - 'VU' => 'Vanuatu', - 'VE' => 'Venezuela', - 'VN' => 'Vietnam', - 'VG' => 'British Virgin Islands', - 'VI' => 'U.S. Virgin Islands', - 'WF' => 'Wallis & Futuna', - 'EH' => 'Western Sahara', - 'YE' => 'Yemen', - 'ZM' => 'Zambia', - 'ZW' => 'Zimbabwe', - ); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/PHP7Test.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/PHP7Test.php deleted file mode 100644 index 6da0f8435..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/PHP7Test.php +++ /dev/null @@ -1,51 +0,0 @@ -phoneUtil = PhoneNumberUtil::getInstance(); - } - - /** - * @param $number - * @dataProvider validPolishNumbers - */ - public function testValidPolishNumbers($number) - { - $phoneNumber = $this->phoneUtil->parse($number, 'PL'); - - $this->assertTrue($this->phoneUtil->isValidNumber($phoneNumber)); - $this->assertEquals($number, $this->phoneUtil->format($phoneNumber, PhoneNumberFormat::NATIONAL)); - } - - public function validPolishNumbers() - { - return array( - array('22 222 22 22'), - array('33 222 22 22'), - array('46 222 22 22'), - array('61 222 22 22'), - array('62 222 22 22'), - array('642 222 222'), - array('65 222 22 22'), - array('512 345 678'), - array('800 123 456'), - array('700 000 000'), - array('801 234 567'), - array('91 000 00 00'), - ); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/UKNumbersTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/UKNumbersTest.php deleted file mode 100644 index da09a33f3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/Issues/UKNumbersTest.php +++ /dev/null @@ -1,188 +0,0 @@ -phoneUtil = PhoneNumberUtil::getInstance( - self::META_DATA_FILE_PREFIX, - CountryCodeToRegionCodeMap::$countryCodeToRegionCodeMap - ); - ; - } - - public function testMobileNumber() - { - $number = '07987458147'; - $phoneObject = $this->phoneUtil->parse($number, 'GB'); - - $valid = $this->phoneUtil->isValidNumber($phoneObject); - $this->assertTrue($valid, "Checking phone number is valid"); - - $type = $this->phoneUtil->getNumberType($phoneObject); - $this->assertEquals(PhoneNumberType::MOBILE, $type, "Checking phone number is detected as mobile"); - - $formattedE164 = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::E164); - $this->assertEquals("+447987458147", $formattedE164, "Checking E164 format is correct"); - - $formattedNational = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::NATIONAL); - $this->assertEquals("07987 458147", $formattedNational, "Checking National format is correct"); - } - - public function testFixedLine() - { - $number = '01234512345'; - $phoneObject = $this->phoneUtil->parse($number, 'GB'); - - $valid = $this->phoneUtil->isValidNumber($phoneObject); - $this->assertTrue($valid, "Checking phone number is valid"); - - $type = $this->phoneUtil->getNumberType($phoneObject); - $this->assertEquals(PhoneNumberType::FIXED_LINE, $type, "Checking phone number is detected as fixed line"); - - $formattedE164 = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::E164); - $this->assertEquals("+441234512345", $formattedE164, "Checking E164 format is correct"); - - $formattedNational = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::NATIONAL); - $this->assertEquals("01234 512345", $formattedNational, "Checking National format is correct"); - } - - public function testSharedCost() - { - $number = '08451234568'; - $phoneObject = $this->phoneUtil->parse($number, 'GB'); - - $valid = $this->phoneUtil->isValidNumber($phoneObject); - $this->assertTrue($valid, "Checking phone number is valid"); - - $type = $this->phoneUtil->getNumberType($phoneObject); - $this->assertEquals(PhoneNumberType::SHARED_COST, $type, "Checking phone number is detected as shared cost"); - - $formattedE164 = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::E164); - $this->assertEquals("+448451234568", $formattedE164, "Checking E164 format is correct"); - - $formattedNational = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::NATIONAL); - $this->assertEquals("0845 123 4568", $formattedNational, "Checking National format is correct"); - } - - public function testPersonalNumber() - { - $number = '07010020249'; - $phoneObject = $this->phoneUtil->parse($number, 'GB'); - - $valid = $this->phoneUtil->isValidNumber($phoneObject); - $this->assertTrue($valid, "Checking phone number is valid"); - - $type = $this->phoneUtil->getNumberType($phoneObject); - $this->assertEquals( - PhoneNumberType::PERSONAL_NUMBER, - $type, - "Checking phone number is detected as a personal number" - ); - - $formattedE164 = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::E164); - $this->assertEquals("+447010020249", $formattedE164, "Checking E164 format is correct"); - - $formattedNational = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::NATIONAL); - $this->assertEquals("070 1002 0249", $formattedNational, "Checking National format is correct"); - } - - public function testUAN() - { - $number = '03335555555'; - $phoneObject = $this->phoneUtil->parse($number, 'GB'); - - $valid = $this->phoneUtil->isValidNumber($phoneObject); - $this->assertTrue($valid, "Checking phone number is valid"); - - $type = $this->phoneUtil->getNumberType($phoneObject); - $this->assertEquals(PhoneNumberType::UAN, $type, "Checking phone number is detected as UAN"); - - $formattedE164 = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::E164); - $this->assertEquals("+443335555555", $formattedE164, "Checking E164 format is correct"); - - $formattedNational = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::NATIONAL); - $this->assertEquals("0333 555 5555", $formattedNational, "Checking National format is correct"); - } - - public function testTollFree() - { - $number = '0800800150'; - $phoneObject = $this->phoneUtil->parse($number, 'GB'); - - $valid = $this->phoneUtil->isValidNumber($phoneObject); - $this->assertTrue($valid, "Checking phone number is valid"); - - $type = $this->phoneUtil->getNumberType($phoneObject); - $this->assertEquals(PhoneNumberType::TOLL_FREE, $type, "Checking phone number is detected as TOLL FREE"); - - $formattedE164 = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::E164); - $this->assertEquals("+44800800150", $formattedE164, "Checking E164 format is correct"); - - $formattedNational = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::NATIONAL); - $this->assertEquals("0800 800150", $formattedNational, "Checking National format is correct"); - } - - public function testPremium() - { - $number = '09063020288'; - $phoneObject = $this->phoneUtil->parse($number, 'GB'); - - $valid = $this->phoneUtil->isValidNumber($phoneObject); - $this->assertTrue($valid, "Checking phone number is valid"); - - $type = $this->phoneUtil->getNumberType($phoneObject); - $this->assertEquals(PhoneNumberType::PREMIUM_RATE, $type, "Checking phone number is detected as PREMIUM RATE"); - - $formattedE164 = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::E164); - $this->assertEquals("+449063020288", $formattedE164, "Checking E164 format is correct"); - - $formattedNational = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::NATIONAL); - $this->assertEquals("0906 302 0288", $formattedNational, "Checking National format is correct"); - } - - public function testChildLine() - { - $number = '08001111'; - $phoneObject = $this->phoneUtil->parse($number, 'GB'); - - $valid = $this->phoneUtil->isValidNumber($phoneObject); - $this->assertTrue($valid, "Checking phone number is valid"); - - $type = $this->phoneUtil->getNumberType($phoneObject); - $this->assertEquals( - PhoneNumberType::TOLL_FREE, - $type, - "Checking phone number is detected as TOLL FREE" - ); - - $formattedE164 = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::E164); - $this->assertEquals("+448001111", $formattedE164, "Checking E164 format is correct"); - - $formattedNational = $this->phoneUtil->format($phoneObject, PhoneNumberFormat::NATIONAL); - $this->assertEquals("0800 1111", $formattedNational, "Checking National format is correct"); - } - - public function testInvalidNumber() - { - $number = '123401234512345'; - $phoneObject = $this->phoneUtil->parse($number, 'GB'); - - $valid = $this->phoneUtil->isValidNumber($phoneObject); - $this->assertFalse($valid, "Checking phone number is invalid"); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/buildtools/BuildMetadataFromXmlTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/buildtools/BuildMetadataFromXmlTest.php deleted file mode 100644 index 26d5fd007..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/buildtools/BuildMetadataFromXmlTest.php +++ /dev/null @@ -1,915 +0,0 @@ -loadXML($xmlString); - - return $domDocument->documentElement; - } - - public function testValidateRERemovesWhiteSpaces() - { - $input = " hello world "; - // Should remove all the white spaces contained in the provided string. - $this->assertEquals("helloworld", BuildMetadataFromXml::validateRE($input, true)); - // Make sure it only happens when the last parameter is set to true. - $this->assertEquals(" hello world ", BuildMetadataFromXml::validateRE($input, false)); - } - - public function testValidateREThrowsException() - { - $invalidPattern = '['; - // Should throw an exception when an invalid pattern is provided independently of the last - // parameter (remove white spaces). - try { - BuildMetadataFromXml::validateRE($invalidPattern, false); - $this->fail(); - } catch (\Exception $e) { - // Test passed. - $this->addToAssertionCount(1); - } - - try { - BuildMetadataFromXml::validateRE($invalidPattern, true); - $this->fail(); - } catch (\Exception $e) { - // Test passed. - $this->addToAssertionCount(1); - } - - // We don't allow | to be followed by ) because it introduces bugs, since we typically use it at - // the end of each line and when a line is deleted, if the pipe from the previous line is not - // removed, we end up erroneously accepting an empty group as well. - $patternWithPipeFollowedByClosingParentheses = '|)'; - try { - BuildMetadataFromXml::validateRE($patternWithPipeFollowedByClosingParentheses, true); - $this->fail(); - } catch (\Exception $e) { - // Test passed. - $this->addToAssertionCount(1); - } - $patternWithPipeFollowedByNewLineAndClosingParentheses = "|\n)"; - try { - BuildMetadataFromXml::validateRE($patternWithPipeFollowedByNewLineAndClosingParentheses, true); - $this->fail(); - } catch (\Exception $e) { - // Test passed. - $this->addToAssertionCount(1); - } - } - - public function testValidateRE() - { - $validPattern = "[a-zA-Z]d{1,9}"; - // The provided pattern should be left unchanged. - $this->assertEquals($validPattern, BuildMetadataFromXml::validateRE($validPattern, false)); - } - - public function testGetNationalPrefix() - { - $xmlInput = ""; - $territoryElement = $this->parseXMLString($xmlInput); - $this->assertEquals('00', BuildMetadataFromXml::getNationalPrefix($territoryElement)); - } - - public function testLoadTerritoryTagMetadata() - { - $xmlInput = "" - . ""; - $territoryElement = $this->parseXMLString($xmlInput); - $phoneMetadata = BuildMetadataFromXml::loadTerritoryTagMetadata('33', $territoryElement, '0'); - $this->assertEquals(33, $phoneMetadata->getCountryCode()); - $this->assertEquals("2", $phoneMetadata->getLeadingDigits()); - $this->assertEquals("00", $phoneMetadata->getInternationalPrefix()); - $this->assertEquals("0011", $phoneMetadata->getPreferredInternationalPrefix()); - $this->assertEquals("0", $phoneMetadata->getNationalPrefixForParsing()); - $this->assertEquals("9$1", $phoneMetadata->getNationalPrefixTransformRule()); - $this->assertEquals("0", $phoneMetadata->getNationalPrefix()); - $this->assertEquals(" x", $phoneMetadata->getPreferredExtnPrefix()); - $this->assertTrue($phoneMetadata->isMainCountryForCode()); - $this->assertTrue($phoneMetadata->isLeadingZeroPossible()); - $this->assertTrue($phoneMetadata->isMobileNumberPortableRegion()); - } - - public function testLoadTerritoryTagMetadataSetsBooleanFieldsToFalseByDefault() - { - $xmlInput = ""; - $territoryElement = $this->parseXMLString($xmlInput); - $phoneMetadata = BuildMetadataFromXml::loadTerritoryTagMetadata('33', $territoryElement, ''); - $this->assertFalse($phoneMetadata->isMainCountryForCode()); - $this->assertFalse($phoneMetadata->isLeadingZeroPossible()); - $this->assertFalse($phoneMetadata->isMobileNumberPortableRegion()); - } - - public function testLoadTerritoryTagMetadataSetsNationalPrefixForParsingByDefault() - { - $xmlInput = ""; - $territoryElement = $this->parseXMLString($xmlInput); - $phoneMetadata = BuildMetadataFromXml::loadTerritoryTagMetadata('33', $territoryElement, '00'); - // When unspecified, nationalPrefixForParsing defaults to nationalPrefix. - $this->assertEquals("00", $phoneMetadata->getNationalPrefix()); - $this->assertEquals($phoneMetadata->getNationalPrefix(), $phoneMetadata->getNationalPrefixForParsing()); - } - - public function testLoadTerritoryTagMetadataWithRequiredAttributesOnly() - { - $xmlInput = ""; - $territoryElement = $this->parseXMLString($xmlInput); - // Should not throw any exception - BuildMetadataFromXml::loadTerritoryTagMetadata('33', $territoryElement, ''); - } - - public function testLoadInternationalFormat() - { - $intlFormat = '$1 $2'; - $xmlInput = "" . $intlFormat . ""; - $numberFormatElement = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - $nationalFormat = new NumberFormat(); - - $this->assertTrue(BuildMetadataFromXml::loadInternationalFormat($metadata, $numberFormatElement, $nationalFormat)); - $this->assertEquals($intlFormat, $metadata->getIntlNumberFormat(0)->getFormat()); - } - - public function testLoadInternationalFormatWithBothNationalAndIntlFormatsDefined() - { - $intlFormat = '$1 $2'; - $xmlInput = "" . $intlFormat . ""; - $numberFormatElement = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - $nationalFormat = new NumberFormat(); - $nationalFormat->setFormat('$1'); - - $this->assertTrue(BuildMetadataFromXml::loadInternationalFormat($metadata, $numberFormatElement, $nationalFormat)); - $this->assertEquals($intlFormat, $metadata->getIntlNumberFormat(0)->getFormat()); - } - - /** - * @expectedException \RuntimeException - */ - public function testLoadInternationalFormatExpectsOnlyOnePattern() - { - $xmlInput = ''; - $numberFormatElement = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - - // Should throw an exception as multiple intlFormats are provided - BuildMetadataFromXml::loadInternationalFormat($metadata, $numberFormatElement, new NumberFormat()); - } - - public function testLoadInternationalFormatUsesNationalFormatByDefault() - { - $xmlInput = ''; - $numberFormatElement = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - $nationalFormat = new NumberFormat(); - $nationPattern = '$1 $2 $3'; - $nationalFormat->setFormat($nationPattern); - - $this->assertFalse(BuildMetadataFromXml::loadInternationalFormat($metadata, $numberFormatElement, $nationalFormat)); - $this->assertEquals($nationPattern, $metadata->getIntlNumberFormat(0)->getFormat()); - } - - public function testLoadInternationalFormatCopiesNationalFormatData() - { - $xmlInput = ''; - $numberFormatElement = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - $nationalFormat = new NumberFormat(); - $nationalFormat->setFormat('$1-$2'); - $nationalFormat->setNationalPrefixOptionalWhenFormatting(true); - - $this->assertFalse(BuildMetadataFromXml::loadInternationalFormat($metadata, $numberFormatElement, $nationalFormat)); - $this->assertTrue($metadata->getIntlNumberFormat(0)->isNationalPrefixOptionalWhenFormatting()); - } - - public function testLoadNationalFormat() - { - $nationalFormat = '$1 $2'; - $xmlInput = '' . $nationalFormat . ''; - $numberFormatElement = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - $numberFormat = new NumberFormat(); - BuildMetadataFromXml::loadNationalFormat($metadata, $numberFormatElement, $numberFormat); - $this->assertEquals($nationalFormat, $numberFormat->getFormat()); - } - - /** - * @expectedException \RuntimeException - */ - public function testLoadNationalFormatRequiresFormat() - { - $xmlInput = ''; - $numberFormatElement = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - $numberFormat = new NumberFormat(); - - BuildMetadataFromXml::loadNationalFormat($metadata, $numberFormatElement, $numberFormat); - } - - /** - * @expectedException \RuntimeException - */ - public function testLoadNationalFormatExpectsExactlyOneFormat() - { - $xmlInput = ""; - $numberFormatElement = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - $numberFormat = new NumberFormat(); - - BuildMetadataFromXml::loadNationalFormat($metadata, $numberFormatElement, $numberFormat); - } - - public function testLoadAvailableFormats() - { - $xmlInput = '' - . ' ' - . ' ' - . ' $1 $2 $3' - . ' ' - . ' ' - . ''; - - $element = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - BuildMetadataFromXml::loadAvailableFormats($metadata, $element, '0', '', false /* NP not optional */); - $this->assertEquals('($1)', $metadata->getNumberFormat(0)->getNationalPrefixFormattingRule()); - $this->assertEquals('0 $CC ($1)', $metadata->getNumberFormat(0)->getDomesticCarrierCodeFormattingRule()); - $this->assertEquals('$1 $2 $3', $metadata->getNumberFormat(0)->getFormat()); - } - - public function testLoadAvailableFormatsPropagatesCarrierCodeFormattingRule() - { - $xmlInput = - '' - . ' ' - . ' ' - . ' $1 $2 $3' - . ' ' - . ' ' - . ''; - - $element = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - BuildMetadataFromXml::loadAvailableFormats($metadata, $element, '0', '', false /* NP not optional */); - $this->assertEquals('($1)', $metadata->getNumberFormat(0)->getNationalPrefixFormattingRule()); - $this->assertEquals('0 $CC ($1)', $metadata->getNumberFormat(0)->getDomesticCarrierCodeFormattingRule()); - $this->assertEquals('$1 $2 $3', $metadata->getNumberFormat(0)->getFormat()); - } - - public function testLoadAvailableFormatsSetsProvidedNationalPrefixFormattingRule() - { - $xmlInput = "" - . " " - . ' $1 $2 $3' - . " " - . ""; - - $element = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - BuildMetadataFromXml::loadAvailableFormats($metadata, $element, '', '($1)', false /* NP not optional */); - $this->assertEquals('($1)', $metadata->getNumberFormat(0)->getNationalPrefixFormattingRule()); - } - - public function testLoadAvailableFormatsClearsIntlFormat() - { - $xmlInput = "" - . " " - . ' $1 $2 $3' - . " " - . ""; - - $element = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - BuildMetadataFromXml::loadAvailableFormats($metadata, $element, '0', '($1)', false /* NP not optional */); - $this->assertCount(0, $metadata->intlNumberFormats()); - } - - public function testLoadAvailableFormatsHandlesMultipleNumberFormats() - { - $xmlInput = "" - . " " - . ' $1 $2 $3' - . ' $1-$2' - . " " - . ""; - - $element = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - BuildMetadataFromXml::loadAvailableFormats($metadata, $element, '0', '($1)', false /* NP not optional */); - $this->assertEquals('$1 $2 $3', $metadata->getNumberFormat(0)->getFormat()); - $this->assertEquals('$1-$2', $metadata->getNumberFormat(1)->getFormat()); - } - - public function testLoadInternationalFormatDoesNotSetIntlFormatWhenNA() - { - $xmlInput = 'NA'; - $numberFormatElement = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - $nationalFormat = new NumberFormat(); - $nationalFormat->setFormat('$1 $2'); - - BuildMetadataFromXml::loadInternationalFormat($metadata, $numberFormatElement, $nationalFormat); - $this->assertCount(0, $metadata->intlNumberFormats()); - } - - public function testSetLeadingDigitsPatterns() - { - $xmlInput = "" - . "12" - . ""; - - $numberFormatElement = $this->parseXMLString($xmlInput); - $numberFormat = new NumberFormat(); - BuildMetadataFromXml::setLeadingDigitsPatterns($numberFormatElement, $numberFormat); - - $this->assertEquals('1', $numberFormat->getLeadingDigitsPattern(0)); - $this->assertEquals('2', $numberFormat->getLeadingDigitsPattern(1)); - } - - /** - * Tests setLeadingDigitsPatterns() in the case of international and national formatting rules - * being present but not both defined for this numberFormat - we don't want to add them twice. - */ - public function testSetLeadingDigitsPatternsNotAddedTwiceWhenInternationalFormatsPresent() - { - $xmlInput = "" - . " " - . " 1" - . ' $1' - . " " - . " " - . " 2" - . ' $1' - . ' 9-$1' - . " " - . ""; - - $element = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - BuildMetadataFromXml::loadAvailableFormats($metadata, $element, '0', '', false /* NP not optional */); - $this->assertCount(1, $metadata->getNumberFormat(0)->leadingDigitPatterns()); - $this->assertCount(1, $metadata->getNumberFormat(1)->leadingDigitPatterns()); - // When we merge the national format rules into the international format rules, we shouldn't add - // the leading digit patterns multiple times. - $this->assertCount(1, $metadata->getIntlNumberFormat(0)->leadingDigitPatterns()); - $this->assertCount(1, $metadata->getIntlNumberFormat(1)->leadingDigitPatterns()); - } - - public function testGetNationalPrefixFormattingRuleFromElement() - { - $xmlInput = ''; - $element = $this->parseXMLString($xmlInput); - $this->assertEquals('0$1', BuildMetadataFromXml::getNationalPrefixFormattingRuleFromElement($element, '0')); - } - - public function testGetDomesticCarrierCodeFormattingRuleFromElement() - { - $xmlInput = ''; - $element = $this->parseXMLString($xmlInput); - $this->assertEquals('0$CC $1', BuildMetadataFromXml::getDomesticCarrierCodeFormattingRuleFromElement($element, '0')); - } - - public function testIsValidNumberTypeWithInvalidInput() - { - $this->assertFalse(BuildMetadataFromXml::numberTypeShouldAlwaysBeFilledIn('invalidType')); - $this->assertFalse(BuildMetadataFromXml::numberTypeShouldAlwaysBeFilledIn('tollFree')); - } - - public function testProcessPhoneNumberDescElementWithInvalidInputWithRegex() - { - $generalDesc = new PhoneNumberDesc(); - $territoryElement = $this->parseXMLString(""); - - $phoneNumberDesc = BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'invalidType', false); - $this->assertEquals('NA', $phoneNumberDesc->getPossibleNumberPattern()); - $this->assertEquals('NA', $phoneNumberDesc->getNationalNumberPattern()); - } - - public function testProcessPhoneNumberDescElementMergesWithGeneralDesc() - { - $generalDesc = new PhoneNumberDesc(); - $generalDesc->setPossibleNumberPattern('\\d{6}'); - $territoryElement = $this->parseXMLString(''); - - $phoneNumberDesc = BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'fixedLine', false); - $this->assertEquals('\\d{6}', $phoneNumberDesc->getPossibleNumberPattern()); - } - - public function testProcessPhoneNumberDescElementOverridesGeneralDesc() - { - $generalDesc = new PhoneNumberDesc(); - $generalDesc->setPossibleNumberPattern('\\d{8'); - $xmlInput = "" - . " \\d{6}" - . ""; - - $territoryElement = $this->parseXMLString($xmlInput); - - $phoneNumberDesc = BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'fixedLine', false); - $this->assertEquals('\\d{6}', $phoneNumberDesc->getPossibleNumberPattern()); - } - - public function testProcessPhoneNumberDescElementHandlesLiteBuild() - { - $generalDesc = new PhoneNumberDesc(); - $xmlInput = "" - . " 01 01 01 01" - . ""; - - $territoryElement = $this->parseXMLString($xmlInput); - - $phoneNumberDesc = BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'fixedLine', true); - $this->assertEquals('', $phoneNumberDesc->getExampleNumber()); - } - - public function testProcessPhoneNumberDescOutputsExampleNumberByDefault() - { - $generalDesc = new PhoneNumberDesc(); - $xmlInput = "" - . " 01 01 01 01" - . ""; - - $territoryElement = $this->parseXMLString($xmlInput); - - $phoneNumberDesc = BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'fixedLine', false); - $this->assertEquals('01 01 01 01', $phoneNumberDesc->getExampleNumber()); - } - - public function testProcessPhoneNumberDescRemovesWhiteSpacesInPatterns() - { - $generalDesc = new PhoneNumberDesc(); - $xmlInput = "" - . " \t \\d { 6 } " - . ""; - - $countryElement = $this->parseXMLString($xmlInput); - - $phoneNumberDesc = BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $countryElement, 'fixedLine', false); - $this->assertEquals('\\d{6}', $phoneNumberDesc->getPossibleNumberPattern()); - } - - public function testSetRelevantDescPatternsSetsSameMobileAndFixedLinePattern() - { - $xmlInput = "" - . " \\d{6}" - . " \\d{6}" - . ""; - - $territoryElement = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - // Should set sameMobileAndFixedPattern to true. - BuildMetadataFromXml::setRelevantDescPatterns($metadata, $territoryElement, false /* liteBuild */, false /* isShortNumberMetadata */); - $this->assertTrue($metadata->hasSameMobileAndFixedLinePattern()); - } - - public function testSetRelevantDescPatternsSetsAllDescriptionsForRegularLengthNumbers() - { - $xmlInput = "" - . " \\d{1}" - . " \\d{2}" - . " \\d{3}" - . " \\d{4}" - . " \\d{5}" - . " \\d{6}" - . " \\d{7}" - . " \\d{8}" - . " \\d{9}" - . ""; - - $territoryElement = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - BuildMetadataFromXml::setRelevantDescPatterns($metadata, $territoryElement, false /* liteBuild */, false /* isShortNumberMetadata */); - $this->assertEquals("\\d{1}", $metadata->getFixedLine()->getNationalNumberPattern()); - $this->assertEquals("\\d{2}", $metadata->getMobile()->getNationalNumberPattern()); - $this->assertEquals("\\d{3}", $metadata->getPager()->getNationalNumberPattern()); - $this->assertEquals("\\d{4}", $metadata->getTollFree()->getNationalNumberPattern()); - $this->assertEquals("\\d{5}", $metadata->getPremiumRate()->getNationalNumberPattern()); - $this->assertEquals("\\d{6}", $metadata->getSharedCost()->getNationalNumberPattern()); - $this->assertEquals("\\d{7}", $metadata->getPersonalNumber()->getNationalNumberPattern()); - $this->assertEquals("\\d{8}", $metadata->getVoip()->getNationalNumberPattern()); - $this->assertEquals("\\d{9}", $metadata->getUan()->getNationalNumberPattern()); - } - - public function testSetRelevantDescPatternsSetsAllDescriptionsForShortNumbers() - { - $xmlInput = "" - . " \\d{1}" - . " \\d{2}" - . " \\d{3}" - . " \\d{4}" - . " " - . " \\d{5}" - . " " - . ""; - - $territoryElement = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - BuildMetadataFromXml::setRelevantDescPatterns($metadata, $territoryElement, false /* liteBuild */, true /* isShortNumberMetadata */); - $this->assertEquals("\\d{1}", $metadata->getTollFree()->getNationalNumberPattern()); - $this->assertEquals("\\d{2}", $metadata->getStandardRate()->getNationalNumberPattern()); - $this->assertEquals("\\d{3}", $metadata->getPremiumRate()->getNationalNumberPattern()); - $this->assertEquals("\\d{4}", $metadata->getShortCode()->getNationalNumberPattern()); - $this->assertEquals("\\d{5}", $metadata->getCarrierSpecific()->getNationalNumberPattern()); - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage Multiple elements with type fixedLine found. - */ - public function testSetRelevantDescPatternsThrowsErrorIfTypePresentMultipleTimes() - { - $xmlInput = "" - . " \\d{6}" - . " \\d{6}" - . ""; - - $territoryElement = $this->parseXMLString($xmlInput); - $metadata = new PhoneMetadata(); - BuildMetadataFromXml::setRelevantDescPatterns($metadata, $territoryElement, false /* liteBuild */, false /* isShortNumberMetadata */); - } - - public function testAlternateFormatsOmitsDescPatterns() - { - $xmlInput = "" - . " " - . " " - . " 1" - . ' $1' - . " " - . " " - . " \\d{1}" - . " \\d{2}" - . ""; - - $territoryElement = $this->parseXMLString($xmlInput); - $metadata = BuildMetadataFromXml::loadCountryMetadata('FR', $territoryElement, false /* liteBuild */, false /* isShortNumberMetadata */, true /* isAlternateFormatsMetadata */); - $this->assertEquals('(1)(\\d{3})', $metadata->getNumberFormat(0)->getPattern()); - $this->assertEquals('1', $metadata->getNumberFormat(0)->getLeadingDigitsPattern(0)); - $this->assertEquals('$1', $metadata->getNumberFormat(0)->getFormat()); - $this->assertNull($metadata->getFixedLine()); - $this->assertNull($metadata->getShortCode()); - } - - public function testNationalPrefixRulesSetCorrectly() - { - $xmlInput = "' - . " " - . " " - . " 1" - . ' $1' - . " " - . " " - . " 2" - . ' $1' - . " " - . " " - . " \\d{1}" - . ""; - $territoryElement = $this->parseXMLString($xmlInput); - $metadata = BuildMetadataFromXml::loadCountryMetadata('FR', $territoryElement, false /* liteBuild */, false /* isShortNumberMetadata */, true /* isAlternateFormatsMetadata */); - $this->assertTrue($metadata->getNumberFormat(0)->isNationalPrefixOptionalWhenFormatting()); - // This is inherited from the territory, with $NP replaced by the actual national prefix, and - // $FG replaced with $1. - $this->assertEquals("0$1", $metadata->getNumberFormat(0)->getNationalPrefixFormattingRule()); - // Here it is explicitly set to false. - $this->assertFalse($metadata->getNumberFormat(1)->isNationalPrefixOptionalWhenFormatting()); - } - - public function testProcessPhoneNumberDescElement_PossibleLengthsSetCorrectly() - { - $generalDesc = new PhoneNumberDesc(); - // The number lengths set for the general description must be a super-set of those in the - // element being parsed. - $generalDesc->setPossibleLength(array(4, 6, 7, 13)); - $territoryElement = $this->parseXMLString("" - . "" - // Sorting will be done when parsing. - . " " - . "" - . ""); - - $phoneNumberDesc = BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'fixedLine', false /* no liteBuild */); - $possibleLength = $phoneNumberDesc->getPossibleLength(); - $this->assertCount(2, $possibleLength); - $this->assertEquals(4, $possibleLength[0]); - $this->assertEquals(13, $possibleLength[1]); - // We don't set the local-only lengths on child elements such as fixed-line. - $this->assertCount(0, $phoneNumberDesc->getPossibleLengthLocalOnly()); - } - - public function testSetPossibleLengthsGeneralDesc_BuiltFromChildElements() - { - $territoryElement = $this->parseXMLString("" - . "" - . " " - . "" - . "" - . " " - . "" - . "" - . " " - . "" - . ""); - - $generalDesc = new PhoneNumberDesc(); - BuildMetadataFromXml::setPossibleLengthsGeneralDesc($generalDesc, 'someId', $territoryElement, false /* not short-number metadata */); - - $possibleLength = $generalDesc->getPossibleLength(); - $this->assertCount(2, $possibleLength); - $this->assertEquals(13, $possibleLength[0]); - // 15 is present twice in the input in different sections, but only once in the output. - $this->assertEquals(15, $possibleLength[1]); - $possibleLengthLocalOnly = $generalDesc->getPossibleLengthLocalOnly(); - $this->assertCount(2, $possibleLengthLocalOnly); - $this->assertEquals(6, $possibleLengthLocalOnly[0]); - $this->assertEquals(7, $possibleLengthLocalOnly[1]); - // 13 is skipped as a "local only" length, since it is also present as a normal length. - } - - public function testSetPossibleLengthsGeneralDesc_IgnoresNoIntlDialling() - { - $territoryElement = $this->parseXMLString("" - . "" - . " " - . "" - . "" - . " " - . "" - . ""); - - $generalDesc = new PhoneNumberDesc(); - BuildMetadataFromXml::setPossibleLengthsGeneralDesc($generalDesc, 'someId', $territoryElement, false /* not short-number metadata */); - - $possibleLength = $generalDesc->getPossibleLength(); - $this->assertCount(1, $possibleLength); - $this->assertEquals(13, $possibleLength[0]); - // 15 is skipped because noInternationalDialling should not contribute to the general lengths; - // it isn't a particular "type" of number per se, it is a property that different types may - // have. - } - - public function testSetPossibleLengthsGeneralDesc_ShortNumberMetadata() - { - $territoryElement = $this->parseXMLString("" - . "" - . " " - . "" - . "" - . " " - . "" - . "" - . " " - . "" - . ""); - - $generalDesc = new PhoneNumberDesc(); - BuildMetadataFromXml::setPossibleLengthsGeneralDesc($generalDesc, 'someId', $territoryElement, true /* short-number metadata */); - - // All elements other than shortCode are ignored when creating the general desc. - $possibleLength = $generalDesc->getPossibleLength(); - $this->assertCount(2, $possibleLength); - $this->assertEquals(6, $possibleLength[0]); - $this->assertEquals(13, $possibleLength[1]); - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage Found local-only lengths in short-number metadata - */ - public function testSetPossibleLengthsGeneralDesc_ShortNumberMetadataErrorsOnLocalLengths() - { - $territoryElement = $this->parseXMLString("" - . "" - . " " - . "" - . ""); - - $generalDesc = new PhoneNumberDesc(); - BuildMetadataFromXml::setPossibleLengthsGeneralDesc($generalDesc, 'someId', $territoryElement, true /* short-number metadata */); - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage Duplicate length element found (6) in possibleLength string 6,6 - */ - public function testProcessPhoneNumberDescElement_ErrorDuplicates() - { - $generalDesc = new PhoneNumberDesc(); - $generalDesc->setPossibleLength(array(6)); - - $territoryElement = $this->parseXMLString("" - . "" - . " " - . "" - . ""); - - BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'mobile', false /* not light build */); - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage Possible length(s) found specified as a normal and local-only length: [6] - */ - public function testProcessPhoneNumberDescElement_ErrorDuplicatesOneLocal() - { - $generalDesc = new PhoneNumberDesc(); - $generalDesc->setPossibleLength(array(6)); - - $territoryElement = $this->parseXMLString("" - . "" - . " " - . "" - . ""); - - BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'mobile', false /* not light build */); - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage Out-of-range possible length - */ - public function testProcessPhoneNumberDescElement_ErrorUncoveredLengths() - { - $generalDesc = new PhoneNumberDesc(); - $generalDesc->setPossibleLength(array(4)); - - $territoryElement = $this->parseXMLString("" - . "" - // Sorting will be done when parsing. - . " " - . "" - . ""); - - BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'noInternationalDialling', false /* not light build */); - } - - public function testProcessPhoneNumberDescElement_SameAsParent() - { - $generalDesc = new PhoneNumberDesc(); - // The number lengths set for the general description must be a super-set of those in the - // element being parsed. - $generalDesc->setPossibleLength(array(4, 6, 7)); - $generalDesc->setPossibleLengthLocalOnly(array(2)); - $territoryElement = $this->parseXMLString("" - . "" - // Sorting will be done when parsing. - . " " - . "" - . ""); - - $phoneNumberDesc = BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'fixedLine', false /* not light build */); - - // No possible lengths should be present, because they match the general description. - $this->assertCount(0, $phoneNumberDesc->getPossibleLength()); - $this->assertCount(0, $phoneNumberDesc->getPossibleLengthLocalOnly()); - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage For input string "4d" - */ - public function testProcessPhoneNumberDescElement_InvalidNumber() - { - $generalDesc = new PhoneNumberDesc(); - $generalDesc->setPossibleLength(array(4)); - $territoryElement = $this->parseXMLString("" - . "" - . " " - . "" - . ""); - - BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'fixedLine', false /* not light build */); - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage Found possible lengths specified at general desc: this should be derived from child elements. Affected country: FR - */ - public function testLoadCountryMetadata_GeneralDescHasNumberLengthsSet() - { - $territoryElement = $this->parseXMLString("" - . "" - // This shouldn't be set, the possible lengths should be derived for generalDesc. - . " " - . "" - . "" - . " " - . "" - . ""); - - BuildMetadataFromXml::loadCountryMetadata('FR', $territoryElement, false /* liteBuild */, false /* isShortNumberMetadata */, false /* isAlternateFormatsMetadata */); - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage Empty possibleLength string found. - */ - public function testProcessPhoneNumberDescElement_ErrorEmptyPossibleLengthStringAttribute() - { - $generalDesc = new PhoneNumberDesc(); - $generalDesc->setPossibleLength(array(4)); - $territoryElement = $this->parseXMLString("" - . "" - . " " - . "" - . ""); - - BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'fixedLine', false /* not light build */); - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage Missing end of range character in possible length string [4,7]. - */ - public function testProcessPhoneNumberDescElement_ErrorRangeSpecifiedWithComma() - { - $generalDesc = new PhoneNumberDesc(); - $generalDesc->setPossibleLength(array(4)); - $territoryElement = $this->parseXMLString("" - . "" - . " " - . "" - . ""); - - BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'fixedLine', false /* not light build */); - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage Missing end of range character in possible length string [4-. - */ - public function testProcessPhoneNumberDescElement_ErrorIncompleteRange() - { - $generalDesc = new PhoneNumberDesc(); - $generalDesc->setPossibleLength(array(4)); - - $territoryElement = $this->parseXMLString("" - . "" - . " " - . "" - . ""); - - BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'fixedLine', false /* not light build */); - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage Ranges must have exactly one - character: missing for [4:10]. - */ - public function testProcessPhoneNumberDescElement_ErrorNoDashInRange() - { - $generalDesc = new PhoneNumberDesc(); - $generalDesc->setPossibleLength(array(4)); - $territoryElement = $this->parseXMLString("" - . "" - . " " - . "" - . ""); - - BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'fixedLine', false /* not light build */); - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage The first number in a range should be two or more digits lower than the second. Culprit possibleLength string: [10-10] - */ - public function testProcessPhoneNumberDescElement_ErrorRangeIsNotFromMinToMax() - { - $generalDesc = new PhoneNumberDesc(); - $generalDesc->setPossibleLength(array(4)); - $territoryElement = $this->parseXMLString("" - . "" - . " " - . "" - . ""); - - BuildMetadataFromXml::processPhoneNumberDescElement($generalDesc, $territoryElement, 'fixedLine', false /* not light build */); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/buildtools/GeneratePhonePrefixDataTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/buildtools/GeneratePhonePrefixDataTest.php deleted file mode 100644 index d0b18374a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/buildtools/GeneratePhonePrefixDataTest.php +++ /dev/null @@ -1,53 +0,0 @@ -addConfigurationMapping($temporaryMap, "1", "en"); - $phonePrefixData->addConfigurationMapping($temporaryMap, "1", "en_US"); - $phonePrefixData->addConfigurationMapping($temporaryMap, "1", "es"); - - // Languages for France. - $phonePrefixData->addConfigurationMapping($temporaryMap, "33", "fr"); - $phonePrefixData->addConfigurationMapping($temporaryMap, "33", "en"); - - // Languages for China. - $phonePrefixData->addConfigurationMapping($temporaryMap, "86", "zh_Hans"); - - self::$available_data_files = $temporaryMap; - } - - public function testAddConfigurationMapping() - { - $this->assertCount(3, self::$available_data_files); - - $languagesForUS = self::$available_data_files[1]; - - $this->assertContains("en", $languagesForUS); - $this->assertContains("en_US", $languagesForUS); - $this->assertContains("es", $languagesForUS); - - $languagesForFR = self::$available_data_files[33]; - - $this->assertContains("fr", $languagesForFR); - $this->assertContains("en", $languagesForFR); - - $languagesForCN = self::$available_data_files[86]; - $this->assertCount(1, $languagesForCN); - - $this->assertContains("zh_Hans", $languagesForCN); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/PhoneNumberToCarrierMapperTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/PhoneNumberToCarrierMapperTest.php deleted file mode 100644 index d9f6080f1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/PhoneNumberToCarrierMapperTest.php +++ /dev/null @@ -1,138 +0,0 @@ -setCountryCode(244)->setNationalNumber(917654321); - - self::$AO_MOBILE2 = new PhoneNumber(); - self::$AO_MOBILE2->setCountryCode(244)->setNationalNumber(927654321); - - self::$AO_FIXED1 = new PhoneNumber(); - self::$AO_FIXED1->setCountryCode(244)->setNationalNumber(22254321); - - self::$AO_FIXED2 = new PhoneNumber(); - self::$AO_FIXED2->setCountryCode(244)->setNationalNumber(26254321); - - self::$AO_INVALID_NUMBER = new PhoneNumber(); - self::$AO_INVALID_NUMBER->setCountryCode(244)->setNationalNumber(101234); - - self::$UK_MOBILE1 = new PhoneNumber(); - self::$UK_MOBILE1->setCountryCode(44)->setNationalNumber(7387654321); - - self::$UK_MOBILE2 = new PhoneNumber(); - self::$UK_MOBILE2->setCountryCode(44)->setNationalNumber(7487654321); - - self::$UK_FIXED1 = new PhoneNumber(); - self::$UK_FIXED1->setCountryCode(44)->setNationalNumber(1123456789); - - self::$UK_FIXED2 = new PhoneNumber(); - self::$UK_FIXED2->setCountryCode(44)->setNationalNumber(2987654321); - - self::$UK_INVALID_NUMBER = new PhoneNumber(); - self::$UK_INVALID_NUMBER->setCountryCode(44)->setNationalNumber(7301234); - - self::$UK_PAGER = new PhoneNumber(); - self::$UK_PAGER->setCountryCode(44)->setNationalNumber(7601234567); - - self::$US_FIXED_OR_MOBILE = new PhoneNumber(); - self::$US_FIXED_OR_MOBILE->setCountryCode(1)->setNationalNumber(6502123456); - - self::$NUMBER_WITH_INVALID_COUNTRY_CODE = new PhoneNumber(); - self::$NUMBER_WITH_INVALID_COUNTRY_CODE->setCountryCode(999)->setNationalNumber(2423651234); - - self::$INTERNATIONAL_TOLL_FREE = new PhoneNumber(); - self::$INTERNATIONAL_TOLL_FREE->setCountryCode(800)->setNationalNumber(12345678); - } - - public function setUp() - { - $this->carrierMapper = PhoneNumberToCarrierMapper::getInstance(self::TEST_META_DATA_FILE_PREFIX); - } - - public function testGetNameForMobilePortableRegion() - { - $this->assertEquals("British carrier", $this->carrierMapper->getNameForNumber(self::$UK_MOBILE1, "en")); - $this->assertEquals("Brittisk operat" . pack('H*', 'c3b6') . "r", $this->carrierMapper->getNameForNumber(self::$UK_MOBILE1, "sv_SE")); - $this->assertEquals("British carrier", $this->carrierMapper->getNameForNumber(self::$UK_MOBILE1, "fr")); - // Returns an empty string because the UK implements mobile number portability. - $this->assertEquals("", $this->carrierMapper->getSafeDisplayName(self::$UK_MOBILE1, "en")); - } - - public function testGetNameForNonMobilePortableRegion() - { - $this->assertEquals("Angolan carrier", $this->carrierMapper->getNameForNumber(self::$AO_MOBILE1, "en")); - $this->assertEquals("Angolan carrier", $this->carrierMapper->getSafeDisplayName(self::$AO_MOBILE1, "en")); - } - - public function testGetNameForFixedLineNumber() - { - $this->assertEquals("", $this->carrierMapper->getNameForNumber(self::$AO_FIXED1, "en")); - $this->assertEquals("", $this->carrierMapper->getNameForNumber(self::$UK_FIXED1, "en")); - // If the carrier information is present in the files and the method that assumes a valid - // number is used, a carrier is returned - $this->assertEquals("Angolan fixed line carrier", $this->carrierMapper->getNameForValidNumber(self::$AO_FIXED2, "en")); - $this->assertEquals("", $this->carrierMapper->getNameForValidNumber(self::$UK_FIXED2, "en")); - } - - public function testGetNameForFixedOrMobileNumber() - { - $this->assertEquals("US carrier", $this->carrierMapper->getNameForNumber(self::$US_FIXED_OR_MOBILE, "en")); - } - - public function testGetNameForPagerNumber() - { - $this->assertEquals("British pager", $this->carrierMapper->getNameForNumber(self::$UK_PAGER, "en")); - } - - public function testGetNameForNumberWithNoDataFile() - { - $this->assertEquals("", $this->carrierMapper->getNameForNumber(self::$NUMBER_WITH_INVALID_COUNTRY_CODE, "en")); - $this->assertEquals("", $this->carrierMapper->getNameForNumber(self::$INTERNATIONAL_TOLL_FREE, "en")); - - $this->assertEquals("", $this->carrierMapper->getNameForValidNumber(self::$NUMBER_WITH_INVALID_COUNTRY_CODE, "en")); - $this->assertEquals("", $this->carrierMapper->getNameForValidNumber(self::$INTERNATIONAL_TOLL_FREE, "en")); - } - - public function testGetNameForNumberWithMissingPrefix() - { - $this->assertEquals("", $this->carrierMapper->getNameForNumber(self::$UK_MOBILE2, "en")); - $this->assertEquals("", $this->carrierMapper->getNameForNumber(self::$AO_MOBILE2, "en")); - } - - public function testGetNameForInvalidNumber() - { - $this->assertEquals("", $this->carrierMapper->getNameForNumber(self::$UK_INVALID_NUMBER, "en")); - $this->assertEquals("", $this->carrierMapper->getNameForNumber(self::$AO_INVALID_NUMBER, "en")); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/Map.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/Map.php deleted file mode 100644 index ec963e5a3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/Map.php +++ /dev/null @@ -1,18 +0,0 @@ - - array ( - 0 => 1650, - 1 => 244, - 2 => 44, - ), - 'sv' => - array ( - 0 => 44, - ), -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/en/244.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/en/244.php deleted file mode 100644 index d5938ab77..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/en/244.php +++ /dev/null @@ -1,10 +0,0 @@ - 'Angolan fixed line carrier', - 244917 => 'Angolan carrier', -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/en/44.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/en/44.php deleted file mode 100644 index 02c5fc225..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/en/44.php +++ /dev/null @@ -1,11 +0,0 @@ - 'British fixed line carrier', - 4473 => 'British carrier', - 44760 => 'British pager', -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/sv/44.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/sv/44.php deleted file mode 100644 index 3f99e6def..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/sv/44.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Brittisk operatör', -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/ExampleNumbersTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/ExampleNumbersTest.php deleted file mode 100644 index 095780932..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/ExampleNumbersTest.php +++ /dev/null @@ -1,394 +0,0 @@ -phoneNumberUtil = PhoneNumberUtil::getInstance(); - $this->shortNumberInfo = ShortNumberInfo::getInstance(); - } - - public function regionList() - { - $returnList = array(); - - PhoneNumberUtil::resetInstance(); - $phoneUtil = PhoneNumberUtil::getInstance(); - foreach ($phoneUtil->getSupportedRegions() as $regionCode) { - $returnList[] = array($regionCode); - } - - return $returnList; - } - - public function numberTypes() - { - return array( - array(PhoneNumberType::FIXED_LINE), - array(PhoneNumberType::MOBILE), - array(PhoneNumberType::FIXED_LINE_OR_MOBILE), - array(PhoneNumberType::TOLL_FREE), - array(PhoneNumberType::PREMIUM_RATE), - array(PhoneNumberType::SHARED_COST), - array(PhoneNumberType::VOIP), - array(PhoneNumberType::PERSONAL_NUMBER), - array(PhoneNumberType::PAGER), - array(PhoneNumberType::UAN), - array(PhoneNumberType::UNKNOWN), - array(PhoneNumberType::EMERGENCY), - array(PhoneNumberType::VOICEMAIL), - array(PhoneNumberType::SHORT_CODE), - array(PhoneNumberType::STANDARD_RATE), - ); - } - - /** - * @dataProvider regionList - */ - public function testFixedLine($region) - { - $fixedLineTypes = array(PhoneNumberType::FIXED_LINE, PhoneNumberType::FIXED_LINE_OR_MOBILE); - $this->checkNumbersValidAndCorrectType(PhoneNumberType::FIXED_LINE, $fixedLineTypes, $region); - } - - /** - * @dataProvider regionList - */ - public function testFixedLineOrMobile($region) - { - $numberTypes = array(PhoneNumberType::FIXED_LINE, PhoneNumberType::FIXED_LINE_OR_MOBILE); - $this->checkNumbersValidAndCorrectType(PhoneNumberType::FIXED_LINE_OR_MOBILE, $numberTypes, $region); - } - - private function checkNumbersValidAndCorrectType($exampleNumberRequestedType, $possibleExpectedTypes, $regionCode) - { - $exampleNumber = $this->phoneNumberUtil->getExampleNumberForType($regionCode, $exampleNumberRequestedType); - if ($exampleNumber !== null) { - $this->assertTrue( - $this->phoneNumberUtil->isValidNumber($exampleNumber), - "Failed validation for {$exampleNumber}" - ); - - // We know the number is valid, now we check the type. - $exampleNumberType = $this->phoneNumberUtil->getNumberType($exampleNumber); - $this->assertContains($exampleNumberType, $possibleExpectedTypes, "Wrong type for {$exampleNumber}"); - } - } - - /** - * @dataProvider regionList - */ - public function testMobile($region) - { - $mobileTypes = array(PhoneNumberType::MOBILE, PhoneNumberType::FIXED_LINE_OR_MOBILE); - $this->checkNumbersValidAndCorrectType(PhoneNumberType::MOBILE, $mobileTypes, $region); - } - - /** - * @dataProvider regionList - */ - public function testTollFree($region) - { - $tollFreeTypes = array(PhoneNumberType::TOLL_FREE); - $this->checkNumbersValidAndCorrectType(PhoneNumberType::TOLL_FREE, $tollFreeTypes, $region); - } - - /** - * @dataProvider regionList - */ - public function testPremiumRate($region) - { - $premiumRateTypes = array(PhoneNumberType::PREMIUM_RATE); - $this->checkNumbersValidAndCorrectType(PhoneNumberType::PREMIUM_RATE, $premiumRateTypes, $region); - } - - /** - * @dataProvider regionList - */ - public function testVoip($region) - { - $voipTypes = array(PhoneNumberType::VOIP); - $this->checkNumbersValidAndCorrectType(PhoneNumberType::VOIP, $voipTypes, $region); - } - - /** - * @dataProvider regionList - */ - public function testPager($region) - { - $pagerTypes = array(PhoneNumberType::PAGER); - $this->checkNumbersValidAndCorrectType(PhoneNumberType::PAGER, $pagerTypes, $region); - } - - /** - * @dataProvider regionList - */ - public function testUan($region) - { - $uanTypes = array(PhoneNumberType::UAN); - $this->checkNumbersValidAndCorrectType(PhoneNumberType::UAN, $uanTypes, $region); - } - - /** - * @dataProvider regionList - */ - public function testVoicemail($region) - { - $voicemailTypes = array(PhoneNumberType::VOICEMAIL); - $this->checkNumbersValidAndCorrectType(PhoneNumberType::VOICEMAIL, $voicemailTypes, $region); - } - - /** - * @dataProvider regionList - */ - public function testPersonalNumber($region) - { - $numberTypes = array(PhoneNumberType::PERSONAL_NUMBER); - $this->checkNumbersValidAndCorrectType(PhoneNumberType::PERSONAL_NUMBER, $numberTypes, $region); - } - - /** - * @dataProvider regionList - */ - public function testSharedCost($region) - { - $sharedCostTypes = array(PhoneNumberType::SHARED_COST); - $this->checkNumbersValidAndCorrectType(PhoneNumberType::SHARED_COST, $sharedCostTypes, $region); - } - - /** - * @dataProvider regionList - */ - public function testCanBeInternationallyDialled($regionCode) - { - $exampleNumber = null; - /** @var \libphonenumber\PhoneNumberDesc $desc */ - $desc = $this->phoneNumberUtil->getMetadataForRegion($regionCode)->getNoInternationalDialling(); - try { - if ($desc->hasExampleNumber()) { - $exampleNumber = $this->phoneNumberUtil->parse($desc->getExampleNumber(), $regionCode); - } - } catch (NumberParseException $e) { - } - - if ($exampleNumber !== null && $this->phoneNumberUtil->canBeInternationallyDialled($exampleNumber)) { - $this->fail("Number {$exampleNumber} should not be internationally diallable"); - } - } - - public function shortNumberRegionList() - { - $returnList = array(); - - PhoneNumberUtil::resetInstance(); - ShortNumberInfo::resetInstance(); - $shortNumberInfo = ShortNumberInfo::getInstance(); - foreach ($shortNumberInfo->getSupportedRegions() as $regionCode) { - $returnList[] = array($regionCode); - } - - return $returnList; - } - - public function supportedGlobalNetworkCallingCodes() - { - $returnList = array(); - - PhoneNumberUtil::resetInstance(); - $phoneUtil = PhoneNumberUtil::getInstance(); - foreach ($phoneUtil->getSupportedGlobalNetworkCallingCodes() as $callingCode) { - $returnList[] = array($callingCode); - } - - return $returnList; - } - - /** - * @dataProvider supportedGlobalNetworkCallingCodes - */ - public function testGlobalNetworkNumbers($callingCode) - { - $exampleNumber = $this->phoneNumberUtil->getExampleNumberForNonGeoEntity($callingCode); - $this->assertNotNull($exampleNumber, "No example phone number for calling code " . $callingCode); - if (!$this->phoneNumberUtil->isValidNumber($exampleNumber)) { - $this->fail("Failed validation for " . $exampleNumber); - } - } - - /** - * @dataProvider regionList - * @param string $regionCode - */ - public function testEveryRegionHasAnExampleNumber($regionCode) - { - $exampleNumber = $this->phoneNumberUtil->getExampleNumber($regionCode); - $this->assertNotNull($exampleNumber, "No example number found for region " . $regionCode); - - /* - * Check the number is valid - */ - - $e164 = $this->phoneNumberUtil->format($exampleNumber, PhoneNumberFormat::E164); - - $phoneObject = $this->phoneNumberUtil->parse($e164, 'ZZ'); - - $this->assertEquals($phoneObject, $exampleNumber); - - $this->assertTrue($this->phoneNumberUtil->isValidNumber($phoneObject)); - $this->assertTrue($this->phoneNumberUtil->isValidNumberForRegion($phoneObject, $regionCode)); - } - - /** - * @dataProvider regionList - * @param string $regionCode - */ - public function testEveryRegionHasAnInvalidExampleNumber($regionCode) - { - $exampleNumber = $this->phoneNumberUtil->getInvalidExampleNumber($regionCode); - $this->assertNotNull($exampleNumber, 'No invalid example number found for region ' . $regionCode); - } - - /** - * @dataProvider numberTypes - * @param string $numberType - */ - public function testEveryTypeHasAnExampleNumber($numberType) - { - $exampleNumber = $this->phoneNumberUtil->getExampleNumberForType($numberType); - $this->assertNotNull($exampleNumber, 'No example number found for type ' . $numberType); - } - - /** - * @dataProvider shortNumberRegionList - */ - public function testShortNumbersValidAndCorrectCost($regionCode) - { - $exampleShortNumber = $this->shortNumberInfo->getExampleShortNumber($regionCode); - if (!$this->shortNumberInfo->isValidShortNumberForRegion( - $this->phoneNumberUtil->parse($exampleShortNumber, $regionCode), - $regionCode - ) - ) { - $this->fail( - "Failed validation for string region_code: {$regionCode}, national_number: {$exampleShortNumber}" - ); - } - $phoneNumber = $this->phoneNumberUtil->parse($exampleShortNumber, $regionCode); - if (!$this->shortNumberInfo->isValidShortNumber($phoneNumber)) { - $this->fail("Failed validation for " . (string)$phoneNumber); - } - } - - public function shortRegionListAndNumberCost() - { - $costArray = array( - ShortNumberCost::PREMIUM_RATE, - ShortNumberCost::STANDARD_RATE, - ShortNumberCost::TOLL_FREE, - ShortNumberCost::UNKNOWN_COST - ); - - $output = array(); - - foreach ($this->shortNumberRegionList() as $region) { - foreach ($costArray as $cost) { - $output[] = array($region[0], $cost); - } - } - - return $output; - } - - /** - * @dataProvider shortRegionListAndNumberCost - * @param $regionCode - * @param $cost - */ - public function testShortNumberHasCorrectCost($regionCode, $cost) - { - $exampleShortNumber = $this->shortNumberInfo->getExampleShortNumberForCost($regionCode, $cost); - if ($exampleShortNumber != '') { - $phoneNumber = $this->phoneNumberUtil->parse($exampleShortNumber, $regionCode); - $exampleShortNumberCost = $this->shortNumberInfo->getExpectedCostForRegion($phoneNumber, $regionCode); - - $this->assertEquals($cost, $exampleShortNumberCost, 'Wrong cost for ' . (string)$phoneNumber); - } - } - - /** - * @dataProvider shortNumberRegionList - */ - public function testEmergency($regionCode) - { - $desc = $this->shortNumberInfo->getMetadataForRegion($regionCode)->getEmergency(); - if ($desc->hasExampleNumber()) { - $exampleNumber = $desc->getExampleNumber(); - $phoneNumber = $this->phoneNumberUtil->parse($exampleNumber, $regionCode); - - if (!$this->shortNumberInfo->isPossibleShortNumberForRegion( - $phoneNumber, - $regionCode - ) || !$this->shortNumberInfo->isEmergencyNumber($exampleNumber, $regionCode) - ) { - $this->fail("Emergency example number test failed for " . $regionCode); - } elseif ($this->shortNumberInfo->getExpectedCostForRegion( - $phoneNumber, - $regionCode - ) !== ShortNumberCost::TOLL_FREE - ) { - $this->fail("Emergency example number not toll free for " . $regionCode); - } - } - } - - /** - * @dataProvider shortNumberRegionList - */ - public function testCarrierSpecificShortNumbers($regionCode) - { - // Test the carrier-specific tag. - $desc = $this->shortNumberInfo->getMetadataForRegion($regionCode)->getCarrierSpecific(); - if ($desc->hasExampleNumber()) { - $exampleNumber = $desc->getExampleNumber(); - $carrierSpecificNumber = $this->phoneNumberUtil->parse($exampleNumber, $regionCode); - - if (!$this->shortNumberInfo->isPossibleShortNumberForRegion( - $carrierSpecificNumber, - $regionCode - ) || !$this->shortNumberInfo->isCarrierSpecific($carrierSpecificNumber) - ) { - $this->fail("Carrier-specific test failed for " . $regionCode); - } - } - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/IntlTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/IntlTest.php deleted file mode 100644 index 3ec17378e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/IntlTest.php +++ /dev/null @@ -1,37 +0,0 @@ -markTestSkipped('The intl extension must not be installed'); - } - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage The intl extension must be installed - */ - public function testPhoneNumberOfflineGeocoder() - { - PhoneNumberOfflineGeocoder::getInstance(); - } - - /** - * @expectedException \RuntimeException - * @expectedExceptionMessage The intl extension must be installed - */ - public function testPhoneNumberToCarrierMapper() - { - PhoneNumberToCarrierMapper::getInstance(); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/MultiFileMetadataSourceImplTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/MultiFileMetadataSourceImplTest.php deleted file mode 100644 index 7a9f4a98e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/MultiFileMetadataSourceImplTest.php +++ /dev/null @@ -1,49 +0,0 @@ -multiFileMetadataSource = new MultiFileMetadataSourceImpl( - new DefaultMetadataLoader(), - PhoneNumberUtilTest::TEST_META_DATA_FILE_PREFIX - ); - } - - public function testMissingMetadataFileThrowsRuntimeException() - { - // In normal usage we should never get a state where we are asking to load metadata that doesn't - // exist. However if the library is packaged incorrectly, this could happen and the best we can - // do is make sure the exception has the file name in it. - - try { - $this->multiFileMetadataSource->loadMetadataFromFile("no/such/file", "XX", -1, new DefaultMetadataLoader()); - $this->fail("Expected Exception"); - } catch (\RuntimeException $e) { - $this->assertContains('no/such/file_XX', $e->getMessage(), "Unexpected error: " . $e->getMessage()); - } - - try { - $this->multiFileMetadataSource->loadMetadataFromFile( - "no/such/file", - PhoneNumberUtil::REGION_CODE_FOR_NON_GEO_ENTITY, - 123, - new DefaultMetadataLoader() - ); - $this->fail("Expected Exception"); - } catch (\RuntimeException $e) { - $this->assertContains('no/such/file_123', $e->getMessage(), "Unexpected error: " . $e->getMessage()); - } - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/PhoneNumberTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/PhoneNumberTest.php deleted file mode 100644 index db60bef6a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/PhoneNumberTest.php +++ /dev/null @@ -1,99 +0,0 @@ -setCountryCode(1)->setNationalNumber(6502530000); - - $numberB = new PhoneNumber(); - $numberB->setCountryCode(1)->setNationalNumber(6502530000); - - $this->assertEquals($numberA, $numberB); - } - - public function testEqualWithItalianLeadingZeroSetToDefault() - { - $numberA = new PhoneNumber(); - $numberA->setCountryCode(1)->setNationalNumber(6502530000)->setItalianLeadingZero(false); - - $numberB = new PhoneNumber(); - $numberB->setCountryCode(1)->setNationalNumber(6502530000); - - // These should still be equal, since the default value for this field is false. - $this->assertEquals($numberA, $numberB); - } - - public function testEqualWithCountryCodeSourceSet() - { - $numberA = new PhoneNumber(); - $numberA->setRawInput("+1 650 253 00 00")->setCountryCode(CountryCodeSource::FROM_NUMBER_WITH_PLUS_SIGN); - - $numberB = new PhoneNumber(); - $numberB->setRawInput("+1 650 253 00 00")->setCountryCode(CountryCodeSource::FROM_NUMBER_WITH_PLUS_SIGN); - - $this->assertEquals($numberA, $numberB); - } - - public function testNonEqualWithItalianLeadingZeroSetToTrue() - { - $numberA = new PhoneNumber(); - $numberA->setCountryCode(1)->setNationalNumber(6502530000)->setItalianLeadingZero(true); - - $numberB = new PhoneNumber(); - $numberB->setCountryCode(1)->setNationalNumber(6502530000); - - $this->assertNotEquals($numberA, $numberB); - $this->assertFalse($numberA->equals($numberB)); - } - - public function testNonEqualWithDifferingRawInput() - { - $numberA = new PhoneNumber(); - $numberA->setCountryCode(1) - ->setNationalNumber(6502530000) - ->setRawInput("+1 650 253 00 00") - ->setCountryCodeSource(CountryCodeSource::FROM_NUMBER_WITH_PLUS_SIGN); - - $numberB = new PhoneNumber(); - $numberB->setCountryCode(1) - ->setNationalNumber(6502530000) - ->setRawInput("+1-650-253-00-00") - ->setCountryCodeSource(CountryCodeSource::FROM_NUMBER_WITH_PLUS_SIGN); - - $this->assertNotEquals($numberA, $numberB); - $this->assertFalse($numberA->equals($numberB)); - } - - public function testNonEqualWithPreferredDomesticCarrierCodeSetToDefault() - { - $numberA = new PhoneNumber(); - $numberA->setCountryCode(1)->setNationalNumber(6502530000)->setPreferredDomesticCarrierCode(""); - - $numberB = new PhoneNumber(); - $numberB->setCountryCode(1)->setNationalNumber(6502530000); - - $this->assertNotSame($numberA, $numberB); - $this->assertFalse($numberA->equals($numberB)); - } - - public function testEqualWithPreferredDomesticCarrierCodeSetToDefault() - { - $numberA = new PhoneNumber(); - $numberA->setCountryCode(1)->setNationalNumber(6502530000)->setPreferredDomesticCarrierCode(""); - - $numberB = new PhoneNumber(); - $numberB->setCountryCode(1)->setNationalNumber(6502530000)->setPreferredDomesticCarrierCode(""); - - $this->assertEquals($numberA, $numberB); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/PhoneNumberUtilTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/PhoneNumberUtilTest.php deleted file mode 100644 index d61761b9f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/PhoneNumberUtilTest.php +++ /dev/null @@ -1,3342 +0,0 @@ -phoneUtil = self::initializePhoneUtilForTesting(); - } - - private static function initializePhoneUtilForTesting() - { - self::$bsNumber = new PhoneNumber(); - self::$bsNumber->setCountryCode(1)->setNationalNumber(2423651234); - self::$bsMobile = new PhoneNumber(); - self::$bsMobile->setCountryCode(1)->setNationalNumber(2423591234); - self::$internationalTollFree = new PhoneNumber(); - self::$internationalTollFree->setCountryCode(800)->setNationalNumber(12345678); - self::$internationalTollFreeTooLong = new PhoneNumber(); - self::$internationalTollFreeTooLong->setCountryCode(800)->setNationalNumber(123456789); - self::$universalPremiumRate = new PhoneNumber(); - self::$universalPremiumRate->setCountryCode(979)->setNationalNumber(123456789); - self::$sgNumber = new PhoneNumber(); - self::$sgNumber->setCountryCode(65)->setNationalNumber(65218000); - // A too-long and hence invalid US number. - self::$usLongNumber = new PhoneNumber(); - self::$usLongNumber->setCountryCode(1)->setNationalNumber(65025300001); - self::$usShortByOneNumber = new PhoneNumber(); - self::$usShortByOneNumber->setCountryCode(1)->setNationalNumber(650253000); - self::$usTollFree = new PhoneNumber(); - self::$usTollFree->setCountryCode(1)->setNationalNumber(8002530000); - self::$usNumber = new PhoneNumber(); - self::$usNumber->setCountryCode(1)->setNationalNumber(6502530000); - self::$usLocalNumber = new PhoneNumber(); - self::$usLocalNumber->setCountryCode(1)->setNationalNumber(2530000); - self::$nzNumber = new PhoneNumber(); - self::$nzNumber->setCountryCode(64)->setNationalNumber(33316005); - self::$usPremium = new PhoneNumber(); - self::$usPremium->setCountryCode(1)->setNationalNumber(9002530000); - self::$usSpoof = new PhoneNumber(); - self::$usSpoof->setCountryCode(1)->setNationalNumber(0); - self::$usSpoofWithRawInput = new PhoneNumber(); - self::$usSpoofWithRawInput->setCountryCode(1)->setNationalNumber(0)->setRawInput("000-000-0000"); - self::$gbMobile = new PhoneNumber(); - self::$gbMobile->setCountryCode(44)->setNationalNumber(7912345678); - self::$gbNumber = new PhoneNumber(); - self::$gbNumber->setCountryCode(44)->setNationalNumber(2070313000); - self::$deShortNumber = new PhoneNumber(); - self::$deShortNumber->setCountryCode(49)->setNationalNumber(1234); - self::$itMobile = new PhoneNumber(); - self::$itMobile->setCountryCode(39)->setNationalNumber(345678901); - self::$itNumber = new PhoneNumber(); - self::$itNumber->setCountryCode(39)->setNationalNumber(236618300)->setItalianLeadingZero(true); - self::$auNumber = new PhoneNumber(); - self::$auNumber->setCountryCode(61)->setNationalNumber(236618300); - self::$arMobile = new PhoneNumber(); - self::$arMobile->setCountryCode(54)->setNationalNumber(91187654321); - self::$arNumber = new PhoneNumber(); - self::$arNumber->setCountryCode(54)->setNationalNumber(1187654321); - - self::$mxMobile1 = new PhoneNumber(); - self::$mxMobile1->setCountryCode(52)->setNationalNumber(12345678900); - self::$mxNumber1 = new PhoneNumber(); - self::$mxNumber1->setCountryCode(52)->setNationalNumber(3312345678); - self::$mxMobile2 = new PhoneNumber(); - self::$mxMobile2->setCountryCode(52)->setNationalNumber(15512345678); - self::$mxNumber2 = new PhoneNumber(); - self::$mxNumber2->setCountryCode(52)->setNationalNumber(8211234567); - // Note that this is the same as the example number for DE in the metadata. - self::$deNumber = new PhoneNumber(); - self::$deNumber->setCountryCode(49)->setNationalNumber(30123456); - self::$jpStarNumber = new PhoneNumber(); - self::$jpStarNumber->setCountryCode(81)->setNationalNumber(2345); - self::$alphaNumericNumber = new PhoneNumber(); - self::$alphaNumericNumber->setCountryCode(1)->setNationalNumber(80074935247); - self::$aeUAN = new PhoneNumber(); - self::$aeUAN->setCountryCode(971)->setNationalNumber(600123456); - self::$unknownCountryCodeNoRawInput = new PhoneNumber(); - self::$unknownCountryCodeNoRawInput->setCountryCode(2)->setNationalNumber(12345); - - PhoneNumberUtil::resetInstance(); - return PhoneNumberUtil::getInstance( - self::TEST_META_DATA_FILE_PREFIX, - CountryCodeToRegionCodeMapForTesting::$countryCodeToRegionCodeMapForTesting - ); - } - - public function testGetSupportedRegions() - { - $this->assertGreaterThan(0, count($this->phoneUtil->getSupportedRegions())); - } - - public function testGetSupportedGlobalNetworkCallingCodes() - { - $globalNetworkCallingCodes = $this->phoneUtil->getSupportedGlobalNetworkCallingCodes(); - - $this->assertGreaterThan(0, count($globalNetworkCallingCodes)); - - foreach ($globalNetworkCallingCodes as $callingCode) { - $this->assertGreaterThan(0, $callingCode); - $this->assertEquals(RegionCode::UN001, $this->phoneUtil->getRegionCodeForCountryCode($callingCode)); - } - } - - public function testGetInstanceLoadBadMetadata() - { - $this->assertNull($this->phoneUtil->getMetadataForRegion("No Such Region")); - $this->assertNull($this->phoneUtil->getMetadataForRegion(-1)); - } - - public function testGetInstanceLoadUSMetadata() - { - $metadata = $this->phoneUtil->getMetadataForRegion(RegionCode::US); - $this->assertEquals("US", $metadata->getId()); - $this->assertEquals(1, $metadata->getCountryCode()); - $this->assertEquals("011", $metadata->getInternationalPrefix()); - $this->assertTrue($metadata->hasNationalPrefix()); - $this->assertEquals(2, $metadata->numberFormatSize()); - $this->assertEquals("(\\d{3})(\\d{3})(\\d{4})", $metadata->getNumberFormat(1)->getPattern()); - $this->assertEquals("$1 $2 $3", $metadata->getNumberFormat(1)->getFormat()); - $this->assertEquals("[13-689]\\d{9}|2[0-35-9]\\d{8}", $metadata->getGeneralDesc()->getNationalNumberPattern()); - $this->assertEquals("\\d{7}(?:\\d{3})?", $metadata->getGeneralDesc()->getPossibleNumberPattern()); - $this->assertTrue($metadata->getGeneralDesc()->exactlySameAs($metadata->getFixedLine())); - $this->assertEquals("\\d{10}", $metadata->getTollFree()->getPossibleNumberPattern()); - $possibleLength = $metadata->getGeneralDesc()->getPossibleLength(); - $this->assertEquals(10, $possibleLength[0]); - // Possible lengths are the same as the general description, so aren't stored separately in the - // toll free element as well. - $this->assertCount(0, $metadata->getTollFree()->getPossibleLength()); - $this->assertEquals("900\\d{7}", $metadata->getPremiumRate()->getNationalNumberPattern()); - // No shared-cost data is available, so it should be initialised to "NA". - $this->assertEquals("NA", $metadata->getSharedCost()->getNationalNumberPattern()); - $this->assertEquals("NA", $metadata->getSharedCost()->getPossibleNumberPattern()); - } - - public function testGetInstanceLoadDEMetadata() - { - $metadata = $this->phoneUtil->getMetadataForRegion(RegionCode::DE); - $this->assertEquals("DE", $metadata->getId()); - $this->assertEquals(49, $metadata->getCountryCode()); - $this->assertEquals("00", $metadata->getInternationalPrefix()); - $this->assertEquals("0", $metadata->getNationalPrefix()); - $this->assertEquals(6, $metadata->numberFormatSize()); - $this->assertEquals(1, $metadata->getNumberFormat(5)->leadingDigitsPatternSize()); - $this->assertEquals("900", $metadata->getNumberFormat(5)->getLeadingDigitsPattern(0)); - $this->assertEquals("(\\d{3})(\\d{3,4})(\\d{4})", $metadata->getNumberFormat(5)->getPattern()); - $this->assertEquals("$1 $2 $3", $metadata->getNumberFormat(5)->getFormat()); - $this->assertCount(2, $metadata->getGeneralDesc()->getPossibleLengthLocalOnly()); - $this->assertCount(8, $metadata->getGeneralDesc()->getPossibleLength()); - // Nothing is present for fixed-line, since it is the same as the general desc, so for - // efficiency reasons we don't store an extra value. - $this->assertCount(0, $metadata->getFixedLine()->getPossibleLength()); - $this->assertCount(2, $metadata->getMobile()->getPossibleLength()); - - $this->assertEquals( - "(?:[24-6]\\d{2}|3[03-9]\\d|[789](?:0[2-9]|[1-9]\\d))\\d{1,8}", - $metadata->getFixedLine()->getNationalNumberPattern() - ); - $this->assertEquals("\\d{2,14}", $metadata->getFixedLine()->getPossibleNumberPattern()); - $this->assertEquals("30123456", $metadata->getFixedLine()->getExampleNumber()); - $this->assertEquals("\\d{10}", $metadata->getTollFree()->getPossibleNumberPattern()); - $this->assertEquals("900([135]\\d{6}|9\\d{7})", $metadata->getPremiumRate()->getNationalNumberPattern()); - } - - public function testGetInstanceLoadARMetadata() - { - $metadata = $this->phoneUtil->getMetadataForRegion(RegionCode::AR); - $this->assertEquals("AR", $metadata->getId()); - $this->assertEquals(54, $metadata->getCountryCode()); - $this->assertEquals("00", $metadata->getInternationalPrefix()); - $this->assertEquals("0", $metadata->getNationalPrefix()); - $this->assertEquals("0(?:(11|343|3715)15)?", $metadata->getNationalPrefixForParsing()); - $this->assertEquals("9$1", $metadata->getNationalPrefixTransformRule()); - $this->assertEquals("$2 15 $3-$4", $metadata->getNumberFormat(2)->getFormat()); - $this->assertEquals("(9)(\\d{4})(\\d{2})(\\d{4})", $metadata->getNumberFormat(3)->getPattern()); - $this->assertEquals("(9)(\\d{4})(\\d{2})(\\d{4})", $metadata->getIntlNumberFormat(3)->getPattern()); - $this->assertEquals("$1 $2 $3 $4", $metadata->getIntlNumberFormat(3)->getFormat()); - } - - public function testGetInstanceLoadInternationalTollFreeMetadata() - { - $metadata = $this->phoneUtil->getMetadataForNonGeographicalRegion(800); - $this->assertEquals("001", $metadata->getId()); - $this->assertEquals(800, $metadata->getCountryCode()); - $this->assertEquals("$1 $2", $metadata->getNumberFormat(0)->getFormat()); - $this->assertEquals("(\\d{4})(\\d{4})", $metadata->getNumberFormat(0)->getPattern()); - $this->assertEquals("12345678", $metadata->getGeneralDesc()->getExampleNumber()); - $this->assertEquals("12345678", $metadata->getTollFree()->getExampleNumber()); - } - - public function testIsNumberGeographical() - { - $this->assertFalse($this->phoneUtil->isNumberGeographical(self::$bsMobile)); // Bahamas, mobile phone number. - $this->assertTrue($this->phoneUtil->isNumberGeographical(self::$auNumber)); // Australian fixed line number. - $this->assertFalse($this->phoneUtil->isNumberGeographical(self::$internationalTollFree)); // International toll - // free number - } - - public function testIsLeadingZeroPossible() - { - $this->assertTrue($this->phoneUtil->isLeadingZeroPossible(39)); // Italy - $this->assertFalse($this->phoneUtil->isLeadingZeroPossible(1)); // USA - $this->assertTrue($this->phoneUtil->isLeadingZeroPossible(800)); // International toll free numbers - $this->assertFalse($this->phoneUtil->isLeadingZeroPossible(979)); // International premium-rate - $this->assertFalse( - $this->phoneUtil->isLeadingZeroPossible(888) - ); // Not in metadata file, just default to false. - } - - public function testGetLengthOfGeographicalAreaCode() - { - // Google MTV, which has area code "650". - $this->assertEquals(3, $this->phoneUtil->getLengthOfGeographicalAreaCode(self::$usNumber)); - - // A North America toll-free number, which has no area code. - $this->assertEquals(0, $this->phoneUtil->getLengthOfGeographicalAreaCode(self::$usTollFree)); - - // Google London, which has area code "20". - $this->assertEquals(2, $this->phoneUtil->getLengthOfGeographicalAreaCode(self::$gbNumber)); - - // A mobile number in the UK does not have an area code (by default, mobile numbers do not, - // unless they have been added to our list of exceptions). - $this->assertEquals(0, $this->phoneUtil->getLengthOfGeographicalAreaCode(self::$gbMobile)); - - // A UK mobile phone, which has no area code. - $this->assertEquals(0, $this->phoneUtil->getLengthOfGeographicalAreaCode(self::$gbMobile)); - - // Google Buenos Aires, which has area code "11". - $this->assertEquals(2, $this->phoneUtil->getLengthOfGeographicalAreaCode(self::$arNumber)); - - // A mobile number in Argentina also has an area code. - $this->assertEquals(3, $this->phoneUtil->getLengthOfGeographicalAreaCode(self::$arMobile)); - - // Google Sydney, which has area code "2". - $this->assertEquals(1, $this->phoneUtil->getLengthOfGeographicalAreaCode(self::$auNumber)); - - // Italian numbers - there is no national prefix, but it still has an area code. - $this->assertEquals(2, $this->phoneUtil->getLengthOfGeographicalAreaCode(self::$itNumber)); - - // Google Singapore. Singapore has no area code and no national prefix. - $this->assertEquals(0, $this->phoneUtil->getLengthOfGeographicalAreaCode(self::$sgNumber)); - - // An invalid US number (1 digit shorter), which has no area code. - $this->assertEquals(0, $this->phoneUtil->getLengthOfGeographicalAreaCode(self::$usShortByOneNumber)); - - // An international toll free number, which has no area code. - $this->assertEquals(0, $this->phoneUtil->getLengthOfGeographicalAreaCode(self::$internationalTollFree)); - - // A mobile number from China is geographical, but does not have an area code. - $cnMobile = new PhoneNumber(); - $cnMobile->setCountryCode(86)->setNationalNumber('18912341234'); - - $this->assertEquals(0, $this->phoneUtil->getLengthOfGeographicalAreaCode($cnMobile)); - } - - public function testGetLengthOfNationalDestinationCode() - { - // Google MTV, which has national destination code (NDC) "650". - $this->assertEquals(3, $this->phoneUtil->getLengthOfNationalDestinationCode(self::$usNumber)); - - // A North America toll-free number, which has NDC "800". - $this->assertEquals(3, $this->phoneUtil->getLengthOfNationalDestinationCode(self::$usTollFree)); - - // Google London, which has NDC "20". - $this->assertEquals(2, $this->phoneUtil->getLengthOfNationalDestinationCode(self::$gbNumber)); - - // A UK mobile phone, which has NDC "7912". - $this->assertEquals(4, $this->phoneUtil->getLengthOfNationalDestinationCode(self::$gbMobile)); - - // Google Buenos Aires, which has NDC "11". - $this->assertEquals(2, $this->phoneUtil->getLengthOfNationalDestinationCode(self::$arNumber)); - - // An Argentinian mobile which has NDC "911". - $this->assertEquals(3, $this->phoneUtil->getLengthOfNationalDestinationCode(self::$arMobile)); - - // Google Sydney, which has NDC "2". - $this->assertEquals(1, $this->phoneUtil->getLengthOfNationalDestinationCode(self::$auNumber)); - - // Google Singapore, which has NDC "6521". - $this->assertEquals(4, $this->phoneUtil->getLengthOfNationalDestinationCode(self::$sgNumber)); - - // An invalid US number (1 digit shorter), which has no NDC. - $this->assertEquals(0, $this->phoneUtil->getLengthOfNationalDestinationCode(self::$usShortByOneNumber)); - - // A number containing an invalid country calling code, which shouldn't have any NDC. - $number = new PhoneNumber(); - $number->setCountryCode(123)->setNationalNumber(6502530000); - $this->assertEquals(0, $this->phoneUtil->getLengthOfNationalDestinationCode($number)); - - // An international toll free number, which has NDC "1234". - $this->assertEquals(4, $this->phoneUtil->getLengthOfNationalDestinationCode(self::$internationalTollFree)); - - // A mobile number from China is geographical, but does not have an area code: however it still - // can be considered to have a national destination code. - $cnMobile= new PhoneNumber(); - $cnMobile->setCountryCode(86)->setNationalNumber('18912341234'); - - $this->assertEquals(3, $this->phoneUtil->getLengthOfNationalDestinationCode($cnMobile)); - } - - public function testGetCountryMobileToken() - { - $this->assertEquals( - "1", - $this->phoneUtil->getCountryMobileToken($this->phoneUtil->getCountryCodeForRegion(RegionCode::MX)) - ); - - // Country calling code for Sweden, which has no mobile token. - $this->assertEquals( - "", - $this->phoneUtil->getCountryMobileToken($this->phoneUtil->getCountryCodeForRegion(RegionCode::SE)) - ); - } - - public function testGetNationalSignificantNumber() - { - $this->assertEquals("6502530000", $this->phoneUtil->getNationalSignificantNumber(self::$usNumber)); - - // An Italian mobile number. - $this->assertEquals("345678901", $this->phoneUtil->getNationalSignificantNumber(self::$itMobile)); - - // An Italian fixed line number. - $this->assertEquals("0236618300", $this->phoneUtil->getNationalSignificantNumber(self::$itNumber)); - - $this->assertEquals("12345678", $this->phoneUtil->getNationalSignificantNumber(self::$internationalTollFree)); - } - - public function testGetExampleNumber() - { - $this->assertEquals(self::$deNumber, $this->phoneUtil->getExampleNumber(RegionCode::DE)); - - $this->assertEquals( - self::$deNumber, - $this->phoneUtil->getExampleNumberForType(RegionCode::DE, PhoneNumberType::FIXED_LINE) - ); - $this->assertEquals(null, $this->phoneUtil->getExampleNumberForType(RegionCode::DE, PhoneNumberType::MOBILE)); - // For the US, the example number is placed under general description, and hence should be used - // for both fixed line and mobile, so neither of these should return null. - $this->assertNotNull($this->phoneUtil->getExampleNumberForType(RegionCode::US, PhoneNumberType::FIXED_LINE)); - $this->assertNotNull($this->phoneUtil->getExampleNumberForType(RegionCode::US, PhoneNumberType::MOBILE)); - // CS is an invalid region, so we have no data for it. - $this->assertNull($this->phoneUtil->getExampleNumberForType(RegionCode::CS, PhoneNumberType::MOBILE)); - // RegionCode 001 is reserved for supporting non-geographical country calling code. We don't - // support getting an example number for it with this method. - $this->assertEquals(null, $this->phoneUtil->getExampleNumber(RegionCode::UN001)); - } - - public function testGetExampleNumberForNonGeoEntity() - { - $this->assertEquals(self::$internationalTollFree, $this->phoneUtil->getExampleNumberForNonGeoEntity(800)); - $this->assertEquals(self::$universalPremiumRate, $this->phoneUtil->getExampleNumberForNonGeoEntity(979)); - } - - public function testConvertAlphaCharactersInNumber() - { - $input = "1800-ABC-DEF"; - // Alpha chars are converted to digits; everything else is left untouched. - $expectedOutput = "1800-222-333"; - $this->assertEquals($expectedOutput, $this->phoneUtil->convertAlphaCharactersInNumber($input)); - } - - public function testNormaliseRemovePunctuation() - { - $inputNumber = "034-56&+#2" . pack('H*', 'c2ad') . "34"; - $expectedOutput = "03456234"; - $this->assertEquals( - $expectedOutput, - $this->phoneUtil->normalize($inputNumber), - "Conversion did not correctly remove punctuation" - ); - } - - public function testNormaliseReplaceAlphaCharacters() - { - $inputNumber = "034-I-am-HUNGRY"; - $expectedOutput = "034426486479"; - $this->assertEquals( - $expectedOutput, - $this->phoneUtil->normalize($inputNumber), - "Conversion did not correctly replace alpha characters" - ); - } - - public function testNormaliseOtherDigits() - { - $inputNumber = "\xEF\xBC\x92" . "5\xD9\xA5" /* "25٥" */ - ; - $expectedOutput = "255"; - $this->assertEquals( - $expectedOutput, - $this->phoneUtil->normalize($inputNumber), - "Conversion did not correctly replace non-latin digits" - ); - // Eastern-Arabic digits. - $inputNumber = "\xDB\xB5" . "2\xDB\xB0" /* "۵2۰" */ - ; - $expectedOutput = "520"; - $this->assertEquals( - $expectedOutput, - $this->phoneUtil->normalize($inputNumber), - "Conversion did not correctly replace non-latin digits" - ); - } - - public function testNormaliseStripAlphaCharacters() - { - $inputNumber = "034-56&+a#234"; - $expectedOutput = "03456234"; - $this->assertEquals( - $expectedOutput, - $this->phoneUtil->normalizeDigitsOnly($inputNumber), - "Conversion did not correctly remove alpha character" - ); - } - - public function testNormaliseStripNonDiallableCharacters() - { - $inputNumber = "03*4-56&+a#234"; - $expectedOutput = "03*456+234"; - $this->assertEquals( - $expectedOutput, - $this->phoneUtil->normalizeDiallableCharsOnly($inputNumber), - "Conversion did not correctly remove non-diallable characters" - ); - } - - public function testFormatUSNumber() - { - $this->assertEquals("650 253 0000", $this->phoneUtil->format(self::$usNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+1 650 253 0000", - $this->phoneUtil->format(self::$usNumber, PhoneNumberFormat::INTERNATIONAL) - ); - - $this->assertEquals("800 253 0000", $this->phoneUtil->format(self::$usTollFree, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+1 800 253 0000", - $this->phoneUtil->format(self::$usTollFree, PhoneNumberFormat::INTERNATIONAL) - ); - - $this->assertEquals("900 253 0000", $this->phoneUtil->format(self::$usPremium, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+1 900 253 0000", - $this->phoneUtil->format(self::$usPremium, PhoneNumberFormat::INTERNATIONAL) - ); - $this->assertEquals( - "tel:+1-900-253-0000", - $this->phoneUtil->format(self::$usPremium, PhoneNumberFormat::RFC3966) - ); - // Numbers with all zeros in the national number part will be formatted by using the raw_input - // if that is available no matter which format is specified. - $this->assertEquals( - "000-000-0000", - $this->phoneUtil->format(self::$usSpoofWithRawInput, PhoneNumberFormat::NATIONAL) - ); - $this->assertEquals("0", $this->phoneUtil->format(self::$usSpoof, PhoneNumberFormat::NATIONAL)); - } - - public function testFormatBSNumber() - { - $this->assertEquals("242 365 1234", $this->phoneUtil->format(self::$bsNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+1 242 365 1234", - $this->phoneUtil->format(self::$bsNumber, PhoneNumberFormat::INTERNATIONAL) - ); - } - - public function testFormatGBNumber() - { - $this->assertEquals("(020) 7031 3000", $this->phoneUtil->format(self::$gbNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+44 20 7031 3000", - $this->phoneUtil->format(self::$gbNumber, PhoneNumberFormat::INTERNATIONAL) - ); - - $this->assertEquals("(07912) 345 678", $this->phoneUtil->format(self::$gbMobile, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+44 7912 345 678", - $this->phoneUtil->format(self::$gbMobile, PhoneNumberFormat::INTERNATIONAL) - ); - } - - public function testFormatDENumber() - { - $deNumber = new PhoneNumber(); - $deNumber->setCountryCode(49)->setNationalNumber(301234); - $this->assertEquals("030/1234", $this->phoneUtil->format($deNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals("+49 30/1234", $this->phoneUtil->format($deNumber, PhoneNumberFormat::INTERNATIONAL)); - $this->assertEquals("tel:+49-30-1234", $this->phoneUtil->format($deNumber, PhoneNumberFormat::RFC3966)); - - $deNumber->clear(); - $deNumber->setCountryCode(49)->setNationalNumber(291123); - $this->assertEquals("0291 123", $this->phoneUtil->format($deNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals("+49 291 123", $this->phoneUtil->format($deNumber, PhoneNumberFormat::INTERNATIONAL)); - - $deNumber->clear(); - $deNumber->setCountryCode(49)->setNationalNumber(29112345678); - $this->assertEquals("0291 12345678", $this->phoneUtil->format($deNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals("+49 291 12345678", $this->phoneUtil->format($deNumber, PhoneNumberFormat::INTERNATIONAL)); - - $deNumber->clear(); - $deNumber->setCountryCode(49)->setNationalNumber(912312345); - $this->assertEquals("09123 12345", $this->phoneUtil->format($deNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals("+49 9123 12345", $this->phoneUtil->format($deNumber, PhoneNumberFormat::INTERNATIONAL)); - $deNumber->clear(); - $deNumber->setCountryCode(49)->setNationalNumber(80212345); - $this->assertEquals("08021 2345", $this->phoneUtil->format($deNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals("+49 8021 2345", $this->phoneUtil->format($deNumber, PhoneNumberFormat::INTERNATIONAL)); - // Note this number is correctly formatted without national prefix. Most of the numbers that - // are treated as invalid numbers by the library are short numbers, and they are usually not - // dialed with national prefix. - $this->assertEquals("1234", $this->phoneUtil->format(self::$deShortNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+49 1234", - $this->phoneUtil->format(self::$deShortNumber, PhoneNumberFormat::INTERNATIONAL) - ); - - $deNumber->clear(); - $deNumber->setCountryCode(49)->setNationalNumber(41341234); - $this->assertEquals("04134 1234", $this->phoneUtil->format($deNumber, PhoneNumberFormat::NATIONAL)); - } - - public function testFormatITNumber() - { - $this->assertEquals("02 3661 8300", $this->phoneUtil->format(self::$itNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+39 02 3661 8300", - $this->phoneUtil->format(self::$itNumber, PhoneNumberFormat::INTERNATIONAL) - ); - $this->assertEquals("+390236618300", $this->phoneUtil->format(self::$itNumber, PhoneNumberFormat::E164)); - - $this->assertEquals("345 678 901", $this->phoneUtil->format(self::$itMobile, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+39 345 678 901", - $this->phoneUtil->format(self::$itMobile, PhoneNumberFormat::INTERNATIONAL) - ); - $this->assertEquals("+39345678901", $this->phoneUtil->format(self::$itMobile, PhoneNumberFormat::E164)); - } - - public function testFormatAUNumber() - { - $this->assertEquals("02 3661 8300", $this->phoneUtil->format(self::$auNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+61 2 3661 8300", - $this->phoneUtil->format(self::$auNumber, PhoneNumberFormat::INTERNATIONAL) - ); - $this->assertEquals("+61236618300", $this->phoneUtil->format(self::$auNumber, PhoneNumberFormat::E164)); - - $auNumber = new PhoneNumber(); - $auNumber->setCountryCode(61)->setNationalNumber(1800123456); - $this->assertEquals("1800 123 456", $this->phoneUtil->format($auNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals("+61 1800 123 456", $this->phoneUtil->format($auNumber, PhoneNumberFormat::INTERNATIONAL)); - $this->assertEquals("+611800123456", $this->phoneUtil->format($auNumber, PhoneNumberFormat::E164)); - } - - public function testFormatARNumber() - { - $this->assertEquals("011 8765-4321", $this->phoneUtil->format(self::$arNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+54 11 8765-4321", - $this->phoneUtil->format(self::$arNumber, PhoneNumberFormat::INTERNATIONAL) - ); - $this->assertEquals("+541187654321", $this->phoneUtil->format(self::$arNumber, PhoneNumberFormat::E164)); - - $this->assertEquals("011 15 8765-4321", $this->phoneUtil->format(self::$arMobile, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+54 9 11 8765 4321", - $this->phoneUtil->format(self::$arMobile, PhoneNumberFormat::INTERNATIONAL) - ); - $this->assertEquals("+5491187654321", $this->phoneUtil->format(self::$arMobile, PhoneNumberFormat::E164)); - } - - public function testFormatMXNumber() - { - $this->assertEquals( - "045 234 567 8900", - $this->phoneUtil->format(self::$mxMobile1, PhoneNumberFormat::NATIONAL) - ); - $this->assertEquals( - "+52 1 234 567 8900", - $this->phoneUtil->format(self::$mxMobile1, PhoneNumberFormat::INTERNATIONAL) - ); - $this->assertEquals("+5212345678900", $this->phoneUtil->format(self::$mxMobile1, PhoneNumberFormat::E164)); - - $this->assertEquals( - "045 55 1234 5678", - $this->phoneUtil->format(self::$mxMobile2, PhoneNumberFormat::NATIONAL) - ); - $this->assertEquals( - "+52 1 55 1234 5678", - $this->phoneUtil->format(self::$mxMobile2, PhoneNumberFormat::INTERNATIONAL) - ); - $this->assertEquals("+5215512345678", $this->phoneUtil->format(self::$mxMobile2, PhoneNumberFormat::E164)); - - $this->assertEquals("01 33 1234 5678", $this->phoneUtil->format(self::$mxNumber1, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+52 33 1234 5678", - $this->phoneUtil->format(self::$mxNumber1, PhoneNumberFormat::INTERNATIONAL) - ); - $this->assertEquals("+523312345678", $this->phoneUtil->format(self::$mxNumber1, PhoneNumberFormat::E164)); - - $this->assertEquals("01 821 123 4567", $this->phoneUtil->format(self::$mxNumber2, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "+52 821 123 4567", - $this->phoneUtil->format(self::$mxNumber2, PhoneNumberFormat::INTERNATIONAL) - ); - $this->assertEquals("+528211234567", $this->phoneUtil->format(self::$mxNumber2, PhoneNumberFormat::E164)); - } - - public function testFormatOutOfCountryCallingNumber() - { - $this->assertEquals( - "00 1 900 253 0000", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$usPremium, RegionCode::DE) - ); - $this->assertEquals( - "1 650 253 0000", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$usNumber, RegionCode::BS) - ); - - $this->assertEquals( - "00 1 650 253 0000", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$usNumber, RegionCode::PL) - ); - - $this->assertEquals( - "011 44 7912 345 678", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$gbMobile, RegionCode::US) - ); - - $this->assertEquals( - "00 49 1234", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$deShortNumber, RegionCode::GB) - ); - // Note this number is correctly formatted without national prefix. Most of the numbers that - // are treated as invalid numbers by the library are short numbers, and they are usually not - // dialed with national prefix. - $this->assertEquals( - "1234", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$deShortNumber, RegionCode::DE) - ); - - $this->assertEquals( - "011 39 02 3661 8300", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$itNumber, RegionCode::US) - ); - $this->assertEquals( - "02 3661 8300", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$itNumber, RegionCode::IT) - ); - $this->assertEquals( - "+39 02 3661 8300", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$itNumber, RegionCode::SG) - ); - - $this->assertEquals( - "6521 8000", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$sgNumber, RegionCode::SG) - ); - - $this->assertEquals( - "011 54 9 11 8765 4321", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$arMobile, RegionCode::US) - ); - $this->assertEquals( - "011 800 1234 5678", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$internationalTollFree, RegionCode::US) - ); - - $arNumberWithExtn = new PhoneNumber(); - $arNumberWithExtn->mergeFrom(self::$arMobile)->setExtension("1234"); - $this->assertEquals( - "011 54 9 11 8765 4321 ext. 1234", - $this->phoneUtil->formatOutOfCountryCallingNumber($arNumberWithExtn, RegionCode::US) - ); - $this->assertEquals( - "0011 54 9 11 8765 4321 ext. 1234", - $this->phoneUtil->formatOutOfCountryCallingNumber($arNumberWithExtn, RegionCode::AU) - ); - $this->assertEquals( - "011 15 8765-4321 ext. 1234", - $this->phoneUtil->formatOutOfCountryCallingNumber($arNumberWithExtn, RegionCode::AR) - ); - } - - public function testFormatOutOfCountryWithInvalidRegion() - { - // AQ/Antarctica isn't a valid region code for phone number formatting, - // so this falls back to intl formatting. - $this->assertEquals( - "+1 650 253 0000", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$usNumber, RegionCode::AQ) - ); - // For region code 001, the out-of-country format always turns into the international format. - $this->assertEquals( - "+1 650 253 0000", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$usNumber, RegionCode::UN001) - ); - } - - public function testFormatOutOfCountryWithPreferredIntlPrefix() - { - // This should use 0011, since that is the preferred international prefix (both 0011 and 0012 - // are accepted as possible international prefixes in our test metadta.) - $this->assertEquals( - "0011 39 02 3661 8300", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$itNumber, RegionCode::AU) - ); - } - - public function testFormatOutOfCountryKeepingAlphaChars() - { - $alphaNumericNumber = new PhoneNumber(); - $alphaNumericNumber->setCountryCode(1)->setNationalNumber(8007493524)->setRawInput("1800 six-flag"); - $this->assertEquals( - "0011 1 800 SIX-FLAG", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::AU) - ); - - $alphaNumericNumber->setRawInput("1-800-SIX-flag"); - $this->assertEquals( - "0011 1 800-SIX-FLAG", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::AU) - ); - - $alphaNumericNumber->setRawInput("Call us from UK: 00 1 800 SIX-flag"); - $this->assertEquals( - "0011 1 800 SIX-FLAG", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::AU) - ); - - $alphaNumericNumber->setRawInput("800 SIX-flag"); - $this->assertEquals( - "0011 1 800 SIX-FLAG", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::AU) - ); - - // Formatting from within the NANPA region. - $this->assertEquals( - "1 800 SIX-FLAG", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::US) - ); - - $this->assertEquals( - "1 800 SIX-FLAG", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::BS) - ); - - // Testing that if the raw input doesn't exist, it is formatted using - // formatOutOfCountryCallingNumber. - $alphaNumericNumber->clearRawInput(); - $this->assertEquals( - "00 1 800 749 3524", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::DE) - ); - - // Testing AU alpha number formatted from Australia. - $alphaNumericNumber->setCountryCode(61)->setNationalNumber(827493524)->setRawInput("+61 82749-FLAG"); - // This number should have the national prefix fixed. - $this->assertEquals( - "082749-FLAG", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::AU) - ); - - $alphaNumericNumber->setRawInput("082749-FLAG"); - $this->assertEquals( - "082749-FLAG", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::AU) - ); - - $alphaNumericNumber->setNationalNumber(18007493524)->setRawInput("1-800-SIX-flag"); - // This number should not have the national prefix prefixed, in accordance with the override for - // this specific formatting rule. - $this->assertEquals( - "1-800-SIX-FLAG", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::AU) - ); - - // The metadata should not be permanently changed, since we copied it before modifying patterns. - // Here we check this. - $alphaNumericNumber->setNationalNumber(1800749352); - $this->assertEquals( - "1800 749 352", - $this->phoneUtil->formatOutOfCountryCallingNumber($alphaNumericNumber, RegionCode::AU) - ); - - // Testing a region with multiple international prefixes. - $this->assertEquals( - "+61 1-800-SIX-FLAG", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::SG) - ); - // Testing the case of calling from a non-supported region. - $this->assertEquals( - "+61 1-800-SIX-FLAG", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::AQ) - ); - - // Testing the case with an invalid country calling code. - $alphaNumericNumber->setCountryCode(0)->setNationalNumber(18007493524)->setRawInput("1-800-SIX-flag"); - // Uses the raw input only. - $this->assertEquals( - "1-800-SIX-flag", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::DE) - ); - - // Testing the case of an invalid alpha number. - $alphaNumericNumber->setCountryCode(1)->setNationalNumber(80749)->setRawInput("180-SIX"); - // No country-code stripping can be done. - $this->assertEquals( - "00 1 180-SIX", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::DE) - ); - - // Testing the case of calling from a non-supported region. - $alphaNumericNumber->setCountryCode(1)->setNationalNumber(80749)->setRawInput("180-SIX"); - // No country-code stripping can be done since the number is invalid. - $this->assertEquals( - "+1 180-SIX", - $this->phoneUtil->formatOutOfCountryKeepingAlphaChars($alphaNumericNumber, RegionCode::AQ) - ); - } - - public function testFormatWithCarrierCode() - { - // We only support this for AR in our test metadata, and only for mobile numbers starting with - // certain values. - $arMobile = new PhoneNumber(); - $arMobile->setCountryCode(54)->setNationalNumber(92234654321); - $this->assertEquals("02234 65-4321", $this->phoneUtil->format($arMobile, PhoneNumberFormat::NATIONAL)); - // Here we force 14 as the carrier code. - $this->assertEquals( - "02234 14 65-4321", - $this->phoneUtil->formatNationalNumberWithCarrierCode($arMobile, "14") - ); - // Here we force the number to be shown with no carrier code. - $this->assertEquals( - "02234 65-4321", - $this->phoneUtil->formatNationalNumberWithCarrierCode($arMobile, "") - ); - // Here the international rule is used, so no carrier code should be present. - $this->assertEquals("+5492234654321", $this->phoneUtil->format($arMobile, PhoneNumberFormat::E164)); - // We don't support this for the US so there should be no change. - $this->assertEquals( - "650 253 0000", - $this->phoneUtil->formatNationalNumberWithCarrierCode(self::$usNumber, "15") - ); - - // Invalid country code should just get the NSN. - $this->assertEquals( - "12345", - $this->phoneUtil->formatNationalNumberWithCarrierCode(self::$unknownCountryCodeNoRawInput, "89") - ); - } - - public function testFormatWithPreferredCarrierCode() - { - // We only support this for AR in our test metadata. - $arNumber = new PhoneNumber(); - $arNumber->setCountryCode(54)->setNationalNumber(91234125678); - // Test formatting with no preferred carrier code stored in the number itself. - $this->assertEquals( - "01234 15 12-5678", - $this->phoneUtil->formatNationalNumberWithPreferredCarrierCode($arNumber, "15") - ); - $this->assertEquals( - "01234 12-5678", - $this->phoneUtil->formatNationalNumberWithPreferredCarrierCode($arNumber, "") - ); - // Test formatting with preferred carrier code present. - $arNumber->setPreferredDomesticCarrierCode("19"); - $this->assertEquals("01234 12-5678", $this->phoneUtil->format($arNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "01234 19 12-5678", - $this->phoneUtil->formatNationalNumberWithPreferredCarrierCode($arNumber, "15") - ); - $this->assertEquals( - "01234 19 12-5678", - $this->phoneUtil->formatNationalNumberWithPreferredCarrierCode($arNumber, "") - ); - // When the preferred_domestic_carrier_code is present (even when it contains an empty string), - // use it instead of the default carrier code passed in. - $arNumber->setPreferredDomesticCarrierCode(""); - $this->assertEquals( - "01234 12-5678", - $this->phoneUtil->formatNationalNumberWithPreferredCarrierCode($arNumber, "15") - ); - // We don't support this for the US so there should be no change. - $usNumber = new PhoneNumber(); - $usNumber->setCountryCode(1)->setNationalNumber(4241231234)->setPreferredDomesticCarrierCode("99"); - $this->assertEquals("424 123 1234", $this->phoneUtil->format($usNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals( - "424 123 1234", - $this->phoneUtil->formatNationalNumberWithPreferredCarrierCode($usNumber, "15") - ); - } - - public function testFormatNumberForMobileDialing() - { - // Numbers are normally dialed in national format in-country, and international format from - // outside the country. - $this->assertEquals( - "030123456", - $this->phoneUtil->formatNumberForMobileDialing(self::$deNumber, RegionCode::DE, false) - ); - $this->assertEquals( - "+4930123456", - $this->phoneUtil->formatNumberForMobileDialing(self::$deNumber, RegionCode::CH, false) - ); - $this->assertEquals( - "+4930123456", - $this->phoneUtil->formatNumberForMobileDialing(self::$deNumber, RegionCode::CH, false) - ); - $deNumberWithExtn = new PhoneNumber(); - $deNumberWithExtn->mergeFrom(self::$deNumber)->setExtension("1234"); - $this->assertEquals( - "030123456", - $this->phoneUtil->formatNumberForMobileDialing($deNumberWithExtn, RegionCode::DE, false) - ); - $this->assertEquals( - "+4930123456", - $this->phoneUtil->formatNumberForMobileDialing($deNumberWithExtn, RegionCode::CH, false) - ); - - // US toll free numbers are marked as noInternationalDialling in the test metadata for testing - // purposes. For such numbers, we expect nothing to be returned when the region code is not the - // same one. - $this->assertEquals( - "800 253 0000", - $this->phoneUtil->formatNumberForMobileDialing( - self::$usTollFree, - RegionCode::US, - true /* keep formatting */ - ) - ); - $this->assertEquals( - "", - $this->phoneUtil->formatNumberForMobileDialing(self::$usTollFree, RegionCode::CN, true) - ); - $this->assertEquals( - "+1 650 253 0000", - $this->phoneUtil->formatNumberForMobileDialing(self::$usNumber, RegionCode::US, true) - ); - $usNumberWithExtn = new PhoneNumber(); - $usNumberWithExtn->mergeFrom(self::$usNumber)->setExtension("1234"); - $this->assertEquals( - "+1 650 253 0000", - $this->phoneUtil->formatNumberForMobileDialing($usNumberWithExtn, RegionCode::US, true) - ); - - $this->assertEquals( - "8002530000", - $this->phoneUtil->formatNumberForMobileDialing( - self::$usTollFree, - RegionCode::US, - false /* remove formatting */ - ) - ); - $this->assertEquals( - "", - $this->phoneUtil->formatNumberForMobileDialing(self::$usTollFree, RegionCode::CN, false) - ); - $this->assertEquals( - "+16502530000", - $this->phoneUtil->formatNumberForMobileDialing(self::$usNumber, RegionCode::US, false) - ); - $this->assertEquals( - "+16502530000", - $this->phoneUtil->formatNumberForMobileDialing($usNumberWithExtn, RegionCode::US, false) - ); - - // An invalid US number, which is one digit too long. - $this->assertEquals( - "+165025300001", - $this->phoneUtil->formatNumberForMobileDialing(self::$usLongNumber, RegionCode::US, false) - ); - $this->assertEquals( - "+1 65025300001", - $this->phoneUtil->formatNumberForMobileDialing(self::$usLongNumber, RegionCode::US, true) - ); - - // Star numbers. In real life they appear in Israel, but we have them in JP in our test - // metadata. - $this->assertEquals( - "*2345", - $this->phoneUtil->formatNumberForMobileDialing(self::$jpStarNumber, RegionCode::JP, false) - ); - $this->assertEquals( - "*2345", - $this->phoneUtil->formatNumberForMobileDialing(self::$jpStarNumber, RegionCode::JP, true) - ); - - $this->assertEquals( - "+80012345678", - $this->phoneUtil->formatNumberForMobileDialing(self::$internationalTollFree, RegionCode::JP, false) - ); - $this->assertEquals( - "+800 1234 5678", - $this->phoneUtil->formatNumberForMobileDialing(self::$internationalTollFree, RegionCode::JP, true) - ); - - // UAE numbers beginning with 600 (classified as UAN) need to be dialled without +971 locally. - $this->assertEquals( - "+971600123456", - $this->phoneUtil->formatNumberForMobileDialing(self::$aeUAN, RegionCode::JP, false) - ); - $this->assertEquals( - "600123456", - $this->phoneUtil->formatNumberForMobileDialing(self::$aeUAN, RegionCode::AE, false) - ); - - $this->assertEquals( - "+523312345678", - $this->phoneUtil->formatNumberForMobileDialing(self::$mxNumber1, RegionCode::MX, false) - ); - $this->assertEquals( - "+523312345678", - $this->phoneUtil->formatNumberForMobileDialing(self::$mxNumber1, RegionCode::US, false) - ); - - // Non-geographical numbers should always be dialed in international format. - $this->assertEquals( - "+80012345678", - $this->phoneUtil->formatNumberForMobileDialing(self::$internationalTollFree, RegionCode::US, false) - ); - $this->assertEquals( - "+80012345678", - $this->phoneUtil->formatNumberForMobileDialing(self::$internationalTollFree, RegionCode::UN001, false) - ); - - // Test that a short number is formatted correctly for mobile dialing within the region, - // and is not diallable from outside the region. - $deShortNumber = new PhoneNumber(); - $deShortNumber->setCountryCode(49)->setNationalNumber(123); - $this->assertEquals( - "123", - $this->phoneUtil->formatNumberForMobileDialing($deShortNumber, RegionCode::DE, false) - ); - $this->assertEquals("", $this->phoneUtil->formatNumberForMobileDialing($deShortNumber, RegionCode::IT, false)); - - // Test the special logic for Hungary, where the national prefix must be added before dialing - // from a mobile phone for regular length numbers, but not for short numbers. - $huRegularNumber = new PhoneNumber(); - $huRegularNumber->setCountryCode(36)->setNationalNumber(301234567); - $this->assertEquals( - "06301234567", - $this->phoneUtil->formatNumberForMobileDialing($huRegularNumber, RegionCode::HU, false) - ); - $this->assertEquals( - "+36301234567", - $this->phoneUtil->formatNumberForMobileDialing($huRegularNumber, RegionCode::JP, false) - ); - $huShortNumber = new PhoneNumber(); - $huShortNumber->setCountryCode(36)->setNationalNumber(104); - $this->assertEquals( - "104", - $this->phoneUtil->formatNumberForMobileDialing($huShortNumber, RegionCode::HU, false) - ); - $this->assertEquals("", $this->phoneUtil->formatNumberForMobileDialing($huShortNumber, RegionCode::JP, false)); - - // Test the special logic for NANPA countries, for which regular length phone numbers are always - // output in international format, but short numbers are in national format. - $this->assertEquals( - "+16502530000", - $this->phoneUtil->formatNumberForMobileDialing(self::$usNumber, RegionCode::US, false) - ); - $this->assertEquals( - "+16502530000", - $this->phoneUtil->formatNumberForMobileDialing(self::$usNumber, RegionCode::CA, false) - ); - $this->assertEquals( - "+16502530000", - $this->phoneUtil->formatNumberForMobileDialing(self::$usNumber, RegionCode::BR, false) - ); - $usShortNumber = new PhoneNumber(); - $usShortNumber->setCountryCode(1)->setNationalNumber(911); - $this->assertEquals( - "911", - $this->phoneUtil->formatNumberForMobileDialing($usShortNumber, RegionCode::US, false) - ); - $this->assertEquals("", $this->phoneUtil->formatNumberForMobileDialing($usShortNumber, RegionCode::CA, false)); - $this->assertEquals("", $this->phoneUtil->formatNumberForMobileDialing($usShortNumber, RegionCode::BR, false)); - - // Test that the Australian emergency number 000 is formatted correctly. - $auNumber = new PhoneNumber(); - $auNumber->setCountryCode(61)->setNationalNumber(0)->setItalianLeadingZero(true)->setNumberOfLeadingZeros(2); - $this->assertEquals("000", $this->phoneUtil->formatNumberForMobileDialing($auNumber, RegionCode::AU, false)); - $this->assertEquals("", $this->phoneUtil->formatNumberForMobileDialing($auNumber, RegionCode::NZ, false)); - } - - public function testFormatByPattern() - { - $newNumFormat = new NumberFormat(); - $newNumFormat->setPattern("(\\d{3})(\\d{3})(\\d{4})"); - $newNumFormat->setFormat("($1) $2-$3"); - $newNumberFormats = array(); - $newNumberFormats[] = $newNumFormat; - - $this->assertEquals( - "(650) 253-0000", - $this->phoneUtil->formatByPattern( - self::$usNumber, - PhoneNumberFormat::NATIONAL, - $newNumberFormats - ) - ); - $this->assertEquals( - "+1 (650) 253-0000", - $this->phoneUtil->formatByPattern( - self::$usNumber, - PhoneNumberFormat::INTERNATIONAL, - $newNumberFormats - ) - ); - $this->assertEquals( - "tel:+1-650-253-0000", - $this->phoneUtil->formatByPattern( - self::$usNumber, - PhoneNumberFormat::RFC3966, - $newNumberFormats - ) - ); - - // $NP is set to '1' for the US. Here we check that for other NANPA countries the US rules are - // followed. - $newNumFormat->setNationalPrefixFormattingRule('$NP ($FG)'); - $newNumFormat->setFormat("$1 $2-$3"); - $this->assertEquals( - "1 (242) 365-1234", - $this->phoneUtil->formatByPattern( - self::$bsNumber, - PhoneNumberFormat::NATIONAL, - $newNumberFormats - ) - ); - $this->assertEquals( - "+1 242 365-1234", - $this->phoneUtil->formatByPattern( - self::$bsNumber, - PhoneNumberFormat::INTERNATIONAL, - $newNumberFormats - ) - ); - - $newNumFormat->setPattern("(\\d{2})(\\d{5})(\\d{3})"); - $newNumFormat->setFormat("$1-$2 $3"); - $newNumberFormats[0] = $newNumFormat; - - $this->assertEquals( - "02-36618 300", - $this->phoneUtil->formatByPattern( - self::$itNumber, - PhoneNumberFormat::NATIONAL, - $newNumberFormats - ) - ); - $this->assertEquals( - "+39 02-36618 300", - $this->phoneUtil->formatByPattern( - self::$itNumber, - PhoneNumberFormat::INTERNATIONAL, - $newNumberFormats - ) - ); - - $newNumFormat->setNationalPrefixFormattingRule('$NP$FG'); - $newNumFormat->setPattern("(\\d{2})(\\d{4})(\\d{4})"); - $newNumFormat->setFormat("$1 $2 $3"); - $newNumberFormats[0] = $newNumFormat; - $this->assertEquals( - "020 7031 3000", - $this->phoneUtil->formatByPattern( - self::$gbNumber, - PhoneNumberFormat::NATIONAL, - $newNumberFormats - ) - ); - - $newNumFormat->setNationalPrefixFormattingRule('($NP$FG)'); - $this->assertEquals( - "(020) 7031 3000", - $this->phoneUtil->formatByPattern( - self::$gbNumber, - PhoneNumberFormat::NATIONAL, - $newNumberFormats - ) - ); - - $newNumFormat->setNationalPrefixFormattingRule(""); - $this->assertEquals( - "20 7031 3000", - $this->phoneUtil->formatByPattern( - self::$gbNumber, - PhoneNumberFormat::NATIONAL, - $newNumberFormats - ) - ); - - $this->assertEquals( - "+44 20 7031 3000", - $this->phoneUtil->formatByPattern( - self::$gbNumber, - PhoneNumberFormat::INTERNATIONAL, - $newNumberFormats - ) - ); - } - - public function testFormatE164Number() - { - $this->assertEquals("+16502530000", $this->phoneUtil->format(self::$usNumber, PhoneNumberFormat::E164)); - $this->assertEquals("+4930123456", $this->phoneUtil->format(self::$deNumber, PhoneNumberFormat::E164)); - $this->assertEquals( - "+80012345678", - $this->phoneUtil->format(self::$internationalTollFree, PhoneNumberFormat::E164) - ); - } - - public function testFormatNumberWithExtension() - { - $nzNumber = new PhoneNumber(); - $nzNumber->mergeFrom(self::$nzNumber)->setExtension("1234"); - // Uses default extension prefix: - $this->assertEquals("03-331 6005 ext. 1234", $this->phoneUtil->format($nzNumber, PhoneNumberFormat::NATIONAL)); - // Uses RFC 3966 syntax. - $this->assertEquals( - "tel:+64-3-331-6005;ext=1234", - $this->phoneUtil->format($nzNumber, PhoneNumberFormat::RFC3966) - ); - // Extension prefix overridden in the territory information for the US: - $usNumberWithExtension = new PhoneNumber(); - $usNumberWithExtension->mergeFrom(self::$usNumber)->setExtension("4567"); - $this->assertEquals( - "650 253 0000 extn. 4567", - $this->phoneUtil->format($usNumberWithExtension, PhoneNumberFormat::NATIONAL) - ); - } - - public function testFormatInOriginalFormat() - { - $number1 = $this->phoneUtil->parseAndKeepRawInput("+442087654321", RegionCode::GB); - $this->assertEquals("+44 20 8765 4321", $this->phoneUtil->formatInOriginalFormat($number1, RegionCode::GB)); - - $number2 = $this->phoneUtil->parseAndKeepRawInput("02087654321", RegionCode::GB); - $this->assertEquals("(020) 8765 4321", $this->phoneUtil->formatInOriginalFormat($number2, RegionCode::GB)); - - $number3 = $this->phoneUtil->parseAndKeepRawInput("011442087654321", RegionCode::US); - $this->assertEquals("011 44 20 8765 4321", $this->phoneUtil->formatInOriginalFormat($number3, RegionCode::US)); - - $number4 = $this->phoneUtil->parseAndKeepRawInput("442087654321", RegionCode::GB); - $this->assertEquals("44 20 8765 4321", $this->phoneUtil->formatInOriginalFormat($number4, RegionCode::GB)); - - $number5 = $this->phoneUtil->parse("+442087654321", RegionCode::GB); - $this->assertEquals("(020) 8765 4321", $this->phoneUtil->formatInOriginalFormat($number5, RegionCode::GB)); - - // Invalid numbers that we have a formatting pattern for should be formatted properly. Note area - // codes starting with 7 are intentionally excluded in the test metadata for testing purposes. - $number6 = $this->phoneUtil->parseAndKeepRawInput("7345678901", RegionCode::US); - $this->assertEquals("734 567 8901", $this->phoneUtil->formatInOriginalFormat($number6, RegionCode::US)); - - // US is not a leading zero country, and the presence of the leading zero leads us to format the - // number using raw_input. - $number7 = $this->phoneUtil->parseAndKeepRawInput("0734567 8901", RegionCode::US); - $this->assertEquals("0734567 8901", $this->phoneUtil->formatInOriginalFormat($number7, RegionCode::US)); - - // This number is valid, but we don't have a formatting pattern for it. Fall back to the raw - // input. - $number8 = $this->phoneUtil->parseAndKeepRawInput("02-4567-8900", RegionCode::KR); - $this->assertEquals("02-4567-8900", $this->phoneUtil->formatInOriginalFormat($number8, RegionCode::KR)); - - $number9 = $this->phoneUtil->parseAndKeepRawInput("01180012345678", RegionCode::US); - $this->assertEquals("011 800 1234 5678", $this->phoneUtil->formatInOriginalFormat($number9, RegionCode::US)); - - $number10 = $this->phoneUtil->parseAndKeepRawInput("+80012345678", RegionCode::KR); - $this->assertEquals("+800 1234 5678", $this->phoneUtil->formatInOriginalFormat($number10, RegionCode::KR)); - - // US local numbers are formatted correctly, as we have formatting patterns for them. - $localNumberUS = $this->phoneUtil->parseAndKeepRawInput("2530000", RegionCode::US); - $this->assertEquals("253 0000", $this->phoneUtil->formatInOriginalFormat($localNumberUS, RegionCode::US)); - - $numberWithNationalPrefixUS = - $this->phoneUtil->parseAndKeepRawInput("18003456789", RegionCode::US); - $this->assertEquals( - "1 800 345 6789", - $this->phoneUtil->formatInOriginalFormat($numberWithNationalPrefixUS, RegionCode::US) - ); - - $numberWithoutNationalPrefixGB = - $this->phoneUtil->parseAndKeepRawInput("2087654321", RegionCode::GB); - $this->assertEquals( - "20 8765 4321", - $this->phoneUtil->formatInOriginalFormat($numberWithoutNationalPrefixGB, RegionCode::GB) - ); - // Make sure no metadata is modified as a result of the previous function call. - $this->assertEquals("(020) 8765 4321", $this->phoneUtil->formatInOriginalFormat($number5, RegionCode::GB)); - - $numberWithNationalPrefixMX = - $this->phoneUtil->parseAndKeepRawInput("013312345678", RegionCode::MX); - $this->assertEquals( - "01 33 1234 5678", - $this->phoneUtil->formatInOriginalFormat($numberWithNationalPrefixMX, RegionCode::MX) - ); - - $numberWithoutNationalPrefixMX = - $this->phoneUtil->parseAndKeepRawInput("3312345678", RegionCode::MX); - $this->assertEquals( - "33 1234 5678", - $this->phoneUtil->formatInOriginalFormat($numberWithoutNationalPrefixMX, RegionCode::MX) - ); - - $italianFixedLineNumber = - $this->phoneUtil->parseAndKeepRawInput("0212345678", RegionCode::IT); - $this->assertEquals( - "02 1234 5678", - $this->phoneUtil->formatInOriginalFormat($italianFixedLineNumber, RegionCode::IT) - ); - - $numberWithNationalPrefixJP = - $this->phoneUtil->parseAndKeepRawInput("00777012", RegionCode::JP); - $this->assertEquals( - "0077-7012", - $this->phoneUtil->formatInOriginalFormat($numberWithNationalPrefixJP, RegionCode::JP) - ); - - $numberWithoutNationalPrefixJP = - $this->phoneUtil->parseAndKeepRawInput("0777012", RegionCode::JP); - $this->assertEquals( - "0777012", - $this->phoneUtil->formatInOriginalFormat($numberWithoutNationalPrefixJP, RegionCode::JP) - ); - - $numberWithCarrierCodeBR = - $this->phoneUtil->parseAndKeepRawInput("012 3121286979", RegionCode::BR); - $this->assertEquals( - "012 3121286979", - $this->phoneUtil->formatInOriginalFormat($numberWithCarrierCodeBR, RegionCode::BR) - ); - - // The default national prefix used in this case is 045. When a number with national prefix 044 - // is entered, we return the raw input as we don't want to change the number entered. - $numberWithNationalPrefixMX1 = - $this->phoneUtil->parseAndKeepRawInput("044(33)1234-5678", RegionCode::MX); - $this->assertEquals( - "044(33)1234-5678", - $this->phoneUtil->formatInOriginalFormat($numberWithNationalPrefixMX1, RegionCode::MX) - ); - - $numberWithNationalPrefixMX2 = - $this->phoneUtil->parseAndKeepRawInput("045(33)1234-5678", RegionCode::MX); - $this->assertEquals( - "045 33 1234 5678", - $this->phoneUtil->formatInOriginalFormat($numberWithNationalPrefixMX2, RegionCode::MX) - ); - - // The default international prefix used in this case is 0011. When a number with international - // prefix 0012 is entered, we return the raw input as we don't want to change the number - // entered. - $outOfCountryNumberFromAU1 = - $this->phoneUtil->parseAndKeepRawInput("0012 16502530000", RegionCode::AU); - $this->assertEquals( - "0012 16502530000", - $this->phoneUtil->formatInOriginalFormat($outOfCountryNumberFromAU1, RegionCode::AU) - ); - - $outOfCountryNumberFromAU2 = - $this->phoneUtil->parseAndKeepRawInput("0011 16502530000", RegionCode::AU); - $this->assertEquals( - "0011 1 650 253 0000", - $this->phoneUtil->formatInOriginalFormat($outOfCountryNumberFromAU2, RegionCode::AU) - ); - - // Test the star sign is not removed from or added to the original input by this method. - $starNumber = $this->phoneUtil->parseAndKeepRawInput("*1234", RegionCode::JP); - $this->assertEquals("*1234", $this->phoneUtil->formatInOriginalFormat($starNumber, RegionCode::JP)); - $numberWithoutStar = $this->phoneUtil->parseAndKeepRawInput("1234", RegionCode::JP); - $this->assertEquals("1234", $this->phoneUtil->formatInOriginalFormat($numberWithoutStar, RegionCode::JP)); - - // Test an invalid national number without raw input is just formatted as the national number. - $this->assertEquals( - "650253000", - $this->phoneUtil->formatInOriginalFormat(self::$usShortByOneNumber, RegionCode::US) - ); - } - - public function testIsPremiumRate() - { - $this->assertEquals(PhoneNumberType::PREMIUM_RATE, $this->phoneUtil->getNumberType(self::$usPremium)); - - $premiumRateNumber = new PhoneNumber(); - $premiumRateNumber->setCountryCode(39)->setNationalNumber(892123); - $this->assertEquals( - PhoneNumberType::PREMIUM_RATE, - $this->phoneUtil->getNumberType($premiumRateNumber) - ); - - $premiumRateNumber->clear(); - $premiumRateNumber->setCountryCode(44)->setNationalNumber(9187654321); - $this->assertEquals( - PhoneNumberType::PREMIUM_RATE, - $this->phoneUtil->getNumberType($premiumRateNumber) - ); - - $premiumRateNumber->clear(); - $premiumRateNumber->setCountryCode(49)->setNationalNumber(9001654321); - $this->assertEquals( - PhoneNumberType::PREMIUM_RATE, - $this->phoneUtil->getNumberType($premiumRateNumber) - ); - - $premiumRateNumber->clear(); - $premiumRateNumber->setCountryCode(49)->setNationalNumber(90091234567); - $this->assertEquals( - PhoneNumberType::PREMIUM_RATE, - $this->phoneUtil->getNumberType($premiumRateNumber) - ); - } - - public function testIsTollFree() - { - $tollFreeNumber = new PhoneNumber(); - - $tollFreeNumber->setCountryCode(1)->setNationalNumber(8881234567); - $this->assertEquals( - PhoneNumberType::TOLL_FREE, - $this->phoneUtil->getNumberType($tollFreeNumber) - ); - - $tollFreeNumber->clear(); - $tollFreeNumber->setCountryCode(39)->setNationalNumber(803123); - $this->assertEquals( - PhoneNumberType::TOLL_FREE, - $this->phoneUtil->getNumberType($tollFreeNumber) - ); - - $tollFreeNumber->clear(); - $tollFreeNumber->setCountryCode(44)->setNationalNumber(8012345678); - $this->assertEquals( - PhoneNumberType::TOLL_FREE, - $this->phoneUtil->getNumberType($tollFreeNumber) - ); - - $tollFreeNumber->clear(); - $tollFreeNumber->setCountryCode(49)->setNationalNumber(8001234567); - $this->assertEquals( - PhoneNumberType::TOLL_FREE, - $this->phoneUtil->getNumberType($tollFreeNumber) - ); - - $this->assertEquals( - PhoneNumberType::TOLL_FREE, - $this->phoneUtil->getNumberType(self::$internationalTollFree) - ); - } - - public function testIsMobile() - { - $this->assertEquals(PhoneNumberType::MOBILE, $this->phoneUtil->getNumberType(self::$bsMobile)); - $this->assertEquals(PhoneNumberType::MOBILE, $this->phoneUtil->getNumberType(self::$gbMobile)); - $this->assertEquals(PhoneNumberType::MOBILE, $this->phoneUtil->getNumberType(self::$itMobile)); - $this->assertEquals(PhoneNumberType::MOBILE, $this->phoneUtil->getNumberType(self::$arMobile)); - - $mobileNumber = new PhoneNumber(); - $mobileNumber->setCountryCode(49)->setNationalNumber(15123456789); - $this->assertEquals(PhoneNumberType::MOBILE, $this->phoneUtil->getNumberType($mobileNumber)); - } - - public function testIsFixedLine() - { - $this->assertEquals(PhoneNumberType::FIXED_LINE, $this->phoneUtil->getNumberType(self::$bsNumber)); - $this->assertEquals(PhoneNumberType::FIXED_LINE, $this->phoneUtil->getNumberType(self::$itNumber)); - $this->assertEquals(PhoneNumberType::FIXED_LINE, $this->phoneUtil->getNumberType(self::$gbNumber)); - $this->assertEquals(PhoneNumberType::FIXED_LINE, $this->phoneUtil->getNumberType(self::$deNumber)); - } - - public function testIsFixedLineAndMobile() - { - $this->assertEquals(PhoneNumberType::FIXED_LINE_OR_MOBILE, $this->phoneUtil->getNumberType(self::$usNumber)); - - $fixedLineAndMobileNumber = new PhoneNumber(); - $fixedLineAndMobileNumber->setCountryCode(54)->setNationalNumber(1987654321); - $this->assertEquals( - PhoneNumberType::FIXED_LINE_OR_MOBILE, - $this->phoneUtil->getNumberType($fixedLineAndMobileNumber) - ); - } - - public function testIsSharedCost() - { - $gbNumber = new PhoneNumber(); - $gbNumber->setCountryCode(44)->setNationalNumber(8431231234); - $this->assertEquals(PhoneNumberType::SHARED_COST, $this->phoneUtil->getNumberType($gbNumber)); - } - - public function testIsVoip() - { - $gbNumber = new PhoneNumber(); - $gbNumber->setCountryCode(44)->setNationalNumber(5631231234); - $this->assertEquals(PhoneNumberType::VOIP, $this->phoneUtil->getNumberType($gbNumber)); - } - - public function testIsPersonalNumber() - { - $gbNumber = new PhoneNumber(); - $gbNumber->setCountryCode(44)->setNationalNumber(7031231234); - $this->assertEquals(PhoneNumberType::PERSONAL_NUMBER, $this->phoneUtil->getNumberType($gbNumber)); - } - - public function testIsUnknown() - { - // Invalid numbers should be of type UNKNOWN. - $this->assertEquals(PhoneNumberType::UNKNOWN, $this->phoneUtil->getNumberType(self::$usLocalNumber)); - } - - public function testIsValidNumber() - { - $this->assertTrue($this->phoneUtil->isValidNumber(self::$usNumber)); - $this->assertTrue($this->phoneUtil->isValidNumber(self::$itNumber)); - $this->assertTrue($this->phoneUtil->isValidNumber(self::$gbMobile)); - $this->assertTrue($this->phoneUtil->isValidNumber(self::$internationalTollFree)); - $this->assertTrue($this->phoneUtil->isValidNumber(self::$universalPremiumRate)); - - $nzNumber = new PhoneNumber(); - $nzNumber->setCountryCode(64)->setNationalNumber(21387835); - $this->assertTrue($this->phoneUtil->isValidNumber($nzNumber)); - } - - public function testIsValidForRegion() - { - // This number is valid for the Bahamas, but is not a valid US number. - $this->assertTrue($this->phoneUtil->isValidNumber(self::$bsNumber)); - $this->assertTrue($this->phoneUtil->isValidNumberForRegion(self::$bsNumber, RegionCode::BS)); - $this->assertFalse($this->phoneUtil->isValidNumberForRegion(self::$bsNumber, RegionCode::US)); - $bsInvalidNumber = new PhoneNumber(); - $bsInvalidNumber->setCountryCode(1)->setNationalNumber(2421232345); - // This number is no longer valid. - $this->assertFalse($this->phoneUtil->isValidNumber($bsInvalidNumber)); - - // La Mayotte and Reunion use 'leadingDigits' to differentiate them. - $reNumber = new PhoneNumber(); - $reNumber->setCountryCode(262)->setNationalNumber(262123456); - $this->assertTrue($this->phoneUtil->isValidNumber($reNumber)); - $this->assertTrue($this->phoneUtil->isValidNumberForRegion($reNumber, RegionCode::RE)); - $this->assertFalse($this->phoneUtil->isValidNumberForRegion($reNumber, RegionCode::YT)); - // Now change the number to be a number for La Mayotte. - $reNumber->setNationalNumber(269601234); - $this->assertTrue($this->phoneUtil->isValidNumberForRegion($reNumber, RegionCode::YT)); - $this->assertFalse($this->phoneUtil->isValidNumberForRegion($reNumber, RegionCode::RE)); - // This number is no longer valid for La Reunion. - $reNumber->setNationalNumber(269123456); - $this->assertFalse($this->phoneUtil->isValidNumberForRegion($reNumber, RegionCode::YT)); - $this->assertFalse($this->phoneUtil->isValidNumberForRegion($reNumber, RegionCode::RE)); - $this->assertFalse($this->phoneUtil->isValidNumber($reNumber)); - // However, it should be recognised as from La Mayotte, since it is valid for this region. - $this->assertEquals(RegionCode::YT, $this->phoneUtil->getRegionCodeForNumber($reNumber)); - // This number is valid in both places. - $reNumber->setNationalNumber(800123456); - $this->assertTrue($this->phoneUtil->isValidNumberForRegion($reNumber, RegionCode::YT)); - $this->assertTrue($this->phoneUtil->isValidNumberForRegion($reNumber, RegionCode::RE)); - $this->assertTrue($this->phoneUtil->isValidNumberForRegion(self::$internationalTollFree, RegionCode::UN001)); - $this->assertFalse($this->phoneUtil->isValidNumberForRegion(self::$internationalTollFree, RegionCode::US)); - $this->assertFalse($this->phoneUtil->isValidNumberForRegion(self::$internationalTollFree, RegionCode::ZZ)); - - $invalidNumber = new PhoneNumber(); - // Invalid country calling codes. - $invalidNumber->setCountryCode(3923)->setNationalNumber(2366); - $this->assertFalse($this->phoneUtil->isValidNumberForRegion($invalidNumber, RegionCode::ZZ)); - $this->assertFalse($this->phoneUtil->isValidNumberForRegion($invalidNumber, RegionCode::UN001)); - $invalidNumber->setCountryCode(0); - $this->assertFalse($this->phoneUtil->isValidNumberForRegion($invalidNumber, RegionCode::UN001)); - $this->assertFalse($this->phoneUtil->isValidNumberForRegion($invalidNumber, RegionCode::ZZ)); - } - - public function testIsNotValidNumber() - { - $this->assertFalse($this->phoneUtil->isValidNumber(self::$usLocalNumber)); - - $invalidNumber = new PhoneNumber(); - $invalidNumber->setCountryCode(39)->setNationalNumber(23661830000)->setItalianLeadingZero(true); - $this->assertFalse($this->phoneUtil->isValidNumber($invalidNumber)); - - $invalidNumber->clear(); - $invalidNumber->setCountryCode(44)->setNationalNumber(791234567); - $this->assertFalse($this->phoneUtil->isValidNumber($invalidNumber)); - - $invalidNumber->clear(); - $invalidNumber->setCountryCode(49)->setNationalNumber(1234); - $this->assertFalse($this->phoneUtil->isValidNumber($invalidNumber)); - - $invalidNumber->clear(); - $invalidNumber->setCountryCode(64)->setNationalNumber(3316005); - $this->assertFalse($this->phoneUtil->isValidNumber($invalidNumber)); - - $invalidNumber->clear(); - // Invalid country calling codes. - $invalidNumber->setCountryCode(3923)->setNationalNumber(2366); - $this->assertFalse($this->phoneUtil->isValidNumber($invalidNumber)); - $invalidNumber->setCountryCode(0); - $this->assertFalse($this->phoneUtil->isValidNumber($invalidNumber)); - - $this->assertFalse($this->phoneUtil->isValidNumber(self::$internationalTollFreeTooLong)); - } - - public function testGetRegionCodeForCountryCode() - { - $this->assertEquals(RegionCode::US, $this->phoneUtil->getRegionCodeForCountryCode(1)); - $this->assertEquals(RegionCode::GB, $this->phoneUtil->getRegionCodeForCountryCode(44)); - $this->assertEquals(RegionCode::DE, $this->phoneUtil->getRegionCodeForCountryCode(49)); - $this->assertEquals(RegionCode::UN001, $this->phoneUtil->getRegionCodeForCountryCode(800)); - $this->assertEquals(RegionCode::UN001, $this->phoneUtil->getRegionCodeForCountryCode(979)); - } - - public function testGetRegionCodeForNumber() - { - $this->assertEquals(RegionCode::BS, $this->phoneUtil->getRegionCodeForNumber(self::$bsNumber)); - $this->assertEquals(RegionCode::US, $this->phoneUtil->getRegionCodeForNumber(self::$usNumber)); - $this->assertEquals(RegionCode::GB, $this->phoneUtil->getRegionCodeForNumber(self::$gbMobile)); - $this->assertEquals(RegionCode::UN001, $this->phoneUtil->getRegionCodeForNumber(self::$internationalTollFree)); - $this->assertEquals(RegionCode::UN001, $this->phoneUtil->getRegionCodeForNumber(self::$universalPremiumRate)); - } - - public function testGetRegionCodesForCountryCode() - { - $regionCodesForNANPA = $this->phoneUtil->getRegionCodesForCountryCode(1); - $this->assertContains(RegionCode::US, $regionCodesForNANPA); - $this->assertContains(RegionCode::BS, $regionCodesForNANPA); - $this->assertContains(RegionCode::GB, $this->phoneUtil->getRegionCodesForCountryCode(44)); - $this->assertContains(RegionCode::DE, $this->phoneUtil->getRegionCodesForCountryCode(49)); - $this->assertContains(RegionCode::UN001, $this->phoneUtil->getRegionCodesForCountryCode(800)); - // Test with invalid country calling code. - $this->assertEmpty($this->phoneUtil->getRegionCodesForCountryCode(-1)); - } - - public function testGetCountryCodeForRegion() - { - $this->assertEquals(1, $this->phoneUtil->getCountryCodeForRegion(RegionCode::US)); - $this->assertEquals(64, $this->phoneUtil->getCountryCodeForRegion(RegionCode::NZ)); - $this->assertEquals(0, $this->phoneUtil->getCountryCodeForRegion(null)); - $this->assertEquals(0, $this->phoneUtil->getCountryCodeForRegion(RegionCode::ZZ)); - $this->assertEquals(0, $this->phoneUtil->getCountryCodeForRegion(RegionCode::UN001)); - // CS is already deprecated so the library doesn't support it - $this->assertEquals(0, $this->phoneUtil->getCountryCodeForRegion(RegionCode::CS)); - } - - public function testGetNationalDiallingPrefixForRegion() - { - $this->assertEquals("1", $this->phoneUtil->getNddPrefixForRegion(RegionCode::US, false)); - // Test non-main country to see it gets the national dialling prefix for the main country with - // that country calling code. - $this->assertEquals("1", $this->phoneUtil->getNddPrefixForRegion(RegionCode::BS, false)); - $this->assertEquals("0", $this->phoneUtil->getNddPrefixForRegion(RegionCode::NZ, false)); - // Test case with non digit in the national prefix. - $this->assertEquals("0~0", $this->phoneUtil->getNddPrefixForRegion(RegionCode::AO, false)); - $this->assertEquals("00", $this->phoneUtil->getNddPrefixForRegion(RegionCode::AO, true)); - // Test cases with invalid regions. - $this->assertNull($this->phoneUtil->getNddPrefixForRegion(null, false)); - $this->assertNull($this->phoneUtil->getNddPrefixForRegion(RegionCode::ZZ, false)); - $this->assertNull($this->phoneUtil->getNddPrefixForRegion(RegionCode::UN001, false)); - // CS is already deprecated so the library doesn't support it. - $this->assertNull($this->phoneUtil->getNddPrefixForRegion(RegionCode::CS, false)); - } - - public function testIsNANPACountry() - { - $this->assertTrue($this->phoneUtil->isNANPACountry(RegionCode::US)); - $this->assertTrue($this->phoneUtil->isNANPACountry(RegionCode::BS)); - $this->assertFalse($this->phoneUtil->isNANPACountry(RegionCode::DE)); - $this->assertFalse($this->phoneUtil->isNANPACountry(RegionCode::ZZ)); - $this->assertFalse($this->phoneUtil->isNANPACountry(RegionCode::UN001)); - $this->assertFalse($this->phoneUtil->isNANPACountry(null)); - } - - public function testIsPossibleNumber() - { - $this->assertTrue($this->phoneUtil->isPossibleNumber(self::$usNumber)); - $this->assertTrue($this->phoneUtil->isPossibleNumber(self::$usLocalNumber)); - $this->assertTrue($this->phoneUtil->isPossibleNumber(self::$gbNumber)); - $this->assertTrue($this->phoneUtil->isPossibleNumber(self::$internationalTollFree)); - - $this->assertTrue($this->phoneUtil->isPossibleNumber("+1 650 253 0000", RegionCode::US)); - $this->assertTrue($this->phoneUtil->isPossibleNumber("+1 650 GOO OGLE", RegionCode::US)); - $this->assertTrue($this->phoneUtil->isPossibleNumber("(650) 253-0000", RegionCode::US)); - $this->assertTrue($this->phoneUtil->isPossibleNumber("253-0000", RegionCode::US)); - $this->assertTrue($this->phoneUtil->isPossibleNumber("+1 650 253 0000", RegionCode::GB)); - $this->assertTrue($this->phoneUtil->isPossibleNumber("+44 20 7031 3000", RegionCode::GB)); - $this->assertTrue($this->phoneUtil->isPossibleNumber("(020) 7031 3000", RegionCode::GB)); - $this->assertTrue($this->phoneUtil->isPossibleNumber("7031 3000", RegionCode::GB)); - $this->assertTrue($this->phoneUtil->isPossibleNumber("3331 6005", RegionCode::NZ)); - $this->assertTrue($this->phoneUtil->isPossibleNumber("+800 1234 5678", RegionCode::UN001)); - } - - public function testIsPossibleNumberWithReason() - { - // National numbers for country calling code +1 that are within 7 to 10 digits are possible. - $this->assertEquals( - ValidationResult::IS_POSSIBLE, - $this->phoneUtil->isPossibleNumberWithReason(self::$usNumber) - ); - - $this->assertEquals( - ValidationResult::IS_POSSIBLE, - $this->phoneUtil->isPossibleNumberWithReason(self::$usLocalNumber) - ); - - $this->assertEquals( - ValidationResult::TOO_LONG, - $this->phoneUtil->isPossibleNumberWithReason(self::$usLongNumber) - ); - - $number = new PhoneNumber(); - $number->setCountryCode(0)->setNationalNumber(2530000); - $this->assertEquals( - ValidationResult::INVALID_COUNTRY_CODE, - $this->phoneUtil->isPossibleNumberWithReason($number) - ); - - $number->clear(); - $number->setCountryCode(1)->setNationalNumber(253000); - $this->assertEquals(ValidationResult::TOO_SHORT, $this->phoneUtil->isPossibleNumberWithReason($number)); - - $number->clear(); - $number->setCountryCode(65)->setNationalNumber(1234567890); - $this->assertEquals(ValidationResult::IS_POSSIBLE, $this->phoneUtil->isPossibleNumberWithReason($number)); - - $this->assertEquals( - ValidationResult::TOO_LONG, - $this->phoneUtil->isPossibleNumberWithReason(self::$internationalTollFreeTooLong) - ); - } - - public function testIsNotPossibleNumber() - { - $this->assertFalse($this->phoneUtil->isPossibleNumber(self::$usLongNumber)); - $this->assertFalse($this->phoneUtil->isPossibleNumber(self::$internationalTollFreeTooLong)); - - $number = new PhoneNumber(); - $number->setCountryCode(1)->setNationalNumber(253000); - $this->assertFalse($this->phoneUtil->isPossibleNumber($number)); - - $number->clear(); - $number->setCountryCode(44)->setNationalNumber(300); - $this->assertFalse($this->phoneUtil->isPossibleNumber($number)); - $this->assertFalse($this->phoneUtil->isPossibleNumber("+1 650 253 00000", RegionCode::US)); - $this->assertFalse($this->phoneUtil->isPossibleNumber("(650) 253-00000", RegionCode::US)); - $this->assertFalse($this->phoneUtil->isPossibleNumber("I want a Pizza", RegionCode::US)); - $this->assertFalse($this->phoneUtil->isPossibleNumber("253-000", RegionCode::US)); - $this->assertFalse($this->phoneUtil->isPossibleNumber("1 3000", RegionCode::GB)); - $this->assertFalse($this->phoneUtil->isPossibleNumber("+44 300", RegionCode::GB)); - $this->assertFalse($this->phoneUtil->isPossibleNumber("+800 1234 5678 9", RegionCode::UN001)); - } - - public function testTruncateTooLongNumber() - { - // GB number 080 1234 5678, but entered with 4 extra digits at the end. - $tooLongNumber = new PhoneNumber(); - $tooLongNumber->setCountryCode(44)->setNationalNumber(80123456780123); - $validNumber = new PhoneNumber(); - $validNumber->setCountryCode(44)->setNationalNumber(8012345678); - $this->assertTrue($this->phoneUtil->truncateTooLongNumber($tooLongNumber)); - $this->assertEquals($validNumber, $tooLongNumber); - - // IT number 022 3456 7890, but entered with 3 extra digits at the end. - $tooLongNumber->clear(); - $tooLongNumber->setCountryCode(39)->setNationalNumber(2234567890123)->setItalianLeadingZero(true); - $validNumber->clear(); - $validNumber->setCountryCode(39)->setNationalNumber(2234567890)->setItalianLeadingZero(true); - $this->assertTrue($this->phoneUtil->truncateTooLongNumber($tooLongNumber)); - $this->assertEquals($validNumber, $tooLongNumber); - - // US number 650-253-0000, but entered with one additional digit at the end. - $tooLongNumber->clear(); - $tooLongNumber->mergeFrom(self::$usLongNumber); - $this->assertTrue($this->phoneUtil->truncateTooLongNumber($tooLongNumber)); - $this->assertEquals(self::$usNumber, $tooLongNumber); - - $tooLongNumber->clear(); - $tooLongNumber->mergeFrom(self::$internationalTollFreeTooLong); - $this->assertTrue($this->phoneUtil->truncateTooLongNumber($tooLongNumber)); - $this->assertEquals(self::$internationalTollFree, $tooLongNumber); - - // Tests what happens when a valid number is passed in. - $validNumberCopy = new PhoneNumber(); - $validNumberCopy->mergeFrom($validNumber); - $this->assertTrue($this->phoneUtil->truncateTooLongNumber($validNumber)); - - // Tests the number is not modified. - $this->assertEquals($validNumberCopy, $validNumber); - - // Tests what happens when a number with invalid prefix is passed in. - $numberWithInvalidPrefix = new PhoneNumber(); - // The test metadata says US numbers cannot have prefix 240. - $numberWithInvalidPrefix->setCountryCode(1)->setNationalNumber(2401234567); - $invalidNumberCopy = new PhoneNumber(); - $invalidNumberCopy->mergeFrom($numberWithInvalidPrefix); - $this->assertFalse($this->phoneUtil->truncateTooLongNumber($numberWithInvalidPrefix)); - // Tests the number is not modified. - $this->assertEquals($invalidNumberCopy, $numberWithInvalidPrefix); - - // Tests what happens when a too short number is passed in. - $tooShortNumber = new PhoneNumber(); - $tooShortNumber->setCountryCode(1)->setNationalNumber(1234); - $tooShortNumberCopy = new PhoneNumber(); - $tooShortNumberCopy->mergeFrom($tooShortNumber); - $this->assertFalse($this->phoneUtil->truncateTooLongNumber($tooShortNumber)); - // Tests the number is not modified. - $this->assertEquals($tooShortNumberCopy, $tooShortNumber); - } - - public function testIsViablePhoneNumber() - { - $this->assertFalse(PhoneNumberUtil::isViablePhoneNumber("1")); - // Only one or two digits before strange non-possible punctuation. - $this->assertFalse(PhoneNumberUtil::isViablePhoneNumber("1+1+1")); - $this->assertFalse(PhoneNumberUtil::isViablePhoneNumber("80+0")); - // Two digits is viable. - $this->assertTrue(PhoneNumberUtil::isViablePhoneNumber("00")); - $this->assertTrue(PhoneNumberUtil::isViablePhoneNumber("111")); - // Alpha numbers. - $this->assertTrue(PhoneNumberUtil::isViablePhoneNumber("0800-4-pizza")); - $this->assertTrue(PhoneNumberUtil::isViablePhoneNumber("0800-4-PIZZA")); - - // We need at least three digits before any alpha characters. - $this->assertFalse(PhoneNumberUtil::isViablePhoneNumber("08-PIZZA")); - $this->assertFalse(PhoneNumberUtil::isViablePhoneNumber("8-PIZZA")); - $this->assertFalse(PhoneNumberUtil::isViablePhoneNumber("12. March")); - } - - public function testIsViablePhoneNumberNonAscii() - { - // Only one or two digits before possible punctuation followed by more digits. - $this->assertTrue(PhoneNumberUtil::isViablePhoneNumber("1" . pack('H*', 'e38080') . "34")); - $this->assertFalse(PhoneNumberUtil::isViablePhoneNumber("1" . pack('H*', 'e38080') . "3+4")); - // Unicode variants of possible starting character and other allowed punctuation/digits. - $this->assertTrue( - PhoneNumberUtil::isViablePhoneNumber( - pack('H*', 'efbc88') . "1" . pack("H*", 'efbc89') . pack('H*', 'e38080') . "3456789" - ) - ); - // Testing a leading + is okay. - $this->assertTrue( - PhoneNumberUtil::isViablePhoneNumber("+1" . pack("H*", 'efbc89') . pack('H*', 'e38080') . "3456789") - ); - } - - public function testExtractPossibleNumber() - { - // Removes preceding funky punctuation and letters but leaves the rest untouched. - $this->assertEquals("0800-345-600", PhoneNumberUtil::extractPossibleNumber("Tel:0800-345-600")); - $this->assertEquals("0800 FOR PIZZA", PhoneNumberUtil::extractPossibleNumber("Tel:0800 FOR PIZZA")); - // Should not remove plus sign - $this->assertEquals("+800-345-600", PhoneNumberUtil::extractPossibleNumber("Tel:+800-345-600")); - // Should recognise wide digits as possible start values. - $this->assertEquals( - pack("H*", 'efbc90') . pack("H*", 'efbc92') . pack("H*", 'efbc93'), - PhoneNumberUtil::extractPossibleNumber(pack("H*", 'efbc90') . pack("H*", 'efbc92') . pack("H*", 'efbc93')) - ); - // Dashes are not possible start values and should be removed. - $this->assertEquals( - pack("H*", 'efbc91') . pack("H*", 'efbc92') . pack("H*", 'efbc93'), - PhoneNumberUtil::extractPossibleNumber( - "Num-" . pack("H*", 'efbc91') . pack("H*", 'efbc92') . pack("H*", 'efbc93') - ) - ); - // If not possible number present, return empty string. - $this->assertEquals("", PhoneNumberUtil::extractPossibleNumber("Num-....")); - // Leading brackets are stripped - these are not used when parsing. - $this->assertEquals("650) 253-0000", PhoneNumberUtil::extractPossibleNumber("(650) 253-0000")); - - // Trailing non-alpha-numeric characters should be removed. - $this->assertEquals("650) 253-0000", PhoneNumberUtil::extractPossibleNumber("(650) 253-0000..- ..")); - $this->assertEquals("650) 253-0000", PhoneNumberUtil::extractPossibleNumber("(650) 253-0000.")); - // This case has a trailing RTL char. - $this->assertEquals( - "650) 253-0000", - PhoneNumberUtil::extractPossibleNumber("(650) 253-0000" . pack("H*", 'e2808f')) - ); - } - - public function testMaybeStripNationalPrefix() - { - $metadata = new PhoneMetadata(); - $metadata->setNationalPrefixForParsing("34"); - $phoneNumberDesc = new PhoneNumberDesc(); - $phoneNumberDesc->setNationalNumberPattern("\\d{4,8}"); - $metadata->setGeneralDesc($phoneNumberDesc); - - $numberToStrip = "34356778"; - $strippedNumber = "356778"; - - $carrierCode = null; - - $this->assertTrue( - $this->phoneUtil->maybeStripNationalPrefixAndCarrierCode($numberToStrip, $metadata, $carrierCode) - ); - $this->assertEquals($strippedNumber, $numberToStrip, "Should have had national prefix stripped."); - // Retry stripping - now the number should not start with the national prefix, so no more - // stripping should occur. - $carrierCode = null; - $this->assertFalse( - $this->phoneUtil->maybeStripNationalPrefixAndCarrierCode($numberToStrip, $metadata, $carrierCode) - ); - $this->assertEquals($strippedNumber, $numberToStrip, "Should have had no change - no national prefix present."); - - // Some countries have no national prefix. Repeat test with none specified. - $metadata->setNationalPrefixForParsing(""); - $carrierCode = null; - $this->assertFalse( - $this->phoneUtil->maybeStripNationalPrefixAndCarrierCode($numberToStrip, $metadata, $carrierCode) - ); - $this->assertEquals($strippedNumber, $numberToStrip, "Should not strip anything with empty national prefix."); - - // If the resultant number doesn't match the national rule, it shouldn't be stripped. - $metadata->setNationalPrefixForParsing("3"); - $numberToStrip = "3123"; - $strippedNumber = "3123"; - $carrierCode = null; - $this->assertFalse( - $this->phoneUtil->maybeStripNationalPrefixAndCarrierCode($numberToStrip, $metadata, $carrierCode) - ); - $this->assertEquals( - $strippedNumber, - $numberToStrip, - "Should have had no change - after stripping, it wouldn't have matched the national rule." - ); - - // Test extracting carrier selection code. - $metadata->setNationalPrefixForParsing("0(81)?"); - $numberToStrip = "08122123456"; - $strippedNumber = "22123456"; - $carrierCode = ""; - $this->assertTrue( - $this->phoneUtil->maybeStripNationalPrefixAndCarrierCode($numberToStrip, $metadata, $carrierCode) - ); - $this->assertEquals("81", $carrierCode); - $this->assertEquals( - $strippedNumber, - $numberToStrip, - "Should have had national prefix and carrier code stripped." - ); - - // If there was a transform rule, check it was applied. - $metadata->setNationalPrefixTransformRule("5\${1}5"); - // Note that a capturing group is present here. - $metadata->setNationalPrefixForParsing("0(\\d{2})"); - $numberToStrip = "031123"; - $transformedNumber = "5315123"; - $carrierCode = null; - $this->assertTrue( - $this->phoneUtil->maybeStripNationalPrefixAndCarrierCode($numberToStrip, $metadata, $carrierCode) - ); - $this->assertEquals($transformedNumber, $numberToStrip, "Should transform the 031 to a 5315."); - } - - public function testMaybeStripInternationalPrefix() - { - $internationalPrefix = "00[39]"; - $numberToStrip = "0034567700-3898003"; - // Note the dash is removed as part of the normalization. - $strippedNumber = "45677003898003"; - $this->assertEquals( - CountryCodeSource::FROM_NUMBER_WITH_IDD, - $this->phoneUtil->maybeStripInternationalPrefixAndNormalize($numberToStrip, $internationalPrefix) - ); - $this->assertEquals( - $strippedNumber, - $numberToStrip, - "The number supplied was not stripped of its international prefix." - ); - - // Now the number no longer starts with an IDD prefix, so it should now report - // FROM_DEFAULT_COUNTRY. - $this->assertEquals( - CountryCodeSource::FROM_DEFAULT_COUNTRY, - $this->phoneUtil->maybeStripInternationalPrefixAndNormalize($numberToStrip, $internationalPrefix) - ); - - $numberToStrip = "00945677003898003"; - $this->assertEquals( - CountryCodeSource::FROM_NUMBER_WITH_IDD, - $this->phoneUtil->maybeStripInternationalPrefixAndNormalize($numberToStrip, $internationalPrefix) - ); - $this->assertEquals( - $strippedNumber, - $numberToStrip, - "The number supplied was not stripped of its international prefix." - ); - - // Test it works when the international prefix is broken up by spaces. - $numberToStrip = "00 9 45677003898003"; - $this->assertEquals( - CountryCodeSource::FROM_NUMBER_WITH_IDD, - $this->phoneUtil->maybeStripInternationalPrefixAndNormalize($numberToStrip, $internationalPrefix) - ); - $this->assertEquals( - $strippedNumber, - $numberToStrip, - "The number supplied was not stripped of its international prefix." - ); - - // Now the number no longer starts with an IDD prefix, so it should now report - // FROM_DEFAULT_COUNTRY. - $this->assertEquals( - CountryCodeSource::FROM_DEFAULT_COUNTRY, - $this->phoneUtil->maybeStripInternationalPrefixAndNormalize($numberToStrip, $internationalPrefix) - ); - - // Test the + symbol is also recognised and stripped. - $numberToStrip = "+45677003898003"; - $strippedNumber = "45677003898003"; - $this->assertEquals( - CountryCodeSource::FROM_NUMBER_WITH_PLUS_SIGN, - $this->phoneUtil->maybeStripInternationalPrefixAndNormalize($numberToStrip, $internationalPrefix) - ); - $this->assertEquals( - $strippedNumber, - $numberToStrip, - "The number supplied was not stripped of the plus symbol." - ); - - // If the number afterwards is a zero, we should not strip this - no country calling code begins - // with 0. - $numberToStrip = "0090112-3123"; - $strippedNumber = "00901123123"; - $this->assertEquals( - CountryCodeSource::FROM_DEFAULT_COUNTRY, - $this->phoneUtil->maybeStripInternationalPrefixAndNormalize($numberToStrip, $internationalPrefix) - ); - $this->assertEquals( - $strippedNumber, - $numberToStrip, - "The number supplied had a 0 after the match so shouldn't be stripped." - ); - - // Here the 0 is separated by a space from the IDD. - $numberToStrip = "009 0-112-3123"; - $this->assertEquals( - CountryCodeSource::FROM_DEFAULT_COUNTRY, - $this->phoneUtil->maybeStripInternationalPrefixAndNormalize($numberToStrip, $internationalPrefix) - ); - } - - public function testMaybeExtractCountryCode() - { - $number = new PhoneNumber(); - $metadata = $this->phoneUtil->getMetadataForRegion(RegionCode::US); - // Note that for the US, the IDD is 011. - try { - $phoneNumber = "011112-3456789"; - $strippedNumber = "123456789"; - $countryCallingCode = 1; - $numberToFill = ""; - $this->assertEquals( - $countryCallingCode, - $this->phoneUtil->maybeExtractCountryCode($phoneNumber, $metadata, $numberToFill, true, $number), - "Did not extract country calling code " . $countryCallingCode . " correctly." - ); - $this->assertEquals( - CountryCodeSource::FROM_NUMBER_WITH_IDD, - $number->getCountryCodeSource(), - "Did not figure out CountryCodeSource correctly" - ); - // Should strip and normalize national significant number. - $this->assertEquals( - $strippedNumber, - $numberToFill, - "Did not strip off the country calling code correctly." - ); - } catch (NumberParseException $e) { - $this->fail("Should not have thrown an exception: " . $e->getMessage()); - } - $number->clear(); - try { - $phoneNumber = "+6423456789"; - $countryCallingCode = 64; - $numberToFill = ""; - $this->assertEquals( - $countryCallingCode, - $this->phoneUtil->maybeExtractCountryCode($phoneNumber, $metadata, $numberToFill, true, $number), - "Did not extract country calling code " . $countryCallingCode . " correctly." - ); - $this->assertEquals( - CountryCodeSource::FROM_NUMBER_WITH_PLUS_SIGN, - $number->getCountryCodeSource(), - "Did not figure out CountryCodeSource correctly" - ); - } catch (NumberParseException $e) { - $this->fail("Should not have thrown an exception: " . $e->getMessage()); - } - $number->clear(); - try { - $phoneNumber = "+80012345678"; - $countryCallingCode = 800; - $numberToFill = ""; - $this->assertEquals( - $countryCallingCode, - $this->phoneUtil->maybeExtractCountryCode($phoneNumber, $metadata, $numberToFill, true, $number), - "Did not extract country calling code " . $countryCallingCode . " correctly." - ); - $this->assertEquals( - CountryCodeSource::FROM_NUMBER_WITH_PLUS_SIGN, - $number->getCountryCodeSource(), - "Did not figure out CountryCodeSource correctly" - ); - } catch (NumberParseException $e) { - $this->fail("Should not have thrown an exception: " . $e->getMessage()); - } - $number->clear(); - try { - $phoneNumber = "2345-6789"; - $numberToFill = ""; - $this->assertEquals( - 0, - $this->phoneUtil->maybeExtractCountryCode($phoneNumber, $metadata, $numberToFill, true, $number), - "Should not have extracted a country calling code - no international prefix present." - ); - $this->assertEquals( - CountryCodeSource::FROM_DEFAULT_COUNTRY, - $number->getCountryCodeSource(), - "Did not figure out CountryCodeSource correctly" - ); - } catch (NumberParseException $e) { - $this->fail("Should not have thrown an exception: " . $e->getMessage()); - } - $number->clear(); - try { - $phoneNumber = "0119991123456789"; - $numberToFill = ""; - $this->phoneUtil->maybeExtractCountryCode($phoneNumber, $metadata, $numberToFill, true, $number); - $this->fail("Should have thrown an exception, no valid country calling code present."); - } catch (NumberParseException $e) { - // Expected. - $this->assertEquals( - NumberParseException::INVALID_COUNTRY_CODE, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - $number->clear(); - try { - $phoneNumber = "(1 610) 619 4466"; - $countryCallingCode = 1; - $numberToFill = ""; - $this->assertEquals( - $countryCallingCode, - $this->phoneUtil->maybeExtractCountryCode($phoneNumber, $metadata, $numberToFill, true, $number), - "Should have extracted the country calling code of the region passed in" - ); - $this->assertEquals( - CountryCodeSource::FROM_NUMBER_WITHOUT_PLUS_SIGN, - $number->getCountryCodeSource(), - "Did not figure out CountryCodeSource correctly" - ); - } catch (NumberParseException $e) { - $this->fail("Should not have thrown an exception: " . $e->getMessage()); - } - $number->clear(); - try { - $phoneNumber = "(1 610) 619 4466"; - $countryCallingCode = 1; - $numberToFill = ""; - $this->assertEquals( - $countryCallingCode, - $this->phoneUtil->maybeExtractCountryCode($phoneNumber, $metadata, $numberToFill, false, $number), - "Should have extracted the country calling code of the region passed in" - ); - $this->assertFalse($number->hasCountryCodeSource(), "Should not contain CountryCodeSource"); - } catch (NumberParseException $e) { - $this->fail("Should not have thrown an exception: " . $e->getMessage()); - } - $number->clear(); - try { - $phoneNumber = "(1 610) 619 446"; - $numberToFill = ""; - $this->assertEquals( - 0, - $this->phoneUtil->maybeExtractCountryCode($phoneNumber, $metadata, $numberToFill, false, $number), - "Should not have extracted a country calling code - invalid number after extraction of uncertain country calling code." - ); - $this->assertFalse($number->hasCountryCodeSource(), "Should not contain CountryCodeSource"); - } catch (NumberParseException $e) { - $this->fail("Should not have thrown an exception: " . $e->getMessage()); - } - $number->clear(); - try { - $phoneNumber = "(1 610) 619"; - $numberToFill = ""; - $this->assertEquals( - 0, - $this->phoneUtil->maybeExtractCountryCode($phoneNumber, $metadata, $numberToFill, true, $number), - "Should not have extracted a country calling code - too short number both before and after extraction of uncertain country calling code." - ); - $this->assertEquals( - CountryCodeSource::FROM_DEFAULT_COUNTRY, - $number->getCountryCodeSource(), - "Did not figure out CountryCodeSource correctly" - ); - } catch (NumberParseException $e) { - $this->fail("Should not have thrown an exception: " . $e->getMessage()); - } - } - - public function testParseNationalNumber() - { - // National prefix attached. - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("033316005", RegionCode::NZ)); - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("33316005", RegionCode::NZ)); - // National prefix attached and some formatting present. - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("03-331 6005", RegionCode::NZ)); - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("03 331 6005", RegionCode::NZ)); - - // Test parsing RFC3966 format with a phone context. - $this->assertEquals( - self::$nzNumber, - $this->phoneUtil->parse("tel:03-331-6005;phone-context=+64", RegionCode::NZ) - ); - $this->assertEquals( - self::$nzNumber, - $this->phoneUtil->parse("tel:331-6005;phone-context=+64-3", RegionCode::NZ) - ); - $this->assertEquals( - self::$nzNumber, - $this->phoneUtil->parse("tel:331-6005;phone-context=+64-3", RegionCode::US) - ); - $this->assertEquals( - self::$nzNumber, - $this->phoneUtil->parse("My number is tel:03-331-6005;phone-context=+64", RegionCode::NZ) - ); - // Test parsing RFC3966 format with optional user-defined parameters. The parameters will appear - // after the context if present. - $this->assertEquals( - self::$nzNumber, - $this->phoneUtil->parse("tel:03-331-6005;phone-context=+64;a=%A1", RegionCode::NZ) - ); - // Test parsing RFC3966 with an ISDN subaddress. - $this->assertEquals( - self::$nzNumber, - $this->phoneUtil->parse("tel:03-331-6005;isub=12345;phone-context=+64", RegionCode::NZ) - ); - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("tel:+64-3-331-6005;isub=12345", RegionCode::NZ)); - - // Test parsing RFC3966 with "tel:" missing - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("03-331-6005;phone-context=+64", RegionCode::NZ)); - - // Testing international prefixes. - // Should strip country calling code. - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("0064 3 331 6005", RegionCode::NZ)); - // Try again, but this time we have an international number with Region Code US. It should - // recognise the country calling code and parse accordingly. - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("01164 3 331 6005", RegionCode::US)); - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("+64 3 331 6005", RegionCode::US)); - // We should ignore the leading plus here, since it is not followed by a valid country code but - // instead is followed by the IDD for the US. - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("+01164 3 331 6005", RegionCode::US)); - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("+0064 3 331 6005", RegionCode::NZ)); - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("+ 00 64 3 331 6005", RegionCode::NZ)); - - $this->assertEquals( - self::$usLocalNumber, - $this->phoneUtil->parse("tel:253-0000;phone-context=www.google.com", RegionCode::US) - ); - $this->assertEquals( - self::$usLocalNumber, - $this->phoneUtil->parse("tel:253-0000;isub=12345;phone-context=www.google.com", RegionCode::US) - ); - // This is invalid because no "+" sign is present as part of phone-context. The phone context - // is simply ignored in this case just as if it contains a domain. - $this->assertEquals( - self::$usLocalNumber, - $this->phoneUtil->parse("tel:2530000;isub=12345;phone-context=1-650", RegionCode::US) - ); - $this->assertEquals( - self::$usLocalNumber, - $this->phoneUtil->parse("tel:2530000;isub=12345;phone-context=1234.com", RegionCode::US) - ); - - $nzNumber = new PhoneNumber(); - $nzNumber->setCountryCode(64)->setNationalNumber(64123456); - $this->assertEquals($nzNumber, $this->phoneUtil->parse("64(0)64123456", RegionCode::NZ)); - // Check that using a "/" is fine in a phone number. - $this->assertEquals(self::$deNumber, $this->phoneUtil->parse("301/23456", RegionCode::DE)); - - $usNumber = new PhoneNumber(); - // Check it doesn't use the '1' as a country calling code when parsing if the phone number was - // already possible. - $usNumber->setCountryCode(1)->setNationalNumber(1234567890); - $this->assertEquals($usNumber, $this->phoneUtil->parse("123-456-7890", RegionCode::US)); - - // Test star numbers. Although this is not strictly valid, we would like to make sure we can - // parse the output we produce when formatting the number. - $this->assertEquals(self::$jpStarNumber, $this->phoneUtil->parse("+81 *2345", RegionCode::JP)); - - $shortNumber = new PhoneNumber(); - $shortNumber->setCountryCode(64)->setNationalNumber(12); - $this->assertEquals($shortNumber, $this->phoneUtil->parse("12", RegionCode::NZ)); - } - - public function testParseNumberWithAlphaCharacters() - { - // Test case with alpha characters. - $tollFreeNumber = new PhoneNumber(); - $tollFreeNumber->setCountryCode(64)->setNationalNumber(800332005); - $this->assertEquals($tollFreeNumber, $this->phoneUtil->parse("0800 DDA 005", RegionCode::NZ)); - - $premiumNumber = new PhoneNumber(); - $premiumNumber->setCountryCode(64)->setNationalNumber(9003326005); - $this->assertEquals($premiumNumber, $this->phoneUtil->parse("0900 DDA 6005", RegionCode::NZ)); - - // Not enough alpha characters for them to be considered intentional, so they are stripped. - $this->assertEquals($premiumNumber, $this->phoneUtil->parse("0900 332 6005a", RegionCode::NZ)); - $this->assertEquals($premiumNumber, $this->phoneUtil->parse("0900 332 600a5", RegionCode::NZ)); - $this->assertEquals($premiumNumber, $this->phoneUtil->parse("0900 332 600A5", RegionCode::NZ)); - $this->assertEquals($premiumNumber, $this->phoneUtil->parse("0900 a332 600A5", RegionCode::NZ)); - } - - public function testParseMaliciousInput() - { - // Lots of leading + signs before the possible number. - $maliciousNumber = str_repeat("+", 6000); - $maliciousNumber .= "12222-33-244 extensioB 343+"; - - try { - $this->phoneUtil->parse($maliciousNumber, RegionCode::US); - $this->fail("This should not parse without throwing an exception " . $maliciousNumber); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::TOO_LONG, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - $maliciousNumberWithAlmostExt = str_repeat("200", 350); - $maliciousNumberWithAlmostExt .= " extensiOB 345"; - try { - $this->phoneUtil->parse($maliciousNumberWithAlmostExt, RegionCode::US); - $this->fail("This should not parse without throwing an exception " . $maliciousNumberWithAlmostExt); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::TOO_LONG, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - } - - public function testParseWithInternationalPrefixes() - { - $this->assertEquals(self::$usNumber, $this->phoneUtil->parse("+1 (650) 253-0000", RegionCode::NZ)); - $this->assertEquals(self::$internationalTollFree, $this->phoneUtil->parse("011 800 1234 5678", RegionCode::US)); - $this->assertEquals(self::$usNumber, $this->phoneUtil->parse("1-650-253-0000", RegionCode::US)); - // Calling the US number from Singapore by using different service providers - // 1st test: calling using SingTel IDD service (IDD is 001) - $this->assertEquals(self::$usNumber, $this->phoneUtil->parse("0011-650-253-0000", RegionCode::SG)); - // 2nd test: calling using StarHub IDD service (IDD is 008) - $this->assertEquals(self::$usNumber, $this->phoneUtil->parse("0081-650-253-0000", RegionCode::SG)); - // 3rd test: calling using SingTel V019 service (IDD is 019) - $this->assertEquals(self::$usNumber, $this->phoneUtil->parse("0191-650-253-0000", RegionCode::SG)); - // Calling the US number from Poland - $this->assertEquals(self::$usNumber, $this->phoneUtil->parse("0~01-650-253-0000", RegionCode::PL)); - // Using "++" at the start. - $this->assertEquals(self::$usNumber, $this->phoneUtil->parse("++1 (650) 253-0000", RegionCode::PL)); - } - - public function testParseNonAscii() - { - // Using a full-width plus sign. - $this->assertEquals( - self::$usNumber, - $this->phoneUtil->parse(pack("H*", 'efbc8b') . "1 (650) 253-0000", RegionCode::SG) - ); - // Using a soft hyphen U+00AD. - $this->assertEquals( - self::$usNumber, - $this->phoneUtil->parse("1 (650) 253" . pack("H*", 'c2ad') . "-0000", RegionCode::US) - ); - // The whole number, including punctuation, is here represented in full-width form. - $this->assertEquals( - self::$usNumber, - $this->phoneUtil->parse( - pack("H*", 'efbc8b') . pack("H*", 'efbc91') . pack("H*", 'e38080') . - pack("H*", 'efbc88') . pack("H*", 'efbc96') . pack("H*", 'efbc95') . pack("H*", 'efbc90') . pack( - "H*", - 'efbc89' - ) . - pack("H*", 'e38080') . pack("H*", 'efbc92') . pack("H*", 'efbc95') . pack("H*", 'efbc93') . pack( - "H*", - 'efbc8d' - ) . - pack("H*", 'efbc90') . pack("H*", 'efbc90') . pack("H*", 'efbc90') . pack("H*", 'efbc90'), - RegionCode::SG - ) - ); - // Using U+30FC dash instead. - $this->assertEquals( - self::$usNumber, - $this->phoneUtil->parse( - pack("H*", 'efbc8b') . pack("H*", 'efbc91') . pack("H*", 'e38080') . - pack("H*", 'efbc88') . pack("H*", 'efbc96') . pack("H*", 'efbc95') . pack("H*", 'efbc90') . pack( - "H*", - 'efbc89' - ) . - pack("H*", 'e38080') . pack("H*", 'efbc92') . pack("H*", 'efbc95') . pack("H*", 'efbc93') . pack( - "H*", - 'e383bc' - ) . - pack("H*", 'efbc90') . pack("H*", 'efbc90') . pack("H*", 'efbc90') . pack("H*", 'efbc90'), - RegionCode::SG - ) - ); - // Using a very strange decimal digit range (Mongolian digits). - $this->assertEquals( - self::$usNumber, - $this->phoneUtil->parse( - pack('H*', 'e1a091') . " " - . pack('H*', 'e1a096') . pack('H*', 'e1a095') . pack('H*', 'e1a090') . " " - . pack('H*', 'e1a092') . pack('H*', 'e1a095') . pack('H*', 'e1a093') . " " - . pack('H*', 'e1a090') . pack('H*', 'e1a090') . pack('H*', 'e1a090') . pack('H*', 'e1a090'), - RegionCode::US - ) - ); - } - - public function testParseWithLeadingZero() - { - $this->assertEquals(self::$itNumber, $this->phoneUtil->parse("+39 02-36618 300", RegionCode::NZ)); - $this->assertEquals(self::$itNumber, $this->phoneUtil->parse("02-36618 300", RegionCode::IT)); - - $this->assertEquals(self::$itMobile, $this->phoneUtil->parse("345 678 901", RegionCode::IT)); - } - - public function testParseNationalNumberArgentina() - { - // Test parsing mobile numbers of Argentina. - $arNumber = new PhoneNumber(); - $arNumber->setCountryCode(54)->setNationalNumber(93435551212); - $this->assertEquals($arNumber, $this->phoneUtil->parse("+54 9 343 555 1212", RegionCode::AR)); - $this->assertEquals($arNumber, $this->phoneUtil->parse("0343 15 555 1212", RegionCode::AR)); - - $arNumber->clear(); - $arNumber->setCountryCode(54)->setNationalNumber(93715654320); - $this->assertEquals($arNumber, $this->phoneUtil->parse("+54 9 3715 65 4320", RegionCode::AR)); - $this->assertEquals($arNumber, $this->phoneUtil->parse("03715 15 65 4320", RegionCode::AR)); - $this->assertEquals(self::$arMobile, $this->phoneUtil->parse("911 876 54321", RegionCode::AR)); - - // Test parsing fixed-line numbers of Argentina. - $this->assertEquals(self::$arNumber, $this->phoneUtil->parse("+54 11 8765 4321", RegionCode::AR)); - $this->assertEquals(self::$arNumber, $this->phoneUtil->parse("011 8765 4321", RegionCode::AR)); - - $arNumber->clear(); - $arNumber->setCountryCode(54)->setNationalNumber(3715654321); - $this->assertEquals($arNumber, $this->phoneUtil->parse("+54 3715 65 4321", RegionCode::AR)); - $this->assertEquals($arNumber, $this->phoneUtil->parse("03715 65 4321", RegionCode::AR)); - - $arNumber->clear(); - $arNumber->setCountryCode(54)->setNationalNumber(2312340000); - $this->assertEquals($arNumber, $this->phoneUtil->parse("+54 23 1234 0000", RegionCode::AR)); - $this->assertEquals($arNumber, $this->phoneUtil->parse("023 1234 0000", RegionCode::AR)); - } - - public function testParseWithXInNumber() - { - // Test that having an 'x' in the phone number at the start is ok and that it just gets removed. - $this->assertEquals(self::$arNumber, $this->phoneUtil->parse("01187654321", RegionCode::AR)); - $this->assertEquals(self::$arNumber, $this->phoneUtil->parse("(0) 1187654321", RegionCode::AR)); - $this->assertEquals(self::$arNumber, $this->phoneUtil->parse("0 1187654321", RegionCode::AR)); - $this->assertEquals(self::$arNumber, $this->phoneUtil->parse("(0xx) 1187654321", RegionCode::AR)); - - $arFromUs = new PhoneNumber(); - $arFromUs->setCountryCode(54)->setNationalNumber(81429712); - // This test is intentionally constructed such that the number of digit after xx is larger than - // 7, so that the number won't be mistakenly treated as an extension, as we allow extensions up - // to 7 digits. This assumption is okay for now as all the countries where a carrier selection - // code is written in the form of xx have a national significant number of length larger than 7. - $this->assertEquals($arFromUs, $this->phoneUtil->parse("011xx5481429712", RegionCode::US)); - } - - public function testParseNumbersMexico() - { - // Test parsing fixed-line numbers of Mexico. - $mxNumber = new PhoneNumber(); - $mxNumber->setCountryCode(52)->setNationalNumber(4499780001); - $this->assertEquals($mxNumber, $this->phoneUtil->parse("+52 (449)978-0001", RegionCode::MX)); - $this->assertEquals($mxNumber, $this->phoneUtil->parse("01 (449)978-0001", RegionCode::MX)); - $this->assertEquals($mxNumber, $this->phoneUtil->parse("(449)978-0001", RegionCode::MX)); - - // Test parsing mobile numbers of Mexico. - $mxNumber->clear(); - $mxNumber->setCountryCode(52)->setNationalNumber(13312345678); - $this->assertEquals($mxNumber, $this->phoneUtil->parse("+52 1 33 1234-5678", RegionCode::MX)); - $this->assertEquals($mxNumber, $this->phoneUtil->parse("044 (33) 1234-5678", RegionCode::MX)); - $this->assertEquals($mxNumber, $this->phoneUtil->parse("045 33 1234-5678", RegionCode::MX)); - } - - public function testFailedParseOnInvalidNumbers() - { - try { - $sentencePhoneNumber = "This is not a phone number"; - $this->phoneUtil->parse($sentencePhoneNumber, RegionCode::NZ); - $this->fail("This should not parse without throwing an exception " . $sentencePhoneNumber); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::NOT_A_NUMBER, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $sentencePhoneNumber = "1 Still not a number"; - $this->phoneUtil->parse($sentencePhoneNumber, RegionCode::NZ); - $this->fail("This should not parse without throwing an exception " . $sentencePhoneNumber); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::NOT_A_NUMBER, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $sentencePhoneNumber = "1 MICROSOFT"; - $this->phoneUtil->parse($sentencePhoneNumber, RegionCode::NZ); - $this->fail("This should not parse without throwing an exception " . $sentencePhoneNumber); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::NOT_A_NUMBER, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $sentencePhoneNumber = "12 MICROSOFT"; - $this->phoneUtil->parse($sentencePhoneNumber, RegionCode::NZ); - $this->fail("This should not parse without throwing an exception " . $sentencePhoneNumber); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::NOT_A_NUMBER, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $tooLongPhoneNumber = "01495 72553301873 810104"; - $this->phoneUtil->parse($tooLongPhoneNumber, RegionCode::GB); - $this->fail("This should not parse without throwing an exception " . $tooLongPhoneNumber); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::TOO_LONG, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $plusMinusPhoneNumber = "+---"; - $this->phoneUtil->parse($plusMinusPhoneNumber, RegionCode::DE); - $this->fail("This should not parse without throwing an exception " . $plusMinusPhoneNumber); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::NOT_A_NUMBER, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $plusStar = "+***"; - $this->phoneUtil->parse($plusStar, RegionCode::DE); - $this->fail("This should not parse without throwing an exception " . $plusStar); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::NOT_A_NUMBER, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $plusStarPhoneNumber = "+*******91"; - $this->phoneUtil->parse($plusStarPhoneNumber, RegionCode::DE); - $this->fail("This should not parse without throwing an exception " . $plusStarPhoneNumber); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::NOT_A_NUMBER, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $tooShortPhoneNumber = "+49 0"; - $this->phoneUtil->parse($tooShortPhoneNumber, RegionCode::DE); - $this->fail("This should not parse without throwing an exception " . $tooShortPhoneNumber); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::TOO_SHORT_NSN, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $invalidCountryCode = "+210 3456 56789"; - $this->phoneUtil->parse($invalidCountryCode, RegionCode::NZ); - $this->fail("This is not a recognised region code: should fail: " . $invalidCountryCode); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::INVALID_COUNTRY_CODE, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $plusAndIddAndInvalidCountryCode = "+ 00 210 3 331 6005"; - $this->phoneUtil->parse($plusAndIddAndInvalidCountryCode, RegionCode::NZ); - $this->fail("This should not parse without throwing an exception " . $plusAndIddAndInvalidCountryCode); - } catch (NumberParseException $e) { - // Expected this exception. 00 is a correct IDD, but 210 is not a valid country code. - $this->assertEquals( - NumberParseException::INVALID_COUNTRY_CODE, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $someNumber = "123 456 7890"; - $this->phoneUtil->parse($someNumber, RegionCode::ZZ); - $this->fail("'Unknown' region code not allowed: should fail."); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::INVALID_COUNTRY_CODE, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $someNumber = "123 456 7890"; - $this->phoneUtil->parse($someNumber, RegionCode::CS); - $this->fail("Deprecated region code not allowed: should fail."); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::INVALID_COUNTRY_CODE, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $someNumber = "123 456 7890"; - $this->phoneUtil->parse($someNumber, null); - $this->fail("Null region code not allowed: should fail."); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::INVALID_COUNTRY_CODE, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $someNumber = "0044------"; - $this->phoneUtil->parse($someNumber, RegionCode::GB); - $this->fail("No number provided, only region code: should fail"); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::TOO_SHORT_AFTER_IDD, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $someNumber = "0044"; - $this->phoneUtil->parse($someNumber, RegionCode::GB); - $this->fail("No number provided, only region code: should fail"); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::TOO_SHORT_AFTER_IDD, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $someNumber = "011"; - $this->phoneUtil->parse($someNumber, RegionCode::US); - $this->fail("Only IDD provided - should fail."); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::TOO_SHORT_AFTER_IDD, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $someNumber = "0119"; - $this->phoneUtil->parse($someNumber, RegionCode::US); - $this->fail("Only IDD provided and then 9 - should fail."); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::TOO_SHORT_AFTER_IDD, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $emptyNumber = ""; - // Invalid region. - $this->phoneUtil->parse($emptyNumber, RegionCode::ZZ); - $this->fail("Empty string - should fail."); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::NOT_A_NUMBER, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $nullNumber = null; - // Invalid region. - $this->phoneUtil->parse($nullNumber, RegionCode::ZZ); - $this->fail("Null string - should fail."); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::NOT_A_NUMBER, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $nullNumber = null; - $this->phoneUtil->parse($nullNumber, RegionCode::US); - $this->fail("Null string - should fail."); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::NOT_A_NUMBER, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - $domainRfcPhoneContext = "tel:555-1234;phone-context=www.google.com"; - $this->phoneUtil->parse($domainRfcPhoneContext, RegionCode::ZZ); - $this->fail("'Unknown' region code not allowed: should fail."); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::INVALID_COUNTRY_CODE, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - try { - // This is invalid because no "+" sign is present as part of phone-context. This should not - // succeed in being parsed. - $invalidRfcPhoneContext = "tel:555-1234;phone-context=1-331"; - $this->phoneUtil->parse($invalidRfcPhoneContext, RegionCode::ZZ); - $this->fail("'Unknown' region code not allowed: should fail."); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::INVALID_COUNTRY_CODE, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - } - - public function testParseNumbersWithPlusWithNoRegion() - { - // RegionCode.ZZ is allowed only if the number starts with a '+' - then the country calling code - // can be calculated. - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("+64 3 331 6005", RegionCode::ZZ)); - // Test with full-width plus. - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("+64 3 331 6005", RegionCode::ZZ)); - // Test with normal plus but leading characters that need to be stripped. - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("Tel: +64 3 331 6005", RegionCode::ZZ)); - $this->assertEquals(self::$nzNumber, $this->phoneUtil->parse("+64 3 331 6005", null)); - $this->assertEquals(self::$internationalTollFree, $this->phoneUtil->parse("+800 1234 5678", null)); - $this->assertEquals(self::$universalPremiumRate, $this->phoneUtil->parse("+979 123 456 789", null)); - - // Test parsing RFC3966 format with a phone context. - $this->assertEquals( - self::$nzNumber, - $this->phoneUtil->parse("tel:03-331-6005;phone-context=+64", RegionCode::ZZ) - ); - $this->assertEquals( - self::$nzNumber, - $this->phoneUtil->parse(" tel:03-331-6005;phone-context=+64", RegionCode::ZZ) - ); - $this->assertEquals( - self::$nzNumber, - $this->phoneUtil->parse("tel:03-331-6005;isub=12345;phone-context=+64", RegionCode::ZZ) - ); - - // It is important that we set the carrier code to an empty string, since we used - // ParseAndKeepRawInput and no carrier code was found. - $nzNumberWithRawInput = new PhoneNumber(); - $nzNumberWithRawInput->mergeFrom(self::$nzNumber); - $nzNumberWithRawInput->setRawInput("+64 3 331 6005"); - $nzNumberWithRawInput->setCountryCodeSource(CountryCodeSource::FROM_NUMBER_WITH_PLUS_SIGN); - $nzNumberWithRawInput->setPreferredDomesticCarrierCode(""); - $this->assertEquals( - $nzNumberWithRawInput, - $this->phoneUtil->parseAndKeepRawInput("+64 3 331 6005", RegionCode::ZZ) - ); - - // Null is also allowed for the region code in these cases. - $this->assertEquals($nzNumberWithRawInput, $this->phoneUtil->parseAndKeepRawInput("+64 3 331 6005", null)); - } - - public function testParseNumberTooShortIfNationalPrefixStripped() - { - // Test that a number whose first digits happen to coincide with the national prefix does not - // get them stripped if doing so would result in a number too short to be a possible (regular - // length) phone number for that region. - $byNumber = new PhoneNumber(); - $byNumber->setCountryCode(375)->setNationalNumber(8123); - $this->assertEquals($byNumber, $this->phoneUtil->parse("8123", RegionCode::BY)); - $byNumber->setNationalNumber(81234); - $this->assertEquals($byNumber, $this->phoneUtil->parse("81234", RegionCode::BY)); - - // The prefix doesn't get stripped, since the input is a viable 6-digit number, whereas the - // result of stripping is only 5 digits. - $byNumber->setNationalNumber(812345); - $this->assertEquals($byNumber, $this->phoneUtil->parse("812345", RegionCode::BY)); - - // The prefix gets stripped, since only 6-digit numbers are possible. - $byNumber->setNationalNumber(123456); - $this->assertEquals($byNumber, $this->phoneUtil->parse("8123456", RegionCode::BY)); - } - - public function testParseExtensions() - { - $nzNumber = new PhoneNumber(); - $nzNumber->setCountryCode(64)->setNationalNumber(33316005)->setExtension("3456"); - $this->assertEquals($nzNumber, $this->phoneUtil->parse("03 331 6005 ext 3456", RegionCode::NZ)); - $this->assertEquals($nzNumber, $this->phoneUtil->parse("03-3316005x3456", RegionCode::NZ)); - $this->assertEquals($nzNumber, $this->phoneUtil->parse("03-3316005 int.3456", RegionCode::NZ)); - $this->assertEquals($nzNumber, $this->phoneUtil->parse("03 3316005 #3456", RegionCode::NZ)); - // Test the following do not extract extensions: - $this->assertEquals(self::$alphaNumericNumber, $this->phoneUtil->parse("1800 six-flags", RegionCode::US)); - $this->assertEquals(self::$alphaNumericNumber, $this->phoneUtil->parse("1800 SIX FLAGS", RegionCode::US)); - $this->assertEquals(self::$alphaNumericNumber, $this->phoneUtil->parse("0~0 1800 7493 5247", RegionCode::PL)); - $this->assertEquals(self::$alphaNumericNumber, $this->phoneUtil->parse("(1800) 7493.5247", RegionCode::US)); - // Check that the last instance of an extension token is matched. - $extnNumber = new PhoneNumber(); - $extnNumber->mergeFrom(self::$alphaNumericNumber)->setExtension("1234"); - $this->assertEquals($extnNumber, $this->phoneUtil->parse("0~0 1800 7493 5247 ~1234", RegionCode::PL)); - // Verifying bug-fix where the last digit of a number was previously omitted if it was a 0 when - // extracting the extension. Also verifying a few different cases of extensions. - $ukNumber = new PhoneNumber(); - $ukNumber->setCountryCode(44)->setNationalNumber(2034567890)->setExtension("456"); - $this->assertEquals($ukNumber, $this->phoneUtil->parse("+44 2034567890x456", RegionCode::NZ)); - $this->assertEquals($ukNumber, $this->phoneUtil->parse("+44 2034567890x456", RegionCode::GB)); - $this->assertEquals($ukNumber, $this->phoneUtil->parse("+44 2034567890 x456", RegionCode::GB)); - $this->assertEquals($ukNumber, $this->phoneUtil->parse("+44 2034567890 X456", RegionCode::GB)); - $this->assertEquals($ukNumber, $this->phoneUtil->parse("+44 2034567890 X 456", RegionCode::GB)); - $this->assertEquals($ukNumber, $this->phoneUtil->parse("+44 2034567890 X 456", RegionCode::GB)); - $this->assertEquals($ukNumber, $this->phoneUtil->parse("+44 2034567890 x 456 ", RegionCode::GB)); - $this->assertEquals($ukNumber, $this->phoneUtil->parse("+44 2034567890 X 456", RegionCode::GB)); - $this->assertEquals($ukNumber, $this->phoneUtil->parse("+44-2034567890;ext=456", RegionCode::GB)); - $this->assertEquals( - $ukNumber, - $this->phoneUtil->parse("tel:2034567890;ext=456;phone-context=+44", RegionCode::ZZ) - ); - - // Full-width extension, "extn" only. - $this->assertEquals($ukNumber, $this->phoneUtil->parse("+442034567890extn456", RegionCode::GB)); - // "xtn" only. - $this->assertEquals($ukNumber, $this->phoneUtil->parse("+442034567890xtn456", RegionCode::GB)); - // "xt" only. - $this->assertEquals($ukNumber, $this->phoneUtil->parse("+442034567890xt456", RegionCode::GB)); - - $usWithExtension = new PhoneNumber(); - $usWithExtension->setCountryCode(1)->setNationalNumber(8009013355)->setExtension("7246433"); - $this->assertEquals($usWithExtension, $this->phoneUtil->parse("(800) 901-3355 x 7246433", RegionCode::US)); - $this->assertEquals($usWithExtension, $this->phoneUtil->parse("(800) 901-3355 , ext 7246433", RegionCode::US)); - $this->assertEquals( - $usWithExtension, - $this->phoneUtil->parse("(800) 901-3355 ,extension 7246433", RegionCode::US) - ); - $this->assertEquals( - $usWithExtension, - $this->phoneUtil->parse("(800) 901-3355 ,extensi" . pack("H*", 'c3b3') . "n 7246433", RegionCode::US) - ); - // Repeat with the small letter o with acute accent created by combining characters. - $this->assertEquals( - $usWithExtension, - $this->phoneUtil->parse("(800) 901-3355 ,extensio" . pack('H*', 'cc81') . "n 7246433", RegionCode::US) - ); - $this->assertEquals($usWithExtension, $this->phoneUtil->parse("(800) 901-3355 , 7246433", RegionCode::US)); - $this->assertEquals($usWithExtension, $this->phoneUtil->parse("(800) 901-3355 ext: 7246433", RegionCode::US)); - - // Test that if a number has two extensions specified, we ignore the second. - $usWithTwoExtensionsNumber = new PhoneNumber(); - $usWithTwoExtensionsNumber->setCountryCode(1)->setNationalNumber(2121231234)->setExtension("508"); - $this->assertEquals( - $usWithTwoExtensionsNumber, - $this->phoneUtil->parse("(212)123-1234 x508/x1234", RegionCode::US) - ); - $this->assertEquals( - $usWithTwoExtensionsNumber, - $this->phoneUtil->parse("(212)123-1234 x508/ x1234", RegionCode::US) - ); - $this->assertEquals( - $usWithTwoExtensionsNumber, - $this->phoneUtil->parse("(212)123-1234 x508\\x1234", RegionCode::US) - ); - - // Test parsing numbers in the form (645) 123-1234-910# works, where the last 3 digits before - // the # are an extension. - $usWithExtension->clear(); - $usWithExtension->setCountryCode(1)->setNationalNumber(6451231234)->setExtension("910"); - $this->assertEquals($usWithExtension, $this->phoneUtil->parse("+1 (645) 123 1234-910#", RegionCode::US)); - // Retry with the same number in a slightly different format. - $this->assertEquals($usWithExtension, $this->phoneUtil->parse("+1 (645) 123 1234 ext. 910#", RegionCode::US)); - } - - public function testParseAndKeepRaw() - { - $alphaNumericNumber = new PhoneNumber(); - $alphaNumericNumber->mergeFrom(self::$alphaNumericNumber); - $alphaNumericNumber->setRawInput("800 six-flags"); - $alphaNumericNumber->setCountryCodeSource(CountryCodeSource::FROM_DEFAULT_COUNTRY); - $alphaNumericNumber->setPreferredDomesticCarrierCode(""); - $this->assertEquals( - $alphaNumericNumber, - $this->phoneUtil->parseAndKeepRawInput("800 six-flags", RegionCode::US) - ); - - $shorterAlphaNumber = new PhoneNumber(); - $shorterAlphaNumber->setCountryCode(1)->setNationalNumber(8007493524); - $shorterAlphaNumber->setRawInput("1800 six-flag")->setCountryCodeSource( - CountryCodeSource::FROM_NUMBER_WITHOUT_PLUS_SIGN - )->setPreferredDomesticCarrierCode(""); - $this->assertEquals( - $shorterAlphaNumber, - $this->phoneUtil->parseAndKeepRawInput("1800 six-flag", RegionCode::US) - ); - - $shorterAlphaNumber->setRawInput("+1800 six-flag")->setCountryCodeSource( - CountryCodeSource::FROM_NUMBER_WITH_PLUS_SIGN - ); - $this->assertEquals( - $shorterAlphaNumber, - $this->phoneUtil->parseAndKeepRawInput("+1800 six-flag", RegionCode::NZ) - ); - - $shorterAlphaNumber->setRawInput("001800 six-flag")->setCountryCodeSource( - CountryCodeSource::FROM_NUMBER_WITH_IDD - ); - $this->assertEquals( - $shorterAlphaNumber, - $this->phoneUtil->parseAndKeepRawInput("001800 six-flag", RegionCode::NZ) - ); - - // Invalid region code supplied. - try { - $this->phoneUtil->parseAndKeepRawInput("123 456 7890", RegionCode::CS); - $this->fail("Deprecated region code not allowed: should fail."); - } catch (NumberParseException $e) { - // Expected this exception. - $this->assertEquals( - NumberParseException::INVALID_COUNTRY_CODE, - $e->getErrorType(), - "Wrong error type stored in exception." - ); - } - - $koreanNumber = new PhoneNumber(); - $koreanNumber->setCountryCode(82)->setNationalNumber(22123456)->setRawInput( - "08122123456" - )->setCountryCodeSource(CountryCodeSource::FROM_DEFAULT_COUNTRY)->setPreferredDomesticCarrierCode("81"); - $this->assertEquals($koreanNumber, $this->phoneUtil->parseAndKeepRawInput("08122123456", RegionCode::KR)); - } - - public function testParseItalianLeadingZeros() - { - // Test the number "011". - $oneZero = new PhoneNumber(); - $oneZero->setCountryCode(61)->setNationalNumber(11)->setItalianLeadingZero(true); - $this->assertEquals($oneZero, $this->phoneUtil->parse("011", RegionCode::AU)); - - // Test the number "001". - $twoZeros = new PhoneNumber(); - $twoZeros->setCountryCode(61)->setNationalNumber(1)->setItalianLeadingZero(true)->setNumberOfLeadingZeros(2); - $this->assertEquals($twoZeros, $this->phoneUtil->parse("001", RegionCode::AU)); - - // Test the number "000". This number has 2 leading zeros. - $stillTwoZeros = new PhoneNumber(); - $stillTwoZeros->setCountryCode(61)->setNationalNumber(0)->setItalianLeadingZero(true)->setNumberOfLeadingZeros( - 2 - ); - $this->assertEquals($stillTwoZeros, $this->phoneUtil->parse("000", RegionCode::AU)); - - // Test the number "0000". This number has 3 leading zeros. - $threeZeros = new PhoneNumber(); - $threeZeros->setCountryCode(61)->setNationalNumber(0)->setItalianLeadingZero(true)->setNumberOfLeadingZeros(3); - $this->assertEquals($threeZeros, $this->phoneUtil->parse("0000", RegionCode::AU)); - } - - public function testCountryWithNoNumberDesc() - { - // Andorra is a country where we don't have PhoneNumberDesc info in the metadata. - $adNumber = new PhoneNumber(); - $adNumber->setCountryCode(376)->setNationalNumber(12345); - - $this->assertEquals("+376 12345", $this->phoneUtil->format($adNumber, PhoneNumberFormat::INTERNATIONAL)); - $this->assertEquals("+37612345", $this->phoneUtil->format($adNumber, PhoneNumberFormat::E164)); - $this->assertEquals("12345", $this->phoneUtil->format($adNumber, PhoneNumberFormat::NATIONAL)); - $this->assertEquals(PhoneNumberType::UNKNOWN, $this->phoneUtil->getNumberType($adNumber)); - $this->assertFalse($this->phoneUtil->isValidNumber($adNumber)); - - // Test dialing a US number from within Andorra. - $this->assertEquals( - "00 1 650 253 0000", - $this->phoneUtil->formatOutOfCountryCallingNumber(self::$usNumber, RegionCode::AD) - ); - } - - public function testUnknownCountryCallingCode() - { - $this->assertFalse($this->phoneUtil->isValidNumber(self::$unknownCountryCodeNoRawInput)); - // It's not very well defined as to what the E164 representation for a number with an invalid - // country calling code is, but just prefixing the country code and national number is about - // the best we can do. - $this->assertEquals( - "+212345", - $this->phoneUtil->format(self::$unknownCountryCodeNoRawInput, PhoneNumberFormat::E164) - ); - } - - public function testIsNumberMatchMatches() - { - // Test simple matches where formatting is different, or leading zeros, or country calling code - // has been specified. - $this->assertEquals( - MatchType::EXACT_MATCH, - $this->phoneUtil->isNumberMatch("+64 3 331 6005", "+64 03 331 6005") - ); - $this->assertEquals(MatchType::EXACT_MATCH, $this->phoneUtil->isNumberMatch("+800 1234 5678", "+80012345678")); - $this->assertEquals( - MatchType::EXACT_MATCH, - $this->phoneUtil->isNumberMatch("+64 03 331-6005", "+64 03331 6005") - ); - $this->assertEquals(MatchType::EXACT_MATCH, $this->phoneUtil->isNumberMatch("+643 331-6005", "+64033316005")); - $this->assertEquals(MatchType::EXACT_MATCH, $this->phoneUtil->isNumberMatch("+643 331-6005", "+6433316005")); - $this->assertEquals(MatchType::EXACT_MATCH, $this->phoneUtil->isNumberMatch("+64 3 331-6005", "+6433316005")); - $this->assertEquals( - MatchType::EXACT_MATCH, - $this->phoneUtil->isNumberMatch("+64 3 331-6005", "tel:+64-3-331-6005;isub=123") - ); - // Test alpha numbers. - $this->assertEquals( - MatchType::EXACT_MATCH, - $this->phoneUtil->isNumberMatch("+1800 siX-Flags", "+1 800 7493 5247") - ); - // Test numbers with extensions. - $this->assertEquals( - MatchType::EXACT_MATCH, - $this->phoneUtil->isNumberMatch("+64 3 331-6005 extn 1234", "+6433316005#1234") - ); - // Test proto buffers. - $this->assertEquals(MatchType::EXACT_MATCH, $this->phoneUtil->isNumberMatch(self::$nzNumber, "+6403 331 6005")); - - $nzNumber = new PhoneNumber(); - $nzNumber->mergeFrom(self::$nzNumber)->setExtension("3456"); - $this->assertEquals( - MatchType::EXACT_MATCH, - $this->phoneUtil->isNumberMatch($nzNumber, "+643 331 6005 ext 3456") - ); - - // Check empty extensions are ignored. - $nzNumber->setExtension(""); - $this->assertEquals(MatchType::EXACT_MATCH, $this->phoneUtil->isNumberMatch($nzNumber, "+6403 331 6005")); - // Check variant with two proto buffers. - $this->assertEquals( - MatchType::EXACT_MATCH, - $this->phoneUtil->isNumberMatch($nzNumber, self::$nzNumber), - "Number " . (string)$nzNumber . " did not match " . (string)self::$nzNumber - ); - - // Check raw_input, country_code_source and preferred_domestic_carrier_code are ignored. - $brNumberOne = new PhoneNumber(); - $brNumberTwo = new PhoneNumber(); - $brNumberOne->setCountryCode(55)->setNationalNumber(3121286979) - ->setCountryCodeSource(CountryCodeSource::FROM_NUMBER_WITH_PLUS_SIGN) - ->setPreferredDomesticCarrierCode("12")->setRawInput("012 3121286979"); - $brNumberTwo->setCountryCode(55)->setNationalNumber(3121286979) - ->setCountryCodeSource(CountryCodeSource::FROM_DEFAULT_COUNTRY) - ->setPreferredDomesticCarrierCode("14")->setRawInput("143121286979"); - - $this->assertEquals(MatchType::EXACT_MATCH, $this->phoneUtil->isNumberMatch($brNumberOne, $brNumberTwo)); - } - - public function testIsNumberMatchNonMatches() - { - // Non-matches. - $this->assertEquals(MatchType::NO_MATCH, $this->phoneUtil->isNumberMatch("03 331 6005", "03 331 6006")); - $this->assertEquals(MatchType::NO_MATCH, $this->phoneUtil->isNumberMatch("+800 1234 5678", "+1 800 1234 5678")); - // Different country calling code, partial number match. - $this->assertEquals(MatchType::NO_MATCH, $this->phoneUtil->isNumberMatch("+64 3 331-6005", "+16433316005")); - // Different country calling code, same number. - $this->assertEquals(MatchType::NO_MATCH, $this->phoneUtil->isNumberMatch("+64 3 331-6005", "+6133316005")); - // Extension different, all else the same. - $this->assertEquals( - MatchType::NO_MATCH, - $this->phoneUtil->isNumberMatch("+64 3 331-6005 extn 1234", "0116433316005#1235") - ); - $this->assertEquals( - MatchType::NO_MATCH, - $this->phoneUtil->isNumberMatch("+64 3 331-6005 extn 1234", "tel:+64-3-331-6005;ext=1235") - ); - // NSN matches, but extension is different - not the same number. - $this->assertEquals( - MatchType::NO_MATCH, - $this->phoneUtil->isNumberMatch("+64 3 331-6005 ext.1235", "3 331 6005#1234") - ); - - // Invalid numbers that can't be parsed. - $this->assertEquals(MatchType::NOT_A_NUMBER, $this->phoneUtil->isNumberMatch("4", "3 331 6043")); - $this->assertEquals(MatchType::NOT_A_NUMBER, $this->phoneUtil->isNumberMatch("+43", "+64 3 331 6005")); - $this->assertEquals(MatchType::NOT_A_NUMBER, $this->phoneUtil->isNumberMatch("+43", "64 3 331 6005")); - $this->assertEquals(MatchType::NOT_A_NUMBER, $this->phoneUtil->isNumberMatch("Dog", "64 3 331 6005")); - } - - public function testIsNumberMatchNsnMatches() - { - // NSN matches. - $this->assertEquals(MatchType::NSN_MATCH, $this->phoneUtil->isNumberMatch("+64 3 331-6005", "03 331 6005")); - $this->assertEquals( - MatchType::NSN_MATCH, - $this->phoneUtil->isNumberMatch("+64 3 331-6005", "tel:03-331-6005;isub=1234;phone-context=abc.nz") - ); - $this->assertEquals(MatchType::NSN_MATCH, $this->phoneUtil->isNumberMatch(self::$nzNumber, "03 331 6005")); - // Here the second number possibly starts with the country calling code for New Zealand, - // although we are unsure. - $unchangedNzNumber = new PhoneNumber(); - $unchangedNzNumber->mergeFrom(self::$nzNumber); - $this->assertEquals( - MatchType::NSN_MATCH, - $this->phoneUtil->isNumberMatch($unchangedNzNumber, "(64-3) 331 6005") - ); - // Check the phone number proto was not edited during the method call. - $this->assertEquals(self::$nzNumber, $unchangedNzNumber); - - // Here, the 1 might be a national prefix, if we compare it to the US number, so the resultant - // match is an NSN match. - $this->assertEquals(MatchType::NSN_MATCH, $this->phoneUtil->isNumberMatch(self::$usNumber, "1-650-253-0000")); - $this->assertEquals(MatchType::NSN_MATCH, $this->phoneUtil->isNumberMatch(self::$usNumber, "6502530000")); - $this->assertEquals(MatchType::NSN_MATCH, $this->phoneUtil->isNumberMatch("+1 650-253 0000", "1 650 253 0000")); - $this->assertEquals(MatchType::NSN_MATCH, $this->phoneUtil->isNumberMatch("1 650-253 0000", "1 650 253 0000")); - $this->assertEquals(MatchType::NSN_MATCH, $this->phoneUtil->isNumberMatch("1 650-253 0000", "+1 650 253 0000")); - // For this case, the match will be a short NSN match, because we cannot assume that the 1 might - // be a national prefix, so don't remove it when parsing. - $randomNumber = new PhoneNumber(); - $randomNumber->setCountryCode(41)->setNationalNumber(6502530000); - $this->assertEquals( - MatchType::SHORT_NSN_MATCH, - $this->phoneUtil->isNumberMatch($randomNumber, "1-650-253-0000") - ); - } - - public function testIsNumberMatchShortNsnMatches() - { - // Short NSN matches with the country not specified for either one or both numbers. - $this->assertEquals(MatchType::SHORT_NSN_MATCH, $this->phoneUtil->isNumberMatch("+64 3 331-6005", "331 6005")); - $this->assertEquals( - MatchType::SHORT_NSN_MATCH, - $this->phoneUtil->isNumberMatch("+64 3 331-6005", "tel:331-6005;phone-context=abc.nz") - ); - $this->assertEquals( - MatchType::SHORT_NSN_MATCH, - $this->phoneUtil->isNumberMatch("+64 3 331-6005", "tel:331-6005;isub=1234;phone-context=abc.nz") - ); - $this->assertEquals( - MatchType::SHORT_NSN_MATCH, - $this->phoneUtil->isNumberMatch("+64 3 331-6005", "tel:331-6005;isub=1234;phone-context=abc.nz;a=%A1") - ); - - // We did not know that the "0" was a national prefix since neither number has a country code, - // so this is considered a SHORT_NSN_MATCH. - $this->assertEquals(MatchType::SHORT_NSN_MATCH, $this->phoneUtil->isNumberMatch("3 331-6005", "03 331 6005")); - $this->assertEquals(MatchType::SHORT_NSN_MATCH, $this->phoneUtil->isNumberMatch("3 331-6005", "331 6005")); - $this->assertEquals( - MatchType::SHORT_NSN_MATCH, - $this->phoneUtil->isNumberMatch("3 331-6005", "tel:331-6005;phone-context=abc.nz") - ); - $this->assertEquals(MatchType::SHORT_NSN_MATCH, $this->phoneUtil->isNumberMatch("3 331-6005", "+64 331 6005")); - - // Short NSN match with the country specified. - $this->assertEquals(MatchType::SHORT_NSN_MATCH, $this->phoneUtil->isNumberMatch("03 331-6005", "331 6005")); - $this->assertEquals(MatchType::SHORT_NSN_MATCH, $this->phoneUtil->isNumberMatch("1 234 345 6789", "345 6789")); - $this->assertEquals( - MatchType::SHORT_NSN_MATCH, - $this->phoneUtil->isNumberMatch("+1 (234) 345 6789", "345 6789") - ); - // NSN matches, country calling code omitted for one number, extension missing for one. - $this->assertEquals( - MatchType::SHORT_NSN_MATCH, - $this->phoneUtil->isNumberMatch("+64 3 331-6005", "3 331 6005#1234") - ); - // One has Italian leading zero, one does not. - $italianNumberOne = new PhoneNumber(); - $italianNumberOne->setCountryCode(39)->setNationalNumber(1234)->setItalianLeadingZero(true); - $italianNumberTwo = new PhoneNumber(); - $italianNumberTwo->setCountryCode(39)->setNationalNumber(1234); - $this->assertEquals( - MatchType::SHORT_NSN_MATCH, - $this->phoneUtil->isNumberMatch($italianNumberOne, $italianNumberTwo) - ); - // One has an extension, the other has an extension of "". - $italianNumberOne->setExtension("1234")->clearItalianLeadingZero(); - $italianNumberTwo->setExtension(""); - $this->assertEquals( - MatchType::SHORT_NSN_MATCH, - $this->phoneUtil->isNumberMatch($italianNumberOne, $italianNumberTwo) - ); - } - - public function testCanBeInternationallyDialled() - { - // We have no-international-dialling rules for the US in our test metadata that say that - // toll-free numbers cannot be dialled internationally. - $this->assertFalse($this->phoneUtil->canBeInternationallyDialled(self::$usTollFree)); - // Normal US numbers can be internationally dialled. - $this->assertTrue($this->phoneUtil->canBeInternationallyDialled(self::$usNumber)); - - // Invalid number. - $this->assertTrue($this->phoneUtil->canBeInternationallyDialled(self::$usLocalNumber)); - - // We have no data for NZ - should return true. - $this->assertTrue($this->phoneUtil->canBeInternationallyDialled(self::$nzNumber)); - $this->assertTrue($this->phoneUtil->canBeInternationallyDialled(self::$internationalTollFree)); - } - - public function testIsAlphaNumber() - { - $this->assertTrue($this->phoneUtil->isAlphaNumber("1800 six-flags")); - $this->assertTrue($this->phoneUtil->isAlphaNumber("1800 six-flags ext. 1234")); - $this->assertTrue($this->phoneUtil->isAlphaNumber("+800 six-flags")); - $this->assertTrue($this->phoneUtil->isAlphaNumber("180 six-flags")); - $this->assertFalse($this->phoneUtil->isAlphaNumber("1800 123-1234")); - $this->assertFalse($this->phoneUtil->isAlphaNumber("1 six-flags")); - $this->assertFalse($this->phoneUtil->isAlphaNumber("18 six-flags")); - $this->assertFalse($this->phoneUtil->isAlphaNumber("1800 123-1234 extension: 1234")); - $this->assertFalse($this->phoneUtil->isAlphaNumber("+800 1234-1234")); - } - - public function testIsMobileNumberPortableRegion() - { - $this->assertTrue($this->phoneUtil->isMobileNumberPortableRegion(RegionCode::US)); - $this->assertTrue($this->phoneUtil->isMobileNumberPortableRegion(RegionCode::GB)); - $this->assertFalse($this->phoneUtil->isMobileNumberPortableRegion(RegionCode::AE)); - $this->assertFalse($this->phoneUtil->isMobileNumberPortableRegion(RegionCode::BS)); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/ShortNumberInfoTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/ShortNumberInfoTest.php deleted file mode 100644 index e48f232a4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/ShortNumberInfoTest.php +++ /dev/null @@ -1,435 +0,0 @@ -phoneUtil = PhoneNumberUtil::getInstance( - PhoneNumberUtilTest::TEST_META_DATA_FILE_PREFIX, - CountryCodeToRegionCodeMapForTesting::$countryCodeToRegionCodeMapForTesting - ); - $this->shortInfo = ShortNumberInfo::getInstance(); - } - - public function testIsPossibleShortNumber() - { - $possibleNumber = new PhoneNumber(); - $possibleNumber->setCountryCode(33)->setNationalNumber(123456); - - $this->assertTrue($this->shortInfo->isPossibleShortNumber($possibleNumber)); - $this->assertTrue($this->shortInfo->isPossibleShortNumberForRegion($this->parse(123456, RegionCode::FR), RegionCode::FR)); - - $impossibleNumber = new PhoneNumber(); - $impossibleNumber->setCountryCode(33)->setNationalNumber(9); - $this->assertFalse($this->shortInfo->isPossibleShortNumber($impossibleNumber)); - - // Note that GB and GG share the country calling code 44, and that this number is possible but - // not valid. - $gbNumber = new PhoneNumber(); - $gbNumber->setCountryCode(44)->setNationalNumber(11001); - $this->assertTrue($this->shortInfo->isPossibleShortNumber($gbNumber)); - } - - public function testIsValidShortNumber() - { - $phoneNumberObj = new PhoneNumber(); - $phoneNumberObj->setCountryCode(33)->setNationalNumber(1010); - $this->assertTrue($this->shortInfo->isValidShortNumber($phoneNumberObj)); - $this->assertTrue($this->shortInfo->isValidShortNumberForRegion($this->parse(1010, RegionCode::FR), RegionCode::FR)); - - $phoneNumberObj = new PhoneNumber(); - $phoneNumberObj->setCountryCode(33)->setNationalNumber(123456); - $this->assertFalse($this->shortInfo->isValidShortNumber($phoneNumberObj)); - $this->assertFalse($this->shortInfo->isValidShortNumberForRegion($this->parse(123456, RegionCode::FR), RegionCode::FR)); - - // Note that GB and GG share the country calling code 44 - $phoneNumberObj = new PhoneNumber(); - $phoneNumberObj->setCountryCode(44)->setNationalNumber(18001); - $this->assertTrue($this->shortInfo->isValidShortNumber($phoneNumberObj)); - } - - public function testGetExpectedCost() - { - $premiumRateExample = $this->shortInfo->getExampleShortNumberForCost( - RegionCode::FR, - ShortNumberCost::PREMIUM_RATE - ); - $this->assertEquals( - ShortNumberCost::PREMIUM_RATE, - $this->shortInfo->getExpectedCostForRegion($this->parse($premiumRateExample, RegionCode::FR), RegionCode::FR) - ); - - $premiumRateNumber = new PhoneNumber(); - $premiumRateNumber->setCountryCode(33)->setNationalNumber($premiumRateExample); - $this->assertEquals(ShortNumberCost::PREMIUM_RATE, $this->shortInfo->getExpectedCost($premiumRateNumber)); - - $standardRateExample = $this->shortInfo->getExampleShortNumberForCost( - RegionCode::FR, - ShortNumberCost::STANDARD_RATE - ); - $this->assertEquals( - ShortNumberCost::STANDARD_RATE, - $this->shortInfo->getExpectedCostForRegion($this->parse($standardRateExample, RegionCode::FR), RegionCode::FR) - ); - - $standardRateNumber = new PhoneNumber(); - $standardRateNumber->setCountryCode(33)->setNationalNumber($standardRateExample); - $this->assertEquals(ShortNumberCost::STANDARD_RATE, $this->shortInfo->getExpectedCost($standardRateNumber)); - - $tollFreeExample = $this->shortInfo->getExampleShortNumberForCost(RegionCode::FR, ShortNumberCost::TOLL_FREE); - $this->assertEquals( - ShortNumberCost::TOLL_FREE, - $this->shortInfo->getExpectedCostForRegion($this->parse($tollFreeExample, RegionCode::FR), RegionCode::FR) - ); - $tollFreeNumber = new PhoneNumber(); - $tollFreeNumber->setCountryCode(33)->setNationalNumber($tollFreeExample); - $this->assertEquals(ShortNumberCost::TOLL_FREE, $this->shortInfo->getExpectedCost($tollFreeNumber)); - - $this->assertEquals( - ShortNumberCost::UNKNOWN_COST, - $this->shortInfo->getExpectedCostForRegion($this->parse("12345", RegionCode::FR), RegionCode::FR) - ); - $unknownCostNumber = new PhoneNumber(); - $unknownCostNumber->setCountryCode(33)->setNationalNumber(12345); - $this->assertEquals(ShortNumberCost::UNKNOWN_COST, $this->shortInfo->getExpectedCost($unknownCostNumber)); - - // Test that an invalid number may nevertheless have a cost other than UNKNOWN_COST. - $this->assertFalse($this->shortInfo->isValidShortNumberForRegion($this->parse("116123", RegionCode::FR), RegionCode::FR)); - $this->assertEquals( - ShortNumberCost::TOLL_FREE, - $this->shortInfo->getExpectedCostForRegion($this->parse("116123", RegionCode::FR), RegionCode::FR) - ); - $invalidNumber = new PhoneNumber(); - $invalidNumber->setCountryCode(33)->setNationalNumber(116123); - $this->assertFalse($this->shortInfo->isValidShortNumber($invalidNumber)); - $this->assertEquals(ShortNumberCost::TOLL_FREE, $this->shortInfo->getExpectedCost($invalidNumber)); - - // Test a nonexistent country code. - $this->assertEquals( - ShortNumberCost::UNKNOWN_COST, - $this->shortInfo->getExpectedCostForRegion($this->parse("911", RegionCode::US), RegionCode::ZZ) - ); - $unknownCostNumber->clear(); - $unknownCostNumber->setCountryCode(123)->setNationalNumber(911); - $this->assertEquals(ShortNumberCost::UNKNOWN_COST, $this->shortInfo->getExpectedCost($unknownCostNumber)); - } - - public function testGetExpectedCostForSharedCountryCallingCode() - { - // Test some numbers which have different costs in countries sharing the same country calling - // code. In Australia, 1234 is premium-rate, 1194 is standard-rate, and 733 is toll-free. These - // are not known to be valid numbers in the Christmas Islands. - $ambiguousPremiumRateString = "1234"; - $ambiguousPremiumRateNumber = new PhoneNumber(); - $ambiguousPremiumRateNumber->setCountryCode(61)->setNationalNumber(1234); - $ambiguousStandardRateString = "1194"; - $ambiguousStandardRateNumber = new PhoneNumber(); - $ambiguousStandardRateNumber->setCountryCode(61)->setNationalNumber(1194); - $ambiguousTollFreeString = "733"; - $ambiguousTollFreeNumber = new PhoneNumber(); - $ambiguousTollFreeNumber->setCountryCode(61)->setNationalNumber(733); - - $this->assertTrue($this->shortInfo->isValidShortNumber($ambiguousPremiumRateNumber)); - $this->assertTrue($this->shortInfo->isValidShortNumber($ambiguousStandardRateNumber)); - $this->assertTrue($this->shortInfo->isValidShortNumber($ambiguousTollFreeNumber)); - - $this->assertTrue($this->shortInfo->isValidShortNumberForRegion($this->parse($ambiguousPremiumRateString, RegionCode::AU), RegionCode::AU)); - $this->assertEquals( - ShortNumberCost::PREMIUM_RATE, - $this->shortInfo->getExpectedCostForRegion($this->parse($ambiguousPremiumRateString, RegionCode::AU), RegionCode::AU) - ); - $this->assertFalse($this->shortInfo->isValidShortNumberForRegion($this->parse($ambiguousPremiumRateString, RegionCode::CX), RegionCode::CX)); - $this->assertEquals( - ShortNumberCost::UNKNOWN_COST, - $this->shortInfo->getExpectedCostForRegion($this->parse($ambiguousPremiumRateString, RegionCode::CX), RegionCode::CX) - ); - // PREMIUM_RATE takes precedence over UNKNOWN_COST. - $this->assertEquals( - ShortNumberCost::PREMIUM_RATE, - $this->shortInfo->getExpectedCost($ambiguousPremiumRateNumber) - ); - - $this->assertTrue($this->shortInfo->isValidShortNumberForRegion($this->parse($ambiguousStandardRateString, RegionCode::AU), RegionCode::AU)); - $this->assertEquals( - ShortNumberCost::STANDARD_RATE, - $this->shortInfo->getExpectedCostForRegion($this->parse($ambiguousStandardRateString, RegionCode::AU), RegionCode::AU) - ); - $this->assertFalse($this->shortInfo->isValidShortNumberForRegion($this->parse($ambiguousStandardRateString, RegionCode::CX), RegionCode::CX)); - $this->assertEquals( - ShortNumberCost::UNKNOWN_COST, - $this->shortInfo->getExpectedCostForRegion($this->parse($ambiguousStandardRateString, RegionCode::CX), RegionCode::CX) - ); - $this->assertEquals( - ShortNumberCost::UNKNOWN_COST, - $this->shortInfo->getExpectedCost($ambiguousStandardRateNumber) - ); - - $this->assertTrue($this->shortInfo->isValidShortNumberForRegion($this->parse($ambiguousTollFreeString, RegionCode::AU), RegionCode::AU)); - $this->assertEquals( - ShortNumberCost::TOLL_FREE, - $this->shortInfo->getExpectedCostForRegion($this->parse($ambiguousTollFreeString, RegionCode::AU), RegionCode::AU) - ); - $this->assertFalse($this->shortInfo->isValidShortNumberForRegion($this->parse($ambiguousTollFreeString, RegionCode::CX), RegionCode::CX)); - $this->assertEquals( - ShortNumberCost::UNKNOWN_COST, - $this->shortInfo->getExpectedCostForRegion($this->parse($ambiguousTollFreeString, RegionCode::CX), RegionCode::CX) - ); - $this->assertEquals(ShortNumberCost::UNKNOWN_COST, $this->shortInfo->getExpectedCost($ambiguousTollFreeNumber)); - } - - public function testGetExampleShortNumber() - { - $this->assertEquals("8711", $this->shortInfo->getExampleShortNumber(RegionCode::AM)); - $this->assertEquals("1010", $this->shortInfo->getExampleShortNumber(RegionCode::FR)); - $this->assertEquals("", $this->shortInfo->getExampleShortNumber(RegionCode::UN001)); - $this->assertEquals("", $this->shortInfo->getExampleShortNumber(null)); - } - - public function testGetExampleShortNumberForCost() - { - $this->assertEquals( - "3010", - $this->shortInfo->getExampleShortNumberForCost(RegionCode::FR, ShortNumberCost::TOLL_FREE) - ); - $this->assertEquals( - "1023", - $this->shortInfo->getExampleShortNumberForCost(RegionCode::FR, ShortNumberCost::STANDARD_RATE) - ); - $this->assertEquals( - "42000", - $this->shortInfo->getExampleShortNumberForCost(RegionCode::FR, ShortNumberCost::PREMIUM_RATE) - ); - $this->assertEquals( - "", - $this->shortInfo->getExampleShortNumberForCost(RegionCode::FR, ShortNumberCost::UNKNOWN_COST) - ); - } - - public function testConnectsToEmergencyNumber_US() - { - $this->assertTrue($this->shortInfo->connectsToEmergencyNumber("911", RegionCode::US)); - $this->assertTrue($this->shortInfo->connectsToEmergencyNumber("112", RegionCode::US)); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("999", RegionCode::US)); - } - - public function testConnectsToEmergencyNumberLongNumber_US() - { - $this->assertTrue($this->shortInfo->connectsToEmergencyNumber("9116666666", RegionCode::US)); - $this->assertTrue($this->shortInfo->connectsToEmergencyNumber("1126666666", RegionCode::US)); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("9996666666", RegionCode::US)); - } - - public function testConnectsToEmergencyNumberWithFormatting_US() - { - $this->assertTrue($this->shortInfo->connectsToEmergencyNumber("9-1-1", RegionCode::US)); - $this->assertTrue($this->shortInfo->connectsToEmergencyNumber("1-1-2", RegionCode::US)); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("9-9-9", RegionCode::US)); - } - - public function testConnectsToEmergencyNumberWithPlusSign_US() - { - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("+911", RegionCode::US)); - $this->assertFalse( - $this->shortInfo->connectsToEmergencyNumber(self::$plusSymbol . "911", RegionCode::US) - ); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber(" +911", RegionCode::US)); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("+112", RegionCode::US)); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("+999", RegionCode::US)); - } - - public function testConnectsToEmergencyNumber_BR() - { - $this->assertTrue($this->shortInfo->connectsToEmergencyNumber("911", RegionCode::BR)); - $this->assertTrue($this->shortInfo->connectsToEmergencyNumber("190", RegionCode::BR)); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("999", RegionCode::BR)); - } - - public function testConnectsToEmergencyNumberLongNumber_BR() - { - // Brazilian emergency numbers don't work when additional digits are appended. - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("9111", RegionCode::BR)); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("1900", RegionCode::BR)); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("9996", RegionCode::BR)); - } - - public function testConnectsToEmergencyNumber_CL() - { - $this->assertTrue($this->shortInfo->connectsToEmergencyNumber('131', RegionCode::CL)); - $this->assertTrue($this->shortInfo->connectsToEmergencyNumber('133', RegionCode::CL)); - } - - public function testConnectsToEmergencyNumberLongNumber_CL() - { - // Chilean emergency numbers don't work when additional digits are appended. - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber('1313', RegionCode::CL)); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber('1330', RegionCode::CL)); - } - - public function testConnectsToEmergencyNumber_AO() - { - // Angola doesn't have any metadata for emergency numbers in the test metadata. - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("911", RegionCode::AO)); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("222123456", RegionCode::BR)); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("923123456", RegionCode::BR)); - } - - public function testConnectsToEmergencyNumber_ZW() - { - // Zimbabwe doesn't have any metadata in the test metadata. - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("911", RegionCode::ZW)); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("01312345", RegionCode::ZW)); - $this->assertFalse($this->shortInfo->connectsToEmergencyNumber("0711234567", RegionCode::ZW)); - } - - public function testIsEmergencyNumber_US() - { - $this->assertTrue($this->shortInfo->isEmergencyNumber("911", RegionCode::US)); - $this->assertTrue($this->shortInfo->isEmergencyNumber("112", RegionCode::US)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("999", RegionCode::US)); - } - - public function testIsEmergencyNumberLongNumber_US() - { - $this->assertFalse($this->shortInfo->isEmergencyNumber("9116666666", RegionCode::US)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("1126666666", RegionCode::US)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("9996666666", RegionCode::US)); - } - - public function testIsEmergencyNumberWithFormatting_US() - { - $this->assertTrue($this->shortInfo->isEmergencyNumber("9-1-1", RegionCode::US)); - $this->assertTrue($this->shortInfo->isEmergencyNumber("*911", RegionCode::US)); - $this->assertTrue($this->shortInfo->isEmergencyNumber("1-1-2", RegionCode::US)); - $this->assertTrue($this->shortInfo->isEmergencyNumber("*112", RegionCode::US)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("9-9-9", RegionCode::US)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("*999", RegionCode::US)); - } - - public function testIsEmergencyNumberWithPlusSign_US() - { - $this->assertFalse($this->shortInfo->isEmergencyNumber("+911", RegionCode::US)); - $this->assertFalse($this->shortInfo->isEmergencyNumber(self::$plusSymbol . "911", RegionCode::US)); - $this->assertFalse($this->shortInfo->isEmergencyNumber(" +911", RegionCode::US)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("+112", RegionCode::US)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("+999", RegionCode::US)); - } - - public function testIsEmergencyNumber_BR() - { - $this->assertTrue($this->shortInfo->isEmergencyNumber("911", RegionCode::BR)); - $this->assertTrue($this->shortInfo->isEmergencyNumber("190", RegionCode::BR)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("999", RegionCode::BR)); - } - - public function testIsEmergencyNumberLongNumber_BR() - { - $this->assertFalse($this->shortInfo->isEmergencyNumber("9111", RegionCode::BR)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("1900", RegionCode::BR)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("9996", RegionCode::BR)); - } - - public function testIsEmergencyNumber_AO() - { - // Angola doesn't have any metadata for emergency numbers in the test metadata. - $this->assertFalse($this->shortInfo->isEmergencyNumber("911", RegionCode::AO)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("222123456", RegionCode::AO)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("923123456", RegionCode::AO)); - } - - public function testIsEmergencyNumber_ZW() - { - // Zimbabwe doesn't have any metadata in the test metadata. - $this->assertFalse($this->shortInfo->isEmergencyNumber("911", RegionCode::ZW)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("01312345", RegionCode::ZW)); - $this->assertFalse($this->shortInfo->isEmergencyNumber("0711234567", RegionCode::ZW)); - } - - - public function testEmergencyNumberForSharedCountryCallingCode() - { - // Test the emergency number 112, which is valid in both Australia and the Christmas Islands. - $this->assertTrue($this->shortInfo->isEmergencyNumber("112", RegionCode::AU)); - $this->assertTrue($this->shortInfo->isValidShortNumberForRegion($this->parse("112", RegionCode::AU), RegionCode::AU)); - $this->assertEquals( - ShortNumberCost::TOLL_FREE, - $this->shortInfo->getExpectedCostForRegion($this->parse("112", RegionCode::AU), RegionCode::AU) - ); - $this->assertTrue($this->shortInfo->isEmergencyNumber("112", RegionCode::CX)); - $this->assertTrue($this->shortInfo->isValidShortNumberForRegion($this->parse("112", RegionCode::CX), RegionCode::CX)); - $this->assertEquals( - ShortNumberCost::TOLL_FREE, - $this->shortInfo->getExpectedCostForRegion($this->parse("112", RegionCode::CX), RegionCode::CX) - ); - $sharedEmergencyNumber = new PhoneNumber(); - $sharedEmergencyNumber->setCountryCode(61)->setNationalNumber(112); - $this->assertTrue($this->shortInfo->isValidShortNumber($sharedEmergencyNumber)); - $this->assertEquals(ShortNumberCost::TOLL_FREE, $this->shortInfo->getExpectedCost($sharedEmergencyNumber)); - } - - public function testOverlappingNANPANumber() - { - // 211 is an emergency number in Barbados, while it is a toll-free information line in Canada - // and the USA. - $this->assertTrue($this->shortInfo->isEmergencyNumber("211", RegionCode::BB)); - $this->assertEquals( - ShortNumberCost::TOLL_FREE, - $this->shortInfo->getExpectedCostForRegion($this->parse("211", RegionCode::BB), RegionCode::BB) - ); - $this->assertFalse($this->shortInfo->isEmergencyNumber("211", RegionCode::US)); - $this->assertEquals( - ShortNumberCost::UNKNOWN_COST, - $this->shortInfo->getExpectedCostForRegion($this->parse("211", RegionCode::US), RegionCode::US) - ); - $this->assertFalse($this->shortInfo->isEmergencyNumber("211", RegionCode::CA)); - $this->assertEquals( - ShortNumberCost::TOLL_FREE, - $this->shortInfo->getExpectedCostForRegion($this->parse("211", RegionCode::CA), RegionCode::CA) - ); - } - - public function testCountryCallingCodeIsNotIgnored() - { - // +46 is the country calling code for Sweden (SE), and 40404 is a valid short number in the US. - $this->assertFalse($this->shortInfo->isPossibleShortNumberForRegion($this->parse('+4640404', RegionCode::SE), RegionCode::US)); - $this->assertFalse($this->shortInfo->isValidShortNumberForRegion($this->parse('+4640404', RegionCode::SE), RegionCode::US)); - $this->assertEquals(ShortNumberCost::UNKNOWN_COST, $this->shortInfo->getExpectedCostForRegion($this->parse('+4640404', RegionCode::SE), RegionCode::US)); - } - - /** - * @param string $number - * @param string $regionCode - * @return PhoneNumber - */ - private function parse($number, $regionCode) - { - try { - return $this->phoneUtil->parse($number, $regionCode); - } catch (NumberParseException $e) { - $this->fail("Test input data should always parse correctly: " . $number . " (" . $regionCode . ")"); - } - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/ShortNumberUtilTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/ShortNumberUtilTest.php deleted file mode 100644 index fa32e25b3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/ShortNumberUtilTest.php +++ /dev/null @@ -1,156 +0,0 @@ -shortUtil = new ShortNumberUtil( - PhoneNumberUtil::getInstance( - PhoneNumberUtilTest::TEST_META_DATA_FILE_PREFIX, - CountryCodeToRegionCodeMapForTesting::$countryCodeToRegionCodeMapForTesting - ) - ); - } - - public function testConnectsToEmergencyNumber_US() - { - $this->assertTrue($this->shortUtil->connectsToEmergencyNumber("911", RegionCode::US)); - $this->assertTrue($this->shortUtil->connectsToEmergencyNumber("112", RegionCode::US)); - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("999", RegionCode::US)); - } - - public function testConnectsToEmergencyNumberLongNumber_US() - { - $this->assertTrue($this->shortUtil->connectsToEmergencyNumber("9116666666", RegionCode::US)); - $this->assertTrue($this->shortUtil->connectsToEmergencyNumber("1126666666", RegionCode::US)); - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("9996666666", RegionCode::US)); - } - - public function testConnectsToEmergencyNumberWithFormatting_US() - { - $this->assertTrue($this->shortUtil->connectsToEmergencyNumber("9-1-1", RegionCode::US)); - $this->assertTrue($this->shortUtil->connectsToEmergencyNumber("1-1-2", RegionCode::US)); - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("9-9-9", RegionCode::US)); - } - - public function testConnectsToEmergencyNumberWithPlusSign_US() - { - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("+911", RegionCode::US)); - $this->assertFalse( - $this->shortUtil->connectsToEmergencyNumber(self::$plusSymbol . "911", RegionCode::US) - ); - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber(" +911", RegionCode::US)); - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("+112", RegionCode::US)); - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("+999", RegionCode::US)); - } - - public function testConnectsToEmergencyNumber_BR() - { - $this->assertTrue($this->shortUtil->connectsToEmergencyNumber("911", RegionCode::BR)); - $this->assertTrue($this->shortUtil->connectsToEmergencyNumber("190", RegionCode::BR)); - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("999", RegionCode::BR)); - } - - public function testConnectsToEmergencyNumberLongNumber_BR() - { - // Brazilian emergency numbers don't work when additional digits are appended. - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("9111", RegionCode::BR)); - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("1900", RegionCode::BR)); - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("9996", RegionCode::BR)); - } - - public function testConnectsToEmergencyNumber_AO() - { - // Angola doesn't have any metadata for emergency numbers in the test metadata. - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("911", RegionCode::AO)); - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("222123456", RegionCode::BR)); - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("923123456", RegionCode::BR)); - } - - public function testConnectsToEmergencyNumber_ZW() - { - // Zimbabwe doesn't have any metadata in the test metadata. - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("911", RegionCode::ZW)); - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("01312345", RegionCode::ZW)); - $this->assertFalse($this->shortUtil->connectsToEmergencyNumber("0711234567", RegionCode::ZW)); - } - - public function testIsEmergencyNumber_US() - { - $this->assertTrue($this->shortUtil->isEmergencyNumber("911", RegionCode::US)); - $this->assertTrue($this->shortUtil->isEmergencyNumber("112", RegionCode::US)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("999", RegionCode::US)); - } - - public function testIsEmergencyNumberLongNumber_US() - { - $this->assertFalse($this->shortUtil->isEmergencyNumber("9116666666", RegionCode::US)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("1126666666", RegionCode::US)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("9996666666", RegionCode::US)); - } - - public function testIsEmergencyNumberWithFormatting_US() - { - $this->assertTrue($this->shortUtil->isEmergencyNumber("9-1-1", RegionCode::US)); - $this->assertTrue($this->shortUtil->isEmergencyNumber("*911", RegionCode::US)); - $this->assertTrue($this->shortUtil->isEmergencyNumber("1-1-2", RegionCode::US)); - $this->assertTrue($this->shortUtil->isEmergencyNumber("*112", RegionCode::US)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("9-9-9", RegionCode::US)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("*999", RegionCode::US)); - } - - public function testIsEmergencyNumberWithPlusSign_US() - { - $this->assertFalse($this->shortUtil->isEmergencyNumber("+911", RegionCode::US)); - $this->assertFalse($this->shortUtil->isEmergencyNumber(self::$plusSymbol . "911", RegionCode::US)); - $this->assertFalse($this->shortUtil->isEmergencyNumber(" +911", RegionCode::US)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("+112", RegionCode::US)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("+999", RegionCode::US)); - } - - public function testIsEmergencyNumber_BR() - { - $this->assertTrue($this->shortUtil->isEmergencyNumber("911", RegionCode::BR)); - $this->assertTrue($this->shortUtil->isEmergencyNumber("190", RegionCode::BR)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("999", RegionCode::BR)); - } - - public function testIsEmergencyNumberLongNumber_BR() - { - $this->assertFalse($this->shortUtil->isEmergencyNumber("9111", RegionCode::BR)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("1900", RegionCode::BR)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("9996", RegionCode::BR)); - } - - public function testIsEmergencyNumber_AO() - { - // Angola doesn't have any metadata for emergency numbers in the test metadata. - $this->assertFalse($this->shortUtil->isEmergencyNumber("911", RegionCode::AO)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("222123456", RegionCode::AO)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("923123456", RegionCode::AO)); - } - - public function testIsEmergencyNumber_ZW() - { - // Zimbabwe doesn't have any metadata in the test metadata. - $this->assertFalse($this->shortUtil->isEmergencyNumber("911", RegionCode::ZW)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("01312345", RegionCode::ZW)); - $this->assertFalse($this->shortUtil->isEmergencyNumber("0711234567", RegionCode::ZW)); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_800.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_800.php deleted file mode 100644 index f412a81f5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_800.php +++ /dev/null @@ -1,182 +0,0 @@ - - array ( - 'NationalNumberPattern' => '\\d{8}', - 'PossibleNumberPattern' => '\\d{8}', - 'ExampleNumber' => '12345678', - 'PossibleLength' => - array ( - 0 => '-1', - 1 => '8', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'ExampleNumber' => '12345678', - 'PossibleLength' => - array ( - 0 => '-1', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'ExampleNumber' => '12345678', - 'PossibleLength' => - array ( - 0 => '-1', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '\\d{8}', - 'PossibleNumberPattern' => '\\d{8}', - 'ExampleNumber' => '12345678', - 'PossibleLength' => - array ( - 0 => '8', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => '001', - 'countryCode' => 800, - 'internationalPrefix' => '', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{4})(\\d{4})', - 'format' => '$1 $2', - 'leadingDigitsPatterns' => - array ( - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => true, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_979.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_979.php deleted file mode 100644 index 177bf55d1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_979.php +++ /dev/null @@ -1,182 +0,0 @@ - - array ( - 'NationalNumberPattern' => '\\d{9}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '123456789', - 'PossibleLength' => - array ( - 0 => '-1', - 1 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'ExampleNumber' => '123456789', - 'PossibleLength' => - array ( - 0 => '-1', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'ExampleNumber' => '123456789', - 'PossibleLength' => - array ( - 0 => '-1', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '\\d{9}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '123456789', - 'PossibleLength' => - array ( - 0 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => '001', - 'countryCode' => 979, - 'internationalPrefix' => '', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d)(\\d{4})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AD.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AD.php deleted file mode 100644 index 64de51fcb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AD.php +++ /dev/null @@ -1,157 +0,0 @@ - - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'AD', - 'countryCode' => 376, - 'internationalPrefix' => '00', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AE.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AE.php deleted file mode 100644 index dbfbf22c1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AE.php +++ /dev/null @@ -1,164 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[1-9]\\d{8}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - 0 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '[1-9]\\d{8}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '[1-9]\\d{8}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => '600\\d{6}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '600123456', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'AE', - 'countryCode' => 971, - 'internationalPrefix' => '00', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AO.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AO.php deleted file mode 100644 index 865f573cd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AO.php +++ /dev/null @@ -1,179 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[29]\\d{8}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - 0 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '2\\d(?:[26-9]\\d|\\d[26-9])\\d{5}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '222123456', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '9[1-3]\\d{7}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '923123456', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'AO', - 'countryCode' => 244, - 'internationalPrefix' => '00', - 'nationalPrefix' => '0~0', - 'nationalPrefixForParsing' => '0~0', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{3})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AR.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AR.php deleted file mode 100644 index 4522251ad..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AR.php +++ /dev/null @@ -1,299 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[1-3689]\\d{9,10}', - 'PossibleNumberPattern' => '\\d{6,11}', - 'PossibleLength' => - array ( - 0 => 6, - 1 => 7, - 2 => 8, - 3 => 9, - 4 => 10, - 5 => '11', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '[1-3]\\d{9}', - 'PossibleNumberPattern' => '\\d{6,10}', - 'PossibleLength' => - array ( - 0 => 6, - 1 => 7, - 2 => 8, - 3 => 9, - 4 => 10, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '9\\d{10}|[1-3]\\d{9}', - 'PossibleNumberPattern' => '\\d{10,11}', - 'PossibleLength' => - array ( - 0 => '10', - 1 => '11', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '80\\d{8}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - 0 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '6(0\\d|10)\\d{7}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - 0 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'AR', - 'countryCode' => 54, - 'internationalPrefix' => '00', - 'nationalPrefix' => '0', - 'nationalPrefixForParsing' => '0(?:(11|343|3715)15)?', - 'nationalPrefixTransformRule' => '9$1', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{2})(\\d{4})(\\d{4})', - 'format' => '$1 $2-$3', - 'leadingDigitsPatterns' => - array ( - 0 => '11', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 1 => - array ( - 'pattern' => '(\\d{4})(\\d{2})(\\d{4})', - 'format' => '$1 $2-$3', - 'leadingDigitsPatterns' => - array ( - 0 => '1[02-9]|[23]', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 2 => - array ( - 'pattern' => '(9)(11)(\\d{4})(\\d{4})', - 'format' => '$2 15 $3-$4', - 'leadingDigitsPatterns' => - array ( - 0 => '911', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 3 => - array ( - 'pattern' => '(9)(\\d{4})(\\d{2})(\\d{4})', - 'format' => '$2 $3-$4', - 'leadingDigitsPatterns' => - array ( - 0 => '9(?:1[02-9]|[23])', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '0$1 $CC', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 4 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1-$2-$3', - 'leadingDigitsPatterns' => - array ( - 0 => '[68]', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{2})(\\d{4})(\\d{4})', - 'format' => '$1 $2-$3', - 'leadingDigitsPatterns' => - array ( - 0 => '11', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 1 => - array ( - 'pattern' => '(\\d{4})(\\d{2})(\\d{4})', - 'format' => '$1 $2-$3', - 'leadingDigitsPatterns' => - array ( - 0 => '1[02-9]|[23]', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 2 => - array ( - 'pattern' => '(9)(11)(\\d{4})(\\d{4})', - 'format' => '$1 $2 $3 $4', - 'leadingDigitsPatterns' => - array ( - 0 => '911', - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 3 => - array ( - 'pattern' => '(9)(\\d{4})(\\d{2})(\\d{4})', - 'format' => '$1 $2 $3 $4', - 'leadingDigitsPatterns' => - array ( - 0 => '9(?:1[02-9]|[23])', - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 4 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1-$2-$3', - 'leadingDigitsPatterns' => - array ( - 0 => '[68]', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AU.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AU.php deleted file mode 100644 index 74b8bbc91..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_AU.php +++ /dev/null @@ -1,194 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[1-578]\\d{4,14}', - 'PossibleNumberPattern' => '\\d{5,15}', - 'PossibleLength' => - array ( - 0 => '9', - 1 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '[2378]\\d{8}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - 0 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '4\\d{8}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - 0 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '1800\\d{6}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - 0 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '190[0126]\\d{6}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - 0 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'AU', - 'countryCode' => 61, - 'internationalPrefix' => '001[12]', - 'preferredInternationalPrefix' => '0011', - 'nationalPrefix' => '0', - 'nationalPrefixForParsing' => '0', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{4})(\\d{3})(\\d{3})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '1', - ), - 'nationalPrefixFormattingRule' => '$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 1 => - array ( - 'pattern' => '(\\d{1})(\\d{4})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '[2-478]', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_BB.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_BB.php deleted file mode 100644 index efcc07918..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_BB.php +++ /dev/null @@ -1,157 +0,0 @@ - - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'BB', - 'countryCode' => 1, - 'internationalPrefix' => '011', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_BR.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_BR.php deleted file mode 100644 index 6a276d23b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_BR.php +++ /dev/null @@ -1,157 +0,0 @@ - - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'BR', - 'countryCode' => 55, - 'internationalPrefix' => '', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_BS.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_BS.php deleted file mode 100644 index c1f52ba3d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_BS.php +++ /dev/null @@ -1,165 +0,0 @@ - - array ( - 'NationalNumberPattern' => '(242|8(00|66|77|88)|900)\\d{7}', - 'PossibleNumberPattern' => '\\d{7,10}', - 'PossibleLength' => - array ( - 0 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - 0 => '7', - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '242(?:3(?:02|[236][1-9]|4[0-24-9]|5[0-68]|7[3-57]|9[2-5])|4(?:2[237]|51|64|77)|502|636|702)\\d{4}', - 'PossibleNumberPattern' => '\\d{7,10}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '242(357|359|457|557)\\d{4}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '8(00|66|77|88)\\d{7}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '900\\d{7}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'BS', - 'countryCode' => 1, - 'internationalPrefix' => '011', - 'nationalPrefix' => '1', - 'nationalPrefixForParsing' => '1', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_BY.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_BY.php deleted file mode 100644 index 25bed5a44..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_BY.php +++ /dev/null @@ -1,203 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[1-9]\\d{5}', - 'PossibleNumberPattern' => '\\d{6}', - 'PossibleLength' => - array ( - 0 => '6', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '[1-9]\\d{5}', - 'PossibleNumberPattern' => '\\d{6}', - 'ExampleNumber' => '112345', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '[1-9]\\d{5}', - 'PossibleNumberPattern' => '\\d{6}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'BY', - 'countryCode' => 375, - 'internationalPrefix' => '810', - 'nationalPrefix' => '8', - 'nationalPrefixForParsing' => '80?|99999', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{4})', - 'format' => '$1', - 'leadingDigitsPatterns' => - array ( - 0 => '[1-8]', - ), - 'nationalPrefixFormattingRule' => '8 $1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 1 => - array ( - 'pattern' => '(\\d{2})(\\d{3})', - 'format' => '$1 $2', - 'leadingDigitsPatterns' => - array ( - 0 => '[1-8]', - ), - 'nationalPrefixFormattingRule' => '8$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 2 => - array ( - 'pattern' => '(\\d{3})(\\d{3})', - 'format' => '$1 $2', - 'leadingDigitsPatterns' => - array ( - 0 => '[1-8]', - ), - 'nationalPrefixFormattingRule' => '8 $1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_CA.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_CA.php deleted file mode 100644 index a229119e7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_CA.php +++ /dev/null @@ -1,157 +0,0 @@ - - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'CA', - 'countryCode' => 1, - 'internationalPrefix' => '011', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_CC.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_CC.php deleted file mode 100644 index 56a59f4e9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_CC.php +++ /dev/null @@ -1,157 +0,0 @@ - - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'CC', - 'countryCode' => 61, - 'internationalPrefix' => '', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_CN.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_CN.php deleted file mode 100644 index 3276d5da5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_CN.php +++ /dev/null @@ -1,194 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[1-7]\\d{6,11}|8[0-357-9]\\d{6,9}|9\\d{7,10}', - 'PossibleNumberPattern' => '\\d{4,12}', - 'PossibleLength' => - array ( - 0 => '11', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '[2-9]\\d{10}', - 'PossibleNumberPattern' => '\\d{11}', - 'ExampleNumber' => '91234567', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '1(?:[38]\\d|4[57]|5[0-35-9]|7[0136-8])\\d{8}', - 'PossibleNumberPattern' => '\\d{11}', - 'ExampleNumber' => '13123456789', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'CN', - 'countryCode' => 86, - 'internationalPrefix' => '', - 'nationalPrefix' => '0', - 'nationalPrefixForParsing' => '0', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{3})(\\d{5,6})', - 'format' => '$1 $2', - 'leadingDigitsPatterns' => - array ( - 0 => '[3-9]', - 1 => '[3-9]\\d{2}[19]', - 2 => '[3-9]\\d{2}(?:10|95)', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '$CC $1', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 1 => - array ( - 'pattern' => '(\\d{3})(\\d{8})', - 'format' => '$1 $2', - 'leadingDigitsPatterns' => - array ( - 0 => '1', - ), - 'nationalPrefixFormattingRule' => '$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_CX.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_CX.php deleted file mode 100644 index b12beb9a4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_CX.php +++ /dev/null @@ -1,157 +0,0 @@ - - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'CX', - 'countryCode' => 61, - 'internationalPrefix' => '00', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_DE.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_DE.php deleted file mode 100644 index 224c6ac0f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_DE.php +++ /dev/null @@ -1,253 +0,0 @@ - - array ( - 'NationalNumberPattern' => '\\d{4,14}', - 'PossibleNumberPattern' => '\\d{2,14}', - 'PossibleLength' => - array ( - 0 => 4, - 1 => 5, - 2 => 6, - 3 => 7, - 4 => 8, - 5 => 9, - 6 => 10, - 7 => 11, - ), - 'PossibleLengthLocalOnly' => - array ( - 0 => '2', - 1 => '3', - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '(?:[24-6]\\d{2}|3[03-9]\\d|[789](?:0[2-9]|[1-9]\\d))\\d{1,8}', - 'PossibleNumberPattern' => '\\d{2,14}', - 'ExampleNumber' => '30123456', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '1(5\\d{9}|7\\d{8}|6[02]\\d{8}|63\\d{7})', - 'PossibleNumberPattern' => '\\d{10,11}', - 'PossibleLength' => - array ( - 0 => '10', - 1 => '11', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '800\\d{7}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - 0 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '900([135]\\d{6}|9\\d{7})', - 'PossibleNumberPattern' => '\\d{10,11}', - 'PossibleLength' => - array ( - 0 => '10', - 1 => '11', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'DE', - 'countryCode' => 49, - 'internationalPrefix' => '00', - 'nationalPrefix' => '0', - 'nationalPrefixForParsing' => '0', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{3})(\\d{3,8})', - 'format' => '$1 $2', - 'leadingDigitsPatterns' => - array ( - 0 => '2|3[3-9]|906|[4-9][1-9]1', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 1 => - array ( - 'pattern' => '(\\d{2})(\\d{4,11})', - 'format' => '$1/$2', - 'leadingDigitsPatterns' => - array ( - 0 => '[34]0|[68]9', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 2 => - array ( - 'pattern' => '([4-9]\\d)(\\d{2})', - 'format' => '$1 $2', - 'leadingDigitsPatterns' => - array ( - 0 => '[4-9]', - 1 => '[4-6]|[7-9](?:\\d[1-9]|[1-9]\\d)', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 3 => - array ( - 'pattern' => '([4-9]\\d{3})(\\d{2,7})', - 'format' => '$1 $2', - 'leadingDigitsPatterns' => - array ( - 0 => '[4-9]', - 1 => '[4-6]|[7-9](?:\\d[1-9]|[1-9]\\d)', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 4 => - array ( - 'pattern' => '(\\d{3})(\\d{1})(\\d{6})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '800', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 5 => - array ( - 'pattern' => '(\\d{3})(\\d{3,4})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '900', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_FR.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_FR.php deleted file mode 100644 index e276006cf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_FR.php +++ /dev/null @@ -1,177 +0,0 @@ - - array ( - 'NationalNumberPattern' => '3\\d{6}', - 'PossibleNumberPattern' => '\\d{7}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '3\\d{6}', - 'PossibleNumberPattern' => '\\d{7}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '3\\d{6}', - 'PossibleNumberPattern' => '\\d{7}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'FR', - 'countryCode' => 33, - 'internationalPrefix' => '00', - 'nationalPrefix' => '0', - 'nationalPrefixForParsing' => '0', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d)(\\d{2})(\\d{2})(\\d{2})', - 'format' => '$1 $2 $3 $4', - 'leadingDigitsPatterns' => - array ( - 0 => '3', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_GB.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_GB.php deleted file mode 100644 index 13650fd81..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_GB.php +++ /dev/null @@ -1,209 +0,0 @@ - - array ( - 'NationalNumberPattern' => '\\d{10}', - 'PossibleNumberPattern' => '\\d{6,10}', - 'PossibleLength' => - array ( - 0 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - 0 => '6', - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '[1-6]\\d{9}', - 'PossibleNumberPattern' => '\\d{6,10}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '7[1-57-9]\\d{8}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '80\\d{8}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '9[018]\\d{8}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => '8(?:4[3-5]|7[0-2])\\d{7}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => '70\\d{8}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => '56\\d{8}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => '76\\d{8}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'GB', - 'countryCode' => 44, - 'internationalPrefix' => '00', - 'nationalPrefix' => '0', - 'nationalPrefixForParsing' => '0', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{2})(\\d{4})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '[1-59]|[78]0', - ), - 'nationalPrefixFormattingRule' => '(0$1)', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 1 => - array ( - 'pattern' => '(\\d)(\\d{3})(\\d{3})(\\d{3})', - 'format' => '$1 $2 $3 $4', - 'leadingDigitsPatterns' => - array ( - 0 => '6', - ), - 'nationalPrefixFormattingRule' => '(0$1)', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 2 => - array ( - 'pattern' => '(\\d{4})(\\d{3})(\\d{3})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '7[1-57-9]', - ), - 'nationalPrefixFormattingRule' => '(0$1)', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 3 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '8[47]', - ), - 'nationalPrefixFormattingRule' => '(0$1)', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => true, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_GG.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_GG.php deleted file mode 100644 index d172d98da..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_GG.php +++ /dev/null @@ -1,157 +0,0 @@ - - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'GG', - 'countryCode' => 44, - 'internationalPrefix' => '', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_HU.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_HU.php deleted file mode 100644 index f2bddeacb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_HU.php +++ /dev/null @@ -1,166 +0,0 @@ - - array ( - 'NationalNumberPattern' => '30\\d{7}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - 0 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '30\\d{7}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '30\\d{7}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'HU', - 'countryCode' => 36, - 'internationalPrefix' => '', - 'nationalPrefix' => '06', - 'nationalPrefixForParsing' => '06', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_IT.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_IT.php deleted file mode 100644 index f91e72153..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_IT.php +++ /dev/null @@ -1,221 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[0389]\\d{5,10}', - 'PossibleNumberPattern' => '\\d{6,11}', - 'PossibleLength' => - array ( - 0 => '6', - 1 => '9', - 2 => '10', - 3 => '11', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '0\\d{9,10}', - 'PossibleNumberPattern' => '\\d{10,11}', - 'PossibleLength' => - array ( - 0 => '10', - 1 => '11', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '3\\d{8,9}', - 'PossibleNumberPattern' => '\\d{9,10}', - 'PossibleLength' => - array ( - 0 => '9', - 1 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '80(?:0\\d{6}|3\\d{3})', - 'PossibleNumberPattern' => '\\d{6,9}', - 'PossibleLength' => - array ( - 0 => '6', - 1 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '89(?:2\\d{3}|9\\d{6})', - 'PossibleNumberPattern' => '\\d{6,9}', - 'PossibleLength' => - array ( - 0 => '6', - 1 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'IT', - 'countryCode' => 39, - 'internationalPrefix' => '00', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{2})(\\d{4})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '0[26]', - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 1 => - array ( - 'pattern' => '(\\d{3})(\\d{4})(\\d{3,4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '0[13-57-9]', - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 2 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{3,4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '3', - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 3 => - array ( - 'pattern' => '(\\d{3})(\\d{3,6})', - 'format' => '$1 $2', - 'leadingDigitsPatterns' => - array ( - 0 => '8', - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => true, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_JP.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_JP.php deleted file mode 100644 index b5270305a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_JP.php +++ /dev/null @@ -1,263 +0,0 @@ - - array ( - 'NationalNumberPattern' => '07\\d{5}|[1-357-9]\\d{3,10}', - 'PossibleNumberPattern' => '\\d{4,11}', - 'PossibleLength' => - array ( - 0 => 4, - 1 => 5, - 2 => 6, - 3 => 7, - 4 => 8, - 5 => 9, - 6 => 10, - 7 => 11, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '07\\d{5}|[1-357-9]\\d{3,10}', - 'PossibleNumberPattern' => '\\d{4,11}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '07\\d{5}|[1-357-9]\\d{3,10}', - 'PossibleNumberPattern' => '\\d{4,11}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '0777[01]\\d{2}', - 'PossibleNumberPattern' => '\\d{7}', - 'ExampleNumber' => '0777012', - 'PossibleLength' => - array ( - 0 => '7', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => '[23]\\d{3}', - 'PossibleNumberPattern' => '\\d{4}', - 'PossibleLength' => - array ( - 0 => '4', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'JP', - 'countryCode' => 81, - 'internationalPrefix' => '010', - 'nationalPrefix' => '0', - 'nationalPrefixForParsing' => '0', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{2})(\\d{4})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '[57-9]0', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 1 => - array ( - 'pattern' => '(\\d{2})(\\d{2})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3 $4', - 'leadingDigitsPatterns' => - array ( - 0 => '[57-9]0', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 2 => - array ( - 'pattern' => '(\\d{2})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '111|222|333', - 1 => '(?:111|222|333)1', - 2 => '(?:111|222|333)11', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 3 => - array ( - 'pattern' => '(\\d{4})(\\d)(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '222|333', - 1 => '2221|3332', - 2 => '22212|3332', - 3 => '222120|3332', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 4 => - array ( - 'pattern' => '(\\d{3})(\\d{2})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '[23]', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 5 => - array ( - 'pattern' => '(\\d{3})(\\d{4})', - 'format' => '$1-$2', - 'leadingDigitsPatterns' => - array ( - 0 => '077', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 6 => - array ( - 'pattern' => '(\\d{4})', - 'format' => '*$1', - 'leadingDigitsPatterns' => - array ( - 0 => '[23]', - ), - 'nationalPrefixFormattingRule' => '$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => true, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_KR.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_KR.php deleted file mode 100644 index 6e4946ac5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_KR.php +++ /dev/null @@ -1,336 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[1-7]\\d{3,9}|8\\d{8}', - 'PossibleNumberPattern' => '\\d{4,10}', - 'PossibleLength' => - array ( - 0 => 4, - 1 => 5, - 2 => 6, - 3 => 7, - 4 => 8, - 5 => 9, - 6 => 10, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '(?:2|[34][1-3]|5[1-5]|6[1-4])(?:1\\d{2,3}|[2-9]\\d{6,7})', - 'PossibleNumberPattern' => '\\d{4,10}', - 'ExampleNumber' => '22123456', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '1[0-25-9]\\d{7,8}', - 'PossibleNumberPattern' => '\\d{9,10}', - 'ExampleNumber' => '1023456789', - 'PossibleLength' => - array ( - 0 => '9', - 1 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '80\\d{7}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '801234567', - 'PossibleLength' => - array ( - 0 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '60[2-9]\\d{6}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '602345678', - 'PossibleLength' => - array ( - 0 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => '50\\d{8}', - 'PossibleNumberPattern' => '\\d{10}', - 'ExampleNumber' => '5012345678', - 'PossibleLength' => - array ( - 0 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => '70\\d{8}', - 'PossibleNumberPattern' => '\\d{10}', - 'ExampleNumber' => '7012345678', - 'PossibleLength' => - array ( - 0 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'KR', - 'countryCode' => 82, - 'internationalPrefix' => '00(?:[124-68]|[37]\\d{2})', - 'nationalPrefix' => '0', - 'nationalPrefixForParsing' => '0(8[1-46-8]|85\\d{2})?', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{2})(\\d{4})(\\d{4})', - 'format' => '$1-$2-$3', - 'leadingDigitsPatterns' => - array ( - 0 => '1(?:0|1[19]|[69]9|5[458])|[57]0', - 1 => '1(?:0|1[19]|[69]9|5(?:44|59|8))|[57]0', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 1 => - array ( - 'pattern' => '(\\d{2})(\\d{3})(\\d{4})', - 'format' => '$1-$2-$3', - 'leadingDigitsPatterns' => - array ( - 0 => '1(?:[169][2-8]|[78]|5[1-4])|[68]0|[3-6][1-9][2-9]', - 1 => '1(?:[169][2-8]|[78]|5(?:[1-3]|4[56]))|[68]0|[3-6][1-9][2-9]', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 2 => - array ( - 'pattern' => '(\\d{3})(\\d)(\\d{4})', - 'format' => '$1-$2-$3', - 'leadingDigitsPatterns' => - array ( - 0 => '131', - 1 => '1312', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 3 => - array ( - 'pattern' => '(\\d{3})(\\d{2})(\\d{4})', - 'format' => '$1-$2-$3', - 'leadingDigitsPatterns' => - array ( - 0 => '131', - 1 => '131[13-9]', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 4 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1-$2-$3', - 'leadingDigitsPatterns' => - array ( - 0 => '13[2-9]', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 5 => - array ( - 'pattern' => '(\\d{2})(\\d{2})(\\d{3})(\\d{4})', - 'format' => '$1-$2-$3-$4', - 'leadingDigitsPatterns' => - array ( - 0 => '30', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 6 => - array ( - 'pattern' => '(\\d)(\\d{4})(\\d{4})', - 'format' => '$1-$2-$3', - 'leadingDigitsPatterns' => - array ( - 0 => '2(?:[26]|3[0-467])', - 1 => '2(?:[26]|3(?:01|1[45]|2[17-9]|39|4|6[67]|7[078]))', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 7 => - array ( - 'pattern' => '(\\d)(\\d{3})(\\d{4})', - 'format' => '$1-$2-$3', - 'leadingDigitsPatterns' => - array ( - 0 => '2(?:3[0-35-9]|[457-9])', - 1 => '2(?:3(?:0[02-9]|1[0-36-9]|2[02-6]|3[0-8]|6[0-589]|7[1-69]|[589])|[457-9])', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 8 => - array ( - 'pattern' => '(\\d)(\\d{3})', - 'format' => '$1-$2', - 'leadingDigitsPatterns' => - array ( - 0 => '21[0-46-9]', - 1 => '21(?:[0-247-9]|3[124]|6[1269])', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 9 => - array ( - 'pattern' => '(\\d)(\\d{4})', - 'format' => '$1-$2', - 'leadingDigitsPatterns' => - array ( - 0 => '21[36]', - 1 => '21(?:3[035-9]|6[03-578])', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 10 => - array ( - 'pattern' => '(\\d{2})(\\d{3})', - 'format' => '$1-$2', - 'leadingDigitsPatterns' => - array ( - 0 => '[3-6][1-9]1', - 1 => '[3-6][1-9]1(?:[0-46-9])', - 2 => '[3-6][1-9]1(?:[0-247-9]|3[124]|6[1269])', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 11 => - array ( - 'pattern' => '(\\d{2})(\\d{4})', - 'format' => '$1-$2', - 'leadingDigitsPatterns' => - array ( - 0 => '[3-6][1-9]1', - 1 => '[3-6][1-9]1[36]', - 2 => '[3-6][1-9]1(?:3[035-9]|6[03-578])', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_MX.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_MX.php deleted file mode 100644 index 5c72c0363..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_MX.php +++ /dev/null @@ -1,291 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[1-9]\\d{9,10}', - 'PossibleNumberPattern' => '\\d{7,11}', - 'PossibleLength' => - array ( - 0 => '10', - 1 => '11', - ), - 'PossibleLengthLocalOnly' => - array ( - 0 => '7', - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '[2-9]\\d{9}', - 'PossibleNumberPattern' => '\\d{7,10}', - 'PossibleLength' => - array ( - 0 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '1\\d{10}', - 'PossibleNumberPattern' => '\\d{11}', - 'PossibleLength' => - array ( - 0 => '11', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '800\\d{7}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - 0 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '900\\d{7}', - 'PossibleNumberPattern' => '\\d{10}', - 'PossibleLength' => - array ( - 0 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'MX', - 'countryCode' => 52, - 'internationalPrefix' => '00', - 'nationalPrefix' => '01', - 'nationalPrefixForParsing' => '01|04[45](\\d{10})', - 'nationalPrefixTransformRule' => '1$1', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '[89]00', - ), - 'nationalPrefixFormattingRule' => '01 $1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => true, - ), - 1 => - array ( - 'pattern' => '(\\d{2})(\\d{4})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '33|55|81', - ), - 'nationalPrefixFormattingRule' => '01 $1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => true, - ), - 2 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '[2467]|3[0-24-9]|5[0-46-9]|8[2-9]|9[1-9]', - ), - 'nationalPrefixFormattingRule' => '01 $1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => true, - ), - 3 => - array ( - 'pattern' => '(1)(\\d{2})(\\d{4})(\\d{4})', - 'format' => '045 $2 $3 $4', - 'leadingDigitsPatterns' => - array ( - 0 => '1(?:33|55|81)', - ), - 'nationalPrefixFormattingRule' => '$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => true, - ), - 4 => - array ( - 'pattern' => '(1)(\\d{3})(\\d{3})(\\d{4})', - 'format' => '045 $2 $3 $4', - 'leadingDigitsPatterns' => - array ( - 0 => '1(?:[124579]|3[0-24-9]|5[0-46-9]|8[02-9])', - ), - 'nationalPrefixFormattingRule' => '$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => true, - ), - ), - 'intlNumberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '[89]00', - ), - 'nationalPrefixFormattingRule' => '01 $1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => true, - ), - 1 => - array ( - 'pattern' => '(\\d{2})(\\d{4})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '33|55|81', - ), - 'nationalPrefixFormattingRule' => '01 $1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => true, - ), - 2 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '[2467]|3[0-24-9]|5[0-46-9]|8[2-9]|9[1-9]', - ), - 'nationalPrefixFormattingRule' => '01 $1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => true, - ), - 3 => - array ( - 'pattern' => '(1)(\\d{2})(\\d{4})(\\d{4})', - 'format' => '$1 $2 $3 $4', - 'leadingDigitsPatterns' => - array ( - 0 => '1(?:33|55|81)', - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 4 => - array ( - 'pattern' => '(1)(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3 $4', - 'leadingDigitsPatterns' => - array ( - 0 => '1(?:[124579]|3[0-24-9]|5[0-46-9]|8[02-9])', - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_NZ.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_NZ.php deleted file mode 100644 index 8c4b13006..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_NZ.php +++ /dev/null @@ -1,212 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[289]\\d{7,9}|[3-7]\\d{7}', - 'PossibleNumberPattern' => '\\d{7,10}', - 'PossibleLength' => - array ( - 0 => '7', - 1 => '8', - 2 => 9, - 3 => 10, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '24099\\d{3}|(?:3[2-79]|[479][2-689]|6[235-9])\\d{6}', - 'PossibleNumberPattern' => '\\d{7,8}', - 'PossibleLength' => - array ( - 0 => '7', - 1 => '8', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '2(?:[027]\\d{7}|9\\d{6,7}|1(?:0\\d{5,7}|[12]\\d{5,6}|[3-9]\\d{5})|4[1-9]\\d{6}|8\\d{7,8})', - 'PossibleNumberPattern' => '\\d{8,10}', - 'PossibleLength' => - array ( - 0 => 8, - 1 => 9, - 2 => 10, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '800\\d{6,7}', - 'PossibleNumberPattern' => '\\d{9,10}', - 'PossibleLength' => - array ( - 0 => '9', - 1 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '900\\d{6,7}', - 'PossibleNumberPattern' => '\\d{9,10}', - 'PossibleLength' => - array ( - 0 => '9', - 1 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'NZ', - 'countryCode' => 64, - 'internationalPrefix' => '00', - 'nationalPrefix' => '0', - 'nationalPrefixForParsing' => '0', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d)(\\d{3})(\\d{4})', - 'format' => '$1-$2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '24|[34679]', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 1 => - array ( - 'pattern' => '(\\d)(\\d{3})(\\d{3,5})', - 'format' => '$1-$2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '2[179]', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 2 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{3,4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '[89]', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_PL.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_PL.php deleted file mode 100644 index 90b2540da..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_PL.php +++ /dev/null @@ -1,175 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[1-9]\\d{8}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - 0 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '[1-9]\\d{8}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '(?:5[01]|6[069]|7[289]|88)\\d{7}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '800\\d{6}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '70\\d{7}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'PL', - 'countryCode' => 48, - 'internationalPrefix' => '00', - 'nationalPrefix' => '0', - 'nationalPrefixForParsing' => '0', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{2})(\\d{3})(\\d{2})(\\d{2})', - 'format' => '$1 $2 $3 $4', - 'leadingDigitsPatterns' => - array ( - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_RE.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_RE.php deleted file mode 100644 index bcc4ed887..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_RE.php +++ /dev/null @@ -1,180 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[268]\\d{8}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - 0 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '262\\d{6}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '262161234', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '6(?:9[23]|47)\\d{6}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '692123456', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '80\\d{7}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '801234567', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '8(?:1[01]|2[0156]|84|9[0-37-9])\\d{6}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '810123456', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'RE', - 'countryCode' => 262, - 'internationalPrefix' => '00', - 'nationalPrefix' => '0', - 'nationalPrefixForParsing' => '0', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '([268]\\d{2})(\\d{2})(\\d{2})(\\d{2})', - 'format' => '$1 $2 $3 $4', - 'leadingDigitsPatterns' => - array ( - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingDigits' => '262|6(?:9[23]|47)|8', - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_SE.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_SE.php deleted file mode 100644 index f2b021827..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_SE.php +++ /dev/null @@ -1,157 +0,0 @@ - - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'SE', - 'countryCode' => 46, - 'internationalPrefix' => '00', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_SG.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_SG.php deleted file mode 100644 index 26331556f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_SG.php +++ /dev/null @@ -1,206 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[13689]\\d{7,10}', - 'PossibleNumberPattern' => '\\d{8}|\\d{10,11}', - 'PossibleLength' => - array ( - 0 => '8', - 1 => '10', - 2 => '11', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '[36]\\d{7}', - 'PossibleNumberPattern' => '\\d{8}', - 'PossibleLength' => - array ( - 0 => '8', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '[89]\\d{7}', - 'PossibleNumberPattern' => '\\d{8}', - 'PossibleLength' => - array ( - 0 => '8', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '1?800\\d{7}', - 'PossibleNumberPattern' => '\\d{10,11}', - 'PossibleLength' => - array ( - 0 => '10', - 1 => '11', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '1900\\d{7}', - 'PossibleNumberPattern' => '\\d{11}', - 'PossibleLength' => - array ( - 0 => '11', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'SG', - 'countryCode' => 65, - 'internationalPrefix' => '0[0-3][0-9]', - 'nationalPrefixForParsing' => '777777', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{4})(\\d{4})', - 'format' => '$1 $2', - 'leadingDigitsPatterns' => - array ( - 0 => '[369]|8[1-9]', - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 1 => - array ( - 'pattern' => '(\\d{4})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '1[89]', - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 2 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '800', - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_US.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_US.php deleted file mode 100644 index 88d56296c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_US.php +++ /dev/null @@ -1,203 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[13-689]\\d{9}|2[0-35-9]\\d{8}', - 'PossibleNumberPattern' => '\\d{7}(?:\\d{3})?', - 'ExampleNumber' => '1234567890', - 'PossibleLength' => - array ( - 0 => '10', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '[13-689]\\d{9}|2[0-35-9]\\d{8}', - 'PossibleNumberPattern' => '\\d{7}(?:\\d{3})?', - 'ExampleNumber' => '1234567890', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '[13-689]\\d{9}|2[0-35-9]\\d{8}', - 'PossibleNumberPattern' => '\\d{7}(?:\\d{3})?', - 'ExampleNumber' => '1234567890', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '8(?:00|66|77|88)\\d{7}', - 'PossibleNumberPattern' => '\\d{10}', - 'ExampleNumber' => '1234567890', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => '900\\d{7}', - 'PossibleNumberPattern' => '\\d{10}', - 'ExampleNumber' => '1234567890', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => '800\\d{7}', - 'PossibleNumberPattern' => '\\d{10}', - 'ExampleNumber' => '1234567890', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'US', - 'countryCode' => 1, - 'internationalPrefix' => '011', - 'nationalPrefix' => '1', - 'preferredExtnPrefix' => ' extn. ', - 'nationalPrefixForParsing' => '1', - 'sameMobileAndFixedLinePattern' => true, - 'numberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{3})(\\d{4})', - 'format' => '$1 $2', - 'leadingDigitsPatterns' => - array ( - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => true, - ), - 1 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => true, - ), - ), - 'intlNumberFormat' => - array ( - 0 => - array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - ), - 'nationalPrefixFormattingRule' => '', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => true, - ), - ), - 'mainCountryForCode' => true, - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => true, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_YT.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_YT.php deleted file mode 100644 index 3db875eba..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/core/data/PhoneNumberMetadataForTesting_YT.php +++ /dev/null @@ -1,169 +0,0 @@ - - array ( - 'NationalNumberPattern' => '[268]\\d{8}', - 'PossibleNumberPattern' => '\\d{9}', - 'PossibleLength' => - array ( - 0 => '9', - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'fixedLine' => - array ( - 'NationalNumberPattern' => '2696[0-4]\\d{4}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '269601234', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'mobile' => - array ( - 'NationalNumberPattern' => '639\\d{6}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '639123456', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'tollFree' => - array ( - 'NationalNumberPattern' => '80\\d{7}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '801234567', - 'PossibleLength' => - array ( - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'premiumRate' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'sharedCost' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'personalNumber' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voip' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'pager' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'uan' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'voicemail' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'noInternationalDialling' => - array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', - 'PossibleLength' => - array ( - 0 => -1, - ), - 'PossibleLengthLocalOnly' => - array ( - ), - ), - 'id' => 'YT', - 'countryCode' => 262, - 'internationalPrefix' => '00', - 'nationalPrefix' => '0', - 'nationalPrefixForParsing' => '0', - 'sameMobileAndFixedLinePattern' => false, - 'numberFormat' => - array ( - ), - 'intlNumberFormat' => - array ( - ), - 'mainCountryForCode' => false, - 'leadingDigits' => '269|639', - 'leadingZeroPossible' => false, - 'mobileNumberPortableRegion' => false, -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/geocoding/PhoneNumberOfflineGeocoderTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/geocoding/PhoneNumberOfflineGeocoderTest.php deleted file mode 100644 index 8326ddd9f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/geocoding/PhoneNumberOfflineGeocoderTest.php +++ /dev/null @@ -1,205 +0,0 @@ -setCountryCode(82)->setNationalNumber(22123456); - - self::$KO_Number2 = new PhoneNumber(); - self::$KO_Number2->setCountryCode(82)->setNationalNumber(322123456); - - self::$KO_Number3 = new PhoneNumber(); - self::$KO_Number3->setCountryCode(82)->setNationalNumber(6421234567); - - self::$KO_InvalidNumber = new PhoneNumber(); - self::$KO_InvalidNumber->setCountryCode(82)->setNationalNumber(1234); - - self::$KO_Mobile = new PhoneNumber(); - self::$KO_Mobile->setCountryCode(82)->setNationalNumber(101234567); - - self::$US_Number1 = new PhoneNumber(); - self::$US_Number1->setCountryCode(1)->setNationalNumber(6502530000); - - self::$US_Number2 = new PhoneNumber(); - self::$US_Number2->setCountryCode(1)->setNationalNumber(6509600000); - - self::$US_Number3 = new PhoneNumber(); - self::$US_Number3->setCountryCode(1)->setNationalNumber(2128120000); - - self::$US_Number4 = new PhoneNumber(); - self::$US_Number4->setCountryCode(1)->setNationalNumber(6174240000); - - self::$US_InvalidNumber = new PhoneNumber(); - self::$US_InvalidNumber->setCountryCode(1)->setNationalNumber(123456789); - - self::$NANPA_TollFree = new PhoneNumber(); - self::$NANPA_TollFree->setCountryCode(1)->setNationalNumber(8002431234); - - self::$BS_Number1 = new PhoneNumber(); - self::$BS_Number1->setCountryCode(1)->setNationalNumber(2423651234); - - self::$AU_Number = new PhoneNumber(); - self::$AU_Number->setCountryCode(61)->setNationalNumber(236618300); - - self::$AR_MobileNumber = new PhoneNumber(); - self::$AR_MobileNumber->setCountryCode(54)->setNationalNumber(92214000000); - - self::$numberWithInvalidCountryCode = new PhoneNumber(); - self::$numberWithInvalidCountryCode->setCountryCode(999)->setNationalNumber(2423651234); - - self::$internationalTollFree = new PhoneNumber(); - self::$internationalTollFree->setCountryCode(800)->setNationalNumber(12345678); - } - - public function setUp() - { - PhoneNumberOfflineGeocoder::resetInstance(); - $this->geocoder = PhoneNumberOfflineGeocoder::getInstance(self::TEST_META_DATA_FILE_PREFIX); - } - - public function testGetDescriptionForNumberWithNoDataFile() - { - // No data file containing mappings for US numbers is available in Chinese for the unittests. As - // a result, the country name of United States in simplified Chinese is returned. - - $this->assertEquals( - pack('H*', 'e7be8e') . pack('H*', 'e59bbd'), - $this->geocoder->getDescriptionForNumber(self::$US_Number1, "zh_CN") - ); - $this->assertEquals("Bahamas", $this->geocoder->getDescriptionForNumber(self::$BS_Number1, "en_US")); - $this->assertEquals("Australia", $this->geocoder->getDescriptionForNumber(self::$AU_Number, "en_US")); - $this->assertEquals("", $this->geocoder->getDescriptionForNumber(self::$numberWithInvalidCountryCode, "en_US")); - $this->assertEquals("", $this->geocoder->getDescriptionForNumber(self::$internationalTollFree, "en_US")); - } - - public function testGetDescriptionForNumberWithMissingPrefix() - { - // Test that the name of the country is returned when the number passed in is valid but not - // covered by the geocoding data file. - - $this->assertEquals("United States", $this->geocoder->getDescriptionForNumber(self::$US_Number4, "en_US")); - } - - public function testGetDescriptionForNumberBelongingToMultipleCountriesIsEmpty() - { - // Test that nothing is returned when the number passed in is valid but not - // covered by the geocoding data file and belongs to multiple countries - $this->assertEquals("", $this->geocoder->getDescriptionForNumber(self::$NANPA_TollFree, 'en_US')); - } - - public function testGetDescriptionForNumber_en_US() - { - $ca = $this->geocoder->getDescriptionForNumber(self::$US_Number1, "en_US"); - $this->assertEquals("CA", $ca); - $this->assertEquals("Mountain View, CA", $this->geocoder->getDescriptionForNumber(self::$US_Number2, "en_US")); - $this->assertEquals("New York, NY", $this->geocoder->getDescriptionForNumber(self::$US_Number3, "en_US")); - } - - public function testGetDescriptionForKoreanNumber() - { - $this->assertEquals("Seoul", $this->geocoder->getDescriptionForNumber(self::$KO_Number1, "en")); - $this->assertEquals("Incheon", $this->geocoder->getDescriptionForNumber(self::$KO_Number2, "en")); - $this->assertEquals("Jeju", $this->geocoder->getDescriptionForNumber(self::$KO_Number3, "en")); - - $this->assertEquals( - pack('H*', 'ec849c') . pack('H*', 'ec9ab8'), - $this->geocoder->getDescriptionForNumber(self::$KO_Number1, "ko") - ); - $this->assertEquals( - pack('H*', 'ec9db8') . pack('H*', 'ecb29c'), - $this->geocoder->getDescriptionForNumber(self::$KO_Number2, "ko") - ); - } - - public function testGetDescriptionForArgentinianMobileNumber() - { - $this->assertEquals("La Plata", $this->geocoder->getDescriptionForNumber(self::$AR_MobileNumber, "en")); - } - - public function testGetDescriptionForFallBack() - { - // No fallback, as the location name for the given phone number is available in the requested - // language. - - $this->assertEquals("Kalifornien", $this->geocoder->getDescriptionForNumber(self::$US_Number1, "de")); - - // German falls back to English. - $this->assertEquals("New York, NY", $this->geocoder->getDescriptionForNumber(self::$US_Number3, "de")); - - // Italian fals back to English. - $this->assertEquals("CA", $this->geocoder->getDescriptionForNumber(self::$US_Number1, "it")); - - // Korean doesn't fall back to English. - - $this->assertEquals( - pack('H*', 'eb8c80') . pack('H*', 'ed959c') . pack('H*', 'ebafbc') . pack('H*', 'eab5ad'), - $this->geocoder->getDescriptionForNumber(self::$KO_Number3, "ko") - ); - } - - public function testGetDescriptionForNumberWithUserRegion() - { - // User in Italy, American number. We should just show United States, in Spanish, and not more - // detailed information. - $this->assertEquals( - "Estados Unidos", - $this->geocoder->getDescriptionForNumber(self::$US_Number1, "es_ES", "IT") - ); - - // Unknown region - should just show country name. - $this->assertEquals( - "Estados Unidos", - $this->geocoder->getDescriptionForNumber(self::$US_Number1, "es_ES", "ZZ") - ); - - // User in the States, language German, should show detailed data. - $this->assertEquals("Kalifornien", $this->geocoder->getDescriptionForNumber(self::$US_Number1, "de", "US")); - - // User in the States, language French, no data for French, so we fallback to English detailed - // data. - $this->assertEquals("CA", $this->geocoder->getDescriptionForNumber(self::$US_Number1, "fr", "US")); - - // Invalid number - return an empty string. - $this->assertEquals("", $this->geocoder->getDescriptionForNumber(self::$US_InvalidNumber, "en", "US")); - } - - public function testGetDescriptionForInvalidNumber() - { - $this->assertEquals("", $this->geocoder->getDescriptionForNumber(self::$KO_InvalidNumber, "en")); - $this->assertEquals("", $this->geocoder->getDescriptionForNumber(self::$US_InvalidNumber, "en")); - } - - public function testGetDescriptionForNonGeographicalNumberWithGeocodingPrefix() - { - // We have a geocoding prefix, but we shouldn't use it since this is not geographical. - $this->assertEquals("South Korea", $this->geocoder->getDescriptionForNumber(self::$KO_Mobile, 'en')); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/PrefixFileReaderTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/PrefixFileReaderTest.php deleted file mode 100644 index 1e32ec6a1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/PrefixFileReaderTest.php +++ /dev/null @@ -1,78 +0,0 @@ -setCountryCode(82)->setNationalNumber(22123456); - - self::$US_NUMBER1 = new PhoneNumber(); - self::$US_NUMBER1->setCountryCode(1)->setNationalNumber(6502530000); - - self::$US_NUMBER2 = new PhoneNumber(); - self::$US_NUMBER2->setCountryCode(1)->setNationalNumber(2128120000); - - self::$US_NUMBER3 = new PhoneNumber(); - self::$US_NUMBER3->setCountryCode(1)->setNationalNumber(6174240000); - - self::$SE_NUMBER = new PhoneNumber(); - self::$SE_NUMBER->setCountryCode(46)->setNationalNumber(81234567); - } - - public function setUp() - { - $this->reader = new PrefixFileReader(__DIR__ . DIRECTORY_SEPARATOR . self::TEST_META_DATA_FILE_PREFIX); - } - - public function testGetDescriptionForNumberWithMapping() - { - $this->assertEquals("Kalifornien", $this->reader->getDescriptionForNumber(self::$US_NUMBER1, "de", "", "CH")); - $this->assertEquals("CA", $this->reader->getDescriptionForNumber(self::$US_NUMBER1, "en", "", "AU")); - $this->assertEquals( - pack('H*', 'ec849c') . pack('H*', 'ec9ab8'), - $this->reader->getDescriptionForNumber(self::$KO_NUMBER, "ko", "", "") - ); - $this->assertEquals("Seoul", $this->reader->getDescriptionForNumber(self::$KO_NUMBER, "en", "", "")); - } - - public function testGetDescriptionForNumberWithMissingMapping() - { - $this->assertEquals("", $this->reader->getDescriptionForNumber(self::$US_NUMBER3, "en", "", "")); - } - - public function testGetDescriptionUsingFallbackLanguage() - { - // Mapping file exists but the number isn't present, causing it to fallback. - $this->assertEquals("New York, NY", $this->reader->getDescriptionForNumber(self::$US_NUMBER2, "de", "", "CH")); - // No mapping file exists, causing it to fallback. - $this->assertEquals("New York, NY", $this->reader->getDescriptionForNumber(self::$US_NUMBER2, "sv", "", "")); - } - - public function testGetDescriptionForNonFallbackLanguage() - { - $this->assertEquals("", $this->reader->getDescriptionForNumber(self::$US_NUMBER2, "ko", "", "")); - } - - public function testGetDescriptionForNumberWithoutMappingFile() - { - $this->assertEquals("", $this->reader->getDescriptionForNumber(self::$SE_NUMBER, "sv", "", "")); - $this->assertEquals("", $this->reader->getDescriptionForNumber(self::$SE_NUMBER, "en", "", "")); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/Map.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/Map.php deleted file mode 100644 index c71de28bc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/Map.php +++ /dev/null @@ -1,27 +0,0 @@ - - array ( - 0 => 1201, - 1 => 1650, - ), - 'en' => - array ( - 0 => 1201, - 1 => 1212, - 2 => 1617, - 3 => 1650, - 4 => 1989, - 5 => 54, - 6 => 82, - ), - 'ko' => - array ( - 0 => 82, - ), -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/de/1201.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/de/1201.php deleted file mode 100644 index d14657844..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/de/1201.php +++ /dev/null @@ -1,9 +0,0 @@ - 'New Jersey', -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/de/1650.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/de/1650.php deleted file mode 100644 index ed1481869..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/de/1650.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Kalifornien', -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1201.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1201.php deleted file mode 100644 index 82a2169e1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1201.php +++ /dev/null @@ -1,9 +0,0 @@ - 'NJ', -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1212.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1212.php deleted file mode 100644 index af0ab35ff..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1212.php +++ /dev/null @@ -1,10 +0,0 @@ - 'NY', - 1212812 => 'New York, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1617.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1617.php deleted file mode 100644 index 707f72082..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1617.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Boston, MA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1650.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1650.php deleted file mode 100644 index 54621f98f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1650.php +++ /dev/null @@ -1,10 +0,0 @@ - 'CA', - 1650960 => 'Mountain View, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1989.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1989.php deleted file mode 100644 index 05474ed79..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/1989.php +++ /dev/null @@ -1,9 +0,0 @@ - 'MA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/54.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/54.php deleted file mode 100644 index 9433f9944..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/54.php +++ /dev/null @@ -1,9 +0,0 @@ - 'La Plata', -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/82.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/82.php deleted file mode 100644 index 487b235eb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/en/82.php +++ /dev/null @@ -1,25 +0,0 @@ - 'Mobile prefix, should not be geocoded.', - 822 => 'Seoul', - 8231 => 'Gyeonggi', - 8232 => 'Incheon', - 8233 => 'Gangwon', - 8241 => 'Chungnam', - 8242 => 'Daejeon', - 8243 => 'Chungbuk', - 8251 => 'Busan', - 8252 => 'Ulsan', - 8253 => 'Daegu', - 8254 => 'Gyeongbuk', - 8255 => 'Gyeongnam', - 8261 => 'Jeonnam', - 8262 => 'Gwangju', - 8263 => 'Jeonbuk', - 8264 => 'Jeju', -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/ko/82.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/ko/82.php deleted file mode 100644 index 1c5e3696e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/prefixmapper/data/ko/82.php +++ /dev/null @@ -1,23 +0,0 @@ - '서울', - 8231 => '경기', - 8232 => '인천', - 8233 => '강원', - 8241 => '충남', - 8242 => '대전', - 8243 => '충북', - 8251 => '부산', - 8252 => '울산', - 8253 => '대구', - 8254 => '경북', - 8255 => '경남', - 8261 => '전남', - 8262 => '광주', - 8263 => '전북', -); diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/timezone/PrefixTimeZonesMapTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/timezone/PrefixTimeZonesMapTest.php deleted file mode 100644 index ed4472b48..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/timezone/PrefixTimeZonesMapTest.php +++ /dev/null @@ -1,123 +0,0 @@ -setCountryCode(1)->setNationalNumber(1000000000); - - $this->assertEquals( - array( - self::NEW_YORK_TZ, - self::CHICAGO_TZ, - self::LOS_ANGELES_TZ, - self::DENVER_TZ, - ), - self::$prefixTimeZonesMapForUS->lookupTimeZonesForNumber($number) - ); - } - - public function testLookupTimeZonesForNumber_ValidNumber_Chicago() - { - $number = new PhoneNumber(); - $number->setCountryCode(1)->setNationalNumber(2051235458); - - $this->assertEquals(array(self::CHICAGO_TZ), self::$prefixTimeZonesMapForUS->lookupTimeZonesForNumber($number)); - } - - public function testLookupTimeZonesForNumber_LA() - { - $number = new PhoneNumber(); - $number->setCountryCode(1)->setNationalNumber(2082924565); - - $this->assertEquals(array(self::LOS_ANGELES_TZ), self::$prefixTimeZonesMapForUS->lookupTimeZonesForNumber($number)); - } - - public function testLookupTimeZonesForNumber_NY() - { - $number = new PhoneNumber(); - $number->setCountryCode(1)->setNationalNumber(2016641234); - - $this->assertEquals(array(self::NEW_YORK_TZ), self::$prefixTimeZonesMapForUS->lookupTimeZonesForNumber($number)); - } - - public function testLookupTimeZonesForNumber_CH() - { - $number = new PhoneNumber(); - $number->setCountryCode(41)->setNationalNumber(446681300); - - $this->assertEquals(array(), self::$prefixTimeZonesMapForUS->lookupTimeZonesForNumber($number)); - } - - public function testLookupTimeZonesForNumber_RU() - { - $number = new PhoneNumber(); - $number->setCountryCode(7)->setNationalNumber(87945154); - - $this->assertEquals(array(self::MOSCOW_TZ), self::$prefixTimeZonesMapForRU->lookupTimeZonesForNumber($number)); - - $number->setNationalNumber(421548578); - $this->assertEquals(array(self::VLADIVOSTOK_TZ), self::$prefixTimeZonesMapForRU->lookupTimeZonesForNumber($number)); - - $number->setNationalNumber(342457897); - $this->assertEquals(array(self::YEKATERINBURG_TZ), self::$prefixTimeZonesMapForRU->lookupTimeZonesForNumber($number)); - - // A mobile number - $number->setNationalNumber(9342457897); - $this->assertEquals(array(), self::$prefixTimeZonesMapForRU->lookupTimeZonesForNumber($number)); - - // An invalid number (too short) - $number->setNationalNumber(3951); - $this->assertEquals(array(self::IRKUTSK_TZ), self::$prefixTimeZonesMapForRU->lookupTimeZonesForNumber($number)); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/timezone/UKTest.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/timezone/UKTest.php deleted file mode 100644 index 1efb4221d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/timezone/UKTest.php +++ /dev/null @@ -1,33 +0,0 @@ -setCountryCode(44)->setNationalNumber(1614960000); - - $timeZone = PhoneNumberToTimeZonesMapper::getInstance(); - $this->assertEquals(array("Europe/London"), $timeZone->getTimeZonesForNumber($number)); - } - - public function testNonGeocodableNumber() - { - $number = new PhoneNumber(); - $number->setCountryCode(44)->setNationalNumber(8001111); - - $timeZone = PhoneNumberToTimeZonesMapper::getInstance(); - $this->assertEquals(array("Europe/London"), $timeZone->getTimeZonesForNumber($number)); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/timezone/data/map_data.php b/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/timezone/data/map_data.php deleted file mode 100644 index 794b2c52c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/timezone/data/map_data.php +++ /dev/null @@ -1,18 +0,0 @@ - 'America/New_York&America/Chicago&America/Winnipeg&America/Los_Angeles', - 1201 => 'America/New_York', - 1212812 => 'America/New_York', - 1234 => 'America/New_York', - 1604 => 'America/Winnipeg', - 1617423 => 'America/Chicago', - 1650960 => 'America/Los_Angeles', - 1989 => 'Ameriac/Los_Angeles', - 612 => 'Australia/Sydney', - 82 => 'Asia/Seoul', -); diff --git a/vendor/giggsey/libphonenumber-for-php/build.xml b/vendor/giggsey/libphonenumber-for-php/build.xml deleted file mode 100644 index 93f84d9e9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/build.xml +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Cloning repository - - - - - - - - - - - - - - - - - - Applying patch ${filename} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/vendor/giggsey/libphonenumber-for-php/build/build.php b/vendor/giggsey/libphonenumber-for-php/build/build.php deleted file mode 100644 index e975a3d03..000000000 --- a/vendor/giggsey/libphonenumber-for-php/build/build.php +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env php -run(); diff --git a/vendor/giggsey/libphonenumber-for-php/build/data-patches/.gitkeep b/vendor/giggsey/libphonenumber-for-php/build/data-patches/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/vendor/giggsey/libphonenumber-for-php/build/data-patches/001-PHP7-PL.patch b/vendor/giggsey/libphonenumber-for-php/build/data-patches/001-PHP7-PL.patch deleted file mode 100644 index cfaa1307d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/build/data-patches/001-PHP7-PL.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/resources/PhoneNumberMetadata.xml b/resources/PhoneNumberMetadata.xml -index a53b48d..820598c 100644 ---- a/resources/PhoneNumberMetadata.xml -+++ b/resources/PhoneNumberMetadata.xml -@@ -19031,7 +19031,7 @@ - - - [12]\d{6,8}| -- [3-57-9]\d{8}| -+ (?:[3-5]|[7-9])\d{8}| - 6\d{5,8} - - \d{6,9} diff --git a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/BuildApplication.php b/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/BuildApplication.php deleted file mode 100644 index 968151de7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/BuildApplication.php +++ /dev/null @@ -1,26 +0,0 @@ -addCommands( - array( - new BuildMetadataPHPFromXMLCommand(), - new GeneratePhonePrefixDataCommand(), - new GenerateTimeZonesMapDataCommand(), - ) - ); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/BuildMetadataFromXml.php b/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/BuildMetadataFromXml.php deleted file mode 100644 index b76062313..000000000 --- a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/BuildMetadataFromXml.php +++ /dev/null @@ -1,801 +0,0 @@ -load($inputXmlFile); - $document->normalizeDocument(); - $territories = $document->getElementsByTagName("territory"); - $metadataCollection = array(); - - $isShortNumberMetadata = strpos($inputXmlFile, 'ShortNumberMetadata'); - $isAlternateFormatsMetadata = strpos($inputXmlFile, 'PhoneNumberAlternateFormats'); - - foreach ($territories as $territoryElement) { - /** @var $territoryElement \DOMElement */ - // For the main metadata file this should always be set, but for other supplementary data - // files the country calling code may be all that is needed. - if ($territoryElement->hasAttribute("id")) { - $regionCode = $territoryElement->getAttribute("id"); - } else { - $regionCode = ""; - } - $metadata = self::loadCountryMetadata($regionCode, $territoryElement, $liteBuild, $isShortNumberMetadata, $isAlternateFormatsMetadata); - $metadataCollection[] = $metadata; - } - return $metadataCollection; - } - - /** - * @param string $regionCode - * @param \DOMElement $element - * @param string $liteBuild - * @param string $isShortNumberMetadata - * @param string $isAlternateFormatsMetadata - * @return PhoneMetadata - */ - public static function loadCountryMetadata($regionCode, \DOMElement $element, $liteBuild, $isShortNumberMetadata, $isAlternateFormatsMetadata) - { - $nationalPrefix = self::getNationalPrefix($element); - $metadata = self::loadTerritoryTagMetadata($regionCode, $element, $nationalPrefix); - $nationalPrefixFormattingRule = self::getNationalPrefixFormattingRuleFromElement($element, $nationalPrefix); - - self::loadAvailableFormats($metadata, $element, $nationalPrefix, $nationalPrefixFormattingRule, $element->hasAttribute(self::NATIONAL_PREFIX_OPTIONAL_WHEN_FORMATTING)); - if (!$isAlternateFormatsMetadata) { - // The alternate formats metadata does not need most of the patterns to be set. - self::setRelevantDescPatterns($metadata, $element, $liteBuild, $isShortNumberMetadata); - } - return $metadata; - } - - /** - * Returns the national prefix of the provided country element. - * @internal - * @param \DOMElement $element - * @return string - */ - public static function getNationalPrefix(\DOMElement $element) - { - return $element->hasAttribute(self::NATIONAL_PREFIX) ? $element->getAttribute(self::NATIONAL_PREFIX) : ""; - } - - /** - * - * @internal - * @param \DOMElement $element - * @param string $nationalPrefix - * @return string - */ - public static function getNationalPrefixFormattingRuleFromElement(\DOMElement $element, $nationalPrefix) - { - $nationalPrefixFormattingRule = $element->getAttribute(self::NATIONAL_PREFIX_FORMATTING_RULE); -// Replace $NP with national prefix and $FG with the first group ($1). - $nationalPrefixFormattingRule = str_replace('$NP', $nationalPrefix, $nationalPrefixFormattingRule); - $nationalPrefixFormattingRule = str_replace('$FG', '$1', $nationalPrefixFormattingRule); - return $nationalPrefixFormattingRule; - } - - /** - * - * @internal - * @param string $regionCode - * @param \DOMElement $element - * @param string $nationalPrefix - * @return PhoneMetadata - */ - public static function loadTerritoryTagMetadata( - $regionCode, - \DOMElement $element, - $nationalPrefix - ) { - $metadata = new PhoneMetadata(); - $metadata->setId($regionCode); - $metadata->setCountryCode((int)$element->getAttribute(self::COUNTRY_CODE)); - if ($element->hasAttribute(self::LEADING_DIGITS)) { - $metadata->setLeadingDigits(self::validateRE($element->getAttribute(self::LEADING_DIGITS))); - } - $metadata->setInternationalPrefix(self::validateRE($element->getAttribute(self::INTERNATIONAL_PREFIX))); - if ($element->hasAttribute(self::PREFERRED_INTERNATIONAL_PREFIX)) { - $preferredInternationalPrefix = $element->getAttribute(self::PREFERRED_INTERNATIONAL_PREFIX); - $metadata->setPreferredInternationalPrefix($preferredInternationalPrefix); - } - if ($element->hasAttribute(self::NATIONAL_PREFIX_FOR_PARSING)) { - $metadata->setNationalPrefixForParsing( - self::validateRE($element->getAttribute(self::NATIONAL_PREFIX_FOR_PARSING), true) - ); - if ($element->hasAttribute(self::NATIONAL_PREFIX_TRANSFORM_RULE)) { - $metadata->setNationalPrefixTransformRule(self::validateRE($element->getAttribute(self::NATIONAL_PREFIX_TRANSFORM_RULE))); - } - } - if ($nationalPrefix != '') { - $metadata->setNationalPrefix($nationalPrefix); - if (!$metadata->hasNationalPrefixForParsing()) { - $metadata->setNationalPrefixForParsing($nationalPrefix); - } - } - if ($element->hasAttribute(self::PREFERRED_EXTN_PREFIX)) { - $metadata->setPreferredExtnPrefix($element->getAttribute(self::PREFERRED_EXTN_PREFIX)); - } - if ($element->hasAttribute(self::MAIN_COUNTRY_FOR_CODE)) { - $metadata->setMainCountryForCode(true); - } - if ($element->hasAttribute(self::LEADING_ZERO_POSSIBLE)) { - $metadata->setLeadingZeroPossible(true); - } - if ($element->hasAttribute(self::MOBILE_NUMBER_PORTABLE_REGION)) { - $metadata->setMobileNumberPortableRegion(true); - } - return $metadata; - } - - /** - * Extracts the available formats from the provided DOM element. If it does not contain any - * nationalPrefixFormattingRule, the one passed-in is retained; similarly for - * nationalPrefixOptionalWhenFormatting. The nationalPrefix, nationalPrefixFormattingRule and - * nationalPrefixOptionalWhenFormatting values are provided from the parent (territory) element. - * @internal - * @param PhoneMetadata $metadata - * @param \DOMElement $element - * @param string $nationalPrefix - * @param string $nationalPrefixFormattingRule - * @param bool $nationalPrefixOptionalWhenFormatting - */ - public static function loadAvailableFormats( - PhoneMetadata $metadata, - \DOMElement $element, - $nationalPrefix, - $nationalPrefixFormattingRule, - $nationalPrefixOptionalWhenFormatting - ) { - $carrierCodeFormattingRule = ""; - if ($element->hasAttribute(self::CARRIER_CODE_FORMATTING_RULE)) { - $carrierCodeFormattingRule = self::validateRE(self::getDomesticCarrierCodeFormattingRuleFromElement($element, $nationalPrefix)); - } - $numberFormatElements = $element->getElementsByTagName(self::NUMBER_FORMAT); - $hasExplicitIntlFormatDefined = false; - - $numOfFormatElements = $numberFormatElements->length; - if ($numOfFormatElements > 0) { - for ($i = 0; $i < $numOfFormatElements; $i++) { - /** @var \DOMElement $numberFormatElement */ - $numberFormatElement = $numberFormatElements->item($i); - $format = new NumberFormat(); - - if ($numberFormatElement->hasAttribute(self::NATIONAL_PREFIX_FORMATTING_RULE)) { - $format->setNationalPrefixFormattingRule( - self::getNationalPrefixFormattingRuleFromElement($numberFormatElement, $nationalPrefix) - ); - } else { - $format->setNationalPrefixFormattingRule($nationalPrefixFormattingRule); - } - if ($numberFormatElement->hasAttribute(self::NATIONAL_PREFIX_OPTIONAL_WHEN_FORMATTING)) { - $format->setNationalPrefixOptionalWhenFormatting($numberFormatElement->getAttribute(self::NATIONAL_PREFIX_OPTIONAL_WHEN_FORMATTING) == 'true' ? true : false); - } else { - $format->setNationalPrefixOptionalWhenFormatting($nationalPrefixOptionalWhenFormatting); - } - if ($numberFormatElement->hasAttribute(self::CARRIER_CODE_FORMATTING_RULE)) { - $format->setDomesticCarrierCodeFormattingRule( - self::validateRE(self::getDomesticCarrierCodeFormattingRuleFromElement($numberFormatElement, $nationalPrefix)) - ); - } else { - $format->setDomesticCarrierCodeFormattingRule($carrierCodeFormattingRule); - } - self::loadNationalFormat($metadata, $numberFormatElement, $format); - $metadata->addNumberFormat($format); - - if (self::loadInternationalFormat($metadata, $numberFormatElement, $format)) { - $hasExplicitIntlFormatDefined = true; - } - } - // Only a small number of regions need to specify the intlFormats in the xml. For the majority - // of countries the intlNumberFormat metadata is an exact copy of the national NumberFormat - // metadata. To minimize the size of the metadata file, we only keep intlNumberFormats that - // actually differ in some way to the national formats. - if (!$hasExplicitIntlFormatDefined) { - $metadata->clearIntlNumberFormat(); - } - } - } - - /** - * @internal - * @param \DOMElement $element - * @param string $nationalPrefix - * @return mixed|string - */ - public static function getDomesticCarrierCodeFormattingRuleFromElement(\DOMElement $element, $nationalPrefix) - { - $carrierCodeFormattingRule = $element->getAttribute(self::CARRIER_CODE_FORMATTING_RULE); - // Replace $FG with the first group ($1) and $NP with the national prefix. - $carrierCodeFormattingRule = str_replace('$NP', $nationalPrefix, $carrierCodeFormattingRule); - $carrierCodeFormattingRule = str_replace('$FG', '$1', $carrierCodeFormattingRule); - return $carrierCodeFormattingRule; - } - - /** - * Extracts the pattern for the national format. - * - * @internal - * @param PhoneMetadata $metadata - * @param \DOMElement $numberFormatElement - * @param NumberFormat $format - * @throws \RuntimeException if multiple or no formats have been encountered. - */ - public static function loadNationalFormat( - PhoneMetadata $metadata, - \DOMElement $numberFormatElement, - NumberFormat $format - ) { - self::setLeadingDigitsPatterns($numberFormatElement, $format); - $format->setPattern(self::validateRE($numberFormatElement->getAttribute(self::PATTERN))); - - $formatPattern = $numberFormatElement->getElementsByTagName(self::FORMAT); - if ($formatPattern->length != 1) { - $countryId = strlen($metadata->getId()) > 0 ? $metadata->getId() : $metadata->getCountryCode(); - throw new \RuntimeException("Invalid number of format patterns for country: " . $countryId); - } - $nationalFormat = $formatPattern->item(0)->firstChild->nodeValue; - $format->setFormat($nationalFormat); - } - - /** - * @internal - * @param \DOMElement $numberFormatElement - * @param NumberFormat $format - */ - public static function setLeadingDigitsPatterns(\DOMElement $numberFormatElement, NumberFormat $format) - { - $leadingDigitsPatternNodes = $numberFormatElement->getElementsByTagName(self::LEADING_DIGITS); - $numOfLeadingDigitsPatterns = $leadingDigitsPatternNodes->length; - if ($numOfLeadingDigitsPatterns > 0) { - for ($i = 0; $i < $numOfLeadingDigitsPatterns; $i++) { - $format->addLeadingDigitsPattern(self::validateRE($leadingDigitsPatternNodes->item($i)->firstChild->nodeValue, true)); - } - } - } - - /** - * Extracts the pattern for international format. If there is no intlFormat, default to using the - * national format. If the intlFormat is set to "NA" the intlFormat should be ignored. - * - * @internal - * @param PhoneMetadata $metadata - * @param \DOMElement $numberFormatElement - * @param NumberFormat $nationalFormat - * @throws \RuntimeException if multiple intlFormats have been encountered. - * @return bool whether an international number format is defined. - */ - public static function loadInternationalFormat( - PhoneMetadata $metadata, - \DOMElement $numberFormatElement, - NumberFormat $nationalFormat - ) { - $intlFormat = new NumberFormat(); - $intlFormatPattern = $numberFormatElement->getElementsByTagName(self::INTL_FORMAT); - $hasExplicitIntlFormatDefined = false; - - if ($intlFormatPattern->length > 1) { - $countryId = strlen($metadata->getId()) > 0 ? $metadata->getId() : $metadata->getCountryCode(); - throw new \RuntimeException("Invalid number of intlFormat patterns for country: " . $countryId); - } elseif ($intlFormatPattern->length == 0) { - // Default to use the same as the national pattern if none is defined. - $intlFormat->mergeFrom($nationalFormat); - } else { - $intlFormat->setPattern($numberFormatElement->getAttribute(self::PATTERN)); - self::setLeadingDigitsPatterns($numberFormatElement, $intlFormat); - $intlFormatPatternValue = $intlFormatPattern->item(0)->firstChild->nodeValue; - if ($intlFormatPatternValue !== "NA") { - $intlFormat->setFormat($intlFormatPatternValue); - } - $hasExplicitIntlFormatDefined = true; - } - - if ($intlFormat->hasFormat()) { - $metadata->addIntlNumberFormat($intlFormat); - } - return $hasExplicitIntlFormatDefined; - } - - /** - * @internal - * @param PhoneMetadata $metadata - * @param \DOMElement $element - * @param bool $liteBuild - * @param bool $isShortNumberMetadata - */ - public static function setRelevantDescPatterns(PhoneMetadata $metadata, \DOMElement $element, $liteBuild, $isShortNumberMetadata) - { - $generalDesc = self::processPhoneNumberDescElement(null, $element, self::GENERAL_DESC, $liteBuild); - $metadata->setGeneralDesc($generalDesc); - - $metadataId = $metadata->getId(); - // Calculate the possible lengths for the general description. This will be based on the - // possible lengths of the child elements. - self::setPossibleLengthsGeneralDesc($generalDesc, $metadataId, $element, $isShortNumberMetadata); - - if (!$isShortNumberMetadata) { - // Set fields used by regular length phone numbers. - $metadata->setFixedLine(self::processPhoneNumberDescElement($generalDesc, $element, self::FIXED_LINE, $liteBuild)); - $metadata->setMobile(self::processPhoneNumberDescElement($generalDesc, $element, self::MOBILE, $liteBuild)); - $metadata->setSharedCost(self::processPhoneNumberDescElement($generalDesc, $element, self::SHARED_COST, $liteBuild)); - $metadata->setVoip(self::processPhoneNumberDescElement($generalDesc, $element, self::VOIP, $liteBuild)); - $metadata->setPersonalNumber(self::processPhoneNumberDescElement($generalDesc, $element, self::PERSONAL_NUMBER, $liteBuild)); - $metadata->setPager(self::processPhoneNumberDescElement($generalDesc, $element, self::PAGER, $liteBuild)); - $metadata->setUan(self::processPhoneNumberDescElement($generalDesc, $element, self::UAN, $liteBuild)); - $metadata->setVoicemail(self::processPhoneNumberDescElement($generalDesc, $element, self::VOICEMAIL, $liteBuild)); - $metadata->setNoInternationalDialling(self::processPhoneNumberDescElement($generalDesc, $element, self::NO_INTERNATIONAL_DIALLING, $liteBuild)); - $metadata->setSameMobileAndFixedLinePattern($metadata->getMobile()->getNationalNumberPattern() === $metadata->getFixedLine()->getNationalNumberPattern()); - $metadata->setTollFree(self::processPhoneNumberDescElement($generalDesc, $element, self::TOLL_FREE, $liteBuild)); - $metadata->setPremiumRate(self::processPhoneNumberDescElement($generalDesc, $element, self::PREMIUM_RATE, $liteBuild)); - } else { - // Set fields used by short numbers. - $metadata->setStandardRate(self::processPhoneNumberDescElement($generalDesc, $element, self::STANDARD_RATE, $liteBuild)); - $metadata->setShortCode(self::processPhoneNumberDescElement($generalDesc, $element, self::SHORT_CODE, $liteBuild)); - $metadata->setCarrierSpecific(self::processPhoneNumberDescElement($generalDesc, $element, self::CARRIER_SPECIFIC, $liteBuild)); - $metadata->setEmergency(self::processPhoneNumberDescElement($generalDesc, $element, self::EMERGENCY, $liteBuild)); - $metadata->setTollFree(self::processPhoneNumberDescElement($generalDesc, $element, self::TOLL_FREE, $liteBuild)); - $metadata->setPremiumRate(self::processPhoneNumberDescElement($generalDesc, $element, self::PREMIUM_RATE, $liteBuild)); - } - } - - /** - * Parses a possible length string into a set of the integers that are covered. - * - * @param string $possibleLengthString a string specifying the possible lengths of phone numbers. Follows - * this syntax: ranges or elements are separated by commas, and ranges are specified in - * [min-max] notation, inclusive. For example, [3-5],7,9,[11-14] should be parsed to - * 3,4,5,7,9,11,12,13,14 - * @return array - */ - private static function parsePossibleLengthStringToSet($possibleLengthString) - { - if (strlen($possibleLengthString) === 0) { - throw new \RuntimeException("Empty possibleLength string found."); - } - - $lengths = explode(",", $possibleLengthString); - $lengthSet = array(); - - - $lengthLength = count($lengths); - for ($i = 0; $i < $lengthLength; $i++) { - $lengthSubstring = $lengths[$i]; - if (strlen($lengthSubstring) === 0) { - throw new \RuntimeException("Leading, trailing or adjacent commas in possible " - . "length string {$possibleLengthString}, these should only separate numbers or ranges."); - } elseif (substr($lengthSubstring, 0, 1) === '[') { - if (substr($lengthSubstring, -1) !== ']') { - throw new \RuntimeException("Missing end of range character in possible length string {$possibleLengthString}."); - } - - // Strip the leading and trailing [], and split on the -. - $minMax = explode('-', substr($lengthSubstring, 1, -1)); - if (count($minMax) !== 2) { - throw new \RuntimeException("Ranges must have exactly one - character: missing for {$possibleLengthString}."); - } - $min = (int)$minMax[0]; - $max = (int)$minMax[1]; - // We don't even accept [6-7] since we prefer the shorter 6,7 variant; for a range to be in - // use the hyphen needs to replace at least one digit. - if ($max - $min < 2) { - throw new \RuntimeException("The first number in a range should be two or more digits lower than the second. Culprit possibleLength string: {$possibleLengthString}."); - } - for ($j = $min; $j <= $max; $j++) { - if (in_array($j, $lengthSet)) { - throw new \RuntimeException("Duplicate length element found ({$j}) in possibleLength string {$possibleLengthString}."); - } - array_push($lengthSet, $j); - } - } else { - $length = $lengthSubstring; - if (in_array($length, $lengthSet)) { - throw new \RuntimeException("Duplicate length element found ({$length}) in possibleLength string {$possibleLengthString}."); - } - if (!is_numeric($length)) { - throw new \RuntimeException("For input string \"{$length}\""); - } - array_push($lengthSet, $length); - } - } - return $lengthSet; - } - - /** - * Reads the possible length present in the metadata and splits them into two sets: one for - * full-length numbers, one for local numbers. - * - * - * @param \DOMElement $data One or more phone number descriptions - * @param array $lengths An array in which to add possible lengths of full phone numbers - * @param array $localOnlyLengths An array in which to add possible lengths of phone numbers only diallable - * locally (e.g. within a province) - */ - private static function populatePossibleLengthSets(\DOMElement $data, &$lengths, &$localOnlyLengths) - { - $possibleLengths = $data->getElementsByTagName(self::POSSIBLE_LENGTHS); - - for ($i = 0; $i < $possibleLengths->length; $i++) { - /** @var \DOMElement $element */ - $element = $possibleLengths->item($i); - $nationalLengths = $element->getAttribute(self::NATIONAL); - // We don't add to the phone metadata yet, since we want to sort length elements found under - // different nodes first, make sure there are no duplicates between them and that the - // localOnly lengths don't overlap with the others. - $thisElementLengths = self::parsePossibleLengthStringToSet($nationalLengths); - if ($element->hasAttribute(self::LOCAL_ONLY)) { - $localLengths = $element->getAttribute(self::LOCAL_ONLY); - $thisElementLocalOnlyLengths = self::parsePossibleLengthStringToSet($localLengths); - $intersection = array_intersect($thisElementLengths, $thisElementLocalOnlyLengths); - if (count($intersection) > 0) { - throw new \RuntimeException("Possible length(s) found specified as a normal and local-only length: [" . implode(',', $intersection) . '].'); - } - // We check again when we set these lengths on the metadata itself in setPossibleLengths - // that the elements in localOnly are not also in lengths. For e.g. the generalDesc, it - // might have a local-only length for one type that is a normal length for another type. We - // don't consider this an error, but we do want to remove the local-only lengths. - $localOnlyLengths = array_merge($localOnlyLengths, $thisElementLocalOnlyLengths); - sort($localOnlyLengths); - } - // It is okay if at this time we have duplicates, because the same length might be possible - // for e.g. fixed-line and for mobile numbers, and this method operates potentially on - // multiple phoneNumberDesc XML elements. - $lengths = array_merge($lengths, $thisElementLengths); - sort($lengths); - } - } - - /** - * Sets possible lengths in the general description, derived from certain child elements - * - * @internal - * @param PhoneNumberDesc $generalDesc - * @param string $metadataId - * @param \DOMElement $data - * @param bool $isShortNumberMetadata - */ - public static function setPossibleLengthsGeneralDesc(PhoneNumberDesc $generalDesc, $metadataId, \DOMElement $data, $isShortNumberMetadata) - { - $lengths = array(); - $localOnlyLengths = array(); - // The general description node should *always* be present if metadata for other types is - // present, aside from in some unit tests. - // (However, for e.g. formatting metadata in PhoneNumberAlternateFormats, no PhoneNumberDesc - // elements are present). - $generalDescNodes = $data->getElementsByTagName(self::GENERAL_DESC); - if ($generalDescNodes->length > 0) { - $generalDescNode = $generalDescNodes->item(0); - self::populatePossibleLengthSets($generalDescNode, $lengths, $localOnlyLengths); - if (count($lengths) > 0 || count($localOnlyLengths) > 0) { - // We shouldn't have anything specified at the "general desc" level: we are going to - // calculate this ourselves from child elements. - throw new \RuntimeException("Found possible lengths specified at general desc: this should be derived from child elements. Affected country: {$metadataId}"); - } - } - if (!$isShortNumberMetadata) { - // Make a copy here since we want to remove some nodes, but we don't want to do that on our - // actual data. - /** @var \DOMElement $allDescData */ - $allDescData = $data->cloneNode(true); - foreach (self::$phoneNumberDescsWithoutMatchingTypes as $tag) { - $nodesToRemove = $allDescData->getElementsByTagName($tag); - if ($nodesToRemove->length > 0) { - // We check when we process phone number descriptions that there are only one of each - // type, so this is safe to do. - $allDescData->removeChild($nodesToRemove->item(0)); - } - } - self::populatePossibleLengthSets($allDescData, $lengths, $localOnlyLengths); - } else { - // For short number metadata, we want to copy the lengths from the "short code" section only. - // This is because it's the more detailed validation pattern, it's not a sub-type of short - // codes. The other lengths will be checked later to see that they are a sub-set of these - // possible lengths. - $shortCodeDescList = $data->getElementsByTagName(self::SHORT_CODE); - if (count($shortCodeDescList) > 0) { - $shortCodeDesc = $shortCodeDescList->item(0); - self::populatePossibleLengthSets($shortCodeDesc, $lengths, $localOnlyLengths); - } - if (count($localOnlyLengths) > 0) { - throw new \RuntimeException("Found local-only lengths in short-number metadata"); - } - } - self::setPossibleLengths($lengths, $localOnlyLengths, null, $generalDesc); - } - - /** - * Sets the possible length fields in the metadata from the sets of data passed in. Checks that - * the length is covered by the "parent" phone number description element if one is present, and - * if the lengths are exactly the same as this, they are not filled in for efficiency reasons. - * - * @param array $lengths - * @param array $localOnlyLengths - * @param PhoneNumberDesc $parentDesc - * @param PhoneNumberDesc $desc - */ - private static function setPossibleLengths($lengths, $localOnlyLengths, PhoneNumberDesc $parentDesc = null, PhoneNumberDesc $desc) - { - $parentDescPossibleLengths = ($parentDesc === null) ? null : $parentDesc->getPossibleLength(); - $parentDescPossibleLengthLocalOnlys = ($parentDesc === null) ? null : $parentDesc->getPossibleLengthLocalOnly(); - $descPossibleLengths = array(); - $descPossibleLengthLocalOnlys = array(); - - // Only add the lengths to this sub-type if they aren't exactly the same as the possible - // lengths in the general desc (for metadata size reasons). - if ($parentDesc === null || !self::arePossibleLengthsEqual($lengths, $parentDesc)) { - foreach ($lengths as $length) { - if ($parentDesc === null || in_array($length, $parentDescPossibleLengths)) { - if (!in_array($length, $descPossibleLengths)) { - $descPossibleLengths[] = $length; - } - } else { - // We shouldn't have possible lengths defined in a child element that are not covered by - // the general description. We check this here even though the general description is - // derived from child elements because it is only derived from a subset, and we need to - // ensure *all* child elements have a valid possible length. - throw new \RuntimeException("Out-of-range possible length found ({$length}), parent lengths " . implode(',', $parentDesc->getPossibleLength())); - } - } - } - // We check that the local-only length isn't also a normal possible length (only relevant for - // the general-desc, since within elements such as fixed-line we would throw an exception if we - // saw this) before adding it to the collection of possible local-only lengths. - foreach ($localOnlyLengths as $length) { - if (!in_array($length, $lengths)) { - // We check it is covered by either of the possible length sets of the parent - // PhoneNumberDesc, because for example 7 might be a valid localOnly length for mobile, but - // a valid national length for fixedLine, so the generalDesc would have the 7 removed from - // localOnly. - if ($parentDesc === null || in_array($length, $parentDescPossibleLengthLocalOnlys) || in_array($length, $parentDescPossibleLengths)) { - if (!in_array($length, $descPossibleLengthLocalOnlys)) { - $descPossibleLengthLocalOnlys[] = $length; - } - } else { - throw new \RuntimeException("Out-of-range local-only possible length found ({$length}), parent length {$parentDesc->getPossibleLengthLocalOnly()}"); - } - } - } - $desc->setPossibleLength($descPossibleLengths); - $desc->setPossibleLengthLocalOnly($descPossibleLengthLocalOnlys); - } - - /** - * Processes a phone number description element from the XML file and returns it as a - * PhoneNumberDesc. If the description element is a fixed line or mobile number, the parent - * description will be used to fill in the whole element if necessary, or any components that are - * missing. For all other types, the parent description will only be used to fill in missing - * components if the type has a partial definition. For example, if no "tollFree" element exists, - * we assume there are no toll free numbers for that locale, and return a phone number description - * with "NA" for both the national and possible number patterns. Note that the parent description - * must therefore already be processed before this method is called on any child elements. - * - * @internal - * @param PhoneNumberDesc $parentDesc a generic phone number description that will be used to fill in missing - * parts of the description, or null if this is the root node. This must be processed before - * this is run on any child elements. - * @param \DOMElement $countryElement XML element representing all the country information - * @param string $numberType name of the number type, corresponding to the appropriate tag in the XML - * file with information about that type - * @param bool $liteBuild - * @return PhoneNumberDesc complete description of that phone number type - */ - public static function processPhoneNumberDescElement( - PhoneNumberDesc $parentDesc = null, - \DOMElement $countryElement, - $numberType, - $liteBuild - ) { - $phoneNumberDescList = $countryElement->getElementsByTagName($numberType); - $numberDesc = new PhoneNumberDesc(); - if ($phoneNumberDescList->length == 0 && !self::numberTypeShouldAlwaysBeFilledIn($numberType)) { - $numberDesc->setNationalNumberPattern("NA"); - $numberDesc->setPossibleNumberPattern("NA"); - // -1 will never match a possible phone number length, so is safe to use to ensure this never - // matches. We don't leave it empty, since for compression reasons, we use the empty list to - // mean that the generalDesc possible lengths apply. - $numberDesc->setPossibleLength(array(-1)); - return $numberDesc; - } - - if ($parentDesc != null) { - if ($parentDesc->getNationalNumberPattern() !== "") { - $numberDesc->setNationalNumberPattern($parentDesc->getNationalNumberPattern()); - } - if ($parentDesc->getPossibleNumberPattern() !== "") { - $numberDesc->setPossibleNumberPattern($parentDesc->getPossibleNumberPattern()); - } - if ($parentDesc->getExampleNumber() !== "") { - $numberDesc->setExampleNumber($parentDesc->getExampleNumber()); - } - } - - if ($phoneNumberDescList->length > 0) { - if ($phoneNumberDescList->length > 1) { - throw new \RuntimeException("Multiple elements with type {$numberType} found."); - } - - /** @var \DOMElement $element */ - $element = $phoneNumberDescList->item(0); - // Old way of handling possible number lengths. This will be deleted when no data is - // represented in this way anymore. - $possiblePattern = $element->getElementsByTagName(self::POSSIBLE_NUMBER_PATTERN); - if ($possiblePattern->length > 0) { - $numberDesc->setPossibleNumberPattern(self::validateRE($possiblePattern->item(0)->firstChild->nodeValue, true)); - } - - if ($parentDesc != null) { - // New way of handling possible number lengths. We don't do this for the general - // description, since these tags won't be present; instead we will calculate its values - // based on the values for all the other number type descriptions (see - // setPossibleLengthsGeneralDesc). - $lengths = array(); - $localOnlyLengths = array(); - self::populatePossibleLengthSets($element, $lengths, $localOnlyLengths); - // NOTE: We don't use the localOnlyLengths for specific number types yet, since they aren't - // used in the API and won't be until a method that assesses whether a number is possible - // for a certain type or not is available. To ensure size is small, we don't set them - // outside the general desc at this time. If we want this data later, the empty set here - // should be replaced with the localOnlyLengths set above. - self::setPossibleLengths($lengths, array(), $parentDesc, $numberDesc); - } - - $validPattern = $element->getElementsByTagName(self::NATIONAL_NUMBER_PATTERN); - if ($validPattern->length > 0) { - $numberDesc->setNationalNumberPattern(self::validateRE($validPattern->item(0)->firstChild->nodeValue, true)); - } - - if (!$liteBuild) { - $exampleNumber = $element->getElementsByTagName(self::EXAMPLE_NUMBER); - if ($exampleNumber->length > 0) { - $numberDesc->setExampleNumber($exampleNumber->item(0)->firstChild->nodeValue); - } - } - } - return $numberDesc; - } - - /** - * @internal - * @param string $numberType - * @return bool - */ - public static function numberTypeShouldAlwaysBeFilledIn($numberType) - { - return $numberType == self::FIXED_LINE || $numberType == self::MOBILE || $numberType == self::GENERAL_DESC; - } - - private static function arePossibleLengthsEqual($possibleLengths, PhoneNumberDesc $desc) - { - $descPossibleLength = $desc->getPossibleLength(); - if (count($possibleLengths) != count($descPossibleLength)) { - return false; - } - - // Note that both should be sorted already, and we know they are the same length. - $i = 0; - foreach ($possibleLengths as $length) { - if ($length != $descPossibleLength[$i]) { - return false; - } - $i++; - } - return true; - } - - /** - * @param $metadataCollection PhoneMetadata[] - * @return array - */ - public static function buildCountryCodeToRegionCodeMap($metadataCollection) - { - $countryCodeToRegionCodeMap = array(); - - foreach ($metadataCollection as $metadata) { - $regionCode = $metadata->getId(); - $countryCode = $metadata->getCountryCode(); - if (array_key_exists($countryCode, $countryCodeToRegionCodeMap)) { - if ($metadata->getMainCountryForCode()) { - array_unshift($countryCodeToRegionCodeMap[$countryCode], $regionCode); - } else { - $countryCodeToRegionCodeMap[$countryCode][] = $regionCode; - } - } else { - // For most countries, there will be only one region code for the country calling code. - $listWithRegionCode = array(); - if ($regionCode != '') { // For alternate formats, there are no region codes at all. - $listWithRegionCode[] = $regionCode; - } - $countryCodeToRegionCodeMap[$countryCode] = $listWithRegionCode; - } - } - - return $countryCodeToRegionCodeMap; - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/BuildMetadataPHPFromXml.php b/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/BuildMetadataPHPFromXml.php deleted file mode 100644 index 84cb1c1af..000000000 --- a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/BuildMetadataPHPFromXml.php +++ /dev/null @@ -1,122 +0,0 @@ -writeMetadataToFile($metadataCollection, $savePath); - - - $countryCodeToRegionCodeMap = BuildMetadataFromXml::buildCountryCodeToRegionCodeMap($metadataCollection); - - // Sort $countryCodeToRegionCodeMap just to have the regions in order - - ksort($countryCodeToRegionCodeMap); - - $this->writeCountryCallingCodeMappingToFile($countryCodeToRegionCodeMap, $mappingClassLocation, $mappingClass); - } - - /** - * @param $metadataCollection PhoneMetadata[] - * @param $filePrefix - */ - private function writeMetadataToFile($metadataCollection, $filePrefix) - { - foreach ($metadataCollection as $metadata) { - /** @var $phoneMetadata PhoneMetadata */ - $regionCode = $metadata->getId(); - // For non-geographical country calling codes (e.g. +800), use the country calling codes - // instead of the region code to form the file name. - if ($regionCode === '001' || $regionCode == '') { - $regionCode = $metadata->getCountryCode(); - } - - $data = 'toArray(), - true - ) . ';' . PHP_EOL; - - file_put_contents($filePrefix . "_" . $regionCode . '.php', $data); - } - } - - private function writeCountryCallingCodeMappingToFile($countryCodeToRegionCodeMap, $outputDir, $mappingClass) - { - // Find out whether the countryCodeToRegionCodeMap has any region codes or country - // calling codes listed in it. - $hasRegionCodes = false; - foreach ($countryCodeToRegionCodeMap as $key => $listWithRegionCode) { - if (count($listWithRegionCode) > 0) { - $hasRegionCodes = true; - break; - } - } - - $hasCountryCodes = (count($countryCodeToRegionCodeMap) > 1); - - $variableName = lcfirst($mappingClass); - - $data = 'setName('BuildMetadataPHPFromXML'); - $this->setDescription('Generate phone metadata data files'); - $this->setDefinition( - array( - new InputArgument('InputFile', InputArgument::REQUIRED, 'The input file containing phone number metadata in XML format.'), - new InputArgument('OutputDirectory', InputArgument::REQUIRED, 'The output source directory to store phone number metadata (one file per region) and the country code to region code mapping file'), - new InputArgument('DataPrefix', InputArgument::REQUIRED, 'The start of the filename to store the files (e.g. dataPrefix_GB.php'), - new InputArgument('MappingClass', InputArgument::REQUIRED, 'The name of the mapping class generated'), - new InputArgument('MappingClassLocation', InputArgument::REQUIRED, 'The directory where the mapping class is stored'), - new InputArgument('LiteBuild', InputArgument::OPTIONAL, 'Whether to generate the lite-version of the metadata. When set to true, certain metadata will be omitted. AT this moment, example numbers information is omitted', false), - ) - ); - } - - protected function execute(InputInterface $input, OutputInterface $output) - { - $build = new BuildMetadataPHPFromXml(); - $build->start( - $input->getArgument('InputFile'), - $input->getArgument('OutputDirectory'), - $input->getArgument('DataPrefix'), - $input->getArgument('MappingClass'), - $input->getArgument('MappingClassLocation'), - ($input->getArgument('LiteBuild') == 'true') ? true : false - ); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/Commands/GeneratePhonePrefixDataCommand.php b/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/Commands/GeneratePhonePrefixDataCommand.php deleted file mode 100644 index d277361d9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/Commands/GeneratePhonePrefixDataCommand.php +++ /dev/null @@ -1,34 +0,0 @@ -setName('GeneratePhonePrefixData'); - $this->setDescription('Generate phone prefix data files'); - $this->setDefinition( - array( - new InputArgument('InputDirectory', InputArgument::REQUIRED, 'The input directory containing the locale/region.txt files'), - new InputArgument('OutputDirectory', InputArgument::REQUIRED, 'The output source directory'), - ) - ); - } - - protected function execute(InputInterface $input, OutputInterface $output) - { - $generatePhonePrefixData = new GeneratePhonePrefixData(); - $generatePhonePrefixData->start( - $input->getArgument('InputDirectory'), - $input->getArgument('OutputDirectory'), - $output - ); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/Commands/GenerateTimeZonesMapDataCommand.php b/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/Commands/GenerateTimeZonesMapDataCommand.php deleted file mode 100644 index be9ee70e4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/Commands/GenerateTimeZonesMapDataCommand.php +++ /dev/null @@ -1,29 +0,0 @@ -setName('GenerateTimeZonesMapData'); - $this->setDescription('Generate time zone data files'); - $this->setDefinition( - array( - new InputArgument('InputFile', InputArgument::REQUIRED, 'The input file containing the timezone map data'), - new InputArgument('OutputDirectory', InputArgument::REQUIRED, 'The output directory to save the file'), - ) - ); - } - - protected function execute(InputInterface $input, OutputInterface $output) - { - new GenerateTimeZonesMapData($input->getArgument('InputFile'), $input->getArgument('OutputDirectory')); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/GeneratePhonePrefixData.php b/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/GeneratePhonePrefixData.php deleted file mode 100644 index 849050255..000000000 --- a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/GeneratePhonePrefixData.php +++ /dev/null @@ -1,399 +0,0 @@ -inputDir = $inputDir; - $this->outputDir = $outputDir; - - $inputOutputMappings = $this->createInputOutputMappings(); - $availableDataFiles = array(); - - $progress = new ProgressBar($consoleOutput, count($inputOutputMappings)); - - $progress->start(); - foreach ($inputOutputMappings as $textFile => $outputFiles) { - $mappings = $this->readMappingsFromFile($textFile); - - $language = $this->getLanguageFromTextFile($textFile); - - $this->removeEmptyEnglishMappings($mappings, $language); - $this->makeDataFallbackToEnglish($textFile, $mappings); - $mappingForFiles = $this->splitMap($mappings, $outputFiles); - - foreach ($mappingForFiles as $outputFile => $value) { - $this->writeMappingFile($language, $outputFile, $value); - $this->addConfigurationMapping($availableDataFiles, $language, $outputFile); - } - $progress->advance(); - } - - $this->writeConfigMap($availableDataFiles); - $progress->finish(); - } - - private function createInputOutputMappings() - { - $topLevel = scandir($this->inputDir); - - $mappings = array(); - - foreach ($topLevel as $languageDirectory) { - if (in_array($languageDirectory, $this->filesToIgnore)) { - continue; - } - - $fileLocation = $this->inputDir . DIRECTORY_SEPARATOR . $languageDirectory; - - if (is_dir($fileLocation)) { - // Will contain files - - $countryCodeFiles = scandir($fileLocation); - - foreach ($countryCodeFiles as $countryCodeFileName) { - if (in_array($countryCodeFileName, $this->filesToIgnore)) { - continue; - } - - - $outputFiles = $this->createOutputFileNames( - $countryCodeFileName, - $this->getCountryCodeFromTextFileName($countryCodeFileName), - $languageDirectory - ); - - $mappings[$languageDirectory . DIRECTORY_SEPARATOR . $countryCodeFileName] = $outputFiles; - } - } - } - - return $mappings; - } - - /** - * Method used by {@code #createInputOutputMappings()} to generate the list of output binary files - * from the provided input text file. For the data files expected to be large (currently only - * NANPA is supported), this method generates a list containing one output file for each area - * code. Otherwise, a single file is added to the list. - */ - - private function createOutputFileNames($file, $countryCode, $language) - { - $outputFiles = array(); - - if ($countryCode == self::NANPA_COUNTRY_CODE) { - // Fetch the 4-digit prefixes stored in the file. - $phonePrefixes = array(); - - $this->parseTextFile( - $this->getFilePathFromLanguageAndCountryCode($language, $countryCode), - function ($prefix, $location) use (&$phonePrefixes) { - $shortPrefix = substr($prefix, 0, 4); - if (!in_array($shortPrefix, $phonePrefixes)) { - $phonePrefixes[] = $shortPrefix; - } - } - ); - - foreach ($phonePrefixes as $prefix) { - $outputFiles[] = $this->generateFilename($prefix, $language); - } - } elseif ($countryCode == 86) { - - /* - * Reduce memory usage for China numbers - * @see https://github.com/giggsey/libphonenumber-for-php/issues/44 - */ - - // Fetch the 5-digit prefixes stored in the file. - $phonePrefixes = array(); - - $this->parseTextFile( - $this->getFilePathFromLanguageAndCountryCode($language, $countryCode), - function ($prefix, $location) use (&$phonePrefixes) { - $shortPrefix = substr($prefix, 0, 5); - if (!in_array($shortPrefix, $phonePrefixes)) { - $phonePrefixes[] = $shortPrefix; - } - } - ); - - foreach ($phonePrefixes as $prefix) { - $outputFiles[] = $this->generateFilename($prefix, $language); - } - } else { - $outputFiles[] = $this->generateFilename($countryCode, $language); - } - - return $outputFiles; - } - - /** - * Reads phone prefix data from the provides file path and invokes the given handler for each - * mapping read. - * - * @param $filePath - * @param $handler - * @return array - * @throws \InvalidArgumentException - */ - private function parseTextFile($filePath, \Closure $handler) - { - if (!file_exists($filePath) || !is_readable($filePath)) { - throw new \InvalidArgumentException("File '{$filePath}' does not exist"); - } - - $data = file($filePath); - - $countryData = array(); - - foreach ($data as $line) { - // Remove \n - $line = str_replace("\n", "", $line); - $line = str_replace("\r", "", $line); - $line = trim($line); - - if (strlen($line) == 0 || substr($line, 0, 1) == '#') { - continue; - } - if (strpos($line, '|')) { - // Valid line - $parts = explode('|', $line); - - - $prefix = $parts[0]; - $location = $parts[1]; - - $handler($prefix, $location); - } - } - - return $countryData; - } - - private function getFilePathFromLanguageAndCountryCode($language, $code) - { - return $this->getFilePath($language . DIRECTORY_SEPARATOR . $code . self::DATA_FILE_EXTENSION); - } - - private function getFilePath($fileName) - { - $path = $this->inputDir . $fileName; - - return $path; - } - - private function generateFilename($prefix, $language) - { - return $language . DIRECTORY_SEPARATOR . $prefix . self::DATA_FILE_EXTENSION; - } - - private function getCountryCodeFromTextFileName($countryCodeFileName) - { - return str_replace(self::DATA_FILE_EXTENSION, '', $countryCodeFileName); - } - - private function readMappingsFromFile($inputFile) - { - $areaCodeMap = array(); - - $this->parseTextFile( - $this->inputDir . $inputFile, - function ($prefix, $location) use (&$areaCodeMap) { - $areaCodeMap[$prefix] = $location; - } - ); - - return $areaCodeMap; - } - - private function getLanguageFromTextFile($textFile) - { - $parts = explode(DIRECTORY_SEPARATOR, $textFile); - - return $parts[0]; - } - - private function removeEmptyEnglishMappings(&$mappings, $language) - { - if ($language != "en") { - return; - } - - foreach ($mappings as $k => $v) { - if ($v == "") { - unset($mappings[$k]); - } - } - } - - /** - * Compress the provided mappings according to the English data file if any. - * @param string $textFile - * @param array $mappings - */ - private function makeDataFallbackToEnglish($textFile, &$mappings) - { - $englishPath = $this->getEnglishDataPath($textFile); - - if ($textFile == $englishPath || !file_exists($this->getFilePath($englishPath))) { - return; - } - - $countryCode = substr($textFile, 3, 2); - - if (!array_key_exists($countryCode, $this->englishMaps)) { - $englishMap = $this->readMappingsFromFile($englishPath); - - $this->englishMaps[$countryCode] = $englishMap; - } - - $this->compressAccordingToEnglishData($this->englishMaps[$countryCode], $mappings); - } - - private function getEnglishDataPath($textFile) - { - return "en" . DIRECTORY_SEPARATOR . substr($textFile, 3, 2) . self::DATA_FILE_EXTENSION; - } - - private function compressAccordingToEnglishData($englishMap, &$nonEnglishMap) - { - foreach ($nonEnglishMap as $prefix => $value) { - if (array_key_exists($prefix, $englishMap)) { - $englishDescription = $englishMap[$prefix]; - if ($englishDescription == $value) { - if (!$this->hasOverlappingPrefix($prefix, $nonEnglishMap)) { - unset($nonEnglishMap[$prefix]); - } else { - $nonEnglishMap[$prefix] = ""; - } - } - } - } - } - - private function hasOverlappingPrefix($number, $mappings) - { - while (strlen($number) > 0) { - $number = substr($number, 0, -1); - - if (array_key_exists($number, $mappings)) { - return true; - } - } - - return false; - } - - private function splitMap($mappings, $outputFiles) - { - $mappingForFiles = array(); - - foreach ($mappings as $prefix => $location) { - $targetFile = null; - - foreach ($outputFiles as $k => $outputFile) { - $outputFilePrefix = $this->getPhonePrefixLanguagePairFromFilename($outputFile)->prefix; - if (self::startsWith($prefix, $outputFilePrefix)) { - $targetFile = $outputFilePrefix; - break; - } - } - - - if (!array_key_exists($targetFile, $mappingForFiles)) { - $mappingForFiles[$targetFile] = array(); - } - $mappingForFiles[$targetFile][$prefix] = $location; - } - - return $mappingForFiles; - } - - /** - * Extracts the phone prefix and the language code contained in the provided file name. - */ - private function getPhonePrefixLanguagePairFromFilename($outputFile) - { - $parts = explode(DIRECTORY_SEPARATOR, $outputFile); - - $returnObj = new \stdClass(); - $returnObj->language = $parts[0]; - - $returnObj->prefix = $this->getCountryCodeFromTextFileName($parts[1]); - - return $returnObj; - } - - /** - * - * @link http://stackoverflow.com/a/834355/403165 - * @param $haystack - * @param $needle - * @return bool - */ - private static function startsWith($haystack, $needle) - { - return !strncmp($haystack, $needle, strlen($needle)); - } - - private function writeMappingFile($language, $outputFile, $data) - { - if (!file_exists($this->outputDir . $language)) { - mkdir($this->outputDir . $language); - } - - $phpSource = 'outputDir . $language . DIRECTORY_SEPARATOR . $outputFile . '.php'; - - file_put_contents($outputPath, $phpSource); - } - - public function addConfigurationMapping(&$availableDataFiles, $language, $prefix) - { - if (!array_key_exists($language, $availableDataFiles)) { - $availableDataFiles[$language] = array(); - } - - $availableDataFiles[$language][] = $prefix; - } - - private function writeConfigMap($availableDataFiles) - { - $phpSource = 'outputDir . 'Map.php'; - - file_put_contents($outputPath, $phpSource); - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/GenerateTimeZonesMapData.php b/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/GenerateTimeZonesMapData.php deleted file mode 100644 index cd3ee6b70..000000000 --- a/vendor/giggsey/libphonenumber-for-php/build/libphonenumber/buildtools/GenerateTimeZonesMapData.php +++ /dev/null @@ -1,76 +0,0 @@ -inputTextFile = $inputFile; - - if (!is_readable($this->inputTextFile)) { - throw new \RuntimeException("The provided input text file does not exist."); - } - - $data = $this->parseTextFile(); - $this->writeMappingFile($outputDir, $data); - } - - /** - * Reads phone prefix data from the provided input stream and returns a SortedMap with the - * prefix to time zones mappings. - */ - private function parseTextFile() - { - $data = file($this->inputTextFile); - - $timeZoneMap = array(); - - foreach ($data as $line) { - // Remove \n - $line = str_replace("\n", "", $line); - $line = str_replace("\r", "", $line); - $line = trim($line); - - if (strlen($line) == 0 || substr($line, 0, 1) == '#') { - continue; - } - if (strpos($line, '|')) { - // Valid line - $parts = explode('|', $line); - - - $prefix = $parts[0]; - $timezone = $parts[1]; - - $timeZoneMap[$prefix] = $timezone; - } - } - - return $timeZoneMap; - } - - private function writeMappingFile($outputFile, $data) - { - $phpSource = ' - - Initial spec file diff --git a/vendor/giggsey/libphonenumber-for-php/phpunit.xml.dist b/vendor/giggsey/libphonenumber-for-php/phpunit.xml.dist deleted file mode 100644 index 3b07d604f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/phpunit.xml.dist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - ./Tests/ - - - - - - ./src/ - - - ./src/libphonenumber/data/ - ./src/libphonenumber/carrier/data/ - ./src/libphonenumber/geocoding/data/ - ./src/libphonenumber/timezone/data/ - ./src/libphonenumber/AlternateFormatsCountryCodeSet.php - ./src/libphonenumber/CountryCodeToRegionCodeMap.php - ./src/libphonenumber/CountryCodeToRegionCodeMapForTesting.php - ./src/libphonenumber/RegionCode.php - - - - - - diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/AlternateFormatsCountryCodeSet.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/AlternateFormatsCountryCodeSet.php index 081ed0b35..07e22d6f0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/AlternateFormatsCountryCodeSet.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/AlternateFormatsCountryCodeSet.php @@ -1,7 +1,13 @@ 'RE', 1 => 'YT', ), + 374 => + array ( + 0 => 'AM', + ), 375 => array ( 0 => 'BY', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/Matcher.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/Matcher.php index 68be9637d..708a001b7 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/Matcher.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/Matcher.php @@ -97,7 +97,7 @@ class Matcher */ public function group($group = null) { - if (!isset($group)) { + if (!isset($group) || $group === null) { $group = 0; } return (isset($this->groups[$group][0])) ? $this->groups[$group][0] : null; diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneMetadata.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneMetadata.php index 26cf740cf..ec66940aa 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneMetadata.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneMetadata.php @@ -2,6 +2,11 @@ namespace libphonenumber; +/** + * Class PhoneMetadata + * @package libphonenumber + * @internal Used internally, and can change at any time + */ class PhoneMetadata { /** @@ -221,8 +226,13 @@ class PhoneMetadata } $output['id'] = $this->getId(); - $output['countryCode'] = $this->getCountryCode(); - $output['internationalPrefix'] = $this->getInternationalPrefix(); + if ($this->hasCountryCode()) { + $output['countryCode'] = $this->getCountryCode(); + } + + if ($this->hasInternationalPrefix()) { + $output['internationalPrefix'] = $this->getInternationalPrefix(); + } if ($this->hasPreferredInternationalPrefix()) { $output['preferredInternationalPrefix'] = $this->getPreferredInternationalPrefix(); @@ -244,7 +254,9 @@ class PhoneMetadata $output['nationalPrefixTransformRule'] = $this->getNationalPrefixTransformRule(); } - $output['sameMobileAndFixedLinePattern'] = $this->isSameMobileAndFixedLinePattern(); + if ($this->hasSameMobileAndFixedLinePattern()) { + $output['sameMobileAndFixedLinePattern'] = $this->isSameMobileAndFixedLinePattern(); + } $output['numberFormat'] = array(); foreach ($this->numberFormats() as $numberFormat) { @@ -262,9 +274,13 @@ class PhoneMetadata $output['leadingDigits'] = $this->getLeadingDigits(); } - $output['leadingZeroPossible'] = $this->isLeadingZeroPossible(); + if ($this->hasLeadingZeroPossible()) { + $output['leadingZeroPossible'] = $this->isLeadingZeroPossible(); + } - $output['mobileNumberPortableRegion'] = $this->isMobileNumberPortableRegion(); + if ($this->hasMobileNumberPortableRegion()) { + $output['mobileNumberPortableRegion'] = $this->isMobileNumberPortableRegion(); + } return $output; } @@ -883,9 +899,13 @@ class PhoneMetadata $this->setLeadingDigits($input['leadingDigits']); } - $this->setLeadingZeroPossible($input['leadingZeroPossible']); + if (isset($input['leadingZeroPossible'])) { + $this->setLeadingZeroPossible($input['leadingZeroPossible']); + } - $this->setMobileNumberPortableRegion($input['mobileNumberPortableRegion']); + if (isset($input['mobileNumberPortableRegion'])) { + $this->setMobileNumberPortableRegion($input['mobileNumberPortableRegion']); + } return $this; } diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberDesc.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberDesc.php index c42830b9f..3545ab41e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberDesc.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberDesc.php @@ -34,8 +34,8 @@ class PhoneNumberDesc { $this->nationalNumberPattern = ""; $this->possibleNumberPattern = ""; - $this->possibleLength = array(); - $this->possibleLengthLocalOnly = array(); + $this->clearPossibleLength(); + $this->clearPossibleLengthLocalOnly(); $this->exampleNumber = ""; return $this; @@ -57,6 +57,18 @@ class PhoneNumberDesc $this->possibleLength = $possibleLength; } + public function addPossibleLength($possibleLength) + { + if (!in_array($possibleLength, $this->possibleLength)) { + $this->possibleLength[] = $possibleLength; + } + } + + public function clearPossibleLength() + { + $this->possibleLength = array(); + } + /** * @return array */ @@ -73,6 +85,18 @@ class PhoneNumberDesc $this->possibleLengthLocalOnly = $possibleLengthLocalOnly; } + public function addPossibleLengthLocalOnly($possibleLengthLocalOnly) + { + if (!in_array($possibleLengthLocalOnly, $this->possibleLengthLocalOnly)) { + $this->possibleLengthLocalOnly[] = $possibleLengthLocalOnly; + } + } + + public function clearPossibleLengthLocalOnly() + { + $this->possibleLengthLocalOnly = array(); + } + /** * @return boolean */ diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberToTimeZonesMapper.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberToTimeZonesMapper.php index e39423758..557ef8258 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberToTimeZonesMapper.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberToTimeZonesMapper.php @@ -90,30 +90,13 @@ class PhoneNumberToTimeZonesMapper if ($numberType === PhoneNumberType::UNKNOWN) { return $this->unknownTimeZoneList; - } elseif (!$this->canBeGeocoded($numberType)) { + } elseif (!!PhoneNumberUtil::getInstance()->isNumberGeographical($numberType, $number->getCountryCode())) { return $this->getCountryLevelTimeZonesforNumber($number); } return $this->getTimeZonesForGeographicalNumber($number); } - /** - * A similar method is implemented as PhoneNumberUtil.isNumberGeographical, which performs a - * stricter check, as it determines if a number has a geographical association. Also, if new - * phone number types were added, we should check if this other method should be updated too. - * TODO: Remove duplication by completing the logic in the method in PhoneNumberUtil. - * For more information, see the comments in that method. - * @param $numberType - * @return bool - */ - public function canBeGeocoded($numberType) - { - return ($numberType === PhoneNumberType::FIXED_LINE || - $numberType === PhoneNumberType::MOBILE || - $numberType === PhoneNumberType::FIXED_LINE_OR_MOBILE - ); - } - /** * Returns the list of time zones corresponding to the country calling code of {@code number}. * diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberUtil.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberUtil.php index d97e92b7b..56b08b0c4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberUtil.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/PhoneNumberUtil.php @@ -154,7 +154,7 @@ class PhoneNumberUtil * be the length of the area code plus the length of the mobile token. * @var array */ - protected static $MOBILE_TOKEN_MAPPINGS; + protected static $MOBILE_TOKEN_MAPPINGS = array(); /** * Set of country codes that have geographically assigned mobile numbers (see GEO_MOBILE_COUNTRIES @@ -181,7 +181,7 @@ class PhoneNumberUtil * For performance reasons, amalgamate both into one map. * @var array */ - protected static $ALPHA_PHONE_MAPPINGS; + protected static $ALPHA_PHONE_MAPPINGS = null; /** * Separate map of all symbols that we wish to retain when formatting alpha numbers. This @@ -330,13 +330,9 @@ class PhoneNumberUtil static::$PLUS_CHARS_PATTERN = "[" . static::PLUS_CHARS . "]+"; static::$SEPARATOR_PATTERN = "[" . static::VALID_PUNCTUATION . "]+"; static::$CAPTURING_DIGIT_PATTERN = "(" . static::DIGITS . ")"; - static::$VALID_START_CHAR_PATTERN = "[" . static::PLUS_CHARS . static::DIGITS . "]"; - - static::$ALPHA_PHONE_MAPPINGS = static::$ALPHA_MAPPINGS + static::$asciiDigitMappings; - - static::$DIALLABLE_CHAR_MAPPINGS = static::$asciiDigitMappings; - static::$DIALLABLE_CHAR_MAPPINGS[static::PLUS_SIGN] = static::PLUS_SIGN; - static::$DIALLABLE_CHAR_MAPPINGS['*'] = '*'; + static::initValidStartCharPattern(); + static::initAlphaPhoneMappings(); + static::initDiallableCharMappings(); static::$ALL_PLUS_NUMBER_GROUPING_SYMBOLS = array(); // Put (lower letter -> upper letter) and (upper letter -> upper letter) mappings. @@ -369,9 +365,7 @@ class PhoneNumberUtil static::$UNWANTED_END_CHAR_PATTERN = "[^" . static::DIGITS . static::VALID_ALPHA . "#]+$"; - static::$MOBILE_TOKEN_MAPPINGS = array(); - static::$MOBILE_TOKEN_MAPPINGS['52'] = "1"; - static::$MOBILE_TOKEN_MAPPINGS['54'] = "9"; + static::initMobileTokenMappings(); static::$GEO_MOBILE_COUNTRIES_WITHOUT_MOBILE_AREA_CODES = array(); static::$GEO_MOBILE_COUNTRIES_WITHOUT_MOBILE_AREA_CODES[] = 86; // China @@ -494,6 +488,30 @@ class PhoneNumberUtil static::$EXTN_PATTERN = "/(?:" . static::$EXTN_PATTERNS_FOR_PARSING . ")$/" . static::REGEX_FLAGS; } + protected static function initAlphaPhoneMappings() + { + static::$ALPHA_PHONE_MAPPINGS = static::$ALPHA_MAPPINGS + static::$asciiDigitMappings; + } + + protected static function initValidStartCharPattern() + { + static::$VALID_START_CHAR_PATTERN = "[" . static::PLUS_CHARS . static::DIGITS . "]"; + } + + protected static function initMobileTokenMappings() + { + static::$MOBILE_TOKEN_MAPPINGS = array(); + static::$MOBILE_TOKEN_MAPPINGS['52'] = "1"; + static::$MOBILE_TOKEN_MAPPINGS['54'] = "9"; + } + + protected static function initDiallableCharMappings() + { + static::$DIALLABLE_CHAR_MAPPINGS = static::$asciiDigitMappings; + static::$DIALLABLE_CHAR_MAPPINGS[static::PLUS_SIGN] = static::PLUS_SIGN; + static::$DIALLABLE_CHAR_MAPPINGS['*'] = '*'; + } + /** * Used for testing purposes only to reset the PhoneNumberUtil singleton to null. */ @@ -510,6 +528,10 @@ class PhoneNumberUtil */ public static function convertAlphaCharactersInNumber($number) { + if (static::$ALPHA_PHONE_MAPPINGS === null) { + static::initAlphaPhoneMappings(); + } + return static::normalizeHelper($number, static::$ALPHA_PHONE_MAPPINGS, false); } @@ -800,36 +822,18 @@ class PhoneNumberUtil */ public function isNumberMatchingDesc($nationalNumber, PhoneNumberDesc $numberDesc) { + // Check if any possible number lengths are present; if so, we use them to avoid checking the + // validation pattern if they don't match. If they are absent, this means they match the general + // description, which we have already checked before checking a specific number type. + $actualLength = mb_strlen($nationalNumber); + $possibleLengths = $numberDesc->getPossibleLength(); + if (count($possibleLengths) > 0 && !in_array($actualLength, $possibleLengths)) { + return false; + } + $nationalNumberPatternMatcher = new Matcher($numberDesc->getNationalNumberPattern(), $nationalNumber); - return $this->isNumberPossibleForDesc($nationalNumber, $numberDesc) && $nationalNumberPatternMatcher->matches(); - } - - /** - * - * Helper method to check whether a number is too short to be a regular length phone number in a - * region. - * - * @param PhoneMetadata $regionMetadata - * @param string $number - * @return bool - */ - protected function isShorterThanPossibleNormalNumber(PhoneMetadata $regionMetadata, $number) - { - $possibleNumberPattern = $regionMetadata->getGeneralDesc()->getPossibleNumberPattern(); - return ($this->testNumberLengthAgainstPattern($possibleNumberPattern, $number) === ValidationResult::TOO_SHORT); - } - - /** - * @param string $nationalNumber - * @param PhoneNumberDesc $numberDesc - * @return bool - */ - public function isNumberPossibleForDesc($nationalNumber, PhoneNumberDesc $numberDesc) - { - $possibleNumberPatternMatcher = new Matcher($numberDesc->getPossibleNumberPattern(), $nationalNumber); - - return $possibleNumberPatternMatcher->matches(); + return $nationalNumberPatternMatcher->matches(); } /** @@ -847,7 +851,7 @@ class PhoneNumberUtil * This version exists since calculating the phone number type is expensive; if we have already * done this, we don't want to do it again. * - * @param PhoneNumber|PhoneNumberType $phoneNumberObjOrType A PhoneNumber object, or a PhoneNumberType integer + * @param PhoneNumber|int $phoneNumberObjOrType A PhoneNumber object, or a PhoneNumberType integer * @param int|null $countryCallingCode Used when passing a PhoneNumberType * @return bool */ @@ -1215,6 +1219,10 @@ class PhoneNumberUtil */ public static function getCountryMobileToken($countryCallingCode) { + if (count(static::$MOBILE_TOKEN_MAPPINGS) === 0) { + static::initMobileTokenMappings(); + } + if (array_key_exists($countryCallingCode, static::$MOBILE_TOKEN_MAPPINGS)) { return static::$MOBILE_TOKEN_MAPPINGS[$countryCallingCode]; } @@ -1233,7 +1241,7 @@ class PhoneNumberUtil */ public function isAlphaNumber($number) { - if (!$this->isViablePhoneNumber($number)) { + if (!static::isViablePhoneNumber($number)) { // Number is too short, or doesn't match the basic phone number pattern. return false; } @@ -1286,7 +1294,7 @@ class PhoneNumberUtil $find = preg_match(static::$EXTN_PATTERN, $number, $matches, PREG_OFFSET_CAPTURE); // If we find a potential extension, and the number preceding this is a viable number, we assume // it is an extension. - if ($find > 0 && $this->isViablePhoneNumber(substr($number, 0, $matches[0][1]))) { + if ($find > 0 && static::isViablePhoneNumber(substr($number, 0, $matches[0][1]))) { // The numbers are captured into groups in the regular expression. for ($i = 1, $length = count($matches); $i <= $length; $i++) { @@ -1379,7 +1387,7 @@ class PhoneNumberUtil $nationalNumber = ''; $this->buildNationalNumberForParsing($numberToParse, $nationalNumber); - if (!$this->isViablePhoneNumber($nationalNumber)) { + if (!static::isViablePhoneNumber($nationalNumber)) { throw new NumberParseException( NumberParseException::NOT_A_NUMBER, "The string supplied did not seem to be a phone number." @@ -1451,7 +1459,7 @@ class PhoneNumberUtil // If no extracted country calling code, use the region supplied instead. The national number // is just the normalized version of the number we were given to parse. - $normalizedNationalNumber .= $this->normalize($nationalNumber); + $normalizedNationalNumber .= static::normalize($nationalNumber); if ($defaultRegion !== null) { $countryCode = $regionMetadata->getCountryCode(); $phoneNumber->setCountryCode($countryCode); @@ -1470,11 +1478,11 @@ class PhoneNumberUtil $potentialNationalNumber = $normalizedNationalNumber; $this->maybeStripNationalPrefixAndCarrierCode($potentialNationalNumber, $regionMetadata, $carrierCode); // We require that the NSN remaining after stripping the national prefix and carrier code be - // of a possible length for the region. Otherwise, we don't do the stripping, since the - // original number could be a valid short number. - if (!$this->isShorterThanPossibleNormalNumber($regionMetadata, $potentialNationalNumber)) { + // long enough to be a possible length for the region. Otherwise, we don't do the stripping, + // since the original number could be a valid short number. + if ($this->testNumberLength($potentialNationalNumber, $regionMetadata->getGeneralDesc()) !== ValidationResult::TOO_SHORT) { $normalizedNationalNumber = $potentialNationalNumber; - if ($keepRawInput) { + if ($keepRawInput && mb_strlen($carrierCode) > 0) { $phoneNumber->setPreferredDomesticCarrierCode($carrierCode); } } @@ -1492,8 +1500,7 @@ class PhoneNumberUtil "The string supplied is too long to be a phone number." ); } - $this->setItalianLeadingZerosForPhoneNumber($normalizedNationalNumber, $phoneNumber); - + static::setItalianLeadingZerosForPhoneNumber($normalizedNationalNumber, $phoneNumber); /* * We have to store the National Number as a string instead of a "long" as Google do @@ -1548,7 +1555,7 @@ class PhoneNumberUtil } else { // Extract a possible number from the string passed in (this strips leading characters that // could not be the start of a phone number.) - $nationalNumber .= $this->extractPossibleNumber($numberToParse); + $nationalNumber .= static::extractPossibleNumber($numberToParse); } // Delete the isdn-subaddress and everything after it if it is present. Note extension won't @@ -1580,6 +1587,10 @@ class PhoneNumberUtil */ public static function extractPossibleNumber($number) { + if (static::$VALID_START_CHAR_PATTERN === null) { + static::initValidStartCharPattern(); + } + $matches = array(); $match = preg_match('/' . static::$VALID_START_CHAR_PATTERN . '/ui', $number, $matches, PREG_OFFSET_CAPTURE); if ($match > 0) { @@ -1713,14 +1724,12 @@ class PhoneNumberUtil $defaultRegionMetadata, $carriercode ); - $possibleNumberPattern = $generalDesc->getPossibleNumberPattern(); // If the number was not valid before but is valid now, or if it was too long before, we // consider the number with the country calling code stripped to be a better result and // keep that instead. - if ((preg_match('/^(' . $validNumberPattern . ')$/x', $fullNumber) == 0 && - preg_match('/^(' . $validNumberPattern . ')$/x', $potentialNationalNumber) > 0) || - $this->testNumberLengthAgainstPattern($possibleNumberPattern, (string)$fullNumber) - == ValidationResult::TOO_LONG + if ((preg_match('/^(' . $validNumberPattern . ')$/x', $fullNumber) == 0 + && preg_match('/^(' . $validNumberPattern . ')$/x', $potentialNationalNumber) > 0) + || $this->testNumberLength((string)$fullNumber, $generalDesc) === ValidationResult::TOO_LONG ) { $nationalNumber .= $potentialNationalNumber; if ($keepRawInput) { @@ -1759,12 +1768,12 @@ class PhoneNumberUtil if ($match > 0) { $number = mb_substr($number, $matches[0][1] + mb_strlen($matches[0][0])); // Can now normalize the rest of the number since we've consumed the "+" sign at the start. - $number = $this->normalize($number); + $number = static::normalize($number); return CountryCodeSource::FROM_NUMBER_WITH_PLUS_SIGN; } // Attempt to parse the first digits as an international prefix. $iddPattern = $possibleIddPrefix; - $number = $this->normalize($number); + $number = static::normalize($number); return $this->parsePrefixAsIdd($iddPattern, $number) ? CountryCodeSource::FROM_NUMBER_WITH_IDD : CountryCodeSource::FROM_DEFAULT_COUNTRY; @@ -1789,6 +1798,10 @@ class PhoneNumberUtil */ public static function normalize(&$number) { + if (static::$ALPHA_PHONE_MAPPINGS === null) { + static::initAlphaPhoneMappings(); + } + $m = new Matcher(static::VALID_ALPHA_PHONE_PATTERN, $number); if ($m->matches()) { return static::normalizeHelper($number, static::$ALPHA_PHONE_MAPPINGS, true); @@ -1850,7 +1863,7 @@ class PhoneNumberUtil // cannot begin with 0. $digitMatcher = new Matcher(static::$CAPTURING_DIGIT_PATTERN, substr($number, $matchEnd)); if ($digitMatcher->find()) { - $normalizedGroup = $this->normalizeDigitsOnly($digitMatcher->group(1)); + $normalizedGroup = static::normalizeDigitsOnly($digitMatcher->group(1)); if ($normalizedGroup == "0") { return false; } @@ -1956,25 +1969,43 @@ class PhoneNumberUtil } /** - * Helper method to check a number against a particular pattern and determine whether it matches, - * or is too short or too long. Currently, if a number pattern suggests that numbers of length 7 - * and 10 are possible, and a number in between these possible lengths is entered, such as of - * length 8, this will return TOO_LONG. - * @param string $numberPattern + * Helper method to check a number against possible lengths for this number, and determine whether + * it matches, or is too short or too long. Currently, if a number pattern suggests that numbers + * of length 7 and 10 are possible, and a number in between these possible lengths is entered, + * such as of length 8, this will return TOO_LONG. * @param string $number + * @param PhoneNumberDesc $phoneNumberDesc * @return int ValidationResult */ - protected function testNumberLengthAgainstPattern($numberPattern, $number) + protected function testNumberLength($number, PhoneNumberDesc $phoneNumberDesc) { - $numberMatcher = new Matcher($numberPattern, $number); - if ($numberMatcher->matches()) { + $possibleLengths = $phoneNumberDesc->getPossibleLength(); + $localLengths = $phoneNumberDesc->getPossibleLengthLocalOnly(); + + $actualLength = mb_strlen($number); + + if (in_array($actualLength, $localLengths)) { return ValidationResult::IS_POSSIBLE; } - if ($numberMatcher->lookingAt()) { - return ValidationResult::TOO_LONG; - } else { + + // There should always be "possibleLengths" set for every element. This will be a build-time + // check once ShortNumberMetadata.xml is migrated to contain this information as well. + $minimumLength = reset($possibleLengths); + if ($minimumLength == $actualLength) { + return ValidationResult::IS_POSSIBLE; + } elseif ($minimumLength > $actualLength) { return ValidationResult::TOO_SHORT; + } elseif (isset($possibleLengths[count($possibleLengths) - 1]) && $possibleLengths[count($possibleLengths) - 1] < $actualLength) { + return ValidationResult::TOO_LONG; } + + // Note that actually the number is not too long if possibleLengths does not contain the length: + // we know it is less than the highest possible number length, and higher than the lowest + // possible number length. However, we don't currently have an enum to express this, so we + // return TOO_LONG in the short-term. + // We skip the first element; we've already checked it. + array_shift($possibleLengths); + return in_array($actualLength, $possibleLengths) ? ValidationResult::IS_POSSIBLE : ValidationResult::TOO_LONG; } /** @@ -2057,11 +2088,15 @@ class PhoneNumberUtil static::COLOMBIA_MOBILE_TO_FIXED_LINE_PREFIX ); } elseif ($regionCode == "BR" && $isFixedLineOrMobile) { - // Brazilian fixed line and mobile numbers need to be dialed with a carrier code when - // called within Brazil. Without that, most of the carriers won't connect the call. - // Because of that, we return an empty string here. - $formattedNumber = $numberNoExt->hasPreferredDomesticCarrierCode( - ) ? $this->formatNationalNumberWithCarrierCode($numberNoExt, "") : ""; + // Historically, we set this to an empty string when parsing with raw input if none was + // found in the input string. However, this doesn't result in a number we can dial. For this + // reason, we treat the empty string the same as if it isn't set at all. + $formattedNumber = mb_strlen($numberNoExt->getPreferredDomesticCarrierCode()) > 0 + ? $this->formatNationalNumberWithPreferredCarrierCode($numberNoExt, "") + // Brazilian fixed line and mobile numbers need to be dialed with a carrier code when + // called within Brazil. Without that, most of the carriers won't connect the call. + // Because of that, we return an empty string here. + : ""; } elseif ($isValidNumber && $regionCode == "HU") { // The national format for HU numbers doesn't contain the national prefix, because that is // how numbers are normally written down. However, the national prefix is obligatory when @@ -2076,11 +2111,9 @@ class PhoneNumberUtil // internationally, since that always works, except for numbers which might potentially be // short numbers, which are always dialled in national format. $regionMetadata = $this->getMetadataForRegion($regionCallingFrom); - if ($this->canBeInternationallyDialled($numberNoExt) && - !$this->isShorterThanPossibleNormalNumber( - $regionMetadata, - $this->getNationalSignificantNumber($numberNoExt) - ) + if ($this->canBeInternationallyDialled($numberNoExt) + && $this->testNumberLength($this->getNationalSignificantNumber($numberNoExt), + $regionMetadata->getGeneralDesc()) !== ValidationResult::TOO_SHORT ) { $formattedNumber = $this->format($numberNoExt, PhoneNumberFormat::INTERNATIONAL); } else { @@ -2116,7 +2149,7 @@ class PhoneNumberUtil $this->format($numberNoExt, PhoneNumberFormat::INTERNATIONAL) : $this->format($numberNoExt, PhoneNumberFormat::E164); } - return $withFormatting ? $formattedNumber : $this->normalizeDiallableCharsOnly($formattedNumber); + return $withFormatting ? $formattedNumber : static::normalizeDiallableCharsOnly($formattedNumber); } /** @@ -2181,7 +2214,10 @@ class PhoneNumberUtil { return $this->formatNationalNumberWithCarrierCode( $number, - $number->hasPreferredDomesticCarrierCode() + // Historically, we set this to an empty string when parsing with raw input if none was + // found in the input string. However, this doesn't result in a number we can dial. For this + // reason, we treat the empty string the same as if it isn't set at all. + mb_strlen($number->getPreferredDomesticCarrierCode()) > 0 ? $number->getPreferredDomesticCarrierCode() : $fallbackCarrierCode ); @@ -2217,6 +2253,10 @@ class PhoneNumberUtil */ public static function normalizeDiallableCharsOnly($number) { + if (count(static::$DIALLABLE_CHAR_MAPPINGS) === 0) { + static::initDiallableCharMappings(); + } + return static::normalizeHelper($number, static::$DIALLABLE_CHAR_MAPPINGS, true /* remove non matches */); } @@ -2520,7 +2560,7 @@ class PhoneNumberUtil break; } $candidateNationalPrefixRule = substr($candidateNationalPrefixRule, 0, $indexOfFirstGroup); - $candidateNationalPrefixRule = $this->normalizeDigitsOnly($candidateNationalPrefixRule); + $candidateNationalPrefixRule = static::normalizeDigitsOnly($candidateNationalPrefixRule); if (mb_strlen($candidateNationalPrefixRule) == 0) { // National prefix not used when formatting this number. $formattedNumber = $nationalFormat; @@ -2539,8 +2579,8 @@ class PhoneNumberUtil // If no digit is inserted/removed/modified as a result of our formatting, we return the // formatted phone number; otherwise we return the raw input the user entered. if ($formattedNumber !== null && mb_strlen($rawInput) > 0) { - $normalizedFormattedNumber = $this->normalizeDiallableCharsOnly($formattedNumber); - $normalizedRawInput = $this->normalizeDiallableCharsOnly($rawInput); + $normalizedFormattedNumber = static::normalizeDiallableCharsOnly($formattedNumber); + $normalizedRawInput = static::normalizeDiallableCharsOnly($rawInput); if ($normalizedFormattedNumber != $normalizedRawInput) { $formattedNumber = $rawInput; } @@ -2638,7 +2678,7 @@ class PhoneNumberUtil */ protected function rawInputContainsNationalPrefix($rawInput, $nationalPrefix, $regionCode) { - $normalizedNationalNumber = $this->normalizeDigitsOnly($rawInput); + $normalizedNationalNumber = static::normalizeDigitsOnly($rawInput); if (strpos($normalizedNationalNumber, $nationalPrefix) === 0) { try { // Some Japanese numbers (e.g. 00777123) might be mistaken to contain the national prefix @@ -3237,8 +3277,7 @@ class PhoneNumberUtil // Metadata cannot be null because the country calling code is valid. $metadata = $this->getMetadataForRegionOrCallingCode($countryCode, $regionCode); - $possibleNumberPattern = $metadata->getGeneralDesc()->getPossibleNumberPattern(); - return $this->testNumberLengthAgainstPattern($possibleNumberPattern, $nationalNumber); + return $this->testNumberLength($nationalNumber, $metadata->getGeneralDesc()); } /** diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumberUtil.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumberUtil.php index d5c7d09de..28090f0ca 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumberUtil.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumberUtil.php @@ -29,7 +29,7 @@ class ShortNumberUtil public function getSupportedRegions() { - return ShortNumberInfo::getInstance($this->phoneUtil)->getSupportedRegions(); + return ShortNumberInfo::getInstance()->getSupportedRegions(); } /** @@ -45,7 +45,7 @@ class ShortNumberUtil */ public function connectsToEmergencyNumber($number, $regionCode) { - return ShortNumberInfo::getInstance($this->phoneUtil)->connectsToEmergencyNumber($number, $regionCode); + return ShortNumberInfo::getInstance()->connectsToEmergencyNumber($number, $regionCode); } /** @@ -60,6 +60,6 @@ class ShortNumberUtil */ public function isEmergencyNumber($number, $regionCode) { - return ShortNumberInfo::getInstance($this->phoneUtil)->isEmergencyNumber($number, $regionCode); + return ShortNumberInfo::getInstance()->isEmergencyNumber($number, $regionCode); } } diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumbersRegionCodeSet.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumbersRegionCodeSet.php index 8d3705a37..2ed9c3574 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumbersRegionCodeSet.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/ShortNumbersRegionCodeSet.php @@ -1,7 +1,13 @@ array ( - 0 => 1242, - 1 => 1246, - 2 => 1264, - 3 => 1441, - 4 => 1473, - 5 => 1649, - 6 => 1671, - 7 => 1684, - 8 => 1758, - 9 => 1767, - 10 => 1784, - 11 => 1787, - 12 => 1809, - 13 => 1868, - 14 => 1869, - 15 => 1876, - 16 => 1939, - 17 => 20, - 18 => 211, - 19 => 212, - 20 => 213, - 21 => 216, - 22 => 220, - 23 => 221, - 24 => 222, - 25 => 223, - 26 => 224, - 27 => 225, - 28 => 226, - 29 => 227, - 30 => 228, - 31 => 229, - 32 => 230, - 33 => 231, - 34 => 232, - 35 => 233, - 36 => 234, - 37 => 235, - 38 => 236, - 39 => 237, - 40 => 238, - 41 => 239, - 42 => 240, - 43 => 241, - 44 => 242, - 45 => 243, - 46 => 244, - 47 => 245, - 48 => 248, - 49 => 249, - 50 => 250, - 51 => 251, - 52 => 252, - 53 => 253, - 54 => 254, - 55 => 255, - 56 => 256, - 57 => 257, - 58 => 258, - 59 => 260, - 60 => 261, - 61 => 263, - 62 => 265, - 63 => 267, - 64 => 268, - 65 => 27, - 66 => 297, - 67 => 298, - 68 => 299, - 69 => 30, - 70 => 31, - 71 => 32, - 72 => 33, - 73 => 350, - 74 => 351, - 75 => 352, - 76 => 353, - 77 => 354, - 78 => 355, - 79 => 356, - 80 => 357, - 81 => 358, - 82 => 359, - 83 => 36, - 84 => 370, - 85 => 372, - 86 => 373, - 87 => 374, - 88 => 375, - 89 => 376, - 90 => 380, - 91 => 381, - 92 => 382, - 93 => 385, - 94 => 386, - 95 => 387, - 96 => 389, - 97 => 39, - 98 => 40, - 99 => 41, - 100 => 420, - 101 => 421, - 102 => 43, - 103 => 45, - 104 => 47, - 105 => 48, - 106 => 49, - 107 => 501, - 108 => 505, - 109 => 506, - 110 => 507, - 111 => 509, - 112 => 51, - 113 => 53, - 114 => 54, - 115 => 55, - 116 => 56, - 117 => 57, - 118 => 58, - 119 => 591, - 120 => 592, - 121 => 595, - 122 => 597, - 123 => 598, - 124 => 599, - 125 => 60, - 126 => 61, - 127 => 62, - 128 => 63, - 129 => 64, - 130 => 65, - 131 => 66, - 132 => 670, - 133 => 673, - 134 => 675, - 135 => 676, - 136 => 677, - 137 => 678, - 138 => 679, - 139 => 685, - 140 => 686, - 141 => 689, - 142 => 7, - 143 => 84, - 144 => 852, - 145 => 853, - 146 => 855, - 147 => 856, - 148 => 86130, - 149 => 86131, - 150 => 86132, - 151 => 86133, - 152 => 86134, - 153 => 86135, - 154 => 86136, - 155 => 86137, - 156 => 86138, - 157 => 86139, - 158 => 86145, - 159 => 86147, - 160 => 86150, - 161 => 86151, - 162 => 86152, - 163 => 86153, - 164 => 86155, - 165 => 86156, - 166 => 86157, - 167 => 86158, - 168 => 86159, - 169 => 86170, - 170 => 86172, - 171 => 86173, - 172 => 86176, - 173 => 86177, - 174 => 86178, - 175 => 86180, - 176 => 86181, - 177 => 86182, - 178 => 86183, - 179 => 86184, - 180 => 86185, - 181 => 86186, - 182 => 86187, - 183 => 86188, - 184 => 86189, - 185 => 880, - 186 => 90, - 187 => 91, - 188 => 92, - 189 => 93, - 190 => 94, - 191 => 95, - 192 => 960, - 193 => 961, - 194 => 962, - 195 => 963, - 196 => 964, - 197 => 965, - 198 => 966, - 199 => 967, - 200 => 968, - 201 => 970, - 202 => 971, - 203 => 972, - 204 => 973, - 205 => 974, - 206 => 975, - 207 => 976, - 208 => 977, - 209 => 98, - 210 => 992, - 211 => 993, - 212 => 994, - 213 => 995, - 214 => 996, - 215 => 998, + 0 => 1, + 1 => 20, + 2 => 211, + 3 => 212, + 4 => 213, + 5 => 216, + 6 => 220, + 7 => 221, + 8 => 222, + 9 => 223, + 10 => 224, + 11 => 225, + 12 => 226, + 13 => 227, + 14 => 228, + 15 => 229, + 16 => 230, + 17 => 231, + 18 => 232, + 19 => 233, + 20 => 234, + 21 => 235, + 22 => 236, + 23 => 237, + 24 => 238, + 25 => 239, + 26 => 240, + 27 => 241, + 28 => 242, + 29 => 243, + 30 => 244, + 31 => 245, + 32 => 248, + 33 => 249, + 34 => 250, + 35 => 251, + 36 => 252, + 37 => 253, + 38 => 254, + 39 => 255, + 40 => 256, + 41 => 257, + 42 => 258, + 43 => 260, + 44 => 261, + 45 => 263, + 46 => 265, + 47 => 267, + 48 => 268, + 49 => 27, + 50 => 297, + 51 => 298, + 52 => 299, + 53 => 30, + 54 => 31, + 55 => 32, + 56 => 33, + 57 => 350, + 58 => 351, + 59 => 352, + 60 => 353, + 61 => 354, + 62 => 355, + 63 => 356, + 64 => 357, + 65 => 358, + 66 => 359, + 67 => 36, + 68 => 370, + 69 => 372, + 70 => 373, + 71 => 374, + 72 => 375, + 73 => 376, + 74 => 380, + 75 => 381, + 76 => 382, + 77 => 385, + 78 => 386, + 79 => 387, + 80 => 389, + 81 => 39, + 82 => 40, + 83 => 41, + 84 => 420, + 85 => 421, + 86 => 43, + 87 => 45, + 88 => 47, + 89 => 48, + 90 => 49, + 91 => 501, + 92 => 505, + 93 => 506, + 94 => 507, + 95 => 509, + 96 => 51, + 97 => 53, + 98 => 54, + 99 => 55, + 100 => 56, + 101 => 57, + 102 => 58, + 103 => 591, + 104 => 592, + 105 => 593, + 106 => 595, + 107 => 597, + 108 => 598, + 109 => 599, + 110 => 60, + 111 => 61, + 112 => 62, + 113 => 63, + 114 => 64, + 115 => 65, + 116 => 66, + 117 => 670, + 118 => 673, + 119 => 675, + 120 => 676, + 121 => 677, + 122 => 678, + 123 => 679, + 124 => 685, + 125 => 686, + 126 => 689, + 127 => 7, + 128 => 84, + 129 => 852, + 130 => 853, + 131 => 855, + 132 => 856, + 133 => 86, + 134 => 880, + 135 => 90, + 136 => 91, + 137 => 92, + 138 => 93, + 139 => 94, + 140 => 95, + 141 => 960, + 142 => 961, + 143 => 962, + 144 => 963, + 145 => 964, + 146 => 965, + 147 => 966, + 148 => 967, + 149 => 968, + 150 => 970, + 151 => 971, + 152 => 972, + 153 => 973, + 154 => 974, + 155 => 975, + 156 => 976, + 157 => 977, + 158 => 98, + 159 => 992, + 160 => 993, + 161 => 994, + 162 => 995, + 163 => 996, + 164 => 998, ), 'fa' => array ( @@ -245,83 +194,11 @@ return array ( 'zh' => array ( 0 => 852, - 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 => 86172, - 24 => 86173, - 25 => 86176, - 26 => 86177, - 27 => 86178, - 28 => 86180, - 29 => 86181, - 30 => 86182, - 31 => 86183, - 32 => 86184, - 33 => 86185, - 34 => 86186, - 35 => 86187, - 36 => 86188, - 37 => 86189, + 1 => 86, ), 'zh_Hant' => array ( 0 => 852, - 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 => 86172, - 24 => 86173, - 25 => 86176, - 26 => 86177, - 27 => 86178, - 28 => 86180, - 29 => 86181, - 30 => 86182, - 31 => 86183, - 32 => 86184, - 33 => 86185, - 34 => 86186, - 35 => 86187, - 36 => 86188, - 37 => 86189, + 1 => 86, ), ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/be/375.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/be/375.php index 606d4ddd9..888cd38bc 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/be/375.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/be/375.php @@ -6,15 +6,10 @@ return array ( 37525 => 'БеСТ', - 375291 => 'Velcom', 375292 => 'МТС', - 375293 => 'Velcom', 375294 => 'БелСел', 375295 => 'МТС', - 375296 => 'Velcom', 375297 => 'МТС', 375298 => 'МТС', - 375299 => 'Velcom', 37533 => 'МТС', - 37544 => 'Velcom', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1.php new file mode 100644 index 000000000..34bef7e9f --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1.php @@ -0,0 +1,481 @@ + 'BaTelCo', + 124245 => 'BaTelCo', + 124255 => 'BaTelCo', + 124623 => 'LIME', + 124624 => 'LIME', + 1246250 => 'LIME', + 1246251 => 'LIME', + 1246252 => 'LIME', + 1246253 => 'LIME', + 1246254 => 'LIME', + 1246255 => 'LIME', + 1246256 => 'Digicel', + 1246257 => 'Digicel', + 1246258 => 'Digicel', + 1246259 => 'Digicel', + 124626 => 'Digicel', + 124628 => 'LIME', + 124645 => 'Sunbeach Communications', + 124682 => 'Digicel', + 124683 => 'Digicel', + 124684 => 'Digicel', + 124685 => 'Digicel', + 1246883 => 'Digicel', + 1264536 => 'Weblinks Limited', + 1264537 => 'Weblinks Limited', + 1264538 => 'Weblinks Limited', + 1264539 => 'Weblinks Limited', + 1264581 => 'Digicel', + 1264582 => 'Digicel', + 1264583 => 'Digicel', + 1264584 => 'Digicel', + 1264729 => 'Cable & Wireless', + 1264772 => 'Cable & Wireless', + 14413 => 'Mobility', + 1441500 => 'Digicel Bermuda', + 1441539 => 'Digicel Bermuda', + 1441590 => 'Digicel Bermuda', + 1441599 => 'Digicel Bermuda', + 14417 => 'Cellular One', + 1473402 => 'Affordable Island Communications', + 147341 => 'Digicel Grenada', + 1473420 => 'Digicel Grenada', + 1473520 => 'Affordable Island Communications', + 1473521 => 'Affordable Island Communications', + 147353 => 'AWS Grenada', + 1473901 => 'Affordable Island Communications', + 164923 => 'C&W', + 164924 => 'C&W', + 164933 => 'DIGICEL', + 164934 => 'DIGICEL', + 164943 => 'Islandcom', + 1671747 => 'PTI PACIFICA', + 1671838 => 'i CAN_GSM', + 1671848 => 'i CAN_GSM', + 1671858 => 'i CAN_GSM', + 1671868 => 'Choice Phone', + 1671878 => 'Choice Phone', + 1671888 => 'Choice Phone', + 1671898 => 'Choice Phone', + 1684252 => 'Blue Sky', + 1684254 => 'Blue Sky', + 1684256 => 'Blue Sky', + 1684258 => 'Blue Sky', + 1684272 => 'Blue Sky', + 1684731 => 'ASTCA', + 1684733 => 'ASTCA', + 1684770 => 'ASTCA', + 175828 => 'Cable & Wireless', + 1758384 => 'Cable & Wireless', + 1758460 => 'Cable & Wireless', + 1758461 => 'Cable & Wireless', + 1758484 => 'Cable & Wireless', + 1758485 => 'Cable & Wireless', + 1758486 => 'Cable & Wireless', + 1758487 => 'Cable & Wireless', + 1758488 => 'Cable & Wireless', + 1758489 => 'Cable & Wireless', + 175851 => 'AT&T', + 175852 => 'AT&T', + 1758584 => 'Cable & Wireless', + 17587 => 'Digicel', + 1767315 => 'Digicel', + 1767316 => 'Digicel', + 1767317 => 'Digicel', + 1767225 => 'Cable & Wireless', + 1767235 => 'Cable & Wireless', + 1767245 => 'Cable & Wireless', + 1767265 => 'Cable & Wireless', + 1767275 => 'Cable & Wireless', + 1767276 => 'Cable & Wireless', + 1767277 => 'Cable & Wireless', + 1767285 => 'Cable & Wireless', + 1767295 => 'Cable & Wireless', + 1767612 => 'Digicel', + 1767613 => 'Digicel', + 1767614 => 'Digicel', + 1767615 => 'Digicel', + 1767616 => 'Digicel', + 1767617 => 'Digicel', + 1784430 => 'AT&T', + 1784431 => 'AT&T', + 1784432 => 'AT&T', + 1784433 => 'Digicel', + 1784434 => 'Digicel', + 1784454 => 'Cable & Wireless', + 1784455 => 'Cable & Wireless', + 1784489 => 'Cable & Wireless', + 1784490 => 'Cable & Wireless', + 1784491 => 'Cable & Wireless', + 1784492 => 'Cable & Wireless', + 1784493 => 'Cable & Wireless', + 1784494 => 'Cable & Wireless', + 1784495 => 'Cable & Wireless', + 1784526 => 'Digicel', + 1784527 => 'Digicel', + 1784528 => 'Digicel', + 1784529 => 'Digicel', + 1784530 => 'Digicel', + 1784531 => 'Digicel', + 1784532 => 'Digicel', + 1784533 => 'Digicel', + 1784534 => 'Digicel', + 1787203 => 'Claro', + 1787210 => 'SunCom Wireless Puerto Rico', + 1787212 => 'Claro', + 1787213 => 'Claro', + 1787214 => 'Claro', + 1787215 => 'Claro', + 1787216 => 'Claro', + 1787217 => 'Claro', + 1787218 => 'Claro', + 1787219 => 'Claro', + 1787220 => 'CENTENNIAL', + 1787221 => 'CENTENNIAL', + 1787222 => 'CENTENNIAL', + 1787223 => 'CENTENNIAL', + 1787224 => 'CENTENNIAL', + 1787225 => 'SunCom Wireless Puerto Rico', + 1787226 => 'SunCom Wireless Puerto Rico', + 1787227 => 'CENTENNIAL', + 1787229 => 'CENTENNIAL', + 1787253 => 'Claro', + 1787254 => 'Claro', + 1787255 => 'Claro', + 1787256 => 'Claro', + 1787257 => 'Claro', + 1787258 => 'Claro', + 1787259 => 'Claro', + 1787260 => 'Claro', + 1787291 => 'CENTENNIAL', + 1787299 => 'SunCom Wireless Puerto Rico', + 1787300 => 'CENTENNIAL', + 1787310 => 'SunCom Wireless Puerto Rico', + 1787312 => 'Claro', + 1787313 => 'Claro', + 1787314 => 'Claro', + 1787315 => 'Claro', + 1787316 => 'Claro', + 1787317 => 'Claro', + 1787318 => 'Claro', + 17873191 => 'Claro', + 17873192 => 'Claro', + 17873193 => 'Claro', + 17873194 => 'Claro', + 17873195 => 'Claro', + 17873196 => 'Claro', + 17873197 => 'Claro', + 17873198 => 'Claro', + 17873199 => 'Claro', + 1787341 => 'SunCom Wireless Puerto Rico', + 1787344 => 'SunCom Wireless Puerto Rico', + 1787346 => 'SunCom Wireless Puerto Rico', + 1787355 => 'CENTENNIAL', + 1787357 => 'CENTENNIAL', + 1787359 => 'SunCom Wireless Puerto Rico', + 1787367 => 'SunCom Wireless Puerto Rico', + 1787368 => 'SunCom Wireless Puerto Rico', + 1787369 => 'CENTENNIAL', + 1787371 => 'Claro', + 1787372 => 'Claro', + 1787374 => 'Claro', + 1787375 => 'Claro', + 1787376 => 'Claro', + 1787380 => 'Claro', + 1787381 => 'Claro', + 1787382 => 'Claro', + 1787383 => 'Claro', + 1787384 => 'Claro', + 1787385 => 'Claro', + 1787389 => 'Claro', + 1787390 => 'Claro', + 1787391 => 'Claro', + 1787392 => 'Claro', + 1787400 => 'CENTENNIAL', + 1787410 => 'SunCom Wireless Puerto Rico', + 1787434 => 'CENTENNIAL', + 1787447 => 'CENTENNIAL', + 1787448 => 'CENTENNIAL', + 1787449 => 'CENTENNIAL', + 1787450 => 'Claro', + 1787453 => 'Claro', + 1787454 => 'SunCom Wireless Puerto Rico', + 1787458 => 'SunCom Wireless Puerto Rico', + 1787459 => 'SunCom Wireless Puerto Rico', + 1787460 => 'SunCom Wireless Puerto Rico', + 1787462 => 'SunCom Wireless Puerto Rico', + 1787463 => 'SunCom Wireless Puerto Rico', + 1787465 => 'CENTENNIAL', + 1787466 => 'SunCom Wireless Puerto Rico', + 1787471 => 'CENTENNIAL', + 1787473 => 'CENTENNIAL', + 1787474 => 'CENTENNIAL', + 1787478 => 'SunCom Wireless Puerto Rico', + 1787479 => 'CENTENNIAL', + 1787481 => 'Claro', + 1787484 => 'Claro', + 1787485 => 'Claro', + 1787486 => 'Claro', + 1787487 => 'Claro', + 1787513 => 'SunCom Wireless Puerto Rico', + 1787514 => 'Claro', + 1787515 => 'Claro', + 1787516 => 'Claro', + 1787517 => 'Claro', + 1787518 => 'Claro', + 1787519 => 'Claro', + 1787520 => 'CENTENNIAL', + 1787521 => 'CENTENNIAL', + 1787522 => 'CENTENNIAL', + 1787523 => 'CENTENNIAL', + 1787528 => 'SunCom Wireless Puerto Rico', + 1787534 => 'CENTENNIAL', + 1787535 => 'CENTENNIAL', + 1787537 => 'CENTENNIAL', + 1787544 => 'CENTENNIAL', + 1787545 => 'CENTENNIAL', + 1787546 => 'SunCom Wireless Puerto Rico', + 1787551 => 'CENTENNIAL', + 1787553 => 'Claro', + 1787561 => 'CENTENNIAL', + 1787563 => 'CENTENNIAL', + 1787568 => 'SunCom Wireless Puerto Rico', + 1787569 => 'CENTENNIAL', + 1787579 => 'Claro', + 1787580 => 'CENTENNIAL', + 1787585 => 'CENTENNIAL', + 1787588 => 'CENTENNIAL', + 1787589 => 'CENTENNIAL', + 1787595 => 'SunCom Wireless Puerto Rico', + 1787597 => 'SunCom Wireless Puerto Rico', + 1787598 => 'SunCom Wireless Puerto Rico', + 1787601 => 'SunCom Wireless Puerto Rico', + 1787602 => 'CENTENNIAL', + 1787604 => 'SunCom Wireless Puerto Rico', + 1787605 => 'SunCom Wireless Puerto Rico', + 1787607 => 'CENTENNIAL', + 1787608 => 'CENTENNIAL', + 1787609 => 'CENTENNIAL', + 1787612 => 'Claro', + 1787613 => 'Claro', + 1787614 => 'Claro', + 1787615 => 'Claro', + 1787616 => 'Claro', + 1787617 => 'Claro', + 1787619 => 'SunCom Wireless Puerto Rico', + 1787620 => 'CENTENNIAL', + 1787621 => 'CENTENNIAL', + 1787622 => 'CENTENNIAL', + 1787623 => 'CENTENNIAL', + 1787624 => 'CENTENNIAL', + 1787625 => 'CENTENNIAL', + 1787626 => 'CENTENNIAL', + 1787628 => 'CENTENNIAL', + 1787629 => 'SunCom Wireless Puerto Rico', + 178764 => 'CENTENNIAL', + 178765 => 'CENTENNIAL', + 1787662 => 'SunCom Wireless Puerto Rico', + 1787666 => 'SunCom Wireless Puerto Rico', + 1787673 => 'SunCom Wireless Puerto Rico', + 1787675 => 'CENTENNIAL', + 1787678 => 'SunCom Wireless Puerto Rico', + 1787686 => 'CENTENNIAL', + 1787687 => 'CENTENNIAL', + 1787689 => 'CENTENNIAL', + 1787690 => 'CENTENNIAL', + 1787692 => 'CENTENNIAL', + 1787693 => 'CENTENNIAL', + 1787695 => 'CENTENNIAL', + 1787717 => 'CENTENNIAL', + 1787719 => 'CENTENNIAL', + 1787901 => 'SunCom Wireless Puerto Rico', + 1787903 => 'CENTENNIAL', + 1787904 => 'SunCom Wireless Puerto Rico', + 1787908 => 'CENTENNIAL', + 1787912 => 'CENTENNIAL', + 1787915 => 'CENTENNIAL', + 1787916 => 'CENTENNIAL', + 1787917 => 'CENTENNIAL', + 1787922 => 'SunCom Wireless Puerto Rico', + 1787923 => 'SunCom Wireless Puerto Rico', + 1787924 => 'CENTENNIAL', + 1787926 => 'CENTENNIAL', + 1787927 => 'CENTENNIAL', + 1787928 => 'CENTENNIAL', + 1787933 => 'CENTENNIAL', + 1787935 => 'CENTENNIAL', + 1787937 => 'CENTENNIAL', + 1787940 => 'CENTENNIAL', + 1787947 => 'CENTENNIAL', + 1787949 => 'SunCom Wireless Puerto Rico', + 1787952 => 'CENTENNIAL', + 1787953 => 'CENTENNIAL', + 1787954 => 'CENTENNIAL', + 1787957 => 'CENTENNIAL', + 1787961 => 'CENTENNIAL', + 1787968 => 'CENTENNIAL', + 1787969 => 'CENTENNIAL', + 1787971 => 'CENTENNIAL', + 1787975 => 'CENTENNIAL', + 1787978 => 'CENTENNIAL', + 1787992 => 'CENTENNIAL', + 1787993 => 'CENTENNIAL', + 1787998 => 'CENTENNIAL', + 1787999 => 'CENTENNIAL', + 180920 => 'Tricom', + 180922 => 'Claro', + 180923 => 'Claro', + 180924 => 'Claro', + 180925 => 'Claro', + 180926 => 'Claro', + 180927 => 'Claro', + 180928 => 'Claro', + 180929 => 'Tricom', + 180930 => 'Viva', + 180931 => 'Tricom', + 180932 => 'Tricom', + 180933 => 'Claro', + 180934 => 'Tricom', + 180935 => 'Claro', + 180936 => 'Claro', + 180937 => 'Claro', + 180938 => 'Claro', + 180939 => 'Claro', + 180941 => 'Viva', + 180942 => 'Claro', + 180943 => 'Viva', + 180944 => 'Viva', + 180945 => 'Claro', + 180947 => 'Tricom', + 180948 => 'Claro', + 180949 => 'Claro', + 180951 => 'Claro', + 180954 => 'Claro', + 180960 => 'Claro', + 180962 => 'Tricom', + 180963 => 'Tricom', + 180964 => 'Tricom', + 180965 => 'Tricom', + 180967 => 'Claro', + 180969 => 'Claro', + 180970 => 'Claro', + 180971 => 'Claro', + 180972 => 'Claro', + 180974 => 'Claro', + 180975 => 'Claro', + 180976 => 'Claro', + 180977 => 'Viva', + 180978 => 'Claro', + 180979 => 'Claro', + 180980 => 'Orange', + 180981 => 'Viva', + 180982 => 'Claro', + 180983 => 'Claro', + 180984 => 'Orange', + 180985 => 'Orange', + 180986 => 'Orange', + 180987 => 'Tricom', + 180988 => 'Orange', + 180989 => 'Orange', + 180991 => 'Orange', + 180992 => 'Tricom', + 180993 => 'Tricom', + 180994 => 'Tricom', + 180995 => 'Claro', + 180997 => 'Orange', + 180998 => 'Orange', + 180999 => 'Tricom', + 186827 => 'Digicel', + 186828 => 'Digicel', + 186829 => 'Digicel', + 18683 => 'Digicel', + 18684 => 'bmobile', + 18686 => 'bmobile', + 18687 => 'bmobile', + 186955 => 'CariGlobe St. Kitts', + 186956 => 'The Cable St. Kitts', + 186966 => 'Cable & Wireless', + 186976 => 'Digicel', + 187626 => 'Digicel', + 1876503 => 'Digicel', + 1876504 => 'Digicel', + 1876505 => 'Digicel', + 1876506 => 'Digicel', + 1876507 => 'Digicel', + 1876508 => 'Digicel', + 1876509 => 'Digicel', + 1876520 => 'Digicel', + 1876521 => 'Digicel', + 1876522 => 'Digicel', + 1876524 => 'Digicel', + 1876526 => 'Digicel', + 1876527 => 'Digicel', + 1876528 => 'Digicel', + 1876529 => 'Digicel', + 1939201 => 'CENTENNIAL', + 1939212 => 'CENTENNIAL', + 1939214 => 'CENTENNIAL', + 1939240 => 'SunCom Wireless Puerto Rico', + 19392410 => 'Claro', + 19392411 => 'Claro', + 19392412 => 'Claro', + 19392413 => 'Claro', + 19392414 => 'Claro', + 19392415 => 'Claro', + 19392416 => 'Claro', + 193924199 => 'Claro', + 1939242 => 'Claro', + 19392433 => 'Claro', + 19392434 => 'Claro', + 19392435 => 'Claro', + 19392436 => 'Claro', + 19392437 => 'Claro', + 19392438 => 'Claro', + 19392439 => 'Claro', + 1939244 => 'Claro', + 1939245 => 'Claro', + 1939246 => 'Claro', + 1939247 => 'Claro', + 1939248 => 'Claro', + 1939249 => 'Claro', + 1939250 => 'Claro', + 1939251 => 'Claro', + 1939252 => 'CENTENNIAL', + 1939253 => 'Claro', + 1939254 => 'Claro', + 1939255 => 'Claro', + 1939256 => 'Claro', + 1939257 => 'Claro', + 1939258 => 'Claro', + 1939259 => 'Claro', + 1939307 => 'CENTENNIAL', + 1939325 => 'SunCom Wireless Puerto Rico', + 1939329 => 'CENTENNIAL', + 1939334 => 'Claro', + 1939339 => 'SunCom Wireless Puerto Rico', + 1939394 => 'CENTENNIAL', + 1939440 => 'CENTENNIAL', + 1939628 => 'CENTENNIAL', + 1939630 => 'CENTENNIAL', + 1939639 => 'CENTENNIAL', + 1939640 => 'CENTENNIAL', + 1939642 => 'CENTENNIAL', + 1939644 => 'CENTENNIAL', + 1939645 => 'CENTENNIAL', + 1939697 => 'CENTENNIAL', + 1939717 => 'CENTENNIAL', + 1939731 => 'CENTENNIAL', + 1939777 => 'Claro', + 1939865 => 'SunCom Wireless Puerto Rico', + 1939891 => 'SunCom Wireless Puerto Rico', + 1939910 => 'CENTENNIAL', + 1939940 => 'CENTENNIAL', + 1939969 => 'CENTENNIAL', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1242.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1242.php deleted file mode 100644 index c9b48b325..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1242.php +++ /dev/null @@ -1,11 +0,0 @@ - 'BaTelCo', - 124245 => 'BaTelCo', - 124255 => 'BaTelCo', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1246.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1246.php deleted file mode 100644 index 116b64789..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1246.php +++ /dev/null @@ -1,28 +0,0 @@ - 'LIME', - 124624 => 'LIME', - 1246250 => 'LIME', - 1246251 => 'LIME', - 1246252 => 'LIME', - 1246253 => 'LIME', - 1246254 => 'LIME', - 1246255 => 'LIME', - 1246256 => 'Digicel', - 1246257 => 'Digicel', - 1246258 => 'Digicel', - 1246259 => 'Digicel', - 124626 => 'Digicel', - 124628 => 'LIME', - 124645 => 'Sunbeach Communications', - 124682 => 'Digicel', - 124683 => 'Digicel', - 124684 => 'Digicel', - 124685 => 'Digicel', - 1246883 => 'Digicel', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1264.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1264.php deleted file mode 100644 index fea0e8544..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1264.php +++ /dev/null @@ -1,18 +0,0 @@ - 'Weblinks Limited', - 1264537 => 'Weblinks Limited', - 1264538 => 'Weblinks Limited', - 1264539 => 'Weblinks Limited', - 1264581 => 'Digicel', - 1264582 => 'Digicel', - 1264583 => 'Digicel', - 1264584 => 'Digicel', - 1264729 => 'Cable & Wireless', - 1264772 => 'Cable & Wireless', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1441.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1441.php deleted file mode 100644 index 89aa6284e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1441.php +++ /dev/null @@ -1,14 +0,0 @@ - 'Mobility', - 1441500 => 'Digicel Bermuda', - 1441539 => 'Digicel Bermuda', - 1441590 => 'Digicel Bermuda', - 1441599 => 'Digicel Bermuda', - 14417 => 'Cellular One', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1473.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1473.php deleted file mode 100644 index 4603641f3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1473.php +++ /dev/null @@ -1,15 +0,0 @@ - 'Affordable Island Communications', - 147341 => 'Digicel Grenada', - 1473420 => 'Digicel Grenada', - 1473520 => 'Affordable Island Communications', - 1473521 => 'Affordable Island Communications', - 147353 => 'AWS Grenada', - 1473901 => 'Affordable Island Communications', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1649.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1649.php deleted file mode 100644 index cafc2f5ed..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1649.php +++ /dev/null @@ -1,13 +0,0 @@ - 'C&W', - 164924 => 'C&W', - 164933 => 'DIGICEL', - 164934 => 'DIGICEL', - 164943 => 'Islandcom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1671.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1671.php deleted file mode 100644 index 2b94f3103..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1671.php +++ /dev/null @@ -1,16 +0,0 @@ - 'PTI PACIFICA', - 1671838 => 'i CAN_GSM', - 1671848 => 'i CAN_GSM', - 1671858 => 'i CAN_GSM', - 1671868 => 'Choice Phone', - 1671878 => 'Choice Phone', - 1671888 => 'Choice Phone', - 1671898 => 'Choice Phone', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1684.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1684.php deleted file mode 100644 index 07be4e13f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1684.php +++ /dev/null @@ -1,16 +0,0 @@ - 'Blue Sky', - 1684254 => 'Blue Sky', - 1684256 => 'Blue Sky', - 1684258 => 'Blue Sky', - 1684272 => 'Blue Sky', - 1684731 => 'ASTCA', - 1684733 => 'ASTCA', - 1684770 => 'ASTCA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1758.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1758.php deleted file mode 100644 index 71c833bdb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1758.php +++ /dev/null @@ -1,22 +0,0 @@ - 'Cable & Wireless', - 1758384 => 'Cable & Wireless', - 1758460 => 'Cable & Wireless', - 1758461 => 'Cable & Wireless', - 1758484 => 'Cable & Wireless', - 1758485 => 'Cable & Wireless', - 1758486 => 'Cable & Wireless', - 1758487 => 'Cable & Wireless', - 1758488 => 'Cable & Wireless', - 1758489 => 'Cable & Wireless', - 175851 => 'AT&T', - 175852 => 'AT&T', - 1758584 => 'Cable & Wireless', - 17587 => 'Digicel', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1767.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1767.php deleted file mode 100644 index 9f9d32e38..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1767.php +++ /dev/null @@ -1,26 +0,0 @@ - 'Digicel', - 1767316 => 'Digicel', - 1767317 => 'Digicel', - 1767225 => 'Cable & Wireless', - 1767235 => 'Cable & Wireless', - 1767245 => 'Cable & Wireless', - 1767265 => 'Cable & Wireless', - 1767275 => 'Cable & Wireless', - 1767276 => 'Cable & Wireless', - 1767277 => 'Cable & Wireless', - 1767285 => 'Cable & Wireless', - 1767295 => 'Cable & Wireless', - 1767612 => 'Digicel', - 1767613 => 'Digicel', - 1767614 => 'Digicel', - 1767615 => 'Digicel', - 1767616 => 'Digicel', - 1767617 => 'Digicel', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1784.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1784.php deleted file mode 100644 index 207c6a79e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1784.php +++ /dev/null @@ -1,31 +0,0 @@ - 'AT&T', - 1784431 => 'AT&T', - 1784432 => 'AT&T', - 1784433 => 'Digicel', - 1784434 => 'Digicel', - 1784454 => 'Cable & Wireless', - 1784455 => 'Cable & Wireless', - 1784489 => 'Cable & Wireless', - 1784490 => 'Cable & Wireless', - 1784491 => 'Cable & Wireless', - 1784492 => 'Cable & Wireless', - 1784493 => 'Cable & Wireless', - 1784494 => 'Cable & Wireless', - 1784495 => 'Cable & Wireless', - 1784526 => 'Digicel', - 1784527 => 'Digicel', - 1784528 => 'Digicel', - 1784529 => 'Digicel', - 1784530 => 'Digicel', - 1784531 => 'Digicel', - 1784532 => 'Digicel', - 1784533 => 'Digicel', - 1784534 => 'Digicel', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1787.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1787.php deleted file mode 100644 index 6f35ec6bb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1787.php +++ /dev/null @@ -1,210 +0,0 @@ - 'Claro', - 1787210 => 'SunCom Wireless Puerto Rico', - 1787212 => 'Claro', - 1787213 => 'Claro', - 1787214 => 'Claro', - 1787215 => 'Claro', - 1787216 => 'Claro', - 1787217 => 'Claro', - 1787218 => 'Claro', - 1787219 => 'Claro', - 1787220 => 'CENTENNIAL', - 1787221 => 'CENTENNIAL', - 1787222 => 'CENTENNIAL', - 1787223 => 'CENTENNIAL', - 1787224 => 'CENTENNIAL', - 1787225 => 'SunCom Wireless Puerto Rico', - 1787226 => 'SunCom Wireless Puerto Rico', - 1787227 => 'CENTENNIAL', - 1787229 => 'CENTENNIAL', - 1787253 => 'Claro', - 1787254 => 'Claro', - 1787255 => 'Claro', - 1787256 => 'Claro', - 1787257 => 'Claro', - 1787258 => 'Claro', - 1787259 => 'Claro', - 1787260 => 'Claro', - 1787291 => 'CENTENNIAL', - 1787299 => 'SunCom Wireless Puerto Rico', - 1787300 => 'CENTENNIAL', - 1787310 => 'SunCom Wireless Puerto Rico', - 1787312 => 'Claro', - 1787313 => 'Claro', - 1787314 => 'Claro', - 1787315 => 'Claro', - 1787316 => 'Claro', - 1787317 => 'Claro', - 1787318 => 'Claro', - 17873191 => 'Claro', - 17873192 => 'Claro', - 17873193 => 'Claro', - 17873194 => 'Claro', - 17873195 => 'Claro', - 17873196 => 'Claro', - 17873197 => 'Claro', - 17873198 => 'Claro', - 17873199 => 'Claro', - 1787341 => 'SunCom Wireless Puerto Rico', - 1787344 => 'SunCom Wireless Puerto Rico', - 1787346 => 'SunCom Wireless Puerto Rico', - 1787355 => 'CENTENNIAL', - 1787357 => 'CENTENNIAL', - 1787359 => 'SunCom Wireless Puerto Rico', - 1787367 => 'SunCom Wireless Puerto Rico', - 1787368 => 'SunCom Wireless Puerto Rico', - 1787369 => 'CENTENNIAL', - 1787371 => 'Claro', - 1787372 => 'Claro', - 1787374 => 'Claro', - 1787375 => 'Claro', - 1787376 => 'Claro', - 1787380 => 'Claro', - 1787381 => 'Claro', - 1787382 => 'Claro', - 1787383 => 'Claro', - 1787384 => 'Claro', - 1787385 => 'Claro', - 1787389 => 'Claro', - 1787390 => 'Claro', - 1787391 => 'Claro', - 1787392 => 'Claro', - 1787400 => 'CENTENNIAL', - 1787410 => 'SunCom Wireless Puerto Rico', - 1787434 => 'CENTENNIAL', - 1787447 => 'CENTENNIAL', - 1787448 => 'CENTENNIAL', - 1787449 => 'CENTENNIAL', - 1787450 => 'Claro', - 1787453 => 'Claro', - 1787454 => 'SunCom Wireless Puerto Rico', - 1787458 => 'SunCom Wireless Puerto Rico', - 1787459 => 'SunCom Wireless Puerto Rico', - 1787460 => 'SunCom Wireless Puerto Rico', - 1787462 => 'SunCom Wireless Puerto Rico', - 1787463 => 'SunCom Wireless Puerto Rico', - 1787465 => 'CENTENNIAL', - 1787466 => 'SunCom Wireless Puerto Rico', - 1787471 => 'CENTENNIAL', - 1787473 => 'CENTENNIAL', - 1787474 => 'CENTENNIAL', - 1787478 => 'SunCom Wireless Puerto Rico', - 1787479 => 'CENTENNIAL', - 1787481 => 'Claro', - 1787484 => 'Claro', - 1787485 => 'Claro', - 1787486 => 'Claro', - 1787487 => 'Claro', - 1787513 => 'SunCom Wireless Puerto Rico', - 1787514 => 'Claro', - 1787515 => 'Claro', - 1787516 => 'Claro', - 1787517 => 'Claro', - 1787518 => 'Claro', - 1787519 => 'Claro', - 1787520 => 'CENTENNIAL', - 1787521 => 'CENTENNIAL', - 1787522 => 'CENTENNIAL', - 1787523 => 'CENTENNIAL', - 1787528 => 'SunCom Wireless Puerto Rico', - 1787534 => 'CENTENNIAL', - 1787535 => 'CENTENNIAL', - 1787537 => 'CENTENNIAL', - 1787544 => 'CENTENNIAL', - 1787545 => 'CENTENNIAL', - 1787546 => 'SunCom Wireless Puerto Rico', - 1787551 => 'CENTENNIAL', - 1787553 => 'Claro', - 1787561 => 'CENTENNIAL', - 1787563 => 'CENTENNIAL', - 1787568 => 'SunCom Wireless Puerto Rico', - 1787569 => 'CENTENNIAL', - 1787579 => 'Claro', - 1787580 => 'CENTENNIAL', - 1787585 => 'CENTENNIAL', - 1787588 => 'CENTENNIAL', - 1787589 => 'CENTENNIAL', - 1787595 => 'SunCom Wireless Puerto Rico', - 1787597 => 'SunCom Wireless Puerto Rico', - 1787598 => 'SunCom Wireless Puerto Rico', - 1787601 => 'SunCom Wireless Puerto Rico', - 1787602 => 'CENTENNIAL', - 1787604 => 'SunCom Wireless Puerto Rico', - 1787605 => 'SunCom Wireless Puerto Rico', - 1787607 => 'CENTENNIAL', - 1787608 => 'CENTENNIAL', - 1787609 => 'CENTENNIAL', - 1787612 => 'Claro', - 1787613 => 'Claro', - 1787614 => 'Claro', - 1787615 => 'Claro', - 1787616 => 'Claro', - 1787617 => 'Claro', - 1787619 => 'SunCom Wireless Puerto Rico', - 1787620 => 'CENTENNIAL', - 1787621 => 'CENTENNIAL', - 1787622 => 'CENTENNIAL', - 1787623 => 'CENTENNIAL', - 1787624 => 'CENTENNIAL', - 1787625 => 'CENTENNIAL', - 1787626 => 'CENTENNIAL', - 1787628 => 'CENTENNIAL', - 1787629 => 'SunCom Wireless Puerto Rico', - 178764 => 'CENTENNIAL', - 178765 => 'CENTENNIAL', - 1787662 => 'SunCom Wireless Puerto Rico', - 1787666 => 'SunCom Wireless Puerto Rico', - 1787673 => 'SunCom Wireless Puerto Rico', - 1787675 => 'CENTENNIAL', - 1787678 => 'SunCom Wireless Puerto Rico', - 1787686 => 'CENTENNIAL', - 1787687 => 'CENTENNIAL', - 1787689 => 'CENTENNIAL', - 1787690 => 'CENTENNIAL', - 1787692 => 'CENTENNIAL', - 1787693 => 'CENTENNIAL', - 1787695 => 'CENTENNIAL', - 1787717 => 'CENTENNIAL', - 1787719 => 'CENTENNIAL', - 1787901 => 'SunCom Wireless Puerto Rico', - 1787903 => 'CENTENNIAL', - 1787904 => 'SunCom Wireless Puerto Rico', - 1787908 => 'CENTENNIAL', - 1787912 => 'CENTENNIAL', - 1787915 => 'CENTENNIAL', - 1787916 => 'CENTENNIAL', - 1787917 => 'CENTENNIAL', - 1787922 => 'SunCom Wireless Puerto Rico', - 1787923 => 'SunCom Wireless Puerto Rico', - 1787924 => 'CENTENNIAL', - 1787926 => 'CENTENNIAL', - 1787927 => 'CENTENNIAL', - 1787928 => 'CENTENNIAL', - 1787933 => 'CENTENNIAL', - 1787935 => 'CENTENNIAL', - 1787937 => 'CENTENNIAL', - 1787940 => 'CENTENNIAL', - 1787947 => 'CENTENNIAL', - 1787949 => 'SunCom Wireless Puerto Rico', - 1787952 => 'CENTENNIAL', - 1787953 => 'CENTENNIAL', - 1787954 => 'CENTENNIAL', - 1787957 => 'CENTENNIAL', - 1787961 => 'CENTENNIAL', - 1787968 => 'CENTENNIAL', - 1787969 => 'CENTENNIAL', - 1787971 => 'CENTENNIAL', - 1787975 => 'CENTENNIAL', - 1787978 => 'CENTENNIAL', - 1787992 => 'CENTENNIAL', - 1787993 => 'CENTENNIAL', - 1787998 => 'CENTENNIAL', - 1787999 => 'CENTENNIAL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1809.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1809.php deleted file mode 100644 index 91f8aace5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1809.php +++ /dev/null @@ -1,71 +0,0 @@ - 'Tricom', - 180922 => 'Claro', - 180923 => 'Claro', - 180924 => 'Claro', - 180925 => 'Claro', - 180926 => 'Claro', - 180927 => 'Claro', - 180928 => 'Claro', - 180929 => 'Tricom', - 180930 => 'Viva', - 180931 => 'Tricom', - 180932 => 'Tricom', - 180933 => 'Claro', - 180934 => 'Tricom', - 180935 => 'Claro', - 180936 => 'Claro', - 180937 => 'Claro', - 180938 => 'Claro', - 180939 => 'Claro', - 180941 => 'Viva', - 180942 => 'Claro', - 180943 => 'Viva', - 180944 => 'Viva', - 180945 => 'Claro', - 180947 => 'Tricom', - 180948 => 'Claro', - 180949 => 'Claro', - 180951 => 'Claro', - 180954 => 'Claro', - 180960 => 'Claro', - 180962 => 'Tricom', - 180963 => 'Tricom', - 180964 => 'Tricom', - 180965 => 'Tricom', - 180967 => 'Claro', - 180969 => 'Claro', - 180970 => 'Claro', - 180971 => 'Claro', - 180972 => 'Claro', - 180974 => 'Claro', - 180975 => 'Claro', - 180976 => 'Claro', - 180977 => 'Viva', - 180978 => 'Claro', - 180979 => 'Claro', - 180980 => 'Orange', - 180981 => 'Viva', - 180982 => 'Claro', - 180983 => 'Claro', - 180984 => 'Orange', - 180985 => 'Orange', - 180986 => 'Orange', - 180987 => 'Tricom', - 180988 => 'Orange', - 180989 => 'Orange', - 180991 => 'Orange', - 180992 => 'Tricom', - 180993 => 'Tricom', - 180994 => 'Tricom', - 180995 => 'Claro', - 180997 => 'Orange', - 180998 => 'Orange', - 180999 => 'Tricom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1868.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1868.php deleted file mode 100644 index 3cfb0c2ab..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1868.php +++ /dev/null @@ -1,15 +0,0 @@ - 'Digicel', - 186828 => 'Digicel', - 186829 => 'Digicel', - 18683 => 'Digicel', - 18684 => 'bmobile', - 18686 => 'bmobile', - 18687 => 'bmobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1869.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1869.php deleted file mode 100644 index c17264e47..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1869.php +++ /dev/null @@ -1,12 +0,0 @@ - 'CariGlobe St. Kitts', - 186956 => 'The Cable St. Kitts', - 186966 => 'Cable & Wireless', - 186976 => 'Digicel', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1876.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1876.php deleted file mode 100644 index 41e92191b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1876.php +++ /dev/null @@ -1,16 +0,0 @@ - 'Digicel', - 1876503 => 'Digicel', - 1876504 => 'Digicel', - 1876505 => 'Digicel', - 1876506 => 'Digicel', - 1876507 => 'Digicel', - 1876508 => 'Digicel', - 1876509 => 'Digicel', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1939.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1939.php deleted file mode 100644 index 980538634..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/1939.php +++ /dev/null @@ -1,67 +0,0 @@ - 'CENTENNIAL', - 1939212 => 'CENTENNIAL', - 1939214 => 'CENTENNIAL', - 1939240 => 'SunCom Wireless Puerto Rico', - 19392410 => 'Claro', - 19392411 => 'Claro', - 19392412 => 'Claro', - 19392413 => 'Claro', - 19392414 => 'Claro', - 19392415 => 'Claro', - 19392416 => 'Claro', - 193924199 => 'Claro', - 1939242 => 'Claro', - 19392433 => 'Claro', - 19392434 => 'Claro', - 19392435 => 'Claro', - 19392436 => 'Claro', - 19392437 => 'Claro', - 19392438 => 'Claro', - 19392439 => 'Claro', - 1939244 => 'Claro', - 1939245 => 'Claro', - 1939246 => 'Claro', - 1939247 => 'Claro', - 1939248 => 'Claro', - 1939249 => 'Claro', - 1939250 => 'Claro', - 1939251 => 'Claro', - 1939252 => 'CENTENNIAL', - 1939253 => 'Claro', - 1939254 => 'Claro', - 1939255 => 'Claro', - 1939256 => 'Claro', - 1939257 => 'Claro', - 1939258 => 'Claro', - 1939259 => 'Claro', - 1939307 => 'CENTENNIAL', - 1939325 => 'SunCom Wireless Puerto Rico', - 1939329 => 'CENTENNIAL', - 1939334 => 'Claro', - 1939339 => 'SunCom Wireless Puerto Rico', - 1939394 => 'CENTENNIAL', - 1939440 => 'CENTENNIAL', - 1939628 => 'CENTENNIAL', - 1939630 => 'CENTENNIAL', - 1939639 => 'CENTENNIAL', - 1939640 => 'CENTENNIAL', - 1939642 => 'CENTENNIAL', - 1939644 => 'CENTENNIAL', - 1939645 => 'CENTENNIAL', - 1939697 => 'CENTENNIAL', - 1939717 => 'CENTENNIAL', - 1939731 => 'CENTENNIAL', - 1939777 => 'Claro', - 1939865 => 'SunCom Wireless Puerto Rico', - 1939891 => 'SunCom Wireless Puerto Rico', - 1939910 => 'CENTENNIAL', - 1939940 => 'CENTENNIAL', - 1939969 => 'CENTENNIAL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/226.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/226.php index bc05112fc..31e819e0c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/226.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/226.php @@ -5,6 +5,12 @@ */ return array ( + 226550 => 'Airtel', + 226551 => 'Airtel', + 226552 => 'Airtel', + 226553 => 'Airtel', + 226554 => 'Airtel', + 226555 => 'Airtel', 22660 => 'Telmob', 22661 => 'Telmob', 22662 => 'Telmob', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/230.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/230.php index 5f01722ff..575558410 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/230.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/230.php @@ -43,6 +43,7 @@ return array ( 2305876 => 'Cellplus', 2305877 => 'Cellplus', 2305878 => 'Cellplus', + 230589 => 'MTML', 230590 => 'Cellplus', 230591 => 'Cellplus', 230592 => 'Cellplus', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/231.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/231.php index 377afaaea..fce11fa45 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/231.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/231.php @@ -7,10 +7,7 @@ return array ( 23120 => 'LIBTELCO', 231330 => 'West Africa Telecom', - 23133202 => 'Atlantic Reality', - 2313325 => 'WASSCOM', 231555 => 'Novafone', 23177 => 'Cellcom', 23188 => 'Lonestar Cell', - 231994 => 'Atlantic Wireless', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/234.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/234.php index 4efc0ae2a..2b932b715 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/234.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/234.php @@ -241,6 +241,7 @@ return array ( 234902 => 'Airtel', 234903 => 'MTN', 234905 => 'Glo', + 234907 => 'Airtel', 234908 => 'Etisalat', 234909 => 'Etisalat', 234980 => 'Starcomms', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/254.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/254.php index e407b8e5d..637daa2f2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/254.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/254.php @@ -9,6 +9,9 @@ return array ( 25471 => 'Safaricom', 25472 => 'Safaricom', 25473 => 'Airtel', + 254740 => 'Safaricom', + 254741 => 'Safaricom', + 254742 => 'Safaricom', 254750 => 'Airtel', 254751 => 'Airtel', 254752 => 'Airtel', @@ -42,12 +45,5 @@ return array ( 254787 => 'Airtel', 254788 => 'Airtel', 254789 => 'Airtel', - 254790 => 'Safaricom', - 254791 => 'Safaricom', - 254792 => 'Safaricom', - 254793 => 'Safaricom', - 254794 => 'Safaricom', - 254795 => 'Safaricom', - 254796 => 'Safaricom', - 254797 => 'Safaricom', + 25479 => 'Safaricom', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/256.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/256.php index 50afde7f7..9ad146385 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/256.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/256.php @@ -5,16 +5,15 @@ */ return array ( - 2562030 => 'Afrimax', - 25670 => 'Warid', + 25670 => 'Airtel', 25671 => 'UTL', 256720 => 'Smile', 256723 => 'Afrimax', + 2567260 => 'Tangerine', 256730 => 'K2', 25674 => 'Sure Telecom', 25675 => 'Airtel', - 25676 => 'i-Tel', 25677 => 'MTN', 25678 => 'MTN', - 25679 => 'Orange', + 25679 => 'Africell', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/373.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/373.php index 579c5c5a8..35b96a3bf 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/373.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/373.php @@ -17,17 +17,24 @@ return array ( 373674 => 'Moldtelecom', 373675 => 'Moldtelecom', 373676 => 'Moldtelecom', - 3736770 => 'Moldtelecom', - 3736771 => 'Moldtelecom', - 3736772 => 'Moldtelecom', - 3736773 => 'Moldtelecom', - 3736774 => 'Moldtelecom', + 373677 => 'Moldtelecom', 37368 => 'Orange', 37369 => 'Orange', 373760 => 'Moldcell', + 373767 => 'Moldcell', 373774 => 'IDC', 373775 => 'IDC', 373777 => 'IDC', 373778 => 'IDC', 373779 => 'IDC', + 373780 => 'Moldcell', + 373781 => 'Moldcell', + 373782 => 'Moldcell', + 373783 => 'Moldcell', + 373784 => 'Moldcell', + 373785 => 'Moldcell', + 373786 => 'Moldcell', + 373787 => 'Moldcell', + 373788 => 'Moldcell', + 37379 => 'Moldcell', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/49.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/49.php index b1edbb553..5b6d55f4b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/49.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/49.php @@ -5,25 +5,27 @@ */ return array ( - 491502 => 'Interactive digital media', - 491505 => 'NAKA AG', - 491508 => 'Easy World', + 4915020 => 'Interactive digital media', + 4915050 => 'NAKA AG', + 4915080 => 'Easy World', 49151 => 'T-Mobile', 491520 => 'Vodafone', 491521 => 'Vodafone/Lycamobile', 491522 => 'Vodafone', 491523 => 'Vodafone', 491525 => 'Vodafone', + 491526 => 'Vodafone', 491529 => 'Vodafone/Truphone', - 491555 => 'Tismi BV', - 491567 => 'Argon Networks', + 4915555 => 'Tismi BV', + 4915630 => 'Multiconnect', + 4915678 => 'Argon Networks', 491570 => 'Eplus/Telogic', 491573 => 'Eplus', 491575 => 'Eplus', 491577 => 'Eplus', 491578 => 'Eplus', 491579 => 'Eplus/Sipgate', - 491588 => 'TelcoVillage', + 4915888 => 'TelcoVillage', 491590 => 'O2', 49160 => 'T-Mobile', 49162 => 'Vodafone', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/56.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/56.php index 1a5938ab5..173ab94e3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/56.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/56.php @@ -15,13 +15,13 @@ return array ( 569435 => 'Simple', 569436 => 'Telefónica Uno Uno Cuatro', 569437 => 'Telefónica Uno Uno Cuatro', - 569438 => 'Tribe', - 569439 => 'Tribe', + 569438 => 'Virgin Mobile', + 569439 => 'Virgin Mobile', 56950 => 'Claro', - 569510 => 'Tribe', - 569511 => 'Tribe', - 569512 => 'Tribe', - 569513 => 'Tribe', + 569510 => 'Virgin Mobile', + 569511 => 'Virgin Mobile', + 569512 => 'Virgin Mobile', + 569513 => 'Virgin Mobile', 569514 => 'Entel', 569515 => 'Entel', 569516 => 'Entel', @@ -32,8 +32,8 @@ return array ( 569521 => 'Entel', 569522 => 'Entel', 569523 => 'Entel', - 569524 => 'Tribe', - 569525 => 'Tribe', + 569524 => 'Virgin Mobile', + 569525 => 'Virgin Mobile', 569526 => 'Falabella Movil', 569527 => 'Falabella Movil', 569528 => 'Falabella Movil', @@ -41,9 +41,9 @@ return array ( 56953 => 'Movistar', 56954 => 'Claro', 569550 => 'OPS Movil', - 569551 => 'Nextel', - 569552 => 'Nextel', - 569553 => 'Nextel', + 569551 => 'WOM', + 569552 => 'WOM', + 569553 => 'WOM', 569554 => 'Netline', 5695550 => 'Netline', 5695551 => 'Netline', @@ -82,11 +82,11 @@ return array ( 569638 => 'VTR Móvil', 569639 => 'Movistar', 569640 => 'Movistar', - 569641 => 'Nextel', - 569642 => 'Nextel', - 569643 => 'Nextel', - 569644 => 'Nextel', - 569645 => 'Nextel', + 569641 => 'WOM', + 569642 => 'WOM', + 569643 => 'WOM', + 569644 => 'WOM', + 569645 => 'WOM', 569646 => 'Movistar', 569647 => 'Movistar', 569648 => 'Movistar', @@ -165,7 +165,7 @@ return array ( 569693 => 'Quantax', 569694 => 'NetUno', 569695 => 'Blue Two', - 569696 => 'Tribe', + 569696 => 'Virgin Mobile', 569697 => 'VTR Móvil', 569699 => 'Telecomunicaciones Dotcom', 569710 => 'Entel', @@ -199,7 +199,7 @@ return array ( 569747 => 'Movistar', 569748 => 'Movistar', 569749 => 'Movistar', - 569750 => 'Nextel', + 569750 => 'WOM', 569751 => 'Entel', 569752 => 'Entel', 569753 => 'Entel', @@ -255,11 +255,11 @@ return array ( 5698102 => 'Viva', 5698103 => 'Viva', 5698104 => 'Viva', - 5698105 => 'Nextel', - 5698106 => 'Nextel', - 5698107 => 'Nextel', - 5698108 => 'Nextel', - 5698109 => 'Nextel', + 5698105 => 'WOM', + 5698106 => 'WOM', + 5698107 => 'WOM', + 5698108 => 'WOM', + 5698109 => 'WOM', 569811 => 'Entel', 569812 => 'Movistar', 569813 => 'Entel', @@ -314,8 +314,8 @@ return array ( 5699025 => 'Movistar', 5699026 => 'Mobilink', 5699027 => 'Mobilink', - 5699028 => 'Nextel', - 5699029 => 'Nextel', + 5699028 => 'WOM', + 5699029 => 'WOM', 569903 => 'Movistar', 5699040 => 'Movistar', 5699041 => 'Movistar', @@ -325,8 +325,8 @@ return array ( 5699045 => 'Movistar', 5699046 => 'Movistar', 5699047 => 'Movistar', - 5699048 => 'Nextel', - 5699049 => 'Nextel', + 5699048 => 'WOM', + 5699049 => 'WOM', 569905 => 'Claro', 569906 => 'Claro', 569907 => 'Entel', diff --git a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/en/1650.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/593.php similarity index 51% rename from vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/en/1650.php rename to vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/593.php index 7f79ca418..617423902 100644 --- a/vendor/giggsey/libphonenumber-for-php/Tests/libphonenumber/Tests/carrier/data/en/1650.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/593.php @@ -5,6 +5,11 @@ */ return array ( - 1650212 => 'US carrier', - 1650213 => 'US carrier2', + 593960 => 'CNT', + 593961 => 'CNT', + 5939620 => 'CNT', + 5939621 => 'CNT', + 5939622 => 'CNT', + 5939623 => 'CNT', + 5939624 => 'CNT', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/66.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/66.php index 763da2966..981b85652 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/66.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/66.php @@ -7,6 +7,7 @@ return array ( 6661 => 'AIS', 6664 => 'Penguin SIM', + 6665 => 'AIS', 66800 => 'AIS', 66801 => 'AIS', 66802 => 'AIS', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86.php new file mode 100644 index 000000000..3273bfae0 --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86.php @@ -0,0 +1,55 @@ + 'China Unicom', + 86131 => 'China Unicom', + 86132 => 'China Unicom', + 86133 => 'China Telecom', + 861340 => 'China Mobile', + 861341 => 'China Mobile', + 861342 => 'China Mobile', + 861343 => 'China Mobile', + 861344 => 'China Mobile', + 861345 => 'China Mobile', + 861346 => 'China Mobile', + 861347 => 'China Mobile', + 861348 => 'China Mobile', + 86135 => 'China Mobile', + 86136 => 'China Mobile', + 86137 => 'China Mobile', + 86138 => 'China Mobile', + 86139 => 'China Mobile', + 86145 => 'China Unicom', + 86147 => 'China Mobile', + 86150 => 'China Mobile', + 86151 => 'China Mobile', + 86152 => 'China Mobile', + 86153 => 'China Telecom', + 86155 => 'China Unicom', + 86156 => 'China Unicom', + 86157 => 'China Mobile', + 86158 => 'China Mobile', + 86159 => 'China Mobile', + 861703 => 'China Mobile', + 861705 => 'China Mobile', + 861706 => 'China Mobile', + 86172 => 'China Mobile', + 86173 => 'China Telecom', + 86176 => 'China Unicom', + 86177 => 'China Telecom', + 86178 => 'China Mobile', + 86180 => 'China Telecom', + 86181 => 'China Telecom', + 86182 => 'China Mobile', + 86183 => 'China Mobile', + 86184 => 'China Mobile', + 86185 => 'China Unicom', + 86186 => 'China Unicom', + 86187 => 'China Mobile', + 86188 => 'China Mobile', + 86189 => 'China Telecom', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86130.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86130.php deleted file mode 100644 index 748dfa989..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86130.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Unicom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86131.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86131.php deleted file mode 100644 index 9869464ac..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86131.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Unicom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86132.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86132.php deleted file mode 100644 index c421f32d6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86132.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Unicom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86133.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86133.php deleted file mode 100644 index 075bdb802..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86133.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Telecom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86134.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86134.php deleted file mode 100644 index ac1055d09..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86134.php +++ /dev/null @@ -1,17 +0,0 @@ - 'China Mobile', - 861341 => 'China Mobile', - 861342 => 'China Mobile', - 861343 => 'China Mobile', - 861344 => 'China Mobile', - 861345 => 'China Mobile', - 861346 => 'China Mobile', - 861347 => 'China Mobile', - 861348 => 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86135.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86135.php deleted file mode 100644 index bdabe8e67..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86135.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86136.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86136.php deleted file mode 100644 index 1354a2fd0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86136.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86137.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86137.php deleted file mode 100644 index 929202d13..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86137.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86138.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86138.php deleted file mode 100644 index e6f6e7a6b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86138.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86139.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86139.php deleted file mode 100644 index f8abca723..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86139.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86145.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86145.php deleted file mode 100644 index 17522a096..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86145.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Unicom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86147.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86147.php deleted file mode 100644 index d8312335c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86147.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86150.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86150.php deleted file mode 100644 index 430191f6f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86150.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86151.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86151.php deleted file mode 100644 index 41d050659..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86151.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86152.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86152.php deleted file mode 100644 index c9d41a4e6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86152.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86153.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86153.php deleted file mode 100644 index bfd098a53..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86153.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Telecom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86155.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86155.php deleted file mode 100644 index bf37a4f7d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86155.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Unicom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86156.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86156.php deleted file mode 100644 index 77197efdb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86156.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Unicom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86157.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86157.php deleted file mode 100644 index d26f0a286..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86157.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86158.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86158.php deleted file mode 100644 index 1488bde84..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86158.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86159.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86159.php deleted file mode 100644 index aa9bb05d9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86159.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86170.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86170.php deleted file mode 100644 index c66020cf0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86170.php +++ /dev/null @@ -1,11 +0,0 @@ - 'China Mobile', - 861705 => 'China Mobile', - 861706 => 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86172.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86172.php deleted file mode 100644 index 0b5ce4942..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86172.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86173.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86173.php deleted file mode 100644 index 8141f271b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86173.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Telecom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86176.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86176.php deleted file mode 100644 index dd555db29..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86176.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Unicom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86177.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86177.php deleted file mode 100644 index c13c03c5c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86177.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Telecom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86178.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86178.php deleted file mode 100644 index 5a7c9e3bd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86178.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86180.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86180.php deleted file mode 100644 index d11217759..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86180.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Telecom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86181.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86181.php deleted file mode 100644 index 321b60223..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86181.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Telecom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86182.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86182.php deleted file mode 100644 index 1319d9c74..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86182.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86183.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86183.php deleted file mode 100644 index e1ff16f7d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86183.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86184.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86184.php deleted file mode 100644 index 66f53a4a4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86184.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86185.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86185.php deleted file mode 100644 index a2e47ab06..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86185.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Unicom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86186.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86186.php deleted file mode 100644 index 59b7b09e2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86186.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Unicom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86187.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86187.php deleted file mode 100644 index 5e2233090..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86187.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86188.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86188.php deleted file mode 100644 index 40741a17c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86188.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Mobile', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86189.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86189.php deleted file mode 100644 index a38931009..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/86189.php +++ /dev/null @@ -1,9 +0,0 @@ - 'China Telecom', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/90.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/90.php index d589a18e6..06cbe8ae1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/90.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/90.php @@ -17,4 +17,5 @@ return array ( 90548 => 'Turkcell', 90549 => 'Turkcell', 9055 => 'Aycell', + 9056161 => 'Turkcell', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/91.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/91.php index 9f4f680d7..249da7f1f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/91.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/en/91.php @@ -380,6 +380,7 @@ return array ( 9173919 => 'Vodafone', 9173959 => 'Airtel', 917396 => 'Telewings', + 9173970 => 'Airtel', 917398 => 'Telewings', 917399 => 'Dishnet', 917401 => 'Aircel', @@ -392,6 +393,9 @@ return array ( 917408 => 'Vodafone', 917409 => 'Vodafone', 917411 => 'Tata Docomo', + 9174120 => 'Vodafone', + 9174128 => 'Vodafone', + 9174129 => 'Vodafone', 9174140 => 'Vodafone', 9174148 => 'Vodafone', 917415 => 'Tata Docomo', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/ru/375.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/ru/375.php index 26afc8654..6793bb2cb 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/ru/375.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/ru/375.php @@ -5,16 +5,10 @@ */ return array ( - 37525 => 'life:)', - 375291 => 'Velcom', 375292 => 'МТС', - 375293 => 'Velcom', 375294 => 'БелСел', 375295 => 'МТС', - 375296 => 'Velcom', 375297 => 'МТС', 375298 => 'МТС', - 375299 => 'Velcom', 37533 => 'МТС', - 37544 => 'Velcom', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/852.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/852.php index b1c5ce8f9..c108b36af 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/852.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/852.php @@ -10,22 +10,18 @@ return array ( 852512 => '中国移动', 852513 => '中国移动', 852514 => '香港移动通讯', - 8525149 => 'Truphone', + 8525149 => '', 852516 => '中国移动', 852517 => '中国移动', 852518 => '香港移动通讯', - 852519 => '3', - 852521 => '1O1O / One2Free', 8525230 => '香港移动通讯', 8525231 => '香港移动通讯', 8525232 => '香港移动通讯', 8525233 => '香港移动通讯', - 852524 => '1O1O / One2Free', 852526 => '中国移动', 852530 => '中国移动', 852531 => '中国移动', 852532 => '香港移动通讯', - 852533 => '3', 852534 => '中国移动', 852536 => '香港移动通讯', 852537 => '中国移动', @@ -34,15 +30,11 @@ return array ( 852540 => '新移动通讯', 852541 => '香港移动通讯', 852542 => '中国移动', - 852543 => '1O1O / One2Free', 852544 => '中国移动', - 852546 => '3', - 852547 => '1O1O / One2Free', 852548 => '中国移动', 852549 => '中国移动', 852550 => '数码通', 852551 => '中国移动', - 852552 => '1O1O / One2Free', 852553 => '中国移动', 8525540 => '新移动通讯', 8525541 => '新移动通讯', @@ -53,72 +45,38 @@ return array ( 8525546 => '新移动通讯', 8525547 => '新移动通讯', 8525548 => '新移动通讯', - 852556 => '3', 852557 => '中国移动', 852558 => '香港移动通讯', 852559 => '数码通', 852560 => '中国移动', 852561 => '中国移动', 852562 => '中国移动', - 852563 => '3', 852564 => '中国移动', - 852566 => '3', - 852568 => '1O1O / One2Free', - 852569 => '3', 8525900 => '香港移动通讯', 8525901 => '香港移动通讯', 8525902 => '香港移动通讯', 8525903 => '香港移动通讯', 8525904 => '香港移动通讯', 8525905 => '香港移动通讯', - 852591 => '1O1O / One2Free', - 852592 => '1O1O / One2Free', 852593 => '中国移动', 852594 => '香港移动通讯', - 852596 => '3', - 852597 => '3', 852598 => '中国移动', - 852599 => '1O1O / One2Free', 852601 => '数码通', - 852602 => '1O1O / One2Free', - 852603 => '1O1O / One2Free', - 852604 => '3', - 852605 => '1O1O / One2Free', 852606 => '中国移动', - 852607 => '3', - 852608 => '3', 852609 => '中国移动', - 852610 => '3', 852611 => '数码通', 852612 => '香港移动通讯', - 852613 => '1O1O / One2Free', - 852614 => '1O1O / One2Free', 852615 => '中国移动', - 852616 => '1O1O / One2Free', - 852617 => '1O1O / One2Free', 852618 => '香港移动通讯', - 852619 => '3', - 852620 => '3', 852621 => '中国移动', 852622 => '中国移动', 852623 => '中国移动', 852624 => '润迅通信', 852625 => '香港移动通讯', - 852627 => '3', - 852628 => '1O1O / One2Free', - 852629 => '1O1O / One2Free', 852630 => '香港移动通讯', - 852631 => '3', 852632 => '数码通', - 852633 => '3', - 852634 => '3', 852635 => '中国移动', - 852637 => '1O1O / One2Free', 852638 => '香港移动通讯', - 852639 => '1O1O / One2Free', - 852640 => '3', - 852641 => '1O1O / One2Free', - 852642 => '1O1O / One2Free', 852643 => '中国移动', 852644 => '香港移动通讯', 8526450 => '中信国际电讯', @@ -137,138 +95,77 @@ return array ( 8526458 => '中信国际电讯', 8526459 => '中信国际电讯', 852646 => '数码通', - 852647 => '3', 852648 => '中国移动', 852649 => '香港移动通讯', - 852650 => '3', 852651 => '中港通', 852652 => '中国联通', - 852653 => '1O1O / One2Free', - 852654 => '1O1O / One2Free', 852655 => '中国联通', 852656 => '中国联通', 852657 => '中国移动', 852658 => '中国移动', - 852659 => '1O1O / One2Free', 852660 => '香港移动通讯', 852661 => '中国联通', 852662 => '香港移动通讯', 852663 => '中国联通', 852664 => '中国移动', - 852665 => '1O1O / One2Free', 852667 => '中国移动', - 852668 => '3', 852669 => '香港移动通讯', 852670 => '中国移动', - 852671 => '1O1O / One2Free', 852672 => '中国联通', 852673 => '中国移动', 852674 => '中国移动', - 852675 => '1O1O / One2Free', 852676 => '中国移动', - 852677 => '1O1O / One2Free', - 852679 => '3', 852680 => '香港移动通讯', 852681 => '中国联通', - 852682 => '1O1O / One2Free', 852683 => '润迅通信', 852684 => '中国移动', 852685 => '中国移动', 852687 => '中国移动', 852688 => '中国联通', - 852689 => '1O1O / One2Free', - 852690 => '3', 852691 => '中国移动', 852692 => '香港移动通讯', 852693 => '中国移动', 852694 => '中国移动', 852695 => '中国移动', 852696 => '润迅通信', - 852697 => '1O1O / One2Free', 852698 => '润迅通信', 852699 => '中国移动', 852901 => '数码通', - 852902 => '1O1O / One2Free', - 852903 => '1O1O / One2Free', - 852904 => '3', 852905 => '润迅通信', 852906 => '中国移动', 852907 => '香港移动通讯', - 852908 => '1O1O / One2Free', - 852909 => '1O1O / One2Free', - 852910 => '1O1O / One2Free', - 852912 => '3', 852913 => '数码通', 852914 => '中国移动', - 852915 => '1O1O / One2Free', 852916 => '数码通', 852917 => '数码通', - 852918 => '1O1O / One2Free', - 852919 => '1O1O / One2Free', 852920 => '中国移动', - 852921 => '1O1O / One2Free', 852922 => '数码通', 852923 => '香港移动通讯', 852924 => '数码通', - 852925 => '1O1O / One2Free', - 852926 => '1O1O / One2Free', 852927 => '香港移动通讯', - 852928 => '3', - 852930 => '1O1O / One2Free', 852931 => '数码通', - 852932 => '3', - 852933 => '1O1O / One2Free', 852934 => '中国移动', - 852935 => '3', - 852936 => '3', - 852937 => '3', 852938 => '数码通', - 852940 => '1O1O / One2Free', - 852941 => '3', - 852942 => '3', 852943 => '数码通', 852944 => '数码通', 852945 => '数码通', - 852946 => '1O1O / One2Free', - 852947 => '3', - 852948 => '3', - 852949 => '3', - 852950 => '3', 852951 => '中国移动', 852952 => '香港移动通讯', - 852953 => '1O1O / One2Free', 852954 => '数码通', - 852955 => '1O1O / One2Free', 852956 => '中国联通', - 852957 => '3', 852958 => '中国移动', 852960 => '中国移动', - 852961 => '1O1O / One2Free', - 852962 => '1O1O / One2Free', - 852963 => '3', 852964 => '香港移动通讯', - 852965 => '1O1O / One2Free', 852966 => '数码通', - 852967 => '3', 852968 => '数码通', 852969 => '中港通', - 852970 => '3', 852971 => '中国移动', 852972 => '数码通', 852973 => '数码通', - 852974 => '3', - 852975 => '3', - 852976 => '1O1O / One2Free', 852977 => '香港移动通讯', - 852978 => '1O1O / One2Free', 852979 => '中国移动', 852980 => '香港移动通讯', - 852981 => '3', - 852982 => '3', - 852983 => '3', 852984 => '数码通', 852985 => '数码通', 852986 => '数码通', - 852987 => '1O1O / One2Free', - 852988 => '1O1O / One2Free', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86.php new file mode 100644 index 000000000..fecc5bbd6 --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86.php @@ -0,0 +1,55 @@ + '中国联通', + 86131 => '中国联通', + 86132 => '中国联通', + 86133 => '中国电信', + 861340 => '中国移动', + 861341 => '中国移动', + 861342 => '中国移动', + 861343 => '中国移动', + 861344 => '中国移动', + 861345 => '中国移动', + 861346 => '中国移动', + 861347 => '中国移动', + 861348 => '中国移动', + 86135 => '中国移动', + 86136 => '中国移动', + 86137 => '中国移动', + 86138 => '中国移动', + 86139 => '中国移动', + 86145 => '中国联通', + 86147 => '中国移动', + 86150 => '中国移动', + 86151 => '中国移动', + 86152 => '中国移动', + 86153 => '中国电信', + 86155 => '中国联通', + 86156 => '中国联通', + 86157 => '中国移动', + 86158 => '中国移动', + 86159 => '中国移动', + 861703 => '中国移动', + 861705 => '中国移动', + 861706 => '中国移动', + 86172 => '中国移动', + 86173 => '中国电信', + 86176 => '中国联通', + 86177 => '中国电信', + 86178 => '中国移动', + 86180 => '中国电信', + 86181 => '中国电信', + 86182 => '中国移动', + 86183 => '中国移动', + 86184 => '中国移动', + 86185 => '中国联通', + 86186 => '中国联通', + 86187 => '中国移动', + 86188 => '中国移动', + 86189 => '中国电信', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86130.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86130.php deleted file mode 100644 index dcbe940b5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86130.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国联通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86131.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86131.php deleted file mode 100644 index 368dbf879..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86131.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国联通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86132.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86132.php deleted file mode 100644 index 4a0e21e3e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86132.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国联通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86133.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86133.php deleted file mode 100644 index 30e5d3f79..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86133.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国电信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86134.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86134.php deleted file mode 100644 index 93499dd66..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86134.php +++ /dev/null @@ -1,17 +0,0 @@ - '中国移动', - 861341 => '中国移动', - 861342 => '中国移动', - 861343 => '中国移动', - 861344 => '中国移动', - 861345 => '中国移动', - 861346 => '中国移动', - 861347 => '中国移动', - 861348 => '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86135.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86135.php deleted file mode 100644 index 3c469fdc4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86135.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86136.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86136.php deleted file mode 100644 index ae474262b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86136.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86137.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86137.php deleted file mode 100644 index b4a86656b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86137.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86138.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86138.php deleted file mode 100644 index 0be0c81a5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86138.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86139.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86139.php deleted file mode 100644 index b4a3dab93..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86139.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86145.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86145.php deleted file mode 100644 index f988b4117..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86145.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国联通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86147.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86147.php deleted file mode 100644 index 473de38b9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86147.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86150.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86150.php deleted file mode 100644 index 6fce190c7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86150.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86151.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86151.php deleted file mode 100644 index 8ecab2fac..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86151.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86152.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86152.php deleted file mode 100644 index 995f5b79b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86152.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86153.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86153.php deleted file mode 100644 index 75befe9ce..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86153.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国电信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86155.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86155.php deleted file mode 100644 index 63af770fa..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86155.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国联通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86156.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86156.php deleted file mode 100644 index f7d9bb78b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86156.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国联通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86157.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86157.php deleted file mode 100644 index 4bcc7831d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86157.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86158.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86158.php deleted file mode 100644 index ff550b6b1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86158.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86159.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86159.php deleted file mode 100644 index f5d5b58b2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86159.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86170.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86170.php deleted file mode 100644 index 5571089ea..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86170.php +++ /dev/null @@ -1,11 +0,0 @@ - '中国移动', - 861705 => '中国移动', - 861706 => '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86172.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86172.php deleted file mode 100644 index fc5a0c74d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86172.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86173.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86173.php deleted file mode 100644 index ea9313d5b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86173.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国电信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86176.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86176.php deleted file mode 100644 index 9bfedc422..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86176.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国联通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86177.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86177.php deleted file mode 100644 index cec005456..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86177.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国电信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86178.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86178.php deleted file mode 100644 index caf444ade..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86178.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86180.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86180.php deleted file mode 100644 index 34c603dc3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86180.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国电信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86181.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86181.php deleted file mode 100644 index 3fca3039d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86181.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国电信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86182.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86182.php deleted file mode 100644 index 62cc5d2cd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86182.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86183.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86183.php deleted file mode 100644 index 3df8dd427..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86183.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86184.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86184.php deleted file mode 100644 index 3d87c68f0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86184.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86185.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86185.php deleted file mode 100644 index 3002c0bbc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86185.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国联通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86186.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86186.php deleted file mode 100644 index b5dd6f9e7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86186.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国联通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86187.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86187.php deleted file mode 100644 index 791bca9e7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86187.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86188.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86188.php deleted file mode 100644 index 87b9b39d9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86188.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国移动', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86189.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86189.php deleted file mode 100644 index bc13956fe..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh/86189.php +++ /dev/null @@ -1,9 +0,0 @@ - '中国电信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86.php new file mode 100644 index 000000000..ca3d191bb --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86.php @@ -0,0 +1,55 @@ + '中國聯通', + 86131 => '中國聯通', + 86132 => '中國聯通', + 86133 => '中國電信', + 861340 => '中國移動', + 861341 => '中國移動', + 861342 => '中國移動', + 861343 => '中國移動', + 861344 => '中國移動', + 861345 => '中國移動', + 861346 => '中國移動', + 861347 => '中國移動', + 861348 => '中國移動', + 86135 => '中國移動', + 86136 => '中國移動', + 86137 => '中國移動', + 86138 => '中國移動', + 86139 => '中國移動', + 86145 => '中國聯通', + 86147 => '中國移動', + 86150 => '中國移動', + 86151 => '中國移動', + 86152 => '中國移動', + 86153 => '中國電信', + 86155 => '中國聯通', + 86156 => '中國聯通', + 86157 => '中國移動', + 86158 => '中國移動', + 86159 => '中國移動', + 861703 => '中國移動', + 861705 => '中國移動', + 861706 => '中國移動', + 86172 => '中國移動', + 86173 => '中國電信', + 86176 => '中國聯通', + 86177 => '中國電信', + 86178 => '中國移動', + 86180 => '中國電信', + 86181 => '中國電信', + 86182 => '中國移動', + 86183 => '中國移動', + 86184 => '中國移動', + 86185 => '中國聯通', + 86186 => '中國聯通', + 86187 => '中國移動', + 86188 => '中國移動', + 86189 => '中國電信', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86130.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86130.php deleted file mode 100644 index 7aa9228e5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86130.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國聯通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86131.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86131.php deleted file mode 100644 index 0a4242ccf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86131.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國聯通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86132.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86132.php deleted file mode 100644 index 51a52fca0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86132.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國聯通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86133.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86133.php deleted file mode 100644 index 55633091c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86133.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國電信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86134.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86134.php deleted file mode 100644 index d6f3b32d7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86134.php +++ /dev/null @@ -1,17 +0,0 @@ - '中國移動', - 861341 => '中國移動', - 861342 => '中國移動', - 861343 => '中國移動', - 861344 => '中國移動', - 861345 => '中國移動', - 861346 => '中國移動', - 861347 => '中國移動', - 861348 => '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86135.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86135.php deleted file mode 100644 index dc645c848..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86135.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86136.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86136.php deleted file mode 100644 index 821d634ee..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86136.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86137.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86137.php deleted file mode 100644 index c8383fb51..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86137.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86138.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86138.php deleted file mode 100644 index a3d547238..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86138.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86139.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86139.php deleted file mode 100644 index 95d8c533e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86139.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86145.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86145.php deleted file mode 100644 index 542366e4f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86145.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國聯通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86147.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86147.php deleted file mode 100644 index abd7ccc2d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86147.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86150.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86150.php deleted file mode 100644 index f13e28518..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86150.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86151.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86151.php deleted file mode 100644 index dc08a233b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86151.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86152.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86152.php deleted file mode 100644 index 9ee67f8d1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86152.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86153.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86153.php deleted file mode 100644 index 4028dfa0e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86153.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國電信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86155.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86155.php deleted file mode 100644 index ee71331cc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86155.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國聯通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86156.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86156.php deleted file mode 100644 index b2b2a17c5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86156.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國聯通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86157.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86157.php deleted file mode 100644 index f60a8874c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86157.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86158.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86158.php deleted file mode 100644 index a4e7fb2e4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86158.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86159.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86159.php deleted file mode 100644 index 5864ce4db..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86159.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86170.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86170.php deleted file mode 100644 index 1646de3e2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86170.php +++ /dev/null @@ -1,11 +0,0 @@ - '中國移動', - 861705 => '中國移動', - 861706 => '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86172.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86172.php deleted file mode 100644 index f4af2a79f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86172.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86173.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86173.php deleted file mode 100644 index 534a0380e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86173.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國電信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86176.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86176.php deleted file mode 100644 index 808f1d1dd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86176.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國聯通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86177.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86177.php deleted file mode 100644 index 53b1ec900..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86177.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國電信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86178.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86178.php deleted file mode 100644 index c7046153e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86178.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86180.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86180.php deleted file mode 100644 index f5943ed4b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86180.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國電信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86181.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86181.php deleted file mode 100644 index e3ab473aa..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86181.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國電信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86182.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86182.php deleted file mode 100644 index 41678ce00..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86182.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86183.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86183.php deleted file mode 100644 index f027996b5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86183.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86184.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86184.php deleted file mode 100644 index 0c218a807..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86184.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86185.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86185.php deleted file mode 100644 index b4589c4a3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86185.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國聯通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86186.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86186.php deleted file mode 100644 index 48928759a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86186.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國聯通', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86187.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86187.php deleted file mode 100644 index 2b8ae14f2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86187.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86188.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86188.php deleted file mode 100644 index 7cddd9887..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86188.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國移動', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86189.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86189.php deleted file mode 100644 index db541981a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/carrier/data/zh_Hant/86189.php +++ /dev/null @@ -1,9 +0,0 @@ - '中國電信', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberAlternateFormats_255.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberAlternateFormats_255.php index 037961e08..82cbf8157 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberAlternateFormats_255.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberAlternateFormats_255.php @@ -1,7 +1,13 @@ '12345678', 'PossibleLength' => array ( - 0 => '8', + 0 => -1, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,6 +33,7 @@ return array ( 'ExampleNumber' => '12345678', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -38,6 +46,7 @@ return array ( 'ExampleNumber' => '12345678', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -50,6 +59,7 @@ return array ( 'ExampleNumber' => '12345678', 'PossibleLength' => array ( + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_808.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_808.php index 41b6997ab..474a023b2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_808.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_808.php @@ -1,7 +1,13 @@ '12345678', 'PossibleLength' => array ( - 0 => '8', + 0 => -1, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,6 +33,7 @@ return array ( 'ExampleNumber' => '12345678', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -38,6 +46,7 @@ return array ( 'ExampleNumber' => '12345678', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -74,6 +83,7 @@ return array ( 'ExampleNumber' => '12345678', 'PossibleLength' => array ( + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_870.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_870.php index 09a657fbe..5d4cd9903 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_870.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_870.php @@ -1,7 +1,13 @@ '301234567', 'PossibleLength' => array ( - 0 => '9', + 0 => -1, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -26,6 +33,7 @@ return array ( 'ExampleNumber' => '301234567', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -38,6 +46,7 @@ return array ( 'ExampleNumber' => '301234567', 'PossibleLength' => array ( + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_878.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_878.php index a9655f3be..ad55f6a52 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_878.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_878.php @@ -1,7 +1,13 @@ '101234567890', 'PossibleLength' => array ( - 0 => '12', + 0 => -1, + 1 => 12, ), 'PossibleLengthLocalOnly' => array ( @@ -26,6 +33,7 @@ return array ( 'ExampleNumber' => '101234567890', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -38,6 +46,7 @@ return array ( 'ExampleNumber' => '101234567890', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -98,6 +107,7 @@ return array ( 'ExampleNumber' => '101234567890', 'PossibleLength' => array ( + 0 => 12, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_881.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_881.php index e2ac4d20d..ffdfcadad 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_881.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_881.php @@ -1,7 +1,13 @@ '612345678', 'PossibleLength' => array ( - 0 => '9', + 0 => -1, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -26,6 +33,7 @@ return array ( 'ExampleNumber' => '612345678', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -38,6 +46,7 @@ return array ( 'ExampleNumber' => '612345678', 'PossibleLength' => array ( + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_882.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_882.php index 9376368cd..b9c981285 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_882.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_882.php @@ -1,7 +1,13 @@ '3451234567', 'PossibleLength' => array ( - 0 => '7', - 1 => 8, - 2 => '9', - 3 => '10', - 4 => 11, - 5 => 12, + 0 => -1, + 1 => 7, + 2 => 8, + 3 => 9, + 4 => 10, + 5 => 11, + 6 => 12, ), 'PossibleLengthLocalOnly' => array ( @@ -31,6 +38,7 @@ return array ( 'ExampleNumber' => '3451234567', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -43,9 +51,9 @@ return array ( 'ExampleNumber' => '3451234567', 'PossibleLength' => array ( - 0 => '7', - 1 => '9', - 2 => '10', + 0 => 7, + 1 => 9, + 2 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -101,11 +109,17 @@ return array ( ), 'voip' => array ( - 'NationalNumberPattern' => '1(?:3(?:0[0347]|[13][0139]|2[035]|4[013568]|6[0459]|7[06]|8[15678]|9[0689])\\d{4}|6\\d{5,10})|345\\d{7}', + 'NationalNumberPattern' => '1(?:3(?:0[0347]|[13][0139]|2[035]|4[013568]|6[0459]|7[06]|8[15678]|9[0689])\\d{4}|6\\d{5,10})|3(?:45|9\\d{3})\\d{7}', 'PossibleNumberPattern' => '\\d{7,12}', - 'ExampleNumber' => '3451234567', + 'ExampleNumber' => '390123456789', 'PossibleLength' => array ( + 0 => 7, + 1 => 8, + 2 => 9, + 3 => 10, + 4 => 11, + 5 => 12, ), 'PossibleLengthLocalOnly' => array ( @@ -142,7 +156,7 @@ return array ( 'ExampleNumber' => '3451234567', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -244,7 +258,7 @@ return array ( 'format' => '$1 $2 $3', 'leadingDigitsPatterns' => array ( - 0 => '16', + 0 => '16|39', ), 'nationalPrefixFormattingRule' => '', 'domesticCarrierCodeFormattingRule' => '', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_883.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_883.php index 1aa420f86..c07dfa3d1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_883.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_883.php @@ -1,7 +1,13 @@ '510012345', 'PossibleLength' => array ( - 0 => '9', - 1 => '12', + 0 => -1, + 1 => 9, + 2 => 12, ), 'PossibleLengthLocalOnly' => array ( @@ -27,6 +34,7 @@ return array ( 'ExampleNumber' => '510012345', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -39,6 +47,7 @@ return array ( 'ExampleNumber' => '510012345', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -99,6 +108,8 @@ return array ( 'ExampleNumber' => '510012345', 'PossibleLength' => array ( + 0 => 9, + 1 => 12, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_888.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_888.php index 9b13b07ca..5be4cd19a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_888.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_888.php @@ -1,7 +1,13 @@ '12345678901', 'PossibleLength' => array ( - 0 => '11', + 0 => -1, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -26,6 +33,7 @@ return array ( 'ExampleNumber' => '12345678901', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -38,6 +46,7 @@ return array ( 'ExampleNumber' => '12345678901', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -122,6 +131,7 @@ return array ( 'ExampleNumber' => '12345678901', 'PossibleLength' => array ( + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_979.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_979.php index 7e3725440..428862356 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_979.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_979.php @@ -1,7 +1,13 @@ '123456789', 'PossibleLength' => array ( - 0 => '9', + 0 => -1, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -26,6 +33,7 @@ return array ( 'ExampleNumber' => '123456789', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -38,6 +46,7 @@ return array ( 'ExampleNumber' => '123456789', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -62,6 +71,7 @@ return array ( 'ExampleNumber' => '123456789', 'PossibleLength' => array ( + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AC.php index 580ba1ac0..6282b11de 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AC.php @@ -1,7 +1,13 @@ '\\d{5,6}', 'PossibleLength' => array ( - 0 => '5', - 1 => '6', + 0 => 5, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '62889', 'PossibleLength' => array ( - 0 => '5', + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '40123', 'PossibleLength' => array ( - 0 => '5', + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -124,7 +130,7 @@ return array ( 'ExampleNumber' => '542011', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AD.php index 4a68871a0..4beb54252 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AD.php @@ -1,7 +1,13 @@ '\\d{6,8}', 'PossibleLength' => array ( - 0 => '6', - 1 => '8', + 0 => 6, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '712345', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '312345', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '18001234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '912345', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AE.php index c85287680..e1d62beeb 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AE.php @@ -1,7 +1,13 @@ 5, 1 => 6, 2 => 7, - 3 => '8', - 4 => '9', + 3 => 8, + 4 => 9, 5 => 10, 6 => 11, 7 => 12, @@ -32,7 +38,7 @@ return array ( 'ExampleNumber' => '22345678', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -45,7 +51,7 @@ return array ( 'ExampleNumber' => '501234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -70,7 +76,7 @@ return array ( 'ExampleNumber' => '900234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -83,7 +89,7 @@ return array ( 'ExampleNumber' => '700012345', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -132,7 +138,7 @@ return array ( 'ExampleNumber' => '600212345', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AF.php index 8b38349e9..03ad7bef1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AF.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AG.php index a7f10e17a..9da827127 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AG.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -33,7 +39,7 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '268(?:464|7(?:2\\d|36|64|7[0-689]|8[02-68]))\\d{4}', + 'NationalNumberPattern' => '268(?:464|7(?:2\\d|3[246]|64|7[0-689]|8[02-68]))\\d{4}', 'PossibleNumberPattern' => '\\d{7}(?:\\d{3})?', 'ExampleNumber' => '2684641234', 'PossibleLength' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AI.php index f491aa4fd..8d41b37b6 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AI.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AL.php index 0d6e204e0..5f34c36bc 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AL.php @@ -1,7 +1,13 @@ '\\d{5,9}', 'PossibleLength' => array ( - 0 => '6', - 1 => '7', - 2 => '8', - 3 => '9', + 0 => 6, + 1 => 7, + 2 => 8, + 3 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -29,7 +35,7 @@ return array ( 'ExampleNumber' => '22345678', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -42,7 +48,7 @@ return array ( 'ExampleNumber' => '661234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -55,7 +61,7 @@ return array ( 'ExampleNumber' => '8001234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -68,7 +74,7 @@ return array ( 'ExampleNumber' => '900123', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -81,7 +87,7 @@ return array ( 'ExampleNumber' => '808123', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -94,7 +100,7 @@ return array ( 'ExampleNumber' => '70012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AM.php index 3c7926881..0f08f07d2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AM.php @@ -1,7 +1,13 @@ '\\d{5,8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( - 0 => '5', - 1 => '6', + 0 => 5, + 1 => 6, ), ), 'fixedLine' => array ( - 'NationalNumberPattern' => '(?:1[01]\\d|2(?:2[2-46]|3[1-8]|4[2-69]|5[2-7]|6[1-9]|8[1-7])|3[12]2|47\\d)\\d{5}', + 'NationalNumberPattern' => '(?:1[0-2]\\d|2(?:2[2-46]|3[1-8]|4[2-69]|5[2-7]|6[1-9]|8[1-7])|3[12]2|47\\d)\\d{5}', 'PossibleNumberPattern' => '\\d{5,8}', 'ExampleNumber' => '10123456', 'PossibleLength' => @@ -94,7 +100,7 @@ return array ( ), 'voip' => array ( - 'NationalNumberPattern' => '60[2-7]\\d{5}', + 'NationalNumberPattern' => '60(?:2[078]|[3-7]\\d|8[0-5])\\d{4}', 'PossibleNumberPattern' => '\\d{8}', 'ExampleNumber' => '60271234', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AO.php index f35f755b4..754cb1df3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AO.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AR.php index 3f45f1633..1a0ffe92f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AR.php @@ -1,7 +1,13 @@ '\\d{6,11}', 'PossibleLength' => array ( - 0 => '10', - 1 => '11', + 0 => 10, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', - 1 => '7', - 2 => '8', + 0 => 6, + 1 => 7, + 2 => 8, ), ), 'fixedLine' => @@ -29,7 +35,7 @@ return array ( 'ExampleNumber' => '1123456789', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -42,7 +48,7 @@ return array ( 'ExampleNumber' => '91123456789', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -55,7 +61,7 @@ return array ( 'ExampleNumber' => '8001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -68,7 +74,7 @@ return array ( 'ExampleNumber' => '6001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -129,7 +135,7 @@ return array ( 'ExampleNumber' => '8101234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -154,7 +160,7 @@ return array ( 'ExampleNumber' => '8101234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AS.php index 17427c545..2e25db38d 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AS.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AT.php index d15c6c16a..bb72cd792 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AT.php @@ -1,7 +1,13 @@ array ( - 0 => '3', + 0 => 3, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AU.php index 983ab8d75..d348c1541 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AU.php @@ -1,7 +1,13 @@ 6, 2 => 7, 3 => 8, - 4 => '9', - 5 => '10', + 4 => 9, + 5 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -30,7 +36,7 @@ return array ( 'ExampleNumber' => '212345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -43,7 +49,7 @@ return array ( 'ExampleNumber' => '412345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -56,8 +62,8 @@ return array ( 'ExampleNumber' => '1800123456', 'PossibleLength' => array ( - 0 => '7', - 1 => '10', + 0 => 7, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -70,8 +76,8 @@ return array ( 'ExampleNumber' => '1900123456', 'PossibleLength' => array ( - 0 => '8', - 1 => '10', + 0 => 8, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -84,9 +90,9 @@ return array ( 'ExampleNumber' => '1300123456', 'PossibleLength' => array ( - 0 => '6', - 1 => '8', - 2 => '10', + 0 => 6, + 1 => 8, + 2 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -99,7 +105,7 @@ return array ( 'ExampleNumber' => '500123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -112,7 +118,7 @@ return array ( 'ExampleNumber' => '550123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -169,7 +175,7 @@ return array ( 0 => 6, 1 => 7, 2 => 8, - 3 => '10', + 3 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AW.php index 5fcb9817f..a7ef52216 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AW.php @@ -1,7 +1,13 @@ '\\d{7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AX.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AX.php index 0b5ecd8a9..ee2589c6b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AX.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AX.php @@ -1,7 +1,13 @@ '600123456', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AZ.php index 633987b6b..b187091b0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_AZ.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BA.php index b3594c62e..d26620c45 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BA.php @@ -1,7 +1,13 @@ '\\d{6,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', + 0 => 6, ), ), 'fixedLine' => @@ -27,7 +33,7 @@ return array ( 'ExampleNumber' => '30123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '80123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '90123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -78,7 +84,7 @@ return array ( 'ExampleNumber' => '82123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -127,7 +133,7 @@ return array ( 'ExampleNumber' => '70223456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BB.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BB.php index ec2179413..2d4dc8f7e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BB.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BB.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BD.php index 15299370a..bed515106 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BD.php @@ -1,7 +1,13 @@ 7, 2 => 8, 3 => 9, - 4 => '10', + 4 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -24,7 +30,7 @@ return array ( ), 'fixedLine' => array ( - 'NationalNumberPattern' => '2(?:550\\d|7(?:1[0-267]|2[0-289]|3[0-29]|[46][01]|5[1-3]|7[017]|91)|8(?:0[125]|[139][1-6]|2[0157-9]|6[1-35]|7[1-5]|8[1-8]|90)|9(?:0[0-2]|1[0-4]|2[568]|3[3-6]|5[5-7]|6[0167]|7[15]|8[0146-8]))\\d{4}|3(?:12?[5-7]\\d{2}|0(?:2(?:[025-79]\\d|[348]\\d{1,2})|3(?:[2-4]\\d|[56]\\d?))|2(?:1\\d{2}|2(?:[12]\\d|[35]\\d{1,2}|4\\d?))|3(?:1\\d{2}|2(?:[2356]\\d|4\\d{1,2}))|4(?:1\\d{2}|2(?:2\\d{1,2}|[47]|5\\d{2}))|5(?:1\\d{2}|29)|[67]1\\d{2}|8(?:1\\d{2}|2(?:2\\d{2}|3|4\\d)))\\d{3}|4(?:0(?:2(?:[09]\\d|7)|33\\d{2})|1\\d{3}|2(?:1\\d{2}|2(?:[25]\\d?|[348]\\d|[67]\\d{1,2}))|3(?:1\\d{2}(?:\\d{2})?|2(?:[045]\\d|[236-9]\\d{1,2})|32\\d{2})|4(?:[18]\\d{2}|2(?:[2-46]\\d{2}|3)|5[25]\\d{2})|5(?:1\\d{2}|2(?:3\\d|5))|6(?:[18]\\d{2}|2(?:3(?:\\d{2})?|[46]\\d{1,2}|5\\d{2}|7\\d)|5(?:3\\d?|4\\d|[57]\\d{1,2}|6\\d{2}|8))|71\\d{2}|8(?:[18]\\d{2}|23\\d{2}|54\\d{2})|9(?:[18]\\d{2}|2[2-5]\\d{2}|53\\d{1,2}))\\d{3}|5(?:02[03489]\\d{2}|1\\d{2}|2(?:1\\d{2}|2(?:2(?:\\d{2})?|[457]\\d{2}))|3(?:1\\d{2}|2(?:[37](?:\\d{2})?|[569]\\d{2}))|4(?:1\\d{2}|2[46]\\d{2})|5(?:1\\d{2}|26\\d{1,2})|6(?:[18]\\d{2}|2|53\\d{2})|7(?:1|24)\\d{2}|8(?:1|26)\\d{2}|91\\d{2})\\d{3}|6(?:0(?:1\\d{2}|2(?:3\\d{2}|4\\d{1,2}))|2(?:2[2-5]\\d{2}|5(?:[3-5]\\d{2}|7)|8\\d{2})|3(?:1|2[3478])\\d{2}|4(?:1|2[34])\\d{2}|5(?:1|2[47])\\d{2}|6(?:[18]\\d{2}|6(?:2(?:2\\d|[34]\\d{2})|5(?:[24]\\d{2}|3\\d|5\\d{1,2})))|72[2-5]\\d{2}|8(?:1\\d{2}|2[2-5]\\d{2})|9(?:1\\d{2}|2[2-6]\\d{2}))\\d{3}|7(?:(?:02|[3-589]1|6[12]|72[24])\\d{2}|21\\d{3}|32)\\d{3}|8(?:(?:4[12]|[5-7]2|1\\d?)|(?:0|3[12]|[5-7]1|217)\\d)\\d{4}|9(?:[35]1|(?:[024]2|81)\\d|(?:1|[24]1)\\d{2})\\d{3}', + 'NationalNumberPattern' => '2(?:550\\d|7(?:1[0-267]|2[0-289]|3[0-29]|4[01]|5[1-3]|6[013]|7[017]|91)|8(?:0[125]|[139][1-6]|2[0157-9]|6[1-35]|7[1-5]|8[1-8]|90)|9(?:0[0-2]|1[0-4]|2[568]|3[3-6]|5[5-7]|6[0167]|7[15]|8[0146-8]))\\d{4}|3(?:12?[5-7]\\d{2}|0(?:2(?:[025-79]\\d|[348]\\d{1,2})|3(?:[2-4]\\d|[56]\\d?))|2(?:1\\d{2}|2(?:[12]\\d|[35]\\d{1,2}|4\\d?))|3(?:1\\d{2}|2(?:[2356]\\d|4\\d{1,2}))|4(?:1\\d{2}|2(?:2\\d{1,2}|[47]|5\\d{2}))|5(?:1\\d{2}|29)|[67]1\\d{2}|8(?:1\\d{2}|2(?:2\\d{2}|3|4\\d)))\\d{3}|4(?:0(?:2(?:[09]\\d|7)|33\\d{2})|1\\d{3}|2(?:1\\d{2}|2(?:[25]\\d?|[348]\\d|[67]\\d{1,2}))|3(?:1\\d{2}(?:\\d{2})?|2(?:[045]\\d|[236-9]\\d{1,2})|32\\d{2})|4(?:[18]\\d{2}|2(?:[2-46]\\d{2}|3)|5[25]\\d{2})|5(?:1\\d{2}|2(?:3\\d|5))|6(?:[18]\\d{2}|2(?:3(?:\\d{2})?|[46]\\d{1,2}|5\\d{2}|7\\d)|5(?:3\\d?|4\\d|[57]\\d{1,2}|6\\d{2}|8))|71\\d{2}|8(?:[18]\\d{2}|23\\d{2}|54\\d{2})|9(?:[18]\\d{2}|2[2-5]\\d{2}|53\\d{1,2}))\\d{3}|5(?:02[03489]\\d{2}|1\\d{2}|2(?:1\\d{2}|2(?:2(?:\\d{2})?|[457]\\d{2}))|3(?:1\\d{2}|2(?:[37](?:\\d{2})?|[569]\\d{2}))|4(?:1\\d{2}|2[46]\\d{2})|5(?:1\\d{2}|26\\d{1,2})|6(?:[18]\\d{2}|2|53\\d{2})|7(?:1|24)\\d{2}|8(?:1|26)\\d{2}|91\\d{2})\\d{3}|6(?:0(?:1\\d{2}|2(?:3\\d{2}|4\\d{1,2}))|2(?:2[2-5]\\d{2}|5(?:[3-5]\\d{2}|7)|8\\d{2})|3(?:1|2[3478])\\d{2}|4(?:1|2[34])\\d{2}|5(?:1|2[47])\\d{2}|6(?:[18]\\d{2}|6(?:2(?:2\\d|[34]\\d{2})|5(?:[24]\\d{2}|3\\d|5\\d{1,2})))|72[2-5]\\d{2}|8(?:1\\d{2}|2[2-5]\\d{2})|9(?:1\\d{2}|2[2-6]\\d{2}))\\d{3}|7(?:(?:02|[3-589]1|6[12]|72[24])\\d{2}|21\\d{3}|32)\\d{3}|8(?:(?:4[12]|[5-7]2|1\\d?)|(?:0|3[12]|[5-7]1|217)\\d)\\d{4}|9(?:[35]1|(?:[024]2|81)\\d|(?:1|[24]1)\\d{2})\\d{3}', 'PossibleNumberPattern' => '\\d{6,9}', 'ExampleNumber' => '27111234', 'PossibleLength' => @@ -45,7 +51,7 @@ return array ( 'ExampleNumber' => '1812345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -58,7 +64,7 @@ return array ( 'ExampleNumber' => '8001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -107,7 +113,7 @@ return array ( 'ExampleNumber' => '9604123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BE.php index bd286e640..7b5c00286 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BE.php @@ -1,7 +1,13 @@ '\\d{8,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '12345678', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '470123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '80012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '90123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -126,7 +132,7 @@ return array ( 'ExampleNumber' => '78123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BF.php index 7a796b249..750be91c9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BF.php @@ -1,18 +1,24 @@ array ( - 'NationalNumberPattern' => '[267]\\d{7}', + 'NationalNumberPattern' => '[25-7]\\d{7}', 'PossibleNumberPattern' => '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -32,7 +38,7 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '6(?:[0-689]\\d|7[0-5])\\d{5}|7\\d{7}', + 'NationalNumberPattern' => '(?:55[0-5]|6(?:[0-689]\\d|7[0-5]))\\d{5}|7\\d{7}', 'PossibleNumberPattern' => '\\d{8}', 'ExampleNumber' => '70123456', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BG.php index df6664dbe..957025e01 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BG.php @@ -1,7 +1,13 @@ 6, 1 => 7, 2 => 8, - 3 => '9', + 3 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '4', - 1 => '5', + 0 => 4, + 1 => 5, ), ), 'fixedLine' => @@ -45,8 +51,8 @@ return array ( 'ExampleNumber' => '48123456', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -59,7 +65,7 @@ return array ( 'ExampleNumber' => '80012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -72,7 +78,7 @@ return array ( 'ExampleNumber' => '90123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -97,7 +103,7 @@ return array ( 'ExampleNumber' => '70012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BH.php index 73f9e5d7a..6705ea789 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BH.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BI.php index 1da3cb420..d9bd2d58a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BI.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BJ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BJ.php index e0d13296a..e5f9902e5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BJ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BJ.php @@ -1,7 +1,13 @@ '\\d{4,8}', 'PossibleLength' => array ( - 0 => '4', - 1 => '8', + 0 => 4, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '20211234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '90011234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '7312', 'PossibleLength' => array ( - 0 => '4', + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -101,7 +107,7 @@ return array ( 'ExampleNumber' => '85751234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -126,7 +132,7 @@ return array ( 'ExampleNumber' => '81123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BL.php index 305939c04..a91199e92 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BL.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BM.php index 3ded83068..57698a695 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BM.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BN.php index 2fd9db54c..31b9b17a2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BN.php @@ -1,7 +1,13 @@ '\\d{7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BO.php index 660d3999d..7f2836395 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BO.php @@ -1,7 +1,13 @@ '\\d{7,8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BQ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BQ.php index 49d3af10e..004b84eb3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BQ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BQ.php @@ -1,7 +1,13 @@ '\\d{7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BR.php index 89a82af71..43038cafa 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BR.php @@ -1,21 +1,27 @@ array ( - 'NationalNumberPattern' => '[1-46-9]\\d{7,10}|5\\d{8,9}', + 'NationalNumberPattern' => '[1-46-9]\\d{7,10}|5(?:[0-4]\\d{7,9}|5(?:[2-8]\\d{7}|9\\d{7,8}))', 'PossibleNumberPattern' => '\\d{8,11}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', - 2 => '10', - 3 => '11', + 0 => 8, + 1 => 9, + 2 => 10, + 3 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -28,7 +34,7 @@ return array ( 'ExampleNumber' => '1123456789', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -36,13 +42,13 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '1[1-9](?:7|9\\d)\\d{7}|(?:2[12478]|3[1-578]|[689][1-9]|7[13-579])(?:[6-8]|9\\d?)\\d{7}|(?:4[1-9]|5[1-5])[6-9]\\d{7}', + 'NationalNumberPattern' => '1[1-9](?:7|9\\d)\\d{7}|(?:2[12478]|3[1-578]|[4689][1-9]|5[1-5]|7[13-579])(?:[6-8]|9\\d?)\\d{7}', 'PossibleNumberPattern' => '\\d{8,11}', 'ExampleNumber' => '11961234567', 'PossibleLength' => array ( - 0 => '10', - 1 => '11', + 0 => 10, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -55,8 +61,8 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -69,8 +75,8 @@ return array ( 'ExampleNumber' => '300123456', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -83,8 +89,8 @@ return array ( 'ExampleNumber' => '40041234', 'PossibleLength' => array ( - 0 => '8', - 1 => '10', + 0 => 8, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -157,7 +163,7 @@ return array ( 'ExampleNumber' => '40041234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -214,7 +220,7 @@ return array ( 'format' => '$1 $2-$3', 'leadingDigitsPatterns' => array ( - 0 => '(?:[1689][1-9]|2[12478]|3[1-578]|7[13-579])9', + 0 => '(?:[14689][1-9]|2[12478]|3[1-578]|5[1-5]|7[13-579])9', ), 'nationalPrefixFormattingRule' => '($1)', 'domesticCarrierCodeFormattingRule' => '0 $CC ($1)', @@ -265,7 +271,7 @@ return array ( 'format' => '$1 $2-$3', 'leadingDigitsPatterns' => array ( - 0 => '(?:[1689][1-9]|2[12478]|3[1-578]|7[13-579])9', + 0 => '(?:[14689][1-9]|2[12478]|3[1-578]|5[1-5]|7[13-579])9', ), 'nationalPrefixFormattingRule' => '($1)', 'domesticCarrierCodeFormattingRule' => '0 $CC ($1)', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BS.php index e76fb83fd..60c39b1ec 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BS.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BT.php index afc5106dc..ebd8d8e78 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BT.php @@ -1,7 +1,13 @@ '\\d{6,8}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', + 0 => 6, ), ), 'fixedLine' => @@ -27,7 +33,7 @@ return array ( 'ExampleNumber' => '2345678', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -40,7 +46,7 @@ return array ( 'ExampleNumber' => '17123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BW.php index 910d91a84..d301a647a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BW.php @@ -1,7 +1,13 @@ '\\d{7,8}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '2401234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '71123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -64,7 +70,7 @@ return array ( 'ExampleNumber' => '9012345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -101,7 +107,7 @@ return array ( 'ExampleNumber' => '79101234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BY.php index aa23c3291..0b8c99925 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BY.php @@ -1,7 +1,13 @@ 6, 1 => 7, 2 => 8, - 3 => '9', + 3 => 9, 4 => 10, 5 => 11, ), @@ -31,7 +37,7 @@ return array ( 'ExampleNumber' => '152450911', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -44,7 +50,7 @@ return array ( 'ExampleNumber' => '294911911', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -69,7 +75,7 @@ return array ( 'ExampleNumber' => '9021234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -106,7 +112,7 @@ return array ( 'ExampleNumber' => '249123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BZ.php index f50a9dae0..ab913ecb5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_BZ.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{4})?', 'PossibleLength' => array ( - 0 => '7', - 1 => '11', + 0 => 7, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '2221234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '6221234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '08001234123', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CA.php index 651aeabd1..0e3fc098a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CA.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '7', - 1 => '10', + 0 => 7, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '2042345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '2042345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -64,7 +70,7 @@ return array ( 'ExampleNumber' => '9002123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -84,12 +90,12 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CC.php index ecfa0528c..307d5be4d 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CC.php @@ -1,7 +1,13 @@ '\\d{6,10}', 'PossibleLength' => array ( - 0 => '6', - 1 => '7', - 2 => '9', - 3 => '10', + 0 => 6, + 1 => 7, + 2 => 9, + 3 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '8', + 0 => 8, ), ), 'fixedLine' => @@ -29,7 +35,7 @@ return array ( 'ExampleNumber' => '891621234', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -42,7 +48,7 @@ return array ( 'ExampleNumber' => '412345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -55,8 +61,8 @@ return array ( 'ExampleNumber' => '1800123456', 'PossibleLength' => array ( - 0 => '7', - 1 => '10', + 0 => 7, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -69,7 +75,7 @@ return array ( 'ExampleNumber' => '1900123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -82,8 +88,8 @@ return array ( 'ExampleNumber' => '1300123456', 'PossibleLength' => array ( - 0 => '6', - 1 => '10', + 0 => 6, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -96,7 +102,7 @@ return array ( 'ExampleNumber' => '500123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -109,7 +115,7 @@ return array ( 'ExampleNumber' => '550123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CD.php index 5144a30db..121d194be 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CD.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '7', - 1 => '9', + 0 => 7, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CF.php index 97d98b114..38fed798e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CF.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CG.php index 7f6a7650a..f2f0f7a19 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CG.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CH.php index 325aa9417..71a7fabaa 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CH.php @@ -1,7 +1,13 @@ '\\d{9}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '9', - 1 => '12', + 0 => 9, + 1 => 12, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '212345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '781234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '900123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -78,7 +84,7 @@ return array ( 'ExampleNumber' => '840123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -91,7 +97,7 @@ return array ( 'ExampleNumber' => '878123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -116,7 +122,7 @@ return array ( 'ExampleNumber' => '740123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -129,7 +135,7 @@ return array ( 'ExampleNumber' => '581234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -142,7 +148,7 @@ return array ( 'ExampleNumber' => '860123456789', 'PossibleLength' => array ( - 0 => '12', + 0 => 12, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CI.php index 5c1c52fdd..285d6cdec 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CI.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CK.php index d1cf6c602..d06fef026 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CK.php @@ -1,7 +1,13 @@ '\\d{5}', 'PossibleLength' => array ( - 0 => '5', + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CL.php index a8773b39b..e37963831 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CL.php @@ -1,7 +1,13 @@ '\\d{7,11}', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', - 2 => '11', + 0 => 9, + 1 => 10, + 2 => 11, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), ), 'fixedLine' => array ( - 'NationalNumberPattern' => '2(?:1962\\d{4}|2\\d{7}|32[0-2]\\d{5})|(?:3[2-5]|[47][1-35]|5[1-3578]|6[13-57])\\d{7}', + 'NationalNumberPattern' => '2(?:1962\\d{4}|2\\d{7}|32[0-267]\\d{5})|(?:3[2-5]|[47][1-35]|5[1-3578]|6[13-57])\\d{7}', 'PossibleNumberPattern' => '\\d{7,9}', 'ExampleNumber' => '221234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -37,12 +43,12 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '9[4-9]\\d{7}', + 'NationalNumberPattern' => '9[3-9]\\d{7}', 'PossibleNumberPattern' => '\\d{8,9}', 'ExampleNumber' => '961234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -55,8 +61,8 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '9', - 1 => '11', + 0 => 9, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -81,8 +87,8 @@ return array ( 'ExampleNumber' => '6001234567', 'PossibleLength' => array ( - 0 => '10', - 1 => '11', + 0 => 10, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -107,7 +113,7 @@ return array ( 'ExampleNumber' => '441234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -156,8 +162,8 @@ return array ( 'ExampleNumber' => '6001234567', 'PossibleLength' => array ( - 0 => '10', - 1 => '11', + 0 => 10, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CM.php index 895327865..841068c87 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CM.php @@ -1,7 +1,13 @@ '\\d{8,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '222123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '671234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '80012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '88012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CN.php index e266c333c..12c3a1b7a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CN.php @@ -1,7 +1,13 @@ array ( - 0 => '5', - 1 => '6', + 0 => 5, + 1 => 6, ), ), 'fixedLine' => @@ -44,7 +50,7 @@ return array ( 'ExampleNumber' => '13123456789', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -57,8 +63,8 @@ return array ( 'ExampleNumber' => '8001234567', 'PossibleLength' => array ( - 0 => '10', - 1 => '12', + 0 => 10, + 1 => 12, ), 'PossibleLengthLocalOnly' => array ( @@ -71,7 +77,7 @@ return array ( 'ExampleNumber' => '16812345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CO.php index e390dede4..7292b834f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CO.php @@ -1,7 +1,13 @@ '\\d{7,11}', 'PossibleLength' => array ( - 0 => '8', - 1 => '10', - 2 => '11', + 0 => 8, + 1 => 10, + 2 => 11, ), 'PossibleLengthLocalOnly' => array ( + 0 => 7, ), ), 'fixedLine' => @@ -27,7 +34,7 @@ return array ( 'ExampleNumber' => '12345678', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -40,7 +47,7 @@ return array ( 'ExampleNumber' => '3211234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -53,7 +60,7 @@ return array ( 'ExampleNumber' => '18001234567', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -66,7 +73,7 @@ return array ( 'ExampleNumber' => '19001234567', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CR.php index 3340a6031..72eb4693e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CR.php @@ -1,7 +1,13 @@ '\\d{8,10}', 'PossibleLength' => array ( - 0 => '8', - 1 => '10', + 0 => 8, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '22123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '83123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '8001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '9001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -102,7 +108,7 @@ return array ( 'ExampleNumber' => '40001234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CU.php index 87323e33c..dee8f2cc3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CU.php @@ -1,7 +1,13 @@ array ( - 0 => '4', - 1 => '5', + 0 => 4, + 1 => 5, ), ), 'fixedLine' => @@ -41,7 +47,7 @@ return array ( 'ExampleNumber' => '51234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CV.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CV.php index 63a87cabe..18a13800b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CV.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CV.php @@ -1,7 +1,13 @@ '\\d{7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CW.php index cb3bd63c7..8112f4e81 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CW.php @@ -1,7 +1,13 @@ '\\d{7,8}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '94151234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '95181234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -76,7 +82,7 @@ return array ( 'ExampleNumber' => '6001234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -113,7 +119,7 @@ return array ( 'ExampleNumber' => '95581234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CX.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CX.php index 618497d13..cad106d8c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CX.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CX.php @@ -1,7 +1,13 @@ '\\d{6,10}', 'PossibleLength' => array ( - 0 => '6', - 1 => '7', - 2 => '8', - 3 => '9', - 4 => '10', + 0 => 6, + 1 => 7, + 2 => 8, + 3 => 9, + 4 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -29,7 +35,7 @@ return array ( 'ExampleNumber' => '891641234', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -42,7 +48,7 @@ return array ( 'ExampleNumber' => '412345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -55,8 +61,8 @@ return array ( 'ExampleNumber' => '1800123456', 'PossibleLength' => array ( - 0 => '7', - 1 => '10', + 0 => 7, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -69,7 +75,7 @@ return array ( 'ExampleNumber' => '1900123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -82,9 +88,9 @@ return array ( 'ExampleNumber' => '1300123456', 'PossibleLength' => array ( - 0 => '6', - 1 => '8', - 2 => '10', + 0 => 6, + 1 => 8, + 2 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -97,7 +103,7 @@ return array ( 'ExampleNumber' => '500123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -110,7 +116,7 @@ return array ( 'ExampleNumber' => '550123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CY.php index 370849924..d77de69bc 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CY.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CZ.php index d43c0f53e..b12683fe0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_CZ.php @@ -1,7 +1,13 @@ '\\d{9,12}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, 1 => 10, 2 => 11, 3 => 12, @@ -28,7 +34,7 @@ return array ( 'ExampleNumber' => '212345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -41,7 +47,7 @@ return array ( 'ExampleNumber' => '601123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -54,7 +60,7 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -67,7 +73,7 @@ return array ( 'ExampleNumber' => '900123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -80,7 +86,7 @@ return array ( 'ExampleNumber' => '811234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -93,7 +99,7 @@ return array ( 'ExampleNumber' => '700123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -106,7 +112,7 @@ return array ( 'ExampleNumber' => '910123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -131,7 +137,7 @@ return array ( 'ExampleNumber' => '972123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DE.php index c6ff17b7b..85500f390 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DE.php @@ -1,7 +1,13 @@ 7, 4 => 8, 5 => 9, - 6 => '10', - 7 => '11', + 6 => 10, + 7 => 11, 8 => 12, 9 => 13, 10 => 14, @@ -27,7 +33,7 @@ return array ( ), 'PossibleLengthLocalOnly' => array ( - 0 => '3', + 0 => 3, ), ), 'fixedLine' => @@ -60,8 +66,8 @@ return array ( 'ExampleNumber' => '15123456789', 'PossibleLength' => array ( - 0 => '10', - 1 => '11', + 0 => 10, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -92,8 +98,8 @@ return array ( 'ExampleNumber' => '9001234567', 'PossibleLength' => array ( - 0 => '10', - 1 => '11', + 0 => 10, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -126,7 +132,7 @@ return array ( 'ExampleNumber' => '70012345678', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -193,8 +199,8 @@ return array ( 'ExampleNumber' => '177991234567', 'PossibleLength' => array ( - 0 => '12', - 1 => '13', + 0 => 12, + 1 => 13, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DJ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DJ.php index 12343892b..cb8aba7b5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DJ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DJ.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DK.php index 7fdfdc988..7ea4805a3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DK.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DM.php index 0ccdb52e2..c1f8604b9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DM.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DO.php index 99c927621..5531c342b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DO.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DZ.php index 4a9126e6f..ae3ecc7e1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_DZ.php @@ -1,7 +1,13 @@ '\\d{8,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -38,7 +44,7 @@ return array ( 'ExampleNumber' => '551234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -51,7 +57,7 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -64,7 +70,7 @@ return array ( 'ExampleNumber' => '808123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -77,7 +83,7 @@ return array ( 'ExampleNumber' => '801123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -102,7 +108,7 @@ return array ( 'ExampleNumber' => '983123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EC.php index d37853fa3..c60bc7a78 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EC.php @@ -1,7 +1,13 @@ '\\d{7,11}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', - 2 => '10', - 3 => '11', + 0 => 8, + 1 => 9, + 2 => 10, + 3 => 11, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -29,7 +35,7 @@ return array ( 'ExampleNumber' => '22123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -37,12 +43,12 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '9(?:39|[45][89]|[67][7-9]|[89]\\d)\\d{6}', + 'NationalNumberPattern' => '9(?:(?:39|[45][89]|7[7-9]|[89]\\d)\\d|6(?:[017-9]\\d|2[0-4]))\\d{5}', 'PossibleNumberPattern' => '\\d{9}', 'ExampleNumber' => '991234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -55,8 +61,8 @@ return array ( 'ExampleNumber' => '18001234567', 'PossibleLength' => array ( - 0 => '10', - 1 => '11', + 0 => 10, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -105,7 +111,7 @@ return array ( 'ExampleNumber' => '28901234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EE.php index f385e9297..7b3303c49 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EE.php @@ -1,7 +1,13 @@ '\\d{4,10}', 'PossibleLength' => array ( - 0 => '4', - 1 => '5', - 2 => '7', - 3 => '8', - 4 => '10', + 0 => 4, + 1 => 5, + 2 => 7, + 3 => 8, + 4 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -29,7 +35,7 @@ return array ( 'ExampleNumber' => '3212345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -42,8 +48,8 @@ return array ( 'ExampleNumber' => '51234567', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -56,9 +62,9 @@ return array ( 'ExampleNumber' => '80012345', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', - 2 => '10', + 0 => 7, + 1 => 8, + 2 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -71,8 +77,8 @@ return array ( 'ExampleNumber' => '9001234', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -97,7 +103,7 @@ return array ( 'ExampleNumber' => '70012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -134,8 +140,8 @@ return array ( 'ExampleNumber' => '12123', 'PossibleLength' => array ( - 0 => '4', - 1 => '5', + 0 => 4, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -160,9 +166,9 @@ return array ( 'ExampleNumber' => '8002123', 'PossibleLength' => array ( - 0 => '4', - 1 => '5', - 2 => '7', + 0 => 4, + 1 => 5, + 2 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EG.php index cb69241ce..183184655 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EG.php @@ -1,7 +1,13 @@ '\\d{5,10}', 'PossibleLength' => array ( - 0 => '5', - 1 => '8', - 2 => '9', - 3 => '10', + 0 => 5, + 1 => 8, + 2 => 9, + 3 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -29,9 +35,9 @@ return array ( 'ExampleNumber' => '234567890', 'PossibleLength' => array ( - 0 => '5', - 1 => '8', - 2 => '9', + 0 => 5, + 1 => 8, + 2 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -44,7 +50,7 @@ return array ( 'ExampleNumber' => '1001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -57,7 +63,7 @@ return array ( 'ExampleNumber' => '8001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -70,7 +76,7 @@ return array ( 'ExampleNumber' => '9001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EH.php index d0f7d8627..a6a3105f6 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_EH.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ER.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ER.php index 565bffca3..9f7d01a2c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ER.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ER.php @@ -1,7 +1,13 @@ '\\d{6,7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', + 0 => 6, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ES.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ES.php index 785e554f5..bbbe02351 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ES.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ES.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ET.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ET.php index ef27f25d9..7d0c6c68c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ET.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ET.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => array ( - 'NationalNumberPattern' => '(?:11(?:1(?:1[124]|2[2-57]|3[1-5]|5[5-8]|8[6-8])|2(?:13|3[6-8]|5[89]|7[05-9]|8[2-6])|3(?:2[01]|3[0-289]|4[1289]|7[1-4]|87)|4(?:1[69]|3[2-49]|4[0-3]|6[5-8])|5(?:1[578]|44|5[0-4])|6(?:18|2[69]|4[5-7]|5[1-5]|6[0-59]|8[015-8]))|2(?:2(?:11[1-9]|22[0-7]|33\\d|44[1467]|66[1-68])|5(?:11[124-6]|33[2-8]|44[1467]|55[14]|66[1-3679]|77[124-79]|880))|3(?:3(?:11[0-46-8]|22[0-6]|33[0134689]|44[04]|55[0-6]|66[01467])|4(?:44[0-8]|55[0-69]|66[0-3]|77[1-5]))|4(?:6(?:22[0-24-7]|33[1-5]|44[13-69]|55[14-689]|660|88[1-4])|7(?:11[1-9]|22[1-9]|33[13-7]|44[13-6]|55[1-689]))|5(?:7(?:227|55[05]|(?:66|77)[14-8])|8(?:11[149]|22[013-79]|33[0-68]|44[013-8]|550|66[1-5]|77\\d)))\\d{4}', + 'NationalNumberPattern' => '(?:11(?:1(?:1[124]|2[2-57]|3[1-5]|5[5-8]|8[6-8])|2(?:13|3[6-8]|5[89]|7[05-9]|8[2-6])|3(?:2[01]|3[0-289]|4[1289]|7[1-4]|87)|4(?:1[69]|3[2-49]|4[0-3]|6[5-8])|5(?:1[578]|44|5[0-4])|6(?:18|2[69]|39|4[5-7]|5[1-5]|6[0-59]|8[015-8]))|2(?:2(?:11[1-9]|22[0-7]|33\\d|44[1467]|66[1-68])|5(?:11[124-6]|33[2-8]|44[1467]|55[14]|66[1-3679]|77[124-79]|880))|3(?:3(?:11[0-46-8]|22[0-6]|33[0134689]|44[04]|55[0-6]|66[01467])|4(?:44[0-8]|55[0-69]|66[0-3]|77[1-5]))|4(?:6(?:22[0-24-7]|33[1-5]|44[13-69]|55[14-689]|660|88[1-4])|7(?:11[1-9]|22[1-9]|33[13-7]|44[13-6]|55[1-689]))|5(?:7(?:227|55[05]|(?:66|77)[14-8])|8(?:11[149]|22[013-79]|33[0-68]|44[013-8]|550|66[1-5]|77\\d)))\\d{4}', 'PossibleNumberPattern' => '\\d{7,9}', 'ExampleNumber' => '111112345', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FI.php index 267478d99..f2f2c9910 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FI.php @@ -1,7 +1,13 @@ '600123456', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FJ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FJ.php index 5725f4013..5a28056b8 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FJ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FJ.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{4})?', 'PossibleLength' => array ( - 0 => '7', - 1 => '11', + 0 => 7, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '3212345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '7012345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '08001234567', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FK.php index d891da778..5691ba91b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FK.php @@ -1,7 +1,13 @@ '\\d{5}', 'PossibleLength' => array ( - 0 => '5', + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FM.php index 033cfc196..5ac06b692 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FM.php @@ -1,7 +1,13 @@ '\\d{7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FO.php index e7e107eb2..1b4f0fd3a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FO.php @@ -1,7 +1,13 @@ '\\d{6}', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FR.php index aa0b7f21d..6d81bab10 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_FR.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -32,7 +38,7 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '6\\d{8}|7(?:00\\d{6}|[3-9]\\d{7})', + 'NationalNumberPattern' => '(?:6\\d|7[3-9])\\d{7}', 'PossibleNumberPattern' => '\\d{9}', 'ExampleNumber' => '612345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GA.php index 0e0f1d3c7..51268d325 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GA.php @@ -1,7 +1,13 @@ '\\d{7,8}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '01441234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GB.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GB.php index af3d8cf7d..d7b03b972 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GB.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GB.php @@ -1,7 +1,13 @@ '\\d{4,10}', 'PossibleLength' => array ( - 0 => '7', - 1 => '9', - 2 => '10', + 0 => 7, + 1 => 9, + 2 => 10, ), 'PossibleLengthLocalOnly' => array ( + 0 => 4, + 1 => 5, + 2 => 6, + 3 => 8, ), ), 'fixedLine' => @@ -27,8 +37,8 @@ return array ( 'ExampleNumber' => '1212345678', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -41,6 +51,7 @@ return array ( 'ExampleNumber' => '7400123456', 'PossibleLength' => array ( + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +76,7 @@ return array ( 'ExampleNumber' => '9012345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -78,8 +89,8 @@ return array ( 'ExampleNumber' => '8431234567', 'PossibleLength' => array ( - 0 => '7', - 1 => '10', + 0 => 7, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -92,7 +103,7 @@ return array ( 'ExampleNumber' => '7012345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -105,7 +116,7 @@ return array ( 'ExampleNumber' => '5612345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -118,7 +129,7 @@ return array ( 'ExampleNumber' => '7640123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -131,7 +142,7 @@ return array ( 'ExampleNumber' => '5512345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GD.php index 7b8855eb2..7a464cb99 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GD.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GE.php index ad3a99175..ddb726b4d 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GE.php @@ -1,7 +1,13 @@ '\\d{6,9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', + 0 => 6, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GF.php index 36b47f110..b798b1a8f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GF.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GG.php index a50b9c940..adb2e24d7 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GG.php @@ -1,7 +1,13 @@ '\\d{6,10}', 'PossibleLength' => array ( - 0 => '7', - 1 => '9', - 2 => '10', + 0 => 7, + 1 => 9, + 2 => 10, ), 'PossibleLengthLocalOnly' => array ( + 0 => 6, ), ), 'fixedLine' => @@ -27,6 +34,7 @@ return array ( 'ExampleNumber' => '1481456789', 'PossibleLength' => array ( + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +47,7 @@ return array ( 'ExampleNumber' => '7781123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -64,7 +72,7 @@ return array ( 'ExampleNumber' => '9012345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -77,8 +85,8 @@ return array ( 'ExampleNumber' => '8431234567', 'PossibleLength' => array ( - 0 => '7', - 1 => '10', + 0 => 7, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -91,7 +99,7 @@ return array ( 'ExampleNumber' => '7012345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -104,7 +112,7 @@ return array ( 'ExampleNumber' => '5612345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -117,7 +125,7 @@ return array ( 'ExampleNumber' => '7640123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -130,7 +138,7 @@ return array ( 'ExampleNumber' => '5512345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GH.php index a6da6583e..d63f227c4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GH.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( + 0 => 7, ), ), 'fixedLine' => @@ -26,7 +33,7 @@ return array ( 'ExampleNumber' => '302345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +46,7 @@ return array ( 'ExampleNumber' => '231234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +59,7 @@ return array ( 'ExampleNumber' => '80012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -149,7 +156,7 @@ return array ( 'ExampleNumber' => '80012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GI.php index 9869bdf60..b4d61eeb8 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GI.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GL.php index de54d7cf2..8ebb7a1d0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GL.php @@ -1,7 +1,13 @@ '\\d{6}', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GM.php index 01d226fa6..3da358f48 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GM.php @@ -1,7 +1,13 @@ '\\d{7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GN.php index b3e508eaf..738b932d5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GN.php @@ -1,7 +1,13 @@ '\\d{8,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '30241234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '601123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -100,7 +106,7 @@ return array ( 'ExampleNumber' => '722123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GP.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GP.php index c9315be92..1c2477314 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GP.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GP.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GQ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GQ.php index 369d4986c..0699b5d93 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GQ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GQ.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GR.php index 867560322..2aeb94967 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GR.php @@ -1,7 +1,13 @@ '\\d{10}', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GT.php index 467da0659..512146dc4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GT.php @@ -1,7 +1,13 @@ '\\d{8}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '8', - 1 => '11', + 0 => 8, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '22456789', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '51234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '18001112222', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '19001112222', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GU.php index c89ff9d01..2cce9ce24 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GU.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GW.php index daea85bfa..27900a3bd 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GW.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '7', - 1 => '9', + 0 => 7, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '443201234', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '955012345', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -100,7 +106,7 @@ return array ( 'ExampleNumber' => '4012345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GY.php index 86db49f25..01986819f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_GY.php @@ -1,7 +1,13 @@ '\\d{7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HK.php index 50072836f..5523d69a9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HK.php @@ -1,7 +1,13 @@ 5, 1 => 6, 2 => 7, - 3 => '8', - 4 => '9', - 5 => '11', + 3 => 8, + 4 => 9, + 5 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -30,7 +36,7 @@ return array ( 'ExampleNumber' => '21234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -43,7 +49,7 @@ return array ( 'ExampleNumber' => '51234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -56,7 +62,7 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -73,7 +79,7 @@ return array ( 1 => 6, 2 => 7, 3 => 8, - 4 => '11', + 4 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -98,7 +104,7 @@ return array ( 'ExampleNumber' => '81123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -123,7 +129,7 @@ return array ( 'ExampleNumber' => '71234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HN.php index f54f79637..90ffae11b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HN.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HR.php index e9ee84921..6538ef1a1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HR.php @@ -1,7 +1,13 @@ 6, 1 => 7, - 2 => '8', - 3 => '9', + 2 => 8, + 3 => 9, 4 => 10, 5 => 11, 6 => 12, @@ -31,8 +37,8 @@ return array ( 'ExampleNumber' => '12345678', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -146,8 +152,8 @@ return array ( 'ExampleNumber' => '62123456', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HT.php index 9276ef58a..0c32bdc3e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HT.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HU.php index 0dbd4b2bf..aab772a72 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_HU.php @@ -1,7 +1,13 @@ '\\d{6,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', - 1 => '7', + 0 => 6, ), ), 'fixedLine' => array ( - 'NationalNumberPattern' => '(?:1\\d|2(?:1\\d|[2-9])|3(?:[2-7]|8\\d)|4[24-9]|5[2-79]|6[23689]|7(?:1\\d|[2-9])|8[2-57-9]|9[2-69])\\d{6}', - 'PossibleNumberPattern' => '\\d{6,9}', + 'NationalNumberPattern' => '(?:1\\d|2[2-9]|3[2-7]|4[24-9]|5[2-79]|6[23689]|7[2-9]|8[2-57-9]|9[2-69])\\d{6}', + 'PossibleNumberPattern' => '\\d{6,8}', 'ExampleNumber' => '12345678', 'PossibleLength' => array ( + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -40,7 +46,7 @@ return array ( 'ExampleNumber' => '201234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -48,12 +54,12 @@ return array ( ), 'tollFree' => array ( - 'NationalNumberPattern' => '80\\d{6}', + 'NationalNumberPattern' => '[48]0\\d{6}', 'PossibleNumberPattern' => '\\d{8}', 'ExampleNumber' => '80123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -66,7 +72,7 @@ return array ( 'ExampleNumber' => '90123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -74,12 +80,11 @@ return array ( ), 'sharedCost' => array ( - 'NationalNumberPattern' => '40\\d{6}', - 'PossibleNumberPattern' => '\\d{8}', - 'ExampleNumber' => '40123456', + 'NationalNumberPattern' => 'NA', + 'PossibleNumberPattern' => 'NA', 'PossibleLength' => array ( - 0 => '8', + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -99,11 +104,12 @@ return array ( ), 'voip' => array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', + 'NationalNumberPattern' => '21\\d{7}', + 'PossibleNumberPattern' => '\\d{9}', + 'ExampleNumber' => '211234567', 'PossibleLength' => array ( - 0 => -1, + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -123,11 +129,12 @@ return array ( ), 'uan' => array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', + 'NationalNumberPattern' => '38\\d{7}', + 'PossibleNumberPattern' => '\\d{6,9}', + 'ExampleNumber' => '381234567', 'PossibleLength' => array ( - 0 => -1, + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -152,7 +159,7 @@ return array ( 'ExampleNumber' => '80123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ID.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ID.php index b4ddd653c..3d32387aa 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ID.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ID.php @@ -1,7 +1,13 @@ '\\d{5,12}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, 1 => 8, 2 => 9, - 3 => '10', + 3 => 10, 4 => 11, 5 => 12, ), 'PossibleLengthLocalOnly' => array ( - 0 => '5', - 1 => '6', + 0 => 5, + 1 => 6, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( 'ExampleNumber' => '8091234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -94,7 +100,7 @@ return array ( 'ExampleNumber' => '8041234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -143,8 +149,8 @@ return array ( 'ExampleNumber' => '8071123456', 'PossibleLength' => array ( - 0 => '7', - 1 => '10', + 0 => 7, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -169,7 +175,7 @@ return array ( 'ExampleNumber' => '8071123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IE.php index 52e0eea86..5a4f16afc 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IE.php @@ -1,7 +1,13 @@ array ( - 0 => '5', - 1 => '6', + 0 => 5, + 1 => 6, ), ), 'fixedLine' => @@ -42,7 +48,7 @@ return array ( 'ExampleNumber' => '850123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -55,7 +61,7 @@ return array ( 'ExampleNumber' => '1800123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -68,7 +74,7 @@ return array ( 'ExampleNumber' => '1520123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -81,7 +87,7 @@ return array ( 'ExampleNumber' => '1850123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -94,7 +100,7 @@ return array ( 'ExampleNumber' => '700123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -107,7 +113,7 @@ return array ( 'ExampleNumber' => '761234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -132,7 +138,7 @@ return array ( 'ExampleNumber' => '818123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -145,7 +151,7 @@ return array ( 'ExampleNumber' => '8501234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -158,7 +164,7 @@ return array ( 'ExampleNumber' => '1850123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IL.php index eb15561ac..c7edf42e5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IL.php @@ -1,7 +1,13 @@ '\\d{4,10}', 'PossibleLength' => array ( - 0 => '4', - 1 => '7', - 2 => '8', - 3 => '9', - 4 => '10', + 0 => 4, + 1 => 7, + 2 => 8, + 3 => 9, + 4 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -29,7 +35,7 @@ return array ( 'ExampleNumber' => '21234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -42,7 +48,7 @@ return array ( 'ExampleNumber' => '501234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -55,8 +61,8 @@ return array ( 'ExampleNumber' => '1800123456', 'PossibleLength' => array ( - 0 => '7', - 1 => '10', + 0 => 7, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -84,7 +90,7 @@ return array ( 'ExampleNumber' => '1700123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -109,7 +115,7 @@ return array ( 'ExampleNumber' => '771234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -134,8 +140,8 @@ return array ( 'ExampleNumber' => '1599123456', 'PossibleLength' => array ( - 0 => '4', - 1 => '10', + 0 => 4, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -160,8 +166,8 @@ return array ( 'ExampleNumber' => '1700123456', 'PossibleLength' => array ( - 0 => '4', - 1 => '10', + 0 => 4, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IM.php index 39e343e04..0e1a9e867 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IM.php @@ -1,7 +1,13 @@ '\\d{6,10}', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', + 0 => 6, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IN.php index 7b4db9d37..c122d0891 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IN.php @@ -1,7 +1,13 @@ 8, 1 => 9, - 2 => '10', + 2 => 10, 3 => 11, 4 => 12, 5 => 13, @@ -32,7 +38,7 @@ return array ( 'ExampleNumber' => '1123456789', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -40,12 +46,12 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '(?:7(?:0\\d{3}|2(?:[0235679]\\d{2}|[14][017-9]\\d|8(?:[0-59]\\d|6[089]|78)|9[389]\\d)|3(?:[05-8]\\d{2}|1(?:[089]\\d|7[5-8])|2(?:[5-8]\\d|[01][089])|3(?:07|[17-9]\\d)|4(?:[07-9]\\d|11)|9(?:[01689]\\d|59))|4(?:0[1-9]\\d|1(?:[015-9]\\d|4[08])|2(?:09|[1-7][089]|[89]\\d)|3(?:[0-8][089]|9\\d)|4(?:[089]\\d|11|7[02-8])|5(?:0[089]|[59]9)|7(?:0[3-9]|11|7[02-8]|[89]\\d)|8(?:[0-24-7][089]|[389]\\d)|9(?:[0-6][089]|7[08]|[89]\\d))|5(?:[034678]\\d|2[03-9]|5[017-9]|9[7-9])\\d|6(?:0[0-47]|1[0-257-9]|2[0-4]|3[19]|5[4589]|[6-9]\\d)\\d|7(?:0[2-9]|[1-79]\\d|8[1-9])\\d|8(?:[0-79]\\d{2}|88[01])|99[4-9]\\d)|8(?:0(?:[01589]\\d|6[67])|1(?:[02-57-9]\\d|1[0135-9])|2(?:[236-9]\\d|5[1-9])|3(?:[0357-9]\\d|4[1-9])|[45]\\d{2}|6[02457-9]\\d|7(?:07|[1-69]\\d)|8(?:[0-26-9]\\d|44|5[2-9])|9(?:[035-9]\\d|2[2-9]|4[0-8]))\\d|9\\d{4})\\d{5}', + 'NationalNumberPattern' => '(?:7(?:0\\d{3}|2(?:[0235679]\\d{2}|[14][017-9]\\d|8(?:[0-59]\\d|6[089]|78)|9[389]\\d)|3(?:[05-8]\\d{2}|1(?:[089]\\d|7[5-8])|2(?:[5-8]\\d|[01][089])|3(?:07|[17-9]\\d)|4(?:[07-9]\\d|11)|9(?:[01689]\\d|59|70))|4(?:0[1-9]\\d|1(?:[015-9]\\d|2[089]|4[08])|2(?:09|[1-7][089]|[89]\\d)|3(?:[0-8][089]|9\\d)|4(?:[089]\\d|11|7[02-8])|5(?:0[089]|[59]9)|7(?:0[3-9]|11|7[02-8]|[89]\\d)|8(?:[0-24-7][089]|[389]\\d)|9(?:[0-6][089]|7[08]|[89]\\d))|5(?:[034678]\\d|2[03-9]|5[017-9]|9[7-9])\\d|6(?:0[0-47]|1[0-257-9]|2[0-4]|3[19]|5[4589]|[6-9]\\d)\\d|7(?:0[2-9]|[1-79]\\d|8[1-9])\\d|8(?:[0-79]\\d{2}|88[01])|99[4-9]\\d)|8(?:0(?:[01589]\\d|6[67])|1(?:[02-57-9]\\d|1[0135-9])|2(?:[236-9]\\d|5[1-9])|3(?:[0357-9]\\d|4[1-9])|[45]\\d{2}|6[02457-9]\\d|7(?:07|[1-69]\\d)|8(?:[0-26-9]\\d|44|5[2-9])|9(?:[035-9]\\d|2[2-9]|4[0-8]))\\d|9\\d{4})\\d{5}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '9987654321', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -70,7 +76,7 @@ return array ( 'ExampleNumber' => '1861123456789', 'PossibleLength' => array ( - 0 => '13', + 0 => 13, ), 'PossibleLengthLocalOnly' => array ( @@ -83,7 +89,7 @@ return array ( 'ExampleNumber' => '18603451234', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -132,7 +138,7 @@ return array ( 'ExampleNumber' => '1409305260', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -177,8 +183,8 @@ return array ( 'leadingDigitsPatterns' => array ( 0 => '7(?:[023578]|4[0-57-9]|6[0-35-9]|99)|8(?:0[015689]|1[0-57-9]|2[2356-9]|3[0-57-9]|[45]|6[02457-9]|7[01-69]|8[0-24-9]|9[02-9])|9', - 1 => '7(?:[08]|2(?:[0235679]|[14][017-9]|8[0-79]|9[389])|3(?:[05-8]|1[07-9]|2[015-8]|[34][017-9]|9[015689])|4(?:0[1-9]|1[014-9]|[2389]|[47][017-9]|5[059])|5(?:[034678]|2[03-9]|5[017-9]|9[7-9])|6(?:0[0-47]|1[0-257-9]|2[0-4]|3[19]|5[4589]|[6-9])|7(?:0[2-9]|[1-79]|8[1-9])|99[4-9])|8(?:0(?:[01589]|6[67])|1(?:[02-57-9]|1[0135-9])|2(?:[236-9]|5[1-9])|3(?:[0357-9]|4[1-9])|[45]|6[02457-9]|7(?:07|[1-69])|8(?:[0-26-9]|44|5[2-9])|9(?:[035-9]|2[2-9]|4[0-8]))|9', - 2 => '7(?:0|2(?:[0235679]|[14][017-9]|8(?:[0-569]|78)|9[389])|3(?:[05-8]|1(?:[089]|7[5-9])|2(?:[5-8]|[01][089])|3[017-9]|4(?:[07-9]|11)|9(?:[01689]|59))|4(?:0[1-9]|1(?:[015-9]|4[08])|2(?:09|[1-7][089]|[89])|3(?:[0-8][089]|9)|4(?:[089]|11|7[02-8])|5(?:0[089]|[59]9)|7(?:0[3-9]|11|7[02-8]|[89])|8(?:[0-24-7][089]|[389])|9(?:[0-6][089]|7[08]|[89]))|5(?:[034678]|2[03-9]|5[017-9]|9[7-9])|6(?:0[0-47]|1[0-257-9]|2[0-4]|3[19]|5[4589]|[6-9])|7(?:0[2-9]|[1-79]|8[1-9])|8(?:[0-79]|88[01])|99[4-9])|8(?:0(?:[01589]|6[67])|1(?:[02-57-9]|1[0135-9])|2(?:[236-9]|5[1-9])|3(?:[0357-9]|4[1-9])|[45]|6[02457-9]|7(?:07|[1-69])|8(?:[0-26-9]|44|5[2-9])|9(?:[035-9]|2[2-9]|4[0-8]))|9', + 1 => '7(?:[08]|2(?:[0235679]|[14][017-9]|8[0-79]|9[389])|3(?:[05-8]|1[07-9]|2[015-8]|[34][017-9]|9[015-9])|4(?:0[1-9]|1[0-24-9]|[2389]|[47][017-9]|5[059])|5(?:[034678]|2[03-9]|5[017-9]|9[7-9])|6(?:0[0-47]|1[0-257-9]|2[0-4]|3[19]|5[4589]|[6-9])|7(?:0[2-9]|[1-79]|8[1-9])|99[4-9])|8(?:0(?:[01589]|6[67])|1(?:[02-57-9]|1[0135-9])|2(?:[236-9]|5[1-9])|3(?:[0357-9]|4[1-9])|[45]|6[02457-9]|7(?:07|[1-69])|8(?:[0-26-9]|44|5[2-9])|9(?:[035-9]|2[2-9]|4[0-8]))|9', + 2 => '7(?:0|2(?:[0235679]|[14][017-9]|8(?:[0-569]|78)|9[389])|3(?:[05-8]|1(?:[089]|7[5-9])|2(?:[5-8]|[01][089])|3[017-9]|4(?:[07-9]|11)|9(?:[01689]|59|70))|4(?:0[1-9]|1(?:[015-9]|2[089]|4[08])|2(?:09|[1-7][089]|[89])|3(?:[0-8][089]|9)|4(?:[089]|11|7[02-8])|5(?:0[089]|[59]9)|7(?:0[3-9]|11|7[02-8]|[89])|8(?:[0-24-7][089]|[389])|9(?:[0-6][089]|7[08]|[89]))|5(?:[034678]|2[03-9]|5[017-9]|9[7-9])|6(?:0[0-47]|1[0-257-9]|2[0-4]|3[19]|5[4589]|[6-9])|7(?:0[2-9]|[1-79]|8[1-9])|8(?:[0-79]|88[01])|99[4-9])|8(?:0(?:[01589]|6[67])|1(?:[02-57-9]|1[0135-9])|2(?:[236-9]|5[1-9])|3(?:[0357-9]|4[1-9])|[45]|6[02457-9]|7(?:07|[1-69])|8(?:[0-26-9]|44|5[2-9])|9(?:[035-9]|2[2-9]|4[0-8]))|9', ), 'nationalPrefixFormattingRule' => '0$1', 'domesticCarrierCodeFormattingRule' => '', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IO.php index 5aee96cac..a18da9157 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IO.php @@ -1,7 +1,13 @@ '\\d{7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IQ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IQ.php index 356388fb9..56f6c9bf5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IQ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IQ.php @@ -1,7 +1,13 @@ '\\d{6,10}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', - 2 => '10', + 0 => 8, + 1 => 9, + 2 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', - 1 => '7', + 0 => 6, + 1 => 7, ), ), 'fixedLine' => @@ -29,8 +35,8 @@ return array ( 'ExampleNumber' => '12345678', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -43,7 +49,7 @@ return array ( 'ExampleNumber' => '7912345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IR.php index 1b60c6b76..0b62d2b75 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IR.php @@ -1,7 +1,13 @@ 7, 4 => 8, 5 => 9, - 6 => '10', + 6 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -31,7 +37,7 @@ return array ( 'ExampleNumber' => '2123456789', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -44,7 +50,7 @@ return array ( 'ExampleNumber' => '9123456789', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -105,7 +111,7 @@ return array ( 'ExampleNumber' => '9932123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -118,7 +124,7 @@ return array ( 'ExampleNumber' => '9432123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IS.php index cdc9c219c..405d70103 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IS.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '7', - 1 => '9', + 0 => 7, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '4101234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -51,7 +57,7 @@ return array ( 'ExampleNumber' => '8001234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -64,7 +70,7 @@ return array ( 'ExampleNumber' => '9011234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -101,7 +107,7 @@ return array ( 'ExampleNumber' => '4921234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -126,7 +132,7 @@ return array ( 'ExampleNumber' => '8091234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -139,7 +145,7 @@ return array ( 'ExampleNumber' => '6211234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IT.php index f3ac9671a..3cede3782 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_IT.php @@ -1,7 +1,13 @@ '800123456', 'PossibleLength' => array ( - 0 => '6', - 1 => '9', + 0 => 6, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -71,7 +77,7 @@ return array ( 'ExampleNumber' => '899123456', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, 1 => 8, 2 => 9, 3 => 10, @@ -87,8 +93,8 @@ return array ( 'ExampleNumber' => '848123456', 'PossibleLength' => array ( - 0 => '6', - 1 => '9', + 0 => 6, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -101,8 +107,8 @@ return array ( 'ExampleNumber' => '1781234567', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -115,7 +121,7 @@ return array ( 'ExampleNumber' => '5512345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -164,7 +170,7 @@ return array ( 'ExampleNumber' => '848123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JE.php index 4d97c1648..d6904913a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JE.php @@ -1,7 +1,13 @@ '\\d{6,10}', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', + 0 => 6, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JM.php index 082699c66..b54ad895c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JM.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -33,7 +39,7 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '876(?:2(?:[16-9]\\d|58)|[348]\\d{2}|5(?:0[3-9]|27|6[0-24-9]|[3-578]\\d)|7(?:0[07]|7\\d|8[1-47-9]|9[0-36-9])|9(?:[01]9|9[0579]))\\d{4}', + 'NationalNumberPattern' => '876(?:2(?:[16-9]\\d|58)|[348]\\d{2}|5(?:0[3-9]|2[0-246-9]|6[0-24-9]|[3-578]\\d)|7(?:0[07]|7\\d|8[1-47-9]|9[0-36-9])|9(?:[01]9|9[0579]))\\d{4}', 'PossibleNumberPattern' => '\\d{7}(?:\\d{3})?', 'ExampleNumber' => '8762101234', 'PossibleLength' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JO.php index e468373ab..36490f081 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JO.php @@ -1,7 +1,13 @@ '\\d{8,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '62001234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '790123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '80012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '90012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -78,7 +84,7 @@ return array ( 'ExampleNumber' => '85012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -91,7 +97,7 @@ return array ( 'ExampleNumber' => '700123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -116,7 +122,7 @@ return array ( 'ExampleNumber' => '746612345', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -129,7 +135,7 @@ return array ( 'ExampleNumber' => '88101234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JP.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JP.php index 28a0f1369..424af9553 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JP.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_JP.php @@ -1,7 +1,13 @@ array ( 0 => 8, - 1 => '9', - 2 => '10', + 1 => 9, + 2 => 10, 3 => 11, 4 => 12, 5 => 13, @@ -34,7 +40,7 @@ return array ( 'ExampleNumber' => '312345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -47,7 +53,7 @@ return array ( 'ExampleNumber' => '9012345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -72,7 +78,7 @@ return array ( 'ExampleNumber' => '990123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -97,7 +103,7 @@ return array ( 'ExampleNumber' => '601234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -110,7 +116,7 @@ return array ( 'ExampleNumber' => '5012345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -123,7 +129,7 @@ return array ( 'ExampleNumber' => '2012345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -136,7 +142,7 @@ return array ( 'ExampleNumber' => '570123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KE.php index af8fe3cb6..31cd406f9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KE.php @@ -1,7 +1,13 @@ 7, 1 => 8, 2 => 9, - 3 => '10', + 3 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -38,12 +44,12 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '7(?:[0-36]\\d|5[0-6]|[79][0-7]|8[0-25-9])\\d{6}', + 'NationalNumberPattern' => '7(?:[0-369]\\d|4[0-2]|5[0-6]|7[0-7]|8[0-25-9])\\d{6}', 'PossibleNumberPattern' => '\\d{9}', 'ExampleNumber' => '712123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -56,8 +62,8 @@ return array ( 'ExampleNumber' => '800223456', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -70,7 +76,7 @@ return array ( 'ExampleNumber' => '900223456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KG.php index 6a00c93dc..c41bfac5a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KG.php @@ -1,7 +1,13 @@ '\\d{5,10}', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '5', - 1 => '6', + 0 => 5, + 1 => 6, ), ), 'fixedLine' => @@ -28,7 +34,7 @@ return array ( 'ExampleNumber' => '312123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -41,7 +47,7 @@ return array ( 'ExampleNumber' => '700123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KH.php index 9bb067678..d1db89d30 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KH.php @@ -1,7 +1,13 @@ '\\d{6,10}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', - 2 => '10', + 0 => 8, + 1 => 9, + 2 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', - 1 => '7', + 0 => 6, + 1 => 7, ), ), 'fixedLine' => @@ -29,8 +35,8 @@ return array ( 'ExampleNumber' => '23756789', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -43,8 +49,8 @@ return array ( 'ExampleNumber' => '91234567', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -57,7 +63,7 @@ return array ( 'ExampleNumber' => '1800123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -70,7 +76,7 @@ return array ( 'ExampleNumber' => '1900123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KI.php index 25e806748..a2bdbace2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KI.php @@ -1,7 +1,13 @@ '\\d{5,8}', 'PossibleLength' => array ( - 0 => '5', - 1 => '8', + 0 => 5, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '31234', 'PossibleLength' => array ( - 0 => '5', + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '72012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -64,7 +70,7 @@ return array ( 'ExampleNumber' => '30010000', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KM.php index 8cfc3a466..f0d30bf88 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KM.php @@ -1,7 +1,13 @@ '\\d{7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KN.php index 03838dfdd..fbad29c1e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KN.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KP.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KP.php index d9a0423b4..0e497c9ae 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KP.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KP.php @@ -1,7 +1,13 @@ '\\d{6,8}|\\d{10}', 'PossibleLength' => array ( - 0 => '8', - 1 => '10', + 0 => 8, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', - 1 => '7', + 0 => 6, + 1 => 7, ), ), 'fixedLine' => @@ -28,7 +34,7 @@ return array ( 'ExampleNumber' => '21234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -41,7 +47,7 @@ return array ( 'ExampleNumber' => '1921234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -150,7 +156,7 @@ return array ( 'ExampleNumber' => '23821234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KR.php index d7e106547..9f755944b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KR.php @@ -1,7 +1,13 @@ 4, 1 => 5, 2 => 6, - 3 => '8', - 4 => '9', - 5 => '10', + 3 => 8, + 4 => 9, + 5 => 10, 6 => 12, 7 => 13, 8 => 14, ), 'PossibleLengthLocalOnly' => array ( - 0 => '3', - 1 => '7', + 0 => 3, + 1 => 7, ), ), 'fixedLine' => @@ -53,8 +59,8 @@ return array ( 'ExampleNumber' => '1000000000', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -67,7 +73,7 @@ return array ( 'ExampleNumber' => '801234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, 1 => 12, 2 => 13, 3 => 14, @@ -83,7 +89,7 @@ return array ( 'ExampleNumber' => '602345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -108,7 +114,7 @@ return array ( 'ExampleNumber' => '5012345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -121,7 +127,7 @@ return array ( 'ExampleNumber' => '7012345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -134,8 +140,8 @@ return array ( 'ExampleNumber' => '1523456789', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -148,7 +154,7 @@ return array ( 'ExampleNumber' => '15441234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KW.php index 7cad39a98..008f83d13 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KW.php @@ -1,7 +1,13 @@ '\\d{7,8}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KY.php index df41766ac..1c4b0c3ec 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KY.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KZ.php index 8f71d7106..be4d163a9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_KZ.php @@ -1,7 +1,13 @@ '\\d{10}', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -20,7 +26,7 @@ return array ( ), 'fixedLine' => array ( - 'NationalNumberPattern' => '33622\\d{5}|7(?:1(?:0(?:[23]\\d|4[023]|59|63)|1(?:[23]\\d|4[0-79]|59)|2(?:[23]\\d|59)|3(?:2\\d|3[1-79]|4[0-35-9]|59)|4(?:2\\d|3[013-79]|4[0-8]|5[1-79])|5(?:2\\d|3[1-8]|4[1-7]|59)|6(?:[234]\\d|5[19]|61)|72\\d|8(?:[27]\\d|3[1-46-9]|4[0-5]))|2(?:1(?:[23]\\d|4[46-9]|5[3469])|2(?:2\\d|3[0679]|46|5[12679])|3(?:[234]\\d|5[139])|4(?:2\\d|3[1235-9]|59)|5(?:[23]\\d|4[01246-8]|59|61)|6(?:2\\d|3[1-9]|4[0-4]|59)|7(?:[237]\\d|40|5[279])|8(?:[23]\\d|4[0-3]|59)|9(?:2\\d|3[124578]|59)))\\d{5}', + 'NationalNumberPattern' => '33622\\d{5}|7(?:1(?:0(?:[23]\\d|4[023]|59|63)|1(?:[23]\\d|4[0-79]|59)|2(?:[23]\\d|59)|3(?:2\\d|3[1-79]|4[0-35-9]|59)|4(?:2\\d|3[013-79]|4[0-8]|5[1-79])|5(?:2\\d|3[1-8]|4[1-7]|59)|6(?:[234]\\d|5[19]|61)|72\\d|8(?:[27]\\d|3[1-46-9]|4[0-5]))|2(?:1(?:[23]\\d|4[46-9]|5[3469])|2(?:2\\d|3[0679]|46|5[12679])|3(?:[234]\\d|5[139])|4(?:2\\d|3[1235-9]|59)|5(?:[23]\\d|4[01246-8]|59|61)|6(?:2\\d|3[1-9]|4[0-4]|59)|7(?:[2379]\\d|40|5[279])|8(?:[23]\\d|4[0-3]|59)|9(?:2\\d|3[124578]|59)))\\d{5}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '7123456789', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LA.php index ad88e2a25..0b1370383 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LA.php @@ -1,7 +1,13 @@ '\\d{6,10}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', - 2 => '10', + 0 => 8, + 1 => 9, + 2 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', + 0 => 6, ), ), 'fixedLine' => @@ -28,8 +34,8 @@ return array ( 'ExampleNumber' => '21212862', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -42,7 +48,7 @@ return array ( 'ExampleNumber' => '2023123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LB.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LB.php index 28961f38b..a7ddb28c1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LB.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LB.php @@ -1,7 +1,13 @@ '\\d{7,8}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '1123456', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -63,7 +69,7 @@ return array ( 'ExampleNumber' => '90123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -76,7 +82,7 @@ return array ( 'ExampleNumber' => '80123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LC.php index 7f57edc29..c18cf63e5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LC.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LI.php index 50c2673fe..ab281f77c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LI.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '7', - 1 => '9', + 0 => 7, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '2345678', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -51,7 +57,7 @@ return array ( 'ExampleNumber' => '8002222', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -64,7 +70,7 @@ return array ( 'ExampleNumber' => '9002222', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -125,7 +131,7 @@ return array ( 'ExampleNumber' => '8702812', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -138,7 +144,7 @@ return array ( 'ExampleNumber' => '697861234', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LK.php index 7f4bb96c1..46cfd453f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LK.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LR.php index e3ebfd1d0..8863e7090 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LR.php @@ -1,20 +1,26 @@ array ( - 'NationalNumberPattern' => '2\\d{7,8}|[37-9]\\d{8}|4\\d{6}|5\\d{6,8}', + 'NationalNumberPattern' => '2\\d{7,8}|[378]\\d{8}|4\\d{6}|5\\d{6,8}', 'PossibleNumberPattern' => '\\d{7,9}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', - 2 => '9', + 0 => 7, + 1 => 8, + 2 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -27,7 +33,7 @@ return array ( 'ExampleNumber' => '21234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -35,13 +41,13 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '(?:330\\d|4[67]|5\\d|77\\d{2}|88\\d{2}|994\\d)\\d{5}|(?:20\\d{3}|33(?:0\\d{2}|2(?:02|5\\d))|555\\d{2}|77[0567]\\d{2}|88[068]\\d{2}|994\\d{2})\\d{4}', + 'NationalNumberPattern' => '(?:20\\d{3}|330\\d{2}|4[67]\\d|5(?:55)?\\d{2}|77\\d{3}|88\\d{3})\\d{4}', 'PossibleNumberPattern' => '\\d{7,9}', 'ExampleNumber' => '770123456', 'PossibleLength' => array ( - 0 => '7', - 1 => '9', + 0 => 7, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -61,12 +67,11 @@ return array ( ), 'premiumRate' => array ( - 'NationalNumberPattern' => '90[03]\\d{6}', - 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '900123456', + 'NationalNumberPattern' => 'NA', + 'PossibleNumberPattern' => 'NA', 'PossibleLength' => array ( - 0 => '9', + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( @@ -98,12 +103,12 @@ return array ( ), 'voip' => array ( - 'NationalNumberPattern' => '332(?:0[02]|5\\d)\\d{4}', + 'NationalNumberPattern' => '332(?:02|[25]\\d)\\d{4}', 'PossibleNumberPattern' => '\\d{9}', - 'ExampleNumber' => '332001234', + 'ExampleNumber' => '332021234', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -179,35 +184,23 @@ return array ( ), 1 => array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{3})', + 'pattern' => '([4-5])(\\d{3})(\\d{3})', 'format' => '$1 $2 $3', 'leadingDigitsPatterns' => array ( - 0 => '[2579]', + 0 => '[45]', ), 'nationalPrefixFormattingRule' => '0$1', 'domesticCarrierCodeFormattingRule' => '', 'nationalPrefixOptionalWhenFormatting' => false, ), 2 => - array ( - 'pattern' => '([4-6])(\\d{3})(\\d{3})', - 'format' => '$1 $2 $3', - 'leadingDigitsPatterns' => - array ( - 0 => '[4-6]', - ), - 'nationalPrefixFormattingRule' => '0$1', - 'domesticCarrierCodeFormattingRule' => '', - 'nationalPrefixOptionalWhenFormatting' => false, - ), - 3 => array ( 'pattern' => '(\\d{2})(\\d{3})(\\d{4})', 'format' => '$1 $2 $3', 'leadingDigitsPatterns' => array ( - 0 => '[38]', + 0 => '[23578]', ), 'nationalPrefixFormattingRule' => '0$1', 'domesticCarrierCodeFormattingRule' => '', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LS.php index ff8223688..4bd6f875e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LS.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LT.php index 47d90fd55..abdb1fca4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LT.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LU.php index 93f197a9a..78e6be9c2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LU.php @@ -1,7 +1,13 @@ '628123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -57,7 +63,7 @@ return array ( 'ExampleNumber' => '80012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -70,7 +76,7 @@ return array ( 'ExampleNumber' => '90012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -83,7 +89,7 @@ return array ( 'ExampleNumber' => '80112345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -96,7 +102,7 @@ return array ( 'ExampleNumber' => '70123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LV.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LV.php index 4dd2102f4..1289f501e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LV.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LV.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LY.php index 4b514207f..33da232f9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_LY.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MA.php index 7bb9b22cb..00704c922 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MA.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MC.php index 8d7d85b10..b573d45b4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MC.php @@ -1,7 +1,13 @@ '\\d{8,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '99123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -51,7 +57,7 @@ return array ( 'ExampleNumber' => '90123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -147,7 +153,7 @@ return array ( 'PossibleNumberPattern' => '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MD.php index 4d978ee5e..b9fb65f7b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MD.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -20,7 +26,7 @@ return array ( ), 'fixedLine' => array ( - 'NationalNumberPattern' => '(?:2(?:1[0569]|2\\d|3[015-7]|4[1-46-9]|5[0-24689]|6[2-589]|7[1-37]|9[1347-9])|5(?:33|5[257]))\\d{5}', + 'NationalNumberPattern' => '(?:2[1-9]\\d|3[1-79]\\d|5(?:33|5[257]))\\d{5}', 'PossibleNumberPattern' => '\\d{8}', 'ExampleNumber' => '22212345', 'PossibleLength' => @@ -32,7 +38,7 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '(?:562\\d|6(?:[089]\\d{2}|[12][01]\\d|7(?:[1-6]\\d|7[0-4]))|7(?:6[07]|7[457-9]|[89]\\d)\\d)\\d{4}', + 'NationalNumberPattern' => '(?:562|6\\d{2}|7(?:[189]\\d|6[07]|7[457-9]))\\d{5}', 'PossibleNumberPattern' => '\\d{8}', 'ExampleNumber' => '62112345', 'PossibleLength' => @@ -116,7 +122,7 @@ return array ( ), 'uan' => array ( - 'NationalNumberPattern' => '8(?:03|14)\\d{5}', + 'NationalNumberPattern' => '803\\d{5}', 'PossibleNumberPattern' => '\\d{8}', 'ExampleNumber' => '80312345', 'PossibleLength' => @@ -176,7 +182,7 @@ return array ( 'format' => '$1 $2 $3', 'leadingDigitsPatterns' => array ( - 0 => '2[13-79]|[5-7]', + 0 => '2[13-9]|[5-7]', ), 'nationalPrefixFormattingRule' => '0$1', 'domesticCarrierCodeFormattingRule' => '', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ME.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ME.php index 80363152a..42efd66d9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ME.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ME.php @@ -1,7 +1,13 @@ '\\d{6,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', + 0 => 6, ), ), 'fixedLine' => @@ -27,7 +33,7 @@ return array ( 'ExampleNumber' => '30234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '80080002', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '94515151', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -102,7 +108,7 @@ return array ( 'ExampleNumber' => '78108780', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -127,7 +133,7 @@ return array ( 'ExampleNumber' => '77273012', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MF.php index 00aac1f4f..51af07f5f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MF.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MG.php index cc33483de..fa647e7d5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MG.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MH.php index 379c1ac03..b90b06bde 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MH.php @@ -1,7 +1,13 @@ '\\d{7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MK.php index 59b7e8d9f..261a1b965 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MK.php @@ -1,7 +1,13 @@ '\\d{6,8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', - 1 => '7', + 0 => 6, + 1 => 7, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ML.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ML.php index 699c8f8e4..4c1832cde 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ML.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ML.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MM.php index 1b4d441ba..c98dc67bc 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MM.php @@ -1,7 +1,13 @@ array ( - 0 => '5', + 0 => 5, ), ), 'fixedLine' => @@ -110,7 +116,7 @@ return array ( 'ExampleNumber' => '13331234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MN.php index 8612c9c69..f5dafd4c3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MN.php @@ -1,7 +1,13 @@ array ( - 0 => '6', - 1 => '7', + 0 => 6, + 1 => 7, ), ), 'fixedLine' => @@ -41,7 +47,7 @@ return array ( 'ExampleNumber' => '88123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -102,7 +108,7 @@ return array ( 'ExampleNumber' => '75123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MO.php index 806cfa6ee..9ef3eeaa4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MO.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MP.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MP.php index 5786e0a81..ca64b07de 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MP.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MP.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MQ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MQ.php index 21fec52e3..2fd8fde86 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MQ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MQ.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -32,7 +38,7 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '696(?:[0-479]\\d|5[01]|8[0-689])\\d{4}', + 'NationalNumberPattern' => '696(?:[0-479]\\d|5[013]|8[0-689])\\d{4}', 'PossibleNumberPattern' => '\\d{9}', 'ExampleNumber' => '696201234', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MR.php index 6d5c6711b..38408eefd 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MR.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MS.php index 94838bb83..ee5c06e46 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MS.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MT.php index 9b3621926..2a4530f4c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MT.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MU.php index 5476b860e..20b548a6c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MU.php @@ -1,7 +1,13 @@ '\\d{7,8}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -33,12 +39,12 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '5(?:2[59]\\d|4(?:2[1-389]|4\\d|7[1-9]|9\\d)|7\\d{2}|8(?:[0-2568]\\d|7[15-8])|9[0-8]\\d)\\d{4}', + 'NationalNumberPattern' => '5(?:2[59]\\d|4(?:2[1-389]|4\\d|7[1-9]|9\\d)|7\\d{2}|8(?:[0-25689]\\d|7[15-8])|9[0-8]\\d)\\d{4}', 'PossibleNumberPattern' => '\\d{8}', 'ExampleNumber' => '52512345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -51,7 +57,7 @@ return array ( 'ExampleNumber' => '8001234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -64,7 +70,7 @@ return array ( 'ExampleNumber' => '3012345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -101,7 +107,7 @@ return array ( 'ExampleNumber' => '3201234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MV.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MV.php index 22538aafc..e3280082a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MV.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MV.php @@ -1,7 +1,13 @@ '\\d{7,10}', 'PossibleLength' => array ( - 0 => '7', - 1 => '10', + 0 => 7, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '6701234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '7712345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -64,7 +70,7 @@ return array ( 'ExampleNumber' => '9001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -113,7 +119,7 @@ return array ( 'ExampleNumber' => '7812345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MW.php index 972788101..d2e52f252 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MW.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '7', - 1 => '9', + 0 => 7, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -38,7 +44,7 @@ return array ( 'ExampleNumber' => '991234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MX.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MX.php index fcd6b1ae9..4ae029eeb 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MX.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MX.php @@ -1,7 +1,13 @@ '\\d{7,11}', 'PossibleLength' => array ( - 0 => '10', - 1 => '11', + 0 => 10, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), ), 'fixedLine' => @@ -28,7 +34,7 @@ return array ( 'ExampleNumber' => '2221234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -41,7 +47,7 @@ return array ( 'ExampleNumber' => '12221234567', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -54,7 +60,7 @@ return array ( 'ExampleNumber' => '8001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -67,7 +73,7 @@ return array ( 'ExampleNumber' => '9001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -80,7 +86,7 @@ return array ( 'ExampleNumber' => '3001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -93,7 +99,7 @@ return array ( 'ExampleNumber' => '5001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MY.php index e869cd7a1..68383afc4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MY.php @@ -1,7 +1,13 @@ '\\d{6,10}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', - 2 => '10', + 0 => 8, + 1 => 9, + 2 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', - 1 => '7', + 0 => 6, + 1 => 7, ), ), 'fixedLine' => @@ -29,8 +35,8 @@ return array ( 'ExampleNumber' => '323456789', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -43,8 +49,8 @@ return array ( 'ExampleNumber' => '123456789', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -57,7 +63,7 @@ return array ( 'ExampleNumber' => '1300123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -70,7 +76,7 @@ return array ( 'ExampleNumber' => '1600123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -107,7 +113,7 @@ return array ( 'ExampleNumber' => '1541234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MZ.php index 1b625da17..f02eb5752 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_MZ.php @@ -1,7 +1,13 @@ '\\d{8,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '21123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '821234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NA.php index 0cedba43b..ffbb3d361 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NA.php @@ -1,7 +1,13 @@ '\\d{8,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -38,7 +44,7 @@ return array ( 'ExampleNumber' => '811234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -63,7 +69,7 @@ return array ( 'ExampleNumber' => '870123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NC.php index 5a48f3ff1..7603888c9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NC.php @@ -1,7 +1,13 @@ '\\d{6}', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NE.php index 87b86ec44..f47dfc2e1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NE.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NF.php index 3219a4ed6..1fd1fa076 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NF.php @@ -1,7 +1,13 @@ '\\d{5,6}', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( - 0 => '5', + 0 => 5, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NG.php index a1929f4e0..ccb872962 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NG.php @@ -1,7 +1,13 @@ '\\d{5,14}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', - 2 => '10', + 0 => 7, + 1 => 8, + 2 => 10, 3 => 11, 4 => 12, 5 => 13, @@ -22,8 +28,8 @@ return array ( ), 'PossibleLengthLocalOnly' => array ( - 0 => '5', - 1 => '6', + 0 => 5, + 1 => 6, ), ), 'fixedLine' => @@ -33,8 +39,8 @@ return array ( 'ExampleNumber' => '12345678', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -42,13 +48,13 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '(?:1(?:7[34]\\d|8(?:04|[124579]\\d|8[0-3])|95\\d)|287[0-7]|3(?:18[1-8]|88[0-7]|9(?:8[5-9]|6[1-5]))|4(?:28[0-2]|6(?:7[1-9]|8[02-47])|88[0-2])|5(?:2(?:7[7-9]|8\\d)|38[1-79]|48[0-7]|68[4-7])|6(?:2(?:7[7-9]|8\\d)|4(?:3[7-9]|[68][129]|7[04-69]|9[1-8])|58[0-2]|98[7-9])|7(?:38[0-7]|69[1-8]|78[2-4])|8(?:28[3-9]|38[0-2]|4(?:2[12]|3[147-9]|5[346]|7[4-9]|8[014-689]|90)|58[1-8]|78[2-9]|88[5-7])|98[07]\\d)\\d{4}|(?:70[1-689]\\d|8(?:0(?:1[01]|[2-9]\\d)|1(?:[0-8]\\d|9[01]))|90[23589]\\d)\\d{6}', + 'NationalNumberPattern' => '(?:1(?:7[34]\\d|8(?:04|[124579]\\d|8[0-3])|95\\d)|287[0-7]|3(?:18[1-8]|88[0-7]|9(?:8[5-9]|6[1-5]))|4(?:28[0-2]|6(?:7[1-9]|8[02-47])|88[0-2])|5(?:2(?:7[7-9]|8\\d)|38[1-79]|48[0-7]|68[4-7])|6(?:2(?:7[7-9]|8\\d)|4(?:3[7-9]|[68][129]|7[04-69]|9[1-8])|58[0-2]|98[7-9])|7(?:38[0-7]|69[1-8]|78[2-4])|8(?:28[3-9]|38[0-2]|4(?:2[12]|3[147-9]|5[346]|7[4-9]|8[014-689]|90)|58[1-8]|78[2-9]|88[5-7])|98[07]\\d)\\d{4}|(?:70[1-689]\\d|8(?:0(?:1[01]|[2-9]\\d)|1(?:[0-8]\\d|9[01]))|90[2357-9]\\d)\\d{6}', 'PossibleNumberPattern' => '\\d{8,10}', 'ExampleNumber' => '8021234567', 'PossibleLength' => array ( - 0 => '8', - 1 => '10', + 0 => 8, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -182,11 +188,11 @@ return array ( array ( 0 => array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{3,4})', + 'pattern' => '(\\d)(\\d{3})(\\d{3,4})', 'format' => '$1 $2 $3', 'leadingDigitsPatterns' => array ( - 0 => '70|8[01]|90[23589]', + 0 => '[12]|9(?:0[3-9]|[1-9])', ), 'nationalPrefixFormattingRule' => '0$1', 'domesticCarrierCodeFormattingRule' => '', @@ -194,11 +200,11 @@ return array ( ), 1 => array ( - 'pattern' => '(\\d)(\\d{3})(\\d{3,4})', + 'pattern' => '(\\d{3})(\\d{3})(\\d{3,4})', 'format' => '$1 $2 $3', 'leadingDigitsPatterns' => array ( - 0 => '[12]|9(?:0[3-9]|[1-9])', + 0 => '70|8[01]|90[2357-9]', ), 'nationalPrefixFormattingRule' => '0$1', 'domesticCarrierCodeFormattingRule' => '', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NI.php index 1e37e06ee..6cbe8f7c6 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NI.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NL.php index e0194b3ff..835123297 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NL.php @@ -1,7 +1,13 @@ '\\d{5,10}', 'PossibleLength' => array ( - 0 => '5', - 1 => '6', + 0 => 5, + 1 => 6, 2 => 7, 3 => 8, - 4 => '9', + 4 => 9, 5 => 10, ), 'PossibleLengthLocalOnly' => @@ -30,7 +36,7 @@ return array ( 'ExampleNumber' => '101234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -43,7 +49,7 @@ return array ( 'ExampleNumber' => '612345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -112,7 +118,7 @@ return array ( 'ExampleNumber' => '851234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -125,7 +131,7 @@ return array ( 'ExampleNumber' => '662345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -138,8 +144,8 @@ return array ( 'ExampleNumber' => '14020', 'PossibleLength' => array ( - 0 => '5', - 1 => '6', + 0 => 5, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -163,8 +169,8 @@ return array ( 'PossibleNumberPattern' => '\\d{5,6}', 'PossibleLength' => array ( - 0 => '5', - 1 => '6', + 0 => 5, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NO.php index 71e7d44b6..35e2ce3f5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NO.php @@ -1,7 +1,13 @@ '\\d{5}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '5', - 1 => '8', + 0 => 5, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '21234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '40612345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '80012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '82012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -78,7 +84,7 @@ return array ( 'ExampleNumber' => '81021234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -91,7 +97,7 @@ return array ( 'ExampleNumber' => '88012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -104,7 +110,7 @@ return array ( 'ExampleNumber' => '85012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -141,7 +147,7 @@ return array ( 'ExampleNumber' => '81212345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NP.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NP.php index 53cfc68d0..061704897 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NP.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NP.php @@ -1,7 +1,13 @@ '\\d{6,10}', 'PossibleLength' => array ( - 0 => '8', - 1 => '10', + 0 => 8, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', - 1 => '7', + 0 => 6, + 1 => 7, ), ), 'fixedLine' => @@ -28,7 +34,7 @@ return array ( 'ExampleNumber' => '14567890', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -41,7 +47,7 @@ return array ( 'ExampleNumber' => '9841234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NR.php index 76593857e..b84ac2d49 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NR.php @@ -1,7 +1,13 @@ '\\d{7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NU.php index 8e1b1b545..44bcf2c16 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NU.php @@ -1,7 +1,13 @@ '\\d{4}', 'PossibleLength' => array ( - 0 => '4', + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NZ.php index ec6bc876f..6569174cb 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_NZ.php @@ -1,7 +1,13 @@ '\\d{7,11}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, 1 => 9, 2 => 10, 3 => 11, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -29,7 +35,7 @@ return array ( 'ExampleNumber' => '32345678', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -99,7 +105,7 @@ return array ( 'ExampleNumber' => '701234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -124,8 +130,8 @@ return array ( 'ExampleNumber' => '26123456', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_OM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_OM.php index 3f7f3b658..6afb5a2bc 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_OM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_OM.php @@ -1,7 +1,13 @@ array ( 0 => 7, - 1 => '8', + 1 => 8, 2 => 9, ), 'PossibleLengthLocalOnly' => @@ -27,7 +33,7 @@ return array ( 'ExampleNumber' => '23123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -40,7 +46,7 @@ return array ( 'ExampleNumber' => '92123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '90012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PA.php index 597d14bf7..022f8df97 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PA.php @@ -1,7 +1,13 @@ '\\d{7,8}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '2001234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -51,7 +57,7 @@ return array ( 'ExampleNumber' => '8001234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -64,7 +70,7 @@ return array ( 'ExampleNumber' => '8601234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PE.php index 597b4e6c5..b55236f40 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PE.php @@ -1,7 +1,13 @@ '\\d{6,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', - 1 => '7', + 0 => 6, + 1 => 7, ), ), 'fixedLine' => @@ -28,7 +34,7 @@ return array ( 'ExampleNumber' => '11234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -41,7 +47,7 @@ return array ( 'ExampleNumber' => '912345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -54,7 +60,7 @@ return array ( 'ExampleNumber' => '80012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -67,7 +73,7 @@ return array ( 'ExampleNumber' => '80512345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -80,7 +86,7 @@ return array ( 'ExampleNumber' => '80112345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -93,7 +99,7 @@ return array ( 'ExampleNumber' => '80212345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PF.php index 3a9f6a28f..5e020698e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PF.php @@ -1,7 +1,13 @@ '\\d{6}(?:\\d{2})?', 'PossibleLength' => array ( - 0 => '6', - 1 => '8', + 0 => 6, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -38,7 +44,7 @@ return array ( 'ExampleNumber' => '87123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -147,7 +153,7 @@ return array ( 'ExampleNumber' => '441234', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PG.php index 9faed3545..b993d12a3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PG.php @@ -1,7 +1,13 @@ '\\d{7,8}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '3123456', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -51,7 +57,7 @@ return array ( 'ExampleNumber' => '1801234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -100,7 +106,7 @@ return array ( 'ExampleNumber' => '2751234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PH.php index 2a2fee7cc..21c50845f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PH.php @@ -1,7 +1,13 @@ '\\d{5,13}', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, 1 => 8, 2 => 9, 3 => 10, @@ -22,8 +28,8 @@ return array ( ), 'PossibleLengthLocalOnly' => array ( - 0 => '5', - 1 => '7', + 0 => 5, + 1 => 7, ), ), 'fixedLine' => @@ -33,7 +39,7 @@ return array ( 'ExampleNumber' => '21234567', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, 1 => 8, 2 => 9, 3 => 10, @@ -49,7 +55,7 @@ return array ( 'ExampleNumber' => '9051234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PK.php index e9d5c8232..179ee4b00 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PK.php @@ -1,7 +1,13 @@ '\\d{6,12}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', - 2 => '10', - 3 => '11', - 4 => '12', + 0 => 8, + 1 => 9, + 2 => 10, + 3 => 11, + 4 => 12, ), 'PossibleLengthLocalOnly' => array ( @@ -31,8 +37,8 @@ return array ( 'ExampleNumber' => '2123456789', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -45,7 +51,7 @@ return array ( 'ExampleNumber' => '3012345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -58,7 +64,7 @@ return array ( 'ExampleNumber' => '80012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -71,7 +77,7 @@ return array ( 'ExampleNumber' => '90012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -96,7 +102,7 @@ return array ( 'ExampleNumber' => '122044444', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -133,8 +139,8 @@ return array ( 'ExampleNumber' => '21111825888', 'PossibleLength' => array ( - 0 => '11', - 1 => '12', + 0 => 11, + 1 => 12, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PL.php index d441b9bfb..6e176d7d6 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PL.php @@ -1,7 +1,13 @@ array ( 0 => 6, - 1 => '7', + 1 => 7, 2 => 8, - 3 => '9', + 3 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -28,8 +34,8 @@ return array ( 'ExampleNumber' => '123456789', 'PossibleLength' => array ( - 0 => '7', - 1 => '9', + 0 => 7, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -42,7 +48,7 @@ return array ( 'ExampleNumber' => '512345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -55,7 +61,7 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -68,7 +74,7 @@ return array ( 'ExampleNumber' => '701234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -81,7 +87,7 @@ return array ( 'ExampleNumber' => '801234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -106,7 +112,7 @@ return array ( 'ExampleNumber' => '391234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PM.php index 7d3c3d18b..4abef33d1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PM.php @@ -1,7 +1,13 @@ '\\d{6}', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PR.php index 411c25163..7e1cb1b1c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PR.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PS.php index 5c23e3ea2..138d93e17 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PS.php @@ -1,7 +1,13 @@ '\\d{4,10}', 'PossibleLength' => array ( - 0 => '4', - 1 => '5', - 2 => '8', - 3 => '9', - 4 => '10', + 0 => 4, + 1 => 5, + 2 => 8, + 3 => 9, + 4 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -30,7 +36,7 @@ return array ( 'ExampleNumber' => '22234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -43,7 +49,7 @@ return array ( 'ExampleNumber' => '599123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -56,7 +62,7 @@ return array ( 'ExampleNumber' => '1800123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -69,8 +75,8 @@ return array ( 'ExampleNumber' => '19123', 'PossibleLength' => array ( - 0 => '4', - 1 => '5', + 0 => 4, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -83,7 +89,7 @@ return array ( 'ExampleNumber' => '1700123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PT.php index f4470b673..3d087a163 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PT.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PW.php index cc68ab2ab..5be92e6ea 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PW.php @@ -1,7 +1,13 @@ '\\d{7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PY.php index ce47cce43..2720594c5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_PY.php @@ -1,7 +1,13 @@ array ( - 0 => '5', + 0 => 5, ), ), 'fixedLine' => @@ -44,7 +50,7 @@ return array ( 'ExampleNumber' => '961456789', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -105,7 +111,7 @@ return array ( 'ExampleNumber' => '870012345', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_QA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_QA.php index 60b1f72f7..523873888 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_QA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_QA.php @@ -1,7 +1,13 @@ '\\d{7,8}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '44123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '33123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '8001234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -113,7 +119,7 @@ return array ( 'ExampleNumber' => '2123456', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RE.php index d91570a1b..6158f6c1e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RE.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RO.php index dcd1b2e5a..03bb7cf1b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RO.php @@ -1,7 +1,13 @@ '\\d{6,9}', 'PossibleLength' => array ( - 0 => '6', - 1 => '9', + 0 => 6, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -38,7 +44,7 @@ return array ( 'ExampleNumber' => '712345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -51,7 +57,7 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -64,7 +70,7 @@ return array ( 'ExampleNumber' => '900123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -77,7 +83,7 @@ return array ( 'ExampleNumber' => '801123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -90,7 +96,7 @@ return array ( 'ExampleNumber' => '802123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -127,7 +133,7 @@ return array ( 'ExampleNumber' => '372123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RS.php index 81e8aaf19..eedef740f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RS.php @@ -1,7 +1,13 @@ array ( - 0 => '5', + 0 => 5, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RU.php index 7381c68ee..3653f7216 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RU.php @@ -1,7 +1,13 @@ '\\d{10}', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RW.php index 7ef9f1181..3710255d1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_RW.php @@ -1,7 +1,13 @@ '\\d{8,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -38,7 +44,7 @@ return array ( 'ExampleNumber' => '720123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -51,7 +57,7 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -64,7 +70,7 @@ return array ( 'ExampleNumber' => '900123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SA.php index d85ecfe67..1edb0b81a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SA.php @@ -1,7 +1,13 @@ '\\d{7,10}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', - 2 => '10', + 0 => 8, + 1 => 9, + 2 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -28,8 +34,8 @@ return array ( 'ExampleNumber' => '112345678', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -42,8 +48,8 @@ return array ( 'ExampleNumber' => '512345678', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -56,7 +62,7 @@ return array ( 'ExampleNumber' => '8001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -81,7 +87,7 @@ return array ( 'ExampleNumber' => '920012345', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SB.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SB.php index 150338aa7..61e227a44 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SB.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SB.php @@ -1,7 +1,13 @@ '\\d{5,7}', 'PossibleLength' => array ( - 0 => '5', - 1 => '7', + 0 => 5, + 1 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '40123', 'PossibleLength' => array ( - 0 => '5', + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -51,7 +57,7 @@ return array ( 'ExampleNumber' => '18123', 'PossibleLength' => array ( - 0 => '5', + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -100,7 +106,7 @@ return array ( 'ExampleNumber' => '51123', 'PossibleLength' => array ( - 0 => '5', + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SC.php index add0d58a2..24c44c1a5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SC.php @@ -1,7 +1,13 @@ '\\d{6,7}', 'PossibleLength' => array ( - 0 => '6', - 1 => '7', + 0 => 6, + 1 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '4217123', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '2510123', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '800000', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -101,7 +107,7 @@ return array ( 'ExampleNumber' => '6412345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SD.php index d8beb55ef..8aac9ba18 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SD.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SE.php index 6ef21070e..8304c64fb 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SE.php @@ -1,7 +1,13 @@ 8, 3 => 9, 4 => 10, - 5 => '12', + 5 => 12, ), 'PossibleLengthLocalOnly' => array ( @@ -45,7 +51,7 @@ return array ( 'ExampleNumber' => '701234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -90,8 +96,8 @@ return array ( 'ExampleNumber' => '771234567', 'PossibleLength' => array ( - 0 => '6', - 1 => '9', + 0 => 6, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -104,7 +110,7 @@ return array ( 'ExampleNumber' => '751234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -129,7 +135,7 @@ return array ( 'ExampleNumber' => '740123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -154,7 +160,7 @@ return array ( 'ExampleNumber' => '254123456789', 'PossibleLength' => array ( - 0 => '12', + 0 => 12, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SG.php index 88d4ed4f4..48bab2a26 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SG.php @@ -1,7 +1,13 @@ '\\d{8,11}', 'PossibleLength' => array ( - 0 => '8', - 1 => '10', - 2 => '11', + 0 => 8, + 1 => 10, + 2 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -27,7 +33,7 @@ return array ( 'ExampleNumber' => '61234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -40,7 +46,7 @@ return array ( 'ExampleNumber' => '81234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -53,8 +59,8 @@ return array ( 'ExampleNumber' => '18001234567', 'PossibleLength' => array ( - 0 => '10', - 1 => '11', + 0 => 10, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -67,7 +73,7 @@ return array ( 'ExampleNumber' => '19001234567', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -104,7 +110,7 @@ return array ( 'ExampleNumber' => '31234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -129,7 +135,7 @@ return array ( 'ExampleNumber' => '70001234567', 'PossibleLength' => array ( - 0 => '11', + 0 => 11, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SH.php index b3d5111a3..af370ba69 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SH.php @@ -1,7 +1,13 @@ '\\d{4,5}', 'PossibleLength' => array ( - 0 => '5', + 0 => 4, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -36,6 +43,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -95,6 +103,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SI.php index dc475f5aa..86d4daaf9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SI.php @@ -1,7 +1,13 @@ 5, 1 => 6, 2 => 7, - 3 => '8', + 3 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -28,7 +34,7 @@ return array ( 'ExampleNumber' => '11234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -41,7 +47,7 @@ return array ( 'ExampleNumber' => '31234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -105,7 +111,7 @@ return array ( 'ExampleNumber' => '59012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SJ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SJ.php index 569380b9d..146c358af 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SJ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SJ.php @@ -1,7 +1,13 @@ '\\d{5}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '5', - 1 => '8', + 0 => 5, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '79123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '41234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '80012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '82012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -78,7 +84,7 @@ return array ( 'ExampleNumber' => '81021234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -91,7 +97,7 @@ return array ( 'ExampleNumber' => '88012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -104,7 +110,7 @@ return array ( 'ExampleNumber' => '85012345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -141,7 +147,7 @@ return array ( 'ExampleNumber' => '81212345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SK.php index f79fea522..5f3015b2e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SK.php @@ -1,7 +1,13 @@ '\\d{6,9}', 'PossibleLength' => array ( - 0 => '6', - 1 => '7', - 2 => '9', + 0 => 6, + 1 => 7, + 2 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '912123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '900123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -78,7 +84,7 @@ return array ( 'ExampleNumber' => '850123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -103,7 +109,7 @@ return array ( 'ExampleNumber' => '690123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -116,7 +122,7 @@ return array ( 'ExampleNumber' => '9090123', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -129,7 +135,7 @@ return array ( 'ExampleNumber' => '961234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -154,8 +160,8 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '7', - 1 => '9', + 0 => 7, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SL.php index 20b9ef278..ac2672077 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SL.php @@ -1,7 +1,13 @@ '\\d{6,8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', + 0 => 6, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SM.php index 7605c6e2d..d59e5d414 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SM.php @@ -1,7 +1,13 @@ '\\d{6,10}', 'PossibleLength' => array ( - 0 => '8', - 1 => '10', + 0 => 8, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', + 0 => 6, ), ), 'fixedLine' => @@ -27,7 +33,7 @@ return array ( 'ExampleNumber' => '0549886377', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -40,7 +46,7 @@ return array ( 'ExampleNumber' => '66661212', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '71123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -102,7 +108,7 @@ return array ( 'ExampleNumber' => '58001110', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SN.php index 0238a062c..fb07921c0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SN.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -20,7 +26,7 @@ return array ( ), 'fixedLine' => array ( - 'NationalNumberPattern' => '3(?:0(?:1[0-2]|80)|282|3(?:8[1-9]|9[3-9])|611|90[1-5])\\d{5}', + 'NationalNumberPattern' => '3(?:0(?:1[0-2]|80)|282|3(?:8[1-9]|9[3-9])|611)\\d{5}', 'PossibleNumberPattern' => '\\d{9}', 'ExampleNumber' => '301012345', 'PossibleLength' => @@ -92,7 +98,7 @@ return array ( ), 'voip' => array ( - 'NationalNumberPattern' => '3392\\d{5}|93330\\d{4}', + 'NationalNumberPattern' => '39[01]\\d{6}|3392\\d{5}|93330\\d{4}', 'PossibleNumberPattern' => '\\d{9}', 'ExampleNumber' => '933301234', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SO.php index d50a4bc71..960caed6f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SO.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, 1 => 8, 2 => 9, ), @@ -27,7 +33,7 @@ return array ( 'ExampleNumber' => '4012345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SR.php index 01a29fc21..7c45f72d2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SR.php @@ -1,7 +1,13 @@ '\\d{6,7}', 'PossibleLength' => array ( - 0 => '6', - 1 => '7', + 0 => 6, + 1 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -38,7 +44,7 @@ return array ( 'ExampleNumber' => '7412345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SS.php index afb8f9f21..56b6b1c58 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SS.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ST.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ST.php index b4c1d5819..78654256a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ST.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ST.php @@ -1,7 +1,13 @@ '\\d{7}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SV.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SV.php index 073c61e3c..3298dad82 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SV.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SV.php @@ -1,7 +1,13 @@ '\\d{7,8}|\\d{11}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', - 2 => '11', + 0 => 7, + 1 => 8, + 2 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -27,7 +33,7 @@ return array ( 'ExampleNumber' => '21234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -40,7 +46,7 @@ return array ( 'ExampleNumber' => '70123456', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -53,8 +59,8 @@ return array ( 'ExampleNumber' => '8001234', 'PossibleLength' => array ( - 0 => '7', - 1 => '11', + 0 => 7, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( @@ -67,8 +73,8 @@ return array ( 'ExampleNumber' => '9001234', 'PossibleLength' => array ( - 0 => '7', - 1 => '11', + 0 => 7, + 1 => 11, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SX.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SX.php index bc0e9eb79..4028c078a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SX.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SX.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SY.php index 99823e113..8ca4075f0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SY.php @@ -1,7 +1,13 @@ '\\d{6,9}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', - 1 => '7', + 0 => 6, + 1 => 7, ), ), 'fixedLine' => @@ -40,7 +46,7 @@ return array ( 'ExampleNumber' => '944567890', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SZ.php index ba17f59fb..3c4b3d16e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_SZ.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TA.php index f95097a49..32ae9f652 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TA.php @@ -1,7 +1,13 @@ '\\d{4}', 'PossibleLength' => array ( - 0 => '4', + 0 => -1, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -25,6 +32,7 @@ return array ( 'ExampleNumber' => '8999', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -36,6 +44,7 @@ return array ( 'PossibleNumberPattern' => 'NA', 'PossibleLength' => array ( + 0 => -1, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TC.php index 69c80f7bd..4f9185e80 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TC.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TD.php index 76b948702..5a25a60ee 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TD.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TG.php index e9dd25e86..3ba2e1860 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TG.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TH.php index f6a07ee37..4416e4b29 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TH.php @@ -1,7 +1,13 @@ '\\d{4}|\\d{8,10}', 'PossibleLength' => array ( - 0 => '4', - 1 => '8', - 2 => '9', - 3 => '10', + 0 => 4, + 1 => 8, + 2 => 9, + 3 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -28,7 +34,7 @@ return array ( 'ExampleNumber' => '21234567', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -36,12 +42,12 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '(?:14|6[1-4]|[89]\\d)\\d{7}', + 'NationalNumberPattern' => '(?:14|6[1-5]|[89]\\d)\\d{7}', 'PossibleNumberPattern' => '\\d{9}', 'ExampleNumber' => '812345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -54,7 +60,7 @@ return array ( 'ExampleNumber' => '1800123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -67,7 +73,7 @@ return array ( 'ExampleNumber' => '1900123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -104,7 +110,7 @@ return array ( 'ExampleNumber' => '601234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -129,7 +135,7 @@ return array ( 'ExampleNumber' => '1100', 'PossibleLength' => array ( - 0 => '4', + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -154,7 +160,7 @@ return array ( 'ExampleNumber' => '1100', 'PossibleLength' => array ( - 0 => '4', + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TJ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TJ.php index ed51d117b..64a6e8476 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TJ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TJ.php @@ -1,7 +1,13 @@ '\\d{3,9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '3', - 1 => '5', - 2 => '7', + 0 => 3, + 1 => 5, + 2 => 7, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TK.php index f0e8bd502..a024d0b79 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TK.php @@ -1,7 +1,13 @@ '\\d{7,8}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '2112345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '77212345', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '8012345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '9012345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -90,7 +96,7 @@ return array ( 'ExampleNumber' => '7012345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TM.php index 43251f409..544de86cb 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TM.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TN.php index a550a6463..9aa9aeac9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TN.php @@ -1,7 +1,13 @@ '\\d{8}', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TO.php index 5282e2141..f6669a501 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TO.php @@ -1,7 +1,13 @@ '\\d{5,7}', 'PossibleLength' => array ( - 0 => '5', - 1 => '7', + 0 => 5, + 1 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '20123', 'PossibleLength' => array ( - 0 => '5', + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '7715123', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '0800222', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TR.php index fdc98d691..5f8c736cb 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TR.php @@ -1,7 +1,13 @@ '\\d{7,10}', 'PossibleLength' => array ( - 0 => '7', - 1 => '10', + 0 => 7, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '2123456789', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -34,12 +40,12 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '5(?:0[1-7]|22|[34]\\d|5[1-59]|9[246])\\d{7}', + 'NationalNumberPattern' => '5(?:(?:0[1-7]|22|[34]\\d|5[1-59]|9[246])\\d{2}|6161)\\d{5}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5012345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '8001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '9001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -114,7 +120,7 @@ return array ( 'ExampleNumber' => '5123456789', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -151,7 +157,7 @@ return array ( 'ExampleNumber' => '4441444', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -167,8 +173,8 @@ return array ( array ( 0 => array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3', + 'pattern' => '(\\d{3})(\\d{3})(\\d{2})(\\d{2})', + 'format' => '$1 $2 $3 $4', 'leadingDigitsPatterns' => array ( 0 => '[23]|4(?:[0-35-9]|4[0-35-9])', @@ -179,17 +185,29 @@ return array ( ), 1 => array ( - 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', - 'format' => '$1 $2 $3', + 'pattern' => '(\\d{3})(\\d{3})(\\d{2})(\\d{2})', + 'format' => '$1 $2 $3 $4', 'leadingDigitsPatterns' => array ( - 0 => '[589]', + 0 => '5[02-69]', ), 'nationalPrefixFormattingRule' => '0$1', 'domesticCarrierCodeFormattingRule' => '', 'nationalPrefixOptionalWhenFormatting' => true, ), 2 => + array ( + 'pattern' => '(\\d{3})(\\d{3})(\\d{4})', + 'format' => '$1 $2 $3', + 'leadingDigitsPatterns' => + array ( + 0 => '51|[89]', + ), + 'nationalPrefixFormattingRule' => '0$1', + 'domesticCarrierCodeFormattingRule' => '', + 'nationalPrefixOptionalWhenFormatting' => true, + ), + 3 => array ( 'pattern' => '(444)(\\d{1})(\\d{3})', 'format' => '$1 $2 $3', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TT.php index 562363a3c..885b97cca 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TT.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TV.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TV.php index 56da124ca..09e1119ef 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TV.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TV.php @@ -1,7 +1,13 @@ '\\d{5,7}', 'PossibleLength' => array ( - 0 => '5', - 1 => '6', - 2 => '7', + 0 => 5, + 1 => 6, + 2 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -27,7 +33,7 @@ return array ( 'ExampleNumber' => '20123', 'PossibleLength' => array ( - 0 => '5', + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -40,8 +46,8 @@ return array ( 'ExampleNumber' => '901234', 'PossibleLength' => array ( - 0 => '6', - 1 => '7', + 0 => 6, + 1 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TW.php index e28a73cf0..062c4b9e1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TW.php @@ -1,7 +1,13 @@ '\\d{8,10}', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', - 2 => '10', + 0 => 8, + 1 => 9, + 2 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -27,8 +33,8 @@ return array ( 'ExampleNumber' => '21234567', 'PossibleLength' => array ( - 0 => '8', - 1 => '9', + 0 => 8, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -41,7 +47,7 @@ return array ( 'ExampleNumber' => '912345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -54,7 +60,7 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -67,7 +73,7 @@ return array ( 'ExampleNumber' => '900123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -104,7 +110,7 @@ return array ( 'ExampleNumber' => '7012345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TZ.php index 7619e3b15..a38a8f3b8 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_TZ.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '7', - 1 => '9', + 0 => 7, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -38,7 +44,7 @@ return array ( 'ExampleNumber' => '621234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -51,7 +57,7 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -64,7 +70,7 @@ return array ( 'ExampleNumber' => '900123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -77,7 +83,7 @@ return array ( 'ExampleNumber' => '840123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -102,7 +108,7 @@ return array ( 'ExampleNumber' => '412345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UA.php index c66313b4e..f2880abc0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UA.php @@ -1,7 +1,13 @@ '\\d{5,9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UG.php index 97b027023..9541ea512 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UG.php @@ -1,7 +1,13 @@ '\\d{5,9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -23,7 +29,7 @@ return array ( ), 'fixedLine' => array ( - 'NationalNumberPattern' => '20(?:[0147]\\d{2}|2(?:40|[5-9]\\d)|3[23]\\d|5[0-4]\\d|6[03]\\d|8[0-2]\\d)\\d{4}|[34]\\d{8}', + 'NationalNumberPattern' => '20(?:[0147]\\d{2}|2(?:40|[5-9]\\d)|3(?:0[0-4]|[23]\\d)|5[0-4]\\d|6[035-9]\\d|8[0-2]\\d)\\d{4}|[34]\\d{8}', 'PossibleNumberPattern' => '\\d{5,9}', 'ExampleNumber' => '312345678', 'PossibleLength' => @@ -35,7 +41,7 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '2030\\d{5}|7(?:0[0-7]|[15789]\\d|2[03]|30|[46][0-4])\\d{6}', + 'NationalNumberPattern' => '7(?:(?:0[0-7]|[15789]\\d|30|4[0-4])\\d|2(?:[03]\\d|60))\\d{5}', 'PossibleNumberPattern' => '\\d{9}', 'ExampleNumber' => '712345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_US.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_US.php index 75f84ddf6..2b0417805 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_US.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_US.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => array ( - 'NationalNumberPattern' => '(?:2(?:0[1-35-9]|1[02-9]|2[04589]|3[149]|4[08]|5[1-46]|6[0279]|7[026]|8[13])|3(?:0[1-57-9]|1[02-9]|2[0135]|3[014679]|4[67]|5[12]|6[014]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[0235]|58|69|7[0589]|8[04])|5(?:0[1-57-9]|1[0235-8]|20|3[0149]|4[01]|5[19]|6[1-37]|7[013-5]|8[056])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[16]|5[017]|6[0-279]|78|8[12])|7(?:0[1-46-8]|1[02-9]|2[0457]|3[1247]|4[037]|5[47]|6[02359]|7[02-59]|8[156])|8(?:0[1-68]|1[02-8]|28|3[0-25]|4[3578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[014678]|4[0179]|5[12469]|7[0-3589]|8[0459]))[2-9]\\d{6}', + 'NationalNumberPattern' => '(?:2(?:0[1-35-9]|1[02-9]|2[04589]|3[149]|4[08]|5[1-46]|6[0279]|7[026]|8[13])|3(?:0[1-57-9]|1[02-9]|2[0135]|3[014679]|4[67]|5[12]|6[014]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[0235]|58|6[39]|7[0589]|8[04])|5(?:0[1-57-9]|1[0235-8]|20|3[0149]|4[01]|5[19]|6[1-37]|7[013-5]|8[056])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[16]|5[017]|6[0-279]|78|8[12])|7(?:0[1-46-8]|1[02-9]|2[0457]|3[1247]|4[037]|5[47]|6[02359]|7[02-59]|8[156])|8(?:0[1-68]|1[02-8]|28|3[0-25]|4[3578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[014678]|4[0179]|5[12469]|7[0-3589]|8[0459]))[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{7}(?:\\d{3})?', 'ExampleNumber' => '2015550123', 'PossibleLength' => @@ -33,7 +39,7 @@ return array ( ), 'mobile' => array ( - 'NationalNumberPattern' => '(?:2(?:0[1-35-9]|1[02-9]|2[04589]|3[149]|4[08]|5[1-46]|6[0279]|7[026]|8[13])|3(?:0[1-57-9]|1[02-9]|2[0135]|3[014679]|4[67]|5[12]|6[014]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[0235]|58|69|7[0589]|8[04])|5(?:0[1-57-9]|1[0235-8]|20|3[0149]|4[01]|5[19]|6[1-37]|7[013-5]|8[056])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[16]|5[017]|6[0-279]|78|8[12])|7(?:0[1-46-8]|1[02-9]|2[0457]|3[1247]|4[037]|5[47]|6[02359]|7[02-59]|8[156])|8(?:0[1-68]|1[02-8]|28|3[0-25]|4[3578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[014678]|4[0179]|5[12469]|7[0-3589]|8[0459]))[2-9]\\d{6}', + 'NationalNumberPattern' => '(?:2(?:0[1-35-9]|1[02-9]|2[04589]|3[149]|4[08]|5[1-46]|6[0279]|7[026]|8[13])|3(?:0[1-57-9]|1[02-9]|2[0135]|3[014679]|4[67]|5[12]|6[014]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[0235]|58|6[39]|7[0589]|8[04])|5(?:0[1-57-9]|1[0235-8]|20|3[0149]|4[01]|5[19]|6[1-37]|7[013-5]|8[056])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[16]|5[017]|6[0-279]|78|8[12])|7(?:0[1-46-8]|1[02-9]|2[0457]|3[1247]|4[037]|5[47]|6[02359]|7[02-59]|8[156])|8(?:0[1-68]|1[02-8]|28|3[0-25]|4[3578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[014678]|4[0179]|5[12469]|7[0-3589]|8[0459]))[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{7}(?:\\d{3})?', 'ExampleNumber' => '2015550123', 'PossibleLength' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UY.php index d21801833..32f601fa4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UY.php @@ -1,7 +1,13 @@ '\\d{7,8}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '21231234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '94231234', 'PossibleLength' => array ( - 0 => '8', + 0 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -52,7 +58,7 @@ return array ( 'ExampleNumber' => '8001234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -65,7 +71,7 @@ return array ( 'ExampleNumber' => '9001234', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UZ.php index ccf0cec34..a22c029ea 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_UZ.php @@ -1,7 +1,13 @@ '\\d{7,9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VA.php index bbbe7e8dd..fdbcd8726 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VA.php @@ -1,7 +1,13 @@ '\\d{6,11}', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, 1 => 8, 2 => 9, - 3 => '10', + 3 => 10, 4 => 11, ), 'PossibleLengthLocalOnly' => @@ -29,7 +35,7 @@ return array ( 'ExampleNumber' => '0669812345', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -57,8 +63,8 @@ return array ( 'ExampleNumber' => '800123456', 'PossibleLength' => array ( - 0 => '6', - 1 => '9', + 0 => 6, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -71,7 +77,7 @@ return array ( 'ExampleNumber' => '899123456', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, 1 => 8, 2 => 9, 3 => 10, @@ -87,8 +93,8 @@ return array ( 'ExampleNumber' => '848123456', 'PossibleLength' => array ( - 0 => '6', - 1 => '9', + 0 => 6, + 1 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -101,8 +107,8 @@ return array ( 'ExampleNumber' => '1781234567', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -115,7 +121,7 @@ return array ( 'ExampleNumber' => '5512345678', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -164,7 +170,7 @@ return array ( 'ExampleNumber' => '848123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VC.php index ec8592209..e9e075cfe 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VC.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VE.php index 9d912e28f..9a3ab9f54 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VE.php @@ -1,7 +1,13 @@ '\\d{7,10}', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VG.php index 41d5d0dfa..5589f39d3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VG.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VI.php index c57201e30..932b71260 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VI.php @@ -1,7 +1,13 @@ '\\d{7}(?:\\d{3})?', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( - 0 => '7', + 0 => 7, ), ), 'fixedLine' => @@ -81,7 +87,7 @@ return array ( ), 'personalNumber' => array ( - 'NationalNumberPattern' => '5(?:00|33|44|66|77|88)[2-9]\\d{6}', + 'NationalNumberPattern' => '5(?:00|22|33|44|66|77|88)[2-9]\\d{6}', 'PossibleNumberPattern' => '\\d{10}', 'ExampleNumber' => '5002345678', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VN.php index 7e2ed374c..d6815f502 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VN.php @@ -1,7 +1,13 @@ '\\d{7,10}', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, 1 => 8, - 2 => '9', - 3 => '10', + 2 => 9, + 3 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -28,8 +34,8 @@ return array ( 'ExampleNumber' => '2101234567', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -42,8 +48,8 @@ return array ( 'ExampleNumber' => '912345678', 'PossibleLength' => array ( - 0 => '9', - 1 => '10', + 0 => 9, + 1 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -134,8 +140,8 @@ return array ( 'ExampleNumber' => '1992000', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -160,8 +166,8 @@ return array ( 'ExampleNumber' => '1992000', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VU.php index fe0891971..15d4df9ca 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_VU.php @@ -1,7 +1,13 @@ '\\d{5,7}', 'PossibleLength' => array ( - 0 => '5', - 1 => '7', + 0 => 5, + 1 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -26,7 +32,7 @@ return array ( 'ExampleNumber' => '22123', 'PossibleLength' => array ( - 0 => '5', + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -39,7 +45,7 @@ return array ( 'ExampleNumber' => '5912345', 'PossibleLength' => array ( - 0 => '7', + 0 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_WF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_WF.php index 06e1b34a6..dd92a25bb 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_WF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_WF.php @@ -1,7 +1,13 @@ '\\d{6}', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_WS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_WS.php index e0f3b9056..9477ee5d3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_WS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_WS.php @@ -1,7 +1,13 @@ '\\d{5,7}', 'PossibleLength' => array ( - 0 => '5', - 1 => '6', - 2 => '7', + 0 => 5, + 1 => 6, + 2 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -27,8 +33,8 @@ return array ( 'ExampleNumber' => '22123', 'PossibleLength' => array ( - 0 => '5', - 1 => '7', + 0 => 5, + 1 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -41,8 +47,8 @@ return array ( 'ExampleNumber' => '601234', 'PossibleLength' => array ( - 0 => '6', - 1 => '7', + 0 => 6, + 1 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -55,7 +61,7 @@ return array ( 'ExampleNumber' => '800123', 'PossibleLength' => array ( - 0 => '6', + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_YE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_YE.php index c5fcbef2f..328ee25d6 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_YE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_YE.php @@ -1,7 +1,13 @@ '\\d{6,9}', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', - 2 => '9', + 0 => 7, + 1 => 8, + 2 => 9, ), 'PossibleLengthLocalOnly' => array ( - 0 => '6', + 0 => 6, ), ), 'fixedLine' => @@ -28,8 +34,8 @@ return array ( 'ExampleNumber' => '1234567', 'PossibleLength' => array ( - 0 => '7', - 1 => '8', + 0 => 7, + 1 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -42,7 +48,7 @@ return array ( 'ExampleNumber' => '712345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_YT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_YT.php index 63c9fbd20..565d1f493 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_YT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_YT.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ZA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ZA.php index 356bc5fc5..5c2ab6abd 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ZA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ZA.php @@ -1,7 +1,13 @@ 6, 2 => 7, 3 => 8, - 4 => '9', + 4 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -29,7 +35,7 @@ return array ( 'ExampleNumber' => '101234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -54,7 +60,7 @@ return array ( 'ExampleNumber' => '801234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -67,7 +73,7 @@ return array ( 'ExampleNumber' => '862345678', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -80,7 +86,7 @@ return array ( 'ExampleNumber' => '860123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -105,7 +111,7 @@ return array ( 'ExampleNumber' => '871234567', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( @@ -130,7 +136,7 @@ return array ( 'ExampleNumber' => '861123456', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ZM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ZM.php index 4bb624b39..3a96f2e0a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ZM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ZM.php @@ -1,7 +1,13 @@ '\\d{9}', 'PossibleLength' => array ( - 0 => '9', + 0 => 9, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ZW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ZW.php index fb9d6ee27..43e67d35d 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ZW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/PhoneNumberMetadata_ZW.php @@ -1,7 +1,13 @@ array ( - 0 => '3', - 1 => '4', + 0 => 3, + 1 => 4, ), ), 'fixedLine' => @@ -56,7 +62,7 @@ return array ( 'ExampleNumber' => '8001234567', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( @@ -105,7 +111,7 @@ return array ( 'ExampleNumber' => '8686123456', 'PossibleLength' => array ( - 0 => '10', + 0 => 10, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AC.php index 34408c16c..cbd74cc83 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AC.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AD.php index 43a967588..833ee08bd 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AD.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AE.php index a19ebf01f..ba36ab00b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AE.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -55,7 +64,7 @@ return array ( ), 'shortCode' => array ( - 'NationalNumberPattern' => '112|4451|99[789]', + 'NationalNumberPattern' => '112|445[16]|99[789]', 'PossibleNumberPattern' => '\\d{3,4}', 'ExampleNumber' => '112', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AF.php index 7037bc68f..73db73e38 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AF.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '119', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AG.php index eea007903..231095b1e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AG.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AI.php index 214b01f45..69985b732 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AI.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -81,6 +88,7 @@ return array ( array ( 'NationalNumberPattern' => '176', 'PossibleNumberPattern' => '\\d{3}', + 'ExampleNumber' => '176', 'PossibleLength' => array ( ), diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AL.php index 207079bdd..40f20fa39 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AL.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '129', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AM.php index 636472682..23cc03612 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AM.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '102', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +93,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AO.php index fc71c5443..408f2dedb 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AO.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AR.php index ef7ca291b..7d29b4f45 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AR.php @@ -1,7 +1,13 @@ '\\d{2,5}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, + 2 => 4, + 3 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +34,8 @@ return array ( 'ExampleNumber' => '111', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +60,7 @@ return array ( 'ExampleNumber' => '101', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +96,8 @@ return array ( 'PossibleNumberPattern' => '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AS.php index 6d3cfc6c2..e0e9c277a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AS.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '911', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AT.php index 02ee31b7d..56c34b0d5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AT.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AU.php index 00066fc6e..551c1bb32 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AU.php @@ -1,7 +1,13 @@ '\\d{3,8}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, + 4 => 7, + 5 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +36,9 @@ return array ( 'ExampleNumber' => '733', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -36,6 +51,11 @@ return array ( 'ExampleNumber' => '191123', 'PossibleLength' => array ( + 0 => 4, + 1 => 5, + 2 => 6, + 3 => 7, + 4 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +68,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +93,9 @@ return array ( 'ExampleNumber' => '225', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +108,8 @@ return array ( 'ExampleNumber' => '1555', 'PossibleLength' => array ( + 0 => 4, + 1 => 7, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AW.php index 98e465b99..11fc1bc0f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AW.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AX.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AX.php index 58331d0ca..c1b30dcec 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AX.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AX.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AZ.php index 492703e94..a40f248c1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_AZ.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '101', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{4}', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BA.php index e64360ad3..512a32023 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BA.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BB.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BB.php index d862e085c..84d9134ea 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BB.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BB.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BD.php index 65568a18a..2df5e049c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BD.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +93,7 @@ return array ( 'PossibleNumberPattern' => '\\d{4}', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BE.php index 0e7ffce5a..18e4c2cdc 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BE.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -36,6 +45,7 @@ return array ( 'ExampleNumber' => '7212', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +58,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BF.php index 027f90788..3265d8db1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BF.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BG.php index fd0179f4c..94b0b2735 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BG.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BH.php index 133a21f7f..24c6af001 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BH.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -81,8 +90,10 @@ return array ( array ( 'NationalNumberPattern' => '88000|98555', 'PossibleNumberPattern' => '\\d{5}', + 'ExampleNumber' => '88000', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BI.php index e3ce755d6..816068711 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BI.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '611', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '117', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +94,7 @@ return array ( 'ExampleNumber' => '611', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BJ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BJ.php index e3e1aaa5d..bbb1e07e4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BJ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BJ.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BL.php index 2fbaa8003..146e59d54 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BL.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BM.php index 9b6edce73..82f735226 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BM.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BN.php index fc1f257a1..b26806f16 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BN.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BO.php index 14de18d96..3a56cb910 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BO.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BQ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BQ.php index c84d61a07..ede8e9dd4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BQ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BQ.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BR.php index b261ab5d3..009aa6c87 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BR.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +34,8 @@ return array ( 'ExampleNumber' => '181', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +60,7 @@ return array ( 'ExampleNumber' => '190', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +85,8 @@ return array ( 'ExampleNumber' => '27330', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -80,10 +95,13 @@ return array ( 'carrierSpecific' => array ( 'NationalNumberPattern' => '27878|4(?:0404?|11[12]|57)|55555', - 'PossibleNumberPattern' => '\\d{5}', + 'PossibleNumberPattern' => '\\d{3,5}', 'ExampleNumber' => '27878', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BS.php index e07f2d74a..10d013d13 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BS.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BT.php index b186a5260..7c5b683a7 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BT.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '113', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BW.php index 284d028db..3a2e7d8d0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BW.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BY.php index 3ba8e6a7b..ac8f0b5e4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BY.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BZ.php index 29ba3fbb3..01917214a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_BZ.php @@ -1,7 +1,13 @@ '\\d{2,3}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CA.php index 0563be66a..65d74882f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CA.php @@ -1,7 +1,13 @@ '\\d{3,6}|\\d{8}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, + 2 => 6, + 3 => 8, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +34,7 @@ return array ( 'ExampleNumber' => '211', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +59,7 @@ return array ( 'ExampleNumber' => '911', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +96,7 @@ return array ( 'ExampleNumber' => '611', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CC.php index 40b4713b6..8cb68570f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CC.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CD.php index 044a23bb8..20f24248b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CD.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '113', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{3,5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CF.php index ebcbb308c..69a9e53ca 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CF.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CG.php index 13c992ff9..e9c9a1848 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CG.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CH.php index e07c1ccbb..a1ff37c66 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CH.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +34,9 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -36,6 +49,9 @@ return array ( 'ExampleNumber' => '543', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +64,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +89,8 @@ return array ( 'ExampleNumber' => '1600', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +103,8 @@ return array ( 'ExampleNumber' => '535', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CI.php index ef4f2c490..7dfda8d3b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CI.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '110', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{4}', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CK.php index 0eebf91a3..4863acdc9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CK.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CL.php index 76325c196..98a6df054 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CL.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +33,7 @@ return array ( 'ExampleNumber' => '4342', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -36,6 +46,8 @@ return array ( 'ExampleNumber' => '2224', 'PossibleLength' => array ( + 0 => 4, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +60,7 @@ return array ( 'ExampleNumber' => '133', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +85,7 @@ return array ( 'ExampleNumber' => '3337', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CM.php index d645127f3..3dc04804f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CM.php @@ -1,7 +1,13 @@ '\\d{2,4}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, + 2 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,8 @@ return array ( 'ExampleNumber' => '113', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +94,7 @@ return array ( 'PossibleNumberPattern' => '\\d{4}', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CN.php index 409b4eca6..778dc0d6d 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CN.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '119', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +82,8 @@ return array ( 'ExampleNumber' => '95566', 'PossibleLength' => array ( + 0 => 5, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CO.php index 29d890f74..5789518c6 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CO.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CR.php index 8cc978205..1f4d561e4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CR.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '911', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CU.php index 66390ba61..3c5f6865e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CU.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '106', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CV.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CV.php index d85773253..cefc23060 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CV.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CV.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CW.php index ac3cf43d0..5b524ec20 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CW.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CX.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CX.php index 2ad1109d3..7582e8dcc 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CX.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CX.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CY.php index 24910db4a..b237ece21 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CY.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CZ.php index 2374597d1..d37756a50 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_CZ.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +34,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +59,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DE.php index 4374786de..a03745373 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DE.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DJ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DJ.php index 14a473275..8c969ad74 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DJ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DJ.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DK.php index bdf7550e6..a1b4bebe3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DK.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +33,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +58,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DM.php index 16c44b42b..791e9b32b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DM.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DO.php index e67f25ace..b9e5f8b2d 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DO.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DZ.php index afeedcfb0..385ba51ef 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_DZ.php @@ -1,7 +1,13 @@ '\\d{2,3}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '17', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EC.php index b88a7d884..26b4e203c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EC.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EE.php index 477140aa6..a9ba01918 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EE.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EG.php index b87453dca..0b45e5bdb 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EG.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '122', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +93,7 @@ return array ( 'ExampleNumber' => '34400', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EH.php index 3cb41ba4b..28608a28d 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_EH.php @@ -1,7 +1,13 @@ '\\d{2,3}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ER.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ER.php index 8e467ead8..f9fd854dc 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ER.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ER.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ES.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ES.php index 4ca2bce6d..3bf50dea1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ES.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ES.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +34,9 @@ return array ( 'ExampleNumber' => '116111', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +61,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +86,8 @@ return array ( 'ExampleNumber' => '211234', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ET.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ET.php index 4cacd482e..cdc42b8ef 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ET.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ET.php @@ -1,7 +1,13 @@ '\\d{2,3}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FI.php index c4ceb3ed8..3ad67a267 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FI.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '116111', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FJ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FJ.php index d80ceb6fe..429ad19c6 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FJ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FJ.php @@ -1,7 +1,13 @@ '\\d{2,5}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '911', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FK.php index fbbffc34f..ed78aad92 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FK.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FM.php index e25662e81..0157b97ba 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FM.php @@ -1,7 +1,13 @@ '\\d{3}(?:\\d{3})?', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FO.php index 83af06e36..18594d878 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FO.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FR.php index bc7ac0935..614e5c632 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_FR.php @@ -1,7 +1,13 @@ '\\d{2,6}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, + 2 => 4, + 3 => 5, + 4 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +35,10 @@ return array ( 'ExampleNumber' => '3010', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -36,6 +51,8 @@ return array ( 'ExampleNumber' => '42000', 'PossibleLength' => array ( + 0 => 5, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +65,8 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +91,8 @@ return array ( 'ExampleNumber' => '1023', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +105,10 @@ return array ( 'ExampleNumber' => '118777', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GA.php index 3177f381c..939c3de50 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GA.php @@ -1,7 +1,13 @@ '\\d{2,4}', 'PossibleLength' => array ( + 0 => 2, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GB.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GB.php index d7347ab0e..bd841c820 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GB.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GB.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +58,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +95,9 @@ return array ( 'ExampleNumber' => '1571', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GD.php index 097a60643..09a03abf9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GD.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GE.php index e2153da52..edf209207 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GE.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GF.php index 2832411a8..c12c0c47a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GF.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GG.php index 23689f600..615092c82 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GG.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +58,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GH.php index 61bc68d9a..8e90dda48 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GH.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +94,8 @@ return array ( 'ExampleNumber' => '5400', 'PossibleLength' => array ( + 0 => 4, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GI.php index d22a8b187..26bf0cdf6 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GI.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +34,9 @@ return array ( 'ExampleNumber' => '100', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +61,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +86,7 @@ return array ( 'ExampleNumber' => '150', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +99,8 @@ return array ( 'ExampleNumber' => '123', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GL.php index 7ee63d793..0d45f7d3a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GL.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GM.php index bc5c8f5b7..6468234c8 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GM.php @@ -1,7 +1,13 @@ '\\d{2,3}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GN.php index ca5b673e0..bcb04018f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GN.php @@ -1,7 +1,13 @@ '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GP.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GP.php index c6400d034..1b7689967 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GP.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GP.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GR.php index ffcb6d534..00f562592 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GR.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -19,11 +27,12 @@ return array ( ), 'tollFree' => array ( - 'NationalNumberPattern' => '116(?:000|1(?:11|23))', + 'NationalNumberPattern' => '116\\d{3}', 'PossibleNumberPattern' => '\\d{6}', 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GT.php index be625a291..b86486ed2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GT.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '110', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +93,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GU.php index 5ad2b6fa3..4251eb38a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GU.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GW.php index 53ee0ab4f..01aa846c2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GW.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GY.php index dbb04ef2e..84d806322 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_GY.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '911', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{4}', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HK.php index fb35397ac..1dcddf6a0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HK.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HN.php index 367c156ac..02a8a8ab0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HN.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '199', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HR.php index 84b864448..4328bf61b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HR.php @@ -1,7 +1,13 @@ '\\d{2,6}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, + 2 => 4, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -19,11 +29,12 @@ return array ( ), 'tollFree' => array ( - 'NationalNumberPattern' => '116(?:00[06]|111)', + 'NationalNumberPattern' => '116\\d{3}', 'PossibleNumberPattern' => '\\d{6}', 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +59,8 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -55,7 +68,7 @@ return array ( ), 'shortCode' => array ( - 'NationalNumberPattern' => '1(?:1[28]|16\\d{3}|987|9[2-5])|9[34]', + 'NationalNumberPattern' => '1(?:1[28]|16(?:00[06]|1(?:1[17]|23))|987|9[2-5])|9[34]', 'PossibleNumberPattern' => '\\d{2,6}', 'ExampleNumber' => '112', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HT.php index df580774a..3beef80cc 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HT.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '118', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HU.php index 98bb892ed..f00f038e7 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_HU.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ID.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ID.php index ea125498b..d73b56ad0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ID.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ID.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +93,7 @@ return array ( 'ExampleNumber' => '71400', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IE.php index 1b933a111..6a16fbc66 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IE.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -19,11 +28,12 @@ return array ( ), 'tollFree' => array ( - 'NationalNumberPattern' => '116(?:00[06]|1(?:11|23))', + 'NationalNumberPattern' => '116\\d{3}', 'PossibleNumberPattern' => '\\d{6}', 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +58,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +94,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IL.php index e62babdc9..aa2d0f3b2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IL.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +94,7 @@ return array ( 'ExampleNumber' => '10400', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IM.php index 449bb7fe7..53d714b29 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IM.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IN.php index 11501da08..79570e4d3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IN.php @@ -1,7 +1,13 @@ '\\d{3,7}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +58,8 @@ return array ( 'ExampleNumber' => '108', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +84,8 @@ return array ( 'ExampleNumber' => '5757555', 'PossibleLength' => array ( + 0 => 5, + 1 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +97,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IQ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IQ.php index d99546dd0..b5be92e2f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IQ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IQ.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '122', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +93,8 @@ return array ( 'PossibleNumberPattern' => '\\d{3,5}', 'PossibleLength' => array ( + 0 => 4, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IR.php index 0a67ce3c5..bcdccd542 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IR.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IS.php index 2f67b25b9..bd5f0aa0c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IS.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +33,7 @@ return array ( 'ExampleNumber' => '1717', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -36,6 +46,7 @@ return array ( 'ExampleNumber' => '1848', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +59,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +96,7 @@ return array ( 'ExampleNumber' => '1441', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IT.php index 9da12c153..af57ae665 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_IT.php @@ -1,7 +1,13 @@ '\\d{3,7}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, + 4 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +35,8 @@ return array ( 'ExampleNumber' => '187', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -31,11 +44,15 @@ return array ( ), 'premiumRate' => array ( - 'NationalNumberPattern' => '(?:12|4(?:[478]\\d{3,5}|55))\\d{2}', + 'NationalNumberPattern' => '(?:12|4(?:[478]\\d{1,3}|55))\\d{2}', 'PossibleNumberPattern' => '\\d{4,7}', 'ExampleNumber' => '1254', 'PossibleLength' => array ( + 0 => 4, + 1 => 5, + 2 => 6, + 3 => 7, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +65,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JE.php index 954e457c3..c6271aa2d 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JE.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JM.php index 071e964d8..53a8f8a8a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JM.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JO.php index ea99ea64c..ba7980926 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JO.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JP.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JP.php index 4ea8c226d..72e2c4549 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JP.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_JP.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KE.php index 17c854b49..f35015074 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KE.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +33,8 @@ return array ( 'ExampleNumber' => '1501', 'PossibleLength' => array ( + 0 => 4, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -35,6 +46,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -47,6 +59,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KG.php index 709f904bf..dbe51c523 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KG.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '101', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{4}', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KH.php index e5cdb2779..ef027f054 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KH.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '117', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KI.php index 472dd430b..8d8154530 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KI.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +81,7 @@ return array ( 'ExampleNumber' => '103', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KM.php index 664b7cae6..d4f5eecb5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KM.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KN.php index d81b889e3..5bcc593a1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KN.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KP.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KP.php index 8a145f5fb..99789623b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KP.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KP.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KR.php index 9955765b8..426c73081 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KR.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +93,7 @@ return array ( 'ExampleNumber' => '100', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KW.php index 63ce76181..52bc83727 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KW.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KY.php index 023a9b711..c7ed52239 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KY.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KZ.php index 6664f4803..51ab992e8 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_KZ.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +94,8 @@ return array ( 'ExampleNumber' => '30400', 'PossibleLength' => array ( + 0 => 4, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LA.php index 038fb503b..51e74a906 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LA.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LB.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LB.php index 8960e97be..5dce15f23 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LB.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LB.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LC.php index ce53aa99b..e3783e7a1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LC.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LI.php index 75b3d078a..2a86ff3af 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LI.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LK.php index 7841407c8..e21ad364c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LK.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LR.php index 53db12cc9..74d166e92 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LR.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '911', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +93,7 @@ return array ( 'ExampleNumber' => '8400', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LS.php index 8c716ef5b..303689790 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LS.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LT.php index 609f7034d..04d00aa8a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LT.php @@ -1,7 +1,13 @@ '\\d{2,6}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -19,11 +28,12 @@ return array ( ), 'tollFree' => array ( - 'NationalNumberPattern' => '116(?:000|1(?:11|23))', + 'NationalNumberPattern' => '116\\d{3}', 'PossibleNumberPattern' => '\\d{6}', 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +58,8 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LU.php index 0418b8e6e..7abfa6e37 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LU.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -19,11 +28,12 @@ return array ( ), 'tollFree' => array ( - 'NationalNumberPattern' => '116(?:000|111)', + 'NationalNumberPattern' => '116\\d{3}', 'PossibleNumberPattern' => '\\d{6}', 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +58,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LV.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LV.php index dd4cc85a4..a3487f9f0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LV.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LV.php @@ -1,7 +1,13 @@ '\\d{2,6}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, + 2 => 4, + 3 => 5, + 4 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -19,11 +30,12 @@ return array ( ), 'tollFree' => array ( - 'NationalNumberPattern' => '116(?:000|111)', + 'NationalNumberPattern' => '116\\d{3}', 'PossibleNumberPattern' => '\\d{6}', 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -35,6 +47,8 @@ return array ( 'PossibleNumberPattern' => '\\d{4,5}', 'PossibleLength' => array ( + 0 => 4, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -47,6 +61,8 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -71,6 +87,7 @@ return array ( 'ExampleNumber' => '1181', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +100,7 @@ return array ( 'ExampleNumber' => '1655', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LY.php index 13ef9e388..a1232529b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_LY.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MA.php index 9e187b4d6..daf869072 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MA.php @@ -1,7 +1,13 @@ '\\d{2,3}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MC.php index 3c2dbe764..f369fe4a2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MC.php @@ -1,7 +1,13 @@ '\\d{2,3}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MD.php index 3d7707c48..bf41d7b2a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MD.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -19,11 +29,12 @@ return array ( ), 'tollFree' => array ( - 'NationalNumberPattern' => 'NA', - 'PossibleNumberPattern' => 'NA', + 'NationalNumberPattern' => '116\\d{3}', + 'PossibleNumberPattern' => '\\d{6}', + 'ExampleNumber' => '116000', 'PossibleLength' => array ( - 0 => -1, + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -43,11 +54,12 @@ return array ( ), 'emergency' => array ( - 'NationalNumberPattern' => '112|90[123]', + 'NationalNumberPattern' => '112|90[1-3]', 'PossibleNumberPattern' => '\\d{3}', 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -55,7 +67,7 @@ return array ( ), 'shortCode' => array ( - 'NationalNumberPattern' => '1(?:1(?:[279]|6(?:000|1(?:11|23))|8\\d|99)|4\\d{3}|5[0-3]\\d|6[0-389]\\d|8\\d{2}|9(?:0[0-9]|[1-4]\\d))', + 'NationalNumberPattern' => '1(?:1(?:2|6(?:000|1(?:11|23))|8\\d{1,2}|99)|4\\d{3}|6[0-389]\\d|9(?:0[04-9]|[1-4]\\d))|90[1-3]', 'PossibleNumberPattern' => '\\d{3,6}', 'ExampleNumber' => '116000', 'PossibleLength' => diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ME.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ME.php index 161208f41..57e3126f1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ME.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ME.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +58,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MF.php index 280de036a..7ab715be7 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MF.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MG.php index 2674fd275..3ff68e312 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MG.php @@ -1,7 +1,13 @@ '\\d{2,3}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MH.php index a150cb4a8..d6d9d3604 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MH.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MK.php index 643509e3d..8928faf8a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MK.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ML.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ML.php index 3edd40e3c..3922b2ce0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ML.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ML.php @@ -1,7 +1,13 @@ '\\d{2,5}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, + 2 => 4, + 3 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +34,8 @@ return array ( 'ExampleNumber' => '35200', 'PossibleLength' => array ( + 0 => 4, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -36,6 +48,8 @@ return array ( 'ExampleNumber' => '35211', 'PossibleLength' => array ( + 0 => 4, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +62,7 @@ return array ( 'ExampleNumber' => '17', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +87,8 @@ return array ( 'ExampleNumber' => '7400', 'PossibleLength' => array ( + 0 => 4, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +101,7 @@ return array ( 'ExampleNumber' => '35035', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MM.php index 1f65c7a0a..50556e82a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MM.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MN.php index f13116568..539f2a05b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MN.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MO.php index 2d5729f24..e6f158093 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MO.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MP.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MP.php index 0bccb1d76..9b1b96ef9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MP.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MP.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MQ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MQ.php index c6296014f..c996bc6f4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MQ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MQ.php @@ -1,7 +1,13 @@ '\\d{2,3}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MR.php index 3d842328c..a5f57dc96 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MR.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MS.php index 0307a60c1..517e968ae 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MS.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MT.php index 1f5129429..6d30675f1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MT.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MU.php index ed1a7bf43..35c8b1a3f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MU.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MV.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MV.php index cc8fc7b6c..666dcacf8 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MV.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MV.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MW.php index 37f4cdc3a..0178c3085 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MW.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '997', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +93,7 @@ return array ( 'ExampleNumber' => '80400', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MX.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MX.php index c2d7fa81c..5cf04c887 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MX.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MX.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -36,6 +45,8 @@ return array ( 'ExampleNumber' => '7766', 'PossibleLength' => array ( + 0 => 4, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +59,7 @@ return array ( 'ExampleNumber' => '066', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MY.php index 9dd6b2503..b3f981be5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_MY.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '119', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NA.php index 47d8aad61..62fdcebd0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NA.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '10111', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NC.php index 61cd7195e..ff1506abe 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NC.php @@ -1,7 +1,13 @@ '\\d{2,4}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, + 2 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +33,8 @@ return array ( 'ExampleNumber' => '1000', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +59,7 @@ return array ( 'ExampleNumber' => '15', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +84,7 @@ return array ( 'ExampleNumber' => '567', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NE.php index 0d02ae02a..8a71f0501 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NE.php @@ -1,7 +1,13 @@ '\\d{2,6}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,8 @@ return array ( 'ExampleNumber' => '17', 'PossibleLength' => array ( + 0 => 2, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +95,7 @@ return array ( 'ExampleNumber' => '100', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NF.php index 274d123bc..d84500cc7 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NF.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NG.php index 9d985ede2..3a0034766 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NG.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '199', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +93,7 @@ return array ( 'ExampleNumber' => '40700', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NI.php index f3b970883..0851d829d 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NI.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '7373', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '118', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NL.php index d90f824d2..00f5bc4eb 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NL.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +33,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +58,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +95,7 @@ return array ( 'ExampleNumber' => '1202', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NO.php index 5afd4b168..a223b850f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NO.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +33,7 @@ return array ( 'ExampleNumber' => '116117', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +58,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NP.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NP.php index 79a9d54aa..24e56bee4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NP.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NP.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NR.php index 43297503f..e5073a060 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NR.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NU.php index 81777896f..d4eb6dbcf 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NU.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NZ.php index bb13f2efb..5122ee9e7 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_NZ.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( - 0 => '3', - 1 => '4', + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -50,7 +56,7 @@ return array ( 'ExampleNumber' => '111', 'PossibleLength' => array ( - 0 => '3', + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_OM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_OM.php index cf042e28f..767f8d165 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_OM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_OM.php @@ -1,7 +1,13 @@ '\\d{4}', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PA.php index 1a0d805eb..d40e2e6db 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PA.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PE.php index 6fe5365dc..fc6dc872d 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PE.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PF.php index 2941e4ac9..28f7e1650 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PF.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PG.php index f75e8faee..5b019add4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PG.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PH.php index fa0884cf2..aa020b517 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PH.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PK.php index 7d31f07cd..3206be4ba 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PK.php @@ -1,7 +1,13 @@ '\\d{2,4}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, + 2 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PL.php index e82ec7741..d5a5897d9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PL.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PM.php index e4e2736fa..e9d7d2208 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PM.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PR.php index 160dcbc51..126a186f3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PR.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PT.php index 9baf6ca9b..d1d2755fd 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PT.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PW.php index af86e694e..0294de4ef 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PW.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PY.php index b7ede21ce..a73dff33d 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_PY.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_QA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_QA.php index bbe6c3b3f..3a2ca2623 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_QA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_QA.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RE.php index 4f854e85d..adf5bac83 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RE.php @@ -1,7 +1,13 @@ '\\d{2,3}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RO.php index 0a9691163..f60a47864 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RO.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RS.php index 84b7ea3e9..363448b24 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RS.php @@ -1,17 +1,28 @@ array ( - 'NationalNumberPattern' => '1\\d{2,5}', - 'PossibleNumberPattern' => '\\d{3,6}', + 'NationalNumberPattern' => '[19]\\d{1,5}', + 'PossibleNumberPattern' => '\\d{2,6}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, + 2 => 4, + 3 => 5, + 4 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +59,8 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -56,7 +69,7 @@ return array ( 'shortCode' => array ( 'NationalNumberPattern' => '1[189]\\d{1,4}|9[234]', - 'PossibleNumberPattern' => '\\d{3,6}', + 'PossibleNumberPattern' => '\\d{2,6}', 'ExampleNumber' => '112', 'PossibleLength' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RU.php index a199cb337..2db07597e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RU.php @@ -1,7 +1,13 @@ '\\d{2,3}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RW.php index b980517b4..901be75d9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_RW.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SA.php index 67cc1e7c4..261b5d76a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SA.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +34,8 @@ return array ( 'ExampleNumber' => '116111', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +60,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +85,7 @@ return array ( 'ExampleNumber' => '1410', 'PossibleLength' => array ( + 0 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +98,8 @@ return array ( 'ExampleNumber' => '902', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SB.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SB.php index b04c2a88a..47364c2ec 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SB.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SB.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SC.php index 58933d40c..c993ff639 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SC.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SD.php index a95817a5f..378660602 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SD.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SE.php index 86b3c1860..a755f61ca 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SE.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +34,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -36,6 +47,8 @@ return array ( 'ExampleNumber' => '118118', 'PossibleLength' => array ( + 0 => 5, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +61,8 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +99,7 @@ return array ( 'ExampleNumber' => '222', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SG.php index fefa5547c..ad9bd591d 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SG.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SH.php index 6b58f5d21..bb614f7b9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SH.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SI.php index 02674e639..68c170e9f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SI.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +32,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SJ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SJ.php index 406380488..b424dd019 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SJ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SJ.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SK.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SK.php index c3635bee7..5e404d5df 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SK.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SK.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, + 2 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +33,7 @@ return array ( 'ExampleNumber' => '116000', 'PossibleLength' => array ( + 0 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +58,7 @@ return array ( 'ExampleNumber' => '112', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SL.php index 60886f330..a7c2eb946 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SL.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '999', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +93,7 @@ return array ( 'ExampleNumber' => '60400', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SM.php index 80fa743d0..bda57f560 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SM.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SN.php index b4eb9cbe6..de1739cba 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SN.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SO.php index cb8a5733e..dda8f85f3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SO.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SR.php index bd6e9e39e..9759ad9f6 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SR.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '115', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ST.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ST.php index a6f39053a..da5b36acd 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ST.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ST.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SV.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SV.php index 3dea07628..21bdd6ba3 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SV.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SV.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '911', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -83,6 +92,7 @@ return array ( 'PossibleNumberPattern' => '\\d{5}', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SX.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SX.php index 822c6678b..23c56cde8 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SX.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SX.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SY.php index 373256ae2..7c054ef5c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SY.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SZ.php index 9e1708d7a..b00a1615c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_SZ.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TC.php index 151decbb3..8a5b165e2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TC.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TD.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TD.php index 8328d1733..5bb8b6e72 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TD.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TD.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TG.php index a3d3361a5..41827a1e9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TG.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TH.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TH.php index c38a182b8..3976f959f 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TH.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TH.php @@ -1,7 +1,13 @@ '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TJ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TJ.php index 75e51ab72..cea64bb67 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TJ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TJ.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TL.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TL.php index db822a91b..939291785 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TL.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TL.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TM.php index c89376a2e..6df3468a8 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TM.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TN.php index 0907bcada..8b9e7d656 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TN.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TO.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TO.php index fe23d5f4e..0cac740e0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TO.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TO.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TR.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TR.php index 124d794cb..8506cc9c1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TR.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TR.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TT.php index 6f9d2d8de..8c6c9357e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TT.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TV.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TV.php index 646d01cee..dd59dc6c0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TV.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TV.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TW.php index df6aca1d3..d01b8995d 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TW.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TZ.php index a4f1c508a..35f58a389 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_TZ.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +56,7 @@ return array ( 'ExampleNumber' => '111', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +93,7 @@ return array ( 'ExampleNumber' => '46400', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UA.php index a712c4d37..005bab7d9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UA.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UG.php index dab582859..1e388c138 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UG.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_US.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_US.php index d1ea3470f..80c5388b0 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_US.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_US.php @@ -1,7 +1,13 @@ '\\d{3,6}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, + 3 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -24,6 +34,7 @@ return array ( 'ExampleNumber' => '611', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -36,6 +47,7 @@ return array ( 'ExampleNumber' => '24280', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +60,7 @@ return array ( 'ExampleNumber' => '911', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +85,8 @@ return array ( 'ExampleNumber' => '73822', 'PossibleLength' => array ( + 0 => 5, + 1 => 6, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +99,9 @@ return array ( 'ExampleNumber' => '33669', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UY.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UY.php index ce2e18965..436103ec5 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UY.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UY.php @@ -1,17 +1,25 @@ array ( - 'NationalNumberPattern' => '[19]\\d{2}', - 'PossibleNumberPattern' => '\\d{3}', + 'NationalNumberPattern' => '[19]\\d{2,3}', + 'PossibleNumberPattern' => '\\d{3,4}', 'PossibleLength' => array ( + 0 => 3, + 1 => 4, ), 'PossibleLengthLocalOnly' => array ( @@ -44,10 +52,11 @@ return array ( 'emergency' => array ( 'NationalNumberPattern' => '128|911', - 'PossibleNumberPattern' => '\\d{3}', + 'PossibleNumberPattern' => '\\d{3,4}', 'ExampleNumber' => '911', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -55,8 +64,8 @@ return array ( ), 'shortCode' => array ( - 'NationalNumberPattern' => '1(?:0[4-9]|1[2368]|2[0-3568])|911', - 'PossibleNumberPattern' => '\\d{3}', + 'NationalNumberPattern' => '1(?:0[4-9]|1[2368]|2[0-3568]|787)|911', + 'PossibleNumberPattern' => '\\d{3,4}', 'ExampleNumber' => '104', 'PossibleLength' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UZ.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UZ.php index e7bce46f9..5f93e88de 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UZ.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_UZ.php @@ -1,7 +1,13 @@ '\\d{2,5}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, + 2 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -48,6 +57,8 @@ return array ( 'ExampleNumber' => '01', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( @@ -84,6 +95,7 @@ return array ( 'ExampleNumber' => '45400', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VA.php index 839de50d0..b14f818d8 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VA.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VC.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VC.php index 2594a0568..79b7c8a1c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VC.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VC.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VE.php index 7674ff1e3..48f02102a 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VE.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VG.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VG.php index f027c8877..881d5d93c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VG.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VG.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VI.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VI.php index 0bc35f1d7..5a5fcd254 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VI.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VI.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VN.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VN.php index 84fc3d37f..61b12a18e 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VN.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VN.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VU.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VU.php index add955eac..3d7ae2ccf 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VU.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_VU.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_WF.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_WF.php index 60fb0b184..054f9b47b 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_WF.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_WF.php @@ -1,7 +1,13 @@ '\\d{2}', 'PossibleLength' => array ( + 0 => 2, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_WS.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_WS.php index 64f8e3de9..3cc3cc0a2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_WS.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_WS.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_YE.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_YE.php index 1041d04cb..dbfbf4edf 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_YE.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_YE.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_YT.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_YT.php index 15620a505..f3e90e183 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_YT.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_YT.php @@ -1,7 +1,13 @@ '\\d{2,3}', 'PossibleLength' => array ( + 0 => 2, + 1 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ZA.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ZA.php index fa6d68af2..67388ee83 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ZA.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ZA.php @@ -1,7 +1,13 @@ '\\d{3,5}', 'PossibleLength' => array ( + 0 => 3, + 1 => 5, ), 'PossibleLengthLocalOnly' => array ( @@ -72,6 +80,7 @@ return array ( 'ExampleNumber' => '47751', 'PossibleLength' => array ( + 0 => 5, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ZM.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ZM.php index b086dfa7d..f5129c8fa 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ZM.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ZM.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ZW.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ZW.php index ab5b84d0d..9d727261c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ZW.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/data/ShortNumberMetadata_ZW.php @@ -1,7 +1,13 @@ '\\d{3}', 'PossibleLength' => array ( + 0 => 3, ), 'PossibleLengthLocalOnly' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/Locale.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/Locale.php deleted file mode 100644 index d3f447b40..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/Locale.php +++ /dev/null @@ -1,32 +0,0 @@ - $locale_language, - 'region' => $locale_region - ); - - if (strtoupper($country_code) == $locale_region && $language_code == '') { - return locale_compose($locale_array); - } elseif (strtoupper($country_code) == $locale_region && strtolower($language_code) == $locale_language) { - return locale_compose($locale_array); - } - - return null; - } -} diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/PhoneNumberOfflineGeocoder.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/PhoneNumberOfflineGeocoder.php index 6363f0efa..d9a878295 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/PhoneNumberOfflineGeocoder.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/PhoneNumberOfflineGeocoder.php @@ -170,7 +170,7 @@ class PhoneNumberOfflineGeocoder $scriptStr = ""; $regionStr = Locale::getRegion($locale); - $mobileToken = $this->phoneUtil->getCountryMobileToken($number->getCountryCode()); + $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 diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/Map.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/Map.php index a59b2c819..cfdafe710 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/Map.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/Map.php @@ -46,819 +46,161 @@ return array ( ), 'en' => array ( - 0 => 1201, - 1 => 1202, - 2 => 1203, - 3 => 1204, - 4 => 1205, - 5 => 1206, - 6 => 1207, - 7 => 1208, - 8 => 1209, - 9 => 1210, - 10 => 1212, - 11 => 1213, - 12 => 1214, - 13 => 1215, - 14 => 1216, - 15 => 1217, - 16 => 1218, - 17 => 1219, - 18 => 1220, - 19 => 1224, - 20 => 1225, - 21 => 1226, - 22 => 1228, - 23 => 1229, - 24 => 1231, - 25 => 1234, - 26 => 1236, - 27 => 1239, - 28 => 1240, - 29 => 1242, - 30 => 1248, - 31 => 1250, - 32 => 1251, - 33 => 1252, - 34 => 1253, - 35 => 1254, - 36 => 1256, - 37 => 1260, - 38 => 1262, - 39 => 1267, - 40 => 1269, - 41 => 1270, - 42 => 1272, - 43 => 1276, - 44 => 1281, - 45 => 1289, - 46 => 1301, - 47 => 1302, - 48 => 1303, - 49 => 1304, - 50 => 1305, - 51 => 1306, - 52 => 1307, - 53 => 1308, - 54 => 1309, - 55 => 1310, - 56 => 1312, - 57 => 1313, - 58 => 1314, - 59 => 1315, - 60 => 1316, - 61 => 1317, - 62 => 1318, - 63 => 1319, - 64 => 1320, - 65 => 1321, - 66 => 1323, - 67 => 1325, - 68 => 1330, - 69 => 1331, - 70 => 1334, - 71 => 1336, - 72 => 1337, - 73 => 1339, - 74 => 1345, - 75 => 1346, - 76 => 1347, - 77 => 1351, - 78 => 1352, - 79 => 1360, - 80 => 1361, - 81 => 1364, - 82 => 1365, - 83 => 1380, - 84 => 1385, - 85 => 1386, - 86 => 1401, - 87 => 1402, - 88 => 1403, - 89 => 1404, - 90 => 1405, - 91 => 1406, - 92 => 1407, - 93 => 1408, - 94 => 1409, - 95 => 1410, - 96 => 1412, - 97 => 1413, - 98 => 1414, - 99 => 1415, - 100 => 1416, - 101 => 1417, - 102 => 1418, - 103 => 1419, - 104 => 1423, - 105 => 1424, - 106 => 1425, - 107 => 1430, - 108 => 1431, - 109 => 1432, - 110 => 1434, - 111 => 1435, - 112 => 1437, - 113 => 1438, - 114 => 1440, - 115 => 1441, - 116 => 1443, - 117 => 1450, - 118 => 1469, - 119 => 1478, - 120 => 1479, - 121 => 1480, - 122 => 1484, - 123 => 1501, - 124 => 1502, - 125 => 1503, - 126 => 1504, - 127 => 1505, - 128 => 1506, - 129 => 1507, - 130 => 1508, - 131 => 1509, - 132 => 1510, - 133 => 1512, - 134 => 1513, - 135 => 1514, - 136 => 1515, - 137 => 1516, - 138 => 1517, - 139 => 1518, - 140 => 1519, - 141 => 1520, - 142 => 1530, - 143 => 1540, - 144 => 1541, - 145 => 1548, - 146 => 1551, - 147 => 1559, - 148 => 1561, - 149 => 1562, - 150 => 1563, - 151 => 1567, - 152 => 1570, - 153 => 1571, - 154 => 1573, - 155 => 1574, - 156 => 1575, - 157 => 1580, - 158 => 1585, - 159 => 1586, - 160 => 1587, - 161 => 1601, - 162 => 1602, - 163 => 1603, - 164 => 1604, - 165 => 1605, - 166 => 1606, - 167 => 1607, - 168 => 1608, - 169 => 1609, - 170 => 1610, - 171 => 1612, - 172 => 1613, - 173 => 1614, - 174 => 1615, - 175 => 1616, - 176 => 1617, - 177 => 1618, - 178 => 1619, - 179 => 1620, - 180 => 1623, - 181 => 1626, - 182 => 1628, - 183 => 1629, - 184 => 1630, - 185 => 1631, - 186 => 1636, - 187 => 1639, - 188 => 1641, - 189 => 1646, - 190 => 1647, - 191 => 1649, - 192 => 1650, - 193 => 1651, - 194 => 1657, - 195 => 1660, - 196 => 1661, - 197 => 1662, - 198 => 1667, - 199 => 1669, - 200 => 1671, - 201 => 1678, - 202 => 1682, - 203 => 1701, - 204 => 1702, - 205 => 1703, - 206 => 1704, - 207 => 1705, - 208 => 1706, - 209 => 1707, - 210 => 1708, - 211 => 1709, - 212 => 1712, - 213 => 1713, - 214 => 1714, - 215 => 1715, - 216 => 1716, - 217 => 1717, - 218 => 1718, - 219 => 1719, - 220 => 1720, - 221 => 1724, - 222 => 1725, - 223 => 1727, - 224 => 1731, - 225 => 1732, - 226 => 1734, - 227 => 1737, - 228 => 1740, - 229 => 1743, - 230 => 1747, - 231 => 1754, - 232 => 1757, - 233 => 1760, - 234 => 1763, - 235 => 1765, - 236 => 1769, - 237 => 1770, - 238 => 1772, - 239 => 1773, - 240 => 1774, - 241 => 1775, - 242 => 1778, - 243 => 1779, - 244 => 1780, - 245 => 1781, - 246 => 1782, - 247 => 1785, - 248 => 1786, - 249 => 1801, - 250 => 1802, - 251 => 1803, - 252 => 1804, - 253 => 1805, - 254 => 1806, - 255 => 1807, - 256 => 1808, - 257 => 1809, - 258 => 1810, - 259 => 1812, - 260 => 1813, - 261 => 1814, - 262 => 1815, - 263 => 1816, - 264 => 1817, - 265 => 1818, - 266 => 1819, - 267 => 1825, - 268 => 1828, - 269 => 1830, - 270 => 1831, - 271 => 1832, - 272 => 1843, - 273 => 1845, - 274 => 1847, - 275 => 1848, - 276 => 1850, - 277 => 1854, - 278 => 1856, - 279 => 1857, - 280 => 1858, - 281 => 1859, - 282 => 1860, - 283 => 1862, - 284 => 1863, - 285 => 1864, - 286 => 1865, - 287 => 1867, - 288 => 1870, - 289 => 1872, - 290 => 1873, - 291 => 1876, - 292 => 1878, - 293 => 1901, - 294 => 1902, - 295 => 1903, - 296 => 1904, - 297 => 1905, - 298 => 1906, - 299 => 1907, - 300 => 1908, - 301 => 1909, - 302 => 1910, - 303 => 1912, - 304 => 1913, - 305 => 1914, - 306 => 1915, - 307 => 1916, - 308 => 1917, - 309 => 1918, - 310 => 1919, - 311 => 1920, - 312 => 1925, - 313 => 1928, - 314 => 1929, - 315 => 1930, - 316 => 1931, - 317 => 1934, - 318 => 1936, - 319 => 1937, - 320 => 1938, - 321 => 1940, - 322 => 1941, - 323 => 1947, - 324 => 1949, - 325 => 1951, - 326 => 1952, - 327 => 1954, - 328 => 1956, - 329 => 1959, - 330 => 1970, - 331 => 1971, - 332 => 1972, - 333 => 1973, - 334 => 1978, - 335 => 1979, - 336 => 1980, - 337 => 1984, - 338 => 1985, - 339 => 1989, - 340 => 20, - 341 => 212, - 342 => 213, - 343 => 216, - 344 => 220, - 345 => 221, - 346 => 222, - 347 => 223, - 348 => 224, - 349 => 225, - 350 => 226, - 351 => 228, - 352 => 229, - 353 => 230, - 354 => 232, - 355 => 233, - 356 => 234, - 357 => 237, - 358 => 238, - 359 => 239, - 360 => 241, - 361 => 242, - 362 => 243, - 363 => 244, - 364 => 245, - 365 => 247, - 366 => 249, - 367 => 251, - 368 => 252, - 369 => 254, - 370 => 256, - 371 => 257, - 372 => 258, - 373 => 260, - 374 => 261, - 375 => 263, - 376 => 264, - 377 => 266, - 378 => 267, - 379 => 268, - 380 => 269, - 381 => 27, - 382 => 290, - 383 => 299, - 384 => 30, - 385 => 31, - 386 => 32, - 387 => 33, - 388 => 34, - 389 => 351, - 390 => 352, - 391 => 353, - 392 => 354, - 393 => 355, - 394 => 358, - 395 => 359, - 396 => 36, - 397 => 370, - 398 => 371, - 399 => 372, - 400 => 373, - 401 => 374, - 402 => 375, - 403 => 381, - 404 => 389, - 405 => 39, - 406 => 40, - 407 => 41, - 408 => 420, - 409 => 421, - 410 => 43, - 411 => 44, - 412 => 46, - 413 => 47, - 414 => 48, - 415 => 49, - 416 => 501, - 417 => 504, - 418 => 51, - 419 => 53, - 420 => 54, - 421 => 55, - 422 => 56, - 423 => 57, - 424 => 58, - 425 => 592, - 426 => 599, - 427 => 62, - 428 => 64, - 429 => 66, - 430 => 686, - 431 => 688, - 432 => 7, - 433 => 81, - 434 => 82, - 435 => 84, - 436 => 8610, - 437 => 86130, - 438 => 86131, - 439 => 86132, - 440 => 86133, - 441 => 86134, - 442 => 86135, - 443 => 86136, - 444 => 86137, - 445 => 86138, - 446 => 86139, - 447 => 86145, - 448 => 86147, - 449 => 86150, - 450 => 86151, - 451 => 86152, - 452 => 86153, - 453 => 86155, - 454 => 86156, - 455 => 86157, - 456 => 86158, - 457 => 86159, - 458 => 86170, - 459 => 86176, - 460 => 86177, - 461 => 86178, - 462 => 86180, - 463 => 86181, - 464 => 86182, - 465 => 86183, - 466 => 86184, - 467 => 86185, - 468 => 86186, - 469 => 86187, - 470 => 86188, - 471 => 86189, - 472 => 8620, - 473 => 8621, - 474 => 8622, - 475 => 8623, - 476 => 8624, - 477 => 8625, - 478 => 8627, - 479 => 8628, - 480 => 8629, - 481 => 86310, - 482 => 86311, - 483 => 86312, - 484 => 86313, - 485 => 86314, - 486 => 86315, - 487 => 86316, - 488 => 86317, - 489 => 86318, - 490 => 86319, - 491 => 86335, - 492 => 86349, - 493 => 86350, - 494 => 86351, - 495 => 86352, - 496 => 86353, - 497 => 86354, - 498 => 86355, - 499 => 86356, - 500 => 86357, - 501 => 86358, - 502 => 86359, - 503 => 86370, - 504 => 86371, - 505 => 86372, - 506 => 86373, - 507 => 86374, - 508 => 86375, - 509 => 86376, - 510 => 86377, - 511 => 86378, - 512 => 86379, - 513 => 86391, - 514 => 86392, - 515 => 86393, - 516 => 86394, - 517 => 86395, - 518 => 86396, - 519 => 86398, - 520 => 86410, - 521 => 86411, - 522 => 86412, - 523 => 86413, - 524 => 86414, - 525 => 86415, - 526 => 86416, - 527 => 86417, - 528 => 86418, - 529 => 86419, - 530 => 86421, - 531 => 86427, - 532 => 86429, - 533 => 86431, - 534 => 86432, - 535 => 86433, - 536 => 86434, - 537 => 86435, - 538 => 86436, - 539 => 86437, - 540 => 86438, - 541 => 86439, - 542 => 86451, - 543 => 86452, - 544 => 86453, - 545 => 86454, - 546 => 86455, - 547 => 86456, - 548 => 86457, - 549 => 86458, - 550 => 86459, - 551 => 86464, - 552 => 86467, - 553 => 86468, - 554 => 86469, - 555 => 86470, - 556 => 86471, - 557 => 86472, - 558 => 86473, - 559 => 86474, - 560 => 86475, - 561 => 86476, - 562 => 86477, - 563 => 86478, - 564 => 86479, - 565 => 86482, - 566 => 86483, - 567 => 86510, - 568 => 86511, - 569 => 86512, - 570 => 86513, - 571 => 86514, - 572 => 86515, - 573 => 86516, - 574 => 86517, - 575 => 86518, - 576 => 86519, - 577 => 86523, - 578 => 86527, - 579 => 86530, - 580 => 86531, - 581 => 86532, - 582 => 86533, - 583 => 86534, - 584 => 86535, - 585 => 86536, - 586 => 86537, - 587 => 86538, - 588 => 86539, - 589 => 86543, - 590 => 86546, - 591 => 86550, - 592 => 86551, - 593 => 86552, - 594 => 86553, - 595 => 86554, - 596 => 86555, - 597 => 86556, - 598 => 86557, - 599 => 86558, - 600 => 86559, - 601 => 86561, - 602 => 86562, - 603 => 86563, - 604 => 86564, - 605 => 86566, - 606 => 86570, - 607 => 86571, - 608 => 86572, - 609 => 86573, - 610 => 86574, - 611 => 86575, - 612 => 86576, - 613 => 86577, - 614 => 86578, - 615 => 86579, - 616 => 86580, - 617 => 86591, - 618 => 86592, - 619 => 86593, - 620 => 86594, - 621 => 86595, - 622 => 86596, - 623 => 86597, - 624 => 86598, - 625 => 86599, - 626 => 86631, - 627 => 86632, - 628 => 86633, - 629 => 86634, - 630 => 86635, - 631 => 86660, - 632 => 86662, - 633 => 86663, - 634 => 86668, - 635 => 86691, - 636 => 86692, - 637 => 86701, - 638 => 86710, - 639 => 86711, - 640 => 86712, - 641 => 86713, - 642 => 86714, - 643 => 86715, - 644 => 86716, - 645 => 86717, - 646 => 86718, - 647 => 86719, - 648 => 86722, - 649 => 86724, - 650 => 86728, - 651 => 86730, - 652 => 86731, - 653 => 86734, - 654 => 86735, - 655 => 86736, - 656 => 86737, - 657 => 86738, - 658 => 86739, - 659 => 86743, - 660 => 86744, - 661 => 86745, - 662 => 86746, - 663 => 86750, - 664 => 86751, - 665 => 86752, - 666 => 86753, - 667 => 86754, - 668 => 86755, - 669 => 86756, - 670 => 86757, - 671 => 86758, - 672 => 86759, - 673 => 86760, - 674 => 86762, - 675 => 86763, - 676 => 86766, - 677 => 86768, - 678 => 86769, - 679 => 86770, - 680 => 86771, - 681 => 86772, - 682 => 86773, - 683 => 86774, - 684 => 86775, - 685 => 86776, - 686 => 86777, - 687 => 86778, - 688 => 86779, - 689 => 86790, - 690 => 86791, - 691 => 86792, - 692 => 86793, - 693 => 86794, - 694 => 86795, - 695 => 86796, - 696 => 86797, - 697 => 86798, - 698 => 86799, - 699 => 86807, - 700 => 86812, - 701 => 86813, - 702 => 86816, - 703 => 86817, - 704 => 86818, - 705 => 86825, - 706 => 86826, - 707 => 86827, - 708 => 86830, - 709 => 86831, - 710 => 86832, - 711 => 86833, - 712 => 86834, - 713 => 86835, - 714 => 86836, - 715 => 86837, - 716 => 86838, - 717 => 86839, - 718 => 86851, - 719 => 86852, - 720 => 86853, - 721 => 86854, - 722 => 86855, - 723 => 86856, - 724 => 86857, - 725 => 86858, - 726 => 86859, - 727 => 86870, - 728 => 86871, - 729 => 86872, - 730 => 86873, - 731 => 86874, - 732 => 86875, - 733 => 86876, - 734 => 86877, - 735 => 86878, - 736 => 86879, - 737 => 86883, - 738 => 86886, - 739 => 86887, - 740 => 86888, - 741 => 86891, - 742 => 86892, - 743 => 86893, - 744 => 86894, - 745 => 86895, - 746 => 86896, - 747 => 86897, - 748 => 86898, - 749 => 86901, - 750 => 86902, - 751 => 86903, - 752 => 86906, - 753 => 86908, - 754 => 86909, - 755 => 86911, - 756 => 86912, - 757 => 86913, - 758 => 86914, - 759 => 86915, - 760 => 86916, - 761 => 86917, - 762 => 86919, - 763 => 86930, - 764 => 86931, - 765 => 86932, - 766 => 86933, - 767 => 86934, - 768 => 86935, - 769 => 86936, - 770 => 86937, - 771 => 86938, - 772 => 86939, - 773 => 86941, - 774 => 86943, - 775 => 86951, - 776 => 86952, - 777 => 86953, - 778 => 86954, - 779 => 86955, - 780 => 86970, - 781 => 86971, - 782 => 86972, - 783 => 86973, - 784 => 86974, - 785 => 86975, - 786 => 86976, - 787 => 86977, - 788 => 86979, - 789 => 86990, - 790 => 86991, - 791 => 86992, - 792 => 86993, - 793 => 86994, - 794 => 86995, - 795 => 86996, - 796 => 86997, - 797 => 86998, - 798 => 86999, - 799 => 886, - 800 => 90, - 801 => 91, - 802 => 93, - 803 => 94, - 804 => 95, - 805 => 962, - 806 => 966, - 807 => 968, - 808 => 972, - 809 => 975, - 810 => 98, - 811 => 992, - 812 => 994, + 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 => 220, + 13 => 221, + 14 => 222, + 15 => 223, + 16 => 224, + 17 => 225, + 18 => 226, + 19 => 228, + 20 => 229, + 21 => 230, + 22 => 232, + 23 => 233, + 24 => 234, + 25 => 237, + 26 => 238, + 27 => 239, + 28 => 241, + 29 => 242, + 30 => 243, + 31 => 244, + 32 => 245, + 33 => 247, + 34 => 249, + 35 => 251, + 36 => 252, + 37 => 254, + 38 => 256, + 39 => 257, + 40 => 258, + 41 => 260, + 42 => 261, + 43 => 263, + 44 => 264, + 45 => 266, + 46 => 267, + 47 => 268, + 48 => 269, + 49 => 27, + 50 => 290, + 51 => 299, + 52 => 30, + 53 => 31, + 54 => 32, + 55 => 33, + 56 => 34, + 57 => 351, + 58 => 352, + 59 => 353, + 60 => 354, + 61 => 355, + 62 => 358, + 63 => 359, + 64 => 36, + 65 => 370, + 66 => 371, + 67 => 372, + 68 => 373, + 69 => 374, + 70 => 375, + 71 => 381, + 72 => 389, + 73 => 39, + 74 => 40, + 75 => 41, + 76 => 420, + 77 => 421, + 78 => 43, + 79 => 44, + 80 => 46, + 81 => 47, + 82 => 48, + 83 => 49, + 84 => 501, + 85 => 504, + 86 => 51, + 87 => 53, + 88 => 54, + 89 => 55, + 90 => 56, + 91 => 57, + 92 => 58, + 93 => 592, + 94 => 599, + 95 => 62, + 96 => 64, + 97 => 66, + 98 => 686, + 99 => 688, + 100 => 7, + 101 => 81, + 102 => 82, + 103 => 84, + 104 => 8610, + 105 => 86130, + 106 => 86131, + 107 => 86132, + 108 => 86133, + 109 => 86134, + 110 => 86135, + 111 => 86136, + 112 => 86137, + 113 => 86138, + 114 => 86139, + 115 => 86145, + 116 => 86147, + 117 => 86150, + 118 => 86151, + 119 => 86152, + 120 => 86153, + 121 => 86155, + 122 => 86156, + 123 => 86157, + 124 => 86158, + 125 => 86159, + 126 => 86170, + 127 => 86176, + 128 => 86177, + 129 => 86178, + 130 => 86180, + 131 => 86181, + 132 => 86182, + 133 => 86183, + 134 => 86184, + 135 => 86185, + 136 => 86186, + 137 => 86187, + 138 => 86188, + 139 => 86189, + 140 => 86, + 141 => 886, + 142 => 90, + 143 => 91, + 144 => 93, + 145 => 94, + 146 => 95, + 147 => 962, + 148 => 966, + 149 => 968, + 150 => 972, + 151 => 975, + 152 => 98, + 153 => 992, + 154 => 994, ), 'es' => array ( @@ -888,15 +230,13 @@ return array ( 3 => 228, 4 => 229, 5 => 230, - 6 => 242, - 7 => 243, - 8 => 269, - 9 => 290, - 10 => 32, - 11 => 33, - 12 => 352, - 13 => 41, - 14 => 82, + 6 => 243, + 7 => 290, + 8 => 32, + 9 => 33, + 10 => 352, + 11 => 41, + 12 => 82, ), 'hi' => array ( @@ -964,10 +304,6 @@ return array ( 3 => 7, 4 => 82, ), - 'se' => - array ( - 0 => 358, - ), 'sl' => array ( 0 => 82, @@ -979,7 +315,8 @@ return array ( ), 'sv' => array ( - 0 => 46, + 0 => 358, + 1 => 46, ), 'th' => array ( @@ -1038,334 +375,8 @@ return array ( 34 => 86187, 35 => 86188, 36 => 86189, - 37 => 8620, - 38 => 8621, - 39 => 8622, - 40 => 8623, - 41 => 8624, - 42 => 8625, - 43 => 8627, - 44 => 8628, - 45 => 8629, - 46 => 86310, - 47 => 86311, - 48 => 86312, - 49 => 86313, - 50 => 86314, - 51 => 86315, - 52 => 86316, - 53 => 86317, - 54 => 86318, - 55 => 86319, - 56 => 86335, - 57 => 86349, - 58 => 86350, - 59 => 86351, - 60 => 86352, - 61 => 86353, - 62 => 86354, - 63 => 86355, - 64 => 86356, - 65 => 86357, - 66 => 86358, - 67 => 86359, - 68 => 86370, - 69 => 86371, - 70 => 86372, - 71 => 86373, - 72 => 86374, - 73 => 86375, - 74 => 86376, - 75 => 86377, - 76 => 86378, - 77 => 86379, - 78 => 86391, - 79 => 86392, - 80 => 86393, - 81 => 86394, - 82 => 86395, - 83 => 86396, - 84 => 86398, - 85 => 86410, - 86 => 86411, - 87 => 86412, - 88 => 86413, - 89 => 86414, - 90 => 86415, - 91 => 86416, - 92 => 86417, - 93 => 86418, - 94 => 86419, - 95 => 86421, - 96 => 86427, - 97 => 86429, - 98 => 86431, - 99 => 86432, - 100 => 86433, - 101 => 86434, - 102 => 86435, - 103 => 86436, - 104 => 86437, - 105 => 86438, - 106 => 86439, - 107 => 86451, - 108 => 86452, - 109 => 86453, - 110 => 86454, - 111 => 86455, - 112 => 86456, - 113 => 86457, - 114 => 86458, - 115 => 86459, - 116 => 86464, - 117 => 86467, - 118 => 86468, - 119 => 86469, - 120 => 86470, - 121 => 86471, - 122 => 86472, - 123 => 86473, - 124 => 86474, - 125 => 86475, - 126 => 86476, - 127 => 86477, - 128 => 86478, - 129 => 86479, - 130 => 86482, - 131 => 86483, - 132 => 86510, - 133 => 86511, - 134 => 86512, - 135 => 86513, - 136 => 86514, - 137 => 86515, - 138 => 86516, - 139 => 86517, - 140 => 86518, - 141 => 86519, - 142 => 86523, - 143 => 86527, - 144 => 86530, - 145 => 86531, - 146 => 86532, - 147 => 86533, - 148 => 86534, - 149 => 86535, - 150 => 86536, - 151 => 86537, - 152 => 86538, - 153 => 86539, - 154 => 86543, - 155 => 86546, - 156 => 86550, - 157 => 86551, - 158 => 86552, - 159 => 86553, - 160 => 86554, - 161 => 86555, - 162 => 86556, - 163 => 86557, - 164 => 86558, - 165 => 86559, - 166 => 86561, - 167 => 86562, - 168 => 86563, - 169 => 86564, - 170 => 86566, - 171 => 86570, - 172 => 86571, - 173 => 86572, - 174 => 86573, - 175 => 86574, - 176 => 86575, - 177 => 86576, - 178 => 86577, - 179 => 86578, - 180 => 86579, - 181 => 86580, - 182 => 86591, - 183 => 86592, - 184 => 86593, - 185 => 86594, - 186 => 86595, - 187 => 86596, - 188 => 86597, - 189 => 86598, - 190 => 86599, - 191 => 86631, - 192 => 86632, - 193 => 86633, - 194 => 86634, - 195 => 86635, - 196 => 86660, - 197 => 86662, - 198 => 86663, - 199 => 86668, - 200 => 86691, - 201 => 86692, - 202 => 86701, - 203 => 86710, - 204 => 86711, - 205 => 86712, - 206 => 86713, - 207 => 86714, - 208 => 86715, - 209 => 86716, - 210 => 86717, - 211 => 86718, - 212 => 86719, - 213 => 86722, - 214 => 86724, - 215 => 86728, - 216 => 86730, - 217 => 86731, - 218 => 86734, - 219 => 86735, - 220 => 86736, - 221 => 86737, - 222 => 86738, - 223 => 86739, - 224 => 86743, - 225 => 86744, - 226 => 86745, - 227 => 86746, - 228 => 86750, - 229 => 86751, - 230 => 86752, - 231 => 86753, - 232 => 86754, - 233 => 86755, - 234 => 86756, - 235 => 86757, - 236 => 86758, - 237 => 86759, - 238 => 86760, - 239 => 86762, - 240 => 86763, - 241 => 86766, - 242 => 86768, - 243 => 86769, - 244 => 86770, - 245 => 86771, - 246 => 86772, - 247 => 86773, - 248 => 86774, - 249 => 86775, - 250 => 86776, - 251 => 86777, - 252 => 86778, - 253 => 86779, - 254 => 86790, - 255 => 86791, - 256 => 86792, - 257 => 86793, - 258 => 86794, - 259 => 86795, - 260 => 86796, - 261 => 86797, - 262 => 86798, - 263 => 86799, - 264 => 86807, - 265 => 86812, - 266 => 86813, - 267 => 86816, - 268 => 86817, - 269 => 86818, - 270 => 86825, - 271 => 86826, - 272 => 86827, - 273 => 86830, - 274 => 86831, - 275 => 86832, - 276 => 86833, - 277 => 86834, - 278 => 86835, - 279 => 86836, - 280 => 86837, - 281 => 86838, - 282 => 86839, - 283 => 86851, - 284 => 86852, - 285 => 86853, - 286 => 86854, - 287 => 86855, - 288 => 86856, - 289 => 86857, - 290 => 86858, - 291 => 86859, - 292 => 86870, - 293 => 86871, - 294 => 86872, - 295 => 86873, - 296 => 86874, - 297 => 86875, - 298 => 86876, - 299 => 86877, - 300 => 86878, - 301 => 86879, - 302 => 86883, - 303 => 86886, - 304 => 86887, - 305 => 86888, - 306 => 86891, - 307 => 86892, - 308 => 86893, - 309 => 86894, - 310 => 86895, - 311 => 86896, - 312 => 86897, - 313 => 86898, - 314 => 86901, - 315 => 86902, - 316 => 86903, - 317 => 86906, - 318 => 86908, - 319 => 86909, - 320 => 86911, - 321 => 86912, - 322 => 86913, - 323 => 86914, - 324 => 86915, - 325 => 86916, - 326 => 86917, - 327 => 86919, - 328 => 86930, - 329 => 86931, - 330 => 86932, - 331 => 86933, - 332 => 86934, - 333 => 86935, - 334 => 86936, - 335 => 86937, - 336 => 86938, - 337 => 86939, - 338 => 86941, - 339 => 86943, - 340 => 86951, - 341 => 86952, - 342 => 86953, - 343 => 86954, - 344 => 86955, - 345 => 86970, - 346 => 86971, - 347 => 86972, - 348 => 86973, - 349 => 86974, - 350 => 86975, - 351 => 86976, - 352 => 86977, - 353 => 86979, - 354 => 86990, - 355 => 86991, - 356 => 86992, - 357 => 86993, - 358 => 86994, - 359 => 86995, - 360 => 86996, - 361 => 86997, - 362 => 86998, - 363 => 86999, - 364 => 886, + 37 => 86, + 38 => 886, ), 'zh_Hant' => array ( diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/12.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/12.php new file mode 100644 index 000000000..03bae1eb0 --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/12.php @@ -0,0 +1,4466 @@ + 'New Jersey', + 1201200 => 'Jersey City, NJ', + 1201216 => 'Jersey City, NJ', + 1201217 => 'Jersey City, NJ', + 1201222 => 'Jersey City, NJ', + 1201224 => 'Fort Lee, NJ', + 1201225 => 'Paramus, NJ', + 1201239 => 'Jersey City, NJ', + 1201242 => 'Fort Lee, NJ', + 1201244 => 'Bergenfield, NJ', + 1201288 => 'Hasbrouck Hts, NJ', + 1201309 => 'Jersey City, NJ', + 1201332 => 'Jersey City, NJ', + 1201333 => 'Jersey City, NJ', + 1201336 => 'Hackensack, NJ', + 1201337 => 'Oakland, NJ', + 1201339 => 'Bayonne, NJ', + 1201342 => 'Hackensack, NJ', + 1201343 => 'Hackensack, NJ', + 1201346 => 'Fort Lee, NJ', + 1201357 => 'Teaneck, NJ', + 1201360 => 'Jersey City, NJ', + 1201363 => 'Fort Lee, NJ', + 1201384 => 'Bergenfield, NJ', + 1201385 => 'Bergenfield, NJ', + 1201386 => 'Jersey City, NJ', + 1201405 => 'Oakland, NJ', + 1201418 => 'Hoboken, NJ', + 1201432 => 'Jersey City, NJ', + 1201433 => 'Jersey City, NJ', + 1201434 => 'Jersey City, NJ', + 1201435 => 'Jersey City, NJ', + 1201436 => 'Bayonne, NJ', + 1201437 => 'Bayonne, NJ', + 1201451 => 'Jersey City, NJ', + 1201457 => 'Hackensack, NJ', + 1201461 => 'Fort Lee, NJ', + 1201475 => 'Fair Lawn, NJ', + 1201487 => 'Hackensack, NJ', + 1201488 => 'Hackensack, NJ', + 1201489 => 'Hackensack, NJ', + 1201498 => 'Hackensack, NJ', + 1201512 => 'Mahwah, NJ', + 1201525 => 'Hackensack, NJ', + 1201529 => 'Mahwah, NJ', + 1201530 => 'Teaneck, NJ', + 1201547 => 'Jersey City, NJ', + 1201567 => 'Englewood, NJ', + 1201568 => 'Englewood, NJ', + 1201569 => 'Englewood, NJ', + 1201585 => 'Fort Lee, NJ', + 1201592 => 'Fort Lee, NJ', + 1201626 => 'Jersey City, NJ', + 1201631 => 'New York, NY', + 1201634 => 'Paramus, NJ', + 1201646 => 'Hackensack, NJ', + 1201653 => 'Jersey City, NJ', + 1201656 => 'Jersey City, NJ', + 1201678 => 'Hackensack, NJ', + 1201683 => 'Hoboken, NJ', + 1201692 => 'Teaneck, NJ', + 1201706 => 'Jersey City, NJ', + 1201714 => 'Jersey City, NJ', + 1201773 => 'Fair Lawn, NJ', + 1201791 => 'Fair Lawn, NJ', + 1201794 => 'Fair Lawn, NJ', + 1201795 => 'Jersey City, NJ', + 1201796 => 'Fair Lawn, NJ', + 1201797 => 'Fair Lawn, NJ', + 1201798 => 'Jersey City, NJ', + 1201823 => 'Bayonne, NJ', + 1201833 => 'Teaneck, NJ', + 1201836 => 'Teaneck, NJ', + 1201837 => 'Teaneck, NJ', + 1201848 => 'Wyckoff, NJ', + 1201854 => 'North Bergen, NJ', + 1201858 => 'Bayonne, NJ', + 1201862 => 'Teaneck, NJ', + 1201868 => 'North Bergen, NJ', + 1201869 => 'North Bergen, NJ', + 1201871 => 'Englewood, NJ', + 1201883 => 'Hackensack, NJ', + 1201886 => 'Fort Lee, NJ', + 1201891 => 'Wyckoff, NJ', + 1201894 => 'Englewood, NJ', + 1201915 => 'Jersey City, NJ', + 1201918 => 'Jersey City, NJ', + 1201928 => 'Teaneck, NJ', + 1201942 => 'Jersey City, NJ', + 1201944 => 'Fort Lee, NJ', + 1201946 => 'Jersey City, NJ', + 1201947 => 'Fort Lee, NJ', + 1201955 => 'Kearny, NJ', + 1201963 => 'Jersey City, NJ', + 1201968 => 'Hackensack, NJ', + 1201984 => 'Jersey City, NJ', + 1201991 => 'Kearny, NJ', + 1201996 => 'Hackensack, NJ', + 1201997 => 'Kearny, NJ', + 1201998 => 'Kearny, NJ', + 1202 => 'Washington D.C.', + 1203 => 'Connecticut', + 1203202 => 'Darien, CT', + 1203208 => 'Branford, CT', + 1203210 => 'Wilton, CT', + 1203221 => 'Westport, CT', + 1203222 => 'Westport, CT', + 1203225 => 'Shelton, CT', + 1203226 => 'Westport, CT', + 1203227 => 'Westport, CT', + 1203229 => 'Norwalk, CT', + 1203230 => 'Hamden, CT', + 1203234 => 'North Haven, CT', + 1203235 => 'Meriden, CT', + 1203237 => 'Meriden, CT', + 1203238 => 'Meriden, CT', + 1203239 => 'North Haven, CT', + 1203245 => 'Madison, CT', + 1203248 => 'Hamden, CT', + 1203250 => 'Cheshire, CT', + 1203254 => 'Fairfield, CT', + 1203255 => 'Fairfield, CT', + 1203256 => 'Fairfield, CT', + 1203259 => 'Fairfield, CT', + 1203262 => 'Southbury, CT', + 1203263 => 'Woodbury, CT', + 1203264 => 'Southbury, CT', + 1203265 => 'Wallingford, CT', + 1203266 => 'Bethlehem, CT', + 1203267 => 'Southbury, CT', + 1203269 => 'Wallingford, CT', + 1203270 => 'Newtown, CT', + 1203271 => 'Cheshire, CT', + 1203272 => 'Cheshire, CT', + 1203276 => 'Stamford, CT', + 1203281 => 'Hamden, CT', + 1203283 => 'Milford, CT', + 1203284 => 'Wallingford, CT', + 1203286 => 'Norwalk, CT', + 1203287 => 'Hamden, CT', + 1203288 => 'Hamden, CT', + 1203292 => 'Fairfield, CT', + 1203294 => 'Wallingford, CT', + 1203299 => 'Norwalk, CT', + 1203301 => 'Milford, CT', + 1203304 => 'Newtown, CT', + 1203312 => 'New Fairfield, CT', + 1203315 => 'Branford, CT', + 1203316 => 'Stamford, CT', + 1203318 => 'Madison, CT', + 1203319 => 'Fairfield, CT', + 1203322 => 'Stamford, CT', + 1203323 => 'Stamford, CT', + 1203324 => 'Stamford, CT', + 1203325 => 'Stamford, CT', + 1203327 => 'Stamford, CT', + 1203329 => 'Stamford, CT', + 1203330 => 'Bridgeport, CT', + 1203331 => 'Bridgeport, CT', + 1203332 => 'Bridgeport, CT', + 1203333 => 'Bridgeport, CT', + 1203334 => 'Bridgeport, CT', + 1203335 => 'Bridgeport, CT', + 1203336 => 'Bridgeport, CT', + 1203340 => 'Greenwich, CT', + 1203341 => 'Westport, CT', + 1203345 => 'Bridgeport, CT', + 1203348 => 'Stamford, CT', + 1203353 => 'Stamford, CT', + 1203354 => 'Norwalk, CT', + 1203356 => 'Stamford, CT', + 1203357 => 'Stamford, CT', + 1203358 => 'Stamford, CT', + 1203359 => 'Stamford, CT', + 1203362 => 'Bridgeport, CT', + 1203364 => 'Newtown, CT', + 1203366 => 'Bridgeport, CT', + 1203367 => 'Bridgeport, CT', + 1203368 => 'Bridgeport, CT', + 1203371 => 'Bridgeport, CT', + 1203372 => 'Bridgeport, CT', + 1203374 => 'Bridgeport, CT', + 1203375 => 'Stratford, CT', + 1203377 => 'Stratford, CT', + 1203378 => 'Stratford, CT', + 1203380 => 'Stratford, CT', + 1203381 => 'Stratford, CT', + 1203384 => 'Bridgeport, CT', + 1203385 => 'Stratford, CT', + 1203386 => 'Stratford, CT', + 1203393 => 'Bethany, CT', + 1203405 => 'Southbury, CT', + 1203407 => 'Hamden, CT', + 1203421 => 'Madison, CT', + 1203422 => 'Greenwich, CT', + 1203426 => 'Newtown, CT', + 1203431 => 'Ridgefield, CT', + 1203432 => 'New Haven, CT', + 1203437 => 'Waterbury, CT', + 1203438 => 'Ridgefield, CT', + 1203439 => 'Cheshire, CT', + 1203440 => 'Meriden, CT', + 1203453 => 'Guilford, CT', + 1203454 => 'Westport, CT', + 1203457 => 'Guilford, CT', + 1203458 => 'Guilford, CT', + 1203466 => 'East Haven, CT', + 1203467 => 'East Haven, CT', + 1203468 => 'East Haven, CT', + 1203469 => 'East Haven, CT', + 1203481 => 'Branford, CT', + 1203483 => 'Branford, CT', + 1203488 => 'Branford, CT', + 1203498 => 'New Haven, CT', + 1203503 => 'New Haven, CT', + 1203504 => 'Stamford, CT', + 1203513 => 'Shelton, CT', + 1203527 => 'Waterbury, CT', + 1203528 => 'Waterbury, CT', + 1203531 => 'Greenwich, CT', + 1203532 => 'Greenwich, CT', + 1203557 => 'Westport, CT', + 1203562 => 'New Haven, CT', + 1203563 => 'Wilton, CT', + 1203569 => 'Stamford, CT', + 1203573 => 'Waterbury, CT', + 1203574 => 'Waterbury, CT', + 1203575 => 'Waterbury, CT', + 1203576 => 'Bridgeport, CT', + 1203579 => 'Bridgeport, CT', + 1203591 => 'Waterbury, CT', + 1203594 => 'New Canaan, CT', + 1203595 => 'Stamford, CT', + 1203596 => 'Waterbury, CT', + 1203597 => 'Waterbury, CT', + 1203598 => 'Middlebury, CT', + 1203612 => 'Bridgeport, CT', + 1203622 => 'Greenwich, CT', + 1203624 => 'New Haven, CT', + 1203625 => 'Greenwich, CT', + 1203626 => 'Wallingford, CT', + 1203629 => 'Greenwich, CT', + 1203630 => 'Meriden, CT', + 1203634 => 'Meriden, CT', + 1203639 => 'Meriden, CT', + 1203655 => 'Darien, CT', + 1203656 => 'Darien, CT', + 1203661 => 'Greenwich, CT', + 1203662 => 'Darien, CT', + 1203688 => 'New Haven, CT', + 1203694 => 'Meriden, CT', + 1203699 => 'Cheshire, CT', + 1203701 => 'Milford, CT', + 1203709 => 'Waterbury, CT', + 1203720 => 'Naugatuck, CT', + 1203723 => 'Naugatuck, CT', + 1203729 => 'Naugatuck, CT', + 1203730 => 'Danbury, CT', + 1203732 => 'Derby, CT', + 1203734 => 'Ansonia, CT', + 1203736 => 'Ansonia, CT', + 1203737 => 'New Haven, CT', + 1203739 => 'Danbury, CT', + 1203740 => 'Brookfield, CT', + 1203743 => 'Danbury, CT', + 1203744 => 'Danbury, CT', + 1203746 => 'New Fairfield, CT', + 1203748 => 'Danbury, CT', + 1203752 => 'New Haven, CT', + 1203753 => 'Waterbury, CT', + 1203754 => 'Waterbury, CT', + 1203755 => 'Waterbury, CT', + 1203756 => 'Waterbury, CT', + 1203757 => 'Waterbury, CT', + 1203758 => 'Prospect, CT', + 1203759 => 'Waterbury, CT', + 1203761 => 'Wilton, CT', + 1203762 => 'Wilton, CT', + 1203764 => 'New Haven, CT', + 1203772 => 'New Haven, CT', + 1203773 => 'New Haven, CT', + 1203775 => 'Brookfield, CT', + 1203776 => 'New Haven, CT', + 1203777 => 'New Haven, CT', + 1203778 => 'Danbury, CT', + 1203781 => 'New Haven, CT', + 1203782 => 'New Haven, CT', + 1203783 => 'Milford, CT', + 1203785 => 'New Haven, CT', + 1203787 => 'New Haven, CT', + 1203789 => 'New Haven, CT', + 1203790 => 'Danbury, CT', + 1203791 => 'Danbury, CT', + 1203792 => 'Danbury, CT', + 1203794 => 'Danbury, CT', + 1203795 => 'Orange, CT', + 1203797 => 'Danbury, CT', + 1203798 => 'Danbury, CT', + 1203799 => 'Orange, CT', + 1203801 => 'New Canaan, CT', + 1203826 => 'Danbury, CT', + 1203831 => 'Norwalk, CT', + 1203834 => 'Wilton, CT', + 1203838 => 'Norwalk, CT', + 1203840 => 'Norwalk, CT', + 1203845 => 'Norwalk, CT', + 1203846 => 'Norwalk, CT', + 1203847 => 'Norwalk, CT', + 1203849 => 'Norwalk, CT', + 1203852 => 'Norwalk, CT', + 1203853 => 'Norwalk, CT', + 1203854 => 'Norwalk, CT', + 1203855 => 'Norwalk, CT', + 1203857 => 'Norwalk, CT', + 1203861 => 'Greenwich, CT', + 1203863 => 'Greenwich, CT', + 1203865 => 'New Haven, CT', + 1203866 => 'Norwalk, CT', + 1203869 => 'Greenwich, CT', + 1203870 => 'Bridgeport, CT', + 1203874 => 'Milford, CT', + 1203876 => 'Milford, CT', + 1203877 => 'Milford, CT', + 1203878 => 'Milford, CT', + 1203879 => 'Wolcott, CT', + 1203880 => 'Monroe, CT', + 1203882 => 'Milford, CT', + 1203888 => 'Seymour, CT', + 1203891 => 'Orange, CT', + 1203894 => 'Ridgefield, CT', + 1203899 => 'Norwalk, CT', + 1203922 => 'Shelton, CT', + 1203924 => 'Shelton, CT', + 1203925 => 'Shelton, CT', + 1203926 => 'Shelton, CT', + 1203929 => 'Shelton, CT', + 1203931 => 'West Haven, CT', + 1203932 => 'West Haven, CT', + 1203933 => 'West Haven, CT', + 1203934 => 'West Haven, CT', + 1203937 => 'West Haven, CT', + 1203944 => 'Shelton, CT', + 1203946 => 'New Haven, CT', + 1203949 => 'Wallingford, CT', + 1203956 => 'Norwalk, CT', + 1203961 => 'Stamford, CT', + 1203964 => 'Stamford, CT', + 1203966 => 'New Canaan, CT', + 1203967 => 'Stamford, CT', + 1203968 => 'Stamford, CT', + 1203969 => 'Stamford, CT', + 1203972 => 'New Canaan, CT', + 1203974 => 'New Haven, CT', + 1203975 => 'Stamford, CT', + 1203977 => 'Stamford, CT', + 1203978 => 'Stamford, CT', + 1203987 => 'Greenwich, CT', + 1204 => 'Manitoba', + 1204239 => 'Portage la Prairie, MB', + 1204268 => 'Beausejour, MB', + 1204284 => 'Winnipeg, MB', + 1204324 => 'Altona, MB', + 1204325 => 'Winkler, MB', + 1204326 => 'Steinbach, MB', + 1204331 => 'Winkler, MB', + 1204345 => 'Lac du Bonnet, MB', + 1204346 => 'Steinbach, MB', + 1204376 => 'Arborg, MB', + 1204388 => 'Niverville, MB', + 1204414 => 'Winnipeg, MB', + 1204415 => 'Winnipeg, MB', + 1204421 => 'Winnipeg, MB', + 1204422 => 'Ste. Anne, MB', + 1204434 => 'Grunthal, MB', + 1204444 => 'Oakbank, MB', + 1204447 => 'Ste. Rose du Lac, MB', + 1204452 => 'Winnipeg, MB', + 1204453 => 'Winnipeg, MB', + 1204467 => 'Stonewall, MB', + 1204474 => 'Winnipeg, MB', + 1204475 => 'Winnipeg, MB', + 1204476 => 'Neepawa, MB', + 1204477 => 'Winnipeg, MB', + 1204480 => 'Winnipeg, MB', + 1204482 => 'Selkirk, MB', + 1204483 => 'Souris, MB', + 1204487 => 'Winnipeg, MB', + 1204488 => 'Winnipeg, MB', + 1204489 => 'Winnipeg, MB', + 1204523 => 'Killarney, MB', + 1204534 => 'Boissevain, MB', + 1204571 => 'Brandon, MB', + 1204582 => 'Winnipeg, MB', + 1204586 => 'Winnipeg, MB', + 1204589 => 'Winnipeg, MB', + 1204623 => 'The Pas, MB', + 1204632 => 'Winnipeg, MB', + 1204633 => 'Winnipeg, MB', + 1204638 => 'Dauphin, MB', + 1204642 => 'Gimli, MB', + 1204667 => 'Winnipeg, MB', + 1204677 => 'Thompson, MB', + 1204687 => 'Flin Flon, MB', + 1204694 => 'Winnipeg, MB', + 1204697 => 'Winnipeg, MB', + 1204725 => 'Brandon, MB', + 1204726 => 'Brandon, MB', + 1204727 => 'Brandon, MB', + 1204728 => 'Brandon, MB', + 1204729 => 'Brandon, MB', + 1204734 => 'Swan River, MB', + 1204745 => 'Carman, MB', + 1204748 => 'Virden, MB', + 1204757 => 'Lockport, MB', + 1204768 => 'Ashern, MB', + 1204772 => 'Winnipeg, MB', + 1204773 => 'Russell, MB', + 1204774 => 'Winnipeg, MB', + 1204775 => 'Winnipeg, MB', + 1204778 => 'Thompson, MB', + 1204779 => 'Winnipeg, MB', + 1204783 => 'Winnipeg, MB', + 1204785 => 'Selkirk, MB', + 1204786 => 'Winnipeg, MB', + 1204788 => 'Winnipeg, MB', + 1204822 => 'Morden, MB', + 1204834 => 'Carberry, MB', + 1204837 => 'Winnipeg, MB', + 1204857 => 'Portage la Prairie, MB', + 1204867 => 'Minnedosa, MB', + 1204878 => 'Lorette, MB', + 1204886 => 'Teulon, MB', + 1204888 => 'Winnipeg, MB', + 1204897 => 'Winnipeg, MB', + 1204925 => 'Winnipeg, MB', + 1204927 => 'Winnipeg, MB', + 1204937 => 'Roblin, MB', + 1204940 => 'Winnipeg, MB', + 1204942 => 'Winnipeg, MB', + 1204943 => 'Winnipeg, MB', + 1204944 => 'Winnipeg, MB', + 1204947 => 'Winnipeg, MB', + 1204949 => 'Winnipeg, MB', + 1204953 => 'Winnipeg, MB', + 1204956 => 'Winnipeg, MB', + 1204957 => 'Winnipeg, MB', + 1204958 => 'Winnipeg, MB', + 1204982 => 'Winnipeg, MB', + 1204985 => 'Winnipeg, MB', + 1204987 => 'Winnipeg, MB', + 1204988 => 'Winnipeg, MB', + 1204989 => 'Winnipeg, MB', + 1205 => 'Alabama', + 1205202 => 'Birmingham, AL', + 1205221 => 'Jasper, AL', + 1205226 => 'Birmingham, AL', + 1205244 => 'Birmingham, AL', + 1205248 => 'Tuscaloosa, AL', + 1205250 => 'Birmingham, AL', + 1205251 => 'Birmingham, AL', + 1205252 => 'Birmingham, AL', + 1205254 => 'Birmingham, AL', + 1205271 => 'Birmingham, AL', + 1205274 => 'Oneonta, AL', + 1205280 => 'Clanton, AL', + 1205290 => 'Birmingham, AL', + 1205295 => 'Jasper, AL', + 1205320 => 'Birmingham, AL', + 1205322 => 'Birmingham, AL', + 1205323 => 'Birmingham, AL', + 1205324 => 'Birmingham, AL', + 1205325 => 'Birmingham, AL', + 1205326 => 'Birmingham, AL', + 1205328 => 'Birmingham, AL', + 1205330 => 'Northport, AL', + 1205333 => 'Northport, AL', + 1205338 => 'Pell City, AL', + 1205339 => 'Northport, AL', + 1205342 => 'Tuscaloosa, AL', + 1205343 => 'Tuscaloosa, AL', + 1205344 => 'Tuscaloosa, AL', + 1205345 => 'Tuscaloosa, AL', + 1205348 => 'Tuscaloosa, AL', + 1205349 => 'Tuscaloosa, AL', + 1205364 => 'Gordo, AL', + 1205366 => 'Tuscaloosa, AL', + 1205367 => 'Carrollton, AL', + 1205371 => 'Moundville, AL', + 1205372 => 'Eutaw, AL', + 1205373 => 'Aliceville, AL', + 1205375 => 'Reform, AL', + 1205380 => 'Birmingham, AL', + 1205384 => 'Jasper, AL', + 1205387 => 'Jasper, AL', + 1205391 => 'Tuscaloosa, AL', + 1205392 => 'York, AL', + 1205397 => 'Birmingham, AL', + 1205408 => 'Birmingham, AL', + 1205414 => 'Birmingham, AL', + 1205424 => 'Bessemer, AL', + 1205425 => 'Bessemer, AL', + 1205426 => 'Bessemer, AL', + 1205428 => 'Bessemer, AL', + 1205429 => 'Blountsville, AL', + 1205436 => 'Bessemer, AL', + 1205437 => 'Birmingham, AL', + 1205458 => 'Birmingham, AL', + 1205459 => 'Butler, AL', + 1205462 => 'Tuscaloosa, AL', + 1205467 => 'Springville, AL', + 1205468 => 'Guin, AL', + 1205477 => 'McCalla, AL', + 1205481 => 'Bessemer, AL', + 1205486 => 'Haleyville, AL', + 1205487 => 'Winfield, AL', + 1205489 => 'Double Springs, AL', + 1205491 => 'Hueytown, AL', + 1205520 => 'Birmingham, AL', + 1205521 => 'Birmingham, AL', + 1205553 => 'Tuscaloosa, AL', + 1205554 => 'Tuscaloosa, AL', + 1205556 => 'Tuscaloosa, AL', + 1205562 => 'Tuscaloosa, AL', + 1205578 => 'Birmingham, AL', + 1205588 => 'Birmingham, AL', + 1205589 => 'Altoona, AL', + 1205590 => 'Warrior, AL', + 1205591 => 'Birmingham, AL', + 1205592 => 'Birmingham, AL', + 1205594 => 'Ashville, AL', + 1205595 => 'Birmingham, AL', + 1205599 => 'Birmingham, AL', + 1205608 => 'Gardendale, AL', + 1205625 => 'Oneonta, AL', + 1205629 => 'Odenville, AL', + 1205631 => 'Gardendale, AL', + 1205633 => 'Tuscaloosa, AL', + 1205640 => 'Moody, AL', + 1205647 => 'Warrior, AL', + 1205652 => 'Livingston, AL', + 1205655 => 'Trussville, AL', + 1205661 => 'Trussville, AL', + 1205665 => 'Montevallo, AL', + 1205668 => 'Calera, AL', + 1205669 => 'Columbiana, AL', + 1205678 => 'Chelsea, AL', + 1205680 => 'Pinson, AL', + 1205681 => 'Pinson, AL', + 1205688 => 'Jemison, AL', + 1205695 => 'Vernon, AL', + 1205698 => 'Sulligent, AL', + 1205699 => 'Leeds, AL', + 1205714 => 'Birmingham, AL', + 1205731 => 'Birmingham, AL', + 1205750 => 'Tuscaloosa, AL', + 1205752 => 'Tuscaloosa, AL', + 1205755 => 'Clanton, AL', + 1205758 => 'Tuscaloosa, AL', + 1205759 => 'Tuscaloosa, AL', + 1205763 => 'Lincoln, AL', + 1205780 => 'Birmingham, AL', + 1205781 => 'Birmingham, AL', + 1205783 => 'Birmingham, AL', + 1205785 => 'Birmingham, AL', + 1205786 => 'Birmingham, AL', + 1205787 => 'Birmingham, AL', + 1205788 => 'Birmingham, AL', + 1205791 => 'Birmingham, AL', + 1205798 => 'Birmingham, AL', + 1205801 => 'Birmingham, AL', + 1205802 => 'Birmingham, AL', + 1205803 => 'Birmingham, AL', + 1205814 => 'Pell City, AL', + 1205815 => 'Birmingham, AL', + 1205833 => 'Birmingham, AL', + 1205836 => 'Birmingham, AL', + 1205838 => 'Birmingham, AL', + 1205841 => 'Birmingham, AL', + 1205849 => 'Birmingham, AL', + 1205853 => 'Birmingham, AL', + 1205854 => 'Birmingham, AL', + 1205856 => 'Birmingham, AL', + 1205868 => 'Birmingham, AL', + 1205877 => 'Birmingham, AL', + 1205879 => 'Birmingham, AL', + 1205884 => 'Pell City, AL', + 1205918 => 'Birmingham, AL', + 1205921 => 'Hamilton, AL', + 1205923 => 'Birmingham, AL', + 1205924 => 'Carbon Hill, AL', + 1205925 => 'Birmingham, AL', + 1205926 => 'Centreville, AL', + 1205930 => 'Birmingham, AL', + 1205932 => 'Fayette, AL', + 1205933 => 'Birmingham, AL', + 1205934 => 'Birmingham, AL', + 1205939 => 'Birmingham, AL', + 1205941 => 'Birmingham, AL', + 1205942 => 'Birmingham, AL', + 1205943 => 'Birmingham, AL', + 1205945 => 'Birmingham, AL', + 1205949 => 'Birmingham, AL', + 1205951 => 'Irondale, AL', + 1205956 => 'Irondale, AL', + 1205968 => 'Vestavia Hills, AL', + 1205970 => 'Birmingham, AL', + 1205972 => 'Birmingham, AL', + 1205975 => 'Birmingham, AL', + 1205980 => 'Birmingham, AL', + 1205981 => 'Birmingham, AL', + 1205989 => 'Birmingham, AL', + 1205991 => 'Birmingham, AL', + 1205995 => 'Birmingham, AL', + 1205996 => 'Birmingham, AL', + 1206 => 'Washington', + 1206215 => 'Seattle, WA', + 1206217 => 'Seattle, WA', + 1206223 => 'Seattle, WA', + 1206224 => 'Seattle, WA', + 1206230 => 'Mercer Island, WA', + 1206232 => 'Mercer Island, WA', + 1206233 => 'Seattle, WA', + 1206236 => 'Mercer Island, WA', + 1206252 => 'Seattle, WA', + 1206257 => 'Seattle, WA', + 1206262 => 'Seattle, WA', + 1206264 => 'Seattle, WA', + 1206267 => 'Seattle, WA', + 1206275 => 'Mercer Island, WA', + 1206277 => 'Seattle, WA', + 1206281 => 'Seattle, WA', + 1206282 => 'Seattle, WA', + 1206283 => 'Seattle, WA', + 1206284 => 'Seattle, WA', + 1206285 => 'Seattle, WA', + 1206286 => 'Seattle, WA', + 1206287 => 'Seattle, WA', + 1206288 => 'Seattle, WA', + 1206292 => 'Seattle, WA', + 1206296 => 'Seattle, WA', + 1206297 => 'Seattle, WA', + 1206302 => 'Seattle, WA', + 1206306 => 'Seattle, WA', + 1206320 => 'Seattle, WA', + 1206322 => 'Seattle, WA', + 1206323 => 'Seattle, WA', + 1206324 => 'Seattle, WA', + 1206325 => 'Seattle, WA', + 1206326 => 'Seattle, WA', + 1206328 => 'Seattle, WA', + 1206329 => 'Seattle, WA', + 1206340 => 'Seattle, WA', + 1206343 => 'Seattle, WA', + 1206352 => 'Seattle, WA', + 1206359 => 'Seattle, WA', + 1206361 => 'Seattle, WA', + 1206363 => 'Seattle, WA', + 1206364 => 'Seattle, WA', + 1206365 => 'Seattle, WA', + 1206367 => 'Seattle, WA', + 1206368 => 'Seattle, WA', + 1206370 => 'Seattle, WA', + 1206374 => 'Seattle, WA', + 1206381 => 'Seattle, WA', + 1206382 => 'Seattle, WA', + 1206386 => 'Seattle, WA', + 1206388 => 'Seattle, WA', + 1206402 => 'Seattle, WA', + 1206403 => 'Seattle, WA', + 1206405 => 'Seattle, WA', + 1206417 => 'Seattle, WA', + 1206420 => 'Seattle, WA', + 1206432 => 'Seattle, WA', + 1206436 => 'Seattle, WA', + 1206440 => 'Seattle, WA', + 1206441 => 'Seattle, WA', + 1206443 => 'Seattle, WA', + 1206447 => 'Seattle, WA', + 1206448 => 'Seattle, WA', + 1206453 => 'Seattle, WA', + 1206457 => 'Seattle, WA', + 1206461 => 'Seattle, WA', + 1206462 => 'Seattle, WA', + 1206463 => 'Vashon, WA', + 1206464 => 'Seattle, WA', + 1206466 => 'Seattle, WA', + 1206467 => 'Seattle, WA', + 1206505 => 'Seattle, WA', + 1206517 => 'Seattle, WA', + 1206522 => 'Seattle, WA', + 1206523 => 'Seattle, WA', + 1206524 => 'Seattle, WA', + 1206525 => 'Seattle, WA', + 1206526 => 'Seattle, WA', + 1206527 => 'Seattle, WA', + 1206528 => 'Seattle, WA', + 1206533 => 'Shoreline, WA', + 1206535 => 'Seattle, WA', + 1206542 => 'Shoreline, WA', + 1206543 => 'Seattle, WA', + 1206545 => 'Seattle, WA', + 1206546 => 'Shoreline, WA', + 1206547 => 'Seattle, WA', + 1206548 => 'Seattle, WA', + 1206567 => 'Vashon, WA', + 1206568 => 'Seattle, WA', + 1206575 => 'Tukwila, WA', + 1206583 => 'Seattle, WA', + 1206587 => 'Seattle, WA', + 1206588 => 'Seattle, WA', + 1206598 => 'Seattle, WA', + 1206616 => 'Seattle, WA', + 1206621 => 'Seattle, WA', + 1206622 => 'Seattle, WA', + 1206623 => 'Seattle, WA', + 1206624 => 'Seattle, WA', + 1206625 => 'Seattle, WA', + 1206628 => 'Seattle, WA', + 1206632 => 'Seattle, WA', + 1206633 => 'Seattle, WA', + 1206634 => 'Seattle, WA', + 1206652 => 'Seattle, WA', + 1206667 => 'Seattle, WA', + 1206682 => 'Seattle, WA', + 1206684 => 'Seattle, WA', + 1206685 => 'Seattle, WA', + 1206706 => 'Seattle, WA', + 1206708 => 'Seattle, WA', + 1206709 => 'Seattle, WA', + 1206720 => 'Seattle, WA', + 1206721 => 'Seattle, WA', + 1206722 => 'Seattle, WA', + 1206723 => 'Seattle, WA', + 1206724 => 'Seattle, WA', + 1206725 => 'Seattle, WA', + 1206726 => 'Seattle, WA', + 1206728 => 'Seattle, WA', + 1206729 => 'Seattle, WA', + 1206731 => 'Seattle, WA', + 1206744 => 'Seattle, WA', + 1206749 => 'Seattle, WA', + 1206760 => 'Seattle, WA', + 1206762 => 'Seattle, WA', + 1206763 => 'Seattle, WA', + 1206764 => 'Seattle, WA', + 1206767 => 'Seattle, WA', + 1206768 => 'Seattle, WA', + 1206772 => 'Seattle, WA', + 1206774 => 'Seattle, WA', + 1206780 => 'Bainbridge Isle, WA', + 1206781 => 'Seattle, WA', + 1206782 => 'Seattle, WA', + 1206783 => 'Seattle, WA', + 1206784 => 'Seattle, WA', + 1206788 => 'Seattle, WA', + 1206789 => 'Seattle, WA', + 1206812 => 'Seattle, WA', + 1206824 => 'Des Moines, WA', + 1206829 => 'Seattle, WA', + 1206838 => 'Seattle, WA', + 1206842 => 'Bainbridge Isle, WA', + 1206849 => 'Seattle, WA', + 1206852 => 'Seattle, WA', + 1206855 => 'Bainbridge Isle, WA', + 1206860 => 'Seattle, WA', + 1206861 => 'Seattle, WA', + 1206870 => 'Des Moines, WA', + 1206878 => 'Des Moines, WA', + 1206897 => 'Seattle, WA', + 1206903 => 'Seattle, WA', + 1206905 => 'Seattle, WA', + 1206913 => 'Seattle, WA', + 1206923 => 'Seattle, WA', + 1206931 => 'Seattle, WA', + 1206932 => 'Seattle, WA', + 1206933 => 'Seattle, WA', + 1206935 => 'Seattle, WA', + 1206937 => 'Seattle, WA', + 1206938 => 'Seattle, WA', + 1206957 => 'Seattle, WA', + 1206965 => 'Seattle, WA', + 1206971 => 'Seattle, WA', + 1206985 => 'Seattle, WA', + 1206987 => 'Seattle, WA', + 1207 => 'Maine', + 1207223 => 'Winterport, ME', + 1207225 => 'Turner, ME', + 1207230 => 'Camden, ME', + 1207236 => 'Camden, ME', + 1207244 => 'Southwest Harbor, ME', + 1207247 => 'Waterboro, ME', + 1207253 => 'Portland, ME', + 1207255 => 'Machias, ME', + 1207262 => 'Bangor, ME', + 1207273 => 'Warren, ME', + 1207276 => 'Northeast Harbor, ME', + 1207282 => 'Biddeford, ME', + 1207283 => 'Biddeford, ME', + 1207284 => 'Biddeford, ME', + 1207285 => 'Corinth, ME', + 1207286 => 'Biddeford, ME', + 1207287 => 'Augusta, ME', + 1207288 => 'Bar Harbor, ME', + 1207294 => 'Saco, ME', + 1207324 => 'Sanford, ME', + 1207338 => 'Belfast, ME', + 1207345 => 'Mechanic Falls, ME', + 1207347 => 'Portland, ME', + 1207348 => 'Deer Isle, ME', + 1207351 => 'York, ME', + 1207354 => 'Thomaston, ME', + 1207361 => 'York, ME', + 1207363 => 'York, ME', + 1207364 => 'Rumford, ME', + 1207367 => 'Stonington, ME', + 1207368 => 'Newport, ME', + 1207369 => 'Rumford, ME', + 1207373 => 'Brunswick, ME', + 1207374 => 'Blue Hill, ME', + 1207375 => 'Sabattus, ME', + 1207376 => 'Auburn, ME', + 1207377 => 'Winthrop, ME', + 1207384 => 'South Berwick, ME', + 1207435 => 'Ashland, ME', + 1207439 => 'Kittery, ME', + 1207442 => 'Bath, ME', + 1207443 => 'Bath, ME', + 1207445 => 'South China, ME', + 1207453 => 'Fairfield, ME', + 1207454 => 'Calais, ME', + 1207457 => 'Lebanon, ME', + 1207465 => 'Oakland, ME', + 1207467 => 'Kennebunk, ME', + 1207469 => 'Bucksport, ME', + 1207474 => 'Skowhegan, ME', + 1207487 => 'Pittsfield, ME', + 1207490 => 'Sanford, ME', + 1207492 => 'Caribou, ME', + 1207493 => 'Caribou, ME', + 1207498 => 'Caribou, ME', + 1207499 => 'Lyman, ME', + 1207523 => 'Portland, ME', + 1207528 => 'Patten, ME', + 1207532 => 'Houlton, ME', + 1207539 => 'Oxford, ME', + 1207541 => 'Portland, ME', + 1207548 => 'Searsport, ME', + 1207553 => 'Portland, ME', + 1207562 => 'Dixfield, ME', + 1207563 => 'Damariscotta, ME', + 1207564 => 'Dover-Foxcroft, ME', + 1207583 => 'Harrison, ME', + 1207591 => 'Westbrook, ME', + 1207594 => 'Rockland, ME', + 1207596 => 'Rockland, ME', + 1207621 => 'Augusta, ME', + 1207622 => 'Augusta, ME', + 1207623 => 'Augusta, ME', + 1207624 => 'Augusta, ME', + 1207626 => 'Augusta, ME', + 1207627 => 'Casco, ME', + 1207633 => 'Boothbay Harbor, ME', + 1207634 => 'Norridgewock, ME', + 1207641 => 'Wells, ME', + 1207642 => 'Standish, ME', + 1207645 => 'Wilton, ME', + 1207646 => 'Wells, ME', + 1207647 => 'Bridgton, ME', + 1207655 => 'Raymond, ME', + 1207657 => 'Gray, ME', + 1207662 => 'Portland, ME', + 1207664 => 'Ellsworth, ME', + 1207666 => 'Bowdoinham, ME', + 1207667 => 'Ellsworth, ME', + 1207676 => 'North Berwick, ME', + 1207685 => 'Readfield, ME', + 1207693 => 'Naples, ME', + 1207695 => 'Greenville, ME', + 1207696 => 'Madison, ME', + 1207698 => 'Berwick, ME', + 1207699 => 'Portland, ME', + 1207721 => 'Brunswick, ME', + 1207723 => 'Millinocket, ME', + 1207725 => 'Brunswick, ME', + 1207727 => 'Buxton, ME', + 1207728 => 'Madawaska, ME', + 1207729 => 'Brunswick, ME', + 1207733 => 'Lubec, ME', + 1207737 => 'Richmond, ME', + 1207739 => 'Norway, ME', + 1207743 => 'Norway, ME', + 1207753 => 'Lewiston, ME', + 1207761 => 'Portland, ME', + 1207763 => 'Lincolnville, ME', + 1207764 => 'Presque Isle, ME', + 1207767 => 'South Portland, ME', + 1207768 => 'Presque Isle, ME', + 1207771 => 'Portland, ME', + 1207772 => 'Portland, ME', + 1207773 => 'Portland, ME', + 1207774 => 'Portland, ME', + 1207775 => 'Portland, ME', + 1207777 => 'Lewiston, ME', + 1207778 => 'Farmington, ME', + 1207780 => 'Portland, ME', + 1207781 => 'Falmouth, ME', + 1207782 => 'Lewiston, ME', + 1207783 => 'Lewiston, ME', + 1207785 => 'Union, ME', + 1207786 => 'Lewiston, ME', + 1207791 => 'Portland, ME', + 1207793 => 'Limerick, ME', + 1207794 => 'Lincoln, ME', + 1207795 => 'Lewiston, ME', + 1207797 => 'Portland, ME', + 1207798 => 'Brunswick, ME', + 1207799 => 'South Portland, ME', + 1207824 => 'Bethel, ME', + 1207827 => 'Old Town, ME', + 1207828 => 'Portland, ME', + 1207832 => 'Waldoboro, ME', + 1207833 => 'Harpswell, ME', + 1207834 => 'Fort Kent, ME', + 1207839 => 'Gorham, ME', + 1207846 => 'Yarmouth, ME', + 1207848 => 'Hermon, ME', + 1207853 => 'Eastport, ME', + 1207854 => 'Westbrook, ME', + 1207856 => 'Westbrook, ME', + 1207861 => 'Waterville, ME', + 1207862 => 'Hampden, ME', + 1207864 => 'Rangeley, ME', + 1207865 => 'Freeport, ME', + 1207866 => 'Orono, ME', + 1207868 => 'Van Buren, ME', + 1207871 => 'Portland, ME', + 1207872 => 'Waterville, ME', + 1207873 => 'Waterville, ME', + 1207874 => 'Portland, ME', + 1207877 => 'Waterville, ME', + 1207878 => 'Portland, ME', + 1207879 => 'Portland, ME', + 1207882 => 'Wiscasset, ME', + 1207883 => 'Scarborough, ME', + 1207885 => 'Scarborough, ME', + 1207892 => 'Windham, ME', + 1207893 => 'Windham, ME', + 1207907 => 'Bangor, ME', + 1207924 => 'Dexter, ME', + 1207926 => 'New Gloucester, ME', + 1207929 => 'Buxton, ME', + 1207933 => 'Monmouth, ME', + 1207934 => 'Old Orchard Bch, ME', + 1207935 => 'Fryeburg, ME', + 1207941 => 'Bangor, ME', + 1207942 => 'Bangor, ME', + 1207943 => 'Milo, ME', + 1207945 => 'Bangor, ME', + 1207946 => 'Greene, ME', + 1207947 => 'Bangor, ME', + 1207948 => 'Unity, ME', + 1207967 => 'Kennebunkport, ME', + 1207973 => 'Bangor, ME', + 1207985 => 'Kennebunk, ME', + 1207989 => 'Brewer, ME', + 1207990 => 'Bangor, ME', + 1207992 => 'Bangor, ME', + 1207998 => 'Poland, ME', + 1208 => 'Idaho', + 1208226 => 'American Falls, ID', + 1208227 => 'Idaho Falls, ID', + 1208232 => 'Pocatello, ID', + 1208233 => 'Pocatello, ID', + 1208234 => 'Pocatello, ID', + 1208236 => 'Pocatello, ID', + 1208237 => 'Pocatello, ID', + 1208238 => 'Pocatello, ID', + 1208239 => 'Pocatello, ID', + 1208245 => 'St. Maries, ID', + 1208253 => 'Council, ID', + 1208255 => 'Sandpoint, ID', + 1208262 => 'Post Falls, ID', + 1208263 => 'Sandpoint, ID', + 1208265 => 'Sandpoint, ID', + 1208267 => 'Bonners Ferry, ID', + 1208278 => 'New Plymouth, ID', + 1208282 => 'Pocatello, ID', + 1208286 => 'Star, ID', + 1208287 => 'Boise, ID', + 1208288 => 'Meridian, ID', + 1208292 => 'Coeur d\'Alene, ID', + 1208319 => 'Boise, ID', + 1208321 => 'Boise, ID', + 1208322 => 'Boise, ID', + 1208323 => 'Boise, ID', + 1208324 => 'Jerome, ID', + 1208326 => 'Filer, ID', + 1208327 => 'Boise, ID', + 1208331 => 'Boise, ID', + 1208333 => 'Boise, ID', + 1208334 => 'Boise, ID', + 1208336 => 'Boise, ID', + 1208337 => 'Homedale, ID', + 1208338 => 'Boise, ID', + 1208342 => 'Boise, ID', + 1208343 => 'Boise, ID', + 1208344 => 'Boise, ID', + 1208345 => 'Boise, ID', + 1208354 => 'Driggs, ID', + 1208356 => 'Rexburg, ID', + 1208357 => 'Shelley, ID', + 1208359 => 'Rexburg, ID', + 1208362 => 'Boise, ID', + 1208365 => 'Emmett, ID', + 1208366 => 'Glenns Ferry, ID', + 1208367 => 'Boise, ID', + 1208373 => 'Boise, ID', + 1208375 => 'Boise, ID', + 1208376 => 'Boise, ID', + 1208377 => 'Boise, ID', + 1208378 => 'Boise, ID', + 1208381 => 'Boise, ID', + 1208382 => 'Cascade, ID', + 1208383 => 'Boise, ID', + 1208384 => 'Boise, ID', + 1208385 => 'Boise, ID', + 1208387 => 'Boise, ID', + 1208388 => 'Boise, ID', + 1208392 => 'Idaho City, ID', + 1208397 => 'Aberdeen, ID', + 1208414 => 'Weiser, ID', + 1208422 => 'Boise, ID', + 1208423 => 'Kimberly, ID', + 1208424 => 'Boise, ID', + 1208426 => 'Boise, ID', + 1208429 => 'Boise, ID', + 1208433 => 'Boise, ID', + 1208436 => 'Rupert, ID', + 1208437 => 'Oldtown, ID', + 1208438 => 'Paul, ID', + 1208442 => 'Nampa, ID', + 1208448 => 'Priest River, ID', + 1208452 => 'Fruitland, ID', + 1208453 => 'Caldwell, ID', + 1208454 => 'Caldwell, ID', + 1208455 => 'Caldwell, ID', + 1208457 => 'Post Falls, ID', + 1208459 => 'Caldwell, ID', + 1208461 => 'Nampa, ID', + 1208462 => 'Garden Valley, ID', + 1208463 => 'Nampa, ID', + 1208465 => 'Nampa, ID', + 1208466 => 'Nampa, ID', + 1208467 => 'Nampa, ID', + 1208468 => 'Nampa, ID', + 1208475 => 'Nampa, ID', + 1208476 => 'Orofino, ID', + 1208478 => 'Pocatello, ID', + 1208495 => 'Melba, ID', + 1208514 => 'Boise, ID', + 1208522 => 'Idaho Falls, ID', + 1208523 => 'Idaho Falls, ID', + 1208524 => 'Idaho Falls, ID', + 1208525 => 'Idaho Falls, ID', + 1208527 => 'Arco, ID', + 1208528 => 'Idaho Falls, ID', + 1208529 => 'Idaho Falls, ID', + 1208535 => 'Idaho Falls, ID', + 1208536 => 'Wendell, ID', + 1208542 => 'Idaho Falls, ID', + 1208543 => 'Buhl, ID', + 1208547 => 'Soda Springs, ID', + 1208549 => 'Weiser, ID', + 1208552 => 'Idaho Falls, ID', + 1208557 => 'Idaho Falls, ID', + 1208558 => 'Island Park, ID', + 1208562 => 'Boise, ID', + 1208578 => 'Hailey, ID', + 1208585 => 'Middleton, ID', + 1208587 => 'Mountain Home, ID', + 1208622 => 'Sun Valley, ID', + 1208623 => 'Spirit Lake, ID', + 1208624 => 'St. Anthony, ID', + 1208628 => 'Riggins, ID', + 1208629 => 'Boise, ID', + 1208634 => 'McCall, ID', + 1208642 => 'Payette, ID', + 1208652 => 'Ashton, ID', + 1208656 => 'Rexburg, ID', + 1208658 => 'Boise, ID', + 1208664 => 'Coeur d\'Alene, ID', + 1208665 => 'Coeur d\'Alene, ID', + 1208666 => 'Coeur d\'Alene, ID', + 1208667 => 'Coeur d\'Alene, ID', + 1208672 => 'Boise, ID', + 1208676 => 'Coeur d\'Alene, ID', + 1208677 => 'Burley, ID', + 1208678 => 'Burley, ID', + 1208683 => 'Athol, ID', + 1208684 => 'Blackfoot, ID', + 1208686 => 'Plummer, ID', + 1208687 => 'Rathdrum, ID', + 1208722 => 'Parma, ID', + 1208726 => 'Ketchum, ID', + 1208732 => 'Twin Falls, ID', + 1208733 => 'Twin Falls, ID', + 1208734 => 'Twin Falls, ID', + 1208735 => 'Twin Falls, ID', + 1208736 => 'Twin Falls, ID', + 1208737 => 'Twin Falls, ID', + 1208743 => 'Lewiston, ID', + 1208745 => 'Rigby, ID', + 1208746 => 'Lewiston, ID', + 1208756 => 'Salmon, ID', + 1208762 => 'Hayden, ID', + 1208765 => 'Coeur d\'Alene, ID', + 1208766 => 'Malad City, ID', + 1208769 => 'Coeur d\'Alene, ID', + 1208773 => 'Post Falls, ID', + 1208777 => 'Post Falls, ID', + 1208782 => 'Blackfoot, ID', + 1208783 => 'Kellogg, ID', + 1208785 => 'Blackfoot, ID', + 1208787 => 'Victor, ID', + 1208788 => 'Hailey, ID', + 1208798 => 'Lewiston, ID', + 1208799 => 'Lewiston, ID', + 1208835 => 'Troy, ID', + 1208837 => 'Hagerman, ID', + 1208846 => 'Meridian, ID', + 1208847 => 'Montpelier, ID', + 1208852 => 'Preston, ID', + 1208853 => 'Boise, ID', + 1208854 => 'Boise, ID', + 1208855 => 'Meridian, ID', + 1208875 => 'Potlatch, ID', + 1208878 => 'Burley, ID', + 1208879 => 'Challis, ID', + 1208881 => 'Idaho Falls, ID', + 1208882 => 'Moscow, ID', + 1208883 => 'Moscow, ID', + 1208884 => 'Meridian, ID', + 1208886 => 'Shoshone, ID', + 1208887 => 'Meridian, ID', + 1208888 => 'Meridian, ID', + 1208895 => 'Meridian, ID', + 1208898 => 'Meridian, ID', + 1208922 => 'Kuna, ID', + 1208926 => 'Kooskia, ID', + 1208934 => 'Gooding, ID', + 1208935 => 'Kamiah, ID', + 1208938 => 'Eagle, ID', + 1208939 => 'Eagle, ID', + 1208947 => 'Boise, ID', + 1208962 => 'Cottonwood, ID', + 1208983 => 'Grangeville, ID', + 1209 => 'California', + 1209221 => 'Tracy, CA', + 1209223 => 'Jackson, CA', + 1209234 => 'Stockton, CA', + 1209238 => 'Modesto, CA', + 1209239 => 'Manteca, CA', + 1209245 => 'Plymouth, CA', + 1209257 => 'Jackson, CA', + 1209267 => 'Sutter Creek, CA', + 1209274 => 'Ione, CA', + 1209293 => 'West Point, CA', + 1209295 => 'Pioneer, CA', + 1209296 => 'Pine Grove, CA', + 1209333 => 'Lodi, CA', + 1209334 => 'Lodi, CA', + 1209339 => 'Lodi, CA', + 1209357 => 'Atwater, CA', + 1209358 => 'Atwater, CA', + 1209365 => 'Lodi, CA', + 1209366 => 'Lodi, CA', + 1209367 => 'Lodi, CA', + 1209368 => 'Lodi, CA', + 1209369 => 'Lodi, CA', + 1209381 => 'Merced, CA', + 1209383 => 'Merced, CA', + 1209384 => 'Merced, CA', + 1209385 => 'Merced, CA', + 1209392 => 'Dos Palos, CA', + 1209394 => 'Livingston, CA', + 1209451 => 'Stockton, CA', + 1209462 => 'Stockton, CA', + 1209463 => 'Stockton, CA', + 1209464 => 'Stockton, CA', + 1209465 => 'Stockton, CA', + 1209466 => 'Stockton, CA', + 1209467 => 'Stockton, CA', + 1209469 => 'Stockton, CA', + 1209472 => 'Stockton, CA', + 1209473 => 'Stockton, CA', + 1209474 => 'Stockton, CA', + 1209475 => 'Stockton, CA', + 1209476 => 'Stockton, CA', + 1209477 => 'Stockton, CA', + 1209478 => 'Stockton, CA', + 1209491 => 'Modesto, CA', + 1209521 => 'Modesto, CA', + 1209522 => 'Modesto, CA', + 1209523 => 'Modesto, CA', + 1209524 => 'Modesto, CA', + 1209525 => 'Modesto, CA', + 1209526 => 'Modesto, CA', + 1209527 => 'Modesto, CA', + 1209529 => 'Modesto, CA', + 1209532 => 'Sonora, CA', + 1209533 => 'Sonora, CA', + 1209536 => 'Sonora, CA', + 1209537 => 'Ceres, CA', + 1209538 => 'Ceres, CA', + 1209541 => 'Ceres, CA', + 1209543 => 'Modesto, CA', + 1209544 => 'Modesto, CA', + 1209545 => 'Modesto, CA', + 1209547 => 'Stockton, CA', + 1209549 => 'Modesto, CA', + 1209550 => 'Modesto, CA', + 1209551 => 'Modesto, CA', + 1209557 => 'Modesto, CA', + 1209558 => 'Modesto, CA', + 1209571 => 'Modesto, CA', + 1209572 => 'Modesto, CA', + 1209574 => 'Modesto, CA', + 1209575 => 'Modesto, CA', + 1209576 => 'Modesto, CA', + 1209577 => 'Modesto, CA', + 1209578 => 'Modesto, CA', + 1209579 => 'Modesto, CA', + 1209586 => 'Twain Harte, CA', + 1209588 => 'Sonora, CA', + 1209599 => 'Ripon, CA', + 1209632 => 'Turlock, CA', + 1209634 => 'Turlock, CA', + 1209656 => 'Turlock, CA', + 1209664 => 'Turlock, CA', + 1209667 => 'Turlock, CA', + 1209668 => 'Turlock, CA', + 1209669 => 'Turlock, CA', + 1209722 => 'Merced, CA', + 1209723 => 'Merced, CA', + 1209725 => 'Merced, CA', + 1209726 => 'Merced, CA', + 1209727 => 'Lockeford, CA', + 1209728 => 'Murphys, CA', + 1209735 => 'Modesto, CA', + 1209736 => 'Angels Camp, CA', + 1209742 => 'Mariposa, CA', + 1209744 => 'Galt, CA', + 1209745 => 'Galt, CA', + 1209754 => 'San Andreas, CA', + 1209772 => 'Valley Springs, CA', + 1209785 => 'Copperopolis, CA', + 1209795 => 'Arnold, CA', + 1209823 => 'Manteca, CA', + 1209824 => 'Manteca, CA', + 1209825 => 'Manteca, CA', + 1209826 => 'Los Banos, CA', + 1209827 => 'Los Banos, CA', + 1209830 => 'Tracy, CA', + 1209832 => 'Tracy, CA', + 1209833 => 'Tracy, CA', + 1209834 => 'Tracy, CA', + 1209835 => 'Tracy, CA', + 1209836 => 'Tracy, CA', + 1209838 => 'Escalon, CA', + 1209839 => 'Tracy, CA', + 1209845 => 'Oakdale, CA', + 1209846 => 'Modesto, CA', + 1209847 => 'Oakdale, CA', + 1209848 => 'Oakdale, CA', + 1209854 => 'Gustine, CA', + 1209858 => 'Lathrop, CA', + 1209862 => 'Newman, CA', + 1209863 => 'Riverbank, CA', + 1209869 => 'Riverbank, CA', + 1209874 => 'Waterford, CA', + 1209883 => 'Hughson, CA', + 1209887 => 'Linden, CA', + 1209892 => 'Patterson, CA', + 1209928 => 'Tuolumne, CA', + 1209931 => 'Stockton, CA', + 1209933 => 'Stockton, CA', + 1209937 => 'Stockton, CA', + 1209941 => 'Stockton, CA', + 1209942 => 'Stockton, CA', + 1209943 => 'Stockton, CA', + 1209944 => 'Stockton, CA', + 1209946 => 'Stockton, CA', + 1209948 => 'Stockton, CA', + 1209951 => 'Stockton, CA', + 1209952 => 'Stockton, CA', + 1209953 => 'Stockton, CA', + 1209954 => 'Stockton, CA', + 1209955 => 'Stockton, CA', + 1209956 => 'Stockton, CA', + 1209957 => 'Stockton, CA', + 1209962 => 'Groveland, CA', + 1209966 => 'Mariposa, CA', + 1209982 => 'Stockton, CA', + 1209983 => 'Stockton, CA', + 1209984 => 'Jamestown, CA', + 1210 => 'San Antonio, TX', + 1212 => 'New York, NY', + 1213 => 'Los Angeles, CA', + 1214 => 'Texas', + 1214217 => 'Dallas, TX', + 1214219 => 'Dallas, TX', + 1214220 => 'Dallas, TX', + 1214221 => 'Dallas, TX', + 1214222 => 'Lewisville, TX', + 1214234 => 'Dallas, TX', + 1214239 => 'Dallas, TX', + 1214252 => 'Dallas, TX', + 1214265 => 'Dallas, TX', + 1214266 => 'Dallas, TX', + 1214267 => 'Dallas, TX', + 1214275 => 'Dallas, TX', + 1214296 => 'Dallas, TX', + 1214302 => 'Dallas, TX', + 1214303 => 'Dallas, TX', + 1214306 => 'Dallas, TX', + 1214309 => 'Dallas, TX', + 1214319 => 'Dallas, TX', + 1214320 => 'Dallas, TX', + 1214321 => 'Dallas, TX', + 1214324 => 'Dallas, TX', + 1214327 => 'Dallas, TX', + 1214328 => 'Dallas, TX', + 1214330 => 'Dallas, TX', + 1214331 => 'Dallas, TX', + 1214333 => 'Dallas, TX', + 1214337 => 'Dallas, TX', + 1214339 => 'Dallas, TX', + 1214340 => 'Dallas, TX', + 1214341 => 'Dallas, TX', + 1214342 => 'Dallas, TX', + 1214343 => 'Dallas, TX', + 1214345 => 'Dallas, TX', + 1214346 => 'Dallas, TX', + 1214348 => 'Dallas, TX', + 1214349 => 'Dallas, TX', + 1214350 => 'Dallas, TX', + 1214351 => 'Dallas, TX', + 1214352 => 'Dallas, TX', + 1214353 => 'Dallas, TX', + 1214357 => 'Dallas, TX', + 1214358 => 'Dallas, TX', + 1214360 => 'Dallas, TX', + 1214361 => 'Dallas, TX', + 1214363 => 'Dallas, TX', + 1214365 => 'Dallas, TX', + 1214366 => 'Dallas, TX', + 1214368 => 'Dallas, TX', + 1214369 => 'Dallas, TX', + 1214370 => 'Dallas, TX', + 1214371 => 'Dallas, TX', + 1214372 => 'Dallas, TX', + 1214373 => 'Dallas, TX', + 1214374 => 'Dallas, TX', + 1214375 => 'Dallas, TX', + 1214376 => 'Dallas, TX', + 1214378 => 'Dallas, TX', + 1214381 => 'Dallas, TX', + 1214383 => 'Allen, TX', + 1214387 => 'Frisco, TX', + 1214388 => 'Dallas, TX', + 1214389 => 'Dallas, TX', + 1214391 => 'Dallas, TX', + 1214393 => 'Dallas, TX', + 1214398 => 'Dallas, TX', + 1214420 => 'Dallas, TX', + 1214421 => 'Dallas, TX', + 1214426 => 'Dallas, TX', + 1214428 => 'Dallas, TX', + 1214436 => 'Frisco, TX', + 1214441 => 'Irving, TX', + 1214443 => 'Dallas, TX', + 1214456 => 'Dallas, TX', + 1214459 => 'Dallas, TX', + 1214467 => 'Dallas, TX', + 1214468 => 'Dallas, TX', + 1214473 => 'Plano, TX', + 1214483 => 'Carrollton, TX', + 1214484 => 'Dallas, TX', + 1214488 => 'Lewisville, TX', + 1214491 => 'McKinney, TX', + 1214492 => 'Irving, TX', + 1214495 => 'Allen, TX', + 1214503 => 'Dallas, TX', + 1214509 => 'Allen, TX', + 1214515 => 'Dallas, TX', + 1214520 => 'Dallas, TX', + 1214521 => 'Dallas, TX', + 1214522 => 'Dallas, TX', + 1214526 => 'Dallas, TX', + 1214528 => 'Dallas, TX', + 1214540 => 'Dallas, TX', + 1214544 => 'McKinney, TX', + 1214547 => 'Allen, TX', + 1214553 => 'Dallas, TX', + 1214559 => 'Dallas, TX', + 1214565 => 'Dallas, TX', + 1214570 => 'Dallas, TX', + 1214575 => 'Dallas, TX', + 1214585 => 'McKinney, TX', + 1214590 => 'Dallas, TX', + 1214592 => 'McKinney, TX', + 1214596 => 'Irving, TX', + 1214599 => 'Dallas, TX', + 1214607 => 'Rowlett, TX', + 1214618 => 'Frisco, TX', + 1214623 => 'Dallas, TX', + 1214630 => 'Dallas, TX', + 1214631 => 'Dallas, TX', + 1214634 => 'Dallas, TX', + 1214637 => 'Dallas, TX', + 1214638 => 'Dallas, TX', + 1214645 => 'Dallas, TX', + 1214648 => 'Dallas, TX', + 1214651 => 'Dallas, TX', + 1214653 => 'Dallas, TX', + 1214654 => 'Dallas, TX', + 1214660 => 'Dallas, TX', + 1214670 => 'Dallas, TX', + 1214672 => 'Dallas, TX', + 1214678 => 'Dallas, TX', + 1214688 => 'Dallas, TX', + 1214689 => 'Dallas, TX', + 1214691 => 'Dallas, TX', + 1214692 => 'Dallas, TX', + 1214696 => 'Dallas, TX', + 1214698 => 'Dallas, TX', + 1214703 => 'Garland, TX', + 1214706 => 'Dallas, TX', + 1214712 => 'Dallas, TX', + 1214720 => 'Dallas, TX', + 1214726 => 'McKinney, TX', + 1214739 => 'Dallas, TX', + 1214740 => 'Dallas, TX', + 1214741 => 'Dallas, TX', + 1214742 => 'Dallas, TX', + 1214744 => 'Dallas, TX', + 1214745 => 'Dallas, TX', + 1214747 => 'Dallas, TX', + 1214748 => 'Dallas, TX', + 1214749 => 'Dallas, TX', + 1214750 => 'Dallas, TX', + 1214752 => 'Dallas, TX', + 1214754 => 'Dallas, TX', + 1214760 => 'Dallas, TX', + 1214768 => 'Dallas, TX', + 1214771 => 'Rockwall, TX', + 1214778 => 'West Spring Creek Parkway, Plano, TX', + 1214780 => 'Dallas, TX', + 1214800 => 'Dallas, TX', + 1214818 => 'Dallas, TX', + 1214819 => 'Dallas, TX', + 1214820 => 'Dallas, TX', + 1214821 => 'Dallas, TX', + 1214823 => 'Dallas, TX', + 1214824 => 'Dallas, TX', + 1214826 => 'Dallas, TX', + 1214827 => 'Dallas, TX', + 1214828 => 'Dallas, TX', + 1214855 => 'Dallas, TX', + 1214857 => 'Dallas, TX', + 1214871 => 'Dallas, TX', + 1214872 => 'Frisco, TX', + 1214879 => 'Dallas, TX', + 1214880 => 'Dallas, TX', + 1214887 => 'Dallas, TX', + 1214890 => 'Dallas, TX', + 1214891 => 'Dallas, TX', + 1214902 => 'Dallas, TX', + 1214904 => 'Dallas, TX', + 1214905 => 'Dallas, TX', + 1214920 => 'Dallas, TX', + 1214922 => 'Dallas, TX', + 1214939 => 'Dallas, TX', + 1214941 => 'Dallas, TX', + 1214942 => 'Dallas, TX', + 1214943 => 'Dallas, TX', + 1214946 => 'Dallas, TX', + 1214947 => 'Dallas, TX', + 1214948 => 'Dallas, TX', + 1214951 => 'Dallas, TX', + 1214953 => 'Dallas, TX', + 1214954 => 'Dallas, TX', + 1214956 => 'Dallas, TX', + 1214965 => 'Dallas, TX', + 1214969 => 'Dallas, TX', + 1214978 => 'Dallas, TX', + 1214979 => 'Dallas, TX', + 1214987 => 'Dallas, TX', + 1214989 => 'Dallas, TX', + 1214999 => 'Dallas, TX', + 1215 => 'Pennsylvania', + 1215203 => 'Philadelphia, PA', + 1215218 => 'Philadelphia, PA', + 1215221 => 'Philadelphia, PA', + 1215222 => 'Philadelphia, PA', + 1215223 => 'Philadelphia, PA', + 1215224 => 'Philadelphia, PA', + 1215225 => 'Philadelphia, PA', + 1215226 => 'Philadelphia, PA', + 1215227 => 'Philadelphia, PA', + 1215228 => 'Philadelphia, PA', + 1215229 => 'Philadelphia, PA', + 1215230 => 'Doylestown, PA', + 1215232 => 'Philadelphia, PA', + 1215235 => 'Philadelphia, PA', + 1215236 => 'Philadelphia, PA', + 1215238 => 'Philadelphia, PA', + 1215241 => 'Philadelphia, PA', + 1215242 => 'Philadelphia, PA', + 1215244 => 'Bensalem, PA', + 1215245 => 'Bensalem, PA', + 1215247 => 'Philadelphia, PA', + 1215248 => 'Philadelphia, PA', + 1215256 => 'Harleysville, PA', + 1215258 => 'Perkasie, PA', + 1215268 => 'Philadelphia, PA', + 1215271 => 'Philadelphia, PA', + 1215276 => 'Philadelphia, PA', + 1215279 => 'Philadelphia, PA', + 1215281 => 'Philadelphia, PA', + 1215282 => 'Cherry Street, Philadelphia, PA', + 1215288 => 'Philadelphia, PA', + 1215289 => 'Philadelphia, PA', + 1215291 => 'Philadelphia, PA', + 1215295 => 'Morrisville, PA', + 1215321 => 'Yardley, PA', + 1215324 => 'Philadelphia, PA', + 1215329 => 'Philadelphia, PA', + 1215331 => 'Philadelphia, PA', + 1215332 => 'Philadelphia, PA', + 1215333 => 'Philadelphia, PA', + 1215334 => 'Philadelphia, PA', + 1215335 => 'Philadelphia, PA', + 1215336 => 'Philadelphia, PA', + 1215338 => 'Philadelphia, PA', + 1215339 => 'Philadelphia, PA', + 1215340 => 'Doylestown, PA', + 1215342 => 'Philadelphia, PA', + 1215343 => 'Warrington, PA', + 1215345 => 'Doylestown, PA', + 1215348 => 'Doylestown, PA', + 1215349 => 'Philadelphia, PA', + 1215351 => 'Philadelphia, PA', + 1215361 => 'Lansdale, PA', + 1215362 => 'Lansdale, PA', + 1215365 => 'Philadelphia, PA', + 1215368 => 'Lansdale, PA', + 1215382 => 'Philadelphia, PA', + 1215386 => 'Philadelphia, PA', + 1215387 => 'Philadelphia, PA', + 1215389 => 'Philadelphia, PA', + 1215413 => 'Philadelphia, PA', + 1215423 => 'Philadelphia, PA', + 1215424 => 'Philadelphia, PA', + 1215425 => 'Philadelphia, PA', + 1215426 => 'Philadelphia, PA', + 1215427 => 'Philadelphia, PA', + 1215428 => 'Morrisville, PA', + 1215437 => 'Philadelphia, PA', + 1215438 => 'Philadelphia, PA', + 1215440 => 'Philadelphia, PA', + 1215453 => 'Sellersville, PA', + 1215455 => 'Philadelphia, PA', + 1215456 => 'Philadelphia, PA', + 1215457 => 'Philadelphia, PA', + 1215462 => 'Philadelphia, PA', + 1215463 => 'Philadelphia, PA', + 1215464 => 'Philadelphia, PA', + 1215465 => 'Philadelphia, PA', + 1215467 => 'Philadelphia, PA', + 1215468 => 'Philadelphia, PA', + 1215471 => 'Philadelphia, PA', + 1215472 => 'Philadelphia, PA', + 1215473 => 'Philadelphia, PA', + 1215474 => 'Philadelphia, PA', + 1215476 => 'Philadelphia, PA', + 1215477 => 'Philadelphia, PA', + 1215481 => 'Abington, PA', + 1215482 => 'Philadelphia, PA', + 1215483 => 'Philadelphia, PA', + 1215487 => 'Philadelphia, PA', + 1215489 => 'Doylestown, PA', + 1215491 => 'Warrington, PA', + 1215492 => 'Philadelphia, PA', + 1215493 => 'Yardley, PA', + 1215496 => 'Philadelphia, PA', + 1215497 => 'Newtown, PA', + 1215503 => 'Philadelphia, PA', + 1215504 => 'Newtown, PA', + 1215508 => 'Philadelphia, PA', + 1215513 => 'Harleysville, PA', + 1215529 => 'Quakertown, PA', + 1215533 => 'Philadelphia, PA', + 1215535 => 'Philadelphia, PA', + 1215536 => 'Quakertown, PA', + 1215537 => 'Philadelphia, PA', + 1215538 => 'Quakertown, PA', + 1215543 => 'Philadelphia, PA', + 1215545 => 'Philadelphia, PA', + 1215546 => 'Philadelphia, PA', + 1215547 => 'Levittown, PA', + 1215548 => 'Philadelphia, PA', + 1215549 => 'Philadelphia, PA', + 1215551 => 'Philadelphia, PA', + 1215557 => 'Philadelphia, PA', + 1215561 => 'Philadelphia, PA', + 1215563 => 'Philadelphia, PA', + 1215564 => 'Philadelphia, PA', + 1215567 => 'Philadelphia, PA', + 1215568 => 'Philadelphia, PA', + 1215569 => 'Philadelphia, PA', + 1215574 => 'Philadelphia, PA', + 1215575 => 'Philadelphia, PA', + 1215579 => 'Newtown, PA', + 1215587 => 'Philadelphia, PA', + 1215590 => 'Philadelphia, PA', + 1215592 => 'Philadelphia, PA', + 1215612 => 'Philadelphia, PA', + 1215613 => 'Philadelphia, PA', + 1215615 => 'Philadelphia, PA', + 1215624 => 'Philadelphia, PA', + 1215625 => 'Philadelphia, PA', + 1215627 => 'Philadelphia, PA', + 1215629 => 'Philadelphia, PA', + 1215632 => 'Philadelphia, PA', + 1215633 => 'Bensalem, PA', + 1215634 => 'Philadelphia, PA', + 1215635 => 'Elkins Park, PA', + 1215636 => 'Philadelphia, PA', + 1215637 => 'Philadelphia, PA', + 1215638 => 'Bensalem, PA', + 1215639 => 'Bensalem, PA', + 1215657 => 'Willow Grove, PA', + 1215659 => 'Willow Grove, PA', + 1215662 => 'Philadelphia, PA', + 1215665 => 'Philadelphia, PA', + 1215671 => 'Philadelphia, PA', + 1215673 => 'Philadelphia, PA', + 1215676 => 'Philadelphia, PA', + 1215677 => 'Philadelphia, PA', + 1215684 => 'Philadelphia, PA', + 1215685 => 'Philadelphia, PA', + 1215686 => 'Philadelphia, PA', + 1215698 => 'Philadelphia, PA', + 1215699 => 'North Wales, PA', + 1215702 => 'Langhorne, PA', + 1215707 => 'Philadelphia, PA', + 1215708 => 'Philadelphia, PA', + 1215710 => 'Langhorne, PA', + 1215721 => 'Souderton, PA', + 1215722 => 'Philadelphia, PA', + 1215723 => 'Souderton, PA', + 1215724 => 'Philadelphia, PA', + 1215725 => 'Philadelphia, PA', + 1215726 => 'Philadelphia, PA', + 1215727 => 'Philadelphia, PA', + 1215728 => 'Philadelphia, PA', + 1215729 => 'Philadelphia, PA', + 1215731 => 'Philadelphia, PA', + 1215732 => 'Philadelphia, PA', + 1215735 => 'Philadelphia, PA', + 1215736 => 'Morrisville, PA', + 1215739 => 'Philadelphia, PA', + 1215741 => 'Langhorne, PA', + 1215742 => 'Philadelphia, PA', + 1215743 => 'Philadelphia, PA', + 1215744 => 'Philadelphia, PA', + 1215745 => 'Philadelphia, PA', + 1215746 => 'Philadelphia, PA', + 1215747 => 'Philadelphia, PA', + 1215748 => 'Philadelphia, PA', + 1215750 => 'Langhorne, PA', + 1215751 => 'Philadelphia, PA', + 1215752 => 'Langhorne, PA', + 1215755 => 'Philadelphia, PA', + 1215757 => 'Langhorne, PA', + 1215762 => 'Philadelphia, PA', + 1215763 => 'Philadelphia, PA', + 1215765 => 'Philadelphia, PA', + 1215769 => 'Philadelphia, PA', + 1215772 => 'Philadelphia, PA', + 1215781 => 'Bristol, PA', + 1215782 => 'Elkins Park, PA', + 1215784 => 'Willow Grove, PA', + 1215785 => 'Bristol, PA', + 1215787 => 'Philadelphia, PA', + 1215788 => 'Bristol, PA', + 1215790 => 'Philadelphia, PA', + 1215821 => 'Philadelphia, PA', + 1215823 => 'Philadelphia, PA', + 1215824 => 'Philadelphia, PA', + 1215829 => 'Philadelphia, PA', + 1215830 => 'Willow Grove, PA', + 1215831 => 'Philadelphia, PA', + 1215842 => 'Philadelphia, PA', + 1215843 => 'Philadelphia, PA', + 1215844 => 'Philadelphia, PA', + 1215848 => 'Philadelphia, PA', + 1215849 => 'Philadelphia, PA', + 1215851 => 'Philadelphia, PA', + 1215854 => 'Philadelphia, PA', + 1215855 => 'Lansdale, PA', + 1215856 => 'Philadelphia, PA', + 1215860 => 'Newtown, PA', + 1215862 => 'New Hope, PA', + 1215864 => 'Philadelphia, PA', + 1215871 => 'Philadelphia, PA', + 1215875 => 'Philadelphia, PA', + 1215877 => 'Philadelphia, PA', + 1215878 => 'Philadelphia, PA', + 1215879 => 'Philadelphia, PA', + 1215891 => 'Langhorne, PA', + 1215893 => 'Philadelphia, PA', + 1215898 => 'Philadelphia, PA', + 1215904 => 'Philadelphia, PA', + 1215914 => 'Huntingdon Vly, PA', + 1215918 => 'Warrington, PA', + 1215921 => 'Philadelphia, PA', + 1215922 => 'Philadelphia, PA', + 1215923 => 'Philadelphia, PA', + 1215924 => 'Philadelphia, PA', + 1215925 => 'Philadelphia, PA', + 1215927 => 'Philadelphia, PA', + 1215928 => 'Philadelphia, PA', + 1215941 => 'Philadelphia, PA', + 1215943 => 'Levittown, PA', + 1215945 => 'Levittown, PA', + 1215946 => 'Levittown, PA', + 1215949 => 'Levittown, PA', + 1215951 => 'Philadelphia, PA', + 1215952 => 'Philadelphia, PA', + 1215955 => 'Philadelphia, PA', + 1215963 => 'Philadelphia, PA', + 1215968 => 'Newtown, PA', + 1215969 => 'Philadelphia, PA', + 1215972 => 'Philadelphia, PA', + 1215977 => 'Philadelphia, PA', + 1215978 => 'Philadelphia, PA', + 1215985 => 'Philadelphia, PA', + 1215988 => 'Philadelphia, PA', + 1216 => 'Ohio', + 1216229 => 'Cleveland, OH', + 1216231 => 'Cleveland, OH', + 1216241 => 'Cleveland, OH', + 1216249 => 'Cleveland, OH', + 1216251 => 'Cleveland, OH', + 1216252 => 'Cleveland, OH', + 1216261 => 'Cleveland, OH', + 1216265 => 'Cleveland, OH', + 1216267 => 'Cleveland, OH', + 1216268 => 'Cleveland, OH', + 1216271 => 'Cleveland, OH', + 1216281 => 'Cleveland, OH', + 1216283 => 'Cleveland, OH', + 1216289 => 'Cleveland, OH', + 1216291 => 'Cleveland, OH', + 1216292 => 'Cleveland, OH', + 1216297 => 'Cleveland, OH', + 1216298 => 'Cleveland, OH', + 1216320 => 'Cleveland, OH', + 1216321 => 'Cleveland, OH', + 1216328 => 'Cleveland, OH', + 1216332 => 'Cleveland, OH', + 1216341 => 'Cleveland, OH', + 1216344 => 'Cleveland, OH', + 1216348 => 'Cleveland, OH', + 1216351 => 'Cleveland, OH', + 1216360 => 'Cleveland, OH', + 1216361 => 'Cleveland, OH', + 1216362 => 'Cleveland, OH', + 1216363 => 'Cleveland, OH', + 1216368 => 'Cleveland, OH', + 1216371 => 'Cleveland, OH', + 1216378 => 'Cleveland, OH', + 1216381 => 'Cleveland, OH', + 1216382 => 'Cleveland, OH', + 1216383 => 'Cleveland, OH', + 1216391 => 'Cleveland, OH', + 1216397 => 'Cleveland, OH', + 1216398 => 'Cleveland, OH', + 1216421 => 'Cleveland, OH', + 1216426 => 'Cleveland, OH', + 1216429 => 'Cleveland, OH', + 1216431 => 'Cleveland, OH', + 1216432 => 'Cleveland, OH', + 1216433 => 'Cleveland, OH', + 1216441 => 'Cleveland, OH', + 1216443 => 'Cleveland, OH', + 1216444 => 'Cleveland, OH', + 1216445 => 'Cleveland, OH', + 1216451 => 'Cleveland, OH', + 1216459 => 'Cleveland, OH', + 1216464 => 'Cleveland, OH', + 1216475 => 'Cleveland, OH', + 1216476 => 'Cleveland, OH', + 1216479 => 'Cleveland, OH', + 1216481 => 'Cleveland, OH', + 1216486 => 'Cleveland, OH', + 1216514 => 'Cleveland, OH', + 1216515 => 'Cleveland, OH', + 1216518 => 'Cleveland, OH', + 1216522 => 'Cleveland, OH', + 1216529 => 'Cleveland, OH', + 1216531 => 'Cleveland, OH', + 1216541 => 'Cleveland, OH', + 1216561 => 'Cleveland, OH', + 1216566 => 'Cleveland, OH', + 1216574 => 'Cleveland, OH', + 1216579 => 'Cleveland, OH', + 1216581 => 'Cleveland, OH', + 1216583 => 'Cleveland, OH', + 1216586 => 'Cleveland, OH', + 1216587 => 'Cleveland, OH', + 1216589 => 'Cleveland, OH', + 1216595 => 'Cleveland, OH', + 1216621 => 'Cleveland, OH', + 1216622 => 'Cleveland, OH', + 1216623 => 'Cleveland, OH', + 1216631 => 'Cleveland, OH', + 1216641 => 'Cleveland, OH', + 1216642 => 'Cleveland, OH', + 1216651 => 'Cleveland, OH', + 1216661 => 'Cleveland, OH', + 1216662 => 'Cleveland, OH', + 1216663 => 'Cleveland, OH', + 1216664 => 'Cleveland, OH', + 1216671 => 'Cleveland, OH', + 1216676 => 'Cleveland, OH', + 1216681 => 'Cleveland, OH', + 1216687 => 'Cleveland, OH', + 1216688 => 'Cleveland, OH', + 1216691 => 'Cleveland, OH', + 1216692 => 'Cleveland, OH', + 1216696 => 'Cleveland, OH', + 1216721 => 'Cleveland, OH', + 1216731 => 'Cleveland, OH', + 1216741 => 'Cleveland, OH', + 1216749 => 'Cleveland, OH', + 1216751 => 'Cleveland, OH', + 1216752 => 'Cleveland, OH', + 1216761 => 'Cleveland, OH', + 1216765 => 'Cleveland, OH', + 1216771 => 'Cleveland, OH', + 1216778 => 'Cleveland, OH', + 1216781 => 'Cleveland, OH', + 1216791 => 'Cleveland, OH', + 1216844 => 'Cleveland, OH', + 1216851 => 'Cleveland, OH', + 1216861 => 'Cleveland, OH', + 1216862 => 'Cleveland, OH', + 1216881 => 'Cleveland, OH', + 1216883 => 'Cleveland, OH', + 1216896 => 'Cleveland, OH', + 1216898 => 'Cleveland, OH', + 1216921 => 'Cleveland, OH', + 1216932 => 'Cleveland, OH', + 1216941 => 'Cleveland, OH', + 1216957 => 'Cleveland, OH', + 1216961 => 'Cleveland, OH', + 1216986 => 'Cleveland, OH', + 1216991 => 'Cleveland, OH', + 1217 => 'Illinois', + 1217222 => 'Quincy, IL', + 1217223 => 'Quincy, IL', + 1217224 => 'Quincy, IL', + 1217226 => 'Assumption, IL', + 1217228 => 'Quincy, IL', + 1217229 => 'Raymond, IL', + 1217234 => 'Mattoon, IL', + 1217235 => 'Mattoon, IL', + 1217239 => 'Champaign, IL', + 1217241 => 'Springfield, IL', + 1217243 => 'Jacksonville, IL', + 1217245 => 'Jacksonville, IL', + 1217253 => 'Tuscola, IL', + 1217258 => 'Mattoon, IL', + 1217267 => 'Westville, IL', + 1217268 => 'Arcola, IL', + 1217283 => 'Hoopeston, IL', + 1217285 => 'Pittsfield, IL', + 1217287 => 'Taylorville, IL', + 1217322 => 'Rushville, IL', + 1217323 => 'Beardstown, IL', + 1217324 => 'Litchfield, IL', + 1217326 => 'Champaign, IL', + 1217328 => 'Urbana, IL', + 1217330 => 'Decatur, IL', + 1217333 => 'Urbana, IL', + 1217337 => 'Urbana, IL', + 1217342 => 'Effingham, IL', + 1217344 => 'Urbana, IL', + 1217345 => 'Charleston, IL', + 1217346 => 'Oakland, IL', + 1217347 => 'Effingham, IL', + 1217348 => 'Charleston, IL', + 1217351 => 'Champaign, IL', + 1217352 => 'Champaign, IL', + 1217355 => 'Champaign, IL', + 1217356 => 'Champaign, IL', + 1217357 => 'Carthage, IL', + 1217359 => 'Champaign, IL', + 1217366 => 'Champaign, IL', + 1217367 => 'Urbana, IL', + 1217373 => 'Champaign, IL', + 1217374 => 'White Hall, IL', + 1217379 => 'Paxton, IL', + 1217382 => 'Martinsville, IL', + 1217383 => 'Urbana, IL', + 1217384 => 'Urbana, IL', + 1217398 => 'Champaign, IL', + 1217422 => 'Decatur, IL', + 1217423 => 'Decatur, IL', + 1217424 => 'Decatur, IL', + 1217425 => 'Decatur, IL', + 1217428 => 'Decatur, IL', + 1217429 => 'Decatur, IL', + 1217431 => 'Danville, IL', + 1217438 => 'Auburn, IL', + 1217442 => 'Danville, IL', + 1217443 => 'Danville, IL', + 1217446 => 'Danville, IL', + 1217452 => 'Virginia, IL', + 1217453 => 'Nauvoo, IL', + 1217463 => 'Paris, IL', + 1217464 => 'Decatur, IL', + 1217465 => 'Paris, IL', + 1217466 => 'Paris, IL', + 1217469 => 'St. Joseph, IL', + 1217479 => 'Jacksonville, IL', + 1217482 => 'Mason City, IL', + 1217483 => 'Chatham, IL', + 1217498 => 'Rochester, IL', + 1217522 => 'Springfield, IL', + 1217523 => 'Springfield, IL', + 1217525 => 'Springfield, IL', + 1217528 => 'Springfield, IL', + 1217529 => 'Springfield, IL', + 1217532 => 'Hillsboro, IL', + 1217536 => 'Effingham, IL', + 1217543 => 'Arthur, IL', + 1217544 => 'Springfield, IL', + 1217545 => 'Springfield, IL', + 1217546 => 'Springfield, IL', + 1217554 => 'Danville, IL', + 1217562 => 'Pana, IL', + 1217563 => 'Nokomis, IL', + 1217585 => 'Springfield, IL', + 1217586 => 'Mahomet, IL', + 1217607 => 'Champaign, IL', + 1217627 => 'Girard, IL', + 1217629 => 'Riverton, IL', + 1217632 => 'Petersburg, IL', + 1217662 => 'Georgetown, IL', + 1217670 => 'Springfield, IL', + 1217679 => 'Springfield, IL', + 1217698 => 'Springfield, IL', + 1217726 => 'Springfield, IL', + 1217728 => 'Sullivan, IL', + 1217732 => 'Lincoln, IL', + 1217735 => 'Lincoln, IL', + 1217742 => 'Winchester, IL', + 1217744 => 'Springfield, IL', + 1217753 => 'Springfield, IL', + 1217762 => 'Monticello, IL', + 1217768 => 'Moweaqua, IL', + 1217773 => 'Mount Sterling, IL', + 1217774 => 'Shelbyville, IL', + 1217782 => 'Springfield, IL', + 1217784 => 'Gibson City, IL', + 1217787 => 'Springfield, IL', + 1217788 => 'Springfield, IL', + 1217789 => 'Springfield, IL', + 1217792 => 'Mount Pulaski, IL', + 1217793 => 'Springfield, IL', + 1217824 => 'Taylorville, IL', + 1217826 => 'Marshall, IL', + 1217832 => 'Villa Grove, IL', + 1217839 => 'Gillespie, IL', + 1217847 => 'Hamilton, IL', + 1217849 => 'Toledo, IL', + 1217854 => 'Carlinville, IL', + 1217857 => 'Teutopolis, IL', + 1217872 => 'Decatur, IL', + 1217875 => 'Decatur, IL', + 1217876 => 'Decatur, IL', + 1217877 => 'Decatur, IL', + 1217892 => 'Rantoul, IL', + 1217893 => 'Rantoul, IL', + 1217895 => 'Neoga, IL', + 1217923 => 'Greenup, IL', + 1217932 => 'Casey, IL', + 1217935 => 'Clinton, IL', + 1217942 => 'Carrollton, IL', + 1217965 => 'Virden, IL', + 1218 => 'Minnesota', + 1218224 => 'Laporte, MN', + 1218226 => 'Silver Bay, MN', + 1218229 => 'Aurora, MN', + 1218233 => 'Moorhead, MN', + 1218236 => 'Moorhead, MN', + 1218237 => 'Park Rapids, MN', + 1218238 => 'Lake Park, MN', + 1218246 => 'Deer River, MN', + 1218249 => 'Duluth, MN', + 1218253 => 'Red Lake Falls, MN', + 1218254 => 'Chisholm, MN', + 1218262 => 'Hibbing, MN', + 1218263 => 'Hibbing, MN', + 1218281 => 'Crookston, MN', + 1218283 => 'Internatl Falls, MN', + 1218285 => 'Internatl Falls, MN', + 1218287 => 'Moorhead, MN', + 1218299 => 'Moorhead, MN', + 1218326 => 'Grand Rapids, MN', + 1218327 => 'Grand Rapids, MN', + 1218333 => 'Bemidji, MN', + 1218334 => 'Frazee, MN', + 1218335 => 'Cass Lake, MN', + 1218338 => 'Parkers Prairie, MN', + 1218342 => 'Vergas, MN', + 1218346 => 'Perham, MN', + 1218348 => 'Duluth, MN', + 1218354 => 'Barnesville, MN', + 1218363 => 'Longville, MN', + 1218365 => 'Ely, MN', + 1218367 => 'Ottertail, MN', + 1218384 => 'Carlton, MN', + 1218385 => 'New York Mills, MN', + 1218386 => 'Warroad, MN', + 1218387 => 'Grand Marais, MN', + 1218435 => 'Fosston, MN', + 1218436 => 'Karlstad, MN', + 1218444 => 'Bemidji, MN', + 1218454 => 'Brainerd, MN', + 1218463 => 'Roseau, MN', + 1218464 => 'Duluth, MN', + 1218483 => 'Hawley, MN', + 1218485 => 'Moose Lake, MN', + 1218525 => 'Duluth, MN', + 1218546 => 'Crosby, MN', + 1218547 => 'Walker, MN', + 1218564 => 'Menahga, MN', + 1218566 => 'Remer, MN', + 1218568 => 'Pequot Lakes, MN', + 1218583 => 'Henning, MN', + 1218587 => 'Pine River, MN', + 1218624 => 'Duluth, MN', + 1218625 => 'Duluth, MN', + 1218626 => 'Duluth, MN', + 1218628 => 'Duluth, MN', + 1218631 => 'Wadena, MN', + 1218634 => 'Baudette, MN', + 1218643 => 'Breckenridge, MN', + 1218652 => 'Nevis, MN', + 1218666 => 'Cook, MN', + 1218675 => 'Hackensack, MN', + 1218679 => 'Red Lake, MN', + 1218681 => 'Thief River Fls, MN', + 1218685 => 'Elbow Lake, MN', + 1218687 => 'Erskine, MN', + 1218692 => 'Crosslake, MN', + 1218694 => 'Bagley, MN', + 1218720 => 'Duluth, MN', + 1218721 => 'Duluth, MN', + 1218722 => 'Duluth, MN', + 1218723 => 'Duluth, MN', + 1218724 => 'Duluth, MN', + 1218726 => 'Duluth, MN', + 1218727 => 'Duluth, MN', + 1218728 => 'Duluth, MN', + 1218730 => 'Duluth, MN', + 1218732 => 'Park Rapids, MN', + 1218733 => 'Duluth, MN', + 1218736 => 'Fergus Falls, MN', + 1218739 => 'Fergus Falls, MN', + 1218740 => 'Duluth, MN', + 1218741 => 'Virginia, MN', + 1218743 => 'Bigfork, MN', + 1218744 => 'Eveleth, MN', + 1218745 => 'Warren, MN', + 1218746 => 'Pillager, MN', + 1218749 => 'Virginia, MN', + 1218751 => 'Bemidji, MN', + 1218753 => 'Tower, MN', + 1218759 => 'Bemidji, MN', + 1218763 => 'Emily, MN', + 1218768 => 'McGregor, MN', + 1218773 => 'East Grand Forks, MN', + 1218782 => 'Greenbush, MN', + 1218784 => 'Ada, MN', + 1218786 => 'Duluth, MN', + 1218824 => 'Brainerd, MN', + 1218825 => 'Brainerd, MN', + 1218828 => 'Brainerd, MN', + 1218829 => 'Brainerd, MN', + 1218834 => 'Two Harbors, MN', + 1218835 => 'Blackduck, MN', + 1218843 => 'Hallock, MN', + 1218844 => 'Detroit Lakes, MN', + 1218846 => 'Detroit Lakes, MN', + 1218847 => 'Detroit Lakes, MN', + 1218863 => 'Pelican Rapids, MN', + 1218864 => 'Battle Lake, MN', + 1218878 => 'Cloquet, MN', + 1218879 => 'Cloquet, MN', + 1218885 => 'Nashwauk, MN', + 1218894 => 'Staples, MN', + 1218927 => 'Aitkin, MN', + 1218935 => 'Mahnomen, MN', + 1218945 => 'Fertile, MN', + 1218963 => 'Nisswa, MN', + 1218983 => 'Ogema, MN', + 1218998 => 'Fergus Falls, MN', + 1218999 => 'Grand Rapids, MN', + 1219 => 'Indiana', + 1219226 => 'Crown Point, IN', + 1219227 => 'Schererville, IN', + 1219253 => 'Monon, IN', + 1219261 => 'Remington, IN', + 1219263 => 'Valparaiso, IN', + 1219279 => 'Wolcott, IN', + 1219285 => 'Morocco, IN', + 1219322 => 'Schererville, IN', + 1219324 => 'La Porte, IN', + 1219325 => 'La Porte, IN', + 1219326 => 'La Porte, IN', + 1219345 => 'De Motte, IN', + 1219362 => 'La Porte, IN', + 1219365 => 'St. John, IN', + 1219369 => 'La Porte, IN', + 1219374 => 'Cedar Lake, IN', + 1219392 => 'East Chicago, IN', + 1219395 => 'Chesterton, IN', + 1219397 => 'East Chicago, IN', + 1219398 => 'East Chicago, IN', + 1219462 => 'Valparaiso, IN', + 1219464 => 'Valparaiso, IN', + 1219465 => 'Valparaiso, IN', + 1219472 => 'Merrillville, IN', + 1219473 => 'Whiting, IN', + 1219474 => 'Kentland, IN', + 1219476 => 'Valparaiso, IN', + 1219477 => 'Valparaiso, IN', + 1219513 => 'Munster, IN', + 1219531 => 'Valparaiso, IN', + 1219548 => 'Valparaiso, IN', + 1219659 => 'Whiting, IN', + 1219661 => 'Crown Point, IN', + 1219662 => 'Crown Point, IN', + 1219663 => 'Crown Point, IN', + 1219696 => 'Lowell, IN', + 1219733 => 'Wanatah, IN', + 1219736 => 'Merrillville, IN', + 1219738 => 'Merrillville, IN', + 1219756 => 'Merrillville, IN', + 1219757 => 'Crown Point, IN', + 1219759 => 'Valparaiso, IN', + 1219762 => 'Portage, IN', + 1219763 => 'Portage, IN', + 1219764 => 'Portage, IN', + 1219766 => 'Kouts, IN', + 1219769 => 'Merrillville, IN', + 1219778 => 'Rolling Prairie, IN', + 1219785 => 'Westville, IN', + 1219791 => 'Merrillville, IN', + 1219836 => 'Munster, IN', + 1219838 => 'Highland, IN', + 1219844 => 'Hammond, IN', + 1219845 => 'Hammond, IN', + 1219852 => 'Hammond, IN', + 1219853 => 'Hammond, IN', + 1219864 => 'Schererville, IN', + 1219866 => 'Rensselaer, IN', + 1219872 => 'Michigan City, IN', + 1219873 => 'Michigan City, IN', + 1219874 => 'Michigan City, IN', + 1219878 => 'Michigan City, IN', + 1219879 => 'Michigan City, IN', + 1219881 => 'Gary, IN', + 1219882 => 'Gary, IN', + 1219884 => 'Gary, IN', + 1219885 => 'Gary, IN', + 1219886 => 'Gary, IN', + 1219887 => 'Gary, IN', + 1219921 => 'Chesterton, IN', + 1219923 => 'Highland, IN', + 1219926 => 'Chesterton, IN', + 1219931 => 'Hammond, IN', + 1219932 => 'Hammond, IN', + 1219933 => 'Hammond, IN', + 1219937 => 'Hammond, IN', + 1219938 => 'Gary, IN', + 1219942 => 'Hobart, IN', + 1219944 => 'Gary, IN', + 1219945 => 'Hobart, IN', + 1219947 => 'Hobart, IN', + 1219949 => 'Gary, IN', + 1219956 => 'Wheatfield, IN', + 1219962 => 'Lake Station, IN', + 1219972 => 'Highland, IN', + 1219977 => 'Gary, IN', + 1219980 => 'Gary, IN', + 1219987 => 'De Motte, IN', + 1219989 => 'Hammond, IN', + 1219996 => 'Hebron, IN', + 1220 => 'Ohio', + 1224 => 'Illinois', + 1224610 => 'North Chicago, IL', + 1224653 => 'Schaumburg, IL', + 1225 => 'Louisiana', + 1225201 => 'Baton Rouge, LA', + 1225214 => 'Baton Rouge, LA', + 1225216 => 'Baton Rouge, LA', + 1225218 => 'Baton Rouge, LA', + 1225222 => 'Greensburg, LA', + 1225231 => 'Baton Rouge, LA', + 1225243 => 'Denham Springs, LA', + 1225246 => 'Baton Rouge, LA', + 1225248 => 'Baton Rouge, LA', + 1225261 => 'Baton Rouge, LA', + 1225262 => 'Baton Rouge, LA', + 1225265 => 'Vacherie, LA', + 1225271 => 'Denham Springs, LA', + 1225272 => 'Baton Rouge, LA', + 1225273 => 'Baton Rouge, LA', + 1225275 => 'Baton Rouge, LA', + 1225291 => 'Baton Rouge, LA', + 1225292 => 'Baton Rouge, LA', + 1225293 => 'Baton Rouge, LA', + 1225294 => 'Springfield, LA', + 1225295 => 'Baton Rouge, LA', + 1225296 => 'Baton Rouge, LA', + 1225298 => 'Baton Rouge, LA', + 1225302 => 'Baton Rouge, LA', + 1225336 => 'Baton Rouge, LA', + 1225341 => 'Baton Rouge, LA', + 1225342 => 'Baton Rouge, LA', + 1225343 => 'Baton Rouge, LA', + 1225344 => 'Baton Rouge, LA', + 1225346 => 'Baton Rouge, LA', + 1225355 => 'Baton Rouge, LA', + 1225356 => 'Baton Rouge, LA', + 1225357 => 'Baton Rouge, LA', + 1225358 => 'Baton Rouge, LA', + 1225372 => 'Baton Rouge, LA', + 1225381 => 'Baton Rouge, LA', + 1225382 => 'Baton Rouge, LA', + 1225383 => 'Baton Rouge, LA', + 1225387 => 'Baton Rouge, LA', + 1225388 => 'Baton Rouge, LA', + 1225389 => 'Baton Rouge, LA', + 1225448 => 'Baton Rouge, LA', + 1225473 => 'Donaldsonville, LA', + 1225545 => 'White Castle, LA', + 1225578 => 'Baton Rouge, LA', + 1225615 => 'Baton Rouge, LA', + 1225621 => 'Gonzales, LA', + 1225622 => 'Prairieville, LA', + 1225634 => 'Jackson, LA', + 1225635 => 'St. Francisville, LA', + 1225636 => 'Baton Rouge, LA', + 1225637 => 'Livonia, LA', + 1225638 => 'New Roads, LA', + 1225642 => 'St. Gabriel, LA', + 1225644 => 'Gonzales, LA', + 1225647 => 'Gonzales, LA', + 1225654 => 'Zachary, LA', + 1225658 => 'Zachary, LA', + 1225663 => 'Baton Rouge, LA', + 1225664 => 'Denham Springs, LA', + 1225665 => 'Denham Springs, LA', + 1225667 => 'Denham Springs, LA', + 1225673 => 'Prairieville, LA', + 1225675 => 'Sorrento, LA', + 1225677 => 'Prairieville, LA', + 1225683 => 'Clinton, LA', + 1225686 => 'Livingston, LA', + 1225687 => 'Plaquemine, LA', + 1225744 => 'Prairieville, LA', + 1225751 => 'Baton Rouge, LA', + 1225752 => 'Baton Rouge, LA', + 1225753 => 'Baton Rouge, LA', + 1225754 => 'Baton Rouge, LA', + 1225755 => 'Baton Rouge, LA', + 1225756 => 'Baton Rouge, LA', + 1225757 => 'Baton Rouge, LA', + 1225761 => 'Baton Rouge, LA', + 1225763 => 'Baton Rouge, LA', + 1225765 => 'Baton Rouge, LA', + 1225766 => 'Baton Rouge, LA', + 1225767 => 'Baton Rouge, LA', + 1225768 => 'Baton Rouge, LA', + 1225769 => 'Baton Rouge, LA', + 1225771 => 'Baton Rouge, LA', + 1225774 => 'Baker, LA', + 1225775 => 'Baker, LA', + 1225778 => 'Baton Rouge, LA', + 1225791 => 'Denham Springs, LA', + 1225810 => 'Baton Rouge, LA', + 1225819 => 'Baton Rouge, LA', + 1225922 => 'Baton Rouge, LA', + 1225923 => 'Baton Rouge, LA', + 1225924 => 'Baton Rouge, LA', + 1225925 => 'Baton Rouge, LA', + 1225926 => 'Baton Rouge, LA', + 1225927 => 'Baton Rouge, LA', + 1225928 => 'Baton Rouge, LA', + 1225929 => 'Baton Rouge, LA', + 1226 => 'Ontario', + 1226663 => 'London, ON', + 1228 => 'Mississippi', + 1228206 => 'Gulfport, MS', + 1228207 => 'Biloxi, MS', + 1228214 => 'Gulfport, MS', + 1228328 => 'Gulfport, MS', + 1228374 => 'Biloxi, MS', + 1228385 => 'Biloxi, MS', + 1228388 => 'Biloxi, MS', + 1228432 => 'Biloxi, MS', + 1228435 => 'Biloxi, MS', + 1228436 => 'Biloxi, MS', + 1228452 => 'Pass Christian, MS', + 1228463 => 'Bay St. Louis, MS', + 1228466 => 'Bay St. Louis, MS', + 1228467 => 'Bay St. Louis, MS', + 1228474 => 'Moss Point, MS', + 1228475 => 'Moss Point, MS', + 1228497 => 'Gautier, MS', + 1228523 => 'Biloxi, MS', + 1228539 => 'Gulfport, MS', + 1228575 => 'Gulfport, MS', + 1228588 => 'Moss Point, MS', + 1228594 => 'Biloxi, MS', + 1228604 => 'Gulfport, MS', + 1228762 => 'Pascagoula, MS', + 1228769 => 'Pascagoula, MS', + 1228809 => 'Pascagoula, MS', + 1228818 => 'Ocean Springs, MS', + 1228822 => 'Gulfport, MS', + 1228826 => 'Vancleave, MS', + 1228831 => 'Gulfport, MS', + 1228832 => 'Gulfport, MS', + 1228863 => 'Gulfport, MS', + 1228864 => 'Gulfport, MS', + 1228865 => 'Gulfport, MS', + 1228867 => 'Gulfport, MS', + 1228868 => 'Gulfport, MS', + 1228872 => 'Ocean Springs, MS', + 1228875 => 'Ocean Springs, MS', + 1228896 => 'Gulfport, MS', + 1228897 => 'Gulfport, MS', + 1228938 => 'Pascagoula, MS', + 1229 => 'Georgia', + 1229219 => 'Valdosta, GA', + 1229225 => 'Thomasville, GA', + 1229226 => 'Thomasville, GA', + 1229227 => 'Thomasville, GA', + 1229228 => 'Thomasville, GA', + 1229241 => 'Valdosta, GA', + 1229242 => 'Valdosta, GA', + 1229243 => 'Bainbridge, GA', + 1229244 => 'Valdosta, GA', + 1229245 => 'Valdosta, GA', + 1229246 => 'Bainbridge, GA', + 1229247 => 'Valdosta, GA', + 1229248 => 'Bainbridge, GA', + 1229249 => 'Valdosta, GA', + 1229253 => 'Valdosta, GA', + 1229259 => 'Valdosta, GA', + 1229263 => 'Quitman, GA', + 1229268 => 'Vienna, GA', + 1229271 => 'Cordele, GA', + 1229273 => 'Cordele, GA', + 1229276 => 'Cordele, GA', + 1229293 => 'Valdosta, GA', + 1229294 => 'Pelham, GA', + 1229312 => 'Albany, GA', + 1229333 => 'Valdosta, GA', + 1229336 => 'Camilla, GA', + 1229365 => 'Rochelle, GA', + 1229377 => 'Cairo, GA', + 1229382 => 'Tifton, GA', + 1229386 => 'Tifton, GA', + 1229387 => 'Tifton, GA', + 1229388 => 'Tifton, GA', + 1229391 => 'Tifton, GA', + 1229420 => 'Albany, GA', + 1229423 => 'Fitzgerald, GA', + 1229424 => 'Fitzgerald, GA', + 1229430 => 'Albany, GA', + 1229431 => 'Albany, GA', + 1229432 => 'Albany, GA', + 1229434 => 'Albany, GA', + 1229435 => 'Albany, GA', + 1229436 => 'Albany, GA', + 1229438 => 'Albany, GA', + 1229439 => 'Albany, GA', + 1229446 => 'Albany, GA', + 1229468 => 'Ocilla, GA', + 1229482 => 'Lakeland, GA', + 1229496 => 'Albany, GA', + 1229524 => 'Donalsonville, GA', + 1229559 => 'Lake Park, GA', + 1229567 => 'Ashburn, GA', + 1229639 => 'Albany, GA', + 1229649 => 'Buena Vista, GA', + 1229671 => 'Valdosta, GA', + 1229686 => 'Nashville, GA', + 1229723 => 'Blakely, GA', + 1229732 => 'Cuthbert, GA', + 1229758 => 'Colquitt, GA', + 1229759 => 'Leesburg, GA', + 1229768 => 'Fort Gaines, GA', + 1229776 => 'Sylvester, GA', + 1229777 => 'Sylvester, GA', + 1229794 => 'Hahira, GA', + 1229868 => 'McRae, GA', + 1229878 => 'Albany, GA', + 1229883 => 'Albany, GA', + 1229888 => 'Albany, GA', + 1229889 => 'Albany, GA', + 1229890 => 'Moultrie, GA', + 1229891 => 'Moultrie, GA', + 1229896 => 'Adel, GA', + 1229924 => 'Americus, GA', + 1229928 => 'Americus, GA', + 1229931 => 'Americus, GA', + 1229937 => 'Ellaville, GA', + 1229985 => 'Moultrie, GA', + 1229995 => 'Dawson, GA', + 1231 => 'Michigan', + 1231223 => 'Traverse City, MI', + 1231228 => 'Cedar, MI', + 1231237 => 'Charlevoix, MI', + 1231238 => 'Indian River, MI', + 1231258 => 'Kalkaska, MI', + 1231263 => 'Kingsley, MI', + 1231264 => 'Elk Rapids, MI', + 1231267 => 'Williamsburg, MI', + 1231271 => 'Suttons Bay, MI', + 1231276 => 'Interlochen, MI', + 1231325 => 'Honor, MI', + 1231334 => 'Glen Arbor, MI', + 1231347 => 'Petoskey, MI', + 1231348 => 'Petoskey, MI', + 1231352 => 'Frankfort, MI', + 1231386 => 'Northport, MI', + 1231398 => 'Manistee, MI', + 1231421 => 'Traverse City, MI', + 1231436 => 'Mackinaw City, MI', + 1231439 => 'Petoskey, MI', + 1231448 => 'Beaver Island, MI', + 1231487 => 'Petoskey, MI', + 1231526 => 'Harbor Springs, MI', + 1231533 => 'Bellaire, MI', + 1231536 => 'East Jordan, MI', + 1231544 => 'Central Lake, MI', + 1231547 => 'Charlevoix, MI', + 1231548 => 'Alanson, MI', + 1231549 => 'Boyne Falls, MI', + 1231582 => 'Boyne City, MI', + 1231587 => 'Mancelona, MI', + 1231592 => 'Big Rapids, MI', + 1231597 => 'Cheboygan, MI', + 1231627 => 'Cheboygan, MI', + 1231652 => 'Newaygo, MI', + 1231672 => 'Muskegon, MI', + 1231689 => 'White Cloud, MI', + 1231719 => 'Muskegon, MI', + 1231722 => 'Muskegon, MI', + 1231723 => 'Manistee, MI', + 1231724 => 'Muskegon, MI', + 1231726 => 'Muskegon, MI', + 1231727 => 'Muskegon, MI', + 1231728 => 'Muskegon, MI', + 1231733 => 'Muskegon, MI', + 1231734 => 'Evart, MI', + 1231737 => 'Muskegon, MI', + 1231739 => 'Muskegon, MI', + 1231743 => 'Marion, MI', + 1231744 => 'Muskegon, MI', + 1231745 => 'Baldwin, MI', + 1231747 => 'Muskegon, MI', + 1231755 => 'Muskegon, MI', + 1231757 => 'Scottville, MI', + 1231759 => 'Muskegon, MI', + 1231766 => 'Muskegon, MI', + 1231767 => 'Muskegon, MI', + 1231773 => 'Muskegon, MI', + 1231775 => 'Cadillac, MI', + 1231777 => 'Muskegon, MI', + 1231779 => 'Cadillac, MI', + 1231780 => 'Norton Shores, MI', + 1231788 => 'Muskegon, MI', + 1231796 => 'Big Rapids, MI', + 1231798 => 'Norton Shores, MI', + 1231824 => 'Manton, MI', + 1231825 => 'McBain, MI', + 1231830 => 'Muskegon, MI', + 1231832 => 'Reed City, MI', + 1231834 => 'Grant, MI', + 1231839 => 'Lake City, MI', + 1231843 => 'Ludington, MI', + 1231845 => 'Ludington, MI', + 1231853 => 'Ravenna, MI', + 1231854 => 'Hesperia, MI', + 1231861 => 'Shelby, MI', + 1231865 => 'Fruitport Charter township, MI', + 1231869 => 'Pentwater, MI', + 1231873 => 'Hart, MI', + 1231876 => 'Cadillac, MI', + 1231882 => 'Beulah, MI', + 1231885 => 'Mesick, MI', + 1231893 => 'Whitehall, MI', + 1231894 => 'Whitehall, MI', + 1231922 => 'Traverse City, MI', + 1231924 => 'Fremont, MI', + 1231929 => 'Traverse City, MI', + 1231932 => 'Traverse City, MI', + 1231933 => 'Traverse City, MI', + 1231935 => 'Traverse City, MI', + 1231937 => 'Howard City, MI', + 1231941 => 'Traverse City, MI', + 1231943 => 'Traverse City, MI', + 1231944 => 'Traverse City, MI', + 1231946 => 'Traverse City, MI', + 1231947 => 'Traverse City, MI', + 1231995 => 'Traverse City, MI', + 1234 => 'Ohio', + 1234678 => 'Akron, OH', + 1236 => 'British Columbia', + 1239 => 'Florida', + 1239200 => 'Naples, FL', + 1239213 => 'Naples, FL', + 1239225 => 'Fort Myers, FL', + 1239226 => 'Fort Myers, FL', + 1239234 => 'Naples, FL', + 1239242 => 'Cape Coral, FL', + 1239243 => 'Fort Myers, FL', + 1239245 => 'Fort Myers, FL', + 1239252 => 'Naples, FL', + 1239254 => 'Naples, FL', + 1239260 => 'Naples, FL', + 1239261 => 'Naples, FL', + 1239262 => 'Naples, FL', + 1239263 => 'Naples, FL', + 1239267 => 'Fort Myers, FL', + 1239272 => 'Naples, FL', + 1239274 => 'Fort Myers, FL', + 1239275 => 'Fort Myers, FL', + 1239277 => 'Fort Myers, FL', + 1239278 => 'Fort Myers, FL', + 1239288 => 'Fort Myers, FL', + 1239289 => 'Naples, FL', + 1239293 => 'Naples, FL', + 1239303 => 'Lehigh Acres, FL', + 1239304 => 'Naples, FL', + 1239313 => 'Fort Myers, FL', + 1239321 => 'Fort Myers, FL', + 1239325 => 'Naples, FL', + 1239330 => 'Naples, FL', + 1239331 => 'Naples, FL', + 1239332 => 'Fort Myers, FL', + 1239334 => 'Fort Myers, FL', + 1239337 => 'Fort Myers, FL', + 1239343 => 'Fort Myers, FL', + 1239344 => 'Fort Myers, FL', + 1239348 => 'Naples, FL', + 1239352 => 'Naples, FL', + 1239353 => 'Naples, FL', + 1239354 => 'Naples, FL', + 1239362 => 'Fort Myers, FL', + 1239368 => 'Lehigh Acres, FL', + 1239369 => 'Lehigh Acres, FL', + 1239389 => 'Marco Island, FL', + 1239390 => 'Bonita Springs, FL', + 1239394 => 'Marco Island, FL', + 1239395 => 'Sanibel, FL', + 1239398 => 'Naples, FL', + 1239403 => 'Naples, FL', + 1239404 => 'Naples, FL', + 1239405 => 'Bonita Springs, FL', + 1239415 => 'Fort Myers, FL', + 1239417 => 'Naples, FL', + 1239418 => 'Fort Myers, FL', + 1239424 => 'Cape Coral, FL', + 1239425 => 'Fort Myers, FL', + 1239430 => 'Naples, FL', + 1239431 => 'Naples, FL', + 1239432 => 'Fort Myers, FL', + 1239433 => 'Fort Myers, FL', + 1239434 => 'Naples, FL', + 1239435 => 'Naples, FL', + 1239436 => 'Naples, FL', + 1239437 => 'Fort Myers, FL', + 1239454 => 'Fort Myers, FL', + 1239455 => 'Naples, FL', + 1239458 => 'Cape Coral, FL', + 1239461 => 'Fort Myers, FL', + 1239463 => 'Fort Myers Beach, FL', + 1239465 => 'Naples, FL', + 1239466 => 'Fort Myers, FL', + 1239471 => 'Cape Coral, FL', + 1239472 => 'Sanibel, FL', + 1239481 => 'Fort Myers, FL', + 1239482 => 'Fort Myers, FL', + 1239489 => 'Fort Myers, FL', + 1239495 => 'Bonita Springs, FL', + 1239498 => 'Bonita Springs, FL', + 1239513 => 'Naples, FL', + 1239514 => 'Naples, FL', + 1239530 => 'Naples, FL', + 1239533 => 'Fort Myers, FL', + 1239540 => 'Cape Coral, FL', + 1239541 => 'Cape Coral, FL', + 1239542 => 'Cape Coral, FL', + 1239543 => 'Fort Myers, FL', + 1239549 => 'Cape Coral, FL', + 1239561 => 'Fort Myers, FL', + 1239566 => 'Naples, FL', + 1239573 => 'Cape Coral, FL', + 1239574 => 'Cape Coral, FL', + 1239590 => 'Fort Myers, FL', + 1239591 => 'Naples, FL', + 1239592 => 'Naples, FL', + 1239593 => 'Naples, FL', + 1239594 => 'Naples, FL', + 1239595 => 'Naples, FL', + 1239596 => 'Naples, FL', + 1239597 => 'Naples, FL', + 1239598 => 'Naples, FL', + 1239601 => 'Naples, FL', + 1239642 => 'Marco Island, FL', + 1239643 => 'Naples, FL', + 1239649 => 'Naples, FL', + 1239657 => 'Immokalee, FL', + 1239658 => 'Immokalee, FL', + 1239659 => 'Naples, FL', + 1239673 => 'Cape Coral, FL', + 1239676 => 'Bonita Springs, FL', + 1239689 => 'Fort Myers, FL', + 1239690 => 'Fort Myers, FL', + 1239692 => 'Naples, FL', + 1239693 => 'Fort Myers, FL', + 1239694 => 'Fort Myers, FL', + 1239731 => 'Fort Myers, FL', + 1239732 => 'Naples, FL', + 1239765 => 'Fort Myers Beach, FL', + 1239768 => 'Fort Myers, FL', + 1239772 => 'Cape Coral, FL', + 1239774 => 'Naples, FL', + 1239775 => 'Naples, FL', + 1239777 => 'Naples, FL', + 1239793 => 'Naples, FL', + 1239821 => 'Naples, FL', + 1239825 => 'Naples, FL', + 1239829 => 'Cape Coral, FL', + 1239931 => 'Fort Myers, FL', + 1239936 => 'Fort Myers, FL', + 1239938 => 'Fort Myers, FL', + 1239939 => 'Fort Myers, FL', + 1239945 => 'Cape Coral, FL', + 1239947 => 'Bonita Springs, FL', + 1239948 => 'Bonita Springs, FL', + 1239949 => 'Bonita Springs, FL', + 1239963 => 'Naples, FL', + 1239985 => 'Fort Myers, FL', + 1239992 => 'Bonita Springs, FL', + 1240 => 'Maryland', + 1240313 => 'Hagerstown, MD', + 1240314 => 'Rockville, MD', + 1240362 => 'Cumberland, MD', + 1240379 => 'Frederick, MD', + 1240403 => 'Rockville, MD', + 1240420 => 'Hagerstown, MD', + 1240456 => 'Laurel, MD', + 1240566 => 'Frederick, MD', + 1240575 => 'Frederick, MD', + 1240631 => 'Gaithersburg, MD', + 1240683 => 'Gaithersburg, MD', + 1240686 => 'Germantown, MD', + 1240777 => 'Rockville, MD', + 1240857 => 'Joint Base Andrews Naval Air Facility, MD', + 12422250 => 'New Providence', + 12422251 => 'New Providence', + 12422252 => 'New Providence', + 12422253 => 'New Providence', + 12422254 => 'New Providence', + 12422256 => 'New Providence', + 12422257 => 'New Providence', + 12422258 => 'New Providence', + 12422259 => 'New Providence', + 1242302 => 'New Providence', + 1242321 => 'New Providence', + 1242322 => 'New Providence', + 1242323 => 'New Providence', + 1242324 => 'New Providence', + 1242325 => 'New Providence', + 1242326 => 'New Providence', + 1242327 => 'New Providence', + 1242328 => 'New Providence', + 1242329 => 'North Andros', + 1242331 => 'Rum Cay & San Sal', + 1242332 => 'Eleuthera', + 1242333 => 'Eleuthera', + 1242334 => 'Eleuthera', + 1242335 => 'Eleuthera', + 1242336 => 'Exuma', + 1242337 => 'Long Island', + 1242338 => 'Long Island', + 1242339 => 'Inagua/Mayaguana', + 1242340 => 'New Providence', + 1242341 => 'New Providence', + 1242342 => 'Cat Island', + 1242344 => 'Acklins', + 1242345 => 'Exuma', + 1242346 => 'Grand Bahama', + 1242347 => 'Bimini and Cat Cay', + 1242348 => 'Grand Bahama', + 1242349 => 'Grand Bahama', + 1242350 => 'Grand Bahama', + 1242351 => 'Grand Bahama', + 1242352 => 'Grand Bahama', + 1242353 => 'Grand Bahama', + 1242354 => 'Cat Island', + 1242355 => 'Exuma Cays', + 1242356 => 'New Providence', + 1242358 => 'Exuma', + 1242361 => 'New Providence', + 1242362 => 'New Providence', + 1242363 => 'New Providence', + 1242364 => 'New Providence', + 1242365 => 'Abaco Island', + 1242366 => 'Abaco Island', + 1242367 => 'Abaco Island', + 1242368 => 'Andros', + 1242369 => 'Andros', + 1242373 => 'Grand Bahama', + 1242374 => 'Grand Bahama', + 1242376 => 'Grand Bahama', + 1242377 => 'New Providence', + 1242380 => 'New Providence', + 1242381 => 'New Providence', + 1242382 => 'New Providence', + 1242383 => 'New Providence', + 1242384 => 'New Providence', + 1242392 => 'New Providence', + 1242393 => 'New Providence', + 1242394 => 'New Providence', + 1242396 => 'New Providence', + 1242397 => 'New Providence', + 1242461 => 'New Providence', + 1242601 => 'New Providence', + 1242602 => 'Grand Bahama', + 1242676 => 'New Providence', + 1242677 => 'New Providence', + 1242687 => 'Grand Bahama', + 1242688 => 'Grand Bahama', + 1242698 => 'Abaco', + 1242699 => 'Abaco', + 1242702 => 'New Providence', + 1248 => 'Michigan', + 1248208 => 'Southfield, MI', + 1248223 => 'Southfield, MI', + 1248236 => 'Oxford Charter Township, MI', + 1248244 => 'Troy, MI', + 1248246 => 'Royal Oak, MI', + 1248250 => 'Troy, MI', + 1248262 => 'Southfield, MI', + 1248267 => 'Troy, MI', + 1248269 => 'Troy, MI', + 1248276 => 'Auburn Hills, MI', + 1248293 => 'Rochester Hills, MI', + 1248299 => 'Rochester Hills, MI', + 1248305 => 'Novi, MI', + 1248322 => 'Pontiac, MI', + 1248324 => 'Farmington Hills, MI', + 1248327 => 'Southfield, MI', + 1248328 => 'Holly, MI', + 1248332 => 'Pontiac, MI', + 1248334 => 'Pontiac, MI', + 1248338 => 'Pontiac, MI', + 1248340 => 'Auburn Hills, MI', + 1248344 => 'Novi, MI', + 1248347 => 'Novi, MI', + 1248350 => 'Southfield, MI', + 1248351 => 'Southfield, MI', + 1248352 => 'Southfield, MI', + 1248353 => 'Southfield, MI', + 1248354 => 'Southfield, MI', + 1248355 => 'Southfield, MI', + 1248356 => 'Southfield, MI', + 1248357 => 'Southfield, MI', + 1248358 => 'Southfield, MI', + 1248362 => 'Troy, MI', + 1248370 => 'Auburn Hills, MI', + 1248373 => 'Auburn Hills, MI', + 1248374 => 'Novi, MI', + 1248375 => 'Rochester Hills, MI', + 1248377 => 'Auburn Hills, MI', + 1248380 => 'Novi, MI', + 1248391 => 'Lake Orion, MI', + 1248395 => 'Southfield, MI', + 1248423 => 'Royal Oak, MI', + 1248424 => 'Southfield, MI', + 1248437 => 'South Lyon, MI', + 1248440 => 'Southfield, MI', + 1248443 => 'Southfield, MI', + 1248446 => 'South Lyon, MI', + 1248449 => 'Novi, MI', + 1248457 => 'Troy, MI', + 1248465 => 'Novi, MI', + 1248471 => 'Farmington Hills, MI', + 1248486 => 'South Lyon, MI', + 1248489 => 'Farmington Hills, MI', + 1248524 => 'Troy, MI', + 1248526 => 'Troy, MI', + 1248528 => 'Troy, MI', + 1248549 => 'Royal Oak, MI', + 1248551 => 'Royal Oak, MI', + 1248552 => 'Southfield, MI', + 1248553 => 'Farmington Hills, MI', + 1248557 => 'Southfield, MI', + 1248559 => 'Southfield, MI', + 1248569 => 'Southfield, MI', + 1248577 => 'Troy, MI', + 1248592 => 'West Bloomfield Township, MI', + 1248618 => 'Waterford Township, MI', + 1248619 => 'Troy, MI', + 1248620 => 'Clarkston, MI', + 1248623 => 'Waterford Township, MI', + 1248625 => 'Clarkston, MI', + 1248627 => 'Ortonville, MI', + 1248628 => 'Oxford Charter Township, MI', + 1248634 => 'Holly, MI', + 1248641 => 'Troy, MI', + 1248643 => 'Troy, MI', + 1248649 => 'Troy, MI', + 1248661 => 'West Bloomfield Township, MI', + 1248662 => 'Novi, MI', + 1248663 => 'Southfield, MI', + 1248666 => 'Waterford Township, MI', + 1248673 => 'Waterford Township, MI', + 1248674 => 'Waterford Township, MI', + 1248676 => 'Milford, MI', + 1248680 => 'Troy, MI', + 1248681 => 'Waterford Township, MI', + 1248682 => 'Waterford Township, MI', + 1248683 => 'Waterford Township, MI', + 1248684 => 'Milford, MI', + 1248685 => 'Milford, MI', + 1248689 => 'Troy, MI', + 1248693 => 'Lake Orion, MI', + 1248698 => 'White Lake Township, MI', + 1248738 => 'Waterford Township, MI', + 1248740 => 'Troy, MI', + 1248758 => 'Pontiac, MI', + 1248796 => 'Southfield, MI', + 1248799 => 'Southfield, MI', + 1248809 => 'Southfield, MI', + 1248814 => 'Lake Orion, MI', + 1248816 => 'Troy, MI', + 1248827 => 'Southfield, MI', + 1248828 => 'Troy, MI', + 1248844 => 'Rochester Hills, MI', + 1248848 => 'Farmington Hills, MI', + 1248849 => 'Southfield, MI', + 1248852 => 'Rochester Hills, MI', + 1248853 => 'Rochester Hills, MI', + 1248857 => 'Pontiac, MI', + 1248858 => 'Pontiac, MI', + 1248879 => 'Troy, MI', + 1248886 => 'Waterford Township, MI', + 1248887 => 'Highland Township, MI', + 1248889 => 'Highland Township, MI', + 1248898 => 'Royal Oak, MI', + 1248922 => 'Clarkston, MI', + 1248952 => 'Troy, MI', + 1248964 => 'Troy, MI', + 1248967 => 'Madison Heights, MI', + 1248968 => 'Oak Park, MI', + 1248969 => 'Oxford Charter Township, MI', + 1248987 => 'Farmington Hills, MI', + 1248994 => 'Farmington Hills, MI', + 1248996 => 'Southfield, MI', + 1250 => 'British Columbia', + 1250212 => 'Kelowna, BC', + 1250215 => 'Kelowna, BC', + 1250242 => 'Tumbler Ridge, BC', + 1250245 => 'Ladysmith, BC', + 1250246 => 'Chemainus, BC', + 1250247 => 'Gabriola, BC', + 1250248 => 'Parksville, BC', + 1250256 => 'Lillooet, BC', + 1250260 => 'Vernon, BC', + 1250262 => 'Fort St. John, BC', + 1250265 => 'Nakusp, BC', + 1250285 => 'Quadra Island, BC', + 1250286 => 'Campbell River, BC', + 1250287 => 'Campbell River, BC', + 1250295 => 'Princeton, BC', + 1250314 => 'Kamloops, BC', + 1250317 => 'Kelowna, BC', + 1250331 => 'Courtenay, BC', + 1250334 => 'Courtenay, BC', + 1250335 => 'Hornby Island, BC', + 1250336 => 'Cumberland, BC', + 1250337 => 'Black Creek, BC', + 1250338 => 'Courtenay, BC', + 1250339 => 'Comox, BC', + 1250342 => 'Invermere, BC', + 1250344 => 'Golden, BC', + 1250347 => 'Radium Hot Springs, BC', + 1250352 => 'Nelson, BC', + 1250353 => 'Kaslo, BC', + 1250354 => 'Nelson, BC', + 1250357 => 'Salmo, BC', + 1250360 => 'Victoria, BC', + 1250361 => 'Victoria, BC', + 1250362 => 'Rossland, BC', + 1250364 => 'Trail, BC', + 1250365 => 'Castlegar, BC', + 1250367 => 'Fruitvale, BC', + 1250368 => 'Trail, BC', + 1250370 => 'Victoria, BC', + 1250372 => 'Kamloops, BC', + 1250374 => 'Kamloops, BC', + 1250376 => 'Kamloops, BC', + 1250377 => 'Kamloops, BC', + 1250378 => 'Merritt, BC', + 1250380 => 'Victoria, BC', + 1250381 => 'Victoria, BC', + 1250382 => 'Victoria, BC', + 1250383 => 'Victoria, BC', + 1250384 => 'Victoria, BC', + 1250385 => 'Victoria, BC', + 1250386 => 'Victoria, BC', + 1250388 => 'Victoria, BC', + 1250389 => 'Victoria, BC', + 1250390 => 'Nanaimo, BC', + 1250391 => 'Victoria, BC', + 1250392 => 'Williams Lake, BC', + 1250395 => '100 Mile House, BC', + 1250398 => 'Williams Lake, BC', + 1250412 => 'Victoria, BC', + 1250417 => 'Cranbrook, BC', + 1250423 => 'Fernie, BC', + 1250425 => 'Sparwood, BC', + 1250426 => 'Cranbrook, BC', + 1250427 => 'Kimberley, BC', + 1250428 => 'Creston, BC', + 1250442 => 'Grand Forks, BC', + 1250448 => 'Kelowna, BC', + 1250468 => 'Nanoose Bay, BC', + 1250469 => 'Kelowna, BC', + 1250470 => 'Kelowna, BC', + 1250472 => 'Victoria, BC', + 1250475 => 'Victoria, BC', + 1250477 => 'Victoria, BC', + 1250478 => 'Victoria, BC', + 1250479 => 'Victoria, BC', + 1250480 => 'Victoria, BC', + 1250483 => 'Victoria, BC', + 1250487 => 'Penticton, BC', + 1250489 => 'Cranbrook, BC', + 1250490 => 'Penticton, BC', + 1250491 => 'Kelowna, BC', + 1250492 => 'Penticton, BC', + 1250493 => 'Penticton, BC', + 1250494 => 'Summerland, BC', + 1250495 => 'Osoyoos, BC', + 1250498 => 'Oliver, BC', + 1250499 => 'Keremeos, BC', + 1250503 => 'Vernon, BC', + 1250505 => 'Nelson, BC', + 1250537 => 'Salt Spring Island, BC', + 1250542 => 'Vernon, BC', + 1250545 => 'Vernon, BC', + 1250546 => 'Armstrong, BC', + 1250547 => 'Lumby, BC', + 1250549 => 'Vernon, BC', + 1250554 => 'Kamloops, BC', + 1250558 => 'Vernon, BC', + 1250559 => 'Queen Charlotte, BC', + 1250561 => 'Prince George, BC', + 1250562 => 'Prince George, BC', + 1250563 => 'Prince George, BC', + 1250564 => 'Prince George, BC', + 1250566 => 'Valemount, BC', + 1250567 => 'Vanderhoof, BC', + 1250573 => 'Kamloops, BC', + 1250579 => 'Kamloops, BC', + 1250585 => 'Nanaimo, BC', + 1250586 => 'Parksville, BC', + 1250590 => 'Victoria, BC', + 1250591 => 'Nanaimo, BC', + 1250592 => 'Victoria, BC', + 1250595 => 'Victoria, BC', + 1250596 => 'Prince George, BC', + 1250597 => 'Duncan, BC', + 1250598 => 'Victoria, BC', + 1250614 => 'Prince George, BC', + 1250615 => 'Terrace, BC', + 1250624 => 'Prince Rupert, BC', + 1250626 => 'Masset, BC', + 1250627 => 'Prince Rupert, BC', + 1250629 => 'Pender Island, BC', + 1250632 => 'Kitimat, BC', + 1250635 => 'Terrace, BC', + 1250638 => 'Terrace, BC', + 1250642 => 'Sooke, BC', + 1250655 => 'Sidney, BC', + 1250656 => 'Sidney, BC', + 1250658 => 'Victoria, BC', + 1250672 => 'Barrière, BC', + 1250674 => 'Clearwater, BC', + 1250675 => 'Sorrento, BC', + 1250679 => 'Chase, BC', + 1250686 => 'Victoria, BC', + 1250692 => 'Burns Lake, BC', + 1250701 => 'Duncan, BC', + 1250703 => 'Courtenay, BC', + 1250707 => 'Westbank, BC', + 1250709 => 'Duncan, BC', + 1250712 => 'Kelowna, BC', + 1250714 => 'Nanaimo, BC', + 1250715 => 'Duncan, BC', + 1250716 => 'Nanaimo, BC', + 1250717 => 'Kelowna, BC', + 1250718 => 'Kelowna, BC', + 1250720 => 'Port Alberni, BC', + 1250721 => 'Victoria, BC', + 1250722 => 'Nanaimo, BC', + 1250723 => 'Port Alberni, BC', + 1250724 => 'Port Alberni, BC', + 1250725 => 'Tofino, BC', + 1250726 => 'Ucluelet, BC', + 1250727 => 'Victoria, BC', + 1250729 => 'Nanaimo, BC', + 1250741 => 'Nanaimo, BC', + 1250744 => 'Victoria, BC', + 1250746 => 'Duncan, BC', + 1250747 => 'Quesnel, BC', + 1250748 => 'Duncan, BC', + 1250749 => 'Lake Cowichan, BC', + 1250751 => 'Nanaimo, BC', + 1250752 => 'Qualicum Beach, BC', + 1250753 => 'Nanaimo, BC', + 1250754 => 'Nanaimo, BC', + 1250755 => 'Nanaimo, BC', + 1250756 => 'Nanaimo, BC', + 1250758 => 'Nanaimo, BC', + 1250762 => 'Kelowna, BC', + 1250763 => 'Kelowna, BC', + 1250764 => 'Kelowna, BC', + 1250765 => 'Kelowna, BC', + 1250766 => 'Winfield, BC', + 1250767 => 'Peachland, BC', + 1250768 => 'Westbank, BC', + 1250769 => 'Kelowna, BC', + 1250770 => 'Penticton, BC', + 1250774 => 'Fort Nelson, BC', + 1250782 => 'Dawson Creek, BC', + 1250785 => 'Fort St. John, BC', + 1250787 => 'Fort St. John, BC', + 1250788 => 'Chetwynd, BC', + 1250804 => 'Salmon Arm, BC', + 1250808 => 'Kelowna, BC', + 1250812 => 'Victoria, BC', + 1250818 => 'Victoria, BC', + 1250828 => 'Kamloops, BC', + 1250830 => 'Campbell River, BC', + 1250832 => 'Salmon Arm, BC', + 1250833 => 'Salmon Arm, BC', + 1250836 => 'Sicamous, BC', + 1250837 => 'Revelstoke, BC', + 1250838 => 'Enderby, BC', + 1250842 => 'Hazelton, BC', + 1250845 => 'Houston, BC', + 1250847 => 'Smithers, BC', + 1250851 => 'Kamloops, BC', + 1250858 => 'Victoria, BC', + 1250860 => 'Kelowna, BC', + 1250861 => 'Kelowna, BC', + 1250862 => 'Kelowna, BC', + 1250863 => 'Kelowna, BC', + 1250864 => 'Kelowna, BC', + 1250868 => 'Kelowna, BC', + 1250869 => 'Kelowna, BC', + 1250870 => 'Kelowna, BC', + 1250871 => 'Courtenay, BC', + 1250877 => 'Smithers, BC', + 1250878 => 'Kelowna, BC', + 1250881 => 'Victoria, BC', + 1250888 => 'Victoria, BC', + 1250889 => 'Victoria, BC', + 1250897 => 'Courtenay, BC', + 1250920 => 'Victoria, BC', + 1250923 => 'Campbell River, BC', + 1250949 => 'Port Hardy, BC', + 1250951 => 'Parksville, BC', + 1250954 => 'Parksville, BC', + 1250956 => 'Port McNeill, BC', + 1250962 => 'Prince George, BC', + 1250963 => 'Prince George, BC', + 1250964 => 'Prince George, BC', + 1250979 => 'Kelowna, BC', + 1250992 => 'Quesnel, BC', + 1250995 => 'Victoria, BC', + 1250996 => 'Fort St James, BC', + 1250997 => 'Mackenzie, BC', + 1251 => 'Alabama', + 1251208 => 'Mobile, AL', + 1251219 => 'Mobile, AL', + 1251246 => 'Jackson, AL', + 1251275 => 'Grove Hill, AL', + 1251287 => 'Mobile, AL', + 1251296 => 'Flomaton, AL', + 1251300 => 'Mobile, AL', + 1251338 => 'Mobile, AL', + 1251340 => 'Mobile, AL', + 1251341 => 'Mobile, AL', + 1251342 => 'Mobile, AL', + 1251343 => 'Mobile, AL', + 1251344 => 'Mobile, AL', + 1251345 => 'Mobile, AL', + 1251368 => 'Atmore, AL', + 1251378 => 'Mobile, AL', + 1251380 => 'Mobile, AL', + 1251414 => 'Mobile, AL', + 1251415 => 'Mobile, AL', + 1251432 => 'Mobile, AL', + 1251433 => 'Mobile, AL', + 1251434 => 'Mobile, AL', + 1251435 => 'Mobile, AL', + 1251438 => 'Mobile, AL', + 1251441 => 'Mobile, AL', + 1251443 => 'Theodore, AL', + 1251445 => 'Mobile, AL', + 1251446 => 'Atmore, AL', + 1251450 => 'Mobile, AL', + 1251457 => 'Mobile, AL', + 1251460 => 'Mobile, AL', + 1251470 => 'Mobile, AL', + 1251471 => 'Mobile, AL', + 1251473 => 'Mobile, AL', + 1251476 => 'Mobile, AL', + 1251478 => 'Mobile, AL', + 1251479 => 'Mobile, AL', + 1251575 => 'Monroeville, AL', + 1251578 => 'Evergreen, AL', + 1251580 => 'Bay Minette, AL', + 1251602 => 'Mobile, AL', + 1251607 => 'Mobile, AL', + 1251621 => 'Daphne, AL', + 1251625 => 'Daphne, AL', + 1251626 => 'Daphne, AL', + 1251633 => 'Mobile, AL', + 1251634 => 'Mobile, AL', + 1251639 => 'Mobile, AL', + 1251653 => 'Theodore, AL', + 1251660 => 'Mobile, AL', + 1251661 => 'Mobile, AL', + 1251662 => 'Mobile, AL', + 1251665 => 'Mobile, AL', + 1251666 => 'Mobile, AL', + 1251675 => 'Saraland, AL', + 1251679 => 'Saraland, AL', + 1251690 => 'Mobile, AL', + 1251694 => 'Mobile, AL', + 1251725 => 'Mobile, AL', + 1251743 => 'Monroeville, AL', + 1251776 => 'Mobile, AL', + 1251809 => 'Brewton, AL', + 1251824 => 'Bayou La Batre, AL', + 1251829 => 'Mount Vernon, AL', + 1251843 => 'Gilbertown, AL', + 1251847 => 'Chatom, AL', + 1251865 => 'Grand Bay, AL', + 1251866 => 'Citronelle, AL', + 1251867 => 'Brewton, AL', + 1251928 => 'Fairhope, AL', + 1251929 => 'Fairhope, AL', + 1251937 => 'Bay Minette, AL', + 1251943 => 'Foley, AL', + 1251947 => 'Robertsdale, AL', + 1251948 => 'Gulf Shores, AL', + 1251955 => 'Foley, AL', + 1251957 => 'Irvington, AL', + 1251962 => 'Lillian, AL', + 1251964 => 'Loxley, AL', + 1251967 => 'Gulf Shores, AL', + 1251968 => 'Gulf Shores, AL', + 1251970 => 'Foley, AL', + 1251971 => 'Foley, AL', + 1251973 => 'Theodore, AL', + 1251974 => 'Orange Beach, AL', + 1251980 => 'Orange Beach, AL', + 1251981 => 'Orange Beach, AL', + 1251986 => 'Elberta, AL', + 1251989 => 'Summerdale, AL', + 1251990 => 'Fairhope, AL', + 1252 => 'North Carolina', + 1252206 => 'Wilson, NC', + 1252208 => 'Kinston, NC', + 1252209 => 'Ahoskie, NC', + 1252212 => 'Rocky Mount, NC', + 1252215 => 'Greenville, NC', + 1252222 => 'Morehead City, NC', + 1252223 => 'Newport, NC', + 1252234 => 'Wilson, NC', + 1252235 => 'Bailey, NC', + 1252236 => 'Elm City, NC', + 1252237 => 'Wilson, NC', + 1252238 => 'Stantonsburg, NC', + 1252240 => 'Morehead City, NC', + 1252243 => 'Wilson, NC', + 1252244 => 'Vanceboro, NC', + 1252247 => 'Morehead City, NC', + 1252249 => 'Oriental, NC', + 1252255 => 'Kitty Hawk, NC', + 1252257 => 'Warrenton, NC', + 1252261 => 'Kitty Hawk, NC', + 1252291 => 'Wilson, NC', + 1252293 => 'Wilson, NC', + 1252308 => 'Roanoke Rapids, NC', + 1252321 => 'Greenville, NC', + 1252322 => 'Aurora, NC', + 1252329 => 'Greenville, NC', + 1252331 => 'Elizabeth City, NC', + 1252332 => 'Ahoskie, NC', + 1252333 => 'Elizabeth City, NC', + 1252335 => 'Elizabeth City, NC', + 1252338 => 'Elizabeth City, NC', + 1252353 => 'Greenville, NC', + 1252354 => 'Emerald Isle, NC', + 1252355 => 'Greenville, NC', + 1252356 => 'Colerain, NC', + 1252357 => 'Gatesville, NC', + 1252364 => 'Greenville, NC', + 1252398 => 'Murfreesboro, NC', + 1252399 => 'Wilson, NC', + 1252426 => 'Hertford, NC', + 1252430 => 'Henderson, NC', + 1252431 => 'Henderson, NC', + 1252435 => 'Moyock, NC', + 1252436 => 'Henderson, NC', + 1252438 => 'Henderson, NC', + 1252439 => 'Greenville, NC', + 1252442 => 'Rocky Mount, NC', + 1252443 => 'Rocky Mount, NC', + 1252444 => 'Havelock, NC', + 1252445 => 'Enfield, NC', + 1252446 => 'Rocky Mount, NC', + 1252447 => 'Havelock, NC', + 1252448 => 'Trenton, NC', + 1252451 => 'Rocky Mount, NC', + 1252456 => 'Norlina, NC', + 1252459 => 'Nashville, NC', + 1252473 => 'Manteo, NC', + 1252475 => 'Manteo, NC', + 1252478 => 'Spring Hope, NC', + 1252480 => 'Kill Devil Hills, NC', + 1252482 => 'Edenton, NC', + 1252492 => 'Henderson, NC', + 1252504 => 'Beaufort, NC', + 1252514 => 'New Bern, NC', + 1252520 => 'Kinston, NC', + 1252522 => 'Kinston, NC', + 1252523 => 'Kinston, NC', + 1252524 => 'Grifton, NC', + 1252527 => 'Kinston, NC', + 1252534 => 'Jackson, NC', + 1252535 => 'Roanoke Rapids, NC', + 1252537 => 'Roanoke Rapids, NC', + 1252566 => 'La Grange, NC', + 1252568 => 'Pink Hill, NC', + 1252583 => 'Halifax, NC', + 1252586 => 'Littleton, NC', + 1252633 => 'New Bern, NC', + 1252634 => 'New Bern, NC', + 1252635 => 'New Bern, NC', + 1252636 => 'New Bern, NC', + 1252637 => 'New Bern, NC', + 1252638 => 'New Bern, NC', + 1252641 => 'Tarboro, NC', + 1252672 => 'New Bern, NC', + 1252695 => 'Greenville, NC', + 1252726 => 'Morehead City, NC', + 1252727 => 'Morehead City, NC', + 1252728 => 'Beaufort, NC', + 1252744 => 'Greenville, NC', + 1252746 => 'Ayden, NC', + 1252747 => 'Snow Hill, NC', + 1252752 => 'Greenville, NC', + 1252753 => 'Farmville, NC', + 1252756 => 'Greenville, NC', + 1252757 => 'Greenville, NC', + 1252758 => 'Greenville, NC', + 1252771 => 'South Mills, NC', + 1252792 => 'Williamston, NC', + 1252793 => 'Plymouth, NC', + 1252794 => 'Windsor, NC', + 1252795 => 'Robersonville, NC', + 1252796 => 'Columbia, NC', + 1252808 => 'Morehead City, NC', + 1252823 => 'Tarboro, NC', + 1252825 => 'Bethel, NC', + 1252826 => 'Scotland Neck, NC', + 1252827 => 'Pinetops, NC', + 1252830 => 'Greenville, NC', + 1252847 => 'Greenville, NC', + 1252926 => 'Swan Quarter, NC', + 1252928 => 'Ocracoke, NC', + 1252937 => 'Rocky Mount, NC', + 1252939 => 'Kinston, NC', + 1252940 => 'Washington, NC', + 1252943 => 'Belhaven, NC', + 1252946 => 'Washington, NC', + 1252972 => 'Rocky Mount, NC', + 1252974 => 'Washington, NC', + 1252975 => 'Washington, NC', + 1252977 => 'Rocky Mount, NC', + 1252985 => 'Rocky Mount, NC', + 1252986 => 'Hatteras, NC', + 1253 => 'Washington', + 1253200 => 'Puyallup, WA', + 1253236 => 'Kent, WA', + 1253265 => 'Gig Harbor, WA', + 1253272 => 'Tacoma, WA', + 1253274 => 'Tacoma, WA', + 1253277 => 'Kent, WA', + 1253284 => 'Tacoma, WA', + 1253288 => 'Auburn, WA', + 1253292 => 'Tacoma, WA', + 1253301 => 'Tacoma, WA', + 1253333 => 'Auburn, WA', + 1253372 => 'Kent, WA', + 1253373 => 'Kent, WA', + 1253383 => 'Tacoma, WA', + 1253395 => 'Kent, WA', + 1253396 => 'Tacoma, WA', + 1253403 => 'Tacoma, WA', + 1253426 => 'Tacoma, WA', + 1253435 => 'Puyallup, WA', + 1253445 => 'Puyallup, WA', + 1253446 => 'Puyallup, WA', + 1253459 => 'Tacoma, WA', + 1253471 => 'Tacoma, WA', + 1253472 => 'Tacoma, WA', + 1253473 => 'Tacoma, WA', + 1253474 => 'Tacoma, WA', + 1253475 => 'Tacoma, WA', + 1253476 => 'Tacoma, WA', + 1253503 => 'Tacoma, WA', + 1253520 => 'Kent, WA', + 1253529 => 'Federal Way, WA', + 1253530 => 'Gig Harbor, WA', + 1253531 => 'Tacoma, WA', + 1253535 => 'Tacoma, WA', + 1253536 => 'Tacoma, WA', + 1253537 => 'Tacoma, WA', + 1253538 => 'Tacoma, WA', + 1253539 => 'Tacoma, WA', + 1253549 => 'Fox Island, WA', + 1253571 => 'Tacoma, WA', + 1253572 => 'Tacoma, WA', + 1253581 => 'Lakewood, WA', + 1253583 => 'Tacoma, WA', + 1253584 => 'Lakewood, WA', + 1253589 => 'Lakewood, WA', + 1253591 => 'Tacoma, WA', + 1253593 => 'Tacoma, WA', + 1253596 => 'Tacoma, WA', + 1253597 => 'Tacoma, WA', + 1253604 => 'Puyallup, WA', + 1253620 => 'Lakewood, WA', + 1253627 => 'Tacoma, WA', + 1253630 => 'Kent, WA', + 1253631 => 'Kent, WA', + 1253638 => 'Kent, WA', + 1253639 => 'Kent, WA', + 1253661 => 'Federal Way, WA', + 1253682 => 'Tacoma, WA', + 1253697 => 'Puyallup, WA', + 1253735 => 'Auburn, WA', + 1253737 => 'Auburn, WA', + 1253752 => 'Tacoma, WA', + 1253756 => 'Tacoma, WA', + 1253759 => 'Tacoma, WA', + 1253761 => 'Tacoma, WA', + 1253770 => 'Puyallup, WA', + 1253798 => 'Tacoma, WA', + 1253804 => 'Auburn, WA', + 1253813 => 'Kent, WA', + 1253815 => 'Federal Way, WA', + 1253830 => 'Tacoma, WA', + 1253833 => 'Auburn, WA', + 1253835 => 'Federal Way, WA', + 1253838 => 'Federal Way, WA', + 1253839 => 'Federal Way, WA', + 1253840 => 'Puyallup, WA', + 1253841 => 'Puyallup, WA', + 1253843 => 'Roy, WA', + 1253845 => 'Puyallup, WA', + 1253848 => 'Puyallup, WA', + 1253850 => 'Kent, WA', + 1253851 => 'Gig Harbor, WA', + 1253852 => 'Kent, WA', + 1253853 => 'Gig Harbor, WA', + 1253854 => 'Kent, WA', + 1253856 => 'Kent, WA', + 1253857 => 'Gig Harbor, WA', + 1253858 => 'Gig Harbor, WA', + 1253859 => 'Kent, WA', + 1253862 => 'Bonney Lake, WA', + 1253863 => 'Sumner, WA', + 1253864 => 'Puyallup, WA', + 1253872 => 'Kent, WA', + 1253874 => 'Federal Way, WA', + 1253876 => 'Auburn, WA', + 1253887 => 'Auburn, WA', + 1253922 => 'Fife, WA', + 1253926 => 'Fife, WA', + 1253931 => 'Auburn, WA', + 1253939 => 'Auburn, WA', + 1253941 => 'Federal Way, WA', + 1253945 => 'Federal Way, WA', + 1253946 => 'Federal Way, WA', + 1253983 => 'Lakewood, WA', + 1254 => 'Texas', + 1254200 => 'Killeen, TX', + 1254202 => 'Waco, TX', + 1254213 => 'Killeen, TX', + 1254215 => 'Temple, TX', + 1254230 => 'Waco, TX', + 1254235 => 'Waco, TX', + 1254248 => 'Gatesville, TX', + 1254286 => 'Fort Hood, TX', + 1254288 => 'Fort Hood, TX', + 1254296 => 'Waco, TX', + 1254297 => 'Waco, TX', + 1254298 => 'Temple, TX', + 1254386 => 'Hamilton, TX', + 1254399 => 'Waco, TX', + 1254435 => 'Meridian, TX', + 1254442 => 'Cisco, TX', + 1254445 => 'Dublin, TX', + 1254501 => 'Killeen, TX', + 1254518 => 'Copperas Cove, TX', + 1254519 => 'Killeen, TX', + 1254526 => 'Killeen, TX', + 1254532 => 'Fort Hood, TX', + 1254542 => 'Copperas Cove, TX', + 1254547 => 'Copperas Cove, TX', + 1254554 => 'Killeen, TX', + 1254559 => 'Breckenridge, TX', + 1254562 => 'Mexia, TX', + 1254580 => 'Hillsboro, TX', + 1254582 => 'Hillsboro, TX', + 1254616 => 'Killeen, TX', + 1254628 => 'Killeen, TX', + 1254629 => 'Eastland, TX', + 1254634 => 'Killeen, TX', + 1254647 => 'Ranger, TX', + 1254666 => 'Hewitt, TX', + 1254675 => 'Clifton, TX', + 1254680 => 'Killeen, TX', + 1254690 => 'Killeen, TX', + 1254694 => 'Whitney, TX', + 1254697 => 'Cameron, TX', + 1254698 => 'Harker Heights, TX', + 1254699 => 'Killeen, TX', + 1254714 => 'Waco, TX', + 1254724 => 'Temple, TX', + 1254725 => 'Cross Plains, TX', + 1254729 => 'Groesbeck, TX', + 1254732 => 'Waco, TX', + 1254739 => 'Teague, TX', + 1254741 => 'Waco, TX', + 1254742 => 'Temple, TX', + 1254743 => 'Temple, TX', + 1254750 => 'Waco, TX', + 1254751 => 'Waco, TX', + 1254752 => 'Waco, TX', + 1254753 => 'Waco, TX', + 1254754 => 'Waco, TX', + 1254755 => 'Waco, TX', + 1254756 => 'Waco, TX', + 1254757 => 'Waco, TX', + 1254770 => 'Temple, TX', + 1254771 => 'Temple, TX', + 1254772 => 'Waco, TX', + 1254773 => 'Temple, TX', + 1254774 => 'Temple, TX', + 1254776 => 'Waco, TX', + 1254778 => 'Temple, TX', + 1254780 => 'Belton, TX', + 1254791 => 'Temple, TX', + 1254793 => 'Florence, TX', + 1254796 => 'Hico, TX', + 1254799 => 'Waco, TX', + 1254826 => 'West, TX', + 1254829 => 'Elm Mott, TX', + 1254836 => 'China Spring, TX', + 1254840 => 'McGregor, TX', + 1254857 => 'Lorena, TX', + 1254865 => 'Gatesville, TX', + 1254867 => 'Waco, TX', + 1254883 => 'Marlin, TX', + 1254893 => 'De Leon, TX', + 1254897 => 'Glen Rose, TX', + 1254898 => 'Glen Rose, TX', + 1254899 => 'Temple, TX', + 1254918 => 'Stephenville, TX', + 1254933 => 'Belton, TX', + 1254939 => 'Belton, TX', + 1254947 => 'Salado, TX', + 1254965 => 'Stephenville, TX', + 1254968 => 'Stephenville, TX', + 1256 => 'Alabama', + 1256216 => 'Athens, AL', + 1256217 => 'Huntsville, AL', + 1256228 => 'Section, AL', + 1256230 => 'Athens, AL', + 1256231 => 'Anniston, AL', + 1256232 => 'Athens, AL', + 1256233 => 'Athens, AL', + 1256234 => 'Alexander City, AL', + 1256235 => 'Anniston, AL', + 1256236 => 'Anniston, AL', + 1256237 => 'Anniston, AL', + 1256238 => 'Anniston, AL', + 1256241 => 'Anniston, AL', + 1256245 => 'Sylacauga, AL', + 1256247 => 'Rogersville, AL', + 1256249 => 'Sylacauga, AL', + 1256259 => 'Scottsboro, AL', + 1256265 => 'Huntsville, AL', + 1256268 => 'Talladega, AL', + 1256270 => 'Huntsville, AL', + 1256301 => 'Decatur, AL', + 1256306 => 'Decatur, AL', + 1256308 => 'Decatur, AL', + 1256314 => 'Muscle Shoals, AL', + 1256315 => 'Talladega, AL', + 1256325 => 'Madison, AL', + 1256327 => 'Huntsville, AL', + 1256329 => 'Alexander City, AL', + 1256331 => 'Russellville, AL', + 1256332 => 'Russellville, AL', + 1256340 => 'Decatur, AL', + 1256341 => 'Decatur, AL', + 1256350 => 'Decatur, AL', + 1256351 => 'Decatur, AL', + 1256352 => 'Hanceville, AL', + 1256353 => 'Decatur, AL', + 1256354 => 'Ashland, AL', + 1256355 => 'Decatur, AL', + 1256356 => 'Red Bay, AL', + 1256357 => 'Wedowee, AL', + 1256362 => 'Talladega, AL', + 1256378 => 'Childersburg, AL', + 1256379 => 'New Market, AL', + 1256382 => 'Huntsville, AL', + 1256389 => 'Muscle Shoals, AL', + 1256396 => 'Lineville, AL', + 1256413 => 'Rainbow City, AL', + 1256423 => 'Ardmore, AL', + 1256428 => 'Huntsville, AL', + 1256430 => 'Huntsville, AL', + 1256435 => 'Jacksonville, AL', + 1256437 => 'Stevenson, AL', + 1256442 => 'Rainbow City, AL', + 1256446 => 'Leighton, AL', + 1256447 => 'Piedmont, AL', + 1256461 => 'Madison, AL', + 1256463 => 'Heflin, AL', + 1256464 => 'Madison, AL', + 1256467 => 'Gadsden, AL', + 1256489 => 'Huntsville, AL', + 1256492 => 'Gadsden, AL', + 1256494 => 'Gadsden, AL', + 1256513 => 'Huntsville, AL', + 1256519 => 'Huntsville, AL', + 1256532 => 'Huntsville, AL', + 1256533 => 'Huntsville, AL', + 1256534 => 'Huntsville, AL', + 1256535 => 'Huntsville, AL', + 1256536 => 'Huntsville, AL', + 1256538 => 'Attalla, AL', + 1256539 => 'Huntsville, AL', + 1256543 => 'Gadsden, AL', + 1256546 => 'Gadsden, AL', + 1256547 => 'Gadsden, AL', + 1256549 => 'Gadsden, AL', + 1256551 => 'Huntsville, AL', + 1256571 => 'Guntersville, AL', + 1256574 => 'Scottsboro, AL', + 1256582 => 'Guntersville, AL', + 1256585 => 'Huntsville, AL', + 1256586 => 'Arab, AL', + 1256593 => 'Boaz, AL', + 1256623 => 'Fyffe, AL', + 1256632 => 'Flat Rock, AL', + 1256637 => 'Courtland, AL', + 1256638 => 'Rainsville, AL', + 1256650 => 'Huntsville, AL', + 1256656 => 'Huntsville, AL', + 1256657 => 'Henagar, AL', + 1256685 => 'Town Creek, AL', + 1256686 => 'Decatur, AL', + 1256704 => 'Huntsville, AL', + 1256705 => 'Huntsville, AL', + 1256715 => 'Huntsville, AL', + 1256718 => 'Florence, AL', + 1256721 => 'Huntsville, AL', + 1256722 => 'Huntsville, AL', + 1256723 => 'New Hope, AL', + 1256726 => 'Huntsville, AL', + 1256728 => 'Grant, AL', + 1256729 => 'Athens, AL', + 1256734 => 'Cullman, AL', + 1256736 => 'Cullman, AL', + 1256737 => 'Cullman, AL', + 1256739 => 'Cullman, AL', + 1256740 => 'Florence, AL', + 1256741 => 'Anniston, AL', + 1256751 => 'Hartselle, AL', + 1256753 => 'Guntersville, AL', + 1256757 => 'Killen, AL', + 1256760 => 'Florence, AL', + 1256761 => 'Talladega, AL', + 1256764 => 'Florence, AL', + 1256765 => 'Florence, AL', + 1256766 => 'Florence, AL', + 1256767 => 'Florence, AL', + 1256768 => 'Florence, AL', + 1256771 => 'Athens, AL', + 1256772 => 'Madison, AL', + 1256773 => 'Hartselle, AL', + 1256774 => 'Madison, AL', + 1256775 => 'Cullman, AL', + 1256776 => 'Gurley, AL', + 1256778 => 'Somerville, AL', + 1256782 => 'Jacksonville, AL', + 1256825 => 'Dadeville, AL', + 1256828 => 'Hazel Green, AL', + 1256830 => 'Huntsville, AL', + 1256831 => 'Oxford, AL', + 1256832 => 'Oxford, AL', + 1256835 => 'Oxford, AL', + 1256837 => 'Huntsville, AL', + 1256840 => 'Boaz, AL', + 1256845 => 'Fort Payne, AL', + 1256851 => 'Huntsville, AL', + 1256852 => 'Huntsville, AL', + 1256858 => 'Huntsville, AL', + 1256859 => 'Huntsville, AL', + 1256878 => 'Albertville, AL', + 1256880 => 'Huntsville, AL', + 1256881 => 'Huntsville, AL', + 1256882 => 'Huntsville, AL', + 1256883 => 'Huntsville, AL', + 1256885 => 'Huntsville, AL', + 1256890 => 'Huntsville, AL', + 1256891 => 'Albertville, AL', + 1256892 => 'Ohatchee, AL', + 1256894 => 'Albertville, AL', + 1256895 => 'Huntsville, AL', + 1256922 => 'Huntsville, AL', + 1256927 => 'Centre, AL', + 1256931 => 'Arab, AL', + 1256971 => 'Huntsville, AL', + 1256974 => 'Moulton, AL', + 1256997 => 'Fort Payne, AL', + 1260 => 'Indiana', + 1260244 => 'Columbia City, IN', + 1260248 => 'Columbia City, IN', + 1260338 => 'Fort Wayne, IN', + 1260347 => 'Kendallville, IN', + 1260349 => 'Kendallville, IN', + 1260355 => 'Huntington, IN', + 1260356 => 'Huntington, IN', + 1260357 => 'Garrett, IN', + 1260358 => 'Huntington, IN', + 1260359 => 'Huntington, IN', + 1260373 => 'Fort Wayne, IN', + 1260375 => 'Warren, IN', + 1260387 => 'Fort Wayne, IN', + 1260407 => 'Fort Wayne, IN', + 1260416 => 'Fort Wayne, IN', + 1260420 => 'Fort Wayne, IN', + 1260422 => 'Fort Wayne, IN', + 1260423 => 'Fort Wayne, IN', + 1260424 => 'Fort Wayne, IN', + 1260426 => 'Fort Wayne, IN', + 1260427 => 'Fort Wayne, IN', + 1260432 => 'Fort Wayne, IN', + 1260434 => 'Fort Wayne, IN', + 1260435 => 'Fort Wayne, IN', + 1260436 => 'Fort Wayne, IN', + 1260444 => 'Fort Wayne, IN', + 1260447 => 'Fort Wayne, IN', + 1260449 => 'Fort Wayne, IN', + 1260456 => 'Fort Wayne, IN', + 1260459 => 'Fort Wayne, IN', + 1260460 => 'Fort Wayne, IN', + 1260463 => 'LaGrange, IN', + 1260469 => 'Fort Wayne, IN', + 1260471 => 'Fort Wayne, IN', + 1260478 => 'Fort Wayne, IN', + 1260481 => 'Fort Wayne, IN', + 1260482 => 'Fort Wayne, IN', + 1260483 => 'Fort Wayne, IN', + 1260484 => 'Fort Wayne, IN', + 1260485 => 'Fort Wayne, IN', + 1260486 => 'Fort Wayne, IN', + 1260488 => 'Hamilton, IN', + 1260489 => 'Fort Wayne, IN', + 1260490 => 'Fort Wayne, IN', + 1260492 => 'Fort Wayne, IN', + 1260493 => 'New Haven, IN', + 1260495 => 'Fremont, IN', + 1260497 => 'Fort Wayne, IN', + 1260562 => 'Howe, IN', + 1260563 => 'Wabash, IN', + 1260569 => 'Wabash, IN', + 1260589 => 'Berne, IN', + 1260593 => 'Topeka, IN', + 1260622 => 'Ossian, IN', + 1260623 => 'Monroeville, IN', + 1260624 => 'Angola, IN', + 1260625 => 'Fort Wayne, IN', + 1260632 => 'Woodburn, IN', + 1260636 => 'Albion, IN', + 1260637 => 'Fort Wayne, IN', + 1260657 => 'Harlan, IN', + 1260665 => 'Angola, IN', + 1260668 => 'Angola, IN', + 1260672 => 'Roanoke, IN', + 1260693 => 'Churubusco, IN', + 1260723 => 'South Whitley, IN', + 1260724 => 'Decatur, IN', + 1260726 => 'Portland, IN', + 1260728 => 'Decatur, IN', + 1260739 => 'Fort Wayne, IN', + 1260744 => 'Fort Wayne, IN', + 1260745 => 'Fort Wayne, IN', + 1260747 => 'Fort Wayne, IN', + 1260749 => 'New Haven, IN', + 1260755 => 'Fort Wayne, IN', + 1260758 => 'Markle, IN', + 1260768 => 'Shipshewana, IN', + 1260824 => 'Bluffton, IN', + 1260837 => 'Waterloo, IN', + 1260854 => 'Wolcottville, IN', + 1260868 => 'Butler, IN', + 1260894 => 'Ligonier, IN', + 1260897 => 'Avilla, IN', + 1260925 => 'Auburn, IN', + 1260927 => 'Auburn, IN', + 1260969 => 'Fort Wayne, IN', + 1260982 => 'North Manchester, IN', + 1262 => 'Wisconsin', + 1262238 => 'Mequon, WI', + 1262240 => 'Mequon, WI', + 1262241 => 'Mequon, WI', + 1262242 => 'Mequon, WI', + 1262243 => 'Mequon, WI', + 1262245 => 'Lake Geneva, WI', + 1262246 => 'Sussex, WI', + 1262248 => 'Lake Geneva, WI', + 1262249 => 'Lake Geneva, WI', + 1262250 => 'Menomonee Falls, WI', + 1262251 => 'Menomonee Falls, WI', + 1262252 => 'Menomonee Falls, WI', + 1262253 => 'Menomonee Falls, WI', + 1262255 => 'Menomonee Falls, WI', + 1262268 => 'Port Washington, WI', + 1262275 => 'Walworth, WI', + 1262279 => 'Genoa City, WI', + 1262284 => 'Port Washington, WI', + 1262285 => 'Belgium, WI', + 1262306 => 'West Bend, WI', + 1262334 => 'West Bend, WI', + 1262335 => 'West Bend, WI', + 1262338 => 'West Bend, WI', + 1262363 => 'Mukwonago, WI', + 1262367 => 'Hartland, WI', + 1262369 => 'Hartland, WI', + 1262373 => 'Brookfield, WI', + 1262375 => 'Grafton, WI', + 1262376 => 'Cedarburg, WI', + 1262387 => 'Mequon, WI', + 1262392 => 'North Prairie, WI', + 1262446 => 'Waukesha, WI', + 1262456 => 'Racine, WI', + 1262472 => 'Whitewater, WI', + 1262473 => 'Whitewater, WI', + 1262495 => 'Palmyra, WI', + 1262513 => 'Waukesha, WI', + 1262514 => 'Waterford, WI', + 1262521 => 'Waukesha, WI', + 1262522 => 'Waukesha, WI', + 1262524 => 'Waukesha, WI', + 1262532 => 'Menomonee Falls, WI', + 1262534 => 'Waterford, WI', + 1262538 => 'Hartland, WI', + 1262539 => 'Burlington, WI', + 1262542 => 'Waukesha, WI', + 1262544 => 'Waukesha, WI', + 1262547 => 'Waukesha, WI', + 1262548 => 'Waukesha, WI', + 1262549 => 'Waukesha, WI', + 1262551 => 'Kenosha, WI', + 1262552 => 'Kenosha, WI', + 1262554 => 'Racine, WI', + 1262560 => 'Oconomowoc, WI', + 1262567 => 'Oconomowoc, WI', + 1262569 => 'Oconomowoc, WI', + 1262574 => 'Waukesha, WI', + 1262593 => 'Sullivan, WI', + 1262594 => 'Eagle, WI', + 1262598 => 'Racine, WI', + 1262605 => 'Kenosha, WI', + 1262619 => 'Racine, WI', + 1262626 => 'Kewaskum, WI', + 1262629 => 'Allenton, WI', + 1262632 => 'Racine, WI', + 1262633 => 'Racine, WI', + 1262634 => 'Racine, WI', + 1262635 => 'Racine, WI', + 1262636 => 'Racine, WI', + 1262637 => 'Racine, WI', + 1262639 => 'Racine, WI', + 1262642 => 'East Troy, WI', + 1262644 => 'Slinger, WI', + 1262646 => 'Delafield, WI', + 1262650 => 'Waukesha, WI', + 1262652 => 'Kenosha, WI', + 1262653 => 'Kenosha, WI', + 1262654 => 'Kenosha, WI', + 1262656 => 'Kenosha, WI', + 1262657 => 'Kenosha, WI', + 1262658 => 'Kenosha, WI', + 1262662 => 'Big Bend, WI', + 1262670 => 'Hartford, WI', + 1262673 => 'Hartford, WI', + 1262675 => 'West Bend, WI', + 1262677 => 'Jackson, WI', + 1262679 => 'Muskego, WI', + 1262681 => 'Racine, WI', + 1262691 => 'Pewaukee, WI', + 1262692 => 'Fredonia, WI', + 1262694 => 'Kenosha, WI', + 1262695 => 'Pewaukee, WI', + 1262697 => 'Kenosha, WI', + 1262717 => 'Waukesha, WI', + 1262723 => 'Elkhorn, WI', + 1262728 => 'Delavan, WI', + 1262740 => 'Delavan, WI', + 1262741 => 'Elkhorn, WI', + 1262742 => 'Elkhorn, WI', + 1262763 => 'Burlington, WI', + 1262764 => 'Kenosha, WI', + 1262767 => 'Burlington, WI', + 1262780 => 'Brookfield, WI', + 1262781 => 'Brookfield, WI', + 1262783 => 'Brookfield, WI', + 1262785 => 'Brookfield, WI', + 1262787 => 'Brookfield, WI', + 1262789 => 'Brookfield, WI', + 1262790 => 'Brookfield, WI', + 1262798 => 'Waukesha, WI', + 1262820 => 'Sussex, WI', + 1262843 => 'Salem, WI', + 1262862 => 'Trevor, WI', + 1262877 => 'Twin Lakes, WI', + 1262878 => 'Union Grove, WI', + 1262896 => 'Waukesha, WI', + 1262898 => 'Racine, WI', + 1262925 => 'Kenosha, WI', + 1262928 => 'Waukesha, WI', + 1262942 => 'Kenosha, WI', + 1262948 => 'Kenosha, WI', + 1262965 => 'Dousman, WI', + 1262970 => 'Waukesha, WI', + 1267 => 'Pennsylvania', + 1267292 => 'Philadelphia, PA', + 1267297 => 'Philadelphia, PA', + 1267324 => 'Philadelphia, PA', + 1267331 => 'Philadelphia, PA', + 1267335 => 'Philadelphia, PA', + 1267343 => 'Philadelphia, PA', + 1267388 => 'Philadelphia, PA', + 1267426 => 'Philadelphia, PA', + 1267519 => 'Philadelphia, PA', + 1267639 => 'Philadelphia, PA', + 1267687 => 'Philadelphia, PA', + 1267880 => 'Doylestown, PA', + 1269 => 'Michigan', + 1269226 => 'Kalamazoo Township, MI', + 1269244 => 'Three Rivers, MI', + 1269273 => 'Three Rivers, MI', + 1269278 => 'Three Rivers, MI', + 1269279 => 'Three Rivers, MI', + 1269321 => 'Portage, MI', + 1269323 => 'Portage, MI', + 1269324 => 'Portage, MI', + 1269327 => 'Portage, MI', + 1269329 => 'Portage, MI', + 1269337 => 'Kalamazoo, MI', + 1269341 => 'Kalamazoo, MI', + 1269342 => 'Kalamazoo, MI', + 1269343 => 'Kalamazoo, MI', + 1269344 => 'Kalamazoo, MI', + 1269345 => 'Kalamazoo, MI', + 1269353 => 'Kalamazoo, MI', + 1269372 => 'Kalamazoo, MI', + 1269373 => 'Kalamazoo, MI', + 1269375 => 'Kalamazoo, MI', + 1269382 => 'Kalamazoo, MI', + 1269383 => 'Kalamazoo, MI', + 1269385 => 'Kalamazoo, MI', + 1269387 => 'Kalamazoo, MI', + 1269388 => 'Kalamazoo, MI', + 1269408 => 'St. Joseph, MI', + 1269422 => 'Baroda, MI', + 1269423 => 'Decatur, MI', + 1269426 => 'Sawyer, MI', + 1269427 => 'Bangor, MI', + 1269428 => 'St. Joseph, MI', + 1269432 => 'Colon, MI', + 1269435 => 'Constantine, MI', + 1269441 => 'Battle Creek, MI', + 1269445 => 'Cassopolis, MI', + 1269461 => 'Eau Claire, MI', + 1269463 => 'Watervliet, MI', + 1269465 => 'Bridgman, MI', + 1269467 => 'Centreville, MI', + 1269468 => 'Coloma, MI', + 1269469 => 'New Buffalo, MI', + 1269471 => 'Berrien Springs, MI', + 1269473 => 'Berrien Springs, MI', + 1269483 => 'White Pigeon, MI', + 1269496 => 'Mendon, MI', + 1269521 => 'Bloomingdale, MI', + 1269544 => 'Kalamazoo, MI', + 1269556 => 'St. Joseph, MI', + 1269561 => 'Fennville, MI', + 1269621 => 'Hartford, MI', + 1269623 => 'Delton, MI', + 1269624 => 'Lawton, MI', + 1269628 => 'Gobles, MI', + 1269629 => 'Richland, MI', + 1269637 => 'South Haven, MI', + 1269639 => 'South Haven, MI', + 1269646 => 'Marcellus, MI', + 1269649 => 'Vicksburg, MI', + 1269651 => 'Sturgis, MI', + 1269655 => 'Paw Paw, MI', + 1269657 => 'Paw Paw, MI', + 1269659 => 'Sturgis, MI', + 1269660 => 'Battle Creek, MI', + 1269663 => 'Edwardsburg, MI', + 1269665 => 'Galesburg, MI', + 1269668 => 'Mattawan, MI', + 1269673 => 'Allegan, MI', + 1269679 => 'Schoolcraft, MI', + 1269683 => 'Niles, MI', + 1269684 => 'Niles, MI', + 1269685 => 'Plainwell, MI', + 1269686 => 'Allegan, MI', + 1269687 => 'Niles, MI', + 1269692 => 'Otsego, MI', + 1269694 => 'Otsego, MI', + 1269695 => 'Buchanan, MI', + 1269729 => 'Athens, MI', + 1269731 => 'Augusta, MI', + 1269751 => 'Hamilton, MI', + 1269756 => 'Three Oaks, MI', + 1269781 => 'Marshall, MI', + 1269782 => 'Dowagiac, MI', + 1269789 => 'Marshall, MI', + 1269792 => 'Wayland, MI', + 1269795 => 'Middleville, MI', + 1269857 => 'Saugatuck, MI', + 1269925 => 'Benton Harbor, MI', + 1269926 => 'Benton Harbor, MI', + 1269927 => 'Benton Harbor, MI', + 1269934 => 'Benton Harbor, MI', + 1269944 => 'Benton Harbor, MI', + 1269945 => 'Hastings, MI', + 1269948 => 'Hastings, MI', + 1269962 => 'Battle Creek, MI', + 1269963 => 'Battle Creek, MI', + 1269964 => 'Battle Creek, MI', + 1269965 => 'Battle Creek, MI', + 1269966 => 'Battle Creek, MI', + 1269968 => 'Battle Creek, MI', + 1269969 => 'Battle Creek, MI', + 1269979 => 'Battle Creek, MI', + 1269982 => 'St. Joseph, MI', + 1269983 => 'St. Joseph, MI', + 1270 => 'Kentucky', + 1270230 => 'Leitchfield, KY', + 1270234 => 'Elizabethtown, KY', + 1270236 => 'Hickman, KY', + 1270237 => 'Scottsville, KY', + 1270242 => 'Clarkson, KY', + 1270247 => 'Mayfield, KY', + 1270251 => 'Mayfield, KY', + 1270259 => 'Leitchfield, KY', + 1270265 => 'Elkton, KY', + 1270273 => 'Calhoun, KY', + 1270274 => 'Beaver Dam, KY', + 1270298 => 'Hartford, KY', + 1270333 => 'Sturgis, KY', + 1270335 => 'Wickliffe, KY', + 1270338 => 'Greenville, KY', + 1270343 => 'Jamestown, KY', + 1270351 => 'Radcliff, KY', + 1270352 => 'Radcliff, KY', + 1270358 => 'Hodgenville, KY', + 1270360 => 'Elizabethtown, KY', + 1270365 => 'Princeton, KY', + 1270384 => 'Columbia, KY', + 1270388 => 'Eddyville, KY', + 1270389 => 'Morganfield, KY', + 1270393 => 'Bowling Green, KY', + 1270395 => 'Calvert City, KY', + 1270415 => 'Paducah, KY', + 1270422 => 'Brandenburg, KY', + 1270432 => 'Edmonton, KY', + 1270439 => 'Oak Grove, KY', + 1270441 => 'Paducah, KY', + 1270442 => 'Paducah, KY', + 1270443 => 'Paducah, KY', + 1270444 => 'Paducah, KY', + 1270465 => 'Campbellsville, KY', + 1270469 => 'Campbellsville, KY', + 1270472 => 'Fulton, KY', + 1270483 => 'Guthrie, KY', + 1270487 => 'Tompkinsville, KY', + 1270522 => 'Cadiz, KY', + 1270524 => 'Munfordville, KY', + 1270526 => 'Morgantown, KY', + 1270527 => 'Benton, KY', + 1270534 => 'Paducah, KY', + 1270542 => 'Auburn, KY', + 1270547 => 'Irvington, KY', + 1270554 => 'Paducah, KY', + 1270563 => 'Smiths Grove, KY', + 1270575 => 'Paducah, KY', + 1270586 => 'Franklin, KY', + 1270597 => 'Brownsville, KY', + 1270598 => 'Franklin, KY', + 1270622 => 'Scottsville, KY', + 1270629 => 'Glasgow, KY', + 1270640 => 'Oak Grove, KY', + 1270646 => 'Glasgow, KY', + 1270651 => 'Glasgow, KY', + 1270653 => 'Clinton, KY', + 1270659 => 'Glasgow, KY', + 1270665 => 'La Center, KY', + 1270667 => 'Providence, KY', + 1270678 => 'Glasgow, KY', + 1270683 => 'Owensboro, KY', + 1270684 => 'Owensboro, KY', + 1270685 => 'Owensboro, KY', + 1270686 => 'Owensboro, KY', + 1270687 => 'Owensboro, KY', + 1270688 => 'Owensboro, KY', + 1270689 => 'Owensboro, KY', + 1270691 => 'Owensboro, KY', + 1270692 => 'Lebanon, KY', + 1270699 => 'Lebanon, KY', + 1270707 => 'Hopkinsville, KY', + 1270725 => 'Russellville, KY', + 1270726 => 'Russellville, KY', + 1270735 => 'Elizabethtown, KY', + 1270737 => 'Elizabethtown, KY', + 1270745 => 'Bowling Green, KY', + 1270746 => 'Bowling Green, KY', + 1270753 => 'Murray, KY', + 1270754 => 'Central City, KY', + 1270755 => 'Lewisburg, KY', + 1270756 => 'Hardinsburg, KY', + 1270759 => 'Murray, KY', + 1270761 => 'Murray, KY', + 1270762 => 'Murray, KY', + 1270763 => 'Elizabethtown, KY', + 1270765 => 'Elizabethtown, KY', + 1270766 => 'Elizabethtown, KY', + 1270769 => 'Elizabethtown, KY', + 1270773 => 'Cave City, KY', + 1270780 => 'Bowling Green, KY', + 1270781 => 'Bowling Green, KY', + 1270782 => 'Bowling Green, KY', + 1270783 => 'Bowling Green, KY', + 1270786 => 'Horse Cave, KY', + 1270789 => 'Campbellsville, KY', + 1270793 => 'Bowling Green, KY', + 1270796 => 'Bowling Green, KY', + 1270797 => 'Dawson Springs, KY', + 1270798 => 'Fort Campbell, KY', + 1270821 => 'Madisonville, KY', + 1270824 => 'Madisonville, KY', + 1270825 => 'Madisonville, KY', + 1270826 => 'Henderson, KY', + 1270827 => 'Henderson, KY', + 1270830 => 'Henderson, KY', + 1270831 => 'Henderson, KY', + 1270842 => 'Bowling Green, KY', + 1270843 => 'Bowling Green, KY', + 1270846 => 'Bowling Green, KY', + 1270852 => 'Owensboro, KY', + 1270862 => 'Cecilia, KY', + 1270864 => 'Burkesville, KY', + 1270866 => 'Russell Springs, KY', + 1270877 => 'Vine Grove, KY', + 1270879 => 'Caneyville, KY', + 1270885 => 'Hopkinsville, KY', + 1270886 => 'Hopkinsville, KY', + 1270887 => 'Hopkinsville, KY', + 1270889 => 'Hopkinsville, KY', + 1270898 => 'Paducah, KY', + 1270901 => 'Bowling Green, KY', + 1270904 => 'Bowling Green, KY', + 1270926 => 'Owensboro, KY', + 1270927 => 'Hawesville, KY', + 1270928 => 'Smithland, KY', + 1270932 => 'Greensburg, KY', + 1270965 => 'Marion, KY', + 1270982 => 'Elizabethtown, KY', + 1270988 => 'Salem, KY', + 1272 => 'Pennsylvania', + 1276 => 'Virginia', + 1276223 => 'Wytheville, VA', + 1276228 => 'Wytheville, VA', + 1276236 => 'Galax, VA', + 1276238 => 'Galax, VA', + 1276322 => 'Bluefield, VA', + 1276326 => 'Bluefield, VA', + 1276328 => 'Wise, VA', + 1276346 => 'Jonesville, VA', + 1276386 => 'Gate City, VA', + 1276395 => 'Coeburn, VA', + 1276429 => 'Glade Spring, VA', + 1276431 => 'Duffield, VA', + 1276466 => 'Bristol, VA', + 1276475 => 'Damascus, VA', + 1276496 => 'Saltville, VA', + 1276498 => 'Oakwood, VA', + 1276523 => 'Big Stone Gap, VA', + 1276546 => 'Pennington Gap, VA', + 1276591 => 'Bristol, VA', + 1276596 => 'Richlands, VA', + 1276619 => 'Abingdon, VA', + 1276623 => 'Abingdon, VA', + 1276628 => 'Abingdon, VA', + 1276629 => 'Bassett, VA', + 1276632 => 'Martinsville, VA', + 1276634 => 'Martinsville, VA', + 1276637 => 'Max Meadows, VA', + 1276638 => 'Martinsville, VA', + 1276644 => 'Bristol, VA', + 1276645 => 'Bristol, VA', + 1276646 => 'Chilhowie, VA', + 1276647 => 'Collinsville, VA', + 1276650 => 'Axton, VA', + 1276656 => 'Martinsville, VA', + 1276666 => 'Martinsville, VA', + 1276669 => 'Bristol, VA', + 1276676 => 'Abingdon, VA', + 1276679 => 'Norton, VA', + 1276686 => 'Rural Retreat, VA', + 1276688 => 'Bland, VA', + 1276694 => 'Stuart, VA', + 1276728 => 'Hillsville, VA', + 1276762 => 'St. Paul, VA', + 1276773 => 'Independence, VA', + 1276782 => 'Marion, VA', + 1276783 => 'Marion, VA', + 1276796 => 'Pound, VA', + 1276865 => 'Haysi, VA', + 1276873 => 'Honaker, VA', + 1276889 => 'Lebanon, VA', + 1276926 => 'Clintwood, VA', + 1276935 => 'Grundy, VA', + 1276944 => 'Meadowview, VA', + 1276956 => 'Ridgeway, VA', + 1276964 => 'Richlands, VA', + 1276988 => 'Tazewell, VA', + 1281 => 'Texas', + 1281207 => 'Sugar Land, TX', + 1281208 => 'Missouri City, TX', + 1281209 => 'Houston, TX', + 1281213 => 'Cypress, TX', + 1281218 => 'Houston, TX', + 1281219 => 'Houston, TX', + 1281227 => 'Houston, TX', + 1281238 => 'Richmond, TX', + 1281242 => 'Sugar Land, TX', + 1281251 => 'Spring, TX', + 1281252 => 'Magnolia, TX', + 1281255 => 'Tomball, TX', + 1281256 => 'Cypress, TX', + 1281259 => 'Magnolia, TX', + 1281260 => 'Houston, TX', + 1281265 => 'Sugar Land, TX', + 1281272 => 'Houston, TX', + 1281277 => 'Sugar Land, TX', + 1281280 => 'Houston, TX', + 1281286 => 'Houston, TX', + 1281288 => 'Spring, TX', + 1281290 => 'Tomball, TX', + 1281291 => 'Seabrook, TX', + 1281292 => 'Spring, TX', + 1281293 => 'Houston, TX', + 1281296 => 'Spring, TX', + 1281298 => 'Spring, TX', + 1281304 => 'Cypress, TX', + 1281313 => 'Sugar Land, TX', + 1281319 => 'Humble, TX', + 1281320 => 'Spring, TX', + 1281324 => 'Huffman, TX', + 1281326 => 'Seabrook, TX', + 1281328 => 'Crosby, TX', + 1281331 => 'Alvin, TX', + 1281333 => 'Houston, TX', + 1281335 => 'Houston, TX', + 1281337 => 'Dickinson, TX', + 1281340 => 'Sugar Land, TX', + 1281341 => 'Richmond, TX', + 1281345 => 'Houston, TX', + 1281346 => 'Fulshear, TX', + 1281347 => 'Katy, TX', + 1281350 => 'Spring, TX', + 1281351 => 'Tomball, TX', + 1281353 => 'Spring, TX', + 1281354 => 'Porter, TX', + 1281355 => 'Spring, TX', + 1281356 => 'Magnolia, TX', + 1281357 => 'Tomball, TX', + 1281358 => 'Kingwood, TX', + 1281360 => 'Kingwood, TX', + 1281361 => 'Kingwood, TX', + 1281367 => 'Spring, TX', + 1281370 => 'Spring, TX', + 1281371 => 'Katy, TX', + 1281372 => 'Houston, TX', + 1281373 => 'Cypress, TX', + 1281375 => 'Brookshire, TX', + 1281376 => 'Spring, TX', + 1281379 => 'Spring, TX', + 1281383 => 'Baytown, TX', + 1281388 => 'Alvin, TX', + 1281391 => 'Katy, TX', + 1281392 => 'Katy, TX', + 1281395 => 'Katy, TX', + 1281397 => 'Houston, TX', + 1281398 => 'Katy, TX', + 1281399 => 'New Caney, TX', + 1281403 => 'Missouri City, TX', + 1281405 => 'Houston, TX', + 1281412 => 'Pearland, TX', + 1281420 => 'Baytown, TX', + 1281421 => 'Baytown, TX', + 1281422 => 'Baytown, TX', + 1281424 => 'Baytown, TX', + 1281426 => 'Highlands, TX', + 1281427 => 'Baytown, TX', + 1281428 => 'Baytown, TX', + 1281432 => 'Cleveland, TX', + 1281436 => 'Houston, TX', + 1281437 => 'Missouri City, TX', + 1281438 => 'Missouri City, TX', + 1281440 => 'Houston, TX', + 1281441 => 'Humble, TX', + 1281442 => 'Houston, TX', + 1281443 => 'Houston, TX', + 1281444 => 'Houston, TX', + 1281445 => 'Houston, TX', + 1281446 => 'Humble, TX', + 1281447 => 'Houston, TX', + 1281448 => 'Houston, TX', + 1281449 => 'Houston, TX', + 1281452 => 'Channelview, TX', + 1281454 => 'Houston, TX', + 1281456 => 'Houston, TX', + 1281457 => 'Channelview, TX', + 1281458 => 'Houston, TX', + 1281459 => 'Houston, TX', + 1281461 => 'Houston, TX', + 1281462 => 'Crosby, TX', + 1281463 => 'Houston, TX', + 1281464 => 'Houston, TX', + 1281465 => 'Spring, TX', + 1281469 => 'Houston, TX', + 1281470 => 'La Porte, TX', + 1281471 => 'La Porte, TX', + 1281474 => 'Seabrook, TX', + 1281476 => 'Deer Park, TX', + 1281477 => 'Houston, TX', + 1281478 => 'Deer Park, TX', + 1281479 => 'Deer Park, TX', + 1281480 => 'Houston, TX', + 1281481 => 'Houston, TX', + 1281482 => 'Friendswood, TX', + 1281484 => 'Houston, TX', + 1281485 => 'Pearland, TX', + 1281487 => 'Pasadena, TX', + 1281488 => 'Houston, TX', + 1281489 => 'Manvel, TX', + 1281491 => 'Sugar Land, TX', + 1281493 => 'Houston, TX', + 1281494 => 'Sugar Land, TX', + 1281495 => 'Houston, TX', + 1281496 => 'Houston, TX', + 1281497 => 'Houston, TX', + 1281498 => 'Houston, TX', + 1281501 => 'Houston, TX', + 1281506 => 'Houston, TX', + 1281516 => 'Tomball, TX', + 1281517 => 'Houston, TX', + 1281528 => 'Spring, TX', + 1281530 => 'Houston, TX', + 1281531 => 'Houston, TX', + 1281533 => 'Fulshear, TX', + 1281534 => 'Dickinson, TX', + 1281537 => 'Houston, TX', + 1281540 => 'Humble, TX', + 1281545 => 'Richmond, TX', + 1281548 => 'Humble, TX', + 1281550 => 'Houston, TX', + 1281554 => 'League City, TX', + 1281556 => 'Houston, TX', + 1281558 => 'Houston, TX', + 1281559 => 'Bacliff, TX', + 1281561 => 'Houston, TX', + 1281564 => 'Houston, TX', + 1281565 => 'Sugar Land, TX', + 1281568 => 'Houston, TX', + 1281573 => 'Baytown, TX', + 1281574 => 'Katy, TX', + 1281575 => 'Houston, TX', + 1281578 => 'Katy, TX', + 1281579 => 'Katy, TX', + 1281580 => 'Houston, TX', + 1281583 => 'Houston, TX', + 1281585 => 'Alvin, TX', + 1281586 => 'Houston, TX', + 1281587 => 'Houston, TX', + 1281589 => 'Houston, TX', + 1281590 => 'Houston, TX', + 1281591 => 'Houston, TX', + 1281592 => 'Cleveland, TX', + 1281593 => 'Cleveland, TX', + 1281596 => 'Houston, TX', + 1281597 => 'Houston, TX', + 1281598 => 'Houston, TX', + 1281599 => 'Katy, TX', + 1281617 => 'Houston, TX', + 1281634 => 'Sugar Land, TX', + 1281644 => 'Katy, TX', + 1281646 => 'Katy, TX', + 1281648 => 'Friendswood, TX', + 1281651 => 'Spring, TX', + 1281656 => 'Houston, TX', + 1281659 => 'Cleveland, TX', + 1281679 => 'Houston, TX', + 1281693 => 'Katy, TX', + 1281719 => 'Spring, TX', + 1281741 => 'Houston, TX', + 1281752 => 'Houston, TX', + 1281756 => 'Alvin, TX', + 1281758 => 'Cypress, TX', + 1281759 => 'Houston, TX', + 1281778 => 'Missouri City, TX', + 1281781 => 'Houston, TX', + 1281784 => 'Houston, TX', + 1281807 => 'Houston, TX', + 1281812 => 'Humble, TX', + 1281820 => 'Houston, TX', + 1281821 => 'Houston, TX', + 1281822 => 'Houston, TX', + 1281824 => 'Alvin, TX', + 1281829 => 'Katy, TX', + 1281835 => 'Missouri City, TX', + 1281837 => 'Baytown, TX', + 1281839 => 'Baytown, TX', + 1281842 => 'La Porte, TX', + 1281847 => 'Houston, TX', + 1281852 => 'Humble, TX', + 1281855 => 'Houston, TX', + 1281856 => 'Houston, TX', + 1281858 => 'Houston, TX', + 1281859 => 'Houston, TX', + 1281860 => 'Channelview, TX', + 1281861 => 'Houston, TX', + 1281866 => 'Houston, TX', + 1281867 => 'La Porte, TX', + 1281870 => 'Houston, TX', + 1281872 => 'Houston, TX', + 1281873 => 'Houston, TX', + 1281875 => 'Houston, TX', + 1281876 => 'Houston, TX', + 1281879 => 'Houston, TX', + 1281880 => 'Houston, TX', + 1281888 => 'Houston, TX', + 1281890 => 'Houston, TX', + 1281893 => 'Houston, TX', + 1281894 => 'Houston, TX', + 1281895 => 'Houston, TX', + 1281897 => 'Houston, TX', + 1281907 => 'Spring, TX', + 1281919 => 'Houston, TX', + 1281920 => 'Houston, TX', + 1281922 => 'Houston, TX', + 1281930 => 'Deer Park, TX', + 1281931 => 'Houston, TX', + 1281933 => 'Houston, TX', + 1281934 => 'Brookshire, TX', + 1281955 => 'Houston, TX', + 1281970 => 'Houston, TX', + 1281973 => 'Humble, TX', + 1281974 => 'Houston, TX', + 1281980 => 'Sugar Land, TX', + 1281983 => 'Houston, TX', + 1281987 => 'Houston, TX', + 1281988 => 'Houston, TX', + 1281991 => 'Pasadena, TX', + 1281992 => 'Friendswood, TX', + 1281993 => 'Friendswood, TX', + 1281996 => 'Friendswood, TX', + 1281997 => 'Pearland, TX', + 1281998 => 'Pasadena, TX', + 1281999 => 'Houston, TX', + 1289 => 'Ontario', + 1289240 => 'Oshawa, ON', + 1289296 => 'Niagara Falls, ON', + 1289337 => 'Burlington, ON', + 1289362 => 'St. Catharines, ON', + 1289389 => 'Hamilton, ON', + 1289396 => 'Hamilton, ON', + 1289752 => 'Brampton, ON', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1201.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1201.php deleted file mode 100644 index 5a87995d1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1201.php +++ /dev/null @@ -1,108 +0,0 @@ - 'New Jersey', - 1201200 => 'Jersey City, NJ', - 1201216 => 'Jersey City, NJ', - 1201217 => 'Jersey City, NJ', - 1201222 => 'Jersey City, NJ', - 1201224 => 'Fort Lee, NJ', - 1201225 => 'Paramus, NJ', - 1201239 => 'Jersey City, NJ', - 1201242 => 'Fort Lee, NJ', - 1201244 => 'Bergenfield, NJ', - 1201288 => 'Hasbrouck Hts, NJ', - 1201309 => 'Jersey City, NJ', - 1201332 => 'Jersey City, NJ', - 1201333 => 'Jersey City, NJ', - 1201336 => 'Hackensack, NJ', - 1201337 => 'Oakland, NJ', - 1201339 => 'Bayonne, NJ', - 1201342 => 'Hackensack, NJ', - 1201343 => 'Hackensack, NJ', - 1201346 => 'Fort Lee, NJ', - 1201357 => 'Teaneck, NJ', - 1201360 => 'Jersey City, NJ', - 1201363 => 'Fort Lee, NJ', - 1201384 => 'Bergenfield, NJ', - 1201385 => 'Bergenfield, NJ', - 1201386 => 'Jersey City, NJ', - 1201405 => 'Oakland, NJ', - 1201418 => 'Hoboken, NJ', - 1201432 => 'Jersey City, NJ', - 1201433 => 'Jersey City, NJ', - 1201434 => 'Jersey City, NJ', - 1201435 => 'Jersey City, NJ', - 1201436 => 'Bayonne, NJ', - 1201437 => 'Bayonne, NJ', - 1201451 => 'Jersey City, NJ', - 1201457 => 'Hackensack, NJ', - 1201461 => 'Fort Lee, NJ', - 1201475 => 'Fair Lawn, NJ', - 1201487 => 'Hackensack, NJ', - 1201488 => 'Hackensack, NJ', - 1201489 => 'Hackensack, NJ', - 1201498 => 'Hackensack, NJ', - 1201512 => 'Mahwah, NJ', - 1201525 => 'Hackensack, NJ', - 1201529 => 'Mahwah, NJ', - 1201530 => 'Teaneck, NJ', - 1201547 => 'Jersey City, NJ', - 1201567 => 'Englewood, NJ', - 1201568 => 'Englewood, NJ', - 1201569 => 'Englewood, NJ', - 1201585 => 'Fort Lee, NJ', - 1201592 => 'Fort Lee, NJ', - 1201626 => 'Jersey City, NJ', - 1201631 => 'New York, NY', - 1201634 => 'Paramus, NJ', - 1201646 => 'Hackensack, NJ', - 1201653 => 'Jersey City, NJ', - 1201656 => 'Jersey City, NJ', - 1201678 => 'Hackensack, NJ', - 1201683 => 'Hoboken, NJ', - 1201692 => 'Teaneck, NJ', - 1201706 => 'Jersey City, NJ', - 1201714 => 'Jersey City, NJ', - 1201773 => 'Fair Lawn, NJ', - 1201791 => 'Fair Lawn, NJ', - 1201794 => 'Fair Lawn, NJ', - 1201795 => 'Jersey City, NJ', - 1201796 => 'Fair Lawn, NJ', - 1201797 => 'Fair Lawn, NJ', - 1201798 => 'Jersey City, NJ', - 1201823 => 'Bayonne, NJ', - 1201833 => 'Teaneck, NJ', - 1201836 => 'Teaneck, NJ', - 1201837 => 'Teaneck, NJ', - 1201848 => 'Wyckoff, NJ', - 1201854 => 'North Bergen, NJ', - 1201858 => 'Bayonne, NJ', - 1201862 => 'Teaneck, NJ', - 1201868 => 'North Bergen, NJ', - 1201869 => 'North Bergen, NJ', - 1201871 => 'Englewood, NJ', - 1201883 => 'Hackensack, NJ', - 1201886 => 'Fort Lee, NJ', - 1201891 => 'Wyckoff, NJ', - 1201894 => 'Englewood, NJ', - 1201915 => 'Jersey City, NJ', - 1201918 => 'Jersey City, NJ', - 1201928 => 'Teaneck, NJ', - 1201942 => 'Jersey City, NJ', - 1201944 => 'Fort Lee, NJ', - 1201946 => 'Jersey City, NJ', - 1201947 => 'Fort Lee, NJ', - 1201955 => 'Kearny, NJ', - 1201963 => 'Jersey City, NJ', - 1201968 => 'Hackensack, NJ', - 1201984 => 'Jersey City, NJ', - 1201991 => 'Kearny, NJ', - 1201996 => 'Hackensack, NJ', - 1201997 => 'Kearny, NJ', - 1201998 => 'Kearny, NJ', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1202.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1202.php deleted file mode 100644 index f48e6a081..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1202.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Washington D.C.', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1203.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1203.php deleted file mode 100644 index f9192194f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1203.php +++ /dev/null @@ -1,264 +0,0 @@ - 'Connecticut', - 1203202 => 'Darien, CT', - 1203208 => 'Branford, CT', - 1203210 => 'Wilton, CT', - 1203221 => 'Westport, CT', - 1203222 => 'Westport, CT', - 1203225 => 'Shelton, CT', - 1203226 => 'Westport, CT', - 1203227 => 'Westport, CT', - 1203229 => 'Norwalk, CT', - 1203230 => 'Hamden, CT', - 1203234 => 'North Haven, CT', - 1203235 => 'Meriden, CT', - 1203237 => 'Meriden, CT', - 1203238 => 'Meriden, CT', - 1203239 => 'North Haven, CT', - 1203245 => 'Madison, CT', - 1203248 => 'Hamden, CT', - 1203250 => 'Cheshire, CT', - 1203254 => 'Fairfield, CT', - 1203255 => 'Fairfield, CT', - 1203256 => 'Fairfield, CT', - 1203259 => 'Fairfield, CT', - 1203262 => 'Southbury, CT', - 1203263 => 'Woodbury, CT', - 1203264 => 'Southbury, CT', - 1203265 => 'Wallingford, CT', - 1203266 => 'Bethlehem, CT', - 1203267 => 'Southbury, CT', - 1203269 => 'Wallingford, CT', - 1203270 => 'Newtown, CT', - 1203271 => 'Cheshire, CT', - 1203272 => 'Cheshire, CT', - 1203276 => 'Stamford, CT', - 1203281 => 'Hamden, CT', - 1203283 => 'Milford, CT', - 1203284 => 'Wallingford, CT', - 1203286 => 'Norwalk, CT', - 1203287 => 'Hamden, CT', - 1203288 => 'Hamden, CT', - 1203292 => 'Fairfield, CT', - 1203294 => 'Wallingford, CT', - 1203299 => 'Norwalk, CT', - 1203301 => 'Milford, CT', - 1203304 => 'Newtown, CT', - 1203312 => 'New Fairfield, CT', - 1203315 => 'Branford, CT', - 1203316 => 'Stamford, CT', - 1203318 => 'Madison, CT', - 1203319 => 'Fairfield, CT', - 1203322 => 'Stamford, CT', - 1203323 => 'Stamford, CT', - 1203324 => 'Stamford, CT', - 1203325 => 'Stamford, CT', - 1203327 => 'Stamford, CT', - 1203329 => 'Stamford, CT', - 1203330 => 'Bridgeport, CT', - 1203331 => 'Bridgeport, CT', - 1203332 => 'Bridgeport, CT', - 1203333 => 'Bridgeport, CT', - 1203334 => 'Bridgeport, CT', - 1203335 => 'Bridgeport, CT', - 1203336 => 'Bridgeport, CT', - 1203340 => 'Greenwich, CT', - 1203341 => 'Westport, CT', - 1203345 => 'Bridgeport, CT', - 1203348 => 'Stamford, CT', - 1203353 => 'Stamford, CT', - 1203354 => 'Norwalk, CT', - 1203356 => 'Stamford, CT', - 1203357 => 'Stamford, CT', - 1203358 => 'Stamford, CT', - 1203359 => 'Stamford, CT', - 1203362 => 'Bridgeport, CT', - 1203364 => 'Newtown, CT', - 1203366 => 'Bridgeport, CT', - 1203367 => 'Bridgeport, CT', - 1203368 => 'Bridgeport, CT', - 1203371 => 'Bridgeport, CT', - 1203372 => 'Bridgeport, CT', - 1203374 => 'Bridgeport, CT', - 1203375 => 'Stratford, CT', - 1203377 => 'Stratford, CT', - 1203378 => 'Stratford, CT', - 1203380 => 'Stratford, CT', - 1203381 => 'Stratford, CT', - 1203384 => 'Bridgeport, CT', - 1203385 => 'Stratford, CT', - 1203386 => 'Stratford, CT', - 1203393 => 'Bethany, CT', - 1203405 => 'Southbury, CT', - 1203407 => 'Hamden, CT', - 1203421 => 'Madison, CT', - 1203422 => 'Greenwich, CT', - 1203426 => 'Newtown, CT', - 1203431 => 'Ridgefield, CT', - 1203432 => 'New Haven, CT', - 1203437 => 'Waterbury, CT', - 1203438 => 'Ridgefield, CT', - 1203439 => 'Cheshire, CT', - 1203440 => 'Meriden, CT', - 1203453 => 'Guilford, CT', - 1203454 => 'Westport, CT', - 1203457 => 'Guilford, CT', - 1203458 => 'Guilford, CT', - 1203466 => 'East Haven, CT', - 1203467 => 'East Haven, CT', - 1203468 => 'East Haven, CT', - 1203469 => 'East Haven, CT', - 1203481 => 'Branford, CT', - 1203483 => 'Branford, CT', - 1203488 => 'Branford, CT', - 1203498 => 'New Haven, CT', - 1203503 => 'New Haven, CT', - 1203504 => 'Stamford, CT', - 1203513 => 'Shelton, CT', - 1203527 => 'Waterbury, CT', - 1203528 => 'Waterbury, CT', - 1203531 => 'Greenwich, CT', - 1203532 => 'Greenwich, CT', - 1203557 => 'Westport, CT', - 1203562 => 'New Haven, CT', - 1203563 => 'Wilton, CT', - 1203569 => 'Stamford, CT', - 1203573 => 'Waterbury, CT', - 1203574 => 'Waterbury, CT', - 1203575 => 'Waterbury, CT', - 1203576 => 'Bridgeport, CT', - 1203579 => 'Bridgeport, CT', - 1203591 => 'Waterbury, CT', - 1203594 => 'New Canaan, CT', - 1203595 => 'Stamford, CT', - 1203596 => 'Waterbury, CT', - 1203597 => 'Waterbury, CT', - 1203598 => 'Middlebury, CT', - 1203612 => 'Bridgeport, CT', - 1203622 => 'Greenwich, CT', - 1203624 => 'New Haven, CT', - 1203625 => 'Greenwich, CT', - 1203626 => 'Wallingford, CT', - 1203629 => 'Greenwich, CT', - 1203630 => 'Meriden, CT', - 1203634 => 'Meriden, CT', - 1203639 => 'Meriden, CT', - 1203655 => 'Darien, CT', - 1203656 => 'Darien, CT', - 1203661 => 'Greenwich, CT', - 1203662 => 'Darien, CT', - 1203688 => 'New Haven, CT', - 1203694 => 'Meriden, CT', - 1203699 => 'Cheshire, CT', - 1203701 => 'Milford, CT', - 1203709 => 'Waterbury, CT', - 1203720 => 'Naugatuck, CT', - 1203723 => 'Naugatuck, CT', - 1203729 => 'Naugatuck, CT', - 1203730 => 'Danbury, CT', - 1203732 => 'Derby, CT', - 1203734 => 'Ansonia, CT', - 1203736 => 'Ansonia, CT', - 1203737 => 'New Haven, CT', - 1203739 => 'Danbury, CT', - 1203740 => 'Brookfield, CT', - 1203743 => 'Danbury, CT', - 1203744 => 'Danbury, CT', - 1203746 => 'New Fairfield, CT', - 1203748 => 'Danbury, CT', - 1203752 => 'New Haven, CT', - 1203753 => 'Waterbury, CT', - 1203754 => 'Waterbury, CT', - 1203755 => 'Waterbury, CT', - 1203756 => 'Waterbury, CT', - 1203757 => 'Waterbury, CT', - 1203758 => 'Prospect, CT', - 1203759 => 'Waterbury, CT', - 1203761 => 'Wilton, CT', - 1203762 => 'Wilton, CT', - 1203764 => 'New Haven, CT', - 1203772 => 'New Haven, CT', - 1203773 => 'New Haven, CT', - 1203775 => 'Brookfield, CT', - 1203776 => 'New Haven, CT', - 1203777 => 'New Haven, CT', - 1203778 => 'Danbury, CT', - 1203781 => 'New Haven, CT', - 1203782 => 'New Haven, CT', - 1203783 => 'Milford, CT', - 1203785 => 'New Haven, CT', - 1203787 => 'New Haven, CT', - 1203789 => 'New Haven, CT', - 1203790 => 'Danbury, CT', - 1203791 => 'Danbury, CT', - 1203792 => 'Danbury, CT', - 1203794 => 'Danbury, CT', - 1203795 => 'Orange, CT', - 1203797 => 'Danbury, CT', - 1203798 => 'Danbury, CT', - 1203799 => 'Orange, CT', - 1203801 => 'New Canaan, CT', - 1203826 => 'Danbury, CT', - 1203831 => 'Norwalk, CT', - 1203834 => 'Wilton, CT', - 1203838 => 'Norwalk, CT', - 1203840 => 'Norwalk, CT', - 1203845 => 'Norwalk, CT', - 1203846 => 'Norwalk, CT', - 1203847 => 'Norwalk, CT', - 1203849 => 'Norwalk, CT', - 1203852 => 'Norwalk, CT', - 1203853 => 'Norwalk, CT', - 1203854 => 'Norwalk, CT', - 1203855 => 'Norwalk, CT', - 1203857 => 'Norwalk, CT', - 1203861 => 'Greenwich, CT', - 1203863 => 'Greenwich, CT', - 1203865 => 'New Haven, CT', - 1203866 => 'Norwalk, CT', - 1203869 => 'Greenwich, CT', - 1203870 => 'Bridgeport, CT', - 1203874 => 'Milford, CT', - 1203876 => 'Milford, CT', - 1203877 => 'Milford, CT', - 1203878 => 'Milford, CT', - 1203879 => 'Wolcott, CT', - 1203880 => 'Monroe, CT', - 1203882 => 'Milford, CT', - 1203888 => 'Seymour, CT', - 1203891 => 'Orange, CT', - 1203894 => 'Ridgefield, CT', - 1203899 => 'Norwalk, CT', - 1203922 => 'Shelton, CT', - 1203924 => 'Shelton, CT', - 1203925 => 'Shelton, CT', - 1203926 => 'Shelton, CT', - 1203929 => 'Shelton, CT', - 1203931 => 'West Haven, CT', - 1203932 => 'West Haven, CT', - 1203933 => 'West Haven, CT', - 1203934 => 'West Haven, CT', - 1203937 => 'West Haven, CT', - 1203944 => 'Shelton, CT', - 1203946 => 'New Haven, CT', - 1203949 => 'Wallingford, CT', - 1203956 => 'Norwalk, CT', - 1203961 => 'Stamford, CT', - 1203964 => 'Stamford, CT', - 1203966 => 'New Canaan, CT', - 1203967 => 'Stamford, CT', - 1203968 => 'Stamford, CT', - 1203969 => 'Stamford, CT', - 1203972 => 'New Canaan, CT', - 1203974 => 'New Haven, CT', - 1203975 => 'Stamford, CT', - 1203977 => 'Stamford, CT', - 1203978 => 'Stamford, CT', - 1203987 => 'Greenwich, CT', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1204.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1204.php deleted file mode 100644 index ce7c2e9f4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1204.php +++ /dev/null @@ -1,103 +0,0 @@ - 'Manitoba', - 1204239 => 'Portage la Prairie, MB', - 1204268 => 'Beausejour, MB', - 1204284 => 'Winnipeg, MB', - 1204324 => 'Altona, MB', - 1204325 => 'Winkler, MB', - 1204326 => 'Steinbach, MB', - 1204331 => 'Winkler, MB', - 1204345 => 'Lac du Bonnet, MB', - 1204346 => 'Steinbach, MB', - 1204376 => 'Arborg, MB', - 1204388 => 'Niverville, MB', - 1204414 => 'Winnipeg, MB', - 1204415 => 'Winnipeg, MB', - 1204421 => 'Winnipeg, MB', - 1204422 => 'Ste. Anne, MB', - 1204434 => 'Grunthal, MB', - 1204444 => 'Oakbank, MB', - 1204447 => 'Ste. Rose du Lac, MB', - 1204452 => 'Winnipeg, MB', - 1204453 => 'Winnipeg, MB', - 1204467 => 'Stonewall, MB', - 1204474 => 'Winnipeg, MB', - 1204475 => 'Winnipeg, MB', - 1204476 => 'Neepawa, MB', - 1204477 => 'Winnipeg, MB', - 1204480 => 'Winnipeg, MB', - 1204482 => 'Selkirk, MB', - 1204483 => 'Souris, MB', - 1204487 => 'Winnipeg, MB', - 1204488 => 'Winnipeg, MB', - 1204489 => 'Winnipeg, MB', - 1204523 => 'Killarney, MB', - 1204534 => 'Boissevain, MB', - 1204571 => 'Brandon, MB', - 1204582 => 'Winnipeg, MB', - 1204586 => 'Winnipeg, MB', - 1204589 => 'Winnipeg, MB', - 1204623 => 'The Pas, MB', - 1204632 => 'Winnipeg, MB', - 1204633 => 'Winnipeg, MB', - 1204638 => 'Dauphin, MB', - 1204642 => 'Gimli, MB', - 1204667 => 'Winnipeg, MB', - 1204677 => 'Thompson, MB', - 1204687 => 'Flin Flon, MB', - 1204694 => 'Winnipeg, MB', - 1204697 => 'Winnipeg, MB', - 1204725 => 'Brandon, MB', - 1204726 => 'Brandon, MB', - 1204727 => 'Brandon, MB', - 1204728 => 'Brandon, MB', - 1204729 => 'Brandon, MB', - 1204734 => 'Swan River, MB', - 1204745 => 'Carman, MB', - 1204748 => 'Virden, MB', - 1204757 => 'Lockport, MB', - 1204768 => 'Ashern, MB', - 1204772 => 'Winnipeg, MB', - 1204773 => 'Russell, MB', - 1204774 => 'Winnipeg, MB', - 1204775 => 'Winnipeg, MB', - 1204778 => 'Thompson, MB', - 1204779 => 'Winnipeg, MB', - 1204783 => 'Winnipeg, MB', - 1204785 => 'Selkirk, MB', - 1204786 => 'Winnipeg, MB', - 1204788 => 'Winnipeg, MB', - 1204822 => 'Morden, MB', - 1204834 => 'Carberry, MB', - 1204837 => 'Winnipeg, MB', - 1204857 => 'Portage la Prairie, MB', - 1204867 => 'Minnedosa, MB', - 1204878 => 'Lorette, MB', - 1204886 => 'Teulon, MB', - 1204888 => 'Winnipeg, MB', - 1204897 => 'Winnipeg, MB', - 1204925 => 'Winnipeg, MB', - 1204927 => 'Winnipeg, MB', - 1204937 => 'Roblin, MB', - 1204940 => 'Winnipeg, MB', - 1204942 => 'Winnipeg, MB', - 1204943 => 'Winnipeg, MB', - 1204944 => 'Winnipeg, MB', - 1204947 => 'Winnipeg, MB', - 1204949 => 'Winnipeg, MB', - 1204953 => 'Winnipeg, MB', - 1204956 => 'Winnipeg, MB', - 1204957 => 'Winnipeg, MB', - 1204958 => 'Winnipeg, MB', - 1204982 => 'Winnipeg, MB', - 1204985 => 'Winnipeg, MB', - 1204987 => 'Winnipeg, MB', - 1204988 => 'Winnipeg, MB', - 1204989 => 'Winnipeg, MB', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1205.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1205.php deleted file mode 100644 index 56e71c37b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1205.php +++ /dev/null @@ -1,170 +0,0 @@ - 'Alabama', - 1205202 => 'Birmingham, AL', - 1205221 => 'Jasper, AL', - 1205226 => 'Birmingham, AL', - 1205244 => 'Birmingham, AL', - 1205248 => 'Tuscaloosa, AL', - 1205250 => 'Birmingham, AL', - 1205251 => 'Birmingham, AL', - 1205252 => 'Birmingham, AL', - 1205254 => 'Birmingham, AL', - 1205271 => 'Birmingham, AL', - 1205274 => 'Oneonta, AL', - 1205280 => 'Clanton, AL', - 1205290 => 'Birmingham, AL', - 1205295 => 'Jasper, AL', - 1205320 => 'Birmingham, AL', - 1205322 => 'Birmingham, AL', - 1205323 => 'Birmingham, AL', - 1205324 => 'Birmingham, AL', - 1205325 => 'Birmingham, AL', - 1205326 => 'Birmingham, AL', - 1205328 => 'Birmingham, AL', - 1205330 => 'Northport, AL', - 1205333 => 'Northport, AL', - 1205338 => 'Pell City, AL', - 1205339 => 'Northport, AL', - 1205342 => 'Tuscaloosa, AL', - 1205343 => 'Tuscaloosa, AL', - 1205344 => 'Tuscaloosa, AL', - 1205345 => 'Tuscaloosa, AL', - 1205348 => 'Tuscaloosa, AL', - 1205349 => 'Tuscaloosa, AL', - 1205364 => 'Gordo, AL', - 1205366 => 'Tuscaloosa, AL', - 1205367 => 'Carrollton, AL', - 1205371 => 'Moundville, AL', - 1205372 => 'Eutaw, AL', - 1205373 => 'Aliceville, AL', - 1205375 => 'Reform, AL', - 1205380 => 'Birmingham, AL', - 1205384 => 'Jasper, AL', - 1205387 => 'Jasper, AL', - 1205391 => 'Tuscaloosa, AL', - 1205392 => 'York, AL', - 1205397 => 'Birmingham, AL', - 1205408 => 'Birmingham, AL', - 1205414 => 'Birmingham, AL', - 1205424 => 'Bessemer, AL', - 1205425 => 'Bessemer, AL', - 1205426 => 'Bessemer, AL', - 1205428 => 'Bessemer, AL', - 1205429 => 'Blountsville, AL', - 1205436 => 'Bessemer, AL', - 1205437 => 'Birmingham, AL', - 1205458 => 'Birmingham, AL', - 1205459 => 'Butler, AL', - 1205462 => 'Tuscaloosa, AL', - 1205467 => 'Springville, AL', - 1205468 => 'Guin, AL', - 1205477 => 'McCalla, AL', - 1205481 => 'Bessemer, AL', - 1205486 => 'Haleyville, AL', - 1205487 => 'Winfield, AL', - 1205489 => 'Double Springs, AL', - 1205491 => 'Hueytown, AL', - 1205520 => 'Birmingham, AL', - 1205521 => 'Birmingham, AL', - 1205553 => 'Tuscaloosa, AL', - 1205554 => 'Tuscaloosa, AL', - 1205556 => 'Tuscaloosa, AL', - 1205562 => 'Tuscaloosa, AL', - 1205578 => 'Birmingham, AL', - 1205588 => 'Birmingham, AL', - 1205589 => 'Altoona, AL', - 1205590 => 'Warrior, AL', - 1205591 => 'Birmingham, AL', - 1205592 => 'Birmingham, AL', - 1205594 => 'Ashville, AL', - 1205595 => 'Birmingham, AL', - 1205599 => 'Birmingham, AL', - 1205608 => 'Gardendale, AL', - 1205625 => 'Oneonta, AL', - 1205629 => 'Odenville, AL', - 1205631 => 'Gardendale, AL', - 1205633 => 'Tuscaloosa, AL', - 1205640 => 'Moody, AL', - 1205647 => 'Warrior, AL', - 1205652 => 'Livingston, AL', - 1205655 => 'Trussville, AL', - 1205661 => 'Trussville, AL', - 1205665 => 'Montevallo, AL', - 1205668 => 'Calera, AL', - 1205669 => 'Columbiana, AL', - 1205678 => 'Chelsea, AL', - 1205680 => 'Pinson, AL', - 1205681 => 'Pinson, AL', - 1205688 => 'Jemison, AL', - 1205695 => 'Vernon, AL', - 1205698 => 'Sulligent, AL', - 1205699 => 'Leeds, AL', - 1205714 => 'Birmingham, AL', - 1205731 => 'Birmingham, AL', - 1205750 => 'Tuscaloosa, AL', - 1205752 => 'Tuscaloosa, AL', - 1205755 => 'Clanton, AL', - 1205758 => 'Tuscaloosa, AL', - 1205759 => 'Tuscaloosa, AL', - 1205763 => 'Lincoln, AL', - 1205780 => 'Birmingham, AL', - 1205781 => 'Birmingham, AL', - 1205783 => 'Birmingham, AL', - 1205785 => 'Birmingham, AL', - 1205786 => 'Birmingham, AL', - 1205787 => 'Birmingham, AL', - 1205788 => 'Birmingham, AL', - 1205791 => 'Birmingham, AL', - 1205798 => 'Birmingham, AL', - 1205801 => 'Birmingham, AL', - 1205802 => 'Birmingham, AL', - 1205803 => 'Birmingham, AL', - 1205814 => 'Pell City, AL', - 1205815 => 'Birmingham, AL', - 1205833 => 'Birmingham, AL', - 1205836 => 'Birmingham, AL', - 1205838 => 'Birmingham, AL', - 1205841 => 'Birmingham, AL', - 1205849 => 'Birmingham, AL', - 1205853 => 'Birmingham, AL', - 1205854 => 'Birmingham, AL', - 1205856 => 'Birmingham, AL', - 1205868 => 'Birmingham, AL', - 1205877 => 'Birmingham, AL', - 1205879 => 'Birmingham, AL', - 1205884 => 'Pell City, AL', - 1205918 => 'Birmingham, AL', - 1205921 => 'Hamilton, AL', - 1205923 => 'Birmingham, AL', - 1205924 => 'Carbon Hill, AL', - 1205925 => 'Birmingham, AL', - 1205926 => 'Centreville, AL', - 1205930 => 'Birmingham, AL', - 1205932 => 'Fayette, AL', - 1205933 => 'Birmingham, AL', - 1205934 => 'Birmingham, AL', - 1205939 => 'Birmingham, AL', - 1205941 => 'Birmingham, AL', - 1205942 => 'Birmingham, AL', - 1205943 => 'Birmingham, AL', - 1205945 => 'Birmingham, AL', - 1205949 => 'Birmingham, AL', - 1205951 => 'Irondale, AL', - 1205956 => 'Irondale, AL', - 1205968 => 'Vestavia Hills, AL', - 1205970 => 'Birmingham, AL', - 1205972 => 'Birmingham, AL', - 1205975 => 'Birmingham, AL', - 1205980 => 'Birmingham, AL', - 1205981 => 'Birmingham, AL', - 1205989 => 'Birmingham, AL', - 1205991 => 'Birmingham, AL', - 1205995 => 'Birmingham, AL', - 1205996 => 'Birmingham, AL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1206.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1206.php deleted file mode 100644 index feadc2998..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1206.php +++ /dev/null @@ -1,178 +0,0 @@ - 'Washington', - 1206215 => 'Seattle, WA', - 1206217 => 'Seattle, WA', - 1206223 => 'Seattle, WA', - 1206224 => 'Seattle, WA', - 1206230 => 'Mercer Island, WA', - 1206232 => 'Mercer Island, WA', - 1206233 => 'Seattle, WA', - 1206236 => 'Mercer Island, WA', - 1206252 => 'Seattle, WA', - 1206257 => 'Seattle, WA', - 1206262 => 'Seattle, WA', - 1206264 => 'Seattle, WA', - 1206267 => 'Seattle, WA', - 1206275 => 'Mercer Island, WA', - 1206277 => 'Seattle, WA', - 1206281 => 'Seattle, WA', - 1206282 => 'Seattle, WA', - 1206283 => 'Seattle, WA', - 1206284 => 'Seattle, WA', - 1206285 => 'Seattle, WA', - 1206286 => 'Seattle, WA', - 1206287 => 'Seattle, WA', - 1206288 => 'Seattle, WA', - 1206292 => 'Seattle, WA', - 1206296 => 'Seattle, WA', - 1206297 => 'Seattle, WA', - 1206302 => 'Seattle, WA', - 1206306 => 'Seattle, WA', - 1206320 => 'Seattle, WA', - 1206322 => 'Seattle, WA', - 1206323 => 'Seattle, WA', - 1206324 => 'Seattle, WA', - 1206325 => 'Seattle, WA', - 1206326 => 'Seattle, WA', - 1206328 => 'Seattle, WA', - 1206329 => 'Seattle, WA', - 1206340 => 'Seattle, WA', - 1206343 => 'Seattle, WA', - 1206352 => 'Seattle, WA', - 1206359 => 'Seattle, WA', - 1206361 => 'Seattle, WA', - 1206363 => 'Seattle, WA', - 1206364 => 'Seattle, WA', - 1206365 => 'Seattle, WA', - 1206367 => 'Seattle, WA', - 1206368 => 'Seattle, WA', - 1206370 => 'Seattle, WA', - 1206374 => 'Seattle, WA', - 1206381 => 'Seattle, WA', - 1206382 => 'Seattle, WA', - 1206386 => 'Seattle, WA', - 1206388 => 'Seattle, WA', - 1206402 => 'Seattle, WA', - 1206403 => 'Seattle, WA', - 1206405 => 'Seattle, WA', - 1206417 => 'Seattle, WA', - 1206420 => 'Seattle, WA', - 1206432 => 'Seattle, WA', - 1206436 => 'Seattle, WA', - 1206440 => 'Seattle, WA', - 1206441 => 'Seattle, WA', - 1206443 => 'Seattle, WA', - 1206447 => 'Seattle, WA', - 1206448 => 'Seattle, WA', - 1206453 => 'Seattle, WA', - 1206457 => 'Seattle, WA', - 1206461 => 'Seattle, WA', - 1206462 => 'Seattle, WA', - 1206463 => 'Vashon, WA', - 1206464 => 'Seattle, WA', - 1206466 => 'Seattle, WA', - 1206467 => 'Seattle, WA', - 1206505 => 'Seattle, WA', - 1206517 => 'Seattle, WA', - 1206522 => 'Seattle, WA', - 1206523 => 'Seattle, WA', - 1206524 => 'Seattle, WA', - 1206525 => 'Seattle, WA', - 1206526 => 'Seattle, WA', - 1206527 => 'Seattle, WA', - 1206528 => 'Seattle, WA', - 1206533 => 'Shoreline, WA', - 1206535 => 'Seattle, WA', - 1206542 => 'Shoreline, WA', - 1206543 => 'Seattle, WA', - 1206545 => 'Seattle, WA', - 1206546 => 'Shoreline, WA', - 1206547 => 'Seattle, WA', - 1206548 => 'Seattle, WA', - 1206567 => 'Vashon, WA', - 1206568 => 'Seattle, WA', - 1206575 => 'Tukwila, WA', - 1206583 => 'Seattle, WA', - 1206587 => 'Seattle, WA', - 1206588 => 'Seattle, WA', - 1206598 => 'Seattle, WA', - 1206616 => 'Seattle, WA', - 1206621 => 'Seattle, WA', - 1206622 => 'Seattle, WA', - 1206623 => 'Seattle, WA', - 1206624 => 'Seattle, WA', - 1206625 => 'Seattle, WA', - 1206628 => 'Seattle, WA', - 1206632 => 'Seattle, WA', - 1206633 => 'Seattle, WA', - 1206634 => 'Seattle, WA', - 1206652 => 'Seattle, WA', - 1206667 => 'Seattle, WA', - 1206682 => 'Seattle, WA', - 1206684 => 'Seattle, WA', - 1206685 => 'Seattle, WA', - 1206706 => 'Seattle, WA', - 1206708 => 'Seattle, WA', - 1206709 => 'Seattle, WA', - 1206720 => 'Seattle, WA', - 1206721 => 'Seattle, WA', - 1206722 => 'Seattle, WA', - 1206723 => 'Seattle, WA', - 1206724 => 'Seattle, WA', - 1206725 => 'Seattle, WA', - 1206726 => 'Seattle, WA', - 1206728 => 'Seattle, WA', - 1206729 => 'Seattle, WA', - 1206731 => 'Seattle, WA', - 1206744 => 'Seattle, WA', - 1206749 => 'Seattle, WA', - 1206760 => 'Seattle, WA', - 1206762 => 'Seattle, WA', - 1206763 => 'Seattle, WA', - 1206764 => 'Seattle, WA', - 1206767 => 'Seattle, WA', - 1206768 => 'Seattle, WA', - 1206772 => 'Seattle, WA', - 1206774 => 'Seattle, WA', - 1206780 => 'Bainbridge Isle, WA', - 1206781 => 'Seattle, WA', - 1206782 => 'Seattle, WA', - 1206783 => 'Seattle, WA', - 1206784 => 'Seattle, WA', - 1206788 => 'Seattle, WA', - 1206789 => 'Seattle, WA', - 1206812 => 'Seattle, WA', - 1206824 => 'Des Moines, WA', - 1206829 => 'Seattle, WA', - 1206838 => 'Seattle, WA', - 1206842 => 'Bainbridge Isle, WA', - 1206849 => 'Seattle, WA', - 1206852 => 'Seattle, WA', - 1206855 => 'Bainbridge Isle, WA', - 1206860 => 'Seattle, WA', - 1206861 => 'Seattle, WA', - 1206870 => 'Des Moines, WA', - 1206878 => 'Des Moines, WA', - 1206897 => 'Seattle, WA', - 1206903 => 'Seattle, WA', - 1206905 => 'Seattle, WA', - 1206913 => 'Seattle, WA', - 1206923 => 'Seattle, WA', - 1206931 => 'Seattle, WA', - 1206932 => 'Seattle, WA', - 1206933 => 'Seattle, WA', - 1206935 => 'Seattle, WA', - 1206937 => 'Seattle, WA', - 1206938 => 'Seattle, WA', - 1206957 => 'Seattle, WA', - 1206965 => 'Seattle, WA', - 1206971 => 'Seattle, WA', - 1206985 => 'Seattle, WA', - 1206987 => 'Seattle, WA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1207.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1207.php deleted file mode 100644 index 5a8df4dd4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1207.php +++ /dev/null @@ -1,192 +0,0 @@ - 'Maine', - 1207223 => 'Winterport, ME', - 1207225 => 'Turner, ME', - 1207230 => 'Camden, ME', - 1207236 => 'Camden, ME', - 1207244 => 'Southwest Harbor, ME', - 1207247 => 'Waterboro, ME', - 1207253 => 'Portland, ME', - 1207255 => 'Machias, ME', - 1207262 => 'Bangor, ME', - 1207273 => 'Warren, ME', - 1207276 => 'Northeast Harbor, ME', - 1207282 => 'Biddeford, ME', - 1207283 => 'Biddeford, ME', - 1207284 => 'Biddeford, ME', - 1207285 => 'Corinth, ME', - 1207286 => 'Biddeford, ME', - 1207287 => 'Augusta, ME', - 1207288 => 'Bar Harbor, ME', - 1207294 => 'Saco, ME', - 1207324 => 'Sanford, ME', - 1207338 => 'Belfast, ME', - 1207345 => 'Mechanic Falls, ME', - 1207347 => 'Portland, ME', - 1207348 => 'Deer Isle, ME', - 1207351 => 'York, ME', - 1207354 => 'Thomaston, ME', - 1207361 => 'York, ME', - 1207363 => 'York, ME', - 1207364 => 'Rumford, ME', - 1207367 => 'Stonington, ME', - 1207368 => 'Newport, ME', - 1207369 => 'Rumford, ME', - 1207373 => 'Brunswick, ME', - 1207374 => 'Blue Hill, ME', - 1207375 => 'Sabattus, ME', - 1207376 => 'Auburn, ME', - 1207377 => 'Winthrop, ME', - 1207384 => 'South Berwick, ME', - 1207435 => 'Ashland, ME', - 1207439 => 'Kittery, ME', - 1207442 => 'Bath, ME', - 1207443 => 'Bath, ME', - 1207445 => 'South China, ME', - 1207453 => 'Fairfield, ME', - 1207454 => 'Calais, ME', - 1207457 => 'Lebanon, ME', - 1207465 => 'Oakland, ME', - 1207467 => 'Kennebunk, ME', - 1207469 => 'Bucksport, ME', - 1207474 => 'Skowhegan, ME', - 1207487 => 'Pittsfield, ME', - 1207490 => 'Sanford, ME', - 1207492 => 'Caribou, ME', - 1207493 => 'Caribou, ME', - 1207498 => 'Caribou, ME', - 1207499 => 'Lyman, ME', - 1207523 => 'Portland, ME', - 1207528 => 'Patten, ME', - 1207532 => 'Houlton, ME', - 1207539 => 'Oxford, ME', - 1207541 => 'Portland, ME', - 1207548 => 'Searsport, ME', - 1207553 => 'Portland, ME', - 1207562 => 'Dixfield, ME', - 1207563 => 'Damariscotta, ME', - 1207564 => 'Dover-Foxcroft, ME', - 1207583 => 'Harrison, ME', - 1207591 => 'Westbrook, ME', - 1207594 => 'Rockland, ME', - 1207596 => 'Rockland, ME', - 1207621 => 'Augusta, ME', - 1207622 => 'Augusta, ME', - 1207623 => 'Augusta, ME', - 1207624 => 'Augusta, ME', - 1207626 => 'Augusta, ME', - 1207627 => 'Casco, ME', - 1207633 => 'Boothbay Harbor, ME', - 1207634 => 'Norridgewock, ME', - 1207641 => 'Wells, ME', - 1207642 => 'Standish, ME', - 1207645 => 'Wilton, ME', - 1207646 => 'Wells, ME', - 1207647 => 'Bridgton, ME', - 1207655 => 'Raymond, ME', - 1207657 => 'Gray, ME', - 1207662 => 'Portland, ME', - 1207664 => 'Ellsworth, ME', - 1207666 => 'Bowdoinham, ME', - 1207667 => 'Ellsworth, ME', - 1207676 => 'North Berwick, ME', - 1207685 => 'Readfield, ME', - 1207693 => 'Naples, ME', - 1207695 => 'Greenville, ME', - 1207696 => 'Madison, ME', - 1207698 => 'Berwick, ME', - 1207699 => 'Portland, ME', - 1207721 => 'Brunswick, ME', - 1207723 => 'Millinocket, ME', - 1207725 => 'Brunswick, ME', - 1207727 => 'Buxton, ME', - 1207728 => 'Madawaska, ME', - 1207729 => 'Brunswick, ME', - 1207733 => 'Lubec, ME', - 1207737 => 'Richmond, ME', - 1207739 => 'Norway, ME', - 1207743 => 'Norway, ME', - 1207753 => 'Lewiston, ME', - 1207761 => 'Portland, ME', - 1207763 => 'Lincolnville, ME', - 1207764 => 'Presque Isle, ME', - 1207767 => 'South Portland, ME', - 1207768 => 'Presque Isle, ME', - 1207771 => 'Portland, ME', - 1207772 => 'Portland, ME', - 1207773 => 'Portland, ME', - 1207774 => 'Portland, ME', - 1207775 => 'Portland, ME', - 1207777 => 'Lewiston, ME', - 1207778 => 'Farmington, ME', - 1207780 => 'Portland, ME', - 1207781 => 'Falmouth, ME', - 1207782 => 'Lewiston, ME', - 1207783 => 'Lewiston, ME', - 1207785 => 'Union, ME', - 1207786 => 'Lewiston, ME', - 1207791 => 'Portland, ME', - 1207793 => 'Limerick, ME', - 1207794 => 'Lincoln, ME', - 1207795 => 'Lewiston, ME', - 1207797 => 'Portland, ME', - 1207798 => 'Brunswick, ME', - 1207799 => 'South Portland, ME', - 1207824 => 'Bethel, ME', - 1207827 => 'Old Town, ME', - 1207828 => 'Portland, ME', - 1207832 => 'Waldoboro, ME', - 1207833 => 'Harpswell, ME', - 1207834 => 'Fort Kent, ME', - 1207839 => 'Gorham, ME', - 1207846 => 'Yarmouth, ME', - 1207848 => 'Hermon, ME', - 1207853 => 'Eastport, ME', - 1207854 => 'Westbrook, ME', - 1207856 => 'Westbrook, ME', - 1207861 => 'Waterville, ME', - 1207862 => 'Hampden, ME', - 1207864 => 'Rangeley, ME', - 1207865 => 'Freeport, ME', - 1207866 => 'Orono, ME', - 1207868 => 'Van Buren, ME', - 1207871 => 'Portland, ME', - 1207872 => 'Waterville, ME', - 1207873 => 'Waterville, ME', - 1207874 => 'Portland, ME', - 1207877 => 'Waterville, ME', - 1207878 => 'Portland, ME', - 1207879 => 'Portland, ME', - 1207882 => 'Wiscasset, ME', - 1207883 => 'Scarborough, ME', - 1207885 => 'Scarborough, ME', - 1207892 => 'Windham, ME', - 1207893 => 'Windham, ME', - 1207907 => 'Bangor, ME', - 1207924 => 'Dexter, ME', - 1207926 => 'New Gloucester, ME', - 1207929 => 'Buxton, ME', - 1207933 => 'Monmouth, ME', - 1207934 => 'Old Orchard Bch, ME', - 1207935 => 'Fryeburg, ME', - 1207941 => 'Bangor, ME', - 1207942 => 'Bangor, ME', - 1207943 => 'Milo, ME', - 1207945 => 'Bangor, ME', - 1207946 => 'Greene, ME', - 1207947 => 'Bangor, ME', - 1207948 => 'Unity, ME', - 1207967 => 'Kennebunkport, ME', - 1207973 => 'Bangor, ME', - 1207985 => 'Kennebunk, ME', - 1207989 => 'Brewer, ME', - 1207990 => 'Bangor, ME', - 1207992 => 'Bangor, ME', - 1207998 => 'Poland, ME', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1208.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1208.php deleted file mode 100644 index 89c04f774..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1208.php +++ /dev/null @@ -1,196 +0,0 @@ - 'Idaho', - 1208226 => 'American Falls, ID', - 1208227 => 'Idaho Falls, ID', - 1208232 => 'Pocatello, ID', - 1208233 => 'Pocatello, ID', - 1208234 => 'Pocatello, ID', - 1208236 => 'Pocatello, ID', - 1208237 => 'Pocatello, ID', - 1208238 => 'Pocatello, ID', - 1208239 => 'Pocatello, ID', - 1208245 => 'St. Maries, ID', - 1208253 => 'Council, ID', - 1208255 => 'Sandpoint, ID', - 1208262 => 'Post Falls, ID', - 1208263 => 'Sandpoint, ID', - 1208265 => 'Sandpoint, ID', - 1208267 => 'Bonners Ferry, ID', - 1208278 => 'New Plymouth, ID', - 1208282 => 'Pocatello, ID', - 1208286 => 'Star, ID', - 1208287 => 'Boise, ID', - 1208288 => 'Meridian, ID', - 1208292 => 'Coeur d\'Alene, ID', - 1208319 => 'Boise, ID', - 1208321 => 'Boise, ID', - 1208322 => 'Boise, ID', - 1208323 => 'Boise, ID', - 1208324 => 'Jerome, ID', - 1208326 => 'Filer, ID', - 1208327 => 'Boise, ID', - 1208331 => 'Boise, ID', - 1208333 => 'Boise, ID', - 1208334 => 'Boise, ID', - 1208336 => 'Boise, ID', - 1208337 => 'Homedale, ID', - 1208338 => 'Boise, ID', - 1208342 => 'Boise, ID', - 1208343 => 'Boise, ID', - 1208344 => 'Boise, ID', - 1208345 => 'Boise, ID', - 1208354 => 'Driggs, ID', - 1208356 => 'Rexburg, ID', - 1208357 => 'Shelley, ID', - 1208359 => 'Rexburg, ID', - 1208362 => 'Boise, ID', - 1208365 => 'Emmett, ID', - 1208366 => 'Glenns Ferry, ID', - 1208367 => 'Boise, ID', - 1208373 => 'Boise, ID', - 1208375 => 'Boise, ID', - 1208376 => 'Boise, ID', - 1208377 => 'Boise, ID', - 1208378 => 'Boise, ID', - 1208381 => 'Boise, ID', - 1208382 => 'Cascade, ID', - 1208383 => 'Boise, ID', - 1208384 => 'Boise, ID', - 1208385 => 'Boise, ID', - 1208387 => 'Boise, ID', - 1208388 => 'Boise, ID', - 1208392 => 'Idaho City, ID', - 1208397 => 'Aberdeen, ID', - 1208414 => 'Weiser, ID', - 1208422 => 'Boise, ID', - 1208423 => 'Kimberly, ID', - 1208424 => 'Boise, ID', - 1208426 => 'Boise, ID', - 1208429 => 'Boise, ID', - 1208433 => 'Boise, ID', - 1208436 => 'Rupert, ID', - 1208437 => 'Oldtown, ID', - 1208438 => 'Paul, ID', - 1208442 => 'Nampa, ID', - 1208448 => 'Priest River, ID', - 1208452 => 'Fruitland, ID', - 1208453 => 'Caldwell, ID', - 1208454 => 'Caldwell, ID', - 1208455 => 'Caldwell, ID', - 1208457 => 'Post Falls, ID', - 1208459 => 'Caldwell, ID', - 1208461 => 'Nampa, ID', - 1208462 => 'Garden Valley, ID', - 1208463 => 'Nampa, ID', - 1208465 => 'Nampa, ID', - 1208466 => 'Nampa, ID', - 1208467 => 'Nampa, ID', - 1208468 => 'Nampa, ID', - 1208475 => 'Nampa, ID', - 1208476 => 'Orofino, ID', - 1208478 => 'Pocatello, ID', - 1208495 => 'Melba, ID', - 1208514 => 'Boise, ID', - 1208522 => 'Idaho Falls, ID', - 1208523 => 'Idaho Falls, ID', - 1208524 => 'Idaho Falls, ID', - 1208525 => 'Idaho Falls, ID', - 1208527 => 'Arco, ID', - 1208528 => 'Idaho Falls, ID', - 1208529 => 'Idaho Falls, ID', - 1208535 => 'Idaho Falls, ID', - 1208536 => 'Wendell, ID', - 1208542 => 'Idaho Falls, ID', - 1208543 => 'Buhl, ID', - 1208547 => 'Soda Springs, ID', - 1208549 => 'Weiser, ID', - 1208552 => 'Idaho Falls, ID', - 1208557 => 'Idaho Falls, ID', - 1208558 => 'Island Park, ID', - 1208562 => 'Boise, ID', - 1208578 => 'Hailey, ID', - 1208585 => 'Middleton, ID', - 1208587 => 'Mountain Home, ID', - 1208622 => 'Sun Valley, ID', - 1208623 => 'Spirit Lake, ID', - 1208624 => 'St. Anthony, ID', - 1208628 => 'Riggins, ID', - 1208629 => 'Boise, ID', - 1208634 => 'McCall, ID', - 1208642 => 'Payette, ID', - 1208652 => 'Ashton, ID', - 1208656 => 'Rexburg, ID', - 1208658 => 'Boise, ID', - 1208664 => 'Coeur d\'Alene, ID', - 1208665 => 'Coeur d\'Alene, ID', - 1208666 => 'Coeur d\'Alene, ID', - 1208667 => 'Coeur d\'Alene, ID', - 1208672 => 'Boise, ID', - 1208676 => 'Coeur d\'Alene, ID', - 1208677 => 'Burley, ID', - 1208678 => 'Burley, ID', - 1208683 => 'Athol, ID', - 1208684 => 'Blackfoot, ID', - 1208686 => 'Plummer, ID', - 1208687 => 'Rathdrum, ID', - 1208722 => 'Parma, ID', - 1208726 => 'Ketchum, ID', - 1208732 => 'Twin Falls, ID', - 1208733 => 'Twin Falls, ID', - 1208734 => 'Twin Falls, ID', - 1208735 => 'Twin Falls, ID', - 1208736 => 'Twin Falls, ID', - 1208737 => 'Twin Falls, ID', - 1208743 => 'Lewiston, ID', - 1208745 => 'Rigby, ID', - 1208746 => 'Lewiston, ID', - 1208756 => 'Salmon, ID', - 1208762 => 'Hayden, ID', - 1208765 => 'Coeur d\'Alene, ID', - 1208766 => 'Malad City, ID', - 1208769 => 'Coeur d\'Alene, ID', - 1208773 => 'Post Falls, ID', - 1208777 => 'Post Falls, ID', - 1208782 => 'Blackfoot, ID', - 1208783 => 'Kellogg, ID', - 1208785 => 'Blackfoot, ID', - 1208787 => 'Victor, ID', - 1208788 => 'Hailey, ID', - 1208798 => 'Lewiston, ID', - 1208799 => 'Lewiston, ID', - 1208835 => 'Troy, ID', - 1208837 => 'Hagerman, ID', - 1208846 => 'Meridian, ID', - 1208847 => 'Montpelier, ID', - 1208852 => 'Preston, ID', - 1208853 => 'Boise, ID', - 1208854 => 'Boise, ID', - 1208855 => 'Meridian, ID', - 1208875 => 'Potlatch, ID', - 1208878 => 'Burley, ID', - 1208879 => 'Challis, ID', - 1208881 => 'Idaho Falls, ID', - 1208882 => 'Moscow, ID', - 1208883 => 'Moscow, ID', - 1208884 => 'Meridian, ID', - 1208886 => 'Shoshone, ID', - 1208887 => 'Meridian, ID', - 1208888 => 'Meridian, ID', - 1208895 => 'Meridian, ID', - 1208898 => 'Meridian, ID', - 1208922 => 'Kuna, ID', - 1208926 => 'Kooskia, ID', - 1208934 => 'Gooding, ID', - 1208935 => 'Kamiah, ID', - 1208938 => 'Eagle, ID', - 1208939 => 'Eagle, ID', - 1208947 => 'Boise, ID', - 1208962 => 'Cottonwood, ID', - 1208983 => 'Grangeville, ID', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1209.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1209.php deleted file mode 100644 index 3e231a47b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1209.php +++ /dev/null @@ -1,157 +0,0 @@ - 'California', - 1209221 => 'Tracy, CA', - 1209223 => 'Jackson, CA', - 1209234 => 'Stockton, CA', - 1209238 => 'Modesto, CA', - 1209239 => 'Manteca, CA', - 1209245 => 'Plymouth, CA', - 1209257 => 'Jackson, CA', - 1209267 => 'Sutter Creek, CA', - 1209274 => 'Ione, CA', - 1209293 => 'West Point, CA', - 1209295 => 'Pioneer, CA', - 1209296 => 'Pine Grove, CA', - 1209333 => 'Lodi, CA', - 1209334 => 'Lodi, CA', - 1209339 => 'Lodi, CA', - 1209357 => 'Atwater, CA', - 1209358 => 'Atwater, CA', - 1209365 => 'Lodi, CA', - 1209366 => 'Lodi, CA', - 1209367 => 'Lodi, CA', - 1209368 => 'Lodi, CA', - 1209369 => 'Lodi, CA', - 1209381 => 'Merced, CA', - 1209383 => 'Merced, CA', - 1209384 => 'Merced, CA', - 1209385 => 'Merced, CA', - 1209392 => 'Dos Palos, CA', - 1209394 => 'Livingston, CA', - 1209451 => 'Stockton, CA', - 1209462 => 'Stockton, CA', - 1209463 => 'Stockton, CA', - 1209464 => 'Stockton, CA', - 1209465 => 'Stockton, CA', - 1209466 => 'Stockton, CA', - 1209467 => 'Stockton, CA', - 1209469 => 'Stockton, CA', - 1209472 => 'Stockton, CA', - 1209473 => 'Stockton, CA', - 1209474 => 'Stockton, CA', - 1209475 => 'Stockton, CA', - 1209476 => 'Stockton, CA', - 1209477 => 'Stockton, CA', - 1209478 => 'Stockton, CA', - 1209491 => 'Modesto, CA', - 1209521 => 'Modesto, CA', - 1209522 => 'Modesto, CA', - 1209523 => 'Modesto, CA', - 1209524 => 'Modesto, CA', - 1209525 => 'Modesto, CA', - 1209526 => 'Modesto, CA', - 1209527 => 'Modesto, CA', - 1209529 => 'Modesto, CA', - 1209532 => 'Sonora, CA', - 1209533 => 'Sonora, CA', - 1209536 => 'Sonora, CA', - 1209537 => 'Ceres, CA', - 1209538 => 'Ceres, CA', - 1209541 => 'Ceres, CA', - 1209543 => 'Modesto, CA', - 1209544 => 'Modesto, CA', - 1209545 => 'Modesto, CA', - 1209547 => 'Stockton, CA', - 1209549 => 'Modesto, CA', - 1209550 => 'Modesto, CA', - 1209551 => 'Modesto, CA', - 1209557 => 'Modesto, CA', - 1209558 => 'Modesto, CA', - 1209571 => 'Modesto, CA', - 1209572 => 'Modesto, CA', - 1209574 => 'Modesto, CA', - 1209575 => 'Modesto, CA', - 1209576 => 'Modesto, CA', - 1209577 => 'Modesto, CA', - 1209578 => 'Modesto, CA', - 1209579 => 'Modesto, CA', - 1209586 => 'Twain Harte, CA', - 1209588 => 'Sonora, CA', - 1209599 => 'Ripon, CA', - 1209632 => 'Turlock, CA', - 1209634 => 'Turlock, CA', - 1209656 => 'Turlock, CA', - 1209664 => 'Turlock, CA', - 1209667 => 'Turlock, CA', - 1209668 => 'Turlock, CA', - 1209669 => 'Turlock, CA', - 1209722 => 'Merced, CA', - 1209723 => 'Merced, CA', - 1209725 => 'Merced, CA', - 1209726 => 'Merced, CA', - 1209727 => 'Lockeford, CA', - 1209728 => 'Murphys, CA', - 1209735 => 'Modesto, CA', - 1209736 => 'Angels Camp, CA', - 1209742 => 'Mariposa, CA', - 1209744 => 'Galt, CA', - 1209745 => 'Galt, CA', - 1209754 => 'San Andreas, CA', - 1209772 => 'Valley Springs, CA', - 1209785 => 'Copperopolis, CA', - 1209795 => 'Arnold, CA', - 1209823 => 'Manteca, CA', - 1209824 => 'Manteca, CA', - 1209825 => 'Manteca, CA', - 1209826 => 'Los Banos, CA', - 1209827 => 'Los Banos, CA', - 1209830 => 'Tracy, CA', - 1209832 => 'Tracy, CA', - 1209833 => 'Tracy, CA', - 1209834 => 'Tracy, CA', - 1209835 => 'Tracy, CA', - 1209836 => 'Tracy, CA', - 1209838 => 'Escalon, CA', - 1209839 => 'Tracy, CA', - 1209845 => 'Oakdale, CA', - 1209846 => 'Modesto, CA', - 1209847 => 'Oakdale, CA', - 1209848 => 'Oakdale, CA', - 1209854 => 'Gustine, CA', - 1209858 => 'Lathrop, CA', - 1209862 => 'Newman, CA', - 1209863 => 'Riverbank, CA', - 1209869 => 'Riverbank, CA', - 1209874 => 'Waterford, CA', - 1209883 => 'Hughson, CA', - 1209887 => 'Linden, CA', - 1209892 => 'Patterson, CA', - 1209928 => 'Tuolumne, CA', - 1209931 => 'Stockton, CA', - 1209933 => 'Stockton, CA', - 1209937 => 'Stockton, CA', - 1209941 => 'Stockton, CA', - 1209942 => 'Stockton, CA', - 1209943 => 'Stockton, CA', - 1209944 => 'Stockton, CA', - 1209946 => 'Stockton, CA', - 1209948 => 'Stockton, CA', - 1209951 => 'Stockton, CA', - 1209952 => 'Stockton, CA', - 1209953 => 'Stockton, CA', - 1209954 => 'Stockton, CA', - 1209955 => 'Stockton, CA', - 1209956 => 'Stockton, CA', - 1209957 => 'Stockton, CA', - 1209962 => 'Groveland, CA', - 1209966 => 'Mariposa, CA', - 1209982 => 'Stockton, CA', - 1209983 => 'Stockton, CA', - 1209984 => 'Jamestown, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1210.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1210.php deleted file mode 100644 index c014e7c56..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1210.php +++ /dev/null @@ -1,9 +0,0 @@ - 'San Antonio, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1212.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1212.php deleted file mode 100644 index 8f43cff02..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1212.php +++ /dev/null @@ -1,9 +0,0 @@ - 'New York, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1213.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1213.php deleted file mode 100644 index 6b37c032f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1213.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Los Angeles, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1214.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1214.php deleted file mode 100644 index 641a8c8a7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1214.php +++ /dev/null @@ -1,200 +0,0 @@ - 'Texas', - 1214217 => 'Dallas, TX', - 1214219 => 'Dallas, TX', - 1214220 => 'Dallas, TX', - 1214221 => 'Dallas, TX', - 1214222 => 'Lewisville, TX', - 1214234 => 'Dallas, TX', - 1214239 => 'Dallas, TX', - 1214252 => 'Dallas, TX', - 1214265 => 'Dallas, TX', - 1214266 => 'Dallas, TX', - 1214267 => 'Dallas, TX', - 1214275 => 'Dallas, TX', - 1214296 => 'Dallas, TX', - 1214302 => 'Dallas, TX', - 1214303 => 'Dallas, TX', - 1214306 => 'Dallas, TX', - 1214309 => 'Dallas, TX', - 1214319 => 'Dallas, TX', - 1214320 => 'Dallas, TX', - 1214321 => 'Dallas, TX', - 1214324 => 'Dallas, TX', - 1214327 => 'Dallas, TX', - 1214328 => 'Dallas, TX', - 1214330 => 'Dallas, TX', - 1214331 => 'Dallas, TX', - 1214333 => 'Dallas, TX', - 1214337 => 'Dallas, TX', - 1214339 => 'Dallas, TX', - 1214340 => 'Dallas, TX', - 1214341 => 'Dallas, TX', - 1214342 => 'Dallas, TX', - 1214343 => 'Dallas, TX', - 1214345 => 'Dallas, TX', - 1214346 => 'Dallas, TX', - 1214348 => 'Dallas, TX', - 1214349 => 'Dallas, TX', - 1214350 => 'Dallas, TX', - 1214351 => 'Dallas, TX', - 1214352 => 'Dallas, TX', - 1214353 => 'Dallas, TX', - 1214357 => 'Dallas, TX', - 1214358 => 'Dallas, TX', - 1214360 => 'Dallas, TX', - 1214361 => 'Dallas, TX', - 1214363 => 'Dallas, TX', - 1214365 => 'Dallas, TX', - 1214366 => 'Dallas, TX', - 1214368 => 'Dallas, TX', - 1214369 => 'Dallas, TX', - 1214370 => 'Dallas, TX', - 1214371 => 'Dallas, TX', - 1214372 => 'Dallas, TX', - 1214373 => 'Dallas, TX', - 1214374 => 'Dallas, TX', - 1214375 => 'Dallas, TX', - 1214376 => 'Dallas, TX', - 1214378 => 'Dallas, TX', - 1214381 => 'Dallas, TX', - 1214383 => 'Allen, TX', - 1214387 => 'Frisco, TX', - 1214388 => 'Dallas, TX', - 1214389 => 'Dallas, TX', - 1214391 => 'Dallas, TX', - 1214393 => 'Dallas, TX', - 1214398 => 'Dallas, TX', - 1214420 => 'Dallas, TX', - 1214421 => 'Dallas, TX', - 1214426 => 'Dallas, TX', - 1214428 => 'Dallas, TX', - 1214436 => 'Frisco, TX', - 1214441 => 'Irving, TX', - 1214443 => 'Dallas, TX', - 1214456 => 'Dallas, TX', - 1214459 => 'Dallas, TX', - 1214467 => 'Dallas, TX', - 1214468 => 'Dallas, TX', - 1214473 => 'Plano, TX', - 1214483 => 'Carrollton, TX', - 1214484 => 'Dallas, TX', - 1214488 => 'Lewisville, TX', - 1214491 => 'McKinney, TX', - 1214492 => 'Irving, TX', - 1214495 => 'Allen, TX', - 1214503 => 'Dallas, TX', - 1214509 => 'Allen, TX', - 1214515 => 'Dallas, TX', - 1214520 => 'Dallas, TX', - 1214521 => 'Dallas, TX', - 1214522 => 'Dallas, TX', - 1214526 => 'Dallas, TX', - 1214528 => 'Dallas, TX', - 1214540 => 'Dallas, TX', - 1214544 => 'McKinney, TX', - 1214547 => 'Allen, TX', - 1214553 => 'Dallas, TX', - 1214559 => 'Dallas, TX', - 1214565 => 'Dallas, TX', - 1214570 => 'Dallas, TX', - 1214575 => 'Dallas, TX', - 1214585 => 'McKinney, TX', - 1214590 => 'Dallas, TX', - 1214592 => 'McKinney, TX', - 1214596 => 'Irving, TX', - 1214599 => 'Dallas, TX', - 1214607 => 'Rowlett, TX', - 1214618 => 'Frisco, TX', - 1214623 => 'Dallas, TX', - 1214630 => 'Dallas, TX', - 1214631 => 'Dallas, TX', - 1214634 => 'Dallas, TX', - 1214637 => 'Dallas, TX', - 1214638 => 'Dallas, TX', - 1214645 => 'Dallas, TX', - 1214648 => 'Dallas, TX', - 1214651 => 'Dallas, TX', - 1214653 => 'Dallas, TX', - 1214654 => 'Dallas, TX', - 1214660 => 'Dallas, TX', - 1214670 => 'Dallas, TX', - 1214672 => 'Dallas, TX', - 1214678 => 'Dallas, TX', - 1214688 => 'Dallas, TX', - 1214689 => 'Dallas, TX', - 1214691 => 'Dallas, TX', - 1214692 => 'Dallas, TX', - 1214696 => 'Dallas, TX', - 1214698 => 'Dallas, TX', - 1214703 => 'Garland, TX', - 1214706 => 'Dallas, TX', - 1214712 => 'Dallas, TX', - 1214720 => 'Dallas, TX', - 1214726 => 'McKinney, TX', - 1214739 => 'Dallas, TX', - 1214740 => 'Dallas, TX', - 1214741 => 'Dallas, TX', - 1214742 => 'Dallas, TX', - 1214744 => 'Dallas, TX', - 1214745 => 'Dallas, TX', - 1214747 => 'Dallas, TX', - 1214748 => 'Dallas, TX', - 1214749 => 'Dallas, TX', - 1214750 => 'Dallas, TX', - 1214752 => 'Dallas, TX', - 1214754 => 'Dallas, TX', - 1214760 => 'Dallas, TX', - 1214768 => 'Dallas, TX', - 1214771 => 'Rockwall, TX', - 1214778 => 'West Spring Creek Parkway, Plano, TX', - 1214780 => 'Dallas, TX', - 1214800 => 'Dallas, TX', - 1214818 => 'Dallas, TX', - 1214819 => 'Dallas, TX', - 1214820 => 'Dallas, TX', - 1214821 => 'Dallas, TX', - 1214823 => 'Dallas, TX', - 1214824 => 'Dallas, TX', - 1214826 => 'Dallas, TX', - 1214827 => 'Dallas, TX', - 1214828 => 'Dallas, TX', - 1214855 => 'Dallas, TX', - 1214857 => 'Dallas, TX', - 1214871 => 'Dallas, TX', - 1214872 => 'Frisco, TX', - 1214879 => 'Dallas, TX', - 1214880 => 'Dallas, TX', - 1214887 => 'Dallas, TX', - 1214890 => 'Dallas, TX', - 1214891 => 'Dallas, TX', - 1214902 => 'Dallas, TX', - 1214904 => 'Dallas, TX', - 1214905 => 'Dallas, TX', - 1214920 => 'Dallas, TX', - 1214922 => 'Dallas, TX', - 1214939 => 'Dallas, TX', - 1214941 => 'Dallas, TX', - 1214942 => 'Dallas, TX', - 1214943 => 'Dallas, TX', - 1214946 => 'Dallas, TX', - 1214947 => 'Dallas, TX', - 1214948 => 'Dallas, TX', - 1214951 => 'Dallas, TX', - 1214953 => 'Dallas, TX', - 1214954 => 'Dallas, TX', - 1214956 => 'Dallas, TX', - 1214965 => 'Dallas, TX', - 1214969 => 'Dallas, TX', - 1214978 => 'Dallas, TX', - 1214979 => 'Dallas, TX', - 1214987 => 'Dallas, TX', - 1214989 => 'Dallas, TX', - 1214999 => 'Dallas, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1215.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1215.php deleted file mode 100644 index c65af37b0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1215.php +++ /dev/null @@ -1,258 +0,0 @@ - 'Pennsylvania', - 1215203 => 'Philadelphia, PA', - 1215218 => 'Philadelphia, PA', - 1215221 => 'Philadelphia, PA', - 1215222 => 'Philadelphia, PA', - 1215223 => 'Philadelphia, PA', - 1215224 => 'Philadelphia, PA', - 1215225 => 'Philadelphia, PA', - 1215226 => 'Philadelphia, PA', - 1215227 => 'Philadelphia, PA', - 1215228 => 'Philadelphia, PA', - 1215229 => 'Philadelphia, PA', - 1215230 => 'Doylestown, PA', - 1215232 => 'Philadelphia, PA', - 1215235 => 'Philadelphia, PA', - 1215236 => 'Philadelphia, PA', - 1215238 => 'Philadelphia, PA', - 1215241 => 'Philadelphia, PA', - 1215242 => 'Philadelphia, PA', - 1215244 => 'Bensalem, PA', - 1215245 => 'Bensalem, PA', - 1215247 => 'Philadelphia, PA', - 1215248 => 'Philadelphia, PA', - 1215256 => 'Harleysville, PA', - 1215258 => 'Perkasie, PA', - 1215268 => 'Philadelphia, PA', - 1215271 => 'Philadelphia, PA', - 1215276 => 'Philadelphia, PA', - 1215279 => 'Philadelphia, PA', - 1215281 => 'Philadelphia, PA', - 1215282 => 'Cherry Street, Philadelphia, PA', - 1215288 => 'Philadelphia, PA', - 1215289 => 'Philadelphia, PA', - 1215291 => 'Philadelphia, PA', - 1215295 => 'Morrisville, PA', - 1215321 => 'Yardley, PA', - 1215324 => 'Philadelphia, PA', - 1215329 => 'Philadelphia, PA', - 1215331 => 'Philadelphia, PA', - 1215332 => 'Philadelphia, PA', - 1215333 => 'Philadelphia, PA', - 1215334 => 'Philadelphia, PA', - 1215335 => 'Philadelphia, PA', - 1215336 => 'Philadelphia, PA', - 1215338 => 'Philadelphia, PA', - 1215339 => 'Philadelphia, PA', - 1215340 => 'Doylestown, PA', - 1215342 => 'Philadelphia, PA', - 1215343 => 'Warrington, PA', - 1215345 => 'Doylestown, PA', - 1215348 => 'Doylestown, PA', - 1215349 => 'Philadelphia, PA', - 1215351 => 'Philadelphia, PA', - 1215361 => 'Lansdale, PA', - 1215362 => 'Lansdale, PA', - 1215365 => 'Philadelphia, PA', - 1215368 => 'Lansdale, PA', - 1215382 => 'Philadelphia, PA', - 1215386 => 'Philadelphia, PA', - 1215387 => 'Philadelphia, PA', - 1215389 => 'Philadelphia, PA', - 1215413 => 'Philadelphia, PA', - 1215423 => 'Philadelphia, PA', - 1215424 => 'Philadelphia, PA', - 1215425 => 'Philadelphia, PA', - 1215426 => 'Philadelphia, PA', - 1215427 => 'Philadelphia, PA', - 1215428 => 'Morrisville, PA', - 1215437 => 'Philadelphia, PA', - 1215438 => 'Philadelphia, PA', - 1215440 => 'Philadelphia, PA', - 1215453 => 'Sellersville, PA', - 1215455 => 'Philadelphia, PA', - 1215456 => 'Philadelphia, PA', - 1215457 => 'Philadelphia, PA', - 1215462 => 'Philadelphia, PA', - 1215463 => 'Philadelphia, PA', - 1215464 => 'Philadelphia, PA', - 1215465 => 'Philadelphia, PA', - 1215467 => 'Philadelphia, PA', - 1215468 => 'Philadelphia, PA', - 1215471 => 'Philadelphia, PA', - 1215472 => 'Philadelphia, PA', - 1215473 => 'Philadelphia, PA', - 1215474 => 'Philadelphia, PA', - 1215476 => 'Philadelphia, PA', - 1215477 => 'Philadelphia, PA', - 1215481 => 'Abington, PA', - 1215482 => 'Philadelphia, PA', - 1215483 => 'Philadelphia, PA', - 1215487 => 'Philadelphia, PA', - 1215489 => 'Doylestown, PA', - 1215491 => 'Warrington, PA', - 1215492 => 'Philadelphia, PA', - 1215493 => 'Yardley, PA', - 1215496 => 'Philadelphia, PA', - 1215497 => 'Newtown, PA', - 1215503 => 'Philadelphia, PA', - 1215504 => 'Newtown, PA', - 1215508 => 'Philadelphia, PA', - 1215513 => 'Harleysville, PA', - 1215529 => 'Quakertown, PA', - 1215533 => 'Philadelphia, PA', - 1215535 => 'Philadelphia, PA', - 1215536 => 'Quakertown, PA', - 1215537 => 'Philadelphia, PA', - 1215538 => 'Quakertown, PA', - 1215543 => 'Philadelphia, PA', - 1215545 => 'Philadelphia, PA', - 1215546 => 'Philadelphia, PA', - 1215547 => 'Levittown, PA', - 1215548 => 'Philadelphia, PA', - 1215549 => 'Philadelphia, PA', - 1215551 => 'Philadelphia, PA', - 1215557 => 'Philadelphia, PA', - 1215561 => 'Philadelphia, PA', - 1215563 => 'Philadelphia, PA', - 1215564 => 'Philadelphia, PA', - 1215567 => 'Philadelphia, PA', - 1215568 => 'Philadelphia, PA', - 1215569 => 'Philadelphia, PA', - 1215574 => 'Philadelphia, PA', - 1215575 => 'Philadelphia, PA', - 1215579 => 'Newtown, PA', - 1215587 => 'Philadelphia, PA', - 1215590 => 'Philadelphia, PA', - 1215592 => 'Philadelphia, PA', - 1215612 => 'Philadelphia, PA', - 1215613 => 'Philadelphia, PA', - 1215615 => 'Philadelphia, PA', - 1215624 => 'Philadelphia, PA', - 1215625 => 'Philadelphia, PA', - 1215627 => 'Philadelphia, PA', - 1215629 => 'Philadelphia, PA', - 1215632 => 'Philadelphia, PA', - 1215633 => 'Bensalem, PA', - 1215634 => 'Philadelphia, PA', - 1215635 => 'Elkins Park, PA', - 1215636 => 'Philadelphia, PA', - 1215637 => 'Philadelphia, PA', - 1215638 => 'Bensalem, PA', - 1215639 => 'Bensalem, PA', - 1215657 => 'Willow Grove, PA', - 1215659 => 'Willow Grove, PA', - 1215662 => 'Philadelphia, PA', - 1215665 => 'Philadelphia, PA', - 1215671 => 'Philadelphia, PA', - 1215673 => 'Philadelphia, PA', - 1215676 => 'Philadelphia, PA', - 1215677 => 'Philadelphia, PA', - 1215684 => 'Philadelphia, PA', - 1215685 => 'Philadelphia, PA', - 1215686 => 'Philadelphia, PA', - 1215698 => 'Philadelphia, PA', - 1215699 => 'North Wales, PA', - 1215702 => 'Langhorne, PA', - 1215707 => 'Philadelphia, PA', - 1215708 => 'Philadelphia, PA', - 1215710 => 'Langhorne, PA', - 1215721 => 'Souderton, PA', - 1215722 => 'Philadelphia, PA', - 1215723 => 'Souderton, PA', - 1215724 => 'Philadelphia, PA', - 1215725 => 'Philadelphia, PA', - 1215726 => 'Philadelphia, PA', - 1215727 => 'Philadelphia, PA', - 1215728 => 'Philadelphia, PA', - 1215729 => 'Philadelphia, PA', - 1215731 => 'Philadelphia, PA', - 1215732 => 'Philadelphia, PA', - 1215735 => 'Philadelphia, PA', - 1215736 => 'Morrisville, PA', - 1215739 => 'Philadelphia, PA', - 1215741 => 'Langhorne, PA', - 1215742 => 'Philadelphia, PA', - 1215743 => 'Philadelphia, PA', - 1215744 => 'Philadelphia, PA', - 1215745 => 'Philadelphia, PA', - 1215746 => 'Philadelphia, PA', - 1215747 => 'Philadelphia, PA', - 1215748 => 'Philadelphia, PA', - 1215750 => 'Langhorne, PA', - 1215751 => 'Philadelphia, PA', - 1215752 => 'Langhorne, PA', - 1215755 => 'Philadelphia, PA', - 1215757 => 'Langhorne, PA', - 1215762 => 'Philadelphia, PA', - 1215763 => 'Philadelphia, PA', - 1215765 => 'Philadelphia, PA', - 1215769 => 'Philadelphia, PA', - 1215772 => 'Philadelphia, PA', - 1215781 => 'Bristol, PA', - 1215782 => 'Elkins Park, PA', - 1215784 => 'Willow Grove, PA', - 1215785 => 'Bristol, PA', - 1215787 => 'Philadelphia, PA', - 1215788 => 'Bristol, PA', - 1215790 => 'Philadelphia, PA', - 1215821 => 'Philadelphia, PA', - 1215823 => 'Philadelphia, PA', - 1215824 => 'Philadelphia, PA', - 1215829 => 'Philadelphia, PA', - 1215830 => 'Willow Grove, PA', - 1215831 => 'Philadelphia, PA', - 1215842 => 'Philadelphia, PA', - 1215843 => 'Philadelphia, PA', - 1215844 => 'Philadelphia, PA', - 1215848 => 'Philadelphia, PA', - 1215849 => 'Philadelphia, PA', - 1215851 => 'Philadelphia, PA', - 1215854 => 'Philadelphia, PA', - 1215855 => 'Lansdale, PA', - 1215856 => 'Philadelphia, PA', - 1215860 => 'Newtown, PA', - 1215862 => 'New Hope, PA', - 1215864 => 'Philadelphia, PA', - 1215871 => 'Philadelphia, PA', - 1215875 => 'Philadelphia, PA', - 1215877 => 'Philadelphia, PA', - 1215878 => 'Philadelphia, PA', - 1215879 => 'Philadelphia, PA', - 1215891 => 'Langhorne, PA', - 1215893 => 'Philadelphia, PA', - 1215898 => 'Philadelphia, PA', - 1215904 => 'Philadelphia, PA', - 1215914 => 'Huntingdon Vly, PA', - 1215918 => 'Warrington, PA', - 1215921 => 'Philadelphia, PA', - 1215922 => 'Philadelphia, PA', - 1215923 => 'Philadelphia, PA', - 1215924 => 'Philadelphia, PA', - 1215925 => 'Philadelphia, PA', - 1215927 => 'Philadelphia, PA', - 1215928 => 'Philadelphia, PA', - 1215941 => 'Philadelphia, PA', - 1215943 => 'Levittown, PA', - 1215945 => 'Levittown, PA', - 1215946 => 'Levittown, PA', - 1215949 => 'Levittown, PA', - 1215951 => 'Philadelphia, PA', - 1215952 => 'Philadelphia, PA', - 1215955 => 'Philadelphia, PA', - 1215963 => 'Philadelphia, PA', - 1215968 => 'Newtown, PA', - 1215969 => 'Philadelphia, PA', - 1215972 => 'Philadelphia, PA', - 1215977 => 'Philadelphia, PA', - 1215978 => 'Philadelphia, PA', - 1215985 => 'Philadelphia, PA', - 1215988 => 'Philadelphia, PA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1216.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1216.php deleted file mode 100644 index a7603f318..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1216.php +++ /dev/null @@ -1,129 +0,0 @@ - 'Ohio', - 1216229 => 'Cleveland, OH', - 1216231 => 'Cleveland, OH', - 1216241 => 'Cleveland, OH', - 1216249 => 'Cleveland, OH', - 1216251 => 'Cleveland, OH', - 1216252 => 'Cleveland, OH', - 1216261 => 'Cleveland, OH', - 1216265 => 'Cleveland, OH', - 1216267 => 'Cleveland, OH', - 1216268 => 'Cleveland, OH', - 1216271 => 'Cleveland, OH', - 1216281 => 'Cleveland, OH', - 1216283 => 'Cleveland, OH', - 1216289 => 'Cleveland, OH', - 1216291 => 'Cleveland, OH', - 1216292 => 'Cleveland, OH', - 1216297 => 'Cleveland, OH', - 1216298 => 'Cleveland, OH', - 1216320 => 'Cleveland, OH', - 1216321 => 'Cleveland, OH', - 1216328 => 'Cleveland, OH', - 1216332 => 'Cleveland, OH', - 1216341 => 'Cleveland, OH', - 1216344 => 'Cleveland, OH', - 1216348 => 'Cleveland, OH', - 1216351 => 'Cleveland, OH', - 1216360 => 'Cleveland, OH', - 1216361 => 'Cleveland, OH', - 1216362 => 'Cleveland, OH', - 1216363 => 'Cleveland, OH', - 1216368 => 'Cleveland, OH', - 1216371 => 'Cleveland, OH', - 1216378 => 'Cleveland, OH', - 1216381 => 'Cleveland, OH', - 1216382 => 'Cleveland, OH', - 1216383 => 'Cleveland, OH', - 1216391 => 'Cleveland, OH', - 1216397 => 'Cleveland, OH', - 1216398 => 'Cleveland, OH', - 1216421 => 'Cleveland, OH', - 1216426 => 'Cleveland, OH', - 1216429 => 'Cleveland, OH', - 1216431 => 'Cleveland, OH', - 1216432 => 'Cleveland, OH', - 1216433 => 'Cleveland, OH', - 1216441 => 'Cleveland, OH', - 1216443 => 'Cleveland, OH', - 1216444 => 'Cleveland, OH', - 1216445 => 'Cleveland, OH', - 1216451 => 'Cleveland, OH', - 1216459 => 'Cleveland, OH', - 1216464 => 'Cleveland, OH', - 1216475 => 'Cleveland, OH', - 1216476 => 'Cleveland, OH', - 1216479 => 'Cleveland, OH', - 1216481 => 'Cleveland, OH', - 1216486 => 'Cleveland, OH', - 1216514 => 'Cleveland, OH', - 1216515 => 'Cleveland, OH', - 1216518 => 'Cleveland, OH', - 1216522 => 'Cleveland, OH', - 1216529 => 'Cleveland, OH', - 1216531 => 'Cleveland, OH', - 1216541 => 'Cleveland, OH', - 1216561 => 'Cleveland, OH', - 1216566 => 'Cleveland, OH', - 1216574 => 'Cleveland, OH', - 1216579 => 'Cleveland, OH', - 1216581 => 'Cleveland, OH', - 1216583 => 'Cleveland, OH', - 1216586 => 'Cleveland, OH', - 1216587 => 'Cleveland, OH', - 1216589 => 'Cleveland, OH', - 1216595 => 'Cleveland, OH', - 1216621 => 'Cleveland, OH', - 1216622 => 'Cleveland, OH', - 1216623 => 'Cleveland, OH', - 1216631 => 'Cleveland, OH', - 1216641 => 'Cleveland, OH', - 1216642 => 'Cleveland, OH', - 1216651 => 'Cleveland, OH', - 1216661 => 'Cleveland, OH', - 1216662 => 'Cleveland, OH', - 1216663 => 'Cleveland, OH', - 1216664 => 'Cleveland, OH', - 1216671 => 'Cleveland, OH', - 1216676 => 'Cleveland, OH', - 1216681 => 'Cleveland, OH', - 1216687 => 'Cleveland, OH', - 1216688 => 'Cleveland, OH', - 1216691 => 'Cleveland, OH', - 1216692 => 'Cleveland, OH', - 1216696 => 'Cleveland, OH', - 1216721 => 'Cleveland, OH', - 1216731 => 'Cleveland, OH', - 1216741 => 'Cleveland, OH', - 1216749 => 'Cleveland, OH', - 1216751 => 'Cleveland, OH', - 1216752 => 'Cleveland, OH', - 1216761 => 'Cleveland, OH', - 1216765 => 'Cleveland, OH', - 1216771 => 'Cleveland, OH', - 1216778 => 'Cleveland, OH', - 1216781 => 'Cleveland, OH', - 1216791 => 'Cleveland, OH', - 1216844 => 'Cleveland, OH', - 1216851 => 'Cleveland, OH', - 1216861 => 'Cleveland, OH', - 1216862 => 'Cleveland, OH', - 1216881 => 'Cleveland, OH', - 1216883 => 'Cleveland, OH', - 1216896 => 'Cleveland, OH', - 1216898 => 'Cleveland, OH', - 1216921 => 'Cleveland, OH', - 1216932 => 'Cleveland, OH', - 1216941 => 'Cleveland, OH', - 1216957 => 'Cleveland, OH', - 1216961 => 'Cleveland, OH', - 1216986 => 'Cleveland, OH', - 1216991 => 'Cleveland, OH', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1217.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1217.php deleted file mode 100644 index 0d9f25078..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1217.php +++ /dev/null @@ -1,141 +0,0 @@ - 'Illinois', - 1217222 => 'Quincy, IL', - 1217223 => 'Quincy, IL', - 1217224 => 'Quincy, IL', - 1217226 => 'Assumption, IL', - 1217228 => 'Quincy, IL', - 1217229 => 'Raymond, IL', - 1217234 => 'Mattoon, IL', - 1217235 => 'Mattoon, IL', - 1217239 => 'Champaign, IL', - 1217241 => 'Springfield, IL', - 1217243 => 'Jacksonville, IL', - 1217245 => 'Jacksonville, IL', - 1217253 => 'Tuscola, IL', - 1217258 => 'Mattoon, IL', - 1217267 => 'Westville, IL', - 1217268 => 'Arcola, IL', - 1217283 => 'Hoopeston, IL', - 1217285 => 'Pittsfield, IL', - 1217287 => 'Taylorville, IL', - 1217322 => 'Rushville, IL', - 1217323 => 'Beardstown, IL', - 1217324 => 'Litchfield, IL', - 1217326 => 'Champaign, IL', - 1217328 => 'Urbana, IL', - 1217330 => 'Decatur, IL', - 1217333 => 'Urbana, IL', - 1217337 => 'Urbana, IL', - 1217342 => 'Effingham, IL', - 1217344 => 'Urbana, IL', - 1217345 => 'Charleston, IL', - 1217346 => 'Oakland, IL', - 1217347 => 'Effingham, IL', - 1217348 => 'Charleston, IL', - 1217351 => 'Champaign, IL', - 1217352 => 'Champaign, IL', - 1217355 => 'Champaign, IL', - 1217356 => 'Champaign, IL', - 1217357 => 'Carthage, IL', - 1217359 => 'Champaign, IL', - 1217366 => 'Champaign, IL', - 1217367 => 'Urbana, IL', - 1217373 => 'Champaign, IL', - 1217374 => 'White Hall, IL', - 1217379 => 'Paxton, IL', - 1217382 => 'Martinsville, IL', - 1217383 => 'Urbana, IL', - 1217384 => 'Urbana, IL', - 1217398 => 'Champaign, IL', - 1217422 => 'Decatur, IL', - 1217423 => 'Decatur, IL', - 1217424 => 'Decatur, IL', - 1217425 => 'Decatur, IL', - 1217428 => 'Decatur, IL', - 1217429 => 'Decatur, IL', - 1217431 => 'Danville, IL', - 1217438 => 'Auburn, IL', - 1217442 => 'Danville, IL', - 1217443 => 'Danville, IL', - 1217446 => 'Danville, IL', - 1217452 => 'Virginia, IL', - 1217453 => 'Nauvoo, IL', - 1217463 => 'Paris, IL', - 1217464 => 'Decatur, IL', - 1217465 => 'Paris, IL', - 1217466 => 'Paris, IL', - 1217469 => 'St. Joseph, IL', - 1217479 => 'Jacksonville, IL', - 1217482 => 'Mason City, IL', - 1217483 => 'Chatham, IL', - 1217498 => 'Rochester, IL', - 1217522 => 'Springfield, IL', - 1217523 => 'Springfield, IL', - 1217525 => 'Springfield, IL', - 1217528 => 'Springfield, IL', - 1217529 => 'Springfield, IL', - 1217532 => 'Hillsboro, IL', - 1217536 => 'Effingham, IL', - 1217543 => 'Arthur, IL', - 1217544 => 'Springfield, IL', - 1217545 => 'Springfield, IL', - 1217546 => 'Springfield, IL', - 1217554 => 'Danville, IL', - 1217562 => 'Pana, IL', - 1217563 => 'Nokomis, IL', - 1217585 => 'Springfield, IL', - 1217586 => 'Mahomet, IL', - 1217607 => 'Champaign, IL', - 1217627 => 'Girard, IL', - 1217629 => 'Riverton, IL', - 1217632 => 'Petersburg, IL', - 1217662 => 'Georgetown, IL', - 1217670 => 'Springfield, IL', - 1217679 => 'Springfield, IL', - 1217698 => 'Springfield, IL', - 1217726 => 'Springfield, IL', - 1217728 => 'Sullivan, IL', - 1217732 => 'Lincoln, IL', - 1217735 => 'Lincoln, IL', - 1217742 => 'Winchester, IL', - 1217744 => 'Springfield, IL', - 1217753 => 'Springfield, IL', - 1217762 => 'Monticello, IL', - 1217768 => 'Moweaqua, IL', - 1217773 => 'Mount Sterling, IL', - 1217774 => 'Shelbyville, IL', - 1217782 => 'Springfield, IL', - 1217784 => 'Gibson City, IL', - 1217787 => 'Springfield, IL', - 1217788 => 'Springfield, IL', - 1217789 => 'Springfield, IL', - 1217792 => 'Mount Pulaski, IL', - 1217793 => 'Springfield, IL', - 1217824 => 'Taylorville, IL', - 1217826 => 'Marshall, IL', - 1217832 => 'Villa Grove, IL', - 1217839 => 'Gillespie, IL', - 1217847 => 'Hamilton, IL', - 1217849 => 'Toledo, IL', - 1217854 => 'Carlinville, IL', - 1217857 => 'Teutopolis, IL', - 1217872 => 'Decatur, IL', - 1217875 => 'Decatur, IL', - 1217876 => 'Decatur, IL', - 1217877 => 'Decatur, IL', - 1217892 => 'Rantoul, IL', - 1217893 => 'Rantoul, IL', - 1217895 => 'Neoga, IL', - 1217923 => 'Greenup, IL', - 1217932 => 'Casey, IL', - 1217935 => 'Clinton, IL', - 1217942 => 'Carrollton, IL', - 1217965 => 'Virden, IL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1218.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1218.php deleted file mode 100644 index f6485379b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1218.php +++ /dev/null @@ -1,128 +0,0 @@ - 'Minnesota', - 1218224 => 'Laporte, MN', - 1218226 => 'Silver Bay, MN', - 1218229 => 'Aurora, MN', - 1218233 => 'Moorhead, MN', - 1218236 => 'Moorhead, MN', - 1218237 => 'Park Rapids, MN', - 1218238 => 'Lake Park, MN', - 1218246 => 'Deer River, MN', - 1218249 => 'Duluth, MN', - 1218253 => 'Red Lake Falls, MN', - 1218254 => 'Chisholm, MN', - 1218262 => 'Hibbing, MN', - 1218263 => 'Hibbing, MN', - 1218281 => 'Crookston, MN', - 1218283 => 'Internatl Falls, MN', - 1218285 => 'Internatl Falls, MN', - 1218287 => 'Moorhead, MN', - 1218299 => 'Moorhead, MN', - 1218326 => 'Grand Rapids, MN', - 1218327 => 'Grand Rapids, MN', - 1218333 => 'Bemidji, MN', - 1218334 => 'Frazee, MN', - 1218335 => 'Cass Lake, MN', - 1218338 => 'Parkers Prairie, MN', - 1218342 => 'Vergas, MN', - 1218346 => 'Perham, MN', - 1218348 => 'Duluth, MN', - 1218354 => 'Barnesville, MN', - 1218363 => 'Longville, MN', - 1218365 => 'Ely, MN', - 1218367 => 'Ottertail, MN', - 1218384 => 'Carlton, MN', - 1218385 => 'New York Mills, MN', - 1218386 => 'Warroad, MN', - 1218387 => 'Grand Marais, MN', - 1218435 => 'Fosston, MN', - 1218436 => 'Karlstad, MN', - 1218444 => 'Bemidji, MN', - 1218454 => 'Brainerd, MN', - 1218463 => 'Roseau, MN', - 1218464 => 'Duluth, MN', - 1218483 => 'Hawley, MN', - 1218485 => 'Moose Lake, MN', - 1218525 => 'Duluth, MN', - 1218546 => 'Crosby, MN', - 1218547 => 'Walker, MN', - 1218564 => 'Menahga, MN', - 1218566 => 'Remer, MN', - 1218568 => 'Pequot Lakes, MN', - 1218583 => 'Henning, MN', - 1218587 => 'Pine River, MN', - 1218624 => 'Duluth, MN', - 1218625 => 'Duluth, MN', - 1218626 => 'Duluth, MN', - 1218628 => 'Duluth, MN', - 1218631 => 'Wadena, MN', - 1218634 => 'Baudette, MN', - 1218643 => 'Breckenridge, MN', - 1218652 => 'Nevis, MN', - 1218666 => 'Cook, MN', - 1218675 => 'Hackensack, MN', - 1218679 => 'Red Lake, MN', - 1218681 => 'Thief River Fls, MN', - 1218685 => 'Elbow Lake, MN', - 1218687 => 'Erskine, MN', - 1218692 => 'Crosslake, MN', - 1218694 => 'Bagley, MN', - 1218720 => 'Duluth, MN', - 1218721 => 'Duluth, MN', - 1218722 => 'Duluth, MN', - 1218723 => 'Duluth, MN', - 1218724 => 'Duluth, MN', - 1218726 => 'Duluth, MN', - 1218727 => 'Duluth, MN', - 1218728 => 'Duluth, MN', - 1218730 => 'Duluth, MN', - 1218732 => 'Park Rapids, MN', - 1218733 => 'Duluth, MN', - 1218736 => 'Fergus Falls, MN', - 1218739 => 'Fergus Falls, MN', - 1218740 => 'Duluth, MN', - 1218741 => 'Virginia, MN', - 1218743 => 'Bigfork, MN', - 1218744 => 'Eveleth, MN', - 1218745 => 'Warren, MN', - 1218746 => 'Pillager, MN', - 1218749 => 'Virginia, MN', - 1218751 => 'Bemidji, MN', - 1218753 => 'Tower, MN', - 1218759 => 'Bemidji, MN', - 1218763 => 'Emily, MN', - 1218768 => 'McGregor, MN', - 1218773 => 'East Grand Forks, MN', - 1218782 => 'Greenbush, MN', - 1218784 => 'Ada, MN', - 1218786 => 'Duluth, MN', - 1218824 => 'Brainerd, MN', - 1218825 => 'Brainerd, MN', - 1218828 => 'Brainerd, MN', - 1218829 => 'Brainerd, MN', - 1218834 => 'Two Harbors, MN', - 1218835 => 'Blackduck, MN', - 1218843 => 'Hallock, MN', - 1218844 => 'Detroit Lakes, MN', - 1218846 => 'Detroit Lakes, MN', - 1218847 => 'Detroit Lakes, MN', - 1218863 => 'Pelican Rapids, MN', - 1218864 => 'Battle Lake, MN', - 1218878 => 'Cloquet, MN', - 1218879 => 'Cloquet, MN', - 1218885 => 'Nashwauk, MN', - 1218894 => 'Staples, MN', - 1218927 => 'Aitkin, MN', - 1218935 => 'Mahnomen, MN', - 1218945 => 'Fertile, MN', - 1218963 => 'Nisswa, MN', - 1218983 => 'Ogema, MN', - 1218998 => 'Fergus Falls, MN', - 1218999 => 'Grand Rapids, MN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1219.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1219.php deleted file mode 100644 index 633ef44e3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1219.php +++ /dev/null @@ -1,99 +0,0 @@ - 'Indiana', - 1219226 => 'Crown Point, IN', - 1219227 => 'Schererville, IN', - 1219253 => 'Monon, IN', - 1219261 => 'Remington, IN', - 1219263 => 'Valparaiso, IN', - 1219279 => 'Wolcott, IN', - 1219285 => 'Morocco, IN', - 1219322 => 'Schererville, IN', - 1219324 => 'La Porte, IN', - 1219325 => 'La Porte, IN', - 1219326 => 'La Porte, IN', - 1219345 => 'De Motte, IN', - 1219362 => 'La Porte, IN', - 1219365 => 'St. John, IN', - 1219369 => 'La Porte, IN', - 1219374 => 'Cedar Lake, IN', - 1219392 => 'East Chicago, IN', - 1219395 => 'Chesterton, IN', - 1219397 => 'East Chicago, IN', - 1219398 => 'East Chicago, IN', - 1219462 => 'Valparaiso, IN', - 1219464 => 'Valparaiso, IN', - 1219465 => 'Valparaiso, IN', - 1219472 => 'Merrillville, IN', - 1219473 => 'Whiting, IN', - 1219474 => 'Kentland, IN', - 1219476 => 'Valparaiso, IN', - 1219477 => 'Valparaiso, IN', - 1219513 => 'Munster, IN', - 1219531 => 'Valparaiso, IN', - 1219548 => 'Valparaiso, IN', - 1219659 => 'Whiting, IN', - 1219661 => 'Crown Point, IN', - 1219662 => 'Crown Point, IN', - 1219663 => 'Crown Point, IN', - 1219696 => 'Lowell, IN', - 1219733 => 'Wanatah, IN', - 1219736 => 'Merrillville, IN', - 1219738 => 'Merrillville, IN', - 1219756 => 'Merrillville, IN', - 1219757 => 'Crown Point, IN', - 1219759 => 'Valparaiso, IN', - 1219762 => 'Portage, IN', - 1219763 => 'Portage, IN', - 1219764 => 'Portage, IN', - 1219766 => 'Kouts, IN', - 1219769 => 'Merrillville, IN', - 1219778 => 'Rolling Prairie, IN', - 1219785 => 'Westville, IN', - 1219791 => 'Merrillville, IN', - 1219836 => 'Munster, IN', - 1219838 => 'Highland, IN', - 1219844 => 'Hammond, IN', - 1219845 => 'Hammond, IN', - 1219852 => 'Hammond, IN', - 1219853 => 'Hammond, IN', - 1219864 => 'Schererville, IN', - 1219866 => 'Rensselaer, IN', - 1219872 => 'Michigan City, IN', - 1219873 => 'Michigan City, IN', - 1219874 => 'Michigan City, IN', - 1219878 => 'Michigan City, IN', - 1219879 => 'Michigan City, IN', - 1219881 => 'Gary, IN', - 1219882 => 'Gary, IN', - 1219884 => 'Gary, IN', - 1219885 => 'Gary, IN', - 1219886 => 'Gary, IN', - 1219887 => 'Gary, IN', - 1219921 => 'Chesterton, IN', - 1219923 => 'Highland, IN', - 1219926 => 'Chesterton, IN', - 1219931 => 'Hammond, IN', - 1219932 => 'Hammond, IN', - 1219933 => 'Hammond, IN', - 1219937 => 'Hammond, IN', - 1219938 => 'Gary, IN', - 1219942 => 'Hobart, IN', - 1219944 => 'Gary, IN', - 1219945 => 'Hobart, IN', - 1219947 => 'Hobart, IN', - 1219949 => 'Gary, IN', - 1219956 => 'Wheatfield, IN', - 1219962 => 'Lake Station, IN', - 1219972 => 'Highland, IN', - 1219977 => 'Gary, IN', - 1219980 => 'Gary, IN', - 1219987 => 'De Motte, IN', - 1219989 => 'Hammond, IN', - 1219996 => 'Hebron, IN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1220.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1220.php deleted file mode 100644 index e161f9c8b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1220.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ohio', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1224.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1224.php deleted file mode 100644 index 9a68e418b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1224.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Illinois', - 1224610 => 'North Chicago, IL', - 1224653 => 'Schaumburg, IL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1225.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1225.php deleted file mode 100644 index 7d38bd333..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1225.php +++ /dev/null @@ -1,107 +0,0 @@ - 'Louisiana', - 1225201 => 'Baton Rouge, LA', - 1225214 => 'Baton Rouge, LA', - 1225216 => 'Baton Rouge, LA', - 1225218 => 'Baton Rouge, LA', - 1225222 => 'Greensburg, LA', - 1225231 => 'Baton Rouge, LA', - 1225243 => 'Denham Springs, LA', - 1225246 => 'Baton Rouge, LA', - 1225248 => 'Baton Rouge, LA', - 1225261 => 'Baton Rouge, LA', - 1225262 => 'Baton Rouge, LA', - 1225265 => 'Vacherie, LA', - 1225271 => 'Denham Springs, LA', - 1225272 => 'Baton Rouge, LA', - 1225273 => 'Baton Rouge, LA', - 1225275 => 'Baton Rouge, LA', - 1225291 => 'Baton Rouge, LA', - 1225292 => 'Baton Rouge, LA', - 1225293 => 'Baton Rouge, LA', - 1225294 => 'Springfield, LA', - 1225295 => 'Baton Rouge, LA', - 1225296 => 'Baton Rouge, LA', - 1225298 => 'Baton Rouge, LA', - 1225302 => 'Baton Rouge, LA', - 1225336 => 'Baton Rouge, LA', - 1225341 => 'Baton Rouge, LA', - 1225342 => 'Baton Rouge, LA', - 1225343 => 'Baton Rouge, LA', - 1225344 => 'Baton Rouge, LA', - 1225346 => 'Baton Rouge, LA', - 1225355 => 'Baton Rouge, LA', - 1225356 => 'Baton Rouge, LA', - 1225357 => 'Baton Rouge, LA', - 1225358 => 'Baton Rouge, LA', - 1225372 => 'Baton Rouge, LA', - 1225381 => 'Baton Rouge, LA', - 1225382 => 'Baton Rouge, LA', - 1225383 => 'Baton Rouge, LA', - 1225387 => 'Baton Rouge, LA', - 1225388 => 'Baton Rouge, LA', - 1225389 => 'Baton Rouge, LA', - 1225448 => 'Baton Rouge, LA', - 1225473 => 'Donaldsonville, LA', - 1225545 => 'White Castle, LA', - 1225578 => 'Baton Rouge, LA', - 1225615 => 'Baton Rouge, LA', - 1225621 => 'Gonzales, LA', - 1225622 => 'Prairieville, LA', - 1225634 => 'Jackson, LA', - 1225635 => 'St. Francisville, LA', - 1225636 => 'Baton Rouge, LA', - 1225637 => 'Livonia, LA', - 1225638 => 'New Roads, LA', - 1225642 => 'St. Gabriel, LA', - 1225644 => 'Gonzales, LA', - 1225647 => 'Gonzales, LA', - 1225654 => 'Zachary, LA', - 1225658 => 'Zachary, LA', - 1225663 => 'Baton Rouge, LA', - 1225664 => 'Denham Springs, LA', - 1225665 => 'Denham Springs, LA', - 1225667 => 'Denham Springs, LA', - 1225673 => 'Prairieville, LA', - 1225675 => 'Sorrento, LA', - 1225677 => 'Prairieville, LA', - 1225683 => 'Clinton, LA', - 1225686 => 'Livingston, LA', - 1225687 => 'Plaquemine, LA', - 1225744 => 'Prairieville, LA', - 1225751 => 'Baton Rouge, LA', - 1225752 => 'Baton Rouge, LA', - 1225753 => 'Baton Rouge, LA', - 1225754 => 'Baton Rouge, LA', - 1225755 => 'Baton Rouge, LA', - 1225756 => 'Baton Rouge, LA', - 1225757 => 'Baton Rouge, LA', - 1225761 => 'Baton Rouge, LA', - 1225763 => 'Baton Rouge, LA', - 1225765 => 'Baton Rouge, LA', - 1225766 => 'Baton Rouge, LA', - 1225767 => 'Baton Rouge, LA', - 1225768 => 'Baton Rouge, LA', - 1225769 => 'Baton Rouge, LA', - 1225771 => 'Baton Rouge, LA', - 1225774 => 'Baker, LA', - 1225775 => 'Baker, LA', - 1225778 => 'Baton Rouge, LA', - 1225791 => 'Denham Springs, LA', - 1225810 => 'Baton Rouge, LA', - 1225819 => 'Baton Rouge, LA', - 1225922 => 'Baton Rouge, LA', - 1225923 => 'Baton Rouge, LA', - 1225924 => 'Baton Rouge, LA', - 1225925 => 'Baton Rouge, LA', - 1225926 => 'Baton Rouge, LA', - 1225927 => 'Baton Rouge, LA', - 1225928 => 'Baton Rouge, LA', - 1225929 => 'Baton Rouge, LA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1226.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1226.php deleted file mode 100644 index e6e6df9f9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1226.php +++ /dev/null @@ -1,10 +0,0 @@ - 'Ontario', - 1226663 => 'London, ON', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1228.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1228.php deleted file mode 100644 index c76f124d7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1228.php +++ /dev/null @@ -1,50 +0,0 @@ - 'Mississippi', - 1228206 => 'Gulfport, MS', - 1228207 => 'Biloxi, MS', - 1228214 => 'Gulfport, MS', - 1228328 => 'Gulfport, MS', - 1228374 => 'Biloxi, MS', - 1228385 => 'Biloxi, MS', - 1228388 => 'Biloxi, MS', - 1228432 => 'Biloxi, MS', - 1228435 => 'Biloxi, MS', - 1228436 => 'Biloxi, MS', - 1228452 => 'Pass Christian, MS', - 1228463 => 'Bay St. Louis, MS', - 1228466 => 'Bay St. Louis, MS', - 1228467 => 'Bay St. Louis, MS', - 1228474 => 'Moss Point, MS', - 1228475 => 'Moss Point, MS', - 1228497 => 'Gautier, MS', - 1228523 => 'Biloxi, MS', - 1228539 => 'Gulfport, MS', - 1228575 => 'Gulfport, MS', - 1228588 => 'Moss Point, MS', - 1228594 => 'Biloxi, MS', - 1228604 => 'Gulfport, MS', - 1228762 => 'Pascagoula, MS', - 1228769 => 'Pascagoula, MS', - 1228809 => 'Pascagoula, MS', - 1228818 => 'Ocean Springs, MS', - 1228822 => 'Gulfport, MS', - 1228826 => 'Vancleave, MS', - 1228831 => 'Gulfport, MS', - 1228832 => 'Gulfport, MS', - 1228863 => 'Gulfport, MS', - 1228864 => 'Gulfport, MS', - 1228865 => 'Gulfport, MS', - 1228867 => 'Gulfport, MS', - 1228868 => 'Gulfport, MS', - 1228872 => 'Ocean Springs, MS', - 1228875 => 'Ocean Springs, MS', - 1228896 => 'Gulfport, MS', - 1228897 => 'Gulfport, MS', - 1228938 => 'Pascagoula, MS', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1229.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1229.php deleted file mode 100644 index 5a2c6151d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1229.php +++ /dev/null @@ -1,86 +0,0 @@ - 'Georgia', - 1229219 => 'Valdosta, GA', - 1229225 => 'Thomasville, GA', - 1229226 => 'Thomasville, GA', - 1229227 => 'Thomasville, GA', - 1229228 => 'Thomasville, GA', - 1229241 => 'Valdosta, GA', - 1229242 => 'Valdosta, GA', - 1229243 => 'Bainbridge, GA', - 1229244 => 'Valdosta, GA', - 1229245 => 'Valdosta, GA', - 1229246 => 'Bainbridge, GA', - 1229247 => 'Valdosta, GA', - 1229248 => 'Bainbridge, GA', - 1229249 => 'Valdosta, GA', - 1229253 => 'Valdosta, GA', - 1229259 => 'Valdosta, GA', - 1229263 => 'Quitman, GA', - 1229268 => 'Vienna, GA', - 1229271 => 'Cordele, GA', - 1229273 => 'Cordele, GA', - 1229276 => 'Cordele, GA', - 1229293 => 'Valdosta, GA', - 1229294 => 'Pelham, GA', - 1229312 => 'Albany, GA', - 1229333 => 'Valdosta, GA', - 1229336 => 'Camilla, GA', - 1229365 => 'Rochelle, GA', - 1229377 => 'Cairo, GA', - 1229382 => 'Tifton, GA', - 1229386 => 'Tifton, GA', - 1229387 => 'Tifton, GA', - 1229388 => 'Tifton, GA', - 1229391 => 'Tifton, GA', - 1229420 => 'Albany, GA', - 1229423 => 'Fitzgerald, GA', - 1229424 => 'Fitzgerald, GA', - 1229430 => 'Albany, GA', - 1229431 => 'Albany, GA', - 1229432 => 'Albany, GA', - 1229434 => 'Albany, GA', - 1229435 => 'Albany, GA', - 1229436 => 'Albany, GA', - 1229438 => 'Albany, GA', - 1229439 => 'Albany, GA', - 1229446 => 'Albany, GA', - 1229468 => 'Ocilla, GA', - 1229482 => 'Lakeland, GA', - 1229496 => 'Albany, GA', - 1229524 => 'Donalsonville, GA', - 1229559 => 'Lake Park, GA', - 1229567 => 'Ashburn, GA', - 1229639 => 'Albany, GA', - 1229649 => 'Buena Vista, GA', - 1229671 => 'Valdosta, GA', - 1229686 => 'Nashville, GA', - 1229723 => 'Blakely, GA', - 1229732 => 'Cuthbert, GA', - 1229758 => 'Colquitt, GA', - 1229759 => 'Leesburg, GA', - 1229768 => 'Fort Gaines, GA', - 1229776 => 'Sylvester, GA', - 1229777 => 'Sylvester, GA', - 1229794 => 'Hahira, GA', - 1229868 => 'McRae, GA', - 1229878 => 'Albany, GA', - 1229883 => 'Albany, GA', - 1229888 => 'Albany, GA', - 1229889 => 'Albany, GA', - 1229890 => 'Moultrie, GA', - 1229891 => 'Moultrie, GA', - 1229896 => 'Adel, GA', - 1229924 => 'Americus, GA', - 1229928 => 'Americus, GA', - 1229931 => 'Americus, GA', - 1229937 => 'Ellaville, GA', - 1229985 => 'Moultrie, GA', - 1229995 => 'Dawson, GA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1231.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1231.php deleted file mode 100644 index 1b813a04c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1231.php +++ /dev/null @@ -1,106 +0,0 @@ - 'Michigan', - 1231223 => 'Traverse City, MI', - 1231228 => 'Cedar, MI', - 1231237 => 'Charlevoix, MI', - 1231238 => 'Indian River, MI', - 1231258 => 'Kalkaska, MI', - 1231263 => 'Kingsley, MI', - 1231264 => 'Elk Rapids, MI', - 1231267 => 'Williamsburg, MI', - 1231271 => 'Suttons Bay, MI', - 1231276 => 'Interlochen, MI', - 1231325 => 'Honor, MI', - 1231334 => 'Glen Arbor, MI', - 1231347 => 'Petoskey, MI', - 1231348 => 'Petoskey, MI', - 1231352 => 'Frankfort, MI', - 1231386 => 'Northport, MI', - 1231398 => 'Manistee, MI', - 1231421 => 'Traverse City, MI', - 1231436 => 'Mackinaw City, MI', - 1231439 => 'Petoskey, MI', - 1231448 => 'Beaver Island, MI', - 1231487 => 'Petoskey, MI', - 1231526 => 'Harbor Springs, MI', - 1231533 => 'Bellaire, MI', - 1231536 => 'East Jordan, MI', - 1231544 => 'Central Lake, MI', - 1231547 => 'Charlevoix, MI', - 1231548 => 'Alanson, MI', - 1231549 => 'Boyne Falls, MI', - 1231582 => 'Boyne City, MI', - 1231587 => 'Mancelona, MI', - 1231592 => 'Big Rapids, MI', - 1231597 => 'Cheboygan, MI', - 1231627 => 'Cheboygan, MI', - 1231652 => 'Newaygo, MI', - 1231672 => 'Muskegon, MI', - 1231689 => 'White Cloud, MI', - 1231719 => 'Muskegon, MI', - 1231722 => 'Muskegon, MI', - 1231723 => 'Manistee, MI', - 1231724 => 'Muskegon, MI', - 1231726 => 'Muskegon, MI', - 1231727 => 'Muskegon, MI', - 1231728 => 'Muskegon, MI', - 1231733 => 'Muskegon, MI', - 1231734 => 'Evart, MI', - 1231737 => 'Muskegon, MI', - 1231739 => 'Muskegon, MI', - 1231743 => 'Marion, MI', - 1231744 => 'Muskegon, MI', - 1231745 => 'Baldwin, MI', - 1231747 => 'Muskegon, MI', - 1231755 => 'Muskegon, MI', - 1231757 => 'Scottville, MI', - 1231759 => 'Muskegon, MI', - 1231766 => 'Muskegon, MI', - 1231767 => 'Muskegon, MI', - 1231773 => 'Muskegon, MI', - 1231775 => 'Cadillac, MI', - 1231777 => 'Muskegon, MI', - 1231779 => 'Cadillac, MI', - 1231780 => 'Norton Shores, MI', - 1231788 => 'Muskegon, MI', - 1231796 => 'Big Rapids, MI', - 1231798 => 'Norton Shores, MI', - 1231824 => 'Manton, MI', - 1231825 => 'McBain, MI', - 1231830 => 'Muskegon, MI', - 1231832 => 'Reed City, MI', - 1231834 => 'Grant, MI', - 1231839 => 'Lake City, MI', - 1231843 => 'Ludington, MI', - 1231845 => 'Ludington, MI', - 1231853 => 'Ravenna, MI', - 1231854 => 'Hesperia, MI', - 1231861 => 'Shelby, MI', - 1231865 => 'Fruitport Charter township, MI', - 1231869 => 'Pentwater, MI', - 1231873 => 'Hart, MI', - 1231876 => 'Cadillac, MI', - 1231882 => 'Beulah, MI', - 1231885 => 'Mesick, MI', - 1231893 => 'Whitehall, MI', - 1231894 => 'Whitehall, MI', - 1231922 => 'Traverse City, MI', - 1231924 => 'Fremont, MI', - 1231929 => 'Traverse City, MI', - 1231932 => 'Traverse City, MI', - 1231933 => 'Traverse City, MI', - 1231935 => 'Traverse City, MI', - 1231937 => 'Howard City, MI', - 1231941 => 'Traverse City, MI', - 1231943 => 'Traverse City, MI', - 1231944 => 'Traverse City, MI', - 1231946 => 'Traverse City, MI', - 1231947 => 'Traverse City, MI', - 1231995 => 'Traverse City, MI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1234.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1234.php deleted file mode 100644 index d93b7c577..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1234.php +++ /dev/null @@ -1,10 +0,0 @@ - 'Ohio', - 1234678 => 'Akron, OH', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1236.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1236.php deleted file mode 100644 index 4f16ba0a4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1236.php +++ /dev/null @@ -1,9 +0,0 @@ - 'British Columbia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1239.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1239.php deleted file mode 100644 index 7c4042dbf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1239.php +++ /dev/null @@ -1,145 +0,0 @@ - 'Florida', - 1239200 => 'Naples, FL', - 1239213 => 'Naples, FL', - 1239225 => 'Fort Myers, FL', - 1239226 => 'Fort Myers, FL', - 1239234 => 'Naples, FL', - 1239242 => 'Cape Coral, FL', - 1239243 => 'Fort Myers, FL', - 1239245 => 'Fort Myers, FL', - 1239252 => 'Naples, FL', - 1239254 => 'Naples, FL', - 1239260 => 'Naples, FL', - 1239261 => 'Naples, FL', - 1239262 => 'Naples, FL', - 1239263 => 'Naples, FL', - 1239267 => 'Fort Myers, FL', - 1239272 => 'Naples, FL', - 1239274 => 'Fort Myers, FL', - 1239275 => 'Fort Myers, FL', - 1239277 => 'Fort Myers, FL', - 1239278 => 'Fort Myers, FL', - 1239288 => 'Fort Myers, FL', - 1239289 => 'Naples, FL', - 1239293 => 'Naples, FL', - 1239303 => 'Lehigh Acres, FL', - 1239304 => 'Naples, FL', - 1239313 => 'Fort Myers, FL', - 1239321 => 'Fort Myers, FL', - 1239325 => 'Naples, FL', - 1239330 => 'Naples, FL', - 1239331 => 'Naples, FL', - 1239332 => 'Fort Myers, FL', - 1239334 => 'Fort Myers, FL', - 1239337 => 'Fort Myers, FL', - 1239343 => 'Fort Myers, FL', - 1239344 => 'Fort Myers, FL', - 1239348 => 'Naples, FL', - 1239352 => 'Naples, FL', - 1239353 => 'Naples, FL', - 1239354 => 'Naples, FL', - 1239362 => 'Fort Myers, FL', - 1239368 => 'Lehigh Acres, FL', - 1239369 => 'Lehigh Acres, FL', - 1239389 => 'Marco Island, FL', - 1239390 => 'Bonita Springs, FL', - 1239394 => 'Marco Island, FL', - 1239395 => 'Sanibel, FL', - 1239398 => 'Naples, FL', - 1239403 => 'Naples, FL', - 1239404 => 'Naples, FL', - 1239405 => 'Bonita Springs, FL', - 1239415 => 'Fort Myers, FL', - 1239417 => 'Naples, FL', - 1239418 => 'Fort Myers, FL', - 1239424 => 'Cape Coral, FL', - 1239425 => 'Fort Myers, FL', - 1239430 => 'Naples, FL', - 1239431 => 'Naples, FL', - 1239432 => 'Fort Myers, FL', - 1239433 => 'Fort Myers, FL', - 1239434 => 'Naples, FL', - 1239435 => 'Naples, FL', - 1239436 => 'Naples, FL', - 1239437 => 'Fort Myers, FL', - 1239454 => 'Fort Myers, FL', - 1239455 => 'Naples, FL', - 1239458 => 'Cape Coral, FL', - 1239461 => 'Fort Myers, FL', - 1239463 => 'Fort Myers Beach, FL', - 1239465 => 'Naples, FL', - 1239466 => 'Fort Myers, FL', - 1239471 => 'Cape Coral, FL', - 1239472 => 'Sanibel, FL', - 1239481 => 'Fort Myers, FL', - 1239482 => 'Fort Myers, FL', - 1239489 => 'Fort Myers, FL', - 1239495 => 'Bonita Springs, FL', - 1239498 => 'Bonita Springs, FL', - 1239513 => 'Naples, FL', - 1239514 => 'Naples, FL', - 1239530 => 'Naples, FL', - 1239533 => 'Fort Myers, FL', - 1239540 => 'Cape Coral, FL', - 1239541 => 'Cape Coral, FL', - 1239542 => 'Cape Coral, FL', - 1239543 => 'Fort Myers, FL', - 1239549 => 'Cape Coral, FL', - 1239561 => 'Fort Myers, FL', - 1239566 => 'Naples, FL', - 1239573 => 'Cape Coral, FL', - 1239574 => 'Cape Coral, FL', - 1239590 => 'Fort Myers, FL', - 1239591 => 'Naples, FL', - 1239592 => 'Naples, FL', - 1239593 => 'Naples, FL', - 1239594 => 'Naples, FL', - 1239595 => 'Naples, FL', - 1239596 => 'Naples, FL', - 1239597 => 'Naples, FL', - 1239598 => 'Naples, FL', - 1239601 => 'Naples, FL', - 1239642 => 'Marco Island, FL', - 1239643 => 'Naples, FL', - 1239649 => 'Naples, FL', - 1239657 => 'Immokalee, FL', - 1239658 => 'Immokalee, FL', - 1239659 => 'Naples, FL', - 1239673 => 'Cape Coral, FL', - 1239676 => 'Bonita Springs, FL', - 1239689 => 'Fort Myers, FL', - 1239690 => 'Fort Myers, FL', - 1239692 => 'Naples, FL', - 1239693 => 'Fort Myers, FL', - 1239694 => 'Fort Myers, FL', - 1239731 => 'Fort Myers, FL', - 1239732 => 'Naples, FL', - 1239765 => 'Fort Myers Beach, FL', - 1239768 => 'Fort Myers, FL', - 1239772 => 'Cape Coral, FL', - 1239774 => 'Naples, FL', - 1239775 => 'Naples, FL', - 1239777 => 'Naples, FL', - 1239793 => 'Naples, FL', - 1239821 => 'Naples, FL', - 1239825 => 'Naples, FL', - 1239829 => 'Cape Coral, FL', - 1239931 => 'Fort Myers, FL', - 1239936 => 'Fort Myers, FL', - 1239938 => 'Fort Myers, FL', - 1239939 => 'Fort Myers, FL', - 1239945 => 'Cape Coral, FL', - 1239947 => 'Bonita Springs, FL', - 1239948 => 'Bonita Springs, FL', - 1239949 => 'Bonita Springs, FL', - 1239963 => 'Naples, FL', - 1239985 => 'Fort Myers, FL', - 1239992 => 'Bonita Springs, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1240.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1240.php deleted file mode 100644 index 03c264fc9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1240.php +++ /dev/null @@ -1,23 +0,0 @@ - 'Maryland', - 1240313 => 'Hagerstown, MD', - 1240314 => 'Rockville, MD', - 1240362 => 'Cumberland, MD', - 1240379 => 'Frederick, MD', - 1240403 => 'Rockville, MD', - 1240420 => 'Hagerstown, MD', - 1240456 => 'Laurel, MD', - 1240566 => 'Frederick, MD', - 1240575 => 'Frederick, MD', - 1240631 => 'Gaithersburg, MD', - 1240683 => 'Gaithersburg, MD', - 1240686 => 'Germantown, MD', - 1240777 => 'Rockville, MD', - 1240857 => 'Joint Base Andrews Naval Air Facility, MD', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1242.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1242.php deleted file mode 100644 index b01bb4a7f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1242.php +++ /dev/null @@ -1,86 +0,0 @@ - 'New Providence', - 12422251 => 'New Providence', - 12422252 => 'New Providence', - 12422253 => 'New Providence', - 12422254 => 'New Providence', - 12422256 => 'New Providence', - 12422257 => 'New Providence', - 12422258 => 'New Providence', - 12422259 => 'New Providence', - 1242302 => 'New Providence', - 1242321 => 'New Providence', - 1242322 => 'New Providence', - 1242323 => 'New Providence', - 1242324 => 'New Providence', - 1242325 => 'New Providence', - 1242326 => 'New Providence', - 1242327 => 'New Providence', - 1242328 => 'New Providence', - 1242329 => 'North Andros', - 1242331 => 'Rum Cay & San Sal', - 1242332 => 'Eleuthera', - 1242333 => 'Eleuthera', - 1242334 => 'Eleuthera', - 1242335 => 'Eleuthera', - 1242336 => 'Exuma', - 1242337 => 'Long Island', - 1242338 => 'Long Island', - 1242339 => 'Inagua/Mayaguana', - 1242340 => 'New Providence', - 1242341 => 'New Providence', - 1242342 => 'Cat Island', - 1242344 => 'Acklins', - 1242345 => 'Exuma', - 1242346 => 'Grand Bahama', - 1242347 => 'Bimini and Cat Cay', - 1242348 => 'Grand Bahama', - 1242349 => 'Grand Bahama', - 1242350 => 'Grand Bahama', - 1242351 => 'Grand Bahama', - 1242352 => 'Grand Bahama', - 1242353 => 'Grand Bahama', - 1242354 => 'Cat Island', - 1242355 => 'Exuma Cays', - 1242356 => 'New Providence', - 1242358 => 'Exuma', - 1242361 => 'New Providence', - 1242362 => 'New Providence', - 1242363 => 'New Providence', - 1242364 => 'New Providence', - 1242365 => 'Abaco Island', - 1242366 => 'Abaco Island', - 1242367 => 'Abaco Island', - 1242368 => 'Andros', - 1242369 => 'Andros', - 1242373 => 'Grand Bahama', - 1242374 => 'Grand Bahama', - 1242376 => 'Grand Bahama', - 1242377 => 'New Providence', - 1242380 => 'New Providence', - 1242381 => 'New Providence', - 1242382 => 'New Providence', - 1242383 => 'New Providence', - 1242384 => 'New Providence', - 1242392 => 'New Providence', - 1242393 => 'New Providence', - 1242394 => 'New Providence', - 1242396 => 'New Providence', - 1242397 => 'New Providence', - 1242461 => 'New Providence', - 1242601 => 'New Providence', - 1242602 => 'Grand Bahama', - 1242676 => 'New Providence', - 1242677 => 'New Providence', - 1242687 => 'Grand Bahama', - 1242688 => 'Grand Bahama', - 1242698 => 'Abaco', - 1242699 => 'Abaco', - 1242702 => 'New Providence', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1248.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1248.php deleted file mode 100644 index 00ae7068a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1248.php +++ /dev/null @@ -1,132 +0,0 @@ - 'Michigan', - 1248208 => 'Southfield, MI', - 1248223 => 'Southfield, MI', - 1248236 => 'Oxford Charter Township, MI', - 1248244 => 'Troy, MI', - 1248246 => 'Royal Oak, MI', - 1248250 => 'Troy, MI', - 1248262 => 'Southfield, MI', - 1248267 => 'Troy, MI', - 1248269 => 'Troy, MI', - 1248276 => 'Auburn Hills, MI', - 1248293 => 'Rochester Hills, MI', - 1248299 => 'Rochester Hills, MI', - 1248305 => 'Novi, MI', - 1248322 => 'Pontiac, MI', - 1248324 => 'Farmington Hills, MI', - 1248327 => 'Southfield, MI', - 1248328 => 'Holly, MI', - 1248332 => 'Pontiac, MI', - 1248334 => 'Pontiac, MI', - 1248338 => 'Pontiac, MI', - 1248340 => 'Auburn Hills, MI', - 1248344 => 'Novi, MI', - 1248347 => 'Novi, MI', - 1248350 => 'Southfield, MI', - 1248351 => 'Southfield, MI', - 1248352 => 'Southfield, MI', - 1248353 => 'Southfield, MI', - 1248354 => 'Southfield, MI', - 1248355 => 'Southfield, MI', - 1248356 => 'Southfield, MI', - 1248357 => 'Southfield, MI', - 1248358 => 'Southfield, MI', - 1248362 => 'Troy, MI', - 1248370 => 'Auburn Hills, MI', - 1248373 => 'Auburn Hills, MI', - 1248374 => 'Novi, MI', - 1248375 => 'Rochester Hills, MI', - 1248377 => 'Auburn Hills, MI', - 1248380 => 'Novi, MI', - 1248391 => 'Lake Orion, MI', - 1248395 => 'Southfield, MI', - 1248423 => 'Royal Oak, MI', - 1248424 => 'Southfield, MI', - 1248437 => 'South Lyon, MI', - 1248440 => 'Southfield, MI', - 1248443 => 'Southfield, MI', - 1248446 => 'South Lyon, MI', - 1248449 => 'Novi, MI', - 1248457 => 'Troy, MI', - 1248465 => 'Novi, MI', - 1248471 => 'Farmington Hills, MI', - 1248486 => 'South Lyon, MI', - 1248489 => 'Farmington Hills, MI', - 1248524 => 'Troy, MI', - 1248526 => 'Troy, MI', - 1248528 => 'Troy, MI', - 1248549 => 'Royal Oak, MI', - 1248551 => 'Royal Oak, MI', - 1248552 => 'Southfield, MI', - 1248553 => 'Farmington Hills, MI', - 1248557 => 'Southfield, MI', - 1248559 => 'Southfield, MI', - 1248569 => 'Southfield, MI', - 1248577 => 'Troy, MI', - 1248592 => 'West Bloomfield Township, MI', - 1248618 => 'Waterford Township, MI', - 1248619 => 'Troy, MI', - 1248620 => 'Clarkston, MI', - 1248623 => 'Waterford Township, MI', - 1248625 => 'Clarkston, MI', - 1248627 => 'Ortonville, MI', - 1248628 => 'Oxford Charter Township, MI', - 1248634 => 'Holly, MI', - 1248641 => 'Troy, MI', - 1248643 => 'Troy, MI', - 1248649 => 'Troy, MI', - 1248661 => 'West Bloomfield Township, MI', - 1248662 => 'Novi, MI', - 1248663 => 'Southfield, MI', - 1248666 => 'Waterford Township, MI', - 1248673 => 'Waterford Township, MI', - 1248674 => 'Waterford Township, MI', - 1248676 => 'Milford, MI', - 1248680 => 'Troy, MI', - 1248681 => 'Waterford Township, MI', - 1248682 => 'Waterford Township, MI', - 1248683 => 'Waterford Township, MI', - 1248684 => 'Milford, MI', - 1248685 => 'Milford, MI', - 1248689 => 'Troy, MI', - 1248693 => 'Lake Orion, MI', - 1248698 => 'White Lake Township, MI', - 1248738 => 'Waterford Township, MI', - 1248740 => 'Troy, MI', - 1248758 => 'Pontiac, MI', - 1248796 => 'Southfield, MI', - 1248799 => 'Southfield, MI', - 1248809 => 'Southfield, MI', - 1248814 => 'Lake Orion, MI', - 1248816 => 'Troy, MI', - 1248827 => 'Southfield, MI', - 1248828 => 'Troy, MI', - 1248844 => 'Rochester Hills, MI', - 1248848 => 'Farmington Hills, MI', - 1248849 => 'Southfield, MI', - 1248852 => 'Rochester Hills, MI', - 1248853 => 'Rochester Hills, MI', - 1248857 => 'Pontiac, MI', - 1248858 => 'Pontiac, MI', - 1248879 => 'Troy, MI', - 1248886 => 'Waterford Township, MI', - 1248887 => 'Highland Township, MI', - 1248889 => 'Highland Township, MI', - 1248898 => 'Royal Oak, MI', - 1248922 => 'Clarkston, MI', - 1248952 => 'Troy, MI', - 1248964 => 'Troy, MI', - 1248967 => 'Madison Heights, MI', - 1248968 => 'Oak Park, MI', - 1248969 => 'Oxford Charter Township, MI', - 1248987 => 'Farmington Hills, MI', - 1248994 => 'Farmington Hills, MI', - 1248996 => 'Southfield, MI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1250.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1250.php deleted file mode 100644 index 4be34d58e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1250.php +++ /dev/null @@ -1,234 +0,0 @@ - 'British Columbia', - 1250212 => 'Kelowna, BC', - 1250215 => 'Kelowna, BC', - 1250242 => 'Tumbler Ridge, BC', - 1250245 => 'Ladysmith, BC', - 1250246 => 'Chemainus, BC', - 1250247 => 'Gabriola, BC', - 1250248 => 'Parksville, BC', - 1250256 => 'Lillooet, BC', - 1250260 => 'Vernon, BC', - 1250262 => 'Fort St. John, BC', - 1250265 => 'Nakusp, BC', - 1250285 => 'Quadra Island, BC', - 1250286 => 'Campbell River, BC', - 1250287 => 'Campbell River, BC', - 1250295 => 'Princeton, BC', - 1250314 => 'Kamloops, BC', - 1250317 => 'Kelowna, BC', - 1250331 => 'Courtenay, BC', - 1250334 => 'Courtenay, BC', - 1250335 => 'Hornby Island, BC', - 1250336 => 'Cumberland, BC', - 1250337 => 'Black Creek, BC', - 1250338 => 'Courtenay, BC', - 1250339 => 'Comox, BC', - 1250342 => 'Invermere, BC', - 1250344 => 'Golden, BC', - 1250347 => 'Radium Hot Springs, BC', - 1250352 => 'Nelson, BC', - 1250353 => 'Kaslo, BC', - 1250354 => 'Nelson, BC', - 1250357 => 'Salmo, BC', - 1250360 => 'Victoria, BC', - 1250361 => 'Victoria, BC', - 1250362 => 'Rossland, BC', - 1250364 => 'Trail, BC', - 1250365 => 'Castlegar, BC', - 1250367 => 'Fruitvale, BC', - 1250368 => 'Trail, BC', - 1250370 => 'Victoria, BC', - 1250372 => 'Kamloops, BC', - 1250374 => 'Kamloops, BC', - 1250376 => 'Kamloops, BC', - 1250377 => 'Kamloops, BC', - 1250378 => 'Merritt, BC', - 1250380 => 'Victoria, BC', - 1250381 => 'Victoria, BC', - 1250382 => 'Victoria, BC', - 1250383 => 'Victoria, BC', - 1250384 => 'Victoria, BC', - 1250385 => 'Victoria, BC', - 1250386 => 'Victoria, BC', - 1250388 => 'Victoria, BC', - 1250389 => 'Victoria, BC', - 1250390 => 'Nanaimo, BC', - 1250391 => 'Victoria, BC', - 1250392 => 'Williams Lake, BC', - 1250395 => '100 Mile House, BC', - 1250398 => 'Williams Lake, BC', - 1250412 => 'Victoria, BC', - 1250417 => 'Cranbrook, BC', - 1250423 => 'Fernie, BC', - 1250425 => 'Sparwood, BC', - 1250426 => 'Cranbrook, BC', - 1250427 => 'Kimberley, BC', - 1250428 => 'Creston, BC', - 1250442 => 'Grand Forks, BC', - 1250448 => 'Kelowna, BC', - 1250468 => 'Nanoose Bay, BC', - 1250469 => 'Kelowna, BC', - 1250470 => 'Kelowna, BC', - 1250472 => 'Victoria, BC', - 1250475 => 'Victoria, BC', - 1250477 => 'Victoria, BC', - 1250478 => 'Victoria, BC', - 1250479 => 'Victoria, BC', - 1250480 => 'Victoria, BC', - 1250483 => 'Victoria, BC', - 1250487 => 'Penticton, BC', - 1250489 => 'Cranbrook, BC', - 1250490 => 'Penticton, BC', - 1250491 => 'Kelowna, BC', - 1250492 => 'Penticton, BC', - 1250493 => 'Penticton, BC', - 1250494 => 'Summerland, BC', - 1250495 => 'Osoyoos, BC', - 1250498 => 'Oliver, BC', - 1250499 => 'Keremeos, BC', - 1250503 => 'Vernon, BC', - 1250505 => 'Nelson, BC', - 1250537 => 'Salt Spring Island, BC', - 1250542 => 'Vernon, BC', - 1250545 => 'Vernon, BC', - 1250546 => 'Armstrong, BC', - 1250547 => 'Lumby, BC', - 1250549 => 'Vernon, BC', - 1250554 => 'Kamloops, BC', - 1250558 => 'Vernon, BC', - 1250559 => 'Queen Charlotte, BC', - 1250561 => 'Prince George, BC', - 1250562 => 'Prince George, BC', - 1250563 => 'Prince George, BC', - 1250564 => 'Prince George, BC', - 1250566 => 'Valemount, BC', - 1250567 => 'Vanderhoof, BC', - 1250573 => 'Kamloops, BC', - 1250579 => 'Kamloops, BC', - 1250585 => 'Nanaimo, BC', - 1250586 => 'Parksville, BC', - 1250590 => 'Victoria, BC', - 1250591 => 'Nanaimo, BC', - 1250592 => 'Victoria, BC', - 1250595 => 'Victoria, BC', - 1250596 => 'Prince George, BC', - 1250597 => 'Duncan, BC', - 1250598 => 'Victoria, BC', - 1250614 => 'Prince George, BC', - 1250615 => 'Terrace, BC', - 1250624 => 'Prince Rupert, BC', - 1250626 => 'Masset, BC', - 1250627 => 'Prince Rupert, BC', - 1250629 => 'Pender Island, BC', - 1250632 => 'Kitimat, BC', - 1250635 => 'Terrace, BC', - 1250638 => 'Terrace, BC', - 1250642 => 'Sooke, BC', - 1250655 => 'Sidney, BC', - 1250656 => 'Sidney, BC', - 1250658 => 'Victoria, BC', - 1250672 => 'Barrière, BC', - 1250674 => 'Clearwater, BC', - 1250675 => 'Sorrento, BC', - 1250679 => 'Chase, BC', - 1250686 => 'Victoria, BC', - 1250692 => 'Burns Lake, BC', - 1250701 => 'Duncan, BC', - 1250703 => 'Courtenay, BC', - 1250707 => 'Westbank, BC', - 1250709 => 'Duncan, BC', - 1250712 => 'Kelowna, BC', - 1250714 => 'Nanaimo, BC', - 1250715 => 'Duncan, BC', - 1250716 => 'Nanaimo, BC', - 1250717 => 'Kelowna, BC', - 1250718 => 'Kelowna, BC', - 1250720 => 'Port Alberni, BC', - 1250721 => 'Victoria, BC', - 1250722 => 'Nanaimo, BC', - 1250723 => 'Port Alberni, BC', - 1250724 => 'Port Alberni, BC', - 1250725 => 'Tofino, BC', - 1250726 => 'Ucluelet, BC', - 1250727 => 'Victoria, BC', - 1250729 => 'Nanaimo, BC', - 1250741 => 'Nanaimo, BC', - 1250744 => 'Victoria, BC', - 1250746 => 'Duncan, BC', - 1250747 => 'Quesnel, BC', - 1250748 => 'Duncan, BC', - 1250749 => 'Lake Cowichan, BC', - 1250751 => 'Nanaimo, BC', - 1250752 => 'Qualicum Beach, BC', - 1250753 => 'Nanaimo, BC', - 1250754 => 'Nanaimo, BC', - 1250755 => 'Nanaimo, BC', - 1250756 => 'Nanaimo, BC', - 1250758 => 'Nanaimo, BC', - 1250762 => 'Kelowna, BC', - 1250763 => 'Kelowna, BC', - 1250764 => 'Kelowna, BC', - 1250765 => 'Kelowna, BC', - 1250766 => 'Winfield, BC', - 1250767 => 'Peachland, BC', - 1250768 => 'Westbank, BC', - 1250769 => 'Kelowna, BC', - 1250770 => 'Penticton, BC', - 1250774 => 'Fort Nelson, BC', - 1250782 => 'Dawson Creek, BC', - 1250785 => 'Fort St. John, BC', - 1250787 => 'Fort St. John, BC', - 1250788 => 'Chetwynd, BC', - 1250804 => 'Salmon Arm, BC', - 1250808 => 'Kelowna, BC', - 1250812 => 'Victoria, BC', - 1250818 => 'Victoria, BC', - 1250828 => 'Kamloops, BC', - 1250830 => 'Campbell River, BC', - 1250832 => 'Salmon Arm, BC', - 1250833 => 'Salmon Arm, BC', - 1250836 => 'Sicamous, BC', - 1250837 => 'Revelstoke, BC', - 1250838 => 'Enderby, BC', - 1250842 => 'Hazelton, BC', - 1250845 => 'Houston, BC', - 1250847 => 'Smithers, BC', - 1250851 => 'Kamloops, BC', - 1250858 => 'Victoria, BC', - 1250860 => 'Kelowna, BC', - 1250861 => 'Kelowna, BC', - 1250862 => 'Kelowna, BC', - 1250863 => 'Kelowna, BC', - 1250864 => 'Kelowna, BC', - 1250868 => 'Kelowna, BC', - 1250869 => 'Kelowna, BC', - 1250870 => 'Kelowna, BC', - 1250871 => 'Courtenay, BC', - 1250877 => 'Smithers, BC', - 1250878 => 'Kelowna, BC', - 1250881 => 'Victoria, BC', - 1250888 => 'Victoria, BC', - 1250889 => 'Victoria, BC', - 1250897 => 'Courtenay, BC', - 1250920 => 'Victoria, BC', - 1250923 => 'Campbell River, BC', - 1250949 => 'Port Hardy, BC', - 1250951 => 'Parksville, BC', - 1250954 => 'Parksville, BC', - 1250956 => 'Port McNeill, BC', - 1250962 => 'Prince George, BC', - 1250963 => 'Prince George, BC', - 1250964 => 'Prince George, BC', - 1250979 => 'Kelowna, BC', - 1250992 => 'Quesnel, BC', - 1250995 => 'Victoria, BC', - 1250996 => 'Fort St James, BC', - 1250997 => 'Mackenzie, BC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1251.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1251.php deleted file mode 100644 index 6a01ec74c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1251.php +++ /dev/null @@ -1,99 +0,0 @@ - 'Alabama', - 1251208 => 'Mobile, AL', - 1251219 => 'Mobile, AL', - 1251246 => 'Jackson, AL', - 1251275 => 'Grove Hill, AL', - 1251287 => 'Mobile, AL', - 1251296 => 'Flomaton, AL', - 1251300 => 'Mobile, AL', - 1251338 => 'Mobile, AL', - 1251340 => 'Mobile, AL', - 1251341 => 'Mobile, AL', - 1251342 => 'Mobile, AL', - 1251343 => 'Mobile, AL', - 1251344 => 'Mobile, AL', - 1251345 => 'Mobile, AL', - 1251368 => 'Atmore, AL', - 1251378 => 'Mobile, AL', - 1251380 => 'Mobile, AL', - 1251414 => 'Mobile, AL', - 1251415 => 'Mobile, AL', - 1251432 => 'Mobile, AL', - 1251433 => 'Mobile, AL', - 1251434 => 'Mobile, AL', - 1251435 => 'Mobile, AL', - 1251438 => 'Mobile, AL', - 1251441 => 'Mobile, AL', - 1251443 => 'Theodore, AL', - 1251445 => 'Mobile, AL', - 1251446 => 'Atmore, AL', - 1251450 => 'Mobile, AL', - 1251457 => 'Mobile, AL', - 1251460 => 'Mobile, AL', - 1251470 => 'Mobile, AL', - 1251471 => 'Mobile, AL', - 1251473 => 'Mobile, AL', - 1251476 => 'Mobile, AL', - 1251478 => 'Mobile, AL', - 1251479 => 'Mobile, AL', - 1251575 => 'Monroeville, AL', - 1251578 => 'Evergreen, AL', - 1251580 => 'Bay Minette, AL', - 1251602 => 'Mobile, AL', - 1251607 => 'Mobile, AL', - 1251621 => 'Daphne, AL', - 1251625 => 'Daphne, AL', - 1251626 => 'Daphne, AL', - 1251633 => 'Mobile, AL', - 1251634 => 'Mobile, AL', - 1251639 => 'Mobile, AL', - 1251653 => 'Theodore, AL', - 1251660 => 'Mobile, AL', - 1251661 => 'Mobile, AL', - 1251662 => 'Mobile, AL', - 1251665 => 'Mobile, AL', - 1251666 => 'Mobile, AL', - 1251675 => 'Saraland, AL', - 1251679 => 'Saraland, AL', - 1251690 => 'Mobile, AL', - 1251694 => 'Mobile, AL', - 1251725 => 'Mobile, AL', - 1251743 => 'Monroeville, AL', - 1251776 => 'Mobile, AL', - 1251809 => 'Brewton, AL', - 1251824 => 'Bayou La Batre, AL', - 1251829 => 'Mount Vernon, AL', - 1251843 => 'Gilbertown, AL', - 1251847 => 'Chatom, AL', - 1251865 => 'Grand Bay, AL', - 1251866 => 'Citronelle, AL', - 1251867 => 'Brewton, AL', - 1251928 => 'Fairhope, AL', - 1251929 => 'Fairhope, AL', - 1251937 => 'Bay Minette, AL', - 1251943 => 'Foley, AL', - 1251947 => 'Robertsdale, AL', - 1251948 => 'Gulf Shores, AL', - 1251955 => 'Foley, AL', - 1251957 => 'Irvington, AL', - 1251962 => 'Lillian, AL', - 1251964 => 'Loxley, AL', - 1251967 => 'Gulf Shores, AL', - 1251968 => 'Gulf Shores, AL', - 1251970 => 'Foley, AL', - 1251971 => 'Foley, AL', - 1251973 => 'Theodore, AL', - 1251974 => 'Orange Beach, AL', - 1251980 => 'Orange Beach, AL', - 1251981 => 'Orange Beach, AL', - 1251986 => 'Elberta, AL', - 1251989 => 'Summerdale, AL', - 1251990 => 'Fairhope, AL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1252.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1252.php deleted file mode 100644 index 30163f042..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1252.php +++ /dev/null @@ -1,131 +0,0 @@ - 'North Carolina', - 1252206 => 'Wilson, NC', - 1252208 => 'Kinston, NC', - 1252209 => 'Ahoskie, NC', - 1252212 => 'Rocky Mount, NC', - 1252215 => 'Greenville, NC', - 1252222 => 'Morehead City, NC', - 1252223 => 'Newport, NC', - 1252234 => 'Wilson, NC', - 1252235 => 'Bailey, NC', - 1252236 => 'Elm City, NC', - 1252237 => 'Wilson, NC', - 1252238 => 'Stantonsburg, NC', - 1252240 => 'Morehead City, NC', - 1252243 => 'Wilson, NC', - 1252244 => 'Vanceboro, NC', - 1252247 => 'Morehead City, NC', - 1252249 => 'Oriental, NC', - 1252255 => 'Kitty Hawk, NC', - 1252257 => 'Warrenton, NC', - 1252261 => 'Kitty Hawk, NC', - 1252291 => 'Wilson, NC', - 1252293 => 'Wilson, NC', - 1252308 => 'Roanoke Rapids, NC', - 1252321 => 'Greenville, NC', - 1252322 => 'Aurora, NC', - 1252329 => 'Greenville, NC', - 1252331 => 'Elizabeth City, NC', - 1252332 => 'Ahoskie, NC', - 1252333 => 'Elizabeth City, NC', - 1252335 => 'Elizabeth City, NC', - 1252338 => 'Elizabeth City, NC', - 1252353 => 'Greenville, NC', - 1252354 => 'Emerald Isle, NC', - 1252355 => 'Greenville, NC', - 1252356 => 'Colerain, NC', - 1252357 => 'Gatesville, NC', - 1252364 => 'Greenville, NC', - 1252398 => 'Murfreesboro, NC', - 1252399 => 'Wilson, NC', - 1252426 => 'Hertford, NC', - 1252430 => 'Henderson, NC', - 1252431 => 'Henderson, NC', - 1252435 => 'Moyock, NC', - 1252436 => 'Henderson, NC', - 1252438 => 'Henderson, NC', - 1252439 => 'Greenville, NC', - 1252442 => 'Rocky Mount, NC', - 1252443 => 'Rocky Mount, NC', - 1252444 => 'Havelock, NC', - 1252445 => 'Enfield, NC', - 1252446 => 'Rocky Mount, NC', - 1252447 => 'Havelock, NC', - 1252448 => 'Trenton, NC', - 1252451 => 'Rocky Mount, NC', - 1252456 => 'Norlina, NC', - 1252459 => 'Nashville, NC', - 1252473 => 'Manteo, NC', - 1252475 => 'Manteo, NC', - 1252478 => 'Spring Hope, NC', - 1252480 => 'Kill Devil Hills, NC', - 1252482 => 'Edenton, NC', - 1252492 => 'Henderson, NC', - 1252504 => 'Beaufort, NC', - 1252514 => 'New Bern, NC', - 1252520 => 'Kinston, NC', - 1252522 => 'Kinston, NC', - 1252523 => 'Kinston, NC', - 1252524 => 'Grifton, NC', - 1252527 => 'Kinston, NC', - 1252534 => 'Jackson, NC', - 1252535 => 'Roanoke Rapids, NC', - 1252537 => 'Roanoke Rapids, NC', - 1252566 => 'La Grange, NC', - 1252568 => 'Pink Hill, NC', - 1252583 => 'Halifax, NC', - 1252586 => 'Littleton, NC', - 1252633 => 'New Bern, NC', - 1252634 => 'New Bern, NC', - 1252635 => 'New Bern, NC', - 1252636 => 'New Bern, NC', - 1252637 => 'New Bern, NC', - 1252638 => 'New Bern, NC', - 1252641 => 'Tarboro, NC', - 1252672 => 'New Bern, NC', - 1252695 => 'Greenville, NC', - 1252726 => 'Morehead City, NC', - 1252727 => 'Morehead City, NC', - 1252728 => 'Beaufort, NC', - 1252744 => 'Greenville, NC', - 1252746 => 'Ayden, NC', - 1252747 => 'Snow Hill, NC', - 1252752 => 'Greenville, NC', - 1252753 => 'Farmville, NC', - 1252756 => 'Greenville, NC', - 1252757 => 'Greenville, NC', - 1252758 => 'Greenville, NC', - 1252771 => 'South Mills, NC', - 1252792 => 'Williamston, NC', - 1252793 => 'Plymouth, NC', - 1252794 => 'Windsor, NC', - 1252795 => 'Robersonville, NC', - 1252796 => 'Columbia, NC', - 1252808 => 'Morehead City, NC', - 1252823 => 'Tarboro, NC', - 1252825 => 'Bethel, NC', - 1252826 => 'Scotland Neck, NC', - 1252827 => 'Pinetops, NC', - 1252830 => 'Greenville, NC', - 1252847 => 'Greenville, NC', - 1252926 => 'Swan Quarter, NC', - 1252928 => 'Ocracoke, NC', - 1252937 => 'Rocky Mount, NC', - 1252939 => 'Kinston, NC', - 1252940 => 'Washington, NC', - 1252943 => 'Belhaven, NC', - 1252946 => 'Washington, NC', - 1252972 => 'Rocky Mount, NC', - 1252974 => 'Washington, NC', - 1252975 => 'Washington, NC', - 1252977 => 'Rocky Mount, NC', - 1252985 => 'Rocky Mount, NC', - 1252986 => 'Hatteras, NC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1253.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1253.php deleted file mode 100644 index bf67a4a48..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1253.php +++ /dev/null @@ -1,113 +0,0 @@ - 'Washington', - 1253200 => 'Puyallup, WA', - 1253236 => 'Kent, WA', - 1253265 => 'Gig Harbor, WA', - 1253272 => 'Tacoma, WA', - 1253274 => 'Tacoma, WA', - 1253277 => 'Kent, WA', - 1253284 => 'Tacoma, WA', - 1253288 => 'Auburn, WA', - 1253292 => 'Tacoma, WA', - 1253301 => 'Tacoma, WA', - 1253333 => 'Auburn, WA', - 1253372 => 'Kent, WA', - 1253373 => 'Kent, WA', - 1253383 => 'Tacoma, WA', - 1253395 => 'Kent, WA', - 1253396 => 'Tacoma, WA', - 1253403 => 'Tacoma, WA', - 1253426 => 'Tacoma, WA', - 1253435 => 'Puyallup, WA', - 1253445 => 'Puyallup, WA', - 1253446 => 'Puyallup, WA', - 1253459 => 'Tacoma, WA', - 1253471 => 'Tacoma, WA', - 1253472 => 'Tacoma, WA', - 1253473 => 'Tacoma, WA', - 1253474 => 'Tacoma, WA', - 1253475 => 'Tacoma, WA', - 1253476 => 'Tacoma, WA', - 1253503 => 'Tacoma, WA', - 1253520 => 'Kent, WA', - 1253529 => 'Federal Way, WA', - 1253530 => 'Gig Harbor, WA', - 1253531 => 'Tacoma, WA', - 1253535 => 'Tacoma, WA', - 1253536 => 'Tacoma, WA', - 1253537 => 'Tacoma, WA', - 1253538 => 'Tacoma, WA', - 1253539 => 'Tacoma, WA', - 1253549 => 'Fox Island, WA', - 1253571 => 'Tacoma, WA', - 1253572 => 'Tacoma, WA', - 1253581 => 'Lakewood, WA', - 1253583 => 'Tacoma, WA', - 1253584 => 'Lakewood, WA', - 1253589 => 'Lakewood, WA', - 1253591 => 'Tacoma, WA', - 1253593 => 'Tacoma, WA', - 1253596 => 'Tacoma, WA', - 1253597 => 'Tacoma, WA', - 1253604 => 'Puyallup, WA', - 1253620 => 'Lakewood, WA', - 1253627 => 'Tacoma, WA', - 1253630 => 'Kent, WA', - 1253631 => 'Kent, WA', - 1253638 => 'Kent, WA', - 1253639 => 'Kent, WA', - 1253661 => 'Federal Way, WA', - 1253682 => 'Tacoma, WA', - 1253697 => 'Puyallup, WA', - 1253735 => 'Auburn, WA', - 1253737 => 'Auburn, WA', - 1253752 => 'Tacoma, WA', - 1253756 => 'Tacoma, WA', - 1253759 => 'Tacoma, WA', - 1253761 => 'Tacoma, WA', - 1253770 => 'Puyallup, WA', - 1253798 => 'Tacoma, WA', - 1253804 => 'Auburn, WA', - 1253813 => 'Kent, WA', - 1253815 => 'Federal Way, WA', - 1253830 => 'Tacoma, WA', - 1253833 => 'Auburn, WA', - 1253835 => 'Federal Way, WA', - 1253838 => 'Federal Way, WA', - 1253839 => 'Federal Way, WA', - 1253840 => 'Puyallup, WA', - 1253841 => 'Puyallup, WA', - 1253843 => 'Roy, WA', - 1253845 => 'Puyallup, WA', - 1253848 => 'Puyallup, WA', - 1253850 => 'Kent, WA', - 1253851 => 'Gig Harbor, WA', - 1253852 => 'Kent, WA', - 1253853 => 'Gig Harbor, WA', - 1253854 => 'Kent, WA', - 1253856 => 'Kent, WA', - 1253857 => 'Gig Harbor, WA', - 1253858 => 'Gig Harbor, WA', - 1253859 => 'Kent, WA', - 1253862 => 'Bonney Lake, WA', - 1253863 => 'Sumner, WA', - 1253864 => 'Puyallup, WA', - 1253872 => 'Kent, WA', - 1253874 => 'Federal Way, WA', - 1253876 => 'Auburn, WA', - 1253887 => 'Auburn, WA', - 1253922 => 'Fife, WA', - 1253926 => 'Fife, WA', - 1253931 => 'Auburn, WA', - 1253939 => 'Auburn, WA', - 1253941 => 'Federal Way, WA', - 1253945 => 'Federal Way, WA', - 1253946 => 'Federal Way, WA', - 1253983 => 'Lakewood, WA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1254.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1254.php deleted file mode 100644 index 3e4a032b1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1254.php +++ /dev/null @@ -1,98 +0,0 @@ - 'Texas', - 1254200 => 'Killeen, TX', - 1254202 => 'Waco, TX', - 1254213 => 'Killeen, TX', - 1254215 => 'Temple, TX', - 1254230 => 'Waco, TX', - 1254235 => 'Waco, TX', - 1254248 => 'Gatesville, TX', - 1254286 => 'Fort Hood, TX', - 1254288 => 'Fort Hood, TX', - 1254296 => 'Waco, TX', - 1254297 => 'Waco, TX', - 1254298 => 'Temple, TX', - 1254386 => 'Hamilton, TX', - 1254399 => 'Waco, TX', - 1254435 => 'Meridian, TX', - 1254442 => 'Cisco, TX', - 1254445 => 'Dublin, TX', - 1254501 => 'Killeen, TX', - 1254518 => 'Copperas Cove, TX', - 1254519 => 'Killeen, TX', - 1254526 => 'Killeen, TX', - 1254532 => 'Fort Hood, TX', - 1254542 => 'Copperas Cove, TX', - 1254547 => 'Copperas Cove, TX', - 1254554 => 'Killeen, TX', - 1254559 => 'Breckenridge, TX', - 1254562 => 'Mexia, TX', - 1254580 => 'Hillsboro, TX', - 1254582 => 'Hillsboro, TX', - 1254616 => 'Killeen, TX', - 1254628 => 'Killeen, TX', - 1254629 => 'Eastland, TX', - 1254634 => 'Killeen, TX', - 1254647 => 'Ranger, TX', - 1254666 => 'Hewitt, TX', - 1254675 => 'Clifton, TX', - 1254680 => 'Killeen, TX', - 1254690 => 'Killeen, TX', - 1254694 => 'Whitney, TX', - 1254697 => 'Cameron, TX', - 1254698 => 'Harker Heights, TX', - 1254699 => 'Killeen, TX', - 1254714 => 'Waco, TX', - 1254724 => 'Temple, TX', - 1254725 => 'Cross Plains, TX', - 1254729 => 'Groesbeck, TX', - 1254732 => 'Waco, TX', - 1254739 => 'Teague, TX', - 1254741 => 'Waco, TX', - 1254742 => 'Temple, TX', - 1254743 => 'Temple, TX', - 1254750 => 'Waco, TX', - 1254751 => 'Waco, TX', - 1254752 => 'Waco, TX', - 1254753 => 'Waco, TX', - 1254754 => 'Waco, TX', - 1254755 => 'Waco, TX', - 1254756 => 'Waco, TX', - 1254757 => 'Waco, TX', - 1254770 => 'Temple, TX', - 1254771 => 'Temple, TX', - 1254772 => 'Waco, TX', - 1254773 => 'Temple, TX', - 1254774 => 'Temple, TX', - 1254776 => 'Waco, TX', - 1254778 => 'Temple, TX', - 1254780 => 'Belton, TX', - 1254791 => 'Temple, TX', - 1254793 => 'Florence, TX', - 1254796 => 'Hico, TX', - 1254799 => 'Waco, TX', - 1254826 => 'West, TX', - 1254829 => 'Elm Mott, TX', - 1254836 => 'China Spring, TX', - 1254840 => 'McGregor, TX', - 1254857 => 'Lorena, TX', - 1254865 => 'Gatesville, TX', - 1254867 => 'Waco, TX', - 1254883 => 'Marlin, TX', - 1254893 => 'De Leon, TX', - 1254897 => 'Glen Rose, TX', - 1254898 => 'Glen Rose, TX', - 1254899 => 'Temple, TX', - 1254918 => 'Stephenville, TX', - 1254933 => 'Belton, TX', - 1254939 => 'Belton, TX', - 1254947 => 'Salado, TX', - 1254965 => 'Stephenville, TX', - 1254968 => 'Stephenville, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1256.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1256.php deleted file mode 100644 index c474691d2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1256.php +++ /dev/null @@ -1,164 +0,0 @@ - 'Alabama', - 1256216 => 'Athens, AL', - 1256217 => 'Huntsville, AL', - 1256228 => 'Section, AL', - 1256230 => 'Athens, AL', - 1256231 => 'Anniston, AL', - 1256232 => 'Athens, AL', - 1256233 => 'Athens, AL', - 1256234 => 'Alexander City, AL', - 1256235 => 'Anniston, AL', - 1256236 => 'Anniston, AL', - 1256237 => 'Anniston, AL', - 1256238 => 'Anniston, AL', - 1256241 => 'Anniston, AL', - 1256245 => 'Sylacauga, AL', - 1256247 => 'Rogersville, AL', - 1256249 => 'Sylacauga, AL', - 1256259 => 'Scottsboro, AL', - 1256265 => 'Huntsville, AL', - 1256268 => 'Talladega, AL', - 1256270 => 'Huntsville, AL', - 1256301 => 'Decatur, AL', - 1256306 => 'Decatur, AL', - 1256308 => 'Decatur, AL', - 1256314 => 'Muscle Shoals, AL', - 1256315 => 'Talladega, AL', - 1256325 => 'Madison, AL', - 1256327 => 'Huntsville, AL', - 1256329 => 'Alexander City, AL', - 1256331 => 'Russellville, AL', - 1256332 => 'Russellville, AL', - 1256340 => 'Decatur, AL', - 1256341 => 'Decatur, AL', - 1256350 => 'Decatur, AL', - 1256351 => 'Decatur, AL', - 1256352 => 'Hanceville, AL', - 1256353 => 'Decatur, AL', - 1256354 => 'Ashland, AL', - 1256355 => 'Decatur, AL', - 1256356 => 'Red Bay, AL', - 1256357 => 'Wedowee, AL', - 1256362 => 'Talladega, AL', - 1256378 => 'Childersburg, AL', - 1256379 => 'New Market, AL', - 1256382 => 'Huntsville, AL', - 1256389 => 'Muscle Shoals, AL', - 1256396 => 'Lineville, AL', - 1256413 => 'Rainbow City, AL', - 1256423 => 'Ardmore, AL', - 1256428 => 'Huntsville, AL', - 1256430 => 'Huntsville, AL', - 1256435 => 'Jacksonville, AL', - 1256437 => 'Stevenson, AL', - 1256442 => 'Rainbow City, AL', - 1256446 => 'Leighton, AL', - 1256447 => 'Piedmont, AL', - 1256461 => 'Madison, AL', - 1256463 => 'Heflin, AL', - 1256464 => 'Madison, AL', - 1256467 => 'Gadsden, AL', - 1256489 => 'Huntsville, AL', - 1256492 => 'Gadsden, AL', - 1256494 => 'Gadsden, AL', - 1256513 => 'Huntsville, AL', - 1256519 => 'Huntsville, AL', - 1256532 => 'Huntsville, AL', - 1256533 => 'Huntsville, AL', - 1256534 => 'Huntsville, AL', - 1256535 => 'Huntsville, AL', - 1256536 => 'Huntsville, AL', - 1256538 => 'Attalla, AL', - 1256539 => 'Huntsville, AL', - 1256543 => 'Gadsden, AL', - 1256546 => 'Gadsden, AL', - 1256547 => 'Gadsden, AL', - 1256549 => 'Gadsden, AL', - 1256551 => 'Huntsville, AL', - 1256571 => 'Guntersville, AL', - 1256574 => 'Scottsboro, AL', - 1256582 => 'Guntersville, AL', - 1256585 => 'Huntsville, AL', - 1256586 => 'Arab, AL', - 1256593 => 'Boaz, AL', - 1256623 => 'Fyffe, AL', - 1256632 => 'Flat Rock, AL', - 1256637 => 'Courtland, AL', - 1256638 => 'Rainsville, AL', - 1256650 => 'Huntsville, AL', - 1256656 => 'Huntsville, AL', - 1256657 => 'Henagar, AL', - 1256685 => 'Town Creek, AL', - 1256686 => 'Decatur, AL', - 1256704 => 'Huntsville, AL', - 1256705 => 'Huntsville, AL', - 1256715 => 'Huntsville, AL', - 1256718 => 'Florence, AL', - 1256721 => 'Huntsville, AL', - 1256722 => 'Huntsville, AL', - 1256723 => 'New Hope, AL', - 1256726 => 'Huntsville, AL', - 1256728 => 'Grant, AL', - 1256729 => 'Athens, AL', - 1256734 => 'Cullman, AL', - 1256736 => 'Cullman, AL', - 1256737 => 'Cullman, AL', - 1256739 => 'Cullman, AL', - 1256740 => 'Florence, AL', - 1256741 => 'Anniston, AL', - 1256751 => 'Hartselle, AL', - 1256753 => 'Guntersville, AL', - 1256757 => 'Killen, AL', - 1256760 => 'Florence, AL', - 1256761 => 'Talladega, AL', - 1256764 => 'Florence, AL', - 1256765 => 'Florence, AL', - 1256766 => 'Florence, AL', - 1256767 => 'Florence, AL', - 1256768 => 'Florence, AL', - 1256771 => 'Athens, AL', - 1256772 => 'Madison, AL', - 1256773 => 'Hartselle, AL', - 1256774 => 'Madison, AL', - 1256775 => 'Cullman, AL', - 1256776 => 'Gurley, AL', - 1256778 => 'Somerville, AL', - 1256782 => 'Jacksonville, AL', - 1256825 => 'Dadeville, AL', - 1256828 => 'Hazel Green, AL', - 1256830 => 'Huntsville, AL', - 1256831 => 'Oxford, AL', - 1256832 => 'Oxford, AL', - 1256835 => 'Oxford, AL', - 1256837 => 'Huntsville, AL', - 1256840 => 'Boaz, AL', - 1256845 => 'Fort Payne, AL', - 1256851 => 'Huntsville, AL', - 1256852 => 'Huntsville, AL', - 1256858 => 'Huntsville, AL', - 1256859 => 'Huntsville, AL', - 1256878 => 'Albertville, AL', - 1256880 => 'Huntsville, AL', - 1256881 => 'Huntsville, AL', - 1256882 => 'Huntsville, AL', - 1256883 => 'Huntsville, AL', - 1256885 => 'Huntsville, AL', - 1256890 => 'Huntsville, AL', - 1256891 => 'Albertville, AL', - 1256892 => 'Ohatchee, AL', - 1256894 => 'Albertville, AL', - 1256895 => 'Huntsville, AL', - 1256922 => 'Huntsville, AL', - 1256927 => 'Centre, AL', - 1256931 => 'Arab, AL', - 1256971 => 'Huntsville, AL', - 1256974 => 'Moulton, AL', - 1256997 => 'Fort Payne, AL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1260.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1260.php deleted file mode 100644 index 450b7677c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1260.php +++ /dev/null @@ -1,96 +0,0 @@ - 'Indiana', - 1260244 => 'Columbia City, IN', - 1260248 => 'Columbia City, IN', - 1260338 => 'Fort Wayne, IN', - 1260347 => 'Kendallville, IN', - 1260349 => 'Kendallville, IN', - 1260355 => 'Huntington, IN', - 1260356 => 'Huntington, IN', - 1260357 => 'Garrett, IN', - 1260358 => 'Huntington, IN', - 1260359 => 'Huntington, IN', - 1260373 => 'Fort Wayne, IN', - 1260375 => 'Warren, IN', - 1260387 => 'Fort Wayne, IN', - 1260407 => 'Fort Wayne, IN', - 1260416 => 'Fort Wayne, IN', - 1260420 => 'Fort Wayne, IN', - 1260422 => 'Fort Wayne, IN', - 1260423 => 'Fort Wayne, IN', - 1260424 => 'Fort Wayne, IN', - 1260426 => 'Fort Wayne, IN', - 1260427 => 'Fort Wayne, IN', - 1260432 => 'Fort Wayne, IN', - 1260434 => 'Fort Wayne, IN', - 1260435 => 'Fort Wayne, IN', - 1260436 => 'Fort Wayne, IN', - 1260444 => 'Fort Wayne, IN', - 1260447 => 'Fort Wayne, IN', - 1260449 => 'Fort Wayne, IN', - 1260456 => 'Fort Wayne, IN', - 1260459 => 'Fort Wayne, IN', - 1260460 => 'Fort Wayne, IN', - 1260463 => 'LaGrange, IN', - 1260469 => 'Fort Wayne, IN', - 1260471 => 'Fort Wayne, IN', - 1260478 => 'Fort Wayne, IN', - 1260481 => 'Fort Wayne, IN', - 1260482 => 'Fort Wayne, IN', - 1260483 => 'Fort Wayne, IN', - 1260484 => 'Fort Wayne, IN', - 1260485 => 'Fort Wayne, IN', - 1260486 => 'Fort Wayne, IN', - 1260488 => 'Hamilton, IN', - 1260489 => 'Fort Wayne, IN', - 1260490 => 'Fort Wayne, IN', - 1260492 => 'Fort Wayne, IN', - 1260493 => 'New Haven, IN', - 1260495 => 'Fremont, IN', - 1260497 => 'Fort Wayne, IN', - 1260562 => 'Howe, IN', - 1260563 => 'Wabash, IN', - 1260569 => 'Wabash, IN', - 1260589 => 'Berne, IN', - 1260593 => 'Topeka, IN', - 1260622 => 'Ossian, IN', - 1260623 => 'Monroeville, IN', - 1260624 => 'Angola, IN', - 1260625 => 'Fort Wayne, IN', - 1260632 => 'Woodburn, IN', - 1260636 => 'Albion, IN', - 1260637 => 'Fort Wayne, IN', - 1260657 => 'Harlan, IN', - 1260665 => 'Angola, IN', - 1260668 => 'Angola, IN', - 1260672 => 'Roanoke, IN', - 1260693 => 'Churubusco, IN', - 1260723 => 'South Whitley, IN', - 1260724 => 'Decatur, IN', - 1260726 => 'Portland, IN', - 1260728 => 'Decatur, IN', - 1260739 => 'Fort Wayne, IN', - 1260744 => 'Fort Wayne, IN', - 1260745 => 'Fort Wayne, IN', - 1260747 => 'Fort Wayne, IN', - 1260749 => 'New Haven, IN', - 1260755 => 'Fort Wayne, IN', - 1260758 => 'Markle, IN', - 1260768 => 'Shipshewana, IN', - 1260824 => 'Bluffton, IN', - 1260837 => 'Waterloo, IN', - 1260854 => 'Wolcottville, IN', - 1260868 => 'Butler, IN', - 1260894 => 'Ligonier, IN', - 1260897 => 'Avilla, IN', - 1260925 => 'Auburn, IN', - 1260927 => 'Auburn, IN', - 1260969 => 'Fort Wayne, IN', - 1260982 => 'North Manchester, IN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1262.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1262.php deleted file mode 100644 index dfda0e1ec..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1262.php +++ /dev/null @@ -1,132 +0,0 @@ - 'Wisconsin', - 1262238 => 'Mequon, WI', - 1262240 => 'Mequon, WI', - 1262241 => 'Mequon, WI', - 1262242 => 'Mequon, WI', - 1262243 => 'Mequon, WI', - 1262245 => 'Lake Geneva, WI', - 1262246 => 'Sussex, WI', - 1262248 => 'Lake Geneva, WI', - 1262249 => 'Lake Geneva, WI', - 1262250 => 'Menomonee Falls, WI', - 1262251 => 'Menomonee Falls, WI', - 1262252 => 'Menomonee Falls, WI', - 1262253 => 'Menomonee Falls, WI', - 1262255 => 'Menomonee Falls, WI', - 1262268 => 'Port Washington, WI', - 1262275 => 'Walworth, WI', - 1262279 => 'Genoa City, WI', - 1262284 => 'Port Washington, WI', - 1262285 => 'Belgium, WI', - 1262306 => 'West Bend, WI', - 1262334 => 'West Bend, WI', - 1262335 => 'West Bend, WI', - 1262338 => 'West Bend, WI', - 1262363 => 'Mukwonago, WI', - 1262367 => 'Hartland, WI', - 1262369 => 'Hartland, WI', - 1262373 => 'Brookfield, WI', - 1262375 => 'Grafton, WI', - 1262376 => 'Cedarburg, WI', - 1262387 => 'Mequon, WI', - 1262392 => 'North Prairie, WI', - 1262446 => 'Waukesha, WI', - 1262456 => 'Racine, WI', - 1262472 => 'Whitewater, WI', - 1262473 => 'Whitewater, WI', - 1262495 => 'Palmyra, WI', - 1262513 => 'Waukesha, WI', - 1262514 => 'Waterford, WI', - 1262521 => 'Waukesha, WI', - 1262522 => 'Waukesha, WI', - 1262524 => 'Waukesha, WI', - 1262532 => 'Menomonee Falls, WI', - 1262534 => 'Waterford, WI', - 1262538 => 'Hartland, WI', - 1262539 => 'Burlington, WI', - 1262542 => 'Waukesha, WI', - 1262544 => 'Waukesha, WI', - 1262547 => 'Waukesha, WI', - 1262548 => 'Waukesha, WI', - 1262549 => 'Waukesha, WI', - 1262551 => 'Kenosha, WI', - 1262552 => 'Kenosha, WI', - 1262554 => 'Racine, WI', - 1262560 => 'Oconomowoc, WI', - 1262567 => 'Oconomowoc, WI', - 1262569 => 'Oconomowoc, WI', - 1262574 => 'Waukesha, WI', - 1262593 => 'Sullivan, WI', - 1262594 => 'Eagle, WI', - 1262598 => 'Racine, WI', - 1262605 => 'Kenosha, WI', - 1262619 => 'Racine, WI', - 1262626 => 'Kewaskum, WI', - 1262629 => 'Allenton, WI', - 1262632 => 'Racine, WI', - 1262633 => 'Racine, WI', - 1262634 => 'Racine, WI', - 1262635 => 'Racine, WI', - 1262636 => 'Racine, WI', - 1262637 => 'Racine, WI', - 1262639 => 'Racine, WI', - 1262642 => 'East Troy, WI', - 1262644 => 'Slinger, WI', - 1262646 => 'Delafield, WI', - 1262650 => 'Waukesha, WI', - 1262652 => 'Kenosha, WI', - 1262653 => 'Kenosha, WI', - 1262654 => 'Kenosha, WI', - 1262656 => 'Kenosha, WI', - 1262657 => 'Kenosha, WI', - 1262658 => 'Kenosha, WI', - 1262662 => 'Big Bend, WI', - 1262670 => 'Hartford, WI', - 1262673 => 'Hartford, WI', - 1262675 => 'West Bend, WI', - 1262677 => 'Jackson, WI', - 1262679 => 'Muskego, WI', - 1262681 => 'Racine, WI', - 1262691 => 'Pewaukee, WI', - 1262692 => 'Fredonia, WI', - 1262694 => 'Kenosha, WI', - 1262695 => 'Pewaukee, WI', - 1262697 => 'Kenosha, WI', - 1262717 => 'Waukesha, WI', - 1262723 => 'Elkhorn, WI', - 1262728 => 'Delavan, WI', - 1262740 => 'Delavan, WI', - 1262741 => 'Elkhorn, WI', - 1262742 => 'Elkhorn, WI', - 1262763 => 'Burlington, WI', - 1262764 => 'Kenosha, WI', - 1262767 => 'Burlington, WI', - 1262780 => 'Brookfield, WI', - 1262781 => 'Brookfield, WI', - 1262783 => 'Brookfield, WI', - 1262785 => 'Brookfield, WI', - 1262787 => 'Brookfield, WI', - 1262789 => 'Brookfield, WI', - 1262790 => 'Brookfield, WI', - 1262798 => 'Waukesha, WI', - 1262820 => 'Sussex, WI', - 1262843 => 'Salem, WI', - 1262862 => 'Trevor, WI', - 1262877 => 'Twin Lakes, WI', - 1262878 => 'Union Grove, WI', - 1262896 => 'Waukesha, WI', - 1262898 => 'Racine, WI', - 1262925 => 'Kenosha, WI', - 1262928 => 'Waukesha, WI', - 1262942 => 'Kenosha, WI', - 1262948 => 'Kenosha, WI', - 1262965 => 'Dousman, WI', - 1262970 => 'Waukesha, WI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1267.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1267.php deleted file mode 100644 index ded46e1a6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1267.php +++ /dev/null @@ -1,21 +0,0 @@ - 'Pennsylvania', - 1267292 => 'Philadelphia, PA', - 1267297 => 'Philadelphia, PA', - 1267324 => 'Philadelphia, PA', - 1267331 => 'Philadelphia, PA', - 1267335 => 'Philadelphia, PA', - 1267343 => 'Philadelphia, PA', - 1267388 => 'Philadelphia, PA', - 1267426 => 'Philadelphia, PA', - 1267519 => 'Philadelphia, PA', - 1267639 => 'Philadelphia, PA', - 1267687 => 'Philadelphia, PA', - 1267880 => 'Doylestown, PA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1269.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1269.php deleted file mode 100644 index 12e085b31..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1269.php +++ /dev/null @@ -1,112 +0,0 @@ - 'Michigan', - 1269226 => 'Kalamazoo Township, MI', - 1269244 => 'Three Rivers, MI', - 1269273 => 'Three Rivers, MI', - 1269278 => 'Three Rivers, MI', - 1269279 => 'Three Rivers, MI', - 1269321 => 'Portage, MI', - 1269323 => 'Portage, MI', - 1269324 => 'Portage, MI', - 1269327 => 'Portage, MI', - 1269329 => 'Portage, MI', - 1269337 => 'Kalamazoo, MI', - 1269341 => 'Kalamazoo, MI', - 1269342 => 'Kalamazoo, MI', - 1269343 => 'Kalamazoo, MI', - 1269344 => 'Kalamazoo, MI', - 1269345 => 'Kalamazoo, MI', - 1269353 => 'Kalamazoo, MI', - 1269372 => 'Kalamazoo, MI', - 1269373 => 'Kalamazoo, MI', - 1269375 => 'Kalamazoo, MI', - 1269382 => 'Kalamazoo, MI', - 1269383 => 'Kalamazoo, MI', - 1269385 => 'Kalamazoo, MI', - 1269387 => 'Kalamazoo, MI', - 1269388 => 'Kalamazoo, MI', - 1269408 => 'St. Joseph, MI', - 1269422 => 'Baroda, MI', - 1269423 => 'Decatur, MI', - 1269426 => 'Sawyer, MI', - 1269427 => 'Bangor, MI', - 1269428 => 'St. Joseph, MI', - 1269432 => 'Colon, MI', - 1269435 => 'Constantine, MI', - 1269441 => 'Battle Creek, MI', - 1269445 => 'Cassopolis, MI', - 1269461 => 'Eau Claire, MI', - 1269463 => 'Watervliet, MI', - 1269465 => 'Bridgman, MI', - 1269467 => 'Centreville, MI', - 1269468 => 'Coloma, MI', - 1269469 => 'New Buffalo, MI', - 1269471 => 'Berrien Springs, MI', - 1269473 => 'Berrien Springs, MI', - 1269483 => 'White Pigeon, MI', - 1269496 => 'Mendon, MI', - 1269521 => 'Bloomingdale, MI', - 1269544 => 'Kalamazoo, MI', - 1269556 => 'St. Joseph, MI', - 1269561 => 'Fennville, MI', - 1269621 => 'Hartford, MI', - 1269623 => 'Delton, MI', - 1269624 => 'Lawton, MI', - 1269628 => 'Gobles, MI', - 1269629 => 'Richland, MI', - 1269637 => 'South Haven, MI', - 1269639 => 'South Haven, MI', - 1269646 => 'Marcellus, MI', - 1269649 => 'Vicksburg, MI', - 1269651 => 'Sturgis, MI', - 1269655 => 'Paw Paw, MI', - 1269657 => 'Paw Paw, MI', - 1269659 => 'Sturgis, MI', - 1269660 => 'Battle Creek, MI', - 1269663 => 'Edwardsburg, MI', - 1269665 => 'Galesburg, MI', - 1269668 => 'Mattawan, MI', - 1269673 => 'Allegan, MI', - 1269679 => 'Schoolcraft, MI', - 1269683 => 'Niles, MI', - 1269684 => 'Niles, MI', - 1269685 => 'Plainwell, MI', - 1269686 => 'Allegan, MI', - 1269687 => 'Niles, MI', - 1269692 => 'Otsego, MI', - 1269694 => 'Otsego, MI', - 1269695 => 'Buchanan, MI', - 1269729 => 'Athens, MI', - 1269731 => 'Augusta, MI', - 1269751 => 'Hamilton, MI', - 1269756 => 'Three Oaks, MI', - 1269781 => 'Marshall, MI', - 1269782 => 'Dowagiac, MI', - 1269789 => 'Marshall, MI', - 1269792 => 'Wayland, MI', - 1269795 => 'Middleville, MI', - 1269857 => 'Saugatuck, MI', - 1269925 => 'Benton Harbor, MI', - 1269926 => 'Benton Harbor, MI', - 1269927 => 'Benton Harbor, MI', - 1269934 => 'Benton Harbor, MI', - 1269944 => 'Benton Harbor, MI', - 1269945 => 'Hastings, MI', - 1269948 => 'Hastings, MI', - 1269962 => 'Battle Creek, MI', - 1269963 => 'Battle Creek, MI', - 1269964 => 'Battle Creek, MI', - 1269965 => 'Battle Creek, MI', - 1269966 => 'Battle Creek, MI', - 1269968 => 'Battle Creek, MI', - 1269969 => 'Battle Creek, MI', - 1269979 => 'Battle Creek, MI', - 1269982 => 'St. Joseph, MI', - 1269983 => 'St. Joseph, MI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1270.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1270.php deleted file mode 100644 index f3cb806db..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1270.php +++ /dev/null @@ -1,140 +0,0 @@ - 'Kentucky', - 1270230 => 'Leitchfield, KY', - 1270234 => 'Elizabethtown, KY', - 1270236 => 'Hickman, KY', - 1270237 => 'Scottsville, KY', - 1270242 => 'Clarkson, KY', - 1270247 => 'Mayfield, KY', - 1270251 => 'Mayfield, KY', - 1270259 => 'Leitchfield, KY', - 1270265 => 'Elkton, KY', - 1270273 => 'Calhoun, KY', - 1270274 => 'Beaver Dam, KY', - 1270298 => 'Hartford, KY', - 1270333 => 'Sturgis, KY', - 1270335 => 'Wickliffe, KY', - 1270338 => 'Greenville, KY', - 1270343 => 'Jamestown, KY', - 1270351 => 'Radcliff, KY', - 1270352 => 'Radcliff, KY', - 1270358 => 'Hodgenville, KY', - 1270360 => 'Elizabethtown, KY', - 1270365 => 'Princeton, KY', - 1270384 => 'Columbia, KY', - 1270388 => 'Eddyville, KY', - 1270389 => 'Morganfield, KY', - 1270393 => 'Bowling Green, KY', - 1270395 => 'Calvert City, KY', - 1270415 => 'Paducah, KY', - 1270422 => 'Brandenburg, KY', - 1270432 => 'Edmonton, KY', - 1270439 => 'Oak Grove, KY', - 1270441 => 'Paducah, KY', - 1270442 => 'Paducah, KY', - 1270443 => 'Paducah, KY', - 1270444 => 'Paducah, KY', - 1270465 => 'Campbellsville, KY', - 1270469 => 'Campbellsville, KY', - 1270472 => 'Fulton, KY', - 1270483 => 'Guthrie, KY', - 1270487 => 'Tompkinsville, KY', - 1270522 => 'Cadiz, KY', - 1270524 => 'Munfordville, KY', - 1270526 => 'Morgantown, KY', - 1270527 => 'Benton, KY', - 1270534 => 'Paducah, KY', - 1270542 => 'Auburn, KY', - 1270547 => 'Irvington, KY', - 1270554 => 'Paducah, KY', - 1270563 => 'Smiths Grove, KY', - 1270575 => 'Paducah, KY', - 1270586 => 'Franklin, KY', - 1270597 => 'Brownsville, KY', - 1270598 => 'Franklin, KY', - 1270622 => 'Scottsville, KY', - 1270629 => 'Glasgow, KY', - 1270640 => 'Oak Grove, KY', - 1270646 => 'Glasgow, KY', - 1270651 => 'Glasgow, KY', - 1270653 => 'Clinton, KY', - 1270659 => 'Glasgow, KY', - 1270665 => 'La Center, KY', - 1270667 => 'Providence, KY', - 1270678 => 'Glasgow, KY', - 1270683 => 'Owensboro, KY', - 1270684 => 'Owensboro, KY', - 1270685 => 'Owensboro, KY', - 1270686 => 'Owensboro, KY', - 1270687 => 'Owensboro, KY', - 1270688 => 'Owensboro, KY', - 1270689 => 'Owensboro, KY', - 1270691 => 'Owensboro, KY', - 1270692 => 'Lebanon, KY', - 1270699 => 'Lebanon, KY', - 1270707 => 'Hopkinsville, KY', - 1270725 => 'Russellville, KY', - 1270726 => 'Russellville, KY', - 1270735 => 'Elizabethtown, KY', - 1270737 => 'Elizabethtown, KY', - 1270745 => 'Bowling Green, KY', - 1270746 => 'Bowling Green, KY', - 1270753 => 'Murray, KY', - 1270754 => 'Central City, KY', - 1270755 => 'Lewisburg, KY', - 1270756 => 'Hardinsburg, KY', - 1270759 => 'Murray, KY', - 1270761 => 'Murray, KY', - 1270762 => 'Murray, KY', - 1270763 => 'Elizabethtown, KY', - 1270765 => 'Elizabethtown, KY', - 1270766 => 'Elizabethtown, KY', - 1270769 => 'Elizabethtown, KY', - 1270773 => 'Cave City, KY', - 1270780 => 'Bowling Green, KY', - 1270781 => 'Bowling Green, KY', - 1270782 => 'Bowling Green, KY', - 1270783 => 'Bowling Green, KY', - 1270786 => 'Horse Cave, KY', - 1270789 => 'Campbellsville, KY', - 1270793 => 'Bowling Green, KY', - 1270796 => 'Bowling Green, KY', - 1270797 => 'Dawson Springs, KY', - 1270798 => 'Fort Campbell, KY', - 1270821 => 'Madisonville, KY', - 1270824 => 'Madisonville, KY', - 1270825 => 'Madisonville, KY', - 1270826 => 'Henderson, KY', - 1270827 => 'Henderson, KY', - 1270830 => 'Henderson, KY', - 1270831 => 'Henderson, KY', - 1270842 => 'Bowling Green, KY', - 1270843 => 'Bowling Green, KY', - 1270846 => 'Bowling Green, KY', - 1270852 => 'Owensboro, KY', - 1270862 => 'Cecilia, KY', - 1270864 => 'Burkesville, KY', - 1270866 => 'Russell Springs, KY', - 1270877 => 'Vine Grove, KY', - 1270879 => 'Caneyville, KY', - 1270885 => 'Hopkinsville, KY', - 1270886 => 'Hopkinsville, KY', - 1270887 => 'Hopkinsville, KY', - 1270889 => 'Hopkinsville, KY', - 1270898 => 'Paducah, KY', - 1270901 => 'Bowling Green, KY', - 1270904 => 'Bowling Green, KY', - 1270926 => 'Owensboro, KY', - 1270927 => 'Hawesville, KY', - 1270928 => 'Smithland, KY', - 1270932 => 'Greensburg, KY', - 1270965 => 'Marion, KY', - 1270982 => 'Elizabethtown, KY', - 1270988 => 'Salem, KY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1272.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1272.php deleted file mode 100644 index 050b08101..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1272.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Pennsylvania', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1276.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1276.php deleted file mode 100644 index 887981424..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1276.php +++ /dev/null @@ -1,65 +0,0 @@ - 'Virginia', - 1276223 => 'Wytheville, VA', - 1276228 => 'Wytheville, VA', - 1276236 => 'Galax, VA', - 1276238 => 'Galax, VA', - 1276322 => 'Bluefield, VA', - 1276326 => 'Bluefield, VA', - 1276328 => 'Wise, VA', - 1276346 => 'Jonesville, VA', - 1276386 => 'Gate City, VA', - 1276395 => 'Coeburn, VA', - 1276429 => 'Glade Spring, VA', - 1276431 => 'Duffield, VA', - 1276466 => 'Bristol, VA', - 1276475 => 'Damascus, VA', - 1276496 => 'Saltville, VA', - 1276498 => 'Oakwood, VA', - 1276523 => 'Big Stone Gap, VA', - 1276546 => 'Pennington Gap, VA', - 1276591 => 'Bristol, VA', - 1276596 => 'Richlands, VA', - 1276619 => 'Abingdon, VA', - 1276623 => 'Abingdon, VA', - 1276628 => 'Abingdon, VA', - 1276629 => 'Bassett, VA', - 1276632 => 'Martinsville, VA', - 1276634 => 'Martinsville, VA', - 1276637 => 'Max Meadows, VA', - 1276638 => 'Martinsville, VA', - 1276644 => 'Bristol, VA', - 1276645 => 'Bristol, VA', - 1276646 => 'Chilhowie, VA', - 1276647 => 'Collinsville, VA', - 1276650 => 'Axton, VA', - 1276656 => 'Martinsville, VA', - 1276666 => 'Martinsville, VA', - 1276669 => 'Bristol, VA', - 1276676 => 'Abingdon, VA', - 1276679 => 'Norton, VA', - 1276686 => 'Rural Retreat, VA', - 1276688 => 'Bland, VA', - 1276694 => 'Stuart, VA', - 1276728 => 'Hillsville, VA', - 1276762 => 'St. Paul, VA', - 1276773 => 'Independence, VA', - 1276782 => 'Marion, VA', - 1276783 => 'Marion, VA', - 1276796 => 'Pound, VA', - 1276865 => 'Haysi, VA', - 1276873 => 'Honaker, VA', - 1276889 => 'Lebanon, VA', - 1276926 => 'Clintwood, VA', - 1276935 => 'Grundy, VA', - 1276944 => 'Meadowview, VA', - 1276956 => 'Ridgeway, VA', - 1276964 => 'Richlands, VA', - 1276988 => 'Tazewell, VA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1281.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1281.php deleted file mode 100644 index 996035cc5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1281.php +++ /dev/null @@ -1,253 +0,0 @@ - 'Texas', - 1281207 => 'Sugar Land, TX', - 1281208 => 'Missouri City, TX', - 1281209 => 'Houston, TX', - 1281213 => 'Cypress, TX', - 1281218 => 'Houston, TX', - 1281219 => 'Houston, TX', - 1281227 => 'Houston, TX', - 1281238 => 'Richmond, TX', - 1281242 => 'Sugar Land, TX', - 1281251 => 'Spring, TX', - 1281252 => 'Magnolia, TX', - 1281255 => 'Tomball, TX', - 1281256 => 'Cypress, TX', - 1281259 => 'Magnolia, TX', - 1281260 => 'Houston, TX', - 1281265 => 'Sugar Land, TX', - 1281272 => 'Houston, TX', - 1281277 => 'Sugar Land, TX', - 1281280 => 'Houston, TX', - 1281286 => 'Houston, TX', - 1281288 => 'Spring, TX', - 1281290 => 'Tomball, TX', - 1281291 => 'Seabrook, TX', - 1281292 => 'Spring, TX', - 1281293 => 'Houston, TX', - 1281296 => 'Spring, TX', - 1281298 => 'Spring, TX', - 1281304 => 'Cypress, TX', - 1281313 => 'Sugar Land, TX', - 1281319 => 'Humble, TX', - 1281320 => 'Spring, TX', - 1281324 => 'Huffman, TX', - 1281326 => 'Seabrook, TX', - 1281328 => 'Crosby, TX', - 1281331 => 'Alvin, TX', - 1281333 => 'Houston, TX', - 1281335 => 'Houston, TX', - 1281337 => 'Dickinson, TX', - 1281340 => 'Sugar Land, TX', - 1281341 => 'Richmond, TX', - 1281345 => 'Houston, TX', - 1281346 => 'Fulshear, TX', - 1281347 => 'Katy, TX', - 1281350 => 'Spring, TX', - 1281351 => 'Tomball, TX', - 1281353 => 'Spring, TX', - 1281354 => 'Porter, TX', - 1281355 => 'Spring, TX', - 1281356 => 'Magnolia, TX', - 1281357 => 'Tomball, TX', - 1281358 => 'Kingwood, TX', - 1281360 => 'Kingwood, TX', - 1281361 => 'Kingwood, TX', - 1281367 => 'Spring, TX', - 1281370 => 'Spring, TX', - 1281371 => 'Katy, TX', - 1281372 => 'Houston, TX', - 1281373 => 'Cypress, TX', - 1281375 => 'Brookshire, TX', - 1281376 => 'Spring, TX', - 1281379 => 'Spring, TX', - 1281383 => 'Baytown, TX', - 1281388 => 'Alvin, TX', - 1281391 => 'Katy, TX', - 1281392 => 'Katy, TX', - 1281395 => 'Katy, TX', - 1281397 => 'Houston, TX', - 1281398 => 'Katy, TX', - 1281399 => 'New Caney, TX', - 1281403 => 'Missouri City, TX', - 1281405 => 'Houston, TX', - 1281412 => 'Pearland, TX', - 1281420 => 'Baytown, TX', - 1281421 => 'Baytown, TX', - 1281422 => 'Baytown, TX', - 1281424 => 'Baytown, TX', - 1281426 => 'Highlands, TX', - 1281427 => 'Baytown, TX', - 1281428 => 'Baytown, TX', - 1281432 => 'Cleveland, TX', - 1281436 => 'Houston, TX', - 1281437 => 'Missouri City, TX', - 1281438 => 'Missouri City, TX', - 1281440 => 'Houston, TX', - 1281441 => 'Humble, TX', - 1281442 => 'Houston, TX', - 1281443 => 'Houston, TX', - 1281444 => 'Houston, TX', - 1281445 => 'Houston, TX', - 1281446 => 'Humble, TX', - 1281447 => 'Houston, TX', - 1281448 => 'Houston, TX', - 1281449 => 'Houston, TX', - 1281452 => 'Channelview, TX', - 1281454 => 'Houston, TX', - 1281456 => 'Houston, TX', - 1281457 => 'Channelview, TX', - 1281458 => 'Houston, TX', - 1281459 => 'Houston, TX', - 1281461 => 'Houston, TX', - 1281462 => 'Crosby, TX', - 1281463 => 'Houston, TX', - 1281464 => 'Houston, TX', - 1281465 => 'Spring, TX', - 1281469 => 'Houston, TX', - 1281470 => 'La Porte, TX', - 1281471 => 'La Porte, TX', - 1281474 => 'Seabrook, TX', - 1281476 => 'Deer Park, TX', - 1281477 => 'Houston, TX', - 1281478 => 'Deer Park, TX', - 1281479 => 'Deer Park, TX', - 1281480 => 'Houston, TX', - 1281481 => 'Houston, TX', - 1281482 => 'Friendswood, TX', - 1281484 => 'Houston, TX', - 1281485 => 'Pearland, TX', - 1281487 => 'Pasadena, TX', - 1281488 => 'Houston, TX', - 1281489 => 'Manvel, TX', - 1281491 => 'Sugar Land, TX', - 1281493 => 'Houston, TX', - 1281494 => 'Sugar Land, TX', - 1281495 => 'Houston, TX', - 1281496 => 'Houston, TX', - 1281497 => 'Houston, TX', - 1281498 => 'Houston, TX', - 1281501 => 'Houston, TX', - 1281506 => 'Houston, TX', - 1281516 => 'Tomball, TX', - 1281517 => 'Houston, TX', - 1281528 => 'Spring, TX', - 1281530 => 'Houston, TX', - 1281531 => 'Houston, TX', - 1281533 => 'Fulshear, TX', - 1281534 => 'Dickinson, TX', - 1281537 => 'Houston, TX', - 1281540 => 'Humble, TX', - 1281545 => 'Richmond, TX', - 1281548 => 'Humble, TX', - 1281550 => 'Houston, TX', - 1281554 => 'League City, TX', - 1281556 => 'Houston, TX', - 1281558 => 'Houston, TX', - 1281559 => 'Bacliff, TX', - 1281561 => 'Houston, TX', - 1281564 => 'Houston, TX', - 1281565 => 'Sugar Land, TX', - 1281568 => 'Houston, TX', - 1281573 => 'Baytown, TX', - 1281574 => 'Katy, TX', - 1281575 => 'Houston, TX', - 1281578 => 'Katy, TX', - 1281579 => 'Katy, TX', - 1281580 => 'Houston, TX', - 1281583 => 'Houston, TX', - 1281585 => 'Alvin, TX', - 1281586 => 'Houston, TX', - 1281587 => 'Houston, TX', - 1281589 => 'Houston, TX', - 1281590 => 'Houston, TX', - 1281591 => 'Houston, TX', - 1281592 => 'Cleveland, TX', - 1281593 => 'Cleveland, TX', - 1281596 => 'Houston, TX', - 1281597 => 'Houston, TX', - 1281598 => 'Houston, TX', - 1281599 => 'Katy, TX', - 1281617 => 'Houston, TX', - 1281634 => 'Sugar Land, TX', - 1281644 => 'Katy, TX', - 1281646 => 'Katy, TX', - 1281648 => 'Friendswood, TX', - 1281651 => 'Spring, TX', - 1281656 => 'Houston, TX', - 1281659 => 'Cleveland, TX', - 1281679 => 'Houston, TX', - 1281693 => 'Katy, TX', - 1281719 => 'Spring, TX', - 1281741 => 'Houston, TX', - 1281752 => 'Houston, TX', - 1281756 => 'Alvin, TX', - 1281758 => 'Cypress, TX', - 1281759 => 'Houston, TX', - 1281778 => 'Missouri City, TX', - 1281781 => 'Houston, TX', - 1281784 => 'Houston, TX', - 1281807 => 'Houston, TX', - 1281812 => 'Humble, TX', - 1281820 => 'Houston, TX', - 1281821 => 'Houston, TX', - 1281822 => 'Houston, TX', - 1281824 => 'Alvin, TX', - 1281829 => 'Katy, TX', - 1281835 => 'Missouri City, TX', - 1281837 => 'Baytown, TX', - 1281839 => 'Baytown, TX', - 1281842 => 'La Porte, TX', - 1281847 => 'Houston, TX', - 1281852 => 'Humble, TX', - 1281855 => 'Houston, TX', - 1281856 => 'Houston, TX', - 1281858 => 'Houston, TX', - 1281859 => 'Houston, TX', - 1281860 => 'Channelview, TX', - 1281861 => 'Houston, TX', - 1281866 => 'Houston, TX', - 1281867 => 'La Porte, TX', - 1281870 => 'Houston, TX', - 1281872 => 'Houston, TX', - 1281873 => 'Houston, TX', - 1281875 => 'Houston, TX', - 1281876 => 'Houston, TX', - 1281879 => 'Houston, TX', - 1281880 => 'Houston, TX', - 1281888 => 'Houston, TX', - 1281890 => 'Houston, TX', - 1281893 => 'Houston, TX', - 1281894 => 'Houston, TX', - 1281895 => 'Houston, TX', - 1281897 => 'Houston, TX', - 1281907 => 'Spring, TX', - 1281919 => 'Houston, TX', - 1281920 => 'Houston, TX', - 1281922 => 'Houston, TX', - 1281930 => 'Deer Park, TX', - 1281931 => 'Houston, TX', - 1281933 => 'Houston, TX', - 1281934 => 'Brookshire, TX', - 1281955 => 'Houston, TX', - 1281970 => 'Houston, TX', - 1281973 => 'Humble, TX', - 1281974 => 'Houston, TX', - 1281980 => 'Sugar Land, TX', - 1281983 => 'Houston, TX', - 1281987 => 'Houston, TX', - 1281988 => 'Houston, TX', - 1281991 => 'Pasadena, TX', - 1281992 => 'Friendswood, TX', - 1281993 => 'Friendswood, TX', - 1281996 => 'Friendswood, TX', - 1281997 => 'Pearland, TX', - 1281998 => 'Pasadena, TX', - 1281999 => 'Houston, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1289.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1289.php deleted file mode 100644 index f3a43fdee..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1289.php +++ /dev/null @@ -1,16 +0,0 @@ - 'Ontario', - 1289240 => 'Oshawa, ON', - 1289296 => 'Niagara Falls, ON', - 1289337 => 'Burlington, ON', - 1289362 => 'St. Catharines, ON', - 1289389 => 'Hamilton, ON', - 1289396 => 'Hamilton, ON', - 1289752 => 'Brampton, ON', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/13.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/13.php new file mode 100644 index 000000000..3c36f2aa5 --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/13.php @@ -0,0 +1,4184 @@ + 'Maryland', + 1301203 => 'Fort Washington, MD', + 1301208 => 'Gaithersburg, MD', + 1301210 => 'Beltsville, MD', + 1301215 => 'Bethesda, MD', + 1301216 => 'Gaithersburg, MD', + 1301217 => 'Rockville, MD', + 1301220 => 'Greenbelt, MD', + 1301223 => 'Williamsport, MD', + 1301228 => 'Frederick, MD', + 1301229 => 'Bethesda, MD', + 1301230 => 'Rockville, MD', + 1301231 => 'Rockville, MD', + 1301248 => 'Fort Washington, MD', + 1301251 => 'Rockville, MD', + 1301253 => 'Damascus, MD', + 1301258 => 'Gaithersburg, MD', + 1301259 => 'Newburg, MD', + 1301260 => 'Olney, MD', + 1301262 => 'Bowie, MD', + 1301263 => 'Bethesda, MD', + 1301270 => 'Takoma Park, MD', + 1301271 => 'Thurmont, MD', + 1301274 => 'Hughesville, MD', + 1301279 => 'Rockville, MD', + 1301283 => 'Accokeek, MD', + 1301292 => 'Fort Washington, MD', + 1301293 => 'Myersville, MD', + 1301294 => 'Rockville, MD', + 1301295 => 'Bethesda, MD', + 1301296 => 'Towson, MD', + 1301297 => 'Clinton, MD', + 1301299 => 'Potomac, MD', + 1301306 => 'Lanham, MD', + 1301309 => 'Rockville, MD', + 1301315 => 'Rockville, MD', + 1301316 => 'Temple Hills, MD', + 1301317 => 'Laurel, MD', + 1301319 => 'Bethesda, MD', + 1301320 => 'Bethesda, MD', + 1301330 => 'Gaithersburg, MD', + 1301334 => 'Oakland, MD', + 1301336 => 'Capitol Heights, MD', + 1301340 => 'Rockville, MD', + 1301349 => 'Poolesville, MD', + 1301352 => 'Bowie, MD', + 1301353 => 'Germantown, MD', + 1301355 => 'Gaithersburg, MD', + 1301359 => 'Westernport, MD', + 1301362 => 'Laurel, MD', + 1301365 => 'Bethesda, MD', + 1301371 => 'Middletown, MD', + 1301372 => 'Brandywine, MD', + 1301373 => 'Hollywood, MD', + 1301374 => 'Waldorf, MD', + 1301375 => 'Bryans Road, MD', + 1301384 => 'Silver Spring, MD', + 1301392 => 'La Plata, MD', + 1301393 => 'Hagerstown, MD', + 1301396 => 'Waldorf, MD', + 1301402 => 'Bethesda, MD', + 1301417 => 'Gaithersburg, MD', + 1301421 => 'Burtonsville, MD', + 1301422 => 'Hyattsville, MD', + 1301423 => 'Temple Hills, MD', + 1301424 => 'Rockville, MD', + 1301428 => 'Germantown, MD', + 1301429 => 'Lanham, MD', + 1301438 => 'Silver Spring, MD', + 1301447 => 'Emmitsburg, MD', + 1301449 => 'Temple Hills, MD', + 1301459 => 'Lanham, MD', + 1301463 => 'Lonaconing, MD', + 1301464 => 'Bowie, MD', + 1301468 => 'Rockville, MD', + 1301469 => 'Bethesda, MD', + 1301473 => 'Frederick, MD', + 1301475 => 'Leonardtown, MD', + 1301483 => 'Laurel, MD', + 1301490 => 'Laurel, MD', + 1301493 => 'Bethesda, MD', + 1301495 => 'Silver Spring, MD', + 1301496 => 'Bethesda, MD', + 1301497 => 'Laurel, MD', + 1301498 => 'Laurel, MD', + 1301515 => 'Germantown, MD', + 1301519 => 'Gaithersburg, MD', + 1301527 => 'Gaithersburg, MD', + 1301528 => 'Germantown, MD', + 1301530 => 'Bethesda, MD', + 1301533 => 'Oakland, MD', + 1301540 => 'Germantown, MD', + 1301545 => 'Rockville, MD', + 1301552 => 'Lanham, MD', + 1301559 => 'Hyattsville, MD', + 1301562 => 'Silver Spring, MD', + 1301564 => 'Bethesda, MD', + 1301565 => 'Silver Spring, MD', + 1301567 => 'Oxon Hill, MD', + 1301570 => 'Olney, MD', + 1301571 => 'Bethesda, MD', + 1301572 => 'Silver Spring, MD', + 1301574 => 'Upper Marlboro, MD', + 1301577 => 'Lanham, MD', + 1301582 => 'Hagerstown, MD', + 1301585 => 'Silver Spring, MD', + 1301587 => 'Silver Spring, MD', + 1301588 => 'Silver Spring, MD', + 1301589 => 'Silver Spring, MD', + 1301590 => 'Gaithersburg, MD', + 1301592 => 'Silver Spring, MD', + 1301593 => 'Silver Spring, MD', + 1301595 => 'Beltsville, MD', + 1301596 => 'Columbia, MD', + 1301598 => 'Silver Spring, MD', + 1301599 => 'Upper Marlboro, MD', + 1301600 => 'Frederick, MD', + 1301604 => 'Laurel, MD', + 1301608 => 'Silver Spring, MD', + 1301609 => 'La Plata, MD', + 1301610 => 'Rockville, MD', + 1301618 => 'Upper Marlboro, MD', + 1301620 => 'Frederick, MD', + 1301622 => 'Silver Spring, MD', + 1301624 => 'Frederick, MD', + 1301627 => 'Upper Marlboro, MD', + 1301630 => 'Temple Hills, MD', + 1301631 => 'Frederick, MD', + 1301632 => 'Waldorf, MD', + 1301638 => 'Waldorf, MD', + 1301645 => 'Waldorf, MD', + 1301649 => 'Silver Spring, MD', + 1301654 => 'Bethesda, MD', + 1301656 => 'Bethesda, MD', + 1301657 => 'Bethesda, MD', + 1301662 => 'Frederick, MD', + 1301663 => 'Frederick, MD', + 1301665 => 'Hagerstown, MD', + 1301668 => 'Frederick, MD', + 1301670 => 'Gaithersburg, MD', + 1301678 => 'Hancock, MD', + 1301680 => 'Silver Spring, MD', + 1301681 => 'Silver Spring, MD', + 1301682 => 'Frederick, MD', + 1301686 => 'Oxon Hill, MD', + 1301689 => 'Frostburg, MD', + 1301694 => 'Frederick, MD', + 1301695 => 'Frederick, MD', + 1301696 => 'Frederick, MD', + 1301698 => 'Frederick, MD', + 1301702 => 'Temple Hills, MD', + 1301705 => 'Waldorf, MD', + 1301714 => 'Hagerstown, MD', + 1301718 => 'Bethesda, MD', + 1301722 => 'Cumberland, MD', + 1301723 => 'Cumberland, MD', + 1301724 => 'Cumberland, MD', + 1301725 => 'Laurel, MD', + 1301729 => 'Cumberland, MD', + 1301733 => 'Hagerstown, MD', + 1301737 => 'California, MD', + 1301738 => 'Rockville, MD', + 1301739 => 'Hagerstown, MD', + 1301740 => 'Gaithersburg, MD', + 1301743 => 'Indian Head, MD', + 1301745 => 'Hagerstown, MD', + 1301749 => 'Oxon Hill, MD', + 1301754 => 'Silver Spring, MD', + 1301759 => 'Cumberland, MD', + 1301762 => 'Rockville, MD', + 1301765 => 'Potomac, MD', + 1301766 => 'Hagerstown, MD', + 1301767 => 'Bethesda, MD', + 1301770 => 'Rockville, MD', + 1301774 => 'Olney, MD', + 1301776 => 'Laurel, MD', + 1301777 => 'Cumberland, MD', + 1301780 => 'Upper Marlboro, MD', + 1301782 => 'Brandywine, MD', + 1301790 => 'Hagerstown, MD', + 1301791 => 'Hagerstown, MD', + 1301797 => 'Hagerstown, MD', + 1301805 => 'Bowie, MD', + 1301809 => 'Bowie, MD', + 1301816 => 'Rockville, MD', + 1301824 => 'Smithsburg, MD', + 1301829 => 'Mount Airy, MD', + 1301834 => 'Brunswick, MD', + 1301838 => 'Rockville, MD', + 1301839 => 'Oxon Hill, MD', + 1301840 => 'Gaithersburg, MD', + 1301842 => 'Clear Spring, MD', + 1301843 => 'Waldorf, MD', + 1301845 => 'Walkersville, MD', + 1301846 => 'Frederick, MD', + 1301853 => 'Hyattsville, MD', + 1301856 => 'Clinton, MD', + 1301860 => 'Bowie, MD', + 1301863 => 'Lexington Park, MD', + 1301868 => 'Clinton, MD', + 1301869 => 'Gaithersburg, MD', + 1301877 => 'Clinton, MD', + 1301879 => 'Silver Spring, MD', + 1301881 => 'Rockville, MD', + 1301884 => 'Mechanicsville, MD', + 1301885 => 'Waldorf, MD', + 1301890 => 'Silver Spring, MD', + 1301891 => 'Takoma Park, MD', + 1301894 => 'Temple Hills, MD', + 1301895 => 'Grantsville, MD', + 1301896 => 'Bethesda, MD', + 1301897 => 'Bethesda, MD', + 1301899 => 'Temple Hills, MD', + 1301907 => 'Bethesda, MD', + 1301913 => 'Bethesda, MD', + 1301916 => 'Germantown, MD', + 1301926 => 'Gaithersburg, MD', + 1301929 => 'Kensington, MD', + 1301931 => 'Beltsville, MD', + 1301932 => 'Waldorf, MD', + 1301934 => 'La Plata, MD', + 1301937 => 'Beltsville, MD', + 1301947 => 'Gaithersburg, MD', + 1301948 => 'Gaithersburg, MD', + 1301951 => 'Bethesda, MD', + 1301952 => 'Upper Marlboro, MD', + 1301953 => 'Laurel, MD', + 1301961 => 'Bethesda, MD', + 1301963 => 'Gaithersburg, MD', + 1301972 => 'Germantown, MD', + 1301977 => 'Gaithersburg, MD', + 1301982 => 'Greenbelt, MD', + 1301983 => 'Potomac, MD', + 1301984 => 'Rockville, MD', + 1301986 => 'Bethesda, MD', + 1301987 => 'Gaithersburg, MD', + 1301989 => 'Silver Spring, MD', + 1301990 => 'Gaithersburg, MD', + 1301997 => 'Leonardtown, MD', + 1302 => 'Delaware', + 1302224 => 'Newark, DE', + 1302225 => 'Wilmington, DE', + 1302226 => 'Rehoboth Beach, DE', + 1302227 => 'Rehoboth Beach, DE', + 1302234 => 'Hockessin, DE', + 1302235 => 'Hockessin, DE', + 1302239 => 'Hockessin, DE', + 1302255 => 'Wilmington, DE', + 1302266 => 'Newark, DE', + 1302284 => 'Felton, DE', + 1302292 => 'Newark, DE', + 1302322 => 'New Castle, DE', + 1302323 => 'New Castle, DE', + 1302324 => 'New Castle, DE', + 1302325 => 'New Castle, DE', + 1302326 => 'New Castle, DE', + 1302328 => 'New Castle, DE', + 1302337 => 'Bridgeville, DE', + 1302349 => 'Greenwood, DE', + 1302366 => 'Newark, DE', + 1302368 => 'Newark, DE', + 1302369 => 'Newark, DE', + 1302376 => 'Middletown, DE', + 1302378 => 'Middletown, DE', + 1302384 => 'Wilmington, DE', + 1302395 => 'New Castle, DE', + 1302398 => 'Harrington, DE', + 1302421 => 'Wilmington, DE', + 1302422 => 'Milford, DE', + 1302424 => 'Milford, DE', + 1302425 => 'Wilmington, DE', + 1302427 => 'Wilmington, DE', + 1302428 => 'Wilmington, DE', + 1302429 => 'Wilmington, DE', + 1302430 => 'Milford, DE', + 1302436 => 'Selbyville, DE', + 1302449 => 'Middletown, DE', + 1302453 => 'Newark, DE', + 1302454 => 'Newark, DE', + 1302455 => 'Newark, DE', + 1302456 => 'Newark, DE', + 1302472 => 'Wilmington, DE', + 1302475 => 'Wilmington, DE', + 1302477 => 'Wilmington, DE', + 1302478 => 'Wilmington, DE', + 1302479 => 'Wilmington, DE', + 1302482 => 'Wilmington, DE', + 1302492 => 'Hartly, DE', + 1302529 => 'Wilmington, DE', + 1302533 => 'Newark, DE', + 1302543 => 'Wilmington, DE', + 1302571 => 'Wilmington, DE', + 1302573 => 'Wilmington, DE', + 1302575 => 'Wilmington, DE', + 1302576 => 'Wilmington, DE', + 1302577 => 'Wilmington, DE', + 1302623 => 'Newark, DE', + 1302628 => 'Seaford, DE', + 1302629 => 'Seaford, DE', + 1302633 => 'Wilmington, DE', + 1302636 => 'Wilmington, DE', + 1302644 => 'Lewes, DE', + 1302645 => 'Lewes, DE', + 1302651 => 'Wilmington, DE', + 1302652 => 'Wilmington, DE', + 1302653 => 'Smyrna, DE', + 1302654 => 'Wilmington, DE', + 1302655 => 'Wilmington, DE', + 1302656 => 'Wilmington, DE', + 1302658 => 'Wilmington, DE', + 1302659 => 'Smyrna, DE', + 1302661 => 'Wilmington, DE', + 1302672 => 'Dover, DE', + 1302674 => 'Dover, DE', + 1302677 => 'Dover, DE', + 1302678 => 'Dover, DE', + 1302684 => 'Milton, DE', + 1302691 => 'Wilmington, DE', + 1302730 => 'Dover, DE', + 1302731 => 'Newark, DE', + 1302732 => 'Dagsboro, DE', + 1302733 => 'Newark, DE', + 1302734 => 'Dover, DE', + 1302735 => 'Dover, DE', + 1302736 => 'Dover, DE', + 1302737 => 'Newark, DE', + 1302738 => 'Newark, DE', + 1302739 => 'Dover, DE', + 1302744 => 'Dover, DE', + 1302761 => 'Wilmington, DE', + 1302762 => 'Wilmington, DE', + 1302764 => 'Wilmington, DE', + 1302777 => 'Wilmington, DE', + 1302778 => 'Wilmington, DE', + 1302792 => 'Claymont, DE', + 1302798 => 'Claymont, DE', + 1302832 => 'Bear, DE', + 1302838 => 'Bear, DE', + 1302846 => 'Delmar, DE', + 1302854 => 'Georgetown, DE', + 1302855 => 'Georgetown, DE', + 1302856 => 'Georgetown, DE', + 1302875 => 'Laurel, DE', + 1302888 => 'Wilmington, DE', + 1302892 => 'Wilmington, DE', + 1302894 => 'Newark, DE', + 1302934 => 'Millsboro, DE', + 1302945 => 'Millsboro, DE', + 1302947 => 'Millsboro, DE', + 1302984 => 'Wilmington, DE', + 1302992 => 'Wilmington, DE', + 1302993 => 'Wilmington, DE', + 1302994 => 'Wilmington, DE', + 1302995 => 'Wilmington, DE', + 1302998 => 'Wilmington, DE', + 1302999 => 'Wilmington, DE', + 1303 => 'Colorado', + 1303205 => 'Lakewood, CO', + 1303215 => 'Golden, CO', + 1303216 => 'Golden, CO', + 1303231 => 'Lakewood, CO', + 1303232 => 'Lakewood, CO', + 1303233 => 'Lakewood, CO', + 1303237 => 'Lakewood, CO', + 1303238 => 'Lakewood, CO', + 1303239 => 'Lakewood, CO', + 1303245 => 'Boulder, CO', + 1303256 => 'Denver, CO', + 1303258 => 'Nederland, CO', + 1303271 => 'Golden, CO', + 1303273 => 'Golden, CO', + 1303277 => 'Golden, CO', + 1303278 => 'Golden, CO', + 1303279 => 'Golden, CO', + 1303282 => 'Denver, CO', + 1303291 => 'Denver, CO', + 1303292 => 'Denver, CO', + 1303293 => 'Denver, CO', + 1303294 => 'Denver, CO', + 1303295 => 'Denver, CO', + 1303296 => 'Denver, CO', + 1303297 => 'Denver, CO', + 1303298 => 'Denver, CO', + 1303300 => 'Denver, CO', + 1303306 => 'Aurora, CO', + 1303307 => 'Denver, CO', + 1303308 => 'Denver, CO', + 1303315 => 'Denver, CO', + 1303316 => 'Denver, CO', + 1303318 => 'Denver, CO', + 1303320 => 'Denver, CO', + 1303321 => 'Denver, CO', + 1303322 => 'Denver, CO', + 1303329 => 'Denver, CO', + 1303331 => 'Denver, CO', + 1303333 => 'Denver, CO', + 1303337 => 'Aurora, CO', + 1303340 => 'Aurora, CO', + 1303341 => 'Aurora, CO', + 1303342 => 'Denver, CO', + 1303343 => 'Aurora, CO', + 1303344 => 'Aurora, CO', + 1303346 => 'Highlands Ranch, CO', + 1303347 => 'Littleton, CO', + 1303355 => 'Denver, CO', + 1303360 => 'Aurora, CO', + 1303363 => 'Aurora, CO', + 1303364 => 'Aurora, CO', + 1303365 => 'Aurora, CO', + 1303366 => 'Aurora, CO', + 1303367 => 'Aurora, CO', + 1303368 => 'Aurora, CO', + 1303371 => 'Denver, CO', + 1303372 => 'Denver, CO', + 1303373 => 'Denver, CO', + 1303375 => 'Denver, CO', + 1303376 => 'Denver, CO', + 1303377 => 'Denver, CO', + 1303384 => 'Golden, CO', + 1303388 => 'Denver, CO', + 1303393 => 'Denver, CO', + 1303394 => 'Denver, CO', + 1303398 => 'Denver, CO', + 1303399 => 'Denver, CO', + 1303400 => 'Aurora, CO', + 1303402 => 'Boulder, CO', + 1303410 => 'Broomfield, CO', + 1303413 => 'Boulder, CO', + 1303415 => 'Boulder, CO', + 1303423 => 'Arvada, CO', + 1303433 => 'Denver, CO', + 1303436 => 'Denver, CO', + 1303438 => 'Broomfield, CO', + 1303439 => 'Broomfield, CO', + 1303440 => 'Boulder, CO', + 1303441 => 'Boulder, CO', + 1303442 => 'Boulder, CO', + 1303443 => 'Boulder, CO', + 1303444 => 'Boulder, CO', + 1303446 => 'Denver, CO', + 1303447 => 'Boulder, CO', + 1303448 => 'Boulder, CO', + 1303449 => 'Boulder, CO', + 1303455 => 'Denver, CO', + 1303458 => 'Denver, CO', + 1303460 => 'Broomfield, CO', + 1303464 => 'Broomfield, CO', + 1303465 => 'Broomfield, CO', + 1303466 => 'Broomfield, CO', + 1303469 => 'Broomfield, CO', + 1303470 => 'Highlands Ranch, CO', + 1303471 => 'Highlands Ranch, CO', + 1303477 => 'Denver, CO', + 1303480 => 'Denver, CO', + 1303481 => 'Aurora, CO', + 1303485 => 'Longmont, CO', + 1303492 => 'Boulder, CO', + 1303493 => 'Denver, CO', + 1303494 => 'Boulder, CO', + 1303498 => 'Brighton, CO', + 1303499 => 'Boulder, CO', + 1303504 => 'Denver, CO', + 1303526 => 'Golden, CO', + 1303530 => 'Boulder, CO', + 1303534 => 'Denver, CO', + 1303536 => 'Hudson, CO', + 1303541 => 'Boulder, CO', + 1303543 => 'Boulder, CO', + 1303544 => 'Boulder, CO', + 1303545 => 'Boulder, CO', + 1303546 => 'Boulder, CO', + 1303554 => 'Boulder, CO', + 1303567 => 'Idaho Springs, CO', + 1303569 => 'Georgetown, CO', + 1303571 => 'Denver, CO', + 1303572 => 'Denver, CO', + 1303573 => 'Denver, CO', + 1303574 => 'Denver, CO', + 1303576 => 'Denver, CO', + 1303582 => 'Black Hawk, CO', + 1303584 => 'Denver, CO', + 1303590 => 'Lakewood, CO', + 1303592 => 'Denver, CO', + 1303595 => 'Denver, CO', + 1303607 => 'Denver, CO', + 1303617 => 'Aurora, CO', + 1303621 => 'Kiowa, CO', + 1303622 => 'Strasburg, CO', + 1303623 => 'Denver, CO', + 1303626 => 'Denver, CO', + 1303627 => 'Aurora, CO', + 1303628 => 'Denver, CO', + 1303629 => 'Denver, CO', + 1303637 => 'Brighton, CO', + 1303639 => 'Denver, CO', + 1303642 => 'Golden, CO', + 1303644 => 'Bennett, CO', + 1303646 => 'Elizabeth, CO', + 1303648 => 'Elbert, CO', + 1303651 => 'Longmont, CO', + 1303652 => 'Niwot, CO', + 1303654 => 'Brighton, CO', + 1303655 => 'Brighton, CO', + 1303659 => 'Brighton, CO', + 1303660 => 'Castle Rock, CO', + 1303663 => 'Castle Rock, CO', + 1303670 => 'Evergreen, CO', + 1303673 => 'Louisville, CO', + 1303674 => 'Evergreen, CO', + 1303678 => 'Longmont, CO', + 1303679 => 'Evergreen, CO', + 1303680 => 'Aurora, CO', + 1303681 => 'Larkspur, CO', + 1303682 => 'Longmont, CO', + 1303683 => 'Highlands Ranch, CO', + 1303684 => 'Longmont, CO', + 1303688 => 'Castle Rock, CO', + 1303690 => 'Aurora, CO', + 1303691 => 'Denver, CO', + 1303692 => 'Denver, CO', + 1303693 => 'Aurora, CO', + 1303695 => 'Aurora, CO', + 1303696 => 'Aurora, CO', + 1303697 => 'Morrison, CO', + 1303698 => 'Denver, CO', + 1303702 => 'Longmont, CO', + 1303703 => 'Littleton, CO', + 1303715 => 'Denver, CO', + 1303716 => 'Lakewood, CO', + 1303722 => 'Denver, CO', + 1303724 => 'Aurora, CO', + 1303730 => 'Littleton, CO', + 1303732 => 'Keenesburg, CO', + 1303733 => 'Denver, CO', + 1303734 => 'Littleton, CO', + 1303738 => 'Littleton, CO', + 1303739 => 'Aurora, CO', + 1303744 => 'Denver, CO', + 1303745 => 'Aurora, CO', + 1303750 => 'Aurora, CO', + 1303751 => 'Aurora, CO', + 1303752 => 'Aurora, CO', + 1303753 => 'Denver, CO', + 1303755 => 'Aurora, CO', + 1303756 => 'Denver, CO', + 1303757 => 'Denver, CO', + 1303758 => 'Denver, CO', + 1303759 => 'Denver, CO', + 1303762 => 'Englewood, CO', + 1303763 => 'Lakewood, CO', + 1303764 => 'Denver, CO', + 1303765 => 'Denver, CO', + 1303772 => 'Longmont, CO', + 1303774 => 'Longmont, CO', + 1303776 => 'Longmont, CO', + 1303777 => 'Denver, CO', + 1303778 => 'Denver, CO', + 1303780 => 'Denver, CO', + 1303781 => 'Englewood, CO', + 1303782 => 'Denver, CO', + 1303783 => 'Englewood, CO', + 1303786 => 'Boulder, CO', + 1303788 => 'Englewood, CO', + 1303789 => 'Englewood, CO', + 1303791 => 'Highlands Ranch, CO', + 1303794 => 'Littleton, CO', + 1303795 => 'Littleton, CO', + 1303797 => 'Littleton, CO', + 1303798 => 'Littleton, CO', + 1303805 => 'Parker, CO', + 1303806 => 'Englewood, CO', + 1303814 => 'Castle Rock, CO', + 1303822 => 'Byers, CO', + 1303823 => 'Lyons, CO', + 1303825 => 'Denver, CO', + 1303828 => 'Erie, CO', + 1303830 => 'Denver, CO', + 1303831 => 'Denver, CO', + 1303832 => 'Denver, CO', + 1303834 => 'Longmont, CO', + 1303837 => 'Denver, CO', + 1303839 => 'Denver, CO', + 1303840 => 'Parker, CO', + 1303841 => 'Parker, CO', + 1303856 => 'Aurora, CO', + 1303857 => 'Fort Lupton, CO', + 1303860 => 'Denver, CO', + 1303861 => 'Denver, CO', + 1303863 => 'Denver, CO', + 1303866 => 'Denver, CO', + 1303869 => 'Denver, CO', + 1303871 => 'Denver, CO', + 1303892 => 'Denver, CO', + 1303893 => 'Denver, CO', + 1303894 => 'Denver, CO', + 1303904 => 'Littleton, CO', + 1303914 => 'Lakewood, CO', + 1303922 => 'Denver, CO', + 1303932 => 'Littleton, CO', + 1303933 => 'Littleton, CO', + 1303934 => 'Denver, CO', + 1303935 => 'Denver, CO', + 1303936 => 'Denver, CO', + 1303937 => 'Denver, CO', + 1303938 => 'Boulder, CO', + 1303948 => 'Littleton, CO', + 1303969 => 'Lakewood, CO', + 1303972 => 'Littleton, CO', + 1303973 => 'Littleton, CO', + 1303975 => 'Denver, CO', + 1303978 => 'Littleton, CO', + 1303979 => 'Littleton, CO', + 1303980 => 'Lakewood, CO', + 1303984 => 'Lakewood, CO', + 1303985 => 'Lakewood, CO', + 1303986 => 'Lakewood, CO', + 1303987 => 'Lakewood, CO', + 1303988 => 'Lakewood, CO', + 1303989 => 'Lakewood, CO', + 1304 => 'West Virginia', + 1304205 => 'Charleston, WV', + 1304225 => 'Morgantown, WV', + 1304226 => 'Cowen, WV', + 1304229 => 'Inwood, WV', + 1304232 => 'Wheeling, WV', + 1304233 => 'Wheeling, WV', + 1304234 => 'Wheeling, WV', + 1304235 => 'Williamson, WV', + 1304239 => 'Holden, WV', + 1304241 => 'Morgantown, WV', + 1304242 => 'Wheeling, WV', + 1304243 => 'Wheeling, WV', + 1304250 => 'Beckley, WV', + 1304252 => 'Beckley, WV', + 1304253 => 'Beckley, WV', + 1304254 => 'Beckley, WV', + 1304255 => 'Beckley, WV', + 1304256 => 'Beckley, WV', + 1304257 => 'Petersburg, WV', + 1304258 => 'Berkeley Springs, WV', + 1304260 => 'Martinsburg, WV', + 1304262 => 'Martinsburg, WV', + 1304263 => 'Martinsburg, WV', + 1304264 => 'Martinsburg, WV', + 1304265 => 'Grafton, WV', + 1304267 => 'Martinsburg, WV', + 1304269 => 'Weston, WV', + 1304272 => 'Wayne, WV', + 1304273 => 'Ravenswood, WV', + 1304274 => 'Falling Waters, WV', + 1304275 => 'Elizabeth, WV', + 1304277 => 'Wheeling, WV', + 1304284 => 'Morgantown, WV', + 1304285 => 'Morgantown, WV', + 1304291 => 'Morgantown, WV', + 1304292 => 'Morgantown, WV', + 1304293 => 'Morgantown, WV', + 1304294 => 'Mullens, WV', + 1304295 => 'Vienna, WV', + 1304296 => 'Morgantown, WV', + 1304324 => 'Bluefield, WV', + 1304325 => 'Bluefield, WV', + 1304326 => 'Clarksburg, WV', + 1304327 => 'Bluefield, WV', + 1304329 => 'Kingwood, WV', + 1304340 => 'Charleston, WV', + 1304342 => 'Charleston, WV', + 1304343 => 'Charleston, WV', + 1304344 => 'Charleston, WV', + 1304345 => 'Charleston, WV', + 1304346 => 'Charleston, WV', + 1304347 => 'Charleston, WV', + 1304348 => 'Charleston, WV', + 1304354 => 'Grantsville, WV', + 1304358 => 'Franklin, WV', + 1304363 => 'Fairmont, WV', + 1304364 => 'Gassaway, WV', + 1304366 => 'Fairmont, WV', + 1304367 => 'Fairmont, WV', + 1304368 => 'Fairmont, WV', + 1304372 => 'Ripley, WV', + 1304375 => 'Williamstown, WV', + 1304379 => 'Bruceton Mills, WV', + 1304387 => 'Chester, WV', + 1304388 => 'Charleston, WV', + 1304392 => 'Rupert, WV', + 1304399 => 'Huntington, WV', + 1304414 => 'Charleston, WV', + 1304420 => 'Parkersburg, WV', + 1304422 => 'Parkersburg, WV', + 1304424 => 'Parkersburg, WV', + 1304425 => 'Princeton, WV', + 1304426 => 'Matewan, WV', + 1304428 => 'Parkersburg, WV', + 1304429 => 'Huntington, WV', + 1304431 => 'Princeton, WV', + 1304436 => 'Welch, WV', + 1304438 => 'Rainelle, WV', + 1304442 => 'Montgomery, WV', + 1304453 => 'Kenova, WV', + 1304455 => 'New Martinsville, WV', + 1304457 => 'Philippi, WV', + 1304462 => 'Glenville, WV', + 1304465 => 'Oak Hill, WV', + 1304466 => 'Hinton, WV', + 1304469 => 'Oak Hill, WV', + 1304472 => 'Buckhannon, WV', + 1304473 => 'Buckhannon, WV', + 1304475 => 'Delbarton, WV', + 1304478 => 'Parsons, WV', + 1304485 => 'Parkersburg, WV', + 1304487 => 'Princeton, WV', + 1304489 => 'Mineral Wells, WV', + 1304496 => 'Augusta, WV', + 1304522 => 'Huntington, WV', + 1304523 => 'Huntington, WV', + 1304525 => 'Huntington, WV', + 1304526 => 'Huntington, WV', + 1304527 => 'Follansbee, WV', + 1304528 => 'Huntington, WV', + 1304529 => 'Huntington, WV', + 1304530 => 'Moorefield, WV', + 1304534 => 'Fairmont, WV', + 1304535 => 'Harpers Ferry, WV', + 1304536 => 'White Slphr Spgs, WV', + 1304538 => 'Moorefield, WV', + 1304547 => 'Triadelphia, WV', + 1304548 => 'Clendenin, WV', + 1304558 => 'Charleston, WV', + 1304562 => 'Hurricane, WV', + 1304564 => 'New Cumberland, WV', + 1304574 => 'Fayetteville, WV', + 1304583 => 'Man, WV', + 1304586 => 'Winfield, WV', + 1304587 => 'Clay, WV', + 1304592 => 'Shinnston, WV', + 1304594 => 'Morgantown, WV', + 1304596 => 'Martinsburg, WV', + 1304598 => 'Morgantown, WV', + 1304599 => 'Morgantown, WV', + 1304622 => 'Clarksburg, WV', + 1304623 => 'Clarksburg, WV', + 1304624 => 'Clarksburg, WV', + 1304636 => 'Elkins, WV', + 1304637 => 'Elkins, WV', + 1304643 => 'Harrisville, WV', + 1304645 => 'Lewisburg, WV', + 1304647 => 'Lewisburg, WV', + 1304652 => 'Sistersville, WV', + 1304658 => 'Ansted, WV', + 1304664 => 'Gilbert, WV', + 1304675 => 'Point Pleasant, WV', + 1304682 => 'Oceana, WV', + 1304683 => 'Sophia, WV', + 1304684 => 'St. Marys, WV', + 1304691 => 'Huntington, WV', + 1304696 => 'Huntington, WV', + 1304697 => 'Huntington, WV', + 1304720 => 'Charleston, WV', + 1304722 => 'St. Albans, WV', + 1304723 => 'Weirton, WV', + 1304725 => 'Charles Town, WV', + 1304727 => 'St. Albans, WV', + 1304728 => 'Charles Town, WV', + 1304732 => 'Pineville, WV', + 1304733 => 'Barboursville, WV', + 1304736 => 'Barboursville, WV', + 1304737 => 'Wellsburg, WV', + 1304738 => 'Ridgeley, WV', + 1304742 => 'Craigsville, WV', + 1304743 => 'Milton, WV', + 1304745 => 'Lost Creek, WV', + 1304746 => 'South Charleston, WV', + 1304748 => 'Weirton, WV', + 1304752 => 'Logan, WV', + 1304753 => 'Peterstown, WV', + 1304754 => 'Hedgesville, WV', + 1304755 => 'Nitro, WV', + 1304756 => 'Alum Creek, WV', + 1304757 => 'Hurricane, WV', + 1304758 => 'Middlebourne, WV', + 1304760 => 'Hurricane, WV', + 1304765 => 'Sutton, WV', + 1304772 => 'Union, WV', + 1304776 => 'Cross Lanes, WV', + 1304781 => 'Huntington, WV', + 1304782 => 'Salem, WV', + 1304788 => 'Keyser, WV', + 1304789 => 'Terra Alta, WV', + 1304797 => 'Weirton, WV', + 1304799 => 'Marlinton, WV', + 1304822 => 'Romney, WV', + 1304823 => 'Belington, WV', + 1304824 => 'Hamlin, WV', + 1304831 => 'Logan, WV', + 1304842 => 'Bridgeport, WV', + 1304843 => 'Moundsville, WV', + 1304845 => 'Moundsville, WV', + 1304846 => 'Richwood, WV', + 1304847 => 'Webster Springs, WV', + 1304848 => 'Bridgeport, WV', + 1304854 => 'Whitesville, WV', + 1304855 => 'Chapmanville, WV', + 1304856 => 'Capon Bridge, WV', + 1304865 => 'Parkersburg, WV', + 1304872 => 'Summersville, WV', + 1304873 => 'West Union, WV', + 1304876 => 'Shepherdstown, WV', + 1304877 => 'Mount Hope, WV', + 1304884 => 'Jane Lew, WV', + 1304905 => 'Wheeling, WV', + 1304925 => 'Charleston, WV', + 1304926 => 'Charleston, WV', + 1304927 => 'Spencer, WV', + 1304929 => 'Beckley, WV', + 1304933 => 'Bridgeport, WV', + 1304965 => 'Elkview, WV', + 1304983 => 'Morgantown, WV', + 1304984 => 'Charleston, WV', + 1304986 => 'Mannington, WV', + 1305 => 'Florida', + 1305207 => 'Miami, FL', + 1305220 => 'Miami, FL', + 1305221 => 'Miami, FL', + 1305222 => 'Miami, FL', + 1305223 => 'Miami, FL', + 1305225 => 'Miami, FL', + 1305226 => 'Miami, FL', + 1305227 => 'Miami, FL', + 1305228 => 'Miami, FL', + 1305229 => 'Miami, FL', + 1305231 => 'Hialeah, FL', + 1305232 => 'Miami, FL', + 1305233 => 'Miami, FL', + 1305234 => 'Miami, FL', + 1305235 => 'Miami, FL', + 1305238 => 'Miami, FL', + 1305242 => 'Homestead, FL', + 1305243 => 'Miami, FL', + 1305245 => 'Homestead, FL', + 1305246 => 'Homestead, FL', + 1305247 => 'Homestead, FL', + 1305248 => 'Homestead, FL', + 1305249 => 'Miami, FL', + 1305251 => 'Miami, FL', + 1305252 => 'Miami, FL', + 1305253 => 'Miami, FL', + 1305254 => 'Miami, FL', + 1305255 => 'Miami, FL', + 1305256 => 'Miami, FL', + 1305257 => 'Homestead, FL', + 1305258 => 'Homestead, FL', + 1305259 => 'Miami, FL', + 1305260 => 'Miami, FL', + 1305261 => 'Miami, FL', + 1305262 => 'Miami, FL', + 1305263 => 'Miami, FL', + 1305264 => 'Miami, FL', + 1305265 => 'Miami, FL', + 1305266 => 'Miami, FL', + 1305267 => 'Miami, FL', + 1305269 => 'Miami, FL', + 1305270 => 'Miami, FL', + 1305271 => 'Miami, FL', + 1305273 => 'Miami, FL', + 1305274 => 'Miami, FL', + 1305275 => 'Miami, FL', + 1305278 => 'Miami, FL', + 1305279 => 'Miami, FL', + 1305285 => 'Miami, FL', + 1305289 => 'Marathon, FL', + 1305292 => 'Key West, FL', + 1305293 => 'Key West, FL', + 1305294 => 'Key West, FL', + 1305295 => 'Key West, FL', + 1305296 => 'Key West, FL', + 1305324 => 'Miami, FL', + 1305325 => 'Miami, FL', + 1305326 => 'Miami, FL', + 1305347 => 'Miami, FL', + 1305349 => 'Miami, FL', + 1305350 => 'Miami, FL', + 1305355 => 'Miami, FL', + 1305358 => 'Miami, FL', + 1305361 => 'Key Biscayne, FL', + 1305362 => 'Hialeah, FL', + 1305364 => 'Hialeah, FL', + 1305365 => 'Key Biscayne, FL', + 1305367 => 'Key Largo, FL', + 1305371 => 'Miami, FL', + 1305372 => 'Miami, FL', + 1305373 => 'Miami, FL', + 1305374 => 'Miami, FL', + 1305375 => 'Miami, FL', + 1305377 => 'Miami, FL', + 1305378 => 'Miami, FL', + 1305379 => 'Miami, FL', + 1305380 => 'Miami, FL', + 1305381 => 'Miami, FL', + 1305382 => 'Miami, FL', + 1305383 => 'Miami, FL', + 1305385 => 'Miami, FL', + 1305386 => 'Miami, FL', + 1305387 => 'Miami, FL', + 1305388 => 'Miami, FL', + 1305392 => 'Miami, FL', + 1305397 => 'Miami Beach, FL', + 1305400 => 'Miami, FL', + 1305406 => 'Doral, FL', + 1305408 => 'Miami, FL', + 1305412 => 'Miami, FL', + 1305416 => 'Miami, FL', + 1305436 => 'Doral, FL', + 1305438 => 'Miami, FL', + 1305445 => 'Coral Gables, FL', + 1305451 => 'Key Largo, FL', + 1305453 => 'Key Largo, FL', + 1305456 => 'Miami, FL', + 1305460 => 'Coral Gables, FL', + 1305480 => 'Miami, FL', + 1305485 => 'Miami, FL', + 1305512 => 'Hialeah, FL', + 1305513 => 'Doral, FL', + 1305525 => 'Miami, FL', + 1305530 => 'Miami, FL', + 1305531 => 'Miami Beach, FL', + 1305532 => 'Miami Beach, FL', + 1305534 => 'Miami Beach, FL', + 1305535 => 'Miami Beach, FL', + 1305538 => 'Miami Beach, FL', + 1305541 => 'Miami, FL', + 1305545 => 'Miami, FL', + 1305547 => 'Miami, FL', + 1305548 => 'Miami, FL', + 1305551 => 'Miami, FL', + 1305552 => 'Miami, FL', + 1305553 => 'Miami, FL', + 1305554 => 'Miami, FL', + 1305556 => 'Hialeah, FL', + 1305557 => 'Hialeah, FL', + 1305558 => 'Hialeah, FL', + 1305559 => 'Miami, FL', + 1305571 => 'Miami, FL', + 1305572 => 'Miami, FL', + 1305573 => 'Miami, FL', + 1305575 => 'Miami, FL', + 1305576 => 'Miami, FL', + 1305577 => 'Miami, FL', + 1305579 => 'Miami, FL', + 1305585 => 'Miami, FL', + 1305595 => 'Miami, FL', + 1305596 => 'Miami, FL', + 1305598 => 'Miami, FL', + 1305603 => 'Miami, FL', + 1305604 => 'Miami Beach, FL', + 1305631 => 'Miami, FL', + 1305633 => 'Miami, FL', + 1305634 => 'Miami, FL', + 1305635 => 'Miami, FL', + 1305636 => 'Miami, FL', + 1305637 => 'Miami, FL', + 1305638 => 'Miami, FL', + 1305642 => 'Miami, FL', + 1305643 => 'Miami, FL', + 1305644 => 'Miami, FL', + 1305646 => 'Miami, FL', + 1305649 => 'Miami, FL', + 1305651 => 'Miami, FL', + 1305652 => 'Miami, FL', + 1305653 => 'Miami, FL', + 1305654 => 'Miami, FL', + 1305655 => 'Miami, FL', + 1305664 => 'Islamorada, FL', + 1305666 => 'Miami, FL', + 1305668 => 'Miami, FL', + 1305670 => 'Miami, FL', + 1305672 => 'Miami Beach, FL', + 1305673 => 'Miami Beach, FL', + 1305682 => 'Miami, FL', + 1305691 => 'Miami, FL', + 1305693 => 'Miami, FL', + 1305694 => 'Miami, FL', + 1305695 => 'Miami Beach, FL', + 1305696 => 'Miami, FL', + 1305698 => 'Hialeah, FL', + 1305718 => 'Doral, FL', + 1305743 => 'Marathon, FL', + 1305745 => 'Summerland Key, FL', + 1305751 => 'Miami, FL', + 1305752 => 'Miami, FL', + 1305754 => 'Miami, FL', + 1305756 => 'Miami, FL', + 1305757 => 'Miami, FL', + 1305758 => 'Miami, FL', + 1305759 => 'Miami, FL', + 1305770 => 'Miami, FL', + 1305789 => 'Miami, FL', + 1305809 => 'Key West, FL', + 1305817 => 'Hialeah, FL', + 1305818 => 'Hialeah, FL', + 1305819 => 'Hialeah, FL', + 1305820 => 'Hialeah, FL', + 1305821 => 'Hialeah, FL', + 1305822 => 'Hialeah, FL', + 1305823 => 'Hialeah, FL', + 1305824 => 'Hialeah, FL', + 1305825 => 'Hialeah, FL', + 1305826 => 'Hialeah, FL', + 1305827 => 'Hialeah, FL', + 1305828 => 'Hialeah, FL', + 1305829 => 'Hialeah, FL', + 1305835 => 'Miami, FL', + 1305836 => 'Miami, FL', + 1305852 => 'Tavernier, FL', + 1305853 => 'Tavernier, FL', + 1305854 => 'Miami, FL', + 1305856 => 'Miami, FL', + 1305857 => 'Miami, FL', + 1305858 => 'Miami, FL', + 1305859 => 'Miami, FL', + 1305860 => 'Miami, FL', + 1305871 => 'Miami, FL', + 1305872 => 'Big Pine Key, FL', + 1305876 => 'Miami, FL', + 1305891 => 'North Miami, FL', + 1305892 => 'North Miami, FL', + 1305893 => 'North Miami, FL', + 1305895 => 'North Miami, FL', + 1305899 => 'North Miami, FL', + 1305913 => 'Miami, FL', + 1305953 => 'Opa-locka, FL', + 1305960 => 'Miami, FL', + 1305961 => 'Miami, FL', + 1305969 => 'Miami, FL', + 1305971 => 'Miami, FL', + 1305999 => 'Miami, FL', + 1306 => 'Saskatchewan', + 1306205 => 'Regina, SK', + 1306228 => 'Unity, SK', + 1306236 => 'Meadow Lake, SK', + 1306242 => 'Saskatoon, SK', + 1306244 => 'Saskatoon, SK', + 1306249 => 'Saskatoon, SK', + 1306272 => 'Foam Lake, SK', + 1306297 => 'Shaunavon, SK', + 1306327 => 'Kelvington, SK', + 1306332 => 'Fort Qu\'Appelle, SK', + 1306338 => 'Wadena, SK', + 1306343 => 'Saskatoon, SK', + 1306347 => 'Regina, SK', + 1306352 => 'Regina, SK', + 1306359 => 'Regina, SK', + 1306373 => 'Saskatoon, SK', + 1306374 => 'Saskatoon, SK', + 1306382 => 'Saskatoon, SK', + 1306384 => 'Saskatoon, SK', + 1306425 => 'La Ronge, SK', + 1306435 => 'Moosomin, SK', + 1306445 => 'North Battleford, SK', + 1306446 => 'North Battleford, SK', + 1306452 => 'Redvers, SK', + 1306453 => 'Carlyle, SK', + 1306463 => 'Kindersley, SK', + 1306477 => 'Saskatoon, SK', + 1306482 => 'Carnduff, SK', + 1306483 => 'Oxbow, SK', + 1306522 => 'Regina, SK', + 1306525 => 'Regina, SK', + 1306542 => 'Kamsack, SK', + 1306543 => 'Regina, SK', + 1306545 => 'Regina, SK', + 1306546 => 'Regina, SK', + 1306547 => 'Preeceville, SK', + 1306554 => 'Wynyard, SK', + 1306563 => 'Canora, SK', + 1306565 => 'Regina, SK', + 1306567 => 'Davidson, SK', + 1306569 => 'Regina, SK', + 1306584 => 'Regina, SK', + 1306585 => 'Regina, SK', + 1306586 => 'Regina, SK', + 1306634 => 'Estevan, SK', + 1306642 => 'Assiniboia, SK', + 1306648 => 'Gravelbourg, SK', + 1306651 => 'Saskatoon, SK', + 1306652 => 'Saskatoon, SK', + 1306653 => 'Saskatoon, SK', + 1306662 => 'Maple Creek, SK', + 1306664 => 'Saskatoon, SK', + 1306665 => 'Saskatoon, SK', + 1306668 => 'Saskatoon, SK', + 1306682 => 'Humboldt, SK', + 1306683 => 'Saskatoon, SK', + 1306691 => 'Moose Jaw, SK', + 1306692 => 'Moose Jaw, SK', + 1306693 => 'Moose Jaw, SK', + 1306694 => 'Moose Jaw, SK', + 1306695 => 'Indian Head, SK', + 1306721 => 'Regina, SK', + 1306728 => 'Melville, SK', + 1306731 => 'Lumsden, SK', + 1306745 => 'Esterhazy, SK', + 1306747 => 'Shellbrook, SK', + 1306752 => 'Melfort, SK', + 1306753 => 'Macklin, SK', + 1306757 => 'Regina, SK', + 1306763 => 'Prince Albert, SK', + 1306764 => 'Prince Albert, SK', + 1306768 => 'Carrot River, SK', + 1306773 => 'Swift Current, SK', + 1306775 => 'Regina, SK', + 1306778 => 'Swift Current, SK', + 1306780 => 'Regina, SK', + 1306781 => 'Regina, SK', + 1306782 => 'Yorkton, SK', + 1306783 => 'Yorkton, SK', + 1306786 => 'Yorkton, SK', + 1306789 => 'Regina, SK', + 1306790 => 'Regina, SK', + 1306791 => 'Regina, SK', + 1306825 => 'Lloydminster, SK', + 1306834 => 'Kerrobert, SK', + 1306842 => 'Weyburn, SK', + 1306845 => 'Turtleford, SK', + 1306862 => 'Nipawin, SK', + 1306865 => 'Hudson Bay, SK', + 1306867 => 'Outlook, SK', + 1306873 => 'Tisdale, SK', + 1306882 => 'Rosetown, SK', + 1306883 => 'Spiritwood, SK', + 1306893 => 'Maidstone, SK', + 1306922 => 'Prince Albert, SK', + 1306924 => 'Regina, SK', + 1306931 => 'Saskatoon, SK', + 1306933 => 'Saskatoon, SK', + 1306934 => 'Saskatoon, SK', + 1306937 => 'Battleford, SK', + 1306946 => 'Watrous, SK', + 1306948 => 'Biggar, SK', + 1306949 => 'Regina, SK', + 1306953 => 'Prince Albert, SK', + 1306955 => 'Saskatoon, SK', + 1306956 => 'Saskatoon, SK', + 1306966 => 'Saskatoon, SK', + 1306975 => 'Saskatoon, SK', + 1306978 => 'Saskatoon, SK', + 1306979 => 'Saskatoon, SK', + 1307 => 'Wyoming', + 1307232 => 'Casper, WY', + 1307233 => 'Casper, WY', + 1307234 => 'Casper, WY', + 1307235 => 'Casper, WY', + 1307237 => 'Casper, WY', + 1307245 => 'Pine Bluffs, WY', + 1307265 => 'Casper, WY', + 1307266 => 'Casper, WY', + 1307276 => 'Big Piney, WY', + 1307283 => 'Sundance, WY', + 1307315 => 'Casper, WY', + 1307322 => 'Wheatland, WY', + 1307324 => 'Rawlins, WY', + 1307326 => 'Saratoga, WY', + 1307328 => 'Rawlins, WY', + 1307332 => 'Lander, WY', + 1307334 => 'Lusk, WY', + 1307335 => 'Lander, WY', + 1307347 => 'Worland, WY', + 1307352 => 'Rock Springs, WY', + 1307358 => 'Douglas, WY', + 1307362 => 'Rock Springs, WY', + 1307367 => 'Pinedale, WY', + 1307382 => 'Rock Springs, WY', + 1307383 => 'Baggs, WY', + 1307426 => 'Cheyenne, WY', + 1307432 => 'Cheyenne, WY', + 1307433 => 'Cheyenne, WY', + 1307436 => 'Glenrock, WY', + 1307455 => 'Dubois, WY', + 1307472 => 'Casper, WY', + 1307473 => 'Casper, WY', + 1307527 => 'Cody, WY', + 1307532 => 'Torrington, WY', + 1307548 => 'Lovell, WY', + 1307568 => 'Basin, WY', + 1307577 => 'Casper, WY', + 1307578 => 'Cody, WY', + 1307587 => 'Cody, WY', + 1307632 => 'Cheyenne, WY', + 1307633 => 'Cheyenne, WY', + 1307634 => 'Cheyenne, WY', + 1307635 => 'Cheyenne, WY', + 1307637 => 'Cheyenne, WY', + 1307638 => 'Cheyenne, WY', + 1307654 => 'Alpine, WY', + 1307672 => 'Sheridan, WY', + 1307673 => 'Sheridan, WY', + 1307674 => 'Sheridan, WY', + 1307675 => 'Sheridan, WY', + 1307682 => 'Gillette, WY', + 1307684 => 'Buffalo, WY', + 1307685 => 'Gillette, WY', + 1307686 => 'Gillette, WY', + 1307687 => 'Gillette, WY', + 1307688 => 'Gillette, WY', + 1307690 => 'Jackson, WY', + 1307721 => 'Laramie, WY', + 1307732 => 'Jackson, WY', + 1307733 => 'Jackson, WY', + 1307734 => 'Jackson, WY', + 1307739 => 'Jackson, WY', + 1307742 => 'Laramie, WY', + 1307745 => 'Laramie, WY', + 1307746 => 'Newcastle, WY', + 1307754 => 'Powell, WY', + 1307760 => 'Laramie, WY', + 1307765 => 'Greybull, WY', + 1307777 => 'Cheyenne, WY', + 1307778 => 'Cheyenne, WY', + 1307782 => 'Mountain View, WY', + 1307789 => 'Evanston, WY', + 1307856 => 'Riverton, WY', + 1307857 => 'Riverton, WY', + 1307864 => 'Thermopolis, WY', + 1307875 => 'Green River, WY', + 1307877 => 'Kemmerer, WY', + 1307883 => 'Thayne, WY', + 1307885 => 'Afton, WY', + 1307886 => 'Afton, WY', + 1308 => 'Nebraska', + 1308233 => 'Kearney, NE', + 1308234 => 'Kearney, NE', + 1308235 => 'Kimball, NE', + 1308236 => 'Kearney, NE', + 1308237 => 'Kearney, NE', + 1308254 => 'Sidney, NE', + 1308262 => 'Bridgeport, NE', + 1308282 => 'Gordon, NE', + 1308284 => 'Ogallala, NE', + 1308324 => 'Lexington, NE', + 1308327 => 'Rushville, NE', + 1308345 => 'McCook, NE', + 1308346 => 'Burwell, NE', + 1308352 => 'Grant, NE', + 1308367 => 'Curtis, NE', + 1308381 => 'Grand Island, NE', + 1308382 => 'Grand Island, NE', + 1308384 => 'Grand Island, NE', + 1308385 => 'Grand Island, NE', + 1308389 => 'Grand Island, NE', + 1308398 => 'Grand Island, NE', + 1308423 => 'Benkelman, NE', + 1308425 => 'Franklin, NE', + 1308432 => 'Chadron, NE', + 1308436 => 'Gering, NE', + 1308452 => 'Ravenna, NE', + 1308468 => 'Gibbon, NE', + 1308532 => 'North Platte, NE', + 1308534 => 'North Platte, NE', + 1308535 => 'North Platte, NE', + 1308536 => 'Fullerton, NE', + 1308537 => 'Gothenburg, NE', + 1308623 => 'Mitchell, NE', + 1308630 => 'Scottsbluff, NE', + 1308632 => 'Scottsbluff, NE', + 1308633 => 'Scottsbluff, NE', + 1308635 => 'Scottsbluff, NE', + 1308665 => 'Crawford, NE', + 1308696 => 'North Platte, NE', + 1308697 => 'Cambridge, NE', + 1308728 => 'Ord, NE', + 1308745 => 'Loup City, NE', + 1308754 => 'St. Paul, NE', + 1308762 => 'Alliance, NE', + 1308772 => 'Oshkosh, NE', + 1308784 => 'Cozad, NE', + 1308785 => 'Elwood, NE', + 1308832 => 'Minden, NE', + 1308865 => 'Kearney, NE', + 1308872 => 'Broken Bow, NE', + 1308874 => 'Chappell, NE', + 1308882 => 'Imperial, NE', + 1308928 => 'Alma, NE', + 1308946 => 'Central City, NE', + 1308962 => 'Arapahoe, NE', + 1308995 => 'Holdrege, NE', + 1309 => 'Illinois', + 1309243 => 'Dunlap, IL', + 1309244 => 'Delavan, IL', + 1309245 => 'Farmington, IL', + 1309246 => 'Lacon, IL', + 1309263 => 'Morton, IL', + 1309266 => 'Morton, IL', + 1309268 => 'Normal, IL', + 1309274 => 'Chillicothe, IL', + 1309275 => 'Bloomington, IL', + 1309277 => 'Moline, IL', + 1309289 => 'Knoxville, IL', + 1309341 => 'Galesburg, IL', + 1309342 => 'Galesburg, IL', + 1309343 => 'Galesburg, IL', + 1309344 => 'Galesburg, IL', + 1309345 => 'Galesburg, IL', + 1309346 => 'Pekin, IL', + 1309347 => 'Pekin, IL', + 1309353 => 'Pekin, IL', + 1309364 => 'Henry, IL', + 1309365 => 'Lexington, IL', + 1309367 => 'Metamora, IL', + 1309383 => 'Germantown Hills, IL', + 1309385 => 'Princeville, IL', + 1309432 => 'Minonk, IL', + 1309444 => 'Washington, IL', + 1309451 => 'Normal, IL', + 1309452 => 'Normal, IL', + 1309454 => 'Normal, IL', + 1309462 => 'Abingdon, IL', + 1309467 => 'Eureka, IL', + 1309473 => 'Heyworth, IL', + 1309494 => 'Peoria, IL', + 1309495 => 'Peoria, IL', + 1309523 => 'Port Byron, IL', + 1309526 => 'Orion, IL', + 1309527 => 'El Paso, IL', + 1309543 => 'Havana, IL', + 1309547 => 'Lewistown, IL', + 1309582 => 'Aledo, IL', + 1309589 => 'Peoria, IL', + 1309624 => 'Peoria, IL', + 1309633 => 'Bartonville, IL', + 1309637 => 'Peoria, IL', + 1309647 => 'Canton, IL', + 1309655 => 'Peoria, IL', + 1309659 => 'Erie, IL', + 1309661 => 'Bloomington, IL', + 1309662 => 'Bloomington, IL', + 1309663 => 'Bloomington, IL', + 1309664 => 'Bloomington, IL', + 1309671 => 'Peoria, IL', + 1309672 => 'Peoria, IL', + 1309673 => 'Peoria, IL', + 1309674 => 'Peoria, IL', + 1309676 => 'Peoria, IL', + 1309679 => 'Peoria, IL', + 1309681 => 'Peoria, IL', + 1309682 => 'Peoria, IL', + 1309683 => 'Peoria, IL', + 1309685 => 'Peoria, IL', + 1309686 => 'Peoria, IL', + 1309687 => 'Peoria, IL', + 1309688 => 'Peoria, IL', + 1309689 => 'Peoria, IL', + 1309691 => 'Peoria, IL', + 1309692 => 'Peoria, IL', + 1309693 => 'Peoria, IL', + 1309694 => 'East Peoria, IL', + 1309695 => 'Wyoming, IL', + 1309697 => 'Bartonville, IL', + 1309698 => 'East Peoria, IL', + 1309699 => 'East Peoria, IL', + 1309732 => 'Rock Island, IL', + 1309734 => 'Monmouth, IL', + 1309736 => 'Moline, IL', + 1309740 => 'Peoria, IL', + 1309743 => 'Moline, IL', + 1309745 => 'Washington, IL', + 1309747 => 'Gridley, IL', + 1309752 => 'East Moline, IL', + 1309755 => 'East Moline, IL', + 1309757 => 'Moline, IL', + 1309762 => 'Moline, IL', + 1309764 => 'Moline, IL', + 1309772 => 'Bushnell, IL', + 1309776 => 'Colchester, IL', + 1309786 => 'Rock Island, IL', + 1309787 => 'Milan, IL', + 1309788 => 'Rock Island, IL', + 1309793 => 'Rock Island, IL', + 1309794 => 'Rock Island, IL', + 1309797 => 'Moline, IL', + 1309799 => 'Coal Valley, IL', + 1309820 => 'Bloomington, IL', + 1309827 => 'Bloomington, IL', + 1309828 => 'Bloomington, IL', + 1309829 => 'Bloomington, IL', + 1309833 => 'Macomb, IL', + 1309836 => 'Macomb, IL', + 1309837 => 'Macomb, IL', + 1309839 => 'Peoria, IL', + 1309852 => 'Kewanee, IL', + 1309853 => 'Kewanee, IL', + 1309862 => 'Normal, IL', + 1309888 => 'Normal, IL', + 1309923 => 'Roanoke, IL', + 1309925 => 'Tremont, IL', + 1309928 => 'Farmer City, IL', + 1309932 => 'Galva, IL', + 1309937 => 'Cambridge, IL', + 1309944 => 'Geneseo, IL', + 1309962 => 'Le Roy, IL', + 1309968 => 'Manito, IL', + 1310 => 'California', + 1310201 => 'Los Angeles, CA', + 1310203 => 'Los Angeles, CA', + 1310205 => 'Beverly Hills, CA', + 1310206 => 'Los Angeles, CA', + 1310207 => 'Los Angeles, CA', + 1310208 => 'Los Angeles, CA', + 1310209 => 'Los Angeles, CA', + 1310212 => 'Torrance, CA', + 1310214 => 'Torrance, CA', + 1310217 => 'Gardena, CA', + 1310219 => 'Hawthorne, CA', + 1310222 => 'Torrance, CA', + 1310228 => 'Los Angeles, CA', + 1310229 => 'Los Angeles, CA', + 1310230 => 'Pacific Palisades, CA', + 1310231 => 'Los Angeles, CA', + 1310234 => 'Los Angeles, CA', + 1310235 => 'Los Angeles, CA', + 1310246 => 'Beverly Hills, CA', + 1310247 => 'Beverly Hills, CA', + 1310248 => 'Beverly Hills, CA', + 1310253 => 'Culver City, CA', + 1310255 => 'Santa Monica, CA', + 1310257 => 'Torrance, CA', + 1310258 => 'Los Angeles, CA', + 1310260 => 'Santa Monica, CA', + 1310263 => 'Hawthorne, CA', + 1310264 => 'Santa Monica, CA', + 1310268 => 'Los Angeles, CA', + 1310271 => 'Beverly Hills, CA', + 1310273 => 'Beverly Hills, CA', + 1310274 => 'Beverly Hills, CA', + 1310275 => 'Beverly Hills, CA', + 1310276 => 'Beverly Hills, CA', + 1310277 => 'Los Angeles, CA', + 1310278 => 'Beverly Hills, CA', + 1310281 => 'Beverly Hills, CA', + 1310282 => 'Los Angeles, CA', + 1310284 => 'Los Angeles, CA', + 1310285 => 'Beverly Hills, CA', + 1310286 => 'Los Angeles, CA', + 1310288 => 'Beverly Hills, CA', + 1310312 => 'Los Angeles, CA', + 1310314 => 'Santa Monica, CA', + 1310315 => 'Santa Monica, CA', + 1310317 => 'Malibu, CA', + 1310319 => 'Santa Monica, CA', + 1310320 => 'Torrance, CA', + 1310322 => 'El Segundo, CA', + 1310323 => 'Gardena, CA', + 1310324 => 'Gardena, CA', + 1310327 => 'Gardena, CA', + 1310328 => 'Torrance, CA', + 1310329 => 'Gardena, CA', + 1310330 => 'Inglewood, CA', + 1310335 => 'El Segundo, CA', + 1310338 => 'Los Angeles, CA', + 1310342 => 'Los Angeles, CA', + 1310348 => 'Los Angeles, CA', + 1310349 => 'Hawthorne, CA', + 1310355 => 'Hawthorne, CA', + 1310371 => 'Torrance, CA', + 1310373 => 'Torrance, CA', + 1310375 => 'Torrance, CA', + 1310378 => 'Torrance, CA', + 1310385 => 'Beverly Hills, CA', + 1310393 => 'Santa Monica, CA', + 1310394 => 'Santa Monica, CA', + 1310395 => 'Santa Monica, CA', + 1310407 => 'Los Angeles, CA', + 1310410 => 'Los Angeles, CA', + 1310412 => 'Inglewood, CA', + 1310414 => 'El Segundo, CA', + 1310417 => 'Los Angeles, CA', + 1310419 => 'Inglewood, CA', + 1310423 => 'West Hollywood, CA', + 1310426 => 'El Segundo, CA', + 1310440 => 'Los Angeles, CA', + 1310441 => 'Los Angeles, CA', + 1310442 => 'Los Angeles, CA', + 1310443 => 'Los Angeles, CA', + 1310444 => 'Los Angeles, CA', + 1310445 => 'Los Angeles, CA', + 1310446 => 'Los Angeles, CA', + 1310447 => 'Los Angeles, CA', + 1310449 => 'Santa Monica, CA', + 1310450 => 'Santa Monica, CA', + 1310451 => 'Santa Monica, CA', + 1310452 => 'Santa Monica, CA', + 1310453 => 'Santa Monica, CA', + 1310454 => 'Pacific Palisades, CA', + 1310455 => 'Topanga, CA', + 1310456 => 'Malibu, CA', + 1310457 => 'Malibu, CA', + 1310458 => 'Santa Monica, CA', + 1310459 => 'Pacific Palisades, CA', + 1310470 => 'Los Angeles, CA', + 1310471 => 'Los Angeles, CA', + 1310472 => 'Los Angeles, CA', + 1310473 => 'Los Angeles, CA', + 1310474 => 'Los Angeles, CA', + 1310475 => 'Los Angeles, CA', + 1310476 => 'Los Angeles, CA', + 1310477 => 'Los Angeles, CA', + 1310478 => 'Los Angeles, CA', + 1310479 => 'Los Angeles, CA', + 1310481 => 'Los Angeles, CA', + 1310510 => 'Avalon, CA', + 1310514 => 'San Pedro, CA', + 1310515 => 'Gardena, CA', + 1310516 => 'Gardena, CA', + 1310517 => 'Harbor City, CA', + 1310519 => 'San Pedro, CA', + 1310521 => 'San Pedro, CA', + 1310523 => 'Gardena, CA', + 1310527 => 'Gardena, CA', + 1310532 => 'Gardena, CA', + 1310533 => 'Torrance, CA', + 1310535 => 'El Segundo, CA', + 1310537 => 'Compton, CA', + 1310538 => 'Gardena, CA', + 1310542 => 'Torrance, CA', + 1310545 => 'Manhattan Beach, CA', + 1310546 => 'Manhattan Beach, CA', + 1310547 => 'San Pedro, CA', + 1310548 => 'San Pedro, CA', + 1310550 => 'Beverly Hills, CA', + 1310551 => 'Los Angeles, CA', + 1310552 => 'Los Angeles, CA', + 1310553 => 'Los Angeles, CA', + 1310556 => 'Los Angeles, CA', + 1310557 => 'Los Angeles, CA', + 1310571 => 'Los Angeles, CA', + 1310573 => 'Pacific Palisades, CA', + 1310575 => 'Los Angeles, CA', + 1310576 => 'Santa Monica, CA', + 1310581 => 'Santa Monica, CA', + 1310582 => 'Santa Monica, CA', + 1310586 => 'Santa Monica, CA', + 1310587 => 'Santa Monica, CA', + 1310589 => 'Malibu, CA', + 1310604 => 'Compton, CA', + 1310605 => 'Compton, CA', + 1310608 => 'Compton, CA', + 1310609 => 'Compton, CA', + 1310618 => 'Torrance, CA', + 1310631 => 'Compton, CA', + 1310632 => 'Compton, CA', + 1310635 => 'Compton, CA', + 1310637 => 'Compton, CA', + 1310638 => 'Compton, CA', + 1310639 => 'Compton, CA', + 1310640 => 'El Segundo, CA', + 1310641 => 'Los Angeles, CA', + 1310642 => 'Los Angeles, CA', + 1310644 => 'Hawthorne, CA', + 1310645 => 'Los Angeles, CA', + 1310649 => 'Los Angeles, CA', + 1310656 => 'Santa Monica, CA', + 1310664 => 'Santa Monica, CA', + 1310665 => 'Los Angeles, CA', + 1310668 => 'Los Angeles, CA', + 1310669 => 'Compton, CA', + 1310670 => 'Los Angeles, CA', + 1310671 => 'Inglewood, CA', + 1310672 => 'Inglewood, CA', + 1310673 => 'Inglewood, CA', + 1310674 => 'Inglewood, CA', + 1310675 => 'Hawthorne, CA', + 1310676 => 'Hawthorne, CA', + 1310677 => 'Inglewood, CA', + 1310679 => 'Hawthorne, CA', + 1310680 => 'Inglewood, CA', + 1310715 => 'Gardena, CA', + 1310719 => 'Gardena, CA', + 1310762 => 'Compton, CA', + 1310763 => 'Compton, CA', + 1310764 => 'Compton, CA', + 1310768 => 'Gardena, CA', + 1310769 => 'Gardena, CA', + 1310772 => 'Los Angeles, CA', + 1310777 => 'Beverly Hills, CA', + 1310781 => 'Torrance, CA', + 1310782 => 'Torrance, CA', + 1310783 => 'Torrance, CA', + 1310784 => 'Torrance, CA', + 1310785 => 'Los Angeles, CA', + 1310787 => 'Torrance, CA', + 1310788 => 'Los Angeles, CA', + 1310791 => 'Torrance, CA', + 1310792 => 'Torrance, CA', + 1310793 => 'Torrance, CA', + 1310794 => 'Los Angeles, CA', + 1310820 => 'Los Angeles, CA', + 1310824 => 'Los Angeles, CA', + 1310825 => 'Los Angeles, CA', + 1310826 => 'Los Angeles, CA', + 1310828 => 'Santa Monica, CA', + 1310829 => 'Santa Monica, CA', + 1310831 => 'San Pedro, CA', + 1310832 => 'San Pedro, CA', + 1310833 => 'San Pedro, CA', + 1310836 => 'Los Angeles, CA', + 1310858 => 'Beverly Hills, CA', + 1310859 => 'Beverly Hills, CA', + 1310860 => 'Beverly Hills, CA', + 1310868 => 'Compton, CA', + 1310885 => 'Compton, CA', + 1310886 => 'Compton, CA', + 1310888 => 'Beverly Hills, CA', + 1310891 => 'Torrance, CA', + 1310898 => 'Compton, CA', + 1310899 => 'Santa Monica, CA', + 1310900 => 'Lynwood, CA', + 1310914 => 'Los Angeles, CA', + 1310915 => 'Los Angeles, CA', + 1310917 => 'Santa Monica, CA', + 1310945 => 'Culver City, CA', + 1310965 => 'Gardena, CA', + 1310966 => 'Los Angeles, CA', + 1310970 => 'Hawthorne, CA', + 1310973 => 'Hawthorne, CA', + 1310978 => 'Hawthorne, CA', + 1310979 => 'Los Angeles, CA', + 1310998 => 'Santa Monica, CA', + 1312 => 'Chicago, IL', + 1313 => 'Michigan', + 1313223 => 'Detroit, MI', + 1313224 => 'Detroit, MI', + 1313245 => 'Detroit, MI', + 1313255 => 'Detroit, MI', + 1313259 => 'Detroit, MI', + 1313270 => 'Detroit, MI', + 1313271 => 'Dearborn, MI', + 1313272 => 'Detroit, MI', + 1313273 => 'Detroit, MI', + 1313285 => 'Detroit, MI', + 1313291 => 'Taylor, MI', + 1313292 => 'Taylor, MI', + 1313295 => 'Taylor, MI', + 1313297 => 'Detroit, MI', + 1313299 => 'Taylor, MI', + 1313331 => 'Detroit, MI', + 1313336 => 'Dearborn, MI', + 1313340 => 'Detroit, MI', + 1313341 => 'Detroit, MI', + 1313342 => 'Detroit, MI', + 1313345 => 'Detroit, MI', + 1313359 => 'Dearborn, MI', + 1313366 => 'Detroit, MI', + 1313368 => 'Detroit, MI', + 1313369 => 'Detroit, MI', + 1313371 => 'Detroit, MI', + 1313372 => 'Detroit, MI', + 1313387 => 'Redford Charter Township, MI', + 1313389 => 'Lincoln Park, MI', + 1313393 => 'Detroit, MI', + 1313397 => 'Detroit, MI', + 1313436 => 'Dearborn, MI', + 1313441 => 'Dearborn, MI', + 1313465 => 'Detroit, MI', + 1313469 => 'Detroit, MI', + 1313491 => 'Detroit, MI', + 1313493 => 'Detroit, MI', + 1313494 => 'Detroit, MI', + 1313499 => 'Detroit, MI', + 1313521 => 'Detroit, MI', + 1313526 => 'Detroit, MI', + 1313527 => 'Detroit, MI', + 1313531 => 'Detroit, MI', + 1313532 => 'Redford Charter Township, MI', + 1313533 => 'Detroit, MI', + 1313534 => 'Detroit, MI', + 1313537 => 'Detroit, MI', + 1313538 => 'Detroit, MI', + 1313541 => 'Redford Charter Township, MI', + 1313554 => 'Detroit, MI', + 1313562 => 'Dearborn, MI', + 1313565 => 'Dearborn, MI', + 1313567 => 'Detroit, MI', + 1313568 => 'Detroit, MI', + 1313571 => 'Detroit, MI', + 1313576 => 'Detroit, MI', + 1313577 => 'Detroit, MI', + 1313579 => 'Detroit, MI', + 1313581 => 'Dearborn, MI', + 1313582 => 'Dearborn, MI', + 1313584 => 'Dearborn, MI', + 1313593 => 'Dearborn, MI', + 1313638 => 'Detroit, MI', + 1313653 => 'Detroit, MI', + 1313745 => 'Detroit, MI', + 1313766 => 'Detroit, MI', + 1313821 => 'Detroit, MI', + 1313822 => 'Detroit, MI', + 1313824 => 'Detroit, MI', + 1313831 => 'Detroit, MI', + 1313832 => 'Detroit, MI', + 1313833 => 'Detroit, MI', + 1313834 => 'Detroit, MI', + 1313835 => 'Detroit, MI', + 1313836 => 'Detroit, MI', + 1313837 => 'Detroit, MI', + 1313838 => 'Detroit, MI', + 1313839 => 'Detroit, MI', + 1313841 => 'Detroit, MI', + 1313842 => 'Detroit, MI', + 1313843 => 'Detroit, MI', + 1313846 => 'Dearborn, MI', + 1313849 => 'Detroit, MI', + 1313861 => 'Detroit, MI', + 1313862 => 'Detroit, MI', + 1313863 => 'Detroit, MI', + 1313864 => 'Detroit, MI', + 1313867 => 'Detroit, MI', + 1313868 => 'Highland Park, MI', + 1313869 => 'Detroit, MI', + 1313871 => 'Detroit, MI', + 1313872 => 'Detroit, MI', + 1313873 => 'Detroit, MI', + 1313874 => 'Detroit, MI', + 1313875 => 'Detroit, MI', + 1313876 => 'Detroit, MI', + 1313891 => 'Detroit, MI', + 1313892 => 'Detroit, MI', + 1313893 => 'Detroit, MI', + 1313894 => 'Detroit, MI', + 1313895 => 'Detroit, MI', + 1313897 => 'Detroit, MI', + 1313898 => 'Detroit, MI', + 1313916 => 'Detroit, MI', + 1313921 => 'Detroit, MI', + 1313922 => 'Detroit, MI', + 1313923 => 'Detroit, MI', + 1313924 => 'Detroit, MI', + 1313925 => 'Detroit, MI', + 1313931 => 'Detroit, MI', + 1313933 => 'Detroit, MI', + 1313934 => 'Detroit, MI', + 1313937 => 'Redford Charter Township, MI', + 1313945 => 'Dearborn, MI', + 1313961 => 'Detroit, MI', + 1313962 => 'Detroit, MI', + 1313963 => 'Detroit, MI', + 1313964 => 'Detroit, MI', + 1313965 => 'Detroit, MI', + 1313966 => 'Detroit, MI', + 1313982 => 'Dearborn, MI', + 1313993 => 'Detroit, MI', + 1314 => 'Missouri', + 1314226 => 'St. Louis, MO', + 1314231 => 'St. Louis, MO', + 1314241 => 'St. Louis, MO', + 1314251 => 'St. Louis, MO', + 1314256 => 'St. Louis, MO', + 1314261 => 'St. Louis, MO', + 1314268 => 'St. Louis, MO', + 1314286 => 'St. Louis, MO', + 1314289 => 'St. Louis, MO', + 1314344 => 'Bridgeton, MO', + 1314345 => 'St. Louis, MO', + 1314351 => 'St. Louis, MO', + 1314352 => 'St. Louis, MO', + 1314353 => 'St. Louis, MO', + 1314355 => 'St. Louis, MO', + 1314361 => 'St. Louis, MO', + 1314362 => 'St. Louis, MO', + 1314367 => 'St. Louis, MO', + 1314371 => 'St. Louis, MO', + 1314381 => 'St. Louis, MO', + 1314382 => 'St. Louis, MO', + 1314383 => 'St. Louis, MO', + 1314385 => 'St. Louis, MO', + 1314388 => 'St. Louis, MO', + 1314389 => 'St. Louis, MO', + 1314395 => 'St. Louis, MO', + 1314416 => 'St. Louis, MO', + 1314421 => 'St. Louis, MO', + 1314423 => 'St. Louis, MO', + 1314426 => 'St. Louis, MO', + 1314427 => 'St. Louis, MO', + 1314428 => 'St. Louis, MO', + 1314432 => 'St. Louis, MO', + 1314436 => 'St. Louis, MO', + 1314444 => 'St. Louis, MO', + 1314446 => 'St. Louis, MO', + 1314454 => 'St. Louis, MO', + 1314480 => 'St. Louis, MO', + 1314481 => 'St. Louis, MO', + 1314487 => 'St. Louis, MO', + 1314516 => 'St. Louis, MO', + 1314521 => 'St. Louis, MO', + 1314522 => 'St. Louis, MO', + 1314524 => 'St. Louis, MO', + 1314525 => 'St. Louis, MO', + 1314531 => 'St. Louis, MO', + 1314533 => 'St. Louis, MO', + 1314534 => 'St. Louis, MO', + 1314535 => 'St. Louis, MO', + 1314543 => 'St. Louis, MO', + 1314544 => 'St. Louis, MO', + 1314552 => 'St. Louis, MO', + 1314567 => 'St. Louis, MO', + 1314569 => 'St. Louis, MO', + 1314577 => 'St. Louis, MO', + 1314588 => 'St. Louis, MO', + 1314615 => 'St. Louis, MO', + 1314621 => 'St. Louis, MO', + 1314622 => 'St. Louis, MO', + 1314631 => 'St. Louis, MO', + 1314638 => 'St. Louis, MO', + 1314644 => 'St. Louis, MO', + 1314645 => 'St. Louis, MO', + 1314646 => 'St. Louis, MO', + 1314647 => 'St. Louis, MO', + 1314652 => 'St. Louis, MO', + 1314653 => 'St. Louis, MO', + 1314664 => 'St. Louis, MO', + 1314692 => 'St. Louis, MO', + 1314721 => 'St. Louis, MO', + 1314725 => 'St. Louis, MO', + 1314726 => 'St. Louis, MO', + 1314727 => 'St. Louis, MO', + 1314729 => 'St. Louis, MO', + 1314731 => 'Hazelwood, MO', + 1314747 => 'St. Louis, MO', + 1314752 => 'St. Louis, MO', + 1314768 => 'St. Louis, MO', + 1314771 => 'St. Louis, MO', + 1314772 => 'St. Louis, MO', + 1314773 => 'St. Louis, MO', + 1314776 => 'St. Louis, MO', + 1314781 => 'St. Louis, MO', + 1314802 => 'St. Louis, MO', + 1314814 => 'St. Louis, MO', + 1314821 => 'St. Louis, MO', + 1314822 => 'St. Louis, MO', + 1314830 => 'Florissant, MO', + 1314831 => 'Florissant, MO', + 1314832 => 'St. Louis, MO', + 1314835 => 'St. Louis, MO', + 1314837 => 'Florissant, MO', + 1314838 => 'Florissant, MO', + 1314839 => 'Florissant, MO', + 1314842 => 'St. Louis, MO', + 1314843 => 'St. Louis, MO', + 1314845 => 'St. Louis, MO', + 1314846 => 'St. Louis, MO', + 1314849 => 'St. Louis, MO', + 1314862 => 'St. Louis, MO', + 1314863 => 'St. Louis, MO', + 1314865 => 'St. Louis, MO', + 1314867 => 'St. Louis, MO', + 1314868 => 'St. Louis, MO', + 1314869 => 'St. Louis, MO', + 1314872 => 'St. Louis, MO', + 1314890 => 'St. Louis, MO', + 1314892 => 'St. Louis, MO', + 1314894 => 'St. Louis, MO', + 1314895 => 'Hazelwood, MO', + 1314909 => 'St. Louis, MO', + 1314918 => 'St. Louis, MO', + 1314921 => 'Florissant, MO', + 1314932 => 'St. Louis, MO', + 1314935 => 'St. Louis, MO', + 1314961 => 'St. Louis, MO', + 1314962 => 'St. Louis, MO', + 1314963 => 'St. Louis, MO', + 1314965 => 'St. Louis, MO', + 1314966 => 'St. Louis, MO', + 1314968 => 'St. Louis, MO', + 1314972 => 'Florissant, MO', + 1314977 => 'St. Louis, MO', + 1314983 => 'St. Louis, MO', + 1314989 => 'St. Louis, MO', + 1314991 => 'St. Louis, MO', + 1314993 => 'St. Louis, MO', + 1314994 => 'St. Louis, MO', + 1314995 => 'St. Louis, MO', + 1314996 => 'St. Louis, MO', + 1314997 => 'St. Louis, MO', + 1315 => 'New York', + 1315214 => 'Syracuse, NY', + 1315218 => 'Syracuse, NY', + 1315232 => 'Adams, NY', + 1315245 => 'Camden, NY', + 1315251 => 'Syracuse, NY', + 1315252 => 'Auburn, NY', + 1315253 => 'Auburn, NY', + 1315255 => 'Auburn, NY', + 1315258 => 'Auburn, NY', + 1315265 => 'Potsdam, NY', + 1315266 => 'Utica, NY', + 1315287 => 'Gouverneur, NY', + 1315298 => 'Pulaski, NY', + 1315299 => 'Syracuse, NY', + 1315314 => 'Syracuse, NY', + 1315329 => 'Fayetteville, NY', + 1315331 => 'Newark, NY', + 1315334 => 'Rome, NY', + 1315336 => 'Rome, NY', + 1315337 => 'Rome, NY', + 1315338 => 'Rome, NY', + 1315339 => 'Rome, NY', + 1315342 => 'Oswego, NY', + 1315343 => 'Oswego, NY', + 1315346 => 'Croghan, NY', + 1315349 => 'Oswego, NY', + 1315357 => 'Inlet, NY', + 1315361 => 'Oneida, NY', + 1315363 => 'Oneida, NY', + 1315366 => 'Wampsville, NY', + 1315369 => 'Old Forge, NY', + 1315376 => 'Lowville, NY', + 1315379 => 'Canton, NY', + 1315386 => 'Canton, NY', + 1315393 => 'Ogdensburg, NY', + 1315394 => 'Ogdensburg, NY', + 1315422 => 'Syracuse, NY', + 1315423 => 'Syracuse, NY', + 1315424 => 'Syracuse, NY', + 1315425 => 'Syracuse, NY', + 1315426 => 'Syracuse, NY', + 1315428 => 'Syracuse, NY', + 1315429 => 'Dolgeville, NY', + 1315435 => 'Syracuse, NY', + 1315443 => 'Syracuse, NY', + 1315446 => 'Syracuse, NY', + 1315448 => 'Syracuse, NY', + 1315451 => 'Liverpool, NY', + 1315453 => 'Liverpool, NY', + 1315454 => 'Syracuse, NY', + 1315455 => 'Syracuse, NY', + 1315457 => 'Liverpool, NY', + 1315462 => 'Clifton Springs, NY', + 1315464 => 'Syracuse, NY', + 1315466 => 'Syracuse, NY', + 1315468 => 'Syracuse, NY', + 1315469 => 'Syracuse, NY', + 1315470 => 'Syracuse, NY', + 1315471 => 'Syracuse, NY', + 1315472 => 'Syracuse, NY', + 1315473 => 'Syracuse, NY', + 1315474 => 'Syracuse, NY', + 1315475 => 'Syracuse, NY', + 1315476 => 'Syracuse, NY', + 1315478 => 'Syracuse, NY', + 1315479 => 'Syracuse, NY', + 1315482 => 'Alexandria Bay, NY', + 1315483 => 'Sodus, NY', + 1315488 => 'Syracuse, NY', + 1315492 => 'Syracuse, NY', + 1315493 => 'Carthage, NY', + 1315497 => 'Moravia, NY', + 1315498 => 'Syracuse, NY', + 1315507 => 'Utica, NY', + 1315524 => 'Ontario, NY', + 1315536 => 'Penn Yan, NY', + 1315539 => 'Waterloo, NY', + 1315548 => 'Phelps, NY', + 1315564 => 'Hannibal, NY', + 1315568 => 'Seneca Falls, NY', + 1315589 => 'Williamson, NY', + 1315592 => 'Fulton, NY', + 1315593 => 'Fulton, NY', + 1315594 => 'Wolcott, NY', + 1315597 => 'Palmyra, NY', + 1315598 => 'Fulton, NY', + 1315622 => 'Liverpool, NY', + 1315624 => 'Utica, NY', + 1315625 => 'Parish, NY', + 1315626 => 'Cato, NY', + 1315629 => 'Evans Mills, NY', + 1315633 => 'Bridgeport, NY', + 1315635 => 'Baldwinsville, NY', + 1315637 => 'Fayetteville, NY', + 1315638 => 'Baldwinsville, NY', + 1315652 => 'Liverpool, NY', + 1315654 => 'Cape Vincent, NY', + 1315655 => 'Cazenovia, NY', + 1315668 => 'Central Square, NY', + 1315671 => 'Syracuse, NY', + 1315672 => 'Camillus, NY', + 1315673 => 'Marcellus, NY', + 1315677 => 'LaFayette, NY', + 1315682 => 'Manlius, NY', + 1315684 => 'Morrisville, NY', + 1315685 => 'Skaneateles, NY', + 1315686 => 'Clayton, NY', + 1315687 => 'Chittenango, NY', + 1315695 => 'Phoenix, NY', + 1315696 => 'Tully, NY', + 1315697 => 'Canastota, NY', + 1315698 => 'Cicero, NY', + 1315699 => 'Cicero, NY', + 1315701 => 'Syracuse, NY', + 1315724 => 'Utica, NY', + 1315732 => 'Utica, NY', + 1315733 => 'Utica, NY', + 1315734 => 'Utica, NY', + 1315735 => 'Utica, NY', + 1315738 => 'Utica, NY', + 1315764 => 'Massena, NY', + 1315769 => 'Massena, NY', + 1315772 => 'Fort Drum, NY', + 1315776 => 'Port Byron, NY', + 1315779 => 'Watertown, NY', + 1315781 => 'Geneva, NY', + 1315782 => 'Watertown, NY', + 1315785 => 'Watertown, NY', + 1315786 => 'Watertown, NY', + 1315787 => 'Geneva, NY', + 1315788 => 'Watertown, NY', + 1315789 => 'Geneva, NY', + 1315792 => 'Utica, NY', + 1315793 => 'Utica, NY', + 1315797 => 'Utica, NY', + 1315798 => 'Utica, NY', + 1315822 => 'West Winfield, NY', + 1315823 => 'Little Falls, NY', + 1315824 => 'Hamilton, NY', + 1315826 => 'Poland, NY', + 1315829 => 'Vernon, NY', + 1315834 => 'Weedsport, NY', + 1315841 => 'Waterville, NY', + 1315845 => 'Newport, NY', + 1315853 => 'Clinton, NY', + 1315858 => 'Richfield Spgs, NY', + 1315866 => 'Herkimer, NY', + 1315867 => 'Herkimer, NY', + 1315893 => 'Madison, NY', + 1315894 => 'Ilion, NY', + 1315895 => 'Ilion, NY', + 1315896 => 'Barneveld, NY', + 1315923 => 'Clyde, NY', + 1315926 => 'Marion, NY', + 1315942 => 'Boonville, NY', + 1315946 => 'Lyons, NY', + 1315963 => 'Mexico, NY', + 1315986 => 'Macedon, NY', + 1316 => 'Kansas', + 1316201 => 'Wichita, KS', + 1316260 => 'Wichita, KS', + 1316262 => 'Wichita, KS', + 1316263 => 'Wichita, KS', + 1316264 => 'Wichita, KS', + 1316265 => 'Wichita, KS', + 1316267 => 'Wichita, KS', + 1316268 => 'Wichita, KS', + 1316269 => 'Wichita, KS', + 1316283 => 'Newton, KS', + 1316284 => 'Newton, KS', + 1316293 => 'Wichita, KS', + 1316295 => 'Wichita, KS', + 1316303 => 'Wichita, KS', + 1316320 => 'El Dorado, KS', + 1316321 => 'El Dorado, KS', + 1316322 => 'El Dorado, KS', + 1316383 => 'Wichita, KS', + 1316425 => 'Wichita, KS', + 1316440 => 'Wichita, KS', + 1316462 => 'Wichita, KS', + 1316522 => 'Wichita, KS', + 1316524 => 'Wichita, KS', + 1316529 => 'Wichita, KS', + 1316554 => 'Wichita, KS', + 1316558 => 'Wichita, KS', + 1316612 => 'Wichita, KS', + 1316613 => 'Wichita, KS', + 1316618 => 'Wichita, KS', + 1316630 => 'Wichita, KS', + 1316634 => 'Wichita, KS', + 1316636 => 'Wichita, KS', + 1316651 => 'Wichita, KS', + 1316652 => 'Wichita, KS', + 1316660 => 'Wichita, KS', + 1316681 => 'Wichita, KS', + 1316682 => 'Wichita, KS', + 1316683 => 'Wichita, KS', + 1316684 => 'Wichita, KS', + 1316685 => 'Wichita, KS', + 1316686 => 'Wichita, KS', + 1316687 => 'Wichita, KS', + 1316688 => 'Wichita, KS', + 1316689 => 'Wichita, KS', + 1316691 => 'Wichita, KS', + 1316721 => 'Wichita, KS', + 1316722 => 'Wichita, KS', + 1316729 => 'Wichita, KS', + 1316733 => 'Andover, KS', + 1316755 => 'Valley Center, KS', + 1316772 => 'Sedgwick, KS', + 1316773 => 'Wichita, KS', + 1316775 => 'Augusta, KS', + 1316776 => 'Rose Hill, KS', + 1316777 => 'Mulvane, KS', + 1316788 => 'Derby, KS', + 1316789 => 'Derby, KS', + 1316794 => 'Goddard, KS', + 1316796 => 'Colwich, KS', + 1316799 => 'Whitewater, KS', + 1316832 => 'Wichita, KS', + 1316835 => 'Halstead, KS', + 1316838 => 'Wichita, KS', + 1316858 => 'Wichita, KS', + 1316941 => 'Wichita, KS', + 1316942 => 'Wichita, KS', + 1316943 => 'Wichita, KS', + 1316944 => 'Wichita, KS', + 1316945 => 'Wichita, KS', + 1316946 => 'Wichita, KS', + 1316962 => 'Wichita, KS', + 1316973 => 'Wichita, KS', + 1317 => 'Indiana', + 1317202 => 'Indianapolis, IN', + 1317205 => 'Indianapolis, IN', + 1317216 => 'Indianapolis, IN', + 1317219 => 'Noblesville, IN', + 1317222 => 'Indianapolis, IN', + 1317226 => 'Indianapolis, IN', + 1317228 => 'Indianapolis, IN', + 1317231 => 'Indianapolis, IN', + 1317232 => 'Indianapolis, IN', + 1317236 => 'Indianapolis, IN', + 1317237 => 'Indianapolis, IN', + 1317241 => 'Indianapolis, IN', + 1317243 => 'Indianapolis, IN', + 1317244 => 'Indianapolis, IN', + 1317247 => 'Indianapolis, IN', + 1317248 => 'Indianapolis, IN', + 1317251 => 'Indianapolis, IN', + 1317253 => 'Indianapolis, IN', + 1317254 => 'Indianapolis, IN', + 1317255 => 'Indianapolis, IN', + 1317257 => 'Indianapolis, IN', + 1317259 => 'Indianapolis, IN', + 1317271 => 'Indianapolis, IN', + 1317272 => 'Avon, IN', + 1317274 => 'Indianapolis, IN', + 1317278 => 'Indianapolis, IN', + 1317280 => 'Indianapolis, IN', + 1317283 => 'Indianapolis, IN', + 1317290 => 'Indianapolis, IN', + 1317291 => 'Indianapolis, IN', + 1317293 => 'Indianapolis, IN', + 1317295 => 'Indianapolis, IN', + 1317297 => 'Indianapolis, IN', + 1317298 => 'Indianapolis, IN', + 1317299 => 'Indianapolis, IN', + 1317300 => 'Greenwood, IN', + 1317322 => 'Indianapolis, IN', + 1317326 => 'Greenfield, IN', + 1317327 => 'Indianapolis, IN', + 1317328 => 'Indianapolis, IN', + 1317329 => 'Indianapolis, IN', + 1317334 => 'Indianapolis, IN', + 1317335 => 'McCordsville, IN', + 1317337 => 'Indianapolis, IN', + 1317338 => 'Indianapolis, IN', + 1317346 => 'Franklin, IN', + 1317347 => 'Indianapolis, IN', + 1317351 => 'Indianapolis, IN', + 1317352 => 'Indianapolis, IN', + 1317353 => 'Indianapolis, IN', + 1317355 => 'Indianapolis, IN', + 1317356 => 'Indianapolis, IN', + 1317357 => 'Indianapolis, IN', + 1317359 => 'Indianapolis, IN', + 1317375 => 'Indianapolis, IN', + 1317377 => 'Indianapolis, IN', + 1317388 => 'Indianapolis, IN', + 1317392 => 'Shelbyville, IN', + 1317396 => 'Indianapolis, IN', + 1317398 => 'Shelbyville, IN', + 1317415 => 'Indianapolis, IN', + 1317422 => 'Bargersville, IN', + 1317423 => 'Indianapolis, IN', + 1317426 => 'Indianapolis, IN', + 1317462 => 'Greenfield, IN', + 1317464 => 'Indianapolis, IN', + 1317467 => 'Greenfield, IN', + 1317468 => 'Greenfield, IN', + 1317471 => 'Indianapolis, IN', + 1317472 => 'Indianapolis, IN', + 1317475 => 'Indianapolis, IN', + 1317477 => 'Greenfield, IN', + 1317481 => 'Indianapolis, IN', + 1317485 => 'Fortville, IN', + 1317528 => 'Indianapolis, IN', + 1317535 => 'Whiteland, IN', + 1317536 => 'Indianapolis, IN', + 1317539 => 'Clayton, IN', + 1317541 => 'Indianapolis, IN', + 1317542 => 'Indianapolis, IN', + 1317543 => 'Indianapolis, IN', + 1317545 => 'Indianapolis, IN', + 1317546 => 'Indianapolis, IN', + 1317547 => 'Indianapolis, IN', + 1317549 => 'Indianapolis, IN', + 1317554 => 'Indianapolis, IN', + 1317558 => 'Indianapolis, IN', + 1317564 => 'Carmel, IN', + 1317566 => 'Carmel, IN', + 1317567 => 'Indianapolis, IN', + 1317571 => 'Carmel, IN', + 1317573 => 'Carmel, IN', + 1317579 => 'Indianapolis, IN', + 1317582 => 'Carmel, IN', + 1317587 => 'Carmel, IN', + 1317596 => 'Indianapolis, IN', + 1317602 => 'Indianapolis, IN', + 1317621 => 'Indianapolis, IN', + 1317630 => 'Indianapolis, IN', + 1317631 => 'Indianapolis, IN', + 1317632 => 'Indianapolis, IN', + 1317633 => 'Indianapolis, IN', + 1317634 => 'Indianapolis, IN', + 1317635 => 'Indianapolis, IN', + 1317636 => 'Indianapolis, IN', + 1317637 => 'Indianapolis, IN', + 1317638 => 'Indianapolis, IN', + 1317639 => 'Indianapolis, IN', + 1317684 => 'Indianapolis, IN', + 1317686 => 'Indianapolis, IN', + 1317713 => 'Indianapolis, IN', + 1317718 => 'Danville, IN', + 1317722 => 'Indianapolis, IN', + 1317731 => 'Indianapolis, IN', + 1317733 => 'Zionsville, IN', + 1317736 => 'Franklin, IN', + 1317738 => 'Franklin, IN', + 1317745 => 'Danville, IN', + 1317755 => 'Indianapolis, IN', + 1317758 => 'Sheridan, IN', + 1317770 => 'Noblesville, IN', + 1317773 => 'Noblesville, IN', + 1317774 => 'Noblesville, IN', + 1317776 => 'Noblesville, IN', + 1317780 => 'Indianapolis, IN', + 1317781 => 'Indianapolis, IN', + 1317782 => 'Indianapolis, IN', + 1317783 => 'Indianapolis, IN', + 1317784 => 'Indianapolis, IN', + 1317786 => 'Indianapolis, IN', + 1317787 => 'Indianapolis, IN', + 1317788 => 'Indianapolis, IN', + 1317791 => 'Indianapolis, IN', + 1317802 => 'Indianapolis, IN', + 1317804 => 'Westfield, IN', + 1317805 => 'Indianapolis, IN', + 1317814 => 'Carmel, IN', + 1317815 => 'Carmel, IN', + 1317822 => 'Indianapolis, IN', + 1317823 => 'Indianapolis, IN', + 1317826 => 'Indianapolis, IN', + 1317831 => 'Mooresville, IN', + 1317834 => 'Mooresville, IN', + 1317835 => 'Fairland, IN', + 1317837 => 'Plainfield, IN', + 1317838 => 'Plainfield, IN', + 1317839 => 'Plainfield, IN', + 1317842 => 'Indianapolis, IN', + 1317843 => 'Carmel, IN', + 1317844 => 'Carmel, IN', + 1317845 => 'Indianapolis, IN', + 1317846 => 'Carmel, IN', + 1317848 => 'Carmel, IN', + 1317849 => 'Indianapolis, IN', + 1317852 => 'Brownsburg, IN', + 1317856 => 'Indianapolis, IN', + 1317858 => 'Brownsburg, IN', + 1317859 => 'Greenwood, IN', + 1317861 => 'New Palestine, IN', + 1317862 => 'Indianapolis, IN', + 1317867 => 'Westfield, IN', + 1317870 => 'Indianapolis, IN', + 1317872 => 'Indianapolis, IN', + 1317873 => 'Zionsville, IN', + 1317875 => 'Indianapolis, IN', + 1317876 => 'Indianapolis, IN', + 1317878 => 'Trafalgar, IN', + 1317879 => 'Indianapolis, IN', + 1317881 => 'Greenwood, IN', + 1317883 => 'Greenwood, IN', + 1317885 => 'Greenwood, IN', + 1317888 => 'Greenwood, IN', + 1317889 => 'Greenwood, IN', + 1317890 => 'Indianapolis, IN', + 1317892 => 'Pittsboro, IN', + 1317895 => 'Indianapolis, IN', + 1317896 => 'Westfield, IN', + 1317897 => 'Indianapolis, IN', + 1317898 => 'Indianapolis, IN', + 1317899 => 'Indianapolis, IN', + 1317916 => 'Indianapolis, IN', + 1317917 => 'Indianapolis, IN', + 1317920 => 'Indianapolis, IN', + 1317921 => 'Indianapolis, IN', + 1317923 => 'Indianapolis, IN', + 1317924 => 'Indianapolis, IN', + 1317925 => 'Indianapolis, IN', + 1317926 => 'Indianapolis, IN', + 1317931 => 'Indianapolis, IN', + 1317944 => 'Indianapolis, IN', + 1317955 => 'Indianapolis, IN', + 1317962 => 'Indianapolis, IN', + 1317972 => 'Indianapolis, IN', + 1317984 => 'Cicero, IN', + 1317988 => 'Indianapolis, IN', + 1317996 => 'Monrovia, IN', + 1318 => 'Louisiana', + 1318213 => 'Shreveport, LA', + 1318219 => 'Shreveport, LA', + 1318220 => 'Shreveport, LA', + 1318221 => 'Shreveport, LA', + 1318222 => 'Shreveport, LA', + 1318226 => 'Shreveport, LA', + 1318227 => 'Shreveport, LA', + 1318238 => 'Natchitoches, LA', + 1318240 => 'Marksville, LA', + 1318247 => 'Grambling, LA', + 1318248 => 'Mangham, LA', + 1318251 => 'Ruston, LA', + 1318253 => 'Marksville, LA', + 1318254 => 'Ruston, LA', + 1318255 => 'Ruston, LA', + 1318256 => 'Many, LA', + 1318259 => 'Jonesboro, LA', + 1318263 => 'Arcadia, LA', + 1318281 => 'Bastrop, LA', + 1318283 => 'Bastrop, LA', + 1318322 => 'Monroe, LA', + 1318323 => 'Monroe, LA', + 1318324 => 'Monroe, LA', + 1318325 => 'Monroe, LA', + 1318326 => 'Plain Dealing, LA', + 1318329 => 'Monroe, LA', + 1318330 => 'Monroe, LA', + 1318335 => 'Oakdale, LA', + 1318336 => 'Vidalia, LA', + 1318339 => 'Jonesville, LA', + 1318340 => 'Monroe, LA', + 1318343 => 'Monroe, LA', + 1318345 => 'Monroe, LA', + 1318346 => 'Bunkie, LA', + 1318352 => 'Natchitoches, LA', + 1318354 => 'Natchitoches, LA', + 1318356 => 'Natchitoches, LA', + 1318357 => 'Natchitoches, LA', + 1318361 => 'Monroe, LA', + 1318362 => 'Monroe, LA', + 1318368 => 'Farmerville, LA', + 1318371 => 'Minden, LA', + 1318375 => 'Vivian, LA', + 1318377 => 'Minden, LA', + 1318382 => 'Minden, LA', + 1318387 => 'Monroe, LA', + 1318388 => 'Monroe, LA', + 1318396 => 'West Monroe, LA', + 1318397 => 'West Monroe, LA', + 1318398 => 'Monroe, LA', + 1318410 => 'Monroe, LA', + 1318424 => 'Shreveport, LA', + 1318425 => 'Shreveport, LA', + 1318428 => 'Oak Grove, LA', + 1318429 => 'Shreveport, LA', + 1318435 => 'Winnsboro, LA', + 1318442 => 'Alexandria, LA', + 1318443 => 'Alexandria, LA', + 1318445 => 'Alexandria, LA', + 1318448 => 'Alexandria, LA', + 1318449 => 'Alexandria, LA', + 1318466 => 'Deville, LA', + 1318473 => 'Alexandria, LA', + 1318484 => 'Alexandria, LA', + 1318487 => 'Alexandria, LA', + 1318495 => 'Olla, LA', + 1318524 => 'Shreveport, LA', + 1318539 => 'Springhill, LA', + 1318549 => 'Bossier City, LA', + 1318550 => 'Shreveport, LA', + 1318559 => 'Lake Providence, LA', + 1318561 => 'Alexandria, LA', + 1318574 => 'Tallulah, LA', + 1318603 => 'Shreveport, LA', + 1318621 => 'Shreveport, LA', + 1318624 => 'Haynesville, LA', + 1318627 => 'Colfax, LA', + 1318628 => 'Winnfield, LA', + 1318629 => 'Shreveport, LA', + 1318631 => 'Shreveport, LA', + 1318632 => 'Shreveport, LA', + 1318635 => 'Shreveport, LA', + 1318636 => 'Shreveport, LA', + 1318640 => 'Pineville, LA', + 1318641 => 'Pineville, LA', + 1318644 => 'Calhoun, LA', + 1318645 => 'Zwolle, LA', + 1318648 => 'Winnfield, LA', + 1318649 => 'Columbia, LA', + 1318651 => 'Monroe, LA', + 1318654 => 'Monroe, LA', + 1318665 => 'Sterlington, LA', + 1318670 => 'Shreveport, LA', + 1318671 => 'Shreveport, LA', + 1318673 => 'Shreveport, LA', + 1318675 => 'Shreveport, LA', + 1318676 => 'Shreveport, LA', + 1318681 => 'Shreveport, LA', + 1318683 => 'Shreveport, LA', + 1318686 => 'Shreveport, LA', + 1318687 => 'Shreveport, LA', + 1318688 => 'Shreveport, LA', + 1318697 => 'Logansport, LA', + 1318728 => 'Rayville, LA', + 1318741 => 'Bossier City, LA', + 1318742 => 'Bossier City, LA', + 1318746 => 'Bossier City, LA', + 1318747 => 'Bossier City, LA', + 1318748 => 'Forest Hill, LA', + 1318752 => 'Bossier City, LA', + 1318757 => 'Ferriday, LA', + 1318766 => 'St. Joseph, LA', + 1318767 => 'Alexandria, LA', + 1318787 => 'Alexandria, LA', + 1318793 => 'Boyce, LA', + 1318795 => 'Shreveport, LA', + 1318797 => 'Shreveport, LA', + 1318798 => 'Shreveport, LA', + 1318813 => 'Shreveport, LA', + 1318828 => 'Shreveport, LA', + 1318841 => 'Shreveport, LA', + 1318855 => 'Monroe, LA', + 1318861 => 'Shreveport, LA', + 1318865 => 'Shreveport, LA', + 1318868 => 'Shreveport, LA', + 1318869 => 'Shreveport, LA', + 1318871 => 'Mansfield, LA', + 1318872 => 'Mansfield, LA', + 1318876 => 'Cottonport, LA', + 1318878 => 'Delhi, LA', + 1318894 => 'Ringgold, LA', + 1318925 => 'Keithville, LA', + 1318927 => 'Homer, LA', + 1318929 => 'Shreveport, LA', + 1318932 => 'Coushatta, LA', + 1318938 => 'Greenwood, LA', + 1318949 => 'Haughton, LA', + 1318965 => 'Benton, LA', + 1318966 => 'Monroe, LA', + 1318992 => 'Jena, LA', + 1319 => 'Iowa', + 1319232 => 'Waterloo, IA', + 1319233 => 'Waterloo, IA', + 1319234 => 'Waterloo, IA', + 1319235 => 'Waterloo, IA', + 1319236 => 'Waterloo, IA', + 1319247 => 'Cedar Rapids, IA', + 1319256 => 'Wayland, IA', + 1319261 => 'Cedar Rapids, IA', + 1319266 => 'Cedar Falls, IA', + 1319267 => 'Allison, IA', + 1319268 => 'Cedar Falls, IA', + 1319272 => 'Waterloo, IA', + 1319273 => 'Cedar Falls, IA', + 1319277 => 'Cedar Falls, IA', + 1319283 => 'Oelwein, IA', + 1319286 => 'Cedar Rapids, IA', + 1319287 => 'Waterloo, IA', + 1319291 => 'Waterloo, IA', + 1319293 => 'Keosauqua, IA', + 1319294 => 'Cedar Rapids, IA', + 1319296 => 'Waterloo, IA', + 1319334 => 'Independence, IA', + 1319335 => 'Iowa City, IA', + 1319337 => 'Iowa City, IA', + 1319338 => 'Iowa City, IA', + 1319339 => 'Iowa City, IA', + 1319341 => 'Iowa City, IA', + 1319342 => 'La Porte City, IA', + 1319346 => 'Parkersburg, IA', + 1319351 => 'Iowa City, IA', + 1319352 => 'Waverly, IA', + 1319353 => 'Iowa City, IA', + 1319354 => 'Iowa City, IA', + 1319356 => 'Iowa City, IA', + 1319358 => 'Iowa City, IA', + 1319362 => 'Cedar Rapids, IA', + 1319363 => 'Cedar Rapids, IA', + 1319364 => 'Cedar Rapids, IA', + 1319365 => 'Cedar Rapids, IA', + 1319366 => 'Cedar Rapids, IA', + 1319367 => 'New London, IA', + 1319368 => 'Cedar Rapids, IA', + 1319369 => 'Cedar Rapids, IA', + 1319372 => 'Fort Madison, IA', + 1319373 => 'Marion, IA', + 1319377 => 'Marion, IA', + 1319378 => 'Cedar Rapids, IA', + 1319384 => 'Iowa City, IA', + 1319385 => 'Mount Pleasant, IA', + 1319390 => 'Cedar Rapids, IA', + 1319393 => 'Cedar Rapids, IA', + 1319394 => 'Mediapolis, IA', + 1319395 => 'Cedar Rapids, IA', + 1319396 => 'Cedar Rapids, IA', + 1319398 => 'Cedar Rapids, IA', + 1319433 => 'Waterloo, IA', + 1319444 => 'Belle Plaine, IA', + 1319447 => 'Marion, IA', + 1319455 => 'Lisbon, IA', + 1319462 => 'Anamosa, IA', + 1319465 => 'Monticello, IA', + 1319472 => 'Vinton, IA', + 1319476 => 'Dysart, IA', + 1319478 => 'Traer, IA', + 1319523 => 'Wapello, IA', + 1319524 => 'Keokuk, IA', + 1319622 => 'Amana, IA', + 1319624 => 'Solon, IA', + 1319626 => 'North Liberty, IA', + 1319627 => 'West Liberty, IA', + 1319642 => 'Marengo, IA', + 1319643 => 'West Branch, IA', + 1319646 => 'Wellman, IA', + 1319647 => 'Victor, IA', + 1319648 => 'Riverside, IA', + 1319653 => 'Washington, IA', + 1319656 => 'Kalona, IA', + 1319665 => 'North Liberty, IA', + 1319668 => 'Williamsburg, IA', + 1319728 => 'Columbus Jct, IA', + 1319743 => 'Cedar Rapids, IA', + 1319752 => 'Burlington, IA', + 1319753 => 'Burlington, IA', + 1319754 => 'Burlington, IA', + 1319758 => 'Burlington, IA', + 1319768 => 'West Burlington, IA', + 1319824 => 'Grundy Center, IA', + 1319827 => 'Jesup, IA', + 1319833 => 'Waterloo, IA', + 1319835 => 'Donnellson, IA', + 1319837 => 'West Point, IA', + 1319846 => 'Fairfax, IA', + 1319849 => 'Center Point, IA', + 1319882 => 'Tripoli, IA', + 1319885 => 'Shell Rock, IA', + 1319887 => 'Iowa City, IA', + 1319895 => 'Mount Vernon, IA', + 1319984 => 'Denver, IA', + 1319986 => 'Mount Pleasant, IA', + 1319988 => 'Hudson, IA', + 1320 => 'Minnesota', + 1320202 => 'Saint Cloud, MN', + 1320203 => 'Saint Cloud, MN', + 1320214 => 'Willmar, MN', + 1320222 => 'Willmar, MN', + 1320229 => 'Saint Cloud, MN', + 1320231 => 'Willmar, MN', + 1320234 => 'Hutchinson, MN', + 1320235 => 'Willmar, MN', + 1320239 => 'Starbuck, MN', + 1320240 => 'Saint Cloud, MN', + 1320243 => 'Paynesville, MN', + 1320245 => 'Sandstone, MN', + 1320251 => 'Saint Cloud, MN', + 1320252 => 'Saint Cloud, MN', + 1320253 => 'Saint Cloud, MN', + 1320255 => 'Saint Cloud, MN', + 1320256 => 'Melrose, MN', + 1320258 => 'Saint Cloud, MN', + 1320259 => 'Saint Cloud, MN', + 1320269 => 'Montevideo, MN', + 1320274 => 'Annandale, MN', + 1320275 => 'Dassel, MN', + 1320286 => 'Cokato, MN', + 1320289 => 'Appleton, MN', + 1320352 => 'Sauk Centre, MN', + 1320354 => 'New London, MN', + 1320356 => 'Avon, MN', + 1320358 => 'Rush City, MN', + 1320363 => 'St. Joseph, MN', + 1320365 => 'Bird Island, MN', + 1320384 => 'Hinckley, MN', + 1320392 => 'Hancock, MN', + 1320393 => 'Rice, MN', + 1320396 => 'Braham, MN', + 1320398 => 'Kimball, MN', + 1320453 => 'Eden Valley, MN', + 1320468 => 'Pierz, MN', + 1320485 => 'Winsted, MN', + 1320523 => 'Olivia, MN', + 1320529 => 'Saint Cloud, MN', + 1320532 => 'Onamia, MN', + 1320543 => 'Howard Lake, MN', + 1320558 => 'Clearwater, MN', + 1320563 => 'Wheaton, MN', + 1320564 => 'Granite Falls, MN', + 1320587 => 'Hutchinson, MN', + 1320589 => 'Morris, MN', + 1320593 => 'Litchfield, MN', + 1320597 => 'Richmond, MN', + 1320598 => 'Madison, MN', + 1320629 => 'Pine City, MN', + 1320632 => 'Little Falls, MN', + 1320634 => 'Glenwood, MN', + 1320654 => 'Saint Cloud, MN', + 1320656 => 'Saint Cloud, MN', + 1320676 => 'Isle, MN', + 1320679 => 'Mora, MN', + 1320685 => 'Cold Spring, MN', + 1320693 => 'Litchfield, MN', + 1320732 => 'Long Prairie, MN', + 1320743 => 'Clear Lake, MN', + 1320759 => 'Alexandria, MN', + 1320762 => 'Alexandria, MN', + 1320763 => 'Alexandria, MN', + 1320769 => 'Dawson, MN', + 1320796 => 'Spicer, MN', + 1320839 => 'Ortonville, MN', + 1320843 => 'Benson, MN', + 1320845 => 'Albany, MN', + 1320847 => 'Clara City, MN', + 1320848 => 'Hector, MN', + 1320859 => 'Osakis, MN', + 1320864 => 'Glencoe, MN', + 1320963 => 'Maple Lake, MN', + 1320968 => 'Foley, MN', + 1320974 => 'Atwater, MN', + 1320983 => 'Milaca, MN', + 1321 => 'Florida', + 1321235 => 'Orlando, FL', + 1321242 => 'Melbourne, FL', + 1321253 => 'Melbourne, FL', + 1321254 => 'Melbourne, FL', + 1321255 => 'Melbourne, FL', + 1321259 => 'Melbourne, FL', + 1321264 => 'Titusville, FL', + 1321267 => 'Titusville, FL', + 1321268 => 'Titusville, FL', + 1321269 => 'Titusville, FL', + 1321308 => 'Melbourne, FL', + 1321383 => 'Titusville, FL', + 1321385 => 'Titusville, FL', + 1321434 => 'Melbourne, FL', + 1321449 => 'Merritt Island, FL', + 1321452 => 'Merritt Island, FL', + 1321453 => 'Merritt Island, FL', + 1321454 => 'Merritt Island, FL', + 1321459 => 'Merritt Island, FL', + 1321473 => 'Melbourne, FL', + 1321610 => 'Melbourne, FL', + 1321622 => 'Melbourne, FL', + 1321631 => 'Cocoa, FL', + 1321632 => 'Cocoa, FL', + 1321636 => 'Cocoa, FL', + 1321638 => 'Cocoa, FL', + 1321639 => 'Cocoa, FL', + 1321674 => 'Melbourne, FL', + 1321725 => 'Melbourne, FL', + 1321733 => 'Melbourne, FL', + 1321751 => 'Melbourne, FL', + 1321752 => 'Melbourne, FL', + 1321757 => 'Melbourne, FL', + 1321783 => 'Cocoa Beach, FL', + 1321784 => 'Cocoa Beach, FL', + 1321799 => 'Cocoa Beach, FL', + 1321841 => 'Orlando, FL', + 1321843 => 'Orlando, FL', + 1321868 => 'Cocoa Beach, FL', + 1321939 => 'Kissimmee, FL', + 1321953 => 'Melbourne, FL', + 1323 => 'California', + 1323221 => 'Los Angeles, CA', + 1323222 => 'Los Angeles, CA', + 1323223 => 'Los Angeles, CA', + 1323224 => 'Los Angeles, CA', + 1323225 => 'Los Angeles, CA', + 1323226 => 'Los Angeles, CA', + 1323227 => 'Los Angeles, CA', + 1323231 => 'Los Angeles, CA', + 1323232 => 'Los Angeles, CA', + 1323233 => 'Los Angeles, CA', + 1323234 => 'Los Angeles, CA', + 1323235 => 'Los Angeles, CA', + 1323238 => 'Los Angeles, CA', + 1323242 => 'Los Angeles, CA', + 1323249 => 'South Gate, CA', + 1323254 => 'Los Angeles, CA', + 1323255 => 'Los Angeles, CA', + 1323256 => 'Los Angeles, CA', + 1323257 => 'Los Angeles, CA', + 1323258 => 'Los Angeles, CA', + 1323259 => 'Los Angeles, CA', + 1323260 => 'Los Angeles, CA', + 1323261 => 'Los Angeles, CA', + 1323262 => 'Los Angeles, CA', + 1323263 => 'Los Angeles, CA', + 1323264 => 'Los Angeles, CA', + 1323265 => 'Los Angeles, CA', + 1323266 => 'Los Angeles, CA', + 1323267 => 'Los Angeles, CA', + 1323268 => 'Los Angeles, CA', + 1323269 => 'Los Angeles, CA', + 1323272 => 'Los Angeles, CA', + 1323290 => 'Los Angeles, CA', + 1323291 => 'Los Angeles, CA', + 1323292 => 'Los Angeles, CA', + 1323293 => 'Los Angeles, CA', + 1323294 => 'Los Angeles, CA', + 1323295 => 'Los Angeles, CA', + 1323296 => 'Los Angeles, CA', + 1323298 => 'Los Angeles, CA', + 1323299 => 'Los Angeles, CA', + 1323343 => 'Los Angeles, CA', + 1323344 => 'Los Angeles, CA', + 1323357 => 'South Gate, CA', + 1323361 => 'Los Angeles, CA', + 1323373 => 'Los Angeles, CA', + 1323409 => 'Los Angeles, CA', + 1323418 => 'Los Angeles, CA', + 1323441 => 'Los Angeles, CA', + 1323442 => 'Los Angeles, CA', + 1323460 => 'Los Angeles, CA', + 1323461 => 'Los Angeles, CA', + 1323462 => 'Los Angeles, CA', + 1323463 => 'Los Angeles, CA', + 1323464 => 'Los Angeles, CA', + 1323465 => 'Los Angeles, CA', + 1323466 => 'Los Angeles, CA', + 1323467 => 'Los Angeles, CA', + 1323469 => 'Los Angeles, CA', + 1323478 => 'Los Angeles, CA', + 1323512 => 'Los Angeles, CA', + 1323525 => 'Los Angeles, CA', + 1323526 => 'Los Angeles, CA', + 1323541 => 'Los Angeles, CA', + 1323549 => 'Los Angeles, CA', + 1323550 => 'Los Angeles, CA', + 1323556 => 'Beverly Hills, CA', + 1323563 => 'South Gate, CA', + 1323564 => 'South Gate, CA', + 1323566 => 'South Gate, CA', + 1323567 => 'South Gate, CA', + 1323569 => 'South Gate, CA', + 1323634 => 'Los Angeles, CA', + 1323644 => 'Los Angeles, CA', + 1323651 => 'Los Angeles, CA', + 1323653 => 'Los Angeles, CA', + 1323655 => 'Los Angeles, CA', + 1323656 => 'West Hollywood, CA', + 1323658 => 'Los Angeles, CA', + 1323660 => 'Los Angeles, CA', + 1323661 => 'Los Angeles, CA', + 1323662 => 'Los Angeles, CA', + 1323663 => 'Los Angeles, CA', + 1323664 => 'Los Angeles, CA', + 1323665 => 'Los Angeles, CA', + 1323666 => 'Los Angeles, CA', + 1323667 => 'Los Angeles, CA', + 1323668 => 'Los Angeles, CA', + 1323669 => 'Los Angeles, CA', + 1323692 => 'Los Angeles, CA', + 1323724 => 'Montebello, CA', + 1323728 => 'Montebello, CA', + 1323730 => 'Los Angeles, CA', + 1323731 => 'Los Angeles, CA', + 1323732 => 'Los Angeles, CA', + 1323733 => 'Los Angeles, CA', + 1323734 => 'Los Angeles, CA', + 1323735 => 'Los Angeles, CA', + 1323737 => 'Los Angeles, CA', + 1323750 => 'Los Angeles, CA', + 1323751 => 'Los Angeles, CA', + 1323752 => 'Los Angeles, CA', + 1323753 => 'Los Angeles, CA', + 1323754 => 'Los Angeles, CA', + 1323755 => 'Los Angeles, CA', + 1323756 => 'Los Angeles, CA', + 1323757 => 'Los Angeles, CA', + 1323758 => 'Los Angeles, CA', + 1323759 => 'Los Angeles, CA', + 1323766 => 'Los Angeles, CA', + 1323777 => 'Los Angeles, CA', + 1323778 => 'Los Angeles, CA', + 1323779 => 'Los Angeles, CA', + 1323780 => 'Los Angeles, CA', + 1323782 => 'Los Angeles, CA', + 1323783 => 'Los Angeles, CA', + 1323846 => 'Los Angeles, CA', + 1323850 => 'Los Angeles, CA', + 1323851 => 'Los Angeles, CA', + 1323852 => 'Los Angeles, CA', + 1323857 => 'Los Angeles, CA', + 1323860 => 'Los Angeles, CA', + 1323865 => 'Los Angeles, CA', + 1323871 => 'Los Angeles, CA', + 1323874 => 'Los Angeles, CA', + 1323876 => 'Los Angeles, CA', + 1323881 => 'Los Angeles, CA', + 1323906 => 'Los Angeles, CA', + 1323913 => 'Los Angeles, CA', + 1323930 => 'Los Angeles, CA', + 1323931 => 'Los Angeles, CA', + 1323932 => 'Los Angeles, CA', + 1323933 => 'Los Angeles, CA', + 1323934 => 'Los Angeles, CA', + 1323935 => 'Los Angeles, CA', + 1323936 => 'Los Angeles, CA', + 1323937 => 'Los Angeles, CA', + 1323938 => 'Los Angeles, CA', + 1323939 => 'Los Angeles, CA', + 1323944 => 'Los Angeles, CA', + 1323951 => 'Los Angeles, CA', + 1323953 => 'Los Angeles, CA', + 1323954 => 'Los Angeles, CA', + 1323957 => 'Los Angeles, CA', + 1323960 => 'Los Angeles, CA', + 1323962 => 'Los Angeles, CA', + 1323965 => 'Los Angeles, CA', + 1323969 => 'Los Angeles, CA', + 1323971 => 'Los Angeles, CA', + 1323980 => 'Los Angeles, CA', + 1323982 => 'Los Angeles, CA', + 1325 => 'Texas', + 1325223 => 'San Angelo, TX', + 1325224 => 'San Angelo, TX', + 1325227 => 'San Angelo, TX', + 1325232 => 'Abilene, TX', + 1325235 => 'Sweetwater, TX', + 1325236 => 'Sweetwater, TX', + 1325247 => 'Llano, TX', + 1325347 => 'Mason, TX', + 1325356 => 'Comanche, TX', + 1325365 => 'Ballinger, TX', + 1325372 => 'San Saba, TX', + 1325387 => 'Sonora, TX', + 1325388 => 'Kingsland, TX', + 1325392 => 'Ozona, TX', + 1325396 => 'Menard, TX', + 1325437 => 'Abilene, TX', + 1325446 => 'Junction, TX', + 1325481 => 'San Angelo, TX', + 1325486 => 'San Angelo, TX', + 1325529 => 'Abilene, TX', + 1325572 => 'Buffalo Gap, TX', + 1325573 => 'Snyder, TX', + 1325574 => 'Snyder, TX', + 1325576 => 'Hamlin, TX', + 1325597 => 'Brady, TX', + 1325617 => 'San Angelo, TX', + 1325625 => 'Coleman, TX', + 1325641 => 'Brownwood, TX', + 1325643 => 'Brownwood, TX', + 1325646 => 'Brownwood, TX', + 1325648 => 'Goldthwaite, TX', + 1325651 => 'San Angelo, TX', + 1325653 => 'San Angelo, TX', + 1325655 => 'San Angelo, TX', + 1325657 => 'San Angelo, TX', + 1325658 => 'San Angelo, TX', + 1325659 => 'San Angelo, TX', + 1325670 => 'Abilene, TX', + 1325672 => 'Abilene, TX', + 1325673 => 'Abilene, TX', + 1325675 => 'Abilene, TX', + 1325676 => 'Abilene, TX', + 1325677 => 'Abilene, TX', + 1325690 => 'Abilene, TX', + 1325691 => 'Abilene, TX', + 1325692 => 'Abilene, TX', + 1325695 => 'Abilene, TX', + 1325698 => 'Abilene, TX', + 1325728 => 'Colorado City, TX', + 1325754 => 'Winters, TX', + 1325762 => 'Albany, TX', + 1325773 => 'Stamford, TX', + 1325793 => 'Abilene, TX', + 1325795 => 'Abilene, TX', + 1325823 => 'Anson, TX', + 1325853 => 'Eldorado, TX', + 1325854 => 'Baird, TX', + 1325884 => 'Big Lake, TX', + 1325893 => 'Clyde, TX', + 1325928 => 'Merkel, TX', + 1325942 => 'San Angelo, TX', + 1325944 => 'San Angelo, TX', + 1325947 => 'San Angelo, TX', + 1325949 => 'San Angelo, TX', + 1330 => 'Ohio', + 1330220 => 'Brunswick, OH', + 1330225 => 'Brunswick, OH', + 1330239 => 'Medina, OH', + 1330244 => 'North Canton, OH', + 1330247 => 'Akron, OH', + 1330252 => 'Akron, OH', + 1330253 => 'Akron, OH', + 1330259 => 'Youngstown, OH', + 1330262 => 'Wooster, OH', + 1330263 => 'Wooster, OH', + 1330264 => 'Wooster, OH', + 1330270 => 'Youngstown, OH', + 1330273 => 'Brunswick, OH', + 1330274 => 'Mantua, OH', + 1330286 => 'Canfield, OH', + 1330287 => 'Wooster, OH', + 1330296 => 'Ravenna, OH', + 1330297 => 'Ravenna, OH', + 1330305 => 'North Canton, OH', + 1330308 => 'New Philadelphia, OH', + 1330325 => 'Rootstown, OH', + 1330331 => 'Wadsworth, OH', + 1330332 => 'Salem, OH', + 1330334 => 'Wadsworth, OH', + 1330335 => 'Wadsworth, OH', + 1330336 => 'Wadsworth, OH', + 1330337 => 'Salem, OH', + 1330339 => 'New Philadelphia, OH', + 1330342 => 'Hudson, OH', + 1330343 => 'Dover, OH', + 1330344 => 'Akron, OH', + 1330345 => 'Wooster, OH', + 1330363 => 'Canton, OH', + 1330364 => 'Dover, OH', + 1330369 => 'Warren, OH', + 1330372 => 'Warren, OH', + 1330373 => 'Warren, OH', + 1330374 => 'Akron, OH', + 1330375 => 'Akron, OH', + 1330376 => 'Akron, OH', + 1330379 => 'Akron, OH', + 1330384 => 'Akron, OH', + 1330385 => 'East Liverpool, OH', + 1330386 => 'East Liverpool, OH', + 1330392 => 'Warren, OH', + 1330393 => 'Warren, OH', + 1330394 => 'Warren, OH', + 1330395 => 'Warren, OH', + 1330399 => 'Warren, OH', + 1330405 => 'Twinsburg, OH', + 1330422 => 'Streetsboro, OH', + 1330424 => 'Lisbon, OH', + 1330425 => 'Twinsburg, OH', + 1330426 => 'East Palestine, OH', + 1330427 => 'Leetonia, OH', + 1330433 => 'North Canton, OH', + 1330434 => 'Akron, OH', + 1330435 => 'Creston, OH', + 1330438 => 'Canton, OH', + 1330448 => 'Brookfield, OH', + 1330451 => 'Canton, OH', + 1330452 => 'Canton, OH', + 1330453 => 'Canton, OH', + 1330454 => 'Canton, OH', + 1330455 => 'Canton, OH', + 1330456 => 'Canton, OH', + 1330467 => 'Northfield, OH', + 1330477 => 'Canton, OH', + 1330478 => 'Canton, OH', + 1330479 => 'Canton, OH', + 1330480 => 'Youngstown, OH', + 1330482 => 'Columbiana, OH', + 1330483 => 'Valley City, OH', + 1330484 => 'Canton, OH', + 1330487 => 'Twinsburg, OH', + 1330488 => 'Canton, OH', + 1330489 => 'Canton, OH', + 1330491 => 'Canton, OH', + 1330492 => 'Canton, OH', + 1330493 => 'Canton, OH', + 1330494 => 'North Canton, OH', + 1330497 => 'North Canton, OH', + 1330498 => 'North Canton, OH', + 1330499 => 'North Canton, OH', + 1330505 => 'Niles, OH', + 1330527 => 'Garrettsville, OH', + 1330532 => 'Wellsville, OH', + 1330533 => 'Canfield, OH', + 1330534 => 'Hubbard, OH', + 1330535 => 'Akron, OH', + 1330536 => 'Lowellville, OH', + 1330538 => 'North Jackson, OH', + 1330539 => 'Girard, OH', + 1330542 => 'New Middletown, OH', + 1330543 => 'Akron, OH', + 1330544 => 'Niles, OH', + 1330545 => 'Girard, OH', + 1330549 => 'North Lima, OH', + 1330562 => 'Aurora, OH', + 1330567 => 'Shreve, OH', + 1330602 => 'Dover, OH', + 1330609 => 'Warren, OH', + 1330626 => 'Streetsboro, OH', + 1330627 => 'Carrollton, OH', + 1330628 => 'Mogadore, OH', + 1330629 => 'Youngstown, OH', + 1330633 => 'Tallmadge, OH', + 1330637 => 'Cortland, OH', + 1330638 => 'Cortland, OH', + 1330644 => 'Akron, OH', + 1330645 => 'Akron, OH', + 1330650 => 'Hudson, OH', + 1330652 => 'Niles, OH', + 1330653 => 'Hudson, OH', + 1330655 => 'Hudson, OH', + 1330656 => 'Hudson, OH', + 1330658 => 'Doylestown, OH', + 1330659 => 'Richfield, OH', + 1330669 => 'Smithville, OH', + 1330670 => 'Akron, OH', + 1330673 => 'Kent, OH', + 1330674 => 'Millersburg, OH', + 1330676 => 'Kent, OH', + 1330677 => 'Kent, OH', + 1330678 => 'Kent, OH', + 1330682 => 'Orrville, OH', + 1330683 => 'Orrville, OH', + 1330684 => 'Orrville, OH', + 1330686 => 'Stow, OH', + 1330688 => 'Stow, OH', + 1330698 => 'Apple Creek, OH', + 1330699 => 'Uniontown, OH', + 1330702 => 'Canfield, OH', + 1330721 => 'Medina, OH', + 1330722 => 'Medina, OH', + 1330723 => 'Medina, OH', + 1330724 => 'Akron, OH', + 1330725 => 'Medina, OH', + 1330726 => 'Youngstown, OH', + 1330729 => 'Youngstown, OH', + 1330733 => 'Akron, OH', + 1330740 => 'Youngstown, OH', + 1330742 => 'Youngstown, OH', + 1330743 => 'Youngstown, OH', + 1330744 => 'Youngstown, OH', + 1330745 => 'Barberton, OH', + 1330746 => 'Youngstown, OH', + 1330747 => 'Youngstown, OH', + 1330752 => 'Akron, OH', + 1330755 => 'Struthers, OH', + 1330757 => 'Youngstown, OH', + 1330758 => 'Youngstown, OH', + 1330759 => 'Youngstown, OH', + 1330762 => 'Akron, OH', + 1330764 => 'Medina, OH', + 1330769 => 'Seville, OH', + 1330773 => 'Akron, OH', + 1330782 => 'Youngstown, OH', + 1330783 => 'Youngstown, OH', + 1330784 => 'Akron, OH', + 1330785 => 'Akron, OH', + 1330788 => 'Youngstown, OH', + 1330792 => 'Youngstown, OH', + 1330793 => 'Youngstown, OH', + 1330794 => 'Akron, OH', + 1330797 => 'Youngstown, OH', + 1330798 => 'Akron, OH', + 1330799 => 'Youngstown, OH', + 1330821 => 'Alliance, OH', + 1330823 => 'Alliance, OH', + 1330825 => 'Norton, OH', + 1330828 => 'Dalton, OH', + 1330829 => 'Alliance, OH', + 1330830 => 'Massillon, OH', + 1330832 => 'Massillon, OH', + 1330833 => 'Massillon, OH', + 1330834 => 'Massillon, OH', + 1330835 => 'Akron, OH', + 1330836 => 'Akron, OH', + 1330837 => 'Massillon, OH', + 1330841 => 'Warren, OH', + 1330847 => 'Warren, OH', + 1330852 => 'Sugarcreek, OH', + 1330854 => 'Canal Fulton, OH', + 1330856 => 'Warren, OH', + 1330863 => 'Malvern, OH', + 1330864 => 'Akron, OH', + 1330865 => 'Akron, OH', + 1330867 => 'Akron, OH', + 1330868 => 'Minerva, OH', + 1330869 => 'Akron, OH', + 1330872 => 'Newton Falls, OH', + 1330874 => 'Bolivar, OH', + 1330875 => 'Louisville, OH', + 1330876 => 'Kinsman, OH', + 1330877 => 'Hartville, OH', + 1330878 => 'Strasburg, OH', + 1330879 => 'Navarre, OH', + 1330884 => 'Youngstown, OH', + 1330889 => 'Bristolville, OH', + 1330897 => 'Baltic, OH', + 1330898 => 'Warren, OH', + 1330920 => 'Cuyahoga Falls, OH', + 1330922 => 'Cuyahoga Falls, OH', + 1330923 => 'Cuyahoga Falls, OH', + 1330925 => 'Rittman, OH', + 1330926 => 'Cuyahoga Falls, OH', + 1330928 => 'Cuyahoga Falls, OH', + 1330929 => 'Cuyahoga Falls, OH', + 1330938 => 'Sebring, OH', + 1330945 => 'Cuyahoga Falls, OH', + 1330948 => 'Lodi, OH', + 1330952 => 'Medina, OH', + 1330953 => 'Youngstown, OH', + 1330963 => 'Twinsburg, OH', + 1330965 => 'Youngstown, OH', + 1330966 => 'North Canton, OH', + 1330971 => 'Cuyahoga Falls, OH', + 1330995 => 'Aurora, OH', + 1331 => 'Illinois', + 1334 => 'Alabama', + 1334209 => 'Auburn, AL', + 1334213 => 'Montgomery, AL', + 1334215 => 'Montgomery, AL', + 1334222 => 'Andalusia, AL', + 1334239 => 'Montgomery, AL', + 1334240 => 'Montgomery, AL', + 1334241 => 'Montgomery, AL', + 1334242 => 'Montgomery, AL', + 1334244 => 'Montgomery, AL', + 1334260 => 'Montgomery, AL', + 1334262 => 'Montgomery, AL', + 1334263 => 'Montgomery, AL', + 1334264 => 'Montgomery, AL', + 1334265 => 'Montgomery, AL', + 1334269 => 'Montgomery, AL', + 1334270 => 'Montgomery, AL', + 1334271 => 'Montgomery, AL', + 1334272 => 'Montgomery, AL', + 1334273 => 'Montgomery, AL', + 1334277 => 'Montgomery, AL', + 1334279 => 'Montgomery, AL', + 1334280 => 'Montgomery, AL', + 1334281 => 'Montgomery, AL', + 1334283 => 'Tallassee, AL', + 1334284 => 'Montgomery, AL', + 1334285 => 'Millbrook, AL', + 1334286 => 'Montgomery, AL', + 1334287 => 'Demopolis, AL', + 1334288 => 'Montgomery, AL', + 1334289 => 'Demopolis, AL', + 1334290 => 'Millbrook, AL', + 1334291 => 'Phenix City, AL', + 1334293 => 'Montgomery, AL', + 1334295 => 'Linden, AL', + 1334297 => 'Phenix City, AL', + 1334298 => 'Phenix City, AL', + 1334308 => 'Enterprise, AL', + 1334335 => 'Luverne, AL', + 1334347 => 'Enterprise, AL', + 1334356 => 'Montgomery, AL', + 1334358 => 'Prattville, AL', + 1334361 => 'Prattville, AL', + 1334365 => 'Prattville, AL', + 1334366 => 'Maplesville, AL', + 1334371 => 'Greenville, AL', + 1334376 => 'Georgiana, AL', + 1334382 => 'Greenville, AL', + 1334386 => 'Montgomery, AL', + 1334393 => 'Enterprise, AL', + 1334395 => 'Montgomery, AL', + 1334396 => 'Montgomery, AL', + 1334409 => 'Montgomery, AL', + 1334427 => 'Andalusia, AL', + 1334445 => 'Ozark, AL', + 1334448 => 'Phenix City, AL', + 1334480 => 'Phenix City, AL', + 1334491 => 'Prattville, AL', + 1334493 => 'Opp, AL', + 1334501 => 'Auburn, AL', + 1334502 => 'Auburn, AL', + 1334514 => 'Wetumpka, AL', + 1334541 => 'Eclectic, AL', + 1334548 => 'Hayneville, AL', + 1334566 => 'Troy, AL', + 1334567 => 'Wetumpka, AL', + 1334576 => 'Lanett, AL', + 1334585 => 'Abbeville, AL', + 1334588 => 'Hartford, AL', + 1334593 => 'Montgomery, AL', + 1334598 => 'Daleville, AL', + 1334613 => 'Montgomery, AL', + 1334624 => 'Greensboro, AL', + 1334628 => 'Uniontown, AL', + 1334636 => 'Thomasville, AL', + 1334644 => 'Lanett, AL', + 1334649 => 'Montgomery, AL', + 1334670 => 'Troy, AL', + 1334671 => 'Dothan, AL', + 1334673 => 'Dothan, AL', + 1334677 => 'Dothan, AL', + 1334678 => 'Dothan, AL', + 1334682 => 'Camden, AL', + 1334683 => 'Marion, AL', + 1334684 => 'Geneva, AL', + 1334687 => 'Eufaula, AL', + 1334692 => 'Newton, AL', + 1334693 => 'Headland, AL', + 1334699 => 'Dothan, AL', + 1334702 => 'Dothan, AL', + 1334705 => 'Opelika, AL', + 1334712 => 'Dothan, AL', + 1334727 => 'Tuskegee, AL', + 1334735 => 'Brundidge, AL', + 1334737 => 'Opelika, AL', + 1334738 => 'Union Springs, AL', + 1334741 => 'Opelika, AL', + 1334742 => 'Opelika, AL', + 1334745 => 'Opelika, AL', + 1334749 => 'Opelika, AL', + 1334756 => 'Valley, AL', + 1334768 => 'Valley, AL', + 1334774 => 'Ozark, AL', + 1334775 => 'Clayton, AL', + 1334792 => 'Dothan, AL', + 1334793 => 'Dothan, AL', + 1334794 => 'Dothan, AL', + 1334819 => 'Montgomery, AL', + 1334821 => 'Auburn, AL', + 1334826 => 'Auburn, AL', + 1334832 => 'Montgomery, AL', + 1334834 => 'Montgomery, AL', + 1334844 => 'Auburn, AL', + 1334858 => 'Florala, AL', + 1334863 => 'Roanoke, AL', + 1334864 => 'La Fayette, AL', + 1334872 => 'Selma, AL', + 1334874 => 'Selma, AL', + 1334875 => 'Selma, AL', + 1334886 => 'Slocomb, AL', + 1334887 => 'Auburn, AL', + 1334894 => 'New Brockton, AL', + 1334897 => 'Elba, AL', + 1334898 => 'Samson, AL', + 1334899 => 'Ashford, AL', + 1336 => 'North Carolina', + 1336218 => 'Greensboro, NC', + 1336222 => 'Burlington, NC', + 1336224 => 'Lexington, NC', + 1336226 => 'Burlington, NC', + 1336227 => 'Burlington, NC', + 1336228 => 'Burlington, NC', + 1336229 => 'Burlington, NC', + 1336230 => 'Greensboro, NC', + 1336235 => 'Greensboro, NC', + 1336236 => 'Lexington, NC', + 1336242 => 'Lexington, NC', + 1336243 => 'Lexington, NC', + 1336245 => 'Winston-Salem, NC', + 1336246 => 'West Jefferson, NC', + 1336248 => 'Lexington, NC', + 1336249 => 'Lexington, NC', + 1336251 => 'Winston-Salem, NC', + 1336270 => 'Burlington, NC', + 1336271 => 'Greensboro, NC', + 1336272 => 'Greensboro, NC', + 1336273 => 'Greensboro, NC', + 1336274 => 'Greensboro, NC', + 1336275 => 'Greensboro, NC', + 1336277 => 'Winston-Salem, NC', + 1336282 => 'Greensboro, NC', + 1336284 => 'Mocksville, NC', + 1336285 => 'Greensboro, NC', + 1336286 => 'Greensboro, NC', + 1336288 => 'Greensboro, NC', + 1336292 => 'Greensboro, NC', + 1336293 => 'Winston-Salem, NC', + 1336294 => 'Greensboro, NC', + 1336297 => 'Greensboro, NC', + 1336299 => 'Greensboro, NC', + 1336310 => 'Kernersville, NC', + 1336315 => 'Greensboro, NC', + 1336316 => 'Greensboro, NC', + 1336318 => 'Asheboro, NC', + 1336322 => 'Roxboro, NC', + 1336333 => 'Greensboro, NC', + 1336334 => 'Greensboro, NC', + 1336342 => 'Reidsville, NC', + 1336349 => 'Reidsville, NC', + 1336357 => 'Lexington, NC', + 1336358 => 'Greensboro, NC', + 1336368 => 'Pilot Mountain, NC', + 1336370 => 'Greensboro, NC', + 1336372 => 'Sparta, NC', + 1336373 => 'Greensboro, NC', + 1336375 => 'Greensboro, NC', + 1336377 => 'Winston-Salem, NC', + 1336378 => 'Greensboro, NC', + 1336379 => 'Greensboro, NC', + 1336384 => 'Lansing, NC', + 1336386 => 'Dobson, NC', + 1336387 => 'Greensboro, NC', + 1336389 => 'Greensboro, NC', + 1336427 => 'Madison, NC', + 1336454 => 'Jamestown, NC', + 1336463 => 'Yadkinville, NC', + 1336468 => 'Hamptonville, NC', + 1336472 => 'Thomasville, NC', + 1336474 => 'Thomasville, NC', + 1336475 => 'Thomasville, NC', + 1336476 => 'Thomasville, NC', + 1336492 => 'Mocksville, NC', + 1336495 => 'Randleman, NC', + 1336498 => 'Randleman, NC', + 1336499 => 'Winston-Salem, NC', + 1336510 => 'Greensboro, NC', + 1336526 => 'Elkin, NC', + 1336538 => 'Burlington, NC', + 1336540 => 'Greensboro, NC', + 1336545 => 'Greensboro, NC', + 1336547 => 'Greensboro, NC', + 1336548 => 'Madison, NC', + 1336570 => 'Burlington, NC', + 1336573 => 'Stoneville, NC', + 1336574 => 'Greensboro, NC', + 1336584 => 'Burlington, NC', + 1336585 => 'Burlington, NC', + 1336586 => 'Burlington, NC', + 1336591 => 'Walnut Cove, NC', + 1336593 => 'Danbury, NC', + 1336595 => 'Walkertown, NC', + 1336597 => 'Roxboro, NC', + 1336599 => 'Roxboro, NC', + 1336605 => 'Greensboro, NC', + 1336617 => 'Greensboro, NC', + 1336621 => 'Greensboro, NC', + 1336622 => 'Liberty, NC', + 1336623 => 'Eden, NC', + 1336625 => 'Asheboro, NC', + 1336626 => 'Asheboro, NC', + 1336627 => 'Eden, NC', + 1336629 => 'Asheboro, NC', + 1336631 => 'Winston-Salem, NC', + 1336632 => 'Greensboro, NC', + 1336633 => 'Asheboro, NC', + 1336634 => 'Reidsville, NC', + 1336635 => 'Eden, NC', + 1336641 => 'Greensboro, NC', + 1336651 => 'North Wilkesboro, NC', + 1336656 => 'Browns Summit, NC', + 1336659 => 'Winston-Salem, NC', + 1336661 => 'Winston-Salem, NC', + 1336665 => 'Greensboro, NC', + 1336667 => 'North Wilkesboro, NC', + 1336668 => 'Greensboro, NC', + 1336672 => 'Asheboro, NC', + 1336676 => 'Greensboro, NC', + 1336677 => 'Yadkinville, NC', + 1336679 => 'Yadkinville, NC', + 1336691 => 'Greensboro, NC', + 1336694 => 'Yanceyville, NC', + 1336696 => 'North Wilkesboro, NC', + 1336699 => 'East Bend, NC', + 1336703 => 'Winston-Salem, NC', + 1336712 => 'Clemmons, NC', + 1336713 => 'Winston-Salem, NC', + 1336716 => 'Winston-Salem, NC', + 1336718 => 'Winston-Salem, NC', + 1336719 => 'Mount Airy, NC', + 1336721 => 'Winston-Salem, NC', + 1336722 => 'Winston-Salem, NC', + 1336723 => 'Winston-Salem, NC', + 1336724 => 'Winston-Salem, NC', + 1336725 => 'Winston-Salem, NC', + 1336727 => 'Winston-Salem, NC', + 1336731 => 'Lexington, NC', + 1336744 => 'Winston-Salem, NC', + 1336748 => 'Winston-Salem, NC', + 1336751 => 'Mocksville, NC', + 1336753 => 'Mocksville, NC', + 1336759 => 'Winston-Salem, NC', + 1336760 => 'Winston-Salem, NC', + 1336761 => 'Winston-Salem, NC', + 1336764 => 'Winston-Salem, NC', + 1336765 => 'Winston-Salem, NC', + 1336766 => 'Clemmons, NC', + 1336767 => 'Winston-Salem, NC', + 1336768 => 'Winston-Salem, NC', + 1336769 => 'Winston-Salem, NC', + 1336771 => 'Winston-Salem, NC', + 1336774 => 'Winston-Salem, NC', + 1336777 => 'Winston-Salem, NC', + 1336778 => 'Clemmons, NC', + 1336784 => 'Winston-Salem, NC', + 1336785 => 'Winston-Salem, NC', + 1336786 => 'Mount Airy, NC', + 1336787 => 'Lexington, NC', + 1336788 => 'Winston-Salem, NC', + 1336789 => 'Mount Airy, NC', + 1336790 => 'Greensboro, NC', + 1336793 => 'Winston-Salem, NC', + 1336794 => 'Winston-Salem, NC', + 1336798 => 'Lexington, NC', + 1336802 => 'High Point, NC', + 1336812 => 'High Point, NC', + 1336824 => 'Ramseur, NC', + 1336832 => 'Greensboro, NC', + 1336834 => 'Greensboro, NC', + 1336835 => 'Elkin, NC', + 1336838 => 'North Wilkesboro, NC', + 1336841 => 'High Point, NC', + 1336846 => 'West Jefferson, NC', + 1336851 => 'Greensboro, NC', + 1336852 => 'Greensboro, NC', + 1336854 => 'Greensboro, NC', + 1336855 => 'Greensboro, NC', + 1336856 => 'Greensboro, NC', + 1336859 => 'Denton, NC', + 1336869 => 'High Point, NC', + 1336873 => 'Seagrove, NC', + 1336878 => 'High Point, NC', + 1336882 => 'High Point, NC', + 1336883 => 'High Point, NC', + 1336884 => 'High Point, NC', + 1336885 => 'High Point, NC', + 1336886 => 'High Point, NC', + 1336887 => 'High Point, NC', + 1336889 => 'High Point, NC', + 1336896 => 'Winston-Salem, NC', + 1336903 => 'North Wilkesboro, NC', + 1336922 => 'Winston-Salem, NC', + 1336924 => 'Winston-Salem, NC', + 1336940 => 'Advance, NC', + 1336945 => 'Lewisville, NC', + 1336956 => 'Lexington, NC', + 1336969 => 'Rural Hall, NC', + 1336973 => 'Wilkesboro, NC', + 1336983 => 'King, NC', + 1336985 => 'King, NC', + 1336992 => 'Kernersville, NC', + 1336993 => 'Kernersville, NC', + 1336996 => 'Kernersville, NC', + 1336998 => 'Advance, NC', + 1337 => 'Louisiana', + 1337205 => 'Lafayette, LA', + 1337216 => 'Lafayette, LA', + 1337217 => 'Lake Charles, LA', + 1337229 => 'Loreauville, LA', + 1337232 => 'Lafayette, LA', + 1337233 => 'Lafayette, LA', + 1337234 => 'Lafayette, LA', + 1337235 => 'Lafayette, LA', + 1337236 => 'Lafayette, LA', + 1337237 => 'Lafayette, LA', + 1337238 => 'Leesville, LA', + 1337239 => 'Leesville, LA', + 1337261 => 'Lafayette, LA', + 1337262 => 'Lafayette, LA', + 1337264 => 'Lafayette, LA', + 1337266 => 'Lafayette, LA', + 1337267 => 'Lafayette, LA', + 1337269 => 'Lafayette, LA', + 1337276 => 'Jeanerette, LA', + 1337289 => 'Lafayette, LA', + 1337291 => 'Lafayette, LA', + 1337310 => 'Lake Charles, LA', + 1337332 => 'Breaux Bridge, LA', + 1337334 => 'Rayne, LA', + 1337363 => 'Ville Platte, LA', + 1337364 => 'New Iberia, LA', + 1337365 => 'New Iberia, LA', + 1337367 => 'New Iberia, LA', + 1337369 => 'New Iberia, LA', + 1337392 => 'Leesville, LA', + 1337394 => 'Saint Martinville, LA', + 1337406 => 'Lafayette, LA', + 1337407 => 'Opelousas, LA', + 1337433 => 'Lake Charles, LA', + 1337436 => 'Lake Charles, LA', + 1337437 => 'Lake Charles, LA', + 1337439 => 'Lake Charles, LA', + 1337456 => 'Lafayette, LA', + 1337457 => 'Eunice, LA', + 1337462 => 'DeRidder, LA', + 1337463 => 'DeRidder, LA', + 1337468 => 'Mamou, LA', + 1337474 => 'Lake Charles, LA', + 1337475 => 'Lake Charles, LA', + 1337477 => 'Lake Charles, LA', + 1337478 => 'Lake Charles, LA', + 1337479 => 'Lake Charles, LA', + 1337480 => 'Lake Charles, LA', + 1337491 => 'Lake Charles, LA', + 1337494 => 'Lake Charles, LA', + 1337504 => 'Lafayette, LA', + 1337521 => 'Lafayette, LA', + 1337527 => 'Sulphur, LA', + 1337528 => 'Sulphur, LA', + 1337531 => 'Fort Polk, LA', + 1337534 => 'Lafayette, LA', + 1337536 => 'Gueydan, LA', + 1337537 => 'Leesville, LA', + 1337546 => 'Eunice, LA', + 1337560 => 'New Iberia, LA', + 1337562 => 'Lake Charles, LA', + 1337564 => 'Lake Charles, LA', + 1337582 => 'Iowa, LA', + 1337583 => 'Sulphur, LA', + 1337585 => 'Port Barre, LA', + 1337589 => 'Vinton, LA', + 1337593 => 'Lafayette, LA', + 1337625 => 'Sulphur, LA', + 1337626 => 'Sulphur, LA', + 1337639 => 'Oberlin, LA', + 1337643 => 'Kaplan, LA', + 1337662 => 'Sunset, LA', + 1337684 => 'Church Point, LA', + 1337685 => 'Delcambre, LA', + 1337706 => 'Lafayette, LA', + 1337721 => 'Lake Charles, LA', + 1337725 => 'Ragley, LA', + 1337734 => 'Welsh, LA', + 1337738 => 'Kinder, LA', + 1337754 => 'Arnaudville, LA', + 1337769 => 'Lafayette, LA', + 1337774 => 'Lake Arthur, LA', + 1337775 => 'Cameron, LA', + 1337783 => 'Crowley, LA', + 1337786 => 'DeQuincy, LA', + 1337788 => 'Crowley, LA', + 1337824 => 'Jennings, LA', + 1337828 => 'Franklin, LA', + 1337837 => 'Broussard, LA', + 1337839 => 'Broussard, LA', + 1337855 => 'Lake Charles, LA', + 1337856 => 'Youngsville, LA', + 1337857 => 'Youngsville, LA', + 1337873 => 'Duson, LA', + 1337882 => 'Westlake, LA', + 1337886 => 'Carencro, LA', + 1337893 => 'Abbeville, LA', + 1337896 => 'Carencro, LA', + 1337898 => 'Abbeville, LA', + 1337923 => 'Baldwin, LA', + 1337937 => 'Erath, LA', + 1337942 => 'Opelousas, LA', + 1337948 => 'Opelousas, LA', + 1337981 => 'Lafayette, LA', + 1337984 => 'Lafayette, LA', + 1337988 => 'Lafayette, LA', + 1337989 => 'Lafayette, LA', + 1337991 => 'Lafayette, LA', + 1337993 => 'Lafayette, LA', + 1339 => 'Massachusetts', + 1345949 => 'George Town', + 1346 => 'Texas', + 1347 => 'New York', + 1347221 => 'Brooklyn, NY', + 1347240 => 'Brooklyn, NY', + 1347270 => 'Bronx, NY', + 1347271 => 'Bronx, NY', + 1347281 => 'Bronx, NY', + 1347295 => 'Brooklyn, NY', + 1347346 => 'Bronx, NY', + 1347350 => 'Brooklyn, NY', + 1347365 => 'Brooklyn, NY', + 1347406 => 'Brooklyn, NY', + 1347425 => 'Brooklyn, NY', + 1347442 => 'Brooklyn, NY', + 1347462 => 'Brooklyn, NY', + 1347492 => 'Brooklyn, NY', + 1347529 => 'Brooklyn, NY', + 1347533 => 'Brooklyn, NY', + 1347577 => 'Bronx, NY', + 1347587 => 'Brooklyn, NY', + 1347590 => 'Bronx, NY', + 1347627 => 'Brooklyn, NY', + 1347663 => 'Brooklyn, NY', + 1347689 => 'Brooklyn, NY', + 1347702 => 'Brooklyn, NY', + 1347715 => 'Brooklyn, NY', + 1347763 => 'Brooklyn, NY', + 1347770 => 'Brooklyn, NY', + 1347787 => 'Brooklyn, NY', + 1347789 => 'Brooklyn, NY', + 1347810 => 'Bronx, NY', + 1347843 => 'Bronx, NY', + 1347862 => 'Bronx, NY', + 1347915 => 'Brooklyn, NY', + 1351 => 'Massachusetts', + 1352 => 'Florida', + 1352205 => 'Lady Lake, FL', + 1352236 => 'Ocala, FL', + 1352237 => 'Ocala, FL', + 1352241 => 'Clermont, FL', + 1352242 => 'Clermont, FL', + 1352243 => 'Clermont, FL', + 1352245 => 'Belleview, FL', + 1352253 => 'Tavares, FL', + 1352259 => 'Lady Lake, FL', + 1352264 => 'Gainesville, FL', + 1352265 => 'Gainesville, FL', + 1352266 => 'Ocala, FL', + 1352271 => 'Gainesville, FL', + 1352273 => 'Gainesville, FL', + 1352288 => 'Ocklawaha, FL', + 1352291 => 'Ocala, FL', + 1352304 => 'Ocala, FL', + 1352314 => 'Leesburg, FL', + 1352315 => 'Leesburg, FL', + 1352323 => 'Leesburg, FL', + 1352324 => 'Howey In Hills, FL', + 1352326 => 'Leesburg, FL', + 1352330 => 'Wildwood, FL', + 1352331 => 'Gainesville, FL', + 1352332 => 'Gainesville, FL', + 1352333 => 'Gainesville, FL', + 1352334 => 'Gainesville, FL', + 1352335 => 'Gainesville, FL', + 1352336 => 'Gainesville, FL', + 1352337 => 'Gainesville, FL', + 1352338 => 'Gainesville, FL', + 1352341 => 'Inverness, FL', + 1352343 => 'Tavares, FL', + 1352344 => 'Inverness, FL', + 1352351 => 'Ocala, FL', + 1352357 => 'Eustis, FL', + 1352360 => 'Leesburg, FL', + 1352365 => 'Leesburg, FL', + 1352367 => 'Gainesville, FL', + 1352368 => 'Ocala, FL', + 1352369 => 'Ocala, FL', + 1352371 => 'Gainesville, FL', + 1352372 => 'Gainesville, FL', + 1352373 => 'Gainesville, FL', + 1352374 => 'Gainesville, FL', + 1352375 => 'Gainesville, FL', + 1352376 => 'Gainesville, FL', + 1352377 => 'Gainesville, FL', + 1352378 => 'Gainesville, FL', + 1352379 => 'Gainesville, FL', + 1352382 => 'Homosassa, FL', + 1352383 => 'Mount Dora, FL', + 1352385 => 'Mount Dora, FL', + 1352390 => 'Ocala, FL', + 1352392 => 'Gainesville, FL', + 1352394 => 'Clermont, FL', + 1352401 => 'Ocala, FL', + 1352404 => 'Clermont, FL', + 1352419 => 'Inverness, FL', + 1352427 => 'Ocala, FL', + 1352429 => 'Groveland, FL', + 1352432 => 'Clermont, FL', + 1352433 => 'Ocala, FL', + 1352435 => 'Leesburg, FL', + 1352447 => 'Inglis, FL', + 1352463 => 'Trenton, FL', + 1352465 => 'Dunnellon, FL', + 1352466 => 'Micanopy, FL', + 1352468 => 'Waldo, FL', + 1352472 => 'Newberry, FL', + 1352473 => 'Keystone Heights, FL', + 1352475 => 'Melrose, FL', + 1352481 => 'Hawthorne, FL', + 1352483 => 'Eustis, FL', + 1352486 => 'Bronson, FL', + 1352489 => 'Dunnellon, FL', + 1352490 => 'Chiefland, FL', + 1352493 => 'Chiefland, FL', + 1352495 => 'Archer, FL', + 1352498 => 'Cross City, FL', + 1352503 => 'Homosassa, FL', + 1352505 => 'Gainesville, FL', + 1352508 => 'Tavares, FL', + 1352518 => 'Dade City, FL', + 1352521 => 'Dade City, FL', + 1352523 => 'Dade City, FL', + 1352528 => 'Williston, FL', + 1352536 => 'Clermont, FL', + 1352540 => 'Brooksville, FL', + 1352542 => 'Old Town, FL', + 1352543 => 'Cedar Key, FL', + 1352544 => 'Brooksville, FL', + 1352556 => 'Spring Hill, FL', + 1352563 => 'Crystal River, FL', + 1352564 => 'Crystal River, FL', + 1352567 => 'Dade City, FL', + 1352568 => 'Bushnell, FL', + 1352569 => 'Bushnell, FL', + 1352583 => 'Dade City, FL', + 1352588 => 'San Antonio, FL', + 1352589 => 'Eustis, FL', + 1352593 => 'Brooksville, FL', + 1352595 => 'Citra, FL', + 1352610 => 'Spring Hill, FL', + 1352620 => 'Ocala, FL', + 1352621 => 'Homosassa, FL', + 1352622 => 'Ocala, FL', + 1352624 => 'Ocala, FL', + 1352625 => 'Silver Springs, FL', + 1352628 => 'Homosassa, FL', + 1352629 => 'Ocala, FL', + 1352637 => 'Inverness, FL', + 1352666 => 'Spring Hill, FL', + 1352669 => 'Umatilla, FL', + 1352671 => 'Ocala, FL', + 1352672 => 'Gainesville, FL', + 1352683 => 'Spring Hill, FL', + 1352684 => 'Spring Hill, FL', + 1352686 => 'Spring Hill, FL', + 1352687 => 'Ocala, FL', + 1352688 => 'Spring Hill, FL', + 1352690 => 'Ocala, FL', + 1352694 => 'Ocala, FL', + 1352726 => 'Inverness, FL', + 1352728 => 'Leesburg, FL', + 1352732 => 'Ocala, FL', + 1352735 => 'Mount Dora, FL', + 1352742 => 'Tavares, FL', + 1352748 => 'Wildwood, FL', + 1352750 => 'Lady Lake, FL', + 1352751 => 'Lady Lake, FL', + 1352753 => 'Lady Lake, FL', + 1352754 => 'Brooksville, FL', + 1352787 => 'Leesburg, FL', + 1352789 => 'Ocala, FL', + 1352793 => 'Bushnell, FL', + 1352794 => 'Crystal River, FL', + 1352795 => 'Crystal River, FL', + 1352796 => 'Brooksville, FL', + 1352797 => 'Brooksville, FL', + 1352799 => 'Brooksville, FL', + 1352821 => 'Weirsdale, FL', + 1352835 => 'Spring Hill, FL', + 1352840 => 'Ocala, FL', + 1352854 => 'Ocala, FL', + 1352860 => 'Inverness, FL', + 1352861 => 'Ocala, FL', + 1352867 => 'Ocala, FL', + 1352872 => 'Gainesville, FL', + 1352873 => 'Ocala, FL', + 1352955 => 'Gainesville, FL', + 1360 => 'Washington', + 1360210 => 'Camas, WA', + 1360213 => 'Vancouver, WA', + 1360221 => 'Langley, WA', + 1360225 => 'Woodland, WA', + 1360236 => 'Olympia, WA', + 1360240 => 'Oak Harbor, WA', + 1360249 => 'Montesano, WA', + 1360253 => 'Vancouver, WA', + 1360254 => 'Vancouver, WA', + 1360256 => 'Vancouver, WA', + 1360257 => 'Oak Harbor, WA', + 1360258 => 'Vancouver, WA', + 1360259 => 'Olympia, WA', + 1360260 => 'Vancouver, WA', + 1360262 => 'Chehalis, WA', + 1360263 => 'La Center, WA', + 1360264 => 'Tenino, WA', + 1360268 => 'Westport, WA', + 1360273 => 'Rochester, WA', + 1360274 => 'Castle Rock, WA', + 1360275 => 'Belfair, WA', + 1360279 => 'Oak Harbor, WA', + 1360281 => 'Vancouver, WA', + 1360289 => 'Ocean Shores, WA', + 1360292 => 'Olympia, WA', + 1360293 => 'Anacortes, WA', + 1360297 => 'Kingston, WA', + 1360299 => 'Anacortes, WA', + 1360306 => 'Bellingham, WA', + 1360307 => 'Silverdale, WA', + 1360314 => 'Vancouver, WA', + 1360318 => 'Lynden, WA', + 1360321 => 'Langley, WA', + 1360326 => 'Vancouver, WA', + 1360330 => 'Centralia, WA', + 1360331 => 'Freeland, WA', + 1360332 => 'Blaine, WA', + 1360335 => 'Washougal, WA', + 1360336 => 'Mount Vernon, WA', + 1360341 => 'Clinton, WA', + 1360350 => 'Olympia, WA', + 1360352 => 'Olympia, WA', + 1360354 => 'Lynden, WA', + 1360357 => 'Olympia, WA', + 1360371 => 'Blaine, WA', + 1360373 => 'Bremerton, WA', + 1360374 => 'Forks, WA', + 1360376 => 'Eastsound, WA', + 1360377 => 'Bremerton, WA', + 1360378 => 'Friday Harbor, WA', + 1360379 => 'Port Townsend, WA', + 1360380 => 'Ferndale, WA', + 1360384 => 'Ferndale, WA', + 1360385 => 'Port Townsend, WA', + 1360387 => 'Camano Island, WA', + 1360392 => 'Bellingham, WA', + 1360394 => 'Poulsbo, WA', + 1360397 => 'Vancouver, WA', + 1360398 => 'Bellingham, WA', + 1360400 => 'Yelm, WA', + 1360402 => 'Olympia, WA', + 1360403 => 'Arlington, WA', + 1360412 => 'Lacey, WA', + 1360413 => 'Olympia, WA', + 1360414 => 'Longview, WA', + 1360416 => 'Mount Vernon, WA', + 1360417 => 'Port Angeles, WA', + 1360418 => 'Vancouver, WA', + 1360419 => 'Mount Vernon, WA', + 1360423 => 'Longview, WA', + 1360424 => 'Mount Vernon, WA', + 1360425 => 'Longview, WA', + 1360426 => 'Shelton, WA', + 1360427 => 'Shelton, WA', + 1360428 => 'Mount Vernon, WA', + 1360432 => 'Shelton, WA', + 1360433 => 'Vancouver, WA', + 1360435 => 'Arlington, WA', + 1360436 => 'Darrington, WA', + 1360437 => 'Port Ludlow, WA', + 1360438 => 'Olympia, WA', + 1360446 => 'Rainier, WA', + 1360448 => 'Vancouver, WA', + 1360449 => 'Vancouver, WA', + 1360450 => 'Vancouver, WA', + 1360452 => 'Port Angeles, WA', + 1360457 => 'Port Angeles, WA', + 1360458 => 'Yelm, WA', + 1360459 => 'Olympia, WA', + 1360460 => 'Port Angeles, WA', + 1360466 => 'La Conner, WA', + 1360468 => 'Lopez Island, WA', + 1360474 => 'Arlington, WA', + 1360475 => 'Bremerton, WA', + 1360477 => 'Port Angeles, WA', + 1360479 => 'Bremerton, WA', + 1360482 => 'Elma, WA', + 1360487 => 'Vancouver, WA', + 1360491 => 'Olympia, WA', + 1360493 => 'Olympia, WA', + 1360496 => 'Morton, WA', + 1360501 => 'Longview, WA', + 1360513 => 'Vancouver, WA', + 1360514 => 'Vancouver, WA', + 1360521 => 'Vancouver, WA', + 1360524 => 'Vancouver, WA', + 1360527 => 'Bellingham, WA', + 1360528 => 'Olympia, WA', + 1360532 => 'Aberdeen, WA', + 1360533 => 'Aberdeen, WA', + 1360537 => 'Aberdeen, WA', + 1360538 => 'Aberdeen, WA', + 1360546 => 'Vancouver, WA', + 1360563 => 'Snohomish, WA', + 1360566 => 'Vancouver, WA', + 1360567 => 'Vancouver, WA', + 1360568 => 'Snohomish, WA', + 1360570 => 'Olympia, WA', + 1360571 => 'Vancouver, WA', + 1360573 => 'Vancouver, WA', + 1360574 => 'Vancouver, WA', + 1360575 => 'Longview, WA', + 1360576 => 'Vancouver, WA', + 1360577 => 'Longview, WA', + 1360578 => 'Longview, WA', + 1360579 => 'Clinton, WA', + 1360582 => 'Sequim, WA', + 1360584 => 'Olympia, WA', + 1360588 => 'Anacortes, WA', + 1360597 => 'Vancouver, WA', + 1360598 => 'Poulsbo, WA', + 1360599 => 'Maple Falls, WA', + 1360604 => 'Vancouver, WA', + 1360613 => 'Silverdale, WA', + 1360629 => 'Stanwood, WA', + 1360635 => 'Vancouver, WA', + 1360636 => 'Longview, WA', + 1360642 => 'Long Beach, WA', + 1360647 => 'Bellingham, WA', + 1360650 => 'Bellingham, WA', + 1360651 => 'Marysville, WA', + 1360653 => 'Marysville, WA', + 1360657 => 'Marysville, WA', + 1360658 => 'Marysville, WA', + 1360659 => 'Marysville, WA', + 1360665 => 'Ocean Park, WA', + 1360666 => 'Battle Ground, WA', + 1360668 => 'Snohomish, WA', + 1360671 => 'Bellingham, WA', + 1360673 => 'Kalama, WA', + 1360675 => 'Oak Harbor, WA', + 1360676 => 'Bellingham, WA', + 1360678 => 'Coupeville, WA', + 1360679 => 'Oak Harbor, WA', + 1360681 => 'Sequim, WA', + 1360683 => 'Sequim, WA', + 1360686 => 'Yacolt, WA', + 1360687 => 'Battle Ground, WA', + 1360691 => 'Granite Falls, WA', + 1360692 => 'Silverdale, WA', + 1360693 => 'Vancouver, WA', + 1360694 => 'Vancouver, WA', + 1360695 => 'Vancouver, WA', + 1360696 => 'Vancouver, WA', + 1360697 => 'Poulsbo, WA', + 1360698 => 'Silverdale, WA', + 1360699 => 'Vancouver, WA', + 1360701 => 'Olympia, WA', + 1360704 => 'Olympia, WA', + 1360705 => 'Olympia, WA', + 1360707 => 'Burlington, WA', + 1360709 => 'Olympia, WA', + 1360713 => 'Vancouver, WA', + 1360714 => 'Bellingham, WA', + 1360715 => 'Bellingham, WA', + 1360716 => 'Tulalip, WA', + 1360718 => 'Vancouver, WA', + 1360733 => 'Bellingham, WA', + 1360734 => 'Bellingham, WA', + 1360735 => 'Vancouver, WA', + 1360736 => 'Centralia, WA', + 1360737 => 'Vancouver, WA', + 1360738 => 'Bellingham, WA', + 1360739 => 'Bellingham, WA', + 1360740 => 'Chehalis, WA', + 1360748 => 'Chehalis, WA', + 1360750 => 'Vancouver, WA', + 1360752 => 'Bellingham, WA', + 1360753 => 'Olympia, WA', + 1360754 => 'Olympia, WA', + 1360755 => 'Burlington, WA', + 1360756 => 'Bellingham, WA', + 1360757 => 'Burlington, WA', + 1360765 => 'Quilcene, WA', + 1360769 => 'Port Orchard, WA', + 1360773 => 'Vancouver, WA', + 1360778 => 'Bellingham, WA', + 1360779 => 'Poulsbo, WA', + 1360782 => 'Bremerton, WA', + 1360785 => 'Winlock, WA', + 1360786 => 'Olympia, WA', + 1360789 => 'Olympia, WA', + 1360791 => 'Olympia, WA', + 1360792 => 'Bremerton, WA', + 1360793 => 'Sultan, WA', + 1360794 => 'Monroe, WA', + 1360795 => 'Cathlamet, WA', + 1360802 => 'Enumclaw, WA', + 1360805 => 'Monroe, WA', + 1360807 => 'Centralia, WA', + 1360816 => 'Vancouver, WA', + 1360823 => 'Vancouver, WA', + 1360825 => 'Enumclaw, WA', + 1360828 => 'Vancouver, WA', + 1360829 => 'Buckley, WA', + 1360832 => 'Eatonville, WA', + 1360833 => 'Camas, WA', + 1360834 => 'Camas, WA', + 1360835 => 'Washougal, WA', + 1360848 => 'Mount Vernon, WA', + 1360852 => 'Vancouver, WA', + 1360853 => 'Concrete, WA', + 1360855 => 'Sedro-Woolley, WA', + 1360856 => 'Sedro-Woolley, WA', + 1360863 => 'Monroe, WA', + 1360864 => 'Toledo, WA', + 1360866 => 'Olympia, WA', + 1360867 => 'Olympia, WA', + 1360870 => 'Olympia, WA', + 1360871 => 'Port Orchard, WA', + 1360874 => 'Port Orchard, WA', + 1360875 => 'South Bend, WA', + 1360876 => 'Port Orchard, WA', + 1360877 => 'Hoodsport, WA', + 1360878 => 'Olympia, WA', + 1360882 => 'Vancouver, WA', + 1360883 => 'Vancouver, WA', + 1360885 => 'Vancouver, WA', + 1360886 => 'Black Diamond, WA', + 1360887 => 'Ridgefield, WA', + 1360891 => 'Vancouver, WA', + 1360892 => 'Vancouver, WA', + 1360893 => 'Orting, WA', + 1360894 => 'Yelm, WA', + 1360895 => 'Port Orchard, WA', + 1360896 => 'Vancouver, WA', + 1360901 => 'Vancouver, WA', + 1360902 => 'Olympia, WA', + 1360904 => 'Vancouver, WA', + 1360906 => 'Vancouver, WA', + 1360909 => 'Vancouver, WA', + 1360910 => 'Vancouver, WA', + 1360915 => 'Olympia, WA', + 1360923 => 'Olympia, WA', + 1360930 => 'Poulsbo, WA', + 1360942 => 'Raymond, WA', + 1360943 => 'Olympia, WA', + 1360944 => 'Vancouver, WA', + 1360945 => 'Point Roberts, WA', + 1360956 => 'Olympia, WA', + 1360966 => 'Everson, WA', + 1360988 => 'Sumas, WA', + 1360991 => 'Vancouver, WA', + 1360993 => 'Vancouver, WA', + 1361 => 'Texas', + 1361225 => 'Corpus Christi, TX', + 1361241 => 'Corpus Christi, TX', + 1361242 => 'Corpus Christi, TX', + 1361275 => 'Cuero, TX', + 1361279 => 'San Diego, TX', + 1361288 => 'Corpus Christi, TX', + 1361289 => 'Corpus Christi, TX', + 1361293 => 'Yoakum, TX', + 1361299 => 'Corpus Christi, TX', + 1361325 => 'Falfurrias, TX', + 1361334 => 'Corpus Christi, TX', + 1361348 => 'Premont, TX', + 1361358 => 'Beeville, TX', + 1361362 => 'Beeville, TX', + 1361364 => 'Sinton, TX', + 1361384 => 'Orange Grove, TX', + 1361387 => 'Robstown, TX', + 1361394 => 'Freer, TX', + 1361396 => 'Alice, TX', + 1361449 => 'George West, TX', + 1361485 => 'Victoria, TX', + 1361516 => 'Kingsville, TX', + 1361526 => 'Refugio, TX', + 1361527 => 'Hebbronville, TX', + 1361528 => 'Taft, TX', + 1361547 => 'Mathis, TX', + 1361552 => 'Port Lavaca, TX', + 1361561 => 'Corpus Christi, TX', + 1361564 => 'Yorktown, TX', + 1361570 => 'Victoria, TX', + 1361572 => 'Victoria, TX', + 1361573 => 'Victoria, TX', + 1361574 => 'Victoria, TX', + 1361575 => 'Victoria, TX', + 1361576 => 'Victoria, TX', + 1361578 => 'Victoria, TX', + 1361579 => 'Victoria, TX', + 1361582 => 'Victoria, TX', + 1361592 => 'Kingsville, TX', + 1361594 => 'Shiner, TX', + 1361595 => 'Kingsville, TX', + 1361643 => 'Portland, TX', + 1361645 => 'Goliad, TX', + 1361661 => 'Alice, TX', + 1361664 => 'Alice, TX', + 1361668 => 'Alice, TX', + 1361694 => 'Corpus Christi, TX', + 1361727 => 'Rockport, TX', + 1361729 => 'Rockport, TX', + 1361749 => 'Port Aransas, TX', + 1361758 => 'Aransas Pass, TX', + 1361767 => 'Robstown, TX', + 1361771 => 'Ganado, TX', + 1361776 => 'Ingleside, TX', + 1361777 => 'Portland, TX', + 1361782 => 'Edna, TX', + 1361786 => 'Three Rivers, TX', + 1361790 => 'Rockport, TX', + 1361798 => 'Hallettsville, TX', + 1361806 => 'Corpus Christi, TX', + 1361814 => 'Corpus Christi, TX', + 1361851 => 'Corpus Christi, TX', + 1361852 => 'Corpus Christi, TX', + 1361853 => 'Corpus Christi, TX', + 1361854 => 'Corpus Christi, TX', + 1361855 => 'Corpus Christi, TX', + 1361857 => 'Corpus Christi, TX', + 1361865 => 'Flatonia, TX', + 1361880 => 'Corpus Christi, TX', + 1361881 => 'Corpus Christi, TX', + 1361882 => 'Corpus Christi, TX', + 1361883 => 'Corpus Christi, TX', + 1361884 => 'Corpus Christi, TX', + 1361885 => 'Corpus Christi, TX', + 1361887 => 'Corpus Christi, TX', + 1361888 => 'Corpus Christi, TX', + 1361902 => 'Corpus Christi, TX', + 1361906 => 'Corpus Christi, TX', + 1361937 => 'Corpus Christi, TX', + 1361939 => 'Corpus Christi, TX', + 1361949 => 'Corpus Christi, TX', + 1361972 => 'Palacios, TX', + 1361980 => 'Corpus Christi, TX', + 1361985 => 'Corpus Christi, TX', + 1361986 => 'Corpus Christi, TX', + 1361991 => 'Corpus Christi, TX', + 1361992 => 'Corpus Christi, TX', + 1361993 => 'Corpus Christi, TX', + 1361994 => 'Corpus Christi, TX', + 1364 => 'Kentucky', + 1365 => 'Ontario', + 1380 => 'Ohio', + 1385 => 'Utah', + 1386 => 'Florida', + 1386218 => 'Orange City, FL', + 1386226 => 'Daytona Beach, FL', + 1386228 => 'Lake Helen, FL', + 1386236 => 'Daytona Beach, FL', + 1386238 => 'Daytona Beach, FL', + 1386239 => 'Daytona Beach, FL', + 1386246 => 'Palm Coast, FL', + 1386248 => 'Daytona Beach, FL', + 1386252 => 'Daytona Beach, FL', + 1386253 => 'Daytona Beach, FL', + 1386254 => 'Daytona Beach, FL', + 1386255 => 'Daytona Beach, FL', + 1386257 => 'Daytona Beach, FL', + 1386258 => 'Daytona Beach, FL', + 1386274 => 'Daytona Beach, FL', + 1386294 => 'Mayo, FL', + 1386313 => 'Bunnell, FL', + 1386322 => 'Port Orange, FL', + 1386323 => 'Daytona Beach, FL', + 1386325 => 'Palatka, FL', + 1386326 => 'Palatka, FL', + 1386328 => 'Palatka, FL', + 1386329 => 'Palatka, FL', + 1386362 => 'Live Oak, FL', + 1386364 => 'Live Oak, FL', + 1386385 => 'Palatka, FL', + 1386409 => 'New Smyrna Beach, FL', + 1386418 => 'Alachua, FL', + 1386423 => 'New Smyrna Beach, FL', + 1386424 => 'New Smyrna Beach, FL', + 1386426 => 'New Smyrna Beach, FL', + 1386427 => 'New Smyrna Beach, FL', + 1386428 => 'New Smyrna Beach, FL', + 1386437 => 'Bunnell, FL', + 1386438 => 'Lake City, FL', + 1386439 => 'Flagler Beach, FL', + 1386441 => 'Ormond Beach, FL', + 1386445 => 'Palm Coast, FL', + 1386446 => 'Palm Coast, FL', + 1386447 => 'Palm Coast, FL', + 1386454 => 'High Springs, FL', + 1386462 => 'Alachua, FL', + 1386467 => 'Welaka, FL', + 1386496 => 'Lake Butler, FL', + 1386497 => 'Fort White, FL', + 1386532 => 'Deltona, FL', + 1386574 => 'Deltona, FL', + 1386586 => 'Palm Coast, FL', + 1386597 => 'Palm Coast, FL', + 1386615 => 'Ormond Beach, FL', + 1386668 => 'DeBary, FL', + 1386671 => 'Ormond Beach, FL', + 1386672 => 'Ormond Beach, FL', + 1386673 => 'Ormond Beach, FL', + 1386676 => 'Ormond Beach, FL', + 1386677 => 'Ormond Beach, FL', + 1386684 => 'Interlachen, FL', + 1386698 => 'Crescent City, FL', + 1386719 => 'Lake City, FL', + 1386734 => 'DeLand, FL', + 1386736 => 'DeLand, FL', + 1386738 => 'DeLand, FL', + 1386740 => 'DeLand, FL', + 1386749 => 'Pierson, FL', + 1386752 => 'Lake City, FL', + 1386754 => 'Lake City, FL', + 1386755 => 'Lake City, FL', + 1386756 => 'Port Orange, FL', + 1386758 => 'Lake City, FL', + 1386774 => 'Orange City, FL', + 1386775 => 'Orange City, FL', + 1386789 => 'Deltona, FL', + 1386792 => 'Jasper, FL', + 1386822 => 'DeLand, FL', + 1386860 => 'Deltona, FL', + 1386873 => 'DeLand, FL', + 1386931 => 'Palm Coast, FL', + 1386935 => 'Branford, FL', + 1386943 => 'DeLand, FL', + 1386947 => 'Daytona Beach, FL', + 1386957 => 'New Smyrna Beach, FL', + 1386985 => 'De Leon Springs, FL', + 1386986 => 'Palm Coast, FL', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1301.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1301.php deleted file mode 100644 index 60433202e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1301.php +++ /dev/null @@ -1,247 +0,0 @@ - 'Maryland', - 1301203 => 'Fort Washington, MD', - 1301208 => 'Gaithersburg, MD', - 1301210 => 'Beltsville, MD', - 1301215 => 'Bethesda, MD', - 1301216 => 'Gaithersburg, MD', - 1301217 => 'Rockville, MD', - 1301220 => 'Greenbelt, MD', - 1301223 => 'Williamsport, MD', - 1301228 => 'Frederick, MD', - 1301229 => 'Bethesda, MD', - 1301230 => 'Rockville, MD', - 1301231 => 'Rockville, MD', - 1301248 => 'Fort Washington, MD', - 1301251 => 'Rockville, MD', - 1301253 => 'Damascus, MD', - 1301258 => 'Gaithersburg, MD', - 1301259 => 'Newburg, MD', - 1301260 => 'Olney, MD', - 1301262 => 'Bowie, MD', - 1301263 => 'Bethesda, MD', - 1301270 => 'Takoma Park, MD', - 1301271 => 'Thurmont, MD', - 1301274 => 'Hughesville, MD', - 1301279 => 'Rockville, MD', - 1301283 => 'Accokeek, MD', - 1301292 => 'Fort Washington, MD', - 1301293 => 'Myersville, MD', - 1301294 => 'Rockville, MD', - 1301295 => 'Bethesda, MD', - 1301296 => 'Towson, MD', - 1301297 => 'Clinton, MD', - 1301299 => 'Potomac, MD', - 1301306 => 'Lanham, MD', - 1301309 => 'Rockville, MD', - 1301315 => 'Rockville, MD', - 1301316 => 'Temple Hills, MD', - 1301317 => 'Laurel, MD', - 1301319 => 'Bethesda, MD', - 1301320 => 'Bethesda, MD', - 1301330 => 'Gaithersburg, MD', - 1301334 => 'Oakland, MD', - 1301336 => 'Capitol Heights, MD', - 1301340 => 'Rockville, MD', - 1301349 => 'Poolesville, MD', - 1301352 => 'Bowie, MD', - 1301353 => 'Germantown, MD', - 1301355 => 'Gaithersburg, MD', - 1301359 => 'Westernport, MD', - 1301362 => 'Laurel, MD', - 1301365 => 'Bethesda, MD', - 1301371 => 'Middletown, MD', - 1301372 => 'Brandywine, MD', - 1301373 => 'Hollywood, MD', - 1301374 => 'Waldorf, MD', - 1301375 => 'Bryans Road, MD', - 1301384 => 'Silver Spring, MD', - 1301392 => 'La Plata, MD', - 1301393 => 'Hagerstown, MD', - 1301396 => 'Waldorf, MD', - 1301402 => 'Bethesda, MD', - 1301417 => 'Gaithersburg, MD', - 1301421 => 'Burtonsville, MD', - 1301422 => 'Hyattsville, MD', - 1301423 => 'Temple Hills, MD', - 1301424 => 'Rockville, MD', - 1301428 => 'Germantown, MD', - 1301429 => 'Lanham, MD', - 1301438 => 'Silver Spring, MD', - 1301447 => 'Emmitsburg, MD', - 1301449 => 'Temple Hills, MD', - 1301459 => 'Lanham, MD', - 1301463 => 'Lonaconing, MD', - 1301464 => 'Bowie, MD', - 1301468 => 'Rockville, MD', - 1301469 => 'Bethesda, MD', - 1301473 => 'Frederick, MD', - 1301475 => 'Leonardtown, MD', - 1301483 => 'Laurel, MD', - 1301490 => 'Laurel, MD', - 1301493 => 'Bethesda, MD', - 1301495 => 'Silver Spring, MD', - 1301496 => 'Bethesda, MD', - 1301497 => 'Laurel, MD', - 1301498 => 'Laurel, MD', - 1301515 => 'Germantown, MD', - 1301519 => 'Gaithersburg, MD', - 1301527 => 'Gaithersburg, MD', - 1301528 => 'Germantown, MD', - 1301530 => 'Bethesda, MD', - 1301533 => 'Oakland, MD', - 1301540 => 'Germantown, MD', - 1301545 => 'Rockville, MD', - 1301552 => 'Lanham, MD', - 1301559 => 'Hyattsville, MD', - 1301562 => 'Silver Spring, MD', - 1301564 => 'Bethesda, MD', - 1301565 => 'Silver Spring, MD', - 1301567 => 'Oxon Hill, MD', - 1301570 => 'Olney, MD', - 1301571 => 'Bethesda, MD', - 1301572 => 'Silver Spring, MD', - 1301574 => 'Upper Marlboro, MD', - 1301577 => 'Lanham, MD', - 1301582 => 'Hagerstown, MD', - 1301585 => 'Silver Spring, MD', - 1301587 => 'Silver Spring, MD', - 1301588 => 'Silver Spring, MD', - 1301589 => 'Silver Spring, MD', - 1301590 => 'Gaithersburg, MD', - 1301592 => 'Silver Spring, MD', - 1301593 => 'Silver Spring, MD', - 1301595 => 'Beltsville, MD', - 1301596 => 'Columbia, MD', - 1301598 => 'Silver Spring, MD', - 1301599 => 'Upper Marlboro, MD', - 1301600 => 'Frederick, MD', - 1301604 => 'Laurel, MD', - 1301608 => 'Silver Spring, MD', - 1301609 => 'La Plata, MD', - 1301610 => 'Rockville, MD', - 1301618 => 'Upper Marlboro, MD', - 1301620 => 'Frederick, MD', - 1301622 => 'Silver Spring, MD', - 1301624 => 'Frederick, MD', - 1301627 => 'Upper Marlboro, MD', - 1301630 => 'Temple Hills, MD', - 1301631 => 'Frederick, MD', - 1301632 => 'Waldorf, MD', - 1301638 => 'Waldorf, MD', - 1301645 => 'Waldorf, MD', - 1301649 => 'Silver Spring, MD', - 1301654 => 'Bethesda, MD', - 1301656 => 'Bethesda, MD', - 1301657 => 'Bethesda, MD', - 1301662 => 'Frederick, MD', - 1301663 => 'Frederick, MD', - 1301665 => 'Hagerstown, MD', - 1301668 => 'Frederick, MD', - 1301670 => 'Gaithersburg, MD', - 1301678 => 'Hancock, MD', - 1301680 => 'Silver Spring, MD', - 1301681 => 'Silver Spring, MD', - 1301682 => 'Frederick, MD', - 1301686 => 'Oxon Hill, MD', - 1301689 => 'Frostburg, MD', - 1301694 => 'Frederick, MD', - 1301695 => 'Frederick, MD', - 1301696 => 'Frederick, MD', - 1301698 => 'Frederick, MD', - 1301702 => 'Temple Hills, MD', - 1301705 => 'Waldorf, MD', - 1301714 => 'Hagerstown, MD', - 1301718 => 'Bethesda, MD', - 1301722 => 'Cumberland, MD', - 1301723 => 'Cumberland, MD', - 1301724 => 'Cumberland, MD', - 1301725 => 'Laurel, MD', - 1301729 => 'Cumberland, MD', - 1301733 => 'Hagerstown, MD', - 1301737 => 'California, MD', - 1301738 => 'Rockville, MD', - 1301739 => 'Hagerstown, MD', - 1301740 => 'Gaithersburg, MD', - 1301743 => 'Indian Head, MD', - 1301745 => 'Hagerstown, MD', - 1301749 => 'Oxon Hill, MD', - 1301754 => 'Silver Spring, MD', - 1301759 => 'Cumberland, MD', - 1301762 => 'Rockville, MD', - 1301765 => 'Potomac, MD', - 1301766 => 'Hagerstown, MD', - 1301767 => 'Bethesda, MD', - 1301770 => 'Rockville, MD', - 1301774 => 'Olney, MD', - 1301776 => 'Laurel, MD', - 1301777 => 'Cumberland, MD', - 1301780 => 'Upper Marlboro, MD', - 1301782 => 'Brandywine, MD', - 1301790 => 'Hagerstown, MD', - 1301791 => 'Hagerstown, MD', - 1301797 => 'Hagerstown, MD', - 1301805 => 'Bowie, MD', - 1301809 => 'Bowie, MD', - 1301816 => 'Rockville, MD', - 1301824 => 'Smithsburg, MD', - 1301829 => 'Mount Airy, MD', - 1301834 => 'Brunswick, MD', - 1301838 => 'Rockville, MD', - 1301839 => 'Oxon Hill, MD', - 1301840 => 'Gaithersburg, MD', - 1301842 => 'Clear Spring, MD', - 1301843 => 'Waldorf, MD', - 1301845 => 'Walkersville, MD', - 1301846 => 'Frederick, MD', - 1301853 => 'Hyattsville, MD', - 1301856 => 'Clinton, MD', - 1301860 => 'Bowie, MD', - 1301863 => 'Lexington Park, MD', - 1301868 => 'Clinton, MD', - 1301869 => 'Gaithersburg, MD', - 1301877 => 'Clinton, MD', - 1301879 => 'Silver Spring, MD', - 1301881 => 'Rockville, MD', - 1301884 => 'Mechanicsville, MD', - 1301885 => 'Waldorf, MD', - 1301890 => 'Silver Spring, MD', - 1301891 => 'Takoma Park, MD', - 1301894 => 'Temple Hills, MD', - 1301895 => 'Grantsville, MD', - 1301896 => 'Bethesda, MD', - 1301897 => 'Bethesda, MD', - 1301899 => 'Temple Hills, MD', - 1301907 => 'Bethesda, MD', - 1301913 => 'Bethesda, MD', - 1301916 => 'Germantown, MD', - 1301926 => 'Gaithersburg, MD', - 1301929 => 'Kensington, MD', - 1301931 => 'Beltsville, MD', - 1301932 => 'Waldorf, MD', - 1301934 => 'La Plata, MD', - 1301937 => 'Beltsville, MD', - 1301947 => 'Gaithersburg, MD', - 1301948 => 'Gaithersburg, MD', - 1301951 => 'Bethesda, MD', - 1301952 => 'Upper Marlboro, MD', - 1301953 => 'Laurel, MD', - 1301961 => 'Bethesda, MD', - 1301963 => 'Gaithersburg, MD', - 1301972 => 'Germantown, MD', - 1301977 => 'Gaithersburg, MD', - 1301982 => 'Greenbelt, MD', - 1301983 => 'Potomac, MD', - 1301984 => 'Rockville, MD', - 1301986 => 'Bethesda, MD', - 1301987 => 'Gaithersburg, MD', - 1301989 => 'Silver Spring, MD', - 1301990 => 'Gaithersburg, MD', - 1301997 => 'Leonardtown, MD', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1302.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1302.php deleted file mode 100644 index 94dda967c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1302.php +++ /dev/null @@ -1,125 +0,0 @@ - 'Delaware', - 1302224 => 'Newark, DE', - 1302225 => 'Wilmington, DE', - 1302226 => 'Rehoboth Beach, DE', - 1302227 => 'Rehoboth Beach, DE', - 1302234 => 'Hockessin, DE', - 1302235 => 'Hockessin, DE', - 1302239 => 'Hockessin, DE', - 1302255 => 'Wilmington, DE', - 1302266 => 'Newark, DE', - 1302284 => 'Felton, DE', - 1302292 => 'Newark, DE', - 1302322 => 'New Castle, DE', - 1302323 => 'New Castle, DE', - 1302324 => 'New Castle, DE', - 1302325 => 'New Castle, DE', - 1302326 => 'New Castle, DE', - 1302328 => 'New Castle, DE', - 1302337 => 'Bridgeville, DE', - 1302349 => 'Greenwood, DE', - 1302366 => 'Newark, DE', - 1302368 => 'Newark, DE', - 1302369 => 'Newark, DE', - 1302376 => 'Middletown, DE', - 1302378 => 'Middletown, DE', - 1302384 => 'Wilmington, DE', - 1302395 => 'New Castle, DE', - 1302398 => 'Harrington, DE', - 1302421 => 'Wilmington, DE', - 1302422 => 'Milford, DE', - 1302424 => 'Milford, DE', - 1302425 => 'Wilmington, DE', - 1302427 => 'Wilmington, DE', - 1302428 => 'Wilmington, DE', - 1302429 => 'Wilmington, DE', - 1302430 => 'Milford, DE', - 1302436 => 'Selbyville, DE', - 1302449 => 'Middletown, DE', - 1302453 => 'Newark, DE', - 1302454 => 'Newark, DE', - 1302455 => 'Newark, DE', - 1302456 => 'Newark, DE', - 1302472 => 'Wilmington, DE', - 1302475 => 'Wilmington, DE', - 1302477 => 'Wilmington, DE', - 1302478 => 'Wilmington, DE', - 1302479 => 'Wilmington, DE', - 1302482 => 'Wilmington, DE', - 1302492 => 'Hartly, DE', - 1302529 => 'Wilmington, DE', - 1302533 => 'Newark, DE', - 1302543 => 'Wilmington, DE', - 1302571 => 'Wilmington, DE', - 1302573 => 'Wilmington, DE', - 1302575 => 'Wilmington, DE', - 1302576 => 'Wilmington, DE', - 1302577 => 'Wilmington, DE', - 1302623 => 'Newark, DE', - 1302628 => 'Seaford, DE', - 1302629 => 'Seaford, DE', - 1302633 => 'Wilmington, DE', - 1302636 => 'Wilmington, DE', - 1302644 => 'Lewes, DE', - 1302645 => 'Lewes, DE', - 1302651 => 'Wilmington, DE', - 1302652 => 'Wilmington, DE', - 1302653 => 'Smyrna, DE', - 1302654 => 'Wilmington, DE', - 1302655 => 'Wilmington, DE', - 1302656 => 'Wilmington, DE', - 1302658 => 'Wilmington, DE', - 1302659 => 'Smyrna, DE', - 1302661 => 'Wilmington, DE', - 1302672 => 'Dover, DE', - 1302674 => 'Dover, DE', - 1302677 => 'Dover, DE', - 1302678 => 'Dover, DE', - 1302684 => 'Milton, DE', - 1302691 => 'Wilmington, DE', - 1302730 => 'Dover, DE', - 1302731 => 'Newark, DE', - 1302732 => 'Dagsboro, DE', - 1302733 => 'Newark, DE', - 1302734 => 'Dover, DE', - 1302735 => 'Dover, DE', - 1302736 => 'Dover, DE', - 1302737 => 'Newark, DE', - 1302738 => 'Newark, DE', - 1302739 => 'Dover, DE', - 1302744 => 'Dover, DE', - 1302761 => 'Wilmington, DE', - 1302762 => 'Wilmington, DE', - 1302764 => 'Wilmington, DE', - 1302777 => 'Wilmington, DE', - 1302778 => 'Wilmington, DE', - 1302792 => 'Claymont, DE', - 1302798 => 'Claymont, DE', - 1302832 => 'Bear, DE', - 1302838 => 'Bear, DE', - 1302846 => 'Delmar, DE', - 1302854 => 'Georgetown, DE', - 1302855 => 'Georgetown, DE', - 1302856 => 'Georgetown, DE', - 1302875 => 'Laurel, DE', - 1302888 => 'Wilmington, DE', - 1302892 => 'Wilmington, DE', - 1302894 => 'Newark, DE', - 1302934 => 'Millsboro, DE', - 1302945 => 'Millsboro, DE', - 1302947 => 'Millsboro, DE', - 1302984 => 'Wilmington, DE', - 1302992 => 'Wilmington, DE', - 1302993 => 'Wilmington, DE', - 1302994 => 'Wilmington, DE', - 1302995 => 'Wilmington, DE', - 1302998 => 'Wilmington, DE', - 1302999 => 'Wilmington, DE', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1303.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1303.php deleted file mode 100644 index 02bb2eeb0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1303.php +++ /dev/null @@ -1,271 +0,0 @@ - 'Colorado', - 1303205 => 'Lakewood, CO', - 1303215 => 'Golden, CO', - 1303216 => 'Golden, CO', - 1303231 => 'Lakewood, CO', - 1303232 => 'Lakewood, CO', - 1303233 => 'Lakewood, CO', - 1303237 => 'Lakewood, CO', - 1303238 => 'Lakewood, CO', - 1303239 => 'Lakewood, CO', - 1303245 => 'Boulder, CO', - 1303256 => 'Denver, CO', - 1303258 => 'Nederland, CO', - 1303271 => 'Golden, CO', - 1303273 => 'Golden, CO', - 1303277 => 'Golden, CO', - 1303278 => 'Golden, CO', - 1303279 => 'Golden, CO', - 1303282 => 'Denver, CO', - 1303291 => 'Denver, CO', - 1303292 => 'Denver, CO', - 1303293 => 'Denver, CO', - 1303294 => 'Denver, CO', - 1303295 => 'Denver, CO', - 1303296 => 'Denver, CO', - 1303297 => 'Denver, CO', - 1303298 => 'Denver, CO', - 1303300 => 'Denver, CO', - 1303306 => 'Aurora, CO', - 1303307 => 'Denver, CO', - 1303308 => 'Denver, CO', - 1303315 => 'Denver, CO', - 1303316 => 'Denver, CO', - 1303318 => 'Denver, CO', - 1303320 => 'Denver, CO', - 1303321 => 'Denver, CO', - 1303322 => 'Denver, CO', - 1303329 => 'Denver, CO', - 1303331 => 'Denver, CO', - 1303333 => 'Denver, CO', - 1303337 => 'Aurora, CO', - 1303340 => 'Aurora, CO', - 1303341 => 'Aurora, CO', - 1303342 => 'Denver, CO', - 1303343 => 'Aurora, CO', - 1303344 => 'Aurora, CO', - 1303346 => 'Highlands Ranch, CO', - 1303347 => 'Littleton, CO', - 1303355 => 'Denver, CO', - 1303360 => 'Aurora, CO', - 1303363 => 'Aurora, CO', - 1303364 => 'Aurora, CO', - 1303365 => 'Aurora, CO', - 1303366 => 'Aurora, CO', - 1303367 => 'Aurora, CO', - 1303368 => 'Aurora, CO', - 1303371 => 'Denver, CO', - 1303372 => 'Denver, CO', - 1303373 => 'Denver, CO', - 1303375 => 'Denver, CO', - 1303376 => 'Denver, CO', - 1303377 => 'Denver, CO', - 1303384 => 'Golden, CO', - 1303388 => 'Denver, CO', - 1303393 => 'Denver, CO', - 1303394 => 'Denver, CO', - 1303398 => 'Denver, CO', - 1303399 => 'Denver, CO', - 1303400 => 'Aurora, CO', - 1303402 => 'Boulder, CO', - 1303410 => 'Broomfield, CO', - 1303413 => 'Boulder, CO', - 1303415 => 'Boulder, CO', - 1303423 => 'Arvada, CO', - 1303433 => 'Denver, CO', - 1303436 => 'Denver, CO', - 1303438 => 'Broomfield, CO', - 1303439 => 'Broomfield, CO', - 1303440 => 'Boulder, CO', - 1303441 => 'Boulder, CO', - 1303442 => 'Boulder, CO', - 1303443 => 'Boulder, CO', - 1303444 => 'Boulder, CO', - 1303446 => 'Denver, CO', - 1303447 => 'Boulder, CO', - 1303448 => 'Boulder, CO', - 1303449 => 'Boulder, CO', - 1303455 => 'Denver, CO', - 1303458 => 'Denver, CO', - 1303460 => 'Broomfield, CO', - 1303464 => 'Broomfield, CO', - 1303465 => 'Broomfield, CO', - 1303466 => 'Broomfield, CO', - 1303469 => 'Broomfield, CO', - 1303470 => 'Highlands Ranch, CO', - 1303471 => 'Highlands Ranch, CO', - 1303477 => 'Denver, CO', - 1303480 => 'Denver, CO', - 1303481 => 'Aurora, CO', - 1303485 => 'Longmont, CO', - 1303492 => 'Boulder, CO', - 1303493 => 'Denver, CO', - 1303494 => 'Boulder, CO', - 1303498 => 'Brighton, CO', - 1303499 => 'Boulder, CO', - 1303504 => 'Denver, CO', - 1303526 => 'Golden, CO', - 1303530 => 'Boulder, CO', - 1303534 => 'Denver, CO', - 1303536 => 'Hudson, CO', - 1303541 => 'Boulder, CO', - 1303543 => 'Boulder, CO', - 1303544 => 'Boulder, CO', - 1303545 => 'Boulder, CO', - 1303546 => 'Boulder, CO', - 1303554 => 'Boulder, CO', - 1303567 => 'Idaho Springs, CO', - 1303569 => 'Georgetown, CO', - 1303571 => 'Denver, CO', - 1303572 => 'Denver, CO', - 1303573 => 'Denver, CO', - 1303574 => 'Denver, CO', - 1303576 => 'Denver, CO', - 1303582 => 'Black Hawk, CO', - 1303584 => 'Denver, CO', - 1303590 => 'Lakewood, CO', - 1303592 => 'Denver, CO', - 1303595 => 'Denver, CO', - 1303607 => 'Denver, CO', - 1303617 => 'Aurora, CO', - 1303621 => 'Kiowa, CO', - 1303622 => 'Strasburg, CO', - 1303623 => 'Denver, CO', - 1303626 => 'Denver, CO', - 1303627 => 'Aurora, CO', - 1303628 => 'Denver, CO', - 1303629 => 'Denver, CO', - 1303637 => 'Brighton, CO', - 1303639 => 'Denver, CO', - 1303642 => 'Golden, CO', - 1303644 => 'Bennett, CO', - 1303646 => 'Elizabeth, CO', - 1303648 => 'Elbert, CO', - 1303651 => 'Longmont, CO', - 1303652 => 'Niwot, CO', - 1303654 => 'Brighton, CO', - 1303655 => 'Brighton, CO', - 1303659 => 'Brighton, CO', - 1303660 => 'Castle Rock, CO', - 1303663 => 'Castle Rock, CO', - 1303670 => 'Evergreen, CO', - 1303673 => 'Louisville, CO', - 1303674 => 'Evergreen, CO', - 1303678 => 'Longmont, CO', - 1303679 => 'Evergreen, CO', - 1303680 => 'Aurora, CO', - 1303681 => 'Larkspur, CO', - 1303682 => 'Longmont, CO', - 1303683 => 'Highlands Ranch, CO', - 1303684 => 'Longmont, CO', - 1303688 => 'Castle Rock, CO', - 1303690 => 'Aurora, CO', - 1303691 => 'Denver, CO', - 1303692 => 'Denver, CO', - 1303693 => 'Aurora, CO', - 1303695 => 'Aurora, CO', - 1303696 => 'Aurora, CO', - 1303697 => 'Morrison, CO', - 1303698 => 'Denver, CO', - 1303702 => 'Longmont, CO', - 1303703 => 'Littleton, CO', - 1303715 => 'Denver, CO', - 1303716 => 'Lakewood, CO', - 1303722 => 'Denver, CO', - 1303724 => 'Aurora, CO', - 1303730 => 'Littleton, CO', - 1303732 => 'Keenesburg, CO', - 1303733 => 'Denver, CO', - 1303734 => 'Littleton, CO', - 1303738 => 'Littleton, CO', - 1303739 => 'Aurora, CO', - 1303744 => 'Denver, CO', - 1303745 => 'Aurora, CO', - 1303750 => 'Aurora, CO', - 1303751 => 'Aurora, CO', - 1303752 => 'Aurora, CO', - 1303753 => 'Denver, CO', - 1303755 => 'Aurora, CO', - 1303756 => 'Denver, CO', - 1303757 => 'Denver, CO', - 1303758 => 'Denver, CO', - 1303759 => 'Denver, CO', - 1303762 => 'Englewood, CO', - 1303763 => 'Lakewood, CO', - 1303764 => 'Denver, CO', - 1303765 => 'Denver, CO', - 1303772 => 'Longmont, CO', - 1303774 => 'Longmont, CO', - 1303776 => 'Longmont, CO', - 1303777 => 'Denver, CO', - 1303778 => 'Denver, CO', - 1303780 => 'Denver, CO', - 1303781 => 'Englewood, CO', - 1303782 => 'Denver, CO', - 1303783 => 'Englewood, CO', - 1303786 => 'Boulder, CO', - 1303788 => 'Englewood, CO', - 1303789 => 'Englewood, CO', - 1303791 => 'Highlands Ranch, CO', - 1303794 => 'Littleton, CO', - 1303795 => 'Littleton, CO', - 1303797 => 'Littleton, CO', - 1303798 => 'Littleton, CO', - 1303805 => 'Parker, CO', - 1303806 => 'Englewood, CO', - 1303814 => 'Castle Rock, CO', - 1303822 => 'Byers, CO', - 1303823 => 'Lyons, CO', - 1303825 => 'Denver, CO', - 1303828 => 'Erie, CO', - 1303830 => 'Denver, CO', - 1303831 => 'Denver, CO', - 1303832 => 'Denver, CO', - 1303834 => 'Longmont, CO', - 1303837 => 'Denver, CO', - 1303839 => 'Denver, CO', - 1303840 => 'Parker, CO', - 1303841 => 'Parker, CO', - 1303856 => 'Aurora, CO', - 1303857 => 'Fort Lupton, CO', - 1303860 => 'Denver, CO', - 1303861 => 'Denver, CO', - 1303863 => 'Denver, CO', - 1303866 => 'Denver, CO', - 1303869 => 'Denver, CO', - 1303871 => 'Denver, CO', - 1303892 => 'Denver, CO', - 1303893 => 'Denver, CO', - 1303894 => 'Denver, CO', - 1303904 => 'Littleton, CO', - 1303914 => 'Lakewood, CO', - 1303922 => 'Denver, CO', - 1303932 => 'Littleton, CO', - 1303933 => 'Littleton, CO', - 1303934 => 'Denver, CO', - 1303935 => 'Denver, CO', - 1303936 => 'Denver, CO', - 1303937 => 'Denver, CO', - 1303938 => 'Boulder, CO', - 1303948 => 'Littleton, CO', - 1303969 => 'Lakewood, CO', - 1303972 => 'Littleton, CO', - 1303973 => 'Littleton, CO', - 1303975 => 'Denver, CO', - 1303978 => 'Littleton, CO', - 1303979 => 'Littleton, CO', - 1303980 => 'Lakewood, CO', - 1303984 => 'Lakewood, CO', - 1303985 => 'Lakewood, CO', - 1303986 => 'Lakewood, CO', - 1303987 => 'Lakewood, CO', - 1303988 => 'Lakewood, CO', - 1303989 => 'Lakewood, CO', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1304.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1304.php deleted file mode 100644 index a440f397d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1304.php +++ /dev/null @@ -1,209 +0,0 @@ - 'West Virginia', - 1304205 => 'Charleston, WV', - 1304225 => 'Morgantown, WV', - 1304226 => 'Cowen, WV', - 1304229 => 'Inwood, WV', - 1304232 => 'Wheeling, WV', - 1304233 => 'Wheeling, WV', - 1304234 => 'Wheeling, WV', - 1304235 => 'Williamson, WV', - 1304239 => 'Holden, WV', - 1304241 => 'Morgantown, WV', - 1304242 => 'Wheeling, WV', - 1304243 => 'Wheeling, WV', - 1304250 => 'Beckley, WV', - 1304252 => 'Beckley, WV', - 1304253 => 'Beckley, WV', - 1304254 => 'Beckley, WV', - 1304255 => 'Beckley, WV', - 1304256 => 'Beckley, WV', - 1304257 => 'Petersburg, WV', - 1304258 => 'Berkeley Springs, WV', - 1304260 => 'Martinsburg, WV', - 1304262 => 'Martinsburg, WV', - 1304263 => 'Martinsburg, WV', - 1304264 => 'Martinsburg, WV', - 1304265 => 'Grafton, WV', - 1304267 => 'Martinsburg, WV', - 1304269 => 'Weston, WV', - 1304272 => 'Wayne, WV', - 1304273 => 'Ravenswood, WV', - 1304274 => 'Falling Waters, WV', - 1304275 => 'Elizabeth, WV', - 1304277 => 'Wheeling, WV', - 1304284 => 'Morgantown, WV', - 1304285 => 'Morgantown, WV', - 1304291 => 'Morgantown, WV', - 1304292 => 'Morgantown, WV', - 1304293 => 'Morgantown, WV', - 1304294 => 'Mullens, WV', - 1304295 => 'Vienna, WV', - 1304296 => 'Morgantown, WV', - 1304324 => 'Bluefield, WV', - 1304325 => 'Bluefield, WV', - 1304326 => 'Clarksburg, WV', - 1304327 => 'Bluefield, WV', - 1304329 => 'Kingwood, WV', - 1304340 => 'Charleston, WV', - 1304342 => 'Charleston, WV', - 1304343 => 'Charleston, WV', - 1304344 => 'Charleston, WV', - 1304345 => 'Charleston, WV', - 1304346 => 'Charleston, WV', - 1304347 => 'Charleston, WV', - 1304348 => 'Charleston, WV', - 1304354 => 'Grantsville, WV', - 1304358 => 'Franklin, WV', - 1304363 => 'Fairmont, WV', - 1304364 => 'Gassaway, WV', - 1304366 => 'Fairmont, WV', - 1304367 => 'Fairmont, WV', - 1304368 => 'Fairmont, WV', - 1304372 => 'Ripley, WV', - 1304375 => 'Williamstown, WV', - 1304379 => 'Bruceton Mills, WV', - 1304387 => 'Chester, WV', - 1304388 => 'Charleston, WV', - 1304392 => 'Rupert, WV', - 1304399 => 'Huntington, WV', - 1304414 => 'Charleston, WV', - 1304420 => 'Parkersburg, WV', - 1304422 => 'Parkersburg, WV', - 1304424 => 'Parkersburg, WV', - 1304425 => 'Princeton, WV', - 1304426 => 'Matewan, WV', - 1304428 => 'Parkersburg, WV', - 1304429 => 'Huntington, WV', - 1304431 => 'Princeton, WV', - 1304436 => 'Welch, WV', - 1304438 => 'Rainelle, WV', - 1304442 => 'Montgomery, WV', - 1304453 => 'Kenova, WV', - 1304455 => 'New Martinsville, WV', - 1304457 => 'Philippi, WV', - 1304462 => 'Glenville, WV', - 1304465 => 'Oak Hill, WV', - 1304466 => 'Hinton, WV', - 1304469 => 'Oak Hill, WV', - 1304472 => 'Buckhannon, WV', - 1304473 => 'Buckhannon, WV', - 1304475 => 'Delbarton, WV', - 1304478 => 'Parsons, WV', - 1304485 => 'Parkersburg, WV', - 1304487 => 'Princeton, WV', - 1304489 => 'Mineral Wells, WV', - 1304496 => 'Augusta, WV', - 1304522 => 'Huntington, WV', - 1304523 => 'Huntington, WV', - 1304525 => 'Huntington, WV', - 1304526 => 'Huntington, WV', - 1304527 => 'Follansbee, WV', - 1304528 => 'Huntington, WV', - 1304529 => 'Huntington, WV', - 1304530 => 'Moorefield, WV', - 1304534 => 'Fairmont, WV', - 1304535 => 'Harpers Ferry, WV', - 1304536 => 'White Slphr Spgs, WV', - 1304538 => 'Moorefield, WV', - 1304547 => 'Triadelphia, WV', - 1304548 => 'Clendenin, WV', - 1304558 => 'Charleston, WV', - 1304562 => 'Hurricane, WV', - 1304564 => 'New Cumberland, WV', - 1304574 => 'Fayetteville, WV', - 1304583 => 'Man, WV', - 1304586 => 'Winfield, WV', - 1304587 => 'Clay, WV', - 1304592 => 'Shinnston, WV', - 1304594 => 'Morgantown, WV', - 1304596 => 'Martinsburg, WV', - 1304598 => 'Morgantown, WV', - 1304599 => 'Morgantown, WV', - 1304622 => 'Clarksburg, WV', - 1304623 => 'Clarksburg, WV', - 1304624 => 'Clarksburg, WV', - 1304636 => 'Elkins, WV', - 1304637 => 'Elkins, WV', - 1304643 => 'Harrisville, WV', - 1304645 => 'Lewisburg, WV', - 1304647 => 'Lewisburg, WV', - 1304652 => 'Sistersville, WV', - 1304658 => 'Ansted, WV', - 1304664 => 'Gilbert, WV', - 1304675 => 'Point Pleasant, WV', - 1304682 => 'Oceana, WV', - 1304683 => 'Sophia, WV', - 1304684 => 'St. Marys, WV', - 1304691 => 'Huntington, WV', - 1304696 => 'Huntington, WV', - 1304697 => 'Huntington, WV', - 1304720 => 'Charleston, WV', - 1304722 => 'St. Albans, WV', - 1304723 => 'Weirton, WV', - 1304725 => 'Charles Town, WV', - 1304727 => 'St. Albans, WV', - 1304728 => 'Charles Town, WV', - 1304732 => 'Pineville, WV', - 1304733 => 'Barboursville, WV', - 1304736 => 'Barboursville, WV', - 1304737 => 'Wellsburg, WV', - 1304738 => 'Ridgeley, WV', - 1304742 => 'Craigsville, WV', - 1304743 => 'Milton, WV', - 1304745 => 'Lost Creek, WV', - 1304746 => 'South Charleston, WV', - 1304748 => 'Weirton, WV', - 1304752 => 'Logan, WV', - 1304753 => 'Peterstown, WV', - 1304754 => 'Hedgesville, WV', - 1304755 => 'Nitro, WV', - 1304756 => 'Alum Creek, WV', - 1304757 => 'Hurricane, WV', - 1304758 => 'Middlebourne, WV', - 1304760 => 'Hurricane, WV', - 1304765 => 'Sutton, WV', - 1304772 => 'Union, WV', - 1304776 => 'Cross Lanes, WV', - 1304781 => 'Huntington, WV', - 1304782 => 'Salem, WV', - 1304788 => 'Keyser, WV', - 1304789 => 'Terra Alta, WV', - 1304797 => 'Weirton, WV', - 1304799 => 'Marlinton, WV', - 1304822 => 'Romney, WV', - 1304823 => 'Belington, WV', - 1304824 => 'Hamlin, WV', - 1304831 => 'Logan, WV', - 1304842 => 'Bridgeport, WV', - 1304843 => 'Moundsville, WV', - 1304845 => 'Moundsville, WV', - 1304846 => 'Richwood, WV', - 1304847 => 'Webster Springs, WV', - 1304848 => 'Bridgeport, WV', - 1304854 => 'Whitesville, WV', - 1304855 => 'Chapmanville, WV', - 1304856 => 'Capon Bridge, WV', - 1304865 => 'Parkersburg, WV', - 1304872 => 'Summersville, WV', - 1304873 => 'West Union, WV', - 1304876 => 'Shepherdstown, WV', - 1304877 => 'Mount Hope, WV', - 1304884 => 'Jane Lew, WV', - 1304905 => 'Wheeling, WV', - 1304925 => 'Charleston, WV', - 1304926 => 'Charleston, WV', - 1304927 => 'Spencer, WV', - 1304929 => 'Beckley, WV', - 1304933 => 'Bridgeport, WV', - 1304965 => 'Elkview, WV', - 1304983 => 'Morgantown, WV', - 1304984 => 'Charleston, WV', - 1304986 => 'Mannington, WV', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1305.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1305.php deleted file mode 100644 index 2da4af416..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1305.php +++ /dev/null @@ -1,224 +0,0 @@ - 'Florida', - 1305207 => 'Miami, FL', - 1305220 => 'Miami, FL', - 1305221 => 'Miami, FL', - 1305222 => 'Miami, FL', - 1305223 => 'Miami, FL', - 1305225 => 'Miami, FL', - 1305226 => 'Miami, FL', - 1305227 => 'Miami, FL', - 1305228 => 'Miami, FL', - 1305229 => 'Miami, FL', - 1305231 => 'Hialeah, FL', - 1305232 => 'Miami, FL', - 1305233 => 'Miami, FL', - 1305234 => 'Miami, FL', - 1305235 => 'Miami, FL', - 1305238 => 'Miami, FL', - 1305242 => 'Homestead, FL', - 1305243 => 'Miami, FL', - 1305245 => 'Homestead, FL', - 1305246 => 'Homestead, FL', - 1305247 => 'Homestead, FL', - 1305248 => 'Homestead, FL', - 1305249 => 'Miami, FL', - 1305251 => 'Miami, FL', - 1305252 => 'Miami, FL', - 1305253 => 'Miami, FL', - 1305254 => 'Miami, FL', - 1305255 => 'Miami, FL', - 1305256 => 'Miami, FL', - 1305257 => 'Homestead, FL', - 1305258 => 'Homestead, FL', - 1305259 => 'Miami, FL', - 1305260 => 'Miami, FL', - 1305261 => 'Miami, FL', - 1305262 => 'Miami, FL', - 1305263 => 'Miami, FL', - 1305264 => 'Miami, FL', - 1305265 => 'Miami, FL', - 1305266 => 'Miami, FL', - 1305267 => 'Miami, FL', - 1305269 => 'Miami, FL', - 1305270 => 'Miami, FL', - 1305271 => 'Miami, FL', - 1305273 => 'Miami, FL', - 1305274 => 'Miami, FL', - 1305275 => 'Miami, FL', - 1305278 => 'Miami, FL', - 1305279 => 'Miami, FL', - 1305285 => 'Miami, FL', - 1305289 => 'Marathon, FL', - 1305292 => 'Key West, FL', - 1305293 => 'Key West, FL', - 1305294 => 'Key West, FL', - 1305295 => 'Key West, FL', - 1305296 => 'Key West, FL', - 1305324 => 'Miami, FL', - 1305325 => 'Miami, FL', - 1305326 => 'Miami, FL', - 1305347 => 'Miami, FL', - 1305349 => 'Miami, FL', - 1305350 => 'Miami, FL', - 1305355 => 'Miami, FL', - 1305358 => 'Miami, FL', - 1305361 => 'Key Biscayne, FL', - 1305362 => 'Hialeah, FL', - 1305364 => 'Hialeah, FL', - 1305365 => 'Key Biscayne, FL', - 1305367 => 'Key Largo, FL', - 1305371 => 'Miami, FL', - 1305372 => 'Miami, FL', - 1305373 => 'Miami, FL', - 1305374 => 'Miami, FL', - 1305375 => 'Miami, FL', - 1305377 => 'Miami, FL', - 1305378 => 'Miami, FL', - 1305379 => 'Miami, FL', - 1305380 => 'Miami, FL', - 1305381 => 'Miami, FL', - 1305382 => 'Miami, FL', - 1305383 => 'Miami, FL', - 1305385 => 'Miami, FL', - 1305386 => 'Miami, FL', - 1305387 => 'Miami, FL', - 1305388 => 'Miami, FL', - 1305392 => 'Miami, FL', - 1305397 => 'Miami Beach, FL', - 1305400 => 'Miami, FL', - 1305406 => 'Doral, FL', - 1305408 => 'Miami, FL', - 1305412 => 'Miami, FL', - 1305416 => 'Miami, FL', - 1305436 => 'Doral, FL', - 1305438 => 'Miami, FL', - 1305445 => 'Coral Gables, FL', - 1305451 => 'Key Largo, FL', - 1305453 => 'Key Largo, FL', - 1305456 => 'Miami, FL', - 1305460 => 'Coral Gables, FL', - 1305480 => 'Miami, FL', - 1305485 => 'Miami, FL', - 1305512 => 'Hialeah, FL', - 1305513 => 'Doral, FL', - 1305525 => 'Miami, FL', - 1305530 => 'Miami, FL', - 1305531 => 'Miami Beach, FL', - 1305532 => 'Miami Beach, FL', - 1305534 => 'Miami Beach, FL', - 1305535 => 'Miami Beach, FL', - 1305538 => 'Miami Beach, FL', - 1305541 => 'Miami, FL', - 1305545 => 'Miami, FL', - 1305547 => 'Miami, FL', - 1305548 => 'Miami, FL', - 1305551 => 'Miami, FL', - 1305552 => 'Miami, FL', - 1305553 => 'Miami, FL', - 1305554 => 'Miami, FL', - 1305556 => 'Hialeah, FL', - 1305557 => 'Hialeah, FL', - 1305558 => 'Hialeah, FL', - 1305559 => 'Miami, FL', - 1305571 => 'Miami, FL', - 1305572 => 'Miami, FL', - 1305573 => 'Miami, FL', - 1305575 => 'Miami, FL', - 1305576 => 'Miami, FL', - 1305577 => 'Miami, FL', - 1305579 => 'Miami, FL', - 1305585 => 'Miami, FL', - 1305595 => 'Miami, FL', - 1305596 => 'Miami, FL', - 1305598 => 'Miami, FL', - 1305603 => 'Miami, FL', - 1305604 => 'Miami Beach, FL', - 1305631 => 'Miami, FL', - 1305633 => 'Miami, FL', - 1305634 => 'Miami, FL', - 1305635 => 'Miami, FL', - 1305636 => 'Miami, FL', - 1305637 => 'Miami, FL', - 1305638 => 'Miami, FL', - 1305642 => 'Miami, FL', - 1305643 => 'Miami, FL', - 1305644 => 'Miami, FL', - 1305646 => 'Miami, FL', - 1305649 => 'Miami, FL', - 1305651 => 'Miami, FL', - 1305652 => 'Miami, FL', - 1305653 => 'Miami, FL', - 1305654 => 'Miami, FL', - 1305655 => 'Miami, FL', - 1305664 => 'Islamorada, FL', - 1305666 => 'Miami, FL', - 1305668 => 'Miami, FL', - 1305670 => 'Miami, FL', - 1305672 => 'Miami Beach, FL', - 1305673 => 'Miami Beach, FL', - 1305682 => 'Miami, FL', - 1305691 => 'Miami, FL', - 1305693 => 'Miami, FL', - 1305694 => 'Miami, FL', - 1305695 => 'Miami Beach, FL', - 1305696 => 'Miami, FL', - 1305698 => 'Hialeah, FL', - 1305718 => 'Doral, FL', - 1305743 => 'Marathon, FL', - 1305745 => 'Summerland Key, FL', - 1305751 => 'Miami, FL', - 1305752 => 'Miami, FL', - 1305754 => 'Miami, FL', - 1305756 => 'Miami, FL', - 1305757 => 'Miami, FL', - 1305758 => 'Miami, FL', - 1305759 => 'Miami, FL', - 1305770 => 'Miami, FL', - 1305789 => 'Miami, FL', - 1305809 => 'Key West, FL', - 1305817 => 'Hialeah, FL', - 1305818 => 'Hialeah, FL', - 1305819 => 'Hialeah, FL', - 1305820 => 'Hialeah, FL', - 1305821 => 'Hialeah, FL', - 1305822 => 'Hialeah, FL', - 1305823 => 'Hialeah, FL', - 1305824 => 'Hialeah, FL', - 1305825 => 'Hialeah, FL', - 1305826 => 'Hialeah, FL', - 1305827 => 'Hialeah, FL', - 1305828 => 'Hialeah, FL', - 1305829 => 'Hialeah, FL', - 1305835 => 'Miami, FL', - 1305836 => 'Miami, FL', - 1305852 => 'Tavernier, FL', - 1305853 => 'Tavernier, FL', - 1305854 => 'Miami, FL', - 1305856 => 'Miami, FL', - 1305857 => 'Miami, FL', - 1305858 => 'Miami, FL', - 1305859 => 'Miami, FL', - 1305860 => 'Miami, FL', - 1305871 => 'Miami, FL', - 1305872 => 'Big Pine Key, FL', - 1305876 => 'Miami, FL', - 1305891 => 'North Miami, FL', - 1305892 => 'North Miami, FL', - 1305893 => 'North Miami, FL', - 1305895 => 'North Miami, FL', - 1305899 => 'North Miami, FL', - 1305913 => 'Miami, FL', - 1305953 => 'Opa-locka, FL', - 1305960 => 'Miami, FL', - 1305961 => 'Miami, FL', - 1305969 => 'Miami, FL', - 1305971 => 'Miami, FL', - 1305999 => 'Miami, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1306.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1306.php deleted file mode 100644 index 9bca6abf9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1306.php +++ /dev/null @@ -1,119 +0,0 @@ - 'Saskatchewan', - 1306205 => 'Regina, SK', - 1306228 => 'Unity, SK', - 1306236 => 'Meadow Lake, SK', - 1306242 => 'Saskatoon, SK', - 1306244 => 'Saskatoon, SK', - 1306249 => 'Saskatoon, SK', - 1306272 => 'Foam Lake, SK', - 1306297 => 'Shaunavon, SK', - 1306327 => 'Kelvington, SK', - 1306332 => 'Fort Qu\'Appelle, SK', - 1306338 => 'Wadena, SK', - 1306343 => 'Saskatoon, SK', - 1306347 => 'Regina, SK', - 1306352 => 'Regina, SK', - 1306359 => 'Regina, SK', - 1306373 => 'Saskatoon, SK', - 1306374 => 'Saskatoon, SK', - 1306382 => 'Saskatoon, SK', - 1306384 => 'Saskatoon, SK', - 1306425 => 'La Ronge, SK', - 1306435 => 'Moosomin, SK', - 1306445 => 'North Battleford, SK', - 1306446 => 'North Battleford, SK', - 1306452 => 'Redvers, SK', - 1306453 => 'Carlyle, SK', - 1306463 => 'Kindersley, SK', - 1306477 => 'Saskatoon, SK', - 1306482 => 'Carnduff, SK', - 1306483 => 'Oxbow, SK', - 1306522 => 'Regina, SK', - 1306525 => 'Regina, SK', - 1306542 => 'Kamsack, SK', - 1306543 => 'Regina, SK', - 1306545 => 'Regina, SK', - 1306546 => 'Regina, SK', - 1306547 => 'Preeceville, SK', - 1306554 => 'Wynyard, SK', - 1306563 => 'Canora, SK', - 1306565 => 'Regina, SK', - 1306567 => 'Davidson, SK', - 1306569 => 'Regina, SK', - 1306584 => 'Regina, SK', - 1306585 => 'Regina, SK', - 1306586 => 'Regina, SK', - 1306634 => 'Estevan, SK', - 1306642 => 'Assiniboia, SK', - 1306648 => 'Gravelbourg, SK', - 1306651 => 'Saskatoon, SK', - 1306652 => 'Saskatoon, SK', - 1306653 => 'Saskatoon, SK', - 1306662 => 'Maple Creek, SK', - 1306664 => 'Saskatoon, SK', - 1306665 => 'Saskatoon, SK', - 1306668 => 'Saskatoon, SK', - 1306682 => 'Humboldt, SK', - 1306683 => 'Saskatoon, SK', - 1306691 => 'Moose Jaw, SK', - 1306692 => 'Moose Jaw, SK', - 1306693 => 'Moose Jaw, SK', - 1306694 => 'Moose Jaw, SK', - 1306695 => 'Indian Head, SK', - 1306721 => 'Regina, SK', - 1306728 => 'Melville, SK', - 1306731 => 'Lumsden, SK', - 1306745 => 'Esterhazy, SK', - 1306747 => 'Shellbrook, SK', - 1306752 => 'Melfort, SK', - 1306753 => 'Macklin, SK', - 1306757 => 'Regina, SK', - 1306763 => 'Prince Albert, SK', - 1306764 => 'Prince Albert, SK', - 1306768 => 'Carrot River, SK', - 1306773 => 'Swift Current, SK', - 1306775 => 'Regina, SK', - 1306778 => 'Swift Current, SK', - 1306780 => 'Regina, SK', - 1306781 => 'Regina, SK', - 1306782 => 'Yorkton, SK', - 1306783 => 'Yorkton, SK', - 1306786 => 'Yorkton, SK', - 1306789 => 'Regina, SK', - 1306790 => 'Regina, SK', - 1306791 => 'Regina, SK', - 1306825 => 'Lloydminster, SK', - 1306834 => 'Kerrobert, SK', - 1306842 => 'Weyburn, SK', - 1306845 => 'Turtleford, SK', - 1306862 => 'Nipawin, SK', - 1306865 => 'Hudson Bay, SK', - 1306867 => 'Outlook, SK', - 1306873 => 'Tisdale, SK', - 1306882 => 'Rosetown, SK', - 1306883 => 'Spiritwood, SK', - 1306893 => 'Maidstone, SK', - 1306922 => 'Prince Albert, SK', - 1306924 => 'Regina, SK', - 1306931 => 'Saskatoon, SK', - 1306933 => 'Saskatoon, SK', - 1306934 => 'Saskatoon, SK', - 1306937 => 'Battleford, SK', - 1306946 => 'Watrous, SK', - 1306948 => 'Biggar, SK', - 1306949 => 'Regina, SK', - 1306953 => 'Prince Albert, SK', - 1306955 => 'Saskatoon, SK', - 1306956 => 'Saskatoon, SK', - 1306966 => 'Saskatoon, SK', - 1306975 => 'Saskatoon, SK', - 1306978 => 'Saskatoon, SK', - 1306979 => 'Saskatoon, SK', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1307.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1307.php deleted file mode 100644 index 9b5b23d42..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1307.php +++ /dev/null @@ -1,89 +0,0 @@ - 'Wyoming', - 1307232 => 'Casper, WY', - 1307233 => 'Casper, WY', - 1307234 => 'Casper, WY', - 1307235 => 'Casper, WY', - 1307237 => 'Casper, WY', - 1307245 => 'Pine Bluffs, WY', - 1307265 => 'Casper, WY', - 1307266 => 'Casper, WY', - 1307276 => 'Big Piney, WY', - 1307283 => 'Sundance, WY', - 1307315 => 'Casper, WY', - 1307322 => 'Wheatland, WY', - 1307324 => 'Rawlins, WY', - 1307326 => 'Saratoga, WY', - 1307328 => 'Rawlins, WY', - 1307332 => 'Lander, WY', - 1307334 => 'Lusk, WY', - 1307335 => 'Lander, WY', - 1307347 => 'Worland, WY', - 1307352 => 'Rock Springs, WY', - 1307358 => 'Douglas, WY', - 1307362 => 'Rock Springs, WY', - 1307367 => 'Pinedale, WY', - 1307382 => 'Rock Springs, WY', - 1307383 => 'Baggs, WY', - 1307426 => 'Cheyenne, WY', - 1307432 => 'Cheyenne, WY', - 1307433 => 'Cheyenne, WY', - 1307436 => 'Glenrock, WY', - 1307455 => 'Dubois, WY', - 1307472 => 'Casper, WY', - 1307473 => 'Casper, WY', - 1307527 => 'Cody, WY', - 1307532 => 'Torrington, WY', - 1307548 => 'Lovell, WY', - 1307568 => 'Basin, WY', - 1307577 => 'Casper, WY', - 1307578 => 'Cody, WY', - 1307587 => 'Cody, WY', - 1307632 => 'Cheyenne, WY', - 1307633 => 'Cheyenne, WY', - 1307634 => 'Cheyenne, WY', - 1307635 => 'Cheyenne, WY', - 1307637 => 'Cheyenne, WY', - 1307638 => 'Cheyenne, WY', - 1307654 => 'Alpine, WY', - 1307672 => 'Sheridan, WY', - 1307673 => 'Sheridan, WY', - 1307674 => 'Sheridan, WY', - 1307675 => 'Sheridan, WY', - 1307682 => 'Gillette, WY', - 1307684 => 'Buffalo, WY', - 1307685 => 'Gillette, WY', - 1307686 => 'Gillette, WY', - 1307687 => 'Gillette, WY', - 1307688 => 'Gillette, WY', - 1307690 => 'Jackson, WY', - 1307721 => 'Laramie, WY', - 1307732 => 'Jackson, WY', - 1307733 => 'Jackson, WY', - 1307734 => 'Jackson, WY', - 1307739 => 'Jackson, WY', - 1307742 => 'Laramie, WY', - 1307745 => 'Laramie, WY', - 1307746 => 'Newcastle, WY', - 1307754 => 'Powell, WY', - 1307760 => 'Laramie, WY', - 1307765 => 'Greybull, WY', - 1307777 => 'Cheyenne, WY', - 1307778 => 'Cheyenne, WY', - 1307782 => 'Mountain View, WY', - 1307789 => 'Evanston, WY', - 1307856 => 'Riverton, WY', - 1307857 => 'Riverton, WY', - 1307864 => 'Thermopolis, WY', - 1307875 => 'Green River, WY', - 1307877 => 'Kemmerer, WY', - 1307883 => 'Thayne, WY', - 1307885 => 'Afton, WY', - 1307886 => 'Afton, WY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1308.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1308.php deleted file mode 100644 index 92d6e7ff5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1308.php +++ /dev/null @@ -1,65 +0,0 @@ - 'Nebraska', - 1308233 => 'Kearney, NE', - 1308234 => 'Kearney, NE', - 1308235 => 'Kimball, NE', - 1308236 => 'Kearney, NE', - 1308237 => 'Kearney, NE', - 1308254 => 'Sidney, NE', - 1308262 => 'Bridgeport, NE', - 1308282 => 'Gordon, NE', - 1308284 => 'Ogallala, NE', - 1308324 => 'Lexington, NE', - 1308327 => 'Rushville, NE', - 1308345 => 'McCook, NE', - 1308346 => 'Burwell, NE', - 1308352 => 'Grant, NE', - 1308367 => 'Curtis, NE', - 1308381 => 'Grand Island, NE', - 1308382 => 'Grand Island, NE', - 1308384 => 'Grand Island, NE', - 1308385 => 'Grand Island, NE', - 1308389 => 'Grand Island, NE', - 1308398 => 'Grand Island, NE', - 1308423 => 'Benkelman, NE', - 1308425 => 'Franklin, NE', - 1308432 => 'Chadron, NE', - 1308436 => 'Gering, NE', - 1308452 => 'Ravenna, NE', - 1308468 => 'Gibbon, NE', - 1308532 => 'North Platte, NE', - 1308534 => 'North Platte, NE', - 1308535 => 'North Platte, NE', - 1308536 => 'Fullerton, NE', - 1308537 => 'Gothenburg, NE', - 1308623 => 'Mitchell, NE', - 1308630 => 'Scottsbluff, NE', - 1308632 => 'Scottsbluff, NE', - 1308633 => 'Scottsbluff, NE', - 1308635 => 'Scottsbluff, NE', - 1308665 => 'Crawford, NE', - 1308696 => 'North Platte, NE', - 1308697 => 'Cambridge, NE', - 1308728 => 'Ord, NE', - 1308745 => 'Loup City, NE', - 1308754 => 'St. Paul, NE', - 1308762 => 'Alliance, NE', - 1308772 => 'Oshkosh, NE', - 1308784 => 'Cozad, NE', - 1308785 => 'Elwood, NE', - 1308832 => 'Minden, NE', - 1308865 => 'Kearney, NE', - 1308872 => 'Broken Bow, NE', - 1308874 => 'Chappell, NE', - 1308882 => 'Imperial, NE', - 1308928 => 'Alma, NE', - 1308946 => 'Central City, NE', - 1308962 => 'Arapahoe, NE', - 1308995 => 'Holdrege, NE', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1309.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1309.php deleted file mode 100644 index dbd857a85..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1309.php +++ /dev/null @@ -1,123 +0,0 @@ - 'Illinois', - 1309243 => 'Dunlap, IL', - 1309244 => 'Delavan, IL', - 1309245 => 'Farmington, IL', - 1309246 => 'Lacon, IL', - 1309263 => 'Morton, IL', - 1309266 => 'Morton, IL', - 1309268 => 'Normal, IL', - 1309274 => 'Chillicothe, IL', - 1309275 => 'Bloomington, IL', - 1309277 => 'Moline, IL', - 1309289 => 'Knoxville, IL', - 1309341 => 'Galesburg, IL', - 1309342 => 'Galesburg, IL', - 1309343 => 'Galesburg, IL', - 1309344 => 'Galesburg, IL', - 1309345 => 'Galesburg, IL', - 1309346 => 'Pekin, IL', - 1309347 => 'Pekin, IL', - 1309353 => 'Pekin, IL', - 1309364 => 'Henry, IL', - 1309365 => 'Lexington, IL', - 1309367 => 'Metamora, IL', - 1309383 => 'Germantown Hills, IL', - 1309385 => 'Princeville, IL', - 1309432 => 'Minonk, IL', - 1309444 => 'Washington, IL', - 1309451 => 'Normal, IL', - 1309452 => 'Normal, IL', - 1309454 => 'Normal, IL', - 1309462 => 'Abingdon, IL', - 1309467 => 'Eureka, IL', - 1309473 => 'Heyworth, IL', - 1309494 => 'Peoria, IL', - 1309495 => 'Peoria, IL', - 1309523 => 'Port Byron, IL', - 1309526 => 'Orion, IL', - 1309527 => 'El Paso, IL', - 1309543 => 'Havana, IL', - 1309547 => 'Lewistown, IL', - 1309582 => 'Aledo, IL', - 1309589 => 'Peoria, IL', - 1309624 => 'Peoria, IL', - 1309633 => 'Bartonville, IL', - 1309637 => 'Peoria, IL', - 1309647 => 'Canton, IL', - 1309655 => 'Peoria, IL', - 1309659 => 'Erie, IL', - 1309661 => 'Bloomington, IL', - 1309662 => 'Bloomington, IL', - 1309663 => 'Bloomington, IL', - 1309664 => 'Bloomington, IL', - 1309671 => 'Peoria, IL', - 1309672 => 'Peoria, IL', - 1309673 => 'Peoria, IL', - 1309674 => 'Peoria, IL', - 1309676 => 'Peoria, IL', - 1309679 => 'Peoria, IL', - 1309681 => 'Peoria, IL', - 1309682 => 'Peoria, IL', - 1309683 => 'Peoria, IL', - 1309685 => 'Peoria, IL', - 1309686 => 'Peoria, IL', - 1309687 => 'Peoria, IL', - 1309688 => 'Peoria, IL', - 1309689 => 'Peoria, IL', - 1309691 => 'Peoria, IL', - 1309692 => 'Peoria, IL', - 1309693 => 'Peoria, IL', - 1309694 => 'East Peoria, IL', - 1309695 => 'Wyoming, IL', - 1309697 => 'Bartonville, IL', - 1309698 => 'East Peoria, IL', - 1309699 => 'East Peoria, IL', - 1309732 => 'Rock Island, IL', - 1309734 => 'Monmouth, IL', - 1309736 => 'Moline, IL', - 1309740 => 'Peoria, IL', - 1309743 => 'Moline, IL', - 1309745 => 'Washington, IL', - 1309747 => 'Gridley, IL', - 1309752 => 'East Moline, IL', - 1309755 => 'East Moline, IL', - 1309757 => 'Moline, IL', - 1309762 => 'Moline, IL', - 1309764 => 'Moline, IL', - 1309772 => 'Bushnell, IL', - 1309776 => 'Colchester, IL', - 1309786 => 'Rock Island, IL', - 1309787 => 'Milan, IL', - 1309788 => 'Rock Island, IL', - 1309793 => 'Rock Island, IL', - 1309794 => 'Rock Island, IL', - 1309797 => 'Moline, IL', - 1309799 => 'Coal Valley, IL', - 1309820 => 'Bloomington, IL', - 1309827 => 'Bloomington, IL', - 1309828 => 'Bloomington, IL', - 1309829 => 'Bloomington, IL', - 1309833 => 'Macomb, IL', - 1309836 => 'Macomb, IL', - 1309837 => 'Macomb, IL', - 1309839 => 'Peoria, IL', - 1309852 => 'Kewanee, IL', - 1309853 => 'Kewanee, IL', - 1309862 => 'Normal, IL', - 1309888 => 'Normal, IL', - 1309923 => 'Roanoke, IL', - 1309925 => 'Tremont, IL', - 1309928 => 'Farmer City, IL', - 1309932 => 'Galva, IL', - 1309937 => 'Cambridge, IL', - 1309944 => 'Geneseo, IL', - 1309962 => 'Le Roy, IL', - 1309968 => 'Manito, IL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1310.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1310.php deleted file mode 100644 index 3df9c834e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1310.php +++ /dev/null @@ -1,234 +0,0 @@ - 'California', - 1310201 => 'Los Angeles, CA', - 1310203 => 'Los Angeles, CA', - 1310205 => 'Beverly Hills, CA', - 1310206 => 'Los Angeles, CA', - 1310207 => 'Los Angeles, CA', - 1310208 => 'Los Angeles, CA', - 1310209 => 'Los Angeles, CA', - 1310212 => 'Torrance, CA', - 1310214 => 'Torrance, CA', - 1310217 => 'Gardena, CA', - 1310219 => 'Hawthorne, CA', - 1310222 => 'Torrance, CA', - 1310228 => 'Los Angeles, CA', - 1310229 => 'Los Angeles, CA', - 1310230 => 'Pacific Palisades, CA', - 1310231 => 'Los Angeles, CA', - 1310234 => 'Los Angeles, CA', - 1310235 => 'Los Angeles, CA', - 1310246 => 'Beverly Hills, CA', - 1310247 => 'Beverly Hills, CA', - 1310248 => 'Beverly Hills, CA', - 1310253 => 'Culver City, CA', - 1310255 => 'Santa Monica, CA', - 1310257 => 'Torrance, CA', - 1310258 => 'Los Angeles, CA', - 1310260 => 'Santa Monica, CA', - 1310263 => 'Hawthorne, CA', - 1310264 => 'Santa Monica, CA', - 1310268 => 'Los Angeles, CA', - 1310271 => 'Beverly Hills, CA', - 1310273 => 'Beverly Hills, CA', - 1310274 => 'Beverly Hills, CA', - 1310275 => 'Beverly Hills, CA', - 1310276 => 'Beverly Hills, CA', - 1310277 => 'Los Angeles, CA', - 1310278 => 'Beverly Hills, CA', - 1310281 => 'Beverly Hills, CA', - 1310282 => 'Los Angeles, CA', - 1310284 => 'Los Angeles, CA', - 1310285 => 'Beverly Hills, CA', - 1310286 => 'Los Angeles, CA', - 1310288 => 'Beverly Hills, CA', - 1310312 => 'Los Angeles, CA', - 1310314 => 'Santa Monica, CA', - 1310315 => 'Santa Monica, CA', - 1310317 => 'Malibu, CA', - 1310319 => 'Santa Monica, CA', - 1310320 => 'Torrance, CA', - 1310322 => 'El Segundo, CA', - 1310323 => 'Gardena, CA', - 1310324 => 'Gardena, CA', - 1310327 => 'Gardena, CA', - 1310328 => 'Torrance, CA', - 1310329 => 'Gardena, CA', - 1310330 => 'Inglewood, CA', - 1310335 => 'El Segundo, CA', - 1310338 => 'Los Angeles, CA', - 1310342 => 'Los Angeles, CA', - 1310348 => 'Los Angeles, CA', - 1310349 => 'Hawthorne, CA', - 1310355 => 'Hawthorne, CA', - 1310371 => 'Torrance, CA', - 1310373 => 'Torrance, CA', - 1310375 => 'Torrance, CA', - 1310378 => 'Torrance, CA', - 1310385 => 'Beverly Hills, CA', - 1310393 => 'Santa Monica, CA', - 1310394 => 'Santa Monica, CA', - 1310395 => 'Santa Monica, CA', - 1310407 => 'Los Angeles, CA', - 1310410 => 'Los Angeles, CA', - 1310412 => 'Inglewood, CA', - 1310414 => 'El Segundo, CA', - 1310417 => 'Los Angeles, CA', - 1310419 => 'Inglewood, CA', - 1310423 => 'West Hollywood, CA', - 1310426 => 'El Segundo, CA', - 1310440 => 'Los Angeles, CA', - 1310441 => 'Los Angeles, CA', - 1310442 => 'Los Angeles, CA', - 1310443 => 'Los Angeles, CA', - 1310444 => 'Los Angeles, CA', - 1310445 => 'Los Angeles, CA', - 1310446 => 'Los Angeles, CA', - 1310447 => 'Los Angeles, CA', - 1310449 => 'Santa Monica, CA', - 1310450 => 'Santa Monica, CA', - 1310451 => 'Santa Monica, CA', - 1310452 => 'Santa Monica, CA', - 1310453 => 'Santa Monica, CA', - 1310454 => 'Pacific Palisades, CA', - 1310455 => 'Topanga, CA', - 1310456 => 'Malibu, CA', - 1310457 => 'Malibu, CA', - 1310458 => 'Santa Monica, CA', - 1310459 => 'Pacific Palisades, CA', - 1310470 => 'Los Angeles, CA', - 1310471 => 'Los Angeles, CA', - 1310472 => 'Los Angeles, CA', - 1310473 => 'Los Angeles, CA', - 1310474 => 'Los Angeles, CA', - 1310475 => 'Los Angeles, CA', - 1310476 => 'Los Angeles, CA', - 1310477 => 'Los Angeles, CA', - 1310478 => 'Los Angeles, CA', - 1310479 => 'Los Angeles, CA', - 1310481 => 'Los Angeles, CA', - 1310510 => 'Avalon, CA', - 1310514 => 'San Pedro, CA', - 1310515 => 'Gardena, CA', - 1310516 => 'Gardena, CA', - 1310517 => 'Harbor City, CA', - 1310519 => 'San Pedro, CA', - 1310521 => 'San Pedro, CA', - 1310523 => 'Gardena, CA', - 1310527 => 'Gardena, CA', - 1310532 => 'Gardena, CA', - 1310533 => 'Torrance, CA', - 1310535 => 'El Segundo, CA', - 1310537 => 'Compton, CA', - 1310538 => 'Gardena, CA', - 1310542 => 'Torrance, CA', - 1310545 => 'Manhattan Beach, CA', - 1310546 => 'Manhattan Beach, CA', - 1310547 => 'San Pedro, CA', - 1310548 => 'San Pedro, CA', - 1310550 => 'Beverly Hills, CA', - 1310551 => 'Los Angeles, CA', - 1310552 => 'Los Angeles, CA', - 1310553 => 'Los Angeles, CA', - 1310556 => 'Los Angeles, CA', - 1310557 => 'Los Angeles, CA', - 1310571 => 'Los Angeles, CA', - 1310573 => 'Pacific Palisades, CA', - 1310575 => 'Los Angeles, CA', - 1310576 => 'Santa Monica, CA', - 1310581 => 'Santa Monica, CA', - 1310582 => 'Santa Monica, CA', - 1310586 => 'Santa Monica, CA', - 1310587 => 'Santa Monica, CA', - 1310589 => 'Malibu, CA', - 1310604 => 'Compton, CA', - 1310605 => 'Compton, CA', - 1310608 => 'Compton, CA', - 1310609 => 'Compton, CA', - 1310618 => 'Torrance, CA', - 1310631 => 'Compton, CA', - 1310632 => 'Compton, CA', - 1310635 => 'Compton, CA', - 1310637 => 'Compton, CA', - 1310638 => 'Compton, CA', - 1310639 => 'Compton, CA', - 1310640 => 'El Segundo, CA', - 1310641 => 'Los Angeles, CA', - 1310642 => 'Los Angeles, CA', - 1310644 => 'Hawthorne, CA', - 1310645 => 'Los Angeles, CA', - 1310649 => 'Los Angeles, CA', - 1310656 => 'Santa Monica, CA', - 1310664 => 'Santa Monica, CA', - 1310665 => 'Los Angeles, CA', - 1310668 => 'Los Angeles, CA', - 1310669 => 'Compton, CA', - 1310670 => 'Los Angeles, CA', - 1310671 => 'Inglewood, CA', - 1310672 => 'Inglewood, CA', - 1310673 => 'Inglewood, CA', - 1310674 => 'Inglewood, CA', - 1310675 => 'Hawthorne, CA', - 1310676 => 'Hawthorne, CA', - 1310677 => 'Inglewood, CA', - 1310679 => 'Hawthorne, CA', - 1310680 => 'Inglewood, CA', - 1310715 => 'Gardena, CA', - 1310719 => 'Gardena, CA', - 1310762 => 'Compton, CA', - 1310763 => 'Compton, CA', - 1310764 => 'Compton, CA', - 1310768 => 'Gardena, CA', - 1310769 => 'Gardena, CA', - 1310772 => 'Los Angeles, CA', - 1310777 => 'Beverly Hills, CA', - 1310781 => 'Torrance, CA', - 1310782 => 'Torrance, CA', - 1310783 => 'Torrance, CA', - 1310784 => 'Torrance, CA', - 1310785 => 'Los Angeles, CA', - 1310787 => 'Torrance, CA', - 1310788 => 'Los Angeles, CA', - 1310791 => 'Torrance, CA', - 1310792 => 'Torrance, CA', - 1310793 => 'Torrance, CA', - 1310794 => 'Los Angeles, CA', - 1310820 => 'Los Angeles, CA', - 1310824 => 'Los Angeles, CA', - 1310825 => 'Los Angeles, CA', - 1310826 => 'Los Angeles, CA', - 1310828 => 'Santa Monica, CA', - 1310829 => 'Santa Monica, CA', - 1310831 => 'San Pedro, CA', - 1310832 => 'San Pedro, CA', - 1310833 => 'San Pedro, CA', - 1310836 => 'Los Angeles, CA', - 1310858 => 'Beverly Hills, CA', - 1310859 => 'Beverly Hills, CA', - 1310860 => 'Beverly Hills, CA', - 1310868 => 'Compton, CA', - 1310885 => 'Compton, CA', - 1310886 => 'Compton, CA', - 1310888 => 'Beverly Hills, CA', - 1310891 => 'Torrance, CA', - 1310898 => 'Compton, CA', - 1310899 => 'Santa Monica, CA', - 1310900 => 'Lynwood, CA', - 1310914 => 'Los Angeles, CA', - 1310915 => 'Los Angeles, CA', - 1310917 => 'Santa Monica, CA', - 1310945 => 'Culver City, CA', - 1310965 => 'Gardena, CA', - 1310966 => 'Los Angeles, CA', - 1310970 => 'Hawthorne, CA', - 1310973 => 'Hawthorne, CA', - 1310978 => 'Hawthorne, CA', - 1310979 => 'Los Angeles, CA', - 1310998 => 'Santa Monica, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1312.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1312.php deleted file mode 100644 index 06d43097a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1312.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Chicago, IL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1313.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1313.php deleted file mode 100644 index 4ac7bf7ef..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1313.php +++ /dev/null @@ -1,131 +0,0 @@ - 'Michigan', - 1313223 => 'Detroit, MI', - 1313224 => 'Detroit, MI', - 1313245 => 'Detroit, MI', - 1313255 => 'Detroit, MI', - 1313259 => 'Detroit, MI', - 1313270 => 'Detroit, MI', - 1313271 => 'Dearborn, MI', - 1313272 => 'Detroit, MI', - 1313273 => 'Detroit, MI', - 1313285 => 'Detroit, MI', - 1313291 => 'Taylor, MI', - 1313292 => 'Taylor, MI', - 1313295 => 'Taylor, MI', - 1313297 => 'Detroit, MI', - 1313299 => 'Taylor, MI', - 1313331 => 'Detroit, MI', - 1313336 => 'Dearborn, MI', - 1313340 => 'Detroit, MI', - 1313341 => 'Detroit, MI', - 1313342 => 'Detroit, MI', - 1313345 => 'Detroit, MI', - 1313359 => 'Dearborn, MI', - 1313366 => 'Detroit, MI', - 1313368 => 'Detroit, MI', - 1313369 => 'Detroit, MI', - 1313371 => 'Detroit, MI', - 1313372 => 'Detroit, MI', - 1313387 => 'Redford Charter Township, MI', - 1313389 => 'Lincoln Park, MI', - 1313393 => 'Detroit, MI', - 1313397 => 'Detroit, MI', - 1313436 => 'Dearborn, MI', - 1313441 => 'Dearborn, MI', - 1313465 => 'Detroit, MI', - 1313469 => 'Detroit, MI', - 1313491 => 'Detroit, MI', - 1313493 => 'Detroit, MI', - 1313494 => 'Detroit, MI', - 1313499 => 'Detroit, MI', - 1313521 => 'Detroit, MI', - 1313526 => 'Detroit, MI', - 1313527 => 'Detroit, MI', - 1313531 => 'Detroit, MI', - 1313532 => 'Redford Charter Township, MI', - 1313533 => 'Detroit, MI', - 1313534 => 'Detroit, MI', - 1313537 => 'Detroit, MI', - 1313538 => 'Detroit, MI', - 1313541 => 'Redford Charter Township, MI', - 1313554 => 'Detroit, MI', - 1313562 => 'Dearborn, MI', - 1313565 => 'Dearborn, MI', - 1313567 => 'Detroit, MI', - 1313568 => 'Detroit, MI', - 1313571 => 'Detroit, MI', - 1313576 => 'Detroit, MI', - 1313577 => 'Detroit, MI', - 1313579 => 'Detroit, MI', - 1313581 => 'Dearborn, MI', - 1313582 => 'Dearborn, MI', - 1313584 => 'Dearborn, MI', - 1313593 => 'Dearborn, MI', - 1313638 => 'Detroit, MI', - 1313653 => 'Detroit, MI', - 1313745 => 'Detroit, MI', - 1313766 => 'Detroit, MI', - 1313821 => 'Detroit, MI', - 1313822 => 'Detroit, MI', - 1313824 => 'Detroit, MI', - 1313831 => 'Detroit, MI', - 1313832 => 'Detroit, MI', - 1313833 => 'Detroit, MI', - 1313834 => 'Detroit, MI', - 1313835 => 'Detroit, MI', - 1313836 => 'Detroit, MI', - 1313837 => 'Detroit, MI', - 1313838 => 'Detroit, MI', - 1313839 => 'Detroit, MI', - 1313841 => 'Detroit, MI', - 1313842 => 'Detroit, MI', - 1313843 => 'Detroit, MI', - 1313846 => 'Dearborn, MI', - 1313849 => 'Detroit, MI', - 1313861 => 'Detroit, MI', - 1313862 => 'Detroit, MI', - 1313863 => 'Detroit, MI', - 1313864 => 'Detroit, MI', - 1313867 => 'Detroit, MI', - 1313868 => 'Highland Park, MI', - 1313869 => 'Detroit, MI', - 1313871 => 'Detroit, MI', - 1313872 => 'Detroit, MI', - 1313873 => 'Detroit, MI', - 1313874 => 'Detroit, MI', - 1313875 => 'Detroit, MI', - 1313876 => 'Detroit, MI', - 1313891 => 'Detroit, MI', - 1313892 => 'Detroit, MI', - 1313893 => 'Detroit, MI', - 1313894 => 'Detroit, MI', - 1313895 => 'Detroit, MI', - 1313897 => 'Detroit, MI', - 1313898 => 'Detroit, MI', - 1313916 => 'Detroit, MI', - 1313921 => 'Detroit, MI', - 1313922 => 'Detroit, MI', - 1313923 => 'Detroit, MI', - 1313924 => 'Detroit, MI', - 1313925 => 'Detroit, MI', - 1313931 => 'Detroit, MI', - 1313933 => 'Detroit, MI', - 1313934 => 'Detroit, MI', - 1313937 => 'Redford Charter Township, MI', - 1313945 => 'Dearborn, MI', - 1313961 => 'Detroit, MI', - 1313962 => 'Detroit, MI', - 1313963 => 'Detroit, MI', - 1313964 => 'Detroit, MI', - 1313965 => 'Detroit, MI', - 1313966 => 'Detroit, MI', - 1313982 => 'Dearborn, MI', - 1313993 => 'Detroit, MI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1314.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1314.php deleted file mode 100644 index d303fc8cc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1314.php +++ /dev/null @@ -1,140 +0,0 @@ - 'Missouri', - 1314226 => 'St. Louis, MO', - 1314231 => 'St. Louis, MO', - 1314241 => 'St. Louis, MO', - 1314251 => 'St. Louis, MO', - 1314256 => 'St. Louis, MO', - 1314261 => 'St. Louis, MO', - 1314268 => 'St. Louis, MO', - 1314286 => 'St. Louis, MO', - 1314289 => 'St. Louis, MO', - 1314344 => 'Bridgeton, MO', - 1314345 => 'St. Louis, MO', - 1314351 => 'St. Louis, MO', - 1314352 => 'St. Louis, MO', - 1314353 => 'St. Louis, MO', - 1314355 => 'St. Louis, MO', - 1314361 => 'St. Louis, MO', - 1314362 => 'St. Louis, MO', - 1314367 => 'St. Louis, MO', - 1314371 => 'St. Louis, MO', - 1314381 => 'St. Louis, MO', - 1314382 => 'St. Louis, MO', - 1314383 => 'St. Louis, MO', - 1314385 => 'St. Louis, MO', - 1314388 => 'St. Louis, MO', - 1314389 => 'St. Louis, MO', - 1314395 => 'St. Louis, MO', - 1314416 => 'St. Louis, MO', - 1314421 => 'St. Louis, MO', - 1314423 => 'St. Louis, MO', - 1314426 => 'St. Louis, MO', - 1314427 => 'St. Louis, MO', - 1314428 => 'St. Louis, MO', - 1314432 => 'St. Louis, MO', - 1314436 => 'St. Louis, MO', - 1314444 => 'St. Louis, MO', - 1314446 => 'St. Louis, MO', - 1314454 => 'St. Louis, MO', - 1314480 => 'St. Louis, MO', - 1314481 => 'St. Louis, MO', - 1314487 => 'St. Louis, MO', - 1314516 => 'St. Louis, MO', - 1314521 => 'St. Louis, MO', - 1314522 => 'St. Louis, MO', - 1314524 => 'St. Louis, MO', - 1314525 => 'St. Louis, MO', - 1314531 => 'St. Louis, MO', - 1314533 => 'St. Louis, MO', - 1314534 => 'St. Louis, MO', - 1314535 => 'St. Louis, MO', - 1314543 => 'St. Louis, MO', - 1314544 => 'St. Louis, MO', - 1314552 => 'St. Louis, MO', - 1314567 => 'St. Louis, MO', - 1314569 => 'St. Louis, MO', - 1314577 => 'St. Louis, MO', - 1314588 => 'St. Louis, MO', - 1314615 => 'St. Louis, MO', - 1314621 => 'St. Louis, MO', - 1314622 => 'St. Louis, MO', - 1314631 => 'St. Louis, MO', - 1314638 => 'St. Louis, MO', - 1314644 => 'St. Louis, MO', - 1314645 => 'St. Louis, MO', - 1314646 => 'St. Louis, MO', - 1314647 => 'St. Louis, MO', - 1314652 => 'St. Louis, MO', - 1314653 => 'St. Louis, MO', - 1314664 => 'St. Louis, MO', - 1314692 => 'St. Louis, MO', - 1314721 => 'St. Louis, MO', - 1314725 => 'St. Louis, MO', - 1314726 => 'St. Louis, MO', - 1314727 => 'St. Louis, MO', - 1314729 => 'St. Louis, MO', - 1314731 => 'Hazelwood, MO', - 1314747 => 'St. Louis, MO', - 1314752 => 'St. Louis, MO', - 1314768 => 'St. Louis, MO', - 1314771 => 'St. Louis, MO', - 1314772 => 'St. Louis, MO', - 1314773 => 'St. Louis, MO', - 1314776 => 'St. Louis, MO', - 1314781 => 'St. Louis, MO', - 1314802 => 'St. Louis, MO', - 1314814 => 'St. Louis, MO', - 1314821 => 'St. Louis, MO', - 1314822 => 'St. Louis, MO', - 1314830 => 'Florissant, MO', - 1314831 => 'Florissant, MO', - 1314832 => 'St. Louis, MO', - 1314835 => 'St. Louis, MO', - 1314837 => 'Florissant, MO', - 1314838 => 'Florissant, MO', - 1314839 => 'Florissant, MO', - 1314842 => 'St. Louis, MO', - 1314843 => 'St. Louis, MO', - 1314845 => 'St. Louis, MO', - 1314846 => 'St. Louis, MO', - 1314849 => 'St. Louis, MO', - 1314862 => 'St. Louis, MO', - 1314863 => 'St. Louis, MO', - 1314865 => 'St. Louis, MO', - 1314867 => 'St. Louis, MO', - 1314868 => 'St. Louis, MO', - 1314869 => 'St. Louis, MO', - 1314872 => 'St. Louis, MO', - 1314890 => 'St. Louis, MO', - 1314892 => 'St. Louis, MO', - 1314894 => 'St. Louis, MO', - 1314895 => 'Hazelwood, MO', - 1314909 => 'St. Louis, MO', - 1314918 => 'St. Louis, MO', - 1314921 => 'Florissant, MO', - 1314932 => 'St. Louis, MO', - 1314935 => 'St. Louis, MO', - 1314961 => 'St. Louis, MO', - 1314962 => 'St. Louis, MO', - 1314963 => 'St. Louis, MO', - 1314965 => 'St. Louis, MO', - 1314966 => 'St. Louis, MO', - 1314968 => 'St. Louis, MO', - 1314972 => 'Florissant, MO', - 1314977 => 'St. Louis, MO', - 1314983 => 'St. Louis, MO', - 1314989 => 'St. Louis, MO', - 1314991 => 'St. Louis, MO', - 1314993 => 'St. Louis, MO', - 1314994 => 'St. Louis, MO', - 1314995 => 'St. Louis, MO', - 1314996 => 'St. Louis, MO', - 1314997 => 'St. Louis, MO', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1315.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1315.php deleted file mode 100644 index ae4c0b48e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1315.php +++ /dev/null @@ -1,167 +0,0 @@ - 'New York', - 1315214 => 'Syracuse, NY', - 1315218 => 'Syracuse, NY', - 1315232 => 'Adams, NY', - 1315245 => 'Camden, NY', - 1315251 => 'Syracuse, NY', - 1315252 => 'Auburn, NY', - 1315253 => 'Auburn, NY', - 1315255 => 'Auburn, NY', - 1315258 => 'Auburn, NY', - 1315265 => 'Potsdam, NY', - 1315266 => 'Utica, NY', - 1315287 => 'Gouverneur, NY', - 1315298 => 'Pulaski, NY', - 1315299 => 'Syracuse, NY', - 1315314 => 'Syracuse, NY', - 1315329 => 'Fayetteville, NY', - 1315331 => 'Newark, NY', - 1315334 => 'Rome, NY', - 1315336 => 'Rome, NY', - 1315337 => 'Rome, NY', - 1315338 => 'Rome, NY', - 1315339 => 'Rome, NY', - 1315342 => 'Oswego, NY', - 1315343 => 'Oswego, NY', - 1315346 => 'Croghan, NY', - 1315349 => 'Oswego, NY', - 1315357 => 'Inlet, NY', - 1315361 => 'Oneida, NY', - 1315363 => 'Oneida, NY', - 1315366 => 'Wampsville, NY', - 1315369 => 'Old Forge, NY', - 1315376 => 'Lowville, NY', - 1315379 => 'Canton, NY', - 1315386 => 'Canton, NY', - 1315393 => 'Ogdensburg, NY', - 1315394 => 'Ogdensburg, NY', - 1315422 => 'Syracuse, NY', - 1315423 => 'Syracuse, NY', - 1315424 => 'Syracuse, NY', - 1315425 => 'Syracuse, NY', - 1315426 => 'Syracuse, NY', - 1315428 => 'Syracuse, NY', - 1315429 => 'Dolgeville, NY', - 1315435 => 'Syracuse, NY', - 1315443 => 'Syracuse, NY', - 1315446 => 'Syracuse, NY', - 1315448 => 'Syracuse, NY', - 1315451 => 'Liverpool, NY', - 1315453 => 'Liverpool, NY', - 1315454 => 'Syracuse, NY', - 1315455 => 'Syracuse, NY', - 1315457 => 'Liverpool, NY', - 1315462 => 'Clifton Springs, NY', - 1315464 => 'Syracuse, NY', - 1315466 => 'Syracuse, NY', - 1315468 => 'Syracuse, NY', - 1315469 => 'Syracuse, NY', - 1315470 => 'Syracuse, NY', - 1315471 => 'Syracuse, NY', - 1315472 => 'Syracuse, NY', - 1315473 => 'Syracuse, NY', - 1315474 => 'Syracuse, NY', - 1315475 => 'Syracuse, NY', - 1315476 => 'Syracuse, NY', - 1315478 => 'Syracuse, NY', - 1315479 => 'Syracuse, NY', - 1315482 => 'Alexandria Bay, NY', - 1315483 => 'Sodus, NY', - 1315488 => 'Syracuse, NY', - 1315492 => 'Syracuse, NY', - 1315493 => 'Carthage, NY', - 1315497 => 'Moravia, NY', - 1315498 => 'Syracuse, NY', - 1315507 => 'Utica, NY', - 1315524 => 'Ontario, NY', - 1315536 => 'Penn Yan, NY', - 1315539 => 'Waterloo, NY', - 1315548 => 'Phelps, NY', - 1315564 => 'Hannibal, NY', - 1315568 => 'Seneca Falls, NY', - 1315589 => 'Williamson, NY', - 1315592 => 'Fulton, NY', - 1315593 => 'Fulton, NY', - 1315594 => 'Wolcott, NY', - 1315597 => 'Palmyra, NY', - 1315598 => 'Fulton, NY', - 1315622 => 'Liverpool, NY', - 1315624 => 'Utica, NY', - 1315625 => 'Parish, NY', - 1315626 => 'Cato, NY', - 1315629 => 'Evans Mills, NY', - 1315633 => 'Bridgeport, NY', - 1315635 => 'Baldwinsville, NY', - 1315637 => 'Fayetteville, NY', - 1315638 => 'Baldwinsville, NY', - 1315652 => 'Liverpool, NY', - 1315654 => 'Cape Vincent, NY', - 1315655 => 'Cazenovia, NY', - 1315668 => 'Central Square, NY', - 1315671 => 'Syracuse, NY', - 1315672 => 'Camillus, NY', - 1315673 => 'Marcellus, NY', - 1315677 => 'LaFayette, NY', - 1315682 => 'Manlius, NY', - 1315684 => 'Morrisville, NY', - 1315685 => 'Skaneateles, NY', - 1315686 => 'Clayton, NY', - 1315687 => 'Chittenango, NY', - 1315695 => 'Phoenix, NY', - 1315696 => 'Tully, NY', - 1315697 => 'Canastota, NY', - 1315698 => 'Cicero, NY', - 1315699 => 'Cicero, NY', - 1315701 => 'Syracuse, NY', - 1315724 => 'Utica, NY', - 1315732 => 'Utica, NY', - 1315733 => 'Utica, NY', - 1315734 => 'Utica, NY', - 1315735 => 'Utica, NY', - 1315738 => 'Utica, NY', - 1315764 => 'Massena, NY', - 1315769 => 'Massena, NY', - 1315772 => 'Fort Drum, NY', - 1315776 => 'Port Byron, NY', - 1315779 => 'Watertown, NY', - 1315781 => 'Geneva, NY', - 1315782 => 'Watertown, NY', - 1315785 => 'Watertown, NY', - 1315786 => 'Watertown, NY', - 1315787 => 'Geneva, NY', - 1315788 => 'Watertown, NY', - 1315789 => 'Geneva, NY', - 1315792 => 'Utica, NY', - 1315793 => 'Utica, NY', - 1315797 => 'Utica, NY', - 1315798 => 'Utica, NY', - 1315822 => 'West Winfield, NY', - 1315823 => 'Little Falls, NY', - 1315824 => 'Hamilton, NY', - 1315826 => 'Poland, NY', - 1315829 => 'Vernon, NY', - 1315834 => 'Weedsport, NY', - 1315841 => 'Waterville, NY', - 1315845 => 'Newport, NY', - 1315853 => 'Clinton, NY', - 1315858 => 'Richfield Spgs, NY', - 1315866 => 'Herkimer, NY', - 1315867 => 'Herkimer, NY', - 1315893 => 'Madison, NY', - 1315894 => 'Ilion, NY', - 1315895 => 'Ilion, NY', - 1315896 => 'Barneveld, NY', - 1315923 => 'Clyde, NY', - 1315926 => 'Marion, NY', - 1315942 => 'Boonville, NY', - 1315946 => 'Lyons, NY', - 1315963 => 'Mexico, NY', - 1315986 => 'Macedon, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1316.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1316.php deleted file mode 100644 index 5fac677f7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1316.php +++ /dev/null @@ -1,81 +0,0 @@ - 'Kansas', - 1316201 => 'Wichita, KS', - 1316260 => 'Wichita, KS', - 1316262 => 'Wichita, KS', - 1316263 => 'Wichita, KS', - 1316264 => 'Wichita, KS', - 1316265 => 'Wichita, KS', - 1316267 => 'Wichita, KS', - 1316268 => 'Wichita, KS', - 1316269 => 'Wichita, KS', - 1316283 => 'Newton, KS', - 1316284 => 'Newton, KS', - 1316293 => 'Wichita, KS', - 1316295 => 'Wichita, KS', - 1316303 => 'Wichita, KS', - 1316320 => 'El Dorado, KS', - 1316321 => 'El Dorado, KS', - 1316322 => 'El Dorado, KS', - 1316383 => 'Wichita, KS', - 1316425 => 'Wichita, KS', - 1316440 => 'Wichita, KS', - 1316462 => 'Wichita, KS', - 1316522 => 'Wichita, KS', - 1316524 => 'Wichita, KS', - 1316529 => 'Wichita, KS', - 1316554 => 'Wichita, KS', - 1316558 => 'Wichita, KS', - 1316612 => 'Wichita, KS', - 1316613 => 'Wichita, KS', - 1316618 => 'Wichita, KS', - 1316630 => 'Wichita, KS', - 1316634 => 'Wichita, KS', - 1316636 => 'Wichita, KS', - 1316651 => 'Wichita, KS', - 1316652 => 'Wichita, KS', - 1316660 => 'Wichita, KS', - 1316681 => 'Wichita, KS', - 1316682 => 'Wichita, KS', - 1316683 => 'Wichita, KS', - 1316684 => 'Wichita, KS', - 1316685 => 'Wichita, KS', - 1316686 => 'Wichita, KS', - 1316687 => 'Wichita, KS', - 1316688 => 'Wichita, KS', - 1316689 => 'Wichita, KS', - 1316691 => 'Wichita, KS', - 1316721 => 'Wichita, KS', - 1316722 => 'Wichita, KS', - 1316729 => 'Wichita, KS', - 1316733 => 'Andover, KS', - 1316755 => 'Valley Center, KS', - 1316772 => 'Sedgwick, KS', - 1316773 => 'Wichita, KS', - 1316775 => 'Augusta, KS', - 1316776 => 'Rose Hill, KS', - 1316777 => 'Mulvane, KS', - 1316788 => 'Derby, KS', - 1316789 => 'Derby, KS', - 1316794 => 'Goddard, KS', - 1316796 => 'Colwich, KS', - 1316799 => 'Whitewater, KS', - 1316832 => 'Wichita, KS', - 1316835 => 'Halstead, KS', - 1316838 => 'Wichita, KS', - 1316858 => 'Wichita, KS', - 1316941 => 'Wichita, KS', - 1316942 => 'Wichita, KS', - 1316943 => 'Wichita, KS', - 1316944 => 'Wichita, KS', - 1316945 => 'Wichita, KS', - 1316946 => 'Wichita, KS', - 1316962 => 'Wichita, KS', - 1316973 => 'Wichita, KS', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1317.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1317.php deleted file mode 100644 index a10abe508..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1317.php +++ /dev/null @@ -1,205 +0,0 @@ - 'Indiana', - 1317202 => 'Indianapolis, IN', - 1317205 => 'Indianapolis, IN', - 1317216 => 'Indianapolis, IN', - 1317219 => 'Noblesville, IN', - 1317222 => 'Indianapolis, IN', - 1317226 => 'Indianapolis, IN', - 1317228 => 'Indianapolis, IN', - 1317231 => 'Indianapolis, IN', - 1317232 => 'Indianapolis, IN', - 1317236 => 'Indianapolis, IN', - 1317237 => 'Indianapolis, IN', - 1317241 => 'Indianapolis, IN', - 1317243 => 'Indianapolis, IN', - 1317244 => 'Indianapolis, IN', - 1317247 => 'Indianapolis, IN', - 1317248 => 'Indianapolis, IN', - 1317251 => 'Indianapolis, IN', - 1317253 => 'Indianapolis, IN', - 1317254 => 'Indianapolis, IN', - 1317255 => 'Indianapolis, IN', - 1317257 => 'Indianapolis, IN', - 1317259 => 'Indianapolis, IN', - 1317271 => 'Indianapolis, IN', - 1317272 => 'Avon, IN', - 1317274 => 'Indianapolis, IN', - 1317278 => 'Indianapolis, IN', - 1317280 => 'Indianapolis, IN', - 1317283 => 'Indianapolis, IN', - 1317290 => 'Indianapolis, IN', - 1317291 => 'Indianapolis, IN', - 1317293 => 'Indianapolis, IN', - 1317295 => 'Indianapolis, IN', - 1317297 => 'Indianapolis, IN', - 1317298 => 'Indianapolis, IN', - 1317299 => 'Indianapolis, IN', - 1317300 => 'Greenwood, IN', - 1317322 => 'Indianapolis, IN', - 1317326 => 'Greenfield, IN', - 1317327 => 'Indianapolis, IN', - 1317328 => 'Indianapolis, IN', - 1317329 => 'Indianapolis, IN', - 1317334 => 'Indianapolis, IN', - 1317335 => 'McCordsville, IN', - 1317337 => 'Indianapolis, IN', - 1317338 => 'Indianapolis, IN', - 1317346 => 'Franklin, IN', - 1317347 => 'Indianapolis, IN', - 1317351 => 'Indianapolis, IN', - 1317352 => 'Indianapolis, IN', - 1317353 => 'Indianapolis, IN', - 1317355 => 'Indianapolis, IN', - 1317356 => 'Indianapolis, IN', - 1317357 => 'Indianapolis, IN', - 1317359 => 'Indianapolis, IN', - 1317375 => 'Indianapolis, IN', - 1317377 => 'Indianapolis, IN', - 1317388 => 'Indianapolis, IN', - 1317392 => 'Shelbyville, IN', - 1317396 => 'Indianapolis, IN', - 1317398 => 'Shelbyville, IN', - 1317415 => 'Indianapolis, IN', - 1317422 => 'Bargersville, IN', - 1317423 => 'Indianapolis, IN', - 1317426 => 'Indianapolis, IN', - 1317462 => 'Greenfield, IN', - 1317464 => 'Indianapolis, IN', - 1317467 => 'Greenfield, IN', - 1317468 => 'Greenfield, IN', - 1317471 => 'Indianapolis, IN', - 1317472 => 'Indianapolis, IN', - 1317475 => 'Indianapolis, IN', - 1317477 => 'Greenfield, IN', - 1317481 => 'Indianapolis, IN', - 1317485 => 'Fortville, IN', - 1317528 => 'Indianapolis, IN', - 1317535 => 'Whiteland, IN', - 1317536 => 'Indianapolis, IN', - 1317539 => 'Clayton, IN', - 1317541 => 'Indianapolis, IN', - 1317542 => 'Indianapolis, IN', - 1317543 => 'Indianapolis, IN', - 1317545 => 'Indianapolis, IN', - 1317546 => 'Indianapolis, IN', - 1317547 => 'Indianapolis, IN', - 1317549 => 'Indianapolis, IN', - 1317554 => 'Indianapolis, IN', - 1317558 => 'Indianapolis, IN', - 1317564 => 'Carmel, IN', - 1317566 => 'Carmel, IN', - 1317567 => 'Indianapolis, IN', - 1317571 => 'Carmel, IN', - 1317573 => 'Carmel, IN', - 1317579 => 'Indianapolis, IN', - 1317582 => 'Carmel, IN', - 1317587 => 'Carmel, IN', - 1317596 => 'Indianapolis, IN', - 1317602 => 'Indianapolis, IN', - 1317621 => 'Indianapolis, IN', - 1317630 => 'Indianapolis, IN', - 1317631 => 'Indianapolis, IN', - 1317632 => 'Indianapolis, IN', - 1317633 => 'Indianapolis, IN', - 1317634 => 'Indianapolis, IN', - 1317635 => 'Indianapolis, IN', - 1317636 => 'Indianapolis, IN', - 1317637 => 'Indianapolis, IN', - 1317638 => 'Indianapolis, IN', - 1317639 => 'Indianapolis, IN', - 1317684 => 'Indianapolis, IN', - 1317686 => 'Indianapolis, IN', - 1317713 => 'Indianapolis, IN', - 1317718 => 'Danville, IN', - 1317722 => 'Indianapolis, IN', - 1317731 => 'Indianapolis, IN', - 1317733 => 'Zionsville, IN', - 1317736 => 'Franklin, IN', - 1317738 => 'Franklin, IN', - 1317745 => 'Danville, IN', - 1317755 => 'Indianapolis, IN', - 1317758 => 'Sheridan, IN', - 1317770 => 'Noblesville, IN', - 1317773 => 'Noblesville, IN', - 1317774 => 'Noblesville, IN', - 1317776 => 'Noblesville, IN', - 1317780 => 'Indianapolis, IN', - 1317781 => 'Indianapolis, IN', - 1317782 => 'Indianapolis, IN', - 1317783 => 'Indianapolis, IN', - 1317784 => 'Indianapolis, IN', - 1317786 => 'Indianapolis, IN', - 1317787 => 'Indianapolis, IN', - 1317788 => 'Indianapolis, IN', - 1317791 => 'Indianapolis, IN', - 1317802 => 'Indianapolis, IN', - 1317804 => 'Westfield, IN', - 1317805 => 'Indianapolis, IN', - 1317814 => 'Carmel, IN', - 1317815 => 'Carmel, IN', - 1317822 => 'Indianapolis, IN', - 1317823 => 'Indianapolis, IN', - 1317826 => 'Indianapolis, IN', - 1317831 => 'Mooresville, IN', - 1317834 => 'Mooresville, IN', - 1317835 => 'Fairland, IN', - 1317837 => 'Plainfield, IN', - 1317838 => 'Plainfield, IN', - 1317839 => 'Plainfield, IN', - 1317842 => 'Indianapolis, IN', - 1317843 => 'Carmel, IN', - 1317844 => 'Carmel, IN', - 1317845 => 'Indianapolis, IN', - 1317846 => 'Carmel, IN', - 1317848 => 'Carmel, IN', - 1317849 => 'Indianapolis, IN', - 1317852 => 'Brownsburg, IN', - 1317856 => 'Indianapolis, IN', - 1317858 => 'Brownsburg, IN', - 1317859 => 'Greenwood, IN', - 1317861 => 'New Palestine, IN', - 1317862 => 'Indianapolis, IN', - 1317867 => 'Westfield, IN', - 1317870 => 'Indianapolis, IN', - 1317872 => 'Indianapolis, IN', - 1317873 => 'Zionsville, IN', - 1317875 => 'Indianapolis, IN', - 1317876 => 'Indianapolis, IN', - 1317878 => 'Trafalgar, IN', - 1317879 => 'Indianapolis, IN', - 1317881 => 'Greenwood, IN', - 1317883 => 'Greenwood, IN', - 1317885 => 'Greenwood, IN', - 1317888 => 'Greenwood, IN', - 1317889 => 'Greenwood, IN', - 1317890 => 'Indianapolis, IN', - 1317892 => 'Pittsboro, IN', - 1317895 => 'Indianapolis, IN', - 1317896 => 'Westfield, IN', - 1317897 => 'Indianapolis, IN', - 1317898 => 'Indianapolis, IN', - 1317899 => 'Indianapolis, IN', - 1317916 => 'Indianapolis, IN', - 1317917 => 'Indianapolis, IN', - 1317920 => 'Indianapolis, IN', - 1317921 => 'Indianapolis, IN', - 1317923 => 'Indianapolis, IN', - 1317924 => 'Indianapolis, IN', - 1317925 => 'Indianapolis, IN', - 1317926 => 'Indianapolis, IN', - 1317931 => 'Indianapolis, IN', - 1317944 => 'Indianapolis, IN', - 1317955 => 'Indianapolis, IN', - 1317962 => 'Indianapolis, IN', - 1317972 => 'Indianapolis, IN', - 1317984 => 'Cicero, IN', - 1317988 => 'Indianapolis, IN', - 1317996 => 'Monrovia, IN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1318.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1318.php deleted file mode 100644 index 6a864b0d5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1318.php +++ /dev/null @@ -1,149 +0,0 @@ - 'Louisiana', - 1318213 => 'Shreveport, LA', - 1318219 => 'Shreveport, LA', - 1318220 => 'Shreveport, LA', - 1318221 => 'Shreveport, LA', - 1318222 => 'Shreveport, LA', - 1318226 => 'Shreveport, LA', - 1318227 => 'Shreveport, LA', - 1318238 => 'Natchitoches, LA', - 1318240 => 'Marksville, LA', - 1318247 => 'Grambling, LA', - 1318248 => 'Mangham, LA', - 1318251 => 'Ruston, LA', - 1318253 => 'Marksville, LA', - 1318254 => 'Ruston, LA', - 1318255 => 'Ruston, LA', - 1318256 => 'Many, LA', - 1318259 => 'Jonesboro, LA', - 1318263 => 'Arcadia, LA', - 1318281 => 'Bastrop, LA', - 1318283 => 'Bastrop, LA', - 1318322 => 'Monroe, LA', - 1318323 => 'Monroe, LA', - 1318324 => 'Monroe, LA', - 1318325 => 'Monroe, LA', - 1318326 => 'Plain Dealing, LA', - 1318329 => 'Monroe, LA', - 1318330 => 'Monroe, LA', - 1318335 => 'Oakdale, LA', - 1318336 => 'Vidalia, LA', - 1318339 => 'Jonesville, LA', - 1318340 => 'Monroe, LA', - 1318343 => 'Monroe, LA', - 1318345 => 'Monroe, LA', - 1318346 => 'Bunkie, LA', - 1318352 => 'Natchitoches, LA', - 1318354 => 'Natchitoches, LA', - 1318356 => 'Natchitoches, LA', - 1318357 => 'Natchitoches, LA', - 1318361 => 'Monroe, LA', - 1318362 => 'Monroe, LA', - 1318368 => 'Farmerville, LA', - 1318371 => 'Minden, LA', - 1318375 => 'Vivian, LA', - 1318377 => 'Minden, LA', - 1318382 => 'Minden, LA', - 1318387 => 'Monroe, LA', - 1318388 => 'Monroe, LA', - 1318396 => 'West Monroe, LA', - 1318397 => 'West Monroe, LA', - 1318398 => 'Monroe, LA', - 1318410 => 'Monroe, LA', - 1318424 => 'Shreveport, LA', - 1318425 => 'Shreveport, LA', - 1318428 => 'Oak Grove, LA', - 1318429 => 'Shreveport, LA', - 1318435 => 'Winnsboro, LA', - 1318442 => 'Alexandria, LA', - 1318443 => 'Alexandria, LA', - 1318445 => 'Alexandria, LA', - 1318448 => 'Alexandria, LA', - 1318449 => 'Alexandria, LA', - 1318466 => 'Deville, LA', - 1318473 => 'Alexandria, LA', - 1318484 => 'Alexandria, LA', - 1318487 => 'Alexandria, LA', - 1318495 => 'Olla, LA', - 1318524 => 'Shreveport, LA', - 1318539 => 'Springhill, LA', - 1318549 => 'Bossier City, LA', - 1318550 => 'Shreveport, LA', - 1318559 => 'Lake Providence, LA', - 1318561 => 'Alexandria, LA', - 1318574 => 'Tallulah, LA', - 1318603 => 'Shreveport, LA', - 1318621 => 'Shreveport, LA', - 1318624 => 'Haynesville, LA', - 1318627 => 'Colfax, LA', - 1318628 => 'Winnfield, LA', - 1318629 => 'Shreveport, LA', - 1318631 => 'Shreveport, LA', - 1318632 => 'Shreveport, LA', - 1318635 => 'Shreveport, LA', - 1318636 => 'Shreveport, LA', - 1318640 => 'Pineville, LA', - 1318641 => 'Pineville, LA', - 1318644 => 'Calhoun, LA', - 1318645 => 'Zwolle, LA', - 1318648 => 'Winnfield, LA', - 1318649 => 'Columbia, LA', - 1318651 => 'Monroe, LA', - 1318654 => 'Monroe, LA', - 1318665 => 'Sterlington, LA', - 1318670 => 'Shreveport, LA', - 1318671 => 'Shreveport, LA', - 1318673 => 'Shreveport, LA', - 1318675 => 'Shreveport, LA', - 1318676 => 'Shreveport, LA', - 1318681 => 'Shreveport, LA', - 1318683 => 'Shreveport, LA', - 1318686 => 'Shreveport, LA', - 1318687 => 'Shreveport, LA', - 1318688 => 'Shreveport, LA', - 1318697 => 'Logansport, LA', - 1318728 => 'Rayville, LA', - 1318741 => 'Bossier City, LA', - 1318742 => 'Bossier City, LA', - 1318746 => 'Bossier City, LA', - 1318747 => 'Bossier City, LA', - 1318748 => 'Forest Hill, LA', - 1318752 => 'Bossier City, LA', - 1318757 => 'Ferriday, LA', - 1318766 => 'St. Joseph, LA', - 1318767 => 'Alexandria, LA', - 1318787 => 'Alexandria, LA', - 1318793 => 'Boyce, LA', - 1318795 => 'Shreveport, LA', - 1318797 => 'Shreveport, LA', - 1318798 => 'Shreveport, LA', - 1318813 => 'Shreveport, LA', - 1318828 => 'Shreveport, LA', - 1318841 => 'Shreveport, LA', - 1318855 => 'Monroe, LA', - 1318861 => 'Shreveport, LA', - 1318865 => 'Shreveport, LA', - 1318868 => 'Shreveport, LA', - 1318869 => 'Shreveport, LA', - 1318871 => 'Mansfield, LA', - 1318872 => 'Mansfield, LA', - 1318876 => 'Cottonport, LA', - 1318878 => 'Delhi, LA', - 1318894 => 'Ringgold, LA', - 1318925 => 'Keithville, LA', - 1318927 => 'Homer, LA', - 1318929 => 'Shreveport, LA', - 1318932 => 'Coushatta, LA', - 1318938 => 'Greenwood, LA', - 1318949 => 'Haughton, LA', - 1318965 => 'Benton, LA', - 1318966 => 'Monroe, LA', - 1318992 => 'Jena, LA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1319.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1319.php deleted file mode 100644 index 9ea904955..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1319.php +++ /dev/null @@ -1,109 +0,0 @@ - 'Iowa', - 1319232 => 'Waterloo, IA', - 1319233 => 'Waterloo, IA', - 1319234 => 'Waterloo, IA', - 1319235 => 'Waterloo, IA', - 1319236 => 'Waterloo, IA', - 1319247 => 'Cedar Rapids, IA', - 1319256 => 'Wayland, IA', - 1319261 => 'Cedar Rapids, IA', - 1319266 => 'Cedar Falls, IA', - 1319267 => 'Allison, IA', - 1319268 => 'Cedar Falls, IA', - 1319272 => 'Waterloo, IA', - 1319273 => 'Cedar Falls, IA', - 1319277 => 'Cedar Falls, IA', - 1319283 => 'Oelwein, IA', - 1319286 => 'Cedar Rapids, IA', - 1319287 => 'Waterloo, IA', - 1319291 => 'Waterloo, IA', - 1319293 => 'Keosauqua, IA', - 1319294 => 'Cedar Rapids, IA', - 1319296 => 'Waterloo, IA', - 1319334 => 'Independence, IA', - 1319335 => 'Iowa City, IA', - 1319337 => 'Iowa City, IA', - 1319338 => 'Iowa City, IA', - 1319339 => 'Iowa City, IA', - 1319341 => 'Iowa City, IA', - 1319342 => 'La Porte City, IA', - 1319346 => 'Parkersburg, IA', - 1319351 => 'Iowa City, IA', - 1319352 => 'Waverly, IA', - 1319353 => 'Iowa City, IA', - 1319354 => 'Iowa City, IA', - 1319356 => 'Iowa City, IA', - 1319358 => 'Iowa City, IA', - 1319362 => 'Cedar Rapids, IA', - 1319363 => 'Cedar Rapids, IA', - 1319364 => 'Cedar Rapids, IA', - 1319365 => 'Cedar Rapids, IA', - 1319366 => 'Cedar Rapids, IA', - 1319367 => 'New London, IA', - 1319368 => 'Cedar Rapids, IA', - 1319369 => 'Cedar Rapids, IA', - 1319372 => 'Fort Madison, IA', - 1319373 => 'Marion, IA', - 1319377 => 'Marion, IA', - 1319378 => 'Cedar Rapids, IA', - 1319384 => 'Iowa City, IA', - 1319385 => 'Mount Pleasant, IA', - 1319390 => 'Cedar Rapids, IA', - 1319393 => 'Cedar Rapids, IA', - 1319394 => 'Mediapolis, IA', - 1319395 => 'Cedar Rapids, IA', - 1319396 => 'Cedar Rapids, IA', - 1319398 => 'Cedar Rapids, IA', - 1319433 => 'Waterloo, IA', - 1319444 => 'Belle Plaine, IA', - 1319447 => 'Marion, IA', - 1319455 => 'Lisbon, IA', - 1319462 => 'Anamosa, IA', - 1319465 => 'Monticello, IA', - 1319472 => 'Vinton, IA', - 1319476 => 'Dysart, IA', - 1319478 => 'Traer, IA', - 1319523 => 'Wapello, IA', - 1319524 => 'Keokuk, IA', - 1319622 => 'Amana, IA', - 1319624 => 'Solon, IA', - 1319626 => 'North Liberty, IA', - 1319627 => 'West Liberty, IA', - 1319642 => 'Marengo, IA', - 1319643 => 'West Branch, IA', - 1319646 => 'Wellman, IA', - 1319647 => 'Victor, IA', - 1319648 => 'Riverside, IA', - 1319653 => 'Washington, IA', - 1319656 => 'Kalona, IA', - 1319665 => 'North Liberty, IA', - 1319668 => 'Williamsburg, IA', - 1319728 => 'Columbus Jct, IA', - 1319743 => 'Cedar Rapids, IA', - 1319752 => 'Burlington, IA', - 1319753 => 'Burlington, IA', - 1319754 => 'Burlington, IA', - 1319758 => 'Burlington, IA', - 1319768 => 'West Burlington, IA', - 1319824 => 'Grundy Center, IA', - 1319827 => 'Jesup, IA', - 1319833 => 'Waterloo, IA', - 1319835 => 'Donnellson, IA', - 1319837 => 'West Point, IA', - 1319846 => 'Fairfax, IA', - 1319849 => 'Center Point, IA', - 1319882 => 'Tripoli, IA', - 1319885 => 'Shell Rock, IA', - 1319887 => 'Iowa City, IA', - 1319895 => 'Mount Vernon, IA', - 1319984 => 'Denver, IA', - 1319986 => 'Mount Pleasant, IA', - 1319988 => 'Hudson, IA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1320.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1320.php deleted file mode 100644 index 0b3db360c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1320.php +++ /dev/null @@ -1,86 +0,0 @@ - 'Minnesota', - 1320202 => 'Saint Cloud, MN', - 1320203 => 'Saint Cloud, MN', - 1320214 => 'Willmar, MN', - 1320222 => 'Willmar, MN', - 1320229 => 'Saint Cloud, MN', - 1320231 => 'Willmar, MN', - 1320234 => 'Hutchinson, MN', - 1320235 => 'Willmar, MN', - 1320239 => 'Starbuck, MN', - 1320240 => 'Saint Cloud, MN', - 1320243 => 'Paynesville, MN', - 1320245 => 'Sandstone, MN', - 1320251 => 'Saint Cloud, MN', - 1320252 => 'Saint Cloud, MN', - 1320253 => 'Saint Cloud, MN', - 1320255 => 'Saint Cloud, MN', - 1320256 => 'Melrose, MN', - 1320258 => 'Saint Cloud, MN', - 1320259 => 'Saint Cloud, MN', - 1320269 => 'Montevideo, MN', - 1320274 => 'Annandale, MN', - 1320275 => 'Dassel, MN', - 1320286 => 'Cokato, MN', - 1320289 => 'Appleton, MN', - 1320352 => 'Sauk Centre, MN', - 1320354 => 'New London, MN', - 1320356 => 'Avon, MN', - 1320358 => 'Rush City, MN', - 1320363 => 'St. Joseph, MN', - 1320365 => 'Bird Island, MN', - 1320384 => 'Hinckley, MN', - 1320392 => 'Hancock, MN', - 1320393 => 'Rice, MN', - 1320396 => 'Braham, MN', - 1320398 => 'Kimball, MN', - 1320453 => 'Eden Valley, MN', - 1320468 => 'Pierz, MN', - 1320485 => 'Winsted, MN', - 1320523 => 'Olivia, MN', - 1320529 => 'Saint Cloud, MN', - 1320532 => 'Onamia, MN', - 1320543 => 'Howard Lake, MN', - 1320558 => 'Clearwater, MN', - 1320563 => 'Wheaton, MN', - 1320564 => 'Granite Falls, MN', - 1320587 => 'Hutchinson, MN', - 1320589 => 'Morris, MN', - 1320593 => 'Litchfield, MN', - 1320597 => 'Richmond, MN', - 1320598 => 'Madison, MN', - 1320629 => 'Pine City, MN', - 1320632 => 'Little Falls, MN', - 1320634 => 'Glenwood, MN', - 1320654 => 'Saint Cloud, MN', - 1320656 => 'Saint Cloud, MN', - 1320676 => 'Isle, MN', - 1320679 => 'Mora, MN', - 1320685 => 'Cold Spring, MN', - 1320693 => 'Litchfield, MN', - 1320732 => 'Long Prairie, MN', - 1320743 => 'Clear Lake, MN', - 1320759 => 'Alexandria, MN', - 1320762 => 'Alexandria, MN', - 1320763 => 'Alexandria, MN', - 1320769 => 'Dawson, MN', - 1320796 => 'Spicer, MN', - 1320839 => 'Ortonville, MN', - 1320843 => 'Benson, MN', - 1320845 => 'Albany, MN', - 1320847 => 'Clara City, MN', - 1320848 => 'Hector, MN', - 1320859 => 'Osakis, MN', - 1320864 => 'Glencoe, MN', - 1320963 => 'Maple Lake, MN', - 1320968 => 'Foley, MN', - 1320974 => 'Atwater, MN', - 1320983 => 'Milaca, MN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1321.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1321.php deleted file mode 100644 index 422fae374..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1321.php +++ /dev/null @@ -1,50 +0,0 @@ - 'Florida', - 1321235 => 'Orlando, FL', - 1321242 => 'Melbourne, FL', - 1321253 => 'Melbourne, FL', - 1321254 => 'Melbourne, FL', - 1321255 => 'Melbourne, FL', - 1321259 => 'Melbourne, FL', - 1321264 => 'Titusville, FL', - 1321267 => 'Titusville, FL', - 1321268 => 'Titusville, FL', - 1321269 => 'Titusville, FL', - 1321308 => 'Melbourne, FL', - 1321383 => 'Titusville, FL', - 1321385 => 'Titusville, FL', - 1321434 => 'Melbourne, FL', - 1321449 => 'Merritt Island, FL', - 1321452 => 'Merritt Island, FL', - 1321453 => 'Merritt Island, FL', - 1321454 => 'Merritt Island, FL', - 1321459 => 'Merritt Island, FL', - 1321473 => 'Melbourne, FL', - 1321610 => 'Melbourne, FL', - 1321622 => 'Melbourne, FL', - 1321631 => 'Cocoa, FL', - 1321632 => 'Cocoa, FL', - 1321636 => 'Cocoa, FL', - 1321638 => 'Cocoa, FL', - 1321639 => 'Cocoa, FL', - 1321674 => 'Melbourne, FL', - 1321725 => 'Melbourne, FL', - 1321733 => 'Melbourne, FL', - 1321751 => 'Melbourne, FL', - 1321752 => 'Melbourne, FL', - 1321757 => 'Melbourne, FL', - 1321783 => 'Cocoa Beach, FL', - 1321784 => 'Cocoa Beach, FL', - 1321799 => 'Cocoa Beach, FL', - 1321841 => 'Orlando, FL', - 1321843 => 'Orlando, FL', - 1321868 => 'Cocoa Beach, FL', - 1321939 => 'Kissimmee, FL', - 1321953 => 'Melbourne, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1323.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1323.php deleted file mode 100644 index 7dd200fd4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1323.php +++ /dev/null @@ -1,160 +0,0 @@ - 'California', - 1323221 => 'Los Angeles, CA', - 1323222 => 'Los Angeles, CA', - 1323223 => 'Los Angeles, CA', - 1323224 => 'Los Angeles, CA', - 1323225 => 'Los Angeles, CA', - 1323226 => 'Los Angeles, CA', - 1323227 => 'Los Angeles, CA', - 1323231 => 'Los Angeles, CA', - 1323232 => 'Los Angeles, CA', - 1323233 => 'Los Angeles, CA', - 1323234 => 'Los Angeles, CA', - 1323235 => 'Los Angeles, CA', - 1323238 => 'Los Angeles, CA', - 1323242 => 'Los Angeles, CA', - 1323249 => 'South Gate, CA', - 1323254 => 'Los Angeles, CA', - 1323255 => 'Los Angeles, CA', - 1323256 => 'Los Angeles, CA', - 1323257 => 'Los Angeles, CA', - 1323258 => 'Los Angeles, CA', - 1323259 => 'Los Angeles, CA', - 1323260 => 'Los Angeles, CA', - 1323261 => 'Los Angeles, CA', - 1323262 => 'Los Angeles, CA', - 1323263 => 'Los Angeles, CA', - 1323264 => 'Los Angeles, CA', - 1323265 => 'Los Angeles, CA', - 1323266 => 'Los Angeles, CA', - 1323267 => 'Los Angeles, CA', - 1323268 => 'Los Angeles, CA', - 1323269 => 'Los Angeles, CA', - 1323272 => 'Los Angeles, CA', - 1323290 => 'Los Angeles, CA', - 1323291 => 'Los Angeles, CA', - 1323292 => 'Los Angeles, CA', - 1323293 => 'Los Angeles, CA', - 1323294 => 'Los Angeles, CA', - 1323295 => 'Los Angeles, CA', - 1323296 => 'Los Angeles, CA', - 1323298 => 'Los Angeles, CA', - 1323299 => 'Los Angeles, CA', - 1323343 => 'Los Angeles, CA', - 1323344 => 'Los Angeles, CA', - 1323357 => 'South Gate, CA', - 1323361 => 'Los Angeles, CA', - 1323373 => 'Los Angeles, CA', - 1323409 => 'Los Angeles, CA', - 1323418 => 'Los Angeles, CA', - 1323441 => 'Los Angeles, CA', - 1323442 => 'Los Angeles, CA', - 1323460 => 'Los Angeles, CA', - 1323461 => 'Los Angeles, CA', - 1323462 => 'Los Angeles, CA', - 1323463 => 'Los Angeles, CA', - 1323464 => 'Los Angeles, CA', - 1323465 => 'Los Angeles, CA', - 1323466 => 'Los Angeles, CA', - 1323467 => 'Los Angeles, CA', - 1323469 => 'Los Angeles, CA', - 1323478 => 'Los Angeles, CA', - 1323512 => 'Los Angeles, CA', - 1323525 => 'Los Angeles, CA', - 1323526 => 'Los Angeles, CA', - 1323541 => 'Los Angeles, CA', - 1323549 => 'Los Angeles, CA', - 1323550 => 'Los Angeles, CA', - 1323556 => 'Beverly Hills, CA', - 1323563 => 'South Gate, CA', - 1323564 => 'South Gate, CA', - 1323566 => 'South Gate, CA', - 1323567 => 'South Gate, CA', - 1323569 => 'South Gate, CA', - 1323634 => 'Los Angeles, CA', - 1323644 => 'Los Angeles, CA', - 1323651 => 'Los Angeles, CA', - 1323653 => 'Los Angeles, CA', - 1323655 => 'Los Angeles, CA', - 1323656 => 'West Hollywood, CA', - 1323658 => 'Los Angeles, CA', - 1323660 => 'Los Angeles, CA', - 1323661 => 'Los Angeles, CA', - 1323662 => 'Los Angeles, CA', - 1323663 => 'Los Angeles, CA', - 1323664 => 'Los Angeles, CA', - 1323665 => 'Los Angeles, CA', - 1323666 => 'Los Angeles, CA', - 1323667 => 'Los Angeles, CA', - 1323668 => 'Los Angeles, CA', - 1323669 => 'Los Angeles, CA', - 1323692 => 'Los Angeles, CA', - 1323724 => 'Montebello, CA', - 1323728 => 'Montebello, CA', - 1323730 => 'Los Angeles, CA', - 1323731 => 'Los Angeles, CA', - 1323732 => 'Los Angeles, CA', - 1323733 => 'Los Angeles, CA', - 1323734 => 'Los Angeles, CA', - 1323735 => 'Los Angeles, CA', - 1323737 => 'Los Angeles, CA', - 1323750 => 'Los Angeles, CA', - 1323751 => 'Los Angeles, CA', - 1323752 => 'Los Angeles, CA', - 1323753 => 'Los Angeles, CA', - 1323754 => 'Los Angeles, CA', - 1323755 => 'Los Angeles, CA', - 1323756 => 'Los Angeles, CA', - 1323757 => 'Los Angeles, CA', - 1323758 => 'Los Angeles, CA', - 1323759 => 'Los Angeles, CA', - 1323766 => 'Los Angeles, CA', - 1323777 => 'Los Angeles, CA', - 1323778 => 'Los Angeles, CA', - 1323779 => 'Los Angeles, CA', - 1323780 => 'Los Angeles, CA', - 1323782 => 'Los Angeles, CA', - 1323783 => 'Los Angeles, CA', - 1323846 => 'Los Angeles, CA', - 1323850 => 'Los Angeles, CA', - 1323851 => 'Los Angeles, CA', - 1323852 => 'Los Angeles, CA', - 1323857 => 'Los Angeles, CA', - 1323860 => 'Los Angeles, CA', - 1323865 => 'Los Angeles, CA', - 1323871 => 'Los Angeles, CA', - 1323874 => 'Los Angeles, CA', - 1323876 => 'Los Angeles, CA', - 1323881 => 'Los Angeles, CA', - 1323906 => 'Los Angeles, CA', - 1323913 => 'Los Angeles, CA', - 1323930 => 'Los Angeles, CA', - 1323931 => 'Los Angeles, CA', - 1323932 => 'Los Angeles, CA', - 1323933 => 'Los Angeles, CA', - 1323934 => 'Los Angeles, CA', - 1323935 => 'Los Angeles, CA', - 1323936 => 'Los Angeles, CA', - 1323937 => 'Los Angeles, CA', - 1323938 => 'Los Angeles, CA', - 1323939 => 'Los Angeles, CA', - 1323944 => 'Los Angeles, CA', - 1323951 => 'Los Angeles, CA', - 1323953 => 'Los Angeles, CA', - 1323954 => 'Los Angeles, CA', - 1323957 => 'Los Angeles, CA', - 1323960 => 'Los Angeles, CA', - 1323962 => 'Los Angeles, CA', - 1323965 => 'Los Angeles, CA', - 1323969 => 'Los Angeles, CA', - 1323971 => 'Los Angeles, CA', - 1323980 => 'Los Angeles, CA', - 1323982 => 'Los Angeles, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1325.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1325.php deleted file mode 100644 index 84f9b29e6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1325.php +++ /dev/null @@ -1,73 +0,0 @@ - 'Texas', - 1325223 => 'San Angelo, TX', - 1325224 => 'San Angelo, TX', - 1325227 => 'San Angelo, TX', - 1325232 => 'Abilene, TX', - 1325235 => 'Sweetwater, TX', - 1325236 => 'Sweetwater, TX', - 1325247 => 'Llano, TX', - 1325347 => 'Mason, TX', - 1325356 => 'Comanche, TX', - 1325365 => 'Ballinger, TX', - 1325372 => 'San Saba, TX', - 1325387 => 'Sonora, TX', - 1325388 => 'Kingsland, TX', - 1325392 => 'Ozona, TX', - 1325396 => 'Menard, TX', - 1325437 => 'Abilene, TX', - 1325446 => 'Junction, TX', - 1325481 => 'San Angelo, TX', - 1325486 => 'San Angelo, TX', - 1325529 => 'Abilene, TX', - 1325572 => 'Buffalo Gap, TX', - 1325573 => 'Snyder, TX', - 1325574 => 'Snyder, TX', - 1325576 => 'Hamlin, TX', - 1325597 => 'Brady, TX', - 1325617 => 'San Angelo, TX', - 1325625 => 'Coleman, TX', - 1325641 => 'Brownwood, TX', - 1325643 => 'Brownwood, TX', - 1325646 => 'Brownwood, TX', - 1325648 => 'Goldthwaite, TX', - 1325651 => 'San Angelo, TX', - 1325653 => 'San Angelo, TX', - 1325655 => 'San Angelo, TX', - 1325657 => 'San Angelo, TX', - 1325658 => 'San Angelo, TX', - 1325659 => 'San Angelo, TX', - 1325670 => 'Abilene, TX', - 1325672 => 'Abilene, TX', - 1325673 => 'Abilene, TX', - 1325675 => 'Abilene, TX', - 1325676 => 'Abilene, TX', - 1325677 => 'Abilene, TX', - 1325690 => 'Abilene, TX', - 1325691 => 'Abilene, TX', - 1325692 => 'Abilene, TX', - 1325695 => 'Abilene, TX', - 1325698 => 'Abilene, TX', - 1325728 => 'Colorado City, TX', - 1325754 => 'Winters, TX', - 1325762 => 'Albany, TX', - 1325773 => 'Stamford, TX', - 1325793 => 'Abilene, TX', - 1325795 => 'Abilene, TX', - 1325823 => 'Anson, TX', - 1325853 => 'Eldorado, TX', - 1325854 => 'Baird, TX', - 1325884 => 'Big Lake, TX', - 1325893 => 'Clyde, TX', - 1325928 => 'Merkel, TX', - 1325942 => 'San Angelo, TX', - 1325944 => 'San Angelo, TX', - 1325947 => 'San Angelo, TX', - 1325949 => 'San Angelo, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1330.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1330.php deleted file mode 100644 index ec0e8389d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1330.php +++ /dev/null @@ -1,228 +0,0 @@ - 'Ohio', - 1330220 => 'Brunswick, OH', - 1330225 => 'Brunswick, OH', - 1330239 => 'Medina, OH', - 1330244 => 'North Canton, OH', - 1330247 => 'Akron, OH', - 1330252 => 'Akron, OH', - 1330253 => 'Akron, OH', - 1330259 => 'Youngstown, OH', - 1330262 => 'Wooster, OH', - 1330263 => 'Wooster, OH', - 1330264 => 'Wooster, OH', - 1330270 => 'Youngstown, OH', - 1330273 => 'Brunswick, OH', - 1330274 => 'Mantua, OH', - 1330286 => 'Canfield, OH', - 1330287 => 'Wooster, OH', - 1330296 => 'Ravenna, OH', - 1330297 => 'Ravenna, OH', - 1330305 => 'North Canton, OH', - 1330308 => 'New Philadelphia, OH', - 1330325 => 'Rootstown, OH', - 1330331 => 'Wadsworth, OH', - 1330332 => 'Salem, OH', - 1330334 => 'Wadsworth, OH', - 1330335 => 'Wadsworth, OH', - 1330336 => 'Wadsworth, OH', - 1330337 => 'Salem, OH', - 1330339 => 'New Philadelphia, OH', - 1330342 => 'Hudson, OH', - 1330343 => 'Dover, OH', - 1330344 => 'Akron, OH', - 1330345 => 'Wooster, OH', - 1330363 => 'Canton, OH', - 1330364 => 'Dover, OH', - 1330369 => 'Warren, OH', - 1330372 => 'Warren, OH', - 1330373 => 'Warren, OH', - 1330374 => 'Akron, OH', - 1330375 => 'Akron, OH', - 1330376 => 'Akron, OH', - 1330379 => 'Akron, OH', - 1330384 => 'Akron, OH', - 1330385 => 'East Liverpool, OH', - 1330386 => 'East Liverpool, OH', - 1330392 => 'Warren, OH', - 1330393 => 'Warren, OH', - 1330394 => 'Warren, OH', - 1330395 => 'Warren, OH', - 1330399 => 'Warren, OH', - 1330405 => 'Twinsburg, OH', - 1330422 => 'Streetsboro, OH', - 1330424 => 'Lisbon, OH', - 1330425 => 'Twinsburg, OH', - 1330426 => 'East Palestine, OH', - 1330427 => 'Leetonia, OH', - 1330433 => 'North Canton, OH', - 1330434 => 'Akron, OH', - 1330435 => 'Creston, OH', - 1330438 => 'Canton, OH', - 1330448 => 'Brookfield, OH', - 1330451 => 'Canton, OH', - 1330452 => 'Canton, OH', - 1330453 => 'Canton, OH', - 1330454 => 'Canton, OH', - 1330455 => 'Canton, OH', - 1330456 => 'Canton, OH', - 1330467 => 'Northfield, OH', - 1330477 => 'Canton, OH', - 1330478 => 'Canton, OH', - 1330479 => 'Canton, OH', - 1330480 => 'Youngstown, OH', - 1330482 => 'Columbiana, OH', - 1330483 => 'Valley City, OH', - 1330484 => 'Canton, OH', - 1330487 => 'Twinsburg, OH', - 1330488 => 'Canton, OH', - 1330489 => 'Canton, OH', - 1330491 => 'Canton, OH', - 1330492 => 'Canton, OH', - 1330493 => 'Canton, OH', - 1330494 => 'North Canton, OH', - 1330497 => 'North Canton, OH', - 1330498 => 'North Canton, OH', - 1330499 => 'North Canton, OH', - 1330505 => 'Niles, OH', - 1330527 => 'Garrettsville, OH', - 1330532 => 'Wellsville, OH', - 1330533 => 'Canfield, OH', - 1330534 => 'Hubbard, OH', - 1330535 => 'Akron, OH', - 1330536 => 'Lowellville, OH', - 1330538 => 'North Jackson, OH', - 1330539 => 'Girard, OH', - 1330542 => 'New Middletown, OH', - 1330543 => 'Akron, OH', - 1330544 => 'Niles, OH', - 1330545 => 'Girard, OH', - 1330549 => 'North Lima, OH', - 1330562 => 'Aurora, OH', - 1330567 => 'Shreve, OH', - 1330602 => 'Dover, OH', - 1330609 => 'Warren, OH', - 1330626 => 'Streetsboro, OH', - 1330627 => 'Carrollton, OH', - 1330628 => 'Mogadore, OH', - 1330629 => 'Youngstown, OH', - 1330633 => 'Tallmadge, OH', - 1330637 => 'Cortland, OH', - 1330638 => 'Cortland, OH', - 1330644 => 'Akron, OH', - 1330645 => 'Akron, OH', - 1330650 => 'Hudson, OH', - 1330652 => 'Niles, OH', - 1330653 => 'Hudson, OH', - 1330655 => 'Hudson, OH', - 1330656 => 'Hudson, OH', - 1330658 => 'Doylestown, OH', - 1330659 => 'Richfield, OH', - 1330669 => 'Smithville, OH', - 1330670 => 'Akron, OH', - 1330673 => 'Kent, OH', - 1330674 => 'Millersburg, OH', - 1330676 => 'Kent, OH', - 1330677 => 'Kent, OH', - 1330678 => 'Kent, OH', - 1330682 => 'Orrville, OH', - 1330683 => 'Orrville, OH', - 1330684 => 'Orrville, OH', - 1330686 => 'Stow, OH', - 1330688 => 'Stow, OH', - 1330698 => 'Apple Creek, OH', - 1330699 => 'Uniontown, OH', - 1330702 => 'Canfield, OH', - 1330721 => 'Medina, OH', - 1330722 => 'Medina, OH', - 1330723 => 'Medina, OH', - 1330724 => 'Akron, OH', - 1330725 => 'Medina, OH', - 1330726 => 'Youngstown, OH', - 1330729 => 'Youngstown, OH', - 1330733 => 'Akron, OH', - 1330740 => 'Youngstown, OH', - 1330742 => 'Youngstown, OH', - 1330743 => 'Youngstown, OH', - 1330744 => 'Youngstown, OH', - 1330745 => 'Barberton, OH', - 1330746 => 'Youngstown, OH', - 1330747 => 'Youngstown, OH', - 1330752 => 'Akron, OH', - 1330755 => 'Struthers, OH', - 1330757 => 'Youngstown, OH', - 1330758 => 'Youngstown, OH', - 1330759 => 'Youngstown, OH', - 1330762 => 'Akron, OH', - 1330764 => 'Medina, OH', - 1330769 => 'Seville, OH', - 1330773 => 'Akron, OH', - 1330782 => 'Youngstown, OH', - 1330783 => 'Youngstown, OH', - 1330784 => 'Akron, OH', - 1330785 => 'Akron, OH', - 1330788 => 'Youngstown, OH', - 1330792 => 'Youngstown, OH', - 1330793 => 'Youngstown, OH', - 1330794 => 'Akron, OH', - 1330797 => 'Youngstown, OH', - 1330798 => 'Akron, OH', - 1330799 => 'Youngstown, OH', - 1330821 => 'Alliance, OH', - 1330823 => 'Alliance, OH', - 1330825 => 'Norton, OH', - 1330828 => 'Dalton, OH', - 1330829 => 'Alliance, OH', - 1330830 => 'Massillon, OH', - 1330832 => 'Massillon, OH', - 1330833 => 'Massillon, OH', - 1330834 => 'Massillon, OH', - 1330835 => 'Akron, OH', - 1330836 => 'Akron, OH', - 1330837 => 'Massillon, OH', - 1330841 => 'Warren, OH', - 1330847 => 'Warren, OH', - 1330852 => 'Sugarcreek, OH', - 1330854 => 'Canal Fulton, OH', - 1330856 => 'Warren, OH', - 1330863 => 'Malvern, OH', - 1330864 => 'Akron, OH', - 1330865 => 'Akron, OH', - 1330867 => 'Akron, OH', - 1330868 => 'Minerva, OH', - 1330869 => 'Akron, OH', - 1330872 => 'Newton Falls, OH', - 1330874 => 'Bolivar, OH', - 1330875 => 'Louisville, OH', - 1330876 => 'Kinsman, OH', - 1330877 => 'Hartville, OH', - 1330878 => 'Strasburg, OH', - 1330879 => 'Navarre, OH', - 1330884 => 'Youngstown, OH', - 1330889 => 'Bristolville, OH', - 1330897 => 'Baltic, OH', - 1330898 => 'Warren, OH', - 1330920 => 'Cuyahoga Falls, OH', - 1330922 => 'Cuyahoga Falls, OH', - 1330923 => 'Cuyahoga Falls, OH', - 1330925 => 'Rittman, OH', - 1330926 => 'Cuyahoga Falls, OH', - 1330928 => 'Cuyahoga Falls, OH', - 1330929 => 'Cuyahoga Falls, OH', - 1330938 => 'Sebring, OH', - 1330945 => 'Cuyahoga Falls, OH', - 1330948 => 'Lodi, OH', - 1330952 => 'Medina, OH', - 1330953 => 'Youngstown, OH', - 1330963 => 'Twinsburg, OH', - 1330965 => 'Youngstown, OH', - 1330966 => 'North Canton, OH', - 1330971 => 'Cuyahoga Falls, OH', - 1330995 => 'Aurora, OH', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1331.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1331.php deleted file mode 100644 index 152413435..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1331.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Illinois', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1334.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1334.php deleted file mode 100644 index 7aad06711..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1334.php +++ /dev/null @@ -1,133 +0,0 @@ - 'Alabama', - 1334209 => 'Auburn, AL', - 1334213 => 'Montgomery, AL', - 1334215 => 'Montgomery, AL', - 1334222 => 'Andalusia, AL', - 1334239 => 'Montgomery, AL', - 1334240 => 'Montgomery, AL', - 1334241 => 'Montgomery, AL', - 1334242 => 'Montgomery, AL', - 1334244 => 'Montgomery, AL', - 1334260 => 'Montgomery, AL', - 1334262 => 'Montgomery, AL', - 1334263 => 'Montgomery, AL', - 1334264 => 'Montgomery, AL', - 1334265 => 'Montgomery, AL', - 1334269 => 'Montgomery, AL', - 1334270 => 'Montgomery, AL', - 1334271 => 'Montgomery, AL', - 1334272 => 'Montgomery, AL', - 1334273 => 'Montgomery, AL', - 1334277 => 'Montgomery, AL', - 1334279 => 'Montgomery, AL', - 1334280 => 'Montgomery, AL', - 1334281 => 'Montgomery, AL', - 1334283 => 'Tallassee, AL', - 1334284 => 'Montgomery, AL', - 1334285 => 'Millbrook, AL', - 1334286 => 'Montgomery, AL', - 1334287 => 'Demopolis, AL', - 1334288 => 'Montgomery, AL', - 1334289 => 'Demopolis, AL', - 1334290 => 'Millbrook, AL', - 1334291 => 'Phenix City, AL', - 1334293 => 'Montgomery, AL', - 1334295 => 'Linden, AL', - 1334297 => 'Phenix City, AL', - 1334298 => 'Phenix City, AL', - 1334308 => 'Enterprise, AL', - 1334335 => 'Luverne, AL', - 1334347 => 'Enterprise, AL', - 1334356 => 'Montgomery, AL', - 1334358 => 'Prattville, AL', - 1334361 => 'Prattville, AL', - 1334365 => 'Prattville, AL', - 1334366 => 'Maplesville, AL', - 1334371 => 'Greenville, AL', - 1334376 => 'Georgiana, AL', - 1334382 => 'Greenville, AL', - 1334386 => 'Montgomery, AL', - 1334393 => 'Enterprise, AL', - 1334395 => 'Montgomery, AL', - 1334396 => 'Montgomery, AL', - 1334409 => 'Montgomery, AL', - 1334427 => 'Andalusia, AL', - 1334445 => 'Ozark, AL', - 1334448 => 'Phenix City, AL', - 1334480 => 'Phenix City, AL', - 1334491 => 'Prattville, AL', - 1334493 => 'Opp, AL', - 1334501 => 'Auburn, AL', - 1334502 => 'Auburn, AL', - 1334514 => 'Wetumpka, AL', - 1334541 => 'Eclectic, AL', - 1334548 => 'Hayneville, AL', - 1334566 => 'Troy, AL', - 1334567 => 'Wetumpka, AL', - 1334576 => 'Lanett, AL', - 1334585 => 'Abbeville, AL', - 1334588 => 'Hartford, AL', - 1334593 => 'Montgomery, AL', - 1334598 => 'Daleville, AL', - 1334613 => 'Montgomery, AL', - 1334624 => 'Greensboro, AL', - 1334628 => 'Uniontown, AL', - 1334636 => 'Thomasville, AL', - 1334644 => 'Lanett, AL', - 1334649 => 'Montgomery, AL', - 1334670 => 'Troy, AL', - 1334671 => 'Dothan, AL', - 1334673 => 'Dothan, AL', - 1334677 => 'Dothan, AL', - 1334678 => 'Dothan, AL', - 1334682 => 'Camden, AL', - 1334683 => 'Marion, AL', - 1334684 => 'Geneva, AL', - 1334687 => 'Eufaula, AL', - 1334692 => 'Newton, AL', - 1334693 => 'Headland, AL', - 1334699 => 'Dothan, AL', - 1334702 => 'Dothan, AL', - 1334705 => 'Opelika, AL', - 1334712 => 'Dothan, AL', - 1334727 => 'Tuskegee, AL', - 1334735 => 'Brundidge, AL', - 1334737 => 'Opelika, AL', - 1334738 => 'Union Springs, AL', - 1334741 => 'Opelika, AL', - 1334742 => 'Opelika, AL', - 1334745 => 'Opelika, AL', - 1334749 => 'Opelika, AL', - 1334756 => 'Valley, AL', - 1334768 => 'Valley, AL', - 1334774 => 'Ozark, AL', - 1334775 => 'Clayton, AL', - 1334792 => 'Dothan, AL', - 1334793 => 'Dothan, AL', - 1334794 => 'Dothan, AL', - 1334819 => 'Montgomery, AL', - 1334821 => 'Auburn, AL', - 1334826 => 'Auburn, AL', - 1334832 => 'Montgomery, AL', - 1334834 => 'Montgomery, AL', - 1334844 => 'Auburn, AL', - 1334858 => 'Florala, AL', - 1334863 => 'Roanoke, AL', - 1334864 => 'La Fayette, AL', - 1334872 => 'Selma, AL', - 1334874 => 'Selma, AL', - 1334875 => 'Selma, AL', - 1334886 => 'Slocomb, AL', - 1334887 => 'Auburn, AL', - 1334894 => 'New Brockton, AL', - 1334897 => 'Elba, AL', - 1334898 => 'Samson, AL', - 1334899 => 'Ashford, AL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1336.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1336.php deleted file mode 100644 index 5254cd8ee..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1336.php +++ /dev/null @@ -1,206 +0,0 @@ - 'North Carolina', - 1336218 => 'Greensboro, NC', - 1336222 => 'Burlington, NC', - 1336224 => 'Lexington, NC', - 1336226 => 'Burlington, NC', - 1336227 => 'Burlington, NC', - 1336228 => 'Burlington, NC', - 1336229 => 'Burlington, NC', - 1336230 => 'Greensboro, NC', - 1336235 => 'Greensboro, NC', - 1336236 => 'Lexington, NC', - 1336242 => 'Lexington, NC', - 1336243 => 'Lexington, NC', - 1336245 => 'Winston-Salem, NC', - 1336246 => 'West Jefferson, NC', - 1336248 => 'Lexington, NC', - 1336249 => 'Lexington, NC', - 1336251 => 'Winston-Salem, NC', - 1336270 => 'Burlington, NC', - 1336271 => 'Greensboro, NC', - 1336272 => 'Greensboro, NC', - 1336273 => 'Greensboro, NC', - 1336274 => 'Greensboro, NC', - 1336275 => 'Greensboro, NC', - 1336277 => 'Winston-Salem, NC', - 1336282 => 'Greensboro, NC', - 1336284 => 'Mocksville, NC', - 1336285 => 'Greensboro, NC', - 1336286 => 'Greensboro, NC', - 1336288 => 'Greensboro, NC', - 1336292 => 'Greensboro, NC', - 1336293 => 'Winston-Salem, NC', - 1336294 => 'Greensboro, NC', - 1336297 => 'Greensboro, NC', - 1336299 => 'Greensboro, NC', - 1336310 => 'Kernersville, NC', - 1336315 => 'Greensboro, NC', - 1336316 => 'Greensboro, NC', - 1336318 => 'Asheboro, NC', - 1336322 => 'Roxboro, NC', - 1336333 => 'Greensboro, NC', - 1336334 => 'Greensboro, NC', - 1336342 => 'Reidsville, NC', - 1336349 => 'Reidsville, NC', - 1336357 => 'Lexington, NC', - 1336358 => 'Greensboro, NC', - 1336368 => 'Pilot Mountain, NC', - 1336370 => 'Greensboro, NC', - 1336372 => 'Sparta, NC', - 1336373 => 'Greensboro, NC', - 1336375 => 'Greensboro, NC', - 1336377 => 'Winston-Salem, NC', - 1336378 => 'Greensboro, NC', - 1336379 => 'Greensboro, NC', - 1336384 => 'Lansing, NC', - 1336386 => 'Dobson, NC', - 1336387 => 'Greensboro, NC', - 1336389 => 'Greensboro, NC', - 1336427 => 'Madison, NC', - 1336454 => 'Jamestown, NC', - 1336463 => 'Yadkinville, NC', - 1336468 => 'Hamptonville, NC', - 1336472 => 'Thomasville, NC', - 1336474 => 'Thomasville, NC', - 1336475 => 'Thomasville, NC', - 1336476 => 'Thomasville, NC', - 1336492 => 'Mocksville, NC', - 1336495 => 'Randleman, NC', - 1336498 => 'Randleman, NC', - 1336499 => 'Winston-Salem, NC', - 1336510 => 'Greensboro, NC', - 1336526 => 'Elkin, NC', - 1336538 => 'Burlington, NC', - 1336540 => 'Greensboro, NC', - 1336545 => 'Greensboro, NC', - 1336547 => 'Greensboro, NC', - 1336548 => 'Madison, NC', - 1336570 => 'Burlington, NC', - 1336573 => 'Stoneville, NC', - 1336574 => 'Greensboro, NC', - 1336584 => 'Burlington, NC', - 1336585 => 'Burlington, NC', - 1336586 => 'Burlington, NC', - 1336591 => 'Walnut Cove, NC', - 1336593 => 'Danbury, NC', - 1336595 => 'Walkertown, NC', - 1336597 => 'Roxboro, NC', - 1336599 => 'Roxboro, NC', - 1336605 => 'Greensboro, NC', - 1336617 => 'Greensboro, NC', - 1336621 => 'Greensboro, NC', - 1336622 => 'Liberty, NC', - 1336623 => 'Eden, NC', - 1336625 => 'Asheboro, NC', - 1336626 => 'Asheboro, NC', - 1336627 => 'Eden, NC', - 1336629 => 'Asheboro, NC', - 1336631 => 'Winston-Salem, NC', - 1336632 => 'Greensboro, NC', - 1336633 => 'Asheboro, NC', - 1336634 => 'Reidsville, NC', - 1336635 => 'Eden, NC', - 1336641 => 'Greensboro, NC', - 1336651 => 'North Wilkesboro, NC', - 1336656 => 'Browns Summit, NC', - 1336659 => 'Winston-Salem, NC', - 1336661 => 'Winston-Salem, NC', - 1336665 => 'Greensboro, NC', - 1336667 => 'North Wilkesboro, NC', - 1336668 => 'Greensboro, NC', - 1336672 => 'Asheboro, NC', - 1336676 => 'Greensboro, NC', - 1336677 => 'Yadkinville, NC', - 1336679 => 'Yadkinville, NC', - 1336691 => 'Greensboro, NC', - 1336694 => 'Yanceyville, NC', - 1336696 => 'North Wilkesboro, NC', - 1336699 => 'East Bend, NC', - 1336703 => 'Winston-Salem, NC', - 1336712 => 'Clemmons, NC', - 1336713 => 'Winston-Salem, NC', - 1336716 => 'Winston-Salem, NC', - 1336718 => 'Winston-Salem, NC', - 1336719 => 'Mount Airy, NC', - 1336721 => 'Winston-Salem, NC', - 1336722 => 'Winston-Salem, NC', - 1336723 => 'Winston-Salem, NC', - 1336724 => 'Winston-Salem, NC', - 1336725 => 'Winston-Salem, NC', - 1336727 => 'Winston-Salem, NC', - 1336731 => 'Lexington, NC', - 1336744 => 'Winston-Salem, NC', - 1336748 => 'Winston-Salem, NC', - 1336751 => 'Mocksville, NC', - 1336753 => 'Mocksville, NC', - 1336759 => 'Winston-Salem, NC', - 1336760 => 'Winston-Salem, NC', - 1336761 => 'Winston-Salem, NC', - 1336764 => 'Winston-Salem, NC', - 1336765 => 'Winston-Salem, NC', - 1336766 => 'Clemmons, NC', - 1336767 => 'Winston-Salem, NC', - 1336768 => 'Winston-Salem, NC', - 1336769 => 'Winston-Salem, NC', - 1336771 => 'Winston-Salem, NC', - 1336774 => 'Winston-Salem, NC', - 1336777 => 'Winston-Salem, NC', - 1336778 => 'Clemmons, NC', - 1336784 => 'Winston-Salem, NC', - 1336785 => 'Winston-Salem, NC', - 1336786 => 'Mount Airy, NC', - 1336787 => 'Lexington, NC', - 1336788 => 'Winston-Salem, NC', - 1336789 => 'Mount Airy, NC', - 1336790 => 'Greensboro, NC', - 1336793 => 'Winston-Salem, NC', - 1336794 => 'Winston-Salem, NC', - 1336798 => 'Lexington, NC', - 1336802 => 'High Point, NC', - 1336812 => 'High Point, NC', - 1336824 => 'Ramseur, NC', - 1336832 => 'Greensboro, NC', - 1336834 => 'Greensboro, NC', - 1336835 => 'Elkin, NC', - 1336838 => 'North Wilkesboro, NC', - 1336841 => 'High Point, NC', - 1336846 => 'West Jefferson, NC', - 1336851 => 'Greensboro, NC', - 1336852 => 'Greensboro, NC', - 1336854 => 'Greensboro, NC', - 1336855 => 'Greensboro, NC', - 1336856 => 'Greensboro, NC', - 1336859 => 'Denton, NC', - 1336869 => 'High Point, NC', - 1336873 => 'Seagrove, NC', - 1336878 => 'High Point, NC', - 1336882 => 'High Point, NC', - 1336883 => 'High Point, NC', - 1336884 => 'High Point, NC', - 1336885 => 'High Point, NC', - 1336886 => 'High Point, NC', - 1336887 => 'High Point, NC', - 1336889 => 'High Point, NC', - 1336896 => 'Winston-Salem, NC', - 1336903 => 'North Wilkesboro, NC', - 1336922 => 'Winston-Salem, NC', - 1336924 => 'Winston-Salem, NC', - 1336940 => 'Advance, NC', - 1336945 => 'Lewisville, NC', - 1336956 => 'Lexington, NC', - 1336969 => 'Rural Hall, NC', - 1336973 => 'Wilkesboro, NC', - 1336983 => 'King, NC', - 1336985 => 'King, NC', - 1336992 => 'Kernersville, NC', - 1336993 => 'Kernersville, NC', - 1336996 => 'Kernersville, NC', - 1336998 => 'Advance, NC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1337.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1337.php deleted file mode 100644 index a7bbbfba5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1337.php +++ /dev/null @@ -1,118 +0,0 @@ - 'Louisiana', - 1337205 => 'Lafayette, LA', - 1337216 => 'Lafayette, LA', - 1337217 => 'Lake Charles, LA', - 1337229 => 'Loreauville, LA', - 1337232 => 'Lafayette, LA', - 1337233 => 'Lafayette, LA', - 1337234 => 'Lafayette, LA', - 1337235 => 'Lafayette, LA', - 1337236 => 'Lafayette, LA', - 1337237 => 'Lafayette, LA', - 1337238 => 'Leesville, LA', - 1337239 => 'Leesville, LA', - 1337261 => 'Lafayette, LA', - 1337262 => 'Lafayette, LA', - 1337264 => 'Lafayette, LA', - 1337266 => 'Lafayette, LA', - 1337267 => 'Lafayette, LA', - 1337269 => 'Lafayette, LA', - 1337276 => 'Jeanerette, LA', - 1337289 => 'Lafayette, LA', - 1337291 => 'Lafayette, LA', - 1337310 => 'Lake Charles, LA', - 1337332 => 'Breaux Bridge, LA', - 1337334 => 'Rayne, LA', - 1337363 => 'Ville Platte, LA', - 1337364 => 'New Iberia, LA', - 1337365 => 'New Iberia, LA', - 1337367 => 'New Iberia, LA', - 1337369 => 'New Iberia, LA', - 1337392 => 'Leesville, LA', - 1337394 => 'Saint Martinville, LA', - 1337406 => 'Lafayette, LA', - 1337407 => 'Opelousas, LA', - 1337433 => 'Lake Charles, LA', - 1337436 => 'Lake Charles, LA', - 1337437 => 'Lake Charles, LA', - 1337439 => 'Lake Charles, LA', - 1337456 => 'Lafayette, LA', - 1337457 => 'Eunice, LA', - 1337462 => 'DeRidder, LA', - 1337463 => 'DeRidder, LA', - 1337468 => 'Mamou, LA', - 1337474 => 'Lake Charles, LA', - 1337475 => 'Lake Charles, LA', - 1337477 => 'Lake Charles, LA', - 1337478 => 'Lake Charles, LA', - 1337479 => 'Lake Charles, LA', - 1337480 => 'Lake Charles, LA', - 1337491 => 'Lake Charles, LA', - 1337494 => 'Lake Charles, LA', - 1337504 => 'Lafayette, LA', - 1337521 => 'Lafayette, LA', - 1337527 => 'Sulphur, LA', - 1337528 => 'Sulphur, LA', - 1337531 => 'Fort Polk, LA', - 1337534 => 'Lafayette, LA', - 1337536 => 'Gueydan, LA', - 1337537 => 'Leesville, LA', - 1337546 => 'Eunice, LA', - 1337560 => 'New Iberia, LA', - 1337562 => 'Lake Charles, LA', - 1337564 => 'Lake Charles, LA', - 1337582 => 'Iowa, LA', - 1337583 => 'Sulphur, LA', - 1337585 => 'Port Barre, LA', - 1337589 => 'Vinton, LA', - 1337593 => 'Lafayette, LA', - 1337625 => 'Sulphur, LA', - 1337626 => 'Sulphur, LA', - 1337639 => 'Oberlin, LA', - 1337643 => 'Kaplan, LA', - 1337662 => 'Sunset, LA', - 1337684 => 'Church Point, LA', - 1337685 => 'Delcambre, LA', - 1337706 => 'Lafayette, LA', - 1337721 => 'Lake Charles, LA', - 1337725 => 'Ragley, LA', - 1337734 => 'Welsh, LA', - 1337738 => 'Kinder, LA', - 1337754 => 'Arnaudville, LA', - 1337769 => 'Lafayette, LA', - 1337774 => 'Lake Arthur, LA', - 1337775 => 'Cameron, LA', - 1337783 => 'Crowley, LA', - 1337786 => 'DeQuincy, LA', - 1337788 => 'Crowley, LA', - 1337824 => 'Jennings, LA', - 1337828 => 'Franklin, LA', - 1337837 => 'Broussard, LA', - 1337839 => 'Broussard, LA', - 1337855 => 'Lake Charles, LA', - 1337856 => 'Youngsville, LA', - 1337857 => 'Youngsville, LA', - 1337873 => 'Duson, LA', - 1337882 => 'Westlake, LA', - 1337886 => 'Carencro, LA', - 1337893 => 'Abbeville, LA', - 1337896 => 'Carencro, LA', - 1337898 => 'Abbeville, LA', - 1337923 => 'Baldwin, LA', - 1337937 => 'Erath, LA', - 1337942 => 'Opelousas, LA', - 1337948 => 'Opelousas, LA', - 1337981 => 'Lafayette, LA', - 1337984 => 'Lafayette, LA', - 1337988 => 'Lafayette, LA', - 1337989 => 'Lafayette, LA', - 1337991 => 'Lafayette, LA', - 1337993 => 'Lafayette, LA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1339.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1339.php deleted file mode 100644 index cf61ba56d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1339.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Massachusetts', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1345.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1345.php deleted file mode 100644 index 52e8df0b2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1345.php +++ /dev/null @@ -1,9 +0,0 @@ - 'George Town', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1346.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1346.php deleted file mode 100644 index 05d4b5ac0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1346.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Texas', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1347.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1347.php deleted file mode 100644 index b418efc67..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1347.php +++ /dev/null @@ -1,41 +0,0 @@ - 'New York', - 1347221 => 'Brooklyn, NY', - 1347240 => 'Brooklyn, NY', - 1347270 => 'Bronx, NY', - 1347271 => 'Bronx, NY', - 1347281 => 'Bronx, NY', - 1347295 => 'Brooklyn, NY', - 1347346 => 'Bronx, NY', - 1347350 => 'Brooklyn, NY', - 1347365 => 'Brooklyn, NY', - 1347406 => 'Brooklyn, NY', - 1347425 => 'Brooklyn, NY', - 1347442 => 'Brooklyn, NY', - 1347462 => 'Brooklyn, NY', - 1347492 => 'Brooklyn, NY', - 1347529 => 'Brooklyn, NY', - 1347533 => 'Brooklyn, NY', - 1347577 => 'Bronx, NY', - 1347587 => 'Brooklyn, NY', - 1347590 => 'Bronx, NY', - 1347627 => 'Brooklyn, NY', - 1347663 => 'Brooklyn, NY', - 1347689 => 'Brooklyn, NY', - 1347702 => 'Brooklyn, NY', - 1347715 => 'Brooklyn, NY', - 1347763 => 'Brooklyn, NY', - 1347770 => 'Brooklyn, NY', - 1347787 => 'Brooklyn, NY', - 1347789 => 'Brooklyn, NY', - 1347810 => 'Bronx, NY', - 1347843 => 'Bronx, NY', - 1347862 => 'Bronx, NY', - 1347915 => 'Brooklyn, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1351.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1351.php deleted file mode 100644 index afa342f2b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1351.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Massachusetts', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1352.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1352.php deleted file mode 100644 index 81e66008e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1352.php +++ /dev/null @@ -1,160 +0,0 @@ - 'Florida', - 1352205 => 'Lady Lake, FL', - 1352236 => 'Ocala, FL', - 1352237 => 'Ocala, FL', - 1352241 => 'Clermont, FL', - 1352242 => 'Clermont, FL', - 1352243 => 'Clermont, FL', - 1352245 => 'Belleview, FL', - 1352253 => 'Tavares, FL', - 1352259 => 'Lady Lake, FL', - 1352264 => 'Gainesville, FL', - 1352265 => 'Gainesville, FL', - 1352266 => 'Ocala, FL', - 1352271 => 'Gainesville, FL', - 1352273 => 'Gainesville, FL', - 1352288 => 'Ocklawaha, FL', - 1352291 => 'Ocala, FL', - 1352304 => 'Ocala, FL', - 1352314 => 'Leesburg, FL', - 1352315 => 'Leesburg, FL', - 1352323 => 'Leesburg, FL', - 1352324 => 'Howey In Hills, FL', - 1352326 => 'Leesburg, FL', - 1352330 => 'Wildwood, FL', - 1352331 => 'Gainesville, FL', - 1352332 => 'Gainesville, FL', - 1352333 => 'Gainesville, FL', - 1352334 => 'Gainesville, FL', - 1352335 => 'Gainesville, FL', - 1352336 => 'Gainesville, FL', - 1352337 => 'Gainesville, FL', - 1352338 => 'Gainesville, FL', - 1352341 => 'Inverness, FL', - 1352343 => 'Tavares, FL', - 1352344 => 'Inverness, FL', - 1352351 => 'Ocala, FL', - 1352357 => 'Eustis, FL', - 1352360 => 'Leesburg, FL', - 1352365 => 'Leesburg, FL', - 1352367 => 'Gainesville, FL', - 1352368 => 'Ocala, FL', - 1352369 => 'Ocala, FL', - 1352371 => 'Gainesville, FL', - 1352372 => 'Gainesville, FL', - 1352373 => 'Gainesville, FL', - 1352374 => 'Gainesville, FL', - 1352375 => 'Gainesville, FL', - 1352376 => 'Gainesville, FL', - 1352377 => 'Gainesville, FL', - 1352378 => 'Gainesville, FL', - 1352379 => 'Gainesville, FL', - 1352382 => 'Homosassa, FL', - 1352383 => 'Mount Dora, FL', - 1352385 => 'Mount Dora, FL', - 1352390 => 'Ocala, FL', - 1352392 => 'Gainesville, FL', - 1352394 => 'Clermont, FL', - 1352401 => 'Ocala, FL', - 1352404 => 'Clermont, FL', - 1352419 => 'Inverness, FL', - 1352427 => 'Ocala, FL', - 1352429 => 'Groveland, FL', - 1352432 => 'Clermont, FL', - 1352433 => 'Ocala, FL', - 1352435 => 'Leesburg, FL', - 1352447 => 'Inglis, FL', - 1352463 => 'Trenton, FL', - 1352465 => 'Dunnellon, FL', - 1352466 => 'Micanopy, FL', - 1352468 => 'Waldo, FL', - 1352472 => 'Newberry, FL', - 1352473 => 'Keystone Heights, FL', - 1352475 => 'Melrose, FL', - 1352481 => 'Hawthorne, FL', - 1352483 => 'Eustis, FL', - 1352486 => 'Bronson, FL', - 1352489 => 'Dunnellon, FL', - 1352490 => 'Chiefland, FL', - 1352493 => 'Chiefland, FL', - 1352495 => 'Archer, FL', - 1352498 => 'Cross City, FL', - 1352503 => 'Homosassa, FL', - 1352505 => 'Gainesville, FL', - 1352508 => 'Tavares, FL', - 1352518 => 'Dade City, FL', - 1352521 => 'Dade City, FL', - 1352523 => 'Dade City, FL', - 1352528 => 'Williston, FL', - 1352536 => 'Clermont, FL', - 1352540 => 'Brooksville, FL', - 1352542 => 'Old Town, FL', - 1352543 => 'Cedar Key, FL', - 1352544 => 'Brooksville, FL', - 1352556 => 'Spring Hill, FL', - 1352563 => 'Crystal River, FL', - 1352564 => 'Crystal River, FL', - 1352567 => 'Dade City, FL', - 1352568 => 'Bushnell, FL', - 1352569 => 'Bushnell, FL', - 1352583 => 'Dade City, FL', - 1352588 => 'San Antonio, FL', - 1352589 => 'Eustis, FL', - 1352593 => 'Brooksville, FL', - 1352595 => 'Citra, FL', - 1352610 => 'Spring Hill, FL', - 1352620 => 'Ocala, FL', - 1352621 => 'Homosassa, FL', - 1352622 => 'Ocala, FL', - 1352624 => 'Ocala, FL', - 1352625 => 'Silver Springs, FL', - 1352628 => 'Homosassa, FL', - 1352629 => 'Ocala, FL', - 1352637 => 'Inverness, FL', - 1352666 => 'Spring Hill, FL', - 1352669 => 'Umatilla, FL', - 1352671 => 'Ocala, FL', - 1352672 => 'Gainesville, FL', - 1352683 => 'Spring Hill, FL', - 1352684 => 'Spring Hill, FL', - 1352686 => 'Spring Hill, FL', - 1352687 => 'Ocala, FL', - 1352688 => 'Spring Hill, FL', - 1352690 => 'Ocala, FL', - 1352694 => 'Ocala, FL', - 1352726 => 'Inverness, FL', - 1352728 => 'Leesburg, FL', - 1352732 => 'Ocala, FL', - 1352735 => 'Mount Dora, FL', - 1352742 => 'Tavares, FL', - 1352748 => 'Wildwood, FL', - 1352750 => 'Lady Lake, FL', - 1352751 => 'Lady Lake, FL', - 1352753 => 'Lady Lake, FL', - 1352754 => 'Brooksville, FL', - 1352787 => 'Leesburg, FL', - 1352789 => 'Ocala, FL', - 1352793 => 'Bushnell, FL', - 1352794 => 'Crystal River, FL', - 1352795 => 'Crystal River, FL', - 1352796 => 'Brooksville, FL', - 1352797 => 'Brooksville, FL', - 1352799 => 'Brooksville, FL', - 1352821 => 'Weirsdale, FL', - 1352835 => 'Spring Hill, FL', - 1352840 => 'Ocala, FL', - 1352854 => 'Ocala, FL', - 1352860 => 'Inverness, FL', - 1352861 => 'Ocala, FL', - 1352867 => 'Ocala, FL', - 1352872 => 'Gainesville, FL', - 1352873 => 'Ocala, FL', - 1352955 => 'Gainesville, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1360.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1360.php deleted file mode 100644 index 57aade0ea..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1360.php +++ /dev/null @@ -1,273 +0,0 @@ - 'Washington', - 1360210 => 'Camas, WA', - 1360213 => 'Vancouver, WA', - 1360221 => 'Langley, WA', - 1360225 => 'Woodland, WA', - 1360236 => 'Olympia, WA', - 1360240 => 'Oak Harbor, WA', - 1360249 => 'Montesano, WA', - 1360253 => 'Vancouver, WA', - 1360254 => 'Vancouver, WA', - 1360256 => 'Vancouver, WA', - 1360257 => 'Oak Harbor, WA', - 1360258 => 'Vancouver, WA', - 1360259 => 'Olympia, WA', - 1360260 => 'Vancouver, WA', - 1360262 => 'Chehalis, WA', - 1360263 => 'La Center, WA', - 1360264 => 'Tenino, WA', - 1360268 => 'Westport, WA', - 1360273 => 'Rochester, WA', - 1360274 => 'Castle Rock, WA', - 1360275 => 'Belfair, WA', - 1360279 => 'Oak Harbor, WA', - 1360281 => 'Vancouver, WA', - 1360289 => 'Ocean Shores, WA', - 1360292 => 'Olympia, WA', - 1360293 => 'Anacortes, WA', - 1360297 => 'Kingston, WA', - 1360299 => 'Anacortes, WA', - 1360306 => 'Bellingham, WA', - 1360307 => 'Silverdale, WA', - 1360314 => 'Vancouver, WA', - 1360318 => 'Lynden, WA', - 1360321 => 'Langley, WA', - 1360326 => 'Vancouver, WA', - 1360330 => 'Centralia, WA', - 1360331 => 'Freeland, WA', - 1360332 => 'Blaine, WA', - 1360335 => 'Washougal, WA', - 1360336 => 'Mount Vernon, WA', - 1360341 => 'Clinton, WA', - 1360350 => 'Olympia, WA', - 1360352 => 'Olympia, WA', - 1360354 => 'Lynden, WA', - 1360357 => 'Olympia, WA', - 1360371 => 'Blaine, WA', - 1360373 => 'Bremerton, WA', - 1360374 => 'Forks, WA', - 1360376 => 'Eastsound, WA', - 1360377 => 'Bremerton, WA', - 1360378 => 'Friday Harbor, WA', - 1360379 => 'Port Townsend, WA', - 1360380 => 'Ferndale, WA', - 1360384 => 'Ferndale, WA', - 1360385 => 'Port Townsend, WA', - 1360387 => 'Camano Island, WA', - 1360392 => 'Bellingham, WA', - 1360394 => 'Poulsbo, WA', - 1360397 => 'Vancouver, WA', - 1360398 => 'Bellingham, WA', - 1360400 => 'Yelm, WA', - 1360402 => 'Olympia, WA', - 1360403 => 'Arlington, WA', - 1360412 => 'Lacey, WA', - 1360413 => 'Olympia, WA', - 1360414 => 'Longview, WA', - 1360416 => 'Mount Vernon, WA', - 1360417 => 'Port Angeles, WA', - 1360418 => 'Vancouver, WA', - 1360419 => 'Mount Vernon, WA', - 1360423 => 'Longview, WA', - 1360424 => 'Mount Vernon, WA', - 1360425 => 'Longview, WA', - 1360426 => 'Shelton, WA', - 1360427 => 'Shelton, WA', - 1360428 => 'Mount Vernon, WA', - 1360432 => 'Shelton, WA', - 1360433 => 'Vancouver, WA', - 1360435 => 'Arlington, WA', - 1360436 => 'Darrington, WA', - 1360437 => 'Port Ludlow, WA', - 1360438 => 'Olympia, WA', - 1360446 => 'Rainier, WA', - 1360448 => 'Vancouver, WA', - 1360449 => 'Vancouver, WA', - 1360450 => 'Vancouver, WA', - 1360452 => 'Port Angeles, WA', - 1360457 => 'Port Angeles, WA', - 1360458 => 'Yelm, WA', - 1360459 => 'Olympia, WA', - 1360460 => 'Port Angeles, WA', - 1360466 => 'La Conner, WA', - 1360468 => 'Lopez Island, WA', - 1360474 => 'Arlington, WA', - 1360475 => 'Bremerton, WA', - 1360477 => 'Port Angeles, WA', - 1360479 => 'Bremerton, WA', - 1360482 => 'Elma, WA', - 1360487 => 'Vancouver, WA', - 1360491 => 'Olympia, WA', - 1360493 => 'Olympia, WA', - 1360496 => 'Morton, WA', - 1360501 => 'Longview, WA', - 1360513 => 'Vancouver, WA', - 1360514 => 'Vancouver, WA', - 1360521 => 'Vancouver, WA', - 1360524 => 'Vancouver, WA', - 1360527 => 'Bellingham, WA', - 1360528 => 'Olympia, WA', - 1360532 => 'Aberdeen, WA', - 1360533 => 'Aberdeen, WA', - 1360537 => 'Aberdeen, WA', - 1360538 => 'Aberdeen, WA', - 1360546 => 'Vancouver, WA', - 1360563 => 'Snohomish, WA', - 1360566 => 'Vancouver, WA', - 1360567 => 'Vancouver, WA', - 1360568 => 'Snohomish, WA', - 1360570 => 'Olympia, WA', - 1360571 => 'Vancouver, WA', - 1360573 => 'Vancouver, WA', - 1360574 => 'Vancouver, WA', - 1360575 => 'Longview, WA', - 1360576 => 'Vancouver, WA', - 1360577 => 'Longview, WA', - 1360578 => 'Longview, WA', - 1360579 => 'Clinton, WA', - 1360582 => 'Sequim, WA', - 1360584 => 'Olympia, WA', - 1360588 => 'Anacortes, WA', - 1360597 => 'Vancouver, WA', - 1360598 => 'Poulsbo, WA', - 1360599 => 'Maple Falls, WA', - 1360604 => 'Vancouver, WA', - 1360613 => 'Silverdale, WA', - 1360629 => 'Stanwood, WA', - 1360635 => 'Vancouver, WA', - 1360636 => 'Longview, WA', - 1360642 => 'Long Beach, WA', - 1360647 => 'Bellingham, WA', - 1360650 => 'Bellingham, WA', - 1360651 => 'Marysville, WA', - 1360653 => 'Marysville, WA', - 1360657 => 'Marysville, WA', - 1360658 => 'Marysville, WA', - 1360659 => 'Marysville, WA', - 1360665 => 'Ocean Park, WA', - 1360666 => 'Battle Ground, WA', - 1360668 => 'Snohomish, WA', - 1360671 => 'Bellingham, WA', - 1360673 => 'Kalama, WA', - 1360675 => 'Oak Harbor, WA', - 1360676 => 'Bellingham, WA', - 1360678 => 'Coupeville, WA', - 1360679 => 'Oak Harbor, WA', - 1360681 => 'Sequim, WA', - 1360683 => 'Sequim, WA', - 1360686 => 'Yacolt, WA', - 1360687 => 'Battle Ground, WA', - 1360691 => 'Granite Falls, WA', - 1360692 => 'Silverdale, WA', - 1360693 => 'Vancouver, WA', - 1360694 => 'Vancouver, WA', - 1360695 => 'Vancouver, WA', - 1360696 => 'Vancouver, WA', - 1360697 => 'Poulsbo, WA', - 1360698 => 'Silverdale, WA', - 1360699 => 'Vancouver, WA', - 1360701 => 'Olympia, WA', - 1360704 => 'Olympia, WA', - 1360705 => 'Olympia, WA', - 1360707 => 'Burlington, WA', - 1360709 => 'Olympia, WA', - 1360713 => 'Vancouver, WA', - 1360714 => 'Bellingham, WA', - 1360715 => 'Bellingham, WA', - 1360716 => 'Tulalip, WA', - 1360718 => 'Vancouver, WA', - 1360733 => 'Bellingham, WA', - 1360734 => 'Bellingham, WA', - 1360735 => 'Vancouver, WA', - 1360736 => 'Centralia, WA', - 1360737 => 'Vancouver, WA', - 1360738 => 'Bellingham, WA', - 1360739 => 'Bellingham, WA', - 1360740 => 'Chehalis, WA', - 1360748 => 'Chehalis, WA', - 1360750 => 'Vancouver, WA', - 1360752 => 'Bellingham, WA', - 1360753 => 'Olympia, WA', - 1360754 => 'Olympia, WA', - 1360755 => 'Burlington, WA', - 1360756 => 'Bellingham, WA', - 1360757 => 'Burlington, WA', - 1360765 => 'Quilcene, WA', - 1360769 => 'Port Orchard, WA', - 1360773 => 'Vancouver, WA', - 1360778 => 'Bellingham, WA', - 1360779 => 'Poulsbo, WA', - 1360782 => 'Bremerton, WA', - 1360785 => 'Winlock, WA', - 1360786 => 'Olympia, WA', - 1360789 => 'Olympia, WA', - 1360791 => 'Olympia, WA', - 1360792 => 'Bremerton, WA', - 1360793 => 'Sultan, WA', - 1360794 => 'Monroe, WA', - 1360795 => 'Cathlamet, WA', - 1360802 => 'Enumclaw, WA', - 1360805 => 'Monroe, WA', - 1360807 => 'Centralia, WA', - 1360816 => 'Vancouver, WA', - 1360823 => 'Vancouver, WA', - 1360825 => 'Enumclaw, WA', - 1360828 => 'Vancouver, WA', - 1360829 => 'Buckley, WA', - 1360832 => 'Eatonville, WA', - 1360833 => 'Camas, WA', - 1360834 => 'Camas, WA', - 1360835 => 'Washougal, WA', - 1360848 => 'Mount Vernon, WA', - 1360852 => 'Vancouver, WA', - 1360853 => 'Concrete, WA', - 1360855 => 'Sedro-Woolley, WA', - 1360856 => 'Sedro-Woolley, WA', - 1360863 => 'Monroe, WA', - 1360864 => 'Toledo, WA', - 1360866 => 'Olympia, WA', - 1360867 => 'Olympia, WA', - 1360870 => 'Olympia, WA', - 1360871 => 'Port Orchard, WA', - 1360874 => 'Port Orchard, WA', - 1360875 => 'South Bend, WA', - 1360876 => 'Port Orchard, WA', - 1360877 => 'Hoodsport, WA', - 1360878 => 'Olympia, WA', - 1360882 => 'Vancouver, WA', - 1360883 => 'Vancouver, WA', - 1360885 => 'Vancouver, WA', - 1360886 => 'Black Diamond, WA', - 1360887 => 'Ridgefield, WA', - 1360891 => 'Vancouver, WA', - 1360892 => 'Vancouver, WA', - 1360893 => 'Orting, WA', - 1360894 => 'Yelm, WA', - 1360895 => 'Port Orchard, WA', - 1360896 => 'Vancouver, WA', - 1360901 => 'Vancouver, WA', - 1360902 => 'Olympia, WA', - 1360904 => 'Vancouver, WA', - 1360906 => 'Vancouver, WA', - 1360909 => 'Vancouver, WA', - 1360910 => 'Vancouver, WA', - 1360915 => 'Olympia, WA', - 1360923 => 'Olympia, WA', - 1360930 => 'Poulsbo, WA', - 1360942 => 'Raymond, WA', - 1360943 => 'Olympia, WA', - 1360944 => 'Vancouver, WA', - 1360945 => 'Point Roberts, WA', - 1360956 => 'Olympia, WA', - 1360966 => 'Everson, WA', - 1360988 => 'Sumas, WA', - 1360991 => 'Vancouver, WA', - 1360993 => 'Vancouver, WA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1361.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1361.php deleted file mode 100644 index 52ee94dcd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1361.php +++ /dev/null @@ -1,98 +0,0 @@ - 'Texas', - 1361225 => 'Corpus Christi, TX', - 1361241 => 'Corpus Christi, TX', - 1361242 => 'Corpus Christi, TX', - 1361275 => 'Cuero, TX', - 1361279 => 'San Diego, TX', - 1361288 => 'Corpus Christi, TX', - 1361289 => 'Corpus Christi, TX', - 1361293 => 'Yoakum, TX', - 1361299 => 'Corpus Christi, TX', - 1361325 => 'Falfurrias, TX', - 1361334 => 'Corpus Christi, TX', - 1361348 => 'Premont, TX', - 1361358 => 'Beeville, TX', - 1361362 => 'Beeville, TX', - 1361364 => 'Sinton, TX', - 1361384 => 'Orange Grove, TX', - 1361387 => 'Robstown, TX', - 1361394 => 'Freer, TX', - 1361396 => 'Alice, TX', - 1361449 => 'George West, TX', - 1361485 => 'Victoria, TX', - 1361516 => 'Kingsville, TX', - 1361526 => 'Refugio, TX', - 1361527 => 'Hebbronville, TX', - 1361528 => 'Taft, TX', - 1361547 => 'Mathis, TX', - 1361552 => 'Port Lavaca, TX', - 1361561 => 'Corpus Christi, TX', - 1361564 => 'Yorktown, TX', - 1361570 => 'Victoria, TX', - 1361572 => 'Victoria, TX', - 1361573 => 'Victoria, TX', - 1361574 => 'Victoria, TX', - 1361575 => 'Victoria, TX', - 1361576 => 'Victoria, TX', - 1361578 => 'Victoria, TX', - 1361579 => 'Victoria, TX', - 1361582 => 'Victoria, TX', - 1361592 => 'Kingsville, TX', - 1361594 => 'Shiner, TX', - 1361595 => 'Kingsville, TX', - 1361643 => 'Portland, TX', - 1361645 => 'Goliad, TX', - 1361661 => 'Alice, TX', - 1361664 => 'Alice, TX', - 1361668 => 'Alice, TX', - 1361694 => 'Corpus Christi, TX', - 1361727 => 'Rockport, TX', - 1361729 => 'Rockport, TX', - 1361749 => 'Port Aransas, TX', - 1361758 => 'Aransas Pass, TX', - 1361767 => 'Robstown, TX', - 1361771 => 'Ganado, TX', - 1361776 => 'Ingleside, TX', - 1361777 => 'Portland, TX', - 1361782 => 'Edna, TX', - 1361786 => 'Three Rivers, TX', - 1361790 => 'Rockport, TX', - 1361798 => 'Hallettsville, TX', - 1361806 => 'Corpus Christi, TX', - 1361814 => 'Corpus Christi, TX', - 1361851 => 'Corpus Christi, TX', - 1361852 => 'Corpus Christi, TX', - 1361853 => 'Corpus Christi, TX', - 1361854 => 'Corpus Christi, TX', - 1361855 => 'Corpus Christi, TX', - 1361857 => 'Corpus Christi, TX', - 1361865 => 'Flatonia, TX', - 1361880 => 'Corpus Christi, TX', - 1361881 => 'Corpus Christi, TX', - 1361882 => 'Corpus Christi, TX', - 1361883 => 'Corpus Christi, TX', - 1361884 => 'Corpus Christi, TX', - 1361885 => 'Corpus Christi, TX', - 1361887 => 'Corpus Christi, TX', - 1361888 => 'Corpus Christi, TX', - 1361902 => 'Corpus Christi, TX', - 1361906 => 'Corpus Christi, TX', - 1361937 => 'Corpus Christi, TX', - 1361939 => 'Corpus Christi, TX', - 1361949 => 'Corpus Christi, TX', - 1361972 => 'Palacios, TX', - 1361980 => 'Corpus Christi, TX', - 1361985 => 'Corpus Christi, TX', - 1361986 => 'Corpus Christi, TX', - 1361991 => 'Corpus Christi, TX', - 1361992 => 'Corpus Christi, TX', - 1361993 => 'Corpus Christi, TX', - 1361994 => 'Corpus Christi, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1364.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1364.php deleted file mode 100644 index 0f97b7404..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1364.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Kentucky', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1365.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1365.php deleted file mode 100644 index 990db3837..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1365.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ontario', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1380.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1380.php deleted file mode 100644 index cd9f144c6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1380.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ohio', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1385.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1385.php deleted file mode 100644 index 723a0cecc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1385.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Utah', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1386.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1386.php deleted file mode 100644 index daad956e1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1386.php +++ /dev/null @@ -1,92 +0,0 @@ - 'Florida', - 1386218 => 'Orange City, FL', - 1386226 => 'Daytona Beach, FL', - 1386228 => 'Lake Helen, FL', - 1386236 => 'Daytona Beach, FL', - 1386238 => 'Daytona Beach, FL', - 1386239 => 'Daytona Beach, FL', - 1386246 => 'Palm Coast, FL', - 1386248 => 'Daytona Beach, FL', - 1386252 => 'Daytona Beach, FL', - 1386253 => 'Daytona Beach, FL', - 1386254 => 'Daytona Beach, FL', - 1386255 => 'Daytona Beach, FL', - 1386257 => 'Daytona Beach, FL', - 1386258 => 'Daytona Beach, FL', - 1386274 => 'Daytona Beach, FL', - 1386294 => 'Mayo, FL', - 1386313 => 'Bunnell, FL', - 1386322 => 'Port Orange, FL', - 1386323 => 'Daytona Beach, FL', - 1386325 => 'Palatka, FL', - 1386326 => 'Palatka, FL', - 1386328 => 'Palatka, FL', - 1386329 => 'Palatka, FL', - 1386362 => 'Live Oak, FL', - 1386364 => 'Live Oak, FL', - 1386385 => 'Palatka, FL', - 1386409 => 'New Smyrna Beach, FL', - 1386418 => 'Alachua, FL', - 1386423 => 'New Smyrna Beach, FL', - 1386424 => 'New Smyrna Beach, FL', - 1386426 => 'New Smyrna Beach, FL', - 1386427 => 'New Smyrna Beach, FL', - 1386428 => 'New Smyrna Beach, FL', - 1386437 => 'Bunnell, FL', - 1386438 => 'Lake City, FL', - 1386439 => 'Flagler Beach, FL', - 1386441 => 'Ormond Beach, FL', - 1386445 => 'Palm Coast, FL', - 1386446 => 'Palm Coast, FL', - 1386447 => 'Palm Coast, FL', - 1386454 => 'High Springs, FL', - 1386462 => 'Alachua, FL', - 1386467 => 'Welaka, FL', - 1386496 => 'Lake Butler, FL', - 1386497 => 'Fort White, FL', - 1386532 => 'Deltona, FL', - 1386574 => 'Deltona, FL', - 1386586 => 'Palm Coast, FL', - 1386597 => 'Palm Coast, FL', - 1386615 => 'Ormond Beach, FL', - 1386668 => 'DeBary, FL', - 1386671 => 'Ormond Beach, FL', - 1386672 => 'Ormond Beach, FL', - 1386673 => 'Ormond Beach, FL', - 1386676 => 'Ormond Beach, FL', - 1386677 => 'Ormond Beach, FL', - 1386684 => 'Interlachen, FL', - 1386698 => 'Crescent City, FL', - 1386719 => 'Lake City, FL', - 1386734 => 'DeLand, FL', - 1386736 => 'DeLand, FL', - 1386738 => 'DeLand, FL', - 1386740 => 'DeLand, FL', - 1386749 => 'Pierson, FL', - 1386752 => 'Lake City, FL', - 1386754 => 'Lake City, FL', - 1386755 => 'Lake City, FL', - 1386756 => 'Port Orange, FL', - 1386758 => 'Lake City, FL', - 1386774 => 'Orange City, FL', - 1386775 => 'Orange City, FL', - 1386789 => 'Deltona, FL', - 1386792 => 'Jasper, FL', - 1386822 => 'DeLand, FL', - 1386860 => 'Deltona, FL', - 1386873 => 'DeLand, FL', - 1386931 => 'Palm Coast, FL', - 1386935 => 'Branford, FL', - 1386943 => 'DeLand, FL', - 1386947 => 'Daytona Beach, FL', - 1386957 => 'New Smyrna Beach, FL', - 1386985 => 'De Leon Springs, FL', - 1386986 => 'Palm Coast, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/14.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/14.php new file mode 100644 index 000000000..177501b5f --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/14.php @@ -0,0 +1,4210 @@ + 'Rhode Island', + 1401222 => 'Providence, RI', + 1401232 => 'Smithfield, RI', + 1401233 => 'Smithfield, RI', + 1401235 => 'Woonsocket, RI', + 1401245 => 'Warren, RI', + 1401246 => 'Barrington, RI', + 1401253 => 'Bristol, RI', + 1401254 => 'Bristol, RI', + 1401272 => 'Providence, RI', + 1401273 => 'Providence, RI', + 1401274 => 'Providence, RI', + 1401275 => 'Cranston, RI', + 1401276 => 'Providence, RI', + 1401277 => 'Providence, RI', + 1401294 => 'North Kingstown, RI', + 1401295 => 'North Kingstown, RI', + 1401315 => 'Westerly, RI', + 1401322 => 'Westerly, RI', + 1401331 => 'Providence, RI', + 1401333 => 'Cumberland, RI', + 1401348 => 'Westerly, RI', + 1401351 => 'Providence, RI', + 1401353 => 'North Providence, RI', + 1401356 => 'Woonsocket, RI', + 1401364 => 'Charlestown, RI', + 1401396 => 'Bristol, RI', + 1401398 => 'East Greenwich, RI', + 1401421 => 'Providence, RI', + 1401423 => 'Jamestown, RI', + 1401431 => 'East Providence, RI', + 1401433 => 'Riverside, RI', + 1401434 => 'East Providence, RI', + 1401435 => 'East Providence, RI', + 1401438 => 'East Providence, RI', + 1401444 => 'Providence, RI', + 1401453 => 'Providence, RI', + 1401454 => 'Providence, RI', + 1401455 => 'Providence, RI', + 1401456 => 'Providence, RI', + 1401457 => 'Providence, RI', + 1401463 => 'Cranston, RI', + 1401464 => 'Cranston, RI', + 1401466 => 'Block Island, RI', + 1401519 => 'Providence, RI', + 1401521 => 'Providence, RI', + 1401533 => 'Providence, RI', + 1401596 => 'Westerly, RI', + 1401619 => 'Newport, RI', + 1401621 => 'Providence, RI', + 1401624 => 'Tiverton, RI', + 1401625 => 'Tiverton, RI', + 1401635 => 'Little Compton, RI', + 1401658 => 'Cumberland, RI', + 1401667 => 'North Kingstown, RI', + 1401683 => 'Portsmouth, RI', + 1401722 => 'Pawtucket, RI', + 1401723 => 'Pawtucket, RI', + 1401724 => 'Pawtucket, RI', + 1401725 => 'Pawtucket, RI', + 1401726 => 'Pawtucket, RI', + 1401728 => 'Pawtucket, RI', + 1401729 => 'Pawtucket, RI', + 1401732 => 'Warwick, RI', + 1401736 => 'Warwick, RI', + 1401737 => 'Warwick, RI', + 1401738 => 'Warwick, RI', + 1401739 => 'Warwick, RI', + 1401751 => 'Providence, RI', + 1401762 => 'Woonsocket, RI', + 1401765 => 'Woonsocket, RI', + 1401766 => 'Woonsocket, RI', + 1401767 => 'Woonsocket, RI', + 1401769 => 'Woonsocket, RI', + 1401831 => 'Providence, RI', + 1401841 => 'Newport, RI', + 1401845 => 'Newport, RI', + 1401846 => 'Newport, RI', + 1401847 => 'Newport, RI', + 1401848 => 'Newport, RI', + 1401849 => 'Newport, RI', + 1401861 => 'Providence, RI', + 1401863 => 'Providence, RI', + 1401884 => 'East Greenwich, RI', + 1401885 => 'East Greenwich, RI', + 1401886 => 'East Greenwich, RI', + 1401921 => 'Warwick, RI', + 1401942 => 'Cranston, RI', + 1401943 => 'Cranston, RI', + 1401944 => 'Cranston, RI', + 1401946 => 'Cranston, RI', + 1401949 => 'Greenville, RI', + 1402 => 'Nebraska', + 1402202 => 'Lincoln, NE', + 1402223 => 'Beatrice, NE', + 1402228 => 'Beatrice, NE', + 1402234 => 'Louisville, NE', + 1402238 => 'Bennington, NE', + 1402245 => 'Falls City, NE', + 1402253 => 'Springfield, NE', + 1402254 => 'Hartington, NE', + 1402256 => 'Laurel, NE', + 1402261 => 'Lincoln, NE', + 1402267 => 'Weeping Water, NE', + 1402269 => 'Syracuse, NE', + 1402274 => 'Auburn, NE', + 1402280 => 'Omaha, NE', + 1402289 => 'Elkhorn, NE', + 1402291 => 'Bellevue, NE', + 1402292 => 'Bellevue, NE', + 1402293 => 'Bellevue, NE', + 1402294 => 'Offutt Air Force Base, NE', + 1402296 => 'Plattsmouth, NE', + 1402298 => 'Plattsmouth, NE', + 1402323 => 'Lincoln, NE', + 1402325 => 'Lincoln, NE', + 1402327 => 'Lincoln, NE', + 1402328 => 'Lincoln, NE', + 1402329 => 'Pierce, NE', + 1402330 => 'Omaha, NE', + 1402331 => 'Omaha, NE', + 1402332 => 'Gretna, NE', + 1402333 => 'Omaha, NE', + 1402334 => 'Omaha, NE', + 1402335 => 'Tecumseh, NE', + 1402336 => 'O\'Neill, NE', + 1402337 => 'Randolph, NE', + 1402339 => 'Omaha, NE', + 1402341 => 'Omaha, NE', + 1402342 => 'Omaha, NE', + 1402343 => 'Omaha, NE', + 1402344 => 'Omaha, NE', + 1402345 => 'Omaha, NE', + 1402346 => 'Omaha, NE', + 1402352 => 'Schuyler, NE', + 1402354 => 'Omaha, NE', + 1402358 => 'Creighton, NE', + 1402359 => 'Valley, NE', + 1402362 => 'York, NE', + 1402367 => 'David City, NE', + 1402370 => 'Norfolk, NE', + 1402371 => 'Norfolk, NE', + 1402372 => 'West Point, NE', + 1402373 => 'Bloomfield, NE', + 1402374 => 'Tekamah, NE', + 1402375 => 'Wayne, NE', + 1402376 => 'Valentine, NE', + 1402379 => 'Norfolk, NE', + 1402385 => 'Pender, NE', + 1402387 => 'Ainsworth, NE', + 1402390 => 'Omaha, NE', + 1402391 => 'Omaha, NE', + 1402392 => 'Omaha, NE', + 1402393 => 'Omaha, NE', + 1402395 => 'Albion, NE', + 1402397 => 'Omaha, NE', + 1402398 => 'Omaha, NE', + 1402399 => 'Omaha, NE', + 1402403 => 'Omaha, NE', + 1402408 => 'Omaha, NE', + 1402420 => 'Lincoln, NE', + 1402421 => 'Lincoln, NE', + 1402423 => 'Lincoln, NE', + 1402426 => 'Blair, NE', + 1402430 => 'Lincoln, NE', + 1402431 => 'Omaha, NE', + 1402432 => 'Lincoln, NE', + 1402434 => 'Lincoln, NE', + 1402435 => 'Lincoln, NE', + 1402436 => 'Lincoln, NE', + 1402437 => 'Lincoln, NE', + 1402438 => 'Lincoln, NE', + 1402439 => 'Stanton, NE', + 1402441 => 'Lincoln, NE', + 1402443 => 'Wahoo, NE', + 1402444 => 'Omaha, NE', + 1402445 => 'Omaha, NE', + 1402449 => 'Omaha, NE', + 1402451 => 'Omaha, NE', + 1402453 => 'Omaha, NE', + 1402454 => 'Madison, NE', + 1402455 => 'Omaha, NE', + 1402457 => 'Omaha, NE', + 1402461 => 'Hastings, NE', + 1402462 => 'Hastings, NE', + 1402463 => 'Hastings, NE', + 1402464 => 'Lincoln, NE', + 1402465 => 'Lincoln, NE', + 1402466 => 'Lincoln, NE', + 1402467 => 'Lincoln, NE', + 1402471 => 'Lincoln, NE', + 1402472 => 'Lincoln, NE', + 1402474 => 'Lincoln, NE', + 1402475 => 'Lincoln, NE', + 1402476 => 'Lincoln, NE', + 1402477 => 'Lincoln, NE', + 1402481 => 'Lincoln, NE', + 1402483 => 'Lincoln, NE', + 1402484 => 'Lincoln, NE', + 1402486 => 'Lincoln, NE', + 1402488 => 'Lincoln, NE', + 1402489 => 'Lincoln, NE', + 1402492 => 'Omaha, NE', + 1402493 => 'Omaha, NE', + 1402494 => 'South Sioux City, NE', + 1402496 => 'Omaha, NE', + 1402498 => 'Omaha, NE', + 1402499 => 'Lincoln, NE', + 1402502 => 'Omaha, NE', + 1402504 => 'Omaha, NE', + 1402505 => 'Omaha, NE', + 1402529 => 'Wisner, NE', + 1402533 => 'Blair, NE', + 1402551 => 'Omaha, NE', + 1402552 => 'Omaha, NE', + 1402553 => 'Omaha, NE', + 1402554 => 'Omaha, NE', + 1402556 => 'Omaha, NE', + 1402557 => 'Omaha, NE', + 1402558 => 'Omaha, NE', + 1402559 => 'Omaha, NE', + 1402560 => 'Lincoln, NE', + 1402562 => 'Columbus, NE', + 1402563 => 'Columbus, NE', + 1402564 => 'Columbus, NE', + 1402571 => 'Omaha, NE', + 1402572 => 'Omaha, NE', + 1402573 => 'Omaha, NE', + 1402582 => 'Plainview, NE', + 1402595 => 'Omaha, NE', + 1402596 => 'Omaha, NE', + 1402614 => 'Omaha, NE', + 1402637 => 'Omaha, NE', + 1402643 => 'Seward, NE', + 1402644 => 'Norfolk, NE', + 1402645 => 'Wymore, NE', + 1402652 => 'North Bend, NE', + 1402677 => 'Omaha, NE', + 1402684 => 'Bassett, NE', + 1402685 => 'Oakland, NE', + 1402691 => 'Omaha, NE', + 1402694 => 'Aurora, NE', + 1402697 => 'Omaha, NE', + 1402715 => 'Omaha, NE', + 1402717 => 'Omaha, NE', + 1402721 => 'Fremont, NE', + 1402723 => 'Henderson, NE', + 1402727 => 'Fremont, NE', + 1402729 => 'Fairbury, NE', + 1402730 => 'Lincoln, NE', + 1402731 => 'Omaha, NE', + 1402733 => 'Omaha, NE', + 1402734 => 'Omaha, NE', + 1402742 => 'Lincoln, NE', + 1402746 => 'Red Cloud, NE', + 1402747 => 'Osceola, NE', + 1402753 => 'Fremont, NE', + 1402758 => 'Omaha, NE', + 1402759 => 'Geneva, NE', + 1402761 => 'Milford, NE', + 1402763 => 'Omaha, NE', + 1402764 => 'Stromsburg, NE', + 1402768 => 'Hebron, NE', + 1402770 => 'Lincoln, NE', + 1402773 => 'Sutton, NE', + 1402778 => 'Omaha, NE', + 1402786 => 'Waverly, NE', + 1402817 => 'Lincoln, NE', + 1402821 => 'Wilber, NE', + 1402826 => 'Crete, NE', + 1402827 => 'Omaha, NE', + 1402843 => 'Elgin, NE', + 1402844 => 'Norfolk, NE', + 1402852 => 'Pawnee City, NE', + 1402857 => 'Niobrara, NE', + 1402861 => 'Omaha, NE', + 1402873 => 'Nebraska City, NE', + 1402879 => 'Superior, NE', + 1402884 => 'Omaha, NE', + 1402887 => 'Neligh, NE', + 1402891 => 'Omaha, NE', + 1402894 => 'Omaha, NE', + 1402895 => 'Omaha, NE', + 1402896 => 'Omaha, NE', + 1402898 => 'Omaha, NE', + 1402923 => 'Humphrey, NE', + 1402925 => 'Atkinson, NE', + 1402926 => 'Omaha, NE', + 1402932 => 'Omaha, NE', + 1402933 => 'Omaha, NE', + 1402934 => 'Omaha, NE', + 1402944 => 'Ashland, NE', + 1402955 => 'Omaha, NE', + 1402964 => 'Omaha, NE', + 1402965 => 'Omaha, NE', + 1402991 => 'Omaha, NE', + 1403 => 'Alberta', + 1403201 => 'Calgary, AB', + 1403202 => 'Calgary, AB', + 1403203 => 'Calgary, AB', + 1403204 => 'Calgary, AB', + 1403207 => 'Calgary, AB', + 1403208 => 'Calgary, AB', + 1403209 => 'Calgary, AB', + 1403210 => 'Calgary, AB', + 1403212 => 'Calgary, AB', + 1403214 => 'Calgary, AB', + 1403215 => 'Calgary, AB', + 1403216 => 'Calgary, AB', + 1403217 => 'Calgary, AB', + 1403219 => 'Calgary, AB', + 1403220 => 'Calgary, AB', + 1403221 => 'Calgary, AB', + 1403223 => 'Taber, AB', + 1403225 => 'Calgary, AB', + 1403226 => 'Calgary, AB', + 1403227 => 'Innisfail, AB', + 1403228 => 'Calgary, AB', + 1403229 => 'Calgary, AB', + 1403230 => 'Calgary, AB', + 1403232 => 'Calgary, AB', + 1403233 => 'Calgary, AB', + 1403234 => 'Calgary, AB', + 1403235 => 'Calgary, AB', + 1403236 => 'Calgary, AB', + 1403237 => 'Calgary, AB', + 1403238 => 'Calgary, AB', + 1403239 => 'Calgary, AB', + 1403240 => 'Calgary, AB', + 1403241 => 'Calgary, AB', + 1403242 => 'Calgary, AB', + 1403243 => 'Calgary, AB', + 1403244 => 'Calgary, AB', + 1403245 => 'Calgary, AB', + 1403246 => 'Calgary, AB', + 1403247 => 'Calgary, AB', + 1403248 => 'Calgary, AB', + 1403249 => 'Calgary, AB', + 1403250 => 'Calgary, AB', + 1403251 => 'Calgary, AB', + 1403252 => 'Calgary, AB', + 1403253 => 'Calgary, AB', + 1403254 => 'Calgary, AB', + 1403255 => 'Calgary, AB', + 1403256 => 'Calgary, AB', + 1403257 => 'Calgary, AB', + 1403258 => 'Calgary, AB', + 1403259 => 'Calgary, AB', + 1403260 => 'Calgary, AB', + 1403261 => 'Calgary, AB', + 1403262 => 'Calgary, AB', + 1403263 => 'Calgary, AB', + 1403264 => 'Calgary, AB', + 1403265 => 'Calgary, AB', + 1403266 => 'Calgary, AB', + 1403269 => 'Calgary, AB', + 1403270 => 'Calgary, AB', + 1403271 => 'Calgary, AB', + 1403272 => 'Calgary, AB', + 1403273 => 'Calgary, AB', + 1403274 => 'Calgary, AB', + 1403275 => 'Calgary, AB', + 1403276 => 'Calgary, AB', + 1403277 => 'Calgary, AB', + 1403278 => 'Calgary, AB', + 1403279 => 'Calgary, AB', + 1403280 => 'Calgary, AB', + 1403281 => 'Calgary, AB', + 1403282 => 'Calgary, AB', + 1403283 => 'Calgary, AB', + 1403284 => 'Calgary, AB', + 1403285 => 'Calgary, AB', + 1403286 => 'Calgary, AB', + 1403287 => 'Calgary, AB', + 1403288 => 'Calgary, AB', + 1403289 => 'Calgary, AB', + 1403290 => 'Calgary, AB', + 1403291 => 'Calgary, AB', + 1403292 => 'Calgary, AB', + 1403293 => 'Calgary, AB', + 1403294 => 'Calgary, AB', + 1403295 => 'Calgary, AB', + 1403296 => 'Calgary, AB', + 1403297 => 'Calgary, AB', + 1403298 => 'Calgary, AB', + 1403299 => 'Calgary, AB', + 1403309 => 'Red Deer, AB', + 1403313 => 'Calgary, AB', + 1403314 => 'Red Deer, AB', + 1403317 => 'Lethbridge, AB', + 1403320 => 'Lethbridge, AB', + 1403327 => 'Lethbridge, AB', + 1403328 => 'Lethbridge, AB', + 1403329 => 'Lethbridge, AB', + 1403331 => 'Lethbridge, AB', + 1403335 => 'Didsbury, AB', + 1403337 => 'Carstairs, AB', + 1403340 => 'Red Deer, AB', + 1403341 => 'Red Deer, AB', + 1403342 => 'Red Deer, AB', + 1403343 => 'Red Deer, AB', + 1403345 => 'Coaldale, AB', + 1403346 => 'Red Deer, AB', + 1403347 => 'Red Deer, AB', + 1403348 => 'Red Deer, AB', + 1403350 => 'Red Deer, AB', + 1403352 => 'Red Deer, AB', + 1403358 => 'Red Deer, AB', + 1403362 => 'Brooks, AB', + 1403380 => 'Lethbridge, AB', + 1403381 => 'Lethbridge, AB', + 1403382 => 'Lethbridge, AB', + 1403394 => 'Lethbridge, AB', + 1403398 => 'Calgary, AB', + 1403399 => 'Calgary, AB', + 1403443 => 'Three Hills, AB', + 1403444 => 'Calgary, AB', + 1403451 => 'Calgary, AB', + 1403452 => 'Calgary, AB', + 1403453 => 'Calgary, AB', + 1403455 => 'Calgary, AB', + 1403457 => 'Calgary, AB', + 1403485 => 'Vulcan, AB', + 1403500 => 'Calgary, AB', + 1403501 => 'Brooks, AB', + 1403502 => 'Medicine Hat, AB', + 1403504 => 'Medicine Hat, AB', + 1403508 => 'Calgary, AB', + 1403525 => 'Medicine Hat, AB', + 1403526 => 'Medicine Hat, AB', + 1403527 => 'Medicine Hat, AB', + 1403528 => 'Medicine Hat, AB', + 1403529 => 'Medicine Hat, AB', + 1403531 => 'Calgary, AB', + 1403532 => 'Calgary, AB', + 1403538 => 'Calgary, AB', + 1403543 => 'Calgary, AB', + 1403545 => 'Bow Island, AB', + 1403546 => 'Linden, AB', + 1403547 => 'Calgary, AB', + 1403548 => 'Redcliff, AB', + 1403553 => 'Fort MacLeod, AB', + 1403556 => 'Olds, AB', + 1403560 => 'Calgary, AB', + 1403562 => 'Blairmore, AB', + 1403567 => 'Calgary, AB', + 1403568 => 'Calgary, AB', + 1403569 => 'Calgary, AB', + 1403571 => 'Calgary, AB', + 1403578 => 'Coronation, AB', + 1403580 => 'Medicine Hat, AB', + 1403590 => 'Calgary, AB', + 1403601 => 'High River, AB', + 1403609 => 'Canmore, AB', + 1403616 => 'Calgary, AB', + 1403625 => 'Claresholm, AB', + 1403627 => 'Pincher Creek, AB', + 1403630 => 'Calgary, AB', + 1403638 => 'Sundre, AB', + 1403640 => 'Calgary, AB', + 1403646 => 'Nanton, AB', + 1403652 => 'High River, AB', + 1403653 => 'Cardston, AB', + 1403664 => 'Oyen, AB', + 1403667 => 'Calgary, AB', + 1403668 => 'Calgary, AB', + 1403678 => 'Canmore, AB', + 1403680 => 'Calgary, AB', + 1403685 => 'Calgary, AB', + 1403686 => 'Calgary, AB', + 1403703 => 'Calgary, AB', + 1403705 => 'Calgary, AB', + 1403717 => 'Calgary, AB', + 1403720 => 'Calgary, AB', + 1403723 => 'Calgary, AB', + 1403730 => 'Calgary, AB', + 1403732 => 'Picture Butte, AB', + 1403735 => 'Calgary, AB', + 1403742 => 'Stettler, AB', + 1403746 => 'Eckville, AB', + 1403752 => 'Raymond, AB', + 1403760 => 'Banff, AB', + 1403762 => 'Banff, AB', + 1403769 => 'Calgary, AB', + 1403770 => 'Calgary, AB', + 1403777 => 'Calgary, AB', + 1403782 => 'Lacombe, AB', + 1403783 => 'Ponoka, AB', + 1403793 => 'Brooks, AB', + 1403800 => 'Calgary, AB', + 1403809 => 'Calgary, AB', + 1403816 => 'Calgary, AB', + 1403823 => 'Drumheller, AB', + 1403830 => 'Calgary, AB', + 1403843 => 'Rimbey, AB', + 1403844 => 'Rocky Mountain House, AB', + 1403845 => 'Rocky Mountain House, AB', + 1403851 => 'Cochrane, AB', + 1403854 => 'Hanna, AB', + 1403870 => 'Calgary, AB', + 1403873 => 'Calgary, AB', + 1403874 => 'Calgary, AB', + 1403885 => 'Blackfalds, AB', + 1403886 => 'Penhold, AB', + 1403887 => 'Sylvan Lake, AB', + 1403901 => 'Strathmore, AB', + 1403912 => 'Airdrie, AB', + 1403932 => 'Cochrane, AB', + 1403934 => 'Strathmore, AB', + 1403936 => 'Langdon, AB', + 1403938 => 'Okotoks, AB', + 1403942 => 'Lethbridge, AB', + 1403943 => 'Calgary, AB', + 1403944 => 'Calgary, AB', + 1403945 => 'Airdrie, AB', + 1403946 => 'Crossfield, AB', + 1403948 => 'Airdrie, AB', + 1403949 => 'Bragg Creek, AB', + 1403955 => 'Calgary, AB', + 1403974 => 'Calgary, AB', + 1403980 => 'Airdrie, AB', + 1403984 => 'Calgary, AB', + 1403986 => 'Red Deer, AB', + 1403995 => 'Okotoks, AB', + 1404 => 'Georgia', + 1404209 => 'Atlanta, GA', + 1404212 => 'Decatur, GA', + 1404214 => 'Atlanta, GA', + 1404215 => 'Atlanta, GA', + 1404220 => 'Atlanta, GA', + 1404221 => 'Atlanta, GA', + 1404222 => 'Atlanta, GA', + 1404223 => 'Atlanta, GA', + 1404228 => 'Atlanta, GA', + 1404231 => 'Atlanta, GA', + 1404233 => 'Atlanta, GA', + 1404237 => 'Atlanta, GA', + 1404239 => 'Atlanta, GA', + 1404240 => 'Atlanta, GA', + 1404241 => 'Decatur, GA', + 1404243 => 'Decatur, GA', + 1404244 => 'Decatur, GA', + 1404248 => 'Atlanta, GA', + 1404249 => 'Atlanta, GA', + 1404250 => 'Atlanta, GA', + 1404252 => 'Atlanta, GA', + 1404254 => 'Atlanta, GA', + 1404255 => 'Atlanta, GA', + 1404256 => 'Atlanta, GA', + 1404257 => 'Atlanta, GA', + 1404261 => 'Atlanta, GA', + 1404262 => 'Atlanta, GA', + 1404264 => 'Atlanta, GA', + 1404265 => 'Atlanta, GA', + 1404266 => 'Atlanta, GA', + 1404284 => 'Decatur, GA', + 1404286 => 'Decatur, GA', + 1404288 => 'Decatur, GA', + 1404289 => 'Decatur, GA', + 1404303 => 'Atlanta, GA', + 1404305 => 'Atlanta, GA', + 1404315 => 'Atlanta, GA', + 1404320 => 'Atlanta, GA', + 1404321 => 'Decatur, GA', + 1404322 => 'Atlanta, GA', + 1404325 => 'Atlanta, GA', + 1404329 => 'Atlanta, GA', + 1404343 => 'Atlanta, GA', + 1404344 => 'Atlanta, GA', + 1404346 => 'Atlanta, GA', + 1404347 => 'Atlanta, GA', + 1404349 => 'Atlanta, GA', + 1404350 => 'Atlanta, GA', + 1404351 => 'Atlanta, GA', + 1404352 => 'Atlanta, GA', + 1404355 => 'Atlanta, GA', + 1404364 => 'Atlanta, GA', + 1404365 => 'Atlanta, GA', + 1404366 => 'Forest Park, GA', + 1404367 => 'Atlanta, GA', + 1404370 => 'Decatur, GA', + 1404371 => 'Decatur, GA', + 1404373 => 'Decatur, GA', + 1404377 => 'Decatur, GA', + 1404378 => 'Decatur, GA', + 1404389 => 'Atlanta, GA', + 1404419 => 'Atlanta, GA', + 1404442 => 'Atlanta, GA', + 1404459 => 'Atlanta, GA', + 1404467 => 'Atlanta, GA', + 1404472 => 'Atlanta, GA', + 1404477 => 'Atlanta, GA', + 1404501 => 'Decatur, GA', + 1404504 => 'Atlanta, GA', + 1404505 => 'Atlanta, GA', + 1404521 => 'Atlanta, GA', + 1404522 => 'Atlanta, GA', + 1404523 => 'Atlanta, GA', + 1404524 => 'Atlanta, GA', + 1404525 => 'Atlanta, GA', + 1404527 => 'Atlanta, GA', + 1404530 => 'Atlanta, GA', + 1404531 => 'Atlanta, GA', + 1404534 => 'Decatur, GA', + 1404541 => 'Atlanta, GA', + 1404549 => 'Atlanta, GA', + 1404559 => 'Atlanta, GA', + 1404564 => 'Atlanta, GA', + 1404572 => 'Atlanta, GA', + 1404575 => 'Atlanta, GA', + 1404577 => 'Atlanta, GA', + 1404584 => 'Atlanta, GA', + 1404586 => 'Atlanta, GA', + 1404588 => 'Atlanta, GA', + 1404589 => 'Atlanta, GA', + 1404591 => 'Atlanta, GA', + 1404592 => 'Atlanta, GA', + 1404603 => 'Atlanta, GA', + 1404605 => 'Atlanta, GA', + 1404607 => 'Atlanta, GA', + 1404608 => 'Forest Park, GA', + 1404614 => 'Atlanta, GA', + 1404616 => 'Atlanta, GA', + 1404622 => 'Atlanta, GA', + 1404624 => 'Atlanta, GA', + 1404627 => 'Atlanta, GA', + 1404629 => 'Atlanta, GA', + 1404633 => 'Atlanta, GA', + 1404634 => 'Atlanta, GA', + 1404635 => 'Atlanta, GA', + 1404636 => 'Atlanta, GA', + 1404639 => 'Atlanta, GA', + 1404656 => 'Atlanta, GA', + 1404658 => 'Atlanta, GA', + 1404659 => 'Atlanta, GA', + 1404681 => 'Atlanta, GA', + 1404684 => 'Atlanta, GA', + 1404685 => 'Atlanta, GA', + 1404686 => 'Atlanta, GA', + 1404687 => 'Decatur, GA', + 1404688 => 'Atlanta, GA', + 1404691 => 'Atlanta, GA', + 1404696 => 'Atlanta, GA', + 1404699 => 'Atlanta, GA', + 1404705 => 'Atlanta, GA', + 1404712 => 'Atlanta, GA', + 1404724 => 'Atlanta, GA', + 1404727 => 'Atlanta, GA', + 1404728 => 'Atlanta, GA', + 1404730 => 'Atlanta, GA', + 1404733 => 'Atlanta, GA', + 1404745 => 'Atlanta, GA', + 1404748 => 'Atlanta, GA', + 1404752 => 'Atlanta, GA', + 1404753 => 'Atlanta, GA', + 1404755 => 'Atlanta, GA', + 1404756 => 'Atlanta, GA', + 1404758 => 'Atlanta, GA', + 1404760 => 'Atlanta, GA', + 1404761 => 'Atlanta, GA', + 1404762 => 'Atlanta, GA', + 1404763 => 'Atlanta, GA', + 1404766 => 'Atlanta, GA', + 1404767 => 'Atlanta, GA', + 1404768 => 'Atlanta, GA', + 1404778 => 'Atlanta, GA', + 1404785 => 'Atlanta, GA', + 1404792 => 'Atlanta, GA', + 1404794 => 'Atlanta, GA', + 1404799 => 'Atlanta, GA', + 1404812 => 'Atlanta, GA', + 1404814 => 'Atlanta, GA', + 1404815 => 'Atlanta, GA', + 1404816 => 'Atlanta, GA', + 1404817 => 'Atlanta, GA', + 1404835 => 'Atlanta, GA', + 1404841 => 'Atlanta, GA', + 1404842 => 'Atlanta, GA', + 1404843 => 'Atlanta, GA', + 1404845 => 'Atlanta, GA', + 1404846 => 'Atlanta, GA', + 1404847 => 'Atlanta, GA', + 1404848 => 'Atlanta, GA', + 1404851 => 'Atlanta, GA', + 1404853 => 'Atlanta, GA', + 1404869 => 'Atlanta, GA', + 1404870 => 'Atlanta, GA', + 1404872 => 'Atlanta, GA', + 1404873 => 'Atlanta, GA', + 1404874 => 'Atlanta, GA', + 1404875 => 'Atlanta, GA', + 1404876 => 'Atlanta, GA', + 1404880 => 'Atlanta, GA', + 1404881 => 'Atlanta, GA', + 1404885 => 'Atlanta, GA', + 1404888 => 'Atlanta, GA', + 1404892 => 'Atlanta, GA', + 1404894 => 'Atlanta, GA', + 1404897 => 'Atlanta, GA', + 1404941 => 'Atlanta, GA', + 1404942 => 'Atlanta, GA', + 1404943 => 'Atlanta, GA', + 1404949 => 'Atlanta, GA', + 1404954 => 'Atlanta, GA', + 1404962 => 'Atlanta, GA', + 1404963 => 'Atlanta, GA', + 1404968 => 'Atlanta, GA', + 1404982 => 'Atlanta, GA', + 1404995 => 'Atlanta, GA', + 1405 => 'Oklahoma', + 1405214 => 'Shawnee, OK', + 1405216 => 'Edmond, OK', + 1405217 => 'Norman, OK', + 1405222 => 'Chickasha, OK', + 1405224 => 'Chickasha, OK', + 1405228 => 'Oklahoma City, OK', + 1405230 => 'Oklahoma City, OK', + 1405231 => 'Oklahoma City, OK', + 1405232 => 'Oklahoma City, OK', + 1405235 => 'Oklahoma City, OK', + 1405236 => 'Oklahoma City, OK', + 1405238 => 'Pauls Valley, OK', + 1405239 => 'Oklahoma City, OK', + 1405242 => 'Oklahoma City, OK', + 1405247 => 'Anadarko, OK', + 1405254 => 'Oklahoma City, OK', + 1405256 => 'Mustang, OK', + 1405257 => 'Wewoka, OK', + 1405258 => 'Chandler, OK', + 1405260 => 'Guthrie, OK', + 1405262 => 'El Reno, OK', + 1405263 => 'Okarche, OK', + 1405265 => 'Yukon, OK', + 1405270 => 'Oklahoma City, OK', + 1405271 => 'Oklahoma City, OK', + 1405272 => 'Oklahoma City, OK', + 1405273 => 'Shawnee, OK', + 1405275 => 'Shawnee, OK', + 1405279 => 'Meeker, OK', + 1405282 => 'Guthrie, OK', + 1405285 => 'Edmond, OK', + 1405286 => 'Oklahoma City, OK', + 1405292 => 'Norman, OK', + 1405293 => 'Guthrie, OK', + 1405297 => 'Oklahoma City, OK', + 1405302 => 'Oklahoma City, OK', + 1405307 => 'Norman, OK', + 1405310 => 'Norman, OK', + 1405321 => 'Norman, OK', + 1405324 => 'Yukon, OK', + 1405325 => 'Norman, OK', + 1405329 => 'Norman, OK', + 1405330 => 'Edmond, OK', + 1405340 => 'Edmond, OK', + 1405341 => 'Edmond, OK', + 1405348 => 'Edmond, OK', + 1405350 => 'Yukon, OK', + 1405354 => 'Yukon, OK', + 1405359 => 'Edmond, OK', + 1405360 => 'Norman, OK', + 1405364 => 'Norman, OK', + 1405366 => 'Norman, OK', + 1405372 => 'Stillwater, OK', + 1405373 => 'Piedmont, OK', + 1405375 => 'Kingfisher, OK', + 1405376 => 'Mustang, OK', + 1405377 => 'Stillwater, OK', + 1405378 => 'Oklahoma City, OK', + 1405379 => 'Holdenville, OK', + 1405381 => 'Tuttle, OK', + 1405382 => 'Seminole, OK', + 1405387 => 'Newcastle, OK', + 1405390 => 'Choctaw, OK', + 1405391 => 'Harrah, OK', + 1405392 => 'Newcastle, OK', + 1405418 => 'Oklahoma City, OK', + 1405422 => 'El Reno, OK', + 1405424 => 'Oklahoma City, OK', + 1405427 => 'Oklahoma City, OK', + 1405440 => 'Oklahoma City, OK', + 1405447 => 'Norman, OK', + 1405454 => 'Harrah, OK', + 1405456 => 'Oklahoma City, OK', + 1405463 => 'Oklahoma City, OK', + 1405470 => 'Oklahoma City, OK', + 1405471 => 'Edmond, OK', + 1405478 => 'Oklahoma City, OK', + 1405485 => 'Blanchard, OK', + 1405488 => 'Oklahoma City, OK', + 1405491 => 'Oklahoma City, OK', + 1405495 => 'Oklahoma City, OK', + 1405509 => 'Edmond, OK', + 1405513 => 'Edmond, OK', + 1405521 => 'Oklahoma City, OK', + 1405524 => 'Oklahoma City, OK', + 1405525 => 'Oklahoma City, OK', + 1405527 => 'Purcell, OK', + 1405528 => 'Oklahoma City, OK', + 1405533 => 'Stillwater, OK', + 1405542 => 'Hinton, OK', + 1405547 => 'Perkins, OK', + 1405552 => 'Oklahoma City, OK', + 1405562 => 'Edmond, OK', + 1405567 => 'Prague, OK', + 1405573 => 'Norman, OK', + 1405577 => 'Yukon, OK', + 1405579 => 'Norman, OK', + 1405598 => 'Tecumseh, OK', + 1405600 => 'Oklahoma City, OK', + 1405601 => 'Oklahoma City, OK', + 1405602 => 'Oklahoma City, OK', + 1405603 => 'Oklahoma City, OK', + 1405604 => 'Oklahoma City, OK', + 1405605 => 'Oklahoma City, OK', + 1405606 => 'Oklahoma City, OK', + 1405607 => 'Oklahoma City, OK', + 1405608 => 'Oklahoma City, OK', + 1405609 => 'Oklahoma City, OK', + 1405616 => 'Oklahoma City, OK', + 1405619 => 'Oklahoma City, OK', + 1405624 => 'Stillwater, OK', + 1405631 => 'Oklahoma City, OK', + 1405632 => 'Oklahoma City, OK', + 1405634 => 'Oklahoma City, OK', + 1405635 => 'Oklahoma City, OK', + 1405636 => 'Oklahoma City, OK', + 1405665 => 'Wynnewood, OK', + 1405670 => 'Oklahoma City, OK', + 1405672 => 'Oklahoma City, OK', + 1405677 => 'Oklahoma City, OK', + 1405680 => 'Oklahoma City, OK', + 1405681 => 'Oklahoma City, OK', + 1405682 => 'Oklahoma City, OK', + 1405685 => 'Oklahoma City, OK', + 1405686 => 'Oklahoma City, OK', + 1405691 => 'Oklahoma City, OK', + 1405692 => 'Oklahoma City, OK', + 1405701 => 'Norman, OK', + 1405702 => 'Oklahoma City, OK', + 1405707 => 'Stillwater, OK', + 1405713 => 'Oklahoma City, OK', + 1405715 => 'Edmond, OK', + 1405720 => 'Oklahoma City, OK', + 1405721 => 'Oklahoma City, OK', + 1405722 => 'Oklahoma City, OK', + 1405728 => 'Oklahoma City, OK', + 1405733 => 'Oklahoma City, OK', + 1405739 => 'Midwest City, OK', + 1405743 => 'Stillwater, OK', + 1405744 => 'Stillwater, OK', + 1405745 => 'Oklahoma City, OK', + 1405748 => 'Oklahoma City, OK', + 1405749 => 'Oklahoma City, OK', + 1405751 => 'Oklahoma City, OK', + 1405752 => 'Oklahoma City, OK', + 1405753 => 'Oklahoma City, OK', + 1405755 => 'Oklahoma City, OK', + 1405756 => 'Lindsay, OK', + 1405767 => 'Oklahoma City, OK', + 1405771 => 'Spencer, OK', + 1405773 => 'Oklahoma City, OK', + 1405793 => 'Moore, OK', + 1405794 => 'Moore, OK', + 1405799 => 'Moore, OK', + 1405810 => 'Oklahoma City, OK', + 1405840 => 'Oklahoma City, OK', + 1405842 => 'Oklahoma City, OK', + 1405843 => 'Oklahoma City, OK', + 1405844 => 'Edmond, OK', + 1405848 => 'Oklahoma City, OK', + 1405853 => 'Hennessey, OK', + 1405858 => 'Oklahoma City, OK', + 1405872 => 'Noble, OK', + 1405878 => 'Shawnee, OK', + 1405879 => 'Oklahoma City, OK', + 1405884 => 'Geary, OK', + 1405912 => 'Moore, OK', + 1405917 => 'Oklahoma City, OK', + 1405928 => 'Norman, OK', + 1405936 => 'Oklahoma City, OK', + 1405942 => 'Oklahoma City, OK', + 1405943 => 'Oklahoma City, OK', + 1405945 => 'Oklahoma City, OK', + 1405946 => 'Oklahoma City, OK', + 1405947 => 'Oklahoma City, OK', + 1405948 => 'Oklahoma City, OK', + 1405949 => 'Oklahoma City, OK', + 1405951 => 'Oklahoma City, OK', + 1405964 => 'McLoud, OK', + 1405969 => 'Crescent, OK', + 1406 => 'Montana', + 1406212 => 'Kalispell, MT', + 1406222 => 'Livingston, MT', + 1406225 => 'Boulder, MT', + 1406227 => 'East Helena, MT', + 1406228 => 'Glasgow, MT', + 1406232 => 'Miles City, MT', + 1406233 => 'Miles City, MT', + 1406234 => 'Miles City, MT', + 1406237 => 'Billings, MT', + 1406238 => 'Billings, MT', + 1406239 => 'Missoula, MT', + 1406240 => 'Missoula, MT', + 1406243 => 'Missoula, MT', + 1406245 => 'Billings, MT', + 1406247 => 'Billings, MT', + 1406248 => 'Billings, MT', + 1406251 => 'Missoula, MT', + 1406252 => 'Billings, MT', + 1406253 => 'Kalispell, MT', + 1406254 => 'Billings, MT', + 1406255 => 'Billings, MT', + 1406256 => 'Billings, MT', + 1406257 => 'Kalispell, MT', + 1406258 => 'Missoula, MT', + 1406259 => 'Billings, MT', + 1406261 => 'Kalispell, MT', + 1406265 => 'Havre, MT', + 1406266 => 'Townsend, MT', + 1406268 => 'Great Falls, MT', + 1406271 => 'Conrad, MT', + 1406278 => 'Conrad, MT', + 1406281 => 'Billings, MT', + 1406282 => 'Manhattan, MT', + 1406284 => 'Manhattan, MT', + 1406285 => 'Three Forks, MT', + 1406287 => 'Whitehall, MT', + 1406293 => 'Libby, MT', + 1406294 => 'Billings, MT', + 1406295 => 'Troy, MT', + 1406297 => 'Eureka, MT', + 1406322 => 'Columbus, MT', + 1406323 => 'Roundup, MT', + 1406327 => 'Missoula, MT', + 1406328 => 'Absarokee, MT', + 1406329 => 'Missoula, MT', + 1406338 => 'Browning, MT', + 1406346 => 'Forsyth, MT', + 1406357 => 'Chinook, MT', + 1406362 => 'Lincoln, MT', + 1406363 => 'Hamilton, MT', + 1406365 => 'Glendive, MT', + 1406373 => 'Billings, MT', + 1406375 => 'Hamilton, MT', + 1406377 => 'Glendive, MT', + 1406388 => 'Belgrade, MT', + 1406422 => 'Helena, MT', + 1406433 => 'Sidney, MT', + 1406434 => 'Shelby, MT', + 1406436 => 'Broadus, MT', + 1406439 => 'Helena, MT', + 1406442 => 'Helena, MT', + 1406443 => 'Helena, MT', + 1406444 => 'Helena, MT', + 1406446 => 'Red Lodge, MT', + 1406447 => 'Helena, MT', + 1406449 => 'Helena, MT', + 1406452 => 'Great Falls, MT', + 1406453 => 'Great Falls, MT', + 1406454 => 'Great Falls, MT', + 1406455 => 'Great Falls, MT', + 1406457 => 'Helena, MT', + 1406458 => 'Helena, MT', + 1406466 => 'Choteau, MT', + 1406467 => 'Fairfield, MT', + 1406477 => 'Lame Deer, MT', + 1406485 => 'Circle, MT', + 1406487 => 'Scobey, MT', + 1406488 => 'Sidney, MT', + 1406494 => 'Butte, MT', + 1406495 => 'Helena, MT', + 1406522 => 'Bozeman, MT', + 1406532 => 'Missoula, MT', + 1406534 => 'Billings, MT', + 1406535 => 'Lewistown, MT', + 1406538 => 'Lewistown, MT', + 1406539 => 'Bozeman, MT', + 1406541 => 'Missoula, MT', + 1406542 => 'Missoula, MT', + 1406543 => 'Missoula, MT', + 1406547 => 'White Slphr Spgs, MT', + 1406549 => 'Missoula, MT', + 1406551 => 'Bozeman, MT', + 1406556 => 'Bozeman, MT', + 1406563 => 'Anaconda, MT', + 1406570 => 'Bozeman, MT', + 1406579 => 'Bozeman, MT', + 1406580 => 'Bozeman, MT', + 1406581 => 'Bozeman, MT', + 1406582 => 'Bozeman, MT', + 1406585 => 'Bozeman, MT', + 1406586 => 'Bozeman, MT', + 1406587 => 'Bozeman, MT', + 1406599 => 'Bozeman, MT', + 1406600 => 'Bozeman, MT', + 1406622 => 'Fort Benton, MT', + 1406626 => 'Frenchtown, MT', + 1406628 => 'Laurel, MT', + 1406632 => 'Harlowton, MT', + 1406642 => 'Victor, MT', + 1406646 => 'West Yellowstone, MT', + 1406651 => 'Billings, MT', + 1406652 => 'Billings, MT', + 1406653 => 'Wolf Point, MT', + 1406654 => 'Malta, MT', + 1406655 => 'Billings, MT', + 1406656 => 'Billings, MT', + 1406657 => 'Billings, MT', + 1406665 => 'Hardin, MT', + 1406670 => 'Billings, MT', + 1406671 => 'Billings, MT', + 1406676 => 'Ronan, MT', + 1406677 => 'Seeley Lake, MT', + 1406682 => 'Ennis, MT', + 1406683 => 'Dillon, MT', + 1406690 => 'Billings, MT', + 1406698 => 'Billings, MT', + 1406721 => 'Missoula, MT', + 1406723 => 'Butte, MT', + 1406726 => 'Arlee, MT', + 1406727 => 'Great Falls, MT', + 1406728 => 'Missoula, MT', + 1406731 => 'Great Falls, MT', + 1406741 => 'Hot Springs, MT', + 1406745 => 'St. Ignatius, MT', + 1406748 => 'Colstrip, MT', + 1406751 => 'Kalispell, MT', + 1406752 => 'Kalispell, MT', + 1406755 => 'Kalispell, MT', + 1406756 => 'Kalispell, MT', + 1406758 => 'Kalispell, MT', + 1406759 => 'Chester, MT', + 1406761 => 'Great Falls, MT', + 1406763 => 'Gallatin Gateway, MT', + 1406765 => 'Plentywood, MT', + 1406768 => 'Poplar, MT', + 1406771 => 'Great Falls, MT', + 1406777 => 'Stevensville, MT', + 1406778 => 'Baker, MT', + 1406782 => 'Butte, MT', + 1406821 => 'Darby, MT', + 1406822 => 'Superior, MT', + 1406826 => 'Plains, MT', + 1406827 => 'Thompson Falls, MT', + 1406829 => 'Missoula, MT', + 1406830 => 'Missoula, MT', + 1406837 => 'Bigfork, MT', + 1406839 => 'Billings, MT', + 1406842 => 'Sheridan, MT', + 1406844 => 'Lakeside, MT', + 1406846 => 'Deer Lodge, MT', + 1406847 => 'Noxon, MT', + 1406848 => 'Gardiner, MT', + 1406855 => 'Billings, MT', + 1406859 => 'Philipsburg, MT', + 1406860 => 'Billings, MT', + 1406861 => 'Billings, MT', + 1406862 => 'Whitefish, MT', + 1406863 => 'Whitefish, MT', + 1406873 => 'Cut Bank, MT', + 1406883 => 'Polson, MT', + 1406889 => 'Eureka, MT', + 1406892 => 'Columbia Falls, MT', + 1406896 => 'Billings, MT', + 1406932 => 'Big Timber, MT', + 1406961 => 'Corvallis, MT', + 1406962 => 'Joliet, MT', + 1406969 => 'Billings, MT', + 1406994 => 'Bozeman, MT', + 1406995 => 'Big Sky, MT', + 1407 => 'Florida', + 1407201 => 'Kissimmee, FL', + 1407203 => 'Orlando, FL', + 1407206 => 'Orlando, FL', + 1407207 => 'Orlando, FL', + 1407208 => 'Orlando, FL', + 1407210 => 'Orlando, FL', + 1407219 => 'Orlando, FL', + 1407226 => 'Orlando, FL', + 1407228 => 'Orlando, FL', + 1407237 => 'Orlando, FL', + 1407238 => 'Orlando, FL', + 1407239 => 'Orlando, FL', + 1407240 => 'Orlando, FL', + 1407243 => 'Orlando, FL', + 1407244 => 'Orlando, FL', + 1407245 => 'Orlando, FL', + 1407246 => 'Orlando, FL', + 1407248 => 'Orlando, FL', + 1407249 => 'Orlando, FL', + 1407251 => 'Orlando, FL', + 1407253 => 'Orlando, FL', + 1407254 => 'Orlando, FL', + 1407264 => 'Orlando, FL', + 1407268 => 'Sanford, FL', + 1407273 => 'Orlando, FL', + 1407275 => 'Orlando, FL', + 1407277 => 'Orlando, FL', + 1407281 => 'Orlando, FL', + 1407282 => 'Orlando, FL', + 1407286 => 'Orlando, FL', + 1407290 => 'Orlando, FL', + 1407291 => 'Orlando, FL', + 1407292 => 'Orlando, FL', + 1407293 => 'Orlando, FL', + 1407294 => 'Orlando, FL', + 1407295 => 'Orlando, FL', + 1407296 => 'Orlando, FL', + 1407297 => 'Orlando, FL', + 1407298 => 'Orlando, FL', + 1407299 => 'Orlando, FL', + 1407301 => 'Kissimmee, FL', + 1407302 => 'Sanford, FL', + 1407303 => 'Orlando, FL', + 1407320 => 'Sanford, FL', + 1407321 => 'Sanford, FL', + 1407322 => 'Sanford, FL', + 1407323 => 'Sanford, FL', + 1407324 => 'Sanford, FL', + 1407327 => 'Winter Springs, FL', + 1407328 => 'Sanford, FL', + 1407330 => 'Sanford, FL', + 1407333 => 'Lake Mary, FL', + 1407343 => 'Kissimmee, FL', + 1407344 => 'Kissimmee, FL', + 1407345 => 'Orlando, FL', + 1407348 => 'Kissimmee, FL', + 1407349 => 'Geneva, FL', + 1407350 => 'Kissimmee, FL', + 1407351 => 'Orlando, FL', + 1407352 => 'Orlando, FL', + 1407354 => 'Orlando, FL', + 1407355 => 'Orlando, FL', + 1407359 => 'Oviedo, FL', + 1407363 => 'Orlando, FL', + 1407365 => 'Oviedo, FL', + 1407366 => 'Oviedo, FL', + 1407367 => 'Orlando, FL', + 1407370 => 'Orlando, FL', + 1407380 => 'Orlando, FL', + 1407381 => 'Orlando, FL', + 1407382 => 'Orlando, FL', + 1407384 => 'Orlando, FL', + 1407390 => 'Kissimmee, FL', + 1407396 => 'Kissimmee, FL', + 1407397 => 'Kissimmee, FL', + 1407412 => 'Orlando, FL', + 1407414 => 'Kissimmee, FL', + 1407418 => 'Orlando, FL', + 1407420 => 'Orlando, FL', + 1407422 => 'Orlando, FL', + 1407423 => 'Orlando, FL', + 1407425 => 'Orlando, FL', + 1407426 => 'Orlando, FL', + 1407438 => 'Orlando, FL', + 1407440 => 'Orlando, FL', + 1407444 => 'Lake Mary, FL', + 1407445 => 'Orlando, FL', + 1407447 => 'Orlando, FL', + 1407464 => 'Apopka, FL', + 1407465 => 'Orlando, FL', + 1407469 => 'Montverde, FL', + 1407481 => 'Orlando, FL', + 1407482 => 'Orlando, FL', + 1407483 => 'Kissimmee, FL', + 1407498 => 'St. Cloud, FL', + 1407518 => 'Kissimmee, FL', + 1407521 => 'Orlando, FL', + 1407522 => 'Orlando, FL', + 1407523 => 'Orlando, FL', + 1407532 => 'Orlando, FL', + 1407540 => 'Orlando, FL', + 1407542 => 'Oviedo, FL', + 1407566 => 'Kissimmee, FL', + 1407568 => 'Orlando, FL', + 1407578 => 'Orlando, FL', + 1407599 => 'Winter Park, FL', + 1407601 => 'Orlando, FL', + 1407622 => 'Winter Park, FL', + 1407628 => 'Winter Park, FL', + 1407644 => 'Winter Park, FL', + 1407645 => 'Winter Park, FL', + 1407646 => 'Winter Park, FL', + 1407647 => 'Winter Park, FL', + 1407648 => 'Orlando, FL', + 1407649 => 'Orlando, FL', + 1407650 => 'Orlando, FL', + 1407654 => 'Winter Garden, FL', + 1407656 => 'Winter Garden, FL', + 1407657 => 'Winter Park, FL', + 1407658 => 'Orlando, FL', + 1407660 => 'Maitland, FL', + 1407665 => 'Sanford, FL', + 1407667 => 'Maitland, FL', + 1407671 => 'Winter Park, FL', + 1407672 => 'Winter Park, FL', + 1407673 => 'Winter Park, FL', + 1407674 => 'Orlando, FL', + 1407677 => 'Winter Park, FL', + 1407678 => 'Winter Park, FL', + 1407679 => 'Winter Park, FL', + 1407688 => 'Sanford, FL', + 1407704 => 'Orlando, FL', + 1407730 => 'Orlando, FL', + 1407737 => 'Orlando, FL', + 1407740 => 'Winter Park, FL', + 1407770 => 'Orlando, FL', + 1407802 => 'Orlando, FL', + 1407804 => 'Lake Mary, FL', + 1407812 => 'Orlando, FL', + 1407814 => 'Apopka, FL', + 1407816 => 'Orlando, FL', + 1407822 => 'Orlando, FL', + 1407823 => 'Orlando, FL', + 1407826 => 'Orlando, FL', + 1407827 => 'Lake Buena Vista, FL', + 1407829 => 'Lake Mary, FL', + 1407833 => 'Lake Mary, FL', + 1407835 => 'Orlando, FL', + 1407836 => 'Orlando, FL', + 1407839 => 'Orlando, FL', + 1407841 => 'Orlando, FL', + 1407843 => 'Orlando, FL', + 1407846 => 'Kissimmee, FL', + 1407847 => 'Kissimmee, FL', + 1407849 => 'Orlando, FL', + 1407850 => 'Orlando, FL', + 1407851 => 'Orlando, FL', + 1407852 => 'Orlando, FL', + 1407854 => 'Orlando, FL', + 1407855 => 'Orlando, FL', + 1407856 => 'Orlando, FL', + 1407857 => 'Orlando, FL', + 1407858 => 'Orlando, FL', + 1407859 => 'Orlando, FL', + 1407870 => 'Kissimmee, FL', + 1407872 => 'Orlando, FL', + 1407877 => 'Winter Garden, FL', + 1407878 => 'Sanford, FL', + 1407880 => 'Apopka, FL', + 1407884 => 'Apopka, FL', + 1407886 => 'Apopka, FL', + 1407888 => 'Orlando, FL', + 1407889 => 'Apopka, FL', + 1407891 => 'St. Cloud, FL', + 1407892 => 'St. Cloud, FL', + 1407893 => 'Orlando, FL', + 1407894 => 'Orlando, FL', + 1407895 => 'Orlando, FL', + 1407896 => 'Orlando, FL', + 1407897 => 'Orlando, FL', + 1407898 => 'Orlando, FL', + 1407903 => 'Orlando, FL', + 1407926 => 'Orlando, FL', + 1407931 => 'Kissimmee, FL', + 1407932 => 'Kissimmee, FL', + 1407933 => 'Kissimmee, FL', + 1407935 => 'Kissimmee, FL', + 1407939 => 'Lake Buena Vista, FL', + 1407944 => 'Kissimmee, FL', + 1407957 => 'St. Cloud, FL', + 1407971 => 'Oviedo, FL', + 1407977 => 'Oviedo, FL', + 1407992 => 'Orlando, FL', + 1407996 => 'Orlando, FL', + 1407999 => 'Orlando, FL', + 1408 => 'California', + 1408216 => 'San Jose, CA', + 1408217 => 'San Jose, CA', + 1408223 => 'San Jose, CA', + 1408224 => 'San Jose, CA', + 1408225 => 'San Jose, CA', + 1408226 => 'San Jose, CA', + 1408227 => 'San Jose, CA', + 1408229 => 'San Jose, CA', + 1408236 => 'Santa Clara, CA', + 1408238 => 'San Jose, CA', + 1408243 => 'Santa Clara, CA', + 1408245 => 'Sunnyvale, CA', + 1408251 => 'San Jose, CA', + 1408254 => 'San Jose, CA', + 1408257 => 'Cupertino, CA', + 1408258 => 'San Jose, CA', + 1408259 => 'San Jose, CA', + 1408262 => 'Milpitas, CA', + 1408263 => 'Milpitas, CA', + 1408264 => 'San Jose, CA', + 1408265 => 'San Jose, CA', + 1408266 => 'San Jose, CA', + 1408267 => 'San Jose, CA', + 1408268 => 'San Jose, CA', + 1408269 => 'San Jose, CA', + 1408270 => 'San Jose, CA', + 1408271 => 'San Jose, CA', + 1408272 => 'San Jose, CA', + 1408274 => 'San Jose, CA', + 1408275 => 'San Jose, CA', + 1408277 => 'San Jose, CA', + 1408278 => 'San Jose, CA', + 1408279 => 'San Jose, CA', + 1408280 => 'San Jose, CA', + 1408281 => 'San Jose, CA', + 1408282 => 'San Jose, CA', + 1408283 => 'San Jose, CA', + 1408286 => 'San Jose, CA', + 1408287 => 'San Jose, CA', + 1408288 => 'San Jose, CA', + 1408289 => 'San Jose, CA', + 1408292 => 'San Jose, CA', + 1408293 => 'San Jose, CA', + 1408294 => 'San Jose, CA', + 1408295 => 'San Jose, CA', + 1408297 => 'San Jose, CA', + 1408298 => 'San Jose, CA', + 1408299 => 'San Jose, CA', + 1408321 => 'San Jose, CA', + 1408347 => 'San Jose, CA', + 1408353 => 'Los Gatos, CA', + 1408354 => 'Los Gatos, CA', + 1408356 => 'Los Gatos, CA', + 1408360 => 'San Jose, CA', + 1408362 => 'San Jose, CA', + 1408363 => 'San Jose, CA', + 1408364 => 'Campbell, CA', + 1408365 => 'San Jose, CA', + 1408366 => 'Cupertino, CA', + 1408370 => 'Campbell, CA', + 1408374 => 'Campbell, CA', + 1408376 => 'Campbell, CA', + 1408378 => 'Campbell, CA', + 1408379 => 'Campbell, CA', + 1408392 => 'San Jose, CA', + 1408395 => 'Los Gatos, CA', + 1408399 => 'Los Gatos, CA', + 1408402 => 'Los Gatos, CA', + 1408423 => 'Santa Clara, CA', + 1408432 => 'San Jose, CA', + 1408433 => 'San Jose, CA', + 1408435 => 'San Jose, CA', + 1408436 => 'San Jose, CA', + 1408437 => 'San Jose, CA', + 1408441 => 'San Jose, CA', + 1408445 => 'San Jose, CA', + 1408446 => 'Cupertino, CA', + 1408448 => 'San Jose, CA', + 1408451 => 'San Jose, CA', + 1408452 => 'San Jose, CA', + 1408453 => 'San Jose, CA', + 1408492 => 'Santa Clara, CA', + 1408496 => 'Santa Clara, CA', + 1408524 => 'Sunnyvale, CA', + 1408528 => 'San Jose, CA', + 1408530 => 'Sunnyvale, CA', + 1408531 => 'San Jose, CA', + 1408532 => 'San Jose, CA', + 1408535 => 'San Jose, CA', + 1408554 => 'Santa Clara, CA', + 1408564 => 'San Jose, CA', + 1408567 => 'Santa Clara, CA', + 1408573 => 'San Jose, CA', + 1408578 => 'San Jose, CA', + 1408586 => 'Milpitas, CA', + 1408629 => 'San Jose, CA', + 1408654 => 'Santa Clara, CA', + 1408683 => 'San Martin, CA', + 1408719 => 'Milpitas, CA', + 1408720 => 'Sunnyvale, CA', + 1408723 => 'San Jose, CA', + 1408725 => 'Cupertino, CA', + 1408727 => 'Santa Clara, CA', + 1408729 => 'San Jose, CA', + 1408730 => 'Sunnyvale, CA', + 1408732 => 'Sunnyvale, CA', + 1408733 => 'Sunnyvale, CA', + 1408734 => 'Sunnyvale, CA', + 1408735 => 'Sunnyvale, CA', + 1408736 => 'Sunnyvale, CA', + 1408737 => 'Sunnyvale, CA', + 1408738 => 'Sunnyvale, CA', + 1408739 => 'Sunnyvale, CA', + 1408741 => 'Saratoga, CA', + 1408745 => 'Sunnyvale, CA', + 1408746 => 'Sunnyvale, CA', + 1408748 => 'Santa Clara, CA', + 1408749 => 'Sunnyvale, CA', + 1408773 => 'Sunnyvale, CA', + 1408776 => 'Morgan Hill, CA', + 1408777 => 'Cupertino, CA', + 1408778 => 'Morgan Hill, CA', + 1408779 => 'Morgan Hill, CA', + 1408782 => 'Morgan Hill, CA', + 1408842 => 'Gilroy, CA', + 1408844 => 'Santa Clara, CA', + 1408846 => 'Gilroy, CA', + 1408847 => 'Gilroy, CA', + 1408848 => 'Gilroy, CA', + 1408851 => 'Santa Clara, CA', + 1408855 => 'Santa Clara, CA', + 1408866 => 'Campbell, CA', + 1408867 => 'Saratoga, CA', + 1408871 => 'Campbell, CA', + 1408879 => 'Campbell, CA', + 1408885 => 'San Jose, CA', + 1408918 => 'San Jose, CA', + 1408920 => 'San Jose, CA', + 1408923 => 'San Jose, CA', + 1408926 => 'San Jose, CA', + 1408927 => 'San Jose, CA', + 1408929 => 'San Jose, CA', + 1408934 => 'Milpitas, CA', + 1408935 => 'Milpitas, CA', + 1408937 => 'San Jose, CA', + 1408941 => 'Milpitas, CA', + 1408942 => 'Milpitas, CA', + 1408945 => 'Milpitas, CA', + 1408946 => 'Milpitas, CA', + 1408947 => 'San Jose, CA', + 1408954 => 'San Jose, CA', + 1408956 => 'Milpitas, CA', + 1408970 => 'Santa Clara, CA', + 1408971 => 'San Jose, CA', + 1408972 => 'San Jose, CA', + 1408973 => 'Cupertino, CA', + 1408975 => 'San Jose, CA', + 1408977 => 'San Jose, CA', + 1408978 => 'San Jose, CA', + 1408979 => 'San Jose, CA', + 1408980 => 'Santa Clara, CA', + 1408982 => 'Santa Clara, CA', + 1408986 => 'Santa Clara, CA', + 1408988 => 'Santa Clara, CA', + 1408993 => 'San Jose, CA', + 1408995 => 'San Jose, CA', + 1408996 => 'Cupertino, CA', + 1408997 => 'San Jose, CA', + 1408998 => 'San Jose, CA', + 1409 => 'Texas', + 1409212 => 'Beaumont, TX', + 1409246 => 'Kountze, TX', + 1409267 => 'Anahuac, TX', + 1409283 => 'Woodville, TX', + 1409287 => 'Sour Lake, TX', + 1409296 => 'Winnie, TX', + 1409347 => 'Beaumont, TX', + 1409379 => 'Newton, TX', + 1409383 => 'Jasper, TX', + 1409384 => 'Jasper, TX', + 1409385 => 'Silsbee, TX', + 1409386 => 'Silsbee, TX', + 1409423 => 'Kirbyville, TX', + 1409489 => 'Jasper, TX', + 1409670 => 'Orange, TX', + 1409724 => 'Nederland, TX', + 1409735 => 'Bridge City, TX', + 1409736 => 'Port Arthur, TX', + 1409737 => 'Galveston, TX', + 1409740 => 'Galveston, TX', + 1409741 => 'Galveston, TX', + 1409744 => 'Galveston, TX', + 1409745 => 'Orange, TX', + 1409747 => 'Galveston, TX', + 1409751 => 'Lumberton, TX', + 1409755 => 'Lumberton, TX', + 1409762 => 'Galveston, TX', + 1409763 => 'Galveston, TX', + 1409765 => 'Galveston, TX', + 1409766 => 'Galveston, TX', + 1409769 => 'Vidor, TX', + 1409770 => 'Galveston, TX', + 1409772 => 'Galveston, TX', + 1409783 => 'Vidor, TX', + 1409787 => 'Hemphill, TX', + 1409794 => 'Beaumont, TX', + 1409813 => 'Beaumont, TX', + 1409832 => 'Beaumont, TX', + 1409833 => 'Beaumont, TX', + 1409835 => 'Beaumont, TX', + 1409838 => 'Beaumont, TX', + 1409839 => 'Beaumont, TX', + 1409840 => 'Beaumont, TX', + 1409842 => 'Beaumont, TX', + 1409860 => 'Beaumont, TX', + 1409861 => 'Beaumont, TX', + 1409866 => 'Beaumont, TX', + 1409882 => 'Orange, TX', + 1409883 => 'Orange, TX', + 1409886 => 'Orange, TX', + 1409892 => 'Beaumont, TX', + 1409896 => 'Beaumont, TX', + 1409898 => 'Beaumont, TX', + 1409899 => 'Beaumont, TX', + 1409924 => 'Beaumont, TX', + 1409925 => 'Santa Fe, TX', + 1409938 => 'La Marque, TX', + 1409945 => 'Texas City, TX', + 1409948 => 'Texas City, TX', + 1409962 => 'Groves, TX', + 1409963 => 'Groves, TX', + 1409982 => 'Port Arthur, TX', + 1409983 => 'Port Arthur, TX', + 1409985 => 'Port Arthur, TX', + 1409994 => 'Buna, TX', + 1410 => 'Maryland', + 1410203 => 'Ellicott City, MD', + 1410208 => 'Berlin, MD', + 1410213 => 'Ocean City, MD', + 1410216 => 'Annapolis, MD', + 1410219 => 'Salisbury, MD', + 1410221 => 'Cambridge, MD', + 1410224 => 'Annapolis, MD', + 1410225 => 'Baltimore, MD', + 1410228 => 'Cambridge, MD', + 1410230 => 'Baltimore, MD', + 1410233 => 'Baltimore, MD', + 1410234 => 'Baltimore, MD', + 1410235 => 'Baltimore, MD', + 1410243 => 'Baltimore, MD', + 1410244 => 'Baltimore, MD', + 1410250 => 'Ocean City, MD', + 1410254 => 'Baltimore, MD', + 1410255 => 'Pasadena, MD', + 1410263 => 'Annapolis, MD', + 1410266 => 'Annapolis, MD', + 1410267 => 'Annapolis, MD', + 1410268 => 'Annapolis, MD', + 1410269 => 'Annapolis, MD', + 1410272 => 'Aberdeen, MD', + 1410273 => 'Aberdeen, MD', + 1410276 => 'Baltimore, MD', + 1410280 => 'Annapolis, MD', + 1410287 => 'North East, MD', + 1410289 => 'Ocean City, MD', + 1410290 => 'Columbia, MD', + 1410295 => 'Annapolis, MD', + 1410297 => 'Aberdeen, MD', + 1410309 => 'Columbia, MD', + 1410312 => 'Columbia, MD', + 1410313 => 'Ellicott City, MD', + 1410315 => 'Severna Park, MD', + 1410318 => 'Baltimore, MD', + 1410323 => 'Baltimore, MD', + 1410325 => 'Baltimore, MD', + 1410327 => 'Baltimore, MD', + 1410328 => 'Baltimore, MD', + 1410332 => 'Baltimore, MD', + 1410334 => 'Salisbury, MD', + 1410337 => 'Towson, MD', + 1410338 => 'Baltimore, MD', + 1410341 => 'Salisbury, MD', + 1410342 => 'Baltimore, MD', + 1410347 => 'Baltimore, MD', + 1410349 => 'Annapolis, MD', + 1410352 => 'Bishopville, MD', + 1410354 => 'Baltimore, MD', + 1410355 => 'Baltimore, MD', + 1410356 => 'Owings Mills, MD', + 1410358 => 'Baltimore, MD', + 1410360 => 'Pasadena, MD', + 1410362 => 'Baltimore, MD', + 1410363 => 'Owings Mills, MD', + 1410366 => 'Baltimore, MD', + 1410367 => 'Baltimore, MD', + 1410368 => 'Baltimore, MD', + 1410374 => 'Hampstead, MD', + 1410377 => 'Baltimore, MD', + 1410379 => 'Elkridge, MD', + 1410381 => 'Columbia, MD', + 1410383 => 'Baltimore, MD', + 1410385 => 'Baltimore, MD', + 1410386 => 'Westminster, MD', + 1410392 => 'Elkton, MD', + 1410396 => 'Baltimore, MD', + 1410398 => 'Elkton, MD', + 1410414 => 'Prince Frederick, MD', + 1410415 => 'Pikesville, MD', + 1410418 => 'Ellicott City, MD', + 1410420 => 'Bel Air, MD', + 1410424 => 'Glen Burnie, MD', + 1410426 => 'Baltimore, MD', + 1410433 => 'Baltimore, MD', + 1410435 => 'Baltimore, MD', + 1410437 => 'Pasadena, MD', + 1410439 => 'Pasadena, MD', + 1410444 => 'Baltimore, MD', + 1410448 => 'Baltimore, MD', + 1410455 => 'Catonsville, MD', + 1410457 => 'Darlington, MD', + 1410461 => 'Ellicott City, MD', + 1410462 => 'Baltimore, MD', + 1410464 => 'Baltimore, MD', + 1410465 => 'Ellicott City, MD', + 1410466 => 'Baltimore, MD', + 1410467 => 'Baltimore, MD', + 1410476 => 'Trappe, MD', + 1410479 => 'Denton, MD', + 1410480 => 'Ellicott City, MD', + 1410482 => 'Greensboro, MD', + 1410483 => 'Baltimore, MD', + 1410484 => 'Pikesville, MD', + 1410485 => 'Baltimore, MD', + 1410486 => 'Pikesville, MD', + 1410488 => 'Baltimore, MD', + 1410496 => 'Randallstown, MD', + 1410502 => 'Baltimore, MD', + 1410517 => 'Reisterstown, MD', + 1410519 => 'Severn, MD', + 1410521 => 'Randallstown, MD', + 1410522 => 'Baltimore, MD', + 1410523 => 'Baltimore, MD', + 1410524 => 'Ocean City, MD', + 1410525 => 'Baltimore, MD', + 1410526 => 'Reisterstown, MD', + 1410528 => 'Baltimore, MD', + 1410532 => 'Baltimore, MD', + 1410534 => 'Baltimore, MD', + 1410535 => 'Prince Frederick, MD', + 1410536 => 'Halethorpe, MD', + 1410539 => 'Baltimore, MD', + 1410542 => 'Baltimore, MD', + 1410543 => 'Salisbury, MD', + 1410544 => 'Severna Park, MD', + 1410546 => 'Salisbury, MD', + 1410547 => 'Baltimore, MD', + 1410548 => 'Salisbury, MD', + 1410549 => 'Sykesville, MD', + 1410550 => 'Baltimore, MD', + 1410552 => 'Sykesville, MD', + 1410553 => 'Glen Burnie, MD', + 1410554 => 'Baltimore, MD', + 1410558 => 'Baltimore, MD', + 1410563 => 'Baltimore, MD', + 1410566 => 'Baltimore, MD', + 1410571 => 'Annapolis, MD', + 1410573 => 'Annapolis, MD', + 1410576 => 'Baltimore, MD', + 1410578 => 'Baltimore, MD', + 1410579 => 'Elkridge, MD', + 1410581 => 'Owings Mills, MD', + 1410585 => 'Baltimore, MD', + 1410590 => 'Glen Burnie, MD', + 1410601 => 'Baltimore, MD', + 1410602 => 'Pikesville, MD', + 1410604 => 'Stevensville, MD', + 1410605 => 'Baltimore, MD', + 1410612 => 'Edgewood, MD', + 1410614 => 'Baltimore, MD', + 1410620 => 'Elkton, MD', + 1410625 => 'Baltimore, MD', + 1410626 => 'Annapolis, MD', + 1410628 => 'Cockeysville, MD', + 1410629 => 'Berlin, MD', + 1410631 => 'Baltimore, MD', + 1410632 => 'Snow Hill, MD', + 1410633 => 'Baltimore, MD', + 1410634 => 'Ridgely, MD', + 1410635 => 'New Windsor, MD', + 1410638 => 'Bel Air, MD', + 1410639 => 'Rock Hall, MD', + 1410641 => 'Berlin, MD', + 1410642 => 'Perryville, MD', + 1410643 => 'Stevensville, MD', + 1410644 => 'Baltimore, MD', + 1410646 => 'Baltimore, MD', + 1410647 => 'Severna Park, MD', + 1410651 => 'Princess Anne, MD', + 1410653 => 'Pikesville, MD', + 1410654 => 'Owings Mills, MD', + 1410655 => 'Randallstown, MD', + 1410658 => 'Rising Sun, MD', + 1410659 => 'Baltimore, MD', + 1410662 => 'Baltimore, MD', + 1410664 => 'Baltimore, MD', + 1410665 => 'Parkville, MD', + 1410666 => 'Cockeysville, MD', + 1410667 => 'Cockeysville, MD', + 1410669 => 'Baltimore, MD', + 1410671 => 'Edgewood, MD', + 1410672 => 'Odenton, MD', + 1410673 => 'Preston, MD', + 1410674 => 'Odenton, MD', + 1410675 => 'Baltimore, MD', + 1410676 => 'Edgewood, MD', + 1410677 => 'Salisbury, MD', + 1410685 => 'Baltimore, MD', + 1410695 => 'Odenton, MD', + 1410706 => 'Baltimore, MD', + 1410715 => 'Columbia, MD', + 1410719 => 'Catonsville, MD', + 1410723 => 'Ocean City, MD', + 1410727 => 'Baltimore, MD', + 1410728 => 'Baltimore, MD', + 1410729 => 'Millersville, MD', + 1410730 => 'Columbia, MD', + 1410732 => 'Baltimore, MD', + 1410740 => 'Columbia, MD', + 1410741 => 'Lothian, MD', + 1410742 => 'Salisbury, MD', + 1410744 => 'Catonsville, MD', + 1410745 => 'St. Michaels, MD', + 1410747 => 'Catonsville, MD', + 1410749 => 'Salisbury, MD', + 1410750 => 'Ellicott City, MD', + 1410751 => 'Westminster, MD', + 1410752 => 'Baltimore, MD', + 1410754 => 'Federalsburg, MD', + 1410756 => 'Taneytown, MD', + 1410757 => 'Annapolis, MD', + 1410758 => 'Centreville, MD', + 1410760 => 'Glen Burnie, MD', + 1410761 => 'Glen Burnie, MD', + 1410763 => 'Easton, MD', + 1410764 => 'Baltimore, MD', + 1410766 => 'Glen Burnie, MD', + 1410767 => 'Baltimore, MD', + 1410768 => 'Glen Burnie, MD', + 1410770 => 'Easton, MD', + 1410772 => 'Columbia, MD', + 1410778 => 'Chestertown, MD', + 1410783 => 'Baltimore, MD', + 1410787 => 'Glen Burnie, MD', + 1410788 => 'Catonsville, MD', + 1410795 => 'Sykesville, MD', + 1410796 => 'Elkridge, MD', + 1410803 => 'Bel Air, MD', + 1410810 => 'Chestertown, MD', + 1410814 => 'Baltimore, MD', + 1410819 => 'Easton, MD', + 1410820 => 'Easton, MD', + 1410822 => 'Easton, MD', + 1410823 => 'Towson, MD', + 1410827 => 'Queenstown, MD', + 1410833 => 'Reisterstown, MD', + 1410835 => 'Pittsville, MD', + 1410836 => 'Bel Air, MD', + 1410837 => 'Baltimore, MD', + 1410838 => 'Bel Air, MD', + 1410840 => 'Westminster, MD', + 1410841 => 'Annapolis, MD', + 1410848 => 'Westminster, MD', + 1410849 => 'Annapolis, MD', + 1410857 => 'Westminster, MD', + 1410860 => 'Salisbury, MD', + 1410861 => 'Finksburg, MD', + 1410863 => 'Glen Burnie, MD', + 1410869 => 'Catonsville, MD', + 1410871 => 'Westminster, MD', + 1410872 => 'Columbia, MD', + 1410876 => 'Westminster, MD', + 1410877 => 'Fallston, MD', + 1410879 => 'Bel Air, MD', + 1410884 => 'Columbia, MD', + 1410885 => 'Chesapeake City, MD', + 1410889 => 'Baltimore, MD', + 1410893 => 'Bel Air, MD', + 1410896 => 'Delmar, MD', + 1410897 => 'Annapolis, MD', + 1410901 => 'Cambridge, MD', + 1410902 => 'Owings Mills, MD', + 1410922 => 'Randallstown, MD', + 1410928 => 'Millington, MD', + 1410938 => 'Towson, MD', + 1410939 => 'Havre de Grace, MD', + 1410943 => 'Hurlock, MD', + 1410945 => 'Baltimore, MD', + 1410947 => 'Baltimore, MD', + 1410955 => 'Baltimore, MD', + 1410956 => 'Edgewater, MD', + 1410957 => 'Pocomoke City, MD', + 1410962 => 'Baltimore, MD', + 1410964 => 'Columbia, MD', + 1410968 => 'Crisfield, MD', + 1410974 => 'Annapolis, MD', + 1410987 => 'Millersville, MD', + 1410990 => 'Annapolis, MD', + 1410992 => 'Columbia, MD', + 1410995 => 'Columbia, MD', + 1410996 => 'Elkton, MD', + 1410997 => 'Columbia, MD', + 1410998 => 'Owings Mills, MD', + 1412 => 'Pennsylvania', + 1412220 => 'Bridgeville, PA', + 1412221 => 'Bridgeville, PA', + 1412231 => 'Pittsburgh, PA', + 1412232 => 'Pittsburgh, PA', + 1412233 => 'Clairton, PA', + 1412235 => 'Pittsburgh, PA', + 1412241 => 'Pittsburgh, PA', + 1412242 => 'Pittsburgh, PA', + 1412243 => 'Pittsburgh, PA', + 1412244 => 'Pittsburgh, PA', + 1412246 => 'Pittsburgh, PA', + 1412247 => 'Pittsburgh, PA', + 1412255 => 'Pittsburgh, PA', + 1412257 => 'Bridgeville, PA', + 1412261 => 'Pittsburgh, PA', + 1412262 => 'Coraopolis, PA', + 1412264 => 'Coraopolis, PA', + 1412269 => 'Coraopolis, PA', + 1412276 => 'Carnegie, PA', + 1412278 => 'Carnegie, PA', + 1412279 => 'Carnegie, PA', + 1412281 => 'Pittsburgh, PA', + 1412288 => 'Pittsburgh, PA', + 1412299 => 'Coraopolis, PA', + 1412321 => 'Pittsburgh, PA', + 1412322 => 'Pittsburgh, PA', + 1412323 => 'Pittsburgh, PA', + 1412325 => 'Pittsburgh, PA', + 1412330 => 'Pittsburgh, PA', + 1412331 => 'McKees Rocks, PA', + 1412338 => 'Pittsburgh, PA', + 1412341 => 'Pittsburgh, PA', + 1412343 => 'Pittsburgh, PA', + 1412344 => 'Pittsburgh, PA', + 1412350 => 'Pittsburgh, PA', + 1412351 => 'Pittsburgh, PA', + 1412355 => 'Pittsburgh, PA', + 1412359 => 'Pittsburgh, PA', + 1412361 => 'Pittsburgh, PA', + 1412362 => 'Pittsburgh, PA', + 1412363 => 'Pittsburgh, PA', + 1412364 => 'Pittsburgh, PA', + 1412365 => 'Pittsburgh, PA', + 1412366 => 'Pittsburgh, PA', + 1412367 => 'Pittsburgh, PA', + 1412369 => 'Pittsburgh, PA', + 1412371 => 'Pittsburgh, PA', + 1412372 => 'Monroeville, PA', + 1412373 => 'Monroeville, PA', + 1412374 => 'Monroeville, PA', + 1412380 => 'Monroeville, PA', + 1412381 => 'Pittsburgh, PA', + 1412383 => 'Pittsburgh, PA', + 1412391 => 'Pittsburgh, PA', + 1412394 => 'Pittsburgh, PA', + 1412421 => 'Pittsburgh, PA', + 1412422 => 'Pittsburgh, PA', + 1412431 => 'Pittsburgh, PA', + 1412432 => 'Pittsburgh, PA', + 1412434 => 'Pittsburgh, PA', + 1412441 => 'Pittsburgh, PA', + 1412456 => 'Pittsburgh, PA', + 1412464 => 'Homestead, PA', + 1412471 => 'Pittsburgh, PA', + 1412472 => 'Pittsburgh, PA', + 1412481 => 'Pittsburgh, PA', + 1412488 => 'Pittsburgh, PA', + 1412490 => 'Pittsburgh, PA', + 1412494 => 'Pittsburgh, PA', + 1412521 => 'Pittsburgh, PA', + 1412531 => 'Pittsburgh, PA', + 1412561 => 'Pittsburgh, PA', + 1412562 => 'Pittsburgh, PA', + 1412563 => 'Pittsburgh, PA', + 1412566 => 'Pittsburgh, PA', + 1412571 => 'Pittsburgh, PA', + 1412578 => 'Pittsburgh, PA', + 1412586 => 'Pittsburgh, PA', + 1412621 => 'Pittsburgh, PA', + 1412622 => 'Pittsburgh, PA', + 1412623 => 'Pittsburgh, PA', + 1412624 => 'Pittsburgh, PA', + 1412635 => 'Pittsburgh, PA', + 1412641 => 'Pittsburgh, PA', + 1412647 => 'Pittsburgh, PA', + 1412648 => 'Pittsburgh, PA', + 1412661 => 'Pittsburgh, PA', + 1412664 => 'McKeesport, PA', + 1412665 => 'Pittsburgh, PA', + 1412673 => 'McKeesport, PA', + 1412675 => 'McKeesport, PA', + 1412681 => 'Pittsburgh, PA', + 1412682 => 'Pittsburgh, PA', + 1412683 => 'Pittsburgh, PA', + 1412687 => 'Pittsburgh, PA', + 1412688 => 'Pittsburgh, PA', + 1412692 => 'Pittsburgh, PA', + 1412731 => 'Pittsburgh, PA', + 1412734 => 'Pittsburgh, PA', + 1412741 => 'Sewickley, PA', + 1412749 => 'Sewickley, PA', + 1412761 => 'Pittsburgh, PA', + 1412765 => 'Pittsburgh, PA', + 1412766 => 'Pittsburgh, PA', + 1412771 => 'McKees Rocks, PA', + 1412777 => 'McKees Rocks, PA', + 1412781 => 'Pittsburgh, PA', + 1412782 => 'Pittsburgh, PA', + 1412784 => 'Pittsburgh, PA', + 1412787 => 'Pittsburgh, PA', + 1412788 => 'Pittsburgh, PA', + 1412795 => 'Pittsburgh, PA', + 1412802 => 'Pittsburgh, PA', + 1412821 => 'Pittsburgh, PA', + 1412835 => 'Bethel Park, PA', + 1412854 => 'Bethel Park, PA', + 1412856 => 'Monroeville, PA', + 1412858 => 'Monroeville, PA', + 1412881 => 'Pittsburgh, PA', + 1412882 => 'Pittsburgh, PA', + 1412884 => 'Pittsburgh, PA', + 1412885 => 'Pittsburgh, PA', + 1412904 => 'Pittsburgh, PA', + 1412920 => 'Pittsburgh, PA', + 1412921 => 'Pittsburgh, PA', + 1412922 => 'Pittsburgh, PA', + 1412928 => 'Pittsburgh, PA', + 1412931 => 'Pittsburgh, PA', + 1412942 => 'Pittsburgh, PA', + 1412963 => 'Pittsburgh, PA', + 1412967 => 'Pittsburgh, PA', + 1413 => 'Massachusetts', + 1413229 => 'Sheffield, MA', + 1413236 => 'Pittsfield, MA', + 1413243 => 'Lee, MA', + 1413245 => 'Brimfield, MA', + 1413247 => 'Hatfield, MA', + 1413253 => 'Amherst, MA', + 1413256 => 'Amherst, MA', + 1413259 => 'Amherst, MA', + 1413267 => 'Monson, MA', + 1413268 => 'Williamsburg, MA', + 1413283 => 'Palmer, MA', + 1413284 => 'Palmer, MA', + 1413289 => 'Palmer, MA', + 1413298 => 'Stockbridge, MA', + 1413301 => 'Springfield, MA', + 1413315 => 'Holyoke, MA', + 1413322 => 'Holyoke, MA', + 1413323 => 'Belchertown, MA', + 1413363 => 'Springfield, MA', + 1413367 => 'Montague, MA', + 1413420 => 'Holyoke, MA', + 1413436 => 'Warren, MA', + 1413442 => 'Pittsfield, MA', + 1413443 => 'Pittsfield, MA', + 1413445 => 'Pittsfield, MA', + 1413447 => 'Pittsfield, MA', + 1413448 => 'Pittsfield, MA', + 1413458 => 'Williamstown, MA', + 1413467 => 'Granby, MA', + 1413498 => 'Northfield, MA', + 1413499 => 'Pittsfield, MA', + 1413525 => 'East Longmeadow, MA', + 1413527 => 'Easthampton, MA', + 1413528 => 'Great Barrington, MA', + 1413529 => 'Easthampton, MA', + 1413532 => 'Holyoke, MA', + 1413533 => 'Holyoke, MA', + 1413534 => 'Holyoke, MA', + 1413536 => 'Holyoke, MA', + 1413539 => 'Holyoke, MA', + 1413545 => 'Amherst, MA', + 1413547 => 'Ludlow, MA', + 1413549 => 'Amherst, MA', + 1413562 => 'Westfield, MA', + 1413565 => 'Longmeadow, MA', + 1413566 => 'Hampden, MA', + 1413567 => 'Longmeadow, MA', + 1413568 => 'Westfield, MA', + 1413569 => 'Southwick, MA', + 1413572 => 'Westfield, MA', + 1413582 => 'Northampton, MA', + 1413583 => 'Ludlow, MA', + 1413584 => 'Northampton, MA', + 1413585 => 'Northampton, MA', + 1413586 => 'Northampton, MA', + 1413587 => 'Northampton, MA', + 1413589 => 'Ludlow, MA', + 1413592 => 'Chicopee, MA', + 1413593 => 'Chicopee, MA', + 1413594 => 'Chicopee, MA', + 1413596 => 'Wilbraham, MA', + 1413598 => 'Chicopee, MA', + 1413599 => 'Wilbraham, MA', + 1413623 => 'Becket, MA', + 1413625 => 'Shelburne Falls, MA', + 1413637 => 'Lenox, MA', + 1413642 => 'Westfield, MA', + 1413644 => 'Great Barrington, MA', + 1413662 => 'North Adams, MA', + 1413663 => 'North Adams, MA', + 1413664 => 'North Adams, MA', + 1413665 => 'South Deerfield, MA', + 1413667 => 'Huntington, MA', + 1413684 => 'Dalton, MA', + 1413731 => 'Springfield, MA', + 1413732 => 'Springfield, MA', + 1413733 => 'Springfield, MA', + 1413734 => 'Springfield, MA', + 1413736 => 'Springfield, MA', + 1413737 => 'Springfield, MA', + 1413739 => 'Springfield, MA', + 1413743 => 'Adams, MA', + 1413746 => 'Springfield, MA', + 1413747 => 'Springfield, MA', + 1413748 => 'Springfield, MA', + 1413772 => 'Greenfield, MA', + 1413773 => 'Greenfield, MA', + 1413774 => 'Greenfield, MA', + 1413781 => 'Springfield, MA', + 1413782 => 'Springfield, MA', + 1413783 => 'Springfield, MA', + 1413785 => 'Springfield, MA', + 1413786 => 'Agawam, MA', + 1413787 => 'Springfield, MA', + 1413788 => 'Springfield, MA', + 1413789 => 'Agawam, MA', + 1413794 => 'Springfield, MA', + 1413796 => 'Springfield, MA', + 1413827 => 'Springfield, MA', + 1413863 => 'Turners Falls, MA', + 1413967 => 'Ware, MA', + 1414 => 'Wisconsin', + 1414219 => 'Milwaukee, WI', + 1414220 => 'Milwaukee, WI', + 1414223 => 'Milwaukee, WI', + 1414224 => 'Milwaukee, WI', + 1414225 => 'Milwaukee, WI', + 1414226 => 'Milwaukee, WI', + 1414228 => 'Milwaukee, WI', + 1414247 => 'Milwaukee, WI', + 1414257 => 'Milwaukee, WI', + 1414258 => 'Milwaukee, WI', + 1414259 => 'Milwaukee, WI', + 1414263 => 'Milwaukee, WI', + 1414264 => 'Milwaukee, WI', + 1414265 => 'Milwaukee, WI', + 1414266 => 'Wauwatosa, WI', + 1414270 => 'Milwaukee, WI', + 1414271 => 'Milwaukee, WI', + 1414272 => 'Milwaukee, WI', + 1414273 => 'Milwaukee, WI', + 1414276 => 'Milwaukee, WI', + 1414277 => 'Milwaukee, WI', + 1414278 => 'Milwaukee, WI', + 1414281 => 'Milwaukee, WI', + 1414282 => 'Milwaukee, WI', + 1414286 => 'Milwaukee, WI', + 1414288 => 'Milwaukee, WI', + 1414289 => 'Milwaukee, WI', + 1414290 => 'Milwaukee, WI', + 1414291 => 'Milwaukee, WI', + 1414294 => 'Milwaukee, WI', + 1414297 => 'Milwaukee, WI', + 1414298 => 'Milwaukee, WI', + 1414321 => 'Milwaukee, WI', + 1414327 => 'Milwaukee, WI', + 1414328 => 'Milwaukee, WI', + 1414329 => 'Milwaukee, WI', + 1414332 => 'Milwaukee, WI', + 1414342 => 'Milwaukee, WI', + 1414344 => 'Milwaukee, WI', + 1414347 => 'Milwaukee, WI', + 1414351 => 'Milwaukee, WI', + 1414352 => 'Milwaukee, WI', + 1414353 => 'Milwaukee, WI', + 1414354 => 'Milwaukee, WI', + 1414355 => 'Milwaukee, WI', + 1414357 => 'Milwaukee, WI', + 1414358 => 'Milwaukee, WI', + 1414359 => 'Milwaukee, WI', + 1414365 => 'Milwaukee, WI', + 1414371 => 'Milwaukee, WI', + 1414372 => 'Milwaukee, WI', + 1414374 => 'Milwaukee, WI', + 1414383 => 'Milwaukee, WI', + 1414384 => 'Milwaukee, WI', + 1414385 => 'Milwaukee, WI', + 1414389 => 'Milwaukee, WI', + 1414393 => 'Milwaukee, WI', + 1414421 => 'Greendale, WI', + 1414422 => 'Muskego, WI', + 1414423 => 'Greendale, WI', + 1414431 => 'Milwaukee, WI', + 1414438 => 'Milwaukee, WI', + 1414442 => 'Milwaukee, WI', + 1414443 => 'Milwaukee, WI', + 1414444 => 'Milwaukee, WI', + 1414445 => 'Milwaukee, WI', + 1414447 => 'Milwaukee, WI', + 1414449 => 'Milwaukee, WI', + 1414453 => 'Milwaukee, WI', + 1414454 => 'Milwaukee, WI', + 1414455 => 'Milwaukee, WI', + 1414456 => 'Milwaukee, WI', + 1414461 => 'Milwaukee, WI', + 1414462 => 'Milwaukee, WI', + 1414463 => 'Milwaukee, WI', + 1414464 => 'Milwaukee, WI', + 1414466 => 'Milwaukee, WI', + 1414475 => 'Milwaukee, WI', + 1414476 => 'Milwaukee, WI', + 1414479 => 'Milwaukee, WI', + 1414481 => 'Milwaukee, WI', + 1414482 => 'Milwaukee, WI', + 1414483 => 'Milwaukee, WI', + 1414486 => 'Milwaukee, WI', + 1414489 => 'Cudahy, WI', + 1414527 => 'Milwaukee, WI', + 1414535 => 'Milwaukee, WI', + 1414536 => 'Milwaukee, WI', + 1414540 => 'Milwaukee, WI', + 1414541 => 'Milwaukee, WI', + 1414543 => 'Milwaukee, WI', + 1414545 => 'Milwaukee, WI', + 1414546 => 'Milwaukee, WI', + 1414562 => 'Milwaukee, WI', + 1414570 => 'Oak Creek, WI', + 1414571 => 'Oak Creek, WI', + 1414604 => 'Milwaukee, WI', + 1414607 => 'Milwaukee, WI', + 1414643 => 'Milwaukee, WI', + 1414645 => 'Milwaukee, WI', + 1414647 => 'Milwaukee, WI', + 1414649 => 'Milwaukee, WI', + 1414671 => 'Milwaukee, WI', + 1414672 => 'Milwaukee, WI', + 1414727 => 'Milwaukee, WI', + 1414744 => 'Milwaukee, WI', + 1414747 => 'Milwaukee, WI', + 1414755 => 'Milwaukee, WI', + 1414760 => 'Milwaukee, WI', + 1414763 => 'Milwaukee, WI', + 1414764 => 'Oak Creek, WI', + 1414768 => 'Oak Creek, WI', + 1414771 => 'Milwaukee, WI', + 1414774 => 'Milwaukee, WI', + 1414777 => 'Milwaukee, WI', + 1414778 => 'Milwaukee, WI', + 1414805 => 'Milwaukee, WI', + 1414817 => 'Milwaukee, WI', + 1414831 => 'Milwaukee, WI', + 1414871 => 'Milwaukee, WI', + 1414873 => 'Milwaukee, WI', + 1414875 => 'Milwaukee, WI', + 1414906 => 'Milwaukee, WI', + 1414908 => 'Milwaukee, WI', + 1414933 => 'Milwaukee, WI', + 1414961 => 'Milwaukee, WI', + 1414962 => 'Milwaukee, WI', + 1414963 => 'Milwaukee, WI', + 1414964 => 'Milwaukee, WI', + 1414967 => 'Milwaukee, WI', + 1414988 => 'Milwaukee, WI', + 1415 => 'California', + 1415202 => 'San Francisco, CA', + 1415206 => 'San Francisco, CA', + 1415209 => 'Novato, CA', + 1415217 => 'San Francisco, CA', + 1415221 => 'San Francisco, CA', + 1415227 => 'San Francisco, CA', + 1415239 => 'San Francisco, CA', + 1415241 => 'San Francisco, CA', + 1415242 => 'San Francisco, CA', + 1415243 => 'San Francisco, CA', + 1415252 => 'San Francisco, CA', + 1415255 => 'San Francisco, CA', + 1415256 => 'San Rafael, CA', + 1415258 => 'San Rafael, CA', + 1415268 => 'San Francisco, CA', + 1415273 => 'San Francisco, CA', + 1415281 => 'San Francisco, CA', + 1415282 => 'San Francisco, CA', + 1415283 => 'San Francisco, CA', + 1415284 => 'San Francisco, CA', + 1415285 => 'San Francisco, CA', + 1415288 => 'San Francisco, CA', + 1415289 => 'Sausalito, CA', + 1415291 => 'San Francisco, CA', + 1415292 => 'San Francisco, CA', + 1415294 => 'San Francisco, CA', + 1415296 => 'San Francisco, CA', + 1415330 => 'San Francisco, CA', + 1415331 => 'Sausalito, CA', + 1415332 => 'Sausalito, CA', + 1415333 => 'San Francisco, CA', + 1415334 => 'San Francisco, CA', + 1415337 => 'San Francisco, CA', + 1415339 => 'Sausalito, CA', + 1415341 => 'San Francisco, CA', + 1415345 => 'San Francisco, CA', + 1415346 => 'San Francisco, CA', + 1415348 => 'San Francisco, CA', + 1415351 => 'San Francisco, CA', + 1415353 => 'San Francisco, CA', + 1415355 => 'San Francisco, CA', + 1415357 => 'San Francisco, CA', + 1415359 => 'San Francisco, CA', + 1415362 => 'San Francisco, CA', + 1415371 => 'San Francisco, CA', + 1415379 => 'San Francisco, CA', + 1415380 => 'Mill Valley, CA', + 1415381 => 'Mill Valley, CA', + 1415382 => 'Novato, CA', + 1415383 => 'Mill Valley, CA', + 1415386 => 'San Francisco, CA', + 1415387 => 'San Francisco, CA', + 1415388 => 'Mill Valley, CA', + 1415389 => 'Mill Valley, CA', + 1415391 => 'San Francisco, CA', + 1415392 => 'San Francisco, CA', + 1415393 => 'San Francisco, CA', + 1415395 => 'San Francisco, CA', + 1415397 => 'San Francisco, CA', + 1415398 => 'San Francisco, CA', + 1415399 => 'San Francisco, CA', + 1415400 => 'San Francisco, CA', + 1415401 => 'San Francisco, CA', + 1415409 => 'San Francisco, CA', + 1415421 => 'San Francisco, CA', + 1415431 => 'San Francisco, CA', + 1415433 => 'San Francisco, CA', + 1415434 => 'San Francisco, CA', + 1415437 => 'San Francisco, CA', + 1415439 => 'San Francisco, CA', + 1415440 => 'San Francisco, CA', + 1415441 => 'San Francisco, CA', + 1415442 => 'San Francisco, CA', + 1415444 => 'San Rafael, CA', + 1415447 => 'San Francisco, CA', + 1415451 => 'San Rafael, CA', + 1415452 => 'San Francisco, CA', + 1415453 => 'San Rafael, CA', + 1415454 => 'San Rafael, CA', + 1415455 => 'San Rafael, CA', + 1415456 => 'San Rafael, CA', + 1415457 => 'San Rafael, CA', + 1415459 => 'San Rafael, CA', + 1415460 => 'San Rafael, CA', + 1415468 => 'San Francisco, CA', + 1415469 => 'San Francisco, CA', + 1415472 => 'San Rafael, CA', + 1415473 => 'San Rafael, CA', + 1415474 => 'San Francisco, CA', + 1415476 => 'San Francisco, CA', + 1415479 => 'San Rafael, CA', + 1415482 => 'San Rafael, CA', + 1415485 => 'San Rafael, CA', + 1415487 => 'San Francisco, CA', + 1415491 => 'San Rafael, CA', + 1415492 => 'San Rafael, CA', + 1415495 => 'San Francisco, CA', + 1415499 => 'San Rafael, CA', + 1415502 => 'San Francisco, CA', + 1415503 => 'San Francisco, CA', + 1415504 => 'San Francisco, CA', + 1415507 => 'San Rafael, CA', + 1415512 => 'San Francisco, CA', + 1415513 => 'San Francisco, CA', + 1415522 => 'San Francisco, CA', + 1415525 => 'San Francisco, CA', + 1415529 => 'San Francisco, CA', + 1415541 => 'San Francisco, CA', + 1415543 => 'San Francisco, CA', + 1415546 => 'San Francisco, CA', + 1415550 => 'San Francisco, CA', + 1415551 => 'San Francisco, CA', + 1415552 => 'San Francisco, CA', + 1415553 => 'San Francisco, CA', + 1415554 => 'San Francisco, CA', + 1415558 => 'San Francisco, CA', + 1415561 => 'San Francisco, CA', + 1415563 => 'San Francisco, CA', + 1415564 => 'San Francisco, CA', + 1415565 => 'San Francisco, CA', + 1415566 => 'San Francisco, CA', + 1415567 => 'San Francisco, CA', + 1415584 => 'San Francisco, CA', + 1415585 => 'San Francisco, CA', + 1415586 => 'San Francisco, CA', + 1415587 => 'San Francisco, CA', + 1415591 => 'San Francisco, CA', + 1415600 => 'San Francisco, CA', + 1415621 => 'San Francisco, CA', + 1415626 => 'San Francisco, CA', + 1415641 => 'San Francisco, CA', + 1415642 => 'San Francisco, CA', + 1415643 => 'San Francisco, CA', + 1415644 => 'San Francisco, CA', + 1415647 => 'San Francisco, CA', + 1415648 => 'San Francisco, CA', + 1415655 => 'San Francisco, CA', + 1415661 => 'San Francisco, CA', + 1415664 => 'San Francisco, CA', + 1415665 => 'San Francisco, CA', + 1415666 => 'San Francisco, CA', + 1415668 => 'San Francisco, CA', + 1415671 => 'San Francisco, CA', + 1415673 => 'San Francisco, CA', + 1415674 => 'San Francisco, CA', + 1415677 => 'San Francisco, CA', + 1415681 => 'San Francisco, CA', + 1415682 => 'San Francisco, CA', + 1415693 => 'San Francisco, CA', + 1415695 => 'San Francisco, CA', + 1415701 => 'San Francisco, CA', + 1415721 => 'San Rafael, CA', + 1415731 => 'San Francisco, CA', + 1415742 => 'San Francisco, CA', + 1415749 => 'San Francisco, CA', + 1415750 => 'San Francisco, CA', + 1415751 => 'San Francisco, CA', + 1415752 => 'San Francisco, CA', + 1415753 => 'San Francisco, CA', + 1415759 => 'San Francisco, CA', + 1415765 => 'San Francisco, CA', + 1415771 => 'San Francisco, CA', + 1415772 => 'San Francisco, CA', + 1415773 => 'San Francisco, CA', + 1415775 => 'San Francisco, CA', + 1415776 => 'San Francisco, CA', + 1415777 => 'San Francisco, CA', + 1415781 => 'San Francisco, CA', + 1415788 => 'San Francisco, CA', + 1415796 => 'San Francisco, CA', + 1415800 => 'San Francisco, CA', + 1415814 => 'San Francisco, CA', + 1415820 => 'San Francisco, CA', + 1415821 => 'San Francisco, CA', + 1415822 => 'San Francisco, CA', + 1415824 => 'San Francisco, CA', + 1415826 => 'San Francisco, CA', + 1415829 => 'San Francisco, CA', + 1415830 => 'San Francisco, CA', + 1415831 => 'San Francisco, CA', + 1415833 => 'San Francisco, CA', + 1415834 => 'San Francisco, CA', + 1415835 => 'San Francisco, CA', + 1415836 => 'San Francisco, CA', + 1415837 => 'San Francisco, CA', + 1415856 => 'San Francisco, CA', + 1415861 => 'San Francisco, CA', + 1415863 => 'San Francisco, CA', + 1415864 => 'San Francisco, CA', + 1415865 => 'San Francisco, CA', + 1415868 => 'Bolinas, CA', + 1415875 => 'San Francisco, CA', + 1415876 => 'San Francisco, CA', + 1415878 => 'Novato, CA', + 1415882 => 'San Francisco, CA', + 1415883 => 'Novato, CA', + 1415884 => 'Novato, CA', + 1415885 => 'San Francisco, CA', + 1415888 => 'Mill Valley, CA', + 1415892 => 'Novato, CA', + 1415895 => 'Novato, CA', + 1415896 => 'San Francisco, CA', + 1415897 => 'Novato, CA', + 1415898 => 'Novato, CA', + 1415899 => 'Novato, CA', + 1415920 => 'San Francisco, CA', + 1415921 => 'San Francisco, CA', + 1415922 => 'San Francisco, CA', + 1415923 => 'San Francisco, CA', + 1415924 => 'Corte Madera, CA', + 1415925 => 'Greenbrae, CA', + 1415927 => 'Corte Madera, CA', + 1415928 => 'San Francisco, CA', + 1415929 => 'San Francisco, CA', + 1415931 => 'San Francisco, CA', + 1415933 => 'San Francisco, CA', + 1415945 => 'Corte Madera, CA', + 1415954 => 'San Francisco, CA', + 1415956 => 'San Francisco, CA', + 1415957 => 'San Francisco, CA', + 1415970 => 'San Francisco, CA', + 1415974 => 'San Francisco, CA', + 1415979 => 'San Francisco, CA', + 1415981 => 'San Francisco, CA', + 1415982 => 'San Francisco, CA', + 1415983 => 'San Francisco, CA', + 1415984 => 'San Francisco, CA', + 1415986 => 'San Francisco, CA', + 1415989 => 'San Francisco, CA', + 1416 => 'Ontario', + 1416201 => 'Etobicoke, ON', + 1416203 => 'Toronto, ON', + 1416204 => 'Toronto, ON', + 1416207 => 'Etobicoke, ON', + 1416213 => 'Etobicoke, ON', + 1416214 => 'Toronto, ON', + 1416216 => 'Toronto, ON', + 1416218 => 'North York, ON', + 1416221 => 'North York, ON', + 1416222 => 'North York, ON', + 1416223 => 'North York, ON', + 1416224 => 'North York, ON', + 1416225 => 'North York, ON', + 1416226 => 'North York, ON', + 1416227 => 'North York, ON', + 1416229 => 'North York, ON', + 1416231 => 'Etobicoke, ON', + 1416232 => 'Etobicoke, ON', + 1416233 => 'Etobicoke, ON', + 1416234 => 'Etobicoke, ON', + 1416236 => 'Etobicoke, ON', + 1416237 => 'Etobicoke, ON', + 1416239 => 'Etobicoke, ON', + 1416250 => 'North York, ON', + 1416251 => 'Etobicoke, ON', + 1416252 => 'Etobicoke, ON', + 1416253 => 'Etobicoke, ON', + 1416255 => 'Etobicoke, ON', + 1416259 => 'Etobicoke, ON', + 1416260 => 'Toronto, ON', + 1416261 => 'Scarborough, ON', + 1416264 => 'Scarborough, ON', + 1416265 => 'Scarborough, ON', + 1416266 => 'Scarborough, ON', + 1416267 => 'Scarborough, ON', + 1416269 => 'Scarborough, ON', + 1416281 => 'Scarborough, ON', + 1416282 => 'Scarborough, ON', + 1416283 => 'Scarborough, ON', + 1416284 => 'Scarborough, ON', + 1416286 => 'Scarborough, ON', + 1416287 => 'Scarborough, ON', + 1416288 => 'Scarborough, ON', + 1416289 => 'Scarborough, ON', + 1416290 => 'Scarborough, ON', + 1416291 => 'Scarborough, ON', + 1416292 => 'Scarborough, ON', + 1416293 => 'Scarborough, ON', + 1416297 => 'Scarborough, ON', + 1416298 => 'Scarborough, ON', + 1416299 => 'Scarborough, ON', + 1416304 => 'Toronto, ON', + 1416306 => 'Toronto, ON', + 1416321 => 'Scarborough, ON', + 1416322 => 'Toronto, ON', + 1416323 => 'Toronto, ON', + 1416324 => 'Toronto, ON', + 1416332 => 'Scarborough, ON', + 1416335 => 'Scarborough, ON', + 1416340 => 'Toronto, ON', + 1416348 => 'Toronto, ON', + 1416351 => 'Toronto, ON', + 1416360 => 'Toronto, ON', + 1416361 => 'Toronto, ON', + 1416362 => 'Toronto, ON', + 1416363 => 'Toronto, ON', + 1416364 => 'Toronto, ON', + 1416365 => 'Toronto, ON', + 1416366 => 'Toronto, ON', + 1416367 => 'Toronto, ON', + 1416368 => 'Toronto, ON', + 1416369 => 'Toronto, ON', + 1416385 => 'North York, ON', + 1416391 => 'North York, ON', + 1416392 => 'Toronto, ON', + 1416393 => 'Toronto, ON', + 1416398 => 'North York, ON', + 1416406 => 'Toronto, ON', + 1416408 => 'Toronto, ON', + 1416412 => 'Scarborough, ON', + 1416413 => 'Toronto, ON', + 1416431 => 'Scarborough, ON', + 1416438 => 'Scarborough, ON', + 1416439 => 'Scarborough, ON', + 1416440 => 'Toronto, ON', + 1416441 => 'North York, ON', + 1416445 => 'North York, ON', + 1416447 => 'North York, ON', + 1416449 => 'North York, ON', + 1416461 => 'Toronto, ON', + 1416462 => 'Toronto, ON', + 1416463 => 'Toronto, ON', + 1416465 => 'Toronto, ON', + 1416466 => 'Toronto, ON', + 1416469 => 'Toronto, ON', + 1416480 => 'Toronto, ON', + 1416481 => 'Toronto, ON', + 1416482 => 'Toronto, ON', + 1416483 => 'Toronto, ON', + 1416484 => 'Toronto, ON', + 1416485 => 'Toronto, ON', + 1416486 => 'Toronto, ON', + 1416487 => 'Toronto, ON', + 1416488 => 'Toronto, ON', + 1416489 => 'Toronto, ON', + 1416503 => 'Etobicoke, ON', + 1416504 => 'Toronto, ON', + 1416506 => 'Toronto, ON', + 1416510 => 'North York, ON', + 1416512 => 'North York, ON', + 1416515 => 'Toronto, ON', + 1416516 => 'Toronto, ON', + 1416530 => 'Toronto, ON', + 1416531 => 'Toronto, ON', + 1416532 => 'Toronto, ON', + 1416533 => 'Toronto, ON', + 1416534 => 'Toronto, ON', + 1416535 => 'Toronto, ON', + 1416536 => 'Toronto, ON', + 1416537 => 'Toronto, ON', + 1416538 => 'Toronto, ON', + 1416539 => 'Toronto, ON', + 1416544 => 'Toronto, ON', + 1416572 => 'Toronto, ON', + 1416585 => 'Toronto, ON', + 1416588 => 'Toronto, ON', + 1416590 => 'North York, ON', + 1416591 => 'Toronto, ON', + 1416593 => 'Toronto, ON', + 1416594 => 'Toronto, ON', + 1416595 => 'Toronto, ON', + 1416596 => 'Toronto, ON', + 1416597 => 'Toronto, ON', + 1416598 => 'Toronto, ON', + 1416599 => 'Toronto, ON', + 1416601 => 'Toronto, ON', + 1416603 => 'Toronto, ON', + 1416604 => 'Toronto, ON', + 1416609 => 'Scarborough, ON', + 1416615 => 'Scarborough, ON', + 1416620 => 'Etobicoke, ON', + 1416621 => 'Etobicoke, ON', + 1416622 => 'Etobicoke, ON', + 1416626 => 'Etobicoke, ON', + 1416630 => 'North York, ON', + 1416631 => 'North York, ON', + 1416633 => 'North York, ON', + 1416635 => 'North York, ON', + 1416636 => 'North York, ON', + 1416638 => 'North York, ON', + 1416650 => 'North York, ON', + 1416652 => 'Toronto, ON', + 1416654 => 'Toronto, ON', + 1416656 => 'Toronto, ON', + 1416658 => 'Toronto, ON', + 1416661 => 'North York, ON', + 1416663 => 'North York, ON', + 1416665 => 'North York, ON', + 1416667 => 'North York, ON', + 1416674 => 'Etobicoke, ON', + 1416675 => 'Etobicoke, ON', + 1416679 => 'Etobicoke, ON', + 1416686 => 'Toronto, ON', + 1416690 => 'Toronto, ON', + 1416691 => 'Toronto, ON', + 1416693 => 'Toronto, ON', + 1416694 => 'Toronto, ON', + 1416695 => 'Etobicoke, ON', + 1416698 => 'Toronto, ON', + 1416699 => 'Toronto, ON', + 1416701 => 'Scarborough, ON', + 1416703 => 'Toronto, ON', + 1416724 => 'Scarborough, ON', + 1416730 => 'North York, ON', + 1416733 => 'North York, ON', + 1416736 => 'North York, ON', + 1416739 => 'North York, ON', + 1416750 => 'Scarborough, ON', + 1416752 => 'Scarborough, ON', + 1416754 => 'Scarborough, ON', + 1416755 => 'Scarborough, ON', + 1416757 => 'Scarborough, ON', + 1416759 => 'Scarborough, ON', + 1416760 => 'Toronto, ON', + 1416761 => 'Toronto, ON', + 1416762 => 'Toronto, ON', + 1416763 => 'Toronto, ON', + 1416766 => 'Toronto, ON', + 1416767 => 'Toronto, ON', + 1416769 => 'Toronto, ON', + 1416777 => 'Toronto, ON', + 1416778 => 'Toronto, ON', + 1416815 => 'Toronto, ON', + 1416860 => 'Toronto, ON', + 1416861 => 'Toronto, ON', + 1416862 => 'Toronto, ON', + 1416863 => 'Toronto, ON', + 1416864 => 'Toronto, ON', + 1416865 => 'Toronto, ON', + 1416866 => 'Toronto, ON', + 1416867 => 'Toronto, ON', + 1416868 => 'Toronto, ON', + 1416869 => 'Toronto, ON', + 1416920 => 'Toronto, ON', + 1416921 => 'Toronto, ON', + 1416922 => 'Toronto, ON', + 1416923 => 'Toronto, ON', + 1416924 => 'Toronto, ON', + 1416925 => 'Toronto, ON', + 1416926 => 'Toronto, ON', + 1416927 => 'Toronto, ON', + 1416928 => 'Toronto, ON', + 1416929 => 'Toronto, ON', + 1416932 => 'Toronto, ON', + 1416934 => 'Toronto, ON', + 1416944 => 'Toronto, ON', + 1416955 => 'Toronto, ON', + 1416960 => 'Toronto, ON', + 1416961 => 'Toronto, ON', + 1416962 => 'Toronto, ON', + 1416963 => 'Toronto, ON', + 1416964 => 'Toronto, ON', + 1416966 => 'Toronto, ON', + 1416967 => 'Toronto, ON', + 1416968 => 'Toronto, ON', + 1416971 => 'Toronto, ON', + 1416972 => 'Toronto, ON', + 1416975 => 'Toronto, ON', + 1416977 => 'Toronto, ON', + 1416979 => 'Toronto, ON', + 1417 => 'Missouri', + 1417206 => 'Joplin, MO', + 1417223 => 'Pineville, MO', + 1417235 => 'Monett, MO', + 1417236 => 'Monett, MO', + 1417239 => 'Branson, MO', + 1417255 => 'West Plains, MO', + 1417256 => 'West Plains, MO', + 1417257 => 'West Plains, MO', + 1417264 => 'Thayer, MO', + 1417269 => 'Springfield, MO', + 1417272 => 'Reeds Spring, MO', + 1417276 => 'Stockton, MO', + 1417326 => 'Bolivar, MO', + 1417332 => 'Branson, MO', + 1417334 => 'Branson, MO', + 1417335 => 'Branson, MO', + 1417336 => 'Branson, MO', + 1417337 => 'Branson, MO', + 1417338 => 'Branson, MO', + 1417339 => 'Branson, MO', + 1417345 => 'Buffalo, MO', + 1417347 => 'Joplin, MO', + 1417358 => 'Carthage, MO', + 1417359 => 'Carthage, MO', + 1417395 => 'Rich Hill, MO', + 1417429 => 'Springfield, MO', + 1417443 => 'Highlandville, MO', + 1417448 => 'Nevada, MO', + 1417451 => 'Neosho, MO', + 1417455 => 'Neosho, MO', + 1417466 => 'Mount Vernon, MO', + 1417468 => 'Marshfield, MO', + 1417469 => 'Willow Springs, MO', + 1417472 => 'Granby, MO', + 1417475 => 'Noel, MO', + 1417476 => 'Pierce City, MO', + 1417485 => 'Ozark, MO', + 1417501 => 'Springfield, MO', + 1417532 => 'Lebanon, MO', + 1417533 => 'Lebanon, MO', + 1417546 => 'Forsyth, MO', + 1417548 => 'Sarcoxie, MO', + 1417553 => 'Joplin, MO', + 1417581 => 'Ozark, MO', + 1417582 => 'Ozark, MO', + 1417588 => 'Lebanon, MO', + 1417623 => 'Joplin, MO', + 1417624 => 'Joplin, MO', + 1417625 => 'Joplin, MO', + 1417626 => 'Joplin, MO', + 1417627 => 'Joplin, MO', + 1417637 => 'Greenfield, MO', + 1417646 => 'Osceola, MO', + 1417649 => 'Carl Junction, MO', + 1417659 => 'Joplin, MO', + 1417667 => 'Nevada, MO', + 1417673 => 'Webb City, MO', + 1417678 => 'Aurora, MO', + 1417679 => 'Gainesville, MO', + 1417682 => 'Lamar, MO', + 1417683 => 'Ava, MO', + 1417723 => 'Crane, MO', + 1417724 => 'Nixa, MO', + 1417725 => 'Nixa, MO', + 1417732 => 'Republic, MO', + 1417736 => 'Strafford, MO', + 1417739 => 'Kimberling City, MO', + 1417741 => 'Hartville, MO', + 1417742 => 'Willard, MO', + 1417745 => 'Hermitage, MO', + 1417753 => 'Rogersville, MO', + 1417759 => 'Fair Grove, MO', + 1417776 => 'Seneca, MO', + 1417777 => 'Bolivar, MO', + 1417778 => 'Alton, MO', + 1417781 => 'Joplin, MO', + 1417782 => 'Joplin, MO', + 1417820 => 'Springfield, MO', + 1417823 => 'Springfield, MO', + 1417831 => 'Springfield, MO', + 1417832 => 'Springfield, MO', + 1417833 => 'Springfield, MO', + 1417845 => 'Anderson, MO', + 1417847 => 'Cassville, MO', + 1417848 => 'Springfield, MO', + 1417858 => 'Shell Knob, MO', + 1417859 => 'Marshfield, MO', + 1417861 => 'Springfield, MO', + 1417862 => 'Springfield, MO', + 1417863 => 'Springfield, MO', + 1417864 => 'Springfield, MO', + 1417865 => 'Springfield, MO', + 1417866 => 'Springfield, MO', + 1417868 => 'Springfield, MO', + 1417869 => 'Springfield, MO', + 1417875 => 'Springfield, MO', + 1417876 => 'El Dorado Spgs, MO', + 1417877 => 'Springfield, MO', + 1417880 => 'Springfield, MO', + 1417881 => 'Springfield, MO', + 1417882 => 'Springfield, MO', + 1417883 => 'Springfield, MO', + 1417885 => 'Springfield, MO', + 1417886 => 'Springfield, MO', + 1417887 => 'Springfield, MO', + 1417888 => 'Springfield, MO', + 1417889 => 'Springfield, MO', + 1417890 => 'Springfield, MO', + 1417895 => 'Springfield, MO', + 1417924 => 'Mansfield, MO', + 1417926 => 'Mountain Grove, MO', + 1417932 => 'Summersville, MO', + 1417934 => 'Mountain View, MO', + 1417935 => 'Seymour, MO', + 1417962 => 'Cabool, MO', + 1417967 => 'Houston, MO', + 1418 => 'Quebec', + 1418226 => 'Saint-Georges, QC', + 1418227 => 'Saint-Georges, QC', + 1418228 => 'Saint-Georges, QC', + 1418233 => 'Les Escoumins, QC', + 1418247 => 'L\'Islet, QC', + 1418248 => 'Montmagny, QC', + 1418253 => 'Vallée-Jonction, QC', + 1418263 => 'Quebec City, QC', + 1418266 => 'Quebec City, QC', + 1418269 => 'Gaspé, QC', + 1418274 => 'Normandin, QC', + 1418275 => 'Roberval, QC', + 1418285 => 'Donnacona, QC', + 1418286 => 'Portneuf, QC', + 1418287 => 'Fermont, QC', + 1418296 => 'Baie-Comeau, QC', + 1418325 => 'Sainte-Anne-de-la-Pérade, QC', + 1418332 => 'Thetford Mines, QC', + 1418335 => 'Thetford Mines, QC', + 1418337 => 'Saint-Raymond, QC', + 1418338 => 'Thetford Mines, QC', + 1418343 => 'Saint-Bruno, QC', + 1418349 => 'Métabetchouan-Lac-à-la-Croix, QC', + 1418364 => 'Carleton, QC', + 1418365 => 'St-Tite, QC', + 1418368 => 'Gaspé, QC', + 1418380 => 'Quebec City, QC', + 1418385 => 'Grande-Rivière, QC', + 1418386 => 'Sainte-Marie, QC', + 1418387 => 'Sainte-Marie, QC', + 1418392 => 'New Richmond, QC', + 1418397 => 'Saint-Joseph-de-Beauce, QC', + 1418423 => 'Thetford Mines, QC', + 1418426 => 'Tring-Jonction, QC', + 1418427 => 'East Broughton, QC', + 1418428 => 'Saint-Ferdinand, QC', + 1418435 => 'Baie-Saint-Paul, QC', + 1418439 => 'Clermont, QC', + 1418449 => 'Disraeli, QC', + 1418459 => 'La Guadeloupe, QC', + 1418480 => 'Alma, QC', + 1418484 => 'Saint-Éphrem-de-Beauce, QC', + 1418486 => 'Lambton, QC', + 1418522 => 'Quebec City, QC', + 1418523 => 'Quebec City, QC', + 1418524 => 'Quebec City, QC', + 1418525 => 'Quebec City, QC', + 1418527 => 'Quebec City, QC', + 1418529 => 'Quebec City, QC', + 1418534 => 'Bonaventure, QC', + 1418538 => 'Havre-Saint-Pierre, QC', + 1418542 => 'Jonquière, QC', + 1418543 => 'Chicoutimi, QC', + 1418544 => 'La Baie, QC', + 1418545 => 'Chicoutimi, QC', + 1418547 => 'Jonquière, QC', + 1418548 => 'Jonquière, QC', + 1418549 => 'Chicoutimi, QC', + 1418562 => 'Matane, QC', + 1418566 => 'Matane, QC', + 1418567 => 'Chute-aux-Outardes, QC', + 1418587 => 'Forestville, QC', + 1418589 => 'Baie-Comeau, QC', + 1418602 => 'Chicoutimi, QC', + 1418603 => 'Levis, QC', + 1418614 => 'Quebec City, QC', + 1418621 => 'Quebec City, QC', + 1418622 => 'Quebec City, QC', + 1418623 => 'Quebec City, QC', + 1418624 => 'Quebec City, QC', + 1418625 => 'Lac-Etchemin, QC', + 1418626 => 'Quebec City, QC', + 1418627 => 'Quebec City, QC', + 1418628 => 'Quebec City, QC', + 1418629 => 'Amqui, QC', + 1418641 => 'Quebec City, QC', + 1418647 => 'Quebec City, QC', + 1418648 => 'Quebec City, QC', + 1418649 => 'Quebec City, QC', + 1418660 => 'Quebec City, QC', + 1418661 => 'Quebec City, QC', + 1418662 => 'Alma, QC', + 1418665 => 'La Malbaie, QC', + 1418667 => 'Quebec City, QC', + 1418668 => 'Alma, QC', + 1418669 => 'Alma, QC', + 1418673 => 'Saint-Honoré, QC', + 1418679 => 'St-Felicien, QC', + 1418681 => 'Quebec City, QC', + 1418682 => 'Quebec City, QC', + 1418683 => 'Quebec City, QC', + 1418686 => 'Quebec City, QC', + 1418687 => 'Quebec City, QC', + 1418688 => 'Quebec City, QC', + 1418689 => 'Chandler, QC', + 1418690 => 'Chicoutimi, QC', + 1418692 => 'Quebec City, QC', + 1418693 => 'Chicoutimi, QC', + 1418694 => 'Quebec City, QC', + 1418695 => 'Jonquière, QC', + 1418696 => 'Chicoutimi, QC', + 1418698 => 'Chicoutimi, QC', + 1418704 => 'Quebec City, QC', + 1418721 => 'Rimouski, QC', + 1418722 => 'Rimouski, QC', + 1418723 => 'Rimouski, QC', + 1418724 => 'Rimouski, QC', + 1418725 => 'Rimouski, QC', + 1418736 => 'Le Bic, QC', + 1418745 => 'Chapais, QC', + 1418748 => 'Chibougamau, QC', + 1418756 => 'Causapscal, QC', + 1418759 => 'Maria, QC', + 1418763 => 'Sainte-Anne-des-Monts, QC', + 1418766 => 'Port-Cartier, QC', + 1418774 => 'Beauceville, QC', + 1418775 => 'Mont-Joli, QC', + 1418780 => 'Quebec City, QC', + 1418781 => 'Quebec City, QC', + 1418782 => 'Percé, QC', + 1418824 => 'Château-Richer, QC', + 1418827 => 'Sainte-Anne-de-Beaupré, QC', + 1418832 => 'Charny, QC', + 1418833 => 'Levis, QC', + 1418835 => 'Levis, QC', + 1418837 => 'Levis, QC', + 1418838 => 'Levis, QC', + 1418841 => 'Quebec City, QC', + 1418848 => 'Stoneham, QC', + 1418849 => 'Quebec City, QC', + 1418851 => 'Trois-Pistoles, QC', + 1418853 => 'Degelis, QC', + 1418856 => 'La Pocatière, QC', + 1418860 => 'Rivière-du-Loup, QC', + 1418862 => 'Rivière-du-Loup, QC', + 1418863 => 'Rivière-du-Loup, QC', + 1418867 => 'Rivière-du-Loup, QC', + 1418868 => 'Rivière-du-Loup, QC', + 1418871 => 'Quebec City, QC', + 1418873 => 'Pont-Rouge, QC', + 1418877 => 'Quebec City, QC', + 1418878 => 'Saint-Augustin-de-Desmaures, QC', + 1418881 => 'St-Apollinaire, QC', + 1418885 => 'St-Anselme, QC', + 1418888 => 'St-Agapit, QC', + 1418914 => 'Quebec City, QC', + 1418948 => 'Quebec City, QC', + 1418962 => 'Sept-Iles, QC', + 1418968 => 'Sept-Iles, QC', + 1418977 => 'Quebec City, QC', + 1419 => 'Ohio', + 1419207 => 'Ashland, OH', + 1419213 => 'Toledo, OH', + 1419221 => 'Lima, OH', + 1419222 => 'Lima, OH', + 1419223 => 'Lima, OH', + 1419224 => 'Lima, OH', + 1419225 => 'Lima, OH', + 1419226 => 'Lima, OH', + 1419227 => 'Lima, OH', + 1419228 => 'Lima, OH', + 1419229 => 'Lima, OH', + 1419232 => 'Van Wert, OH', + 1419238 => 'Van Wert, OH', + 1419241 => 'Toledo, OH', + 1419242 => 'Toledo, OH', + 1419243 => 'Toledo, OH', + 1419244 => 'Toledo, OH', + 1419245 => 'Toledo, OH', + 1419246 => 'Toledo, OH', + 1419251 => 'Toledo, OH', + 1419253 => 'Marengo, OH', + 1419255 => 'Toledo, OH', + 1419257 => 'North Baltimore, OH', + 1419258 => 'Antwerp, OH', + 1419259 => 'Toledo, OH', + 1419278 => 'Deshler, OH', + 1419281 => 'Ashland, OH', + 1419285 => 'Put-in-Bay, OH', + 1419287 => 'Pemberville, OH', + 1419289 => 'Ashland, OH', + 1419291 => 'Toledo, OH', + 1419293 => 'McComb, OH', + 1419294 => 'Upper Sandusky, OH', + 1419298 => 'Edgerton, OH', + 1419331 => 'Lima, OH', + 1419332 => 'Fremont, OH', + 1419333 => 'Fremont, OH', + 1419334 => 'Fremont, OH', + 1419335 => 'Wauseon, OH', + 1419337 => 'Wauseon, OH', + 1419339 => 'Elida, OH', + 1419342 => 'Shelby, OH', + 1419347 => 'Shelby, OH', + 1419352 => 'Bowling Green, OH', + 1419353 => 'Bowling Green, OH', + 1419354 => 'Bowling Green, OH', + 1419355 => 'Fremont, OH', + 1419358 => 'Bluffton, OH', + 1419375 => 'Fort Recovery, OH', + 1419380 => 'Toledo, OH', + 1419381 => 'Toledo, OH', + 1419382 => 'Toledo, OH', + 1419383 => 'Toledo, OH', + 1419385 => 'Toledo, OH', + 1419389 => 'Toledo, OH', + 1419394 => 'St. Marys, OH', + 1419396 => 'Carey, OH', + 1419399 => 'Paulding, OH', + 1419420 => 'Findlay, OH', + 1419422 => 'Findlay, OH', + 1419423 => 'Findlay, OH', + 1419424 => 'Findlay, OH', + 1419425 => 'Findlay, OH', + 1419427 => 'Findlay, OH', + 1419433 => 'Huron, OH', + 1419435 => 'Fostoria, OH', + 1419436 => 'Fostoria, OH', + 1419443 => 'Tiffin, OH', + 1419445 => 'Archbold, OH', + 1419446 => 'Archbold, OH', + 1419447 => 'Tiffin, OH', + 1419448 => 'Tiffin, OH', + 1419453 => 'Ottoville, OH', + 1419462 => 'Galion, OH', + 1419465 => 'Monroeville, OH', + 1419468 => 'Galion, OH', + 1419471 => 'Toledo, OH', + 1419472 => 'Toledo, OH', + 1419473 => 'Toledo, OH', + 1419474 => 'Toledo, OH', + 1419475 => 'Toledo, OH', + 1419476 => 'Toledo, OH', + 1419478 => 'Toledo, OH', + 1419479 => 'Toledo, OH', + 1419483 => 'Bellevue, OH', + 1419485 => 'Montpelier, OH', + 1419499 => 'Milan, OH', + 1419502 => 'Sandusky, OH', + 1419517 => 'Sylvania, OH', + 1419522 => 'Mansfield, OH', + 1419523 => 'Ottawa, OH', + 1419524 => 'Mansfield, OH', + 1419525 => 'Mansfield, OH', + 1419526 => 'Mansfield, OH', + 1419529 => 'Mansfield, OH', + 1419531 => 'Toledo, OH', + 1419532 => 'Kalida, OH', + 1419534 => 'Toledo, OH', + 1419535 => 'Toledo, OH', + 1419536 => 'Toledo, OH', + 1419537 => 'Toledo, OH', + 1419542 => 'Hicksville, OH', + 1419547 => 'Clyde, OH', + 1419557 => 'Sandusky, OH', + 1419562 => 'Bucyrus, OH', + 1419568 => 'Waynesfield, OH', + 1419578 => 'Toledo, OH', + 1419584 => 'Celina, OH', + 1419586 => 'Celina, OH', + 1419589 => 'Mansfield, OH', + 1419592 => 'Napoleon, OH', + 1419599 => 'Napoleon, OH', + 1419609 => 'Sandusky, OH', + 1419621 => 'Sandusky, OH', + 1419624 => 'Sandusky, OH', + 1419625 => 'Sandusky, OH', + 1419626 => 'Sandusky, OH', + 1419627 => 'Sandusky, OH', + 1419628 => 'Minster, OH', + 1419629 => 'New Bremen, OH', + 1419633 => 'Bryan, OH', + 1419634 => 'Ada, OH', + 1419636 => 'Bryan, OH', + 1419637 => 'Gibsonburg, OH', + 1419647 => 'Spencerville, OH', + 1419659 => 'Columbus Grove, OH', + 1419660 => 'Norwalk, OH', + 1419663 => 'Norwalk, OH', + 1419668 => 'Norwalk, OH', + 1419673 => 'Kenton, OH', + 1419674 => 'Kenton, OH', + 1419675 => 'Kenton, OH', + 1419678 => 'Coldwater, OH', + 1419683 => 'Crestline, OH', + 1419684 => 'Castalia, OH', + 1419690 => 'Oregon, OH', + 1419692 => 'Delphos, OH', + 1419695 => 'Delphos, OH', + 1419696 => 'Oregon, OH', + 1419697 => 'Oregon, OH', + 1419698 => 'Oregon, OH', + 1419720 => 'Toledo, OH', + 1419724 => 'Toledo, OH', + 1419725 => 'Toledo, OH', + 1419726 => 'Toledo, OH', + 1419727 => 'Toledo, OH', + 1419729 => 'Toledo, OH', + 1419732 => 'Port Clinton, OH', + 1419734 => 'Port Clinton, OH', + 1419738 => 'Wapakoneta, OH', + 1419739 => 'Wapakoneta, OH', + 1419747 => 'Mansfield, OH', + 1419756 => 'Mansfield, OH', + 1419774 => 'Mansfield, OH', + 1419775 => 'Mansfield, OH', + 1419782 => 'Defiance, OH', + 1419784 => 'Defiance, OH', + 1419794 => 'Maumee, OH', + 1419797 => 'Port Clinton, OH', + 1419798 => 'Lakeside Marblhd, OH', + 1419822 => 'Delta, OH', + 1419824 => 'Sylvania, OH', + 1419825 => 'Swanton, OH', + 1419826 => 'Swanton, OH', + 1419832 => 'Grand Rapids, OH', + 1419837 => 'Perrysburg, OH', + 1419841 => 'Toledo, OH', + 1419842 => 'Toledo, OH', + 1419843 => 'Toledo, OH', + 1419849 => 'Woodville, OH', + 1419855 => 'Genoa, OH', + 1419862 => 'Elmore, OH', + 1419864 => 'Cardington, OH', + 1419872 => 'Perrysburg, OH', + 1419873 => 'Perrysburg, OH', + 1419874 => 'Perrysburg, OH', + 1419877 => 'Whitehouse, OH', + 1419878 => 'Waterville, OH', + 1419882 => 'Sylvania, OH', + 1419884 => 'Lexington, OH', + 1419885 => 'Sylvania, OH', + 1419886 => 'Bellville, OH', + 1419887 => 'Maumee, OH', + 1419891 => 'Maumee, OH', + 1419893 => 'Maumee, OH', + 1419897 => 'Maumee, OH', + 1419898 => 'Oak Harbor, OH', + 1419924 => 'West Unity, OH', + 1419925 => 'Maria Stein, OH', + 1419927 => 'Sycamore, OH', + 1419929 => 'New London, OH', + 1419931 => 'Perrysburg, OH', + 1419933 => 'Willard, OH', + 1419935 => 'Willard, OH', + 1419943 => 'Leipsic, OH', + 1419946 => 'Mount Gilead, OH', + 1419947 => 'Mount Gilead, OH', + 1419991 => 'Lima, OH', + 1419994 => 'Loudonville, OH', + 1419996 => 'Lima, OH', + 1419999 => 'Lima, OH', + 1423 => 'Tennessee', + 1423209 => 'Chattanooga, TN', + 1423224 => 'Kingsport, TN', + 1423230 => 'Kingsport, TN', + 1423232 => 'Johnson City, TN', + 1423235 => 'Bulls Gap, TN', + 1423238 => 'Ooltewah, TN', + 1423239 => 'Kingsport, TN', + 1423245 => 'Kingsport, TN', + 1423246 => 'Kingsport, TN', + 1423247 => 'Kingsport, TN', + 1423253 => 'Tellico Plains, TN', + 1423262 => 'Johnson City, TN', + 1423263 => 'Etowah, TN', + 1423265 => 'Chattanooga, TN', + 1423266 => 'Chattanooga, TN', + 1423267 => 'Chattanooga, TN', + 1423272 => 'Rogersville, TN', + 1423279 => 'Blountville, TN', + 1423282 => 'Johnson City, TN', + 1423283 => 'Johnson City, TN', + 1423286 => 'Oneida, TN', + 1423288 => 'Kingsport, TN', + 1423296 => 'Chattanooga, TN', + 1423305 => 'Chattanooga, TN', + 1423307 => 'Morristown, TN', + 1423317 => 'Morristown, TN', + 1423318 => 'Morristown, TN', + 1423323 => 'Blountville, TN', + 1423332 => 'Soddy-Daisy, TN', + 1423334 => 'Decatur, TN', + 1423337 => 'Sweetwater, TN', + 1423338 => 'Benton, TN', + 1423339 => 'Cleveland, TN', + 1423343 => 'Kingsport, TN', + 1423344 => 'Harrison, TN', + 1423345 => 'Surgoinsville, TN', + 1423346 => 'Wartburg, TN', + 1423349 => 'Kingsport, TN', + 1423357 => 'Church Hill, TN', + 1423365 => 'Spring City, TN', + 1423378 => 'Kingsport, TN', + 1423392 => 'Kingsport, TN', + 1423396 => 'Ooltewah, TN', + 1423422 => 'Mosheim, TN', + 1423431 => 'Johnson City, TN', + 1423434 => 'Johnson City, TN', + 1423439 => 'Johnson City, TN', + 1423442 => 'Madisonville, TN', + 1423447 => 'Pikeville, TN', + 1423451 => 'Soddy-Daisy, TN', + 1423468 => 'Chattanooga, TN', + 1423472 => 'Cleveland, TN', + 1423473 => 'Cleveland, TN', + 1423475 => 'Chattanooga, TN', + 1423476 => 'Cleveland, TN', + 1423477 => 'Gray, TN', + 1423478 => 'Cleveland, TN', + 1423479 => 'Cleveland, TN', + 1423485 => 'Chattanooga, TN', + 1423487 => 'Cosby, TN', + 1423490 => 'Chattanooga, TN', + 1423493 => 'Chattanooga, TN', + 1423495 => 'Chattanooga, TN', + 1423496 => 'Copperhill, TN', + 1423499 => 'Chattanooga, TN', + 1423508 => 'Chattanooga, TN', + 1423510 => 'Chattanooga, TN', + 1423521 => 'Chattanooga, TN', + 1423531 => 'Chattanooga, TN', + 1423538 => 'Bluff City, TN', + 1423542 => 'Elizabethton, TN', + 1423543 => 'Elizabethton, TN', + 1423547 => 'Elizabethton, TN', + 1423553 => 'Chattanooga, TN', + 1423559 => 'Cleveland, TN', + 1423562 => 'La Follette, TN', + 1423566 => 'La Follette, TN', + 1423569 => 'Oneida, TN', + 1423570 => 'Dayton, TN', + 1423578 => 'Kingsport, TN', + 1423581 => 'Morristown, TN', + 1423585 => 'Morristown, TN', + 1423586 => 'Morristown, TN', + 1423587 => 'Morristown, TN', + 1423610 => 'Johnson City, TN', + 1423613 => 'Newport, TN', + 1423614 => 'Cleveland, TN', + 1423622 => 'Chattanooga, TN', + 1423623 => 'Newport, TN', + 1423624 => 'Chattanooga, TN', + 1423625 => 'Newport, TN', + 1423629 => 'Chattanooga, TN', + 1423634 => 'Chattanooga, TN', + 1423636 => 'Greeneville, TN', + 1423638 => 'Greeneville, TN', + 1423639 => 'Greeneville, TN', + 1423643 => 'Chattanooga, TN', + 1423648 => 'Chattanooga, TN', + 1423652 => 'Bristol, TN', + 1423658 => 'Whitwell, TN', + 1423663 => 'Huntsville, TN', + 1423664 => 'Chattanooga, TN', + 1423697 => 'Chattanooga, TN', + 1423698 => 'Chattanooga, TN', + 1423702 => 'Chattanooga, TN', + 1423710 => 'Chattanooga, TN', + 1423725 => 'Hampton, TN', + 1423727 => 'Mountain City, TN', + 1423728 => 'Cleveland, TN', + 1423733 => 'Sneedville, TN', + 1423743 => 'Erwin, TN', + 1423744 => 'Athens, TN', + 1423745 => 'Athens, TN', + 1423746 => 'Athens, TN', + 1423752 => 'Chattanooga, TN', + 1423753 => 'Jonesborough, TN', + 1423756 => 'Chattanooga, TN', + 1423757 => 'Chattanooga, TN', + 1423764 => 'Bristol, TN', + 1423765 => 'Kingsport, TN', + 1423775 => 'Dayton, TN', + 1423778 => 'Chattanooga, TN', + 1423784 => 'Jellico, TN', + 1423787 => 'Greeneville, TN', + 1423790 => 'Cleveland, TN', + 1423794 => 'Johnson City, TN', + 1423798 => 'Greeneville, TN', + 1423821 => 'Chattanooga, TN', + 1423825 => 'Chattanooga, TN', + 1423837 => 'South Pittsburg, TN', + 1423842 => 'Hixson, TN', + 1423843 => 'Hixson, TN', + 1423844 => 'Bristol, TN', + 1423847 => 'Hixson, TN', + 1423854 => 'Johnson City, TN', + 1423855 => 'Chattanooga, TN', + 1423857 => 'Kingsport, TN', + 1423867 => 'Chattanooga, TN', + 1423869 => 'Harrogate, TN', + 1423878 => 'Bristol, TN', + 1423884 => 'Vonore, TN', + 1423886 => 'Signal Mountain, TN', + 1423892 => 'Chattanooga, TN', + 1423893 => 'Chattanooga, TN', + 1423894 => 'Chattanooga, TN', + 1423899 => 'Chattanooga, TN', + 1423913 => 'Jonesborough, TN', + 1423915 => 'Johnson City, TN', + 1423921 => 'Rogersville, TN', + 1423926 => 'Johnson City, TN', + 1423928 => 'Johnson City, TN', + 1423929 => 'Johnson City, TN', + 1423942 => 'Jasper, TN', + 1423949 => 'Dunlap, TN', + 1423954 => 'Chattanooga, TN', + 1423968 => 'Bristol, TN', + 1423975 => 'Johnson City, TN', + 1423979 => 'Johnson City, TN', + 1423989 => 'Bristol, TN', + 1424 => 'California', + 1425 => 'Washington', + 1425204 => 'Renton, WA', + 1425212 => 'Everett, WA', + 1425222 => 'Fall City, WA', + 1425226 => 'Renton, WA', + 1425227 => 'Renton, WA', + 1425228 => 'Renton, WA', + 1425235 => 'Renton, WA', + 1425252 => 'Everett, WA', + 1425255 => 'Renton, WA', + 1425257 => 'Everett, WA', + 1425258 => 'Everett, WA', + 1425259 => 'Everett, WA', + 1425261 => 'Everett, WA', + 1425264 => 'Renton, WA', + 1425271 => 'Renton, WA', + 1425277 => 'Renton, WA', + 1425282 => 'Renton, WA', + 1425289 => 'Bellevue, WA', + 1425290 => 'Everett, WA', + 1425303 => 'Everett, WA', + 1425313 => 'Issaquah, WA', + 1425316 => 'Everett, WA', + 1425317 => 'Everett, WA', + 1425333 => 'Carnation, WA', + 1425334 => 'Lake Stevens, WA', + 1425335 => 'Lake Stevens, WA', + 1425339 => 'Everett, WA', + 1425347 => 'Everett, WA', + 1425348 => 'Everett, WA', + 1425353 => 'Everett, WA', + 1425355 => 'Everett, WA', + 1425369 => 'Issaquah, WA', + 1425373 => 'Bellevue, WA', + 1425374 => 'Everett, WA', + 1425377 => 'Lake Stevens, WA', + 1425388 => 'Everett, WA', + 1425391 => 'Issaquah, WA', + 1425392 => 'Issaquah, WA', + 1425394 => 'Issaquah, WA', + 1425396 => 'Snoqualmie, WA', + 1425397 => 'Lake Stevens, WA', + 1425401 => 'Bellevue, WA', + 1425413 => 'Maple Valley, WA', + 1425427 => 'Issaquah, WA', + 1425430 => 'Renton, WA', + 1425432 => 'Maple Valley, WA', + 1425438 => 'Everett, WA', + 1425450 => 'Bellevue, WA', + 1425451 => 'Bellevue, WA', + 1425452 => 'Bellevue, WA', + 1425453 => 'Bellevue, WA', + 1425454 => 'Bellevue, WA', + 1425455 => 'Bellevue, WA', + 1425462 => 'Bellevue, WA', + 1425467 => 'Bellevue, WA', + 1425493 => 'Mukilteo, WA', + 1425497 => 'Redmond, WA', + 1425502 => 'Bellevue, WA', + 1425513 => 'Everett, WA', + 1425556 => 'Redmond, WA', + 1425557 => 'Issaquah, WA', + 1425558 => 'Redmond, WA', + 1425562 => 'Bellevue, WA', + 1425576 => 'Kirkland, WA', + 1425614 => 'Bellevue, WA', + 1425635 => 'Bellevue, WA', + 1425637 => 'Bellevue, WA', + 1425640 => 'Edmonds, WA', + 1425641 => 'Bellevue, WA', + 1425643 => 'Bellevue, WA', + 1425644 => 'Bellevue, WA', + 1425646 => 'Bellevue, WA', + 1425649 => 'Bellevue, WA', + 1425653 => 'Bellevue, WA', + 1425656 => 'Renton, WA', + 1425687 => 'Renton, WA', + 1425688 => 'Bellevue, WA', + 1425712 => 'Lynnwood, WA', + 1425739 => 'Kirkland, WA', + 1425741 => 'Lynnwood, WA', + 1425742 => 'Lynnwood, WA', + 1425743 => 'Lynnwood, WA', + 1425746 => 'Bellevue, WA', + 1425747 => 'Bellevue, WA', + 1425787 => 'Lynnwood, WA', + 1425788 => 'Duvall, WA', + 1425793 => 'Renton, WA', + 1425814 => 'Kirkland, WA', + 1425820 => 'Kirkland, WA', + 1425821 => 'Kirkland, WA', + 1425822 => 'Kirkland, WA', + 1425823 => 'Kirkland, WA', + 1425825 => 'Kirkland, WA', + 1425827 => 'Kirkland, WA', + 1425828 => 'Kirkland, WA', + 1425831 => 'North Bend, WA', + 1425837 => 'Issaquah, WA', + 1425867 => 'Redmond, WA', + 1425869 => 'Redmond, WA', + 1425881 => 'Redmond, WA', + 1425882 => 'Redmond, WA', + 1425883 => 'Redmond, WA', + 1425888 => 'North Bend, WA', + 1425889 => 'Kirkland, WA', + 1425899 => 'Kirkland, WA', + 1425957 => 'Bellevue, WA', + 1425990 => 'Bellevue, WA', + 1430 => 'Texas', + 1431 => 'Manitoba', + 1432 => 'Texas', + 1432218 => 'Midland, TX', + 1432229 => 'Presidio, TX', + 1432262 => 'Midland, TX', + 1432263 => 'Big Spring, TX', + 1432264 => 'Big Spring, TX', + 1432267 => 'Big Spring, TX', + 1432272 => 'Odessa, TX', + 1432283 => 'Van Horn, TX', + 1432332 => 'Odessa, TX', + 1432333 => 'Odessa, TX', + 1432334 => 'Odessa, TX', + 1432335 => 'Odessa, TX', + 1432336 => 'Fort Stockton, TX', + 1432337 => 'Odessa, TX', + 1432362 => 'Odessa, TX', + 1432363 => 'Odessa, TX', + 1432366 => 'Odessa, TX', + 1432367 => 'Odessa, TX', + 1432368 => 'Odessa, TX', + 1432381 => 'Odessa, TX', + 1432385 => 'Odessa, TX', + 1432426 => 'Fort Davis, TX', + 1432445 => 'Pecos, TX', + 1432447 => 'Pecos, TX', + 1432520 => 'Midland, TX', + 1432522 => 'Midland, TX', + 1432523 => 'Andrews, TX', + 1432524 => 'Andrews, TX', + 1432550 => 'Odessa, TX', + 1432552 => 'Odessa, TX', + 1432558 => 'Crane, TX', + 1432561 => 'Odessa, TX', + 1432570 => 'Midland, TX', + 1432580 => 'Odessa, TX', + 1432582 => 'Odessa, TX', + 1432586 => 'Kermit, TX', + 1432614 => 'Odessa, TX', + 1432617 => 'Midland, TX', + 1432618 => 'Midland, TX', + 1432620 => 'Midland, TX', + 1432640 => 'Odessa, TX', + 1432652 => 'McCamey, TX', + 1432682 => 'Midland, TX', + 1432683 => 'Midland, TX', + 1432684 => 'Midland, TX', + 1432685 => 'Midland, TX', + 1432686 => 'Midland, TX', + 1432687 => 'Midland, TX', + 1432689 => 'Midland, TX', + 1432694 => 'Midland, TX', + 1432697 => 'Midland, TX', + 1432699 => 'Midland, TX', + 1432729 => 'Marfa, TX', + 1432756 => 'Stanton, TX', + 1432758 => 'Seminole, TX', + 1432837 => 'Alpine, TX', + 1432943 => 'Monahans, TX', + 1434 => 'Virginia', + 1434200 => 'Lynchburg, VA', + 1434202 => 'Charlottesville, VA', + 1434220 => 'Charlottesville, VA', + 1434237 => 'Lynchburg, VA', + 1434239 => 'Lynchburg, VA', + 1434243 => 'Charlottesville, VA', + 1434244 => 'Charlottesville, VA', + 1434245 => 'Charlottesville, VA', + 1434246 => 'Stony Creek, VA', + 1434263 => 'Lovingston, VA', + 1434286 => 'Scottsville, VA', + 1434292 => 'Blackstone, VA', + 1434293 => 'Charlottesville, VA', + 1434295 => 'Charlottesville, VA', + 1434296 => 'Charlottesville, VA', + 1434315 => 'Farmville, VA', + 1434316 => 'Lynchburg, VA', + 1434324 => 'Hurt, VA', + 1434332 => 'Rustburg, VA', + 1434336 => 'Emporia, VA', + 1434348 => 'Emporia, VA', + 1434352 => 'Appomattox, VA', + 1434369 => 'Altavista, VA', + 1434372 => 'Chase City, VA', + 1434374 => 'Clarksville, VA', + 1434376 => 'Brookneal, VA', + 1434384 => 'Lynchburg, VA', + 1434385 => 'Lynchburg, VA', + 1434392 => 'Farmville, VA', + 1434432 => 'Chatham, VA', + 1434447 => 'South Hill, VA', + 1434455 => 'Lynchburg, VA', + 1434476 => 'Halifax, VA', + 1434485 => 'Lynchburg, VA', + 1434517 => 'South Boston, VA', + 1434525 => 'Forest, VA', + 1434528 => 'Lynchburg, VA', + 1434534 => 'Forest, VA', + 1434542 => 'Charlotte Ct Hse, VA', + 1434572 => 'South Boston, VA', + 1434575 => 'South Boston, VA', + 1434582 => 'Lynchburg, VA', + 1434589 => 'Palmyra, VA', + 1434634 => 'Emporia, VA', + 1434636 => 'Bracey, VA', + 1434645 => 'Crewe, VA', + 1434654 => 'Charlottesville, VA', + 1434656 => 'Gretna, VA', + 1434676 => 'Kenbridge, VA', + 1434685 => 'Danville, VA', + 1434696 => 'Victoria, VA', + 1434736 => 'Keysville, VA', + 1434738 => 'Boydton, VA', + 1434791 => 'Danville, VA', + 1434792 => 'Danville, VA', + 1434793 => 'Danville, VA', + 1434797 => 'Danville, VA', + 1434799 => 'Danville, VA', + 1434817 => 'Charlottesville, VA', + 1434821 => 'Rustburg, VA', + 1434822 => 'Danville, VA', + 1434823 => 'Crozet, VA', + 1434832 => 'Lynchburg, VA', + 1434836 => 'Danville, VA', + 1434842 => 'Fork Union, VA', + 1434845 => 'Lynchburg, VA', + 1434846 => 'Lynchburg, VA', + 1434847 => 'Lynchburg, VA', + 1434848 => 'Lawrenceville, VA', + 1434924 => 'Charlottesville, VA', + 1434929 => 'Madison Heights, VA', + 1434946 => 'Amherst, VA', + 1434947 => 'Lynchburg, VA', + 1434964 => 'Charlottesville, VA', + 1434969 => 'Buckingham, VA', + 1434970 => 'Charlottesville, VA', + 1434971 => 'Charlottesville, VA', + 1434972 => 'Charlottesville, VA', + 1434973 => 'Charlottesville, VA', + 1434974 => 'Charlottesville, VA', + 1434975 => 'Charlottesville, VA', + 1434977 => 'Charlottesville, VA', + 1434978 => 'Charlottesville, VA', + 1434979 => 'Charlottesville, VA', + 1434981 => 'Charlottesville, VA', + 1434982 => 'Charlottesville, VA', + 1434983 => 'Dillwyn, VA', + 1434984 => 'Charlottesville, VA', + 1434990 => 'Ruckersville, VA', + 1434993 => 'Concord, VA', + 1435 => 'Utah', + 1435213 => 'Logan, UT', + 1435245 => 'Hyrum, UT', + 1435251 => 'St. George, UT', + 1435257 => 'Tremonton, UT', + 1435259 => 'Moab, UT', + 1435283 => 'Ephraim, UT', + 1435336 => 'Coalville, UT', + 1435381 => 'Castle Dale, UT', + 1435438 => 'Beaver, UT', + 1435462 => 'Mount Pleasant, UT', + 1435472 => 'Helper, UT', + 1435477 => 'Parowan, UT', + 1435527 => 'Monroe, UT', + 1435528 => 'Gunnison, UT', + 1435529 => 'Salina, UT', + 1435563 => 'Smithfield, UT', + 1435586 => 'Cedar City, UT', + 1435587 => 'Monticello, UT', + 1435613 => 'Price, UT', + 1435615 => 'Park City, UT', + 1435623 => 'Nephi, UT', + 1435627 => 'St. George, UT', + 1435628 => 'St. George, UT', + 1435632 => 'St. George, UT', + 1435634 => 'St. George, UT', + 1435635 => 'Hurricane, UT', + 1435636 => 'Price, UT', + 1435637 => 'Price, UT', + 1435640 => 'Park City, UT', + 1435644 => 'Kanab, UT', + 1435645 => 'Park City, UT', + 1435647 => 'Park City, UT', + 1435649 => 'Park City, UT', + 1435652 => 'St. George, UT', + 1435654 => 'Heber City, UT', + 1435655 => 'Park City, UT', + 1435656 => 'St. George, UT', + 1435657 => 'Heber City, UT', + 1435658 => 'Park City, UT', + 1435673 => 'St. George, UT', + 1435674 => 'St. George, UT', + 1435676 => 'Panguitch, UT', + 1435678 => 'Blanding, UT', + 1435687 => 'Huntington, UT', + 1435688 => 'St. George, UT', + 1435713 => 'Logan, UT', + 1435716 => 'Logan, UT', + 1435722 => 'Roosevelt, UT', + 1435723 => 'Brigham City, UT', + 1435725 => 'Roosevelt, UT', + 1435734 => 'Brigham City, UT', + 1435738 => 'Duchesne, UT', + 1435743 => 'Fillmore, UT', + 1435750 => 'Logan, UT', + 1435752 => 'Logan, UT', + 1435753 => 'Logan, UT', + 1435755 => 'Logan, UT', + 1435772 => 'Springdale, UT', + 1435781 => 'Vernal, UT', + 1435783 => 'Kamas, UT', + 1435787 => 'Logan, UT', + 1435789 => 'Vernal, UT', + 1435792 => 'Logan, UT', + 1435797 => 'Logan, UT', + 1435833 => 'Tooele, UT', + 1435835 => 'Manti, UT', + 1435843 => 'Tooele, UT', + 1435864 => 'Delta, UT', + 1435865 => 'Cedar City, UT', + 1435867 => 'Cedar City, UT', + 1435882 => 'Tooele, UT', + 1435884 => 'Grantsville, UT', + 1435893 => 'Richfield, UT', + 1435896 => 'Richfield, UT', + 1435946 => 'Garden City, UT', + 1435986 => 'St. George, UT', + 1437 => 'Ontario', + 1438 => 'Quebec', + 1438380 => 'Montreal, QC', + 1440 => 'Ohio', + 1440204 => 'Lorain, OH', + 1440205 => 'Mentor, OH', + 1440209 => 'Mentor, OH', + 1440233 => 'Lorain, OH', + 1440236 => 'Columbia Station, OH', + 1440237 => 'Cleveland, OH', + 1440238 => 'Strongsville, OH', + 1440244 => 'Lorain, OH', + 1440245 => 'Lorain, OH', + 1440247 => 'Chagrin Falls, OH', + 1440255 => 'Mentor, OH', + 1440257 => 'Mentor, OH', + 1440259 => 'Perry, OH', + 1440266 => 'Mentor, OH', + 1440268 => 'Strongsville, OH', + 1440269 => 'Willoughby, OH', + 1440275 => 'Austinburg, OH', + 1440277 => 'Lorain, OH', + 1440282 => 'Lorain, OH', + 1440284 => 'Elyria, OH', + 1440285 => 'Chardon, OH', + 1440286 => 'Chardon, OH', + 1440288 => 'Lorain, OH', + 1440293 => 'Andover, OH', + 1440312 => 'Cleveland, OH', + 1440322 => 'Elyria, OH', + 1440323 => 'Elyria, OH', + 1440324 => 'Elyria, OH', + 1440327 => 'North Ridgeville, OH', + 1440329 => 'Elyria, OH', + 1440331 => 'Cleveland, OH', + 1440333 => 'Cleveland, OH', + 1440338 => 'Novelty, OH', + 1440350 => 'Painesville, OH', + 1440352 => 'Painesville, OH', + 1440353 => 'North Ridgeville, OH', + 1440354 => 'Painesville, OH', + 1440355 => 'LaGrange, OH', + 1440356 => 'Cleveland, OH', + 1440357 => 'Painesville, OH', + 1440358 => 'Painesville, OH', + 1440365 => 'Elyria, OH', + 1440366 => 'Elyria, OH', + 1440392 => 'Painesville, OH', + 1440428 => 'Madison, OH', + 1440437 => 'Orwell, OH', + 1440442 => 'Cleveland, OH', + 1440449 => 'Cleveland, OH', + 1440458 => 'Elyria, OH', + 1440460 => 'Cleveland, OH', + 1440461 => 'Cleveland, OH', + 1440466 => 'Geneva, OH', + 1440473 => 'Cleveland, OH', + 1440519 => 'Solon, OH', + 1440543 => 'Chagrin Falls, OH', + 1440546 => 'Cleveland, OH', + 1440563 => 'Rock Creek, OH', + 1440564 => 'Newbury, OH', + 1440572 => 'Strongsville, OH', + 1440576 => 'Jefferson, OH', + 1440582 => 'Cleveland, OH', + 1440593 => 'Conneaut, OH', + 1440599 => 'Conneaut, OH', + 1440632 => 'Middlefield, OH', + 1440639 => 'Painesville, OH', + 1440646 => 'Cleveland, OH', + 1440647 => 'Wellington, OH', + 1440684 => 'Cleveland, OH', + 1440708 => 'Chagrin Falls, OH', + 1440716 => 'North Olmsted, OH', + 1440717 => 'Cleveland, OH', + 1440729 => 'Chesterland, OH', + 1440734 => 'North Olmsted, OH', + 1440743 => 'Cleveland, OH', + 1440748 => 'Grafton, OH', + 1440774 => 'Oberlin, OH', + 1440775 => 'Oberlin, OH', + 1440777 => 'North Olmsted, OH', + 1440779 => 'North Olmsted, OH', + 1440816 => 'Cleveland, OH', + 1440834 => 'Burton, OH', + 1440838 => 'Cleveland, OH', + 1440842 => 'Cleveland, OH', + 1440843 => 'Cleveland, OH', + 1440845 => 'Cleveland, OH', + 1440846 => 'Strongsville, OH', + 1440877 => 'Cleveland, OH', + 1440878 => 'Strongsville, OH', + 1440884 => 'Cleveland, OH', + 1440885 => 'Cleveland, OH', + 1440886 => 'Cleveland, OH', + 1440887 => 'Cleveland, OH', + 1440888 => 'Cleveland, OH', + 1440893 => 'Chagrin Falls, OH', + 1440895 => 'Cleveland, OH', + 1440899 => 'Cleveland, OH', + 1440926 => 'Grafton, OH', + 1440930 => 'Avon Lake, OH', + 1440933 => 'Avon Lake, OH', + 1440934 => 'Avon, OH', + 1440937 => 'Avon, OH', + 1440942 => 'Willoughby, OH', + 1440946 => 'Willoughby, OH', + 1440949 => 'Sheffield Lake, OH', + 1440953 => 'Willoughby, OH', + 1440960 => 'Lorain, OH', + 1440964 => 'Ashtabula, OH', + 1440967 => 'Vermilion, OH', + 1440974 => 'Mentor, OH', + 1440975 => 'Willoughby, OH', + 1440984 => 'Amherst, OH', + 1440985 => 'Amherst, OH', + 1440988 => 'Amherst, OH', + 1440989 => 'Lorain, OH', + 1440992 => 'Ashtabula, OH', + 1440993 => 'Ashtabula, OH', + 1440997 => 'Ashtabula, OH', + 1440998 => 'Ashtabula, OH', + 1441292 => 'Hamilton', + 1441295 => 'Hamilton', + 1443 => 'Maryland', + 1443394 => 'Owings Mills, MD', + 1443438 => 'Baltimore, MD', + 1443444 => 'Baltimore, MD', + 1443481 => 'Annapolis, MD', + 1443643 => 'Bel Air, MD', + 1443664 => 'Ocean City, MD', + 1443708 => 'Baltimore, MD', + 1443736 => 'Salisbury, MD', + 1443755 => 'Hanover, MD', + 1443759 => 'Baltimore, MD', + 1443777 => 'Baltimore, MD', + 1443849 => 'Towson, MD', + 1443869 => 'Baltimore, MD', + 1443923 => 'Baltimore, MD', + 1443944 => 'Salisbury, MD', + 1443949 => 'Annapolis, MD', + 1443977 => 'Baltimore, MD', + 1450 => 'Quebec', + 1450218 => 'Vaudreuil-Dorion, QC', + 1450224 => 'Prévost, QC', + 1450225 => 'Beauharnois, QC', + 1450226 => 'Morin-Heights, QC', + 1450229 => 'Sainte-Adèle, QC', + 1450242 => 'Brome Lake, QC', + 1450243 => 'Brome Lake, QC', + 1450245 => 'Napierville, QC', + 1450246 => 'Lacolle, QC', + 1450247 => 'Hemmingford, QC', + 1450248 => 'Bedford, QC', + 1450250 => 'Saint-Hyacinthe, QC', + 1450252 => 'Saint-Hyacinthe, QC', + 1450258 => 'Mirabel, QC', + 1450261 => 'Saint-Hyacinthe, QC', + 1450263 => 'Cowansville, QC', + 1450264 => 'Huntingdon, QC', + 1450266 => 'Cowansville, QC', + 1450293 => 'Farnham, QC', + 1450297 => 'Eastman, QC', + 1450314 => 'Laval, QC', + 1450332 => 'Longueuil, QC', + 1450346 => 'Saint-Jean-sur-Richelieu, QC', + 1450347 => 'Saint-Jean-sur-Richelieu, QC', + 1450348 => 'Saint-Jean-sur-Richelieu, QC', + 1450349 => 'Saint-Jean-sur-Richelieu, QC', + 1450357 => 'Saint-Jean-sur-Richelieu, QC', + 1450358 => 'Saint-Jean-sur-Richelieu, QC', + 1450359 => 'Saint-Jean-sur-Richelieu, QC', + 1450361 => 'Granby, QC', + 1450370 => 'Salaberry-de-Valleyfield, QC', + 1450371 => 'Salaberry-de-Valleyfield, QC', + 1450372 => 'Granby, QC', + 1450373 => 'Salaberry-de-Valleyfield, QC', + 1450375 => 'Granby, QC', + 1450377 => 'Salaberry-de-Valleyfield, QC', + 1450378 => 'Granby, QC', + 1450379 => 'Saint-Paul-d\'Abbotsford, QC', + 1450417 => 'Mascouche, QC', + 1450424 => 'Vaudreuil-Dorion, QC', + 1450427 => 'Sainte-Martine, QC', + 1450429 => 'Beauharnois, QC', + 1450431 => 'Saint-Jérôme, QC', + 1450432 => 'Saint-Jérôme, QC', + 1450436 => 'Saint-Jérôme, QC', + 1450438 => 'Saint-Jérôme, QC', + 1450439 => 'Saint-Lin-Laurentides, QC', + 1450441 => 'St-Bruno-de-Montarville, QC', + 1450442 => 'Longueuil, QC', + 1450443 => 'Saint-Hubert, QC', + 1450445 => 'Saint-Hubert, QC', + 1450447 => 'Chambly, QC', + 1450448 => 'Longueuil, QC', + 1450449 => 'Boucherville, QC', + 1450451 => 'Rigaud, QC', + 1450452 => 'Les Cèdres, QC', + 1450454 => 'Saint-Rémi, QC', + 1450455 => 'Vaudreuil-Dorion, QC', + 1450458 => 'Hudson, QC', + 1450460 => 'Marieville, QC', + 1450461 => 'St-Bruno-de-Montarville, QC', + 1450463 => 'Longueuil, QC', + 1450468 => 'Longueuil, QC', + 1450469 => 'Saint-Césaire, QC', + 1450470 => 'Repentigny, QC', + 1450471 => 'Terrebonne, QC', + 1450472 => 'Saint-Eustache, QC', + 1450473 => 'Saint-Eustache, QC', + 1450474 => 'Mascouche, QC', + 1450475 => 'Mirabel, QC', + 1450477 => 'Terrebonne, QC', + 1450478 => 'Sainte-Anne-des-Plaines, QC', + 1450479 => 'Oka, QC', + 1450491 => 'Saint-Eustache, QC', + 1450492 => 'Terrebonne, QC', + 1450510 => 'Vaudreuil-Dorion, QC', + 1450530 => 'Saint-Jérôme, QC', + 1450532 => 'Valcourt, QC', + 1450534 => 'Bromont, QC', + 1450538 => 'Sutton, QC', + 1450539 => 'Waterloo, QC', + 1450546 => 'Acton Vale, QC', + 1450548 => 'Roxton Falls, QC', + 1450562 => 'Lachute, QC', + 1450565 => 'Saint-Jérôme, QC', + 1450569 => 'Saint-Jérôme, QC', + 1450581 => 'Repentigny, QC', + 1450582 => 'Repentigny, QC', + 1450583 => 'Verchères, QC', + 1450585 => 'Repentigny, QC', + 1450586 => 'Lavaltrie, QC', + 1450587 => 'Contrecœur, QC', + 1450589 => 'L\'Assomption, QC', + 1450592 => 'Saint-Jérôme, QC', + 1450598 => 'Saint-Eustache, QC', + 1450623 => 'Saint-Eustache, QC', + 1450641 => 'Boucherville, QC', + 1450645 => 'Boucherville, QC', + 1450646 => 'Longueuil, QC', + 1450647 => 'Longueuil, QC', + 1450649 => 'Sainte-Julie, QC', + 1450651 => 'Longueuil, QC', + 1450652 => 'Varennes, QC', + 1450653 => 'St-Bruno-de-Montarville, QC', + 1450654 => 'Repentigny, QC', + 1450655 => 'Boucherville, QC', + 1450656 => 'Saint-Hubert, QC', + 1450657 => 'Repentigny, QC', + 1450658 => 'Chambly, QC', + 1450659 => 'La Prairie, QC', + 1450670 => 'Longueuil, QC', + 1450674 => 'Longueuil, QC', + 1450677 => 'Longueuil, QC', + 1450678 => 'Saint-Hubert, QC', + 1450679 => 'Longueuil, QC', + 1450686 => 'Chomedey, QC', + 1450687 => 'Chomedey, QC', + 1450691 => 'Châteauguay, QC', + 1450692 => 'Châteauguay, QC', + 1450698 => 'Châteauguay, QC', + 1450699 => 'Châteauguay, QC', + 1450741 => 'Saint-Jean-sur-Richelieu, QC', + 1450742 => 'Sorel, QC', + 1450743 => 'Sorel, QC', + 1450746 => 'Sorel, QC', + 1450752 => 'Joliette, QC', + 1450753 => 'Joliette, QC', + 1450754 => 'Crabtree, QC', + 1450755 => 'Joliette, QC', + 1450759 => 'Joliette, QC', + 1450763 => 'Coteau-du-Lac, QC', + 1450771 => 'Saint-Hyacinthe, QC', + 1450772 => 'Saint-Pie, QC', + 1450773 => 'Saint-Hyacinthe, QC', + 1450774 => 'Saint-Hyacinthe, QC', + 1450776 => 'Granby, QC', + 1450777 => 'Granby, QC', + 1450778 => 'Saint-Hyacinthe, QC', + 1450793 => 'Saint-Liboire, QC', + 1450796 => 'Saint-Hyacinthe, QC', + 1450799 => 'Saint-Hyacinthe, QC', + 1450829 => 'Ormstown, QC', + 1450831 => 'Sainte-Julienne, QC', + 1450833 => 'St-Michel-des-Saints, QC', + 1450834 => 'Rawdon, QC', + 1450835 => 'St-Gabriel-de-Brandon, QC', + 1450836 => 'Berthierville, QC', + 1450886 => 'St-Jean-de-Matha, QC', + 1450887 => 'Lanoraie, QC', + 1450889 => 'St-Félix-de-Valois, QC', + 1450922 => 'Sainte-Julie, QC', + 1450926 => 'Saint-Hubert, QC', + 1450928 => 'Longueuil, QC', + 1450929 => 'Varennes, QC', + 1450932 => 'Repentigny, QC', + 1450933 => 'Laval, QC', + 1450934 => 'Laval, QC', + 1450936 => 'Laval, QC', + 1450937 => 'Laval, QC', + 1450961 => 'Terrebonne, QC', + 1450964 => 'Terrebonne, QC', + 1450966 => 'Mascouche, QC', + 1450968 => 'Terrebonne, QC', + 1450974 => 'Saint-Eustache, QC', + 1450991 => 'Granby, QC', + 1463 => 'Indiana', + 1469 => 'Texas', + 1469232 => 'Dallas, TX', + 1469241 => 'Plano, TX', + 1469272 => 'Cedar Hill, TX', + 1469366 => 'Plano, TX', + 1469467 => 'Plano, TX', + 1469522 => 'Dallas, TX', + 1469633 => 'Frisco, TX', + 1469742 => 'McKinney, TX', + 1469752 => 'Plano, TX', + 1469916 => 'Dallas, TX', + 1469952 => 'McKinney, TX', + 1478 => 'Georgia', + 1478218 => 'Perry, GA', + 1478225 => 'Warner Robins, GA', + 1478237 => 'Swainsboro, GA', + 1478238 => 'Macon, GA', + 1478254 => 'Macon, GA', + 1478272 => 'Dublin, GA', + 1478274 => 'Dublin, GA', + 1478275 => 'Dublin, GA', + 1478277 => 'Dublin, GA', + 1478289 => 'Swainsboro, GA', + 1478296 => 'Dublin, GA', + 1478328 => 'Warner Robins, GA', + 1478329 => 'Warner Robins, GA', + 1478330 => 'Macon, GA', + 1478333 => 'Warner Robins, GA', + 1478374 => 'Eastman, GA', + 1478405 => 'Macon, GA', + 1478414 => 'Milledgeville, GA', + 1478445 => 'Milledgeville, GA', + 1478451 => 'Milledgeville, GA', + 1478452 => 'Milledgeville, GA', + 1478453 => 'Milledgeville, GA', + 1478454 => 'Milledgeville, GA', + 1478471 => 'Macon, GA', + 1478472 => 'Montezuma, GA', + 1478474 => 'Macon, GA', + 1478475 => 'Macon, GA', + 1478476 => 'Macon, GA', + 1478477 => 'Macon, GA', + 1478552 => 'Sandersville, GA', + 1478553 => 'Sandersville, GA', + 1478625 => 'Louisville, GA', + 1478628 => 'Gordon, GA', + 1478633 => 'Macon, GA', + 1478741 => 'Macon, GA', + 1478742 => 'Macon, GA', + 1478743 => 'Macon, GA', + 1478745 => 'Macon, GA', + 1478746 => 'Macon, GA', + 1478750 => 'Macon, GA', + 1478751 => 'Macon, GA', + 1478755 => 'Macon, GA', + 1478757 => 'Macon, GA', + 1478763 => 'Twin City, GA', + 1478781 => 'Macon, GA', + 1478783 => 'Hawkinsville, GA', + 1478784 => 'Macon, GA', + 1478785 => 'Macon, GA', + 1478788 => 'Macon, GA', + 1478825 => 'Fort Valley, GA', + 1478836 => 'Roberta, GA', + 1478862 => 'Butler, GA', + 1478864 => 'Wrightsville, GA', + 1478892 => 'Hawkinsville, GA', + 1478922 => 'Warner Robins, GA', + 1478923 => 'Warner Robins, GA', + 1478929 => 'Warner Robins, GA', + 1478934 => 'Cochran, GA', + 1478935 => 'Lizella, GA', + 1478945 => 'Jeffersonville, GA', + 1478946 => 'Irwinton, GA', + 1478953 => 'Warner Robins, GA', + 1478956 => 'Byron, GA', + 1478971 => 'Warner Robins, GA', + 1478982 => 'Millen, GA', + 1478986 => 'Gray, GA', + 1478987 => 'Perry, GA', + 1478988 => 'Perry, GA', + 1478992 => 'Forsyth, GA', + 1478994 => 'Forsyth, GA', + 1479 => 'Arkansas', + 1479229 => 'Dardanelle, AR', + 1479238 => 'Siloam Springs, AR', + 1479242 => 'Fort Smith, AR', + 1479243 => 'Mena, AR', + 1479246 => 'Rogers, AR', + 1479251 => 'Fayetteville, AR', + 1479253 => 'Eureka Springs, AR', + 1479254 => 'Bentonville, AR', + 1479267 => 'Farmington, AR', + 1479268 => 'Bentonville, AR', + 1479271 => 'Bentonville, AR', + 1479273 => 'Bentonville, AR', + 1479314 => 'Fort Smith, AR', + 1479331 => 'Dover, AR', + 1479338 => 'Rogers, AR', + 1479361 => 'Springdale, AR', + 1479394 => 'Mena, AR', + 1479410 => 'Van Buren, AR', + 1479419 => 'Springdale, AR', + 1479434 => 'Fort Smith, AR', + 1479441 => 'Fort Smith, AR', + 1479442 => 'Fayetteville, AR', + 1479443 => 'Fayetteville, AR', + 1479444 => 'Fayetteville, AR', + 1479445 => 'Fayetteville, AR', + 1479451 => 'Pea Ridge, AR', + 1479452 => 'Fort Smith, AR', + 1479463 => 'Fayetteville, AR', + 1479464 => 'Bentonville, AR', + 1479471 => 'Van Buren, AR', + 1479474 => 'Van Buren, AR', + 1479478 => 'Fort Smith, AR', + 1479484 => 'Fort Smith, AR', + 1479494 => 'Fort Smith, AR', + 1479495 => 'Danville, AR', + 1479521 => 'Fayetteville, AR', + 1479524 => 'Siloam Springs, AR', + 1479527 => 'Fayetteville, AR', + 1479549 => 'Siloam Springs, AR', + 1479571 => 'Fayetteville, AR', + 1479575 => 'Fayetteville, AR', + 1479582 => 'Fayetteville, AR', + 1479587 => 'Fayetteville, AR', + 1479621 => 'Rogers, AR', + 1479631 => 'Rogers, AR', + 1479632 => 'Alma, AR', + 1479633 => 'Rogers, AR', + 1479636 => 'Rogers, AR', + 1479637 => 'Waldron, AR', + 1479641 => 'Atkins, AR', + 1479646 => 'Fort Smith, AR', + 1479648 => 'Fort Smith, AR', + 1479649 => 'Fort Smith, AR', + 1479667 => 'Ozark, AR', + 1479675 => 'Booneville, AR', + 1479705 => 'Clarksville, AR', + 1479709 => 'Fort Smith, AR', + 1479715 => 'Bentonville, AR', + 1479717 => 'Springdale, AR', + 1479725 => 'Springdale, AR', + 1479736 => 'Gentry, AR', + 1479738 => 'Huntsville, AR', + 1479750 => 'Springdale, AR', + 1479751 => 'Springdale, AR', + 1479754 => 'Clarksville, AR', + 1479756 => 'Springdale, AR', + 1479770 => 'Lowell, AR', + 1479782 => 'Fort Smith, AR', + 1479783 => 'Fort Smith, AR', + 1479784 => 'Fort Smith, AR', + 1479785 => 'Fort Smith, AR', + 1479787 => 'Gravette, AR', + 1479795 => 'Centerton, AR', + 1479824 => 'Lincoln, AR', + 1479839 => 'West Fork, AR', + 1479846 => 'Prairie Grove, AR', + 1479855 => 'Bella Vista, AR', + 1479872 => 'Springdale, AR', + 1479876 => 'Bella Vista, AR', + 1479880 => 'Russellville, AR', + 1479890 => 'Russellville, AR', + 1479899 => 'Rogers, AR', + 1479925 => 'Rogers, AR', + 1479927 => 'Springdale, AR', + 1479928 => 'Mansfield, AR', + 1479935 => 'Fayetteville, AR', + 1479936 => 'Rogers, AR', + 1479963 => 'Paris, AR', + 1479965 => 'Charleston, AR', + 1479966 => 'Fayetteville, AR', + 1479967 => 'Russellville, AR', + 1479968 => 'Russellville, AR', + 1479986 => 'Rogers, AR', + 1479996 => 'Greenwood, AR', + 1479997 => 'Mulberry, AR', + 1480 => 'Arizona', + 1480218 => 'Mesa, AZ', + 1480288 => 'Apache Junction, AZ', + 1480301 => 'Scottsdale, AZ', + 1480312 => 'Scottsdale, AZ', + 1480314 => 'Scottsdale, AZ', + 1480315 => 'Scottsdale, AZ', + 1480323 => 'Scottsdale, AZ', + 1480325 => 'Mesa, AZ', + 1480345 => 'Tempe, AZ', + 1480346 => 'Scottsdale, AZ', + 1480348 => 'Scottsdale, AZ', + 1480350 => 'Tempe, AZ', + 1480354 => 'Mesa, AZ', + 1480357 => 'Mesa, AZ', + 1480358 => 'Mesa, AZ', + 1480367 => 'Scottsdale, AZ', + 1480368 => 'Scottsdale, AZ', + 1480380 => 'Mesa, AZ', + 1480391 => 'Scottsdale, AZ', + 1480396 => 'Mesa, AZ', + 1480421 => 'Scottsdale, AZ', + 1480423 => 'Scottsdale, AZ', + 1480425 => 'Scottsdale, AZ', + 1480429 => 'Scottsdale, AZ', + 1480443 => 'Scottsdale, AZ', + 1480446 => 'Tempe, AZ', + 1480451 => 'Scottsdale, AZ', + 1480460 => 'Phoenix, AZ', + 1480461 => 'Mesa, AZ', + 1480464 => 'Mesa, AZ', + 1480472 => 'Mesa, AZ', + 1480481 => 'Scottsdale, AZ', + 1480483 => 'Scottsdale, AZ', + 1480484 => 'Scottsdale, AZ', + 1480502 => 'Scottsdale, AZ', + 1480513 => 'Scottsdale, AZ', + 1480515 => 'Phoenix, AZ', + 1480517 => 'Tempe, AZ', + 1480543 => 'Gilbert, AZ', + 1480551 => 'Scottsdale, AZ', + 1480556 => 'Scottsdale, AZ', + 1480557 => 'Tempe, AZ', + 1480563 => 'Scottsdale, AZ', + 1480585 => 'Scottsdale, AZ', + 1480596 => 'Scottsdale, AZ', + 1480607 => 'Scottsdale, AZ', + 1480609 => 'Scottsdale, AZ', + 1480610 => 'Mesa, AZ', + 1480614 => 'Scottsdale, AZ', + 1480615 => 'Mesa, AZ', + 1480632 => 'Gilbert, AZ', + 1480641 => 'Mesa, AZ', + 1480644 => 'Mesa, AZ', + 1480649 => 'Mesa, AZ', + 1480654 => 'Mesa, AZ', + 1480655 => 'Mesa, AZ', + 1480657 => 'Scottsdale, AZ', + 1480661 => 'Scottsdale, AZ', + 1480668 => 'Mesa, AZ', + 1480671 => 'Apache Junction, AZ', + 1480726 => 'Chandler, AZ', + 1480730 => 'Tempe, AZ', + 1480732 => 'Chandler, AZ', + 1480733 => 'Mesa, AZ', + 1480736 => 'Tempe, AZ', + 1480759 => 'Phoenix, AZ', + 1480767 => 'Scottsdale, AZ', + 1480778 => 'Scottsdale, AZ', + 1480782 => 'Chandler, AZ', + 1480784 => 'Tempe, AZ', + 1480786 => 'Chandler, AZ', + 1480802 => 'Chandler, AZ', + 1480804 => 'Tempe, AZ', + 1480807 => 'Mesa, AZ', + 1480812 => 'Chandler, AZ', + 1480814 => 'Chandler, AZ', + 1480816 => 'Fountain Hills, AZ', + 1480821 => 'Chandler, AZ', + 1480827 => 'Mesa, AZ', + 1480829 => 'Tempe, AZ', + 1480830 => 'Mesa, AZ', + 1480832 => 'Mesa, AZ', + 1480833 => 'Mesa, AZ', + 1480834 => 'Mesa, AZ', + 1480835 => 'Mesa, AZ', + 1480836 => 'Fountain Hills, AZ', + 1480837 => 'Fountain Hills, AZ', + 1480838 => 'Tempe, AZ', + 1480839 => 'Tempe, AZ', + 1480844 => 'Mesa, AZ', + 1480854 => 'Mesa, AZ', + 1480855 => 'Chandler, AZ', + 1480857 => 'Chandler, AZ', + 1480860 => 'Scottsdale, AZ', + 1480874 => 'Scottsdale, AZ', + 1480883 => 'Chandler, AZ', + 1480890 => 'Mesa, AZ', + 1480894 => 'Tempe, AZ', + 1480898 => 'Mesa, AZ', + 1480899 => 'Chandler, AZ', + 1480905 => 'Scottsdale, AZ', + 1480917 => 'Chandler, AZ', + 1480921 => 'Tempe, AZ', + 1480922 => 'Scottsdale, AZ', + 1480924 => 'Mesa, AZ', + 1480941 => 'Scottsdale, AZ', + 1480945 => 'Scottsdale, AZ', + 1480946 => 'Scottsdale, AZ', + 1480947 => 'Scottsdale, AZ', + 1480948 => 'Scottsdale, AZ', + 1480949 => 'Scottsdale, AZ', + 1480951 => 'Scottsdale, AZ', + 1480961 => 'Chandler, AZ', + 1480962 => 'Mesa, AZ', + 1480963 => 'Chandler, AZ', + 1480964 => 'Mesa, AZ', + 1480965 => 'Tempe, AZ', + 1480966 => 'Tempe, AZ', + 1480967 => 'Tempe, AZ', + 1480968 => 'Tempe, AZ', + 1480969 => 'Mesa, AZ', + 1480970 => 'Scottsdale, AZ', + 1480981 => 'Mesa, AZ', + 1480982 => 'Apache Junction, AZ', + 1480983 => 'Apache Junction, AZ', + 1480984 => 'Mesa, AZ', + 1480985 => 'Mesa, AZ', + 1480986 => 'Mesa, AZ', + 1480987 => 'Queen Creek, AZ', + 1480990 => 'Scottsdale, AZ', + 1480991 => 'Scottsdale, AZ', + 1480994 => 'Scottsdale, AZ', + 1480998 => 'Scottsdale, AZ', + 1484 => 'Pennsylvania', + 1484223 => 'Allentown, PA', + 1484476 => 'Wynnewood, PA', + 1484664 => 'Allentown, PA', + 1484875 => 'Exton, PA', + 1484884 => 'Bethlehem, PA', + 1484895 => 'Bethlehem, PA', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1401.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1401.php deleted file mode 100644 index 19df7a8d4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1401.php +++ /dev/null @@ -1,100 +0,0 @@ - 'Rhode Island', - 1401222 => 'Providence, RI', - 1401232 => 'Smithfield, RI', - 1401233 => 'Smithfield, RI', - 1401235 => 'Woonsocket, RI', - 1401245 => 'Warren, RI', - 1401246 => 'Barrington, RI', - 1401253 => 'Bristol, RI', - 1401254 => 'Bristol, RI', - 1401272 => 'Providence, RI', - 1401273 => 'Providence, RI', - 1401274 => 'Providence, RI', - 1401275 => 'Cranston, RI', - 1401276 => 'Providence, RI', - 1401277 => 'Providence, RI', - 1401294 => 'North Kingstown, RI', - 1401295 => 'North Kingstown, RI', - 1401315 => 'Westerly, RI', - 1401322 => 'Westerly, RI', - 1401331 => 'Providence, RI', - 1401333 => 'Cumberland, RI', - 1401348 => 'Westerly, RI', - 1401351 => 'Providence, RI', - 1401353 => 'North Providence, RI', - 1401356 => 'Woonsocket, RI', - 1401364 => 'Charlestown, RI', - 1401396 => 'Bristol, RI', - 1401398 => 'East Greenwich, RI', - 1401421 => 'Providence, RI', - 1401423 => 'Jamestown, RI', - 1401431 => 'East Providence, RI', - 1401433 => 'Riverside, RI', - 1401434 => 'East Providence, RI', - 1401435 => 'East Providence, RI', - 1401438 => 'East Providence, RI', - 1401444 => 'Providence, RI', - 1401453 => 'Providence, RI', - 1401454 => 'Providence, RI', - 1401455 => 'Providence, RI', - 1401456 => 'Providence, RI', - 1401457 => 'Providence, RI', - 1401463 => 'Cranston, RI', - 1401464 => 'Cranston, RI', - 1401466 => 'Block Island, RI', - 1401519 => 'Providence, RI', - 1401521 => 'Providence, RI', - 1401533 => 'Providence, RI', - 1401596 => 'Westerly, RI', - 1401619 => 'Newport, RI', - 1401621 => 'Providence, RI', - 1401624 => 'Tiverton, RI', - 1401625 => 'Tiverton, RI', - 1401635 => 'Little Compton, RI', - 1401658 => 'Cumberland, RI', - 1401667 => 'North Kingstown, RI', - 1401683 => 'Portsmouth, RI', - 1401722 => 'Pawtucket, RI', - 1401723 => 'Pawtucket, RI', - 1401724 => 'Pawtucket, RI', - 1401725 => 'Pawtucket, RI', - 1401726 => 'Pawtucket, RI', - 1401728 => 'Pawtucket, RI', - 1401729 => 'Pawtucket, RI', - 1401732 => 'Warwick, RI', - 1401736 => 'Warwick, RI', - 1401737 => 'Warwick, RI', - 1401738 => 'Warwick, RI', - 1401739 => 'Warwick, RI', - 1401751 => 'Providence, RI', - 1401762 => 'Woonsocket, RI', - 1401765 => 'Woonsocket, RI', - 1401766 => 'Woonsocket, RI', - 1401767 => 'Woonsocket, RI', - 1401769 => 'Woonsocket, RI', - 1401831 => 'Providence, RI', - 1401841 => 'Newport, RI', - 1401845 => 'Newport, RI', - 1401846 => 'Newport, RI', - 1401847 => 'Newport, RI', - 1401848 => 'Newport, RI', - 1401849 => 'Newport, RI', - 1401861 => 'Providence, RI', - 1401863 => 'Providence, RI', - 1401884 => 'East Greenwich, RI', - 1401885 => 'East Greenwich, RI', - 1401886 => 'East Greenwich, RI', - 1401921 => 'Warwick, RI', - 1401942 => 'Cranston, RI', - 1401943 => 'Cranston, RI', - 1401944 => 'Cranston, RI', - 1401946 => 'Cranston, RI', - 1401949 => 'Greenville, RI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1402.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1402.php deleted file mode 100644 index 5c521e9fc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1402.php +++ /dev/null @@ -1,212 +0,0 @@ - 'Nebraska', - 1402202 => 'Lincoln, NE', - 1402223 => 'Beatrice, NE', - 1402228 => 'Beatrice, NE', - 1402234 => 'Louisville, NE', - 1402238 => 'Bennington, NE', - 1402245 => 'Falls City, NE', - 1402253 => 'Springfield, NE', - 1402254 => 'Hartington, NE', - 1402256 => 'Laurel, NE', - 1402261 => 'Lincoln, NE', - 1402267 => 'Weeping Water, NE', - 1402269 => 'Syracuse, NE', - 1402274 => 'Auburn, NE', - 1402280 => 'Omaha, NE', - 1402289 => 'Elkhorn, NE', - 1402291 => 'Bellevue, NE', - 1402292 => 'Bellevue, NE', - 1402293 => 'Bellevue, NE', - 1402294 => 'Offutt Air Force Base, NE', - 1402296 => 'Plattsmouth, NE', - 1402298 => 'Plattsmouth, NE', - 1402323 => 'Lincoln, NE', - 1402325 => 'Lincoln, NE', - 1402327 => 'Lincoln, NE', - 1402328 => 'Lincoln, NE', - 1402329 => 'Pierce, NE', - 1402330 => 'Omaha, NE', - 1402331 => 'Omaha, NE', - 1402332 => 'Gretna, NE', - 1402333 => 'Omaha, NE', - 1402334 => 'Omaha, NE', - 1402335 => 'Tecumseh, NE', - 1402336 => 'O\'Neill, NE', - 1402337 => 'Randolph, NE', - 1402339 => 'Omaha, NE', - 1402341 => 'Omaha, NE', - 1402342 => 'Omaha, NE', - 1402343 => 'Omaha, NE', - 1402344 => 'Omaha, NE', - 1402345 => 'Omaha, NE', - 1402346 => 'Omaha, NE', - 1402352 => 'Schuyler, NE', - 1402354 => 'Omaha, NE', - 1402358 => 'Creighton, NE', - 1402359 => 'Valley, NE', - 1402362 => 'York, NE', - 1402367 => 'David City, NE', - 1402370 => 'Norfolk, NE', - 1402371 => 'Norfolk, NE', - 1402372 => 'West Point, NE', - 1402373 => 'Bloomfield, NE', - 1402374 => 'Tekamah, NE', - 1402375 => 'Wayne, NE', - 1402376 => 'Valentine, NE', - 1402379 => 'Norfolk, NE', - 1402385 => 'Pender, NE', - 1402387 => 'Ainsworth, NE', - 1402390 => 'Omaha, NE', - 1402391 => 'Omaha, NE', - 1402392 => 'Omaha, NE', - 1402393 => 'Omaha, NE', - 1402395 => 'Albion, NE', - 1402397 => 'Omaha, NE', - 1402398 => 'Omaha, NE', - 1402399 => 'Omaha, NE', - 1402403 => 'Omaha, NE', - 1402408 => 'Omaha, NE', - 1402420 => 'Lincoln, NE', - 1402421 => 'Lincoln, NE', - 1402423 => 'Lincoln, NE', - 1402426 => 'Blair, NE', - 1402430 => 'Lincoln, NE', - 1402431 => 'Omaha, NE', - 1402432 => 'Lincoln, NE', - 1402434 => 'Lincoln, NE', - 1402435 => 'Lincoln, NE', - 1402436 => 'Lincoln, NE', - 1402437 => 'Lincoln, NE', - 1402438 => 'Lincoln, NE', - 1402439 => 'Stanton, NE', - 1402441 => 'Lincoln, NE', - 1402443 => 'Wahoo, NE', - 1402444 => 'Omaha, NE', - 1402445 => 'Omaha, NE', - 1402449 => 'Omaha, NE', - 1402451 => 'Omaha, NE', - 1402453 => 'Omaha, NE', - 1402454 => 'Madison, NE', - 1402455 => 'Omaha, NE', - 1402457 => 'Omaha, NE', - 1402461 => 'Hastings, NE', - 1402462 => 'Hastings, NE', - 1402463 => 'Hastings, NE', - 1402464 => 'Lincoln, NE', - 1402465 => 'Lincoln, NE', - 1402466 => 'Lincoln, NE', - 1402467 => 'Lincoln, NE', - 1402471 => 'Lincoln, NE', - 1402472 => 'Lincoln, NE', - 1402474 => 'Lincoln, NE', - 1402475 => 'Lincoln, NE', - 1402476 => 'Lincoln, NE', - 1402477 => 'Lincoln, NE', - 1402481 => 'Lincoln, NE', - 1402483 => 'Lincoln, NE', - 1402484 => 'Lincoln, NE', - 1402486 => 'Lincoln, NE', - 1402488 => 'Lincoln, NE', - 1402489 => 'Lincoln, NE', - 1402492 => 'Omaha, NE', - 1402493 => 'Omaha, NE', - 1402494 => 'South Sioux City, NE', - 1402496 => 'Omaha, NE', - 1402498 => 'Omaha, NE', - 1402499 => 'Lincoln, NE', - 1402502 => 'Omaha, NE', - 1402504 => 'Omaha, NE', - 1402505 => 'Omaha, NE', - 1402529 => 'Wisner, NE', - 1402533 => 'Blair, NE', - 1402551 => 'Omaha, NE', - 1402552 => 'Omaha, NE', - 1402553 => 'Omaha, NE', - 1402554 => 'Omaha, NE', - 1402556 => 'Omaha, NE', - 1402557 => 'Omaha, NE', - 1402558 => 'Omaha, NE', - 1402559 => 'Omaha, NE', - 1402560 => 'Lincoln, NE', - 1402562 => 'Columbus, NE', - 1402563 => 'Columbus, NE', - 1402564 => 'Columbus, NE', - 1402571 => 'Omaha, NE', - 1402572 => 'Omaha, NE', - 1402573 => 'Omaha, NE', - 1402582 => 'Plainview, NE', - 1402595 => 'Omaha, NE', - 1402596 => 'Omaha, NE', - 1402614 => 'Omaha, NE', - 1402637 => 'Omaha, NE', - 1402643 => 'Seward, NE', - 1402644 => 'Norfolk, NE', - 1402645 => 'Wymore, NE', - 1402652 => 'North Bend, NE', - 1402677 => 'Omaha, NE', - 1402684 => 'Bassett, NE', - 1402685 => 'Oakland, NE', - 1402691 => 'Omaha, NE', - 1402694 => 'Aurora, NE', - 1402697 => 'Omaha, NE', - 1402715 => 'Omaha, NE', - 1402717 => 'Omaha, NE', - 1402721 => 'Fremont, NE', - 1402723 => 'Henderson, NE', - 1402727 => 'Fremont, NE', - 1402729 => 'Fairbury, NE', - 1402730 => 'Lincoln, NE', - 1402731 => 'Omaha, NE', - 1402733 => 'Omaha, NE', - 1402734 => 'Omaha, NE', - 1402742 => 'Lincoln, NE', - 1402746 => 'Red Cloud, NE', - 1402747 => 'Osceola, NE', - 1402753 => 'Fremont, NE', - 1402758 => 'Omaha, NE', - 1402759 => 'Geneva, NE', - 1402761 => 'Milford, NE', - 1402763 => 'Omaha, NE', - 1402764 => 'Stromsburg, NE', - 1402768 => 'Hebron, NE', - 1402770 => 'Lincoln, NE', - 1402773 => 'Sutton, NE', - 1402778 => 'Omaha, NE', - 1402786 => 'Waverly, NE', - 1402817 => 'Lincoln, NE', - 1402821 => 'Wilber, NE', - 1402826 => 'Crete, NE', - 1402827 => 'Omaha, NE', - 1402843 => 'Elgin, NE', - 1402844 => 'Norfolk, NE', - 1402852 => 'Pawnee City, NE', - 1402857 => 'Niobrara, NE', - 1402861 => 'Omaha, NE', - 1402873 => 'Nebraska City, NE', - 1402879 => 'Superior, NE', - 1402884 => 'Omaha, NE', - 1402887 => 'Neligh, NE', - 1402891 => 'Omaha, NE', - 1402894 => 'Omaha, NE', - 1402895 => 'Omaha, NE', - 1402896 => 'Omaha, NE', - 1402898 => 'Omaha, NE', - 1402923 => 'Humphrey, NE', - 1402925 => 'Atkinson, NE', - 1402926 => 'Omaha, NE', - 1402932 => 'Omaha, NE', - 1402933 => 'Omaha, NE', - 1402934 => 'Omaha, NE', - 1402944 => 'Ashland, NE', - 1402955 => 'Omaha, NE', - 1402964 => 'Omaha, NE', - 1402965 => 'Omaha, NE', - 1402991 => 'Omaha, NE', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1403.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1403.php deleted file mode 100644 index 98d442df9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1403.php +++ /dev/null @@ -1,236 +0,0 @@ - 'Alberta', - 1403201 => 'Calgary, AB', - 1403202 => 'Calgary, AB', - 1403203 => 'Calgary, AB', - 1403204 => 'Calgary, AB', - 1403207 => 'Calgary, AB', - 1403208 => 'Calgary, AB', - 1403209 => 'Calgary, AB', - 1403210 => 'Calgary, AB', - 1403212 => 'Calgary, AB', - 1403214 => 'Calgary, AB', - 1403215 => 'Calgary, AB', - 1403216 => 'Calgary, AB', - 1403217 => 'Calgary, AB', - 1403219 => 'Calgary, AB', - 1403220 => 'Calgary, AB', - 1403221 => 'Calgary, AB', - 1403223 => 'Taber, AB', - 1403225 => 'Calgary, AB', - 1403226 => 'Calgary, AB', - 1403227 => 'Innisfail, AB', - 1403228 => 'Calgary, AB', - 1403229 => 'Calgary, AB', - 1403230 => 'Calgary, AB', - 1403232 => 'Calgary, AB', - 1403233 => 'Calgary, AB', - 1403234 => 'Calgary, AB', - 1403235 => 'Calgary, AB', - 1403236 => 'Calgary, AB', - 1403237 => 'Calgary, AB', - 1403238 => 'Calgary, AB', - 1403239 => 'Calgary, AB', - 1403240 => 'Calgary, AB', - 1403241 => 'Calgary, AB', - 1403242 => 'Calgary, AB', - 1403243 => 'Calgary, AB', - 1403244 => 'Calgary, AB', - 1403245 => 'Calgary, AB', - 1403246 => 'Calgary, AB', - 1403247 => 'Calgary, AB', - 1403248 => 'Calgary, AB', - 1403249 => 'Calgary, AB', - 1403250 => 'Calgary, AB', - 1403251 => 'Calgary, AB', - 1403252 => 'Calgary, AB', - 1403253 => 'Calgary, AB', - 1403254 => 'Calgary, AB', - 1403255 => 'Calgary, AB', - 1403256 => 'Calgary, AB', - 1403257 => 'Calgary, AB', - 1403258 => 'Calgary, AB', - 1403259 => 'Calgary, AB', - 1403260 => 'Calgary, AB', - 1403261 => 'Calgary, AB', - 1403262 => 'Calgary, AB', - 1403263 => 'Calgary, AB', - 1403264 => 'Calgary, AB', - 1403265 => 'Calgary, AB', - 1403266 => 'Calgary, AB', - 1403269 => 'Calgary, AB', - 1403270 => 'Calgary, AB', - 1403271 => 'Calgary, AB', - 1403272 => 'Calgary, AB', - 1403273 => 'Calgary, AB', - 1403274 => 'Calgary, AB', - 1403275 => 'Calgary, AB', - 1403276 => 'Calgary, AB', - 1403277 => 'Calgary, AB', - 1403278 => 'Calgary, AB', - 1403279 => 'Calgary, AB', - 1403280 => 'Calgary, AB', - 1403281 => 'Calgary, AB', - 1403282 => 'Calgary, AB', - 1403283 => 'Calgary, AB', - 1403284 => 'Calgary, AB', - 1403285 => 'Calgary, AB', - 1403286 => 'Calgary, AB', - 1403287 => 'Calgary, AB', - 1403288 => 'Calgary, AB', - 1403289 => 'Calgary, AB', - 1403290 => 'Calgary, AB', - 1403291 => 'Calgary, AB', - 1403292 => 'Calgary, AB', - 1403293 => 'Calgary, AB', - 1403294 => 'Calgary, AB', - 1403295 => 'Calgary, AB', - 1403296 => 'Calgary, AB', - 1403297 => 'Calgary, AB', - 1403298 => 'Calgary, AB', - 1403299 => 'Calgary, AB', - 1403309 => 'Red Deer, AB', - 1403313 => 'Calgary, AB', - 1403314 => 'Red Deer, AB', - 1403317 => 'Lethbridge, AB', - 1403320 => 'Lethbridge, AB', - 1403327 => 'Lethbridge, AB', - 1403328 => 'Lethbridge, AB', - 1403329 => 'Lethbridge, AB', - 1403331 => 'Lethbridge, AB', - 1403335 => 'Didsbury, AB', - 1403337 => 'Carstairs, AB', - 1403340 => 'Red Deer, AB', - 1403341 => 'Red Deer, AB', - 1403342 => 'Red Deer, AB', - 1403343 => 'Red Deer, AB', - 1403345 => 'Coaldale, AB', - 1403346 => 'Red Deer, AB', - 1403347 => 'Red Deer, AB', - 1403348 => 'Red Deer, AB', - 1403350 => 'Red Deer, AB', - 1403352 => 'Red Deer, AB', - 1403358 => 'Red Deer, AB', - 1403362 => 'Brooks, AB', - 1403380 => 'Lethbridge, AB', - 1403381 => 'Lethbridge, AB', - 1403382 => 'Lethbridge, AB', - 1403394 => 'Lethbridge, AB', - 1403398 => 'Calgary, AB', - 1403399 => 'Calgary, AB', - 1403443 => 'Three Hills, AB', - 1403444 => 'Calgary, AB', - 1403451 => 'Calgary, AB', - 1403452 => 'Calgary, AB', - 1403453 => 'Calgary, AB', - 1403455 => 'Calgary, AB', - 1403457 => 'Calgary, AB', - 1403485 => 'Vulcan, AB', - 1403500 => 'Calgary, AB', - 1403501 => 'Brooks, AB', - 1403502 => 'Medicine Hat, AB', - 1403504 => 'Medicine Hat, AB', - 1403508 => 'Calgary, AB', - 1403525 => 'Medicine Hat, AB', - 1403526 => 'Medicine Hat, AB', - 1403527 => 'Medicine Hat, AB', - 1403528 => 'Medicine Hat, AB', - 1403529 => 'Medicine Hat, AB', - 1403531 => 'Calgary, AB', - 1403532 => 'Calgary, AB', - 1403538 => 'Calgary, AB', - 1403543 => 'Calgary, AB', - 1403545 => 'Bow Island, AB', - 1403546 => 'Linden, AB', - 1403547 => 'Calgary, AB', - 1403548 => 'Redcliff, AB', - 1403553 => 'Fort MacLeod, AB', - 1403556 => 'Olds, AB', - 1403560 => 'Calgary, AB', - 1403562 => 'Blairmore, AB', - 1403567 => 'Calgary, AB', - 1403568 => 'Calgary, AB', - 1403569 => 'Calgary, AB', - 1403571 => 'Calgary, AB', - 1403578 => 'Coronation, AB', - 1403580 => 'Medicine Hat, AB', - 1403590 => 'Calgary, AB', - 1403601 => 'High River, AB', - 1403609 => 'Canmore, AB', - 1403616 => 'Calgary, AB', - 1403625 => 'Claresholm, AB', - 1403627 => 'Pincher Creek, AB', - 1403630 => 'Calgary, AB', - 1403638 => 'Sundre, AB', - 1403640 => 'Calgary, AB', - 1403646 => 'Nanton, AB', - 1403652 => 'High River, AB', - 1403653 => 'Cardston, AB', - 1403664 => 'Oyen, AB', - 1403667 => 'Calgary, AB', - 1403668 => 'Calgary, AB', - 1403678 => 'Canmore, AB', - 1403680 => 'Calgary, AB', - 1403685 => 'Calgary, AB', - 1403686 => 'Calgary, AB', - 1403703 => 'Calgary, AB', - 1403705 => 'Calgary, AB', - 1403717 => 'Calgary, AB', - 1403720 => 'Calgary, AB', - 1403723 => 'Calgary, AB', - 1403730 => 'Calgary, AB', - 1403732 => 'Picture Butte, AB', - 1403735 => 'Calgary, AB', - 1403742 => 'Stettler, AB', - 1403746 => 'Eckville, AB', - 1403752 => 'Raymond, AB', - 1403760 => 'Banff, AB', - 1403762 => 'Banff, AB', - 1403769 => 'Calgary, AB', - 1403770 => 'Calgary, AB', - 1403777 => 'Calgary, AB', - 1403782 => 'Lacombe, AB', - 1403783 => 'Ponoka, AB', - 1403793 => 'Brooks, AB', - 1403800 => 'Calgary, AB', - 1403809 => 'Calgary, AB', - 1403816 => 'Calgary, AB', - 1403823 => 'Drumheller, AB', - 1403830 => 'Calgary, AB', - 1403843 => 'Rimbey, AB', - 1403844 => 'Rocky Mountain House, AB', - 1403845 => 'Rocky Mountain House, AB', - 1403851 => 'Cochrane, AB', - 1403854 => 'Hanna, AB', - 1403870 => 'Calgary, AB', - 1403873 => 'Calgary, AB', - 1403874 => 'Calgary, AB', - 1403885 => 'Blackfalds, AB', - 1403886 => 'Penhold, AB', - 1403887 => 'Sylvan Lake, AB', - 1403901 => 'Strathmore, AB', - 1403912 => 'Airdrie, AB', - 1403932 => 'Cochrane, AB', - 1403934 => 'Strathmore, AB', - 1403936 => 'Langdon, AB', - 1403938 => 'Okotoks, AB', - 1403942 => 'Lethbridge, AB', - 1403943 => 'Calgary, AB', - 1403944 => 'Calgary, AB', - 1403945 => 'Airdrie, AB', - 1403946 => 'Crossfield, AB', - 1403948 => 'Airdrie, AB', - 1403949 => 'Bragg Creek, AB', - 1403955 => 'Calgary, AB', - 1403974 => 'Calgary, AB', - 1403980 => 'Airdrie, AB', - 1403984 => 'Calgary, AB', - 1403986 => 'Red Deer, AB', - 1403995 => 'Okotoks, AB', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1404.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1404.php deleted file mode 100644 index 3a3c60dfc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1404.php +++ /dev/null @@ -1,193 +0,0 @@ - 'Georgia', - 1404209 => 'Atlanta, GA', - 1404212 => 'Decatur, GA', - 1404214 => 'Atlanta, GA', - 1404215 => 'Atlanta, GA', - 1404220 => 'Atlanta, GA', - 1404221 => 'Atlanta, GA', - 1404222 => 'Atlanta, GA', - 1404223 => 'Atlanta, GA', - 1404228 => 'Atlanta, GA', - 1404231 => 'Atlanta, GA', - 1404233 => 'Atlanta, GA', - 1404237 => 'Atlanta, GA', - 1404239 => 'Atlanta, GA', - 1404240 => 'Atlanta, GA', - 1404241 => 'Decatur, GA', - 1404243 => 'Decatur, GA', - 1404244 => 'Decatur, GA', - 1404248 => 'Atlanta, GA', - 1404249 => 'Atlanta, GA', - 1404250 => 'Atlanta, GA', - 1404252 => 'Atlanta, GA', - 1404254 => 'Atlanta, GA', - 1404255 => 'Atlanta, GA', - 1404256 => 'Atlanta, GA', - 1404257 => 'Atlanta, GA', - 1404261 => 'Atlanta, GA', - 1404262 => 'Atlanta, GA', - 1404264 => 'Atlanta, GA', - 1404265 => 'Atlanta, GA', - 1404266 => 'Atlanta, GA', - 1404284 => 'Decatur, GA', - 1404286 => 'Decatur, GA', - 1404288 => 'Decatur, GA', - 1404289 => 'Decatur, GA', - 1404303 => 'Atlanta, GA', - 1404305 => 'Atlanta, GA', - 1404315 => 'Atlanta, GA', - 1404320 => 'Atlanta, GA', - 1404321 => 'Decatur, GA', - 1404322 => 'Atlanta, GA', - 1404325 => 'Atlanta, GA', - 1404329 => 'Atlanta, GA', - 1404343 => 'Atlanta, GA', - 1404344 => 'Atlanta, GA', - 1404346 => 'Atlanta, GA', - 1404347 => 'Atlanta, GA', - 1404349 => 'Atlanta, GA', - 1404350 => 'Atlanta, GA', - 1404351 => 'Atlanta, GA', - 1404352 => 'Atlanta, GA', - 1404355 => 'Atlanta, GA', - 1404364 => 'Atlanta, GA', - 1404365 => 'Atlanta, GA', - 1404366 => 'Forest Park, GA', - 1404367 => 'Atlanta, GA', - 1404370 => 'Decatur, GA', - 1404371 => 'Decatur, GA', - 1404373 => 'Decatur, GA', - 1404377 => 'Decatur, GA', - 1404378 => 'Decatur, GA', - 1404389 => 'Atlanta, GA', - 1404419 => 'Atlanta, GA', - 1404442 => 'Atlanta, GA', - 1404459 => 'Atlanta, GA', - 1404467 => 'Atlanta, GA', - 1404472 => 'Atlanta, GA', - 1404477 => 'Atlanta, GA', - 1404501 => 'Decatur, GA', - 1404504 => 'Atlanta, GA', - 1404505 => 'Atlanta, GA', - 1404521 => 'Atlanta, GA', - 1404522 => 'Atlanta, GA', - 1404523 => 'Atlanta, GA', - 1404524 => 'Atlanta, GA', - 1404525 => 'Atlanta, GA', - 1404527 => 'Atlanta, GA', - 1404530 => 'Atlanta, GA', - 1404531 => 'Atlanta, GA', - 1404534 => 'Decatur, GA', - 1404541 => 'Atlanta, GA', - 1404549 => 'Atlanta, GA', - 1404559 => 'Atlanta, GA', - 1404564 => 'Atlanta, GA', - 1404572 => 'Atlanta, GA', - 1404575 => 'Atlanta, GA', - 1404577 => 'Atlanta, GA', - 1404584 => 'Atlanta, GA', - 1404586 => 'Atlanta, GA', - 1404588 => 'Atlanta, GA', - 1404589 => 'Atlanta, GA', - 1404591 => 'Atlanta, GA', - 1404592 => 'Atlanta, GA', - 1404603 => 'Atlanta, GA', - 1404605 => 'Atlanta, GA', - 1404607 => 'Atlanta, GA', - 1404608 => 'Forest Park, GA', - 1404614 => 'Atlanta, GA', - 1404616 => 'Atlanta, GA', - 1404622 => 'Atlanta, GA', - 1404624 => 'Atlanta, GA', - 1404627 => 'Atlanta, GA', - 1404629 => 'Atlanta, GA', - 1404633 => 'Atlanta, GA', - 1404634 => 'Atlanta, GA', - 1404635 => 'Atlanta, GA', - 1404636 => 'Atlanta, GA', - 1404639 => 'Atlanta, GA', - 1404656 => 'Atlanta, GA', - 1404658 => 'Atlanta, GA', - 1404659 => 'Atlanta, GA', - 1404681 => 'Atlanta, GA', - 1404684 => 'Atlanta, GA', - 1404685 => 'Atlanta, GA', - 1404686 => 'Atlanta, GA', - 1404687 => 'Decatur, GA', - 1404688 => 'Atlanta, GA', - 1404691 => 'Atlanta, GA', - 1404696 => 'Atlanta, GA', - 1404699 => 'Atlanta, GA', - 1404705 => 'Atlanta, GA', - 1404712 => 'Atlanta, GA', - 1404724 => 'Atlanta, GA', - 1404727 => 'Atlanta, GA', - 1404728 => 'Atlanta, GA', - 1404730 => 'Atlanta, GA', - 1404733 => 'Atlanta, GA', - 1404745 => 'Atlanta, GA', - 1404748 => 'Atlanta, GA', - 1404752 => 'Atlanta, GA', - 1404753 => 'Atlanta, GA', - 1404755 => 'Atlanta, GA', - 1404756 => 'Atlanta, GA', - 1404758 => 'Atlanta, GA', - 1404760 => 'Atlanta, GA', - 1404761 => 'Atlanta, GA', - 1404762 => 'Atlanta, GA', - 1404763 => 'Atlanta, GA', - 1404766 => 'Atlanta, GA', - 1404767 => 'Atlanta, GA', - 1404768 => 'Atlanta, GA', - 1404778 => 'Atlanta, GA', - 1404785 => 'Atlanta, GA', - 1404792 => 'Atlanta, GA', - 1404794 => 'Atlanta, GA', - 1404799 => 'Atlanta, GA', - 1404812 => 'Atlanta, GA', - 1404814 => 'Atlanta, GA', - 1404815 => 'Atlanta, GA', - 1404816 => 'Atlanta, GA', - 1404817 => 'Atlanta, GA', - 1404835 => 'Atlanta, GA', - 1404841 => 'Atlanta, GA', - 1404842 => 'Atlanta, GA', - 1404843 => 'Atlanta, GA', - 1404845 => 'Atlanta, GA', - 1404846 => 'Atlanta, GA', - 1404847 => 'Atlanta, GA', - 1404848 => 'Atlanta, GA', - 1404851 => 'Atlanta, GA', - 1404853 => 'Atlanta, GA', - 1404869 => 'Atlanta, GA', - 1404870 => 'Atlanta, GA', - 1404872 => 'Atlanta, GA', - 1404873 => 'Atlanta, GA', - 1404874 => 'Atlanta, GA', - 1404875 => 'Atlanta, GA', - 1404876 => 'Atlanta, GA', - 1404880 => 'Atlanta, GA', - 1404881 => 'Atlanta, GA', - 1404885 => 'Atlanta, GA', - 1404888 => 'Atlanta, GA', - 1404892 => 'Atlanta, GA', - 1404894 => 'Atlanta, GA', - 1404897 => 'Atlanta, GA', - 1404941 => 'Atlanta, GA', - 1404942 => 'Atlanta, GA', - 1404943 => 'Atlanta, GA', - 1404949 => 'Atlanta, GA', - 1404954 => 'Atlanta, GA', - 1404962 => 'Atlanta, GA', - 1404963 => 'Atlanta, GA', - 1404968 => 'Atlanta, GA', - 1404982 => 'Atlanta, GA', - 1404995 => 'Atlanta, GA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1405.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1405.php deleted file mode 100644 index 766dafdeb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1405.php +++ /dev/null @@ -1,189 +0,0 @@ - 'Oklahoma', - 1405214 => 'Shawnee, OK', - 1405216 => 'Edmond, OK', - 1405217 => 'Norman, OK', - 1405222 => 'Chickasha, OK', - 1405224 => 'Chickasha, OK', - 1405228 => 'Oklahoma City, OK', - 1405230 => 'Oklahoma City, OK', - 1405231 => 'Oklahoma City, OK', - 1405232 => 'Oklahoma City, OK', - 1405235 => 'Oklahoma City, OK', - 1405236 => 'Oklahoma City, OK', - 1405238 => 'Pauls Valley, OK', - 1405239 => 'Oklahoma City, OK', - 1405242 => 'Oklahoma City, OK', - 1405247 => 'Anadarko, OK', - 1405254 => 'Oklahoma City, OK', - 1405256 => 'Mustang, OK', - 1405257 => 'Wewoka, OK', - 1405258 => 'Chandler, OK', - 1405260 => 'Guthrie, OK', - 1405262 => 'El Reno, OK', - 1405263 => 'Okarche, OK', - 1405265 => 'Yukon, OK', - 1405270 => 'Oklahoma City, OK', - 1405271 => 'Oklahoma City, OK', - 1405272 => 'Oklahoma City, OK', - 1405273 => 'Shawnee, OK', - 1405275 => 'Shawnee, OK', - 1405279 => 'Meeker, OK', - 1405282 => 'Guthrie, OK', - 1405285 => 'Edmond, OK', - 1405286 => 'Oklahoma City, OK', - 1405292 => 'Norman, OK', - 1405293 => 'Guthrie, OK', - 1405297 => 'Oklahoma City, OK', - 1405302 => 'Oklahoma City, OK', - 1405307 => 'Norman, OK', - 1405310 => 'Norman, OK', - 1405321 => 'Norman, OK', - 1405324 => 'Yukon, OK', - 1405325 => 'Norman, OK', - 1405329 => 'Norman, OK', - 1405330 => 'Edmond, OK', - 1405340 => 'Edmond, OK', - 1405341 => 'Edmond, OK', - 1405348 => 'Edmond, OK', - 1405350 => 'Yukon, OK', - 1405354 => 'Yukon, OK', - 1405359 => 'Edmond, OK', - 1405360 => 'Norman, OK', - 1405364 => 'Norman, OK', - 1405366 => 'Norman, OK', - 1405372 => 'Stillwater, OK', - 1405373 => 'Piedmont, OK', - 1405375 => 'Kingfisher, OK', - 1405376 => 'Mustang, OK', - 1405377 => 'Stillwater, OK', - 1405378 => 'Oklahoma City, OK', - 1405379 => 'Holdenville, OK', - 1405381 => 'Tuttle, OK', - 1405382 => 'Seminole, OK', - 1405387 => 'Newcastle, OK', - 1405390 => 'Choctaw, OK', - 1405391 => 'Harrah, OK', - 1405392 => 'Newcastle, OK', - 1405418 => 'Oklahoma City, OK', - 1405422 => 'El Reno, OK', - 1405424 => 'Oklahoma City, OK', - 1405427 => 'Oklahoma City, OK', - 1405440 => 'Oklahoma City, OK', - 1405447 => 'Norman, OK', - 1405454 => 'Harrah, OK', - 1405456 => 'Oklahoma City, OK', - 1405463 => 'Oklahoma City, OK', - 1405470 => 'Oklahoma City, OK', - 1405471 => 'Edmond, OK', - 1405478 => 'Oklahoma City, OK', - 1405485 => 'Blanchard, OK', - 1405488 => 'Oklahoma City, OK', - 1405491 => 'Oklahoma City, OK', - 1405495 => 'Oklahoma City, OK', - 1405509 => 'Edmond, OK', - 1405513 => 'Edmond, OK', - 1405521 => 'Oklahoma City, OK', - 1405524 => 'Oklahoma City, OK', - 1405525 => 'Oklahoma City, OK', - 1405527 => 'Purcell, OK', - 1405528 => 'Oklahoma City, OK', - 1405533 => 'Stillwater, OK', - 1405542 => 'Hinton, OK', - 1405547 => 'Perkins, OK', - 1405552 => 'Oklahoma City, OK', - 1405562 => 'Edmond, OK', - 1405567 => 'Prague, OK', - 1405573 => 'Norman, OK', - 1405577 => 'Yukon, OK', - 1405579 => 'Norman, OK', - 1405598 => 'Tecumseh, OK', - 1405600 => 'Oklahoma City, OK', - 1405601 => 'Oklahoma City, OK', - 1405602 => 'Oklahoma City, OK', - 1405603 => 'Oklahoma City, OK', - 1405604 => 'Oklahoma City, OK', - 1405605 => 'Oklahoma City, OK', - 1405606 => 'Oklahoma City, OK', - 1405607 => 'Oklahoma City, OK', - 1405608 => 'Oklahoma City, OK', - 1405609 => 'Oklahoma City, OK', - 1405616 => 'Oklahoma City, OK', - 1405619 => 'Oklahoma City, OK', - 1405624 => 'Stillwater, OK', - 1405631 => 'Oklahoma City, OK', - 1405632 => 'Oklahoma City, OK', - 1405634 => 'Oklahoma City, OK', - 1405635 => 'Oklahoma City, OK', - 1405636 => 'Oklahoma City, OK', - 1405665 => 'Wynnewood, OK', - 1405670 => 'Oklahoma City, OK', - 1405672 => 'Oklahoma City, OK', - 1405677 => 'Oklahoma City, OK', - 1405680 => 'Oklahoma City, OK', - 1405681 => 'Oklahoma City, OK', - 1405682 => 'Oklahoma City, OK', - 1405685 => 'Oklahoma City, OK', - 1405686 => 'Oklahoma City, OK', - 1405691 => 'Oklahoma City, OK', - 1405692 => 'Oklahoma City, OK', - 1405701 => 'Norman, OK', - 1405702 => 'Oklahoma City, OK', - 1405707 => 'Stillwater, OK', - 1405713 => 'Oklahoma City, OK', - 1405715 => 'Edmond, OK', - 1405720 => 'Oklahoma City, OK', - 1405721 => 'Oklahoma City, OK', - 1405722 => 'Oklahoma City, OK', - 1405728 => 'Oklahoma City, OK', - 1405733 => 'Oklahoma City, OK', - 1405739 => 'Midwest City, OK', - 1405743 => 'Stillwater, OK', - 1405744 => 'Stillwater, OK', - 1405745 => 'Oklahoma City, OK', - 1405748 => 'Oklahoma City, OK', - 1405749 => 'Oklahoma City, OK', - 1405751 => 'Oklahoma City, OK', - 1405752 => 'Oklahoma City, OK', - 1405753 => 'Oklahoma City, OK', - 1405755 => 'Oklahoma City, OK', - 1405756 => 'Lindsay, OK', - 1405767 => 'Oklahoma City, OK', - 1405771 => 'Spencer, OK', - 1405773 => 'Oklahoma City, OK', - 1405793 => 'Moore, OK', - 1405794 => 'Moore, OK', - 1405799 => 'Moore, OK', - 1405810 => 'Oklahoma City, OK', - 1405840 => 'Oklahoma City, OK', - 1405842 => 'Oklahoma City, OK', - 1405843 => 'Oklahoma City, OK', - 1405844 => 'Edmond, OK', - 1405848 => 'Oklahoma City, OK', - 1405853 => 'Hennessey, OK', - 1405858 => 'Oklahoma City, OK', - 1405872 => 'Noble, OK', - 1405878 => 'Shawnee, OK', - 1405879 => 'Oklahoma City, OK', - 1405884 => 'Geary, OK', - 1405912 => 'Moore, OK', - 1405917 => 'Oklahoma City, OK', - 1405928 => 'Norman, OK', - 1405936 => 'Oklahoma City, OK', - 1405942 => 'Oklahoma City, OK', - 1405943 => 'Oklahoma City, OK', - 1405945 => 'Oklahoma City, OK', - 1405946 => 'Oklahoma City, OK', - 1405947 => 'Oklahoma City, OK', - 1405948 => 'Oklahoma City, OK', - 1405949 => 'Oklahoma City, OK', - 1405951 => 'Oklahoma City, OK', - 1405964 => 'McLoud, OK', - 1405969 => 'Crescent, OK', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1406.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1406.php deleted file mode 100644 index 0f668bce1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1406.php +++ /dev/null @@ -1,188 +0,0 @@ - 'Montana', - 1406212 => 'Kalispell, MT', - 1406222 => 'Livingston, MT', - 1406225 => 'Boulder, MT', - 1406227 => 'East Helena, MT', - 1406228 => 'Glasgow, MT', - 1406232 => 'Miles City, MT', - 1406233 => 'Miles City, MT', - 1406234 => 'Miles City, MT', - 1406237 => 'Billings, MT', - 1406238 => 'Billings, MT', - 1406239 => 'Missoula, MT', - 1406240 => 'Missoula, MT', - 1406243 => 'Missoula, MT', - 1406245 => 'Billings, MT', - 1406247 => 'Billings, MT', - 1406248 => 'Billings, MT', - 1406251 => 'Missoula, MT', - 1406252 => 'Billings, MT', - 1406253 => 'Kalispell, MT', - 1406254 => 'Billings, MT', - 1406255 => 'Billings, MT', - 1406256 => 'Billings, MT', - 1406257 => 'Kalispell, MT', - 1406258 => 'Missoula, MT', - 1406259 => 'Billings, MT', - 1406261 => 'Kalispell, MT', - 1406265 => 'Havre, MT', - 1406266 => 'Townsend, MT', - 1406268 => 'Great Falls, MT', - 1406271 => 'Conrad, MT', - 1406278 => 'Conrad, MT', - 1406281 => 'Billings, MT', - 1406282 => 'Manhattan, MT', - 1406284 => 'Manhattan, MT', - 1406285 => 'Three Forks, MT', - 1406287 => 'Whitehall, MT', - 1406293 => 'Libby, MT', - 1406294 => 'Billings, MT', - 1406295 => 'Troy, MT', - 1406297 => 'Eureka, MT', - 1406322 => 'Columbus, MT', - 1406323 => 'Roundup, MT', - 1406327 => 'Missoula, MT', - 1406328 => 'Absarokee, MT', - 1406329 => 'Missoula, MT', - 1406338 => 'Browning, MT', - 1406346 => 'Forsyth, MT', - 1406357 => 'Chinook, MT', - 1406362 => 'Lincoln, MT', - 1406363 => 'Hamilton, MT', - 1406365 => 'Glendive, MT', - 1406373 => 'Billings, MT', - 1406375 => 'Hamilton, MT', - 1406377 => 'Glendive, MT', - 1406388 => 'Belgrade, MT', - 1406422 => 'Helena, MT', - 1406433 => 'Sidney, MT', - 1406434 => 'Shelby, MT', - 1406436 => 'Broadus, MT', - 1406439 => 'Helena, MT', - 1406442 => 'Helena, MT', - 1406443 => 'Helena, MT', - 1406444 => 'Helena, MT', - 1406446 => 'Red Lodge, MT', - 1406447 => 'Helena, MT', - 1406449 => 'Helena, MT', - 1406452 => 'Great Falls, MT', - 1406453 => 'Great Falls, MT', - 1406454 => 'Great Falls, MT', - 1406455 => 'Great Falls, MT', - 1406457 => 'Helena, MT', - 1406458 => 'Helena, MT', - 1406466 => 'Choteau, MT', - 1406467 => 'Fairfield, MT', - 1406477 => 'Lame Deer, MT', - 1406485 => 'Circle, MT', - 1406487 => 'Scobey, MT', - 1406488 => 'Sidney, MT', - 1406494 => 'Butte, MT', - 1406495 => 'Helena, MT', - 1406522 => 'Bozeman, MT', - 1406532 => 'Missoula, MT', - 1406534 => 'Billings, MT', - 1406535 => 'Lewistown, MT', - 1406538 => 'Lewistown, MT', - 1406539 => 'Bozeman, MT', - 1406541 => 'Missoula, MT', - 1406542 => 'Missoula, MT', - 1406543 => 'Missoula, MT', - 1406547 => 'White Slphr Spgs, MT', - 1406549 => 'Missoula, MT', - 1406551 => 'Bozeman, MT', - 1406556 => 'Bozeman, MT', - 1406563 => 'Anaconda, MT', - 1406570 => 'Bozeman, MT', - 1406579 => 'Bozeman, MT', - 1406580 => 'Bozeman, MT', - 1406581 => 'Bozeman, MT', - 1406582 => 'Bozeman, MT', - 1406585 => 'Bozeman, MT', - 1406586 => 'Bozeman, MT', - 1406587 => 'Bozeman, MT', - 1406599 => 'Bozeman, MT', - 1406600 => 'Bozeman, MT', - 1406622 => 'Fort Benton, MT', - 1406626 => 'Frenchtown, MT', - 1406628 => 'Laurel, MT', - 1406632 => 'Harlowton, MT', - 1406642 => 'Victor, MT', - 1406646 => 'West Yellowstone, MT', - 1406651 => 'Billings, MT', - 1406652 => 'Billings, MT', - 1406653 => 'Wolf Point, MT', - 1406654 => 'Malta, MT', - 1406655 => 'Billings, MT', - 1406656 => 'Billings, MT', - 1406657 => 'Billings, MT', - 1406665 => 'Hardin, MT', - 1406670 => 'Billings, MT', - 1406671 => 'Billings, MT', - 1406676 => 'Ronan, MT', - 1406677 => 'Seeley Lake, MT', - 1406682 => 'Ennis, MT', - 1406683 => 'Dillon, MT', - 1406690 => 'Billings, MT', - 1406698 => 'Billings, MT', - 1406721 => 'Missoula, MT', - 1406723 => 'Butte, MT', - 1406726 => 'Arlee, MT', - 1406727 => 'Great Falls, MT', - 1406728 => 'Missoula, MT', - 1406731 => 'Great Falls, MT', - 1406741 => 'Hot Springs, MT', - 1406745 => 'St. Ignatius, MT', - 1406748 => 'Colstrip, MT', - 1406751 => 'Kalispell, MT', - 1406752 => 'Kalispell, MT', - 1406755 => 'Kalispell, MT', - 1406756 => 'Kalispell, MT', - 1406758 => 'Kalispell, MT', - 1406759 => 'Chester, MT', - 1406761 => 'Great Falls, MT', - 1406763 => 'Gallatin Gateway, MT', - 1406765 => 'Plentywood, MT', - 1406768 => 'Poplar, MT', - 1406771 => 'Great Falls, MT', - 1406777 => 'Stevensville, MT', - 1406778 => 'Baker, MT', - 1406782 => 'Butte, MT', - 1406821 => 'Darby, MT', - 1406822 => 'Superior, MT', - 1406826 => 'Plains, MT', - 1406827 => 'Thompson Falls, MT', - 1406829 => 'Missoula, MT', - 1406830 => 'Missoula, MT', - 1406837 => 'Bigfork, MT', - 1406839 => 'Billings, MT', - 1406842 => 'Sheridan, MT', - 1406844 => 'Lakeside, MT', - 1406846 => 'Deer Lodge, MT', - 1406847 => 'Noxon, MT', - 1406848 => 'Gardiner, MT', - 1406855 => 'Billings, MT', - 1406859 => 'Philipsburg, MT', - 1406860 => 'Billings, MT', - 1406861 => 'Billings, MT', - 1406862 => 'Whitefish, MT', - 1406863 => 'Whitefish, MT', - 1406873 => 'Cut Bank, MT', - 1406883 => 'Polson, MT', - 1406889 => 'Eureka, MT', - 1406892 => 'Columbia Falls, MT', - 1406896 => 'Billings, MT', - 1406932 => 'Big Timber, MT', - 1406961 => 'Corvallis, MT', - 1406962 => 'Joliet, MT', - 1406969 => 'Billings, MT', - 1406994 => 'Bozeman, MT', - 1406995 => 'Big Sky, MT', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1407.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1407.php deleted file mode 100644 index d1a0bc9ec..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1407.php +++ /dev/null @@ -1,204 +0,0 @@ - 'Florida', - 1407201 => 'Kissimmee, FL', - 1407203 => 'Orlando, FL', - 1407206 => 'Orlando, FL', - 1407207 => 'Orlando, FL', - 1407208 => 'Orlando, FL', - 1407210 => 'Orlando, FL', - 1407219 => 'Orlando, FL', - 1407226 => 'Orlando, FL', - 1407228 => 'Orlando, FL', - 1407237 => 'Orlando, FL', - 1407238 => 'Orlando, FL', - 1407239 => 'Orlando, FL', - 1407240 => 'Orlando, FL', - 1407243 => 'Orlando, FL', - 1407244 => 'Orlando, FL', - 1407245 => 'Orlando, FL', - 1407246 => 'Orlando, FL', - 1407248 => 'Orlando, FL', - 1407249 => 'Orlando, FL', - 1407251 => 'Orlando, FL', - 1407253 => 'Orlando, FL', - 1407254 => 'Orlando, FL', - 1407264 => 'Orlando, FL', - 1407268 => 'Sanford, FL', - 1407273 => 'Orlando, FL', - 1407275 => 'Orlando, FL', - 1407277 => 'Orlando, FL', - 1407281 => 'Orlando, FL', - 1407282 => 'Orlando, FL', - 1407286 => 'Orlando, FL', - 1407290 => 'Orlando, FL', - 1407291 => 'Orlando, FL', - 1407292 => 'Orlando, FL', - 1407293 => 'Orlando, FL', - 1407294 => 'Orlando, FL', - 1407295 => 'Orlando, FL', - 1407296 => 'Orlando, FL', - 1407297 => 'Orlando, FL', - 1407298 => 'Orlando, FL', - 1407299 => 'Orlando, FL', - 1407301 => 'Kissimmee, FL', - 1407302 => 'Sanford, FL', - 1407303 => 'Orlando, FL', - 1407320 => 'Sanford, FL', - 1407321 => 'Sanford, FL', - 1407322 => 'Sanford, FL', - 1407323 => 'Sanford, FL', - 1407324 => 'Sanford, FL', - 1407327 => 'Winter Springs, FL', - 1407328 => 'Sanford, FL', - 1407330 => 'Sanford, FL', - 1407333 => 'Lake Mary, FL', - 1407343 => 'Kissimmee, FL', - 1407344 => 'Kissimmee, FL', - 1407345 => 'Orlando, FL', - 1407348 => 'Kissimmee, FL', - 1407349 => 'Geneva, FL', - 1407350 => 'Kissimmee, FL', - 1407351 => 'Orlando, FL', - 1407352 => 'Orlando, FL', - 1407354 => 'Orlando, FL', - 1407355 => 'Orlando, FL', - 1407359 => 'Oviedo, FL', - 1407363 => 'Orlando, FL', - 1407365 => 'Oviedo, FL', - 1407366 => 'Oviedo, FL', - 1407367 => 'Orlando, FL', - 1407370 => 'Orlando, FL', - 1407380 => 'Orlando, FL', - 1407381 => 'Orlando, FL', - 1407382 => 'Orlando, FL', - 1407384 => 'Orlando, FL', - 1407390 => 'Kissimmee, FL', - 1407396 => 'Kissimmee, FL', - 1407397 => 'Kissimmee, FL', - 1407412 => 'Orlando, FL', - 1407414 => 'Kissimmee, FL', - 1407418 => 'Orlando, FL', - 1407420 => 'Orlando, FL', - 1407422 => 'Orlando, FL', - 1407423 => 'Orlando, FL', - 1407425 => 'Orlando, FL', - 1407426 => 'Orlando, FL', - 1407438 => 'Orlando, FL', - 1407440 => 'Orlando, FL', - 1407444 => 'Lake Mary, FL', - 1407445 => 'Orlando, FL', - 1407447 => 'Orlando, FL', - 1407464 => 'Apopka, FL', - 1407465 => 'Orlando, FL', - 1407469 => 'Montverde, FL', - 1407481 => 'Orlando, FL', - 1407482 => 'Orlando, FL', - 1407483 => 'Kissimmee, FL', - 1407498 => 'St. Cloud, FL', - 1407518 => 'Kissimmee, FL', - 1407521 => 'Orlando, FL', - 1407522 => 'Orlando, FL', - 1407523 => 'Orlando, FL', - 1407532 => 'Orlando, FL', - 1407540 => 'Orlando, FL', - 1407542 => 'Oviedo, FL', - 1407566 => 'Kissimmee, FL', - 1407568 => 'Orlando, FL', - 1407578 => 'Orlando, FL', - 1407599 => 'Winter Park, FL', - 1407601 => 'Orlando, FL', - 1407622 => 'Winter Park, FL', - 1407628 => 'Winter Park, FL', - 1407644 => 'Winter Park, FL', - 1407645 => 'Winter Park, FL', - 1407646 => 'Winter Park, FL', - 1407647 => 'Winter Park, FL', - 1407648 => 'Orlando, FL', - 1407649 => 'Orlando, FL', - 1407650 => 'Orlando, FL', - 1407654 => 'Winter Garden, FL', - 1407656 => 'Winter Garden, FL', - 1407657 => 'Winter Park, FL', - 1407658 => 'Orlando, FL', - 1407660 => 'Maitland, FL', - 1407665 => 'Sanford, FL', - 1407667 => 'Maitland, FL', - 1407671 => 'Winter Park, FL', - 1407672 => 'Winter Park, FL', - 1407673 => 'Winter Park, FL', - 1407674 => 'Orlando, FL', - 1407677 => 'Winter Park, FL', - 1407678 => 'Winter Park, FL', - 1407679 => 'Winter Park, FL', - 1407688 => 'Sanford, FL', - 1407704 => 'Orlando, FL', - 1407730 => 'Orlando, FL', - 1407737 => 'Orlando, FL', - 1407740 => 'Winter Park, FL', - 1407770 => 'Orlando, FL', - 1407802 => 'Orlando, FL', - 1407804 => 'Lake Mary, FL', - 1407812 => 'Orlando, FL', - 1407814 => 'Apopka, FL', - 1407816 => 'Orlando, FL', - 1407822 => 'Orlando, FL', - 1407823 => 'Orlando, FL', - 1407826 => 'Orlando, FL', - 1407827 => 'Lake Buena Vista, FL', - 1407829 => 'Lake Mary, FL', - 1407833 => 'Lake Mary, FL', - 1407835 => 'Orlando, FL', - 1407836 => 'Orlando, FL', - 1407839 => 'Orlando, FL', - 1407841 => 'Orlando, FL', - 1407843 => 'Orlando, FL', - 1407846 => 'Kissimmee, FL', - 1407847 => 'Kissimmee, FL', - 1407849 => 'Orlando, FL', - 1407850 => 'Orlando, FL', - 1407851 => 'Orlando, FL', - 1407852 => 'Orlando, FL', - 1407854 => 'Orlando, FL', - 1407855 => 'Orlando, FL', - 1407856 => 'Orlando, FL', - 1407857 => 'Orlando, FL', - 1407858 => 'Orlando, FL', - 1407859 => 'Orlando, FL', - 1407870 => 'Kissimmee, FL', - 1407872 => 'Orlando, FL', - 1407877 => 'Winter Garden, FL', - 1407878 => 'Sanford, FL', - 1407880 => 'Apopka, FL', - 1407884 => 'Apopka, FL', - 1407886 => 'Apopka, FL', - 1407888 => 'Orlando, FL', - 1407889 => 'Apopka, FL', - 1407891 => 'St. Cloud, FL', - 1407892 => 'St. Cloud, FL', - 1407893 => 'Orlando, FL', - 1407894 => 'Orlando, FL', - 1407895 => 'Orlando, FL', - 1407896 => 'Orlando, FL', - 1407897 => 'Orlando, FL', - 1407898 => 'Orlando, FL', - 1407903 => 'Orlando, FL', - 1407926 => 'Orlando, FL', - 1407931 => 'Kissimmee, FL', - 1407932 => 'Kissimmee, FL', - 1407933 => 'Kissimmee, FL', - 1407935 => 'Kissimmee, FL', - 1407939 => 'Lake Buena Vista, FL', - 1407944 => 'Kissimmee, FL', - 1407957 => 'St. Cloud, FL', - 1407971 => 'Oviedo, FL', - 1407977 => 'Oviedo, FL', - 1407992 => 'Orlando, FL', - 1407996 => 'Orlando, FL', - 1407999 => 'Orlando, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1408.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1408.php deleted file mode 100644 index 5c14bbaa0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1408.php +++ /dev/null @@ -1,178 +0,0 @@ - 'California', - 1408216 => 'San Jose, CA', - 1408217 => 'San Jose, CA', - 1408223 => 'San Jose, CA', - 1408224 => 'San Jose, CA', - 1408225 => 'San Jose, CA', - 1408226 => 'San Jose, CA', - 1408227 => 'San Jose, CA', - 1408229 => 'San Jose, CA', - 1408236 => 'Santa Clara, CA', - 1408238 => 'San Jose, CA', - 1408243 => 'Santa Clara, CA', - 1408245 => 'Sunnyvale, CA', - 1408251 => 'San Jose, CA', - 1408254 => 'San Jose, CA', - 1408257 => 'Cupertino, CA', - 1408258 => 'San Jose, CA', - 1408259 => 'San Jose, CA', - 1408262 => 'Milpitas, CA', - 1408263 => 'Milpitas, CA', - 1408264 => 'San Jose, CA', - 1408265 => 'San Jose, CA', - 1408266 => 'San Jose, CA', - 1408267 => 'San Jose, CA', - 1408268 => 'San Jose, CA', - 1408269 => 'San Jose, CA', - 1408270 => 'San Jose, CA', - 1408271 => 'San Jose, CA', - 1408272 => 'San Jose, CA', - 1408274 => 'San Jose, CA', - 1408275 => 'San Jose, CA', - 1408277 => 'San Jose, CA', - 1408278 => 'San Jose, CA', - 1408279 => 'San Jose, CA', - 1408280 => 'San Jose, CA', - 1408281 => 'San Jose, CA', - 1408282 => 'San Jose, CA', - 1408283 => 'San Jose, CA', - 1408286 => 'San Jose, CA', - 1408287 => 'San Jose, CA', - 1408288 => 'San Jose, CA', - 1408289 => 'San Jose, CA', - 1408292 => 'San Jose, CA', - 1408293 => 'San Jose, CA', - 1408294 => 'San Jose, CA', - 1408295 => 'San Jose, CA', - 1408297 => 'San Jose, CA', - 1408298 => 'San Jose, CA', - 1408299 => 'San Jose, CA', - 1408321 => 'San Jose, CA', - 1408347 => 'San Jose, CA', - 1408353 => 'Los Gatos, CA', - 1408354 => 'Los Gatos, CA', - 1408356 => 'Los Gatos, CA', - 1408360 => 'San Jose, CA', - 1408362 => 'San Jose, CA', - 1408363 => 'San Jose, CA', - 1408364 => 'Campbell, CA', - 1408365 => 'San Jose, CA', - 1408366 => 'Cupertino, CA', - 1408370 => 'Campbell, CA', - 1408374 => 'Campbell, CA', - 1408376 => 'Campbell, CA', - 1408378 => 'Campbell, CA', - 1408379 => 'Campbell, CA', - 1408392 => 'San Jose, CA', - 1408395 => 'Los Gatos, CA', - 1408399 => 'Los Gatos, CA', - 1408402 => 'Los Gatos, CA', - 1408423 => 'Santa Clara, CA', - 1408432 => 'San Jose, CA', - 1408433 => 'San Jose, CA', - 1408435 => 'San Jose, CA', - 1408436 => 'San Jose, CA', - 1408437 => 'San Jose, CA', - 1408441 => 'San Jose, CA', - 1408445 => 'San Jose, CA', - 1408446 => 'Cupertino, CA', - 1408448 => 'San Jose, CA', - 1408451 => 'San Jose, CA', - 1408452 => 'San Jose, CA', - 1408453 => 'San Jose, CA', - 1408492 => 'Santa Clara, CA', - 1408496 => 'Santa Clara, CA', - 1408524 => 'Sunnyvale, CA', - 1408528 => 'San Jose, CA', - 1408530 => 'Sunnyvale, CA', - 1408531 => 'San Jose, CA', - 1408532 => 'San Jose, CA', - 1408535 => 'San Jose, CA', - 1408554 => 'Santa Clara, CA', - 1408564 => 'San Jose, CA', - 1408567 => 'Santa Clara, CA', - 1408573 => 'San Jose, CA', - 1408578 => 'San Jose, CA', - 1408586 => 'Milpitas, CA', - 1408629 => 'San Jose, CA', - 1408654 => 'Santa Clara, CA', - 1408683 => 'San Martin, CA', - 1408719 => 'Milpitas, CA', - 1408720 => 'Sunnyvale, CA', - 1408723 => 'San Jose, CA', - 1408725 => 'Cupertino, CA', - 1408727 => 'Santa Clara, CA', - 1408729 => 'San Jose, CA', - 1408730 => 'Sunnyvale, CA', - 1408732 => 'Sunnyvale, CA', - 1408733 => 'Sunnyvale, CA', - 1408734 => 'Sunnyvale, CA', - 1408735 => 'Sunnyvale, CA', - 1408736 => 'Sunnyvale, CA', - 1408737 => 'Sunnyvale, CA', - 1408738 => 'Sunnyvale, CA', - 1408739 => 'Sunnyvale, CA', - 1408741 => 'Saratoga, CA', - 1408745 => 'Sunnyvale, CA', - 1408746 => 'Sunnyvale, CA', - 1408748 => 'Santa Clara, CA', - 1408749 => 'Sunnyvale, CA', - 1408773 => 'Sunnyvale, CA', - 1408776 => 'Morgan Hill, CA', - 1408777 => 'Cupertino, CA', - 1408778 => 'Morgan Hill, CA', - 1408779 => 'Morgan Hill, CA', - 1408782 => 'Morgan Hill, CA', - 1408842 => 'Gilroy, CA', - 1408844 => 'Santa Clara, CA', - 1408846 => 'Gilroy, CA', - 1408847 => 'Gilroy, CA', - 1408848 => 'Gilroy, CA', - 1408851 => 'Santa Clara, CA', - 1408855 => 'Santa Clara, CA', - 1408866 => 'Campbell, CA', - 1408867 => 'Saratoga, CA', - 1408871 => 'Campbell, CA', - 1408879 => 'Campbell, CA', - 1408885 => 'San Jose, CA', - 1408918 => 'San Jose, CA', - 1408920 => 'San Jose, CA', - 1408923 => 'San Jose, CA', - 1408926 => 'San Jose, CA', - 1408927 => 'San Jose, CA', - 1408929 => 'San Jose, CA', - 1408934 => 'Milpitas, CA', - 1408935 => 'Milpitas, CA', - 1408937 => 'San Jose, CA', - 1408941 => 'Milpitas, CA', - 1408942 => 'Milpitas, CA', - 1408945 => 'Milpitas, CA', - 1408946 => 'Milpitas, CA', - 1408947 => 'San Jose, CA', - 1408954 => 'San Jose, CA', - 1408956 => 'Milpitas, CA', - 1408970 => 'Santa Clara, CA', - 1408971 => 'San Jose, CA', - 1408972 => 'San Jose, CA', - 1408973 => 'Cupertino, CA', - 1408975 => 'San Jose, CA', - 1408977 => 'San Jose, CA', - 1408978 => 'San Jose, CA', - 1408979 => 'San Jose, CA', - 1408980 => 'Santa Clara, CA', - 1408982 => 'Santa Clara, CA', - 1408986 => 'Santa Clara, CA', - 1408988 => 'Santa Clara, CA', - 1408993 => 'San Jose, CA', - 1408995 => 'San Jose, CA', - 1408996 => 'Cupertino, CA', - 1408997 => 'San Jose, CA', - 1408998 => 'San Jose, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1409.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1409.php deleted file mode 100644 index 89f070886..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1409.php +++ /dev/null @@ -1,74 +0,0 @@ - 'Texas', - 1409212 => 'Beaumont, TX', - 1409246 => 'Kountze, TX', - 1409267 => 'Anahuac, TX', - 1409283 => 'Woodville, TX', - 1409287 => 'Sour Lake, TX', - 1409296 => 'Winnie, TX', - 1409347 => 'Beaumont, TX', - 1409379 => 'Newton, TX', - 1409383 => 'Jasper, TX', - 1409384 => 'Jasper, TX', - 1409385 => 'Silsbee, TX', - 1409386 => 'Silsbee, TX', - 1409423 => 'Kirbyville, TX', - 1409489 => 'Jasper, TX', - 1409670 => 'Orange, TX', - 1409724 => 'Nederland, TX', - 1409735 => 'Bridge City, TX', - 1409736 => 'Port Arthur, TX', - 1409737 => 'Galveston, TX', - 1409740 => 'Galveston, TX', - 1409741 => 'Galveston, TX', - 1409744 => 'Galveston, TX', - 1409745 => 'Orange, TX', - 1409747 => 'Galveston, TX', - 1409751 => 'Lumberton, TX', - 1409755 => 'Lumberton, TX', - 1409762 => 'Galveston, TX', - 1409763 => 'Galveston, TX', - 1409765 => 'Galveston, TX', - 1409766 => 'Galveston, TX', - 1409769 => 'Vidor, TX', - 1409770 => 'Galveston, TX', - 1409772 => 'Galveston, TX', - 1409783 => 'Vidor, TX', - 1409787 => 'Hemphill, TX', - 1409794 => 'Beaumont, TX', - 1409813 => 'Beaumont, TX', - 1409832 => 'Beaumont, TX', - 1409833 => 'Beaumont, TX', - 1409835 => 'Beaumont, TX', - 1409838 => 'Beaumont, TX', - 1409839 => 'Beaumont, TX', - 1409840 => 'Beaumont, TX', - 1409842 => 'Beaumont, TX', - 1409860 => 'Beaumont, TX', - 1409861 => 'Beaumont, TX', - 1409866 => 'Beaumont, TX', - 1409882 => 'Orange, TX', - 1409883 => 'Orange, TX', - 1409886 => 'Orange, TX', - 1409892 => 'Beaumont, TX', - 1409896 => 'Beaumont, TX', - 1409898 => 'Beaumont, TX', - 1409899 => 'Beaumont, TX', - 1409924 => 'Beaumont, TX', - 1409925 => 'Santa Fe, TX', - 1409938 => 'La Marque, TX', - 1409945 => 'Texas City, TX', - 1409948 => 'Texas City, TX', - 1409962 => 'Groves, TX', - 1409963 => 'Groves, TX', - 1409982 => 'Port Arthur, TX', - 1409983 => 'Port Arthur, TX', - 1409985 => 'Port Arthur, TX', - 1409994 => 'Buna, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1410.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1410.php deleted file mode 100644 index 1de8a5b08..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1410.php +++ /dev/null @@ -1,285 +0,0 @@ - 'Maryland', - 1410203 => 'Ellicott City, MD', - 1410208 => 'Berlin, MD', - 1410213 => 'Ocean City, MD', - 1410216 => 'Annapolis, MD', - 1410219 => 'Salisbury, MD', - 1410221 => 'Cambridge, MD', - 1410224 => 'Annapolis, MD', - 1410225 => 'Baltimore, MD', - 1410228 => 'Cambridge, MD', - 1410230 => 'Baltimore, MD', - 1410233 => 'Baltimore, MD', - 1410234 => 'Baltimore, MD', - 1410235 => 'Baltimore, MD', - 1410243 => 'Baltimore, MD', - 1410244 => 'Baltimore, MD', - 1410250 => 'Ocean City, MD', - 1410254 => 'Baltimore, MD', - 1410255 => 'Pasadena, MD', - 1410263 => 'Annapolis, MD', - 1410266 => 'Annapolis, MD', - 1410267 => 'Annapolis, MD', - 1410268 => 'Annapolis, MD', - 1410269 => 'Annapolis, MD', - 1410272 => 'Aberdeen, MD', - 1410273 => 'Aberdeen, MD', - 1410276 => 'Baltimore, MD', - 1410280 => 'Annapolis, MD', - 1410287 => 'North East, MD', - 1410289 => 'Ocean City, MD', - 1410290 => 'Columbia, MD', - 1410295 => 'Annapolis, MD', - 1410297 => 'Aberdeen, MD', - 1410309 => 'Columbia, MD', - 1410312 => 'Columbia, MD', - 1410313 => 'Ellicott City, MD', - 1410315 => 'Severna Park, MD', - 1410318 => 'Baltimore, MD', - 1410323 => 'Baltimore, MD', - 1410325 => 'Baltimore, MD', - 1410327 => 'Baltimore, MD', - 1410328 => 'Baltimore, MD', - 1410332 => 'Baltimore, MD', - 1410334 => 'Salisbury, MD', - 1410337 => 'Towson, MD', - 1410338 => 'Baltimore, MD', - 1410341 => 'Salisbury, MD', - 1410342 => 'Baltimore, MD', - 1410347 => 'Baltimore, MD', - 1410349 => 'Annapolis, MD', - 1410352 => 'Bishopville, MD', - 1410354 => 'Baltimore, MD', - 1410355 => 'Baltimore, MD', - 1410356 => 'Owings Mills, MD', - 1410358 => 'Baltimore, MD', - 1410360 => 'Pasadena, MD', - 1410362 => 'Baltimore, MD', - 1410363 => 'Owings Mills, MD', - 1410366 => 'Baltimore, MD', - 1410367 => 'Baltimore, MD', - 1410368 => 'Baltimore, MD', - 1410374 => 'Hampstead, MD', - 1410377 => 'Baltimore, MD', - 1410379 => 'Elkridge, MD', - 1410381 => 'Columbia, MD', - 1410383 => 'Baltimore, MD', - 1410385 => 'Baltimore, MD', - 1410386 => 'Westminster, MD', - 1410392 => 'Elkton, MD', - 1410396 => 'Baltimore, MD', - 1410398 => 'Elkton, MD', - 1410414 => 'Prince Frederick, MD', - 1410415 => 'Pikesville, MD', - 1410418 => 'Ellicott City, MD', - 1410420 => 'Bel Air, MD', - 1410424 => 'Glen Burnie, MD', - 1410426 => 'Baltimore, MD', - 1410433 => 'Baltimore, MD', - 1410435 => 'Baltimore, MD', - 1410437 => 'Pasadena, MD', - 1410439 => 'Pasadena, MD', - 1410444 => 'Baltimore, MD', - 1410448 => 'Baltimore, MD', - 1410455 => 'Catonsville, MD', - 1410457 => 'Darlington, MD', - 1410461 => 'Ellicott City, MD', - 1410462 => 'Baltimore, MD', - 1410464 => 'Baltimore, MD', - 1410465 => 'Ellicott City, MD', - 1410466 => 'Baltimore, MD', - 1410467 => 'Baltimore, MD', - 1410476 => 'Trappe, MD', - 1410479 => 'Denton, MD', - 1410480 => 'Ellicott City, MD', - 1410482 => 'Greensboro, MD', - 1410483 => 'Baltimore, MD', - 1410484 => 'Pikesville, MD', - 1410485 => 'Baltimore, MD', - 1410486 => 'Pikesville, MD', - 1410488 => 'Baltimore, MD', - 1410496 => 'Randallstown, MD', - 1410502 => 'Baltimore, MD', - 1410517 => 'Reisterstown, MD', - 1410519 => 'Severn, MD', - 1410521 => 'Randallstown, MD', - 1410522 => 'Baltimore, MD', - 1410523 => 'Baltimore, MD', - 1410524 => 'Ocean City, MD', - 1410525 => 'Baltimore, MD', - 1410526 => 'Reisterstown, MD', - 1410528 => 'Baltimore, MD', - 1410532 => 'Baltimore, MD', - 1410534 => 'Baltimore, MD', - 1410535 => 'Prince Frederick, MD', - 1410536 => 'Halethorpe, MD', - 1410539 => 'Baltimore, MD', - 1410542 => 'Baltimore, MD', - 1410543 => 'Salisbury, MD', - 1410544 => 'Severna Park, MD', - 1410546 => 'Salisbury, MD', - 1410547 => 'Baltimore, MD', - 1410548 => 'Salisbury, MD', - 1410549 => 'Sykesville, MD', - 1410550 => 'Baltimore, MD', - 1410552 => 'Sykesville, MD', - 1410553 => 'Glen Burnie, MD', - 1410554 => 'Baltimore, MD', - 1410558 => 'Baltimore, MD', - 1410563 => 'Baltimore, MD', - 1410566 => 'Baltimore, MD', - 1410571 => 'Annapolis, MD', - 1410573 => 'Annapolis, MD', - 1410576 => 'Baltimore, MD', - 1410578 => 'Baltimore, MD', - 1410579 => 'Elkridge, MD', - 1410581 => 'Owings Mills, MD', - 1410585 => 'Baltimore, MD', - 1410590 => 'Glen Burnie, MD', - 1410601 => 'Baltimore, MD', - 1410602 => 'Pikesville, MD', - 1410604 => 'Stevensville, MD', - 1410605 => 'Baltimore, MD', - 1410612 => 'Edgewood, MD', - 1410614 => 'Baltimore, MD', - 1410620 => 'Elkton, MD', - 1410625 => 'Baltimore, MD', - 1410626 => 'Annapolis, MD', - 1410628 => 'Cockeysville, MD', - 1410629 => 'Berlin, MD', - 1410631 => 'Baltimore, MD', - 1410632 => 'Snow Hill, MD', - 1410633 => 'Baltimore, MD', - 1410634 => 'Ridgely, MD', - 1410635 => 'New Windsor, MD', - 1410638 => 'Bel Air, MD', - 1410639 => 'Rock Hall, MD', - 1410641 => 'Berlin, MD', - 1410642 => 'Perryville, MD', - 1410643 => 'Stevensville, MD', - 1410644 => 'Baltimore, MD', - 1410646 => 'Baltimore, MD', - 1410647 => 'Severna Park, MD', - 1410651 => 'Princess Anne, MD', - 1410653 => 'Pikesville, MD', - 1410654 => 'Owings Mills, MD', - 1410655 => 'Randallstown, MD', - 1410658 => 'Rising Sun, MD', - 1410659 => 'Baltimore, MD', - 1410662 => 'Baltimore, MD', - 1410664 => 'Baltimore, MD', - 1410665 => 'Parkville, MD', - 1410666 => 'Cockeysville, MD', - 1410667 => 'Cockeysville, MD', - 1410669 => 'Baltimore, MD', - 1410671 => 'Edgewood, MD', - 1410672 => 'Odenton, MD', - 1410673 => 'Preston, MD', - 1410674 => 'Odenton, MD', - 1410675 => 'Baltimore, MD', - 1410676 => 'Edgewood, MD', - 1410677 => 'Salisbury, MD', - 1410685 => 'Baltimore, MD', - 1410695 => 'Odenton, MD', - 1410706 => 'Baltimore, MD', - 1410715 => 'Columbia, MD', - 1410719 => 'Catonsville, MD', - 1410723 => 'Ocean City, MD', - 1410727 => 'Baltimore, MD', - 1410728 => 'Baltimore, MD', - 1410729 => 'Millersville, MD', - 1410730 => 'Columbia, MD', - 1410732 => 'Baltimore, MD', - 1410740 => 'Columbia, MD', - 1410741 => 'Lothian, MD', - 1410742 => 'Salisbury, MD', - 1410744 => 'Catonsville, MD', - 1410745 => 'St. Michaels, MD', - 1410747 => 'Catonsville, MD', - 1410749 => 'Salisbury, MD', - 1410750 => 'Ellicott City, MD', - 1410751 => 'Westminster, MD', - 1410752 => 'Baltimore, MD', - 1410754 => 'Federalsburg, MD', - 1410756 => 'Taneytown, MD', - 1410757 => 'Annapolis, MD', - 1410758 => 'Centreville, MD', - 1410760 => 'Glen Burnie, MD', - 1410761 => 'Glen Burnie, MD', - 1410763 => 'Easton, MD', - 1410764 => 'Baltimore, MD', - 1410766 => 'Glen Burnie, MD', - 1410767 => 'Baltimore, MD', - 1410768 => 'Glen Burnie, MD', - 1410770 => 'Easton, MD', - 1410772 => 'Columbia, MD', - 1410778 => 'Chestertown, MD', - 1410783 => 'Baltimore, MD', - 1410787 => 'Glen Burnie, MD', - 1410788 => 'Catonsville, MD', - 1410795 => 'Sykesville, MD', - 1410796 => 'Elkridge, MD', - 1410803 => 'Bel Air, MD', - 1410810 => 'Chestertown, MD', - 1410814 => 'Baltimore, MD', - 1410819 => 'Easton, MD', - 1410820 => 'Easton, MD', - 1410822 => 'Easton, MD', - 1410823 => 'Towson, MD', - 1410827 => 'Queenstown, MD', - 1410833 => 'Reisterstown, MD', - 1410835 => 'Pittsville, MD', - 1410836 => 'Bel Air, MD', - 1410837 => 'Baltimore, MD', - 1410838 => 'Bel Air, MD', - 1410840 => 'Westminster, MD', - 1410841 => 'Annapolis, MD', - 1410848 => 'Westminster, MD', - 1410849 => 'Annapolis, MD', - 1410857 => 'Westminster, MD', - 1410860 => 'Salisbury, MD', - 1410861 => 'Finksburg, MD', - 1410863 => 'Glen Burnie, MD', - 1410869 => 'Catonsville, MD', - 1410871 => 'Westminster, MD', - 1410872 => 'Columbia, MD', - 1410876 => 'Westminster, MD', - 1410877 => 'Fallston, MD', - 1410879 => 'Bel Air, MD', - 1410884 => 'Columbia, MD', - 1410885 => 'Chesapeake City, MD', - 1410889 => 'Baltimore, MD', - 1410893 => 'Bel Air, MD', - 1410896 => 'Delmar, MD', - 1410897 => 'Annapolis, MD', - 1410901 => 'Cambridge, MD', - 1410902 => 'Owings Mills, MD', - 1410922 => 'Randallstown, MD', - 1410928 => 'Millington, MD', - 1410938 => 'Towson, MD', - 1410939 => 'Havre de Grace, MD', - 1410943 => 'Hurlock, MD', - 1410945 => 'Baltimore, MD', - 1410947 => 'Baltimore, MD', - 1410955 => 'Baltimore, MD', - 1410956 => 'Edgewater, MD', - 1410957 => 'Pocomoke City, MD', - 1410962 => 'Baltimore, MD', - 1410964 => 'Columbia, MD', - 1410968 => 'Crisfield, MD', - 1410974 => 'Annapolis, MD', - 1410987 => 'Millersville, MD', - 1410990 => 'Annapolis, MD', - 1410992 => 'Columbia, MD', - 1410995 => 'Columbia, MD', - 1410996 => 'Elkton, MD', - 1410997 => 'Columbia, MD', - 1410998 => 'Owings Mills, MD', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1412.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1412.php deleted file mode 100644 index 5ae213b15..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1412.php +++ /dev/null @@ -1,140 +0,0 @@ - 'Pennsylvania', - 1412220 => 'Bridgeville, PA', - 1412221 => 'Bridgeville, PA', - 1412231 => 'Pittsburgh, PA', - 1412232 => 'Pittsburgh, PA', - 1412233 => 'Clairton, PA', - 1412235 => 'Pittsburgh, PA', - 1412241 => 'Pittsburgh, PA', - 1412242 => 'Pittsburgh, PA', - 1412243 => 'Pittsburgh, PA', - 1412244 => 'Pittsburgh, PA', - 1412246 => 'Pittsburgh, PA', - 1412247 => 'Pittsburgh, PA', - 1412255 => 'Pittsburgh, PA', - 1412257 => 'Bridgeville, PA', - 1412261 => 'Pittsburgh, PA', - 1412262 => 'Coraopolis, PA', - 1412264 => 'Coraopolis, PA', - 1412269 => 'Coraopolis, PA', - 1412276 => 'Carnegie, PA', - 1412278 => 'Carnegie, PA', - 1412279 => 'Carnegie, PA', - 1412281 => 'Pittsburgh, PA', - 1412288 => 'Pittsburgh, PA', - 1412299 => 'Coraopolis, PA', - 1412321 => 'Pittsburgh, PA', - 1412322 => 'Pittsburgh, PA', - 1412323 => 'Pittsburgh, PA', - 1412325 => 'Pittsburgh, PA', - 1412330 => 'Pittsburgh, PA', - 1412331 => 'McKees Rocks, PA', - 1412338 => 'Pittsburgh, PA', - 1412341 => 'Pittsburgh, PA', - 1412343 => 'Pittsburgh, PA', - 1412344 => 'Pittsburgh, PA', - 1412350 => 'Pittsburgh, PA', - 1412351 => 'Pittsburgh, PA', - 1412355 => 'Pittsburgh, PA', - 1412359 => 'Pittsburgh, PA', - 1412361 => 'Pittsburgh, PA', - 1412362 => 'Pittsburgh, PA', - 1412363 => 'Pittsburgh, PA', - 1412364 => 'Pittsburgh, PA', - 1412365 => 'Pittsburgh, PA', - 1412366 => 'Pittsburgh, PA', - 1412367 => 'Pittsburgh, PA', - 1412369 => 'Pittsburgh, PA', - 1412371 => 'Pittsburgh, PA', - 1412372 => 'Monroeville, PA', - 1412373 => 'Monroeville, PA', - 1412374 => 'Monroeville, PA', - 1412380 => 'Monroeville, PA', - 1412381 => 'Pittsburgh, PA', - 1412383 => 'Pittsburgh, PA', - 1412391 => 'Pittsburgh, PA', - 1412394 => 'Pittsburgh, PA', - 1412421 => 'Pittsburgh, PA', - 1412422 => 'Pittsburgh, PA', - 1412431 => 'Pittsburgh, PA', - 1412432 => 'Pittsburgh, PA', - 1412434 => 'Pittsburgh, PA', - 1412441 => 'Pittsburgh, PA', - 1412456 => 'Pittsburgh, PA', - 1412464 => 'Homestead, PA', - 1412471 => 'Pittsburgh, PA', - 1412472 => 'Pittsburgh, PA', - 1412481 => 'Pittsburgh, PA', - 1412488 => 'Pittsburgh, PA', - 1412490 => 'Pittsburgh, PA', - 1412494 => 'Pittsburgh, PA', - 1412521 => 'Pittsburgh, PA', - 1412531 => 'Pittsburgh, PA', - 1412561 => 'Pittsburgh, PA', - 1412562 => 'Pittsburgh, PA', - 1412563 => 'Pittsburgh, PA', - 1412566 => 'Pittsburgh, PA', - 1412571 => 'Pittsburgh, PA', - 1412578 => 'Pittsburgh, PA', - 1412586 => 'Pittsburgh, PA', - 1412621 => 'Pittsburgh, PA', - 1412622 => 'Pittsburgh, PA', - 1412623 => 'Pittsburgh, PA', - 1412624 => 'Pittsburgh, PA', - 1412635 => 'Pittsburgh, PA', - 1412641 => 'Pittsburgh, PA', - 1412647 => 'Pittsburgh, PA', - 1412648 => 'Pittsburgh, PA', - 1412661 => 'Pittsburgh, PA', - 1412664 => 'McKeesport, PA', - 1412665 => 'Pittsburgh, PA', - 1412673 => 'McKeesport, PA', - 1412675 => 'McKeesport, PA', - 1412681 => 'Pittsburgh, PA', - 1412682 => 'Pittsburgh, PA', - 1412683 => 'Pittsburgh, PA', - 1412687 => 'Pittsburgh, PA', - 1412688 => 'Pittsburgh, PA', - 1412692 => 'Pittsburgh, PA', - 1412731 => 'Pittsburgh, PA', - 1412734 => 'Pittsburgh, PA', - 1412741 => 'Sewickley, PA', - 1412749 => 'Sewickley, PA', - 1412761 => 'Pittsburgh, PA', - 1412765 => 'Pittsburgh, PA', - 1412766 => 'Pittsburgh, PA', - 1412771 => 'McKees Rocks, PA', - 1412777 => 'McKees Rocks, PA', - 1412781 => 'Pittsburgh, PA', - 1412782 => 'Pittsburgh, PA', - 1412784 => 'Pittsburgh, PA', - 1412787 => 'Pittsburgh, PA', - 1412788 => 'Pittsburgh, PA', - 1412795 => 'Pittsburgh, PA', - 1412802 => 'Pittsburgh, PA', - 1412821 => 'Pittsburgh, PA', - 1412835 => 'Bethel Park, PA', - 1412854 => 'Bethel Park, PA', - 1412856 => 'Monroeville, PA', - 1412858 => 'Monroeville, PA', - 1412881 => 'Pittsburgh, PA', - 1412882 => 'Pittsburgh, PA', - 1412884 => 'Pittsburgh, PA', - 1412885 => 'Pittsburgh, PA', - 1412904 => 'Pittsburgh, PA', - 1412920 => 'Pittsburgh, PA', - 1412921 => 'Pittsburgh, PA', - 1412922 => 'Pittsburgh, PA', - 1412928 => 'Pittsburgh, PA', - 1412931 => 'Pittsburgh, PA', - 1412942 => 'Pittsburgh, PA', - 1412963 => 'Pittsburgh, PA', - 1412967 => 'Pittsburgh, PA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1413.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1413.php deleted file mode 100644 index a5975446b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1413.php +++ /dev/null @@ -1,110 +0,0 @@ - 'Massachusetts', - 1413229 => 'Sheffield, MA', - 1413236 => 'Pittsfield, MA', - 1413243 => 'Lee, MA', - 1413245 => 'Brimfield, MA', - 1413247 => 'Hatfield, MA', - 1413253 => 'Amherst, MA', - 1413256 => 'Amherst, MA', - 1413259 => 'Amherst, MA', - 1413267 => 'Monson, MA', - 1413268 => 'Williamsburg, MA', - 1413283 => 'Palmer, MA', - 1413284 => 'Palmer, MA', - 1413289 => 'Palmer, MA', - 1413298 => 'Stockbridge, MA', - 1413301 => 'Springfield, MA', - 1413315 => 'Holyoke, MA', - 1413322 => 'Holyoke, MA', - 1413323 => 'Belchertown, MA', - 1413363 => 'Springfield, MA', - 1413367 => 'Montague, MA', - 1413420 => 'Holyoke, MA', - 1413436 => 'Warren, MA', - 1413442 => 'Pittsfield, MA', - 1413443 => 'Pittsfield, MA', - 1413445 => 'Pittsfield, MA', - 1413447 => 'Pittsfield, MA', - 1413448 => 'Pittsfield, MA', - 1413458 => 'Williamstown, MA', - 1413467 => 'Granby, MA', - 1413498 => 'Northfield, MA', - 1413499 => 'Pittsfield, MA', - 1413525 => 'East Longmeadow, MA', - 1413527 => 'Easthampton, MA', - 1413528 => 'Great Barrington, MA', - 1413529 => 'Easthampton, MA', - 1413532 => 'Holyoke, MA', - 1413533 => 'Holyoke, MA', - 1413534 => 'Holyoke, MA', - 1413536 => 'Holyoke, MA', - 1413539 => 'Holyoke, MA', - 1413545 => 'Amherst, MA', - 1413547 => 'Ludlow, MA', - 1413549 => 'Amherst, MA', - 1413562 => 'Westfield, MA', - 1413565 => 'Longmeadow, MA', - 1413566 => 'Hampden, MA', - 1413567 => 'Longmeadow, MA', - 1413568 => 'Westfield, MA', - 1413569 => 'Southwick, MA', - 1413572 => 'Westfield, MA', - 1413582 => 'Northampton, MA', - 1413583 => 'Ludlow, MA', - 1413584 => 'Northampton, MA', - 1413585 => 'Northampton, MA', - 1413586 => 'Northampton, MA', - 1413587 => 'Northampton, MA', - 1413589 => 'Ludlow, MA', - 1413592 => 'Chicopee, MA', - 1413593 => 'Chicopee, MA', - 1413594 => 'Chicopee, MA', - 1413596 => 'Wilbraham, MA', - 1413598 => 'Chicopee, MA', - 1413599 => 'Wilbraham, MA', - 1413623 => 'Becket, MA', - 1413625 => 'Shelburne Falls, MA', - 1413637 => 'Lenox, MA', - 1413642 => 'Westfield, MA', - 1413644 => 'Great Barrington, MA', - 1413662 => 'North Adams, MA', - 1413663 => 'North Adams, MA', - 1413664 => 'North Adams, MA', - 1413665 => 'South Deerfield, MA', - 1413667 => 'Huntington, MA', - 1413684 => 'Dalton, MA', - 1413731 => 'Springfield, MA', - 1413732 => 'Springfield, MA', - 1413733 => 'Springfield, MA', - 1413734 => 'Springfield, MA', - 1413736 => 'Springfield, MA', - 1413737 => 'Springfield, MA', - 1413739 => 'Springfield, MA', - 1413743 => 'Adams, MA', - 1413746 => 'Springfield, MA', - 1413747 => 'Springfield, MA', - 1413748 => 'Springfield, MA', - 1413772 => 'Greenfield, MA', - 1413773 => 'Greenfield, MA', - 1413774 => 'Greenfield, MA', - 1413781 => 'Springfield, MA', - 1413782 => 'Springfield, MA', - 1413783 => 'Springfield, MA', - 1413785 => 'Springfield, MA', - 1413786 => 'Agawam, MA', - 1413787 => 'Springfield, MA', - 1413788 => 'Springfield, MA', - 1413789 => 'Agawam, MA', - 1413794 => 'Springfield, MA', - 1413796 => 'Springfield, MA', - 1413827 => 'Springfield, MA', - 1413863 => 'Turners Falls, MA', - 1413967 => 'Ware, MA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1414.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1414.php deleted file mode 100644 index 208d45445..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1414.php +++ /dev/null @@ -1,140 +0,0 @@ - 'Wisconsin', - 1414219 => 'Milwaukee, WI', - 1414220 => 'Milwaukee, WI', - 1414223 => 'Milwaukee, WI', - 1414224 => 'Milwaukee, WI', - 1414225 => 'Milwaukee, WI', - 1414226 => 'Milwaukee, WI', - 1414228 => 'Milwaukee, WI', - 1414247 => 'Milwaukee, WI', - 1414257 => 'Milwaukee, WI', - 1414258 => 'Milwaukee, WI', - 1414259 => 'Milwaukee, WI', - 1414263 => 'Milwaukee, WI', - 1414264 => 'Milwaukee, WI', - 1414265 => 'Milwaukee, WI', - 1414266 => 'Wauwatosa, WI', - 1414270 => 'Milwaukee, WI', - 1414271 => 'Milwaukee, WI', - 1414272 => 'Milwaukee, WI', - 1414273 => 'Milwaukee, WI', - 1414276 => 'Milwaukee, WI', - 1414277 => 'Milwaukee, WI', - 1414278 => 'Milwaukee, WI', - 1414281 => 'Milwaukee, WI', - 1414282 => 'Milwaukee, WI', - 1414286 => 'Milwaukee, WI', - 1414288 => 'Milwaukee, WI', - 1414289 => 'Milwaukee, WI', - 1414290 => 'Milwaukee, WI', - 1414291 => 'Milwaukee, WI', - 1414294 => 'Milwaukee, WI', - 1414297 => 'Milwaukee, WI', - 1414298 => 'Milwaukee, WI', - 1414321 => 'Milwaukee, WI', - 1414327 => 'Milwaukee, WI', - 1414328 => 'Milwaukee, WI', - 1414329 => 'Milwaukee, WI', - 1414332 => 'Milwaukee, WI', - 1414342 => 'Milwaukee, WI', - 1414344 => 'Milwaukee, WI', - 1414347 => 'Milwaukee, WI', - 1414351 => 'Milwaukee, WI', - 1414352 => 'Milwaukee, WI', - 1414353 => 'Milwaukee, WI', - 1414354 => 'Milwaukee, WI', - 1414355 => 'Milwaukee, WI', - 1414357 => 'Milwaukee, WI', - 1414358 => 'Milwaukee, WI', - 1414359 => 'Milwaukee, WI', - 1414365 => 'Milwaukee, WI', - 1414371 => 'Milwaukee, WI', - 1414372 => 'Milwaukee, WI', - 1414374 => 'Milwaukee, WI', - 1414383 => 'Milwaukee, WI', - 1414384 => 'Milwaukee, WI', - 1414385 => 'Milwaukee, WI', - 1414389 => 'Milwaukee, WI', - 1414393 => 'Milwaukee, WI', - 1414421 => 'Greendale, WI', - 1414422 => 'Muskego, WI', - 1414423 => 'Greendale, WI', - 1414431 => 'Milwaukee, WI', - 1414438 => 'Milwaukee, WI', - 1414442 => 'Milwaukee, WI', - 1414443 => 'Milwaukee, WI', - 1414444 => 'Milwaukee, WI', - 1414445 => 'Milwaukee, WI', - 1414447 => 'Milwaukee, WI', - 1414449 => 'Milwaukee, WI', - 1414453 => 'Milwaukee, WI', - 1414454 => 'Milwaukee, WI', - 1414455 => 'Milwaukee, WI', - 1414456 => 'Milwaukee, WI', - 1414461 => 'Milwaukee, WI', - 1414462 => 'Milwaukee, WI', - 1414463 => 'Milwaukee, WI', - 1414464 => 'Milwaukee, WI', - 1414466 => 'Milwaukee, WI', - 1414475 => 'Milwaukee, WI', - 1414476 => 'Milwaukee, WI', - 1414479 => 'Milwaukee, WI', - 1414481 => 'Milwaukee, WI', - 1414482 => 'Milwaukee, WI', - 1414483 => 'Milwaukee, WI', - 1414486 => 'Milwaukee, WI', - 1414489 => 'Cudahy, WI', - 1414527 => 'Milwaukee, WI', - 1414535 => 'Milwaukee, WI', - 1414536 => 'Milwaukee, WI', - 1414540 => 'Milwaukee, WI', - 1414541 => 'Milwaukee, WI', - 1414543 => 'Milwaukee, WI', - 1414545 => 'Milwaukee, WI', - 1414546 => 'Milwaukee, WI', - 1414562 => 'Milwaukee, WI', - 1414570 => 'Oak Creek, WI', - 1414571 => 'Oak Creek, WI', - 1414604 => 'Milwaukee, WI', - 1414607 => 'Milwaukee, WI', - 1414643 => 'Milwaukee, WI', - 1414645 => 'Milwaukee, WI', - 1414647 => 'Milwaukee, WI', - 1414649 => 'Milwaukee, WI', - 1414671 => 'Milwaukee, WI', - 1414672 => 'Milwaukee, WI', - 1414727 => 'Milwaukee, WI', - 1414744 => 'Milwaukee, WI', - 1414747 => 'Milwaukee, WI', - 1414755 => 'Milwaukee, WI', - 1414760 => 'Milwaukee, WI', - 1414763 => 'Milwaukee, WI', - 1414764 => 'Oak Creek, WI', - 1414768 => 'Oak Creek, WI', - 1414771 => 'Milwaukee, WI', - 1414774 => 'Milwaukee, WI', - 1414777 => 'Milwaukee, WI', - 1414778 => 'Milwaukee, WI', - 1414805 => 'Milwaukee, WI', - 1414817 => 'Milwaukee, WI', - 1414831 => 'Milwaukee, WI', - 1414871 => 'Milwaukee, WI', - 1414873 => 'Milwaukee, WI', - 1414875 => 'Milwaukee, WI', - 1414906 => 'Milwaukee, WI', - 1414908 => 'Milwaukee, WI', - 1414933 => 'Milwaukee, WI', - 1414961 => 'Milwaukee, WI', - 1414962 => 'Milwaukee, WI', - 1414963 => 'Milwaukee, WI', - 1414964 => 'Milwaukee, WI', - 1414967 => 'Milwaukee, WI', - 1414988 => 'Milwaukee, WI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1415.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1415.php deleted file mode 100644 index eb660c362..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1415.php +++ /dev/null @@ -1,238 +0,0 @@ - 'California', - 1415202 => 'San Francisco, CA', - 1415206 => 'San Francisco, CA', - 1415209 => 'Novato, CA', - 1415217 => 'San Francisco, CA', - 1415221 => 'San Francisco, CA', - 1415227 => 'San Francisco, CA', - 1415239 => 'San Francisco, CA', - 1415241 => 'San Francisco, CA', - 1415242 => 'San Francisco, CA', - 1415243 => 'San Francisco, CA', - 1415252 => 'San Francisco, CA', - 1415255 => 'San Francisco, CA', - 1415256 => 'San Rafael, CA', - 1415258 => 'San Rafael, CA', - 1415268 => 'San Francisco, CA', - 1415273 => 'San Francisco, CA', - 1415281 => 'San Francisco, CA', - 1415282 => 'San Francisco, CA', - 1415283 => 'San Francisco, CA', - 1415284 => 'San Francisco, CA', - 1415285 => 'San Francisco, CA', - 1415288 => 'San Francisco, CA', - 1415289 => 'Sausalito, CA', - 1415291 => 'San Francisco, CA', - 1415292 => 'San Francisco, CA', - 1415294 => 'San Francisco, CA', - 1415296 => 'San Francisco, CA', - 1415330 => 'San Francisco, CA', - 1415331 => 'Sausalito, CA', - 1415332 => 'Sausalito, CA', - 1415333 => 'San Francisco, CA', - 1415334 => 'San Francisco, CA', - 1415337 => 'San Francisco, CA', - 1415339 => 'Sausalito, CA', - 1415341 => 'San Francisco, CA', - 1415345 => 'San Francisco, CA', - 1415346 => 'San Francisco, CA', - 1415348 => 'San Francisco, CA', - 1415351 => 'San Francisco, CA', - 1415353 => 'San Francisco, CA', - 1415355 => 'San Francisco, CA', - 1415357 => 'San Francisco, CA', - 1415359 => 'San Francisco, CA', - 1415362 => 'San Francisco, CA', - 1415371 => 'San Francisco, CA', - 1415379 => 'San Francisco, CA', - 1415380 => 'Mill Valley, CA', - 1415381 => 'Mill Valley, CA', - 1415382 => 'Novato, CA', - 1415383 => 'Mill Valley, CA', - 1415386 => 'San Francisco, CA', - 1415387 => 'San Francisco, CA', - 1415388 => 'Mill Valley, CA', - 1415389 => 'Mill Valley, CA', - 1415391 => 'San Francisco, CA', - 1415392 => 'San Francisco, CA', - 1415393 => 'San Francisco, CA', - 1415395 => 'San Francisco, CA', - 1415397 => 'San Francisco, CA', - 1415398 => 'San Francisco, CA', - 1415399 => 'San Francisco, CA', - 1415400 => 'San Francisco, CA', - 1415401 => 'San Francisco, CA', - 1415409 => 'San Francisco, CA', - 1415421 => 'San Francisco, CA', - 1415431 => 'San Francisco, CA', - 1415433 => 'San Francisco, CA', - 1415434 => 'San Francisco, CA', - 1415437 => 'San Francisco, CA', - 1415439 => 'San Francisco, CA', - 1415440 => 'San Francisco, CA', - 1415441 => 'San Francisco, CA', - 1415442 => 'San Francisco, CA', - 1415444 => 'San Rafael, CA', - 1415447 => 'San Francisco, CA', - 1415451 => 'San Rafael, CA', - 1415452 => 'San Francisco, CA', - 1415453 => 'San Rafael, CA', - 1415454 => 'San Rafael, CA', - 1415455 => 'San Rafael, CA', - 1415456 => 'San Rafael, CA', - 1415457 => 'San Rafael, CA', - 1415459 => 'San Rafael, CA', - 1415460 => 'San Rafael, CA', - 1415468 => 'San Francisco, CA', - 1415469 => 'San Francisco, CA', - 1415472 => 'San Rafael, CA', - 1415473 => 'San Rafael, CA', - 1415474 => 'San Francisco, CA', - 1415476 => 'San Francisco, CA', - 1415479 => 'San Rafael, CA', - 1415482 => 'San Rafael, CA', - 1415485 => 'San Rafael, CA', - 1415487 => 'San Francisco, CA', - 1415491 => 'San Rafael, CA', - 1415492 => 'San Rafael, CA', - 1415495 => 'San Francisco, CA', - 1415499 => 'San Rafael, CA', - 1415502 => 'San Francisco, CA', - 1415503 => 'San Francisco, CA', - 1415504 => 'San Francisco, CA', - 1415507 => 'San Rafael, CA', - 1415512 => 'San Francisco, CA', - 1415513 => 'San Francisco, CA', - 1415522 => 'San Francisco, CA', - 1415525 => 'San Francisco, CA', - 1415529 => 'San Francisco, CA', - 1415541 => 'San Francisco, CA', - 1415543 => 'San Francisco, CA', - 1415546 => 'San Francisco, CA', - 1415550 => 'San Francisco, CA', - 1415551 => 'San Francisco, CA', - 1415552 => 'San Francisco, CA', - 1415553 => 'San Francisco, CA', - 1415554 => 'San Francisco, CA', - 1415558 => 'San Francisco, CA', - 1415561 => 'San Francisco, CA', - 1415563 => 'San Francisco, CA', - 1415564 => 'San Francisco, CA', - 1415565 => 'San Francisco, CA', - 1415566 => 'San Francisco, CA', - 1415567 => 'San Francisco, CA', - 1415584 => 'San Francisco, CA', - 1415585 => 'San Francisco, CA', - 1415586 => 'San Francisco, CA', - 1415587 => 'San Francisco, CA', - 1415591 => 'San Francisco, CA', - 1415600 => 'San Francisco, CA', - 1415621 => 'San Francisco, CA', - 1415626 => 'San Francisco, CA', - 1415641 => 'San Francisco, CA', - 1415642 => 'San Francisco, CA', - 1415643 => 'San Francisco, CA', - 1415644 => 'San Francisco, CA', - 1415647 => 'San Francisco, CA', - 1415648 => 'San Francisco, CA', - 1415655 => 'San Francisco, CA', - 1415661 => 'San Francisco, CA', - 1415664 => 'San Francisco, CA', - 1415665 => 'San Francisco, CA', - 1415666 => 'San Francisco, CA', - 1415668 => 'San Francisco, CA', - 1415671 => 'San Francisco, CA', - 1415673 => 'San Francisco, CA', - 1415674 => 'San Francisco, CA', - 1415677 => 'San Francisco, CA', - 1415681 => 'San Francisco, CA', - 1415682 => 'San Francisco, CA', - 1415693 => 'San Francisco, CA', - 1415695 => 'San Francisco, CA', - 1415701 => 'San Francisco, CA', - 1415721 => 'San Rafael, CA', - 1415731 => 'San Francisco, CA', - 1415742 => 'San Francisco, CA', - 1415749 => 'San Francisco, CA', - 1415750 => 'San Francisco, CA', - 1415751 => 'San Francisco, CA', - 1415752 => 'San Francisco, CA', - 1415753 => 'San Francisco, CA', - 1415759 => 'San Francisco, CA', - 1415765 => 'San Francisco, CA', - 1415771 => 'San Francisco, CA', - 1415772 => 'San Francisco, CA', - 1415773 => 'San Francisco, CA', - 1415775 => 'San Francisco, CA', - 1415776 => 'San Francisco, CA', - 1415777 => 'San Francisco, CA', - 1415781 => 'San Francisco, CA', - 1415788 => 'San Francisco, CA', - 1415796 => 'San Francisco, CA', - 1415800 => 'San Francisco, CA', - 1415814 => 'San Francisco, CA', - 1415820 => 'San Francisco, CA', - 1415821 => 'San Francisco, CA', - 1415822 => 'San Francisco, CA', - 1415824 => 'San Francisco, CA', - 1415826 => 'San Francisco, CA', - 1415829 => 'San Francisco, CA', - 1415830 => 'San Francisco, CA', - 1415831 => 'San Francisco, CA', - 1415833 => 'San Francisco, CA', - 1415834 => 'San Francisco, CA', - 1415835 => 'San Francisco, CA', - 1415836 => 'San Francisco, CA', - 1415837 => 'San Francisco, CA', - 1415856 => 'San Francisco, CA', - 1415861 => 'San Francisco, CA', - 1415863 => 'San Francisco, CA', - 1415864 => 'San Francisco, CA', - 1415865 => 'San Francisco, CA', - 1415868 => 'Bolinas, CA', - 1415875 => 'San Francisco, CA', - 1415876 => 'San Francisco, CA', - 1415878 => 'Novato, CA', - 1415882 => 'San Francisco, CA', - 1415883 => 'Novato, CA', - 1415884 => 'Novato, CA', - 1415885 => 'San Francisco, CA', - 1415888 => 'Mill Valley, CA', - 1415892 => 'Novato, CA', - 1415895 => 'Novato, CA', - 1415896 => 'San Francisco, CA', - 1415897 => 'Novato, CA', - 1415898 => 'Novato, CA', - 1415899 => 'Novato, CA', - 1415920 => 'San Francisco, CA', - 1415921 => 'San Francisco, CA', - 1415922 => 'San Francisco, CA', - 1415923 => 'San Francisco, CA', - 1415924 => 'Corte Madera, CA', - 1415925 => 'Greenbrae, CA', - 1415927 => 'Corte Madera, CA', - 1415928 => 'San Francisco, CA', - 1415929 => 'San Francisco, CA', - 1415931 => 'San Francisco, CA', - 1415933 => 'San Francisco, CA', - 1415945 => 'Corte Madera, CA', - 1415954 => 'San Francisco, CA', - 1415956 => 'San Francisco, CA', - 1415957 => 'San Francisco, CA', - 1415970 => 'San Francisco, CA', - 1415974 => 'San Francisco, CA', - 1415979 => 'San Francisco, CA', - 1415981 => 'San Francisco, CA', - 1415982 => 'San Francisco, CA', - 1415983 => 'San Francisco, CA', - 1415984 => 'San Francisco, CA', - 1415986 => 'San Francisco, CA', - 1415989 => 'San Francisco, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1416.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1416.php deleted file mode 100644 index 52a6ba128..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1416.php +++ /dev/null @@ -1,239 +0,0 @@ - 'Ontario', - 1416201 => 'Etobicoke, ON', - 1416203 => 'Toronto, ON', - 1416204 => 'Toronto, ON', - 1416207 => 'Etobicoke, ON', - 1416213 => 'Etobicoke, ON', - 1416214 => 'Toronto, ON', - 1416216 => 'Toronto, ON', - 1416218 => 'North York, ON', - 1416221 => 'North York, ON', - 1416222 => 'North York, ON', - 1416223 => 'North York, ON', - 1416224 => 'North York, ON', - 1416225 => 'North York, ON', - 1416226 => 'North York, ON', - 1416227 => 'North York, ON', - 1416229 => 'North York, ON', - 1416231 => 'Etobicoke, ON', - 1416232 => 'Etobicoke, ON', - 1416233 => 'Etobicoke, ON', - 1416234 => 'Etobicoke, ON', - 1416236 => 'Etobicoke, ON', - 1416237 => 'Etobicoke, ON', - 1416239 => 'Etobicoke, ON', - 1416250 => 'North York, ON', - 1416251 => 'Etobicoke, ON', - 1416252 => 'Etobicoke, ON', - 1416253 => 'Etobicoke, ON', - 1416255 => 'Etobicoke, ON', - 1416259 => 'Etobicoke, ON', - 1416260 => 'Toronto, ON', - 1416261 => 'Scarborough, ON', - 1416264 => 'Scarborough, ON', - 1416265 => 'Scarborough, ON', - 1416266 => 'Scarborough, ON', - 1416267 => 'Scarborough, ON', - 1416269 => 'Scarborough, ON', - 1416281 => 'Scarborough, ON', - 1416282 => 'Scarborough, ON', - 1416283 => 'Scarborough, ON', - 1416284 => 'Scarborough, ON', - 1416286 => 'Scarborough, ON', - 1416287 => 'Scarborough, ON', - 1416288 => 'Scarborough, ON', - 1416289 => 'Scarborough, ON', - 1416290 => 'Scarborough, ON', - 1416291 => 'Scarborough, ON', - 1416292 => 'Scarborough, ON', - 1416293 => 'Scarborough, ON', - 1416297 => 'Scarborough, ON', - 1416298 => 'Scarborough, ON', - 1416299 => 'Scarborough, ON', - 1416304 => 'Toronto, ON', - 1416306 => 'Toronto, ON', - 1416321 => 'Scarborough, ON', - 1416322 => 'Toronto, ON', - 1416323 => 'Toronto, ON', - 1416324 => 'Toronto, ON', - 1416332 => 'Scarborough, ON', - 1416335 => 'Scarborough, ON', - 1416340 => 'Toronto, ON', - 1416348 => 'Toronto, ON', - 1416351 => 'Toronto, ON', - 1416360 => 'Toronto, ON', - 1416361 => 'Toronto, ON', - 1416362 => 'Toronto, ON', - 1416363 => 'Toronto, ON', - 1416364 => 'Toronto, ON', - 1416365 => 'Toronto, ON', - 1416366 => 'Toronto, ON', - 1416367 => 'Toronto, ON', - 1416368 => 'Toronto, ON', - 1416369 => 'Toronto, ON', - 1416385 => 'North York, ON', - 1416391 => 'North York, ON', - 1416392 => 'Toronto, ON', - 1416393 => 'Toronto, ON', - 1416398 => 'North York, ON', - 1416406 => 'Toronto, ON', - 1416408 => 'Toronto, ON', - 1416412 => 'Scarborough, ON', - 1416413 => 'Toronto, ON', - 1416431 => 'Scarborough, ON', - 1416438 => 'Scarborough, ON', - 1416439 => 'Scarborough, ON', - 1416440 => 'Toronto, ON', - 1416441 => 'North York, ON', - 1416445 => 'North York, ON', - 1416447 => 'North York, ON', - 1416449 => 'North York, ON', - 1416461 => 'Toronto, ON', - 1416462 => 'Toronto, ON', - 1416463 => 'Toronto, ON', - 1416465 => 'Toronto, ON', - 1416466 => 'Toronto, ON', - 1416469 => 'Toronto, ON', - 1416480 => 'Toronto, ON', - 1416481 => 'Toronto, ON', - 1416482 => 'Toronto, ON', - 1416483 => 'Toronto, ON', - 1416484 => 'Toronto, ON', - 1416485 => 'Toronto, ON', - 1416486 => 'Toronto, ON', - 1416487 => 'Toronto, ON', - 1416488 => 'Toronto, ON', - 1416489 => 'Toronto, ON', - 1416503 => 'Etobicoke, ON', - 1416504 => 'Toronto, ON', - 1416506 => 'Toronto, ON', - 1416510 => 'North York, ON', - 1416512 => 'North York, ON', - 1416515 => 'Toronto, ON', - 1416516 => 'Toronto, ON', - 1416530 => 'Toronto, ON', - 1416531 => 'Toronto, ON', - 1416532 => 'Toronto, ON', - 1416533 => 'Toronto, ON', - 1416534 => 'Toronto, ON', - 1416535 => 'Toronto, ON', - 1416536 => 'Toronto, ON', - 1416537 => 'Toronto, ON', - 1416538 => 'Toronto, ON', - 1416539 => 'Toronto, ON', - 1416544 => 'Toronto, ON', - 1416572 => 'Toronto, ON', - 1416585 => 'Toronto, ON', - 1416588 => 'Toronto, ON', - 1416590 => 'North York, ON', - 1416591 => 'Toronto, ON', - 1416593 => 'Toronto, ON', - 1416594 => 'Toronto, ON', - 1416595 => 'Toronto, ON', - 1416596 => 'Toronto, ON', - 1416597 => 'Toronto, ON', - 1416598 => 'Toronto, ON', - 1416599 => 'Toronto, ON', - 1416601 => 'Toronto, ON', - 1416603 => 'Toronto, ON', - 1416604 => 'Toronto, ON', - 1416609 => 'Scarborough, ON', - 1416615 => 'Scarborough, ON', - 1416620 => 'Etobicoke, ON', - 1416621 => 'Etobicoke, ON', - 1416622 => 'Etobicoke, ON', - 1416626 => 'Etobicoke, ON', - 1416630 => 'North York, ON', - 1416631 => 'North York, ON', - 1416633 => 'North York, ON', - 1416635 => 'North York, ON', - 1416636 => 'North York, ON', - 1416638 => 'North York, ON', - 1416650 => 'North York, ON', - 1416652 => 'Toronto, ON', - 1416654 => 'Toronto, ON', - 1416656 => 'Toronto, ON', - 1416658 => 'Toronto, ON', - 1416661 => 'North York, ON', - 1416663 => 'North York, ON', - 1416665 => 'North York, ON', - 1416667 => 'North York, ON', - 1416674 => 'Etobicoke, ON', - 1416675 => 'Etobicoke, ON', - 1416679 => 'Etobicoke, ON', - 1416686 => 'Toronto, ON', - 1416690 => 'Toronto, ON', - 1416691 => 'Toronto, ON', - 1416693 => 'Toronto, ON', - 1416694 => 'Toronto, ON', - 1416695 => 'Etobicoke, ON', - 1416698 => 'Toronto, ON', - 1416699 => 'Toronto, ON', - 1416701 => 'Scarborough, ON', - 1416703 => 'Toronto, ON', - 1416724 => 'Scarborough, ON', - 1416730 => 'North York, ON', - 1416733 => 'North York, ON', - 1416736 => 'North York, ON', - 1416739 => 'North York, ON', - 1416750 => 'Scarborough, ON', - 1416752 => 'Scarborough, ON', - 1416754 => 'Scarborough, ON', - 1416755 => 'Scarborough, ON', - 1416757 => 'Scarborough, ON', - 1416759 => 'Scarborough, ON', - 1416760 => 'Toronto, ON', - 1416761 => 'Toronto, ON', - 1416762 => 'Toronto, ON', - 1416763 => 'Toronto, ON', - 1416766 => 'Toronto, ON', - 1416767 => 'Toronto, ON', - 1416769 => 'Toronto, ON', - 1416777 => 'Toronto, ON', - 1416778 => 'Toronto, ON', - 1416815 => 'Toronto, ON', - 1416860 => 'Toronto, ON', - 1416861 => 'Toronto, ON', - 1416862 => 'Toronto, ON', - 1416863 => 'Toronto, ON', - 1416864 => 'Toronto, ON', - 1416865 => 'Toronto, ON', - 1416866 => 'Toronto, ON', - 1416867 => 'Toronto, ON', - 1416868 => 'Toronto, ON', - 1416869 => 'Toronto, ON', - 1416920 => 'Toronto, ON', - 1416921 => 'Toronto, ON', - 1416922 => 'Toronto, ON', - 1416923 => 'Toronto, ON', - 1416924 => 'Toronto, ON', - 1416925 => 'Toronto, ON', - 1416926 => 'Toronto, ON', - 1416927 => 'Toronto, ON', - 1416928 => 'Toronto, ON', - 1416929 => 'Toronto, ON', - 1416932 => 'Toronto, ON', - 1416934 => 'Toronto, ON', - 1416944 => 'Toronto, ON', - 1416955 => 'Toronto, ON', - 1416960 => 'Toronto, ON', - 1416961 => 'Toronto, ON', - 1416962 => 'Toronto, ON', - 1416963 => 'Toronto, ON', - 1416964 => 'Toronto, ON', - 1416966 => 'Toronto, ON', - 1416967 => 'Toronto, ON', - 1416968 => 'Toronto, ON', - 1416971 => 'Toronto, ON', - 1416972 => 'Toronto, ON', - 1416975 => 'Toronto, ON', - 1416977 => 'Toronto, ON', - 1416979 => 'Toronto, ON', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1417.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1417.php deleted file mode 100644 index 3dc1f327a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1417.php +++ /dev/null @@ -1,125 +0,0 @@ - 'Missouri', - 1417206 => 'Joplin, MO', - 1417223 => 'Pineville, MO', - 1417235 => 'Monett, MO', - 1417236 => 'Monett, MO', - 1417239 => 'Branson, MO', - 1417255 => 'West Plains, MO', - 1417256 => 'West Plains, MO', - 1417257 => 'West Plains, MO', - 1417264 => 'Thayer, MO', - 1417269 => 'Springfield, MO', - 1417272 => 'Reeds Spring, MO', - 1417276 => 'Stockton, MO', - 1417326 => 'Bolivar, MO', - 1417332 => 'Branson, MO', - 1417334 => 'Branson, MO', - 1417335 => 'Branson, MO', - 1417336 => 'Branson, MO', - 1417337 => 'Branson, MO', - 1417338 => 'Branson, MO', - 1417339 => 'Branson, MO', - 1417345 => 'Buffalo, MO', - 1417347 => 'Joplin, MO', - 1417358 => 'Carthage, MO', - 1417359 => 'Carthage, MO', - 1417395 => 'Rich Hill, MO', - 1417429 => 'Springfield, MO', - 1417443 => 'Highlandville, MO', - 1417448 => 'Nevada, MO', - 1417451 => 'Neosho, MO', - 1417455 => 'Neosho, MO', - 1417466 => 'Mount Vernon, MO', - 1417468 => 'Marshfield, MO', - 1417469 => 'Willow Springs, MO', - 1417472 => 'Granby, MO', - 1417475 => 'Noel, MO', - 1417476 => 'Pierce City, MO', - 1417485 => 'Ozark, MO', - 1417501 => 'Springfield, MO', - 1417532 => 'Lebanon, MO', - 1417533 => 'Lebanon, MO', - 1417546 => 'Forsyth, MO', - 1417548 => 'Sarcoxie, MO', - 1417553 => 'Joplin, MO', - 1417581 => 'Ozark, MO', - 1417582 => 'Ozark, MO', - 1417588 => 'Lebanon, MO', - 1417623 => 'Joplin, MO', - 1417624 => 'Joplin, MO', - 1417625 => 'Joplin, MO', - 1417626 => 'Joplin, MO', - 1417627 => 'Joplin, MO', - 1417637 => 'Greenfield, MO', - 1417646 => 'Osceola, MO', - 1417649 => 'Carl Junction, MO', - 1417659 => 'Joplin, MO', - 1417667 => 'Nevada, MO', - 1417673 => 'Webb City, MO', - 1417678 => 'Aurora, MO', - 1417679 => 'Gainesville, MO', - 1417682 => 'Lamar, MO', - 1417683 => 'Ava, MO', - 1417723 => 'Crane, MO', - 1417724 => 'Nixa, MO', - 1417725 => 'Nixa, MO', - 1417732 => 'Republic, MO', - 1417736 => 'Strafford, MO', - 1417739 => 'Kimberling City, MO', - 1417741 => 'Hartville, MO', - 1417742 => 'Willard, MO', - 1417745 => 'Hermitage, MO', - 1417753 => 'Rogersville, MO', - 1417759 => 'Fair Grove, MO', - 1417776 => 'Seneca, MO', - 1417777 => 'Bolivar, MO', - 1417778 => 'Alton, MO', - 1417781 => 'Joplin, MO', - 1417782 => 'Joplin, MO', - 1417820 => 'Springfield, MO', - 1417823 => 'Springfield, MO', - 1417831 => 'Springfield, MO', - 1417832 => 'Springfield, MO', - 1417833 => 'Springfield, MO', - 1417845 => 'Anderson, MO', - 1417847 => 'Cassville, MO', - 1417848 => 'Springfield, MO', - 1417858 => 'Shell Knob, MO', - 1417859 => 'Marshfield, MO', - 1417861 => 'Springfield, MO', - 1417862 => 'Springfield, MO', - 1417863 => 'Springfield, MO', - 1417864 => 'Springfield, MO', - 1417865 => 'Springfield, MO', - 1417866 => 'Springfield, MO', - 1417868 => 'Springfield, MO', - 1417869 => 'Springfield, MO', - 1417875 => 'Springfield, MO', - 1417876 => 'El Dorado Spgs, MO', - 1417877 => 'Springfield, MO', - 1417880 => 'Springfield, MO', - 1417881 => 'Springfield, MO', - 1417882 => 'Springfield, MO', - 1417883 => 'Springfield, MO', - 1417885 => 'Springfield, MO', - 1417886 => 'Springfield, MO', - 1417887 => 'Springfield, MO', - 1417888 => 'Springfield, MO', - 1417889 => 'Springfield, MO', - 1417890 => 'Springfield, MO', - 1417895 => 'Springfield, MO', - 1417924 => 'Mansfield, MO', - 1417926 => 'Mountain Grove, MO', - 1417932 => 'Summersville, MO', - 1417934 => 'Mountain View, MO', - 1417935 => 'Seymour, MO', - 1417962 => 'Cabool, MO', - 1417967 => 'Houston, MO', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1418.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1418.php deleted file mode 100644 index 88fa428e6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1418.php +++ /dev/null @@ -1,159 +0,0 @@ - 'Quebec', - 1418226 => 'Saint-Georges, QC', - 1418227 => 'Saint-Georges, QC', - 1418228 => 'Saint-Georges, QC', - 1418233 => 'Les Escoumins, QC', - 1418247 => 'L\'Islet, QC', - 1418248 => 'Montmagny, QC', - 1418253 => 'Vallée-Jonction, QC', - 1418263 => 'Quebec City, QC', - 1418266 => 'Quebec City, QC', - 1418269 => 'Gaspé, QC', - 1418274 => 'Normandin, QC', - 1418275 => 'Roberval, QC', - 1418285 => 'Donnacona, QC', - 1418286 => 'Portneuf, QC', - 1418287 => 'Fermont, QC', - 1418296 => 'Baie-Comeau, QC', - 1418325 => 'Sainte-Anne-de-la-Pérade, QC', - 1418332 => 'Thetford Mines, QC', - 1418335 => 'Thetford Mines, QC', - 1418337 => 'Saint-Raymond, QC', - 1418338 => 'Thetford Mines, QC', - 1418343 => 'Saint-Bruno, QC', - 1418349 => 'Métabetchouan-Lac-à-la-Croix, QC', - 1418364 => 'Carleton, QC', - 1418365 => 'St-Tite, QC', - 1418368 => 'Gaspé, QC', - 1418380 => 'Quebec City, QC', - 1418385 => 'Grande-Rivière, QC', - 1418386 => 'Sainte-Marie, QC', - 1418387 => 'Sainte-Marie, QC', - 1418392 => 'New Richmond, QC', - 1418397 => 'Saint-Joseph-de-Beauce, QC', - 1418423 => 'Thetford Mines, QC', - 1418426 => 'Tring-Jonction, QC', - 1418427 => 'East Broughton, QC', - 1418428 => 'Saint-Ferdinand, QC', - 1418435 => 'Baie-Saint-Paul, QC', - 1418439 => 'Clermont, QC', - 1418449 => 'Disraeli, QC', - 1418459 => 'La Guadeloupe, QC', - 1418480 => 'Alma, QC', - 1418484 => 'Saint-Éphrem-de-Beauce, QC', - 1418486 => 'Lambton, QC', - 1418522 => 'Quebec City, QC', - 1418523 => 'Quebec City, QC', - 1418524 => 'Quebec City, QC', - 1418525 => 'Quebec City, QC', - 1418527 => 'Quebec City, QC', - 1418529 => 'Quebec City, QC', - 1418534 => 'Bonaventure, QC', - 1418538 => 'Havre-Saint-Pierre, QC', - 1418542 => 'Jonquière, QC', - 1418543 => 'Chicoutimi, QC', - 1418544 => 'La Baie, QC', - 1418545 => 'Chicoutimi, QC', - 1418547 => 'Jonquière, QC', - 1418548 => 'Jonquière, QC', - 1418549 => 'Chicoutimi, QC', - 1418562 => 'Matane, QC', - 1418566 => 'Matane, QC', - 1418567 => 'Chute-aux-Outardes, QC', - 1418587 => 'Forestville, QC', - 1418589 => 'Baie-Comeau, QC', - 1418602 => 'Chicoutimi, QC', - 1418603 => 'Levis, QC', - 1418614 => 'Quebec City, QC', - 1418621 => 'Quebec City, QC', - 1418622 => 'Quebec City, QC', - 1418623 => 'Quebec City, QC', - 1418624 => 'Quebec City, QC', - 1418625 => 'Lac-Etchemin, QC', - 1418626 => 'Quebec City, QC', - 1418627 => 'Quebec City, QC', - 1418628 => 'Quebec City, QC', - 1418629 => 'Amqui, QC', - 1418641 => 'Quebec City, QC', - 1418647 => 'Quebec City, QC', - 1418648 => 'Quebec City, QC', - 1418649 => 'Quebec City, QC', - 1418660 => 'Quebec City, QC', - 1418661 => 'Quebec City, QC', - 1418662 => 'Alma, QC', - 1418665 => 'La Malbaie, QC', - 1418667 => 'Quebec City, QC', - 1418668 => 'Alma, QC', - 1418669 => 'Alma, QC', - 1418673 => 'Saint-Honoré, QC', - 1418679 => 'St-Felicien, QC', - 1418681 => 'Quebec City, QC', - 1418682 => 'Quebec City, QC', - 1418683 => 'Quebec City, QC', - 1418686 => 'Quebec City, QC', - 1418687 => 'Quebec City, QC', - 1418688 => 'Quebec City, QC', - 1418689 => 'Chandler, QC', - 1418690 => 'Chicoutimi, QC', - 1418692 => 'Quebec City, QC', - 1418693 => 'Chicoutimi, QC', - 1418694 => 'Quebec City, QC', - 1418695 => 'Jonquière, QC', - 1418696 => 'Chicoutimi, QC', - 1418698 => 'Chicoutimi, QC', - 1418704 => 'Quebec City, QC', - 1418721 => 'Rimouski, QC', - 1418722 => 'Rimouski, QC', - 1418723 => 'Rimouski, QC', - 1418724 => 'Rimouski, QC', - 1418725 => 'Rimouski, QC', - 1418736 => 'Le Bic, QC', - 1418745 => 'Chapais, QC', - 1418748 => 'Chibougamau, QC', - 1418756 => 'Causapscal, QC', - 1418759 => 'Maria, QC', - 1418763 => 'Sainte-Anne-des-Monts, QC', - 1418766 => 'Port-Cartier, QC', - 1418774 => 'Beauceville, QC', - 1418775 => 'Mont-Joli, QC', - 1418780 => 'Quebec City, QC', - 1418781 => 'Quebec City, QC', - 1418782 => 'Percé, QC', - 1418824 => 'Château-Richer, QC', - 1418827 => 'Sainte-Anne-de-Beaupré, QC', - 1418832 => 'Charny, QC', - 1418833 => 'Levis, QC', - 1418835 => 'Levis, QC', - 1418837 => 'Levis, QC', - 1418838 => 'Levis, QC', - 1418841 => 'Quebec City, QC', - 1418848 => 'Stoneham, QC', - 1418849 => 'Quebec City, QC', - 1418851 => 'Trois-Pistoles, QC', - 1418853 => 'Degelis, QC', - 1418856 => 'La Pocatière, QC', - 1418860 => 'Rivière-du-Loup, QC', - 1418862 => 'Rivière-du-Loup, QC', - 1418863 => 'Rivière-du-Loup, QC', - 1418867 => 'Rivière-du-Loup, QC', - 1418868 => 'Rivière-du-Loup, QC', - 1418871 => 'Quebec City, QC', - 1418873 => 'Pont-Rouge, QC', - 1418877 => 'Quebec City, QC', - 1418878 => 'Saint-Augustin-de-Desmaures, QC', - 1418881 => 'St-Apollinaire, QC', - 1418885 => 'St-Anselme, QC', - 1418888 => 'St-Agapit, QC', - 1418914 => 'Quebec City, QC', - 1418948 => 'Quebec City, QC', - 1418962 => 'Sept-Iles, QC', - 1418968 => 'Sept-Iles, QC', - 1418977 => 'Quebec City, QC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1419.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1419.php deleted file mode 100644 index c7eb91548..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1419.php +++ /dev/null @@ -1,210 +0,0 @@ - 'Ohio', - 1419207 => 'Ashland, OH', - 1419213 => 'Toledo, OH', - 1419221 => 'Lima, OH', - 1419222 => 'Lima, OH', - 1419223 => 'Lima, OH', - 1419224 => 'Lima, OH', - 1419225 => 'Lima, OH', - 1419226 => 'Lima, OH', - 1419227 => 'Lima, OH', - 1419228 => 'Lima, OH', - 1419229 => 'Lima, OH', - 1419232 => 'Van Wert, OH', - 1419238 => 'Van Wert, OH', - 1419241 => 'Toledo, OH', - 1419242 => 'Toledo, OH', - 1419243 => 'Toledo, OH', - 1419244 => 'Toledo, OH', - 1419245 => 'Toledo, OH', - 1419246 => 'Toledo, OH', - 1419251 => 'Toledo, OH', - 1419253 => 'Marengo, OH', - 1419255 => 'Toledo, OH', - 1419257 => 'North Baltimore, OH', - 1419258 => 'Antwerp, OH', - 1419259 => 'Toledo, OH', - 1419278 => 'Deshler, OH', - 1419281 => 'Ashland, OH', - 1419285 => 'Put-in-Bay, OH', - 1419287 => 'Pemberville, OH', - 1419289 => 'Ashland, OH', - 1419291 => 'Toledo, OH', - 1419293 => 'McComb, OH', - 1419294 => 'Upper Sandusky, OH', - 1419298 => 'Edgerton, OH', - 1419331 => 'Lima, OH', - 1419332 => 'Fremont, OH', - 1419333 => 'Fremont, OH', - 1419334 => 'Fremont, OH', - 1419335 => 'Wauseon, OH', - 1419337 => 'Wauseon, OH', - 1419339 => 'Elida, OH', - 1419342 => 'Shelby, OH', - 1419347 => 'Shelby, OH', - 1419352 => 'Bowling Green, OH', - 1419353 => 'Bowling Green, OH', - 1419354 => 'Bowling Green, OH', - 1419355 => 'Fremont, OH', - 1419358 => 'Bluffton, OH', - 1419375 => 'Fort Recovery, OH', - 1419380 => 'Toledo, OH', - 1419381 => 'Toledo, OH', - 1419382 => 'Toledo, OH', - 1419383 => 'Toledo, OH', - 1419385 => 'Toledo, OH', - 1419389 => 'Toledo, OH', - 1419394 => 'St. Marys, OH', - 1419396 => 'Carey, OH', - 1419399 => 'Paulding, OH', - 1419420 => 'Findlay, OH', - 1419422 => 'Findlay, OH', - 1419423 => 'Findlay, OH', - 1419424 => 'Findlay, OH', - 1419425 => 'Findlay, OH', - 1419427 => 'Findlay, OH', - 1419433 => 'Huron, OH', - 1419435 => 'Fostoria, OH', - 1419436 => 'Fostoria, OH', - 1419443 => 'Tiffin, OH', - 1419445 => 'Archbold, OH', - 1419446 => 'Archbold, OH', - 1419447 => 'Tiffin, OH', - 1419448 => 'Tiffin, OH', - 1419453 => 'Ottoville, OH', - 1419462 => 'Galion, OH', - 1419465 => 'Monroeville, OH', - 1419468 => 'Galion, OH', - 1419471 => 'Toledo, OH', - 1419472 => 'Toledo, OH', - 1419473 => 'Toledo, OH', - 1419474 => 'Toledo, OH', - 1419475 => 'Toledo, OH', - 1419476 => 'Toledo, OH', - 1419478 => 'Toledo, OH', - 1419479 => 'Toledo, OH', - 1419483 => 'Bellevue, OH', - 1419485 => 'Montpelier, OH', - 1419499 => 'Milan, OH', - 1419502 => 'Sandusky, OH', - 1419517 => 'Sylvania, OH', - 1419522 => 'Mansfield, OH', - 1419523 => 'Ottawa, OH', - 1419524 => 'Mansfield, OH', - 1419525 => 'Mansfield, OH', - 1419526 => 'Mansfield, OH', - 1419529 => 'Mansfield, OH', - 1419531 => 'Toledo, OH', - 1419532 => 'Kalida, OH', - 1419534 => 'Toledo, OH', - 1419535 => 'Toledo, OH', - 1419536 => 'Toledo, OH', - 1419537 => 'Toledo, OH', - 1419542 => 'Hicksville, OH', - 1419547 => 'Clyde, OH', - 1419557 => 'Sandusky, OH', - 1419562 => 'Bucyrus, OH', - 1419568 => 'Waynesfield, OH', - 1419578 => 'Toledo, OH', - 1419584 => 'Celina, OH', - 1419586 => 'Celina, OH', - 1419589 => 'Mansfield, OH', - 1419592 => 'Napoleon, OH', - 1419599 => 'Napoleon, OH', - 1419609 => 'Sandusky, OH', - 1419621 => 'Sandusky, OH', - 1419624 => 'Sandusky, OH', - 1419625 => 'Sandusky, OH', - 1419626 => 'Sandusky, OH', - 1419627 => 'Sandusky, OH', - 1419628 => 'Minster, OH', - 1419629 => 'New Bremen, OH', - 1419633 => 'Bryan, OH', - 1419634 => 'Ada, OH', - 1419636 => 'Bryan, OH', - 1419637 => 'Gibsonburg, OH', - 1419647 => 'Spencerville, OH', - 1419659 => 'Columbus Grove, OH', - 1419660 => 'Norwalk, OH', - 1419663 => 'Norwalk, OH', - 1419668 => 'Norwalk, OH', - 1419673 => 'Kenton, OH', - 1419674 => 'Kenton, OH', - 1419675 => 'Kenton, OH', - 1419678 => 'Coldwater, OH', - 1419683 => 'Crestline, OH', - 1419684 => 'Castalia, OH', - 1419690 => 'Oregon, OH', - 1419692 => 'Delphos, OH', - 1419695 => 'Delphos, OH', - 1419696 => 'Oregon, OH', - 1419697 => 'Oregon, OH', - 1419698 => 'Oregon, OH', - 1419720 => 'Toledo, OH', - 1419724 => 'Toledo, OH', - 1419725 => 'Toledo, OH', - 1419726 => 'Toledo, OH', - 1419727 => 'Toledo, OH', - 1419729 => 'Toledo, OH', - 1419732 => 'Port Clinton, OH', - 1419734 => 'Port Clinton, OH', - 1419738 => 'Wapakoneta, OH', - 1419739 => 'Wapakoneta, OH', - 1419747 => 'Mansfield, OH', - 1419756 => 'Mansfield, OH', - 1419774 => 'Mansfield, OH', - 1419775 => 'Mansfield, OH', - 1419782 => 'Defiance, OH', - 1419784 => 'Defiance, OH', - 1419794 => 'Maumee, OH', - 1419797 => 'Port Clinton, OH', - 1419798 => 'Lakeside Marblhd, OH', - 1419822 => 'Delta, OH', - 1419824 => 'Sylvania, OH', - 1419825 => 'Swanton, OH', - 1419826 => 'Swanton, OH', - 1419832 => 'Grand Rapids, OH', - 1419837 => 'Perrysburg, OH', - 1419841 => 'Toledo, OH', - 1419842 => 'Toledo, OH', - 1419843 => 'Toledo, OH', - 1419849 => 'Woodville, OH', - 1419855 => 'Genoa, OH', - 1419862 => 'Elmore, OH', - 1419864 => 'Cardington, OH', - 1419872 => 'Perrysburg, OH', - 1419873 => 'Perrysburg, OH', - 1419874 => 'Perrysburg, OH', - 1419877 => 'Whitehouse, OH', - 1419878 => 'Waterville, OH', - 1419882 => 'Sylvania, OH', - 1419884 => 'Lexington, OH', - 1419885 => 'Sylvania, OH', - 1419886 => 'Bellville, OH', - 1419887 => 'Maumee, OH', - 1419891 => 'Maumee, OH', - 1419893 => 'Maumee, OH', - 1419897 => 'Maumee, OH', - 1419898 => 'Oak Harbor, OH', - 1419924 => 'West Unity, OH', - 1419925 => 'Maria Stein, OH', - 1419927 => 'Sycamore, OH', - 1419929 => 'New London, OH', - 1419931 => 'Perrysburg, OH', - 1419933 => 'Willard, OH', - 1419935 => 'Willard, OH', - 1419943 => 'Leipsic, OH', - 1419946 => 'Mount Gilead, OH', - 1419947 => 'Mount Gilead, OH', - 1419991 => 'Lima, OH', - 1419994 => 'Loudonville, OH', - 1419996 => 'Lima, OH', - 1419999 => 'Lima, OH', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1423.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1423.php deleted file mode 100644 index 564e30cd4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1423.php +++ /dev/null @@ -1,168 +0,0 @@ - 'Tennessee', - 1423209 => 'Chattanooga, TN', - 1423224 => 'Kingsport, TN', - 1423230 => 'Kingsport, TN', - 1423232 => 'Johnson City, TN', - 1423235 => 'Bulls Gap, TN', - 1423238 => 'Ooltewah, TN', - 1423239 => 'Kingsport, TN', - 1423245 => 'Kingsport, TN', - 1423246 => 'Kingsport, TN', - 1423247 => 'Kingsport, TN', - 1423253 => 'Tellico Plains, TN', - 1423262 => 'Johnson City, TN', - 1423263 => 'Etowah, TN', - 1423265 => 'Chattanooga, TN', - 1423266 => 'Chattanooga, TN', - 1423267 => 'Chattanooga, TN', - 1423272 => 'Rogersville, TN', - 1423279 => 'Blountville, TN', - 1423282 => 'Johnson City, TN', - 1423283 => 'Johnson City, TN', - 1423286 => 'Oneida, TN', - 1423288 => 'Kingsport, TN', - 1423296 => 'Chattanooga, TN', - 1423305 => 'Chattanooga, TN', - 1423307 => 'Morristown, TN', - 1423317 => 'Morristown, TN', - 1423318 => 'Morristown, TN', - 1423323 => 'Blountville, TN', - 1423332 => 'Soddy-Daisy, TN', - 1423334 => 'Decatur, TN', - 1423337 => 'Sweetwater, TN', - 1423338 => 'Benton, TN', - 1423339 => 'Cleveland, TN', - 1423343 => 'Kingsport, TN', - 1423344 => 'Harrison, TN', - 1423345 => 'Surgoinsville, TN', - 1423346 => 'Wartburg, TN', - 1423349 => 'Kingsport, TN', - 1423357 => 'Church Hill, TN', - 1423365 => 'Spring City, TN', - 1423378 => 'Kingsport, TN', - 1423392 => 'Kingsport, TN', - 1423396 => 'Ooltewah, TN', - 1423422 => 'Mosheim, TN', - 1423431 => 'Johnson City, TN', - 1423434 => 'Johnson City, TN', - 1423439 => 'Johnson City, TN', - 1423442 => 'Madisonville, TN', - 1423447 => 'Pikeville, TN', - 1423451 => 'Soddy-Daisy, TN', - 1423468 => 'Chattanooga, TN', - 1423472 => 'Cleveland, TN', - 1423473 => 'Cleveland, TN', - 1423475 => 'Chattanooga, TN', - 1423476 => 'Cleveland, TN', - 1423477 => 'Gray, TN', - 1423478 => 'Cleveland, TN', - 1423479 => 'Cleveland, TN', - 1423485 => 'Chattanooga, TN', - 1423487 => 'Cosby, TN', - 1423490 => 'Chattanooga, TN', - 1423493 => 'Chattanooga, TN', - 1423495 => 'Chattanooga, TN', - 1423496 => 'Copperhill, TN', - 1423499 => 'Chattanooga, TN', - 1423508 => 'Chattanooga, TN', - 1423510 => 'Chattanooga, TN', - 1423521 => 'Chattanooga, TN', - 1423531 => 'Chattanooga, TN', - 1423538 => 'Bluff City, TN', - 1423542 => 'Elizabethton, TN', - 1423543 => 'Elizabethton, TN', - 1423547 => 'Elizabethton, TN', - 1423553 => 'Chattanooga, TN', - 1423559 => 'Cleveland, TN', - 1423562 => 'La Follette, TN', - 1423566 => 'La Follette, TN', - 1423569 => 'Oneida, TN', - 1423570 => 'Dayton, TN', - 1423578 => 'Kingsport, TN', - 1423581 => 'Morristown, TN', - 1423585 => 'Morristown, TN', - 1423586 => 'Morristown, TN', - 1423587 => 'Morristown, TN', - 1423610 => 'Johnson City, TN', - 1423613 => 'Newport, TN', - 1423614 => 'Cleveland, TN', - 1423622 => 'Chattanooga, TN', - 1423623 => 'Newport, TN', - 1423624 => 'Chattanooga, TN', - 1423625 => 'Newport, TN', - 1423629 => 'Chattanooga, TN', - 1423634 => 'Chattanooga, TN', - 1423636 => 'Greeneville, TN', - 1423638 => 'Greeneville, TN', - 1423639 => 'Greeneville, TN', - 1423643 => 'Chattanooga, TN', - 1423648 => 'Chattanooga, TN', - 1423652 => 'Bristol, TN', - 1423658 => 'Whitwell, TN', - 1423663 => 'Huntsville, TN', - 1423664 => 'Chattanooga, TN', - 1423697 => 'Chattanooga, TN', - 1423698 => 'Chattanooga, TN', - 1423702 => 'Chattanooga, TN', - 1423710 => 'Chattanooga, TN', - 1423725 => 'Hampton, TN', - 1423727 => 'Mountain City, TN', - 1423728 => 'Cleveland, TN', - 1423733 => 'Sneedville, TN', - 1423743 => 'Erwin, TN', - 1423744 => 'Athens, TN', - 1423745 => 'Athens, TN', - 1423746 => 'Athens, TN', - 1423752 => 'Chattanooga, TN', - 1423753 => 'Jonesborough, TN', - 1423756 => 'Chattanooga, TN', - 1423757 => 'Chattanooga, TN', - 1423764 => 'Bristol, TN', - 1423765 => 'Kingsport, TN', - 1423775 => 'Dayton, TN', - 1423778 => 'Chattanooga, TN', - 1423784 => 'Jellico, TN', - 1423787 => 'Greeneville, TN', - 1423790 => 'Cleveland, TN', - 1423794 => 'Johnson City, TN', - 1423798 => 'Greeneville, TN', - 1423821 => 'Chattanooga, TN', - 1423825 => 'Chattanooga, TN', - 1423837 => 'South Pittsburg, TN', - 1423842 => 'Hixson, TN', - 1423843 => 'Hixson, TN', - 1423844 => 'Bristol, TN', - 1423847 => 'Hixson, TN', - 1423854 => 'Johnson City, TN', - 1423855 => 'Chattanooga, TN', - 1423857 => 'Kingsport, TN', - 1423867 => 'Chattanooga, TN', - 1423869 => 'Harrogate, TN', - 1423878 => 'Bristol, TN', - 1423884 => 'Vonore, TN', - 1423886 => 'Signal Mountain, TN', - 1423892 => 'Chattanooga, TN', - 1423893 => 'Chattanooga, TN', - 1423894 => 'Chattanooga, TN', - 1423899 => 'Chattanooga, TN', - 1423913 => 'Jonesborough, TN', - 1423915 => 'Johnson City, TN', - 1423921 => 'Rogersville, TN', - 1423926 => 'Johnson City, TN', - 1423928 => 'Johnson City, TN', - 1423929 => 'Johnson City, TN', - 1423942 => 'Jasper, TN', - 1423949 => 'Dunlap, TN', - 1423954 => 'Chattanooga, TN', - 1423968 => 'Bristol, TN', - 1423975 => 'Johnson City, TN', - 1423979 => 'Johnson City, TN', - 1423989 => 'Bristol, TN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1424.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1424.php deleted file mode 100644 index 5c7b6467d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1424.php +++ /dev/null @@ -1,9 +0,0 @@ - 'California', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1425.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1425.php deleted file mode 100644 index e839275af..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1425.php +++ /dev/null @@ -1,116 +0,0 @@ - 'Washington', - 1425204 => 'Renton, WA', - 1425212 => 'Everett, WA', - 1425222 => 'Fall City, WA', - 1425226 => 'Renton, WA', - 1425227 => 'Renton, WA', - 1425228 => 'Renton, WA', - 1425235 => 'Renton, WA', - 1425252 => 'Everett, WA', - 1425255 => 'Renton, WA', - 1425257 => 'Everett, WA', - 1425258 => 'Everett, WA', - 1425259 => 'Everett, WA', - 1425261 => 'Everett, WA', - 1425264 => 'Renton, WA', - 1425271 => 'Renton, WA', - 1425277 => 'Renton, WA', - 1425282 => 'Renton, WA', - 1425289 => 'Bellevue, WA', - 1425290 => 'Everett, WA', - 1425303 => 'Everett, WA', - 1425313 => 'Issaquah, WA', - 1425316 => 'Everett, WA', - 1425317 => 'Everett, WA', - 1425333 => 'Carnation, WA', - 1425334 => 'Lake Stevens, WA', - 1425335 => 'Lake Stevens, WA', - 1425339 => 'Everett, WA', - 1425347 => 'Everett, WA', - 1425348 => 'Everett, WA', - 1425353 => 'Everett, WA', - 1425355 => 'Everett, WA', - 1425369 => 'Issaquah, WA', - 1425373 => 'Bellevue, WA', - 1425374 => 'Everett, WA', - 1425377 => 'Lake Stevens, WA', - 1425388 => 'Everett, WA', - 1425391 => 'Issaquah, WA', - 1425392 => 'Issaquah, WA', - 1425394 => 'Issaquah, WA', - 1425396 => 'Snoqualmie, WA', - 1425397 => 'Lake Stevens, WA', - 1425401 => 'Bellevue, WA', - 1425413 => 'Maple Valley, WA', - 1425427 => 'Issaquah, WA', - 1425430 => 'Renton, WA', - 1425432 => 'Maple Valley, WA', - 1425438 => 'Everett, WA', - 1425450 => 'Bellevue, WA', - 1425451 => 'Bellevue, WA', - 1425452 => 'Bellevue, WA', - 1425453 => 'Bellevue, WA', - 1425454 => 'Bellevue, WA', - 1425455 => 'Bellevue, WA', - 1425462 => 'Bellevue, WA', - 1425467 => 'Bellevue, WA', - 1425493 => 'Mukilteo, WA', - 1425497 => 'Redmond, WA', - 1425502 => 'Bellevue, WA', - 1425513 => 'Everett, WA', - 1425556 => 'Redmond, WA', - 1425557 => 'Issaquah, WA', - 1425558 => 'Redmond, WA', - 1425562 => 'Bellevue, WA', - 1425576 => 'Kirkland, WA', - 1425614 => 'Bellevue, WA', - 1425635 => 'Bellevue, WA', - 1425637 => 'Bellevue, WA', - 1425640 => 'Edmonds, WA', - 1425641 => 'Bellevue, WA', - 1425643 => 'Bellevue, WA', - 1425644 => 'Bellevue, WA', - 1425646 => 'Bellevue, WA', - 1425649 => 'Bellevue, WA', - 1425653 => 'Bellevue, WA', - 1425656 => 'Renton, WA', - 1425687 => 'Renton, WA', - 1425688 => 'Bellevue, WA', - 1425712 => 'Lynnwood, WA', - 1425739 => 'Kirkland, WA', - 1425741 => 'Lynnwood, WA', - 1425742 => 'Lynnwood, WA', - 1425743 => 'Lynnwood, WA', - 1425746 => 'Bellevue, WA', - 1425747 => 'Bellevue, WA', - 1425787 => 'Lynnwood, WA', - 1425788 => 'Duvall, WA', - 1425793 => 'Renton, WA', - 1425814 => 'Kirkland, WA', - 1425820 => 'Kirkland, WA', - 1425821 => 'Kirkland, WA', - 1425822 => 'Kirkland, WA', - 1425823 => 'Kirkland, WA', - 1425825 => 'Kirkland, WA', - 1425827 => 'Kirkland, WA', - 1425828 => 'Kirkland, WA', - 1425831 => 'North Bend, WA', - 1425837 => 'Issaquah, WA', - 1425867 => 'Redmond, WA', - 1425869 => 'Redmond, WA', - 1425881 => 'Redmond, WA', - 1425882 => 'Redmond, WA', - 1425883 => 'Redmond, WA', - 1425888 => 'North Bend, WA', - 1425889 => 'Kirkland, WA', - 1425899 => 'Kirkland, WA', - 1425957 => 'Bellevue, WA', - 1425990 => 'Bellevue, WA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1430.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1430.php deleted file mode 100644 index fe04dc4e5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1430.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Texas', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1431.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1431.php deleted file mode 100644 index 4f6dc337b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1431.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Manitoba', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1432.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1432.php deleted file mode 100644 index a6dce8007..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1432.php +++ /dev/null @@ -1,66 +0,0 @@ - 'Texas', - 1432218 => 'Midland, TX', - 1432229 => 'Presidio, TX', - 1432262 => 'Midland, TX', - 1432263 => 'Big Spring, TX', - 1432264 => 'Big Spring, TX', - 1432267 => 'Big Spring, TX', - 1432272 => 'Odessa, TX', - 1432283 => 'Van Horn, TX', - 1432332 => 'Odessa, TX', - 1432333 => 'Odessa, TX', - 1432334 => 'Odessa, TX', - 1432335 => 'Odessa, TX', - 1432336 => 'Fort Stockton, TX', - 1432337 => 'Odessa, TX', - 1432362 => 'Odessa, TX', - 1432363 => 'Odessa, TX', - 1432366 => 'Odessa, TX', - 1432367 => 'Odessa, TX', - 1432368 => 'Odessa, TX', - 1432381 => 'Odessa, TX', - 1432385 => 'Odessa, TX', - 1432426 => 'Fort Davis, TX', - 1432445 => 'Pecos, TX', - 1432447 => 'Pecos, TX', - 1432520 => 'Midland, TX', - 1432522 => 'Midland, TX', - 1432523 => 'Andrews, TX', - 1432524 => 'Andrews, TX', - 1432550 => 'Odessa, TX', - 1432552 => 'Odessa, TX', - 1432558 => 'Crane, TX', - 1432561 => 'Odessa, TX', - 1432570 => 'Midland, TX', - 1432580 => 'Odessa, TX', - 1432582 => 'Odessa, TX', - 1432586 => 'Kermit, TX', - 1432614 => 'Odessa, TX', - 1432617 => 'Midland, TX', - 1432618 => 'Midland, TX', - 1432620 => 'Midland, TX', - 1432640 => 'Odessa, TX', - 1432652 => 'McCamey, TX', - 1432682 => 'Midland, TX', - 1432683 => 'Midland, TX', - 1432684 => 'Midland, TX', - 1432685 => 'Midland, TX', - 1432686 => 'Midland, TX', - 1432687 => 'Midland, TX', - 1432689 => 'Midland, TX', - 1432694 => 'Midland, TX', - 1432697 => 'Midland, TX', - 1432699 => 'Midland, TX', - 1432729 => 'Marfa, TX', - 1432756 => 'Stanton, TX', - 1432758 => 'Seminole, TX', - 1432837 => 'Alpine, TX', - 1432943 => 'Monahans, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1434.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1434.php deleted file mode 100644 index 0799fce6e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1434.php +++ /dev/null @@ -1,99 +0,0 @@ - 'Virginia', - 1434200 => 'Lynchburg, VA', - 1434202 => 'Charlottesville, VA', - 1434220 => 'Charlottesville, VA', - 1434237 => 'Lynchburg, VA', - 1434239 => 'Lynchburg, VA', - 1434243 => 'Charlottesville, VA', - 1434244 => 'Charlottesville, VA', - 1434245 => 'Charlottesville, VA', - 1434246 => 'Stony Creek, VA', - 1434263 => 'Lovingston, VA', - 1434286 => 'Scottsville, VA', - 1434292 => 'Blackstone, VA', - 1434293 => 'Charlottesville, VA', - 1434295 => 'Charlottesville, VA', - 1434296 => 'Charlottesville, VA', - 1434315 => 'Farmville, VA', - 1434316 => 'Lynchburg, VA', - 1434324 => 'Hurt, VA', - 1434332 => 'Rustburg, VA', - 1434336 => 'Emporia, VA', - 1434348 => 'Emporia, VA', - 1434352 => 'Appomattox, VA', - 1434369 => 'Altavista, VA', - 1434372 => 'Chase City, VA', - 1434374 => 'Clarksville, VA', - 1434376 => 'Brookneal, VA', - 1434384 => 'Lynchburg, VA', - 1434385 => 'Lynchburg, VA', - 1434392 => 'Farmville, VA', - 1434432 => 'Chatham, VA', - 1434447 => 'South Hill, VA', - 1434455 => 'Lynchburg, VA', - 1434476 => 'Halifax, VA', - 1434485 => 'Lynchburg, VA', - 1434517 => 'South Boston, VA', - 1434525 => 'Forest, VA', - 1434528 => 'Lynchburg, VA', - 1434534 => 'Forest, VA', - 1434542 => 'Charlotte Ct Hse, VA', - 1434572 => 'South Boston, VA', - 1434575 => 'South Boston, VA', - 1434582 => 'Lynchburg, VA', - 1434589 => 'Palmyra, VA', - 1434634 => 'Emporia, VA', - 1434636 => 'Bracey, VA', - 1434645 => 'Crewe, VA', - 1434654 => 'Charlottesville, VA', - 1434656 => 'Gretna, VA', - 1434676 => 'Kenbridge, VA', - 1434685 => 'Danville, VA', - 1434696 => 'Victoria, VA', - 1434736 => 'Keysville, VA', - 1434738 => 'Boydton, VA', - 1434791 => 'Danville, VA', - 1434792 => 'Danville, VA', - 1434793 => 'Danville, VA', - 1434797 => 'Danville, VA', - 1434799 => 'Danville, VA', - 1434817 => 'Charlottesville, VA', - 1434821 => 'Rustburg, VA', - 1434822 => 'Danville, VA', - 1434823 => 'Crozet, VA', - 1434832 => 'Lynchburg, VA', - 1434836 => 'Danville, VA', - 1434842 => 'Fork Union, VA', - 1434845 => 'Lynchburg, VA', - 1434846 => 'Lynchburg, VA', - 1434847 => 'Lynchburg, VA', - 1434848 => 'Lawrenceville, VA', - 1434924 => 'Charlottesville, VA', - 1434929 => 'Madison Heights, VA', - 1434946 => 'Amherst, VA', - 1434947 => 'Lynchburg, VA', - 1434964 => 'Charlottesville, VA', - 1434969 => 'Buckingham, VA', - 1434970 => 'Charlottesville, VA', - 1434971 => 'Charlottesville, VA', - 1434972 => 'Charlottesville, VA', - 1434973 => 'Charlottesville, VA', - 1434974 => 'Charlottesville, VA', - 1434975 => 'Charlottesville, VA', - 1434977 => 'Charlottesville, VA', - 1434978 => 'Charlottesville, VA', - 1434979 => 'Charlottesville, VA', - 1434981 => 'Charlottesville, VA', - 1434982 => 'Charlottesville, VA', - 1434983 => 'Dillwyn, VA', - 1434984 => 'Charlottesville, VA', - 1434990 => 'Ruckersville, VA', - 1434993 => 'Concord, VA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1435.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1435.php deleted file mode 100644 index 31a79be13..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1435.php +++ /dev/null @@ -1,85 +0,0 @@ - 'Utah', - 1435213 => 'Logan, UT', - 1435245 => 'Hyrum, UT', - 1435251 => 'St. George, UT', - 1435257 => 'Tremonton, UT', - 1435259 => 'Moab, UT', - 1435283 => 'Ephraim, UT', - 1435336 => 'Coalville, UT', - 1435381 => 'Castle Dale, UT', - 1435438 => 'Beaver, UT', - 1435462 => 'Mount Pleasant, UT', - 1435472 => 'Helper, UT', - 1435477 => 'Parowan, UT', - 1435527 => 'Monroe, UT', - 1435528 => 'Gunnison, UT', - 1435529 => 'Salina, UT', - 1435563 => 'Smithfield, UT', - 1435586 => 'Cedar City, UT', - 1435587 => 'Monticello, UT', - 1435613 => 'Price, UT', - 1435615 => 'Park City, UT', - 1435623 => 'Nephi, UT', - 1435627 => 'St. George, UT', - 1435628 => 'St. George, UT', - 1435632 => 'St. George, UT', - 1435634 => 'St. George, UT', - 1435635 => 'Hurricane, UT', - 1435636 => 'Price, UT', - 1435637 => 'Price, UT', - 1435640 => 'Park City, UT', - 1435644 => 'Kanab, UT', - 1435645 => 'Park City, UT', - 1435647 => 'Park City, UT', - 1435649 => 'Park City, UT', - 1435652 => 'St. George, UT', - 1435654 => 'Heber City, UT', - 1435655 => 'Park City, UT', - 1435656 => 'St. George, UT', - 1435657 => 'Heber City, UT', - 1435658 => 'Park City, UT', - 1435673 => 'St. George, UT', - 1435674 => 'St. George, UT', - 1435676 => 'Panguitch, UT', - 1435678 => 'Blanding, UT', - 1435687 => 'Huntington, UT', - 1435688 => 'St. George, UT', - 1435713 => 'Logan, UT', - 1435716 => 'Logan, UT', - 1435722 => 'Roosevelt, UT', - 1435723 => 'Brigham City, UT', - 1435725 => 'Roosevelt, UT', - 1435734 => 'Brigham City, UT', - 1435738 => 'Duchesne, UT', - 1435743 => 'Fillmore, UT', - 1435750 => 'Logan, UT', - 1435752 => 'Logan, UT', - 1435753 => 'Logan, UT', - 1435755 => 'Logan, UT', - 1435772 => 'Springdale, UT', - 1435781 => 'Vernal, UT', - 1435783 => 'Kamas, UT', - 1435787 => 'Logan, UT', - 1435789 => 'Vernal, UT', - 1435792 => 'Logan, UT', - 1435797 => 'Logan, UT', - 1435833 => 'Tooele, UT', - 1435835 => 'Manti, UT', - 1435843 => 'Tooele, UT', - 1435864 => 'Delta, UT', - 1435865 => 'Cedar City, UT', - 1435867 => 'Cedar City, UT', - 1435882 => 'Tooele, UT', - 1435884 => 'Grantsville, UT', - 1435893 => 'Richfield, UT', - 1435896 => 'Richfield, UT', - 1435946 => 'Garden City, UT', - 1435986 => 'St. George, UT', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1437.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1437.php deleted file mode 100644 index 882ed3b5e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1437.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ontario', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1438.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1438.php deleted file mode 100644 index 538bd413f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1438.php +++ /dev/null @@ -1,10 +0,0 @@ - 'Quebec', - 1438380 => 'Montreal, QC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1440.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1440.php deleted file mode 100644 index be795b7a4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1440.php +++ /dev/null @@ -1,127 +0,0 @@ - 'Ohio', - 1440204 => 'Lorain, OH', - 1440205 => 'Mentor, OH', - 1440209 => 'Mentor, OH', - 1440233 => 'Lorain, OH', - 1440236 => 'Columbia Station, OH', - 1440237 => 'Cleveland, OH', - 1440238 => 'Strongsville, OH', - 1440244 => 'Lorain, OH', - 1440245 => 'Lorain, OH', - 1440247 => 'Chagrin Falls, OH', - 1440255 => 'Mentor, OH', - 1440257 => 'Mentor, OH', - 1440259 => 'Perry, OH', - 1440266 => 'Mentor, OH', - 1440268 => 'Strongsville, OH', - 1440269 => 'Willoughby, OH', - 1440275 => 'Austinburg, OH', - 1440277 => 'Lorain, OH', - 1440282 => 'Lorain, OH', - 1440284 => 'Elyria, OH', - 1440285 => 'Chardon, OH', - 1440286 => 'Chardon, OH', - 1440288 => 'Lorain, OH', - 1440293 => 'Andover, OH', - 1440312 => 'Cleveland, OH', - 1440322 => 'Elyria, OH', - 1440323 => 'Elyria, OH', - 1440324 => 'Elyria, OH', - 1440327 => 'North Ridgeville, OH', - 1440329 => 'Elyria, OH', - 1440331 => 'Cleveland, OH', - 1440333 => 'Cleveland, OH', - 1440338 => 'Novelty, OH', - 1440350 => 'Painesville, OH', - 1440352 => 'Painesville, OH', - 1440353 => 'North Ridgeville, OH', - 1440354 => 'Painesville, OH', - 1440355 => 'LaGrange, OH', - 1440356 => 'Cleveland, OH', - 1440357 => 'Painesville, OH', - 1440358 => 'Painesville, OH', - 1440365 => 'Elyria, OH', - 1440366 => 'Elyria, OH', - 1440392 => 'Painesville, OH', - 1440428 => 'Madison, OH', - 1440437 => 'Orwell, OH', - 1440442 => 'Cleveland, OH', - 1440449 => 'Cleveland, OH', - 1440458 => 'Elyria, OH', - 1440460 => 'Cleveland, OH', - 1440461 => 'Cleveland, OH', - 1440466 => 'Geneva, OH', - 1440473 => 'Cleveland, OH', - 1440519 => 'Solon, OH', - 1440543 => 'Chagrin Falls, OH', - 1440546 => 'Cleveland, OH', - 1440563 => 'Rock Creek, OH', - 1440564 => 'Newbury, OH', - 1440572 => 'Strongsville, OH', - 1440576 => 'Jefferson, OH', - 1440582 => 'Cleveland, OH', - 1440593 => 'Conneaut, OH', - 1440599 => 'Conneaut, OH', - 1440632 => 'Middlefield, OH', - 1440639 => 'Painesville, OH', - 1440646 => 'Cleveland, OH', - 1440647 => 'Wellington, OH', - 1440684 => 'Cleveland, OH', - 1440708 => 'Chagrin Falls, OH', - 1440716 => 'North Olmsted, OH', - 1440717 => 'Cleveland, OH', - 1440729 => 'Chesterland, OH', - 1440734 => 'North Olmsted, OH', - 1440743 => 'Cleveland, OH', - 1440748 => 'Grafton, OH', - 1440774 => 'Oberlin, OH', - 1440775 => 'Oberlin, OH', - 1440777 => 'North Olmsted, OH', - 1440779 => 'North Olmsted, OH', - 1440816 => 'Cleveland, OH', - 1440834 => 'Burton, OH', - 1440838 => 'Cleveland, OH', - 1440842 => 'Cleveland, OH', - 1440843 => 'Cleveland, OH', - 1440845 => 'Cleveland, OH', - 1440846 => 'Strongsville, OH', - 1440877 => 'Cleveland, OH', - 1440878 => 'Strongsville, OH', - 1440884 => 'Cleveland, OH', - 1440885 => 'Cleveland, OH', - 1440886 => 'Cleveland, OH', - 1440887 => 'Cleveland, OH', - 1440888 => 'Cleveland, OH', - 1440893 => 'Chagrin Falls, OH', - 1440895 => 'Cleveland, OH', - 1440899 => 'Cleveland, OH', - 1440926 => 'Grafton, OH', - 1440930 => 'Avon Lake, OH', - 1440933 => 'Avon Lake, OH', - 1440934 => 'Avon, OH', - 1440937 => 'Avon, OH', - 1440942 => 'Willoughby, OH', - 1440946 => 'Willoughby, OH', - 1440949 => 'Sheffield Lake, OH', - 1440953 => 'Willoughby, OH', - 1440960 => 'Lorain, OH', - 1440964 => 'Ashtabula, OH', - 1440967 => 'Vermilion, OH', - 1440974 => 'Mentor, OH', - 1440975 => 'Willoughby, OH', - 1440984 => 'Amherst, OH', - 1440985 => 'Amherst, OH', - 1440988 => 'Amherst, OH', - 1440989 => 'Lorain, OH', - 1440992 => 'Ashtabula, OH', - 1440993 => 'Ashtabula, OH', - 1440997 => 'Ashtabula, OH', - 1440998 => 'Ashtabula, OH', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1441.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1441.php deleted file mode 100644 index 694c44599..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1441.php +++ /dev/null @@ -1,10 +0,0 @@ - 'Hamilton', - 1441295 => 'Hamilton', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1443.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1443.php deleted file mode 100644 index aef09f80b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1443.php +++ /dev/null @@ -1,26 +0,0 @@ - 'Maryland', - 1443394 => 'Owings Mills, MD', - 1443438 => 'Baltimore, MD', - 1443444 => 'Baltimore, MD', - 1443481 => 'Annapolis, MD', - 1443643 => 'Bel Air, MD', - 1443664 => 'Ocean City, MD', - 1443708 => 'Baltimore, MD', - 1443736 => 'Salisbury, MD', - 1443755 => 'Hanover, MD', - 1443759 => 'Baltimore, MD', - 1443777 => 'Baltimore, MD', - 1443849 => 'Towson, MD', - 1443869 => 'Baltimore, MD', - 1443923 => 'Baltimore, MD', - 1443944 => 'Salisbury, MD', - 1443949 => 'Annapolis, MD', - 1443977 => 'Baltimore, MD', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1450.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1450.php deleted file mode 100644 index a9c94c8cb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1450.php +++ /dev/null @@ -1,174 +0,0 @@ - 'Quebec', - 1450218 => 'Vaudreuil-Dorion, QC', - 1450224 => 'Prévost, QC', - 1450225 => 'Beauharnois, QC', - 1450226 => 'Morin-Heights, QC', - 1450229 => 'Sainte-Adèle, QC', - 1450242 => 'Brome Lake, QC', - 1450243 => 'Brome Lake, QC', - 1450245 => 'Napierville, QC', - 1450246 => 'Lacolle, QC', - 1450247 => 'Hemmingford, QC', - 1450248 => 'Bedford, QC', - 1450250 => 'Saint-Hyacinthe, QC', - 1450252 => 'Saint-Hyacinthe, QC', - 1450258 => 'Mirabel, QC', - 1450261 => 'Saint-Hyacinthe, QC', - 1450263 => 'Cowansville, QC', - 1450264 => 'Huntingdon, QC', - 1450266 => 'Cowansville, QC', - 1450293 => 'Farnham, QC', - 1450297 => 'Eastman, QC', - 1450314 => 'Laval, QC', - 1450332 => 'Longueuil, QC', - 1450346 => 'Saint-Jean-sur-Richelieu, QC', - 1450347 => 'Saint-Jean-sur-Richelieu, QC', - 1450348 => 'Saint-Jean-sur-Richelieu, QC', - 1450349 => 'Saint-Jean-sur-Richelieu, QC', - 1450357 => 'Saint-Jean-sur-Richelieu, QC', - 1450358 => 'Saint-Jean-sur-Richelieu, QC', - 1450359 => 'Saint-Jean-sur-Richelieu, QC', - 1450361 => 'Granby, QC', - 1450370 => 'Salaberry-de-Valleyfield, QC', - 1450371 => 'Salaberry-de-Valleyfield, QC', - 1450372 => 'Granby, QC', - 1450373 => 'Salaberry-de-Valleyfield, QC', - 1450375 => 'Granby, QC', - 1450377 => 'Salaberry-de-Valleyfield, QC', - 1450378 => 'Granby, QC', - 1450379 => 'Saint-Paul-d\'Abbotsford, QC', - 1450417 => 'Mascouche, QC', - 1450424 => 'Vaudreuil-Dorion, QC', - 1450427 => 'Sainte-Martine, QC', - 1450429 => 'Beauharnois, QC', - 1450431 => 'Saint-Jérôme, QC', - 1450432 => 'Saint-Jérôme, QC', - 1450436 => 'Saint-Jérôme, QC', - 1450438 => 'Saint-Jérôme, QC', - 1450439 => 'Saint-Lin-Laurentides, QC', - 1450441 => 'St-Bruno-de-Montarville, QC', - 1450442 => 'Longueuil, QC', - 1450443 => 'Saint-Hubert, QC', - 1450445 => 'Saint-Hubert, QC', - 1450447 => 'Chambly, QC', - 1450448 => 'Longueuil, QC', - 1450449 => 'Boucherville, QC', - 1450451 => 'Rigaud, QC', - 1450452 => 'Les Cèdres, QC', - 1450454 => 'Saint-Rémi, QC', - 1450455 => 'Vaudreuil-Dorion, QC', - 1450458 => 'Hudson, QC', - 1450460 => 'Marieville, QC', - 1450461 => 'St-Bruno-de-Montarville, QC', - 1450463 => 'Longueuil, QC', - 1450468 => 'Longueuil, QC', - 1450469 => 'Saint-Césaire, QC', - 1450470 => 'Repentigny, QC', - 1450471 => 'Terrebonne, QC', - 1450472 => 'Saint-Eustache, QC', - 1450473 => 'Saint-Eustache, QC', - 1450474 => 'Mascouche, QC', - 1450475 => 'Mirabel, QC', - 1450477 => 'Terrebonne, QC', - 1450478 => 'Sainte-Anne-des-Plaines, QC', - 1450479 => 'Oka, QC', - 1450491 => 'Saint-Eustache, QC', - 1450492 => 'Terrebonne, QC', - 1450510 => 'Vaudreuil-Dorion, QC', - 1450530 => 'Saint-Jérôme, QC', - 1450532 => 'Valcourt, QC', - 1450534 => 'Bromont, QC', - 1450538 => 'Sutton, QC', - 1450539 => 'Waterloo, QC', - 1450546 => 'Acton Vale, QC', - 1450548 => 'Roxton Falls, QC', - 1450562 => 'Lachute, QC', - 1450565 => 'Saint-Jérôme, QC', - 1450569 => 'Saint-Jérôme, QC', - 1450581 => 'Repentigny, QC', - 1450582 => 'Repentigny, QC', - 1450583 => 'Verchères, QC', - 1450585 => 'Repentigny, QC', - 1450586 => 'Lavaltrie, QC', - 1450587 => 'Contrecœur, QC', - 1450589 => 'L\'Assomption, QC', - 1450592 => 'Saint-Jérôme, QC', - 1450598 => 'Saint-Eustache, QC', - 1450623 => 'Saint-Eustache, QC', - 1450641 => 'Boucherville, QC', - 1450645 => 'Boucherville, QC', - 1450646 => 'Longueuil, QC', - 1450647 => 'Longueuil, QC', - 1450649 => 'Sainte-Julie, QC', - 1450651 => 'Longueuil, QC', - 1450652 => 'Varennes, QC', - 1450653 => 'St-Bruno-de-Montarville, QC', - 1450654 => 'Repentigny, QC', - 1450655 => 'Boucherville, QC', - 1450656 => 'Saint-Hubert, QC', - 1450657 => 'Repentigny, QC', - 1450658 => 'Chambly, QC', - 1450659 => 'La Prairie, QC', - 1450670 => 'Longueuil, QC', - 1450674 => 'Longueuil, QC', - 1450677 => 'Longueuil, QC', - 1450678 => 'Saint-Hubert, QC', - 1450679 => 'Longueuil, QC', - 1450686 => 'Chomedey, QC', - 1450687 => 'Chomedey, QC', - 1450691 => 'Châteauguay, QC', - 1450692 => 'Châteauguay, QC', - 1450698 => 'Châteauguay, QC', - 1450699 => 'Châteauguay, QC', - 1450741 => 'Saint-Jean-sur-Richelieu, QC', - 1450742 => 'Sorel, QC', - 1450743 => 'Sorel, QC', - 1450746 => 'Sorel, QC', - 1450752 => 'Joliette, QC', - 1450753 => 'Joliette, QC', - 1450754 => 'Crabtree, QC', - 1450755 => 'Joliette, QC', - 1450759 => 'Joliette, QC', - 1450763 => 'Coteau-du-Lac, QC', - 1450771 => 'Saint-Hyacinthe, QC', - 1450772 => 'Saint-Pie, QC', - 1450773 => 'Saint-Hyacinthe, QC', - 1450774 => 'Saint-Hyacinthe, QC', - 1450776 => 'Granby, QC', - 1450777 => 'Granby, QC', - 1450778 => 'Saint-Hyacinthe, QC', - 1450793 => 'Saint-Liboire, QC', - 1450796 => 'Saint-Hyacinthe, QC', - 1450799 => 'Saint-Hyacinthe, QC', - 1450829 => 'Ormstown, QC', - 1450831 => 'Sainte-Julienne, QC', - 1450833 => 'St-Michel-des-Saints, QC', - 1450834 => 'Rawdon, QC', - 1450835 => 'St-Gabriel-de-Brandon, QC', - 1450836 => 'Berthierville, QC', - 1450886 => 'St-Jean-de-Matha, QC', - 1450887 => 'Lanoraie, QC', - 1450889 => 'St-Félix-de-Valois, QC', - 1450922 => 'Sainte-Julie, QC', - 1450926 => 'Saint-Hubert, QC', - 1450928 => 'Longueuil, QC', - 1450929 => 'Varennes, QC', - 1450932 => 'Repentigny, QC', - 1450933 => 'Laval, QC', - 1450934 => 'Laval, QC', - 1450936 => 'Laval, QC', - 1450937 => 'Laval, QC', - 1450961 => 'Terrebonne, QC', - 1450964 => 'Terrebonne, QC', - 1450966 => 'Mascouche, QC', - 1450968 => 'Terrebonne, QC', - 1450974 => 'Saint-Eustache, QC', - 1450991 => 'Granby, QC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1469.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1469.php deleted file mode 100644 index 3afe2d881..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1469.php +++ /dev/null @@ -1,20 +0,0 @@ - 'Texas', - 1469232 => 'Dallas, TX', - 1469241 => 'Plano, TX', - 1469272 => 'Cedar Hill, TX', - 1469366 => 'Plano, TX', - 1469467 => 'Plano, TX', - 1469522 => 'Dallas, TX', - 1469633 => 'Frisco, TX', - 1469742 => 'McKinney, TX', - 1469752 => 'Plano, TX', - 1469916 => 'Dallas, TX', - 1469952 => 'McKinney, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1478.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1478.php deleted file mode 100644 index 2da148840..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1478.php +++ /dev/null @@ -1,79 +0,0 @@ - 'Georgia', - 1478218 => 'Perry, GA', - 1478225 => 'Warner Robins, GA', - 1478237 => 'Swainsboro, GA', - 1478238 => 'Macon, GA', - 1478254 => 'Macon, GA', - 1478272 => 'Dublin, GA', - 1478274 => 'Dublin, GA', - 1478275 => 'Dublin, GA', - 1478277 => 'Dublin, GA', - 1478289 => 'Swainsboro, GA', - 1478296 => 'Dublin, GA', - 1478328 => 'Warner Robins, GA', - 1478329 => 'Warner Robins, GA', - 1478330 => 'Macon, GA', - 1478333 => 'Warner Robins, GA', - 1478374 => 'Eastman, GA', - 1478405 => 'Macon, GA', - 1478414 => 'Milledgeville, GA', - 1478445 => 'Milledgeville, GA', - 1478451 => 'Milledgeville, GA', - 1478452 => 'Milledgeville, GA', - 1478453 => 'Milledgeville, GA', - 1478454 => 'Milledgeville, GA', - 1478471 => 'Macon, GA', - 1478472 => 'Montezuma, GA', - 1478474 => 'Macon, GA', - 1478475 => 'Macon, GA', - 1478476 => 'Macon, GA', - 1478477 => 'Macon, GA', - 1478552 => 'Sandersville, GA', - 1478553 => 'Sandersville, GA', - 1478625 => 'Louisville, GA', - 1478628 => 'Gordon, GA', - 1478633 => 'Macon, GA', - 1478741 => 'Macon, GA', - 1478742 => 'Macon, GA', - 1478743 => 'Macon, GA', - 1478745 => 'Macon, GA', - 1478746 => 'Macon, GA', - 1478750 => 'Macon, GA', - 1478751 => 'Macon, GA', - 1478755 => 'Macon, GA', - 1478757 => 'Macon, GA', - 1478763 => 'Twin City, GA', - 1478781 => 'Macon, GA', - 1478783 => 'Hawkinsville, GA', - 1478784 => 'Macon, GA', - 1478785 => 'Macon, GA', - 1478788 => 'Macon, GA', - 1478825 => 'Fort Valley, GA', - 1478836 => 'Roberta, GA', - 1478862 => 'Butler, GA', - 1478864 => 'Wrightsville, GA', - 1478892 => 'Hawkinsville, GA', - 1478922 => 'Warner Robins, GA', - 1478923 => 'Warner Robins, GA', - 1478929 => 'Warner Robins, GA', - 1478934 => 'Cochran, GA', - 1478935 => 'Lizella, GA', - 1478945 => 'Jeffersonville, GA', - 1478946 => 'Irwinton, GA', - 1478953 => 'Warner Robins, GA', - 1478956 => 'Byron, GA', - 1478971 => 'Warner Robins, GA', - 1478982 => 'Millen, GA', - 1478986 => 'Gray, GA', - 1478987 => 'Perry, GA', - 1478988 => 'Perry, GA', - 1478992 => 'Forsyth, GA', - 1478994 => 'Forsyth, GA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1479.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1479.php deleted file mode 100644 index bfc81be2d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1479.php +++ /dev/null @@ -1,104 +0,0 @@ - 'Arkansas', - 1479229 => 'Dardanelle, AR', - 1479238 => 'Siloam Springs, AR', - 1479242 => 'Fort Smith, AR', - 1479243 => 'Mena, AR', - 1479246 => 'Rogers, AR', - 1479251 => 'Fayetteville, AR', - 1479253 => 'Eureka Springs, AR', - 1479254 => 'Bentonville, AR', - 1479267 => 'Farmington, AR', - 1479268 => 'Bentonville, AR', - 1479271 => 'Bentonville, AR', - 1479273 => 'Bentonville, AR', - 1479314 => 'Fort Smith, AR', - 1479331 => 'Dover, AR', - 1479338 => 'Rogers, AR', - 1479361 => 'Springdale, AR', - 1479394 => 'Mena, AR', - 1479410 => 'Van Buren, AR', - 1479419 => 'Springdale, AR', - 1479434 => 'Fort Smith, AR', - 1479441 => 'Fort Smith, AR', - 1479442 => 'Fayetteville, AR', - 1479443 => 'Fayetteville, AR', - 1479444 => 'Fayetteville, AR', - 1479445 => 'Fayetteville, AR', - 1479451 => 'Pea Ridge, AR', - 1479452 => 'Fort Smith, AR', - 1479463 => 'Fayetteville, AR', - 1479464 => 'Bentonville, AR', - 1479471 => 'Van Buren, AR', - 1479474 => 'Van Buren, AR', - 1479478 => 'Fort Smith, AR', - 1479484 => 'Fort Smith, AR', - 1479494 => 'Fort Smith, AR', - 1479495 => 'Danville, AR', - 1479521 => 'Fayetteville, AR', - 1479524 => 'Siloam Springs, AR', - 1479527 => 'Fayetteville, AR', - 1479549 => 'Siloam Springs, AR', - 1479571 => 'Fayetteville, AR', - 1479575 => 'Fayetteville, AR', - 1479582 => 'Fayetteville, AR', - 1479587 => 'Fayetteville, AR', - 1479621 => 'Rogers, AR', - 1479631 => 'Rogers, AR', - 1479632 => 'Alma, AR', - 1479633 => 'Rogers, AR', - 1479636 => 'Rogers, AR', - 1479637 => 'Waldron, AR', - 1479641 => 'Atkins, AR', - 1479646 => 'Fort Smith, AR', - 1479648 => 'Fort Smith, AR', - 1479649 => 'Fort Smith, AR', - 1479667 => 'Ozark, AR', - 1479675 => 'Booneville, AR', - 1479705 => 'Clarksville, AR', - 1479709 => 'Fort Smith, AR', - 1479715 => 'Bentonville, AR', - 1479717 => 'Springdale, AR', - 1479725 => 'Springdale, AR', - 1479736 => 'Gentry, AR', - 1479738 => 'Huntsville, AR', - 1479750 => 'Springdale, AR', - 1479751 => 'Springdale, AR', - 1479754 => 'Clarksville, AR', - 1479756 => 'Springdale, AR', - 1479770 => 'Lowell, AR', - 1479782 => 'Fort Smith, AR', - 1479783 => 'Fort Smith, AR', - 1479784 => 'Fort Smith, AR', - 1479785 => 'Fort Smith, AR', - 1479787 => 'Gravette, AR', - 1479795 => 'Centerton, AR', - 1479824 => 'Lincoln, AR', - 1479839 => 'West Fork, AR', - 1479846 => 'Prairie Grove, AR', - 1479855 => 'Bella Vista, AR', - 1479872 => 'Springdale, AR', - 1479876 => 'Bella Vista, AR', - 1479880 => 'Russellville, AR', - 1479890 => 'Russellville, AR', - 1479899 => 'Rogers, AR', - 1479925 => 'Rogers, AR', - 1479927 => 'Springdale, AR', - 1479928 => 'Mansfield, AR', - 1479935 => 'Fayetteville, AR', - 1479936 => 'Rogers, AR', - 1479963 => 'Paris, AR', - 1479965 => 'Charleston, AR', - 1479966 => 'Fayetteville, AR', - 1479967 => 'Russellville, AR', - 1479968 => 'Russellville, AR', - 1479986 => 'Rogers, AR', - 1479996 => 'Greenwood, AR', - 1479997 => 'Mulberry, AR', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1480.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1480.php deleted file mode 100644 index 10f8b13aa..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1480.php +++ /dev/null @@ -1,142 +0,0 @@ - 'Arizona', - 1480218 => 'Mesa, AZ', - 1480288 => 'Apache Junction, AZ', - 1480301 => 'Scottsdale, AZ', - 1480312 => 'Scottsdale, AZ', - 1480314 => 'Scottsdale, AZ', - 1480315 => 'Scottsdale, AZ', - 1480323 => 'Scottsdale, AZ', - 1480325 => 'Mesa, AZ', - 1480345 => 'Tempe, AZ', - 1480346 => 'Scottsdale, AZ', - 1480348 => 'Scottsdale, AZ', - 1480350 => 'Tempe, AZ', - 1480354 => 'Mesa, AZ', - 1480357 => 'Mesa, AZ', - 1480358 => 'Mesa, AZ', - 1480367 => 'Scottsdale, AZ', - 1480368 => 'Scottsdale, AZ', - 1480380 => 'Mesa, AZ', - 1480391 => 'Scottsdale, AZ', - 1480396 => 'Mesa, AZ', - 1480421 => 'Scottsdale, AZ', - 1480423 => 'Scottsdale, AZ', - 1480425 => 'Scottsdale, AZ', - 1480429 => 'Scottsdale, AZ', - 1480443 => 'Scottsdale, AZ', - 1480446 => 'Tempe, AZ', - 1480451 => 'Scottsdale, AZ', - 1480460 => 'Phoenix, AZ', - 1480461 => 'Mesa, AZ', - 1480464 => 'Mesa, AZ', - 1480472 => 'Mesa, AZ', - 1480481 => 'Scottsdale, AZ', - 1480483 => 'Scottsdale, AZ', - 1480484 => 'Scottsdale, AZ', - 1480502 => 'Scottsdale, AZ', - 1480513 => 'Scottsdale, AZ', - 1480515 => 'Phoenix, AZ', - 1480517 => 'Tempe, AZ', - 1480543 => 'Gilbert, AZ', - 1480551 => 'Scottsdale, AZ', - 1480556 => 'Scottsdale, AZ', - 1480557 => 'Tempe, AZ', - 1480563 => 'Scottsdale, AZ', - 1480585 => 'Scottsdale, AZ', - 1480596 => 'Scottsdale, AZ', - 1480607 => 'Scottsdale, AZ', - 1480609 => 'Scottsdale, AZ', - 1480610 => 'Mesa, AZ', - 1480614 => 'Scottsdale, AZ', - 1480615 => 'Mesa, AZ', - 1480632 => 'Gilbert, AZ', - 1480641 => 'Mesa, AZ', - 1480644 => 'Mesa, AZ', - 1480649 => 'Mesa, AZ', - 1480654 => 'Mesa, AZ', - 1480655 => 'Mesa, AZ', - 1480657 => 'Scottsdale, AZ', - 1480661 => 'Scottsdale, AZ', - 1480668 => 'Mesa, AZ', - 1480671 => 'Apache Junction, AZ', - 1480726 => 'Chandler, AZ', - 1480730 => 'Tempe, AZ', - 1480732 => 'Chandler, AZ', - 1480733 => 'Mesa, AZ', - 1480736 => 'Tempe, AZ', - 1480759 => 'Phoenix, AZ', - 1480767 => 'Scottsdale, AZ', - 1480778 => 'Scottsdale, AZ', - 1480782 => 'Chandler, AZ', - 1480784 => 'Tempe, AZ', - 1480786 => 'Chandler, AZ', - 1480802 => 'Chandler, AZ', - 1480804 => 'Tempe, AZ', - 1480807 => 'Mesa, AZ', - 1480812 => 'Chandler, AZ', - 1480814 => 'Chandler, AZ', - 1480816 => 'Fountain Hills, AZ', - 1480821 => 'Chandler, AZ', - 1480827 => 'Mesa, AZ', - 1480829 => 'Tempe, AZ', - 1480830 => 'Mesa, AZ', - 1480832 => 'Mesa, AZ', - 1480833 => 'Mesa, AZ', - 1480834 => 'Mesa, AZ', - 1480835 => 'Mesa, AZ', - 1480836 => 'Fountain Hills, AZ', - 1480837 => 'Fountain Hills, AZ', - 1480838 => 'Tempe, AZ', - 1480839 => 'Tempe, AZ', - 1480844 => 'Mesa, AZ', - 1480854 => 'Mesa, AZ', - 1480855 => 'Chandler, AZ', - 1480857 => 'Chandler, AZ', - 1480860 => 'Scottsdale, AZ', - 1480874 => 'Scottsdale, AZ', - 1480883 => 'Chandler, AZ', - 1480890 => 'Mesa, AZ', - 1480894 => 'Tempe, AZ', - 1480898 => 'Mesa, AZ', - 1480899 => 'Chandler, AZ', - 1480905 => 'Scottsdale, AZ', - 1480917 => 'Chandler, AZ', - 1480921 => 'Tempe, AZ', - 1480922 => 'Scottsdale, AZ', - 1480924 => 'Mesa, AZ', - 1480941 => 'Scottsdale, AZ', - 1480945 => 'Scottsdale, AZ', - 1480946 => 'Scottsdale, AZ', - 1480947 => 'Scottsdale, AZ', - 1480948 => 'Scottsdale, AZ', - 1480949 => 'Scottsdale, AZ', - 1480951 => 'Scottsdale, AZ', - 1480961 => 'Chandler, AZ', - 1480962 => 'Mesa, AZ', - 1480963 => 'Chandler, AZ', - 1480964 => 'Mesa, AZ', - 1480965 => 'Tempe, AZ', - 1480966 => 'Tempe, AZ', - 1480967 => 'Tempe, AZ', - 1480968 => 'Tempe, AZ', - 1480969 => 'Mesa, AZ', - 1480970 => 'Scottsdale, AZ', - 1480981 => 'Mesa, AZ', - 1480982 => 'Apache Junction, AZ', - 1480983 => 'Apache Junction, AZ', - 1480984 => 'Mesa, AZ', - 1480985 => 'Mesa, AZ', - 1480986 => 'Mesa, AZ', - 1480987 => 'Queen Creek, AZ', - 1480990 => 'Scottsdale, AZ', - 1480991 => 'Scottsdale, AZ', - 1480994 => 'Scottsdale, AZ', - 1480998 => 'Scottsdale, AZ', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1484.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1484.php deleted file mode 100644 index 5af0e9d61..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1484.php +++ /dev/null @@ -1,15 +0,0 @@ - 'Pennsylvania', - 1484223 => 'Allentown, PA', - 1484476 => 'Wynnewood, PA', - 1484664 => 'Allentown, PA', - 1484875 => 'Exton, PA', - 1484884 => 'Bethlehem, PA', - 1484895 => 'Bethlehem, PA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/15.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/15.php new file mode 100644 index 000000000..700d9406b --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/15.php @@ -0,0 +1,4815 @@ + 'Arkansas', + 1501202 => 'Little Rock, AR', + 1501205 => 'Conway, AR', + 1501206 => 'Heber Springs, AR', + 1501217 => 'Little Rock, AR', + 1501219 => 'Little Rock, AR', + 1501221 => 'Little Rock, AR', + 1501223 => 'Little Rock, AR', + 1501224 => 'Little Rock, AR', + 1501225 => 'Little Rock, AR', + 1501227 => 'Little Rock, AR', + 1501228 => 'Little Rock, AR', + 1501244 => 'Little Rock, AR', + 1501246 => 'Little Rock, AR', + 1501255 => 'Little Rock, AR', + 1501257 => 'Little Rock, AR', + 1501262 => 'Hot Springs, AR', + 1501268 => 'Searcy, AR', + 1501278 => 'Searcy, AR', + 1501279 => 'Searcy, AR', + 1501280 => 'Little Rock, AR', + 1501296 => 'Little Rock, AR', + 1501305 => 'Searcy, AR', + 1501312 => 'Little Rock, AR', + 1501315 => 'Benton, AR', + 1501316 => 'Benton, AR', + 1501318 => 'Hot Springs, AR', + 1501321 => 'Hot Springs, AR', + 1501324 => 'Little Rock, AR', + 1501327 => 'Conway, AR', + 1501328 => 'Conway, AR', + 1501329 => 'Conway, AR', + 1501332 => 'Malvern, AR', + 1501336 => 'Conway, AR', + 1501337 => 'Malvern, AR', + 1501340 => 'Little Rock, AR', + 1501353 => 'Little Rock, AR', + 1501354 => 'Morrilton, AR', + 1501362 => 'Heber Springs, AR', + 1501364 => 'Little Rock, AR', + 1501368 => 'Searcy, AR', + 1501370 => 'Little Rock, AR', + 1501371 => 'Little Rock, AR', + 1501372 => 'Little Rock, AR', + 1501374 => 'Little Rock, AR', + 1501375 => 'Little Rock, AR', + 1501376 => 'Little Rock, AR', + 1501379 => 'Little Rock, AR', + 1501397 => 'Redfield, AR', + 1501450 => 'Conway, AR', + 1501455 => 'Little Rock, AR', + 1501470 => 'Mayflower, AR', + 1501490 => 'Little Rock, AR', + 1501513 => 'Conway, AR', + 1501520 => 'Hot Springs, AR', + 1501525 => 'Hot Springs, AR', + 1501526 => 'Little Rock, AR', + 1501537 => 'Little Rock, AR', + 1501552 => 'Little Rock, AR', + 1501556 => 'Rose Bud, AR', + 1501562 => 'Little Rock, AR', + 1501565 => 'Little Rock, AR', + 1501568 => 'Little Rock, AR', + 1501570 => 'Little Rock, AR', + 1501588 => 'Little Rock, AR', + 1501589 => 'Quitman, AR', + 1501603 => 'Little Rock, AR', + 1501604 => 'Little Rock, AR', + 1501605 => 'Cabot, AR', + 1501609 => 'Hot Springs, AR', + 1501614 => 'Little Rock, AR', + 1501620 => 'Hot Springs, AR', + 1501622 => 'Hot Springs, AR', + 1501623 => 'Hot Springs, AR', + 1501624 => 'Hot Springs, AR', + 1501625 => 'Hot Springs, AR', + 1501653 => 'Bryant, AR', + 1501661 => 'Little Rock, AR', + 1501663 => 'Little Rock, AR', + 1501664 => 'Little Rock, AR', + 1501666 => 'Little Rock, AR', + 1501676 => 'Lonoke, AR', + 1501679 => 'Greenbrier, AR', + 1501682 => 'Little Rock, AR', + 1501686 => 'Little Rock, AR', + 1501687 => 'Little Rock, AR', + 1501724 => 'Bald Knob, AR', + 1501729 => 'Judsonia, AR', + 1501745 => 'Clinton, AR', + 1501753 => 'N Little Rock, AR', + 1501758 => 'N Little Rock, AR', + 1501760 => 'Hot Springs, AR', + 1501764 => 'Conway, AR', + 1501767 => 'Hot Springs, AR', + 1501771 => 'N Little Rock, AR', + 1501776 => 'Benton, AR', + 1501778 => 'Benton, AR', + 1501791 => 'N Little Rock, AR', + 1501794 => 'Benton, AR', + 1501796 => 'Vilonia, AR', + 1501803 => 'Maumelle, AR', + 1501821 => 'Little Rock, AR', + 1501833 => 'Sherwood, AR', + 1501834 => 'Sherwood, AR', + 1501835 => 'Sherwood, AR', + 1501842 => 'England, AR', + 1501843 => 'Cabot, AR', + 1501847 => 'Bryant, AR', + 1501860 => 'Benton, AR', + 1501865 => 'Bismarck, AR', + 1501868 => 'Little Rock, AR', + 1501882 => 'Beebe, AR', + 1501884 => 'Fairfield Bay, AR', + 1501888 => 'Little Rock, AR', + 1501889 => 'Perryville, AR', + 1501907 => 'Little Rock, AR', + 1501916 => 'Little Rock, AR', + 1501932 => 'Conway, AR', + 1501941 => 'Cabot, AR', + 1501945 => 'N Little Rock, AR', + 1501954 => 'Little Rock, AR', + 1501955 => 'N Little Rock, AR', + 1501961 => 'Scott, AR', + 1501975 => 'Little Rock, AR', + 1501977 => 'Morrilton, AR', + 1501978 => 'Little Rock, AR', + 1501982 => 'Jacksonville, AR', + 1501985 => 'Jacksonville, AR', + 1502 => 'Kentucky', + 1502212 => 'Louisville, KY', + 1502222 => 'La Grange, KY', + 1502223 => 'Frankfort, KY', + 1502225 => 'La Grange, KY', + 1502226 => 'Frankfort, KY', + 1502227 => 'Frankfort, KY', + 1502228 => 'Prospect, KY', + 1502231 => 'Louisville, KY', + 1502239 => 'Louisville, KY', + 1502240 => 'Louisville, KY', + 1502241 => 'Crestwood, KY', + 1502244 => 'Louisville, KY', + 1502245 => 'Louisville, KY', + 1502252 => 'Bloomfield, KY', + 1502253 => 'Louisville, KY', + 1502254 => 'Louisville, KY', + 1502255 => 'Bedford, KY', + 1502259 => 'Louisville, KY', + 1502261 => 'Louisville, KY', + 1502266 => 'Louisville, KY', + 1502267 => 'Louisville, KY', + 1502271 => 'Louisville, KY', + 1502287 => 'Louisville, KY', + 1502290 => 'Louisville, KY', + 1502292 => 'Prospect, KY', + 1502297 => 'Louisville, KY', + 1502326 => 'Louisville, KY', + 1502327 => 'Louisville, KY', + 1502331 => 'Bardstown, KY', + 1502339 => 'Louisville, KY', + 1502348 => 'Bardstown, KY', + 1502349 => 'Bardstown, KY', + 1502350 => 'Bardstown, KY', + 1502352 => 'Frankfort, KY', + 1502361 => 'Louisville, KY', + 1502363 => 'Louisville, KY', + 1502364 => 'Louisville, KY', + 1502365 => 'Louisville, KY', + 1502366 => 'Louisville, KY', + 1502367 => 'Louisville, KY', + 1502368 => 'Louisville, KY', + 1502375 => 'Louisville, KY', + 1502384 => 'Louisville, KY', + 1502394 => 'Louisville, KY', + 1502409 => 'Louisville, KY', + 1502410 => 'Louisville, KY', + 1502412 => 'Louisville, KY', + 1502423 => 'Louisville, KY', + 1502425 => 'Louisville, KY', + 1502426 => 'Louisville, KY', + 1502429 => 'Louisville, KY', + 1502447 => 'Louisville, KY', + 1502448 => 'Louisville, KY', + 1502449 => 'Louisville, KY', + 1502451 => 'Louisville, KY', + 1502452 => 'Louisville, KY', + 1502454 => 'Louisville, KY', + 1502456 => 'Louisville, KY', + 1502458 => 'Louisville, KY', + 1502459 => 'Louisville, KY', + 1502473 => 'Louisville, KY', + 1502477 => 'Taylorsville, KY', + 1502479 => 'Louisville, KY', + 1502484 => 'Owenton, KY', + 1502485 => 'Louisville, KY', + 1502489 => 'Louisville, KY', + 1502491 => 'Louisville, KY', + 1502493 => 'Louisville, KY', + 1502495 => 'Louisville, KY', + 1502499 => 'Louisville, KY', + 1502538 => 'Mount Washington, KY', + 1502540 => 'Louisville, KY', + 1502543 => 'Shepherdsville, KY', + 1502549 => 'New Haven, KY', + 1502561 => 'Louisville, KY', + 1502562 => 'Louisville, KY', + 1502564 => 'Frankfort, KY', + 1502568 => 'Louisville, KY', + 1502569 => 'Louisville, KY', + 1502570 => 'Georgetown, KY', + 1502574 => 'Louisville, KY', + 1502581 => 'Louisville, KY', + 1502582 => 'Louisville, KY', + 1502583 => 'Louisville, KY', + 1502584 => 'Louisville, KY', + 1502585 => 'Louisville, KY', + 1502587 => 'Louisville, KY', + 1502589 => 'Louisville, KY', + 1502595 => 'Louisville, KY', + 1502614 => 'Louisville, KY', + 1502618 => 'Louisville, KY', + 1502624 => 'Fort Knox, KY', + 1502625 => 'Louisville, KY', + 1502629 => 'Louisville, KY', + 1502632 => 'Louisville, KY', + 1502633 => 'Shelbyville, KY', + 1502634 => 'Louisville, KY', + 1502635 => 'Louisville, KY', + 1502636 => 'Louisville, KY', + 1502637 => 'Louisville, KY', + 1502647 => 'Shelbyville, KY', + 1502671 => 'Louisville, KY', + 1502690 => 'Louisville, KY', + 1502695 => 'Frankfort, KY', + 1502708 => 'Louisville, KY', + 1502721 => 'Louisville, KY', + 1502722 => 'Simpsonville, KY', + 1502732 => 'Carrollton, KY', + 1502742 => 'Louisville, KY', + 1502749 => 'Louisville, KY', + 1502772 => 'Louisville, KY', + 1502774 => 'Louisville, KY', + 1502775 => 'Louisville, KY', + 1502776 => 'Louisville, KY', + 1502778 => 'Louisville, KY', + 1502813 => 'Louisville, KY', + 1502839 => 'Lawrenceburg, KY', + 1502852 => 'Louisville, KY', + 1502859 => 'Lawrenceburg, KY', + 1502863 => 'Georgetown, KY', + 1502867 => 'Georgetown, KY', + 1502868 => 'Georgetown, KY', + 1502875 => 'Frankfort, KY', + 1502891 => 'Louisville, KY', + 1502893 => 'Louisville, KY', + 1502894 => 'Louisville, KY', + 1502895 => 'Louisville, KY', + 1502896 => 'Louisville, KY', + 1502897 => 'Louisville, KY', + 1502899 => 'Louisville, KY', + 1502921 => 'Shepherdsville, KY', + 1502933 => 'Louisville, KY', + 1502935 => 'Louisville, KY', + 1502937 => 'Louisville, KY', + 1502942 => 'Fort Knox, KY', + 1502961 => 'Louisville, KY', + 1502962 => 'Louisville, KY', + 1502964 => 'Louisville, KY', + 1502966 => 'Louisville, KY', + 1502968 => 'Louisville, KY', + 1502969 => 'Louisville, KY', + 1502995 => 'Louisville, KY', + 1503 => 'Oregon', + 1503203 => 'Portland, OR', + 1503206 => 'Portland, OR', + 1503208 => 'Portland, OR', + 1503215 => 'Portland, OR', + 1503216 => 'Portland, OR', + 1503220 => 'Portland, OR', + 1503221 => 'Portland, OR', + 1503222 => 'Portland, OR', + 1503223 => 'Portland, OR', + 1503224 => 'Portland, OR', + 1503225 => 'Portland, OR', + 1503226 => 'Portland, OR', + 1503227 => 'Portland, OR', + 1503228 => 'Portland, OR', + 1503229 => 'Portland, OR', + 1503230 => 'Portland, OR', + 1503231 => 'Portland, OR', + 1503232 => 'Portland, OR', + 1503233 => 'Portland, OR', + 1503234 => 'Portland, OR', + 1503235 => 'Portland, OR', + 1503236 => 'Portland, OR', + 1503238 => 'Portland, OR', + 1503239 => 'Portland, OR', + 1503240 => 'Portland, OR', + 1503241 => 'Portland, OR', + 1503242 => 'Portland, OR', + 1503243 => 'Portland, OR', + 1503244 => 'Portland, OR', + 1503245 => 'Portland, OR', + 1503246 => 'Portland, OR', + 1503247 => 'Portland, OR', + 1503248 => 'Portland, OR', + 1503249 => 'Portland, OR', + 1503251 => 'Portland, OR', + 1503252 => 'Portland, OR', + 1503253 => 'Portland, OR', + 1503254 => 'Portland, OR', + 1503255 => 'Portland, OR', + 1503256 => 'Portland, OR', + 1503257 => 'Portland, OR', + 1503258 => 'Portland, OR', + 1503259 => 'Beaverton, OR', + 1503261 => 'Portland, OR', + 1503262 => 'Portland, OR', + 1503263 => 'Canby, OR', + 1503266 => 'Canby, OR', + 1503274 => 'Portland, OR', + 1503278 => 'Portland, OR', + 1503280 => 'Portland, OR', + 1503281 => 'Portland, OR', + 1503282 => 'Portland, OR', + 1503283 => 'Portland, OR', + 1503284 => 'Portland, OR', + 1503285 => 'Portland, OR', + 1503286 => 'Portland, OR', + 1503287 => 'Portland, OR', + 1503288 => 'Portland, OR', + 1503289 => 'Portland, OR', + 1503291 => 'Portland, OR', + 1503292 => 'Portland, OR', + 1503293 => 'Portland, OR', + 1503294 => 'Portland, OR', + 1503295 => 'Portland, OR', + 1503296 => 'Portland, OR', + 1503297 => 'Portland, OR', + 1503299 => 'Portland, OR', + 1503316 => 'Salem, OR', + 1503324 => 'Banks, OR', + 1503325 => 'Astoria, OR', + 1503331 => 'Portland, OR', + 1503335 => 'Portland, OR', + 1503338 => 'Astoria, OR', + 1503355 => 'Rockaway Beach, OR', + 1503357 => 'Forest Grove, OR', + 1503359 => 'Forest Grove, OR', + 1503361 => 'Salem, OR', + 1503362 => 'Salem, OR', + 1503363 => 'Salem, OR', + 1503364 => 'Salem, OR', + 1503365 => 'Salem, OR', + 1503366 => 'St. Helens, OR', + 1503368 => 'Nehalem, OR', + 1503370 => 'Salem, OR', + 1503371 => 'Salem, OR', + 1503375 => 'Salem, OR', + 1503378 => 'Salem, OR', + 1503384 => 'Portland, OR', + 1503385 => 'Salem, OR', + 1503388 => 'Portland, OR', + 1503391 => 'Salem, OR', + 1503394 => 'Scio, OR', + 1503397 => 'St. Helens, OR', + 1503399 => 'Salem, OR', + 1503408 => 'Portland, OR', + 1503413 => 'Portland, OR', + 1503418 => 'Portland, OR', + 1503429 => 'Vernonia, OR', + 1503434 => 'McMinnville, OR', + 1503435 => 'McMinnville, OR', + 1503436 => 'Cannon Beach, OR', + 1503445 => 'Portland, OR', + 1503452 => 'Portland, OR', + 1503459 => 'Portland, OR', + 1503460 => 'Portland, OR', + 1503463 => 'Keizer, OR', + 1503467 => 'Portland, OR', + 1503469 => 'Beaverton, OR', + 1503472 => 'McMinnville, OR', + 1503473 => 'Portland, OR', + 1503474 => 'McMinnville, OR', + 1503477 => 'Portland, OR', + 1503485 => 'Salem, OR', + 1503492 => 'Gresham, OR', + 1503493 => 'Portland, OR', + 1503494 => 'Portland, OR', + 1503505 => 'Portland, OR', + 1503517 => 'Portland, OR', + 1503520 => 'Beaverton, OR', + 1503524 => 'Beaverton, OR', + 1503525 => 'Portland, OR', + 1503526 => 'Beaverton, OR', + 1503528 => 'Portland, OR', + 1503534 => 'Lake Oswego, OR', + 1503535 => 'Portland, OR', + 1503537 => 'Newberg, OR', + 1503538 => 'Newberg, OR', + 1503540 => 'Salem, OR', + 1503543 => 'Scappoose, OR', + 1503546 => 'Portland, OR', + 1503547 => 'Hillsboro, OR', + 1503548 => 'Portland, OR', + 1503554 => 'Newberg, OR', + 1503556 => 'Rainier, OR', + 1503561 => 'Salem, OR', + 1503566 => 'Salem, OR', + 1503570 => 'Wilsonville, OR', + 1503571 => 'Clackamas, OR', + 1503574 => 'Beaverton, OR', + 1503581 => 'Salem, OR', + 1503582 => 'Wilsonville, OR', + 1503585 => 'Salem, OR', + 1503588 => 'Salem, OR', + 1503589 => 'Salem, OR', + 1503595 => 'Portland, OR', + 1503612 => 'Tualatin, OR', + 1503615 => 'Hillsboro, OR', + 1503618 => 'Gresham, OR', + 1503621 => 'Portland, OR', + 1503623 => 'Dallas, OR', + 1503625 => 'Sherwood, OR', + 1503626 => 'Beaverton, OR', + 1503628 => 'Hillsboro, OR', + 1503630 => 'Estacada, OR', + 1503631 => 'Oregon City, OR', + 1503635 => 'Lake Oswego, OR', + 1503636 => 'Lake Oswego, OR', + 1503640 => 'Hillsboro, OR', + 1503641 => 'Beaverton, OR', + 1503643 => 'Beaverton, OR', + 1503644 => 'Beaverton, OR', + 1503646 => 'Beaverton, OR', + 1503647 => 'North Plains, OR', + 1503648 => 'Hillsboro, OR', + 1503651 => 'Canby, OR', + 1503652 => 'Clackamas, OR', + 1503658 => 'Damascus, OR', + 1503661 => 'Gresham, OR', + 1503662 => 'Yamhill, OR', + 1503663 => 'Boring, OR', + 1503665 => 'Gresham, OR', + 1503666 => 'Gresham, OR', + 1503668 => 'Sandy, OR', + 1503674 => 'Gresham, OR', + 1503675 => 'Lake Oswego, OR', + 1503678 => 'Aurora, OR', + 1503681 => 'Hillsboro, OR', + 1503682 => 'Wilsonville, OR', + 1503691 => 'Tualatin, OR', + 1503692 => 'Tualatin, OR', + 1503693 => 'Hillsboro, OR', + 1503695 => 'Corbett, OR', + 1503697 => 'Lake Oswego, OR', + 1503698 => 'Clackamas, OR', + 1503699 => 'Lake Oswego, OR', + 1503717 => 'Seaside, OR', + 1503719 => 'Portland, OR', + 1503728 => 'Clatskanie, OR', + 1503738 => 'Seaside, OR', + 1503749 => 'Aumsville, OR', + 1503760 => 'Portland, OR', + 1503761 => 'Portland, OR', + 1503762 => 'Portland, OR', + 1503763 => 'Salem, OR', + 1503764 => 'Portland, OR', + 1503769 => 'Stayton, OR', + 1503771 => 'Portland, OR', + 1503772 => 'Portland, OR', + 1503774 => 'Portland, OR', + 1503775 => 'Portland, OR', + 1503777 => 'Portland, OR', + 1503788 => 'Portland, OR', + 1503792 => 'Gervais, OR', + 1503808 => 'Portland, OR', + 1503813 => 'Portland, OR', + 1503823 => 'Portland, OR', + 1503829 => 'Molalla, OR', + 1503831 => 'Dallas, OR', + 1503835 => 'Amity, OR', + 1503841 => 'Portland, OR', + 1503842 => 'Tillamook, OR', + 1503843 => 'Sheridan, OR', + 1503844 => 'Hillsboro, OR', + 1503845 => 'Mount Angel, OR', + 1503846 => 'Hillsboro, OR', + 1503852 => 'Carlton, OR', + 1503859 => 'Lyons, OR', + 1503861 => 'Warrenton, OR', + 1503864 => 'Dayton, OR', + 1503873 => 'Silverton, OR', + 1503885 => 'Tualatin, OR', + 1503892 => 'Portland, OR', + 1503894 => 'Portland, OR', + 1503897 => 'Mill City, OR', + 1503916 => 'Portland, OR', + 1503925 => 'Sherwood, OR', + 1503943 => 'Portland, OR', + 1503945 => 'Salem, OR', + 1503946 => 'Portland, OR', + 1503954 => 'Portland, OR', + 1503963 => 'Portland, OR', + 1503965 => 'Pacific City, OR', + 1503972 => 'Portland, OR', + 1503977 => 'Portland, OR', + 1503981 => 'Woodburn, OR', + 1503982 => 'Woodburn, OR', + 1503985 => 'Gaston, OR', + 1503988 => 'Portland, OR', + 1503990 => 'Salem, OR', + 1504 => 'Louisiana', + 1504218 => 'New Orleans, LA', + 1504241 => 'New Orleans, LA', + 1504242 => 'New Orleans, LA', + 1504244 => 'New Orleans, LA', + 1504245 => 'New Orleans, LA', + 1504246 => 'New Orleans, LA', + 1504254 => 'New Orleans, LA', + 1504271 => 'Chalmette, LA', + 1504277 => 'Chalmette, LA', + 1504278 => 'Chalmette, LA', + 1504279 => 'Chalmette, LA', + 1504282 => 'New Orleans, LA', + 1504283 => 'New Orleans, LA', + 1504288 => 'New Orleans, LA', + 1504299 => 'New Orleans, LA', + 1504301 => 'New Orleans, LA', + 1504302 => 'New Orleans, LA', + 1504304 => 'New Orleans, LA', + 1504305 => 'Kenner, LA', + 1504310 => 'New Orleans, LA', + 1504322 => 'New Orleans, LA', + 1504328 => 'Marrero, LA', + 1504340 => 'Marrero, LA', + 1504341 => 'Marrero, LA', + 1504347 => 'Marrero, LA', + 1504348 => 'Marrero, LA', + 1504349 => 'Marrero, LA', + 1504373 => 'New Orleans, LA', + 1504412 => 'New Orleans, LA', + 1504436 => 'Westwego, LA', + 1504443 => 'Kenner, LA', + 1504454 => 'Metairie, LA', + 1504455 => 'Metairie, LA', + 1504456 => 'Metairie, LA', + 1504457 => 'Metairie, LA', + 1504461 => 'Kenner, LA', + 1504464 => 'Kenner, LA', + 1504465 => 'Kenner, LA', + 1504466 => 'Kenner, LA', + 1504467 => 'Kenner, LA', + 1504468 => 'Kenner, LA', + 1504469 => 'Kenner, LA', + 1504471 => 'Kenner, LA', + 1504482 => 'New Orleans, LA', + 1504483 => 'New Orleans, LA', + 1504486 => 'New Orleans, LA', + 1504488 => 'New Orleans, LA', + 1504522 => 'New Orleans, LA', + 1504523 => 'New Orleans, LA', + 1504524 => 'New Orleans, LA', + 1504525 => 'New Orleans, LA', + 1504528 => 'New Orleans, LA', + 1504529 => 'New Orleans, LA', + 1504534 => 'Venice, LA', + 1504561 => 'New Orleans, LA', + 1504566 => 'New Orleans, LA', + 1504568 => 'New Orleans, LA', + 1504569 => 'New Orleans, LA', + 1504581 => 'New Orleans, LA', + 1504582 => 'New Orleans, LA', + 1504585 => 'New Orleans, LA', + 1504586 => 'New Orleans, LA', + 1504588 => 'New Orleans, LA', + 1504589 => 'New Orleans, LA', + 1504599 => 'New Orleans, LA', + 1504656 => 'Belle Chasse, LA', + 1504658 => 'New Orleans, LA', + 1504689 => 'Lafitte, LA', + 1504712 => 'Kenner, LA', + 1504733 => 'New Orleans, LA', + 1504734 => 'New Orleans, LA', + 1504779 => 'Metairie, LA', + 1504780 => 'Metairie, LA', + 1504818 => 'New Orleans, LA', + 1504821 => 'New Orleans, LA', + 1504822 => 'New Orleans, LA', + 1504827 => 'New Orleans, LA', + 1504828 => 'Metairie, LA', + 1504831 => 'Metairie, LA', + 1504832 => 'Metairie, LA', + 1504833 => 'Metairie, LA', + 1504834 => 'Metairie, LA', + 1504835 => 'Metairie, LA', + 1504836 => 'Metairie, LA', + 1504837 => 'Metairie, LA', + 1504838 => 'Metairie, LA', + 1504842 => 'Jefferson, LA', + 1504861 => 'New Orleans, LA', + 1504865 => 'New Orleans, LA', + 1504866 => 'New Orleans, LA', + 1504883 => 'Metairie, LA', + 1504885 => 'Metairie, LA', + 1504887 => 'Metairie, LA', + 1504888 => 'Metairie, LA', + 1504889 => 'Metairie, LA', + 1504891 => 'New Orleans, LA', + 1504894 => 'New Orleans, LA', + 1504895 => 'New Orleans, LA', + 1504896 => 'New Orleans, LA', + 1504897 => 'New Orleans, LA', + 1504899 => 'New Orleans, LA', + 1504903 => 'New Orleans, LA', + 1504940 => 'New Orleans, LA', + 1504941 => 'New Orleans, LA', + 1504942 => 'New Orleans, LA', + 1504943 => 'New Orleans, LA', + 1504944 => 'New Orleans, LA', + 1504945 => 'New Orleans, LA', + 1504947 => 'New Orleans, LA', + 1504948 => 'New Orleans, LA', + 1504949 => 'New Orleans, LA', + 1504988 => 'New Orleans, LA', + 1505 => 'New Mexico', + 1505203 => 'Albuquerque, NM', + 1505216 => 'Santa Fe, NM', + 1505217 => 'Albuquerque, NM', + 1505220 => 'Albuquerque, NM', + 1505224 => 'Albuquerque, NM', + 1505228 => 'Albuquerque, NM', + 1505232 => 'Albuquerque, NM', + 1505235 => 'Albuquerque, NM', + 1505237 => 'Albuquerque, NM', + 1505238 => 'Albuquerque, NM', + 1505239 => 'Albuquerque, NM', + 1505242 => 'Albuquerque, NM', + 1505243 => 'Albuquerque, NM', + 1505244 => 'Albuquerque, NM', + 1505246 => 'Albuquerque, NM', + 1505247 => 'Albuquerque, NM', + 1505248 => 'Albuquerque, NM', + 1505249 => 'Albuquerque, NM', + 1505250 => 'Albuquerque, NM', + 1505254 => 'Albuquerque, NM', + 1505255 => 'Albuquerque, NM', + 1505256 => 'Albuquerque, NM', + 1505259 => 'Albuquerque, NM', + 1505260 => 'Albuquerque, NM', + 1505261 => 'Albuquerque, NM', + 1505262 => 'Albuquerque, NM', + 1505263 => 'Albuquerque, NM', + 1505265 => 'Albuquerque, NM', + 1505266 => 'Albuquerque, NM', + 1505268 => 'Albuquerque, NM', + 1505269 => 'Albuquerque, NM', + 1505271 => 'Albuquerque, NM', + 1505272 => 'Albuquerque, NM', + 1505275 => 'Albuquerque, NM', + 1505277 => 'Albuquerque, NM', + 1505280 => 'Albuquerque, NM', + 1505285 => 'Grants, NM', + 1505287 => 'Grants, NM', + 1505291 => 'Albuquerque, NM', + 1505292 => 'Albuquerque, NM', + 1505293 => 'Albuquerque, NM', + 1505294 => 'Albuquerque, NM', + 1505296 => 'Albuquerque, NM', + 1505298 => 'Albuquerque, NM', + 1505299 => 'Albuquerque, NM', + 1505304 => 'Albuquerque, NM', + 1505312 => 'Albuquerque, NM', + 1505314 => 'Albuquerque, NM', + 1505315 => 'Albuquerque, NM', + 1505319 => 'Albuquerque, NM', + 1505320 => 'Farmington, NM', + 1505321 => 'Albuquerque, NM', + 1505323 => 'Albuquerque, NM', + 1505324 => 'Farmington, NM', + 1505325 => 'Farmington, NM', + 1505326 => 'Farmington, NM', + 1505327 => 'Farmington, NM', + 1505332 => 'Albuquerque, NM', + 1505334 => 'Aztec, NM', + 1505338 => 'Albuquerque, NM', + 1505341 => 'Albuquerque, NM', + 1505342 => 'Albuquerque, NM', + 1505343 => 'Albuquerque, NM', + 1505344 => 'Albuquerque, NM', + 1505345 => 'Albuquerque, NM', + 1505346 => 'Albuquerque, NM', + 1505350 => 'Albuquerque, NM', + 1505352 => 'Albuquerque, NM', + 1505363 => 'Albuquerque, NM', + 1505368 => 'Shiprock, NM', + 1505369 => 'Albuquerque, NM', + 1505379 => 'Albuquerque, NM', + 1505384 => 'Estancia, NM', + 1505385 => 'Albuquerque, NM', + 1505400 => 'Albuquerque, NM', + 1505401 => 'Albuquerque, NM', + 1505417 => 'Albuquerque, NM', + 1505424 => 'Santa Fe, NM', + 1505425 => 'Las Vegas, NM', + 1505426 => 'Las Vegas, NM', + 1505428 => 'Santa Fe, NM', + 1505433 => 'Albuquerque, NM', + 1505438 => 'Santa Fe, NM', + 1505440 => 'Albuquerque, NM', + 1505450 => 'Albuquerque, NM', + 1505452 => 'Albuquerque, NM', + 1505453 => 'Albuquerque, NM', + 1505454 => 'Las Vegas, NM', + 1505455 => 'Santa Fe, NM', + 1505459 => 'Albuquerque, NM', + 1505463 => 'Albuquerque, NM', + 1505466 => 'Santa Fe, NM', + 1505467 => 'Santa Fe, NM', + 1505470 => 'Santa Fe, NM', + 1505471 => 'Santa Fe, NM', + 1505473 => 'Santa Fe, NM', + 1505474 => 'Santa Fe, NM', + 1505476 => 'Santa Fe, NM', + 1505480 => 'Albuquerque, NM', + 1505489 => 'Albuquerque, NM', + 1505503 => 'Albuquerque, NM', + 1505507 => 'Albuquerque, NM', + 1505508 => 'Albuquerque, NM', + 1505550 => 'Albuquerque, NM', + 1505553 => 'Albuquerque, NM', + 1505554 => 'Albuquerque, NM', + 1505563 => 'Albuquerque, NM', + 1505564 => 'Farmington, NM', + 1505565 => 'Los Lunas, NM', + 1505577 => 'Santa Fe, NM', + 1505598 => 'Kirtland, NM', + 1505599 => 'Farmington, NM', + 1505609 => 'Farmington, NM', + 1505610 => 'Albuquerque, NM', + 1505615 => 'Albuquerque, NM', + 1505620 => 'Albuquerque, NM', + 1505629 => 'Santa Fe, NM', + 1505632 => 'Bloomfield, NM', + 1505660 => 'Santa Fe, NM', + 1505661 => 'Los Alamos, NM', + 1505662 => 'Los Alamos, NM', + 1505670 => 'Santa Fe, NM', + 1505672 => 'Los Alamos, NM', + 1505681 => 'Albuquerque, NM', + 1505690 => 'Santa Fe, NM', + 1505699 => 'Santa Fe, NM', + 1505710 => 'Albuquerque, NM', + 1505715 => 'Albuquerque, NM', + 1505717 => 'Albuquerque, NM', + 1505720 => 'Albuquerque, NM', + 1505722 => 'Gallup, NM', + 1505724 => 'Albuquerque, NM', + 1505726 => 'Gallup, NM', + 1505727 => 'Albuquerque, NM', + 1505730 => 'Albuquerque, NM', + 1505747 => 'Espanola, NM', + 1505753 => 'Espanola, NM', + 1505757 => 'Pecos, NM', + 1505764 => 'Albuquerque, NM', + 1505766 => 'Albuquerque, NM', + 1505768 => 'Albuquerque, NM', + 1505782 => 'Zuni, NM', + 1505786 => 'Crownpoint, NM', + 1505792 => 'Albuquerque, NM', + 1505795 => 'Santa Fe, NM', + 1505796 => 'Albuquerque, NM', + 1505797 => 'Albuquerque, NM', + 1505798 => 'Albuquerque, NM', + 1505804 => 'Albuquerque, NM', + 1505820 => 'Santa Fe, NM', + 1505821 => 'Albuquerque, NM', + 1505822 => 'Albuquerque, NM', + 1505823 => 'Albuquerque, NM', + 1505827 => 'Santa Fe, NM', + 1505828 => 'Albuquerque, NM', + 1505830 => 'Albuquerque, NM', + 1505831 => 'Albuquerque, NM', + 1505832 => 'Moriarty, NM', + 1505833 => 'Albuquerque, NM', + 1505836 => 'Albuquerque, NM', + 1505837 => 'Albuquerque, NM', + 1505839 => 'Albuquerque, NM', + 1505841 => 'Albuquerque, NM', + 1505842 => 'Albuquerque, NM', + 1505843 => 'Albuquerque, NM', + 1505847 => 'Mountainair, NM', + 1505848 => 'Albuquerque, NM', + 1505856 => 'Albuquerque, NM', + 1505857 => 'Albuquerque, NM', + 1505858 => 'Albuquerque, NM', + 1505861 => 'Belen, NM', + 1505863 => 'Gallup, NM', + 1505864 => 'Belen, NM', + 1505865 => 'Los Lunas, NM', + 1505866 => 'Los Lunas, NM', + 1505867 => 'Bernalillo, NM', + 1505869 => 'Bosque Farms, NM', + 1505872 => 'Albuquerque, NM', + 1505873 => 'Albuquerque, NM', + 1505877 => 'Albuquerque, NM', + 1505880 => 'Albuquerque, NM', + 1505881 => 'Albuquerque, NM', + 1505883 => 'Albuquerque, NM', + 1505884 => 'Albuquerque, NM', + 1505888 => 'Albuquerque, NM', + 1505889 => 'Albuquerque, NM', + 1505890 => 'Albuquerque, NM', + 1505891 => 'Rio Rancho, NM', + 1505892 => 'Rio Rancho, NM', + 1505896 => 'Rio Rancho, NM', + 1505897 => 'Albuquerque, NM', + 1505898 => 'Albuquerque, NM', + 1505899 => 'Albuquerque, NM', + 1505920 => 'Santa Fe, NM', + 1505922 => 'Albuquerque, NM', + 1505954 => 'Santa Fe, NM', + 1505955 => 'Santa Fe, NM', + 1505980 => 'Albuquerque, NM', + 1505982 => 'Santa Fe, NM', + 1505983 => 'Santa Fe, NM', + 1505984 => 'Santa Fe, NM', + 1505986 => 'Santa Fe, NM', + 1505988 => 'Santa Fe, NM', + 1505989 => 'Santa Fe, NM', + 1505992 => 'Santa Fe, NM', + 1505994 => 'Rio Rancho, NM', + 1505995 => 'Santa Fe, NM', + 1505998 => 'Albuquerque, NM', + 1506 => 'New Brunswick', + 1506204 => 'Moncton, NB', + 1506235 => 'Saint-Quentin, NB', + 1506273 => 'Perth-Andover, NB', + 1506325 => 'Woodstock, NB', + 1506327 => 'Minto, NB', + 1506328 => 'Woodstock, NB', + 1506336 => 'Shippagan, NB', + 1506344 => 'Lamèque, NB', + 1506357 => 'Oromocto, NB', + 1506372 => 'Salisbury, NB', + 1506375 => 'Hartland, NB', + 1506382 => 'Moncton, NB', + 1506383 => 'Moncton, NB', + 1506384 => 'Moncton, NB', + 1506388 => 'Moncton, NB', + 1506389 => 'Moncton, NB', + 1506392 => 'Florenceville, NB', + 1506393 => 'Tracadie-Sheila, NB', + 1506395 => 'Tracadie-Sheila, NB', + 1506432 => 'Sussex, NB', + 1506433 => 'Sussex, NB', + 1506446 => 'Oromocto, NB', + 1506450 => 'Fredericton, NB', + 1506451 => 'Fredericton, NB', + 1506452 => 'Fredericton, NB', + 1506453 => 'Fredericton, NB', + 1506454 => 'Fredericton, NB', + 1506455 => 'Fredericton, NB', + 1506457 => 'Fredericton, NB', + 1506458 => 'Fredericton, NB', + 1506459 => 'Fredericton, NB', + 1506466 => 'Saint Stephen, NB', + 1506472 => 'Fredericton, NB', + 1506473 => 'Grand Falls, NB', + 1506523 => 'Richibucto, NB', + 1506529 => 'Saint Andrews, NB', + 1506532 => 'Shediac, NB', + 1506533 => 'Shediac, NB', + 1506536 => 'Sackville, NB', + 1506546 => 'Bathurst, NB', + 1506548 => 'Bathurst, NB', + 1506576 => 'Cocagne, NB', + 1506577 => 'Cap-Pele, NB', + 1506622 => 'Nelson-Miramichi, NB', + 1506632 => 'Saint John, NB', + 1506633 => 'Saint John, NB', + 1506634 => 'Saint John, NB', + 1506635 => 'Saint John, NB', + 1506642 => 'Saint John, NB', + 1506648 => 'Saint John, NB', + 1506652 => 'Saint John, NB', + 1506657 => 'Saint John, NB', + 1506658 => 'Saint John, NB', + 1506662 => 'Grand Manan, NB', + 1506672 => 'Saint John, NB', + 1506684 => 'Dalhousie, NB', + 1506693 => 'Saint John, NB', + 1506696 => 'Saint John, NB', + 1506727 => 'Caraquet, NB', + 1506735 => 'Edmundston, NB', + 1506737 => 'Edmundston, NB', + 1506739 => 'Edmundston, NB', + 1506743 => 'Bouctouche, NB', + 1506753 => 'Campbellton, NB', + 1506755 => 'Saint George, NB', + 1506756 => 'Petitcodiac, NB', + 1506759 => 'Campbellton, NB', + 1506773 => 'Nelson-Miramichi, NB', + 1506776 => 'Neguac, NB', + 1506778 => 'Nelson-Miramichi, NB', + 1506783 => 'Petit Rocher, NB', + 1506789 => 'Campbellton, NB', + 1506832 => 'Hampton, NB', + 1506847 => 'Rothesay, NB', + 1506850 => 'Moncton, NB', + 1506852 => 'Moncton, NB', + 1506853 => 'Moncton, NB', + 1506854 => 'Moncton, NB', + 1506855 => 'Moncton, NB', + 1506856 => 'Moncton, NB', + 1506857 => 'Moncton, NB', + 1506858 => 'Moncton, NB', + 1506859 => 'Moncton, NB', + 1506866 => 'Moncton, NB', + 1506876 => 'Saint-Louis de Kent, NB', + 1506992 => 'Clair, NB', + 1507 => 'Minnesota', + 1507206 => 'Rochester, MN', + 1507223 => 'Canby, MN', + 1507226 => 'Rochester, MN', + 1507233 => 'New Ulm, MN', + 1507234 => 'Janesville, MN', + 1507235 => 'Fairmont, MN', + 1507237 => 'Gaylord, MN', + 1507238 => 'Fairmont, MN', + 1507247 => 'Tyler, MN', + 1507252 => 'Rochester, MN', + 1507255 => 'Rochester, MN', + 1507263 => 'Cannon Falls, MN', + 1507274 => 'Westbrook, MN', + 1507275 => 'Hendricks, MN', + 1507280 => 'Rochester, MN', + 1507281 => 'Rochester, MN', + 1507282 => 'Rochester, MN', + 1507283 => 'Luverne, MN', + 1507284 => 'Rochester, MN', + 1507285 => 'Rochester, MN', + 1507287 => 'Rochester, MN', + 1507288 => 'Rochester, MN', + 1507289 => 'Rochester, MN', + 1507292 => 'Rochester, MN', + 1507328 => 'Rochester, MN', + 1507332 => 'Faribault, MN', + 1507333 => 'Faribault, MN', + 1507334 => 'Faribault, MN', + 1507344 => 'Mankato, MN', + 1507345 => 'Mankato, MN', + 1507346 => 'Spring Valley, MN', + 1507354 => 'New Ulm, MN', + 1507356 => 'Pine Island, MN', + 1507357 => 'Le Center, MN', + 1507359 => 'New Ulm, MN', + 1507362 => 'Waterville, MN', + 1507364 => 'Montgomery, MN', + 1507372 => 'Worthington, MN', + 1507373 => 'Albert Lea, MN', + 1507374 => 'Dodge Center, MN', + 1507375 => 'Saint James, MN', + 1507376 => 'Worthington, MN', + 1507377 => 'Albert Lea, MN', + 1507385 => 'Mankato, MN', + 1507386 => 'Mankato, MN', + 1507387 => 'Mankato, MN', + 1507388 => 'Mankato, MN', + 1507389 => 'Mankato, MN', + 1507424 => 'Rochester, MN', + 1507426 => 'Fairfax, MN', + 1507427 => 'Mountain Lake, MN', + 1507433 => 'Austin, MN', + 1507434 => 'Austin, MN', + 1507437 => 'Austin, MN', + 1507442 => 'Edgerton, MN', + 1507444 => 'Owatonna, MN', + 1507446 => 'Owatonna, MN', + 1507451 => 'Owatonna, MN', + 1507452 => 'Winona, MN', + 1507453 => 'Winona, MN', + 1507454 => 'Winona, MN', + 1507455 => 'Owatonna, MN', + 1507457 => 'Winona, MN', + 1507467 => 'Lanesboro, MN', + 1507474 => 'Winona, MN', + 1507483 => 'Adrian, MN', + 1507498 => 'Spring Grove, MN', + 1507523 => 'Lewiston, MN', + 1507524 => 'Mapleton, MN', + 1507526 => 'Blue Earth, MN', + 1507529 => 'Rochester, MN', + 1507532 => 'Marshall, MN', + 1507533 => 'Stewartville, MN', + 1507534 => 'Plainview, MN', + 1507536 => 'Rochester, MN', + 1507537 => 'Marshall, MN', + 1507553 => 'Wells, MN', + 1507583 => 'Blooming Prairie, MN', + 1507625 => 'Mankato, MN', + 1507629 => 'Tracy, MN', + 1507634 => 'Kasson, MN', + 1507637 => 'Redwood Falls, MN', + 1507642 => 'Madelia, MN', + 1507644 => 'Redwood Falls, MN', + 1507645 => 'Northfield, MN', + 1507646 => 'Northfield, MN', + 1507647 => 'Winthrop, MN', + 1507662 => 'Lakefield, MN', + 1507663 => 'Northfield, MN', + 1507665 => 'Le Sueur, MN', + 1507694 => 'Ivanhoe, MN', + 1507723 => 'Springfield, MN', + 1507725 => 'Caledonia, MN', + 1507726 => 'Lake Crystal, MN', + 1507732 => 'Zumbrota, MN', + 1507744 => 'Lonsdale, MN', + 1507754 => 'Grand Meadow, MN', + 1507765 => 'Preston, MN', + 1507775 => 'Byron, MN', + 1507776 => 'Truman, MN', + 1507789 => 'Kenyon, MN', + 1507794 => 'Sleepy Eye, MN', + 1507825 => 'Pipestone, MN', + 1507831 => 'Windom, MN', + 1507835 => 'Waseca, MN', + 1507836 => 'Slayton, MN', + 1507847 => 'Jackson, MN', + 1507864 => 'Rushford, MN', + 1507867 => 'Chatfield, MN', + 1507872 => 'Minneota, MN', + 1507886 => 'Harmony, MN', + 1507893 => 'Winnebago, MN', + 1507895 => 'La Crescent, MN', + 1507896 => 'Houston, MN', + 1507931 => 'St. Peter, MN', + 1507932 => 'St. Charles, MN', + 1507934 => 'St. Peter, MN', + 1507964 => 'Arlington, MN', + 1508 => 'Massachusetts', + 1508222 => 'Attleboro, MA', + 1508223 => 'Attleboro, MA', + 1508224 => 'Plymouth, MA', + 1508226 => 'Attleboro, MA', + 1508228 => 'Nantucket, MA', + 1508229 => 'Marlborough, MA', + 1508232 => 'Brockton, MA', + 1508234 => 'Whitinsville, MA', + 1508235 => 'Fall River, MA', + 1508240 => 'Orleans, MA', + 1508248 => 'Charlton, MA', + 1508251 => 'Marlborough, MA', + 1508252 => 'Rehoboth, MA', + 1508255 => 'Orleans, MA', + 1508261 => 'Mansfield, MA', + 1508273 => 'Wareham, MA', + 1508278 => 'Uxbridge, MA', + 1508279 => 'Bridgewater, MA', + 1508281 => 'Marlborough, MA', + 1508285 => 'Norton, MA', + 1508291 => 'Wareham, MA', + 1508295 => 'Wareham, MA', + 1508303 => 'Marlborough, MA', + 1508309 => 'Framingham, MA', + 1508324 => 'Fall River, MA', + 1508325 => 'Nantucket, MA', + 1508334 => 'Worcester, MA', + 1508336 => 'Seekonk, MA', + 1508337 => 'Mansfield, MA', + 1508339 => 'Mansfield, MA', + 1508347 => 'Sturbridge, MA', + 1508349 => 'Wellfleet, MA', + 1508358 => 'Wayland, MA', + 1508359 => 'Medfield, MA', + 1508363 => 'Worcester, MA', + 1508366 => 'Westborough, MA', + 1508368 => 'Worcester, MA', + 1508370 => 'Framingham, MA', + 1508376 => 'Millis, MA', + 1508378 => 'East Bridgewater, MA', + 1508379 => 'Swansea, MA', + 1508381 => 'Milford, MA', + 1508383 => 'Framingham, MA', + 1508384 => 'Wrentham, MA', + 1508385 => 'Dennis, MA', + 1508393 => 'Northborough, MA', + 1508399 => 'Attleboro, MA', + 1508405 => 'Framingham, MA', + 1508421 => 'Worcester, MA', + 1508422 => 'Milford, MA', + 1508427 => 'Brockton, MA', + 1508429 => 'Holliston, MA', + 1508430 => 'Harwich, MA', + 1508435 => 'Hopkinton, MA', + 1508436 => 'Brockton, MA', + 1508457 => 'Falmouth, MA', + 1508459 => 'Worcester, MA', + 1508460 => 'Marlborough, MA', + 1508473 => 'Milford, MA', + 1508476 => 'Douglas, MA', + 1508477 => 'Mashpee, MA', + 1508478 => 'Milford, MA', + 1508480 => 'Marlborough, MA', + 1508481 => 'Marlborough, MA', + 1508482 => 'Milford, MA', + 1508485 => 'Marlborough, MA', + 1508487 => 'Provincetown, MA', + 1508495 => 'Falmouth, MA', + 1508497 => 'Hopkinton, MA', + 1508510 => 'Brockton, MA', + 1508520 => 'Franklin, MA', + 1508528 => 'Franklin, MA', + 1508529 => 'Upton, MA', + 1508533 => 'Medway, MA', + 1508539 => 'Mashpee, MA', + 1508540 => 'Falmouth, MA', + 1508541 => 'Franklin, MA', + 1508543 => 'Foxboro, MA', + 1508548 => 'Falmouth, MA', + 1508553 => 'Franklin, MA', + 1508559 => 'Brockton, MA', + 1508567 => 'Fall River, MA', + 1508580 => 'Brockton, MA', + 1508583 => 'Brockton, MA', + 1508584 => 'Brockton, MA', + 1508586 => 'Brockton, MA', + 1508587 => 'Brockton, MA', + 1508588 => 'Brockton, MA', + 1508595 => 'Worcester, MA', + 1508616 => 'Westborough, MA', + 1508620 => 'Framingham, MA', + 1508624 => 'Marlborough, MA', + 1508626 => 'Framingham, MA', + 1508627 => 'Edgartown, MA', + 1508628 => 'Framingham, MA', + 1508634 => 'Milford, MA', + 1508636 => 'Westport, MA', + 1508643 => 'North Attleborough, MA', + 1508644 => 'Assonet, MA', + 1508645 => 'Chilmark, MA', + 1508646 => 'Fall River, MA', + 1508647 => 'Natick, MA', + 1508650 => 'Natick, MA', + 1508651 => 'Natick, MA', + 1508653 => 'Natick, MA', + 1508655 => 'Natick, MA', + 1508660 => 'Walpole, MA', + 1508668 => 'Walpole, MA', + 1508669 => 'Dighton, MA', + 1508672 => 'Fall River, MA', + 1508673 => 'Fall River, MA', + 1508674 => 'Fall River, MA', + 1508675 => 'Fall River, MA', + 1508676 => 'Fall River, MA', + 1508677 => 'Fall River, MA', + 1508678 => 'Fall River, MA', + 1508679 => 'Fall River, MA', + 1508693 => 'Vineyard Haven, MA', + 1508695 => 'North Attleborough, MA', + 1508696 => 'Vineyard Haven, MA', + 1508697 => 'Bridgewater, MA', + 1508698 => 'Foxboro, MA', + 1508699 => 'North Attleborough, MA', + 1508717 => 'New Bedford, MA', + 1508721 => 'Auburn, MA', + 1508730 => 'Fall River, MA', + 1508732 => 'Plymouth, MA', + 1508746 => 'Plymouth, MA', + 1508747 => 'Plymouth, MA', + 1508748 => 'Marion, MA', + 1508752 => 'Worcester, MA', + 1508753 => 'Worcester, MA', + 1508754 => 'Worcester, MA', + 1508755 => 'Worcester, MA', + 1508756 => 'Worcester, MA', + 1508757 => 'Worcester, MA', + 1508758 => 'Mattapoisett, MA', + 1508761 => 'Attleboro, MA', + 1508764 => 'Southbridge, MA', + 1508765 => 'Southbridge, MA', + 1508767 => 'Worcester, MA', + 1508770 => 'Worcester, MA', + 1508771 => 'Hyannis, MA', + 1508775 => 'Hyannis, MA', + 1508778 => 'Hyannis, MA', + 1508785 => 'Dover, MA', + 1508788 => 'Framingham, MA', + 1508790 => 'Hyannis, MA', + 1508791 => 'Worcester, MA', + 1508792 => 'Worcester, MA', + 1508793 => 'Worcester, MA', + 1508795 => 'Worcester, MA', + 1508797 => 'Worcester, MA', + 1508798 => 'Worcester, MA', + 1508799 => 'Worcester, MA', + 1508820 => 'Framingham, MA', + 1508821 => 'Taunton, MA', + 1508822 => 'Taunton, MA', + 1508823 => 'Taunton, MA', + 1508824 => 'Taunton, MA', + 1508828 => 'Taunton, MA', + 1508829 => 'Holden, MA', + 1508830 => 'Plymouth, MA', + 1508831 => 'Worcester, MA', + 1508832 => 'Auburn, MA', + 1508835 => 'West Boylston, MA', + 1508836 => 'Westborough, MA', + 1508842 => 'Shrewsbury, MA', + 1508845 => 'Shrewsbury, MA', + 1508852 => 'Worcester, MA', + 1508853 => 'Worcester, MA', + 1508854 => 'Worcester, MA', + 1508856 => 'Worcester, MA', + 1508857 => 'Brockton, MA', + 1508860 => 'Worcester, MA', + 1508862 => 'Hyannis, MA', + 1508865 => 'Millbury, MA', + 1508866 => 'Carver, MA', + 1508869 => 'Boylston, MA', + 1508870 => 'Westborough, MA', + 1508872 => 'Framingham, MA', + 1508875 => 'Framingham, MA', + 1508877 => 'Framingham, MA', + 1508879 => 'Framingham, MA', + 1508880 => 'Taunton, MA', + 1508881 => 'Ashland, MA', + 1508885 => 'Spencer, MA', + 1508886 => 'Rutland, MA', + 1508892 => 'Leicester, MA', + 1508894 => 'Brockton, MA', + 1508896 => 'Brewster, MA', + 1508897 => 'Brockton, MA', + 1508898 => 'Westborough, MA', + 1508923 => 'Middleborough, MA', + 1508926 => 'Worcester, MA', + 1508941 => 'Brockton, MA', + 1508943 => 'Webster, MA', + 1508945 => 'Chatham, MA', + 1508946 => 'Middleborough, MA', + 1508947 => 'Middleborough, MA', + 1508949 => 'Webster, MA', + 1508961 => 'New Bedford, MA', + 1508966 => 'Bellingham, MA', + 1508977 => 'Taunton, MA', + 1508979 => 'New Bedford, MA', + 1508984 => 'New Bedford, MA', + 1508985 => 'New Bedford, MA', + 1508987 => 'Oxford, MA', + 1508990 => 'New Bedford, MA', + 1508991 => 'New Bedford, MA', + 1508992 => 'New Bedford, MA', + 1508993 => 'New Bedford, MA', + 1508995 => 'New Bedford, MA', + 1508997 => 'New Bedford, MA', + 1508998 => 'New Bedford, MA', + 1508999 => 'New Bedford, MA', + 1509 => 'Washington', + 1509216 => 'Spokane, WA', + 1509225 => 'Yakima, WA', + 1509226 => 'Newman Lake, WA', + 1509232 => 'Spokane, WA', + 1509234 => 'Connell, WA', + 1509235 => 'Cheney, WA', + 1509242 => 'Spokane, WA', + 1509244 => 'Airway Heights, WA', + 1509248 => 'Yakima, WA', + 1509249 => 'Yakima, WA', + 1509252 => 'Spokane, WA', + 1509276 => 'Deer Park, WA', + 1509279 => 'Spokane, WA', + 1509290 => 'Spokane, WA', + 1509292 => 'Elk, WA', + 1509293 => 'Wenatchee, WA', + 1509299 => 'Medical Lake, WA', + 1509301 => 'Walla Walla, WA', + 1509323 => 'Spokane, WA', + 1509324 => 'Spokane, WA', + 1509325 => 'Spokane, WA', + 1509326 => 'Spokane, WA', + 1509327 => 'Spokane, WA', + 1509328 => 'Spokane, WA', + 1509332 => 'Pullman, WA', + 1509334 => 'Pullman, WA', + 1509340 => 'Spokane, WA', + 1509346 => 'Royal City, WA', + 1509349 => 'Warden, WA', + 1509353 => 'Spokane, WA', + 1509363 => 'Spokane, WA', + 1509374 => 'Kennewick, WA', + 1509375 => 'Richland, WA', + 1509382 => 'Dayton, WA', + 1509396 => 'Kennewick, WA', + 1509397 => 'Colfax, WA', + 1509413 => 'Spokane, WA', + 1509422 => 'Okanogan, WA', + 1509427 => 'Stevenson, WA', + 1509434 => 'Spokane, WA', + 1509443 => 'Spokane, WA', + 1509444 => 'Spokane, WA', + 1509447 => 'Newport, WA', + 1509448 => 'Spokane, WA', + 1509452 => 'Yakima, WA', + 1509453 => 'Yakima, WA', + 1509454 => 'Yakima, WA', + 1509455 => 'Spokane, WA', + 1509456 => 'Spokane, WA', + 1509457 => 'Yakima, WA', + 1509458 => 'Spokane, WA', + 1509459 => 'Spokane, WA', + 1509464 => 'Spokane, WA', + 1509465 => 'Spokane, WA', + 1509466 => 'Spokane, WA', + 1509467 => 'Spokane, WA', + 1509468 => 'Spokane, WA', + 1509469 => 'Yakima, WA', + 1509473 => 'Spokane, WA', + 1509474 => 'Spokane, WA', + 1509475 => 'Spokane, WA', + 1509476 => 'Oroville, WA', + 1509477 => 'Spokane, WA', + 1509482 => 'Spokane, WA', + 1509483 => 'Spokane, WA', + 1509484 => 'Spokane, WA', + 1509486 => 'Tonasket, WA', + 1509487 => 'Spokane, WA', + 1509488 => 'Othello, WA', + 1509489 => 'Spokane, WA', + 1509493 => 'White Salmon, WA', + 1509520 => 'Walla Walla, WA', + 1509522 => 'Walla Walla, WA', + 1509525 => 'Walla Walla, WA', + 1509526 => 'Walla Walla, WA', + 1509527 => 'Walla Walla, WA', + 1509529 => 'Walla Walla, WA', + 1509532 => 'Spokane, WA', + 1509533 => 'Spokane, WA', + 1509534 => 'Spokane, WA', + 1509535 => 'Spokane, WA', + 1509536 => 'Spokane, WA', + 1509542 => 'Pasco, WA', + 1509543 => 'Pasco, WA', + 1509544 => 'Pasco, WA', + 1509545 => 'Pasco, WA', + 1509546 => 'Pasco, WA', + 1509547 => 'Pasco, WA', + 1509548 => 'Leavenworth, WA', + 1509573 => 'Yakima, WA', + 1509574 => 'Yakima, WA', + 1509575 => 'Yakima, WA', + 1509576 => 'Yakima, WA', + 1509582 => 'Kennewick, WA', + 1509585 => 'Kennewick, WA', + 1509586 => 'Kennewick, WA', + 1509588 => 'Benton City, WA', + 1509590 => 'Spokane, WA', + 1509624 => 'Spokane, WA', + 1509625 => 'Spokane, WA', + 1509627 => 'Richland, WA', + 1509628 => 'Richland, WA', + 1509633 => 'Grand Coulee, WA', + 1509647 => 'Wilbur, WA', + 1509649 => 'Roslyn, WA', + 1509659 => 'Ritzville, WA', + 1509662 => 'Wenatchee, WA', + 1509663 => 'Wenatchee, WA', + 1509664 => 'Wenatchee, WA', + 1509665 => 'Wenatchee, WA', + 1509667 => 'Wenatchee, WA', + 1509674 => 'Cle Elum, WA', + 1509682 => 'Chelan, WA', + 1509684 => 'Colville, WA', + 1509685 => 'Colville, WA', + 1509687 => 'Manson, WA', + 1509689 => 'Brewster, WA', + 1509697 => 'Selah, WA', + 1509698 => 'Selah, WA', + 1509725 => 'Davenport, WA', + 1509734 => 'Kennewick, WA', + 1509735 => 'Kennewick, WA', + 1509736 => 'Kennewick, WA', + 1509737 => 'Kennewick, WA', + 1509738 => 'Kettle Falls, WA', + 1509744 => 'Spokane, WA', + 1509747 => 'Spokane, WA', + 1509750 => 'Moses Lake, WA', + 1509751 => 'Clarkston, WA', + 1509754 => 'Ephrata, WA', + 1509755 => 'Spokane, WA', + 1509758 => 'Clarkston, WA', + 1509760 => 'Moses Lake, WA', + 1509762 => 'Moses Lake, WA', + 1509764 => 'Moses Lake, WA', + 1509765 => 'Moses Lake, WA', + 1509766 => 'Moses Lake, WA', + 1509773 => 'Goldendale, WA', + 1509775 => 'Republic, WA', + 1509782 => 'Cashmere, WA', + 1509783 => 'Kennewick, WA', + 1509784 => 'Entiat, WA', + 1509786 => 'Prosser, WA', + 1509787 => 'Quincy, WA', + 1509826 => 'Omak, WA', + 1509829 => 'Zillah, WA', + 1509837 => 'Sunnyside, WA', + 1509838 => 'Spokane, WA', + 1509839 => 'Sunnyside, WA', + 1509843 => 'Pomeroy, WA', + 1509863 => 'Spokane, WA', + 1509865 => 'Toppenish, WA', + 1509868 => 'Spokane, WA', + 1509877 => 'Wapato, WA', + 1509882 => 'Grandview, WA', + 1509884 => 'East Wenatchee, WA', + 1509886 => 'East Wenatchee, WA', + 1509888 => 'Wenatchee, WA', + 1509891 => 'Spokane Valley, WA', + 1509892 => 'Spokane Valley, WA', + 1509921 => 'Spokane Valley, WA', + 1509922 => 'Spokane Valley, WA', + 1509924 => 'Spokane Valley, WA', + 1509925 => 'Ellensburg, WA', + 1509926 => 'Spokane Valley, WA', + 1509927 => 'Spokane Valley, WA', + 1509928 => 'Spokane Valley, WA', + 1509932 => 'Mattawa, WA', + 1509933 => 'Ellensburg, WA', + 1509935 => 'Chewelah, WA', + 1509939 => 'Spokane, WA', + 1509942 => 'Richland, WA', + 1509943 => 'Richland, WA', + 1509946 => 'Richland, WA', + 1509949 => 'Yakima, WA', + 1509953 => 'Spokane, WA', + 1509962 => 'Ellensburg, WA', + 1509965 => 'Yakima, WA', + 1509966 => 'Yakima, WA', + 1509967 => 'West Richland, WA', + 1509968 => 'Ellensburg, WA', + 1509972 => 'Yakima, WA', + 1509982 => 'Odessa, WA', + 1509996 => 'Winthrop, WA', + 1509997 => 'Twisp, WA', + 1510 => 'California', + 1510204 => 'Berkeley, CA', + 1510208 => 'Oakland, CA', + 1510226 => 'Fremont, CA', + 1510231 => 'Richmond, CA', + 1510232 => 'Richmond, CA', + 1510233 => 'Richmond, CA', + 1510234 => 'Richmond, CA', + 1510235 => 'Richmond, CA', + 1510236 => 'Richmond, CA', + 1510237 => 'Richmond, CA', + 1510238 => 'Oakland, CA', + 1510245 => 'Hercules, CA', + 1510248 => 'Fremont, CA', + 1510251 => 'Oakland, CA', + 1510252 => 'Fremont, CA', + 1510259 => 'Hayward, CA', + 1510261 => 'Oakland, CA', + 1510264 => 'Hayward, CA', + 1510265 => 'Hayward, CA', + 1510266 => 'Hayward, CA', + 1510268 => 'Oakland, CA', + 1510271 => 'Oakland, CA', + 1510272 => 'Oakland, CA', + 1510273 => 'Oakland, CA', + 1510293 => 'Hayward, CA', + 1510307 => 'Richmond, CA', + 1510317 => 'San Leandro, CA', + 1510324 => 'Union City, CA', + 1510336 => 'Oakland, CA', + 1510337 => 'Alameda, CA', + 1510339 => 'Oakland, CA', + 1510346 => 'San Leandro, CA', + 1510351 => 'San Leandro, CA', + 1510352 => 'San Leandro, CA', + 1510353 => 'Fremont, CA', + 1510357 => 'San Leandro, CA', + 1510383 => 'Oakland, CA', + 1510397 => 'Hayward, CA', + 1510412 => 'Richmond, CA', + 1510428 => 'Oakland, CA', + 1510429 => 'Union City, CA', + 1510430 => 'Oakland, CA', + 1510433 => 'Oakland, CA', + 1510434 => 'Oakland, CA', + 1510436 => 'Oakland, CA', + 1510437 => 'Oakland, CA', + 1510438 => 'Fremont, CA', + 1510440 => 'Fremont, CA', + 1510441 => 'Union City, CA', + 1510444 => 'Oakland, CA', + 1510445 => 'Fremont, CA', + 1510451 => 'Oakland, CA', + 1510452 => 'Oakland, CA', + 1510465 => 'Oakland, CA', + 1510471 => 'Union City, CA', + 1510475 => 'Union City, CA', + 1510477 => 'Union City, CA', + 1510481 => 'San Leandro, CA', + 1510482 => 'Oakland, CA', + 1510483 => 'San Leandro, CA', + 1510486 => 'Berkeley, CA', + 1510487 => 'Union City, CA', + 1510489 => 'Union City, CA', + 1510490 => 'Fremont, CA', + 1510494 => 'Fremont, CA', + 1510498 => 'Fremont, CA', + 1510505 => 'Fremont, CA', + 1510521 => 'Alameda, CA', + 1510522 => 'Alameda, CA', + 1510523 => 'Alameda, CA', + 1510530 => 'Oakland, CA', + 1510531 => 'Oakland, CA', + 1510532 => 'Oakland, CA', + 1510533 => 'Oakland, CA', + 1510534 => 'Oakland, CA', + 1510535 => 'Oakland, CA', + 1510536 => 'Oakland, CA', + 1510537 => 'Castro Valley, CA', + 1510540 => 'Berkeley, CA', + 1510547 => 'Oakland, CA', + 1510548 => 'Berkeley, CA', + 1510549 => 'Berkeley, CA', + 1510553 => 'Oakland, CA', + 1510562 => 'Oakland, CA', + 1510567 => 'Oakland, CA', + 1510568 => 'Oakland, CA', + 1510569 => 'Oakland, CA', + 1510573 => 'Fremont, CA', + 1510574 => 'Fremont, CA', + 1510583 => 'Hayward, CA', + 1510596 => 'Emeryville, CA', + 1510614 => 'San Leandro, CA', + 1510620 => 'Richmond, CA', + 1510623 => 'Fremont, CA', + 1510625 => 'Oakland, CA', + 1510632 => 'Oakland, CA', + 1510633 => 'Oakland, CA', + 1510635 => 'Oakland, CA', + 1510636 => 'Oakland, CA', + 1510638 => 'Oakland, CA', + 1510639 => 'Oakland, CA', + 1510642 => 'Berkeley, CA', + 1510644 => 'Berkeley, CA', + 1510647 => 'Berkeley, CA', + 1510649 => 'Berkeley, CA', + 1510651 => 'Fremont, CA', + 1510652 => 'Oakland, CA', + 1510653 => 'Oakland, CA', + 1510654 => 'Oakland, CA', + 1510655 => 'Oakland, CA', + 1510656 => 'Fremont, CA', + 1510657 => 'Fremont, CA', + 1510659 => 'Fremont, CA', + 1510663 => 'Oakland, CA', + 1510665 => 'Berkeley, CA', + 1510666 => 'Berkeley, CA', + 1510667 => 'San Leandro, CA', + 1510668 => 'Fremont, CA', + 1510670 => 'Hayward, CA', + 1510675 => 'Union City, CA', + 1510683 => 'Fremont, CA', + 1510690 => 'Hayward, CA', + 1510704 => 'Berkeley, CA', + 1510713 => 'Fremont, CA', + 1510724 => 'Pinole, CA', + 1510728 => 'Hayward, CA', + 1510732 => 'Hayward, CA', + 1510733 => 'Hayward, CA', + 1510739 => 'Fremont, CA', + 1510742 => 'Fremont, CA', + 1510744 => 'Fremont, CA', + 1510745 => 'Fremont, CA', + 1510748 => 'Alameda, CA', + 1510749 => 'Alameda, CA', + 1510752 => 'Oakland, CA', + 1510763 => 'Oakland, CA', + 1510769 => 'Alameda, CA', + 1510770 => 'Fremont, CA', + 1510777 => 'Oakland, CA', + 1510780 => 'Hayward, CA', + 1510782 => 'Hayward, CA', + 1510783 => 'Hayward, CA', + 1510784 => 'Hayward, CA', + 1510785 => 'Hayward, CA', + 1510786 => 'Hayward, CA', + 1510787 => 'Crockett, CA', + 1510790 => 'Fremont, CA', + 1510791 => 'Fremont, CA', + 1510792 => 'Fremont, CA', + 1510793 => 'Fremont, CA', + 1510794 => 'Fremont, CA', + 1510795 => 'Fremont, CA', + 1510796 => 'Fremont, CA', + 1510797 => 'Fremont, CA', + 1510814 => 'Alameda, CA', + 1510818 => 'Fremont, CA', + 1510832 => 'Oakland, CA', + 1510834 => 'Oakland, CA', + 1510835 => 'Oakland, CA', + 1510836 => 'Oakland, CA', + 1510839 => 'Oakland, CA', + 1510841 => 'Berkeley, CA', + 1510842 => 'Oakland, CA', + 1510843 => 'Berkeley, CA', + 1510845 => 'Berkeley, CA', + 1510848 => 'Berkeley, CA', + 1510849 => 'Berkeley, CA', + 1510864 => 'Alameda, CA', + 1510865 => 'Alameda, CA', + 1510869 => 'Oakland, CA', + 1510879 => 'Oakland, CA', + 1510883 => 'Berkeley, CA', + 1510885 => 'Hayward, CA', + 1510886 => 'Hayward, CA', + 1510887 => 'Hayward, CA', + 1510888 => 'Hayward, CA', + 1510891 => 'Oakland, CA', + 1510893 => 'Oakland, CA', + 1510895 => 'San Leandro, CA', + 1510922 => 'Oakland, CA', + 1510923 => 'Oakland, CA', + 1510979 => 'Fremont, CA', + 1510981 => 'Berkeley, CA', + 1510986 => 'Oakland, CA', + 1512 => 'Texas', + 1512206 => 'Austin, TX', + 1512218 => 'Round Rock, TX', + 1512231 => 'Austin, TX', + 1512236 => 'Austin, TX', + 1512237 => 'Smithville, TX', + 1512241 => 'Austin, TX', + 1512243 => 'Austin, TX', + 1512244 => 'Round Rock, TX', + 1512246 => 'Round Rock, TX', + 1512247 => 'Del Valle, TX', + 1512250 => 'Austin, TX', + 1512255 => 'Round Rock, TX', + 1512258 => 'Austin, TX', + 1512261 => 'Lakeway, TX', + 1512264 => 'Spicewood, TX', + 1512266 => 'Austin, TX', + 1512268 => 'Kyle, TX', + 1512272 => 'Manor, TX', + 1512276 => 'Austin, TX', + 1512278 => 'Manor, TX', + 1512280 => 'Austin, TX', + 1512281 => 'Elgin, TX', + 1512282 => 'Austin, TX', + 1512284 => 'Austin, TX', + 1512285 => 'Elgin, TX', + 1512288 => 'Austin, TX', + 1512291 => 'Austin, TX', + 1512292 => 'Austin, TX', + 1512295 => 'Buda, TX', + 1512296 => 'Austin, TX', + 1512301 => 'Austin, TX', + 1512302 => 'Austin, TX', + 1512303 => 'Bastrop, TX', + 1512306 => 'Austin, TX', + 1512308 => 'Bastrop, TX', + 1512310 => 'Round Rock, TX', + 1512312 => 'Buda, TX', + 1512320 => 'Austin, TX', + 1512321 => 'Bastrop, TX', + 1512322 => 'Austin, TX', + 1512323 => 'Austin, TX', + 1512324 => 'Austin, TX', + 1512326 => 'Austin, TX', + 1512327 => 'Austin, TX', + 1512328 => 'Austin, TX', + 1512329 => 'Austin, TX', + 1512330 => 'Austin, TX', + 1512331 => 'Austin, TX', + 1512332 => 'Bastrop, TX', + 1512334 => 'Austin, TX', + 1512335 => 'Austin, TX', + 1512338 => 'Austin, TX', + 1512339 => 'Austin, TX', + 1512340 => 'Austin, TX', + 1512341 => 'Round Rock, TX', + 1512342 => 'Austin, TX', + 1512343 => 'Austin, TX', + 1512344 => 'Austin, TX', + 1512345 => 'Austin, TX', + 1512346 => 'Austin, TX', + 1512347 => 'Austin, TX', + 1512349 => 'Austin, TX', + 1512351 => 'Austin, TX', + 1512352 => 'Taylor, TX', + 1512353 => 'San Marcos, TX', + 1512355 => 'Bertram, TX', + 1512358 => 'Austin, TX', + 1512360 => 'Smithville, TX', + 1512365 => 'Taylor, TX', + 1512370 => 'Austin, TX', + 1512371 => 'Austin, TX', + 1512372 => 'Austin, TX', + 1512373 => 'Austin, TX', + 1512374 => 'Austin, TX', + 1512376 => 'Lockhart, TX', + 1512377 => 'Austin, TX', + 1512380 => 'Austin, TX', + 1512382 => 'Austin, TX', + 1512383 => 'Austin, TX', + 1512385 => 'Austin, TX', + 1512386 => 'Austin, TX', + 1512388 => 'Round Rock, TX', + 1512389 => 'Austin, TX', + 1512391 => 'Austin, TX', + 1512392 => 'San Marcos, TX', + 1512393 => 'San Marcos, TX', + 1512394 => 'Austin, TX', + 1512396 => 'San Marcos, TX', + 1512398 => 'Lockhart, TX', + 1512407 => 'Austin, TX', + 1512414 => 'Austin, TX', + 1512416 => 'Austin, TX', + 1512418 => 'Austin, TX', + 1512419 => 'Austin, TX', + 1512420 => 'Austin, TX', + 1512440 => 'Austin, TX', + 1512441 => 'Austin, TX', + 1512442 => 'Austin, TX', + 1512443 => 'Austin, TX', + 1512444 => 'Austin, TX', + 1512445 => 'Austin, TX', + 1512446 => 'Rockdale, TX', + 1512447 => 'Austin, TX', + 1512448 => 'Austin, TX', + 1512450 => 'Austin, TX', + 1512451 => 'Austin, TX', + 1512452 => 'Austin, TX', + 1512453 => 'Austin, TX', + 1512454 => 'Austin, TX', + 1512457 => 'Austin, TX', + 1512458 => 'Austin, TX', + 1512459 => 'Austin, TX', + 1512462 => 'Austin, TX', + 1512463 => 'Austin, TX', + 1512467 => 'Austin, TX', + 1512469 => 'Austin, TX', + 1512471 => 'Austin, TX', + 1512472 => 'Austin, TX', + 1512473 => 'Austin, TX', + 1512474 => 'Austin, TX', + 1512476 => 'Austin, TX', + 1512477 => 'Austin, TX', + 1512478 => 'Austin, TX', + 1512479 => 'Austin, TX', + 1512480 => 'Austin, TX', + 1512481 => 'Austin, TX', + 1512482 => 'Austin, TX', + 1512485 => 'Austin, TX', + 1512491 => 'Austin, TX', + 1512495 => 'Austin, TX', + 1512499 => 'Austin, TX', + 1512502 => 'Austin, TX', + 1512505 => 'Austin, TX', + 1512506 => 'Austin, TX', + 1512509 => 'Round Rock, TX', + 1512515 => 'Liberty Hill, TX', + 1512524 => 'Austin, TX', + 1512527 => 'Austin, TX', + 1512533 => 'Austin, TX', + 1512542 => 'Austin, TX', + 1512551 => 'Austin, TX', + 1512556 => 'Lampasas, TX', + 1512581 => 'Bastrop, TX', + 1512610 => 'Austin, TX', + 1512614 => 'Austin, TX', + 1512615 => 'Austin, TX', + 1512617 => 'Austin, TX', + 1512628 => 'Austin, TX', + 1512637 => 'Austin, TX', + 1512651 => 'Austin, TX', + 1512671 => 'Round Rock, TX', + 1512707 => 'Austin, TX', + 1512708 => 'Austin, TX', + 1512715 => 'Burnet, TX', + 1512719 => 'Austin, TX', + 1512732 => 'Austin, TX', + 1512746 => 'Jarrell, TX', + 1512754 => 'San Marcos, TX', + 1512756 => 'Burnet, TX', + 1512759 => 'Hutto, TX', + 1512763 => 'Georgetown, TX', + 1512778 => 'Liberty Hill, TX', + 1512794 => 'Austin, TX', + 1512795 => 'Austin, TX', + 1512804 => 'Austin, TX', + 1512805 => 'San Marcos, TX', + 1512819 => 'Georgetown, TX', + 1512821 => 'Austin, TX', + 1512832 => 'Austin, TX', + 1512833 => 'Austin, TX', + 1512834 => 'Austin, TX', + 1512835 => 'Austin, TX', + 1512836 => 'Austin, TX', + 1512837 => 'Austin, TX', + 1512846 => 'Hutto, TX', + 1512847 => 'Wimberley, TX', + 1512854 => 'Austin, TX', + 1512858 => 'Dripping Springs, TX', + 1512863 => 'Georgetown, TX', + 1512864 => 'Georgetown, TX', + 1512868 => 'Georgetown, TX', + 1512869 => 'Georgetown, TX', + 1512873 => 'Austin, TX', + 1512878 => 'San Marcos, TX', + 1512891 => 'Austin, TX', + 1512892 => 'Austin, TX', + 1512894 => 'Dripping Springs, TX', + 1512899 => 'Austin, TX', + 1512901 => 'Austin, TX', + 1512912 => 'Austin, TX', + 1512916 => 'Austin, TX', + 1512918 => 'Austin, TX', + 1512926 => 'Austin, TX', + 1512928 => 'Austin, TX', + 1512929 => 'Austin, TX', + 1512930 => 'Georgetown, TX', + 1512931 => 'Georgetown, TX', + 1512943 => 'Georgetown, TX', + 1512973 => 'Austin, TX', + 1512974 => 'Austin, TX', + 1513 => 'Ohio', + 1513202 => 'Harrison, OH', + 1513204 => 'Mason, OH', + 1513217 => 'Middletown, OH', + 1513221 => 'Cincinnati, OH', + 1513228 => 'Lebanon, OH', + 1513229 => 'Mason, OH', + 1513231 => 'Cincinnati, OH', + 1513232 => 'Cincinnati, OH', + 1513233 => 'Cincinnati, OH', + 1513234 => 'Mason, OH', + 1513241 => 'Cincinnati, OH', + 1513242 => 'Cincinnati, OH', + 1513244 => 'Cincinnati, OH', + 1513245 => 'Cincinnati, OH', + 1513247 => 'Cincinnati, OH', + 1513248 => 'Milford, OH', + 1513251 => 'Cincinnati, OH', + 1513271 => 'Cincinnati, OH', + 1513272 => 'Cincinnati, OH', + 1513281 => 'Cincinnati, OH', + 1513285 => 'Hamilton, OH', + 1513321 => 'Cincinnati, OH', + 1513333 => 'Cincinnati, OH', + 1513336 => 'Mason, OH', + 1513346 => 'Cincinnati, OH', + 1513347 => 'Cincinnati, OH', + 1513351 => 'Cincinnati, OH', + 1513352 => 'Cincinnati, OH', + 1513353 => 'Cleves, OH', + 1513354 => 'Cincinnati, OH', + 1513357 => 'Cincinnati, OH', + 1513360 => 'Monroe, OH', + 1513367 => 'Harrison, OH', + 1513376 => 'Cincinnati, OH', + 1513381 => 'Cincinnati, OH', + 1513385 => 'Cincinnati, OH', + 1513389 => 'Cincinnati, OH', + 1513398 => 'Mason, OH', + 1513407 => 'Cincinnati, OH', + 1513420 => 'Middletown, OH', + 1513421 => 'Cincinnati, OH', + 1513422 => 'Middletown, OH', + 1513423 => 'Middletown, OH', + 1513424 => 'Middletown, OH', + 1513425 => 'Middletown, OH', + 1513451 => 'Cincinnati, OH', + 1513459 => 'Mason, OH', + 1513469 => 'Cincinnati, OH', + 1513471 => 'Cincinnati, OH', + 1513474 => 'Cincinnati, OH', + 1513475 => 'Cincinnati, OH', + 1513481 => 'Cincinnati, OH', + 1513489 => 'Cincinnati, OH', + 1513521 => 'Cincinnati, OH', + 1513522 => 'Cincinnati, OH', + 1513523 => 'Oxford, OH', + 1513524 => 'Oxford, OH', + 1513528 => 'Cincinnati, OH', + 1513530 => 'Cincinnati, OH', + 1513531 => 'Cincinnati, OH', + 1513533 => 'Cincinnati, OH', + 1513539 => 'Monroe, OH', + 1513541 => 'Cincinnati, OH', + 1513542 => 'Cincinnati, OH', + 1513553 => 'New Richmond, OH', + 1513554 => 'Cincinnati, OH', + 1513557 => 'Cincinnati, OH', + 1513558 => 'Cincinnati, OH', + 1513559 => 'Cincinnati, OH', + 1513561 => 'Cincinnati, OH', + 1513563 => 'Cincinnati, OH', + 1513574 => 'Cincinnati, OH', + 1513575 => 'Milford, OH', + 1513576 => 'Milford, OH', + 1513579 => 'Cincinnati, OH', + 1513584 => 'Cincinnati, OH', + 1513585 => 'Cincinnati, OH', + 1513598 => 'Cincinnati, OH', + 1513621 => 'Cincinnati, OH', + 1513624 => 'Cincinnati, OH', + 1513631 => 'Cincinnati, OH', + 1513636 => 'Cincinnati, OH', + 1513641 => 'Cincinnati, OH', + 1513651 => 'Cincinnati, OH', + 1513661 => 'Cincinnati, OH', + 1513662 => 'Cincinnati, OH', + 1513671 => 'Cincinnati, OH', + 1513672 => 'Cincinnati, OH', + 1513674 => 'Cincinnati, OH', + 1513681 => 'Cincinnati, OH', + 1513683 => 'Loveland, OH', + 1513686 => 'Cincinnati, OH', + 1513721 => 'Cincinnati, OH', + 1513724 => 'Williamsburg, OH', + 1513727 => 'Middletown, OH', + 1513729 => 'Cincinnati, OH', + 1513731 => 'Cincinnati, OH', + 1513732 => 'Batavia, OH', + 1513733 => 'Cincinnati, OH', + 1513734 => 'Bethel, OH', + 1513735 => 'Batavia, OH', + 1513737 => 'Hamilton, OH', + 1513741 => 'Cincinnati, OH', + 1513742 => 'Cincinnati, OH', + 1513745 => 'Cincinnati, OH', + 1513751 => 'Cincinnati, OH', + 1513752 => 'Cincinnati, OH', + 1513754 => 'Mason, OH', + 1513755 => 'West Chester, OH', + 1513759 => 'West Chester, OH', + 1513761 => 'Cincinnati, OH', + 1513762 => 'Cincinnati, OH', + 1513769 => 'Cincinnati, OH', + 1513770 => 'Mason, OH', + 1513771 => 'Cincinnati, OH', + 1513772 => 'Cincinnati, OH', + 1513777 => 'West Chester, OH', + 1513779 => 'West Chester, OH', + 1513785 => 'Hamilton, OH', + 1513791 => 'Cincinnati, OH', + 1513792 => 'Cincinnati, OH', + 1513793 => 'Cincinnati, OH', + 1513794 => 'Cincinnati, OH', + 1513797 => 'Amelia, OH', + 1513821 => 'Cincinnati, OH', + 1513825 => 'Cincinnati, OH', + 1513829 => 'Fairfield, OH', + 1513831 => 'Milford, OH', + 1513834 => 'Cincinnati, OH', + 1513841 => 'Cincinnati, OH', + 1513844 => 'Hamilton, OH', + 1513851 => 'Cincinnati, OH', + 1513852 => 'Cincinnati, OH', + 1513858 => 'Fairfield, OH', + 1513861 => 'Cincinnati, OH', + 1513862 => 'Cincinnati, OH', + 1513863 => 'Hamilton, OH', + 1513867 => 'Hamilton, OH', + 1513868 => 'Hamilton, OH', + 1513871 => 'Cincinnati, OH', + 1513872 => 'Cincinnati, OH', + 1513875 => 'Fayetteville, OH', + 1513876 => 'Felicity, OH', + 1513887 => 'Hamilton, OH', + 1513891 => 'Cincinnati, OH', + 1513892 => 'Hamilton, OH', + 1513893 => 'Hamilton, OH', + 1513894 => 'Hamilton, OH', + 1513895 => 'Hamilton, OH', + 1513896 => 'Hamilton, OH', + 1513897 => 'Waynesville, OH', + 1513899 => 'Morrow, OH', + 1513921 => 'Cincinnati, OH', + 1513922 => 'Cincinnati, OH', + 1513923 => 'Cincinnati, OH', + 1513931 => 'Cincinnati, OH', + 1513932 => 'Lebanon, OH', + 1513933 => 'Lebanon, OH', + 1513934 => 'Lebanon, OH', + 1513939 => 'Fairfield, OH', + 1513941 => 'Cincinnati, OH', + 1513943 => 'Cincinnati, OH', + 1513947 => 'Cincinnati, OH', + 1513948 => 'Cincinnati, OH', + 1513961 => 'Cincinnati, OH', + 1513965 => 'Milford, OH', + 1513977 => 'Cincinnati, OH', + 1513984 => 'Cincinnati, OH', + 1513985 => 'Cincinnati, OH', + 1513988 => 'Trenton, OH', + 1514 => 'Quebec', + 1514223 => 'Montreal, QC', + 1514227 => 'Montreal, QC', + 1514251 => 'Montreal, QC', + 1514252 => 'Montreal, QC', + 1514253 => 'Montreal, QC', + 1514254 => 'Montreal, QC', + 1514255 => 'Montreal, QC', + 1514256 => 'Montreal, QC', + 1514257 => 'Montreal, QC', + 1514259 => 'Montreal, QC', + 1514270 => 'Montreal, QC', + 1514271 => 'Montreal, QC', + 1514272 => 'Montreal, QC', + 1514273 => 'Montreal, QC', + 1514274 => 'Montreal, QC', + 1514276 => 'Montreal, QC', + 1514277 => 'Montreal, QC', + 1514278 => 'Montreal, QC', + 1514279 => 'Montreal, QC', + 1514280 => 'Montreal, QC', + 1514281 => 'Montreal, QC', + 1514282 => 'Montreal, QC', + 1514284 => 'Montreal, QC', + 1514285 => 'Montreal, QC', + 1514286 => 'Montreal, QC', + 1514287 => 'Montreal, QC', + 1514288 => 'Montreal, QC', + 1514289 => 'Montreal, QC', + 1514303 => 'Montreal, QC', + 1514313 => 'Montreal, QC', + 1514315 => 'Montreal, QC', + 1514333 => 'Saint-Laurent, QC', + 1514335 => 'Saint-Laurent, QC', + 1514339 => 'Saint-Laurent, QC', + 1514340 => 'Montreal, QC', + 1514342 => 'Montreal, QC', + 1514345 => 'Montreal, QC', + 1514363 => 'Lasalle, QC', + 1514364 => 'Lasalle, QC', + 1514365 => 'Lasalle, QC', + 1514366 => 'Lasalle, QC', + 1514367 => 'Lasalle, QC', + 1514368 => 'Lasalle, QC', + 1514369 => 'Montreal, QC', + 1514374 => 'Montreal, QC', + 1514376 => 'Montreal, QC', + 1514381 => 'Montreal, QC', + 1514382 => 'Montreal, QC', + 1514383 => 'Montreal, QC', + 1514384 => 'Montreal, QC', + 1514385 => 'Montreal, QC', + 1514387 => 'Montreal, QC', + 1514388 => 'Montreal, QC', + 1514389 => 'Montreal, QC', + 1514392 => 'Montreal, QC', + 1514393 => 'Montreal, QC', + 1514395 => 'Montreal, QC', + 1514396 => 'Montreal, QC', + 1514397 => 'Montreal, QC', + 1514398 => 'Montreal, QC', + 1514419 => 'Montreal, QC', + 1514422 => 'Dorval, QC', + 1514426 => 'Pointe-Claire, QC', + 1514428 => 'Pointe-Claire, QC', + 1514439 => 'Montreal, QC', + 1514461 => 'Montreal, QC', + 1514481 => 'Montreal, QC', + 1514482 => 'Montreal, QC', + 1514483 => 'Montreal, QC', + 1514484 => 'Montreal, QC', + 1514485 => 'Montreal, QC', + 1514486 => 'Montreal, QC', + 1514487 => 'Montreal, QC', + 1514488 => 'Montreal, QC', + 1514489 => 'Montreal, QC', + 1514495 => 'Montreal, QC', + 1514498 => 'Pointe-aux-Trembles, QC', + 1514499 => 'Montreal, QC', + 1514504 => 'Montreal, QC', + 1514507 => 'Montreal, QC', + 1514508 => 'Montreal, QC', + 1514509 => 'Montreal, QC', + 1514510 => 'Montreal, QC', + 1514521 => 'Montreal, QC', + 1514522 => 'Montreal, QC', + 1514523 => 'Montreal, QC', + 1514524 => 'Montreal, QC', + 1514525 => 'Montreal, QC', + 1514526 => 'Montreal, QC', + 1514527 => 'Montreal, QC', + 1514528 => 'Montreal, QC', + 1514529 => 'Montreal, QC', + 1514543 => 'Montreal, QC', + 1514544 => 'Montreal, QC', + 1514564 => 'Montreal, QC', + 1514593 => 'Montreal, QC', + 1514595 => 'Lasalle, QC', + 1514596 => 'Montreal, QC', + 1514598 => 'Montreal, QC', + 1514630 => 'Pointe-Claire, QC', + 1514631 => 'Dorval, QC', + 1514633 => 'Dorval, QC', + 1514634 => 'Lachine, QC', + 1514636 => 'Dorval, QC', + 1514637 => 'Lachine, QC', + 1514639 => 'Lachine, QC', + 1514642 => 'Pointe-aux-Trembles, QC', + 1514658 => 'Montreal, QC', + 1514670 => 'Montreal, QC', + 1514678 => 'Montreal, QC', + 1514694 => 'Pointe-Claire, QC', + 1514695 => 'Pointe-Claire, QC', + 1514697 => 'Pointe-Claire, QC', + 1514721 => 'Montreal, QC', + 1514722 => 'Montreal, QC', + 1514723 => 'Montreal, QC', + 1514725 => 'Montreal, QC', + 1514727 => 'Montreal, QC', + 1514728 => 'Montreal, QC', + 1514729 => 'Montreal, QC', + 1514731 => 'Montreal, QC', + 1514733 => 'Montreal, QC', + 1514735 => 'Montreal, QC', + 1514736 => 'Montreal, QC', + 1514737 => 'Montreal, QC', + 1514738 => 'Montreal, QC', + 1514739 => 'Montreal, QC', + 1514744 => 'Saint-Laurent, QC', + 1514747 => 'Saint-Laurent, QC', + 1514748 => 'Saint-Laurent, QC', + 1514750 => 'Montreal, QC', + 1514759 => 'Montreal, QC', + 1514761 => 'Verdun, QC', + 1514788 => 'Montreal, QC', + 1514789 => 'Montreal, QC', + 1514798 => 'Montreal, QC', + 1514807 => 'Montreal, QC', + 1514840 => 'Montreal, QC', + 1514842 => 'Montreal, QC', + 1514843 => 'Montreal, QC', + 1514844 => 'Montreal, QC', + 1514845 => 'Montreal, QC', + 1514846 => 'Montreal, QC', + 1514847 => 'Montreal, QC', + 1514848 => 'Montreal, QC', + 1514849 => 'Montreal, QC', + 1514855 => 'Saint-Laurent, QC', + 1514858 => 'Montreal, QC', + 1514861 => 'Montreal, QC', + 1514866 => 'Montreal, QC', + 1514868 => 'Montreal, QC', + 1514871 => 'Montreal, QC', + 1514872 => 'Montreal, QC', + 1514874 => 'Montreal, QC', + 1514875 => 'Montreal, QC', + 1514876 => 'Montreal, QC', + 1514878 => 'Montreal, QC', + 1514879 => 'Montreal, QC', + 1514899 => 'Montreal, QC', + 1514903 => 'Montreal, QC', + 1514904 => 'Montreal, QC', + 1514905 => 'Montreal, QC', + 1514906 => 'Montreal, QC', + 1514908 => 'Montreal, QC', + 1514931 => 'Montreal, QC', + 1514932 => 'Montreal, QC', + 1514933 => 'Montreal, QC', + 1514934 => 'Montreal, QC', + 1514935 => 'Montreal, QC', + 1514937 => 'Montreal, QC', + 1514938 => 'Montreal, QC', + 1514939 => 'Montreal, QC', + 1514940 => 'Montreal, QC', + 1514948 => 'Montreal, QC', + 1514954 => 'Montreal, QC', + 1514956 => 'Saint-Laurent, QC', + 1514982 => 'Montreal, QC', + 1514985 => 'Montreal, QC', + 1514987 => 'Montreal, QC', + 1514989 => 'Montreal, QC', + 1515 => 'Iowa', + 1515221 => 'West Des Moines, IA', + 1515222 => 'West Des Moines, IA', + 1515223 => 'West Des Moines, IA', + 1515224 => 'West Des Moines, IA', + 1515225 => 'West Des Moines, IA', + 1515232 => 'Ames, IA', + 1515233 => 'Ames, IA', + 1515237 => 'Des Moines, IA', + 1515239 => 'Ames, IA', + 1515241 => 'Des Moines, IA', + 1515242 => 'Des Moines, IA', + 1515243 => 'Des Moines, IA', + 1515244 => 'Des Moines, IA', + 1515245 => 'Des Moines, IA', + 1515246 => 'Des Moines, IA', + 1515247 => 'Des Moines, IA', + 1515255 => 'Des Moines, IA', + 1515256 => 'Des Moines, IA', + 1515262 => 'Des Moines, IA', + 1515263 => 'Des Moines, IA', + 1515264 => 'Des Moines, IA', + 1515265 => 'Des Moines, IA', + 1515266 => 'Des Moines, IA', + 1515267 => 'West Des Moines, IA', + 1515271 => 'Des Moines, IA', + 1515274 => 'Des Moines, IA', + 1515275 => 'Ogden, IA', + 1515277 => 'Des Moines, IA', + 1515279 => 'Des Moines, IA', + 1515280 => 'Des Moines, IA', + 1515281 => 'Des Moines, IA', + 1515282 => 'Des Moines, IA', + 1515283 => 'Des Moines, IA', + 1515284 => 'Des Moines, IA', + 1515285 => 'Des Moines, IA', + 1515286 => 'Des Moines, IA', + 1515287 => 'Des Moines, IA', + 1515288 => 'Des Moines, IA', + 1515289 => 'Ankeny, IA', + 1515292 => 'Ames, IA', + 1515294 => 'Ames, IA', + 1515295 => 'Algona, IA', + 1515327 => 'West Des Moines, IA', + 1515332 => 'Humboldt, IA', + 1515352 => 'Gowrie, IA', + 1515382 => 'Nevada, IA', + 1515386 => 'Jefferson, IA', + 1515432 => 'Boone, IA', + 1515433 => 'Boone, IA', + 1515440 => 'West Des Moines, IA', + 1515448 => 'Eagle Grove, IA', + 1515453 => 'West Des Moines, IA', + 1515457 => 'West Des Moines, IA', + 1515462 => 'Winterset, IA', + 1515465 => 'Perry, IA', + 1515523 => 'Stuart, IA', + 1515532 => 'Clarion, IA', + 1515573 => 'Fort Dodge, IA', + 1515574 => 'Fort Dodge, IA', + 1515576 => 'Fort Dodge, IA', + 1515597 => 'Huxley, IA', + 1515643 => 'Des Moines, IA', + 1515674 => 'Colfax, IA', + 1515699 => 'Des Moines, IA', + 1515733 => 'Story City, IA', + 1515795 => 'Madrid, IA', + 1515832 => 'Webster City, IA', + 1515885 => 'Bancroft, IA', + 1515887 => 'West Bend, IA', + 1515953 => 'Des Moines, IA', + 1515955 => 'Fort Dodge, IA', + 1515957 => 'Altoona, IA', + 1515961 => 'Indianola, IA', + 1515962 => 'Indianola, IA', + 1515963 => 'Ankeny, IA', + 1515964 => 'Ankeny, IA', + 1515965 => 'Ankeny, IA', + 1515967 => 'Altoona, IA', + 1515981 => 'Norwalk, IA', + 1515984 => 'Polk City, IA', + 1515986 => 'Grimes, IA', + 1515987 => 'Waukee, IA', + 1515989 => 'Carlisle, IA', + 1515993 => 'Adel, IA', + 1516 => 'New York', + 1516222 => 'Garden City, NY', + 1516229 => 'Uniondale, NY', + 1516249 => 'Farmingdale, NY', + 1516256 => 'Valley Stream, NY', + 1516293 => 'Farmingdale, NY', + 1516333 => 'Westbury, NY', + 1516334 => 'Westbury, NY', + 1516338 => 'Westbury, NY', + 1516349 => 'Plainview, NY', + 1516364 => 'Syosset, NY', + 1516365 => 'Manhasset, NY', + 1516367 => 'Woodbury, NY', + 1516420 => 'Farmingdale, NY', + 1516431 => 'Long Beach, NY', + 1516432 => 'Long Beach, NY', + 1516441 => 'Great Neck, NY', + 1516466 => 'Great Neck, NY', + 1516482 => 'Great Neck, NY', + 1516487 => 'Great Neck, NY', + 1516496 => 'Syosset, NY', + 1516504 => 'Great Neck, NY', + 1516522 => 'Uniondale, NY', + 1516541 => 'Massapequa, NY', + 1516561 => 'Valley Stream, NY', + 1516562 => 'Manhasset, NY', + 1516568 => 'Valley Stream, NY', + 1516572 => 'East Meadow, NY', + 1516576 => 'Plainview, NY', + 1516609 => 'Glen Cove, NY', + 1516624 => 'Oyster Bay, NY', + 1516626 => 'Roslyn Heights, NY', + 1516627 => 'Manhasset, NY', + 1516628 => 'Bayville, NY', + 1516632 => 'Oceanside, NY', + 1516663 => 'Mineola, NY', + 1516671 => 'Glen Cove, NY', + 1516674 => 'Glen Cove, NY', + 1516676 => 'Glen Cove, NY', + 1516682 => 'Syosset, NY', + 1516692 => 'Woodbury, NY', + 1516694 => 'Farmingdale, NY', + 1516705 => 'Rockville Centre, NY', + 1516734 => 'New Hyde Park, NY', + 1516745 => 'Garden City, NY', + 1516752 => 'Farmingdale, NY', + 1516764 => 'Rockville Centre, NY', + 1516767 => 'Port Washington, NY', + 1516773 => 'Great Neck, NY', + 1516791 => 'Valley Stream, NY', + 1516794 => 'East Meadow, NY', + 1516795 => 'Massapequa, NY', + 1516796 => 'Levittown, NY', + 1516797 => 'Massapequa, NY', + 1516798 => 'Massapequa, NY', + 1516799 => 'Massapequa, NY', + 1516823 => 'Valley Stream, NY', + 1516825 => 'Valley Stream, NY', + 1516829 => 'Great Neck, NY', + 1516869 => 'Manhasset, NY', + 1516872 => 'Valley Stream, NY', + 1516876 => 'Westbury, NY', + 1516883 => 'Port Washington, NY', + 1516889 => 'Long Beach, NY', + 1516897 => 'Long Beach, NY', + 1516921 => 'Syosset, NY', + 1516922 => 'Oyster Bay, NY', + 1516944 => 'Port Washington, NY', + 1516997 => 'Westbury, NY', + 1517 => 'Michigan', + 1517203 => 'East Lansing, MI', + 1517223 => 'Fowlerville, MI', + 1517244 => 'Mason, MI', + 1517263 => 'Adrian, MI', + 1517264 => 'Adrian, MI', + 1517265 => 'Adrian, MI', + 1517266 => 'Adrian, MI', + 1517272 => 'Lansing, MI', + 1517278 => 'Coldwater, MI', + 1517279 => 'Coldwater, MI', + 1517316 => 'Lansing, MI', + 1517321 => 'Lansing, MI', + 1517322 => 'Lansing, MI', + 1517323 => 'Lansing, MI', + 1517324 => 'East Lansing, MI', + 1517327 => 'Lansing, MI', + 1517332 => 'East Lansing, MI', + 1517333 => 'East Lansing, MI', + 1517336 => 'East Lansing, MI', + 1517337 => 'East Lansing, MI', + 1517339 => 'Haslett, MI', + 1517346 => 'Lansing, MI', + 1517347 => 'Okemos, MI', + 1517349 => 'Okemos, MI', + 1517351 => 'East Lansing, MI', + 1517353 => 'East Lansing, MI', + 1517355 => 'East Lansing, MI', + 1517364 => 'Lansing, MI', + 1517367 => 'Lansing, MI', + 1517369 => 'Bronson, MI', + 1517372 => 'Lansing, MI', + 1517373 => 'Lansing, MI', + 1517374 => 'Lansing, MI', + 1517381 => 'Okemos, MI', + 1517393 => 'Lansing, MI', + 1517394 => 'Lansing, MI', + 1517423 => 'Tecumseh, MI', + 1517424 => 'Tecumseh, MI', + 1517437 => 'Hillsdale, MI', + 1517439 => 'Hillsdale, MI', + 1517448 => 'Hudson, MI', + 1517456 => 'Clinton, MI', + 1517458 => 'Morenci, MI', + 1517467 => 'Onsted, MI', + 1517482 => 'Lansing, MI', + 1517483 => 'Lansing, MI', + 1517484 => 'Lansing, MI', + 1517485 => 'Lansing, MI', + 1517486 => 'Blissfield, MI', + 1517487 => 'Lansing, MI', + 1517521 => 'Webberville, MI', + 1517522 => 'Grass Lake Charter Township, MI', + 1517523 => 'Osseo, MI', + 1517524 => 'Concord, MI', + 1517529 => 'Clarklake, MI', + 1517531 => 'Parma, MI', + 1517540 => 'Howell, MI', + 1517541 => 'Charlotte, MI', + 1517542 => 'Litchfield, MI', + 1517543 => 'Charlotte, MI', + 1517545 => 'Howell, MI', + 1517546 => 'Howell, MI', + 1517548 => 'Howell, MI', + 1517552 => 'Howell, MI', + 1517568 => 'Homer, MI', + 1517589 => 'Leslie, MI', + 1517592 => 'Brooklyn, MI', + 1517622 => 'Grand Ledge, MI', + 1517625 => 'Perry, MI', + 1517627 => 'Grand Ledge, MI', + 1517629 => 'Albion, MI', + 1517639 => 'Quincy, MI', + 1517641 => 'Bath Township, MI', + 1517645 => 'Potterville, MI', + 1517646 => 'Dimondale, MI', + 1517647 => 'Portland, MI', + 1517651 => 'Laingsburg, MI', + 1517655 => 'Williamston, MI', + 1517663 => 'Eaton Rapids, MI', + 1517668 => 'DeWitt, MI', + 1517669 => 'DeWitt, MI', + 1517676 => 'Mason, MI', + 1517694 => 'Holt, MI', + 1517699 => 'Holt, MI', + 1517741 => 'Union City, MI', + 1517750 => 'Jackson, MI', + 1517764 => 'Jackson, MI', + 1517768 => 'Jackson, MI', + 1517780 => 'Jackson, MI', + 1517782 => 'Jackson, MI', + 1517783 => 'Jackson, MI', + 1517784 => 'Jackson, MI', + 1517787 => 'Jackson, MI', + 1517788 => 'Jackson, MI', + 1517789 => 'Jackson, MI', + 1517796 => 'Jackson, MI', + 1517841 => 'Jackson, MI', + 1517849 => 'Jonesville, MI', + 1517851 => 'Stockbridge, MI', + 1517852 => 'Nashville, MI', + 1517882 => 'Lansing, MI', + 1517886 => 'Lansing, MI', + 1517887 => 'Lansing, MI', + 1517913 => 'Lansing Charter Township, MI', + 1517975 => 'Lansing, MI', + 1518 => 'New York', + 1518218 => 'Albany, NY', + 1518220 => 'Latham, NY', + 1518234 => 'Cobleskill, NY', + 1518236 => 'Mooers, NY', + 1518237 => 'Cohoes, NY', + 1518243 => 'Schenectady, NY', + 1518251 => 'North Creek, NY', + 1518262 => 'Albany, NY', + 1518263 => 'Hunter, NY', + 1518266 => 'Troy, NY', + 1518268 => 'Troy, NY', + 1518270 => 'Troy, NY', + 1518271 => 'Troy, NY', + 1518272 => 'Troy, NY', + 1518273 => 'Troy, NY', + 1518274 => 'Troy, NY', + 1518279 => 'Troy, NY', + 1518286 => 'Rensselaer, NY', + 1518292 => 'Albany, NY', + 1518295 => 'Schoharie, NY', + 1518297 => 'Rouses Point, NY', + 1518298 => 'Champlain, NY', + 1518306 => 'Saratoga Springs, NY', + 1518324 => 'Plattsburgh, NY', + 1518325 => 'Hillsdale, NY', + 1518326 => 'Troy, NY', + 1518329 => 'Copake, NY', + 1518346 => 'Schenectady, NY', + 1518347 => 'Schenectady, NY', + 1518348 => 'Clifton Park, NY', + 1518355 => 'Schenectady, NY', + 1518356 => 'Schenectady, NY', + 1518357 => 'Schenectady, NY', + 1518358 => 'Hogansburg, NY', + 1518359 => 'Tupper Lake, NY', + 1518370 => 'Schenectady, NY', + 1518371 => 'Clifton Park, NY', + 1518372 => 'Schenectady, NY', + 1518373 => 'Clifton Park, NY', + 1518374 => 'Schenectady, NY', + 1518377 => 'Schenectady, NY', + 1518381 => 'Schenectady, NY', + 1518382 => 'Schenectady, NY', + 1518383 => 'Clifton Park, NY', + 1518392 => 'Chatham, NY', + 1518393 => 'Schenectady, NY', + 1518398 => 'Pine Plains, NY', + 1518426 => 'Albany, NY', + 1518427 => 'Albany, NY', + 1518432 => 'Albany, NY', + 1518434 => 'Albany, NY', + 1518435 => 'Albany, NY', + 1518436 => 'Albany, NY', + 1518437 => 'Albany, NY', + 1518438 => 'Albany, NY', + 1518439 => 'Delmar, NY', + 1518446 => 'Albany, NY', + 1518447 => 'Albany, NY', + 1518449 => 'Albany, NY', + 1518452 => 'Albany, NY', + 1518453 => 'Albany, NY', + 1518456 => 'Albany, NY', + 1518458 => 'Albany, NY', + 1518459 => 'Albany, NY', + 1518462 => 'Albany, NY', + 1518463 => 'Albany, NY', + 1518464 => 'Albany, NY', + 1518465 => 'Albany, NY', + 1518472 => 'Albany, NY', + 1518474 => 'Albany, NY', + 1518478 => 'Delmar, NY', + 1518481 => 'Malone, NY', + 1518482 => 'Albany, NY', + 1518483 => 'Malone, NY', + 1518487 => 'Albany, NY', + 1518489 => 'Albany, NY', + 1518494 => 'Chestertown, NY', + 1518497 => 'Chateaugay, NY', + 1518499 => 'Whitehall, NY', + 1518512 => 'Albany, NY', + 1518523 => 'Lake Placid, NY', + 1518525 => 'Albany, NY', + 1518529 => 'Moira, NY', + 1518532 => 'Schroon Lake, NY', + 1518537 => 'Germantown, NY', + 1518546 => 'Port Henry, NY', + 1518561 => 'Plattsburgh, NY', + 1518562 => 'Plattsburgh, NY', + 1518563 => 'Plattsburgh, NY', + 1518566 => 'Plattsburgh, NY', + 1518568 => 'St. Johnsville, NY', + 1518580 => 'Saratoga Springs, NY', + 1518581 => 'Saratoga Springs, NY', + 1518583 => 'Saratoga Springs, NY', + 1518584 => 'Saratoga Springs, NY', + 1518585 => 'Ticonderoga, NY', + 1518587 => 'Saratoga Springs, NY', + 1518589 => 'Tannersville, NY', + 1518597 => 'Crown Point, NY', + 1518622 => 'Cairo, NY', + 1518623 => 'Warrensburg, NY', + 1518626 => 'Albany, NY', + 1518638 => 'Argyle, NY', + 1518642 => 'Granville, NY', + 1518643 => 'Peru, NY', + 1518644 => 'Bolton Landing, NY', + 1518647 => 'Au Sable Forks, NY', + 1518648 => 'Indian Lake, NY', + 1518654 => 'Corinth, NY', + 1518661 => 'Mayfield, NY', + 1518664 => 'Mechanicville, NY', + 1518668 => 'Lake George, NY', + 1518673 => 'Canajoharie, NY', + 1518674 => 'Averill Park, NY', + 1518677 => 'Cambridge, NY', + 1518686 => 'Hoosick Falls, NY', + 1518689 => 'Albany, NY', + 1518692 => 'Greenwich, NY', + 1518694 => 'Albany, NY', + 1518695 => 'Schuylerville, NY', + 1518725 => 'Gloversville, NY', + 1518729 => 'Albany, NY', + 1518731 => 'Coxsackie, NY', + 1518734 => 'Windham, NY', + 1518736 => 'Johnstown, NY', + 1518747 => 'Hudson Falls, NY', + 1518753 => 'Schaghticoke, NY', + 1518756 => 'Ravena, NY', + 1518758 => 'Valatie, NY', + 1518762 => 'Johnstown, NY', + 1518765 => 'Voorheesville, NY', + 1518766 => 'Nassau, NY', + 1518767 => 'Selkirk, NY', + 1518773 => 'Gloversville, NY', + 1518782 => 'Latham, NY', + 1518783 => 'Latham, NY', + 1518785 => 'Latham, NY', + 1518786 => 'Latham, NY', + 1518789 => 'Millerton, NY', + 1518794 => 'New Lebanon, NY', + 1518822 => 'Hudson, NY', + 1518827 => 'Middleburgh, NY', + 1518828 => 'Hudson, NY', + 1518834 => 'Keeseville, NY', + 1518842 => 'Amsterdam, NY', + 1518843 => 'Amsterdam, NY', + 1518846 => 'Chazy, NY', + 1518853 => 'Fonda, NY', + 1518854 => 'Salem, NY', + 1518861 => 'Altamont, NY', + 1518862 => 'Albany, NY', + 1518863 => 'Northville, NY', + 1518869 => 'Albany, NY', + 1518873 => 'Elizabethtown, NY', + 1518882 => 'Galway, NY', + 1518883 => 'Broadalbin, NY', + 1518884 => 'Ballston Spa, NY', + 1518885 => 'Ballston Spa, NY', + 1518891 => 'Saranac Lake, NY', + 1518926 => 'Glens Falls, NY', + 1518943 => 'Catskill, NY', + 1518946 => 'Wilmington, NY', + 1518962 => 'Westport, NY', + 1518963 => 'Willsboro, NY', + 1518966 => 'Greenville, NY', + 1518993 => 'Fort Plain, NY', + 1519 => 'Ontario', + 1519204 => 'London, ON', + 1519227 => 'Lucan, ON', + 1519235 => 'Exeter, ON', + 1519236 => 'Zurich, ON', + 1519238 => 'Grand Bend, ON', + 1519245 => 'Strathroy, ON', + 1519250 => 'Windsor, ON', + 1519251 => 'Windsor, ON', + 1519252 => 'Windsor, ON', + 1519253 => 'Windsor, ON', + 1519254 => 'Windsor, ON', + 1519255 => 'Windsor, ON', + 1519256 => 'Windsor, ON', + 1519258 => 'Windsor, ON', + 1519264 => 'Mount Brydges, ON', + 1519265 => 'Guelph, ON', + 1519267 => 'Cambridge, ON', + 1519268 => 'Dorchester, ON', + 1519271 => 'Stratford, ON', + 1519272 => 'Stratford, ON', + 1519273 => 'Stratford, ON', + 1519275 => 'Stratford, ON', + 1519284 => 'St. Marys, ON', + 1519287 => 'Glencoe, ON', + 1519291 => 'Listowel, ON', + 1519294 => 'Parkhill, ON', + 1519304 => 'Brantford, ON', + 1519322 => 'Leamington, ON', + 1519323 => 'Mount Forest, ON', + 1519326 => 'Leamington, ON', + 1519332 => 'Sarnia, ON', + 1519335 => 'Gorrie, ON', + 1519336 => 'Sarnia, ON', + 1519337 => 'Sarnia, ON', + 1519338 => 'Harriston, ON', + 1519341 => 'Guelph, ON', + 1519342 => 'Kitchener, ON', + 1519343 => 'Palmerston, ON', + 1519344 => 'Sarnia, ON', + 1519348 => 'Mitchell, ON', + 1519351 => 'Chatham, ON', + 1519352 => 'Chatham, ON', + 1519353 => 'Paisley, ON', + 1519354 => 'Chatham, ON', + 1519355 => 'Chatham, ON', + 1519357 => 'Wingham, ON', + 1519358 => 'Chatham, ON', + 1519363 => 'Chesley, ON', + 1519364 => 'Hanover, ON', + 1519367 => 'Mildmay, ON', + 1519368 => 'Tiverton, ON', + 1519369 => 'Durham, ON', + 1519371 => 'Owen Sound, ON', + 1519372 => 'Owen Sound, ON', + 1519376 => 'Owen Sound, ON', + 1519383 => 'Sarnia, ON', + 1519389 => 'Port Elgin, ON', + 1519392 => 'Teeswater, ON', + 1519393 => 'Sebringville, ON', + 1519395 => 'Ripley, ON', + 1519396 => 'Kincardine, ON', + 1519421 => 'Woodstock, ON', + 1519422 => 'Sauble Beach, ON', + 1519424 => 'Burgessville, ON', + 1519425 => 'Ingersoll, ON', + 1519426 => 'Simcoe, ON', + 1519428 => 'Simcoe, ON', + 1519432 => 'London, ON', + 1519433 => 'London, ON', + 1519434 => 'London, ON', + 1519436 => 'Chatham, ON', + 1519438 => 'London, ON', + 1519439 => 'London, ON', + 1519442 => 'Paris, ON', + 1519443 => 'Waterford, ON', + 1519445 => 'Ohsweken, ON', + 1519448 => 'St George Brant, ON', + 1519449 => 'Burford, ON', + 1519451 => 'London, ON', + 1519452 => 'London, ON', + 1519453 => 'London, ON', + 1519455 => 'London, ON', + 1519457 => 'London, ON', + 1519461 => 'Thorndale, ON', + 1519471 => 'London, ON', + 1519472 => 'London, ON', + 1519473 => 'London, ON', + 1519474 => 'London, ON', + 1519482 => 'Clinton, ON', + 1519485 => 'Ingersoll, ON', + 1519524 => 'Goderich, ON', + 1519527 => 'Seaforth, ON', + 1519533 => 'Woodstock, ON', + 1519534 => 'Wiarton, ON', + 1519537 => 'Woodstock, ON', + 1519538 => 'Meaford, ON', + 1519539 => 'Woodstock, ON', + 1519541 => 'Sarnia, ON', + 1519542 => 'Sarnia, ON', + 1519565 => 'Bayfield, ON', + 1519568 => 'Kitchener, ON', + 1519569 => 'Kitchener, ON', + 1519570 => 'Kitchener, ON', + 1519571 => 'Kitchener, ON', + 1519576 => 'Kitchener, ON', + 1519578 => 'Kitchener, ON', + 1519579 => 'Kitchener, ON', + 1519582 => 'Delhi, ON', + 1519583 => 'Port Dover, ON', + 1519584 => 'Kitchener, ON', + 1519585 => 'Kitchener, ON', + 1519586 => 'Port Rowan, ON', + 1519587 => 'Jarvis, ON', + 1519595 => 'Milverton, ON', + 1519596 => 'Tobermory, ON', + 1519599 => 'Thornbury, ON', + 1519601 => 'London, ON', + 1519620 => 'Cambridge, ON', + 1519621 => 'Cambridge, ON', + 1519622 => 'Cambridge, ON', + 1519623 => 'Cambridge, ON', + 1519624 => 'Cambridge, ON', + 1519627 => 'Wallaceburg, ON', + 1519631 => 'St. Thomas, ON', + 1519632 => 'Ayr, ON', + 1519633 => 'St. Thomas, ON', + 1519634 => 'Baden, ON', + 1519637 => 'St. Thomas, ON', + 1519638 => 'Drayton, ON', + 1519641 => 'London, ON', + 1519642 => 'London, ON', + 1519644 => 'Belmont, ON', + 1519645 => 'London, ON', + 1519648 => 'Breslau, ON', + 1519649 => 'London, ON', + 1519650 => 'Cambridge, ON', + 1519651 => 'Cambridge, ON', + 1519653 => 'Cambridge, ON', + 1519655 => 'Tavistock, ON', + 1519656 => 'Wellesley, ON', + 1519657 => 'London, ON', + 1519658 => 'Cambridge, ON', + 1519659 => 'London, ON', + 1519660 => 'London, ON', + 1519661 => 'London, ON', + 1519662 => 'New Hamburg, ON', + 1519663 => 'London, ON', + 1519664 => 'St. Jacobs, ON', + 1519666 => 'Ilderton, ON', + 1519667 => 'London, ON', + 1519668 => 'London, ON', + 1519669 => 'Elmira, ON', + 1519672 => 'London, ON', + 1519673 => 'London, ON', + 1519674 => 'Ridgetown, ON', + 1519675 => 'London, ON', + 1519676 => 'Blenheim, ON', + 1519679 => 'London, ON', + 1519680 => 'London, ON', + 1519681 => 'London, ON', + 1519682 => 'Tilbury, ON', + 1519683 => 'Dresden, ON', + 1519685 => 'London, ON', + 1519686 => 'London, ON', + 1519688 => 'Tillsonburg, ON', + 1519690 => 'London, ON', + 1519692 => 'Thamesville, ON', + 1519696 => 'New Dundee, ON', + 1519698 => 'Linwood, ON', + 1519699 => 'St. Clements, ON', + 1519720 => 'Brantford, ON', + 1519725 => 'Waterloo, ON', + 1519727 => 'Emeryville, ON', + 1519728 => 'Belle River, ON', + 1519733 => 'Kingsville, ON', + 1519736 => 'Amherstburg, ON', + 1519737 => 'Maidstone, ON', + 1519738 => 'Harrow, ON', + 1519740 => 'Cambridge, ON', + 1519741 => 'Kitchener, ON', + 1519742 => 'Kitchener, ON', + 1519743 => 'Kitchener, ON', + 1519744 => 'Kitchener, ON', + 1519745 => 'Kitchener, ON', + 1519746 => 'Waterloo, ON', + 1519747 => 'Waterloo, ON', + 1519748 => 'Kitchener, ON', + 1519749 => 'Kitchener, ON', + 1519750 => 'Brantford, ON', + 1519751 => 'Brantford, ON', + 1519752 => 'Brantford, ON', + 1519753 => 'Brantford, ON', + 1519754 => 'Brantford, ON', + 1519756 => 'Brantford, ON', + 1519758 => 'Brantford, ON', + 1519759 => 'Brantford, ON', + 1519762 => 'Dutton, ON', + 1519763 => 'Guelph, ON', + 1519765 => 'Aylmer West, ON', + 1519766 => 'Guelph, ON', + 1519767 => 'Guelph, ON', + 1519770 => 'Brantford, ON', + 1519773 => 'Aylmer West, ON', + 1519776 => 'Essex, ON', + 1519780 => 'Guelph, ON', + 1519782 => 'Port Stanley, ON', + 1519786 => 'Forest, ON', + 1519787 => 'Fergus, ON', + 1519793 => 'Lion\'s Head, ON', + 1519794 => 'Chatsworth, ON', + 1519797 => 'Southampton, ON', + 1519821 => 'Guelph, ON', + 1519822 => 'Guelph, ON', + 1519823 => 'Guelph, ON', + 1519824 => 'Guelph, ON', + 1519825 => 'Wheatley, ON', + 1519826 => 'Guelph, ON', + 1519827 => 'Guelph, ON', + 1519829 => 'Guelph, ON', + 1519832 => 'Port Elgin, ON', + 1519833 => 'Erin, ON', + 1519836 => 'Guelph, ON', + 1519837 => 'Guelph, ON', + 1519839 => 'Cottam, ON', + 1519842 => 'Tillsonburg, ON', + 1519843 => 'Fergus, ON', + 1519845 => 'Wyoming, ON', + 1519846 => 'Elora, ON', + 1519848 => 'Arthur, ON', + 1519850 => 'London, ON', + 1519853 => 'Acton, ON', + 1519855 => 'Hillsburgh, ON', + 1519856 => 'Rockwood, ON', + 1519858 => 'London, ON', + 1519862 => 'Corunna, ON', + 1519863 => 'Norwich, ON', + 1519875 => 'Langton, ON', + 1519880 => 'Waterloo, ON', + 1519881 => 'Walkerton, ON', + 1519882 => 'Petrolia, ON', + 1519883 => 'Waterloo, ON', + 1519884 => 'Waterloo, ON', + 1519885 => 'Waterloo, ON', + 1519886 => 'Waterloo, ON', + 1519887 => 'Brussels, ON', + 1519888 => 'Waterloo, ON', + 1519893 => 'Kitchener, ON', + 1519894 => 'Kitchener, ON', + 1519895 => 'Kitchener, ON', + 1519896 => 'Kitchener, ON', + 1519915 => 'Windsor, ON', + 1519923 => 'Dundalk, ON', + 1519924 => 'Flesherton, ON', + 1519925 => 'Shelburne, ON', + 1519927 => 'Caledon, ON', + 1519928 => 'Grand Valley, ON', + 1519934 => 'Tara, ON', + 1519936 => 'London, ON', + 1519938 => 'Orangeville, ON', + 1519940 => 'Orangeville, ON', + 1519941 => 'Orangeville, ON', + 1519942 => 'Orangeville, ON', + 1519944 => 'Windsor, ON', + 1519945 => 'Windsor, ON', + 1519946 => 'Windsor, ON', + 1519948 => 'Windsor, ON', + 1519951 => 'London, ON', + 1519954 => 'Kitchener, ON', + 1519962 => 'Windsor, ON', + 1519963 => 'London, ON', + 1519966 => 'Windsor, ON', + 1519967 => 'Windsor, ON', + 1519969 => 'Windsor, ON', + 1519971 => 'Windsor, ON', + 1519972 => 'Windsor, ON', + 1519973 => 'Windsor, ON', + 1519974 => 'Windsor, ON', + 1519977 => 'Windsor, ON', + 1519978 => 'Windsor, ON', + 1519986 => 'Markdale, ON', + 1520 => 'Arizona', + 1520207 => 'Tucson, AZ', + 1520219 => 'Tucson, AZ', + 1520225 => 'Tucson, AZ', + 1520229 => 'Tucson, AZ', + 1520232 => 'Tucson, AZ', + 1520281 => 'Nogales, AZ', + 1520287 => 'Nogales, AZ', + 1520290 => 'Tucson, AZ', + 1520292 => 'Tucson, AZ', + 1520293 => 'Tucson, AZ', + 1520294 => 'Tucson, AZ', + 1520295 => 'Tucson, AZ', + 1520296 => 'Tucson, AZ', + 1520297 => 'Tucson, AZ', + 1520298 => 'Tucson, AZ', + 1520299 => 'Tucson, AZ', + 1520300 => 'Tucson, AZ', + 1520316 => 'Casa Grande, AZ', + 1520318 => 'Tucson, AZ', + 1520319 => 'Tucson, AZ', + 1520320 => 'Tucson, AZ', + 1520321 => 'Tucson, AZ', + 1520322 => 'Tucson, AZ', + 1520323 => 'Tucson, AZ', + 1520324 => 'Tucson, AZ', + 1520325 => 'Tucson, AZ', + 1520326 => 'Tucson, AZ', + 1520327 => 'Tucson, AZ', + 1520344 => 'Tucson, AZ', + 1520364 => 'Douglas, AZ', + 1520377 => 'Nogales, AZ', + 1520378 => 'Sierra Vista, AZ', + 1520382 => 'Tucson, AZ', + 1520383 => 'Sells, AZ', + 1520384 => 'Willcox, AZ', + 1520387 => 'Ajo, AZ', + 1520404 => 'Tucson, AZ', + 1520408 => 'Tucson, AZ', + 1520417 => 'Sierra Vista, AZ', + 1520421 => 'Casa Grande, AZ', + 1520423 => 'Casa Grande, AZ', + 1520426 => 'Casa Grande, AZ', + 1520432 => 'Bisbee, AZ', + 1520439 => 'Sierra Vista, AZ', + 1520444 => 'Tucson, AZ', + 1520452 => 'Sierra Vista, AZ', + 1520455 => 'Sonoita, AZ', + 1520456 => 'Huachuca City, AZ', + 1520457 => 'Tombstone, AZ', + 1520458 => 'Sierra Vista, AZ', + 1520459 => 'Sierra Vista, AZ', + 1520466 => 'Eloy, AZ', + 1520495 => 'Tucson, AZ', + 1520498 => 'Tucson, AZ', + 1520512 => 'Tucson, AZ', + 1520514 => 'Tucson, AZ', + 1520515 => 'Sierra Vista, AZ', + 1520529 => 'Tucson, AZ', + 1520531 => 'Tucson, AZ', + 1520544 => 'Tucson, AZ', + 1520545 => 'Tucson, AZ', + 1520546 => 'Tucson, AZ', + 1520547 => 'Tucson, AZ', + 1520562 => 'Sacaton, AZ', + 1520568 => 'Maricopa, AZ', + 1520571 => 'Tucson, AZ', + 1520572 => 'Tucson, AZ', + 1520573 => 'Tucson, AZ', + 1520574 => 'Tucson, AZ', + 1520575 => 'Tucson, AZ', + 1520577 => 'Tucson, AZ', + 1520578 => 'Tucson, AZ', + 1520579 => 'Tucson, AZ', + 1520584 => 'Tucson, AZ', + 1520586 => 'Benson, AZ', + 1520615 => 'Tucson, AZ', + 1520620 => 'Tucson, AZ', + 1520621 => 'Tucson, AZ', + 1520622 => 'Tucson, AZ', + 1520623 => 'Tucson, AZ', + 1520624 => 'Tucson, AZ', + 1520625 => 'Green Valley, AZ', + 1520626 => 'Tucson, AZ', + 1520628 => 'Tucson, AZ', + 1520629 => 'Tucson, AZ', + 1520647 => 'Tucson, AZ', + 1520648 => 'Green Valley, AZ', + 1520663 => 'Tucson, AZ', + 1520670 => 'Tucson, AZ', + 1520682 => 'Marana, AZ', + 1520690 => 'Tucson, AZ', + 1520694 => 'Tucson, AZ', + 1520696 => 'Tucson, AZ', + 1520721 => 'Tucson, AZ', + 1520722 => 'Tucson, AZ', + 1520723 => 'Coolidge, AZ', + 1520731 => 'Tucson, AZ', + 1520733 => 'Tucson, AZ', + 1520740 => 'Tucson, AZ', + 1520741 => 'Tucson, AZ', + 1520742 => 'Tucson, AZ', + 1520743 => 'Tucson, AZ', + 1520744 => 'Tucson, AZ', + 1520745 => 'Tucson, AZ', + 1520746 => 'Tucson, AZ', + 1520747 => 'Tucson, AZ', + 1520748 => 'Tucson, AZ', + 1520749 => 'Tucson, AZ', + 1520750 => 'Tucson, AZ', + 1520751 => 'Tucson, AZ', + 1520760 => 'Tucson, AZ', + 1520761 => 'Nogales, AZ', + 1520770 => 'Tucson, AZ', + 1520777 => 'Tucson, AZ', + 1520784 => 'Tucson, AZ', + 1520790 => 'Tucson, AZ', + 1520791 => 'Tucson, AZ', + 1520792 => 'Tucson, AZ', + 1520795 => 'Tucson, AZ', + 1520797 => 'Tucson, AZ', + 1520798 => 'Tucson, AZ', + 1520803 => 'Sierra Vista, AZ', + 1520805 => 'Douglas, AZ', + 1520807 => 'Tucson, AZ', + 1520818 => 'Tucson, AZ', + 1520822 => 'Tucson, AZ', + 1520825 => 'Tucson, AZ', + 1520826 => 'Pearce, AZ', + 1520829 => 'Tucson, AZ', + 1520836 => 'Casa Grande, AZ', + 1520868 => 'Florence, AZ', + 1520874 => 'Tucson, AZ', + 1520876 => 'Casa Grande, AZ', + 1520877 => 'Tucson, AZ', + 1520881 => 'Tucson, AZ', + 1520882 => 'Tucson, AZ', + 1520883 => 'Tucson, AZ', + 1520884 => 'Tucson, AZ', + 1520885 => 'Tucson, AZ', + 1520886 => 'Tucson, AZ', + 1520887 => 'Tucson, AZ', + 1520888 => 'Tucson, AZ', + 1520889 => 'Tucson, AZ', + 1520896 => 'Oracle, AZ', + 1520903 => 'Tucson, AZ', + 1520907 => 'Tucson, AZ', + 1520908 => 'Tucson, AZ', + 1520917 => 'Tucson, AZ', + 1520977 => 'Tucson, AZ', + 1530 => 'California', + 1530209 => 'Redding, CA', + 1530221 => 'Redding, CA', + 1530222 => 'Redding, CA', + 1530223 => 'Redding, CA', + 1530224 => 'Redding, CA', + 1530225 => 'Redding, CA', + 1530226 => 'Redding, CA', + 1530227 => 'Redding, CA', + 1530229 => 'Redding, CA', + 1530233 => 'Alturas, CA', + 1530235 => 'Dunsmuir, CA', + 1530241 => 'Redding, CA', + 1530242 => 'Redding, CA', + 1530243 => 'Redding, CA', + 1530244 => 'Redding, CA', + 1530245 => 'Redding, CA', + 1530246 => 'Redding, CA', + 1530247 => 'Redding, CA', + 1530251 => 'Susanville, CA', + 1530257 => 'Susanville, CA', + 1530258 => 'Chester, CA', + 1530265 => 'Nevada City, CA', + 1530268 => 'Grass Valley, CA', + 1530271 => 'Grass Valley, CA', + 1530272 => 'Grass Valley, CA', + 1530273 => 'Grass Valley, CA', + 1530274 => 'Grass Valley, CA', + 1530275 => 'Shasta Lake, CA', + 1530279 => 'Cedarville, CA', + 1530283 => 'Quincy, CA', + 1530284 => 'Greenville, CA', + 1530295 => 'Placerville, CA', + 1530297 => 'Davis, CA', + 1530318 => 'South Lake Tahoe, CA', + 1530332 => 'Chico, CA', + 1530333 => 'Georgetown, CA', + 1530335 => 'Burney, CA', + 1530336 => 'Fall River Mills, CA', + 1530342 => 'Chico, CA', + 1530343 => 'Chico, CA', + 1530344 => 'Placerville, CA', + 1530345 => 'Chico, CA', + 1530346 => 'Colfax, CA', + 1530347 => 'Cottonwood, CA', + 1530365 => 'Anderson, CA', + 1530367 => 'Foresthill, CA', + 1530378 => 'Anderson, CA', + 1530384 => 'Los Molinos, CA', + 1530406 => 'Woodland, CA', + 1530432 => 'Penn Valley, CA', + 1530458 => 'Colusa, CA', + 1530459 => 'Montague, CA', + 1530467 => 'Etna, CA', + 1530468 => 'Fort Jones, CA', + 1530470 => 'Nevada City, CA', + 1530473 => 'Williams, CA', + 1530474 => 'Shingletown, CA', + 1530476 => 'Arbuckle, CA', + 1530477 => 'Grass Valley, CA', + 1530478 => 'Nevada City, CA', + 1530493 => 'Happy Camp, CA', + 1530527 => 'Red Bluff, CA', + 1530528 => 'Red Bluff, CA', + 1530529 => 'Red Bluff, CA', + 1530532 => 'Oroville, CA', + 1530533 => 'Oroville, CA', + 1530534 => 'Oroville, CA', + 1530538 => 'Oroville, CA', + 1530541 => 'South Lake Tahoe, CA', + 1530542 => 'South Lake Tahoe, CA', + 1530543 => 'South Lake Tahoe, CA', + 1530544 => 'South Lake Tahoe, CA', + 1530546 => 'Kings Beach, CA', + 1530547 => 'Palo Cedro, CA', + 1530550 => 'Truckee, CA', + 1530566 => 'Chico, CA', + 1530573 => 'South Lake Tahoe, CA', + 1530577 => 'South Lake Tahoe, CA', + 1530581 => 'Tahoe City, CA', + 1530582 => 'Truckee, CA', + 1530583 => 'Tahoe City, CA', + 1530587 => 'Truckee, CA', + 1530589 => 'Oroville, CA', + 1530605 => 'Redding, CA', + 1530620 => 'Somerset, CA', + 1530621 => 'Placerville, CA', + 1530622 => 'Placerville, CA', + 1530623 => 'Weaverville, CA', + 1530625 => 'Hoopa, CA', + 1530626 => 'Placerville, CA', + 1530628 => 'Hayfork, CA', + 1530629 => 'Willow Creek, CA', + 1530633 => 'Wheatland, CA', + 1530634 => 'Beale AFB, CA', + 1530642 => 'Placerville, CA', + 1530661 => 'Woodland, CA', + 1530662 => 'Woodland, CA', + 1530666 => 'Woodland, CA', + 1530668 => 'Woodland, CA', + 1530669 => 'Woodland, CA', + 1530671 => 'Yuba City, CA', + 1530673 => 'Yuba City, CA', + 1530674 => 'Yuba City, CA', + 1530695 => 'Live Oak, CA', + 1530722 => 'Redding, CA', + 1530741 => 'Marysville, CA', + 1530742 => 'Marysville, CA', + 1530743 => 'Marysville, CA', + 1530747 => 'Davis, CA', + 1530749 => 'Marysville, CA', + 1530750 => 'Davis, CA', + 1530751 => 'Yuba City, CA', + 1530752 => 'Davis, CA', + 1530753 => 'Davis, CA', + 1530755 => 'Yuba City, CA', + 1530756 => 'Davis, CA', + 1530757 => 'Davis, CA', + 1530758 => 'Davis, CA', + 1530759 => 'Davis, CA', + 1530763 => 'Yuba City, CA', + 1530790 => 'Yuba City, CA', + 1530795 => 'Winters, CA', + 1530809 => 'Chico, CA', + 1530822 => 'Yuba City, CA', + 1530823 => 'Auburn, CA', + 1530824 => 'Corning, CA', + 1530832 => 'Portola, CA', + 1530841 => 'Yreka, CA', + 1530842 => 'Yreka, CA', + 1530846 => 'Gridley, CA', + 1530865 => 'Orland, CA', + 1530872 => 'Paradise, CA', + 1530873 => 'Magalia, CA', + 1530876 => 'Paradise, CA', + 1530877 => 'Paradise, CA', + 1530879 => 'Chico, CA', + 1530885 => 'Auburn, CA', + 1530886 => 'Auburn, CA', + 1530887 => 'Auburn, CA', + 1530888 => 'Auburn, CA', + 1530889 => 'Auburn, CA', + 1530891 => 'Chico, CA', + 1530892 => 'Chico, CA', + 1530893 => 'Chico, CA', + 1530894 => 'Chico, CA', + 1530895 => 'Chico, CA', + 1530896 => 'Chico, CA', + 1530898 => 'Chico, CA', + 1530899 => 'Chico, CA', + 1530923 => 'Yuba City, CA', + 1530926 => 'Mount Shasta, CA', + 1530934 => 'Willows, CA', + 1530938 => 'Weed, CA', + 1530993 => 'Loyalton, CA', + 1540 => 'Virginia', + 1540206 => 'Roanoke, VA', + 1540213 => 'Staunton, VA', + 1540224 => 'Roanoke, VA', + 1540231 => 'Blacksburg, VA', + 1540234 => 'Weyers Cave, VA', + 1540248 => 'Verona, VA', + 1540249 => 'Grottoes, VA', + 1540254 => 'Buchanan, VA', + 1540261 => 'Buena Vista, VA', + 1540265 => 'Roanoke, VA', + 1540266 => 'Roanoke, VA', + 1540286 => 'Fredericksburg, VA', + 1540288 => 'Stafford, VA', + 1540289 => 'McGaheysville, VA', + 1540297 => 'Moneta, VA', + 1540298 => 'Elkton, VA', + 1540310 => 'Fredericksburg, VA', + 1540316 => 'Warrenton, VA', + 1540318 => 'Stafford, VA', + 1540332 => 'Staunton, VA', + 1540334 => 'Boones Mill, VA', + 1540338 => 'Purcellville, VA', + 1540341 => 'Warrenton, VA', + 1540342 => 'Roanoke, VA', + 1540343 => 'Roanoke, VA', + 1540344 => 'Roanoke, VA', + 1540345 => 'Roanoke, VA', + 1540347 => 'Warrenton, VA', + 1540349 => 'Warrenton, VA', + 1540361 => 'Fredericksburg, VA', + 1540362 => 'Roanoke, VA', + 1540364 => 'Marshall, VA', + 1540365 => 'Ferrum, VA', + 1540366 => 'Roanoke, VA', + 1540368 => 'Fredericksburg, VA', + 1540370 => 'Fredericksburg, VA', + 1540371 => 'Fredericksburg, VA', + 1540372 => 'Fredericksburg, VA', + 1540373 => 'Fredericksburg, VA', + 1540374 => 'Fredericksburg, VA', + 1540375 => 'Salem, VA', + 1540380 => 'Salem, VA', + 1540381 => 'Christiansburg, VA', + 1540382 => 'Christiansburg, VA', + 1540387 => 'Salem, VA', + 1540389 => 'Salem, VA', + 1540400 => 'Roanoke, VA', + 1540427 => 'Roanoke, VA', + 1540428 => 'Warrenton, VA', + 1540432 => 'Harrisonburg, VA', + 1540433 => 'Harrisonburg, VA', + 1540434 => 'Harrisonburg, VA', + 1540437 => 'Harrisonburg, VA', + 1540438 => 'Harrisonburg, VA', + 1540439 => 'Bealeton, VA', + 1540442 => 'Harrisonburg, VA', + 1540443 => 'Blacksburg, VA', + 1540444 => 'Salem, VA', + 1540450 => 'Winchester, VA', + 1540459 => 'Woodstock, VA', + 1540463 => 'Lexington, VA', + 1540464 => 'Lexington, VA', + 1540465 => 'Strasburg, VA', + 1540468 => 'Monterey, VA', + 1540473 => 'Fincastle, VA', + 1540477 => 'Mount Jackson, VA', + 1540479 => 'Fredericksburg, VA', + 1540483 => 'Rocky Mount, VA', + 1540484 => 'Rocky Mount, VA', + 1540489 => 'Rocky Mount, VA', + 1540535 => 'Winchester, VA', + 1540536 => 'Winchester, VA', + 1540542 => 'Winchester, VA', + 1540545 => 'Winchester, VA', + 1540547 => 'Culpeper, VA', + 1540548 => 'Fredericksburg, VA', + 1540552 => 'Blacksburg, VA', + 1540562 => 'Roanoke, VA', + 1540563 => 'Roanoke, VA', + 1540564 => 'Harrisonburg, VA', + 1540568 => 'Harrisonburg, VA', + 1540574 => 'Harrisonburg, VA', + 1540582 => 'Spotsylvania, VA', + 1540586 => 'Bedford, VA', + 1540587 => 'Bedford, VA', + 1540622 => 'Front Royal, VA', + 1540626 => 'Pembroke, VA', + 1540631 => 'Front Royal, VA', + 1540633 => 'Radford, VA', + 1540635 => 'Front Royal, VA', + 1540636 => 'Front Royal, VA', + 1540639 => 'Radford, VA', + 1540652 => 'Shenandoah, VA', + 1540656 => 'Fredericksburg, VA', + 1540657 => 'Stafford, VA', + 1540658 => 'Stafford, VA', + 1540659 => 'Stafford, VA', + 1540661 => 'Orange, VA', + 1540662 => 'Winchester, VA', + 1540663 => 'King George, VA', + 1540665 => 'Winchester, VA', + 1540667 => 'Winchester, VA', + 1540672 => 'Orange, VA', + 1540674 => 'Dublin, VA', + 1540675 => 'Washington, VA', + 1540678 => 'Winchester, VA', + 1540687 => 'Middleburg, VA', + 1540689 => 'Harrisonburg, VA', + 1540710 => 'Fredericksburg, VA', + 1540720 => 'Stafford, VA', + 1540722 => 'Winchester, VA', + 1540723 => 'Winchester, VA', + 1540725 => 'Roanoke, VA', + 1540726 => 'Narrows, VA', + 1540727 => 'Culpeper, VA', + 1540731 => 'Radford, VA', + 1540740 => 'New Market, VA', + 1540741 => 'Fredericksburg, VA', + 1540743 => 'Luray, VA', + 1540745 => 'Floyd, VA', + 1540751 => 'Purcellville, VA', + 1540752 => 'Fredericksburg, VA', + 1540772 => 'Roanoke, VA', + 1540774 => 'Roanoke, VA', + 1540775 => 'King George, VA', + 1540776 => 'Roanoke, VA', + 1540777 => 'Roanoke, VA', + 1540778 => 'Stanley, VA', + 1540785 => 'Fredericksburg, VA', + 1540786 => 'Fredericksburg, VA', + 1540788 => 'Catlett, VA', + 1540822 => 'Lovettsville, VA', + 1540825 => 'Culpeper, VA', + 1540828 => 'Bridgewater, VA', + 1540829 => 'Culpeper, VA', + 1540832 => 'Gordonsville, VA', + 1540834 => 'Fredericksburg, VA', + 1540837 => 'Boyce, VA', + 1540839 => 'Hot Springs, VA', + 1540853 => 'Roanoke, VA', + 1540857 => 'Roanoke, VA', + 1540862 => 'Clifton Forge, VA', + 1540864 => 'New Castle, VA', + 1540868 => 'Stephens City, VA', + 1540869 => 'Stephens City, VA', + 1540872 => 'Bumpass, VA', + 1540877 => 'Winchester, VA', + 1540879 => 'Dayton, VA', + 1540885 => 'Staunton, VA', + 1540886 => 'Staunton, VA', + 1540887 => 'Staunton, VA', + 1540890 => 'Vinton, VA', + 1540891 => 'Fredericksburg, VA', + 1540894 => 'Mineral, VA', + 1540896 => 'Broadway, VA', + 1540898 => 'Fredericksburg, VA', + 1540899 => 'Fredericksburg, VA', + 1540904 => 'Roanoke, VA', + 1540921 => 'Pearisburg, VA', + 1540932 => 'Fishersville, VA', + 1540941 => 'Waynesboro, VA', + 1540942 => 'Waynesboro, VA', + 1540943 => 'Waynesboro, VA', + 1540946 => 'Waynesboro, VA', + 1540948 => 'Madison, VA', + 1540949 => 'Waynesboro, VA', + 1540951 => 'Blacksburg, VA', + 1540953 => 'Blacksburg, VA', + 1540955 => 'Berryville, VA', + 1540961 => 'Blacksburg, VA', + 1540962 => 'Covington, VA', + 1540965 => 'Covington, VA', + 1540967 => 'Louisa, VA', + 1540972 => 'Locust Grove, VA', + 1540977 => 'Roanoke, VA', + 1540980 => 'Pulaski, VA', + 1540981 => 'Roanoke, VA', + 1540982 => 'Roanoke, VA', + 1540983 => 'Roanoke, VA', + 1540984 => 'Edinburg, VA', + 1540985 => 'Roanoke, VA', + 1540987 => 'Sperryville, VA', + 1540989 => 'Roanoke, VA', + 1540994 => 'Pulaski, VA', + 1541 => 'Oregon', + 1541205 => 'Klamath Falls, OR', + 1541207 => 'Corvallis, OR', + 1541210 => 'Medford, OR', + 1541222 => 'Springfield, OR', + 1541242 => 'Eugene, OR', + 1541245 => 'Medford, OR', + 1541247 => 'Gold Beach, OR', + 1541258 => 'Lebanon, OR', + 1541259 => 'Lebanon, OR', + 1541265 => 'Newport, OR', + 1541266 => 'Coos Bay, OR', + 1541267 => 'Coos Bay, OR', + 1541269 => 'Coos Bay, OR', + 1541271 => 'Reedsport, OR', + 1541273 => 'Klamath Falls, OR', + 1541276 => 'Pendleton, OR', + 1541278 => 'Pendleton, OR', + 1541282 => 'Medford, OR', + 1541284 => 'Eugene, OR', + 1541289 => 'Hermiston, OR', + 1541296 => 'The Dalles, OR', + 1541298 => 'The Dalles, OR', + 1541301 => 'Medford, OR', + 1541302 => 'Eugene, OR', + 1541306 => 'Bend, OR', + 1541312 => 'Bend, OR', + 1541316 => 'Redmond, OR', + 1541317 => 'Bend, OR', + 1541318 => 'Bend, OR', + 1541322 => 'Bend, OR', + 1541323 => 'Bend, OR', + 1541327 => 'Jefferson, OR', + 1541330 => 'Bend, OR', + 1541332 => 'Port Orford, OR', + 1541336 => 'Toledo, OR', + 1541338 => 'Eugene, OR', + 1541341 => 'Eugene, OR', + 1541342 => 'Eugene, OR', + 1541343 => 'Eugene, OR', + 1541344 => 'Eugene, OR', + 1541345 => 'Eugene, OR', + 1541346 => 'Eugene, OR', + 1541347 => 'Bandon, OR', + 1541349 => 'Eugene, OR', + 1541352 => 'Mount Hood Parkdale, OR', + 1541354 => 'Hood River, OR', + 1541357 => 'Eugene, OR', + 1541359 => 'Eugene, OR', + 1541367 => 'Sweet Home, OR', + 1541372 => 'Nyssa, OR', + 1541382 => 'Bend, OR', + 1541383 => 'Bend, OR', + 1541384 => 'Condon, OR', + 1541385 => 'Bend, OR', + 1541386 => 'Hood River, OR', + 1541387 => 'Hood River, OR', + 1541388 => 'Bend, OR', + 1541389 => 'Bend, OR', + 1541390 => 'Bend, OR', + 1541393 => 'Eugene, OR', + 1541396 => 'Coquille, OR', + 1541410 => 'Bend, OR', + 1541412 => 'Brookings, OR', + 1541416 => 'Prineville, OR', + 1541420 => 'Bend, OR', + 1541426 => 'Enterprise, OR', + 1541431 => 'Eugene, OR', + 1541432 => 'Joseph, OR', + 1541440 => 'Roseburg, OR', + 1541447 => 'Prineville, OR', + 1541451 => 'Lebanon, OR', + 1541459 => 'Sutherlin, OR', + 1541461 => 'Eugene, OR', + 1541463 => 'Eugene, OR', + 1541464 => 'Roseburg, OR', + 1541465 => 'Eugene, OR', + 1541466 => 'Brownsville, OR', + 1541469 => 'Brookings, OR', + 1541471 => 'Grants Pass, OR', + 1541472 => 'Grants Pass, OR', + 1541473 => 'Vale, OR', + 1541474 => 'Grants Pass, OR', + 1541475 => 'Madras, OR', + 1541476 => 'Grants Pass, OR', + 1541479 => 'Grants Pass, OR', + 1541481 => 'Boardman, OR', + 1541482 => 'Ashland, OR', + 1541484 => 'Eugene, OR', + 1541485 => 'Eugene, OR', + 1541488 => 'Ashland, OR', + 1541490 => 'Hood River, OR', + 1541496 => 'Glide, OR', + 1541504 => 'Redmond, OR', + 1541505 => 'Eugene, OR', + 1541506 => 'The Dalles, OR', + 1541517 => 'Eugene, OR', + 1541520 => 'Eugene, OR', + 1541523 => 'Baker City, OR', + 1541526 => 'Redmond, OR', + 1541536 => 'La Pine, OR', + 1541547 => 'Yachats, OR', + 1541548 => 'Redmond, OR', + 1541549 => 'Sisters, OR', + 1541550 => 'Bend, OR', + 1541552 => 'Ashland, OR', + 1541553 => 'Warm Springs, OR', + 1541563 => 'Waldport, OR', + 1541564 => 'Hermiston, OR', + 1541567 => 'Hermiston, OR', + 1541572 => 'Myrtle Point, OR', + 1541573 => 'Burns, OR', + 1541574 => 'Newport, OR', + 1541575 => 'John Day, OR', + 1541582 => 'Rogue River, OR', + 1541592 => 'Cave Junction, OR', + 1541607 => 'Eugene, OR', + 1541608 => 'Medford, OR', + 1541617 => 'Bend, OR', + 1541633 => 'Bend, OR', + 1541636 => 'Eugene, OR', + 1541647 => 'Bend, OR', + 1541653 => 'Eugene, OR', + 1541654 => 'Eugene, OR', + 1541659 => 'Grants Pass, OR', + 1541660 => 'Grants Pass, OR', + 1541663 => 'La Grande, OR', + 1541664 => 'Central Point, OR', + 1541665 => 'Central Point, OR', + 1541667 => 'Hermiston, OR', + 1541672 => 'Roseburg, OR', + 1541673 => 'Roseburg, OR', + 1541676 => 'Heppner, OR', + 1541677 => 'Roseburg, OR', + 1541678 => 'Bend, OR', + 1541682 => 'Eugene, OR', + 1541683 => 'Eugene, OR', + 1541684 => 'Eugene, OR', + 1541686 => 'Eugene, OR', + 1541687 => 'Eugene, OR', + 1541688 => 'Eugene, OR', + 1541689 => 'Eugene, OR', + 1541706 => 'Bend, OR', + 1541708 => 'Ashland, OR', + 1541726 => 'Springfield, OR', + 1541728 => 'Bend, OR', + 1541729 => 'Eugene, OR', + 1541732 => 'Medford, OR', + 1541734 => 'Medford, OR', + 1541736 => 'Springfield, OR', + 1541737 => 'Corvallis, OR', + 1541738 => 'Corvallis, OR', + 1541741 => 'Springfield, OR', + 1541743 => 'Eugene, OR', + 1541744 => 'Springfield, OR', + 1541745 => 'Corvallis, OR', + 1541746 => 'Springfield, OR', + 1541747 => 'Springfield, OR', + 1541749 => 'Bend, OR', + 1541751 => 'North Bend, OR', + 1541752 => 'Corvallis, OR', + 1541753 => 'Corvallis, OR', + 1541754 => 'Corvallis, OR', + 1541756 => 'North Bend, OR', + 1541757 => 'Corvallis, OR', + 1541758 => 'Corvallis, OR', + 1541765 => 'Depoe Bay, OR', + 1541766 => 'Corvallis, OR', + 1541767 => 'Cottage Grove, OR', + 1541768 => 'Corvallis, OR', + 1541770 => 'Medford, OR', + 1541772 => 'Medford, OR', + 1541773 => 'Medford, OR', + 1541774 => 'Medford, OR', + 1541776 => 'Medford, OR', + 1541779 => 'Medford, OR', + 1541782 => 'Oakridge, OR', + 1541783 => 'Chiloquin, OR', + 1541789 => 'Medford, OR', + 1541791 => 'Albany, OR', + 1541812 => 'Albany, OR', + 1541839 => 'Canyonville, OR', + 1541842 => 'Medford, OR', + 1541844 => 'Eugene, OR', + 1541850 => 'Klamath Falls, OR', + 1541855 => 'Gold Hill, OR', + 1541857 => 'Medford, OR', + 1541858 => 'Medford, OR', + 1541863 => 'Myrtle Creek, OR', + 1541868 => 'Eugene, OR', + 1541878 => 'Shady Cove, OR', + 1541881 => 'Ontario, OR', + 1541882 => 'Klamath Falls, OR', + 1541883 => 'Klamath Falls, OR', + 1541884 => 'Klamath Falls, OR', + 1541885 => 'Klamath Falls, OR', + 1541888 => 'Coos Bay, OR', + 1541889 => 'Ontario, OR', + 1541895 => 'Creswell, OR', + 1541899 => 'Jacksonville, OR', + 1541902 => 'Florence, OR', + 1541917 => 'Albany, OR', + 1541922 => 'Umatilla, OR', + 1541923 => 'Redmond, OR', + 1541924 => 'Albany, OR', + 1541926 => 'Albany, OR', + 1541928 => 'Albany, OR', + 1541929 => 'Philomath, OR', + 1541935 => 'Veneta, OR', + 1541938 => 'Milton-Freewater, OR', + 1541941 => 'Medford, OR', + 1541942 => 'Cottage Grove, OR', + 1541947 => 'Lakeview, OR', + 1541955 => 'Grants Pass, OR', + 1541956 => 'Grants Pass, OR', + 1541957 => 'Roseburg, OR', + 1541962 => 'La Grande, OR', + 1541963 => 'La Grande, OR', + 1541966 => 'Pendleton, OR', + 1541967 => 'Albany, OR', + 1541973 => 'Medford, OR', + 1541988 => 'Springfield, OR', + 1541994 => 'Lincoln City, OR', + 1541995 => 'Harrisburg, OR', + 1541996 => 'Lincoln City, OR', + 1541997 => 'Florence, OR', + 1541998 => 'Junction City, OR', + 1548 => 'Ontario', + 1551 => 'New Jersey', + 1559 => 'California', + 1559221 => 'Fresno, CA', + 1559222 => 'Fresno, CA', + 1559224 => 'Fresno, CA', + 1559225 => 'Fresno, CA', + 1559226 => 'Fresno, CA', + 1559227 => 'Fresno, CA', + 1559228 => 'Fresno, CA', + 1559229 => 'Fresno, CA', + 1559230 => 'Fresno, CA', + 1559233 => 'Fresno, CA', + 1559237 => 'Fresno, CA', + 1559243 => 'Fresno, CA', + 1559244 => 'Fresno, CA', + 1559248 => 'Fresno, CA', + 1559251 => 'Fresno, CA', + 1559252 => 'Fresno, CA', + 1559253 => 'Fresno, CA', + 1559255 => 'Fresno, CA', + 1559256 => 'Fresno, CA', + 1559261 => 'Fresno, CA', + 1559264 => 'Fresno, CA', + 1559266 => 'Fresno, CA', + 1559268 => 'Fresno, CA', + 1559271 => 'Fresno, CA', + 1559274 => 'Fresno, CA', + 1559275 => 'Fresno, CA', + 1559276 => 'Fresno, CA', + 1559277 => 'Fresno, CA', + 1559294 => 'Fresno, CA', + 1559297 => 'Clovis, CA', + 1559298 => 'Clovis, CA', + 1559299 => 'Clovis, CA', + 1559307 => 'Fresno, CA', + 1559320 => 'Fresno, CA', + 1559322 => 'Clovis, CA', + 1559323 => 'Clovis, CA', + 1559324 => 'Clovis, CA', + 1559325 => 'Clovis, CA', + 1559326 => 'Clovis, CA', + 1559353 => 'Madera, CA', + 1559386 => 'Avenal, CA', + 1559412 => 'Fresno, CA', + 1559431 => 'Fresno, CA', + 1559432 => 'Fresno, CA', + 1559433 => 'Fresno, CA', + 1559434 => 'Fresno, CA', + 1559435 => 'Fresno, CA', + 1559436 => 'Fresno, CA', + 1559437 => 'Fresno, CA', + 1559438 => 'Fresno, CA', + 1559439 => 'Fresno, CA', + 1559440 => 'Fresno, CA', + 1559441 => 'Fresno, CA', + 1559442 => 'Fresno, CA', + 1559443 => 'Fresno, CA', + 1559445 => 'Fresno, CA', + 1559446 => 'Fresno, CA', + 1559447 => 'Fresno, CA', + 1559448 => 'Fresno, CA', + 1559449 => 'Fresno, CA', + 1559450 => 'Fresno, CA', + 1559452 => 'Fresno, CA', + 1559453 => 'Fresno, CA', + 1559454 => 'Fresno, CA', + 1559455 => 'Fresno, CA', + 1559456 => 'Fresno, CA', + 1559457 => 'Fresno, CA', + 1559459 => 'Fresno, CA', + 1559478 => 'Fresno, CA', + 1559485 => 'Fresno, CA', + 1559486 => 'Fresno, CA', + 1559490 => 'Fresno, CA', + 1559492 => 'Fresno, CA', + 1559495 => 'Fresno, CA', + 1559497 => 'Fresno, CA', + 1559498 => 'Fresno, CA', + 1559499 => 'Fresno, CA', + 1559528 => 'Orosi, CA', + 1559535 => 'Terra Bella, CA', + 1559539 => 'Springville, CA', + 1559561 => 'Three Rivers, CA', + 1559562 => 'Lindsay, CA', + 1559564 => 'Woodlake, CA', + 1559582 => 'Hanford, CA', + 1559583 => 'Hanford, CA', + 1559584 => 'Hanford, CA', + 1559585 => 'Hanford, CA', + 1559587 => 'Hanford, CA', + 1559589 => 'Hanford, CA', + 1559591 => 'Dinuba, CA', + 1559592 => 'Exeter, CA', + 1559594 => 'Exeter, CA', + 1559595 => 'Dinuba, CA', + 1559622 => 'Visalia, CA', + 1559623 => 'Visalia, CA', + 1559624 => 'Visalia, CA', + 1559625 => 'Visalia, CA', + 1559626 => 'Orange Cove, CA', + 1559627 => 'Visalia, CA', + 1559635 => 'Visalia, CA', + 1559636 => 'Visalia, CA', + 1559637 => 'Reedley, CA', + 1559638 => 'Reedley, CA', + 1559641 => 'Oakhurst, CA', + 1559645 => 'Madera, CA', + 1559646 => 'Parlier, CA', + 1559651 => 'Visalia, CA', + 1559655 => 'Mendota, CA', + 1559658 => 'Oakhurst, CA', + 1559659 => 'Firebaugh, CA', + 1559661 => 'Madera, CA', + 1559662 => 'Madera, CA', + 1559664 => 'Madera, CA', + 1559665 => 'Chowchilla, CA', + 1559673 => 'Madera, CA', + 1559674 => 'Madera, CA', + 1559675 => 'Madera, CA', + 1559683 => 'Oakhurst, CA', + 1559684 => 'Tulare, CA', + 1559685 => 'Tulare, CA', + 1559686 => 'Tulare, CA', + 1559687 => 'Tulare, CA', + 1559688 => 'Tulare, CA', + 1559713 => 'Visalia, CA', + 1559732 => 'Visalia, CA', + 1559733 => 'Visalia, CA', + 1559734 => 'Visalia, CA', + 1559738 => 'Visalia, CA', + 1559739 => 'Visalia, CA', + 1559741 => 'Visalia, CA', + 1559747 => 'Farmersville, CA', + 1559757 => 'Pixley, CA', + 1559781 => 'Porterville, CA', + 1559782 => 'Porterville, CA', + 1559783 => 'Porterville, CA', + 1559784 => 'Porterville, CA', + 1559788 => 'Porterville, CA', + 1559791 => 'Porterville, CA', + 1559798 => 'Ivanhoe, CA', + 1559834 => 'Fowler, CA', + 1559840 => 'Fresno, CA', + 1559841 => 'Shaver Lake, CA', + 1559846 => 'Kerman, CA', + 1559855 => 'Auberry, CA', + 1559864 => 'Caruthers, CA', + 1559867 => 'Riverdale, CA', + 1559875 => 'Sanger, CA', + 1559877 => 'North Fork, CA', + 1559891 => 'Selma, CA', + 1559896 => 'Selma, CA', + 1559897 => 'Kingsburg, CA', + 1559924 => 'Lemoore, CA', + 1559925 => 'Lemoore, CA', + 1559935 => 'Coalinga, CA', + 1559945 => 'Huron, CA', + 1559992 => 'Corcoran, CA', + 1559998 => 'Lemoore, CA', + 1561 => 'Florida', + 1561200 => 'Boynton Beach, FL', + 1561208 => 'Boca Raton, FL', + 1561210 => 'Boca Raton, FL', + 1561218 => 'Boca Raton, FL', + 1561228 => 'West Palm Beach, FL', + 1561241 => 'Boca Raton, FL', + 1561242 => 'West Palm Beach, FL', + 1561243 => 'Delray Beach, FL', + 1561244 => 'Boynton Beach, FL', + 1561245 => 'Boca Raton, FL', + 1561265 => 'Delray Beach, FL', + 1561266 => 'Delray Beach, FL', + 1561272 => 'Delray Beach, FL', + 1561274 => 'Delray Beach, FL', + 1561276 => 'Delray Beach, FL', + 1561278 => 'Delray Beach, FL', + 1561279 => 'Delray Beach, FL', + 1561289 => 'Boca Raton, FL', + 1561330 => 'Delray Beach, FL', + 1561338 => 'Boca Raton, FL', + 1561347 => 'Boca Raton, FL', + 1561353 => 'Boca Raton, FL', + 1561355 => 'West Palm Beach, FL', + 1561361 => 'Boca Raton, FL', + 1561362 => 'Boca Raton, FL', + 1561364 => 'Boynton Beach, FL', + 1561367 => 'Boca Raton, FL', + 1561368 => 'Boca Raton, FL', + 1561369 => 'Boynton Beach, FL', + 1561372 => 'Boca Raton, FL', + 1561374 => 'Boynton Beach, FL', + 1561391 => 'Boca Raton, FL', + 1561392 => 'Boca Raton, FL', + 1561393 => 'Boca Raton, FL', + 1561394 => 'Boca Raton, FL', + 1561395 => 'Boca Raton, FL', + 1561404 => 'Delray Beach, FL', + 1561416 => 'Boca Raton, FL', + 1561417 => 'Boca Raton, FL', + 1561422 => 'Riviera Beach, FL', + 1561427 => 'Jupiter, FL', + 1561447 => 'Boca Raton, FL', + 1561450 => 'Delray Beach, FL', + 1561451 => 'Boca Raton, FL', + 1561455 => 'Delray Beach, FL', + 1561470 => 'Boca Raton, FL', + 1561471 => 'West Palm Beach, FL', + 1561477 => 'Boca Raton, FL', + 1561478 => 'West Palm Beach, FL', + 1561479 => 'Boca Raton, FL', + 1561482 => 'Boca Raton, FL', + 1561483 => 'Boca Raton, FL', + 1561487 => 'Boca Raton, FL', + 1561488 => 'Boca Raton, FL', + 1561495 => 'Delray Beach, FL', + 1561496 => 'Delray Beach, FL', + 1561498 => 'Delray Beach, FL', + 1561499 => 'Delray Beach, FL', + 1561509 => 'Boynton Beach, FL', + 1561514 => 'West Palm Beach, FL', + 1561544 => 'Boca Raton, FL', + 1561558 => 'Boca Raton, FL', + 1561572 => 'Boynton Beach, FL', + 1561575 => 'Jupiter, FL', + 1561615 => 'West Palm Beach, FL', + 1561616 => 'West Palm Beach, FL', + 1561620 => 'Boca Raton, FL', + 1561637 => 'Delray Beach, FL', + 1561638 => 'Delray Beach, FL', + 1561640 => 'West Palm Beach, FL', + 1561650 => 'West Palm Beach, FL', + 1561653 => 'West Palm Beach, FL', + 1561655 => 'West Palm Beach, FL', + 1561659 => 'West Palm Beach, FL', + 1561672 => 'Boca Raton, FL', + 1561683 => 'West Palm Beach, FL', + 1561684 => 'West Palm Beach, FL', + 1561686 => 'West Palm Beach, FL', + 1561687 => 'West Palm Beach, FL', + 1561688 => 'West Palm Beach, FL', + 1561689 => 'West Palm Beach, FL', + 1561697 => 'West Palm Beach, FL', + 1561712 => 'West Palm Beach, FL', + 1561731 => 'Boynton Beach, FL', + 1561732 => 'Boynton Beach, FL', + 1561733 => 'Boynton Beach, FL', + 1561734 => 'Boynton Beach, FL', + 1561735 => 'Boynton Beach, FL', + 1561736 => 'Boynton Beach, FL', + 1561737 => 'Boynton Beach, FL', + 1561738 => 'Boynton Beach, FL', + 1561739 => 'Boynton Beach, FL', + 1561740 => 'Boynton Beach, FL', + 1561741 => 'Jupiter, FL', + 1561742 => 'Boynton Beach, FL', + 1561743 => 'Jupiter, FL', + 1561744 => 'Jupiter, FL', + 1561745 => 'Jupiter, FL', + 1561746 => 'Jupiter, FL', + 1561747 => 'Jupiter, FL', + 1561748 => 'Jupiter, FL', + 1561750 => 'Boca Raton, FL', + 1561752 => 'Boynton Beach, FL', + 1561756 => 'Boca Raton, FL', + 1561768 => 'Jupiter, FL', + 1561802 => 'West Palm Beach, FL', + 1561807 => 'Boca Raton, FL', + 1561819 => 'Delray Beach, FL', + 1561820 => 'West Palm Beach, FL', + 1561822 => 'West Palm Beach, FL', + 1561826 => 'Boca Raton, FL', + 1561832 => 'West Palm Beach, FL', + 1561833 => 'West Palm Beach, FL', + 1561835 => 'West Palm Beach, FL', + 1561852 => 'Boca Raton, FL', + 1561865 => 'Delray Beach, FL', + 1561883 => 'Boca Raton, FL', + 1561910 => 'Boca Raton, FL', + 1561912 => 'Boca Raton, FL', + 1561921 => 'Delray Beach, FL', + 1561924 => 'Pahokee, FL', + 1561929 => 'Boca Raton, FL', + 1561939 => 'Boca Raton, FL', + 1561948 => 'Boca Raton, FL', + 1561955 => 'Boca Raton, FL', + 1561962 => 'Boca Raton, FL', + 1561972 => 'Jupiter, FL', + 1561981 => 'Boca Raton, FL', + 1561988 => 'Boca Raton, FL', + 1561989 => 'Boca Raton, FL', + 1561992 => 'Belle Glade, FL', + 1561994 => 'Boca Raton, FL', + 1561995 => 'Boca Raton, FL', + 1561996 => 'Belle Glade, FL', + 1561997 => 'Boca Raton, FL', + 1561998 => 'Boca Raton, FL', + 1561999 => 'Boca Raton, FL', + 1562 => 'California', + 1562216 => 'Long Beach, CA', + 1562218 => 'Long Beach, CA', + 1562272 => 'Paramount, CA', + 1562343 => 'Long Beach, CA', + 1562401 => 'Downey, CA', + 1562408 => 'Paramount, CA', + 1562420 => 'Long Beach, CA', + 1562421 => 'Long Beach, CA', + 1562422 => 'Long Beach, CA', + 1562423 => 'Long Beach, CA', + 1562424 => 'Long Beach, CA', + 1562425 => 'Long Beach, CA', + 1562426 => 'Long Beach, CA', + 1562427 => 'Long Beach, CA', + 1562428 => 'Long Beach, CA', + 1562429 => 'Long Beach, CA', + 1562432 => 'Long Beach, CA', + 1562433 => 'Long Beach, CA', + 1562434 => 'Long Beach, CA', + 1562435 => 'Long Beach, CA', + 1562436 => 'Long Beach, CA', + 1562437 => 'Long Beach, CA', + 1562438 => 'Long Beach, CA', + 1562439 => 'Long Beach, CA', + 1562461 => 'Bellflower, CA', + 1562464 => 'Whittier, CA', + 1562490 => 'Long Beach, CA', + 1562491 => 'Long Beach, CA', + 1562492 => 'Long Beach, CA', + 1562494 => 'Long Beach, CA', + 1562495 => 'Long Beach, CA', + 1562496 => 'Long Beach, CA', + 1562498 => 'Long Beach, CA', + 1562529 => 'Paramount, CA', + 1562531 => 'Paramount, CA', + 1562570 => 'Long Beach, CA', + 1562590 => 'Long Beach, CA', + 1562591 => 'Long Beach, CA', + 1562595 => 'Long Beach, CA', + 1562597 => 'Long Beach, CA', + 1562599 => 'Long Beach, CA', + 1562602 => 'Paramount, CA', + 1562612 => 'Long Beach, CA', + 1562622 => 'Downey, CA', + 1562624 => 'Long Beach, CA', + 1562633 => 'Paramount, CA', + 1562657 => 'Downey, CA', + 1562690 => 'La Habra, CA', + 1562691 => 'La Habra, CA', + 1562692 => 'Whittier, CA', + 1562693 => 'Whittier, CA', + 1562694 => 'La Habra, CA', + 1562695 => 'Whittier, CA', + 1562696 => 'Whittier, CA', + 1562697 => 'La Habra, CA', + 1562698 => 'Whittier, CA', + 1562728 => 'Long Beach, CA', + 1562777 => 'Santa Fe Springs, CA', + 1562789 => 'Whittier, CA', + 1562795 => 'Los Alamitos, CA', + 1562801 => 'Pico Rivera, CA', + 1562803 => 'Downey, CA', + 1562804 => 'Bellflower, CA', + 1562826 => 'Long Beach, CA', + 1562856 => 'Long Beach, CA', + 1562861 => 'Downey, CA', + 1562862 => 'Downey, CA', + 1562863 => 'Norwalk, CA', + 1562864 => 'Norwalk, CA', + 1562866 => 'Bellflower, CA', + 1562867 => 'Bellflower, CA', + 1562868 => 'Norwalk, CA', + 1562869 => 'Downey, CA', + 1562901 => 'Long Beach, CA', + 1562903 => 'Santa Fe Springs, CA', + 1562904 => 'Downey, CA', + 1562906 => 'Santa Fe Springs, CA', + 1562907 => 'Whittier, CA', + 1562912 => 'Long Beach, CA', + 1562920 => 'Bellflower, CA', + 1562923 => 'Downey, CA', + 1562925 => 'Bellflower, CA', + 1562929 => 'Norwalk, CA', + 1562933 => 'Long Beach, CA', + 1562938 => 'Long Beach, CA', + 1562942 => 'Pico Rivera, CA', + 1562945 => 'Whittier, CA', + 1562946 => 'Santa Fe Springs, CA', + 1562947 => 'Whittier, CA', + 1562948 => 'Pico Rivera, CA', + 1562949 => 'Pico Rivera, CA', + 1562951 => 'Long Beach, CA', + 1562961 => 'Long Beach, CA', + 1562981 => 'Long Beach, CA', + 1562983 => 'Long Beach, CA', + 1562984 => 'Long Beach, CA', + 1562985 => 'Long Beach, CA', + 1562986 => 'Long Beach, CA', + 1562987 => 'Long Beach, CA', + 1562988 => 'Long Beach, CA', + 1562989 => 'Long Beach, CA', + 1562997 => 'Long Beach, CA', + 1563 => 'Iowa', + 1563242 => 'Clinton, IA', + 1563243 => 'Clinton, IA', + 1563244 => 'Clinton, IA', + 1563245 => 'Elkader, IA', + 1563252 => 'Guttenberg, IA', + 1563259 => 'Camanche, IA', + 1563262 => 'Muscatine, IA', + 1563263 => 'Muscatine, IA', + 1563264 => 'Muscatine, IA', + 1563284 => 'Walcott, IA', + 1563285 => 'Eldridge, IA', + 1563289 => 'Le Claire, IA', + 1563322 => 'Davenport, IA', + 1563323 => 'Davenport, IA', + 1563324 => 'Davenport, IA', + 1563326 => 'Davenport, IA', + 1563332 => 'Bettendorf, IA', + 1563355 => 'Bettendorf, IA', + 1563359 => 'Davenport, IA', + 1563382 => 'Decorah, IA', + 1563383 => 'Davenport, IA', + 1563386 => 'Davenport, IA', + 1563388 => 'Davenport, IA', + 1563391 => 'Davenport, IA', + 1563421 => 'Davenport, IA', + 1563422 => 'West Union, IA', + 1563441 => 'Davenport, IA', + 1563445 => 'Davenport, IA', + 1563532 => 'Ossian, IA', + 1563538 => 'Lansing, IA', + 1563539 => 'Monona, IA', + 1563547 => 'Cresco, IA', + 1563556 => 'Dubuque, IA', + 1563557 => 'Dubuque, IA', + 1563568 => 'Waukon, IA', + 1563578 => 'Sumner, IA', + 1563582 => 'Dubuque, IA', + 1563583 => 'Dubuque, IA', + 1563584 => 'Dubuque, IA', + 1563585 => 'Dubuque, IA', + 1563588 => 'Dubuque, IA', + 1563589 => 'Dubuque, IA', + 1563652 => 'Maquoketa, IA', + 1563659 => 'DeWitt, IA', + 1563689 => 'Preston, IA', + 1563690 => 'Dubuque, IA', + 1563732 => 'Wilton, IA', + 1563742 => 'Bettendorf, IA', + 1563744 => 'Farley, IA', + 1563785 => 'Durant, IA', + 1563823 => 'Davenport, IA', + 1563852 => 'Cascade, IA', + 1563864 => 'Postville, IA', + 1563872 => 'Bellevue, IA', + 1563873 => 'McGregor, IA', + 1563875 => 'Dyersville, IA', + 1563886 => 'Tipton, IA', + 1563927 => 'Manchester, IA', + 1563928 => 'Edgewood, IA', + 1563933 => 'Strawberry Point, IA', + 1567 => 'Ohio', + 1570 => 'Pennsylvania', + 1570207 => 'Scranton, PA', + 1570208 => 'Wilkes-Barre, PA', + 1570223 => 'East Stroudsburg, PA', + 1570226 => 'Hawley, PA', + 1570247 => 'Rome, PA', + 1570251 => 'Honesdale, PA', + 1570253 => 'Honesdale, PA', + 1570265 => 'Towanda, PA', + 1570268 => 'Towanda, PA', + 1570270 => 'Wilkes-Barre, PA', + 1570271 => 'Danville, PA', + 1570275 => 'Danville, PA', + 1570278 => 'Montrose, PA', + 1570282 => 'Carbondale, PA', + 1570283 => 'Kingston, PA', + 1570286 => 'Sunbury, PA', + 1570287 => 'Kingston, PA', + 1570288 => 'Kingston, PA', + 1570296 => 'Milford, PA', + 1570297 => 'Troy, PA', + 1570320 => 'Williamsport, PA', + 1570321 => 'Williamsport, PA', + 1570322 => 'Williamsport, PA', + 1570323 => 'Williamsport, PA', + 1570325 => 'Jim Thorpe, PA', + 1570326 => 'Williamsport, PA', + 1570327 => 'Williamsport, PA', + 1570331 => 'Kingston, PA', + 1570339 => 'Mount Carmel, PA', + 1570340 => 'Scranton, PA', + 1570341 => 'Scranton, PA', + 1570342 => 'Scranton, PA', + 1570343 => 'Scranton, PA', + 1570344 => 'Scranton, PA', + 1570345 => 'Pine Grove, PA', + 1570346 => 'Scranton, PA', + 1570347 => 'Scranton, PA', + 1570348 => 'Scranton, PA', + 1570366 => 'Orwigsburg, PA', + 1570368 => 'Montoursville, PA', + 1570373 => 'Kulpmont, PA', + 1570374 => 'Selinsgrove, PA', + 1570385 => 'Schuylkill Haven, PA', + 1570387 => 'Bloomsburg, PA', + 1570389 => 'Bloomsburg, PA', + 1570398 => 'Jersey Shore, PA', + 1570409 => 'Milford, PA', + 1570420 => 'Stroudsburg, PA', + 1570424 => 'Stroudsburg, PA', + 1570427 => 'Weatherly, PA', + 1570429 => 'Saint Clair, PA', + 1570443 => 'White Haven, PA', + 1570450 => 'Hazleton, PA', + 1570454 => 'Hazleton, PA', + 1570455 => 'Hazleton, PA', + 1570458 => 'Millville, PA', + 1570459 => 'Hazleton, PA', + 1570462 => 'Shenandoah, PA', + 1570465 => 'New Milford, PA', + 1570473 => 'Northumberland, PA', + 1570474 => 'Mountain Top, PA', + 1570488 => 'Waymart, PA', + 1570491 => 'Matamoras, PA', + 1570494 => 'Williamsport, PA', + 1570501 => 'Hazleton, PA', + 1570517 => 'Stroudsburg, PA', + 1570522 => 'Lewisburg, PA', + 1570523 => 'Lewisburg, PA', + 1570524 => 'Lewisburg, PA', + 1570538 => 'Watsontown, PA', + 1570539 => 'Mt Pleasant Mls, PA', + 1570542 => 'Shickshinny, PA', + 1570544 => 'Minersville, PA', + 1570546 => 'Muncy, PA', + 1570547 => 'Montgomery, PA', + 1570552 => 'Kingston, PA', + 1570558 => 'Scranton, PA', + 1570562 => 'Taylor, PA', + 1570563 => 'Dalton, PA', + 1570584 => 'Hughesville, PA', + 1570585 => 'Clarks Summit, PA', + 1570586 => 'Clarks Summit, PA', + 1570587 => 'Clarks Summit, PA', + 1570596 => 'Gillett, PA', + 1570601 => 'Williamsport, PA', + 1570602 => 'Pittston, PA', + 1570621 => 'Pottsville, PA', + 1570622 => 'Pottsville, PA', + 1570628 => 'Pottsville, PA', + 1570636 => 'Freeland, PA', + 1570638 => 'Blossburg, PA', + 1570639 => 'Harveys Lake, PA', + 1570644 => 'Shamokin, PA', + 1570648 => 'Shamokin, PA', + 1570654 => 'Pittston, PA', + 1570655 => 'Pittston, PA', + 1570662 => 'Mansfield, PA', + 1570668 => 'Tamaqua, PA', + 1570672 => 'Elysburg, PA', + 1570673 => 'Canton, PA', + 1570674 => 'Dallas, PA', + 1570675 => 'Dallas, PA', + 1570693 => 'Wyoming, PA', + 1570696 => 'Shavertown, PA', + 1570698 => 'Lake Ariel, PA', + 1570714 => 'Kingston, PA', + 1570718 => 'Kingston, PA', + 1570722 => 'Albrightsville, PA', + 1570723 => 'Wellsboro, PA', + 1570724 => 'Wellsboro, PA', + 1570726 => 'Mill Hall, PA', + 1570729 => 'Beach Lake, PA', + 1570735 => 'Nanticoke, PA', + 1570739 => 'Schuylkill Haven, PA', + 1570742 => 'Milton, PA', + 1570746 => 'Wyalusing, PA', + 1570748 => 'Lock Haven, PA', + 1570752 => 'Berwick, PA', + 1570759 => 'Berwick, PA', + 1570773 => 'Mahanoy City, PA', + 1570775 => 'Hawley, PA', + 1570779 => 'Plymouth, PA', + 1570784 => 'Bloomsburg, PA', + 1570785 => 'Forest City, PA', + 1570808 => 'Wilkes-Barre, PA', + 1570819 => 'Wilkes-Barre, PA', + 1570820 => 'Wilkes-Barre, PA', + 1570821 => 'Wilkes-Barre, PA', + 1570822 => 'Wilkes-Barre, PA', + 1570823 => 'Wilkes-Barre, PA', + 1570824 => 'Wilkes-Barre, PA', + 1570825 => 'Wilkes-Barre, PA', + 1570826 => 'Wilkes-Barre, PA', + 1570828 => 'Dingmans Ferry, PA', + 1570829 => 'Wilkes-Barre, PA', + 1570833 => 'Meshoppen, PA', + 1570836 => 'Tunkhannock, PA', + 1570837 => 'Middleburg, PA', + 1570853 => 'Susquehanna, PA', + 1570868 => 'Mountain Top, PA', + 1570874 => 'Frackville, PA', + 1570875 => 'Ashland, PA', + 1570879 => 'Hallstead, PA', + 1570882 => 'Sayre, PA', + 1570883 => 'Pittston, PA', + 1570887 => 'Sayre, PA', + 1570888 => 'Sayre, PA', + 1570893 => 'Lock Haven, PA', + 1570894 => 'Tobyhanna, PA', + 1570897 => 'Mount Bethel, PA', + 1570922 => 'Millmont, PA', + 1570923 => 'Renovo, PA', + 1570925 => 'Benton, PA', + 1570928 => 'Dushore, PA', + 1570929 => 'McAdoo, PA', + 1570941 => 'Scranton, PA', + 1570942 => 'Nicholson, PA', + 1570945 => 'Factoryville, PA', + 1570955 => 'Scranton, PA', + 1570961 => 'Scranton, PA', + 1570963 => 'Scranton, PA', + 1570966 => 'Mifflinburg, PA', + 1570969 => 'Scranton, PA', + 1570970 => 'Wilkes-Barre, PA', + 1570988 => 'Sunbury, PA', + 1571 => 'Virginia', + 1571208 => 'Manassas, VA', + 1571223 => 'Ashburn, VA', + 1571248 => 'Gainesville, VA', + 1571261 => 'Gainesville, VA', + 1571285 => 'Woodbridge, VA', + 1571292 => 'Manassas, VA', + 1571379 => 'Manassas, VA', + 1571434 => 'Sterling, VA', + 1573 => 'Missouri', + 1573204 => 'Jackson, MO', + 1573214 => 'Columbia, MO', + 1573221 => 'Hannibal, MO', + 1573222 => 'Puxico, MO', + 1573223 => 'Piedmont, MO', + 1573226 => 'Eminence, MO', + 1573231 => 'Hannibal, MO', + 1573234 => 'Columbia, MO', + 1573237 => 'New Haven, MO', + 1573238 => 'Marble Hill, MO', + 1573243 => 'Jackson, MO', + 1573248 => 'Hannibal, MO', + 1573256 => 'Columbia, MO', + 1573264 => 'Scott City, MO', + 1573265 => 'St. James, MO', + 1573276 => 'Malden, MO', + 1573288 => 'Canton, MO', + 1573293 => 'Bernie, MO', + 1573302 => 'Osage Beach, MO', + 1573308 => 'Rolla, MO', + 1573317 => 'Camdenton, MO', + 1573323 => 'Van Buren, MO', + 1573324 => 'Bowling Green, MO', + 1573329 => 'Fort Leonard Wood, MO', + 1573331 => 'Cape Girardeau, MO', + 1573332 => 'Cape Girardeau, MO', + 1573333 => 'Caruthersville, MO', + 1573334 => 'Cape Girardeau, MO', + 1573335 => 'Cape Girardeau, MO', + 1573336 => 'St. Robert, MO', + 1573339 => 'Cape Girardeau, MO', + 1573341 => 'Rolla, MO', + 1573346 => 'Camdenton, MO', + 1573348 => 'Osage Beach, MO', + 1573358 => 'Bonne Terre, MO', + 1573359 => 'Hayti, MO', + 1573364 => 'Rolla, MO', + 1573365 => 'Lake Ozark, MO', + 1573368 => 'Rolla, MO', + 1573372 => 'Gravois Mills, MO', + 1573374 => 'Sunrise Beach, MO', + 1573377 => 'Stover, MO', + 1573378 => 'Versailles, MO', + 1573379 => 'Portageville, MO', + 1573392 => 'Eldon, MO', + 1573406 => 'Hannibal, MO', + 1573422 => 'Vienna, MO', + 1573426 => 'Rolla, MO', + 1573436 => 'Potosi, MO', + 1573437 => 'Owensville, MO', + 1573438 => 'Potosi, MO', + 1573441 => 'Columbia, MO', + 1573442 => 'Columbia, MO', + 1573443 => 'Columbia, MO', + 1573445 => 'Columbia, MO', + 1573446 => 'Columbia, MO', + 1573447 => 'Columbia, MO', + 1573449 => 'Columbia, MO', + 1573458 => 'Rolla, MO', + 1573468 => 'Sullivan, MO', + 1573471 => 'Sikeston, MO', + 1573472 => 'Sikeston, MO', + 1573474 => 'Columbia, MO', + 1573481 => 'Sikeston, MO', + 1573483 => 'Bloomsdale, MO', + 1573486 => 'Hermann, MO', + 1573499 => 'Columbia, MO', + 1573545 => 'Benton, MO', + 1573546 => 'Ironton, MO', + 1573547 => 'Perryville, MO', + 1573556 => 'Jefferson City, MO', + 1573564 => 'Montgomery City, MO', + 1573568 => 'Bloomfield, MO', + 1573581 => 'Mexico, MO', + 1573582 => 'Mexico, MO', + 1573588 => 'Shelbina, MO', + 1573592 => 'Fulton, MO', + 1573594 => 'Vandalia, MO', + 1573596 => 'Fort Leonard Wood, MO', + 1573614 => 'Dexter, MO', + 1573624 => 'Dexter, MO', + 1573632 => 'Jefferson City, MO', + 1573634 => 'Jefferson City, MO', + 1573635 => 'Jefferson City, MO', + 1573636 => 'Jefferson City, MO', + 1573642 => 'Fulton, MO', + 1573649 => 'East Prairie, MO', + 1573651 => 'Cape Girardeau, MO', + 1573657 => 'Ashland, MO', + 1573659 => 'Jefferson City, MO', + 1573663 => 'Ellington, MO', + 1573674 => 'Licking, MO', + 1573682 => 'Centralia, MO', + 1573683 => 'Charleston, MO', + 1573686 => 'Poplar Bluff, MO', + 1573695 => 'Steele, MO', + 1573696 => 'Hallsville, MO', + 1573701 => 'Farmington, MO', + 1573722 => 'Advance, MO', + 1573727 => 'Poplar Bluff, MO', + 1573729 => 'Salem, MO', + 1573732 => 'Bourbon, MO', + 1573735 => 'Monroe City, MO', + 1573736 => 'Crocker, MO', + 1573747 => 'Farmington, MO', + 1573748 => 'New Madrid, MO', + 1573751 => 'Jefferson City, MO', + 1573754 => 'Louisiana, MO', + 1573756 => 'Farmington, MO', + 1573759 => 'Dixon, MO', + 1573760 => 'Farmington, MO', + 1573761 => 'Jefferson City, MO', + 1573764 => 'Gerald, MO', + 1573765 => 'Richland, MO', + 1573769 => 'Palmyra, MO', + 1573774 => 'Waynesville, MO', + 1573775 => 'Steelville, MO', + 1573776 => 'Poplar Bluff, MO', + 1573777 => 'Columbia, MO', + 1573778 => 'Poplar Bluff, MO', + 1573782 => 'Russellville, MO', + 1573783 => 'Fredericktown, MO', + 1573785 => 'Poplar Bluff, MO', + 1573793 => 'Iberia, MO', + 1573796 => 'California, MO', + 1573803 => 'Cape Girardeau, MO', + 1573814 => 'Columbia, MO', + 1573815 => 'Columbia, MO', + 1573817 => 'Columbia, MO', + 1573859 => 'Belle, MO', + 1573860 => 'Sullivan, MO', + 1573873 => 'Camdenton, MO', + 1573874 => 'Columbia, MO', + 1573875 => 'Columbia, MO', + 1573876 => 'Columbia, MO', + 1573882 => 'Columbia, MO', + 1573883 => 'Ste. Genevieve, MO', + 1573884 => 'Columbia, MO', + 1573885 => 'Cuba, MO', + 1573886 => 'Columbia, MO', + 1573887 => 'Chaffee, MO', + 1573888 => 'Kennett, MO', + 1573893 => 'Jefferson City, MO', + 1573896 => 'Holts Summit, MO', + 1573897 => 'Linn, MO', + 1573898 => 'Elsberry, MO', + 1573964 => 'Lake Ozark, MO', + 1573996 => 'Doniphan, MO', + 1574 => 'Indiana', + 1574206 => 'Elkhart, IN', + 1574217 => 'South Bend, IN', + 1574223 => 'Rochester, IN', + 1574231 => 'South Bend, IN', + 1574232 => 'South Bend, IN', + 1574233 => 'South Bend, IN', + 1574234 => 'South Bend, IN', + 1574235 => 'South Bend, IN', + 1574237 => 'South Bend, IN', + 1574246 => 'South Bend, IN', + 1574252 => 'Mishawaka, IN', + 1574254 => 'Mishawaka, IN', + 1574255 => 'Mishawaka, IN', + 1574256 => 'Mishawaka, IN', + 1574257 => 'Mishawaka, IN', + 1574258 => 'Mishawaka, IN', + 1574259 => 'Mishawaka, IN', + 1574262 => 'Elkhart, IN', + 1574264 => 'Elkhart, IN', + 1574266 => 'Elkhart, IN', + 1574267 => 'Warsaw, IN', + 1574268 => 'Warsaw, IN', + 1574269 => 'Warsaw, IN', + 1574272 => 'South Bend, IN', + 1574282 => 'South Bend, IN', + 1574283 => 'South Bend, IN', + 1574287 => 'South Bend, IN', + 1574288 => 'South Bend, IN', + 1574289 => 'South Bend, IN', + 1574291 => 'South Bend, IN', + 1574293 => 'Elkhart, IN', + 1574294 => 'Elkhart, IN', + 1574295 => 'Elkhart, IN', + 1574296 => 'Elkhart, IN', + 1574299 => 'South Bend, IN', + 1574335 => 'Mishawaka, IN', + 1574372 => 'Warsaw, IN', + 1574389 => 'Elkhart, IN', + 1574453 => 'Leesburg, IN', + 1574457 => 'Syracuse, IN', + 1574522 => 'Elkhart, IN', + 1574523 => 'Elkhart, IN', + 1574533 => 'Goshen, IN', + 1574534 => 'Goshen, IN', + 1574535 => 'Goshen, IN', + 1574537 => 'Goshen, IN', + 1574546 => 'Bremen, IN', + 1574583 => 'Monticello, IN', + 1574586 => 'Walkerton, IN', + 1574594 => 'Pierceton, IN', + 1574642 => 'Goshen, IN', + 1574647 => 'South Bend, IN', + 1574654 => 'New Carlisle, IN', + 1574656 => 'North Liberty, IN', + 1574658 => 'Milford, IN', + 1574674 => 'Osceola, IN', + 1574722 => 'Logansport, IN', + 1574753 => 'Logansport, IN', + 1574772 => 'Knox, IN', + 1574773 => 'Nappanee, IN', + 1574784 => 'Lakeville, IN', + 1574825 => 'Middlebury, IN', + 1574831 => 'New Paris, IN', + 1574834 => 'North Webster, IN', + 1574842 => 'Culver, IN', + 1574848 => 'Bristol, IN', + 1574855 => 'South Bend, IN', + 1574862 => 'Wakarusa, IN', + 1574875 => 'Elkhart, IN', + 1574892 => 'Argos, IN', + 1574893 => 'Akron, IN', + 1574896 => 'North Judson, IN', + 1574935 => 'Plymouth, IN', + 1574936 => 'Plymouth, IN', + 1574946 => 'Winamac, IN', + 1574967 => 'Flora, IN', + 1574970 => 'Elkhart, IN', + 1575 => 'New Mexico', + 1575234 => 'Carlsbad, NM', + 1575257 => 'Ruidoso, NM', + 1575258 => 'Ruidoso, NM', + 1575267 => 'Hatch, NM', + 1575289 => 'Cuba, NM', + 1575336 => 'Alto, NM', + 1575355 => 'Fort Sumner, NM', + 1575356 => 'Portales, NM', + 1575359 => 'Portales, NM', + 1575373 => 'Las Cruces, NM', + 1575374 => 'Clayton, NM', + 1575377 => 'Angel Fire, NM', + 1575378 => 'Ruidoso Downs, NM', + 1575382 => 'Las Cruces, NM', + 1575387 => 'Mora, NM', + 1575388 => 'Silver City, NM', + 1575391 => 'Hobbs, NM', + 1575392 => 'Hobbs, NM', + 1575393 => 'Hobbs, NM', + 1575394 => 'Eunice, NM', + 1575396 => 'Lovington, NM', + 1575397 => 'Hobbs, NM', + 1575434 => 'Alamogordo, NM', + 1575437 => 'Alamogordo, NM', + 1575439 => 'Alamogordo, NM', + 1575443 => 'Alamogordo, NM', + 1575445 => 'Raton, NM', + 1575461 => 'Tucumcari, NM', + 1575472 => 'Santa Rosa, NM', + 1575492 => 'Hobbs, NM', + 1575521 => 'Las Cruces, NM', + 1575522 => 'Las Cruces, NM', + 1575523 => 'Las Cruces, NM', + 1575524 => 'Las Cruces, NM', + 1575525 => 'Las Cruces, NM', + 1575526 => 'Las Cruces, NM', + 1575527 => 'Las Cruces, NM', + 1575532 => 'Las Cruces, NM', + 1575534 => 'Silver City, NM', + 1575537 => 'Bayard, NM', + 1575538 => 'Silver City, NM', + 1575541 => 'Las Cruces, NM', + 1575542 => 'Lordsburg, NM', + 1575544 => 'Deming, NM', + 1575546 => 'Deming, NM', + 1575556 => 'Las Cruces, NM', + 1575585 => 'Tularosa, NM', + 1575586 => 'Questa, NM', + 1575622 => 'Roswell, NM', + 1575623 => 'Roswell, NM', + 1575624 => 'Roswell, NM', + 1575625 => 'Roswell, NM', + 1575627 => 'Roswell, NM', + 1575628 => 'Carlsbad, NM', + 1575647 => 'Las Cruces, NM', + 1575682 => 'Cloudcroft, NM', + 1575737 => 'Taos, NM', + 1575742 => 'Clovis, NM', + 1575746 => 'Artesia, NM', + 1575748 => 'Artesia, NM', + 1575751 => 'Taos, NM', + 1575754 => 'Red River, NM', + 1575756 => 'Chama, NM', + 1575758 => 'Taos, NM', + 1575762 => 'Clovis, NM', + 1575763 => 'Clovis, NM', + 1575769 => 'Clovis, NM', + 1575824 => 'Chaparral, NM', + 1575835 => 'Socorro, NM', + 1575838 => 'Socorro, NM', + 1575882 => 'Anthony, NM', + 1575885 => 'Carlsbad, NM', + 1575887 => 'Carlsbad, NM', + 1575894 => 'Truth Or Cnsqncs, NM', + 1575935 => 'Clovis, NM', + 1580 => 'Oklahoma', + 1580223 => 'Ardmore, OK', + 1580224 => 'Ardmore, OK', + 1580225 => 'Elk City, OK', + 1580226 => 'Ardmore, OK', + 1580227 => 'Fairview, OK', + 1580228 => 'Waurika, OK', + 1580229 => 'Healdton, OK', + 1580233 => 'Enid, OK', + 1580234 => 'Enid, OK', + 1580237 => 'Enid, OK', + 1580242 => 'Enid, OK', + 1580243 => 'Elk City, OK', + 1580248 => 'Lawton, OK', + 1580250 => 'Lawton, OK', + 1580252 => 'Duncan, OK', + 1580254 => 'Woodward, OK', + 1580255 => 'Duncan, OK', + 1580256 => 'Woodward, OK', + 1580276 => 'Marietta, OK', + 1580286 => 'Idabel, OK', + 1580298 => 'Antlers, OK', + 1580310 => 'Ada, OK', + 1580323 => 'Clinton, OK', + 1580326 => 'Hugo, OK', + 1580327 => 'Alva, OK', + 1580332 => 'Ada, OK', + 1580335 => 'Frederick, OK', + 1580336 => 'Perry, OK', + 1580338 => 'Guymon, OK', + 1580351 => 'Lawton, OK', + 1580353 => 'Lawton, OK', + 1580354 => 'Lawton, OK', + 1580355 => 'Lawton, OK', + 1580357 => 'Lawton, OK', + 1580362 => 'Newkirk, OK', + 1580363 => 'Blackwell, OK', + 1580369 => 'Davis, OK', + 1580371 => 'Tishomingo, OK', + 1580395 => 'Medford, OK', + 1580421 => 'Ada, OK', + 1580436 => 'Ada, OK', + 1580439 => 'Comanche, OK', + 1580444 => 'Velma, OK', + 1580458 => 'Fort Sill, OK', + 1580470 => 'Duncan, OK', + 1580477 => 'Altus, OK', + 1580482 => 'Altus, OK', + 1580492 => 'Elgin, OK', + 1580497 => 'Cheyenne, OK', + 1580536 => 'Lawton, OK', + 1580544 => 'Boise City, OK', + 1580564 => 'Kingston, OK', + 1580569 => 'Snyder, OK', + 1580581 => 'Lawton, OK', + 1580584 => 'Broken Bow, OK', + 1580588 => 'Apache, OK', + 1580596 => 'Cherokee, OK', + 1580622 => 'Sulphur, OK', + 1580623 => 'Watonga, OK', + 1580625 => 'Beaver, OK', + 1580628 => 'Tonkawa, OK', + 1580652 => 'Hooker, OK', + 1580654 => 'Carnegie, OK', + 1580657 => 'Lone Grove, OK', + 1580658 => 'Marlow, OK', + 1580661 => 'Thomas, OK', + 1580668 => 'Wilson, OK', + 1580688 => 'Hollis, OK', + 1580699 => 'Lawton, OK', + 1580726 => 'Hobart, OK', + 1580735 => 'Buffalo, OK', + 1580759 => 'Stratford, OK', + 1580762 => 'Ponca City, OK', + 1580765 => 'Ponca City, OK', + 1580767 => 'Ponca City, OK', + 1580772 => 'Weatherford, OK', + 1580774 => 'Weatherford, OK', + 1580782 => 'Mangum, OK', + 1580795 => 'Madill, OK', + 1580822 => 'Okeene, OK', + 1580824 => 'Waynoka, OK', + 1580832 => 'New Cordell, OK', + 1580856 => 'Ratliff City, OK', + 1580875 => 'Walters, OK', + 1580886 => 'Canton, OK', + 1580889 => 'Atoka, OK', + 1580920 => 'Durant, OK', + 1580921 => 'Laverne, OK', + 1580922 => 'Seiling, OK', + 1580924 => 'Durant, OK', + 1580925 => 'Konawa, OK', + 1580927 => 'Coalgate, OK', + 1580928 => 'Sayre, OK', + 1580931 => 'Durant, OK', + 1580933 => 'Valliant, OK', + 1580938 => 'Shattuck, OK', + 1580994 => 'Mooreland, OK', + 1585 => 'New York', + 1585218 => 'Pittsford, NY', + 1585223 => 'Fairport, NY', + 1585224 => 'Rochester, NY', + 1585225 => 'Rochester, NY', + 1585226 => 'Avon, NY', + 1585227 => 'Rochester, NY', + 1585229 => 'Honeoye, NY', + 1585232 => 'Rochester, NY', + 1585234 => 'Rochester, NY', + 1585235 => 'Rochester, NY', + 1585237 => 'Perry, NY', + 1585241 => 'Rochester, NY', + 1585242 => 'Rochester, NY', + 1585243 => 'Geneseo, NY', + 1585244 => 'Rochester, NY', + 1585247 => 'Rochester, NY', + 1585248 => 'Pittsford, NY', + 1585254 => 'Rochester, NY', + 1585256 => 'Rochester, NY', + 1585258 => 'Rochester, NY', + 1585262 => 'Rochester, NY', + 1585263 => 'Rochester, NY', + 1585265 => 'Webster, NY', + 1585266 => 'Rochester, NY', + 1585268 => 'Belmont, NY', + 1585270 => 'Rochester, NY', + 1585271 => 'Rochester, NY', + 1585272 => 'Rochester, NY', + 1585273 => 'Rochester, NY', + 1585275 => 'Rochester, NY', + 1585279 => 'Rochester, NY', + 1585288 => 'Rochester, NY', + 1585289 => 'Shortsville, NY', + 1585292 => 'Rochester, NY', + 1585293 => 'Churchville, NY', + 1585295 => 'Rochester, NY', + 1585319 => 'Rochester, NY', + 1585321 => 'Rochester, NY', + 1585325 => 'Rochester, NY', + 1585328 => 'Rochester, NY', + 1585335 => 'Dansville, NY', + 1585336 => 'Rochester, NY', + 1585338 => 'Rochester, NY', + 1585340 => 'Rochester, NY', + 1585341 => 'Rochester, NY', + 1585342 => 'Rochester, NY', + 1585343 => 'Batavia, NY', + 1585344 => 'Batavia, NY', + 1585345 => 'Batavia, NY', + 1585349 => 'Spencerport, NY', + 1585352 => 'Spencerport, NY', + 1585360 => 'Rochester, NY', + 1585368 => 'Rochester, NY', + 1585374 => 'Naples, NY', + 1585377 => 'Fairport, NY', + 1585388 => 'Fairport, NY', + 1585389 => 'Pittsford, NY', + 1585392 => 'Hilton, NY', + 1585393 => 'Canandaigua, NY', + 1585394 => 'Canandaigua, NY', + 1585395 => 'Brockport, NY', + 1585396 => 'Canandaigua, NY', + 1585398 => 'Farmington, NY', + 1585413 => 'Rochester, NY', + 1585421 => 'Fairport, NY', + 1585423 => 'Rochester, NY', + 1585424 => 'Rochester, NY', + 1585425 => 'Fairport, NY', + 1585426 => 'Rochester, NY', + 1585427 => 'Rochester, NY', + 1585428 => 'Rochester, NY', + 1585429 => 'Rochester, NY', + 1585436 => 'Rochester, NY', + 1585442 => 'Rochester, NY', + 1585453 => 'Rochester, NY', + 1585454 => 'Rochester, NY', + 1585458 => 'Rochester, NY', + 1585461 => 'Rochester, NY', + 1585467 => 'Rochester, NY', + 1585468 => 'Nunda, NY', + 1585473 => 'Rochester, NY', + 1585475 => 'Rochester, NY', + 1585482 => 'Rochester, NY', + 1585492 => 'Arcade, NY', + 1585494 => 'Bergen, NY', + 1585538 => 'Caledonia, NY', + 1585544 => 'Rochester, NY', + 1585546 => 'Rochester, NY', + 1585554 => 'Rushville, NY', + 1585563 => 'Rochester, NY', + 1585567 => 'Fillmore, NY', + 1585589 => 'Albion, NY', + 1585591 => 'Attica, NY', + 1585593 => 'Wellsville, NY', + 1585599 => 'Corfu, NY', + 1585621 => 'Rochester, NY', + 1585624 => 'Honeoye Falls, NY', + 1585637 => 'Brockport, NY', + 1585638 => 'Holley, NY', + 1585647 => 'Rochester, NY', + 1585654 => 'Rochester, NY', + 1585657 => 'Bloomfield, NY', + 1585658 => 'Mount Morris, NY', + 1585663 => 'Rochester, NY', + 1585671 => 'Webster, NY', + 1585697 => 'Rochester, NY', + 1585720 => 'Rochester, NY', + 1585723 => 'Rochester, NY', + 1585728 => 'Wayland, NY', + 1585730 => 'Rochester, NY', + 1585742 => 'Victor, NY', + 1585753 => 'Rochester, NY', + 1585760 => 'Rochester, NY', + 1585768 => 'Le Roy, NY', + 1585786 => 'Warsaw, NY', + 1585787 => 'Webster, NY', + 1585798 => 'Medina, NY', + 1585865 => 'Rochester, NY', + 1585872 => 'Webster, NY', + 1585889 => 'Rochester, NY', + 1585922 => 'Rochester, NY', + 1585924 => 'Victor, NY', + 1585948 => 'Oakfield, NY', + 1585964 => 'Hamlin, NY', + 1585968 => 'Cuba, NY', + 1586 => 'Michigan', + 1586263 => 'Clinton Twp, MI', + 1586264 => 'Sterling Heights, MI', + 1586268 => 'Sterling Heights, MI', + 1586274 => 'Sterling Heights, MI', + 1586286 => 'Clinton Twp, MI', + 1586427 => 'Warren, MI', + 1586446 => 'Sterling Heights, MI', + 1586493 => 'Mount Clemens, MI', + 1586498 => 'Saint Clair Shores, MI', + 1586558 => 'Warren, MI', + 1586573 => 'Warren, MI', + 1586574 => 'Warren, MI', + 1586576 => 'Warren, MI', + 1586582 => 'Warren, MI', + 1586598 => 'Chesterfield, MI', + 1586727 => 'Richmond, MI', + 1586751 => 'Warren, MI', + 1586754 => 'Warren, MI', + 1586755 => 'Warren, MI', + 1586756 => 'Warren, MI', + 1586757 => 'Warren, MI', + 1586758 => 'Warren, MI', + 1586759 => 'Warren, MI', + 1586784 => 'Armada, MI', + 1586790 => 'Clinton Twp, MI', + 1586791 => 'Clinton Twp, MI', + 1586792 => 'Clinton Twp, MI', + 1586795 => 'Sterling Heights, MI', + 1586806 => 'Warren, MI', + 1586939 => 'Sterling Heights, MI', + 1586948 => 'Chesterfield, MI', + 1586949 => 'Chesterfield, MI', + 1586977 => 'Sterling Heights, MI', + 1586978 => 'Sterling Heights, MI', + 1586979 => 'Sterling Heights, MI', + 1587 => 'Alberta', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1501.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1501.php deleted file mode 100644 index dbdcb05ff..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1501.php +++ /dev/null @@ -1,136 +0,0 @@ - 'Arkansas', - 1501202 => 'Little Rock, AR', - 1501205 => 'Conway, AR', - 1501206 => 'Heber Springs, AR', - 1501217 => 'Little Rock, AR', - 1501219 => 'Little Rock, AR', - 1501221 => 'Little Rock, AR', - 1501223 => 'Little Rock, AR', - 1501224 => 'Little Rock, AR', - 1501225 => 'Little Rock, AR', - 1501227 => 'Little Rock, AR', - 1501228 => 'Little Rock, AR', - 1501244 => 'Little Rock, AR', - 1501246 => 'Little Rock, AR', - 1501255 => 'Little Rock, AR', - 1501257 => 'Little Rock, AR', - 1501262 => 'Hot Springs, AR', - 1501268 => 'Searcy, AR', - 1501278 => 'Searcy, AR', - 1501279 => 'Searcy, AR', - 1501280 => 'Little Rock, AR', - 1501296 => 'Little Rock, AR', - 1501305 => 'Searcy, AR', - 1501312 => 'Little Rock, AR', - 1501315 => 'Benton, AR', - 1501316 => 'Benton, AR', - 1501318 => 'Hot Springs, AR', - 1501321 => 'Hot Springs, AR', - 1501324 => 'Little Rock, AR', - 1501327 => 'Conway, AR', - 1501328 => 'Conway, AR', - 1501329 => 'Conway, AR', - 1501332 => 'Malvern, AR', - 1501336 => 'Conway, AR', - 1501337 => 'Malvern, AR', - 1501340 => 'Little Rock, AR', - 1501353 => 'Little Rock, AR', - 1501354 => 'Morrilton, AR', - 1501362 => 'Heber Springs, AR', - 1501364 => 'Little Rock, AR', - 1501368 => 'Searcy, AR', - 1501370 => 'Little Rock, AR', - 1501371 => 'Little Rock, AR', - 1501372 => 'Little Rock, AR', - 1501374 => 'Little Rock, AR', - 1501375 => 'Little Rock, AR', - 1501376 => 'Little Rock, AR', - 1501379 => 'Little Rock, AR', - 1501397 => 'Redfield, AR', - 1501450 => 'Conway, AR', - 1501455 => 'Little Rock, AR', - 1501470 => 'Mayflower, AR', - 1501490 => 'Little Rock, AR', - 1501513 => 'Conway, AR', - 1501520 => 'Hot Springs, AR', - 1501525 => 'Hot Springs, AR', - 1501526 => 'Little Rock, AR', - 1501537 => 'Little Rock, AR', - 1501552 => 'Little Rock, AR', - 1501556 => 'Rose Bud, AR', - 1501562 => 'Little Rock, AR', - 1501565 => 'Little Rock, AR', - 1501568 => 'Little Rock, AR', - 1501570 => 'Little Rock, AR', - 1501588 => 'Little Rock, AR', - 1501589 => 'Quitman, AR', - 1501603 => 'Little Rock, AR', - 1501604 => 'Little Rock, AR', - 1501605 => 'Cabot, AR', - 1501609 => 'Hot Springs, AR', - 1501614 => 'Little Rock, AR', - 1501620 => 'Hot Springs, AR', - 1501622 => 'Hot Springs, AR', - 1501623 => 'Hot Springs, AR', - 1501624 => 'Hot Springs, AR', - 1501625 => 'Hot Springs, AR', - 1501653 => 'Bryant, AR', - 1501661 => 'Little Rock, AR', - 1501663 => 'Little Rock, AR', - 1501664 => 'Little Rock, AR', - 1501666 => 'Little Rock, AR', - 1501676 => 'Lonoke, AR', - 1501679 => 'Greenbrier, AR', - 1501682 => 'Little Rock, AR', - 1501686 => 'Little Rock, AR', - 1501687 => 'Little Rock, AR', - 1501724 => 'Bald Knob, AR', - 1501729 => 'Judsonia, AR', - 1501745 => 'Clinton, AR', - 1501753 => 'N Little Rock, AR', - 1501758 => 'N Little Rock, AR', - 1501760 => 'Hot Springs, AR', - 1501764 => 'Conway, AR', - 1501767 => 'Hot Springs, AR', - 1501771 => 'N Little Rock, AR', - 1501776 => 'Benton, AR', - 1501778 => 'Benton, AR', - 1501791 => 'N Little Rock, AR', - 1501794 => 'Benton, AR', - 1501796 => 'Vilonia, AR', - 1501803 => 'Maumelle, AR', - 1501821 => 'Little Rock, AR', - 1501833 => 'Sherwood, AR', - 1501834 => 'Sherwood, AR', - 1501835 => 'Sherwood, AR', - 1501842 => 'England, AR', - 1501843 => 'Cabot, AR', - 1501847 => 'Bryant, AR', - 1501860 => 'Benton, AR', - 1501865 => 'Bismarck, AR', - 1501868 => 'Little Rock, AR', - 1501882 => 'Beebe, AR', - 1501884 => 'Fairfield Bay, AR', - 1501888 => 'Little Rock, AR', - 1501889 => 'Perryville, AR', - 1501907 => 'Little Rock, AR', - 1501916 => 'Little Rock, AR', - 1501932 => 'Conway, AR', - 1501941 => 'Cabot, AR', - 1501945 => 'N Little Rock, AR', - 1501954 => 'Little Rock, AR', - 1501955 => 'N Little Rock, AR', - 1501961 => 'Scott, AR', - 1501975 => 'Little Rock, AR', - 1501977 => 'Morrilton, AR', - 1501978 => 'Little Rock, AR', - 1501982 => 'Jacksonville, AR', - 1501985 => 'Jacksonville, AR', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1502.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1502.php deleted file mode 100644 index 95e09d3b8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1502.php +++ /dev/null @@ -1,151 +0,0 @@ - 'Kentucky', - 1502212 => 'Louisville, KY', - 1502222 => 'La Grange, KY', - 1502223 => 'Frankfort, KY', - 1502225 => 'La Grange, KY', - 1502226 => 'Frankfort, KY', - 1502227 => 'Frankfort, KY', - 1502228 => 'Prospect, KY', - 1502231 => 'Louisville, KY', - 1502239 => 'Louisville, KY', - 1502240 => 'Louisville, KY', - 1502241 => 'Crestwood, KY', - 1502244 => 'Louisville, KY', - 1502245 => 'Louisville, KY', - 1502252 => 'Bloomfield, KY', - 1502253 => 'Louisville, KY', - 1502254 => 'Louisville, KY', - 1502255 => 'Bedford, KY', - 1502259 => 'Louisville, KY', - 1502261 => 'Louisville, KY', - 1502266 => 'Louisville, KY', - 1502267 => 'Louisville, KY', - 1502271 => 'Louisville, KY', - 1502287 => 'Louisville, KY', - 1502290 => 'Louisville, KY', - 1502292 => 'Prospect, KY', - 1502297 => 'Louisville, KY', - 1502326 => 'Louisville, KY', - 1502327 => 'Louisville, KY', - 1502331 => 'Bardstown, KY', - 1502339 => 'Louisville, KY', - 1502348 => 'Bardstown, KY', - 1502349 => 'Bardstown, KY', - 1502350 => 'Bardstown, KY', - 1502352 => 'Frankfort, KY', - 1502361 => 'Louisville, KY', - 1502363 => 'Louisville, KY', - 1502364 => 'Louisville, KY', - 1502365 => 'Louisville, KY', - 1502366 => 'Louisville, KY', - 1502367 => 'Louisville, KY', - 1502368 => 'Louisville, KY', - 1502375 => 'Louisville, KY', - 1502384 => 'Louisville, KY', - 1502394 => 'Louisville, KY', - 1502409 => 'Louisville, KY', - 1502410 => 'Louisville, KY', - 1502412 => 'Louisville, KY', - 1502423 => 'Louisville, KY', - 1502425 => 'Louisville, KY', - 1502426 => 'Louisville, KY', - 1502429 => 'Louisville, KY', - 1502447 => 'Louisville, KY', - 1502448 => 'Louisville, KY', - 1502449 => 'Louisville, KY', - 1502451 => 'Louisville, KY', - 1502452 => 'Louisville, KY', - 1502454 => 'Louisville, KY', - 1502456 => 'Louisville, KY', - 1502458 => 'Louisville, KY', - 1502459 => 'Louisville, KY', - 1502473 => 'Louisville, KY', - 1502477 => 'Taylorsville, KY', - 1502479 => 'Louisville, KY', - 1502484 => 'Owenton, KY', - 1502485 => 'Louisville, KY', - 1502489 => 'Louisville, KY', - 1502491 => 'Louisville, KY', - 1502493 => 'Louisville, KY', - 1502495 => 'Louisville, KY', - 1502499 => 'Louisville, KY', - 1502538 => 'Mount Washington, KY', - 1502540 => 'Louisville, KY', - 1502543 => 'Shepherdsville, KY', - 1502549 => 'New Haven, KY', - 1502561 => 'Louisville, KY', - 1502562 => 'Louisville, KY', - 1502564 => 'Frankfort, KY', - 1502568 => 'Louisville, KY', - 1502569 => 'Louisville, KY', - 1502570 => 'Georgetown, KY', - 1502574 => 'Louisville, KY', - 1502581 => 'Louisville, KY', - 1502582 => 'Louisville, KY', - 1502583 => 'Louisville, KY', - 1502584 => 'Louisville, KY', - 1502585 => 'Louisville, KY', - 1502587 => 'Louisville, KY', - 1502589 => 'Louisville, KY', - 1502595 => 'Louisville, KY', - 1502614 => 'Louisville, KY', - 1502618 => 'Louisville, KY', - 1502624 => 'Fort Knox, KY', - 1502625 => 'Louisville, KY', - 1502629 => 'Louisville, KY', - 1502632 => 'Louisville, KY', - 1502633 => 'Shelbyville, KY', - 1502634 => 'Louisville, KY', - 1502635 => 'Louisville, KY', - 1502636 => 'Louisville, KY', - 1502637 => 'Louisville, KY', - 1502647 => 'Shelbyville, KY', - 1502671 => 'Louisville, KY', - 1502690 => 'Louisville, KY', - 1502695 => 'Frankfort, KY', - 1502708 => 'Louisville, KY', - 1502721 => 'Louisville, KY', - 1502722 => 'Simpsonville, KY', - 1502732 => 'Carrollton, KY', - 1502742 => 'Louisville, KY', - 1502749 => 'Louisville, KY', - 1502772 => 'Louisville, KY', - 1502774 => 'Louisville, KY', - 1502775 => 'Louisville, KY', - 1502776 => 'Louisville, KY', - 1502778 => 'Louisville, KY', - 1502813 => 'Louisville, KY', - 1502839 => 'Lawrenceburg, KY', - 1502852 => 'Louisville, KY', - 1502859 => 'Lawrenceburg, KY', - 1502863 => 'Georgetown, KY', - 1502867 => 'Georgetown, KY', - 1502868 => 'Georgetown, KY', - 1502875 => 'Frankfort, KY', - 1502891 => 'Louisville, KY', - 1502893 => 'Louisville, KY', - 1502894 => 'Louisville, KY', - 1502895 => 'Louisville, KY', - 1502896 => 'Louisville, KY', - 1502897 => 'Louisville, KY', - 1502899 => 'Louisville, KY', - 1502921 => 'Shepherdsville, KY', - 1502933 => 'Louisville, KY', - 1502935 => 'Louisville, KY', - 1502937 => 'Louisville, KY', - 1502942 => 'Fort Knox, KY', - 1502961 => 'Louisville, KY', - 1502962 => 'Louisville, KY', - 1502964 => 'Louisville, KY', - 1502966 => 'Louisville, KY', - 1502968 => 'Louisville, KY', - 1502969 => 'Louisville, KY', - 1502995 => 'Louisville, KY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1503.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1503.php deleted file mode 100644 index 0fdeae931..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1503.php +++ /dev/null @@ -1,248 +0,0 @@ - 'Oregon', - 1503203 => 'Portland, OR', - 1503206 => 'Portland, OR', - 1503208 => 'Portland, OR', - 1503215 => 'Portland, OR', - 1503216 => 'Portland, OR', - 1503220 => 'Portland, OR', - 1503221 => 'Portland, OR', - 1503222 => 'Portland, OR', - 1503223 => 'Portland, OR', - 1503224 => 'Portland, OR', - 1503225 => 'Portland, OR', - 1503226 => 'Portland, OR', - 1503227 => 'Portland, OR', - 1503228 => 'Portland, OR', - 1503229 => 'Portland, OR', - 1503230 => 'Portland, OR', - 1503231 => 'Portland, OR', - 1503232 => 'Portland, OR', - 1503233 => 'Portland, OR', - 1503234 => 'Portland, OR', - 1503235 => 'Portland, OR', - 1503236 => 'Portland, OR', - 1503238 => 'Portland, OR', - 1503239 => 'Portland, OR', - 1503240 => 'Portland, OR', - 1503241 => 'Portland, OR', - 1503242 => 'Portland, OR', - 1503243 => 'Portland, OR', - 1503244 => 'Portland, OR', - 1503245 => 'Portland, OR', - 1503246 => 'Portland, OR', - 1503247 => 'Portland, OR', - 1503248 => 'Portland, OR', - 1503249 => 'Portland, OR', - 1503251 => 'Portland, OR', - 1503252 => 'Portland, OR', - 1503253 => 'Portland, OR', - 1503254 => 'Portland, OR', - 1503255 => 'Portland, OR', - 1503256 => 'Portland, OR', - 1503257 => 'Portland, OR', - 1503258 => 'Portland, OR', - 1503259 => 'Beaverton, OR', - 1503261 => 'Portland, OR', - 1503262 => 'Portland, OR', - 1503263 => 'Canby, OR', - 1503266 => 'Canby, OR', - 1503274 => 'Portland, OR', - 1503278 => 'Portland, OR', - 1503280 => 'Portland, OR', - 1503281 => 'Portland, OR', - 1503282 => 'Portland, OR', - 1503283 => 'Portland, OR', - 1503284 => 'Portland, OR', - 1503285 => 'Portland, OR', - 1503286 => 'Portland, OR', - 1503287 => 'Portland, OR', - 1503288 => 'Portland, OR', - 1503289 => 'Portland, OR', - 1503291 => 'Portland, OR', - 1503292 => 'Portland, OR', - 1503293 => 'Portland, OR', - 1503294 => 'Portland, OR', - 1503295 => 'Portland, OR', - 1503296 => 'Portland, OR', - 1503297 => 'Portland, OR', - 1503299 => 'Portland, OR', - 1503316 => 'Salem, OR', - 1503324 => 'Banks, OR', - 1503325 => 'Astoria, OR', - 1503331 => 'Portland, OR', - 1503335 => 'Portland, OR', - 1503338 => 'Astoria, OR', - 1503355 => 'Rockaway Beach, OR', - 1503357 => 'Forest Grove, OR', - 1503359 => 'Forest Grove, OR', - 1503361 => 'Salem, OR', - 1503362 => 'Salem, OR', - 1503363 => 'Salem, OR', - 1503364 => 'Salem, OR', - 1503365 => 'Salem, OR', - 1503366 => 'St. Helens, OR', - 1503368 => 'Nehalem, OR', - 1503370 => 'Salem, OR', - 1503371 => 'Salem, OR', - 1503375 => 'Salem, OR', - 1503378 => 'Salem, OR', - 1503384 => 'Portland, OR', - 1503385 => 'Salem, OR', - 1503388 => 'Portland, OR', - 1503391 => 'Salem, OR', - 1503394 => 'Scio, OR', - 1503397 => 'St. Helens, OR', - 1503399 => 'Salem, OR', - 1503408 => 'Portland, OR', - 1503413 => 'Portland, OR', - 1503418 => 'Portland, OR', - 1503429 => 'Vernonia, OR', - 1503434 => 'McMinnville, OR', - 1503435 => 'McMinnville, OR', - 1503436 => 'Cannon Beach, OR', - 1503445 => 'Portland, OR', - 1503452 => 'Portland, OR', - 1503459 => 'Portland, OR', - 1503460 => 'Portland, OR', - 1503463 => 'Keizer, OR', - 1503467 => 'Portland, OR', - 1503469 => 'Beaverton, OR', - 1503472 => 'McMinnville, OR', - 1503473 => 'Portland, OR', - 1503474 => 'McMinnville, OR', - 1503477 => 'Portland, OR', - 1503485 => 'Salem, OR', - 1503492 => 'Gresham, OR', - 1503493 => 'Portland, OR', - 1503494 => 'Portland, OR', - 1503505 => 'Portland, OR', - 1503517 => 'Portland, OR', - 1503520 => 'Beaverton, OR', - 1503524 => 'Beaverton, OR', - 1503525 => 'Portland, OR', - 1503526 => 'Beaverton, OR', - 1503528 => 'Portland, OR', - 1503534 => 'Lake Oswego, OR', - 1503535 => 'Portland, OR', - 1503537 => 'Newberg, OR', - 1503538 => 'Newberg, OR', - 1503540 => 'Salem, OR', - 1503543 => 'Scappoose, OR', - 1503546 => 'Portland, OR', - 1503547 => 'Hillsboro, OR', - 1503548 => 'Portland, OR', - 1503554 => 'Newberg, OR', - 1503556 => 'Rainier, OR', - 1503561 => 'Salem, OR', - 1503566 => 'Salem, OR', - 1503570 => 'Wilsonville, OR', - 1503571 => 'Clackamas, OR', - 1503574 => 'Beaverton, OR', - 1503581 => 'Salem, OR', - 1503582 => 'Wilsonville, OR', - 1503585 => 'Salem, OR', - 1503588 => 'Salem, OR', - 1503589 => 'Salem, OR', - 1503595 => 'Portland, OR', - 1503612 => 'Tualatin, OR', - 1503615 => 'Hillsboro, OR', - 1503618 => 'Gresham, OR', - 1503621 => 'Portland, OR', - 1503623 => 'Dallas, OR', - 1503625 => 'Sherwood, OR', - 1503626 => 'Beaverton, OR', - 1503628 => 'Hillsboro, OR', - 1503630 => 'Estacada, OR', - 1503631 => 'Oregon City, OR', - 1503635 => 'Lake Oswego, OR', - 1503636 => 'Lake Oswego, OR', - 1503640 => 'Hillsboro, OR', - 1503641 => 'Beaverton, OR', - 1503643 => 'Beaverton, OR', - 1503644 => 'Beaverton, OR', - 1503646 => 'Beaverton, OR', - 1503647 => 'North Plains, OR', - 1503648 => 'Hillsboro, OR', - 1503651 => 'Canby, OR', - 1503652 => 'Clackamas, OR', - 1503658 => 'Damascus, OR', - 1503661 => 'Gresham, OR', - 1503662 => 'Yamhill, OR', - 1503663 => 'Boring, OR', - 1503665 => 'Gresham, OR', - 1503666 => 'Gresham, OR', - 1503668 => 'Sandy, OR', - 1503674 => 'Gresham, OR', - 1503675 => 'Lake Oswego, OR', - 1503678 => 'Aurora, OR', - 1503681 => 'Hillsboro, OR', - 1503682 => 'Wilsonville, OR', - 1503691 => 'Tualatin, OR', - 1503692 => 'Tualatin, OR', - 1503693 => 'Hillsboro, OR', - 1503695 => 'Corbett, OR', - 1503697 => 'Lake Oswego, OR', - 1503698 => 'Clackamas, OR', - 1503699 => 'Lake Oswego, OR', - 1503717 => 'Seaside, OR', - 1503719 => 'Portland, OR', - 1503728 => 'Clatskanie, OR', - 1503738 => 'Seaside, OR', - 1503749 => 'Aumsville, OR', - 1503760 => 'Portland, OR', - 1503761 => 'Portland, OR', - 1503762 => 'Portland, OR', - 1503763 => 'Salem, OR', - 1503764 => 'Portland, OR', - 1503769 => 'Stayton, OR', - 1503771 => 'Portland, OR', - 1503772 => 'Portland, OR', - 1503774 => 'Portland, OR', - 1503775 => 'Portland, OR', - 1503777 => 'Portland, OR', - 1503788 => 'Portland, OR', - 1503792 => 'Gervais, OR', - 1503808 => 'Portland, OR', - 1503813 => 'Portland, OR', - 1503823 => 'Portland, OR', - 1503829 => 'Molalla, OR', - 1503831 => 'Dallas, OR', - 1503835 => 'Amity, OR', - 1503841 => 'Portland, OR', - 1503842 => 'Tillamook, OR', - 1503843 => 'Sheridan, OR', - 1503844 => 'Hillsboro, OR', - 1503845 => 'Mount Angel, OR', - 1503846 => 'Hillsboro, OR', - 1503852 => 'Carlton, OR', - 1503859 => 'Lyons, OR', - 1503861 => 'Warrenton, OR', - 1503864 => 'Dayton, OR', - 1503873 => 'Silverton, OR', - 1503885 => 'Tualatin, OR', - 1503892 => 'Portland, OR', - 1503894 => 'Portland, OR', - 1503897 => 'Mill City, OR', - 1503916 => 'Portland, OR', - 1503925 => 'Sherwood, OR', - 1503943 => 'Portland, OR', - 1503945 => 'Salem, OR', - 1503946 => 'Portland, OR', - 1503954 => 'Portland, OR', - 1503963 => 'Portland, OR', - 1503965 => 'Pacific City, OR', - 1503972 => 'Portland, OR', - 1503977 => 'Portland, OR', - 1503981 => 'Woodburn, OR', - 1503982 => 'Woodburn, OR', - 1503985 => 'Gaston, OR', - 1503988 => 'Portland, OR', - 1503990 => 'Salem, OR', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1504.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1504.php deleted file mode 100644 index 3d6b9a8c2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1504.php +++ /dev/null @@ -1,121 +0,0 @@ - 'Louisiana', - 1504218 => 'New Orleans, LA', - 1504241 => 'New Orleans, LA', - 1504242 => 'New Orleans, LA', - 1504244 => 'New Orleans, LA', - 1504245 => 'New Orleans, LA', - 1504246 => 'New Orleans, LA', - 1504254 => 'New Orleans, LA', - 1504271 => 'Chalmette, LA', - 1504277 => 'Chalmette, LA', - 1504278 => 'Chalmette, LA', - 1504279 => 'Chalmette, LA', - 1504282 => 'New Orleans, LA', - 1504283 => 'New Orleans, LA', - 1504288 => 'New Orleans, LA', - 1504299 => 'New Orleans, LA', - 1504301 => 'New Orleans, LA', - 1504302 => 'New Orleans, LA', - 1504304 => 'New Orleans, LA', - 1504305 => 'Kenner, LA', - 1504310 => 'New Orleans, LA', - 1504322 => 'New Orleans, LA', - 1504328 => 'Marrero, LA', - 1504340 => 'Marrero, LA', - 1504341 => 'Marrero, LA', - 1504347 => 'Marrero, LA', - 1504348 => 'Marrero, LA', - 1504349 => 'Marrero, LA', - 1504373 => 'New Orleans, LA', - 1504412 => 'New Orleans, LA', - 1504436 => 'Westwego, LA', - 1504443 => 'Kenner, LA', - 1504454 => 'Metairie, LA', - 1504455 => 'Metairie, LA', - 1504456 => 'Metairie, LA', - 1504457 => 'Metairie, LA', - 1504461 => 'Kenner, LA', - 1504464 => 'Kenner, LA', - 1504465 => 'Kenner, LA', - 1504466 => 'Kenner, LA', - 1504467 => 'Kenner, LA', - 1504468 => 'Kenner, LA', - 1504469 => 'Kenner, LA', - 1504471 => 'Kenner, LA', - 1504482 => 'New Orleans, LA', - 1504483 => 'New Orleans, LA', - 1504486 => 'New Orleans, LA', - 1504488 => 'New Orleans, LA', - 1504522 => 'New Orleans, LA', - 1504523 => 'New Orleans, LA', - 1504524 => 'New Orleans, LA', - 1504525 => 'New Orleans, LA', - 1504528 => 'New Orleans, LA', - 1504529 => 'New Orleans, LA', - 1504534 => 'Venice, LA', - 1504561 => 'New Orleans, LA', - 1504566 => 'New Orleans, LA', - 1504568 => 'New Orleans, LA', - 1504569 => 'New Orleans, LA', - 1504581 => 'New Orleans, LA', - 1504582 => 'New Orleans, LA', - 1504585 => 'New Orleans, LA', - 1504586 => 'New Orleans, LA', - 1504588 => 'New Orleans, LA', - 1504589 => 'New Orleans, LA', - 1504599 => 'New Orleans, LA', - 1504656 => 'Belle Chasse, LA', - 1504658 => 'New Orleans, LA', - 1504689 => 'Lafitte, LA', - 1504712 => 'Kenner, LA', - 1504733 => 'New Orleans, LA', - 1504734 => 'New Orleans, LA', - 1504779 => 'Metairie, LA', - 1504780 => 'Metairie, LA', - 1504818 => 'New Orleans, LA', - 1504821 => 'New Orleans, LA', - 1504822 => 'New Orleans, LA', - 1504827 => 'New Orleans, LA', - 1504828 => 'Metairie, LA', - 1504831 => 'Metairie, LA', - 1504832 => 'Metairie, LA', - 1504833 => 'Metairie, LA', - 1504834 => 'Metairie, LA', - 1504835 => 'Metairie, LA', - 1504836 => 'Metairie, LA', - 1504837 => 'Metairie, LA', - 1504838 => 'Metairie, LA', - 1504842 => 'Jefferson, LA', - 1504861 => 'New Orleans, LA', - 1504865 => 'New Orleans, LA', - 1504866 => 'New Orleans, LA', - 1504883 => 'Metairie, LA', - 1504885 => 'Metairie, LA', - 1504887 => 'Metairie, LA', - 1504888 => 'Metairie, LA', - 1504889 => 'Metairie, LA', - 1504891 => 'New Orleans, LA', - 1504894 => 'New Orleans, LA', - 1504895 => 'New Orleans, LA', - 1504896 => 'New Orleans, LA', - 1504897 => 'New Orleans, LA', - 1504899 => 'New Orleans, LA', - 1504903 => 'New Orleans, LA', - 1504940 => 'New Orleans, LA', - 1504941 => 'New Orleans, LA', - 1504942 => 'New Orleans, LA', - 1504943 => 'New Orleans, LA', - 1504944 => 'New Orleans, LA', - 1504945 => 'New Orleans, LA', - 1504947 => 'New Orleans, LA', - 1504948 => 'New Orleans, LA', - 1504949 => 'New Orleans, LA', - 1504988 => 'New Orleans, LA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1505.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1505.php deleted file mode 100644 index dc8c9c128..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1505.php +++ /dev/null @@ -1,217 +0,0 @@ - 'New Mexico', - 1505203 => 'Albuquerque, NM', - 1505216 => 'Santa Fe, NM', - 1505217 => 'Albuquerque, NM', - 1505220 => 'Albuquerque, NM', - 1505224 => 'Albuquerque, NM', - 1505228 => 'Albuquerque, NM', - 1505232 => 'Albuquerque, NM', - 1505235 => 'Albuquerque, NM', - 1505237 => 'Albuquerque, NM', - 1505238 => 'Albuquerque, NM', - 1505239 => 'Albuquerque, NM', - 1505242 => 'Albuquerque, NM', - 1505243 => 'Albuquerque, NM', - 1505244 => 'Albuquerque, NM', - 1505246 => 'Albuquerque, NM', - 1505247 => 'Albuquerque, NM', - 1505248 => 'Albuquerque, NM', - 1505249 => 'Albuquerque, NM', - 1505250 => 'Albuquerque, NM', - 1505254 => 'Albuquerque, NM', - 1505255 => 'Albuquerque, NM', - 1505256 => 'Albuquerque, NM', - 1505259 => 'Albuquerque, NM', - 1505260 => 'Albuquerque, NM', - 1505261 => 'Albuquerque, NM', - 1505262 => 'Albuquerque, NM', - 1505263 => 'Albuquerque, NM', - 1505265 => 'Albuquerque, NM', - 1505266 => 'Albuquerque, NM', - 1505268 => 'Albuquerque, NM', - 1505269 => 'Albuquerque, NM', - 1505271 => 'Albuquerque, NM', - 1505272 => 'Albuquerque, NM', - 1505275 => 'Albuquerque, NM', - 1505277 => 'Albuquerque, NM', - 1505280 => 'Albuquerque, NM', - 1505285 => 'Grants, NM', - 1505287 => 'Grants, NM', - 1505291 => 'Albuquerque, NM', - 1505292 => 'Albuquerque, NM', - 1505293 => 'Albuquerque, NM', - 1505294 => 'Albuquerque, NM', - 1505296 => 'Albuquerque, NM', - 1505298 => 'Albuquerque, NM', - 1505299 => 'Albuquerque, NM', - 1505304 => 'Albuquerque, NM', - 1505312 => 'Albuquerque, NM', - 1505314 => 'Albuquerque, NM', - 1505315 => 'Albuquerque, NM', - 1505319 => 'Albuquerque, NM', - 1505320 => 'Farmington, NM', - 1505321 => 'Albuquerque, NM', - 1505323 => 'Albuquerque, NM', - 1505324 => 'Farmington, NM', - 1505325 => 'Farmington, NM', - 1505326 => 'Farmington, NM', - 1505327 => 'Farmington, NM', - 1505332 => 'Albuquerque, NM', - 1505334 => 'Aztec, NM', - 1505338 => 'Albuquerque, NM', - 1505341 => 'Albuquerque, NM', - 1505342 => 'Albuquerque, NM', - 1505343 => 'Albuquerque, NM', - 1505344 => 'Albuquerque, NM', - 1505345 => 'Albuquerque, NM', - 1505346 => 'Albuquerque, NM', - 1505350 => 'Albuquerque, NM', - 1505352 => 'Albuquerque, NM', - 1505363 => 'Albuquerque, NM', - 1505368 => 'Shiprock, NM', - 1505369 => 'Albuquerque, NM', - 1505379 => 'Albuquerque, NM', - 1505384 => 'Estancia, NM', - 1505385 => 'Albuquerque, NM', - 1505400 => 'Albuquerque, NM', - 1505401 => 'Albuquerque, NM', - 1505417 => 'Albuquerque, NM', - 1505424 => 'Santa Fe, NM', - 1505425 => 'Las Vegas, NM', - 1505426 => 'Las Vegas, NM', - 1505428 => 'Santa Fe, NM', - 1505433 => 'Albuquerque, NM', - 1505438 => 'Santa Fe, NM', - 1505440 => 'Albuquerque, NM', - 1505450 => 'Albuquerque, NM', - 1505452 => 'Albuquerque, NM', - 1505453 => 'Albuquerque, NM', - 1505454 => 'Las Vegas, NM', - 1505455 => 'Santa Fe, NM', - 1505459 => 'Albuquerque, NM', - 1505463 => 'Albuquerque, NM', - 1505466 => 'Santa Fe, NM', - 1505467 => 'Santa Fe, NM', - 1505470 => 'Santa Fe, NM', - 1505471 => 'Santa Fe, NM', - 1505473 => 'Santa Fe, NM', - 1505474 => 'Santa Fe, NM', - 1505476 => 'Santa Fe, NM', - 1505480 => 'Albuquerque, NM', - 1505489 => 'Albuquerque, NM', - 1505503 => 'Albuquerque, NM', - 1505507 => 'Albuquerque, NM', - 1505508 => 'Albuquerque, NM', - 1505550 => 'Albuquerque, NM', - 1505553 => 'Albuquerque, NM', - 1505554 => 'Albuquerque, NM', - 1505563 => 'Albuquerque, NM', - 1505564 => 'Farmington, NM', - 1505565 => 'Los Lunas, NM', - 1505577 => 'Santa Fe, NM', - 1505598 => 'Kirtland, NM', - 1505599 => 'Farmington, NM', - 1505609 => 'Farmington, NM', - 1505610 => 'Albuquerque, NM', - 1505615 => 'Albuquerque, NM', - 1505620 => 'Albuquerque, NM', - 1505629 => 'Santa Fe, NM', - 1505632 => 'Bloomfield, NM', - 1505660 => 'Santa Fe, NM', - 1505661 => 'Los Alamos, NM', - 1505662 => 'Los Alamos, NM', - 1505670 => 'Santa Fe, NM', - 1505672 => 'Los Alamos, NM', - 1505681 => 'Albuquerque, NM', - 1505690 => 'Santa Fe, NM', - 1505699 => 'Santa Fe, NM', - 1505710 => 'Albuquerque, NM', - 1505715 => 'Albuquerque, NM', - 1505717 => 'Albuquerque, NM', - 1505720 => 'Albuquerque, NM', - 1505722 => 'Gallup, NM', - 1505724 => 'Albuquerque, NM', - 1505726 => 'Gallup, NM', - 1505727 => 'Albuquerque, NM', - 1505730 => 'Albuquerque, NM', - 1505747 => 'Espanola, NM', - 1505753 => 'Espanola, NM', - 1505757 => 'Pecos, NM', - 1505764 => 'Albuquerque, NM', - 1505766 => 'Albuquerque, NM', - 1505768 => 'Albuquerque, NM', - 1505782 => 'Zuni, NM', - 1505786 => 'Crownpoint, NM', - 1505792 => 'Albuquerque, NM', - 1505795 => 'Santa Fe, NM', - 1505796 => 'Albuquerque, NM', - 1505797 => 'Albuquerque, NM', - 1505798 => 'Albuquerque, NM', - 1505804 => 'Albuquerque, NM', - 1505820 => 'Santa Fe, NM', - 1505821 => 'Albuquerque, NM', - 1505822 => 'Albuquerque, NM', - 1505823 => 'Albuquerque, NM', - 1505827 => 'Santa Fe, NM', - 1505828 => 'Albuquerque, NM', - 1505830 => 'Albuquerque, NM', - 1505831 => 'Albuquerque, NM', - 1505832 => 'Moriarty, NM', - 1505833 => 'Albuquerque, NM', - 1505836 => 'Albuquerque, NM', - 1505837 => 'Albuquerque, NM', - 1505839 => 'Albuquerque, NM', - 1505841 => 'Albuquerque, NM', - 1505842 => 'Albuquerque, NM', - 1505843 => 'Albuquerque, NM', - 1505847 => 'Mountainair, NM', - 1505848 => 'Albuquerque, NM', - 1505856 => 'Albuquerque, NM', - 1505857 => 'Albuquerque, NM', - 1505858 => 'Albuquerque, NM', - 1505861 => 'Belen, NM', - 1505863 => 'Gallup, NM', - 1505864 => 'Belen, NM', - 1505865 => 'Los Lunas, NM', - 1505866 => 'Los Lunas, NM', - 1505867 => 'Bernalillo, NM', - 1505869 => 'Bosque Farms, NM', - 1505872 => 'Albuquerque, NM', - 1505873 => 'Albuquerque, NM', - 1505877 => 'Albuquerque, NM', - 1505880 => 'Albuquerque, NM', - 1505881 => 'Albuquerque, NM', - 1505883 => 'Albuquerque, NM', - 1505884 => 'Albuquerque, NM', - 1505888 => 'Albuquerque, NM', - 1505889 => 'Albuquerque, NM', - 1505890 => 'Albuquerque, NM', - 1505891 => 'Rio Rancho, NM', - 1505892 => 'Rio Rancho, NM', - 1505896 => 'Rio Rancho, NM', - 1505897 => 'Albuquerque, NM', - 1505898 => 'Albuquerque, NM', - 1505899 => 'Albuquerque, NM', - 1505920 => 'Santa Fe, NM', - 1505922 => 'Albuquerque, NM', - 1505954 => 'Santa Fe, NM', - 1505955 => 'Santa Fe, NM', - 1505980 => 'Albuquerque, NM', - 1505982 => 'Santa Fe, NM', - 1505983 => 'Santa Fe, NM', - 1505984 => 'Santa Fe, NM', - 1505986 => 'Santa Fe, NM', - 1505988 => 'Santa Fe, NM', - 1505989 => 'Santa Fe, NM', - 1505992 => 'Santa Fe, NM', - 1505994 => 'Rio Rancho, NM', - 1505995 => 'Santa Fe, NM', - 1505998 => 'Albuquerque, NM', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1506.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1506.php deleted file mode 100644 index 9f0eea0b3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1506.php +++ /dev/null @@ -1,95 +0,0 @@ - 'New Brunswick', - 1506204 => 'Moncton, NB', - 1506235 => 'Saint-Quentin, NB', - 1506273 => 'Perth-Andover, NB', - 1506325 => 'Woodstock, NB', - 1506327 => 'Minto, NB', - 1506328 => 'Woodstock, NB', - 1506336 => 'Shippagan, NB', - 1506344 => 'Lamèque, NB', - 1506357 => 'Oromocto, NB', - 1506372 => 'Salisbury, NB', - 1506375 => 'Hartland, NB', - 1506382 => 'Moncton, NB', - 1506383 => 'Moncton, NB', - 1506384 => 'Moncton, NB', - 1506388 => 'Moncton, NB', - 1506389 => 'Moncton, NB', - 1506392 => 'Florenceville, NB', - 1506393 => 'Tracadie-Sheila, NB', - 1506395 => 'Tracadie-Sheila, NB', - 1506432 => 'Sussex, NB', - 1506433 => 'Sussex, NB', - 1506446 => 'Oromocto, NB', - 1506450 => 'Fredericton, NB', - 1506451 => 'Fredericton, NB', - 1506452 => 'Fredericton, NB', - 1506453 => 'Fredericton, NB', - 1506454 => 'Fredericton, NB', - 1506455 => 'Fredericton, NB', - 1506457 => 'Fredericton, NB', - 1506458 => 'Fredericton, NB', - 1506459 => 'Fredericton, NB', - 1506466 => 'Saint Stephen, NB', - 1506472 => 'Fredericton, NB', - 1506473 => 'Grand Falls, NB', - 1506523 => 'Richibucto, NB', - 1506529 => 'Saint Andrews, NB', - 1506532 => 'Shediac, NB', - 1506533 => 'Shediac, NB', - 1506536 => 'Sackville, NB', - 1506546 => 'Bathurst, NB', - 1506548 => 'Bathurst, NB', - 1506576 => 'Cocagne, NB', - 1506577 => 'Cap-Pele, NB', - 1506622 => 'Nelson-Miramichi, NB', - 1506632 => 'Saint John, NB', - 1506633 => 'Saint John, NB', - 1506634 => 'Saint John, NB', - 1506635 => 'Saint John, NB', - 1506642 => 'Saint John, NB', - 1506648 => 'Saint John, NB', - 1506652 => 'Saint John, NB', - 1506657 => 'Saint John, NB', - 1506658 => 'Saint John, NB', - 1506662 => 'Grand Manan, NB', - 1506672 => 'Saint John, NB', - 1506684 => 'Dalhousie, NB', - 1506693 => 'Saint John, NB', - 1506696 => 'Saint John, NB', - 1506727 => 'Caraquet, NB', - 1506735 => 'Edmundston, NB', - 1506737 => 'Edmundston, NB', - 1506739 => 'Edmundston, NB', - 1506743 => 'Bouctouche, NB', - 1506753 => 'Campbellton, NB', - 1506755 => 'Saint George, NB', - 1506756 => 'Petitcodiac, NB', - 1506759 => 'Campbellton, NB', - 1506773 => 'Nelson-Miramichi, NB', - 1506776 => 'Neguac, NB', - 1506778 => 'Nelson-Miramichi, NB', - 1506783 => 'Petit Rocher, NB', - 1506789 => 'Campbellton, NB', - 1506832 => 'Hampton, NB', - 1506847 => 'Rothesay, NB', - 1506850 => 'Moncton, NB', - 1506852 => 'Moncton, NB', - 1506853 => 'Moncton, NB', - 1506854 => 'Moncton, NB', - 1506855 => 'Moncton, NB', - 1506856 => 'Moncton, NB', - 1506857 => 'Moncton, NB', - 1506858 => 'Moncton, NB', - 1506859 => 'Moncton, NB', - 1506866 => 'Moncton, NB', - 1506876 => 'Saint-Louis de Kent, NB', - 1506992 => 'Clair, NB', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1507.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1507.php deleted file mode 100644 index 2f51a829f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1507.php +++ /dev/null @@ -1,127 +0,0 @@ - 'Minnesota', - 1507206 => 'Rochester, MN', - 1507223 => 'Canby, MN', - 1507226 => 'Rochester, MN', - 1507233 => 'New Ulm, MN', - 1507234 => 'Janesville, MN', - 1507235 => 'Fairmont, MN', - 1507237 => 'Gaylord, MN', - 1507238 => 'Fairmont, MN', - 1507247 => 'Tyler, MN', - 1507252 => 'Rochester, MN', - 1507255 => 'Rochester, MN', - 1507263 => 'Cannon Falls, MN', - 1507274 => 'Westbrook, MN', - 1507275 => 'Hendricks, MN', - 1507280 => 'Rochester, MN', - 1507281 => 'Rochester, MN', - 1507282 => 'Rochester, MN', - 1507283 => 'Luverne, MN', - 1507284 => 'Rochester, MN', - 1507285 => 'Rochester, MN', - 1507287 => 'Rochester, MN', - 1507288 => 'Rochester, MN', - 1507289 => 'Rochester, MN', - 1507292 => 'Rochester, MN', - 1507328 => 'Rochester, MN', - 1507332 => 'Faribault, MN', - 1507333 => 'Faribault, MN', - 1507334 => 'Faribault, MN', - 1507344 => 'Mankato, MN', - 1507345 => 'Mankato, MN', - 1507346 => 'Spring Valley, MN', - 1507354 => 'New Ulm, MN', - 1507356 => 'Pine Island, MN', - 1507357 => 'Le Center, MN', - 1507359 => 'New Ulm, MN', - 1507362 => 'Waterville, MN', - 1507364 => 'Montgomery, MN', - 1507372 => 'Worthington, MN', - 1507373 => 'Albert Lea, MN', - 1507374 => 'Dodge Center, MN', - 1507375 => 'Saint James, MN', - 1507376 => 'Worthington, MN', - 1507377 => 'Albert Lea, MN', - 1507385 => 'Mankato, MN', - 1507386 => 'Mankato, MN', - 1507387 => 'Mankato, MN', - 1507388 => 'Mankato, MN', - 1507389 => 'Mankato, MN', - 1507424 => 'Rochester, MN', - 1507426 => 'Fairfax, MN', - 1507427 => 'Mountain Lake, MN', - 1507433 => 'Austin, MN', - 1507434 => 'Austin, MN', - 1507437 => 'Austin, MN', - 1507442 => 'Edgerton, MN', - 1507444 => 'Owatonna, MN', - 1507446 => 'Owatonna, MN', - 1507451 => 'Owatonna, MN', - 1507452 => 'Winona, MN', - 1507453 => 'Winona, MN', - 1507454 => 'Winona, MN', - 1507455 => 'Owatonna, MN', - 1507457 => 'Winona, MN', - 1507467 => 'Lanesboro, MN', - 1507474 => 'Winona, MN', - 1507483 => 'Adrian, MN', - 1507498 => 'Spring Grove, MN', - 1507523 => 'Lewiston, MN', - 1507524 => 'Mapleton, MN', - 1507526 => 'Blue Earth, MN', - 1507529 => 'Rochester, MN', - 1507532 => 'Marshall, MN', - 1507533 => 'Stewartville, MN', - 1507534 => 'Plainview, MN', - 1507536 => 'Rochester, MN', - 1507537 => 'Marshall, MN', - 1507553 => 'Wells, MN', - 1507583 => 'Blooming Prairie, MN', - 1507625 => 'Mankato, MN', - 1507629 => 'Tracy, MN', - 1507634 => 'Kasson, MN', - 1507637 => 'Redwood Falls, MN', - 1507642 => 'Madelia, MN', - 1507644 => 'Redwood Falls, MN', - 1507645 => 'Northfield, MN', - 1507646 => 'Northfield, MN', - 1507647 => 'Winthrop, MN', - 1507662 => 'Lakefield, MN', - 1507663 => 'Northfield, MN', - 1507665 => 'Le Sueur, MN', - 1507694 => 'Ivanhoe, MN', - 1507723 => 'Springfield, MN', - 1507725 => 'Caledonia, MN', - 1507726 => 'Lake Crystal, MN', - 1507732 => 'Zumbrota, MN', - 1507744 => 'Lonsdale, MN', - 1507754 => 'Grand Meadow, MN', - 1507765 => 'Preston, MN', - 1507775 => 'Byron, MN', - 1507776 => 'Truman, MN', - 1507789 => 'Kenyon, MN', - 1507794 => 'Sleepy Eye, MN', - 1507825 => 'Pipestone, MN', - 1507831 => 'Windom, MN', - 1507835 => 'Waseca, MN', - 1507836 => 'Slayton, MN', - 1507847 => 'Jackson, MN', - 1507864 => 'Rushford, MN', - 1507867 => 'Chatfield, MN', - 1507872 => 'Minneota, MN', - 1507886 => 'Harmony, MN', - 1507893 => 'Winnebago, MN', - 1507895 => 'La Crescent, MN', - 1507896 => 'Houston, MN', - 1507931 => 'St. Peter, MN', - 1507932 => 'St. Charles, MN', - 1507934 => 'St. Peter, MN', - 1507964 => 'Arlington, MN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1508.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1508.php deleted file mode 100644 index 46c4b31ec..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1508.php +++ /dev/null @@ -1,225 +0,0 @@ - 'Massachusetts', - 1508222 => 'Attleboro, MA', - 1508223 => 'Attleboro, MA', - 1508224 => 'Plymouth, MA', - 1508226 => 'Attleboro, MA', - 1508228 => 'Nantucket, MA', - 1508229 => 'Marlborough, MA', - 1508232 => 'Brockton, MA', - 1508234 => 'Whitinsville, MA', - 1508235 => 'Fall River, MA', - 1508240 => 'Orleans, MA', - 1508248 => 'Charlton, MA', - 1508251 => 'Marlborough, MA', - 1508252 => 'Rehoboth, MA', - 1508255 => 'Orleans, MA', - 1508261 => 'Mansfield, MA', - 1508273 => 'Wareham, MA', - 1508278 => 'Uxbridge, MA', - 1508279 => 'Bridgewater, MA', - 1508281 => 'Marlborough, MA', - 1508285 => 'Norton, MA', - 1508291 => 'Wareham, MA', - 1508295 => 'Wareham, MA', - 1508303 => 'Marlborough, MA', - 1508309 => 'Framingham, MA', - 1508324 => 'Fall River, MA', - 1508325 => 'Nantucket, MA', - 1508334 => 'Worcester, MA', - 1508336 => 'Seekonk, MA', - 1508337 => 'Mansfield, MA', - 1508339 => 'Mansfield, MA', - 1508347 => 'Sturbridge, MA', - 1508349 => 'Wellfleet, MA', - 1508358 => 'Wayland, MA', - 1508359 => 'Medfield, MA', - 1508363 => 'Worcester, MA', - 1508366 => 'Westborough, MA', - 1508368 => 'Worcester, MA', - 1508370 => 'Framingham, MA', - 1508376 => 'Millis, MA', - 1508378 => 'East Bridgewater, MA', - 1508379 => 'Swansea, MA', - 1508381 => 'Milford, MA', - 1508383 => 'Framingham, MA', - 1508384 => 'Wrentham, MA', - 1508385 => 'Dennis, MA', - 1508393 => 'Northborough, MA', - 1508399 => 'Attleboro, MA', - 1508405 => 'Framingham, MA', - 1508421 => 'Worcester, MA', - 1508422 => 'Milford, MA', - 1508427 => 'Brockton, MA', - 1508429 => 'Holliston, MA', - 1508430 => 'Harwich, MA', - 1508435 => 'Hopkinton, MA', - 1508436 => 'Brockton, MA', - 1508457 => 'Falmouth, MA', - 1508459 => 'Worcester, MA', - 1508460 => 'Marlborough, MA', - 1508473 => 'Milford, MA', - 1508476 => 'Douglas, MA', - 1508477 => 'Mashpee, MA', - 1508478 => 'Milford, MA', - 1508480 => 'Marlborough, MA', - 1508481 => 'Marlborough, MA', - 1508482 => 'Milford, MA', - 1508485 => 'Marlborough, MA', - 1508487 => 'Provincetown, MA', - 1508495 => 'Falmouth, MA', - 1508497 => 'Hopkinton, MA', - 1508510 => 'Brockton, MA', - 1508520 => 'Franklin, MA', - 1508528 => 'Franklin, MA', - 1508529 => 'Upton, MA', - 1508533 => 'Medway, MA', - 1508539 => 'Mashpee, MA', - 1508540 => 'Falmouth, MA', - 1508541 => 'Franklin, MA', - 1508543 => 'Foxboro, MA', - 1508548 => 'Falmouth, MA', - 1508553 => 'Franklin, MA', - 1508559 => 'Brockton, MA', - 1508567 => 'Fall River, MA', - 1508580 => 'Brockton, MA', - 1508583 => 'Brockton, MA', - 1508584 => 'Brockton, MA', - 1508586 => 'Brockton, MA', - 1508587 => 'Brockton, MA', - 1508588 => 'Brockton, MA', - 1508595 => 'Worcester, MA', - 1508616 => 'Westborough, MA', - 1508620 => 'Framingham, MA', - 1508624 => 'Marlborough, MA', - 1508626 => 'Framingham, MA', - 1508627 => 'Edgartown, MA', - 1508628 => 'Framingham, MA', - 1508634 => 'Milford, MA', - 1508636 => 'Westport, MA', - 1508643 => 'North Attleborough, MA', - 1508644 => 'Assonet, MA', - 1508645 => 'Chilmark, MA', - 1508646 => 'Fall River, MA', - 1508647 => 'Natick, MA', - 1508650 => 'Natick, MA', - 1508651 => 'Natick, MA', - 1508653 => 'Natick, MA', - 1508655 => 'Natick, MA', - 1508660 => 'Walpole, MA', - 1508668 => 'Walpole, MA', - 1508669 => 'Dighton, MA', - 1508672 => 'Fall River, MA', - 1508673 => 'Fall River, MA', - 1508674 => 'Fall River, MA', - 1508675 => 'Fall River, MA', - 1508676 => 'Fall River, MA', - 1508677 => 'Fall River, MA', - 1508678 => 'Fall River, MA', - 1508679 => 'Fall River, MA', - 1508693 => 'Vineyard Haven, MA', - 1508695 => 'North Attleborough, MA', - 1508696 => 'Vineyard Haven, MA', - 1508697 => 'Bridgewater, MA', - 1508698 => 'Foxboro, MA', - 1508699 => 'North Attleborough, MA', - 1508717 => 'New Bedford, MA', - 1508721 => 'Auburn, MA', - 1508730 => 'Fall River, MA', - 1508732 => 'Plymouth, MA', - 1508746 => 'Plymouth, MA', - 1508747 => 'Plymouth, MA', - 1508748 => 'Marion, MA', - 1508752 => 'Worcester, MA', - 1508753 => 'Worcester, MA', - 1508754 => 'Worcester, MA', - 1508755 => 'Worcester, MA', - 1508756 => 'Worcester, MA', - 1508757 => 'Worcester, MA', - 1508758 => 'Mattapoisett, MA', - 1508761 => 'Attleboro, MA', - 1508764 => 'Southbridge, MA', - 1508765 => 'Southbridge, MA', - 1508767 => 'Worcester, MA', - 1508770 => 'Worcester, MA', - 1508771 => 'Hyannis, MA', - 1508775 => 'Hyannis, MA', - 1508778 => 'Hyannis, MA', - 1508785 => 'Dover, MA', - 1508788 => 'Framingham, MA', - 1508790 => 'Hyannis, MA', - 1508791 => 'Worcester, MA', - 1508792 => 'Worcester, MA', - 1508793 => 'Worcester, MA', - 1508795 => 'Worcester, MA', - 1508797 => 'Worcester, MA', - 1508798 => 'Worcester, MA', - 1508799 => 'Worcester, MA', - 1508820 => 'Framingham, MA', - 1508821 => 'Taunton, MA', - 1508822 => 'Taunton, MA', - 1508823 => 'Taunton, MA', - 1508824 => 'Taunton, MA', - 1508828 => 'Taunton, MA', - 1508829 => 'Holden, MA', - 1508830 => 'Plymouth, MA', - 1508831 => 'Worcester, MA', - 1508832 => 'Auburn, MA', - 1508835 => 'West Boylston, MA', - 1508836 => 'Westborough, MA', - 1508842 => 'Shrewsbury, MA', - 1508845 => 'Shrewsbury, MA', - 1508852 => 'Worcester, MA', - 1508853 => 'Worcester, MA', - 1508854 => 'Worcester, MA', - 1508856 => 'Worcester, MA', - 1508857 => 'Brockton, MA', - 1508860 => 'Worcester, MA', - 1508862 => 'Hyannis, MA', - 1508865 => 'Millbury, MA', - 1508866 => 'Carver, MA', - 1508869 => 'Boylston, MA', - 1508870 => 'Westborough, MA', - 1508872 => 'Framingham, MA', - 1508875 => 'Framingham, MA', - 1508877 => 'Framingham, MA', - 1508879 => 'Framingham, MA', - 1508880 => 'Taunton, MA', - 1508881 => 'Ashland, MA', - 1508885 => 'Spencer, MA', - 1508886 => 'Rutland, MA', - 1508892 => 'Leicester, MA', - 1508894 => 'Brockton, MA', - 1508896 => 'Brewster, MA', - 1508897 => 'Brockton, MA', - 1508898 => 'Westborough, MA', - 1508923 => 'Middleborough, MA', - 1508926 => 'Worcester, MA', - 1508941 => 'Brockton, MA', - 1508943 => 'Webster, MA', - 1508945 => 'Chatham, MA', - 1508946 => 'Middleborough, MA', - 1508947 => 'Middleborough, MA', - 1508949 => 'Webster, MA', - 1508961 => 'New Bedford, MA', - 1508966 => 'Bellingham, MA', - 1508977 => 'Taunton, MA', - 1508979 => 'New Bedford, MA', - 1508984 => 'New Bedford, MA', - 1508985 => 'New Bedford, MA', - 1508987 => 'Oxford, MA', - 1508990 => 'New Bedford, MA', - 1508991 => 'New Bedford, MA', - 1508992 => 'New Bedford, MA', - 1508993 => 'New Bedford, MA', - 1508995 => 'New Bedford, MA', - 1508997 => 'New Bedford, MA', - 1508998 => 'New Bedford, MA', - 1508999 => 'New Bedford, MA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1509.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1509.php deleted file mode 100644 index dea15dbde..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1509.php +++ /dev/null @@ -1,194 +0,0 @@ - 'Washington', - 1509216 => 'Spokane, WA', - 1509225 => 'Yakima, WA', - 1509226 => 'Newman Lake, WA', - 1509232 => 'Spokane, WA', - 1509234 => 'Connell, WA', - 1509235 => 'Cheney, WA', - 1509242 => 'Spokane, WA', - 1509244 => 'Airway Heights, WA', - 1509248 => 'Yakima, WA', - 1509249 => 'Yakima, WA', - 1509252 => 'Spokane, WA', - 1509276 => 'Deer Park, WA', - 1509279 => 'Spokane, WA', - 1509290 => 'Spokane, WA', - 1509292 => 'Elk, WA', - 1509293 => 'Wenatchee, WA', - 1509299 => 'Medical Lake, WA', - 1509301 => 'Walla Walla, WA', - 1509323 => 'Spokane, WA', - 1509324 => 'Spokane, WA', - 1509325 => 'Spokane, WA', - 1509326 => 'Spokane, WA', - 1509327 => 'Spokane, WA', - 1509328 => 'Spokane, WA', - 1509332 => 'Pullman, WA', - 1509334 => 'Pullman, WA', - 1509340 => 'Spokane, WA', - 1509346 => 'Royal City, WA', - 1509349 => 'Warden, WA', - 1509353 => 'Spokane, WA', - 1509363 => 'Spokane, WA', - 1509374 => 'Kennewick, WA', - 1509375 => 'Richland, WA', - 1509382 => 'Dayton, WA', - 1509396 => 'Kennewick, WA', - 1509397 => 'Colfax, WA', - 1509413 => 'Spokane, WA', - 1509422 => 'Okanogan, WA', - 1509427 => 'Stevenson, WA', - 1509434 => 'Spokane, WA', - 1509443 => 'Spokane, WA', - 1509444 => 'Spokane, WA', - 1509447 => 'Newport, WA', - 1509448 => 'Spokane, WA', - 1509452 => 'Yakima, WA', - 1509453 => 'Yakima, WA', - 1509454 => 'Yakima, WA', - 1509455 => 'Spokane, WA', - 1509456 => 'Spokane, WA', - 1509457 => 'Yakima, WA', - 1509458 => 'Spokane, WA', - 1509459 => 'Spokane, WA', - 1509464 => 'Spokane, WA', - 1509465 => 'Spokane, WA', - 1509466 => 'Spokane, WA', - 1509467 => 'Spokane, WA', - 1509468 => 'Spokane, WA', - 1509469 => 'Yakima, WA', - 1509473 => 'Spokane, WA', - 1509474 => 'Spokane, WA', - 1509475 => 'Spokane, WA', - 1509476 => 'Oroville, WA', - 1509477 => 'Spokane, WA', - 1509482 => 'Spokane, WA', - 1509483 => 'Spokane, WA', - 1509484 => 'Spokane, WA', - 1509486 => 'Tonasket, WA', - 1509487 => 'Spokane, WA', - 1509488 => 'Othello, WA', - 1509489 => 'Spokane, WA', - 1509493 => 'White Salmon, WA', - 1509520 => 'Walla Walla, WA', - 1509522 => 'Walla Walla, WA', - 1509525 => 'Walla Walla, WA', - 1509526 => 'Walla Walla, WA', - 1509527 => 'Walla Walla, WA', - 1509529 => 'Walla Walla, WA', - 1509532 => 'Spokane, WA', - 1509533 => 'Spokane, WA', - 1509534 => 'Spokane, WA', - 1509535 => 'Spokane, WA', - 1509536 => 'Spokane, WA', - 1509542 => 'Pasco, WA', - 1509543 => 'Pasco, WA', - 1509544 => 'Pasco, WA', - 1509545 => 'Pasco, WA', - 1509546 => 'Pasco, WA', - 1509547 => 'Pasco, WA', - 1509548 => 'Leavenworth, WA', - 1509573 => 'Yakima, WA', - 1509574 => 'Yakima, WA', - 1509575 => 'Yakima, WA', - 1509576 => 'Yakima, WA', - 1509582 => 'Kennewick, WA', - 1509585 => 'Kennewick, WA', - 1509586 => 'Kennewick, WA', - 1509588 => 'Benton City, WA', - 1509590 => 'Spokane, WA', - 1509624 => 'Spokane, WA', - 1509625 => 'Spokane, WA', - 1509627 => 'Richland, WA', - 1509628 => 'Richland, WA', - 1509633 => 'Grand Coulee, WA', - 1509647 => 'Wilbur, WA', - 1509649 => 'Roslyn, WA', - 1509659 => 'Ritzville, WA', - 1509662 => 'Wenatchee, WA', - 1509663 => 'Wenatchee, WA', - 1509664 => 'Wenatchee, WA', - 1509665 => 'Wenatchee, WA', - 1509667 => 'Wenatchee, WA', - 1509674 => 'Cle Elum, WA', - 1509682 => 'Chelan, WA', - 1509684 => 'Colville, WA', - 1509685 => 'Colville, WA', - 1509687 => 'Manson, WA', - 1509689 => 'Brewster, WA', - 1509697 => 'Selah, WA', - 1509698 => 'Selah, WA', - 1509725 => 'Davenport, WA', - 1509734 => 'Kennewick, WA', - 1509735 => 'Kennewick, WA', - 1509736 => 'Kennewick, WA', - 1509737 => 'Kennewick, WA', - 1509738 => 'Kettle Falls, WA', - 1509744 => 'Spokane, WA', - 1509747 => 'Spokane, WA', - 1509750 => 'Moses Lake, WA', - 1509751 => 'Clarkston, WA', - 1509754 => 'Ephrata, WA', - 1509755 => 'Spokane, WA', - 1509758 => 'Clarkston, WA', - 1509760 => 'Moses Lake, WA', - 1509762 => 'Moses Lake, WA', - 1509764 => 'Moses Lake, WA', - 1509765 => 'Moses Lake, WA', - 1509766 => 'Moses Lake, WA', - 1509773 => 'Goldendale, WA', - 1509775 => 'Republic, WA', - 1509782 => 'Cashmere, WA', - 1509783 => 'Kennewick, WA', - 1509784 => 'Entiat, WA', - 1509786 => 'Prosser, WA', - 1509787 => 'Quincy, WA', - 1509826 => 'Omak, WA', - 1509829 => 'Zillah, WA', - 1509837 => 'Sunnyside, WA', - 1509838 => 'Spokane, WA', - 1509839 => 'Sunnyside, WA', - 1509843 => 'Pomeroy, WA', - 1509863 => 'Spokane, WA', - 1509865 => 'Toppenish, WA', - 1509868 => 'Spokane, WA', - 1509877 => 'Wapato, WA', - 1509882 => 'Grandview, WA', - 1509884 => 'East Wenatchee, WA', - 1509886 => 'East Wenatchee, WA', - 1509888 => 'Wenatchee, WA', - 1509891 => 'Spokane Valley, WA', - 1509892 => 'Spokane Valley, WA', - 1509921 => 'Spokane Valley, WA', - 1509922 => 'Spokane Valley, WA', - 1509924 => 'Spokane Valley, WA', - 1509925 => 'Ellensburg, WA', - 1509926 => 'Spokane Valley, WA', - 1509927 => 'Spokane Valley, WA', - 1509928 => 'Spokane Valley, WA', - 1509932 => 'Mattawa, WA', - 1509933 => 'Ellensburg, WA', - 1509935 => 'Chewelah, WA', - 1509939 => 'Spokane, WA', - 1509942 => 'Richland, WA', - 1509943 => 'Richland, WA', - 1509946 => 'Richland, WA', - 1509949 => 'Yakima, WA', - 1509953 => 'Spokane, WA', - 1509962 => 'Ellensburg, WA', - 1509965 => 'Yakima, WA', - 1509966 => 'Yakima, WA', - 1509967 => 'West Richland, WA', - 1509968 => 'Ellensburg, WA', - 1509972 => 'Yakima, WA', - 1509982 => 'Odessa, WA', - 1509996 => 'Winthrop, WA', - 1509997 => 'Twisp, WA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1510.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1510.php deleted file mode 100644 index d6979ee25..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1510.php +++ /dev/null @@ -1,193 +0,0 @@ - 'California', - 1510204 => 'Berkeley, CA', - 1510208 => 'Oakland, CA', - 1510226 => 'Fremont, CA', - 1510231 => 'Richmond, CA', - 1510232 => 'Richmond, CA', - 1510233 => 'Richmond, CA', - 1510234 => 'Richmond, CA', - 1510235 => 'Richmond, CA', - 1510236 => 'Richmond, CA', - 1510237 => 'Richmond, CA', - 1510238 => 'Oakland, CA', - 1510245 => 'Hercules, CA', - 1510248 => 'Fremont, CA', - 1510251 => 'Oakland, CA', - 1510252 => 'Fremont, CA', - 1510259 => 'Hayward, CA', - 1510261 => 'Oakland, CA', - 1510264 => 'Hayward, CA', - 1510265 => 'Hayward, CA', - 1510266 => 'Hayward, CA', - 1510268 => 'Oakland, CA', - 1510271 => 'Oakland, CA', - 1510272 => 'Oakland, CA', - 1510273 => 'Oakland, CA', - 1510293 => 'Hayward, CA', - 1510307 => 'Richmond, CA', - 1510317 => 'San Leandro, CA', - 1510324 => 'Union City, CA', - 1510336 => 'Oakland, CA', - 1510337 => 'Alameda, CA', - 1510339 => 'Oakland, CA', - 1510346 => 'San Leandro, CA', - 1510351 => 'San Leandro, CA', - 1510352 => 'San Leandro, CA', - 1510353 => 'Fremont, CA', - 1510357 => 'San Leandro, CA', - 1510383 => 'Oakland, CA', - 1510397 => 'Hayward, CA', - 1510412 => 'Richmond, CA', - 1510428 => 'Oakland, CA', - 1510429 => 'Union City, CA', - 1510430 => 'Oakland, CA', - 1510433 => 'Oakland, CA', - 1510434 => 'Oakland, CA', - 1510436 => 'Oakland, CA', - 1510437 => 'Oakland, CA', - 1510438 => 'Fremont, CA', - 1510440 => 'Fremont, CA', - 1510441 => 'Union City, CA', - 1510444 => 'Oakland, CA', - 1510445 => 'Fremont, CA', - 1510451 => 'Oakland, CA', - 1510452 => 'Oakland, CA', - 1510465 => 'Oakland, CA', - 1510471 => 'Union City, CA', - 1510475 => 'Union City, CA', - 1510477 => 'Union City, CA', - 1510481 => 'San Leandro, CA', - 1510482 => 'Oakland, CA', - 1510483 => 'San Leandro, CA', - 1510486 => 'Berkeley, CA', - 1510487 => 'Union City, CA', - 1510489 => 'Union City, CA', - 1510490 => 'Fremont, CA', - 1510494 => 'Fremont, CA', - 1510498 => 'Fremont, CA', - 1510505 => 'Fremont, CA', - 1510521 => 'Alameda, CA', - 1510522 => 'Alameda, CA', - 1510523 => 'Alameda, CA', - 1510530 => 'Oakland, CA', - 1510531 => 'Oakland, CA', - 1510532 => 'Oakland, CA', - 1510533 => 'Oakland, CA', - 1510534 => 'Oakland, CA', - 1510535 => 'Oakland, CA', - 1510536 => 'Oakland, CA', - 1510537 => 'Castro Valley, CA', - 1510540 => 'Berkeley, CA', - 1510547 => 'Oakland, CA', - 1510548 => 'Berkeley, CA', - 1510549 => 'Berkeley, CA', - 1510553 => 'Oakland, CA', - 1510562 => 'Oakland, CA', - 1510567 => 'Oakland, CA', - 1510568 => 'Oakland, CA', - 1510569 => 'Oakland, CA', - 1510573 => 'Fremont, CA', - 1510574 => 'Fremont, CA', - 1510583 => 'Hayward, CA', - 1510596 => 'Emeryville, CA', - 1510614 => 'San Leandro, CA', - 1510620 => 'Richmond, CA', - 1510623 => 'Fremont, CA', - 1510625 => 'Oakland, CA', - 1510632 => 'Oakland, CA', - 1510633 => 'Oakland, CA', - 1510635 => 'Oakland, CA', - 1510636 => 'Oakland, CA', - 1510638 => 'Oakland, CA', - 1510639 => 'Oakland, CA', - 1510642 => 'Berkeley, CA', - 1510644 => 'Berkeley, CA', - 1510647 => 'Berkeley, CA', - 1510649 => 'Berkeley, CA', - 1510651 => 'Fremont, CA', - 1510652 => 'Oakland, CA', - 1510653 => 'Oakland, CA', - 1510654 => 'Oakland, CA', - 1510655 => 'Oakland, CA', - 1510656 => 'Fremont, CA', - 1510657 => 'Fremont, CA', - 1510659 => 'Fremont, CA', - 1510663 => 'Oakland, CA', - 1510665 => 'Berkeley, CA', - 1510666 => 'Berkeley, CA', - 1510667 => 'San Leandro, CA', - 1510668 => 'Fremont, CA', - 1510670 => 'Hayward, CA', - 1510675 => 'Union City, CA', - 1510683 => 'Fremont, CA', - 1510690 => 'Hayward, CA', - 1510704 => 'Berkeley, CA', - 1510713 => 'Fremont, CA', - 1510724 => 'Pinole, CA', - 1510728 => 'Hayward, CA', - 1510732 => 'Hayward, CA', - 1510733 => 'Hayward, CA', - 1510739 => 'Fremont, CA', - 1510742 => 'Fremont, CA', - 1510744 => 'Fremont, CA', - 1510745 => 'Fremont, CA', - 1510748 => 'Alameda, CA', - 1510749 => 'Alameda, CA', - 1510752 => 'Oakland, CA', - 1510763 => 'Oakland, CA', - 1510769 => 'Alameda, CA', - 1510770 => 'Fremont, CA', - 1510777 => 'Oakland, CA', - 1510780 => 'Hayward, CA', - 1510782 => 'Hayward, CA', - 1510783 => 'Hayward, CA', - 1510784 => 'Hayward, CA', - 1510785 => 'Hayward, CA', - 1510786 => 'Hayward, CA', - 1510787 => 'Crockett, CA', - 1510790 => 'Fremont, CA', - 1510791 => 'Fremont, CA', - 1510792 => 'Fremont, CA', - 1510793 => 'Fremont, CA', - 1510794 => 'Fremont, CA', - 1510795 => 'Fremont, CA', - 1510796 => 'Fremont, CA', - 1510797 => 'Fremont, CA', - 1510814 => 'Alameda, CA', - 1510818 => 'Fremont, CA', - 1510832 => 'Oakland, CA', - 1510834 => 'Oakland, CA', - 1510835 => 'Oakland, CA', - 1510836 => 'Oakland, CA', - 1510839 => 'Oakland, CA', - 1510841 => 'Berkeley, CA', - 1510842 => 'Oakland, CA', - 1510843 => 'Berkeley, CA', - 1510845 => 'Berkeley, CA', - 1510848 => 'Berkeley, CA', - 1510849 => 'Berkeley, CA', - 1510864 => 'Alameda, CA', - 1510865 => 'Alameda, CA', - 1510869 => 'Oakland, CA', - 1510879 => 'Oakland, CA', - 1510883 => 'Berkeley, CA', - 1510885 => 'Hayward, CA', - 1510886 => 'Hayward, CA', - 1510887 => 'Hayward, CA', - 1510888 => 'Hayward, CA', - 1510891 => 'Oakland, CA', - 1510893 => 'Oakland, CA', - 1510895 => 'San Leandro, CA', - 1510922 => 'Oakland, CA', - 1510923 => 'Oakland, CA', - 1510979 => 'Fremont, CA', - 1510981 => 'Berkeley, CA', - 1510986 => 'Oakland, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1512.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1512.php deleted file mode 100644 index f2fd3271b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1512.php +++ /dev/null @@ -1,209 +0,0 @@ - 'Texas', - 1512206 => 'Austin, TX', - 1512218 => 'Round Rock, TX', - 1512231 => 'Austin, TX', - 1512236 => 'Austin, TX', - 1512237 => 'Smithville, TX', - 1512241 => 'Austin, TX', - 1512243 => 'Austin, TX', - 1512244 => 'Round Rock, TX', - 1512246 => 'Round Rock, TX', - 1512247 => 'Del Valle, TX', - 1512250 => 'Austin, TX', - 1512255 => 'Round Rock, TX', - 1512258 => 'Austin, TX', - 1512261 => 'Lakeway, TX', - 1512264 => 'Spicewood, TX', - 1512266 => 'Austin, TX', - 1512268 => 'Kyle, TX', - 1512272 => 'Manor, TX', - 1512276 => 'Austin, TX', - 1512278 => 'Manor, TX', - 1512280 => 'Austin, TX', - 1512281 => 'Elgin, TX', - 1512282 => 'Austin, TX', - 1512284 => 'Austin, TX', - 1512285 => 'Elgin, TX', - 1512288 => 'Austin, TX', - 1512291 => 'Austin, TX', - 1512292 => 'Austin, TX', - 1512295 => 'Buda, TX', - 1512296 => 'Austin, TX', - 1512301 => 'Austin, TX', - 1512302 => 'Austin, TX', - 1512303 => 'Bastrop, TX', - 1512306 => 'Austin, TX', - 1512308 => 'Bastrop, TX', - 1512310 => 'Round Rock, TX', - 1512312 => 'Buda, TX', - 1512320 => 'Austin, TX', - 1512321 => 'Bastrop, TX', - 1512322 => 'Austin, TX', - 1512323 => 'Austin, TX', - 1512324 => 'Austin, TX', - 1512326 => 'Austin, TX', - 1512327 => 'Austin, TX', - 1512328 => 'Austin, TX', - 1512329 => 'Austin, TX', - 1512330 => 'Austin, TX', - 1512331 => 'Austin, TX', - 1512332 => 'Bastrop, TX', - 1512334 => 'Austin, TX', - 1512335 => 'Austin, TX', - 1512338 => 'Austin, TX', - 1512339 => 'Austin, TX', - 1512340 => 'Austin, TX', - 1512341 => 'Round Rock, TX', - 1512342 => 'Austin, TX', - 1512343 => 'Austin, TX', - 1512344 => 'Austin, TX', - 1512345 => 'Austin, TX', - 1512346 => 'Austin, TX', - 1512347 => 'Austin, TX', - 1512349 => 'Austin, TX', - 1512351 => 'Austin, TX', - 1512352 => 'Taylor, TX', - 1512353 => 'San Marcos, TX', - 1512355 => 'Bertram, TX', - 1512358 => 'Austin, TX', - 1512360 => 'Smithville, TX', - 1512365 => 'Taylor, TX', - 1512370 => 'Austin, TX', - 1512371 => 'Austin, TX', - 1512372 => 'Austin, TX', - 1512373 => 'Austin, TX', - 1512374 => 'Austin, TX', - 1512376 => 'Lockhart, TX', - 1512377 => 'Austin, TX', - 1512380 => 'Austin, TX', - 1512382 => 'Austin, TX', - 1512383 => 'Austin, TX', - 1512385 => 'Austin, TX', - 1512386 => 'Austin, TX', - 1512388 => 'Round Rock, TX', - 1512389 => 'Austin, TX', - 1512391 => 'Austin, TX', - 1512392 => 'San Marcos, TX', - 1512393 => 'San Marcos, TX', - 1512394 => 'Austin, TX', - 1512396 => 'San Marcos, TX', - 1512398 => 'Lockhart, TX', - 1512407 => 'Austin, TX', - 1512414 => 'Austin, TX', - 1512416 => 'Austin, TX', - 1512418 => 'Austin, TX', - 1512419 => 'Austin, TX', - 1512420 => 'Austin, TX', - 1512440 => 'Austin, TX', - 1512441 => 'Austin, TX', - 1512442 => 'Austin, TX', - 1512443 => 'Austin, TX', - 1512444 => 'Austin, TX', - 1512445 => 'Austin, TX', - 1512446 => 'Rockdale, TX', - 1512447 => 'Austin, TX', - 1512448 => 'Austin, TX', - 1512450 => 'Austin, TX', - 1512451 => 'Austin, TX', - 1512452 => 'Austin, TX', - 1512453 => 'Austin, TX', - 1512454 => 'Austin, TX', - 1512457 => 'Austin, TX', - 1512458 => 'Austin, TX', - 1512459 => 'Austin, TX', - 1512462 => 'Austin, TX', - 1512463 => 'Austin, TX', - 1512467 => 'Austin, TX', - 1512469 => 'Austin, TX', - 1512471 => 'Austin, TX', - 1512472 => 'Austin, TX', - 1512473 => 'Austin, TX', - 1512474 => 'Austin, TX', - 1512476 => 'Austin, TX', - 1512477 => 'Austin, TX', - 1512478 => 'Austin, TX', - 1512479 => 'Austin, TX', - 1512480 => 'Austin, TX', - 1512481 => 'Austin, TX', - 1512482 => 'Austin, TX', - 1512485 => 'Austin, TX', - 1512491 => 'Austin, TX', - 1512495 => 'Austin, TX', - 1512499 => 'Austin, TX', - 1512502 => 'Austin, TX', - 1512505 => 'Austin, TX', - 1512506 => 'Austin, TX', - 1512509 => 'Round Rock, TX', - 1512515 => 'Liberty Hill, TX', - 1512524 => 'Austin, TX', - 1512527 => 'Austin, TX', - 1512533 => 'Austin, TX', - 1512542 => 'Austin, TX', - 1512551 => 'Austin, TX', - 1512556 => 'Lampasas, TX', - 1512581 => 'Bastrop, TX', - 1512610 => 'Austin, TX', - 1512614 => 'Austin, TX', - 1512615 => 'Austin, TX', - 1512617 => 'Austin, TX', - 1512628 => 'Austin, TX', - 1512637 => 'Austin, TX', - 1512651 => 'Austin, TX', - 1512671 => 'Round Rock, TX', - 1512707 => 'Austin, TX', - 1512708 => 'Austin, TX', - 1512715 => 'Burnet, TX', - 1512719 => 'Austin, TX', - 1512732 => 'Austin, TX', - 1512746 => 'Jarrell, TX', - 1512754 => 'San Marcos, TX', - 1512756 => 'Burnet, TX', - 1512759 => 'Hutto, TX', - 1512763 => 'Georgetown, TX', - 1512778 => 'Liberty Hill, TX', - 1512794 => 'Austin, TX', - 1512795 => 'Austin, TX', - 1512804 => 'Austin, TX', - 1512805 => 'San Marcos, TX', - 1512819 => 'Georgetown, TX', - 1512821 => 'Austin, TX', - 1512832 => 'Austin, TX', - 1512833 => 'Austin, TX', - 1512834 => 'Austin, TX', - 1512835 => 'Austin, TX', - 1512836 => 'Austin, TX', - 1512837 => 'Austin, TX', - 1512846 => 'Hutto, TX', - 1512847 => 'Wimberley, TX', - 1512854 => 'Austin, TX', - 1512858 => 'Dripping Springs, TX', - 1512863 => 'Georgetown, TX', - 1512864 => 'Georgetown, TX', - 1512868 => 'Georgetown, TX', - 1512869 => 'Georgetown, TX', - 1512873 => 'Austin, TX', - 1512878 => 'San Marcos, TX', - 1512891 => 'Austin, TX', - 1512892 => 'Austin, TX', - 1512894 => 'Dripping Springs, TX', - 1512899 => 'Austin, TX', - 1512901 => 'Austin, TX', - 1512912 => 'Austin, TX', - 1512916 => 'Austin, TX', - 1512918 => 'Austin, TX', - 1512926 => 'Austin, TX', - 1512928 => 'Austin, TX', - 1512929 => 'Austin, TX', - 1512930 => 'Georgetown, TX', - 1512931 => 'Georgetown, TX', - 1512943 => 'Georgetown, TX', - 1512973 => 'Austin, TX', - 1512974 => 'Austin, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1513.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1513.php deleted file mode 100644 index 3bc0660a8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1513.php +++ /dev/null @@ -1,179 +0,0 @@ - 'Ohio', - 1513202 => 'Harrison, OH', - 1513204 => 'Mason, OH', - 1513217 => 'Middletown, OH', - 1513221 => 'Cincinnati, OH', - 1513228 => 'Lebanon, OH', - 1513229 => 'Mason, OH', - 1513231 => 'Cincinnati, OH', - 1513232 => 'Cincinnati, OH', - 1513233 => 'Cincinnati, OH', - 1513234 => 'Mason, OH', - 1513241 => 'Cincinnati, OH', - 1513242 => 'Cincinnati, OH', - 1513244 => 'Cincinnati, OH', - 1513245 => 'Cincinnati, OH', - 1513247 => 'Cincinnati, OH', - 1513248 => 'Milford, OH', - 1513251 => 'Cincinnati, OH', - 1513271 => 'Cincinnati, OH', - 1513272 => 'Cincinnati, OH', - 1513281 => 'Cincinnati, OH', - 1513285 => 'Hamilton, OH', - 1513321 => 'Cincinnati, OH', - 1513333 => 'Cincinnati, OH', - 1513336 => 'Mason, OH', - 1513346 => 'Cincinnati, OH', - 1513347 => 'Cincinnati, OH', - 1513351 => 'Cincinnati, OH', - 1513352 => 'Cincinnati, OH', - 1513353 => 'Cleves, OH', - 1513354 => 'Cincinnati, OH', - 1513357 => 'Cincinnati, OH', - 1513360 => 'Monroe, OH', - 1513367 => 'Harrison, OH', - 1513376 => 'Cincinnati, OH', - 1513381 => 'Cincinnati, OH', - 1513385 => 'Cincinnati, OH', - 1513389 => 'Cincinnati, OH', - 1513398 => 'Mason, OH', - 1513407 => 'Cincinnati, OH', - 1513420 => 'Middletown, OH', - 1513421 => 'Cincinnati, OH', - 1513422 => 'Middletown, OH', - 1513423 => 'Middletown, OH', - 1513424 => 'Middletown, OH', - 1513425 => 'Middletown, OH', - 1513451 => 'Cincinnati, OH', - 1513459 => 'Mason, OH', - 1513469 => 'Cincinnati, OH', - 1513471 => 'Cincinnati, OH', - 1513474 => 'Cincinnati, OH', - 1513475 => 'Cincinnati, OH', - 1513481 => 'Cincinnati, OH', - 1513489 => 'Cincinnati, OH', - 1513521 => 'Cincinnati, OH', - 1513522 => 'Cincinnati, OH', - 1513523 => 'Oxford, OH', - 1513524 => 'Oxford, OH', - 1513528 => 'Cincinnati, OH', - 1513530 => 'Cincinnati, OH', - 1513531 => 'Cincinnati, OH', - 1513533 => 'Cincinnati, OH', - 1513539 => 'Monroe, OH', - 1513541 => 'Cincinnati, OH', - 1513542 => 'Cincinnati, OH', - 1513553 => 'New Richmond, OH', - 1513554 => 'Cincinnati, OH', - 1513557 => 'Cincinnati, OH', - 1513558 => 'Cincinnati, OH', - 1513559 => 'Cincinnati, OH', - 1513561 => 'Cincinnati, OH', - 1513563 => 'Cincinnati, OH', - 1513574 => 'Cincinnati, OH', - 1513575 => 'Milford, OH', - 1513576 => 'Milford, OH', - 1513579 => 'Cincinnati, OH', - 1513584 => 'Cincinnati, OH', - 1513585 => 'Cincinnati, OH', - 1513598 => 'Cincinnati, OH', - 1513621 => 'Cincinnati, OH', - 1513624 => 'Cincinnati, OH', - 1513631 => 'Cincinnati, OH', - 1513636 => 'Cincinnati, OH', - 1513641 => 'Cincinnati, OH', - 1513651 => 'Cincinnati, OH', - 1513661 => 'Cincinnati, OH', - 1513662 => 'Cincinnati, OH', - 1513671 => 'Cincinnati, OH', - 1513672 => 'Cincinnati, OH', - 1513674 => 'Cincinnati, OH', - 1513681 => 'Cincinnati, OH', - 1513683 => 'Loveland, OH', - 1513686 => 'Cincinnati, OH', - 1513721 => 'Cincinnati, OH', - 1513724 => 'Williamsburg, OH', - 1513727 => 'Middletown, OH', - 1513729 => 'Cincinnati, OH', - 1513731 => 'Cincinnati, OH', - 1513732 => 'Batavia, OH', - 1513733 => 'Cincinnati, OH', - 1513734 => 'Bethel, OH', - 1513735 => 'Batavia, OH', - 1513737 => 'Hamilton, OH', - 1513741 => 'Cincinnati, OH', - 1513742 => 'Cincinnati, OH', - 1513745 => 'Cincinnati, OH', - 1513751 => 'Cincinnati, OH', - 1513752 => 'Cincinnati, OH', - 1513754 => 'Mason, OH', - 1513755 => 'West Chester, OH', - 1513759 => 'West Chester, OH', - 1513761 => 'Cincinnati, OH', - 1513762 => 'Cincinnati, OH', - 1513769 => 'Cincinnati, OH', - 1513770 => 'Mason, OH', - 1513771 => 'Cincinnati, OH', - 1513772 => 'Cincinnati, OH', - 1513777 => 'West Chester, OH', - 1513779 => 'West Chester, OH', - 1513785 => 'Hamilton, OH', - 1513791 => 'Cincinnati, OH', - 1513792 => 'Cincinnati, OH', - 1513793 => 'Cincinnati, OH', - 1513794 => 'Cincinnati, OH', - 1513797 => 'Amelia, OH', - 1513821 => 'Cincinnati, OH', - 1513825 => 'Cincinnati, OH', - 1513829 => 'Fairfield, OH', - 1513831 => 'Milford, OH', - 1513834 => 'Cincinnati, OH', - 1513841 => 'Cincinnati, OH', - 1513844 => 'Hamilton, OH', - 1513851 => 'Cincinnati, OH', - 1513852 => 'Cincinnati, OH', - 1513858 => 'Fairfield, OH', - 1513861 => 'Cincinnati, OH', - 1513862 => 'Cincinnati, OH', - 1513863 => 'Hamilton, OH', - 1513867 => 'Hamilton, OH', - 1513868 => 'Hamilton, OH', - 1513871 => 'Cincinnati, OH', - 1513872 => 'Cincinnati, OH', - 1513875 => 'Fayetteville, OH', - 1513876 => 'Felicity, OH', - 1513887 => 'Hamilton, OH', - 1513891 => 'Cincinnati, OH', - 1513892 => 'Hamilton, OH', - 1513893 => 'Hamilton, OH', - 1513894 => 'Hamilton, OH', - 1513895 => 'Hamilton, OH', - 1513896 => 'Hamilton, OH', - 1513897 => 'Waynesville, OH', - 1513899 => 'Morrow, OH', - 1513921 => 'Cincinnati, OH', - 1513922 => 'Cincinnati, OH', - 1513923 => 'Cincinnati, OH', - 1513931 => 'Cincinnati, OH', - 1513932 => 'Lebanon, OH', - 1513933 => 'Lebanon, OH', - 1513934 => 'Lebanon, OH', - 1513939 => 'Fairfield, OH', - 1513941 => 'Cincinnati, OH', - 1513943 => 'Cincinnati, OH', - 1513947 => 'Cincinnati, OH', - 1513948 => 'Cincinnati, OH', - 1513961 => 'Cincinnati, OH', - 1513965 => 'Milford, OH', - 1513977 => 'Cincinnati, OH', - 1513984 => 'Cincinnati, OH', - 1513985 => 'Cincinnati, OH', - 1513988 => 'Trenton, OH', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1514.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1514.php deleted file mode 100644 index 69c6543e8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1514.php +++ /dev/null @@ -1,189 +0,0 @@ - 'Quebec', - 1514223 => 'Montreal, QC', - 1514227 => 'Montreal, QC', - 1514251 => 'Montreal, QC', - 1514252 => 'Montreal, QC', - 1514253 => 'Montreal, QC', - 1514254 => 'Montreal, QC', - 1514255 => 'Montreal, QC', - 1514256 => 'Montreal, QC', - 1514257 => 'Montreal, QC', - 1514259 => 'Montreal, QC', - 1514270 => 'Montreal, QC', - 1514271 => 'Montreal, QC', - 1514272 => 'Montreal, QC', - 1514273 => 'Montreal, QC', - 1514274 => 'Montreal, QC', - 1514276 => 'Montreal, QC', - 1514277 => 'Montreal, QC', - 1514278 => 'Montreal, QC', - 1514279 => 'Montreal, QC', - 1514280 => 'Montreal, QC', - 1514281 => 'Montreal, QC', - 1514282 => 'Montreal, QC', - 1514284 => 'Montreal, QC', - 1514285 => 'Montreal, QC', - 1514286 => 'Montreal, QC', - 1514287 => 'Montreal, QC', - 1514288 => 'Montreal, QC', - 1514289 => 'Montreal, QC', - 1514303 => 'Montreal, QC', - 1514313 => 'Montreal, QC', - 1514315 => 'Montreal, QC', - 1514333 => 'Saint-Laurent, QC', - 1514335 => 'Saint-Laurent, QC', - 1514339 => 'Saint-Laurent, QC', - 1514340 => 'Montreal, QC', - 1514342 => 'Montreal, QC', - 1514345 => 'Montreal, QC', - 1514363 => 'Lasalle, QC', - 1514364 => 'Lasalle, QC', - 1514365 => 'Lasalle, QC', - 1514366 => 'Lasalle, QC', - 1514367 => 'Lasalle, QC', - 1514368 => 'Lasalle, QC', - 1514369 => 'Montreal, QC', - 1514374 => 'Montreal, QC', - 1514376 => 'Montreal, QC', - 1514381 => 'Montreal, QC', - 1514382 => 'Montreal, QC', - 1514383 => 'Montreal, QC', - 1514384 => 'Montreal, QC', - 1514385 => 'Montreal, QC', - 1514387 => 'Montreal, QC', - 1514388 => 'Montreal, QC', - 1514389 => 'Montreal, QC', - 1514392 => 'Montreal, QC', - 1514393 => 'Montreal, QC', - 1514395 => 'Montreal, QC', - 1514396 => 'Montreal, QC', - 1514397 => 'Montreal, QC', - 1514398 => 'Montreal, QC', - 1514419 => 'Montreal, QC', - 1514422 => 'Dorval, QC', - 1514426 => 'Pointe-Claire, QC', - 1514428 => 'Pointe-Claire, QC', - 1514439 => 'Montreal, QC', - 1514461 => 'Montreal, QC', - 1514481 => 'Montreal, QC', - 1514482 => 'Montreal, QC', - 1514483 => 'Montreal, QC', - 1514484 => 'Montreal, QC', - 1514485 => 'Montreal, QC', - 1514486 => 'Montreal, QC', - 1514487 => 'Montreal, QC', - 1514488 => 'Montreal, QC', - 1514489 => 'Montreal, QC', - 1514495 => 'Montreal, QC', - 1514498 => 'Pointe-aux-Trembles, QC', - 1514499 => 'Montreal, QC', - 1514504 => 'Montreal, QC', - 1514507 => 'Montreal, QC', - 1514508 => 'Montreal, QC', - 1514509 => 'Montreal, QC', - 1514510 => 'Montreal, QC', - 1514521 => 'Montreal, QC', - 1514522 => 'Montreal, QC', - 1514523 => 'Montreal, QC', - 1514524 => 'Montreal, QC', - 1514525 => 'Montreal, QC', - 1514526 => 'Montreal, QC', - 1514527 => 'Montreal, QC', - 1514528 => 'Montreal, QC', - 1514529 => 'Montreal, QC', - 1514543 => 'Montreal, QC', - 1514544 => 'Montreal, QC', - 1514564 => 'Montreal, QC', - 1514593 => 'Montreal, QC', - 1514595 => 'Lasalle, QC', - 1514596 => 'Montreal, QC', - 1514598 => 'Montreal, QC', - 1514630 => 'Pointe-Claire, QC', - 1514631 => 'Dorval, QC', - 1514633 => 'Dorval, QC', - 1514634 => 'Lachine, QC', - 1514636 => 'Dorval, QC', - 1514637 => 'Lachine, QC', - 1514639 => 'Lachine, QC', - 1514642 => 'Pointe-aux-Trembles, QC', - 1514658 => 'Montreal, QC', - 1514670 => 'Montreal, QC', - 1514678 => 'Montreal, QC', - 1514694 => 'Pointe-Claire, QC', - 1514695 => 'Pointe-Claire, QC', - 1514697 => 'Pointe-Claire, QC', - 1514721 => 'Montreal, QC', - 1514722 => 'Montreal, QC', - 1514723 => 'Montreal, QC', - 1514725 => 'Montreal, QC', - 1514727 => 'Montreal, QC', - 1514728 => 'Montreal, QC', - 1514729 => 'Montreal, QC', - 1514731 => 'Montreal, QC', - 1514733 => 'Montreal, QC', - 1514735 => 'Montreal, QC', - 1514736 => 'Montreal, QC', - 1514737 => 'Montreal, QC', - 1514738 => 'Montreal, QC', - 1514739 => 'Montreal, QC', - 1514744 => 'Saint-Laurent, QC', - 1514747 => 'Saint-Laurent, QC', - 1514748 => 'Saint-Laurent, QC', - 1514750 => 'Montreal, QC', - 1514759 => 'Montreal, QC', - 1514761 => 'Verdun, QC', - 1514788 => 'Montreal, QC', - 1514789 => 'Montreal, QC', - 1514798 => 'Montreal, QC', - 1514807 => 'Montreal, QC', - 1514840 => 'Montreal, QC', - 1514842 => 'Montreal, QC', - 1514843 => 'Montreal, QC', - 1514844 => 'Montreal, QC', - 1514845 => 'Montreal, QC', - 1514846 => 'Montreal, QC', - 1514847 => 'Montreal, QC', - 1514848 => 'Montreal, QC', - 1514849 => 'Montreal, QC', - 1514855 => 'Saint-Laurent, QC', - 1514858 => 'Montreal, QC', - 1514861 => 'Montreal, QC', - 1514866 => 'Montreal, QC', - 1514868 => 'Montreal, QC', - 1514871 => 'Montreal, QC', - 1514872 => 'Montreal, QC', - 1514874 => 'Montreal, QC', - 1514875 => 'Montreal, QC', - 1514876 => 'Montreal, QC', - 1514878 => 'Montreal, QC', - 1514879 => 'Montreal, QC', - 1514899 => 'Montreal, QC', - 1514903 => 'Montreal, QC', - 1514904 => 'Montreal, QC', - 1514905 => 'Montreal, QC', - 1514906 => 'Montreal, QC', - 1514908 => 'Montreal, QC', - 1514931 => 'Montreal, QC', - 1514932 => 'Montreal, QC', - 1514933 => 'Montreal, QC', - 1514934 => 'Montreal, QC', - 1514935 => 'Montreal, QC', - 1514937 => 'Montreal, QC', - 1514938 => 'Montreal, QC', - 1514939 => 'Montreal, QC', - 1514940 => 'Montreal, QC', - 1514948 => 'Montreal, QC', - 1514954 => 'Montreal, QC', - 1514956 => 'Saint-Laurent, QC', - 1514982 => 'Montreal, QC', - 1514985 => 'Montreal, QC', - 1514987 => 'Montreal, QC', - 1514989 => 'Montreal, QC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1515.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1515.php deleted file mode 100644 index fc3cf6862..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1515.php +++ /dev/null @@ -1,93 +0,0 @@ - 'Iowa', - 1515221 => 'West Des Moines, IA', - 1515222 => 'West Des Moines, IA', - 1515223 => 'West Des Moines, IA', - 1515224 => 'West Des Moines, IA', - 1515225 => 'West Des Moines, IA', - 1515232 => 'Ames, IA', - 1515233 => 'Ames, IA', - 1515237 => 'Des Moines, IA', - 1515239 => 'Ames, IA', - 1515241 => 'Des Moines, IA', - 1515242 => 'Des Moines, IA', - 1515243 => 'Des Moines, IA', - 1515244 => 'Des Moines, IA', - 1515245 => 'Des Moines, IA', - 1515246 => 'Des Moines, IA', - 1515247 => 'Des Moines, IA', - 1515255 => 'Des Moines, IA', - 1515256 => 'Des Moines, IA', - 1515262 => 'Des Moines, IA', - 1515263 => 'Des Moines, IA', - 1515264 => 'Des Moines, IA', - 1515265 => 'Des Moines, IA', - 1515266 => 'Des Moines, IA', - 1515267 => 'West Des Moines, IA', - 1515271 => 'Des Moines, IA', - 1515274 => 'Des Moines, IA', - 1515275 => 'Ogden, IA', - 1515277 => 'Des Moines, IA', - 1515279 => 'Des Moines, IA', - 1515280 => 'Des Moines, IA', - 1515281 => 'Des Moines, IA', - 1515282 => 'Des Moines, IA', - 1515283 => 'Des Moines, IA', - 1515284 => 'Des Moines, IA', - 1515285 => 'Des Moines, IA', - 1515286 => 'Des Moines, IA', - 1515287 => 'Des Moines, IA', - 1515288 => 'Des Moines, IA', - 1515289 => 'Ankeny, IA', - 1515292 => 'Ames, IA', - 1515294 => 'Ames, IA', - 1515295 => 'Algona, IA', - 1515327 => 'West Des Moines, IA', - 1515332 => 'Humboldt, IA', - 1515352 => 'Gowrie, IA', - 1515382 => 'Nevada, IA', - 1515386 => 'Jefferson, IA', - 1515432 => 'Boone, IA', - 1515433 => 'Boone, IA', - 1515440 => 'West Des Moines, IA', - 1515448 => 'Eagle Grove, IA', - 1515453 => 'West Des Moines, IA', - 1515457 => 'West Des Moines, IA', - 1515462 => 'Winterset, IA', - 1515465 => 'Perry, IA', - 1515523 => 'Stuart, IA', - 1515532 => 'Clarion, IA', - 1515573 => 'Fort Dodge, IA', - 1515574 => 'Fort Dodge, IA', - 1515576 => 'Fort Dodge, IA', - 1515597 => 'Huxley, IA', - 1515643 => 'Des Moines, IA', - 1515674 => 'Colfax, IA', - 1515699 => 'Des Moines, IA', - 1515733 => 'Story City, IA', - 1515795 => 'Madrid, IA', - 1515832 => 'Webster City, IA', - 1515885 => 'Bancroft, IA', - 1515887 => 'West Bend, IA', - 1515953 => 'Des Moines, IA', - 1515955 => 'Fort Dodge, IA', - 1515957 => 'Altoona, IA', - 1515961 => 'Indianola, IA', - 1515962 => 'Indianola, IA', - 1515963 => 'Ankeny, IA', - 1515964 => 'Ankeny, IA', - 1515965 => 'Ankeny, IA', - 1515967 => 'Altoona, IA', - 1515981 => 'Norwalk, IA', - 1515984 => 'Polk City, IA', - 1515986 => 'Grimes, IA', - 1515987 => 'Waukee, IA', - 1515989 => 'Carlisle, IA', - 1515993 => 'Adel, IA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1516.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1516.php deleted file mode 100644 index 6585f0cc2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1516.php +++ /dev/null @@ -1,77 +0,0 @@ - 'New York', - 1516222 => 'Garden City, NY', - 1516229 => 'Uniondale, NY', - 1516249 => 'Farmingdale, NY', - 1516256 => 'Valley Stream, NY', - 1516293 => 'Farmingdale, NY', - 1516333 => 'Westbury, NY', - 1516334 => 'Westbury, NY', - 1516338 => 'Westbury, NY', - 1516349 => 'Plainview, NY', - 1516364 => 'Syosset, NY', - 1516365 => 'Manhasset, NY', - 1516367 => 'Woodbury, NY', - 1516420 => 'Farmingdale, NY', - 1516431 => 'Long Beach, NY', - 1516432 => 'Long Beach, NY', - 1516441 => 'Great Neck, NY', - 1516466 => 'Great Neck, NY', - 1516482 => 'Great Neck, NY', - 1516487 => 'Great Neck, NY', - 1516496 => 'Syosset, NY', - 1516504 => 'Great Neck, NY', - 1516522 => 'Uniondale, NY', - 1516541 => 'Massapequa, NY', - 1516561 => 'Valley Stream, NY', - 1516562 => 'Manhasset, NY', - 1516568 => 'Valley Stream, NY', - 1516572 => 'East Meadow, NY', - 1516576 => 'Plainview, NY', - 1516609 => 'Glen Cove, NY', - 1516624 => 'Oyster Bay, NY', - 1516626 => 'Roslyn Heights, NY', - 1516627 => 'Manhasset, NY', - 1516628 => 'Bayville, NY', - 1516632 => 'Oceanside, NY', - 1516663 => 'Mineola, NY', - 1516671 => 'Glen Cove, NY', - 1516674 => 'Glen Cove, NY', - 1516676 => 'Glen Cove, NY', - 1516682 => 'Syosset, NY', - 1516692 => 'Woodbury, NY', - 1516694 => 'Farmingdale, NY', - 1516705 => 'Rockville Centre, NY', - 1516734 => 'New Hyde Park, NY', - 1516745 => 'Garden City, NY', - 1516752 => 'Farmingdale, NY', - 1516764 => 'Rockville Centre, NY', - 1516767 => 'Port Washington, NY', - 1516773 => 'Great Neck, NY', - 1516791 => 'Valley Stream, NY', - 1516794 => 'East Meadow, NY', - 1516795 => 'Massapequa, NY', - 1516796 => 'Levittown, NY', - 1516797 => 'Massapequa, NY', - 1516798 => 'Massapequa, NY', - 1516799 => 'Massapequa, NY', - 1516823 => 'Valley Stream, NY', - 1516825 => 'Valley Stream, NY', - 1516829 => 'Great Neck, NY', - 1516869 => 'Manhasset, NY', - 1516872 => 'Valley Stream, NY', - 1516876 => 'Westbury, NY', - 1516883 => 'Port Washington, NY', - 1516889 => 'Long Beach, NY', - 1516897 => 'Long Beach, NY', - 1516921 => 'Syosset, NY', - 1516922 => 'Oyster Bay, NY', - 1516944 => 'Port Washington, NY', - 1516997 => 'Westbury, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1517.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1517.php deleted file mode 100644 index bc3a7d5a0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1517.php +++ /dev/null @@ -1,114 +0,0 @@ - 'Michigan', - 1517203 => 'East Lansing, MI', - 1517223 => 'Fowlerville, MI', - 1517244 => 'Mason, MI', - 1517263 => 'Adrian, MI', - 1517264 => 'Adrian, MI', - 1517265 => 'Adrian, MI', - 1517266 => 'Adrian, MI', - 1517272 => 'Lansing, MI', - 1517278 => 'Coldwater, MI', - 1517279 => 'Coldwater, MI', - 1517316 => 'Lansing, MI', - 1517321 => 'Lansing, MI', - 1517322 => 'Lansing, MI', - 1517323 => 'Lansing, MI', - 1517324 => 'East Lansing, MI', - 1517327 => 'Lansing, MI', - 1517332 => 'East Lansing, MI', - 1517333 => 'East Lansing, MI', - 1517336 => 'East Lansing, MI', - 1517337 => 'East Lansing, MI', - 1517339 => 'Haslett, MI', - 1517346 => 'Lansing, MI', - 1517347 => 'Okemos, MI', - 1517349 => 'Okemos, MI', - 1517351 => 'East Lansing, MI', - 1517353 => 'East Lansing, MI', - 1517355 => 'East Lansing, MI', - 1517364 => 'Lansing, MI', - 1517367 => 'Lansing, MI', - 1517369 => 'Bronson, MI', - 1517372 => 'Lansing, MI', - 1517373 => 'Lansing, MI', - 1517374 => 'Lansing, MI', - 1517381 => 'Okemos, MI', - 1517393 => 'Lansing, MI', - 1517394 => 'Lansing, MI', - 1517423 => 'Tecumseh, MI', - 1517424 => 'Tecumseh, MI', - 1517437 => 'Hillsdale, MI', - 1517439 => 'Hillsdale, MI', - 1517448 => 'Hudson, MI', - 1517456 => 'Clinton, MI', - 1517458 => 'Morenci, MI', - 1517467 => 'Onsted, MI', - 1517482 => 'Lansing, MI', - 1517483 => 'Lansing, MI', - 1517484 => 'Lansing, MI', - 1517485 => 'Lansing, MI', - 1517486 => 'Blissfield, MI', - 1517487 => 'Lansing, MI', - 1517521 => 'Webberville, MI', - 1517522 => 'Grass Lake Charter Township, MI', - 1517523 => 'Osseo, MI', - 1517524 => 'Concord, MI', - 1517529 => 'Clarklake, MI', - 1517531 => 'Parma, MI', - 1517540 => 'Howell, MI', - 1517541 => 'Charlotte, MI', - 1517542 => 'Litchfield, MI', - 1517543 => 'Charlotte, MI', - 1517545 => 'Howell, MI', - 1517546 => 'Howell, MI', - 1517548 => 'Howell, MI', - 1517552 => 'Howell, MI', - 1517568 => 'Homer, MI', - 1517589 => 'Leslie, MI', - 1517592 => 'Brooklyn, MI', - 1517622 => 'Grand Ledge, MI', - 1517625 => 'Perry, MI', - 1517627 => 'Grand Ledge, MI', - 1517629 => 'Albion, MI', - 1517639 => 'Quincy, MI', - 1517641 => 'Bath Township, MI', - 1517645 => 'Potterville, MI', - 1517646 => 'Dimondale, MI', - 1517647 => 'Portland, MI', - 1517651 => 'Laingsburg, MI', - 1517655 => 'Williamston, MI', - 1517663 => 'Eaton Rapids, MI', - 1517668 => 'DeWitt, MI', - 1517669 => 'DeWitt, MI', - 1517676 => 'Mason, MI', - 1517694 => 'Holt, MI', - 1517699 => 'Holt, MI', - 1517741 => 'Union City, MI', - 1517750 => 'Jackson, MI', - 1517764 => 'Jackson, MI', - 1517768 => 'Jackson, MI', - 1517780 => 'Jackson, MI', - 1517782 => 'Jackson, MI', - 1517783 => 'Jackson, MI', - 1517784 => 'Jackson, MI', - 1517787 => 'Jackson, MI', - 1517788 => 'Jackson, MI', - 1517789 => 'Jackson, MI', - 1517796 => 'Jackson, MI', - 1517841 => 'Jackson, MI', - 1517849 => 'Jonesville, MI', - 1517851 => 'Stockbridge, MI', - 1517852 => 'Nashville, MI', - 1517882 => 'Lansing, MI', - 1517886 => 'Lansing, MI', - 1517887 => 'Lansing, MI', - 1517913 => 'Lansing Charter Township, MI', - 1517975 => 'Lansing, MI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1518.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1518.php deleted file mode 100644 index 13374748f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1518.php +++ /dev/null @@ -1,175 +0,0 @@ - 'New York', - 1518218 => 'Albany, NY', - 1518220 => 'Latham, NY', - 1518234 => 'Cobleskill, NY', - 1518236 => 'Mooers, NY', - 1518237 => 'Cohoes, NY', - 1518243 => 'Schenectady, NY', - 1518251 => 'North Creek, NY', - 1518262 => 'Albany, NY', - 1518263 => 'Hunter, NY', - 1518266 => 'Troy, NY', - 1518268 => 'Troy, NY', - 1518270 => 'Troy, NY', - 1518271 => 'Troy, NY', - 1518272 => 'Troy, NY', - 1518273 => 'Troy, NY', - 1518274 => 'Troy, NY', - 1518279 => 'Troy, NY', - 1518286 => 'Rensselaer, NY', - 1518292 => 'Albany, NY', - 1518295 => 'Schoharie, NY', - 1518297 => 'Rouses Point, NY', - 1518298 => 'Champlain, NY', - 1518306 => 'Saratoga Springs, NY', - 1518324 => 'Plattsburgh, NY', - 1518325 => 'Hillsdale, NY', - 1518326 => 'Troy, NY', - 1518329 => 'Copake, NY', - 1518346 => 'Schenectady, NY', - 1518347 => 'Schenectady, NY', - 1518348 => 'Clifton Park, NY', - 1518355 => 'Schenectady, NY', - 1518356 => 'Schenectady, NY', - 1518357 => 'Schenectady, NY', - 1518358 => 'Hogansburg, NY', - 1518359 => 'Tupper Lake, NY', - 1518370 => 'Schenectady, NY', - 1518371 => 'Clifton Park, NY', - 1518372 => 'Schenectady, NY', - 1518373 => 'Clifton Park, NY', - 1518374 => 'Schenectady, NY', - 1518377 => 'Schenectady, NY', - 1518381 => 'Schenectady, NY', - 1518382 => 'Schenectady, NY', - 1518383 => 'Clifton Park, NY', - 1518392 => 'Chatham, NY', - 1518393 => 'Schenectady, NY', - 1518398 => 'Pine Plains, NY', - 1518426 => 'Albany, NY', - 1518427 => 'Albany, NY', - 1518432 => 'Albany, NY', - 1518434 => 'Albany, NY', - 1518435 => 'Albany, NY', - 1518436 => 'Albany, NY', - 1518437 => 'Albany, NY', - 1518438 => 'Albany, NY', - 1518439 => 'Delmar, NY', - 1518446 => 'Albany, NY', - 1518447 => 'Albany, NY', - 1518449 => 'Albany, NY', - 1518452 => 'Albany, NY', - 1518453 => 'Albany, NY', - 1518456 => 'Albany, NY', - 1518458 => 'Albany, NY', - 1518459 => 'Albany, NY', - 1518462 => 'Albany, NY', - 1518463 => 'Albany, NY', - 1518464 => 'Albany, NY', - 1518465 => 'Albany, NY', - 1518472 => 'Albany, NY', - 1518474 => 'Albany, NY', - 1518478 => 'Delmar, NY', - 1518481 => 'Malone, NY', - 1518482 => 'Albany, NY', - 1518483 => 'Malone, NY', - 1518487 => 'Albany, NY', - 1518489 => 'Albany, NY', - 1518494 => 'Chestertown, NY', - 1518497 => 'Chateaugay, NY', - 1518499 => 'Whitehall, NY', - 1518512 => 'Albany, NY', - 1518523 => 'Lake Placid, NY', - 1518525 => 'Albany, NY', - 1518529 => 'Moira, NY', - 1518532 => 'Schroon Lake, NY', - 1518537 => 'Germantown, NY', - 1518546 => 'Port Henry, NY', - 1518561 => 'Plattsburgh, NY', - 1518562 => 'Plattsburgh, NY', - 1518563 => 'Plattsburgh, NY', - 1518566 => 'Plattsburgh, NY', - 1518568 => 'St. Johnsville, NY', - 1518580 => 'Saratoga Springs, NY', - 1518581 => 'Saratoga Springs, NY', - 1518583 => 'Saratoga Springs, NY', - 1518584 => 'Saratoga Springs, NY', - 1518585 => 'Ticonderoga, NY', - 1518587 => 'Saratoga Springs, NY', - 1518589 => 'Tannersville, NY', - 1518597 => 'Crown Point, NY', - 1518622 => 'Cairo, NY', - 1518623 => 'Warrensburg, NY', - 1518626 => 'Albany, NY', - 1518638 => 'Argyle, NY', - 1518642 => 'Granville, NY', - 1518643 => 'Peru, NY', - 1518644 => 'Bolton Landing, NY', - 1518647 => 'Au Sable Forks, NY', - 1518648 => 'Indian Lake, NY', - 1518654 => 'Corinth, NY', - 1518661 => 'Mayfield, NY', - 1518664 => 'Mechanicville, NY', - 1518668 => 'Lake George, NY', - 1518673 => 'Canajoharie, NY', - 1518674 => 'Averill Park, NY', - 1518677 => 'Cambridge, NY', - 1518686 => 'Hoosick Falls, NY', - 1518689 => 'Albany, NY', - 1518692 => 'Greenwich, NY', - 1518694 => 'Albany, NY', - 1518695 => 'Schuylerville, NY', - 1518725 => 'Gloversville, NY', - 1518729 => 'Albany, NY', - 1518731 => 'Coxsackie, NY', - 1518734 => 'Windham, NY', - 1518736 => 'Johnstown, NY', - 1518747 => 'Hudson Falls, NY', - 1518753 => 'Schaghticoke, NY', - 1518756 => 'Ravena, NY', - 1518758 => 'Valatie, NY', - 1518762 => 'Johnstown, NY', - 1518765 => 'Voorheesville, NY', - 1518766 => 'Nassau, NY', - 1518767 => 'Selkirk, NY', - 1518773 => 'Gloversville, NY', - 1518782 => 'Latham, NY', - 1518783 => 'Latham, NY', - 1518785 => 'Latham, NY', - 1518786 => 'Latham, NY', - 1518789 => 'Millerton, NY', - 1518794 => 'New Lebanon, NY', - 1518822 => 'Hudson, NY', - 1518827 => 'Middleburgh, NY', - 1518828 => 'Hudson, NY', - 1518834 => 'Keeseville, NY', - 1518842 => 'Amsterdam, NY', - 1518843 => 'Amsterdam, NY', - 1518846 => 'Chazy, NY', - 1518853 => 'Fonda, NY', - 1518854 => 'Salem, NY', - 1518861 => 'Altamont, NY', - 1518862 => 'Albany, NY', - 1518863 => 'Northville, NY', - 1518869 => 'Albany, NY', - 1518873 => 'Elizabethtown, NY', - 1518882 => 'Galway, NY', - 1518883 => 'Broadalbin, NY', - 1518884 => 'Ballston Spa, NY', - 1518885 => 'Ballston Spa, NY', - 1518891 => 'Saranac Lake, NY', - 1518926 => 'Glens Falls, NY', - 1518943 => 'Catskill, NY', - 1518946 => 'Wilmington, NY', - 1518962 => 'Westport, NY', - 1518963 => 'Willsboro, NY', - 1518966 => 'Greenville, NY', - 1518993 => 'Fort Plain, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1519.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1519.php deleted file mode 100644 index b343a2cb8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1519.php +++ /dev/null @@ -1,289 +0,0 @@ - 'Ontario', - 1519204 => 'London, ON', - 1519227 => 'Lucan, ON', - 1519235 => 'Exeter, ON', - 1519236 => 'Zurich, ON', - 1519238 => 'Grand Bend, ON', - 1519245 => 'Strathroy, ON', - 1519250 => 'Windsor, ON', - 1519251 => 'Windsor, ON', - 1519252 => 'Windsor, ON', - 1519253 => 'Windsor, ON', - 1519254 => 'Windsor, ON', - 1519255 => 'Windsor, ON', - 1519256 => 'Windsor, ON', - 1519258 => 'Windsor, ON', - 1519264 => 'Mount Brydges, ON', - 1519265 => 'Guelph, ON', - 1519267 => 'Cambridge, ON', - 1519268 => 'Dorchester, ON', - 1519271 => 'Stratford, ON', - 1519272 => 'Stratford, ON', - 1519273 => 'Stratford, ON', - 1519275 => 'Stratford, ON', - 1519284 => 'St. Marys, ON', - 1519287 => 'Glencoe, ON', - 1519291 => 'Listowel, ON', - 1519294 => 'Parkhill, ON', - 1519304 => 'Brantford, ON', - 1519322 => 'Leamington, ON', - 1519323 => 'Mount Forest, ON', - 1519326 => 'Leamington, ON', - 1519332 => 'Sarnia, ON', - 1519335 => 'Gorrie, ON', - 1519336 => 'Sarnia, ON', - 1519337 => 'Sarnia, ON', - 1519338 => 'Harriston, ON', - 1519341 => 'Guelph, ON', - 1519342 => 'Kitchener, ON', - 1519343 => 'Palmerston, ON', - 1519344 => 'Sarnia, ON', - 1519348 => 'Mitchell, ON', - 1519351 => 'Chatham, ON', - 1519352 => 'Chatham, ON', - 1519353 => 'Paisley, ON', - 1519354 => 'Chatham, ON', - 1519355 => 'Chatham, ON', - 1519357 => 'Wingham, ON', - 1519358 => 'Chatham, ON', - 1519363 => 'Chesley, ON', - 1519364 => 'Hanover, ON', - 1519367 => 'Mildmay, ON', - 1519368 => 'Tiverton, ON', - 1519369 => 'Durham, ON', - 1519371 => 'Owen Sound, ON', - 1519372 => 'Owen Sound, ON', - 1519376 => 'Owen Sound, ON', - 1519383 => 'Sarnia, ON', - 1519389 => 'Port Elgin, ON', - 1519392 => 'Teeswater, ON', - 1519393 => 'Sebringville, ON', - 1519395 => 'Ripley, ON', - 1519396 => 'Kincardine, ON', - 1519421 => 'Woodstock, ON', - 1519422 => 'Sauble Beach, ON', - 1519424 => 'Burgessville, ON', - 1519425 => 'Ingersoll, ON', - 1519426 => 'Simcoe, ON', - 1519428 => 'Simcoe, ON', - 1519432 => 'London, ON', - 1519433 => 'London, ON', - 1519434 => 'London, ON', - 1519436 => 'Chatham, ON', - 1519438 => 'London, ON', - 1519439 => 'London, ON', - 1519442 => 'Paris, ON', - 1519443 => 'Waterford, ON', - 1519445 => 'Ohsweken, ON', - 1519448 => 'St George Brant, ON', - 1519449 => 'Burford, ON', - 1519451 => 'London, ON', - 1519452 => 'London, ON', - 1519453 => 'London, ON', - 1519455 => 'London, ON', - 1519457 => 'London, ON', - 1519461 => 'Thorndale, ON', - 1519471 => 'London, ON', - 1519472 => 'London, ON', - 1519473 => 'London, ON', - 1519474 => 'London, ON', - 1519482 => 'Clinton, ON', - 1519485 => 'Ingersoll, ON', - 1519524 => 'Goderich, ON', - 1519527 => 'Seaforth, ON', - 1519533 => 'Woodstock, ON', - 1519534 => 'Wiarton, ON', - 1519537 => 'Woodstock, ON', - 1519538 => 'Meaford, ON', - 1519539 => 'Woodstock, ON', - 1519541 => 'Sarnia, ON', - 1519542 => 'Sarnia, ON', - 1519565 => 'Bayfield, ON', - 1519568 => 'Kitchener, ON', - 1519569 => 'Kitchener, ON', - 1519570 => 'Kitchener, ON', - 1519571 => 'Kitchener, ON', - 1519576 => 'Kitchener, ON', - 1519578 => 'Kitchener, ON', - 1519579 => 'Kitchener, ON', - 1519582 => 'Delhi, ON', - 1519583 => 'Port Dover, ON', - 1519584 => 'Kitchener, ON', - 1519585 => 'Kitchener, ON', - 1519586 => 'Port Rowan, ON', - 1519587 => 'Jarvis, ON', - 1519595 => 'Milverton, ON', - 1519596 => 'Tobermory, ON', - 1519599 => 'Thornbury, ON', - 1519601 => 'London, ON', - 1519620 => 'Cambridge, ON', - 1519621 => 'Cambridge, ON', - 1519622 => 'Cambridge, ON', - 1519623 => 'Cambridge, ON', - 1519624 => 'Cambridge, ON', - 1519627 => 'Wallaceburg, ON', - 1519631 => 'St. Thomas, ON', - 1519632 => 'Ayr, ON', - 1519633 => 'St. Thomas, ON', - 1519634 => 'Baden, ON', - 1519637 => 'St. Thomas, ON', - 1519638 => 'Drayton, ON', - 1519641 => 'London, ON', - 1519642 => 'London, ON', - 1519644 => 'Belmont, ON', - 1519645 => 'London, ON', - 1519648 => 'Breslau, ON', - 1519649 => 'London, ON', - 1519650 => 'Cambridge, ON', - 1519651 => 'Cambridge, ON', - 1519653 => 'Cambridge, ON', - 1519655 => 'Tavistock, ON', - 1519656 => 'Wellesley, ON', - 1519657 => 'London, ON', - 1519658 => 'Cambridge, ON', - 1519659 => 'London, ON', - 1519660 => 'London, ON', - 1519661 => 'London, ON', - 1519662 => 'New Hamburg, ON', - 1519663 => 'London, ON', - 1519664 => 'St. Jacobs, ON', - 1519666 => 'Ilderton, ON', - 1519667 => 'London, ON', - 1519668 => 'London, ON', - 1519669 => 'Elmira, ON', - 1519672 => 'London, ON', - 1519673 => 'London, ON', - 1519674 => 'Ridgetown, ON', - 1519675 => 'London, ON', - 1519676 => 'Blenheim, ON', - 1519679 => 'London, ON', - 1519680 => 'London, ON', - 1519681 => 'London, ON', - 1519682 => 'Tilbury, ON', - 1519683 => 'Dresden, ON', - 1519685 => 'London, ON', - 1519686 => 'London, ON', - 1519688 => 'Tillsonburg, ON', - 1519690 => 'London, ON', - 1519692 => 'Thamesville, ON', - 1519696 => 'New Dundee, ON', - 1519698 => 'Linwood, ON', - 1519699 => 'St. Clements, ON', - 1519720 => 'Brantford, ON', - 1519725 => 'Waterloo, ON', - 1519727 => 'Emeryville, ON', - 1519728 => 'Belle River, ON', - 1519733 => 'Kingsville, ON', - 1519736 => 'Amherstburg, ON', - 1519737 => 'Maidstone, ON', - 1519738 => 'Harrow, ON', - 1519740 => 'Cambridge, ON', - 1519741 => 'Kitchener, ON', - 1519742 => 'Kitchener, ON', - 1519743 => 'Kitchener, ON', - 1519744 => 'Kitchener, ON', - 1519745 => 'Kitchener, ON', - 1519746 => 'Waterloo, ON', - 1519747 => 'Waterloo, ON', - 1519748 => 'Kitchener, ON', - 1519749 => 'Kitchener, ON', - 1519750 => 'Brantford, ON', - 1519751 => 'Brantford, ON', - 1519752 => 'Brantford, ON', - 1519753 => 'Brantford, ON', - 1519754 => 'Brantford, ON', - 1519756 => 'Brantford, ON', - 1519758 => 'Brantford, ON', - 1519759 => 'Brantford, ON', - 1519762 => 'Dutton, ON', - 1519763 => 'Guelph, ON', - 1519765 => 'Aylmer West, ON', - 1519766 => 'Guelph, ON', - 1519767 => 'Guelph, ON', - 1519770 => 'Brantford, ON', - 1519773 => 'Aylmer West, ON', - 1519776 => 'Essex, ON', - 1519780 => 'Guelph, ON', - 1519782 => 'Port Stanley, ON', - 1519786 => 'Forest, ON', - 1519787 => 'Fergus, ON', - 1519793 => 'Lion\'s Head, ON', - 1519794 => 'Chatsworth, ON', - 1519797 => 'Southampton, ON', - 1519821 => 'Guelph, ON', - 1519822 => 'Guelph, ON', - 1519823 => 'Guelph, ON', - 1519824 => 'Guelph, ON', - 1519825 => 'Wheatley, ON', - 1519826 => 'Guelph, ON', - 1519827 => 'Guelph, ON', - 1519829 => 'Guelph, ON', - 1519832 => 'Port Elgin, ON', - 1519833 => 'Erin, ON', - 1519836 => 'Guelph, ON', - 1519837 => 'Guelph, ON', - 1519839 => 'Cottam, ON', - 1519842 => 'Tillsonburg, ON', - 1519843 => 'Fergus, ON', - 1519845 => 'Wyoming, ON', - 1519846 => 'Elora, ON', - 1519848 => 'Arthur, ON', - 1519850 => 'London, ON', - 1519853 => 'Acton, ON', - 1519855 => 'Hillsburgh, ON', - 1519856 => 'Rockwood, ON', - 1519858 => 'London, ON', - 1519862 => 'Corunna, ON', - 1519863 => 'Norwich, ON', - 1519875 => 'Langton, ON', - 1519880 => 'Waterloo, ON', - 1519881 => 'Walkerton, ON', - 1519882 => 'Petrolia, ON', - 1519883 => 'Waterloo, ON', - 1519884 => 'Waterloo, ON', - 1519885 => 'Waterloo, ON', - 1519886 => 'Waterloo, ON', - 1519887 => 'Brussels, ON', - 1519888 => 'Waterloo, ON', - 1519893 => 'Kitchener, ON', - 1519894 => 'Kitchener, ON', - 1519895 => 'Kitchener, ON', - 1519896 => 'Kitchener, ON', - 1519915 => 'Windsor, ON', - 1519923 => 'Dundalk, ON', - 1519924 => 'Flesherton, ON', - 1519925 => 'Shelburne, ON', - 1519927 => 'Caledon, ON', - 1519928 => 'Grand Valley, ON', - 1519934 => 'Tara, ON', - 1519936 => 'London, ON', - 1519938 => 'Orangeville, ON', - 1519940 => 'Orangeville, ON', - 1519941 => 'Orangeville, ON', - 1519942 => 'Orangeville, ON', - 1519944 => 'Windsor, ON', - 1519945 => 'Windsor, ON', - 1519946 => 'Windsor, ON', - 1519948 => 'Windsor, ON', - 1519951 => 'London, ON', - 1519954 => 'Kitchener, ON', - 1519962 => 'Windsor, ON', - 1519963 => 'London, ON', - 1519966 => 'Windsor, ON', - 1519967 => 'Windsor, ON', - 1519969 => 'Windsor, ON', - 1519971 => 'Windsor, ON', - 1519972 => 'Windsor, ON', - 1519973 => 'Windsor, ON', - 1519974 => 'Windsor, ON', - 1519977 => 'Windsor, ON', - 1519978 => 'Windsor, ON', - 1519986 => 'Markdale, ON', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1520.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1520.php deleted file mode 100644 index 935302c09..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1520.php +++ /dev/null @@ -1,158 +0,0 @@ - 'Arizona', - 1520207 => 'Tucson, AZ', - 1520219 => 'Tucson, AZ', - 1520225 => 'Tucson, AZ', - 1520229 => 'Tucson, AZ', - 1520232 => 'Tucson, AZ', - 1520281 => 'Nogales, AZ', - 1520287 => 'Nogales, AZ', - 1520290 => 'Tucson, AZ', - 1520292 => 'Tucson, AZ', - 1520293 => 'Tucson, AZ', - 1520294 => 'Tucson, AZ', - 1520295 => 'Tucson, AZ', - 1520296 => 'Tucson, AZ', - 1520297 => 'Tucson, AZ', - 1520298 => 'Tucson, AZ', - 1520299 => 'Tucson, AZ', - 1520300 => 'Tucson, AZ', - 1520316 => 'Casa Grande, AZ', - 1520318 => 'Tucson, AZ', - 1520319 => 'Tucson, AZ', - 1520320 => 'Tucson, AZ', - 1520321 => 'Tucson, AZ', - 1520322 => 'Tucson, AZ', - 1520323 => 'Tucson, AZ', - 1520324 => 'Tucson, AZ', - 1520325 => 'Tucson, AZ', - 1520326 => 'Tucson, AZ', - 1520327 => 'Tucson, AZ', - 1520344 => 'Tucson, AZ', - 1520364 => 'Douglas, AZ', - 1520377 => 'Nogales, AZ', - 1520378 => 'Sierra Vista, AZ', - 1520382 => 'Tucson, AZ', - 1520383 => 'Sells, AZ', - 1520384 => 'Willcox, AZ', - 1520387 => 'Ajo, AZ', - 1520404 => 'Tucson, AZ', - 1520408 => 'Tucson, AZ', - 1520417 => 'Sierra Vista, AZ', - 1520421 => 'Casa Grande, AZ', - 1520423 => 'Casa Grande, AZ', - 1520426 => 'Casa Grande, AZ', - 1520432 => 'Bisbee, AZ', - 1520439 => 'Sierra Vista, AZ', - 1520444 => 'Tucson, AZ', - 1520452 => 'Sierra Vista, AZ', - 1520455 => 'Sonoita, AZ', - 1520456 => 'Huachuca City, AZ', - 1520457 => 'Tombstone, AZ', - 1520458 => 'Sierra Vista, AZ', - 1520459 => 'Sierra Vista, AZ', - 1520466 => 'Eloy, AZ', - 1520495 => 'Tucson, AZ', - 1520498 => 'Tucson, AZ', - 1520512 => 'Tucson, AZ', - 1520514 => 'Tucson, AZ', - 1520515 => 'Sierra Vista, AZ', - 1520529 => 'Tucson, AZ', - 1520531 => 'Tucson, AZ', - 1520544 => 'Tucson, AZ', - 1520545 => 'Tucson, AZ', - 1520546 => 'Tucson, AZ', - 1520547 => 'Tucson, AZ', - 1520562 => 'Sacaton, AZ', - 1520568 => 'Maricopa, AZ', - 1520571 => 'Tucson, AZ', - 1520572 => 'Tucson, AZ', - 1520573 => 'Tucson, AZ', - 1520574 => 'Tucson, AZ', - 1520575 => 'Tucson, AZ', - 1520577 => 'Tucson, AZ', - 1520578 => 'Tucson, AZ', - 1520579 => 'Tucson, AZ', - 1520584 => 'Tucson, AZ', - 1520586 => 'Benson, AZ', - 1520615 => 'Tucson, AZ', - 1520620 => 'Tucson, AZ', - 1520621 => 'Tucson, AZ', - 1520622 => 'Tucson, AZ', - 1520623 => 'Tucson, AZ', - 1520624 => 'Tucson, AZ', - 1520625 => 'Green Valley, AZ', - 1520626 => 'Tucson, AZ', - 1520628 => 'Tucson, AZ', - 1520629 => 'Tucson, AZ', - 1520647 => 'Tucson, AZ', - 1520648 => 'Green Valley, AZ', - 1520663 => 'Tucson, AZ', - 1520670 => 'Tucson, AZ', - 1520682 => 'Marana, AZ', - 1520690 => 'Tucson, AZ', - 1520694 => 'Tucson, AZ', - 1520696 => 'Tucson, AZ', - 1520721 => 'Tucson, AZ', - 1520722 => 'Tucson, AZ', - 1520723 => 'Coolidge, AZ', - 1520731 => 'Tucson, AZ', - 1520733 => 'Tucson, AZ', - 1520740 => 'Tucson, AZ', - 1520741 => 'Tucson, AZ', - 1520742 => 'Tucson, AZ', - 1520743 => 'Tucson, AZ', - 1520744 => 'Tucson, AZ', - 1520745 => 'Tucson, AZ', - 1520746 => 'Tucson, AZ', - 1520747 => 'Tucson, AZ', - 1520748 => 'Tucson, AZ', - 1520749 => 'Tucson, AZ', - 1520750 => 'Tucson, AZ', - 1520751 => 'Tucson, AZ', - 1520760 => 'Tucson, AZ', - 1520761 => 'Nogales, AZ', - 1520770 => 'Tucson, AZ', - 1520777 => 'Tucson, AZ', - 1520784 => 'Tucson, AZ', - 1520790 => 'Tucson, AZ', - 1520791 => 'Tucson, AZ', - 1520792 => 'Tucson, AZ', - 1520795 => 'Tucson, AZ', - 1520797 => 'Tucson, AZ', - 1520798 => 'Tucson, AZ', - 1520803 => 'Sierra Vista, AZ', - 1520805 => 'Douglas, AZ', - 1520807 => 'Tucson, AZ', - 1520818 => 'Tucson, AZ', - 1520822 => 'Tucson, AZ', - 1520825 => 'Tucson, AZ', - 1520826 => 'Pearce, AZ', - 1520829 => 'Tucson, AZ', - 1520836 => 'Casa Grande, AZ', - 1520868 => 'Florence, AZ', - 1520874 => 'Tucson, AZ', - 1520876 => 'Casa Grande, AZ', - 1520877 => 'Tucson, AZ', - 1520881 => 'Tucson, AZ', - 1520882 => 'Tucson, AZ', - 1520883 => 'Tucson, AZ', - 1520884 => 'Tucson, AZ', - 1520885 => 'Tucson, AZ', - 1520886 => 'Tucson, AZ', - 1520887 => 'Tucson, AZ', - 1520888 => 'Tucson, AZ', - 1520889 => 'Tucson, AZ', - 1520896 => 'Oracle, AZ', - 1520903 => 'Tucson, AZ', - 1520907 => 'Tucson, AZ', - 1520908 => 'Tucson, AZ', - 1520917 => 'Tucson, AZ', - 1520977 => 'Tucson, AZ', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1530.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1530.php deleted file mode 100644 index a4da86288..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1530.php +++ /dev/null @@ -1,163 +0,0 @@ - 'California', - 1530209 => 'Redding, CA', - 1530221 => 'Redding, CA', - 1530222 => 'Redding, CA', - 1530223 => 'Redding, CA', - 1530224 => 'Redding, CA', - 1530225 => 'Redding, CA', - 1530226 => 'Redding, CA', - 1530227 => 'Redding, CA', - 1530229 => 'Redding, CA', - 1530233 => 'Alturas, CA', - 1530235 => 'Dunsmuir, CA', - 1530241 => 'Redding, CA', - 1530242 => 'Redding, CA', - 1530243 => 'Redding, CA', - 1530244 => 'Redding, CA', - 1530245 => 'Redding, CA', - 1530246 => 'Redding, CA', - 1530247 => 'Redding, CA', - 1530251 => 'Susanville, CA', - 1530257 => 'Susanville, CA', - 1530258 => 'Chester, CA', - 1530265 => 'Nevada City, CA', - 1530268 => 'Grass Valley, CA', - 1530271 => 'Grass Valley, CA', - 1530272 => 'Grass Valley, CA', - 1530273 => 'Grass Valley, CA', - 1530274 => 'Grass Valley, CA', - 1530275 => 'Shasta Lake, CA', - 1530279 => 'Cedarville, CA', - 1530283 => 'Quincy, CA', - 1530284 => 'Greenville, CA', - 1530295 => 'Placerville, CA', - 1530297 => 'Davis, CA', - 1530318 => 'South Lake Tahoe, CA', - 1530332 => 'Chico, CA', - 1530333 => 'Georgetown, CA', - 1530335 => 'Burney, CA', - 1530336 => 'Fall River Mills, CA', - 1530342 => 'Chico, CA', - 1530343 => 'Chico, CA', - 1530344 => 'Placerville, CA', - 1530345 => 'Chico, CA', - 1530346 => 'Colfax, CA', - 1530347 => 'Cottonwood, CA', - 1530365 => 'Anderson, CA', - 1530367 => 'Foresthill, CA', - 1530378 => 'Anderson, CA', - 1530384 => 'Los Molinos, CA', - 1530406 => 'Woodland, CA', - 1530432 => 'Penn Valley, CA', - 1530458 => 'Colusa, CA', - 1530459 => 'Montague, CA', - 1530467 => 'Etna, CA', - 1530468 => 'Fort Jones, CA', - 1530470 => 'Nevada City, CA', - 1530473 => 'Williams, CA', - 1530474 => 'Shingletown, CA', - 1530476 => 'Arbuckle, CA', - 1530477 => 'Grass Valley, CA', - 1530478 => 'Nevada City, CA', - 1530493 => 'Happy Camp, CA', - 1530527 => 'Red Bluff, CA', - 1530528 => 'Red Bluff, CA', - 1530529 => 'Red Bluff, CA', - 1530532 => 'Oroville, CA', - 1530533 => 'Oroville, CA', - 1530534 => 'Oroville, CA', - 1530538 => 'Oroville, CA', - 1530541 => 'South Lake Tahoe, CA', - 1530542 => 'South Lake Tahoe, CA', - 1530543 => 'South Lake Tahoe, CA', - 1530544 => 'South Lake Tahoe, CA', - 1530546 => 'Kings Beach, CA', - 1530547 => 'Palo Cedro, CA', - 1530550 => 'Truckee, CA', - 1530566 => 'Chico, CA', - 1530573 => 'South Lake Tahoe, CA', - 1530577 => 'South Lake Tahoe, CA', - 1530581 => 'Tahoe City, CA', - 1530582 => 'Truckee, CA', - 1530583 => 'Tahoe City, CA', - 1530587 => 'Truckee, CA', - 1530589 => 'Oroville, CA', - 1530605 => 'Redding, CA', - 1530620 => 'Somerset, CA', - 1530621 => 'Placerville, CA', - 1530622 => 'Placerville, CA', - 1530623 => 'Weaverville, CA', - 1530625 => 'Hoopa, CA', - 1530626 => 'Placerville, CA', - 1530628 => 'Hayfork, CA', - 1530629 => 'Willow Creek, CA', - 1530633 => 'Wheatland, CA', - 1530634 => 'Beale AFB, CA', - 1530642 => 'Placerville, CA', - 1530661 => 'Woodland, CA', - 1530662 => 'Woodland, CA', - 1530666 => 'Woodland, CA', - 1530668 => 'Woodland, CA', - 1530669 => 'Woodland, CA', - 1530671 => 'Yuba City, CA', - 1530673 => 'Yuba City, CA', - 1530674 => 'Yuba City, CA', - 1530695 => 'Live Oak, CA', - 1530722 => 'Redding, CA', - 1530741 => 'Marysville, CA', - 1530742 => 'Marysville, CA', - 1530743 => 'Marysville, CA', - 1530747 => 'Davis, CA', - 1530749 => 'Marysville, CA', - 1530750 => 'Davis, CA', - 1530751 => 'Yuba City, CA', - 1530752 => 'Davis, CA', - 1530753 => 'Davis, CA', - 1530755 => 'Yuba City, CA', - 1530756 => 'Davis, CA', - 1530757 => 'Davis, CA', - 1530758 => 'Davis, CA', - 1530759 => 'Davis, CA', - 1530763 => 'Yuba City, CA', - 1530790 => 'Yuba City, CA', - 1530795 => 'Winters, CA', - 1530809 => 'Chico, CA', - 1530822 => 'Yuba City, CA', - 1530823 => 'Auburn, CA', - 1530824 => 'Corning, CA', - 1530832 => 'Portola, CA', - 1530841 => 'Yreka, CA', - 1530842 => 'Yreka, CA', - 1530846 => 'Gridley, CA', - 1530865 => 'Orland, CA', - 1530872 => 'Paradise, CA', - 1530873 => 'Magalia, CA', - 1530876 => 'Paradise, CA', - 1530877 => 'Paradise, CA', - 1530879 => 'Chico, CA', - 1530885 => 'Auburn, CA', - 1530886 => 'Auburn, CA', - 1530887 => 'Auburn, CA', - 1530888 => 'Auburn, CA', - 1530889 => 'Auburn, CA', - 1530891 => 'Chico, CA', - 1530892 => 'Chico, CA', - 1530893 => 'Chico, CA', - 1530894 => 'Chico, CA', - 1530895 => 'Chico, CA', - 1530896 => 'Chico, CA', - 1530898 => 'Chico, CA', - 1530899 => 'Chico, CA', - 1530923 => 'Yuba City, CA', - 1530926 => 'Mount Shasta, CA', - 1530934 => 'Willows, CA', - 1530938 => 'Weed, CA', - 1530993 => 'Loyalton, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1540.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1540.php deleted file mode 100644 index 4977a7b2a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1540.php +++ /dev/null @@ -1,193 +0,0 @@ - 'Virginia', - 1540206 => 'Roanoke, VA', - 1540213 => 'Staunton, VA', - 1540224 => 'Roanoke, VA', - 1540231 => 'Blacksburg, VA', - 1540234 => 'Weyers Cave, VA', - 1540248 => 'Verona, VA', - 1540249 => 'Grottoes, VA', - 1540254 => 'Buchanan, VA', - 1540261 => 'Buena Vista, VA', - 1540265 => 'Roanoke, VA', - 1540266 => 'Roanoke, VA', - 1540286 => 'Fredericksburg, VA', - 1540288 => 'Stafford, VA', - 1540289 => 'McGaheysville, VA', - 1540297 => 'Moneta, VA', - 1540298 => 'Elkton, VA', - 1540310 => 'Fredericksburg, VA', - 1540316 => 'Warrenton, VA', - 1540318 => 'Stafford, VA', - 1540332 => 'Staunton, VA', - 1540334 => 'Boones Mill, VA', - 1540338 => 'Purcellville, VA', - 1540341 => 'Warrenton, VA', - 1540342 => 'Roanoke, VA', - 1540343 => 'Roanoke, VA', - 1540344 => 'Roanoke, VA', - 1540345 => 'Roanoke, VA', - 1540347 => 'Warrenton, VA', - 1540349 => 'Warrenton, VA', - 1540361 => 'Fredericksburg, VA', - 1540362 => 'Roanoke, VA', - 1540364 => 'Marshall, VA', - 1540365 => 'Ferrum, VA', - 1540366 => 'Roanoke, VA', - 1540368 => 'Fredericksburg, VA', - 1540370 => 'Fredericksburg, VA', - 1540371 => 'Fredericksburg, VA', - 1540372 => 'Fredericksburg, VA', - 1540373 => 'Fredericksburg, VA', - 1540374 => 'Fredericksburg, VA', - 1540375 => 'Salem, VA', - 1540380 => 'Salem, VA', - 1540381 => 'Christiansburg, VA', - 1540382 => 'Christiansburg, VA', - 1540387 => 'Salem, VA', - 1540389 => 'Salem, VA', - 1540400 => 'Roanoke, VA', - 1540427 => 'Roanoke, VA', - 1540428 => 'Warrenton, VA', - 1540432 => 'Harrisonburg, VA', - 1540433 => 'Harrisonburg, VA', - 1540434 => 'Harrisonburg, VA', - 1540437 => 'Harrisonburg, VA', - 1540438 => 'Harrisonburg, VA', - 1540439 => 'Bealeton, VA', - 1540442 => 'Harrisonburg, VA', - 1540443 => 'Blacksburg, VA', - 1540444 => 'Salem, VA', - 1540450 => 'Winchester, VA', - 1540459 => 'Woodstock, VA', - 1540463 => 'Lexington, VA', - 1540464 => 'Lexington, VA', - 1540465 => 'Strasburg, VA', - 1540468 => 'Monterey, VA', - 1540473 => 'Fincastle, VA', - 1540477 => 'Mount Jackson, VA', - 1540479 => 'Fredericksburg, VA', - 1540483 => 'Rocky Mount, VA', - 1540484 => 'Rocky Mount, VA', - 1540489 => 'Rocky Mount, VA', - 1540535 => 'Winchester, VA', - 1540536 => 'Winchester, VA', - 1540542 => 'Winchester, VA', - 1540545 => 'Winchester, VA', - 1540547 => 'Culpeper, VA', - 1540548 => 'Fredericksburg, VA', - 1540552 => 'Blacksburg, VA', - 1540562 => 'Roanoke, VA', - 1540563 => 'Roanoke, VA', - 1540564 => 'Harrisonburg, VA', - 1540568 => 'Harrisonburg, VA', - 1540574 => 'Harrisonburg, VA', - 1540582 => 'Spotsylvania, VA', - 1540586 => 'Bedford, VA', - 1540587 => 'Bedford, VA', - 1540622 => 'Front Royal, VA', - 1540626 => 'Pembroke, VA', - 1540631 => 'Front Royal, VA', - 1540633 => 'Radford, VA', - 1540635 => 'Front Royal, VA', - 1540636 => 'Front Royal, VA', - 1540639 => 'Radford, VA', - 1540652 => 'Shenandoah, VA', - 1540656 => 'Fredericksburg, VA', - 1540657 => 'Stafford, VA', - 1540658 => 'Stafford, VA', - 1540659 => 'Stafford, VA', - 1540661 => 'Orange, VA', - 1540662 => 'Winchester, VA', - 1540663 => 'King George, VA', - 1540665 => 'Winchester, VA', - 1540667 => 'Winchester, VA', - 1540672 => 'Orange, VA', - 1540674 => 'Dublin, VA', - 1540675 => 'Washington, VA', - 1540678 => 'Winchester, VA', - 1540687 => 'Middleburg, VA', - 1540689 => 'Harrisonburg, VA', - 1540710 => 'Fredericksburg, VA', - 1540720 => 'Stafford, VA', - 1540722 => 'Winchester, VA', - 1540723 => 'Winchester, VA', - 1540725 => 'Roanoke, VA', - 1540726 => 'Narrows, VA', - 1540727 => 'Culpeper, VA', - 1540731 => 'Radford, VA', - 1540740 => 'New Market, VA', - 1540741 => 'Fredericksburg, VA', - 1540743 => 'Luray, VA', - 1540745 => 'Floyd, VA', - 1540751 => 'Purcellville, VA', - 1540752 => 'Fredericksburg, VA', - 1540772 => 'Roanoke, VA', - 1540774 => 'Roanoke, VA', - 1540775 => 'King George, VA', - 1540776 => 'Roanoke, VA', - 1540777 => 'Roanoke, VA', - 1540778 => 'Stanley, VA', - 1540785 => 'Fredericksburg, VA', - 1540786 => 'Fredericksburg, VA', - 1540788 => 'Catlett, VA', - 1540822 => 'Lovettsville, VA', - 1540825 => 'Culpeper, VA', - 1540828 => 'Bridgewater, VA', - 1540829 => 'Culpeper, VA', - 1540832 => 'Gordonsville, VA', - 1540834 => 'Fredericksburg, VA', - 1540837 => 'Boyce, VA', - 1540839 => 'Hot Springs, VA', - 1540853 => 'Roanoke, VA', - 1540857 => 'Roanoke, VA', - 1540862 => 'Clifton Forge, VA', - 1540864 => 'New Castle, VA', - 1540868 => 'Stephens City, VA', - 1540869 => 'Stephens City, VA', - 1540872 => 'Bumpass, VA', - 1540877 => 'Winchester, VA', - 1540879 => 'Dayton, VA', - 1540885 => 'Staunton, VA', - 1540886 => 'Staunton, VA', - 1540887 => 'Staunton, VA', - 1540890 => 'Vinton, VA', - 1540891 => 'Fredericksburg, VA', - 1540894 => 'Mineral, VA', - 1540896 => 'Broadway, VA', - 1540898 => 'Fredericksburg, VA', - 1540899 => 'Fredericksburg, VA', - 1540904 => 'Roanoke, VA', - 1540921 => 'Pearisburg, VA', - 1540932 => 'Fishersville, VA', - 1540941 => 'Waynesboro, VA', - 1540942 => 'Waynesboro, VA', - 1540943 => 'Waynesboro, VA', - 1540946 => 'Waynesboro, VA', - 1540948 => 'Madison, VA', - 1540949 => 'Waynesboro, VA', - 1540951 => 'Blacksburg, VA', - 1540953 => 'Blacksburg, VA', - 1540955 => 'Berryville, VA', - 1540961 => 'Blacksburg, VA', - 1540962 => 'Covington, VA', - 1540965 => 'Covington, VA', - 1540967 => 'Louisa, VA', - 1540972 => 'Locust Grove, VA', - 1540977 => 'Roanoke, VA', - 1540980 => 'Pulaski, VA', - 1540981 => 'Roanoke, VA', - 1540982 => 'Roanoke, VA', - 1540983 => 'Roanoke, VA', - 1540984 => 'Edinburg, VA', - 1540985 => 'Roanoke, VA', - 1540987 => 'Sperryville, VA', - 1540989 => 'Roanoke, VA', - 1540994 => 'Pulaski, VA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1541.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1541.php deleted file mode 100644 index b4f762b12..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1541.php +++ /dev/null @@ -1,235 +0,0 @@ - 'Oregon', - 1541205 => 'Klamath Falls, OR', - 1541207 => 'Corvallis, OR', - 1541210 => 'Medford, OR', - 1541222 => 'Springfield, OR', - 1541242 => 'Eugene, OR', - 1541245 => 'Medford, OR', - 1541247 => 'Gold Beach, OR', - 1541258 => 'Lebanon, OR', - 1541259 => 'Lebanon, OR', - 1541265 => 'Newport, OR', - 1541266 => 'Coos Bay, OR', - 1541267 => 'Coos Bay, OR', - 1541269 => 'Coos Bay, OR', - 1541271 => 'Reedsport, OR', - 1541273 => 'Klamath Falls, OR', - 1541276 => 'Pendleton, OR', - 1541278 => 'Pendleton, OR', - 1541282 => 'Medford, OR', - 1541284 => 'Eugene, OR', - 1541289 => 'Hermiston, OR', - 1541296 => 'The Dalles, OR', - 1541298 => 'The Dalles, OR', - 1541301 => 'Medford, OR', - 1541302 => 'Eugene, OR', - 1541306 => 'Bend, OR', - 1541312 => 'Bend, OR', - 1541316 => 'Redmond, OR', - 1541317 => 'Bend, OR', - 1541318 => 'Bend, OR', - 1541322 => 'Bend, OR', - 1541323 => 'Bend, OR', - 1541327 => 'Jefferson, OR', - 1541330 => 'Bend, OR', - 1541332 => 'Port Orford, OR', - 1541336 => 'Toledo, OR', - 1541338 => 'Eugene, OR', - 1541341 => 'Eugene, OR', - 1541342 => 'Eugene, OR', - 1541343 => 'Eugene, OR', - 1541344 => 'Eugene, OR', - 1541345 => 'Eugene, OR', - 1541346 => 'Eugene, OR', - 1541347 => 'Bandon, OR', - 1541349 => 'Eugene, OR', - 1541352 => 'Mount Hood Parkdale, OR', - 1541354 => 'Hood River, OR', - 1541357 => 'Eugene, OR', - 1541359 => 'Eugene, OR', - 1541367 => 'Sweet Home, OR', - 1541372 => 'Nyssa, OR', - 1541382 => 'Bend, OR', - 1541383 => 'Bend, OR', - 1541384 => 'Condon, OR', - 1541385 => 'Bend, OR', - 1541386 => 'Hood River, OR', - 1541387 => 'Hood River, OR', - 1541388 => 'Bend, OR', - 1541389 => 'Bend, OR', - 1541390 => 'Bend, OR', - 1541393 => 'Eugene, OR', - 1541396 => 'Coquille, OR', - 1541410 => 'Bend, OR', - 1541412 => 'Brookings, OR', - 1541416 => 'Prineville, OR', - 1541420 => 'Bend, OR', - 1541426 => 'Enterprise, OR', - 1541431 => 'Eugene, OR', - 1541432 => 'Joseph, OR', - 1541440 => 'Roseburg, OR', - 1541447 => 'Prineville, OR', - 1541451 => 'Lebanon, OR', - 1541459 => 'Sutherlin, OR', - 1541461 => 'Eugene, OR', - 1541463 => 'Eugene, OR', - 1541464 => 'Roseburg, OR', - 1541465 => 'Eugene, OR', - 1541466 => 'Brownsville, OR', - 1541469 => 'Brookings, OR', - 1541471 => 'Grants Pass, OR', - 1541472 => 'Grants Pass, OR', - 1541473 => 'Vale, OR', - 1541474 => 'Grants Pass, OR', - 1541475 => 'Madras, OR', - 1541476 => 'Grants Pass, OR', - 1541479 => 'Grants Pass, OR', - 1541481 => 'Boardman, OR', - 1541482 => 'Ashland, OR', - 1541484 => 'Eugene, OR', - 1541485 => 'Eugene, OR', - 1541488 => 'Ashland, OR', - 1541490 => 'Hood River, OR', - 1541496 => 'Glide, OR', - 1541504 => 'Redmond, OR', - 1541505 => 'Eugene, OR', - 1541506 => 'The Dalles, OR', - 1541517 => 'Eugene, OR', - 1541520 => 'Eugene, OR', - 1541523 => 'Baker City, OR', - 1541526 => 'Redmond, OR', - 1541536 => 'La Pine, OR', - 1541547 => 'Yachats, OR', - 1541548 => 'Redmond, OR', - 1541549 => 'Sisters, OR', - 1541550 => 'Bend, OR', - 1541552 => 'Ashland, OR', - 1541553 => 'Warm Springs, OR', - 1541563 => 'Waldport, OR', - 1541564 => 'Hermiston, OR', - 1541567 => 'Hermiston, OR', - 1541572 => 'Myrtle Point, OR', - 1541573 => 'Burns, OR', - 1541574 => 'Newport, OR', - 1541575 => 'John Day, OR', - 1541582 => 'Rogue River, OR', - 1541592 => 'Cave Junction, OR', - 1541607 => 'Eugene, OR', - 1541608 => 'Medford, OR', - 1541617 => 'Bend, OR', - 1541633 => 'Bend, OR', - 1541636 => 'Eugene, OR', - 1541647 => 'Bend, OR', - 1541653 => 'Eugene, OR', - 1541654 => 'Eugene, OR', - 1541659 => 'Grants Pass, OR', - 1541660 => 'Grants Pass, OR', - 1541663 => 'La Grande, OR', - 1541664 => 'Central Point, OR', - 1541665 => 'Central Point, OR', - 1541667 => 'Hermiston, OR', - 1541672 => 'Roseburg, OR', - 1541673 => 'Roseburg, OR', - 1541676 => 'Heppner, OR', - 1541677 => 'Roseburg, OR', - 1541678 => 'Bend, OR', - 1541682 => 'Eugene, OR', - 1541683 => 'Eugene, OR', - 1541684 => 'Eugene, OR', - 1541686 => 'Eugene, OR', - 1541687 => 'Eugene, OR', - 1541688 => 'Eugene, OR', - 1541689 => 'Eugene, OR', - 1541706 => 'Bend, OR', - 1541708 => 'Ashland, OR', - 1541726 => 'Springfield, OR', - 1541728 => 'Bend, OR', - 1541729 => 'Eugene, OR', - 1541732 => 'Medford, OR', - 1541734 => 'Medford, OR', - 1541736 => 'Springfield, OR', - 1541737 => 'Corvallis, OR', - 1541738 => 'Corvallis, OR', - 1541741 => 'Springfield, OR', - 1541743 => 'Eugene, OR', - 1541744 => 'Springfield, OR', - 1541745 => 'Corvallis, OR', - 1541746 => 'Springfield, OR', - 1541747 => 'Springfield, OR', - 1541749 => 'Bend, OR', - 1541751 => 'North Bend, OR', - 1541752 => 'Corvallis, OR', - 1541753 => 'Corvallis, OR', - 1541754 => 'Corvallis, OR', - 1541756 => 'North Bend, OR', - 1541757 => 'Corvallis, OR', - 1541758 => 'Corvallis, OR', - 1541765 => 'Depoe Bay, OR', - 1541766 => 'Corvallis, OR', - 1541767 => 'Cottage Grove, OR', - 1541768 => 'Corvallis, OR', - 1541770 => 'Medford, OR', - 1541772 => 'Medford, OR', - 1541773 => 'Medford, OR', - 1541774 => 'Medford, OR', - 1541776 => 'Medford, OR', - 1541779 => 'Medford, OR', - 1541782 => 'Oakridge, OR', - 1541783 => 'Chiloquin, OR', - 1541789 => 'Medford, OR', - 1541791 => 'Albany, OR', - 1541812 => 'Albany, OR', - 1541839 => 'Canyonville, OR', - 1541842 => 'Medford, OR', - 1541844 => 'Eugene, OR', - 1541850 => 'Klamath Falls, OR', - 1541855 => 'Gold Hill, OR', - 1541857 => 'Medford, OR', - 1541858 => 'Medford, OR', - 1541863 => 'Myrtle Creek, OR', - 1541868 => 'Eugene, OR', - 1541878 => 'Shady Cove, OR', - 1541881 => 'Ontario, OR', - 1541882 => 'Klamath Falls, OR', - 1541883 => 'Klamath Falls, OR', - 1541884 => 'Klamath Falls, OR', - 1541885 => 'Klamath Falls, OR', - 1541888 => 'Coos Bay, OR', - 1541889 => 'Ontario, OR', - 1541895 => 'Creswell, OR', - 1541899 => 'Jacksonville, OR', - 1541902 => 'Florence, OR', - 1541917 => 'Albany, OR', - 1541922 => 'Umatilla, OR', - 1541923 => 'Redmond, OR', - 1541924 => 'Albany, OR', - 1541926 => 'Albany, OR', - 1541928 => 'Albany, OR', - 1541929 => 'Philomath, OR', - 1541935 => 'Veneta, OR', - 1541938 => 'Milton-Freewater, OR', - 1541941 => 'Medford, OR', - 1541942 => 'Cottage Grove, OR', - 1541947 => 'Lakeview, OR', - 1541955 => 'Grants Pass, OR', - 1541956 => 'Grants Pass, OR', - 1541957 => 'Roseburg, OR', - 1541962 => 'La Grande, OR', - 1541963 => 'La Grande, OR', - 1541966 => 'Pendleton, OR', - 1541967 => 'Albany, OR', - 1541973 => 'Medford, OR', - 1541988 => 'Springfield, OR', - 1541994 => 'Lincoln City, OR', - 1541995 => 'Harrisburg, OR', - 1541996 => 'Lincoln City, OR', - 1541997 => 'Florence, OR', - 1541998 => 'Junction City, OR', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1548.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1548.php deleted file mode 100644 index 0a3846961..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1548.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ontario', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1551.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1551.php deleted file mode 100644 index f346d9564..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1551.php +++ /dev/null @@ -1,9 +0,0 @@ - 'New Jersey', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1559.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1559.php deleted file mode 100644 index 59e534a18..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1559.php +++ /dev/null @@ -1,166 +0,0 @@ - 'California', - 1559221 => 'Fresno, CA', - 1559222 => 'Fresno, CA', - 1559224 => 'Fresno, CA', - 1559225 => 'Fresno, CA', - 1559226 => 'Fresno, CA', - 1559227 => 'Fresno, CA', - 1559228 => 'Fresno, CA', - 1559229 => 'Fresno, CA', - 1559230 => 'Fresno, CA', - 1559233 => 'Fresno, CA', - 1559237 => 'Fresno, CA', - 1559243 => 'Fresno, CA', - 1559244 => 'Fresno, CA', - 1559248 => 'Fresno, CA', - 1559251 => 'Fresno, CA', - 1559252 => 'Fresno, CA', - 1559253 => 'Fresno, CA', - 1559255 => 'Fresno, CA', - 1559256 => 'Fresno, CA', - 1559261 => 'Fresno, CA', - 1559264 => 'Fresno, CA', - 1559266 => 'Fresno, CA', - 1559268 => 'Fresno, CA', - 1559271 => 'Fresno, CA', - 1559274 => 'Fresno, CA', - 1559275 => 'Fresno, CA', - 1559276 => 'Fresno, CA', - 1559277 => 'Fresno, CA', - 1559294 => 'Fresno, CA', - 1559297 => 'Clovis, CA', - 1559298 => 'Clovis, CA', - 1559299 => 'Clovis, CA', - 1559307 => 'Fresno, CA', - 1559320 => 'Fresno, CA', - 1559322 => 'Clovis, CA', - 1559323 => 'Clovis, CA', - 1559324 => 'Clovis, CA', - 1559325 => 'Clovis, CA', - 1559326 => 'Clovis, CA', - 1559353 => 'Madera, CA', - 1559386 => 'Avenal, CA', - 1559412 => 'Fresno, CA', - 1559431 => 'Fresno, CA', - 1559432 => 'Fresno, CA', - 1559433 => 'Fresno, CA', - 1559434 => 'Fresno, CA', - 1559435 => 'Fresno, CA', - 1559436 => 'Fresno, CA', - 1559437 => 'Fresno, CA', - 1559438 => 'Fresno, CA', - 1559439 => 'Fresno, CA', - 1559440 => 'Fresno, CA', - 1559441 => 'Fresno, CA', - 1559442 => 'Fresno, CA', - 1559443 => 'Fresno, CA', - 1559445 => 'Fresno, CA', - 1559446 => 'Fresno, CA', - 1559447 => 'Fresno, CA', - 1559448 => 'Fresno, CA', - 1559449 => 'Fresno, CA', - 1559450 => 'Fresno, CA', - 1559452 => 'Fresno, CA', - 1559453 => 'Fresno, CA', - 1559454 => 'Fresno, CA', - 1559455 => 'Fresno, CA', - 1559456 => 'Fresno, CA', - 1559457 => 'Fresno, CA', - 1559459 => 'Fresno, CA', - 1559478 => 'Fresno, CA', - 1559485 => 'Fresno, CA', - 1559486 => 'Fresno, CA', - 1559490 => 'Fresno, CA', - 1559492 => 'Fresno, CA', - 1559495 => 'Fresno, CA', - 1559497 => 'Fresno, CA', - 1559498 => 'Fresno, CA', - 1559499 => 'Fresno, CA', - 1559528 => 'Orosi, CA', - 1559535 => 'Terra Bella, CA', - 1559539 => 'Springville, CA', - 1559561 => 'Three Rivers, CA', - 1559562 => 'Lindsay, CA', - 1559564 => 'Woodlake, CA', - 1559582 => 'Hanford, CA', - 1559583 => 'Hanford, CA', - 1559584 => 'Hanford, CA', - 1559585 => 'Hanford, CA', - 1559587 => 'Hanford, CA', - 1559589 => 'Hanford, CA', - 1559591 => 'Dinuba, CA', - 1559592 => 'Exeter, CA', - 1559594 => 'Exeter, CA', - 1559595 => 'Dinuba, CA', - 1559622 => 'Visalia, CA', - 1559623 => 'Visalia, CA', - 1559624 => 'Visalia, CA', - 1559625 => 'Visalia, CA', - 1559626 => 'Orange Cove, CA', - 1559627 => 'Visalia, CA', - 1559635 => 'Visalia, CA', - 1559636 => 'Visalia, CA', - 1559637 => 'Reedley, CA', - 1559638 => 'Reedley, CA', - 1559641 => 'Oakhurst, CA', - 1559645 => 'Madera, CA', - 1559646 => 'Parlier, CA', - 1559651 => 'Visalia, CA', - 1559655 => 'Mendota, CA', - 1559658 => 'Oakhurst, CA', - 1559659 => 'Firebaugh, CA', - 1559661 => 'Madera, CA', - 1559662 => 'Madera, CA', - 1559664 => 'Madera, CA', - 1559665 => 'Chowchilla, CA', - 1559673 => 'Madera, CA', - 1559674 => 'Madera, CA', - 1559675 => 'Madera, CA', - 1559683 => 'Oakhurst, CA', - 1559684 => 'Tulare, CA', - 1559685 => 'Tulare, CA', - 1559686 => 'Tulare, CA', - 1559687 => 'Tulare, CA', - 1559688 => 'Tulare, CA', - 1559713 => 'Visalia, CA', - 1559732 => 'Visalia, CA', - 1559733 => 'Visalia, CA', - 1559734 => 'Visalia, CA', - 1559738 => 'Visalia, CA', - 1559739 => 'Visalia, CA', - 1559741 => 'Visalia, CA', - 1559747 => 'Farmersville, CA', - 1559757 => 'Pixley, CA', - 1559781 => 'Porterville, CA', - 1559782 => 'Porterville, CA', - 1559783 => 'Porterville, CA', - 1559784 => 'Porterville, CA', - 1559788 => 'Porterville, CA', - 1559791 => 'Porterville, CA', - 1559798 => 'Ivanhoe, CA', - 1559834 => 'Fowler, CA', - 1559840 => 'Fresno, CA', - 1559841 => 'Shaver Lake, CA', - 1559846 => 'Kerman, CA', - 1559855 => 'Auberry, CA', - 1559864 => 'Caruthers, CA', - 1559867 => 'Riverdale, CA', - 1559875 => 'Sanger, CA', - 1559877 => 'North Fork, CA', - 1559891 => 'Selma, CA', - 1559896 => 'Selma, CA', - 1559897 => 'Kingsburg, CA', - 1559924 => 'Lemoore, CA', - 1559925 => 'Lemoore, CA', - 1559935 => 'Coalinga, CA', - 1559945 => 'Huron, CA', - 1559992 => 'Corcoran, CA', - 1559998 => 'Lemoore, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1561.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1561.php deleted file mode 100644 index 039f725b5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1561.php +++ /dev/null @@ -1,146 +0,0 @@ - 'Florida', - 1561200 => 'Boynton Beach, FL', - 1561208 => 'Boca Raton, FL', - 1561210 => 'Boca Raton, FL', - 1561218 => 'Boca Raton, FL', - 1561228 => 'West Palm Beach, FL', - 1561241 => 'Boca Raton, FL', - 1561242 => 'West Palm Beach, FL', - 1561243 => 'Delray Beach, FL', - 1561244 => 'Boynton Beach, FL', - 1561245 => 'Boca Raton, FL', - 1561265 => 'Delray Beach, FL', - 1561266 => 'Delray Beach, FL', - 1561272 => 'Delray Beach, FL', - 1561274 => 'Delray Beach, FL', - 1561276 => 'Delray Beach, FL', - 1561278 => 'Delray Beach, FL', - 1561279 => 'Delray Beach, FL', - 1561289 => 'Boca Raton, FL', - 1561330 => 'Delray Beach, FL', - 1561338 => 'Boca Raton, FL', - 1561347 => 'Boca Raton, FL', - 1561353 => 'Boca Raton, FL', - 1561355 => 'West Palm Beach, FL', - 1561361 => 'Boca Raton, FL', - 1561362 => 'Boca Raton, FL', - 1561364 => 'Boynton Beach, FL', - 1561367 => 'Boca Raton, FL', - 1561368 => 'Boca Raton, FL', - 1561369 => 'Boynton Beach, FL', - 1561372 => 'Boca Raton, FL', - 1561374 => 'Boynton Beach, FL', - 1561391 => 'Boca Raton, FL', - 1561392 => 'Boca Raton, FL', - 1561393 => 'Boca Raton, FL', - 1561394 => 'Boca Raton, FL', - 1561395 => 'Boca Raton, FL', - 1561404 => 'Delray Beach, FL', - 1561416 => 'Boca Raton, FL', - 1561417 => 'Boca Raton, FL', - 1561422 => 'Riviera Beach, FL', - 1561427 => 'Jupiter, FL', - 1561447 => 'Boca Raton, FL', - 1561450 => 'Delray Beach, FL', - 1561451 => 'Boca Raton, FL', - 1561455 => 'Delray Beach, FL', - 1561470 => 'Boca Raton, FL', - 1561471 => 'West Palm Beach, FL', - 1561477 => 'Boca Raton, FL', - 1561478 => 'West Palm Beach, FL', - 1561479 => 'Boca Raton, FL', - 1561482 => 'Boca Raton, FL', - 1561483 => 'Boca Raton, FL', - 1561487 => 'Boca Raton, FL', - 1561488 => 'Boca Raton, FL', - 1561495 => 'Delray Beach, FL', - 1561496 => 'Delray Beach, FL', - 1561498 => 'Delray Beach, FL', - 1561499 => 'Delray Beach, FL', - 1561509 => 'Boynton Beach, FL', - 1561514 => 'West Palm Beach, FL', - 1561544 => 'Boca Raton, FL', - 1561558 => 'Boca Raton, FL', - 1561572 => 'Boynton Beach, FL', - 1561575 => 'Jupiter, FL', - 1561615 => 'West Palm Beach, FL', - 1561616 => 'West Palm Beach, FL', - 1561620 => 'Boca Raton, FL', - 1561637 => 'Delray Beach, FL', - 1561638 => 'Delray Beach, FL', - 1561640 => 'West Palm Beach, FL', - 1561650 => 'West Palm Beach, FL', - 1561653 => 'West Palm Beach, FL', - 1561655 => 'West Palm Beach, FL', - 1561659 => 'West Palm Beach, FL', - 1561672 => 'Boca Raton, FL', - 1561683 => 'West Palm Beach, FL', - 1561684 => 'West Palm Beach, FL', - 1561686 => 'West Palm Beach, FL', - 1561687 => 'West Palm Beach, FL', - 1561688 => 'West Palm Beach, FL', - 1561689 => 'West Palm Beach, FL', - 1561697 => 'West Palm Beach, FL', - 1561712 => 'West Palm Beach, FL', - 1561731 => 'Boynton Beach, FL', - 1561732 => 'Boynton Beach, FL', - 1561733 => 'Boynton Beach, FL', - 1561734 => 'Boynton Beach, FL', - 1561735 => 'Boynton Beach, FL', - 1561736 => 'Boynton Beach, FL', - 1561737 => 'Boynton Beach, FL', - 1561738 => 'Boynton Beach, FL', - 1561739 => 'Boynton Beach, FL', - 1561740 => 'Boynton Beach, FL', - 1561741 => 'Jupiter, FL', - 1561742 => 'Boynton Beach, FL', - 1561743 => 'Jupiter, FL', - 1561744 => 'Jupiter, FL', - 1561745 => 'Jupiter, FL', - 1561746 => 'Jupiter, FL', - 1561747 => 'Jupiter, FL', - 1561748 => 'Jupiter, FL', - 1561750 => 'Boca Raton, FL', - 1561752 => 'Boynton Beach, FL', - 1561756 => 'Boca Raton, FL', - 1561768 => 'Jupiter, FL', - 1561802 => 'West Palm Beach, FL', - 1561807 => 'Boca Raton, FL', - 1561819 => 'Delray Beach, FL', - 1561820 => 'West Palm Beach, FL', - 1561822 => 'West Palm Beach, FL', - 1561826 => 'Boca Raton, FL', - 1561832 => 'West Palm Beach, FL', - 1561833 => 'West Palm Beach, FL', - 1561835 => 'West Palm Beach, FL', - 1561852 => 'Boca Raton, FL', - 1561865 => 'Delray Beach, FL', - 1561883 => 'Boca Raton, FL', - 1561910 => 'Boca Raton, FL', - 1561912 => 'Boca Raton, FL', - 1561921 => 'Delray Beach, FL', - 1561924 => 'Pahokee, FL', - 1561929 => 'Boca Raton, FL', - 1561939 => 'Boca Raton, FL', - 1561948 => 'Boca Raton, FL', - 1561955 => 'Boca Raton, FL', - 1561962 => 'Boca Raton, FL', - 1561972 => 'Jupiter, FL', - 1561981 => 'Boca Raton, FL', - 1561988 => 'Boca Raton, FL', - 1561989 => 'Boca Raton, FL', - 1561992 => 'Belle Glade, FL', - 1561994 => 'Boca Raton, FL', - 1561995 => 'Boca Raton, FL', - 1561996 => 'Belle Glade, FL', - 1561997 => 'Boca Raton, FL', - 1561998 => 'Boca Raton, FL', - 1561999 => 'Boca Raton, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1562.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1562.php deleted file mode 100644 index 9a578f5aa..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1562.php +++ /dev/null @@ -1,111 +0,0 @@ - 'California', - 1562216 => 'Long Beach, CA', - 1562218 => 'Long Beach, CA', - 1562272 => 'Paramount, CA', - 1562343 => 'Long Beach, CA', - 1562401 => 'Downey, CA', - 1562408 => 'Paramount, CA', - 1562420 => 'Long Beach, CA', - 1562421 => 'Long Beach, CA', - 1562422 => 'Long Beach, CA', - 1562423 => 'Long Beach, CA', - 1562424 => 'Long Beach, CA', - 1562425 => 'Long Beach, CA', - 1562426 => 'Long Beach, CA', - 1562427 => 'Long Beach, CA', - 1562428 => 'Long Beach, CA', - 1562429 => 'Long Beach, CA', - 1562432 => 'Long Beach, CA', - 1562433 => 'Long Beach, CA', - 1562434 => 'Long Beach, CA', - 1562435 => 'Long Beach, CA', - 1562436 => 'Long Beach, CA', - 1562437 => 'Long Beach, CA', - 1562438 => 'Long Beach, CA', - 1562439 => 'Long Beach, CA', - 1562461 => 'Bellflower, CA', - 1562464 => 'Whittier, CA', - 1562490 => 'Long Beach, CA', - 1562491 => 'Long Beach, CA', - 1562492 => 'Long Beach, CA', - 1562494 => 'Long Beach, CA', - 1562495 => 'Long Beach, CA', - 1562496 => 'Long Beach, CA', - 1562498 => 'Long Beach, CA', - 1562529 => 'Paramount, CA', - 1562531 => 'Paramount, CA', - 1562570 => 'Long Beach, CA', - 1562590 => 'Long Beach, CA', - 1562591 => 'Long Beach, CA', - 1562595 => 'Long Beach, CA', - 1562597 => 'Long Beach, CA', - 1562599 => 'Long Beach, CA', - 1562602 => 'Paramount, CA', - 1562612 => 'Long Beach, CA', - 1562622 => 'Downey, CA', - 1562624 => 'Long Beach, CA', - 1562633 => 'Paramount, CA', - 1562657 => 'Downey, CA', - 1562690 => 'La Habra, CA', - 1562691 => 'La Habra, CA', - 1562692 => 'Whittier, CA', - 1562693 => 'Whittier, CA', - 1562694 => 'La Habra, CA', - 1562695 => 'Whittier, CA', - 1562696 => 'Whittier, CA', - 1562697 => 'La Habra, CA', - 1562698 => 'Whittier, CA', - 1562728 => 'Long Beach, CA', - 1562777 => 'Santa Fe Springs, CA', - 1562789 => 'Whittier, CA', - 1562795 => 'Los Alamitos, CA', - 1562801 => 'Pico Rivera, CA', - 1562803 => 'Downey, CA', - 1562804 => 'Bellflower, CA', - 1562826 => 'Long Beach, CA', - 1562856 => 'Long Beach, CA', - 1562861 => 'Downey, CA', - 1562862 => 'Downey, CA', - 1562863 => 'Norwalk, CA', - 1562864 => 'Norwalk, CA', - 1562866 => 'Bellflower, CA', - 1562867 => 'Bellflower, CA', - 1562868 => 'Norwalk, CA', - 1562869 => 'Downey, CA', - 1562901 => 'Long Beach, CA', - 1562903 => 'Santa Fe Springs, CA', - 1562904 => 'Downey, CA', - 1562906 => 'Santa Fe Springs, CA', - 1562907 => 'Whittier, CA', - 1562912 => 'Long Beach, CA', - 1562920 => 'Bellflower, CA', - 1562923 => 'Downey, CA', - 1562925 => 'Bellflower, CA', - 1562929 => 'Norwalk, CA', - 1562933 => 'Long Beach, CA', - 1562938 => 'Long Beach, CA', - 1562942 => 'Pico Rivera, CA', - 1562945 => 'Whittier, CA', - 1562946 => 'Santa Fe Springs, CA', - 1562947 => 'Whittier, CA', - 1562948 => 'Pico Rivera, CA', - 1562949 => 'Pico Rivera, CA', - 1562951 => 'Long Beach, CA', - 1562961 => 'Long Beach, CA', - 1562981 => 'Long Beach, CA', - 1562983 => 'Long Beach, CA', - 1562984 => 'Long Beach, CA', - 1562985 => 'Long Beach, CA', - 1562986 => 'Long Beach, CA', - 1562987 => 'Long Beach, CA', - 1562988 => 'Long Beach, CA', - 1562989 => 'Long Beach, CA', - 1562997 => 'Long Beach, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1563.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1563.php deleted file mode 100644 index 5ee86c016..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1563.php +++ /dev/null @@ -1,69 +0,0 @@ - 'Iowa', - 1563242 => 'Clinton, IA', - 1563243 => 'Clinton, IA', - 1563244 => 'Clinton, IA', - 1563245 => 'Elkader, IA', - 1563252 => 'Guttenberg, IA', - 1563259 => 'Camanche, IA', - 1563262 => 'Muscatine, IA', - 1563263 => 'Muscatine, IA', - 1563264 => 'Muscatine, IA', - 1563284 => 'Walcott, IA', - 1563285 => 'Eldridge, IA', - 1563289 => 'Le Claire, IA', - 1563322 => 'Davenport, IA', - 1563323 => 'Davenport, IA', - 1563324 => 'Davenport, IA', - 1563326 => 'Davenport, IA', - 1563332 => 'Bettendorf, IA', - 1563355 => 'Bettendorf, IA', - 1563359 => 'Davenport, IA', - 1563382 => 'Decorah, IA', - 1563383 => 'Davenport, IA', - 1563386 => 'Davenport, IA', - 1563388 => 'Davenport, IA', - 1563391 => 'Davenport, IA', - 1563421 => 'Davenport, IA', - 1563422 => 'West Union, IA', - 1563441 => 'Davenport, IA', - 1563445 => 'Davenport, IA', - 1563532 => 'Ossian, IA', - 1563538 => 'Lansing, IA', - 1563539 => 'Monona, IA', - 1563547 => 'Cresco, IA', - 1563556 => 'Dubuque, IA', - 1563557 => 'Dubuque, IA', - 1563568 => 'Waukon, IA', - 1563578 => 'Sumner, IA', - 1563582 => 'Dubuque, IA', - 1563583 => 'Dubuque, IA', - 1563584 => 'Dubuque, IA', - 1563585 => 'Dubuque, IA', - 1563588 => 'Dubuque, IA', - 1563589 => 'Dubuque, IA', - 1563652 => 'Maquoketa, IA', - 1563659 => 'DeWitt, IA', - 1563689 => 'Preston, IA', - 1563690 => 'Dubuque, IA', - 1563732 => 'Wilton, IA', - 1563742 => 'Bettendorf, IA', - 1563744 => 'Farley, IA', - 1563785 => 'Durant, IA', - 1563823 => 'Davenport, IA', - 1563852 => 'Cascade, IA', - 1563864 => 'Postville, IA', - 1563872 => 'Bellevue, IA', - 1563873 => 'McGregor, IA', - 1563875 => 'Dyersville, IA', - 1563886 => 'Tipton, IA', - 1563927 => 'Manchester, IA', - 1563928 => 'Edgewood, IA', - 1563933 => 'Strawberry Point, IA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1567.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1567.php deleted file mode 100644 index 4965cecdf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1567.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ohio', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1570.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1570.php deleted file mode 100644 index 432e1dac8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1570.php +++ /dev/null @@ -1,174 +0,0 @@ - 'Pennsylvania', - 1570207 => 'Scranton, PA', - 1570208 => 'Wilkes-Barre, PA', - 1570223 => 'East Stroudsburg, PA', - 1570226 => 'Hawley, PA', - 1570247 => 'Rome, PA', - 1570251 => 'Honesdale, PA', - 1570253 => 'Honesdale, PA', - 1570265 => 'Towanda, PA', - 1570268 => 'Towanda, PA', - 1570270 => 'Wilkes-Barre, PA', - 1570271 => 'Danville, PA', - 1570275 => 'Danville, PA', - 1570278 => 'Montrose, PA', - 1570282 => 'Carbondale, PA', - 1570283 => 'Kingston, PA', - 1570286 => 'Sunbury, PA', - 1570287 => 'Kingston, PA', - 1570288 => 'Kingston, PA', - 1570296 => 'Milford, PA', - 1570297 => 'Troy, PA', - 1570320 => 'Williamsport, PA', - 1570321 => 'Williamsport, PA', - 1570322 => 'Williamsport, PA', - 1570323 => 'Williamsport, PA', - 1570325 => 'Jim Thorpe, PA', - 1570326 => 'Williamsport, PA', - 1570327 => 'Williamsport, PA', - 1570331 => 'Kingston, PA', - 1570339 => 'Mount Carmel, PA', - 1570340 => 'Scranton, PA', - 1570341 => 'Scranton, PA', - 1570342 => 'Scranton, PA', - 1570343 => 'Scranton, PA', - 1570344 => 'Scranton, PA', - 1570345 => 'Pine Grove, PA', - 1570346 => 'Scranton, PA', - 1570347 => 'Scranton, PA', - 1570348 => 'Scranton, PA', - 1570366 => 'Orwigsburg, PA', - 1570368 => 'Montoursville, PA', - 1570373 => 'Kulpmont, PA', - 1570374 => 'Selinsgrove, PA', - 1570385 => 'Schuylkill Haven, PA', - 1570387 => 'Bloomsburg, PA', - 1570389 => 'Bloomsburg, PA', - 1570398 => 'Jersey Shore, PA', - 1570409 => 'Milford, PA', - 1570420 => 'Stroudsburg, PA', - 1570424 => 'Stroudsburg, PA', - 1570427 => 'Weatherly, PA', - 1570429 => 'Saint Clair, PA', - 1570443 => 'White Haven, PA', - 1570450 => 'Hazleton, PA', - 1570454 => 'Hazleton, PA', - 1570455 => 'Hazleton, PA', - 1570458 => 'Millville, PA', - 1570459 => 'Hazleton, PA', - 1570462 => 'Shenandoah, PA', - 1570465 => 'New Milford, PA', - 1570473 => 'Northumberland, PA', - 1570474 => 'Mountain Top, PA', - 1570488 => 'Waymart, PA', - 1570491 => 'Matamoras, PA', - 1570494 => 'Williamsport, PA', - 1570501 => 'Hazleton, PA', - 1570517 => 'Stroudsburg, PA', - 1570522 => 'Lewisburg, PA', - 1570523 => 'Lewisburg, PA', - 1570524 => 'Lewisburg, PA', - 1570538 => 'Watsontown, PA', - 1570539 => 'Mt Pleasant Mls, PA', - 1570542 => 'Shickshinny, PA', - 1570544 => 'Minersville, PA', - 1570546 => 'Muncy, PA', - 1570547 => 'Montgomery, PA', - 1570552 => 'Kingston, PA', - 1570558 => 'Scranton, PA', - 1570562 => 'Taylor, PA', - 1570563 => 'Dalton, PA', - 1570584 => 'Hughesville, PA', - 1570585 => 'Clarks Summit, PA', - 1570586 => 'Clarks Summit, PA', - 1570587 => 'Clarks Summit, PA', - 1570596 => 'Gillett, PA', - 1570601 => 'Williamsport, PA', - 1570602 => 'Pittston, PA', - 1570621 => 'Pottsville, PA', - 1570622 => 'Pottsville, PA', - 1570628 => 'Pottsville, PA', - 1570636 => 'Freeland, PA', - 1570638 => 'Blossburg, PA', - 1570639 => 'Harveys Lake, PA', - 1570644 => 'Shamokin, PA', - 1570648 => 'Shamokin, PA', - 1570654 => 'Pittston, PA', - 1570655 => 'Pittston, PA', - 1570662 => 'Mansfield, PA', - 1570668 => 'Tamaqua, PA', - 1570672 => 'Elysburg, PA', - 1570673 => 'Canton, PA', - 1570674 => 'Dallas, PA', - 1570675 => 'Dallas, PA', - 1570693 => 'Wyoming, PA', - 1570696 => 'Shavertown, PA', - 1570698 => 'Lake Ariel, PA', - 1570714 => 'Kingston, PA', - 1570718 => 'Kingston, PA', - 1570722 => 'Albrightsville, PA', - 1570723 => 'Wellsboro, PA', - 1570724 => 'Wellsboro, PA', - 1570726 => 'Mill Hall, PA', - 1570729 => 'Beach Lake, PA', - 1570735 => 'Nanticoke, PA', - 1570739 => 'Schuylkill Haven, PA', - 1570742 => 'Milton, PA', - 1570746 => 'Wyalusing, PA', - 1570748 => 'Lock Haven, PA', - 1570752 => 'Berwick, PA', - 1570759 => 'Berwick, PA', - 1570773 => 'Mahanoy City, PA', - 1570775 => 'Hawley, PA', - 1570779 => 'Plymouth, PA', - 1570784 => 'Bloomsburg, PA', - 1570785 => 'Forest City, PA', - 1570808 => 'Wilkes-Barre, PA', - 1570819 => 'Wilkes-Barre, PA', - 1570820 => 'Wilkes-Barre, PA', - 1570821 => 'Wilkes-Barre, PA', - 1570822 => 'Wilkes-Barre, PA', - 1570823 => 'Wilkes-Barre, PA', - 1570824 => 'Wilkes-Barre, PA', - 1570825 => 'Wilkes-Barre, PA', - 1570826 => 'Wilkes-Barre, PA', - 1570828 => 'Dingmans Ferry, PA', - 1570829 => 'Wilkes-Barre, PA', - 1570833 => 'Meshoppen, PA', - 1570836 => 'Tunkhannock, PA', - 1570837 => 'Middleburg, PA', - 1570853 => 'Susquehanna, PA', - 1570868 => 'Mountain Top, PA', - 1570874 => 'Frackville, PA', - 1570875 => 'Ashland, PA', - 1570879 => 'Hallstead, PA', - 1570882 => 'Sayre, PA', - 1570883 => 'Pittston, PA', - 1570887 => 'Sayre, PA', - 1570888 => 'Sayre, PA', - 1570893 => 'Lock Haven, PA', - 1570894 => 'Tobyhanna, PA', - 1570897 => 'Mount Bethel, PA', - 1570922 => 'Millmont, PA', - 1570923 => 'Renovo, PA', - 1570925 => 'Benton, PA', - 1570928 => 'Dushore, PA', - 1570929 => 'McAdoo, PA', - 1570941 => 'Scranton, PA', - 1570942 => 'Nicholson, PA', - 1570945 => 'Factoryville, PA', - 1570955 => 'Scranton, PA', - 1570961 => 'Scranton, PA', - 1570963 => 'Scranton, PA', - 1570966 => 'Mifflinburg, PA', - 1570969 => 'Scranton, PA', - 1570970 => 'Wilkes-Barre, PA', - 1570988 => 'Sunbury, PA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1571.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1571.php deleted file mode 100644 index 26eda51d4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1571.php +++ /dev/null @@ -1,17 +0,0 @@ - 'Virginia', - 1571208 => 'Manassas, VA', - 1571223 => 'Ashburn, VA', - 1571248 => 'Gainesville, VA', - 1571261 => 'Gainesville, VA', - 1571285 => 'Woodbridge, VA', - 1571292 => 'Manassas, VA', - 1571379 => 'Manassas, VA', - 1571434 => 'Sterling, VA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1573.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1573.php deleted file mode 100644 index 0876bf382..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1573.php +++ /dev/null @@ -1,157 +0,0 @@ - 'Missouri', - 1573204 => 'Jackson, MO', - 1573214 => 'Columbia, MO', - 1573221 => 'Hannibal, MO', - 1573222 => 'Puxico, MO', - 1573223 => 'Piedmont, MO', - 1573226 => 'Eminence, MO', - 1573231 => 'Hannibal, MO', - 1573234 => 'Columbia, MO', - 1573237 => 'New Haven, MO', - 1573238 => 'Marble Hill, MO', - 1573243 => 'Jackson, MO', - 1573248 => 'Hannibal, MO', - 1573256 => 'Columbia, MO', - 1573264 => 'Scott City, MO', - 1573265 => 'St. James, MO', - 1573276 => 'Malden, MO', - 1573288 => 'Canton, MO', - 1573293 => 'Bernie, MO', - 1573302 => 'Osage Beach, MO', - 1573308 => 'Rolla, MO', - 1573317 => 'Camdenton, MO', - 1573323 => 'Van Buren, MO', - 1573324 => 'Bowling Green, MO', - 1573329 => 'Fort Leonard Wood, MO', - 1573331 => 'Cape Girardeau, MO', - 1573332 => 'Cape Girardeau, MO', - 1573333 => 'Caruthersville, MO', - 1573334 => 'Cape Girardeau, MO', - 1573335 => 'Cape Girardeau, MO', - 1573336 => 'St. Robert, MO', - 1573339 => 'Cape Girardeau, MO', - 1573341 => 'Rolla, MO', - 1573346 => 'Camdenton, MO', - 1573348 => 'Osage Beach, MO', - 1573358 => 'Bonne Terre, MO', - 1573359 => 'Hayti, MO', - 1573364 => 'Rolla, MO', - 1573365 => 'Lake Ozark, MO', - 1573368 => 'Rolla, MO', - 1573372 => 'Gravois Mills, MO', - 1573374 => 'Sunrise Beach, MO', - 1573377 => 'Stover, MO', - 1573378 => 'Versailles, MO', - 1573379 => 'Portageville, MO', - 1573392 => 'Eldon, MO', - 1573406 => 'Hannibal, MO', - 1573422 => 'Vienna, MO', - 1573426 => 'Rolla, MO', - 1573436 => 'Potosi, MO', - 1573437 => 'Owensville, MO', - 1573438 => 'Potosi, MO', - 1573441 => 'Columbia, MO', - 1573442 => 'Columbia, MO', - 1573443 => 'Columbia, MO', - 1573445 => 'Columbia, MO', - 1573446 => 'Columbia, MO', - 1573447 => 'Columbia, MO', - 1573449 => 'Columbia, MO', - 1573458 => 'Rolla, MO', - 1573468 => 'Sullivan, MO', - 1573471 => 'Sikeston, MO', - 1573472 => 'Sikeston, MO', - 1573474 => 'Columbia, MO', - 1573481 => 'Sikeston, MO', - 1573483 => 'Bloomsdale, MO', - 1573486 => 'Hermann, MO', - 1573499 => 'Columbia, MO', - 1573545 => 'Benton, MO', - 1573546 => 'Ironton, MO', - 1573547 => 'Perryville, MO', - 1573556 => 'Jefferson City, MO', - 1573564 => 'Montgomery City, MO', - 1573568 => 'Bloomfield, MO', - 1573581 => 'Mexico, MO', - 1573582 => 'Mexico, MO', - 1573588 => 'Shelbina, MO', - 1573592 => 'Fulton, MO', - 1573594 => 'Vandalia, MO', - 1573596 => 'Fort Leonard Wood, MO', - 1573614 => 'Dexter, MO', - 1573624 => 'Dexter, MO', - 1573632 => 'Jefferson City, MO', - 1573634 => 'Jefferson City, MO', - 1573635 => 'Jefferson City, MO', - 1573636 => 'Jefferson City, MO', - 1573642 => 'Fulton, MO', - 1573649 => 'East Prairie, MO', - 1573651 => 'Cape Girardeau, MO', - 1573657 => 'Ashland, MO', - 1573659 => 'Jefferson City, MO', - 1573663 => 'Ellington, MO', - 1573674 => 'Licking, MO', - 1573682 => 'Centralia, MO', - 1573683 => 'Charleston, MO', - 1573686 => 'Poplar Bluff, MO', - 1573695 => 'Steele, MO', - 1573696 => 'Hallsville, MO', - 1573701 => 'Farmington, MO', - 1573722 => 'Advance, MO', - 1573727 => 'Poplar Bluff, MO', - 1573729 => 'Salem, MO', - 1573732 => 'Bourbon, MO', - 1573735 => 'Monroe City, MO', - 1573736 => 'Crocker, MO', - 1573747 => 'Farmington, MO', - 1573748 => 'New Madrid, MO', - 1573751 => 'Jefferson City, MO', - 1573754 => 'Louisiana, MO', - 1573756 => 'Farmington, MO', - 1573759 => 'Dixon, MO', - 1573760 => 'Farmington, MO', - 1573761 => 'Jefferson City, MO', - 1573764 => 'Gerald, MO', - 1573765 => 'Richland, MO', - 1573769 => 'Palmyra, MO', - 1573774 => 'Waynesville, MO', - 1573775 => 'Steelville, MO', - 1573776 => 'Poplar Bluff, MO', - 1573777 => 'Columbia, MO', - 1573778 => 'Poplar Bluff, MO', - 1573782 => 'Russellville, MO', - 1573783 => 'Fredericktown, MO', - 1573785 => 'Poplar Bluff, MO', - 1573793 => 'Iberia, MO', - 1573796 => 'California, MO', - 1573803 => 'Cape Girardeau, MO', - 1573814 => 'Columbia, MO', - 1573815 => 'Columbia, MO', - 1573817 => 'Columbia, MO', - 1573859 => 'Belle, MO', - 1573860 => 'Sullivan, MO', - 1573873 => 'Camdenton, MO', - 1573874 => 'Columbia, MO', - 1573875 => 'Columbia, MO', - 1573876 => 'Columbia, MO', - 1573882 => 'Columbia, MO', - 1573883 => 'Ste. Genevieve, MO', - 1573884 => 'Columbia, MO', - 1573885 => 'Cuba, MO', - 1573886 => 'Columbia, MO', - 1573887 => 'Chaffee, MO', - 1573888 => 'Kennett, MO', - 1573893 => 'Jefferson City, MO', - 1573896 => 'Holts Summit, MO', - 1573897 => 'Linn, MO', - 1573898 => 'Elsberry, MO', - 1573964 => 'Lake Ozark, MO', - 1573996 => 'Doniphan, MO', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1574.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1574.php deleted file mode 100644 index be59a61ed..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1574.php +++ /dev/null @@ -1,86 +0,0 @@ - 'Indiana', - 1574206 => 'Elkhart, IN', - 1574217 => 'South Bend, IN', - 1574223 => 'Rochester, IN', - 1574231 => 'South Bend, IN', - 1574232 => 'South Bend, IN', - 1574233 => 'South Bend, IN', - 1574234 => 'South Bend, IN', - 1574235 => 'South Bend, IN', - 1574237 => 'South Bend, IN', - 1574246 => 'South Bend, IN', - 1574252 => 'Mishawaka, IN', - 1574254 => 'Mishawaka, IN', - 1574255 => 'Mishawaka, IN', - 1574256 => 'Mishawaka, IN', - 1574257 => 'Mishawaka, IN', - 1574258 => 'Mishawaka, IN', - 1574259 => 'Mishawaka, IN', - 1574262 => 'Elkhart, IN', - 1574264 => 'Elkhart, IN', - 1574266 => 'Elkhart, IN', - 1574267 => 'Warsaw, IN', - 1574268 => 'Warsaw, IN', - 1574269 => 'Warsaw, IN', - 1574272 => 'South Bend, IN', - 1574282 => 'South Bend, IN', - 1574283 => 'South Bend, IN', - 1574287 => 'South Bend, IN', - 1574288 => 'South Bend, IN', - 1574289 => 'South Bend, IN', - 1574291 => 'South Bend, IN', - 1574293 => 'Elkhart, IN', - 1574294 => 'Elkhart, IN', - 1574295 => 'Elkhart, IN', - 1574296 => 'Elkhart, IN', - 1574299 => 'South Bend, IN', - 1574335 => 'Mishawaka, IN', - 1574372 => 'Warsaw, IN', - 1574389 => 'Elkhart, IN', - 1574453 => 'Leesburg, IN', - 1574457 => 'Syracuse, IN', - 1574522 => 'Elkhart, IN', - 1574523 => 'Elkhart, IN', - 1574533 => 'Goshen, IN', - 1574534 => 'Goshen, IN', - 1574535 => 'Goshen, IN', - 1574537 => 'Goshen, IN', - 1574546 => 'Bremen, IN', - 1574583 => 'Monticello, IN', - 1574586 => 'Walkerton, IN', - 1574594 => 'Pierceton, IN', - 1574642 => 'Goshen, IN', - 1574647 => 'South Bend, IN', - 1574654 => 'New Carlisle, IN', - 1574656 => 'North Liberty, IN', - 1574658 => 'Milford, IN', - 1574674 => 'Osceola, IN', - 1574722 => 'Logansport, IN', - 1574753 => 'Logansport, IN', - 1574772 => 'Knox, IN', - 1574773 => 'Nappanee, IN', - 1574784 => 'Lakeville, IN', - 1574825 => 'Middlebury, IN', - 1574831 => 'New Paris, IN', - 1574834 => 'North Webster, IN', - 1574842 => 'Culver, IN', - 1574848 => 'Bristol, IN', - 1574855 => 'South Bend, IN', - 1574862 => 'Wakarusa, IN', - 1574875 => 'Elkhart, IN', - 1574892 => 'Argos, IN', - 1574893 => 'Akron, IN', - 1574896 => 'North Judson, IN', - 1574935 => 'Plymouth, IN', - 1574936 => 'Plymouth, IN', - 1574946 => 'Winamac, IN', - 1574967 => 'Flora, IN', - 1574970 => 'Elkhart, IN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1575.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1575.php deleted file mode 100644 index 0217f3203..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1575.php +++ /dev/null @@ -1,84 +0,0 @@ - 'New Mexico', - 1575234 => 'Carlsbad, NM', - 1575257 => 'Ruidoso, NM', - 1575258 => 'Ruidoso, NM', - 1575267 => 'Hatch, NM', - 1575289 => 'Cuba, NM', - 1575336 => 'Alto, NM', - 1575355 => 'Fort Sumner, NM', - 1575356 => 'Portales, NM', - 1575359 => 'Portales, NM', - 1575373 => 'Las Cruces, NM', - 1575374 => 'Clayton, NM', - 1575377 => 'Angel Fire, NM', - 1575378 => 'Ruidoso Downs, NM', - 1575382 => 'Las Cruces, NM', - 1575387 => 'Mora, NM', - 1575388 => 'Silver City, NM', - 1575391 => 'Hobbs, NM', - 1575392 => 'Hobbs, NM', - 1575393 => 'Hobbs, NM', - 1575394 => 'Eunice, NM', - 1575396 => 'Lovington, NM', - 1575397 => 'Hobbs, NM', - 1575434 => 'Alamogordo, NM', - 1575437 => 'Alamogordo, NM', - 1575439 => 'Alamogordo, NM', - 1575443 => 'Alamogordo, NM', - 1575445 => 'Raton, NM', - 1575461 => 'Tucumcari, NM', - 1575472 => 'Santa Rosa, NM', - 1575492 => 'Hobbs, NM', - 1575521 => 'Las Cruces, NM', - 1575522 => 'Las Cruces, NM', - 1575523 => 'Las Cruces, NM', - 1575524 => 'Las Cruces, NM', - 1575525 => 'Las Cruces, NM', - 1575526 => 'Las Cruces, NM', - 1575527 => 'Las Cruces, NM', - 1575532 => 'Las Cruces, NM', - 1575534 => 'Silver City, NM', - 1575537 => 'Bayard, NM', - 1575538 => 'Silver City, NM', - 1575541 => 'Las Cruces, NM', - 1575542 => 'Lordsburg, NM', - 1575544 => 'Deming, NM', - 1575546 => 'Deming, NM', - 1575556 => 'Las Cruces, NM', - 1575585 => 'Tularosa, NM', - 1575586 => 'Questa, NM', - 1575622 => 'Roswell, NM', - 1575623 => 'Roswell, NM', - 1575624 => 'Roswell, NM', - 1575625 => 'Roswell, NM', - 1575627 => 'Roswell, NM', - 1575628 => 'Carlsbad, NM', - 1575647 => 'Las Cruces, NM', - 1575682 => 'Cloudcroft, NM', - 1575737 => 'Taos, NM', - 1575742 => 'Clovis, NM', - 1575746 => 'Artesia, NM', - 1575748 => 'Artesia, NM', - 1575751 => 'Taos, NM', - 1575754 => 'Red River, NM', - 1575756 => 'Chama, NM', - 1575758 => 'Taos, NM', - 1575762 => 'Clovis, NM', - 1575763 => 'Clovis, NM', - 1575769 => 'Clovis, NM', - 1575824 => 'Chaparral, NM', - 1575835 => 'Socorro, NM', - 1575838 => 'Socorro, NM', - 1575882 => 'Anthony, NM', - 1575885 => 'Carlsbad, NM', - 1575887 => 'Carlsbad, NM', - 1575894 => 'Truth Or Cnsqncs, NM', - 1575935 => 'Clovis, NM', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1580.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1580.php deleted file mode 100644 index 9a9412a4e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1580.php +++ /dev/null @@ -1,106 +0,0 @@ - 'Oklahoma', - 1580223 => 'Ardmore, OK', - 1580224 => 'Ardmore, OK', - 1580225 => 'Elk City, OK', - 1580226 => 'Ardmore, OK', - 1580227 => 'Fairview, OK', - 1580228 => 'Waurika, OK', - 1580229 => 'Healdton, OK', - 1580233 => 'Enid, OK', - 1580234 => 'Enid, OK', - 1580237 => 'Enid, OK', - 1580242 => 'Enid, OK', - 1580243 => 'Elk City, OK', - 1580248 => 'Lawton, OK', - 1580250 => 'Lawton, OK', - 1580252 => 'Duncan, OK', - 1580254 => 'Woodward, OK', - 1580255 => 'Duncan, OK', - 1580256 => 'Woodward, OK', - 1580276 => 'Marietta, OK', - 1580286 => 'Idabel, OK', - 1580298 => 'Antlers, OK', - 1580310 => 'Ada, OK', - 1580323 => 'Clinton, OK', - 1580326 => 'Hugo, OK', - 1580327 => 'Alva, OK', - 1580332 => 'Ada, OK', - 1580335 => 'Frederick, OK', - 1580336 => 'Perry, OK', - 1580338 => 'Guymon, OK', - 1580351 => 'Lawton, OK', - 1580353 => 'Lawton, OK', - 1580354 => 'Lawton, OK', - 1580355 => 'Lawton, OK', - 1580357 => 'Lawton, OK', - 1580362 => 'Newkirk, OK', - 1580363 => 'Blackwell, OK', - 1580369 => 'Davis, OK', - 1580371 => 'Tishomingo, OK', - 1580395 => 'Medford, OK', - 1580421 => 'Ada, OK', - 1580436 => 'Ada, OK', - 1580439 => 'Comanche, OK', - 1580444 => 'Velma, OK', - 1580458 => 'Fort Sill, OK', - 1580470 => 'Duncan, OK', - 1580477 => 'Altus, OK', - 1580482 => 'Altus, OK', - 1580492 => 'Elgin, OK', - 1580497 => 'Cheyenne, OK', - 1580536 => 'Lawton, OK', - 1580544 => 'Boise City, OK', - 1580564 => 'Kingston, OK', - 1580569 => 'Snyder, OK', - 1580581 => 'Lawton, OK', - 1580584 => 'Broken Bow, OK', - 1580588 => 'Apache, OK', - 1580596 => 'Cherokee, OK', - 1580622 => 'Sulphur, OK', - 1580623 => 'Watonga, OK', - 1580625 => 'Beaver, OK', - 1580628 => 'Tonkawa, OK', - 1580652 => 'Hooker, OK', - 1580654 => 'Carnegie, OK', - 1580657 => 'Lone Grove, OK', - 1580658 => 'Marlow, OK', - 1580661 => 'Thomas, OK', - 1580668 => 'Wilson, OK', - 1580688 => 'Hollis, OK', - 1580699 => 'Lawton, OK', - 1580726 => 'Hobart, OK', - 1580735 => 'Buffalo, OK', - 1580759 => 'Stratford, OK', - 1580762 => 'Ponca City, OK', - 1580765 => 'Ponca City, OK', - 1580767 => 'Ponca City, OK', - 1580772 => 'Weatherford, OK', - 1580774 => 'Weatherford, OK', - 1580782 => 'Mangum, OK', - 1580795 => 'Madill, OK', - 1580822 => 'Okeene, OK', - 1580824 => 'Waynoka, OK', - 1580832 => 'New Cordell, OK', - 1580856 => 'Ratliff City, OK', - 1580875 => 'Walters, OK', - 1580886 => 'Canton, OK', - 1580889 => 'Atoka, OK', - 1580920 => 'Durant, OK', - 1580921 => 'Laverne, OK', - 1580922 => 'Seiling, OK', - 1580924 => 'Durant, OK', - 1580925 => 'Konawa, OK', - 1580927 => 'Coalgate, OK', - 1580928 => 'Sayre, OK', - 1580931 => 'Durant, OK', - 1580933 => 'Valliant, OK', - 1580938 => 'Shattuck, OK', - 1580994 => 'Mooreland, OK', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1585.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1585.php deleted file mode 100644 index c19fd9db1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1585.php +++ /dev/null @@ -1,134 +0,0 @@ - 'New York', - 1585218 => 'Pittsford, NY', - 1585223 => 'Fairport, NY', - 1585224 => 'Rochester, NY', - 1585225 => 'Rochester, NY', - 1585226 => 'Avon, NY', - 1585227 => 'Rochester, NY', - 1585229 => 'Honeoye, NY', - 1585232 => 'Rochester, NY', - 1585234 => 'Rochester, NY', - 1585235 => 'Rochester, NY', - 1585237 => 'Perry, NY', - 1585241 => 'Rochester, NY', - 1585242 => 'Rochester, NY', - 1585243 => 'Geneseo, NY', - 1585244 => 'Rochester, NY', - 1585247 => 'Rochester, NY', - 1585248 => 'Pittsford, NY', - 1585254 => 'Rochester, NY', - 1585256 => 'Rochester, NY', - 1585258 => 'Rochester, NY', - 1585262 => 'Rochester, NY', - 1585263 => 'Rochester, NY', - 1585265 => 'Webster, NY', - 1585266 => 'Rochester, NY', - 1585268 => 'Belmont, NY', - 1585270 => 'Rochester, NY', - 1585271 => 'Rochester, NY', - 1585272 => 'Rochester, NY', - 1585273 => 'Rochester, NY', - 1585275 => 'Rochester, NY', - 1585279 => 'Rochester, NY', - 1585288 => 'Rochester, NY', - 1585289 => 'Shortsville, NY', - 1585292 => 'Rochester, NY', - 1585293 => 'Churchville, NY', - 1585295 => 'Rochester, NY', - 1585319 => 'Rochester, NY', - 1585321 => 'Rochester, NY', - 1585325 => 'Rochester, NY', - 1585328 => 'Rochester, NY', - 1585335 => 'Dansville, NY', - 1585336 => 'Rochester, NY', - 1585338 => 'Rochester, NY', - 1585340 => 'Rochester, NY', - 1585341 => 'Rochester, NY', - 1585342 => 'Rochester, NY', - 1585343 => 'Batavia, NY', - 1585344 => 'Batavia, NY', - 1585345 => 'Batavia, NY', - 1585349 => 'Spencerport, NY', - 1585352 => 'Spencerport, NY', - 1585360 => 'Rochester, NY', - 1585368 => 'Rochester, NY', - 1585374 => 'Naples, NY', - 1585377 => 'Fairport, NY', - 1585388 => 'Fairport, NY', - 1585389 => 'Pittsford, NY', - 1585392 => 'Hilton, NY', - 1585393 => 'Canandaigua, NY', - 1585394 => 'Canandaigua, NY', - 1585395 => 'Brockport, NY', - 1585396 => 'Canandaigua, NY', - 1585398 => 'Farmington, NY', - 1585413 => 'Rochester, NY', - 1585421 => 'Fairport, NY', - 1585423 => 'Rochester, NY', - 1585424 => 'Rochester, NY', - 1585425 => 'Fairport, NY', - 1585426 => 'Rochester, NY', - 1585427 => 'Rochester, NY', - 1585428 => 'Rochester, NY', - 1585429 => 'Rochester, NY', - 1585436 => 'Rochester, NY', - 1585442 => 'Rochester, NY', - 1585453 => 'Rochester, NY', - 1585454 => 'Rochester, NY', - 1585458 => 'Rochester, NY', - 1585461 => 'Rochester, NY', - 1585467 => 'Rochester, NY', - 1585468 => 'Nunda, NY', - 1585473 => 'Rochester, NY', - 1585475 => 'Rochester, NY', - 1585482 => 'Rochester, NY', - 1585492 => 'Arcade, NY', - 1585494 => 'Bergen, NY', - 1585538 => 'Caledonia, NY', - 1585544 => 'Rochester, NY', - 1585546 => 'Rochester, NY', - 1585554 => 'Rushville, NY', - 1585563 => 'Rochester, NY', - 1585567 => 'Fillmore, NY', - 1585589 => 'Albion, NY', - 1585591 => 'Attica, NY', - 1585593 => 'Wellsville, NY', - 1585599 => 'Corfu, NY', - 1585621 => 'Rochester, NY', - 1585624 => 'Honeoye Falls, NY', - 1585637 => 'Brockport, NY', - 1585638 => 'Holley, NY', - 1585647 => 'Rochester, NY', - 1585654 => 'Rochester, NY', - 1585657 => 'Bloomfield, NY', - 1585658 => 'Mount Morris, NY', - 1585663 => 'Rochester, NY', - 1585671 => 'Webster, NY', - 1585697 => 'Rochester, NY', - 1585720 => 'Rochester, NY', - 1585723 => 'Rochester, NY', - 1585728 => 'Wayland, NY', - 1585730 => 'Rochester, NY', - 1585742 => 'Victor, NY', - 1585753 => 'Rochester, NY', - 1585760 => 'Rochester, NY', - 1585768 => 'Le Roy, NY', - 1585786 => 'Warsaw, NY', - 1585787 => 'Webster, NY', - 1585798 => 'Medina, NY', - 1585865 => 'Rochester, NY', - 1585872 => 'Webster, NY', - 1585889 => 'Rochester, NY', - 1585922 => 'Rochester, NY', - 1585924 => 'Victor, NY', - 1585948 => 'Oakfield, NY', - 1585964 => 'Hamlin, NY', - 1585968 => 'Cuba, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1586.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1586.php deleted file mode 100644 index aad7bbb33..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1586.php +++ /dev/null @@ -1,44 +0,0 @@ - 'Michigan', - 1586263 => 'Clinton Twp, MI', - 1586264 => 'Sterling Heights, MI', - 1586268 => 'Sterling Heights, MI', - 1586274 => 'Sterling Heights, MI', - 1586286 => 'Clinton Twp, MI', - 1586427 => 'Warren, MI', - 1586446 => 'Sterling Heights, MI', - 1586493 => 'Mount Clemens, MI', - 1586498 => 'Saint Clair Shores, MI', - 1586558 => 'Warren, MI', - 1586573 => 'Warren, MI', - 1586574 => 'Warren, MI', - 1586576 => 'Warren, MI', - 1586582 => 'Warren, MI', - 1586598 => 'Chesterfield, MI', - 1586727 => 'Richmond, MI', - 1586751 => 'Warren, MI', - 1586754 => 'Warren, MI', - 1586755 => 'Warren, MI', - 1586756 => 'Warren, MI', - 1586757 => 'Warren, MI', - 1586758 => 'Warren, MI', - 1586759 => 'Warren, MI', - 1586784 => 'Armada, MI', - 1586790 => 'Clinton Twp, MI', - 1586791 => 'Clinton Twp, MI', - 1586792 => 'Clinton Twp, MI', - 1586795 => 'Sterling Heights, MI', - 1586806 => 'Warren, MI', - 1586939 => 'Sterling Heights, MI', - 1586948 => 'Chesterfield, MI', - 1586949 => 'Chesterfield, MI', - 1586977 => 'Sterling Heights, MI', - 1586978 => 'Sterling Heights, MI', - 1586979 => 'Sterling Heights, MI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1587.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1587.php deleted file mode 100644 index d5b503b26..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1587.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Alberta', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/16.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/16.php new file mode 100644 index 000000000..153d38233 --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/16.php @@ -0,0 +1,3886 @@ + 'Mississippi', + 1601200 => 'Jackson, MS', + 1601225 => 'Gloster, MS', + 1601249 => 'McComb, MS', + 1601250 => 'McComb, MS', + 1601261 => 'Hattiesburg, MS', + 1601264 => 'Hattiesburg, MS', + 1601267 => 'Carthage, MS', + 1601268 => 'Hattiesburg, MS', + 1601271 => 'Hattiesburg, MS', + 1601276 => 'Summit, MS', + 1601288 => 'Hattiesburg, MS', + 1601296 => 'Hattiesburg, MS', + 1601304 => 'Natchez, MS', + 1601321 => 'Jackson, MS', + 1601336 => 'Hattiesburg, MS', + 1601346 => 'Jackson, MS', + 1601352 => 'Jackson, MS', + 1601353 => 'Jackson, MS', + 1601354 => 'Jackson, MS', + 1601355 => 'Jackson, MS', + 1601359 => 'Jackson, MS', + 1601362 => 'Jackson, MS', + 1601364 => 'Jackson, MS', + 1601366 => 'Jackson, MS', + 1601371 => 'Jackson, MS', + 1601372 => 'Jackson, MS', + 1601373 => 'Jackson, MS', + 1601376 => 'Jackson, MS', + 1601384 => 'Meadville, MS', + 1601389 => 'Philadelphia, MS', + 1601394 => 'Leakesville, MS', + 1601425 => 'Laurel, MS', + 1601426 => 'Laurel, MS', + 1601428 => 'Laurel, MS', + 1601437 => 'Port Gibson, MS', + 1601442 => 'Natchez, MS', + 1601445 => 'Natchez, MS', + 1601446 => 'Natchez, MS', + 1601450 => 'Hattiesburg, MS', + 1601469 => 'Forest, MS', + 1601477 => 'Ellisville, MS', + 1601482 => 'Meridian, MS', + 1601483 => 'Meridian, MS', + 1601484 => 'Meridian, MS', + 1601485 => 'Meridian, MS', + 1601487 => 'Jackson, MS', + 1601502 => 'Jackson, MS', + 1601528 => 'Wiggins, MS', + 1601544 => 'Hattiesburg, MS', + 1601545 => 'Hattiesburg, MS', + 1601553 => 'Meridian, MS', + 1601579 => 'Hattiesburg, MS', + 1601582 => 'Hattiesburg, MS', + 1601583 => 'Hattiesburg, MS', + 1601584 => 'Hattiesburg, MS', + 1601587 => 'Monticello, MS', + 1601591 => 'Brandon, MS', + 1601602 => 'Hattiesburg, MS', + 1601605 => 'Ridgeland, MS', + 1601631 => 'Vicksburg, MS', + 1601634 => 'Vicksburg, MS', + 1601635 => 'Decatur, MS', + 1601636 => 'Vicksburg, MS', + 1601638 => 'Vicksburg, MS', + 1601645 => 'Centreville, MS', + 1601649 => 'Laurel, MS', + 1601656 => 'Philadelphia, MS', + 1601657 => 'Liberty, MS', + 1601679 => 'Meridian, MS', + 1601683 => 'Newton, MS', + 1601684 => 'McComb, MS', + 1601693 => 'Meridian, MS', + 1601703 => 'Meridian, MS', + 1601713 => 'Jackson, MS', + 1601722 => 'Seminary, MS', + 1601729 => 'Soso, MS', + 1601731 => 'Columbia, MS', + 1601732 => 'Morton, MS', + 1601735 => 'Waynesboro, MS', + 1601736 => 'Columbia, MS', + 1601743 => 'De Kalb, MS', + 1601749 => 'Picayune, MS', + 1601758 => 'Sumrall, MS', + 1601764 => 'Bay Springs, MS', + 1601765 => 'Collins, MS', + 1601766 => 'Lucedale, MS', + 1601774 => 'Union, MS', + 1601776 => 'Quitman, MS', + 1601782 => 'Raleigh, MS', + 1601783 => 'Magnolia, MS', + 1601785 => 'Taylorsville, MS', + 1601786 => 'Fayette, MS', + 1601787 => 'Heidelberg, MS', + 1601788 => 'Richton, MS', + 1601792 => 'Prentiss, MS', + 1601794 => 'Purvis, MS', + 1601795 => 'Poplarville, MS', + 1601796 => 'Lumberton, MS', + 1601798 => 'Picayune, MS', + 1601799 => 'Picayune, MS', + 1601815 => 'Jackson, MS', + 1601823 => 'Brookhaven, MS', + 1601824 => 'Brandon, MS', + 1601825 => 'Brandon, MS', + 1601829 => 'Brandon, MS', + 1601833 => 'Brookhaven, MS', + 1601835 => 'Brookhaven, MS', + 1601845 => 'Florence, MS', + 1601847 => 'Mendenhall, MS', + 1601849 => 'Magee, MS', + 1601853 => 'Madison, MS', + 1601854 => 'Pelahatchie, MS', + 1601855 => 'Canton, MS', + 1601856 => 'Madison, MS', + 1601857 => 'Raymond, MS', + 1601859 => 'Canton, MS', + 1601876 => 'Tylertown, MS', + 1601878 => 'Terry, MS', + 1601879 => 'Flora, MS', + 1601883 => 'Vicksburg, MS', + 1601885 => 'Utica, MS', + 1601888 => 'Woodville, MS', + 1601892 => 'Crystal Springs, MS', + 1601894 => 'Hazlehurst, MS', + 1601914 => 'Jackson, MS', + 1601922 => 'Jackson, MS', + 1601923 => 'Jackson, MS', + 1601924 => 'Clinton, MS', + 1601925 => 'Clinton, MS', + 1601928 => 'Wiggins, MS', + 1601944 => 'Jackson, MS', + 1601947 => 'Lucedale, MS', + 1601948 => 'Jackson, MS', + 1601949 => 'Jackson, MS', + 1601956 => 'Jackson, MS', + 1601960 => 'Jackson, MS', + 1601961 => 'Jackson, MS', + 1601964 => 'New Augusta, MS', + 1601965 => 'Jackson, MS', + 1601968 => 'Jackson, MS', + 1601969 => 'Jackson, MS', + 1601981 => 'Jackson, MS', + 1601982 => 'Jackson, MS', + 1601984 => 'Jackson, MS', + 1601985 => 'Ridgeland, MS', + 1601987 => 'Jackson, MS', + 1601991 => 'Ridgeland, MS', + 1602 => 'Arizona', + 1602200 => 'Phoenix, AZ', + 1602212 => 'Phoenix, AZ', + 1602216 => 'Phoenix, AZ', + 1602218 => 'Phoenix, AZ', + 1602222 => 'Phoenix, AZ', + 1602224 => 'Phoenix, AZ', + 1602225 => 'Phoenix, AZ', + 1602229 => 'Phoenix, AZ', + 1602230 => 'Phoenix, AZ', + 1602232 => 'Phoenix, AZ', + 1602233 => 'Phoenix, AZ', + 1602234 => 'Phoenix, AZ', + 1602235 => 'Phoenix, AZ', + 1602239 => 'Phoenix, AZ', + 1602240 => 'Phoenix, AZ', + 1602241 => 'Phoenix, AZ', + 1602242 => 'Phoenix, AZ', + 1602243 => 'Phoenix, AZ', + 1602244 => 'Phoenix, AZ', + 1602246 => 'Phoenix, AZ', + 1602248 => 'Phoenix, AZ', + 1602249 => 'Phoenix, AZ', + 1602251 => 'Phoenix, AZ', + 1602252 => 'Phoenix, AZ', + 1602253 => 'Phoenix, AZ', + 1602254 => 'Phoenix, AZ', + 1602255 => 'Phoenix, AZ', + 1602256 => 'Phoenix, AZ', + 1602257 => 'Phoenix, AZ', + 1602258 => 'Phoenix, AZ', + 1602262 => 'Phoenix, AZ', + 1602263 => 'Phoenix, AZ', + 1602264 => 'Phoenix, AZ', + 1602265 => 'Phoenix, AZ', + 1602266 => 'Phoenix, AZ', + 1602267 => 'Phoenix, AZ', + 1602268 => 'Phoenix, AZ', + 1602269 => 'Phoenix, AZ', + 1602271 => 'Phoenix, AZ', + 1602272 => 'Phoenix, AZ', + 1602273 => 'Phoenix, AZ', + 1602274 => 'Phoenix, AZ', + 1602275 => 'Phoenix, AZ', + 1602276 => 'Phoenix, AZ', + 1602277 => 'Phoenix, AZ', + 1602278 => 'Phoenix, AZ', + 1602279 => 'Phoenix, AZ', + 1602281 => 'Phoenix, AZ', + 1602283 => 'Phoenix, AZ', + 1602285 => 'Phoenix, AZ', + 1602286 => 'Phoenix, AZ', + 1602288 => 'Phoenix, AZ', + 1602296 => 'Phoenix, AZ', + 1602304 => 'Phoenix, AZ', + 1602305 => 'Phoenix, AZ', + 1602307 => 'Phoenix, AZ', + 1602314 => 'Phoenix, AZ', + 1602323 => 'Phoenix, AZ', + 1602331 => 'Phoenix, AZ', + 1602336 => 'Phoenix, AZ', + 1602340 => 'Phoenix, AZ', + 1602344 => 'Phoenix, AZ', + 1602347 => 'Phoenix, AZ', + 1602353 => 'Phoenix, AZ', + 1602354 => 'Phoenix, AZ', + 1602358 => 'Phoenix, AZ', + 1602368 => 'Phoenix, AZ', + 1602371 => 'Phoenix, AZ', + 1602372 => 'Phoenix, AZ', + 1602374 => 'Phoenix, AZ', + 1602375 => 'Phoenix, AZ', + 1602381 => 'Phoenix, AZ', + 1602382 => 'Phoenix, AZ', + 1602388 => 'Phoenix, AZ', + 1602393 => 'Phoenix, AZ', + 1602395 => 'Phoenix, AZ', + 1602404 => 'Phoenix, AZ', + 1602406 => 'Phoenix, AZ', + 1602424 => 'Phoenix, AZ', + 1602426 => 'Phoenix, AZ', + 1602433 => 'Phoenix, AZ', + 1602437 => 'Phoenix, AZ', + 1602438 => 'Phoenix, AZ', + 1602439 => 'Glendale, AZ', + 1602441 => 'Phoenix, AZ', + 1602442 => 'Phoenix, AZ', + 1602443 => 'Phoenix, AZ', + 1602445 => 'Phoenix, AZ', + 1602449 => 'Phoenix, AZ', + 1602454 => 'Phoenix, AZ', + 1602455 => 'Phoenix, AZ', + 1602456 => 'Phoenix, AZ', + 1602462 => 'Phoenix, AZ', + 1602466 => 'Phoenix, AZ', + 1602468 => 'Phoenix, AZ', + 1602470 => 'Phoenix, AZ', + 1602482 => 'Phoenix, AZ', + 1602484 => 'Phoenix, AZ', + 1602485 => 'Phoenix, AZ', + 1602493 => 'Phoenix, AZ', + 1602494 => 'Phoenix, AZ', + 1602495 => 'Phoenix, AZ', + 1602504 => 'Phoenix, AZ', + 1602506 => 'Phoenix, AZ', + 1602508 => 'Phoenix, AZ', + 1602522 => 'Phoenix, AZ', + 1602530 => 'Phoenix, AZ', + 1602535 => 'Phoenix, AZ', + 1602542 => 'Phoenix, AZ', + 1602546 => 'Phoenix, AZ', + 1602548 => 'Phoenix, AZ', + 1602553 => 'Phoenix, AZ', + 1602569 => 'Phoenix, AZ', + 1602588 => 'Glendale, AZ', + 1602589 => 'Phoenix, AZ', + 1602595 => 'Phoenix, AZ', + 1602604 => 'Phoenix, AZ', + 1602606 => 'Phoenix, AZ', + 1602626 => 'Phoenix, AZ', + 1602667 => 'Phoenix, AZ', + 1602674 => 'Phoenix, AZ', + 1602678 => 'Phoenix, AZ', + 1602682 => 'Phoenix, AZ', + 1602687 => 'Phoenix, AZ', + 1602712 => 'Phoenix, AZ', + 1602714 => 'Phoenix, AZ', + 1602749 => 'Phoenix, AZ', + 1602765 => 'Phoenix, AZ', + 1602778 => 'Phoenix, AZ', + 1602787 => 'Phoenix, AZ', + 1602788 => 'Phoenix, AZ', + 1602789 => 'Phoenix, AZ', + 1602795 => 'Phoenix, AZ', + 1602808 => 'Phoenix, AZ', + 1602839 => 'Phoenix, AZ', + 1602840 => 'Phoenix, AZ', + 1602841 => 'Phoenix, AZ', + 1602861 => 'Phoenix, AZ', + 1602863 => 'Phoenix, AZ', + 1602864 => 'Phoenix, AZ', + 1602865 => 'Glendale, AZ', + 1602866 => 'Phoenix, AZ', + 1602867 => 'Phoenix, AZ', + 1602870 => 'Phoenix, AZ', + 1602889 => 'Phoenix, AZ', + 1602896 => 'Phoenix, AZ', + 1602916 => 'Phoenix, AZ', + 1602923 => 'Phoenix, AZ', + 1602926 => 'Phoenix, AZ', + 1602942 => 'Phoenix, AZ', + 1602943 => 'Phoenix, AZ', + 1602944 => 'Phoenix, AZ', + 1602952 => 'Phoenix, AZ', + 1602953 => 'Phoenix, AZ', + 1602954 => 'Phoenix, AZ', + 1602955 => 'Phoenix, AZ', + 1602956 => 'Phoenix, AZ', + 1602957 => 'Phoenix, AZ', + 1602971 => 'Phoenix, AZ', + 1602973 => 'Phoenix, AZ', + 1602978 => 'Glendale, AZ', + 1602992 => 'Phoenix, AZ', + 1602993 => 'Phoenix, AZ', + 1602995 => 'Phoenix, AZ', + 1602996 => 'Phoenix, AZ', + 1602997 => 'Phoenix, AZ', + 1603 => 'New Hampshire', + 1603204 => 'Nashua, NH', + 1603223 => 'Concord, NH', + 1603224 => 'Concord, NH', + 1603225 => 'Concord, NH', + 1603226 => 'Concord, NH', + 1603227 => 'Concord, NH', + 1603228 => 'Concord, NH', + 1603229 => 'Concord, NH', + 1603232 => 'Manchester, NH', + 1603237 => 'Colebrook, NH', + 1603239 => 'Winchester, NH', + 1603253 => 'Moultonborough, NH', + 1603262 => 'Merrimack, NH', + 1603267 => 'Belmont, NH', + 1603271 => 'Concord, NH', + 1603279 => 'Meredith, NH', + 1603286 => 'Tilton, NH', + 1603293 => 'Gilford, NH', + 1603298 => 'West Lebanon, NH', + 1603319 => 'Portsmouth, NH', + 1603323 => 'Tamworth, NH', + 1603329 => 'Hampstead, NH', + 1603330 => 'Rochester, NH', + 1603332 => 'Rochester, NH', + 1603335 => 'Rochester, NH', + 1603343 => 'Dover, NH', + 1603352 => 'Keene, NH', + 1603354 => 'Keene, NH', + 1603355 => 'Keene, NH', + 1603356 => 'North Conway, NH', + 1603357 => 'Keene, NH', + 1603358 => 'Keene, NH', + 1603362 => 'Atkinson, NH', + 1603366 => 'Laconia, NH', + 1603378 => 'Plaistow, NH', + 1603382 => 'Plaistow, NH', + 1603383 => 'Jackson, NH', + 1603421 => 'Derry, NH', + 1603422 => 'Portsmouth, NH', + 1603424 => 'Merrimack, NH', + 1603427 => 'Portsmouth, NH', + 1603428 => 'Henniker, NH', + 1603429 => 'Merrimack, NH', + 1603430 => 'Portsmouth, NH', + 1603431 => 'Portsmouth, NH', + 1603433 => 'Portsmouth, NH', + 1603435 => 'Pittsfield, NH', + 1603436 => 'Portsmouth, NH', + 1603444 => 'Littleton, NH', + 1603447 => 'Conway, NH', + 1603448 => 'Lebanon, NH', + 1603456 => 'Warner, NH', + 1603458 => 'Salem, NH', + 1603463 => 'Deerfield, NH', + 1603464 => 'Hillsboro, NH', + 1603465 => 'Hollis, NH', + 1603466 => 'Gorham, NH', + 1603471 => 'Bedford, NH', + 1603472 => 'Bedford, NH', + 1603474 => 'Seabrook, NH', + 1603476 => 'Moultonborough, NH', + 1603483 => 'Candia, NH', + 1603487 => 'New Boston, NH', + 1603497 => 'Goffstown, NH', + 1603516 => 'Dover, NH', + 1603518 => 'Manchester, NH', + 1603522 => 'Sanbornville, NH', + 1603523 => 'Canaan, NH', + 1603524 => 'Laconia, NH', + 1603526 => 'New London, NH', + 1603527 => 'Laconia, NH', + 1603528 => 'Laconia, NH', + 1603529 => 'Weare, NH', + 1603532 => 'Jaffrey, NH', + 1603536 => 'Plymouth, NH', + 1603542 => 'Claremont, NH', + 1603543 => 'Claremont, NH', + 1603547 => 'Greenfield, NH', + 1603569 => 'Wolfeboro, NH', + 1603577 => 'Nashua, NH', + 1603578 => 'Nashua, NH', + 1603580 => 'Exeter, NH', + 1603585 => 'Fitzwilliam, NH', + 1603588 => 'Antrim, NH', + 1603589 => 'Nashua, NH', + 1603594 => 'Nashua, NH', + 1603595 => 'Nashua, NH', + 1603598 => 'Nashua, NH', + 1603601 => 'Hampton, NH', + 1603606 => 'Manchester, NH', + 1603610 => 'Portsmouth, NH', + 1603621 => 'Manchester, NH', + 1603622 => 'Manchester, NH', + 1603623 => 'Manchester, NH', + 1603624 => 'Manchester, NH', + 1603625 => 'Manchester, NH', + 1603626 => 'Manchester, NH', + 1603627 => 'Manchester, NH', + 1603629 => 'Manchester, NH', + 1603632 => 'Enfield, NH', + 1603635 => 'Pelham, NH', + 1603636 => 'Groveton, NH', + 1603641 => 'Manchester, NH', + 1603642 => 'Kingston, NH', + 1603643 => 'Hanover, NH', + 1603644 => 'Manchester, NH', + 1603645 => 'Manchester, NH', + 1603646 => 'Hanover, NH', + 1603647 => 'Manchester, NH', + 1603650 => 'Lebanon, NH', + 1603653 => 'Lebanon, NH', + 1603654 => 'Wilton, NH', + 1603659 => 'Newmarket, NH', + 1603663 => 'Manchester, NH', + 1603664 => 'Barrington, NH', + 1603666 => 'Manchester, NH', + 1603668 => 'Manchester, NH', + 1603669 => 'Manchester, NH', + 1603673 => 'Milford, NH', + 1603679 => 'Epping, NH', + 1603692 => 'Somersworth, NH', + 1603695 => 'Manchester, NH', + 1603726 => 'Campton, NH', + 1603736 => 'Epsom, NH', + 1603740 => 'Dover, NH', + 1603742 => 'Dover, NH', + 1603743 => 'Dover, NH', + 1603744 => 'Bristol, NH', + 1603745 => 'Lincoln, NH', + 1603747 => 'Woodsville, NH', + 1603749 => 'Dover, NH', + 1603752 => 'Berlin, NH', + 1603755 => 'Farmington, NH', + 1603756 => 'Walpole, NH', + 1603763 => 'Sunapee, NH', + 1603766 => 'Portsmouth, NH', + 1603772 => 'Exeter, NH', + 1603773 => 'Exeter, NH', + 1603774 => 'Dunbarton, NH', + 1603775 => 'Exeter, NH', + 1603778 => 'Exeter, NH', + 1603786 => 'Rumney, NH', + 1603787 => 'North Haverhill, NH', + 1603788 => 'Lancaster, NH', + 1603798 => 'Chichester, NH', + 1603821 => 'Nashua, NH', + 1603823 => 'Franconia, NH', + 1603826 => 'Charlestown, NH', + 1603835 => 'Alstead, NH', + 1603836 => 'Manchester, NH', + 1603837 => 'Whitefield, NH', + 1603838 => 'Lisbon, NH', + 1603856 => 'Concord, NH', + 1603862 => 'Durham, NH', + 1603863 => 'Newport, NH', + 1603868 => 'Durham, NH', + 1603870 => 'Salem, NH', + 1603875 => 'Alton, NH', + 1603876 => 'Marlborough, NH', + 1603878 => 'New Ipswich, NH', + 1603880 => 'Nashua, NH', + 1603881 => 'Nashua, NH', + 1603882 => 'Nashua, NH', + 1603883 => 'Nashua, NH', + 1603886 => 'Nashua, NH', + 1603887 => 'Chester, NH', + 1603888 => 'Nashua, NH', + 1603889 => 'Nashua, NH', + 1603890 => 'Salem, NH', + 1603891 => 'Nashua, NH', + 1603893 => 'Salem, NH', + 1603894 => 'Salem, NH', + 1603895 => 'Raymond, NH', + 1603898 => 'Salem, NH', + 1603899 => 'Rindge, NH', + 1603924 => 'Peterborough, NH', + 1603926 => 'Hampton, NH', + 1603929 => 'Hampton, NH', + 1603934 => 'Franklin, NH', + 1603935 => 'Manchester, NH', + 1603938 => 'Bradford, NH', + 1603942 => 'Northwood, NH', + 1603943 => 'Nashua, NH', + 1603964 => 'North Hampton, NH', + 1603965 => 'Derry, NH', + 1603968 => 'Ashland, NH', + 1604 => 'British Columbia', + 1604205 => 'Burnaby, BC', + 1604207 => 'Richmond, BC', + 1604214 => 'Richmond, BC', + 1604215 => 'Vancouver, BC', + 1604221 => 'Vancouver, BC', + 1604222 => 'Vancouver, BC', + 1604224 => 'Vancouver, BC', + 1604228 => 'Vancouver, BC', + 1604231 => 'Richmond, BC', + 1604232 => 'Richmond, BC', + 1604233 => 'Richmond, BC', + 1604241 => 'Richmond, BC', + 1604244 => 'Richmond, BC', + 1604247 => 'Richmond, BC', + 1604248 => 'Richmond, BC', + 1604251 => 'Vancouver, BC', + 1604253 => 'Vancouver, BC', + 1604254 => 'Vancouver, BC', + 1604255 => 'Vancouver, BC', + 1604257 => 'Vancouver, BC', + 1604261 => 'Vancouver, BC', + 1604263 => 'Vancouver, BC', + 1604264 => 'Vancouver, BC', + 1604266 => 'Vancouver, BC', + 1604267 => 'Vancouver, BC', + 1604270 => 'Richmond, BC', + 1604271 => 'Richmond, BC', + 1604272 => 'Richmond, BC', + 1604273 => 'Richmond, BC', + 1604274 => 'Richmond, BC', + 1604275 => 'Richmond, BC', + 1604276 => 'Richmond, BC', + 1604277 => 'Richmond, BC', + 1604278 => 'Richmond, BC', + 1604279 => 'Richmond, BC', + 1604284 => 'Richmond, BC', + 1604291 => 'Burnaby, BC', + 1604293 => 'Burnaby, BC', + 1604294 => 'Burnaby, BC', + 1604295 => 'Richmond, BC', + 1604298 => 'Burnaby, BC', + 1604299 => 'Burnaby, BC', + 1604303 => 'Richmond, BC', + 1604304 => 'Richmond, BC', + 1604321 => 'Vancouver, BC', + 1604322 => 'Vancouver, BC', + 1604323 => 'Vancouver, BC', + 1604324 => 'Vancouver, BC', + 1604325 => 'Vancouver, BC', + 1604327 => 'Vancouver, BC', + 1604331 => 'Vancouver, BC', + 1604392 => 'Chilliwack, BC', + 1604408 => 'Vancouver, BC', + 1604415 => 'Burnaby, BC', + 1604420 => 'Burnaby, BC', + 1604421 => 'Burnaby, BC', + 1604430 => 'Burnaby, BC', + 1604431 => 'Burnaby, BC', + 1604432 => 'Burnaby, BC', + 1604433 => 'Burnaby, BC', + 1604434 => 'Burnaby, BC', + 1604435 => 'Burnaby, BC', + 1604436 => 'Burnaby, BC', + 1604437 => 'Burnaby, BC', + 1604438 => 'Burnaby, BC', + 1604439 => 'Burnaby, BC', + 1604444 => 'Burnaby, BC', + 1604448 => 'Richmond, BC', + 1604451 => 'Burnaby, BC', + 1604454 => 'Burnaby, BC', + 1604455 => 'Langley, BC', + 1604461 => 'Port Moody, BC', + 1604462 => 'Maple Ridge, BC', + 1604463 => 'Maple Ridge, BC', + 1604466 => 'Maple Ridge, BC', + 1604467 => 'Maple Ridge, BC', + 1604469 => 'Port Moody, BC', + 1604472 => 'Port Coquitlam, BC', + 1604476 => 'Maple Ridge, BC', + 1604477 => 'Maple Ridge, BC', + 1604483 => 'Powell River, BC', + 1604484 => 'Vancouver, BC', + 1604485 => 'Powell River, BC', + 1604488 => 'Vancouver, BC', + 1604501 => 'Surrey, BC', + 1604502 => 'Surrey, BC', + 1604504 => 'Abbotsford, BC', + 1604507 => 'Surrey, BC', + 1604510 => 'Langley, BC', + 1604513 => 'Langley, BC', + 1604514 => 'Langley, BC', + 1604521 => 'New Westminster, BC', + 1604522 => 'New Westminster, BC', + 1604530 => 'Langley, BC', + 1604531 => 'Surrey, BC', + 1604532 => 'Langley, BC', + 1604533 => 'Langley, BC', + 1604534 => 'Langley, BC', + 1604535 => 'Surrey, BC', + 1604536 => 'Surrey, BC', + 1604538 => 'Surrey, BC', + 1604539 => 'Langley, BC', + 1604541 => 'Surrey, BC', + 1604542 => 'Surrey, BC', + 1604543 => 'Surrey, BC', + 1604544 => 'New Westminster, BC', + 1604556 => 'Abbotsford, BC', + 1604557 => 'Abbotsford, BC', + 1604558 => 'Vancouver, BC', + 1604560 => 'Surrey, BC', + 1604566 => 'Vancouver, BC', + 1604568 => 'Vancouver, BC', + 1604569 => 'Vancouver, BC', + 1604572 => 'Surrey, BC', + 1604574 => 'Surrey, BC', + 1604575 => 'Surrey, BC', + 1604576 => 'Surrey, BC', + 1604580 => 'Surrey, BC', + 1604581 => 'Surrey, BC', + 1604582 => 'Surrey, BC', + 1604583 => 'Surrey, BC', + 1604584 => 'Surrey, BC', + 1604585 => 'Surrey, BC', + 1604588 => 'Surrey, BC', + 1604589 => 'Surrey, BC', + 1604590 => 'Surrey, BC', + 1604591 => 'Surrey, BC', + 1604592 => 'Surrey, BC', + 1604593 => 'Surrey, BC', + 1604594 => 'Surrey, BC', + 1604596 => 'Surrey, BC', + 1604597 => 'Surrey, BC', + 1604598 => 'Surrey, BC', + 1604599 => 'Surrey, BC', + 1604602 => 'Vancouver, BC', + 1604605 => 'Vancouver, BC', + 1604606 => 'Vancouver, BC', + 1604608 => 'Vancouver, BC', + 1604609 => 'Vancouver, BC', + 1604629 => 'Vancouver, BC', + 1604630 => 'Vancouver, BC', + 1604631 => 'Vancouver, BC', + 1604632 => 'Vancouver, BC', + 1604633 => 'Vancouver, BC', + 1604637 => 'Vancouver, BC', + 1604638 => 'Vancouver, BC', + 1604640 => 'Vancouver, BC', + 1604641 => 'Vancouver, BC', + 1604643 => 'Vancouver, BC', + 1604646 => 'Vancouver, BC', + 1604647 => 'Vancouver, BC', + 1604660 => 'Vancouver, BC', + 1604661 => 'Vancouver, BC', + 1604662 => 'Vancouver, BC', + 1604664 => 'Burnaby, BC', + 1604665 => 'Vancouver, BC', + 1604666 => 'Vancouver, BC', + 1604669 => 'Vancouver, BC', + 1604676 => 'Vancouver, BC', + 1604677 => 'Vancouver, BC', + 1604678 => 'Vancouver, BC', + 1604681 => 'Vancouver, BC', + 1604682 => 'Vancouver, BC', + 1604683 => 'Vancouver, BC', + 1604684 => 'Vancouver, BC', + 1604685 => 'Vancouver, BC', + 1604687 => 'Vancouver, BC', + 1604688 => 'Vancouver, BC', + 1604689 => 'Vancouver, BC', + 1604696 => 'Vancouver, BC', + 1604702 => 'Chilliwack, BC', + 1604703 => 'Chilliwack, BC', + 1604708 => 'Vancouver, BC', + 1604709 => 'Vancouver, BC', + 1604713 => 'Vancouver, BC', + 1604714 => 'Vancouver, BC', + 1604718 => 'Vancouver, BC', + 1604730 => 'Vancouver, BC', + 1604731 => 'Vancouver, BC', + 1604732 => 'Vancouver, BC', + 1604733 => 'Vancouver, BC', + 1604734 => 'Vancouver, BC', + 1604736 => 'Vancouver, BC', + 1604737 => 'Vancouver, BC', + 1604738 => 'Vancouver, BC', + 1604739 => 'Vancouver, BC', + 1604740 => 'Sechelt, BC', + 1604742 => 'Vancouver, BC', + 1604746 => 'Abbotsford, BC', + 1604792 => 'Chilliwack, BC', + 1604793 => 'Chilliwack, BC', + 1604794 => 'Chilliwack, BC', + 1604795 => 'Chilliwack, BC', + 1604796 => 'Agassiz, BC', + 1604801 => 'Vancouver, BC', + 1604806 => 'Vancouver, BC', + 1604814 => 'Mission, BC', + 1604815 => 'Squamish, BC', + 1604820 => 'Mission, BC', + 1604821 => 'Richmond, BC', + 1604822 => 'Vancouver, BC', + 1604823 => 'Chilliwack, BC', + 1604824 => 'Chilliwack, BC', + 1604826 => 'Mission, BC', + 1604846 => 'Chilliwack, BC', + 1604847 => 'Chilliwack, BC', + 1604850 => 'Abbotsford, BC', + 1604852 => 'Abbotsford, BC', + 1604853 => 'Abbotsford, BC', + 1604854 => 'Abbotsford, BC', + 1604855 => 'Abbotsford, BC', + 1604858 => 'Chilliwack, BC', + 1604859 => 'Abbotsford, BC', + 1604864 => 'Abbotsford, BC', + 1604869 => 'Hope, BC', + 1604870 => 'Abbotsford, BC', + 1604871 => 'Vancouver, BC', + 1604872 => 'Vancouver, BC', + 1604873 => 'Vancouver, BC', + 1604874 => 'Vancouver, BC', + 1604875 => 'Vancouver, BC', + 1604876 => 'Vancouver, BC', + 1604877 => 'Vancouver, BC', + 1604879 => 'Vancouver, BC', + 1604881 => 'Langley, BC', + 1604882 => 'Langley, BC', + 1604883 => 'Madeira Park, BC', + 1604885 => 'Sechelt, BC', + 1604886 => 'Gibsons, BC', + 1604888 => 'Langley, BC', + 1604891 => 'Vancouver, BC', + 1604892 => 'Squamish, BC', + 1604894 => 'Pemberton, BC', + 1604898 => 'Squamish, BC', + 1604899 => 'Vancouver, BC', + 1604904 => 'North Vancouver, BC', + 1604905 => 'Whistler, BC', + 1604913 => 'West Vancouver, BC', + 1604921 => 'West Vancouver, BC', + 1604922 => 'West Vancouver, BC', + 1604924 => 'North Vancouver, BC', + 1604925 => 'West Vancouver, BC', + 1604926 => 'West Vancouver, BC', + 1604929 => 'North Vancouver, BC', + 1604930 => 'Surrey, BC', + 1604931 => 'Coquitlam, BC', + 1604932 => 'Whistler, BC', + 1604935 => 'Whistler, BC', + 1604936 => 'Coquitlam, BC', + 1604937 => 'Coquitlam, BC', + 1604938 => 'Whistler, BC', + 1604939 => 'Coquitlam, BC', + 1604941 => 'Port Coquitlam, BC', + 1604942 => 'Port Coquitlam, BC', + 1604944 => 'Port Coquitlam, BC', + 1604947 => 'Bowen Island, BC', + 1604951 => 'Surrey, BC', + 1604980 => 'North Vancouver, BC', + 1604982 => 'North Vancouver, BC', + 1604983 => 'North Vancouver, BC', + 1604984 => 'North Vancouver, BC', + 1604985 => 'North Vancouver, BC', + 1604986 => 'North Vancouver, BC', + 1604987 => 'North Vancouver, BC', + 1604988 => 'North Vancouver, BC', + 1604990 => 'North Vancouver, BC', + 1604998 => 'North Vancouver, BC', + 1605 => 'South Dakota', + 1605217 => 'North Sioux City, SD', + 1605223 => 'Fort Pierre, SD', + 1605224 => 'Pierre, SD', + 1605225 => 'Aberdeen, SD', + 1605226 => 'Aberdeen, SD', + 1605229 => 'Aberdeen, SD', + 1605232 => 'North Sioux City, SD', + 1605234 => 'Chamberlain, SD', + 1605256 => 'Madison, SD', + 1605260 => 'Yankton, SD', + 1605271 => 'Sioux Falls, SD', + 1605274 => 'Sioux Falls, SD', + 1605275 => 'Sioux Falls, SD', + 1605279 => 'Wall, SD', + 1605297 => 'Parker, SD', + 1605322 => 'Sioux Falls, SD', + 1605328 => 'Sioux Falls, SD', + 1605330 => 'Sioux Falls, SD', + 1605331 => 'Sioux Falls, SD', + 1605332 => 'Sioux Falls, SD', + 1605333 => 'Sioux Falls, SD', + 1605334 => 'Sioux Falls, SD', + 1605335 => 'Sioux Falls, SD', + 1605336 => 'Sioux Falls, SD', + 1605337 => 'Platte, SD', + 1605338 => 'Sioux Falls, SD', + 1605339 => 'Sioux Falls, SD', + 1605341 => 'Rapid City, SD', + 1605342 => 'Rapid City, SD', + 1605343 => 'Rapid City, SD', + 1605345 => 'Webster, SD', + 1605347 => 'Sturgis, SD', + 1605348 => 'Rapid City, SD', + 1605352 => 'Huron, SD', + 1605353 => 'Huron, SD', + 1605355 => 'Rapid City, SD', + 1605356 => 'Elk Point, SD', + 1605357 => 'Sioux Falls, SD', + 1605360 => 'Sioux Falls, SD', + 1605361 => 'Sioux Falls, SD', + 1605362 => 'Sioux Falls, SD', + 1605367 => 'Sioux Falls, SD', + 1605368 => 'Tea, SD', + 1605371 => 'Sioux Falls, SD', + 1605373 => 'Sioux Falls, SD', + 1605374 => 'Lemmon, SD', + 1605384 => 'Wagner, SD', + 1605387 => 'Menno, SD', + 1605388 => 'Rapid City, SD', + 1605393 => 'Rapid City, SD', + 1605394 => 'Rapid City, SD', + 1605397 => 'Groton, SD', + 1605399 => 'Rapid City, SD', + 1605425 => 'Salem, SD', + 1605426 => 'Ipswich, SD', + 1605428 => 'Dell Rapids, SD', + 1605432 => 'Milbank, SD', + 1605448 => 'Britton, SD', + 1605472 => 'Redfield, SD', + 1605487 => 'Lake Andes, SD', + 1605498 => 'Tea, SD', + 1605528 => 'Hartford, SD', + 1605532 => 'Clark, SD', + 1605539 => 'Wessington Spgs, SD', + 1605574 => 'Hill City, SD', + 1605578 => 'Deadwood, SD', + 1605582 => 'Brandon, SD', + 1605584 => 'Lead, SD', + 1605589 => 'Tyndall, SD', + 1605594 => 'Garretson, SD', + 1605598 => 'Faulkton, SD', + 1605622 => 'Aberdeen, SD', + 1605624 => 'Vermillion, SD', + 1605626 => 'Aberdeen, SD', + 1605627 => 'Volga, SD', + 1605642 => 'Spearfish, SD', + 1605644 => 'Spearfish, SD', + 1605647 => 'Lennox, SD', + 1605649 => 'Selby, SD', + 1605665 => 'Yankton, SD', + 1605668 => 'Yankton, SD', + 1605669 => 'Murdo, SD', + 1605673 => 'Custer, SD', + 1605685 => 'Martin, SD', + 1605692 => 'Brookings, SD', + 1605693 => 'Brookings, SD', + 1605697 => 'Brookings, SD', + 1605698 => 'Sisseton, SD', + 1605716 => 'Rapid City, SD', + 1605717 => 'Spearfish, SD', + 1605718 => 'Rapid City, SD', + 1605719 => 'Rapid City, SD', + 1605720 => 'Sturgis, SD', + 1605721 => 'Rapid City, SD', + 1605722 => 'Spearfish, SD', + 1605724 => 'Armour, SD', + 1605725 => 'Aberdeen, SD', + 1605734 => 'Chamberlain, SD', + 1605745 => 'Hot Springs, SD', + 1605747 => 'Rosebud, SD', + 1605753 => 'Watertown, SD', + 1605763 => 'Beresford, SD', + 1605765 => 'Gettysburg, SD', + 1605772 => 'Howard, SD', + 1605773 => 'Pierre, SD', + 1605775 => 'Burke, SD', + 1605778 => 'Kimball, SD', + 1605791 => 'Rapid City, SD', + 1605796 => 'Woonsocket, SD', + 1605823 => 'McLaughlin, SD', + 1605835 => 'Gregory, SD', + 1605842 => 'Winner, SD', + 1605845 => 'Mobridge, SD', + 1605852 => 'Highmore, SD', + 1605853 => 'Miller, SD', + 1605854 => 'De Smet, SD', + 1605856 => 'Mission, SD', + 1605859 => 'Philip, SD', + 1605867 => 'Pine Ridge, SD', + 1605874 => 'Clear Lake, SD', + 1605878 => 'Watertown, SD', + 1605882 => 'Watertown, SD', + 1605886 => 'Watertown, SD', + 1605892 => 'Belle Fourche, SD', + 1605923 => 'Box Elder, SD', + 1605925 => 'Freeman, SD', + 1605928 => 'Parkston, SD', + 1605945 => 'Pierre, SD', + 1605964 => 'Eagle Butte, SD', + 1605977 => 'Sioux Falls, SD', + 1605983 => 'Arlington, SD', + 1605987 => 'Canton, SD', + 1605995 => 'Mitchell, SD', + 1605996 => 'Mitchell, SD', + 1605997 => 'Flandreau, SD', + 1606 => 'Kentucky', + 1606218 => 'Pikeville, KY', + 1606237 => 'South Williamson, KY', + 1606248 => 'Middlesboro, KY', + 1606256 => 'Mount Vernon, KY', + 1606258 => 'Corbin, KY', + 1606285 => 'Martin, KY', + 1606286 => 'Olive Hill, KY', + 1606287 => 'McKee, KY', + 1606298 => 'Inez, KY', + 1606324 => 'Ashland, KY', + 1606325 => 'Ashland, KY', + 1606326 => 'Ashland, KY', + 1606327 => 'Ashland, KY', + 1606329 => 'Ashland, KY', + 1606330 => 'London, KY', + 1606337 => 'Pineville, KY', + 1606340 => 'Monticello, KY', + 1606348 => 'Monticello, KY', + 1606349 => 'Salyersville, KY', + 1606354 => 'Pine Knot, KY', + 1606364 => 'Annville, KY', + 1606365 => 'Stanford, KY', + 1606376 => 'Whitley City, KY', + 1606379 => 'Eubank, KY', + 1606387 => 'Albany, KY', + 1606408 => 'Ashland, KY', + 1606423 => 'Science Hill, KY', + 1606432 => 'Pikeville, KY', + 1606433 => 'Pikeville, KY', + 1606435 => 'Hazard, KY', + 1606436 => 'Hazard, KY', + 1606437 => 'Pikeville, KY', + 1606439 => 'Hazard, KY', + 1606451 => 'Somerset, KY', + 1606456 => 'Phelps, KY', + 1606464 => 'Beattyville, KY', + 1606473 => 'Greenup, KY', + 1606474 => 'Grayson, KY', + 1606475 => 'Grayson, KY', + 1606487 => 'Hazard, KY', + 1606523 => 'Corbin, KY', + 1606526 => 'Corbin, KY', + 1606528 => 'Corbin, KY', + 1606545 => 'Barbourville, KY', + 1606546 => 'Barbourville, KY', + 1606549 => 'Williamsburg, KY', + 1606564 => 'Maysville, KY', + 1606573 => 'Harlan, KY', + 1606589 => 'Cumberland, KY', + 1606593 => 'Booneville, KY', + 1606598 => 'Manchester, KY', + 1606599 => 'Manchester, KY', + 1606633 => 'Whitesburg, KY', + 1606638 => 'Louisa, KY', + 1606663 => 'Stanton, KY', + 1606666 => 'Jackson, KY', + 1606668 => 'Campton, KY', + 1606672 => 'Hyden, KY', + 1606674 => 'Owingsville, KY', + 1606676 => 'Somerset, KY', + 1606677 => 'Somerset, KY', + 1606678 => 'Somerset, KY', + 1606679 => 'Somerset, KY', + 1606723 => 'Irvine, KY', + 1606735 => 'Brooksville, KY', + 1606738 => 'Sandy Hook, KY', + 1606739 => 'Catlettsburg, KY', + 1606743 => 'West Liberty, KY', + 1606754 => 'Elkhorn City, KY', + 1606756 => 'Augusta, KY', + 1606759 => 'Maysville, KY', + 1606768 => 'Frenchburg, KY', + 1606780 => 'Morehead, KY', + 1606783 => 'Morehead, KY', + 1606784 => 'Morehead, KY', + 1606785 => 'Hindman, KY', + 1606787 => 'Liberty, KY', + 1606788 => 'Paintsville, KY', + 1606789 => 'Paintsville, KY', + 1606796 => 'Vanceburg, KY', + 1606832 => 'Jenkins, KY', + 1606837 => 'Evarts, KY', + 1606843 => 'East Bernstadt, KY', + 1606845 => 'Flemingsburg, KY', + 1606849 => 'Flemingsburg, KY', + 1606862 => 'London, KY', + 1606864 => 'London, KY', + 1606877 => 'London, KY', + 1606878 => 'London, KY', + 1606886 => 'Prestonsburg, KY', + 1606889 => 'Prestonsburg, KY', + 1606928 => 'Ashland, KY', + 1606929 => 'Ashland, KY', + 1606932 => 'South Shore, KY', + 1607 => 'New York', + 1607217 => 'Binghamton, NY', + 1607231 => 'Binghamton, NY', + 1607239 => 'Endicott, NY', + 1607243 => 'Dundee, NY', + 1607255 => 'Ithaca, NY', + 1607256 => 'Ithaca, NY', + 1607257 => 'Ithaca, NY', + 1607264 => 'Cherry Valley, NY', + 1607266 => 'Ithaca, NY', + 1607272 => 'Ithaca, NY', + 1607273 => 'Ithaca, NY', + 1607274 => 'Ithaca, NY', + 1607277 => 'Ithaca, NY', + 1607319 => 'Ithaca, NY', + 1607324 => 'Hornell, NY', + 1607334 => 'Norwich, NY', + 1607336 => 'Norwich, NY', + 1607337 => 'Norwich, NY', + 1607359 => 'Addison, NY', + 1607363 => 'Downsville, NY', + 1607369 => 'Unadilla, NY', + 1607387 => 'Trumansburg, NY', + 1607431 => 'Oneonta, NY', + 1607432 => 'Oneonta, NY', + 1607433 => 'Oneonta, NY', + 1607467 => 'Deposit, NY', + 1607498 => 'Roscoe, NY', + 1607533 => 'Lansing, NY', + 1607535 => 'Watkins Glen, NY', + 1607539 => 'Brooktondale, NY', + 1607546 => 'Burdett, NY', + 1607547 => 'Cooperstown, NY', + 1607562 => 'Big Flats, NY', + 1607563 => 'Sidney, NY', + 1607564 => 'Newfield, NY', + 1607565 => 'Waverly, NY', + 1607569 => 'Hammondsport, NY', + 1607587 => 'Alfred, NY', + 1607589 => 'Spencer, NY', + 1607625 => 'Apalachin, NY', + 1607637 => 'Hancock, NY', + 1607639 => 'Afton, NY', + 1607642 => 'Newark Valley, NY', + 1607652 => 'Stamford, NY', + 1607655 => 'Windsor, NY', + 1607656 => 'Greene, NY', + 1607659 => 'Candor, NY', + 1607664 => 'Bath, NY', + 1607674 => 'Sherburne, NY', + 1607687 => 'Owego, NY', + 1607692 => 'Whitney Point, NY', + 1607693 => 'Harpursville, NY', + 1607698 => 'Canisteo, NY', + 1607699 => 'Nichols, NY', + 1607722 => 'Binghamton, NY', + 1607723 => 'Binghamton, NY', + 1607724 => 'Binghamton, NY', + 1607732 => 'Elmira, NY', + 1607733 => 'Elmira, NY', + 1607734 => 'Elmira, NY', + 1607735 => 'Elmira, NY', + 1607737 => 'Elmira, NY', + 1607739 => 'Horseheads, NY', + 1607746 => 'Delhi, NY', + 1607748 => 'Endicott, NY', + 1607749 => 'Homer, NY', + 1607753 => 'Cortland, NY', + 1607754 => 'Endicott, NY', + 1607756 => 'Cortland, NY', + 1607757 => 'Endicott, NY', + 1607758 => 'Cortland, NY', + 1607762 => 'Binghamton, NY', + 1607763 => 'Johnson City, NY', + 1607771 => 'Binghamton, NY', + 1607772 => 'Binghamton, NY', + 1607773 => 'Binghamton, NY', + 1607776 => 'Bath, NY', + 1607778 => 'Binghamton, NY', + 1607785 => 'Endicott, NY', + 1607786 => 'Endicott, NY', + 1607795 => 'Horseheads, NY', + 1607796 => 'Horseheads, NY', + 1607843 => 'Oxford, NY', + 1607844 => 'Dryden, NY', + 1607847 => 'New Berlin, NY', + 1607849 => 'Marathon, NY', + 1607863 => 'Cincinnatus, NY', + 1607865 => 'Walton, NY', + 1607869 => 'Ovid, NY', + 1607898 => 'Groton, NY', + 1607936 => 'Corning, NY', + 1607937 => 'Corning, NY', + 1607962 => 'Corning, NY', + 1607965 => 'Edmeston, NY', + 1607967 => 'Bainbridge, NY', + 1608 => 'Wisconsin', + 1608204 => 'Madison, WI', + 1608205 => 'Stoughton, WI', + 1608221 => 'Madison, WI', + 1608222 => 'Madison, WI', + 1608223 => 'Madison, WI', + 1608224 => 'Madison, WI', + 1608231 => 'Madison, WI', + 1608232 => 'Madison, WI', + 1608233 => 'Madison, WI', + 1608237 => 'Madison, WI', + 1608238 => 'Madison, WI', + 1608240 => 'Madison, WI', + 1608241 => 'Madison, WI', + 1608242 => 'Madison, WI', + 1608243 => 'Madison, WI', + 1608244 => 'Madison, WI', + 1608245 => 'Madison, WI', + 1608246 => 'Madison, WI', + 1608249 => 'Madison, WI', + 1608250 => 'Madison, WI', + 1608251 => 'Madison, WI', + 1608252 => 'Madison, WI', + 1608253 => 'Wisconsin Dells, WI', + 1608254 => 'Wisconsin Dells, WI', + 1608255 => 'Madison, WI', + 1608256 => 'Madison, WI', + 1608257 => 'Madison, WI', + 1608258 => 'Madison, WI', + 1608259 => 'Madison, WI', + 1608260 => 'Madison, WI', + 1608262 => 'Madison, WI', + 1608263 => 'Madison, WI', + 1608265 => 'Madison, WI', + 1608266 => 'Madison, WI', + 1608267 => 'Madison, WI', + 1608268 => 'Madison, WI', + 1608269 => 'Sparta, WI', + 1608270 => 'Madison, WI', + 1608271 => 'Madison, WI', + 1608273 => 'Madison, WI', + 1608274 => 'Madison, WI', + 1608276 => 'Madison, WI', + 1608277 => 'Madison, WI', + 1608278 => 'Madison, WI', + 1608280 => 'Madison, WI', + 1608287 => 'Madison, WI', + 1608296 => 'Westfield, WI', + 1608297 => 'Montello, WI', + 1608301 => 'Madison, WI', + 1608310 => 'Madison, WI', + 1608314 => 'Janesville, WI', + 1608323 => 'Arcadia, WI', + 1608324 => 'Monroe, WI', + 1608325 => 'Monroe, WI', + 1608326 => 'Prairie du Chien, WI', + 1608328 => 'Monroe, WI', + 1608329 => 'Monroe, WI', + 1608348 => 'Platteville, WI', + 1608355 => 'Baraboo, WI', + 1608356 => 'Baraboo, WI', + 1608361 => 'Beloit, WI', + 1608362 => 'Beloit, WI', + 1608363 => 'Beloit, WI', + 1608364 => 'Beloit, WI', + 1608365 => 'Beloit, WI', + 1608372 => 'Tomah, WI', + 1608374 => 'Tomah, WI', + 1608375 => 'Boscobel, WI', + 1608378 => 'Warrens, WI', + 1608392 => 'La Crosse, WI', + 1608417 => 'Madison, WI', + 1608423 => 'Cambridge, WI', + 1608424 => 'Belleville, WI', + 1608427 => 'Camp Douglas, WI', + 1608429 => 'Pardeeville, WI', + 1608437 => 'Mount Horeb, WI', + 1608441 => 'Madison, WI', + 1608442 => 'Madison, WI', + 1608443 => 'Madison, WI', + 1608452 => 'Coon Valley, WI', + 1608462 => 'Elroy, WI', + 1608467 => 'Madison, WI', + 1608489 => 'Hillsboro, WI', + 1608524 => 'Reedsburg, WI', + 1608526 => 'Holmen, WI', + 1608527 => 'New Glarus, WI', + 1608562 => 'New Lisbon, WI', + 1608565 => 'Necedah, WI', + 1608582 => 'Galesville, WI', + 1608586 => 'Oxford, WI', + 1608588 => 'Spring Green, WI', + 1608592 => 'Lodi, WI', + 1608625 => 'La Farge, WI', + 1608630 => 'Madison, WI', + 1608634 => 'Westby, WI', + 1608635 => 'Poynette, WI', + 1608637 => 'Viroqua, WI', + 1608647 => 'Richland Center, WI', + 1608648 => 'De Soto, WI', + 1608654 => 'Cashton, WI', + 1608655 => 'Marshall, WI', + 1608661 => 'Madison, WI', + 1608662 => 'Madison, WI', + 1608663 => 'Madison, WI', + 1608676 => 'Clinton, WI', + 1608685 => 'Alma, WI', + 1608687 => 'Fountain City, WI', + 1608723 => 'Lancaster, WI', + 1608739 => 'Muscoda, WI', + 1608741 => 'Janesville, WI', + 1608742 => 'Portage, WI', + 1608743 => 'Janesville, WI', + 1608744 => 'Cuba City, WI', + 1608745 => 'Portage, WI', + 1608752 => 'Janesville, WI', + 1608754 => 'Janesville, WI', + 1608755 => 'Janesville, WI', + 1608756 => 'Janesville, WI', + 1608757 => 'Janesville, WI', + 1608758 => 'Janesville, WI', + 1608764 => 'Deerfield, WI', + 1608767 => 'Black Earth, WI', + 1608775 => 'La Crosse, WI', + 1608776 => 'Darlington, WI', + 1608779 => 'Onalaska, WI', + 1608782 => 'La Crosse, WI', + 1608783 => 'Onalaska, WI', + 1608784 => 'La Crosse, WI', + 1608785 => 'La Crosse, WI', + 1608786 => 'West Salem, WI', + 1608787 => 'La Crosse, WI', + 1608788 => 'La Crosse, WI', + 1608791 => 'La Crosse, WI', + 1608795 => 'Mazomanie, WI', + 1608796 => 'La Crosse, WI', + 1608798 => 'Cross Plains, WI', + 1608807 => 'Madison, WI', + 1608819 => 'Madison, WI', + 1608822 => 'Fennimore, WI', + 1608824 => 'Madison, WI', + 1608825 => 'Sun Prairie, WI', + 1608826 => 'Madison, WI', + 1608827 => 'Madison, WI', + 1608828 => 'Madison, WI', + 1608829 => 'Madison, WI', + 1608831 => 'Middleton, WI', + 1608833 => 'Madison, WI', + 1608834 => 'Sun Prairie, WI', + 1608835 => 'Oregon, WI', + 1608836 => 'Middleton, WI', + 1608837 => 'Sun Prairie, WI', + 1608838 => 'McFarland, WI', + 1608839 => 'Cottage Grove, WI', + 1608845 => 'Verona, WI', + 1608846 => 'DeForest, WI', + 1608847 => 'Mauston, WI', + 1608848 => 'Verona, WI', + 1608849 => 'Waunakee, WI', + 1608850 => 'Waunakee, WI', + 1608868 => 'Milton, WI', + 1608873 => 'Stoughton, WI', + 1608877 => 'Stoughton, WI', + 1608882 => 'Evansville, WI', + 1608884 => 'Edgerton, WI', + 1608897 => 'Brodhead, WI', + 1608924 => 'Barneveld, WI', + 1608930 => 'Dodgeville, WI', + 1608935 => 'Dodgeville, WI', + 1608938 => 'Monticello, WI', + 1608965 => 'Shullsburg, WI', + 1608987 => 'Mineral Point, WI', + 1608989 => 'Blair, WI', + 1608994 => 'Bloomington, WI', + 1609 => 'New Jersey', + 1609239 => 'Burlington Township, NJ', + 1609242 => 'Forked River, NJ', + 1609252 => 'Princeton, NJ', + 1609263 => 'Sea Isle City, NJ', + 1609266 => 'Brigantine, NJ', + 1609278 => 'Trenton, NJ', + 1609279 => 'Princeton, NJ', + 1609292 => 'Trenton, NJ', + 1609340 => 'Atlantic City, NJ', + 1609343 => 'Atlantic City, NJ', + 1609344 => 'Atlantic City, NJ', + 1609345 => 'Atlantic City, NJ', + 1609347 => 'Atlantic City, NJ', + 1609348 => 'Atlantic City, NJ', + 1609368 => 'Stone Harbor, NJ', + 1609390 => 'Marmora, NJ', + 1609391 => 'Ocean City, NJ', + 1609392 => 'Trenton, NJ', + 1609393 => 'Trenton, NJ', + 1609394 => 'Trenton, NJ', + 1609396 => 'Trenton, NJ', + 1609397 => 'Lambertville, NJ', + 1609398 => 'Ocean City, NJ', + 1609399 => 'Ocean City, NJ', + 1609404 => 'Galloway, NJ', + 1609430 => 'Princeton, NJ', + 1609441 => 'Atlantic City, NJ', + 1609452 => 'Princeton, NJ', + 1609454 => 'Princeton, NJ', + 1609463 => 'Cape May Ct Hse, NJ', + 1609465 => 'Cape May Ct Hse, NJ', + 1609466 => 'Hopewell, NJ', + 1609492 => 'Beach Haven, NJ', + 1609497 => 'Princeton, NJ', + 1609514 => 'Princeton, NJ', + 1609520 => 'Princeton, NJ', + 1609522 => 'Wildwood, NJ', + 1609523 => 'Wildwood, NJ', + 1609530 => 'Ewing Township, NJ', + 1609538 => 'Ewing Township, NJ', + 1609561 => 'Hammonton, NJ', + 1609567 => 'Hammonton, NJ', + 1609572 => 'Atlantic City, NJ', + 1609581 => 'Trenton, NJ', + 1609584 => 'Trenton, NJ', + 1609585 => 'Trenton, NJ', + 1609586 => 'Trenton, NJ', + 1609587 => 'Trenton, NJ', + 1609588 => 'Trenton, NJ', + 1609597 => 'Manahawkin, NJ', + 1609599 => 'Trenton, NJ', + 1609607 => 'Barnegat Township, NJ', + 1609625 => 'Mays Landing, NJ', + 1609628 => 'Woodbine, NJ', + 1609631 => 'Trenton, NJ', + 1609652 => 'Galloway, NJ', + 1609654 => 'Medford, NJ', + 1609656 => 'Trenton, NJ', + 1609660 => 'Barnegat Township, NJ', + 1609683 => 'Princeton, NJ', + 1609688 => 'Princeton, NJ', + 1609689 => 'Trenton, NJ', + 1609693 => 'Forked River, NJ', + 1609695 => 'Trenton, NJ', + 1609698 => 'Barnegat Township, NJ', + 1609704 => 'Hammonton, NJ', + 1609714 => 'Medford, NJ', + 1609729 => 'Wildwood, NJ', + 1609730 => 'Pennington, NJ', + 1609737 => 'Pennington, NJ', + 1609747 => 'Burlington Township, NJ', + 1609748 => 'Galloway, NJ', + 1609771 => 'Ewing Township, NJ', + 1609818 => 'Pennington, NJ', + 1609835 => 'Willingboro, NJ', + 1609838 => 'Trenton, NJ', + 1609844 => 'Lawrenceville, NJ', + 1609859 => 'Southampton Township, NJ', + 1609861 => 'Woodbine, NJ', + 1609871 => 'Willingboro, NJ', + 1609877 => 'Willingboro, NJ', + 1609882 => 'Ewing Township, NJ', + 1609883 => 'Ewing Township, NJ', + 1609884 => 'Cape May, NJ', + 1609888 => 'Trenton, NJ', + 1609890 => 'Trenton, NJ', + 1609893 => 'Browns Mills, NJ', + 1609894 => 'Pemberton, NJ', + 1609895 => 'Lawrenceville, NJ', + 1609896 => 'Lawrenceville, NJ', + 1609898 => 'Cape May, NJ', + 1609909 => 'Mays Landing, NJ', + 1609919 => 'Princeton, NJ', + 1609921 => 'Princeton, NJ', + 1609924 => 'Princeton, NJ', + 1609951 => 'Princeton, NJ', + 1609953 => 'Medford, NJ', + 1609965 => 'Egg Harbor City, NJ', + 1609967 => 'Avalon, NJ', + 1609971 => 'Forked River, NJ', + 1609978 => 'Manahawkin, NJ', + 1609987 => 'Princeton, NJ', + 1609989 => 'Trenton, NJ', + 1610 => 'Pennsylvania', + 1610208 => 'Reading, PA', + 1610225 => 'Wayne, PA', + 1610237 => 'Darby, PA', + 1610250 => 'Easton, PA', + 1610252 => 'Easton, PA', + 1610253 => 'Easton, PA', + 1610255 => 'Landenberg, PA', + 1610258 => 'Easton, PA', + 1610261 => 'Northampton, PA', + 1610262 => 'Northampton, PA', + 1610265 => 'King of Prussia, PA', + 1610268 => 'Avondale, PA', + 1610269 => 'Downingtown, PA', + 1610270 => 'Norristown, PA', + 1610272 => 'Norristown, PA', + 1610273 => 'Honey Brook, PA', + 1610275 => 'Norristown, PA', + 1610277 => 'Norristown, PA', + 1610278 => 'Norristown, PA', + 1610279 => 'Norristown, PA', + 1610280 => 'Exton, PA', + 1610282 => 'Coopersburg, PA', + 1610287 => 'Schwenksville, PA', + 1610293 => 'Wayne, PA', + 1610298 => 'New Tripoli, PA', + 1610317 => 'Bethlehem, PA', + 1610323 => 'Pottstown, PA', + 1610326 => 'Pottstown, PA', + 1610327 => 'Pottstown, PA', + 1610328 => 'Springfield, PA', + 1610330 => 'Easton, PA', + 1610336 => 'Allentown, PA', + 1610337 => 'King of Prussia, PA', + 1610344 => 'West Chester, PA', + 1610345 => 'West Grove, PA', + 1610347 => 'Kennett Square, PA', + 1610351 => 'Allentown, PA', + 1610352 => 'Upper Darby, PA', + 1610354 => 'King of Prussia, PA', + 1610363 => 'Exton, PA', + 1610366 => 'Allentown, PA', + 1610367 => 'Boyertown, PA', + 1610369 => 'Boyertown, PA', + 1610370 => 'Reading, PA', + 1610371 => 'Reading, PA', + 1610372 => 'Reading, PA', + 1610373 => 'Reading, PA', + 1610374 => 'Reading, PA', + 1610375 => 'Reading, PA', + 1610376 => 'Reading, PA', + 1610377 => 'Lehighton, PA', + 1610378 => 'Reading, PA', + 1610380 => 'Coatesville, PA', + 1610383 => 'Coatesville, PA', + 1610384 => 'Coatesville, PA', + 1610385 => 'Douglassville, PA', + 1610388 => 'Chadds Ford, PA', + 1610391 => 'Allentown, PA', + 1610395 => 'Allentown, PA', + 1610398 => 'Allentown, PA', + 1610399 => 'West Chester, PA', + 1610402 => 'Allentown, PA', + 1610404 => 'Birdsboro, PA', + 1610409 => 'Collegeville, PA', + 1610415 => 'Phoenixville, PA', + 1610419 => 'Bethlehem, PA', + 1610429 => 'West Chester, PA', + 1610430 => 'West Chester, PA', + 1610431 => 'West Chester, PA', + 1610432 => 'Allentown, PA', + 1610433 => 'Allentown, PA', + 1610434 => 'Allentown, PA', + 1610435 => 'Allentown, PA', + 1610436 => 'West Chester, PA', + 1610437 => 'Allentown, PA', + 1610438 => 'Easton, PA', + 1610439 => 'Allentown, PA', + 1610444 => 'Kennett Square, PA', + 1610446 => 'Havertown, PA', + 1610447 => 'Chester, PA', + 1610449 => 'Havertown, PA', + 1610454 => 'Collegeville, PA', + 1610466 => 'Coatesville, PA', + 1610469 => 'Pottstown, PA', + 1610473 => 'Boyertown, PA', + 1610478 => 'Reading, PA', + 1610481 => 'Allentown, PA', + 1610488 => 'Bernville, PA', + 1610489 => 'Collegeville, PA', + 1610515 => 'Easton, PA', + 1610518 => 'Downingtown, PA', + 1610520 => 'Bryn Mawr, PA', + 1610524 => 'Exton, PA', + 1610525 => 'Bryn Mawr, PA', + 1610526 => 'Bryn Mawr, PA', + 1610527 => 'Bryn Mawr, PA', + 1610530 => 'Allentown, PA', + 1610543 => 'Springfield, PA', + 1610544 => 'Springfield, PA', + 1610559 => 'Easton, PA', + 1610562 => 'Hamburg, PA', + 1610565 => 'Media, PA', + 1610566 => 'Media, PA', + 1610582 => 'Birdsboro, PA', + 1610588 => 'Bangor, PA', + 1610589 => 'Womelsdorf, PA', + 1610594 => 'Exton, PA', + 1610599 => 'Bangor, PA', + 1610619 => 'Chester, PA', + 1610625 => 'Bethlehem, PA', + 1610627 => 'Media, PA', + 1610628 => 'Allentown, PA', + 1610645 => 'Wynnewood, PA', + 1610648 => 'Paoli, PA', + 1610655 => 'Reading, PA', + 1610660 => 'Bala Cynwyd, PA', + 1610667 => 'Bala Cynwyd, PA', + 1610668 => 'Bala Cynwyd, PA', + 1610683 => 'Kutztown, PA', + 1610685 => 'Reading, PA', + 1610687 => 'Wayne, PA', + 1610688 => 'Wayne, PA', + 1610690 => 'Springfield, PA', + 1610691 => 'Bethlehem, PA', + 1610692 => 'West Chester, PA', + 1610693 => 'Robesonia, PA', + 1610694 => 'Bethlehem, PA', + 1610696 => 'West Chester, PA', + 1610701 => 'West Chester, PA', + 1610705 => 'Pottstown, PA', + 1610718 => 'Pottstown, PA', + 1610734 => 'Upper Darby, PA', + 1610738 => 'West Chester, PA', + 1610740 => 'Allentown, PA', + 1610743 => 'Reading, PA', + 1610746 => 'Nazareth, PA', + 1610750 => 'Reading, PA', + 1610756 => 'Kempton, PA', + 1610758 => 'Bethlehem, PA', + 1610759 => 'Nazareth, PA', + 1610768 => 'King of Prussia, PA', + 1610770 => 'Allentown, PA', + 1610775 => 'Reading, PA', + 1610776 => 'Allentown, PA', + 1610779 => 'Reading, PA', + 1610782 => 'Allentown, PA', + 1610783 => 'King of Prussia, PA', + 1610791 => 'Allentown, PA', + 1610792 => 'Royersford, PA', + 1610793 => 'West Chester, PA', + 1610796 => 'Reading, PA', + 1610797 => 'Allentown, PA', + 1610807 => 'Bethlehem, PA', + 1610814 => 'Bethlehem, PA', + 1610820 => 'Allentown, PA', + 1610821 => 'Allentown, PA', + 1610826 => 'Palmerton, PA', + 1610827 => 'Chester Springs, PA', + 1610831 => 'Collegeville, PA', + 1610837 => 'Bath, PA', + 1610838 => 'Hellertown, PA', + 1610841 => 'Allentown, PA', + 1610847 => 'Ottsville, PA', + 1610853 => 'Havertown, PA', + 1610856 => 'Mohnton, PA', + 1610857 => 'Parkesburg, PA', + 1610861 => 'Bethlehem, PA', + 1610863 => 'Wind Gap, PA', + 1610865 => 'Bethlehem, PA', + 1610866 => 'Bethlehem, PA', + 1610867 => 'Bethlehem, PA', + 1610868 => 'Bethlehem, PA', + 1610869 => 'West Grove, PA', + 1610872 => 'Chester, PA', + 1610873 => 'Downingtown, PA', + 1610874 => 'Chester, PA', + 1610882 => 'Bethlehem, PA', + 1610891 => 'Media, PA', + 1610892 => 'Media, PA', + 1610898 => 'Reading, PA', + 1610913 => 'Morgantown, PA', + 1610917 => 'Phoenixville, PA', + 1610918 => 'West Chester, PA', + 1610921 => 'Reading, PA', + 1610923 => 'Easton, PA', + 1610925 => 'Kennett Square, PA', + 1610929 => 'Reading, PA', + 1610932 => 'Oxford, PA', + 1610933 => 'Phoenixville, PA', + 1610935 => 'Phoenixville, PA', + 1610939 => 'Reading, PA', + 1610942 => 'Glenmoore, PA', + 1610944 => 'Fleetwood, PA', + 1610948 => 'Royersford, PA', + 1610954 => 'Bethlehem, PA', + 1610964 => 'Wayne, PA', + 1610965 => 'Emmaus, PA', + 1610967 => 'Emmaus, PA', + 1610969 => 'Allentown, PA', + 1610970 => 'Pottstown, PA', + 1610971 => 'Wayne, PA', + 1610973 => 'Allentown, PA', + 1610975 => 'Wayne, PA', + 1610983 => 'Phoenixville, PA', + 1610987 => 'Oley, PA', + 1610988 => 'Reading, PA', + 1610992 => 'King of Prussia, PA', + 1610998 => 'Oxford, PA', + 1612 => 'Minnesota', + 1612225 => 'Minneapolis, MN', + 1612259 => 'Minneapolis, MN', + 1612273 => 'Minneapolis, MN', + 1612302 => 'Minneapolis, MN', + 1612331 => 'Minneapolis, MN', + 1612332 => 'Minneapolis, MN', + 1612333 => 'Minneapolis, MN', + 1612335 => 'Minneapolis, MN', + 1612337 => 'Minneapolis, MN', + 1612338 => 'Minneapolis, MN', + 1612339 => 'Minneapolis, MN', + 1612340 => 'Minneapolis, MN', + 1612341 => 'Minneapolis, MN', + 1612343 => 'Minneapolis, MN', + 1612347 => 'Minneapolis, MN', + 1612348 => 'Minneapolis, MN', + 1612349 => 'Minneapolis, MN', + 1612353 => 'Minneapolis, MN', + 1612354 => 'Minneapolis, MN', + 1612370 => 'Minneapolis, MN', + 1612371 => 'Minneapolis, MN', + 1612374 => 'Minneapolis, MN', + 1612375 => 'Minneapolis, MN', + 1612377 => 'Minneapolis, MN', + 1612378 => 'Minneapolis, MN', + 1612379 => 'Minneapolis, MN', + 1612436 => 'Minneapolis, MN', + 1612455 => 'Minneapolis, MN', + 1612467 => 'Minneapolis, MN', + 1612492 => 'Minneapolis, MN', + 1612521 => 'Minneapolis, MN', + 1612522 => 'Minneapolis, MN', + 1612529 => 'Minneapolis, MN', + 1612545 => 'Minneapolis, MN', + 1612573 => 'Minneapolis, MN', + 1612588 => 'Minneapolis, MN', + 1612623 => 'Minneapolis, MN', + 1612624 => 'Minneapolis, MN', + 1612625 => 'Minneapolis, MN', + 1612626 => 'Minneapolis, MN', + 1612632 => 'Minneapolis, MN', + 1612668 => 'Minneapolis, MN', + 1612672 => 'Minneapolis, MN', + 1612673 => 'Minneapolis, MN', + 1612706 => 'Minneapolis, MN', + 1612721 => 'Minneapolis, MN', + 1612722 => 'Minneapolis, MN', + 1612724 => 'Minneapolis, MN', + 1612725 => 'Minneapolis, MN', + 1612727 => 'Minneapolis, MN', + 1612728 => 'Minneapolis, MN', + 1612729 => 'Minneapolis, MN', + 1612746 => 'Minneapolis, MN', + 1612766 => 'South 7th Street, Minneapolis, MN', + 1612767 => 'Minneapolis, MN', + 1612781 => 'Minneapolis, MN', + 1612788 => 'Minneapolis, MN', + 1612789 => 'Minneapolis, MN', + 1612798 => 'Richfield, MN', + 1612813 => 'Minneapolis, MN', + 1612821 => 'Minneapolis, MN', + 1612822 => 'Minneapolis, MN', + 1612823 => 'Minneapolis, MN', + 1612824 => 'Minneapolis, MN', + 1612825 => 'Minneapolis, MN', + 1612827 => 'Minneapolis, MN', + 1612863 => 'Minneapolis, MN', + 1612870 => 'Minneapolis, MN', + 1612871 => 'Minneapolis, MN', + 1612872 => 'Minneapolis, MN', + 1612873 => 'Minneapolis, MN', + 1612874 => 'Minneapolis, MN', + 1612877 => 'Minneapolis, MN', + 1612879 => 'Minneapolis, MN', + 1612886 => 'Minneapolis, MN', + 1612920 => 'Minneapolis, MN', + 1612922 => 'Minneapolis, MN', + 1612925 => 'Minneapolis, MN', + 1612926 => 'Minneapolis, MN', + 1612929 => 'Minneapolis, MN', + 1612977 => 'Minneapolis, MN', + 1613 => 'Ontario', + 1613216 => 'Ottawa, ON', + 1613226 => 'Nepean, ON', + 1613230 => 'Ottawa, ON', + 1613231 => 'Ottawa, ON', + 1613232 => 'Ottawa, ON', + 1613233 => 'Ottawa, ON', + 1613234 => 'Ottawa, ON', + 1613235 => 'Ottawa, ON', + 1613236 => 'Ottawa, ON', + 1613237 => 'Ottawa, ON', + 1613238 => 'Ottawa, ON', + 1613241 => 'Ottawa, ON', + 1613244 => 'Ottawa, ON', + 1613247 => 'Ottawa, ON', + 1613248 => 'Ottawa, ON', + 1613249 => 'Ottawa, ON', + 1613253 => 'Carleton Place, ON', + 1613254 => 'Kanata, ON', + 1613256 => 'Almonte, ON', + 1613257 => 'Carleton Place, ON', + 1613258 => 'Kemptville, ON', + 1613260 => 'Ottawa, ON', + 1613264 => 'Perth, ON', + 1613267 => 'Perth, ON', + 1613269 => 'Merrickville, ON', + 1613270 => 'Kanata, ON', + 1613271 => 'Kanata, ON', + 1613273 => 'Westport, ON', + 1613279 => 'Sharbot Lake, ON', + 1613283 => 'Smiths Falls, ON', + 1613284 => 'Smiths Falls, ON', + 1613288 => 'Ottawa, ON', + 1613321 => 'Ottawa, ON', + 1613332 => 'Bancroft, ON', + 1613336 => 'Northbrook, ON', + 1613342 => 'Brockville, ON', + 1613345 => 'Brockville, ON', + 1613347 => 'Lancaster, ON', + 1613354 => 'Greater Napanee, ON', + 1613382 => 'Gananoque, ON', + 1613384 => 'Kingston, ON', + 1613389 => 'Kingston, ON', + 1613392 => 'Trenton, ON', + 1613393 => 'Bloomfield, ON', + 1613394 => 'Trenton, ON', + 1613395 => 'Stirling, ON', + 1613396 => 'Deseronto, ON', + 1613398 => 'Frankford, ON', + 1613399 => 'Wellington, ON', + 1613421 => 'Ottawa, ON', + 1613422 => 'Ottawa, ON', + 1613432 => 'Renfrew, ON', + 1613433 => 'Renfrew, ON', + 1613443 => 'Embrun, ON', + 1613445 => 'Russell, ON', + 1613446 => 'Rockland, ON', + 1613448 => 'Chesterville, ON', + 1613472 => 'Marmora, ON', + 1613473 => 'Madoc, ON', + 1613475 => 'Brighton, ON', + 1613476 => 'Picton, ON', + 1613478 => 'Tweed, ON', + 1613489 => 'North Gower, ON', + 1613498 => 'Brockville, ON', + 1613507 => 'Kingston, ON', + 1613521 => 'Ottawa, ON', + 1613523 => 'Ottawa, ON', + 1613524 => 'Saint Isidore, ON', + 1613525 => 'Alexandria, ON', + 1613526 => 'Ottawa, ON', + 1613530 => 'Kingston, ON', + 1613531 => 'Kingston, ON', + 1613542 => 'Kingston, ON', + 1613543 => 'Morrisburg, ON', + 1613544 => 'Kingston, ON', + 1613545 => 'Kingston, ON', + 1613546 => 'Kingston, ON', + 1613547 => 'Kingston, ON', + 1613548 => 'Kingston, ON', + 1613549 => 'Kingston, ON', + 1613562 => 'Ottawa, ON', + 1613563 => 'Ottawa, ON', + 1613564 => 'Ottawa, ON', + 1613565 => 'Ottawa, ON', + 1613567 => 'Ottawa, ON', + 1613569 => 'Ottawa, ON', + 1613584 => 'Deep River, ON', + 1613590 => 'Orléans, ON', + 1613591 => 'Kanata, ON', + 1613592 => 'Kanata, ON', + 1613594 => 'Ottawa, ON', + 1613599 => 'Kanata, ON', + 1613622 => 'Arnprior, ON', + 1613623 => 'Arnprior, ON', + 1613628 => 'Eganville, ON', + 1613632 => 'Hawkesbury, ON', + 1613634 => 'Kingston, ON', + 1613646 => 'Cobden, ON', + 1613652 => 'Iroquois, ON', + 1613659 => 'Lansdowne, ON', + 1613673 => 'Plantagenet, ON', + 1613678 => 'Vankleek Hill, ON', + 1613679 => 'Alfred, ON', + 1613680 => 'Ottawa, ON', + 1613687 => 'Petawawa, ON', + 1613688 => 'Ottawa, ON', + 1613692 => 'Manotick, ON', + 1613695 => 'Ottawa, ON', + 1613722 => 'Ottawa, ON', + 1613724 => 'Ottawa, ON', + 1613725 => 'Ottawa, ON', + 1613728 => 'Ottawa, ON', + 1613729 => 'Ottawa, ON', + 1613730 => 'Ottawa, ON', + 1613731 => 'Ottawa, ON', + 1613732 => 'Pembroke, ON', + 1613733 => 'Ottawa, ON', + 1613735 => 'Pembroke, ON', + 1613736 => 'Ottawa, ON', + 1613737 => 'Ottawa, ON', + 1613738 => 'Ottawa, ON', + 1613739 => 'Ottawa, ON', + 1613741 => 'Ottawa, ON', + 1613746 => 'Ottawa, ON', + 1613756 => 'Barry\'s Bay, ON', + 1613757 => 'Killaloe, ON', + 1613761 => 'Ottawa, ON', + 1613764 => 'Casselman, ON', + 1613766 => 'Kingston, ON', + 1613771 => 'Belleville, ON', + 1613774 => 'Winchester, ON', + 1613789 => 'Ottawa, ON', + 1613798 => 'Ottawa, ON', + 1613822 => 'Gloucester, ON', + 1613824 => 'Orléans, ON', + 1613830 => 'Orléans, ON', + 1613833 => 'Cumberland, ON', + 1613834 => 'Orléans, ON', + 1613835 => 'Navan, ON', + 1613837 => 'Orléans, ON', + 1613838 => 'Richmond, ON', + 1613839 => 'Carp, ON', + 1613841 => 'Orléans, ON', + 1613842 => 'Ottawa, ON', + 1613924 => 'Athens, ON', + 1613925 => 'Prescott, ON', + 1613931 => 'Cornwall, ON', + 1613932 => 'Cornwall, ON', + 1613933 => 'Cornwall, ON', + 1613936 => 'Cornwall, ON', + 1613937 => 'Cornwall, ON', + 1613938 => 'Cornwall, ON', + 1613961 => 'Belleville, ON', + 1613962 => 'Belleville, ON', + 1613965 => 'Trenton, ON', + 1613966 => 'Belleville, ON', + 1613967 => 'Belleville, ON', + 1613968 => 'Belleville, ON', + 1613969 => 'Belleville, ON', + 1614 => 'Ohio', + 1614210 => 'Dublin, OH', + 1614220 => 'Columbus, OH', + 1614221 => 'Columbus, OH', + 1614222 => 'Columbus, OH', + 1614223 => 'Columbus, OH', + 1614224 => 'Columbus, OH', + 1614225 => 'Columbus, OH', + 1614227 => 'Columbus, OH', + 1614228 => 'Columbus, OH', + 1614231 => 'Columbus, OH', + 1614234 => 'Columbus, OH', + 1614235 => 'Columbus, OH', + 1614236 => 'Columbus, OH', + 1614237 => 'Columbus, OH', + 1614238 => 'Columbus, OH', + 1614239 => 'Columbus, OH', + 1614252 => 'Columbus, OH', + 1614253 => 'Columbus, OH', + 1614255 => 'Columbus, OH', + 1614257 => 'Columbus, OH', + 1614258 => 'Columbus, OH', + 1614261 => 'Columbus, OH', + 1614262 => 'Columbus, OH', + 1614263 => 'Columbus, OH', + 1614267 => 'Columbus, OH', + 1614268 => 'Columbus, OH', + 1614272 => 'Columbus, OH', + 1614273 => 'Columbus, OH', + 1614274 => 'Columbus, OH', + 1614275 => 'Columbus, OH', + 1614276 => 'Columbus, OH', + 1614277 => 'Grove City, OH', + 1614279 => 'Columbus, OH', + 1614291 => 'Columbus, OH', + 1614292 => 'Columbus, OH', + 1614293 => 'Columbus, OH', + 1614294 => 'Columbus, OH', + 1614297 => 'Columbus, OH', + 1614298 => 'Columbus, OH', + 1614299 => 'Columbus, OH', + 1614326 => 'Columbus, OH', + 1614337 => 'Columbus, OH', + 1614338 => 'Columbus, OH', + 1614340 => 'Columbus, OH', + 1614342 => 'Columbus, OH', + 1614351 => 'Columbus, OH', + 1614355 => 'Columbus, OH', + 1614365 => 'Columbus, OH', + 1614366 => 'Columbus, OH', + 1614389 => 'Dublin, OH', + 1614398 => 'Columbus, OH', + 1614409 => 'Columbus, OH', + 1614414 => 'Columbus, OH', + 1614416 => 'Columbus, OH', + 1614418 => 'Columbus, OH', + 1614421 => 'Columbus, OH', + 1614428 => 'Columbus, OH', + 1614429 => 'Columbus, OH', + 1614430 => 'Columbus, OH', + 1614433 => 'Columbus, OH', + 1614442 => 'Columbus, OH', + 1614443 => 'Columbus, OH', + 1614444 => 'Columbus, OH', + 1614445 => 'Columbus, OH', + 1614447 => 'Columbus, OH', + 1614449 => 'Columbus, OH', + 1614451 => 'Columbus, OH', + 1614453 => 'Columbus, OH', + 1614457 => 'Columbus, OH', + 1614459 => 'Columbus, OH', + 1614461 => 'Columbus, OH', + 1614462 => 'Columbus, OH', + 1614464 => 'Columbus, OH', + 1614466 => 'Columbus, OH', + 1614469 => 'Columbus, OH', + 1614470 => 'Columbus, OH', + 1614473 => 'Columbus, OH', + 1614475 => 'Columbus, OH', + 1614476 => 'Columbus, OH', + 1614481 => 'Columbus, OH', + 1614485 => 'Columbus, OH', + 1614486 => 'Columbus, OH', + 1614487 => 'Columbus, OH', + 1614488 => 'Columbus, OH', + 1614491 => 'Columbus, OH', + 1614492 => 'Columbus, OH', + 1614497 => 'Columbus, OH', + 1614523 => 'Westerville, OH', + 1614525 => 'Columbus, OH', + 1614527 => 'Hilliard, OH', + 1614529 => 'Hilliard, OH', + 1614538 => 'Columbus, OH', + 1614539 => 'Grove City, OH', + 1614544 => 'Columbus, OH', + 1614545 => 'Columbus, OH', + 1614552 => 'Columbus, OH', + 1614566 => 'Columbus, OH', + 1614586 => 'Columbus, OH', + 1614621 => 'Columbus, OH', + 1614645 => 'Columbus, OH', + 1614717 => 'Dublin, OH', + 1614718 => 'Dublin, OH', + 1614719 => 'Columbus, OH', + 1614722 => 'Columbus, OH', + 1614725 => 'Columbus, OH', + 1614754 => 'Columbus, OH', + 1614760 => 'Dublin, OH', + 1614761 => 'Dublin, OH', + 1614764 => 'Dublin, OH', + 1614766 => 'Dublin, OH', + 1614771 => 'Hilliard, OH', + 1614775 => 'New Albany, OH', + 1614777 => 'Hilliard, OH', + 1614781 => 'Columbus, OH', + 1614784 => 'Columbus, OH', + 1614791 => 'Dublin, OH', + 1614792 => 'Dublin, OH', + 1614793 => 'Dublin, OH', + 1614794 => 'Westerville, OH', + 1614798 => 'Dublin, OH', + 1614799 => 'Dublin, OH', + 1614801 => 'Grove City, OH', + 1614818 => 'Westerville, OH', + 1614824 => 'Columbus, OH', + 1614836 => 'Groveport, OH', + 1614839 => 'Westerville, OH', + 1614840 => 'Columbus, OH', + 1614850 => 'Hilliard, OH', + 1614851 => 'Columbus, OH', + 1614853 => 'Columbus, OH', + 1614865 => 'Westerville, OH', + 1614870 => 'Columbus, OH', + 1614871 => 'Grove City, OH', + 1614873 => 'Plain City, OH', + 1614875 => 'Grove City, OH', + 1614876 => 'Hilliard, OH', + 1614877 => 'Orient, OH', + 1614878 => 'Columbus, OH', + 1614879 => 'West Jefferson, OH', + 1614882 => 'Westerville, OH', + 1614884 => 'Columbus, OH', + 1614889 => 'Dublin, OH', + 1614890 => 'Westerville, OH', + 1614891 => 'Westerville, OH', + 1614895 => 'Westerville, OH', + 1614898 => 'Westerville, OH', + 1614899 => 'Westerville, OH', + 1614901 => 'Westerville, OH', + 1614921 => 'Hilliard, OH', + 1614933 => 'New Albany, OH', + 1614939 => 'New Albany, OH', + 1614947 => 'Columbus, OH', + 1614985 => 'Columbus, OH', + 1615 => 'Tennessee', + 1615206 => 'Gallatin, TN', + 1615217 => 'Murfreesboro, TN', + 1615220 => 'Smyrna, TN', + 1615221 => 'Brentwood, TN', + 1615222 => 'Nashville, TN', + 1615223 => 'Smyrna, TN', + 1615225 => 'Murfreesboro, TN', + 1615226 => 'Nashville, TN', + 1615227 => 'Nashville, TN', + 1615228 => 'Nashville, TN', + 1615230 => 'Gallatin, TN', + 1615242 => 'Nashville, TN', + 1615244 => 'Nashville, TN', + 1615248 => 'Nashville, TN', + 1615250 => 'Nashville, TN', + 1615251 => 'Nashville, TN', + 1615252 => 'Nashville, TN', + 1615254 => 'Nashville, TN', + 1615255 => 'Nashville, TN', + 1615256 => 'Nashville, TN', + 1615259 => 'Nashville, TN', + 1615261 => 'Franklin, TN', + 1615262 => 'Nashville, TN', + 1615264 => 'Hendersonville, TN', + 1615269 => 'Nashville, TN', + 1615274 => 'Eagleville, TN', + 1615279 => 'Nashville, TN', + 1615284 => 'Nashville, TN', + 1615291 => 'Nashville, TN', + 1615292 => 'Nashville, TN', + 1615297 => 'Nashville, TN', + 1615298 => 'Nashville, TN', + 1615301 => 'Nashville, TN', + 1615302 => 'Spring Hill, TN', + 1615309 => 'Brentwood, TN', + 1615312 => 'Nashville, TN', + 1615313 => 'Nashville, TN', + 1615320 => 'Nashville, TN', + 1615321 => 'Nashville, TN', + 1615322 => 'Nashville, TN', + 1615323 => 'Portland, TN', + 1615325 => 'Portland, TN', + 1615327 => 'Nashville, TN', + 1615329 => 'Nashville, TN', + 1615331 => 'Nashville, TN', + 1615332 => 'Nashville, TN', + 1615333 => 'Nashville, TN', + 1615338 => 'Hendersonville, TN', + 1615340 => 'Nashville, TN', + 1615341 => 'Nashville, TN', + 1615342 => 'Nashville, TN', + 1615343 => 'Nashville, TN', + 1615350 => 'Nashville, TN', + 1615352 => 'Nashville, TN', + 1615353 => 'Nashville, TN', + 1615354 => 'Nashville, TN', + 1615355 => 'Smyrna, TN', + 1615356 => 'Nashville, TN', + 1615360 => 'Nashville, TN', + 1615361 => 'Nashville, TN', + 1615365 => 'Nashville, TN', + 1615366 => 'Nashville, TN', + 1615367 => 'Nashville, TN', + 1615370 => 'Brentwood, TN', + 1615371 => 'Brentwood, TN', + 1615373 => 'Brentwood, TN', + 1615374 => 'Hartsville, TN', + 1615376 => 'Brentwood, TN', + 1615377 => 'Brentwood, TN', + 1615382 => 'Springfield, TN', + 1615383 => 'Nashville, TN', + 1615384 => 'Springfield, TN', + 1615385 => 'Nashville, TN', + 1615386 => 'Nashville, TN', + 1615396 => 'Murfreesboro, TN', + 1615399 => 'Nashville, TN', + 1615410 => 'Murfreesboro, TN', + 1615431 => 'Hendersonville, TN', + 1615435 => 'Franklin, TN', + 1615441 => 'Dickson, TN', + 1615443 => 'Lebanon, TN', + 1615444 => 'Lebanon, TN', + 1615445 => 'Nashville, TN', + 1615446 => 'Dickson, TN', + 1615449 => 'Lebanon, TN', + 1615451 => 'Gallatin, TN', + 1615452 => 'Gallatin, TN', + 1615453 => 'Lebanon, TN', + 1615457 => 'Nashville, TN', + 1615459 => 'Smyrna, TN', + 1615460 => 'Nashville, TN', + 1615463 => 'Nashville, TN', + 1615472 => 'Franklin, TN', + 1615494 => 'Murfreesboro, TN', + 1615499 => 'Nashville, TN', + 1615514 => 'Nashville, TN', + 1615515 => 'Nashville, TN', + 1615538 => 'Franklin, TN', + 1615547 => 'Lebanon, TN', + 1615563 => 'Woodbury, TN', + 1615567 => 'Franklin, TN', + 1615591 => 'Franklin, TN', + 1615595 => 'Franklin, TN', + 1615597 => 'Smithville, TN', + 1615599 => 'Franklin, TN', + 1615612 => 'Madison, TN', + 1615620 => 'Nashville, TN', + 1615624 => 'Murfreesboro, TN', + 1615641 => 'Antioch, TN', + 1615643 => 'Greenbrier, TN', + 1615644 => 'Westmoreland, TN', + 1615646 => 'Nashville, TN', + 1615650 => 'Nashville, TN', + 1615653 => 'Murfreesboro, TN', + 1615654 => 'Cross Plains, TN', + 1615661 => 'Brentwood, TN', + 1615662 => 'Nashville, TN', + 1615665 => 'Nashville, TN', + 1615666 => 'Lafayette, TN', + 1615672 => 'White House, TN', + 1615673 => 'Nashville, TN', + 1615678 => 'Nashville, TN', + 1615683 => 'Gordonsville, TN', + 1615688 => 'Lafayette, TN', + 1615699 => 'Red Boiling Spgs, TN', + 1615712 => 'Nashville, TN', + 1615726 => 'Nashville, TN', + 1615730 => 'Nashville, TN', + 1615731 => 'Antioch, TN', + 1615732 => 'Nashville, TN', + 1615735 => 'Carthage, TN', + 1615736 => 'Nashville, TN', + 1615740 => 'Dickson, TN', + 1615741 => 'Nashville, TN', + 1615742 => 'Nashville, TN', + 1615746 => 'Pleasant View, TN', + 1615750 => 'Nashville, TN', + 1615754 => 'Mount Juliet, TN', + 1615758 => 'Mount Juliet, TN', + 1615771 => 'Franklin, TN', + 1615773 => 'Mount Juliet, TN', + 1615776 => 'Nolensville, TN', + 1615777 => 'Nashville, TN', + 1615781 => 'Nashville, TN', + 1615783 => 'Nashville, TN', + 1615789 => 'Charlotte, TN', + 1615790 => 'Franklin, TN', + 1615791 => 'Franklin, TN', + 1615792 => 'Ashland City, TN', + 1615793 => 'La Vergne, TN', + 1615794 => 'Franklin, TN', + 1615797 => 'White Bluff, TN', + 1615799 => 'Fairview, TN', + 1615807 => 'Franklin, TN', + 1615822 => 'Hendersonville, TN', + 1615823 => 'Nashville, TN', + 1615824 => 'Hendersonville, TN', + 1615826 => 'Hendersonville, TN', + 1615831 => 'Nashville, TN', + 1615832 => 'Nashville, TN', + 1615833 => 'Nashville, TN', + 1615834 => 'Nashville, TN', + 1615837 => 'Nashville, TN', + 1615847 => 'Old Hickory, TN', + 1615848 => 'Murfreesboro, TN', + 1615849 => 'Murfreesboro, TN', + 1615851 => 'Goodlettsville, TN', + 1615855 => 'Goodlettsville, TN', + 1615859 => 'Goodlettsville, TN', + 1615860 => 'Madison, TN', + 1615862 => 'Nashville, TN', + 1615865 => 'Madison, TN', + 1615867 => 'Murfreesboro, TN', + 1615868 => 'Madison, TN', + 1615871 => 'Nashville, TN', + 1615872 => 'Nashville, TN', + 1615873 => 'Nashville, TN', + 1615874 => 'Nashville, TN', + 1615883 => 'Nashville, TN', + 1615884 => 'Nashville, TN', + 1615889 => 'Nashville, TN', + 1615890 => 'Murfreesboro, TN', + 1615891 => 'Nashville, TN', + 1615893 => 'Murfreesboro, TN', + 1615895 => 'Murfreesboro, TN', + 1615896 => 'Murfreesboro, TN', + 1615898 => 'Murfreesboro, TN', + 1615904 => 'Murfreesboro, TN', + 1615907 => 'Murfreesboro, TN', + 1615915 => 'Nashville, TN', + 1615936 => 'Nashville, TN', + 1615942 => 'Nashville, TN', + 1615952 => 'Kingston Springs, TN', + 1615953 => 'Nashville, TN', + 1615962 => 'Murfreesboro, TN', + 1616 => 'Michigan', + 1616222 => 'Grand Rapids, MI', + 1616225 => 'Greenville, MI', + 1616233 => 'Grand Rapids, MI', + 1616235 => 'Grand Rapids, MI', + 1616241 => 'Grand Rapids, MI', + 1616242 => 'Grand Rapids, MI', + 1616243 => 'Grand Rapids, MI', + 1616245 => 'Grand Rapids, MI', + 1616247 => 'Grand Rapids, MI', + 1616248 => 'Grand Rapids, MI', + 1616281 => 'Grand Rapids, MI', + 1616285 => 'Grand Rapids, MI', + 1616301 => 'Grand Rapids, MI', + 1616335 => 'Holland, MI', + 1616336 => 'Grand Rapids, MI', + 1616355 => 'Holland, MI', + 1616356 => 'Grand Rapids, MI', + 1616361 => 'Grand Rapids, MI', + 1616363 => 'Grand Rapids, MI', + 1616364 => 'Grand Rapids, MI', + 1616365 => 'Grand Rapids, MI', + 1616374 => 'Lake Odessa, MI', + 1616391 => 'Grand Rapids, MI', + 1616392 => 'Holland, MI', + 1616393 => 'Holland, MI', + 1616394 => 'Holland, MI', + 1616395 => 'Holland, MI', + 1616396 => 'Holland, MI', + 1616399 => 'Holland, MI', + 1616447 => 'Grand Rapids, MI', + 1616451 => 'Grand Rapids, MI', + 1616452 => 'Grand Rapids, MI', + 1616453 => 'Grand Rapids, MI', + 1616454 => 'Grand Rapids, MI', + 1616455 => 'Grand Rapids, MI', + 1616456 => 'Grand Rapids, MI', + 1616457 => 'Jenison, MI', + 1616458 => 'Grand Rapids, MI', + 1616459 => 'Grand Rapids, MI', + 1616464 => 'Grand Rapids, MI', + 1616475 => 'Grand Rapids, MI', + 1616494 => 'Holland, MI', + 1616522 => 'Ionia, MI', + 1616527 => 'Ionia, MI', + 1616546 => 'Holland, MI', + 1616551 => 'Grand Rapids, MI', + 1616575 => 'Grand Rapids, MI', + 1616583 => 'Byron Center, MI', + 1616608 => 'Grand Rapids, MI', + 1616632 => 'Grand Rapids, MI', + 1616636 => 'Sand Lake, MI', + 1616642 => 'Saranac, MI', + 1616662 => 'Hudsonville, MI', + 1616667 => 'Jenison, MI', + 1616669 => 'Hudsonville, MI', + 1616676 => 'Ada, MI', + 1616677 => 'Marne, MI', + 1616681 => 'Dorr, MI', + 1616682 => 'Ada, MI', + 1616685 => 'Grand Rapids, MI', + 1616696 => 'Cedar Springs, MI', + 1616719 => 'Grand Rapids, MI', + 1616726 => 'Grand Rapids, MI', + 1616732 => 'Grand Rapids, MI', + 1616735 => 'Grand Rapids, MI', + 1616738 => 'Holland, MI', + 1616742 => 'Grand Rapids, MI', + 1616748 => 'Zeeland, MI', + 1616752 => 'Grand Rapids, MI', + 1616754 => 'Greenville, MI', + 1616772 => 'Zeeland, MI', + 1616774 => 'Grand Rapids, MI', + 1616776 => 'Grand Rapids, MI', + 1616786 => 'Holland, MI', + 1616791 => 'Grand Rapids, MI', + 1616794 => 'Belding, MI', + 1616796 => 'Holland, MI', + 1616805 => 'Grand Rapids, MI', + 1616819 => 'Grand Rapids, MI', + 1616827 => 'Grand Rapids, MI', + 1616828 => 'Grand Rapids, MI', + 1616831 => 'Grand Rapids, MI', + 1616836 => 'Holland, MI', + 1616837 => 'Coopersville, MI', + 1616842 => 'Grand Haven, MI', + 1616844 => 'Grand Haven, MI', + 1616846 => 'Grand Haven, MI', + 1616847 => 'Grand Haven, MI', + 1616850 => 'Grand Haven, MI', + 1616863 => 'Rockford, MI', + 1616866 => 'Rockford, MI', + 1616868 => 'Alto, MI', + 1616874 => 'Rockford, MI', + 1616877 => 'Wayland, MI', + 1616878 => 'Byron Center, MI', + 1616885 => 'Grand Rapids, MI', + 1616887 => 'Sparta, MI', + 1616891 => 'Caledonia, MI', + 1616892 => 'Allendale Charter Township, MI', + 1616895 => 'Allendale Charter Township, MI', + 1616896 => 'Hudsonville, MI', + 1616897 => 'Lowell, MI', + 1616935 => 'Grand Haven, MI', + 1616940 => 'Grand Rapids, MI', + 1616942 => 'Grand Rapids, MI', + 1616949 => 'Grand Rapids, MI', + 1616954 => 'Grand Rapids, MI', + 1616956 => 'Grand Rapids, MI', + 1616957 => 'Grand Rapids, MI', + 1616974 => 'Grand Rapids, MI', + 1616975 => 'Grand Rapids, MI', + 1616977 => 'Grand Rapids, MI', + 1616988 => 'Grand Rapids, MI', + 1616994 => 'Holland, MI', + 1616997 => 'Coopersville, MI', + 1617 => 'Massachusetts', + 1617225 => 'Cambridge, MA', + 1617227 => 'Boston, MA', + 1617236 => 'Boston, MA', + 1617241 => 'Charlestown, MA', + 1617242 => 'Charlestown, MA', + 1617243 => 'Newton, MA', + 1617247 => 'Boston, MA', + 1617248 => 'Boston, MA', + 1617253 => 'Cambridge, MA', + 1617261 => 'Boston, MA', + 1617262 => 'Boston, MA', + 1617265 => 'Dorchester, MA', + 1617266 => 'Boston, MA', + 1617267 => 'Boston, MA', + 1617277 => 'Brookline, MA', + 1617282 => 'Dorchester, MA', + 1617284 => 'Somerville, MA', + 1617288 => 'Dorchester, MA', + 1617292 => 'Boston, MA', + 1617294 => 'Everett, MA', + 1617298 => 'Mattapan, MA', + 1617328 => 'Quincy, MA', + 1617330 => 'Boston, MA', + 1617332 => 'Newton, MA', + 1617338 => 'Boston, MA', + 1617342 => 'Boston, MA', + 1617345 => 'Boston, MA', + 1617348 => 'Boston, MA', + 1617349 => 'Cambridge, MA', + 1617350 => 'Boston, MA', + 1617353 => 'Boston, MA', + 1617354 => 'Cambridge, MA', + 1617355 => 'Boston, MA', + 1617357 => 'Boston, MA', + 1617361 => 'Hyde Park, MA', + 1617364 => 'Hyde Park, MA', + 1617367 => 'Boston, MA', + 1617371 => 'Boston, MA', + 1617375 => 'Boston, MA', + 1617376 => 'Quincy, MA', + 1617381 => 'Everett, MA', + 1617387 => 'Everett, MA', + 1617389 => 'Everett, MA', + 1617391 => 'Boston, MA', + 1617394 => 'Everett, MA', + 1617414 => 'Boston, MA', + 1617421 => 'Boston, MA', + 1617422 => 'Boston, MA', + 1617423 => 'Boston, MA', + 1617424 => 'Boston, MA', + 1617425 => 'Boston, MA', + 1617426 => 'Boston, MA', + 1617432 => 'Boston, MA', + 1617436 => 'Dorchester, MA', + 1617437 => 'Boston, MA', + 1617439 => 'Boston, MA', + 1617441 => 'Cambridge, MA', + 1617451 => 'Boston, MA', + 1617466 => 'Chelsea, MA', + 1617471 => 'Quincy, MA', + 1617472 => 'Quincy, MA', + 1617479 => 'Quincy, MA', + 1617482 => 'Boston, MA', + 1617484 => 'Belmont, MA', + 1617489 => 'Belmont, MA', + 1617491 => 'Cambridge, MA', + 1617492 => 'Cambridge, MA', + 1617494 => 'Cambridge, MA', + 1617495 => 'Cambridge, MA', + 1617497 => 'Cambridge, MA', + 1617499 => 'Cambridge, MA', + 1617522 => 'Jamaica Plain, MA', + 1617523 => 'Boston, MA', + 1617524 => 'Jamaica Plain, MA', + 1617525 => 'Boston, MA', + 1617526 => 'Boston, MA', + 1617527 => 'Newton, MA', + 1617536 => 'Boston, MA', + 1617542 => 'Boston, MA', + 1617547 => 'Cambridge, MA', + 1617557 => 'Boston, MA', + 1617558 => 'Newton, MA', + 1617562 => 'Brighton, MA', + 1617566 => 'Brookline, MA', + 1617567 => 'East Boston, MA', + 1617568 => 'East Boston, MA', + 1617569 => 'East Boston, MA', + 1617570 => 'Boston, MA', + 1617573 => 'Boston, MA', + 1617574 => 'Boston, MA', + 1617575 => 'Cambridge, MA', + 1617576 => 'Cambridge, MA', + 1617577 => 'Cambridge, MA', + 1617591 => 'Somerville, MA', + 1617621 => 'Cambridge, MA', + 1617623 => 'Somerville, MA', + 1617625 => 'Somerville, MA', + 1617626 => 'Boston, MA', + 1617628 => 'Somerville, MA', + 1617629 => 'Somerville, MA', + 1617630 => 'Newton, MA', + 1617632 => 'Boston, MA', + 1617636 => 'Boston, MA', + 1617638 => 'Boston, MA', + 1617643 => 'Boston, MA', + 1617661 => 'Cambridge, MA', + 1617665 => 'Cambridge, MA', + 1617666 => 'Somerville, MA', + 1617667 => 'Boston, MA', + 1617695 => 'Boston, MA', + 1617696 => 'Milton, MA', + 1617698 => 'Milton, MA', + 1617714 => 'Cambridge, MA', + 1617718 => 'Somerville, MA', + 1617720 => 'Boston, MA', + 1617722 => 'Boston, MA', + 1617723 => 'Boston, MA', + 1617724 => 'Boston, MA', + 1617726 => 'Boston, MA', + 1617727 => 'Boston, MA', + 1617728 => 'Boston, MA', + 1617731 => 'Brookline, MA', + 1617732 => 'Boston, MA', + 1617734 => 'Brookline, MA', + 1617737 => 'Boston, MA', + 1617738 => 'Brookline, MA', + 1617739 => 'Brookline, MA', + 1617742 => 'Boston, MA', + 1617764 => 'Somerville, MA', + 1617770 => 'Quincy, MA', + 1617773 => 'Quincy, MA', + 1617774 => 'Quincy, MA', + 1617776 => 'Somerville, MA', + 1617778 => 'Boston, MA', + 1617779 => 'Brighton, MA', + 1617786 => 'Quincy, MA', + 1617789 => 'Brighton, MA', + 1617796 => 'Newton, MA', + 1617832 => 'Boston, MA', + 1617846 => 'Winthrop, MA', + 1617847 => 'Quincy, MA', + 1617854 => 'Boston, MA', + 1617855 => 'Belmont, MA', + 1617859 => 'Boston, MA', + 1617864 => 'Cambridge, MA', + 1617868 => 'Cambridge, MA', + 1617876 => 'Cambridge, MA', + 1617879 => 'Brookline, MA', + 1617884 => 'Chelsea, MA', + 1617887 => 'Chelsea, MA', + 1617889 => 'Chelsea, MA', + 1617923 => 'Watertown, MA', + 1617924 => 'Watertown, MA', + 1617926 => 'Watertown, MA', + 1617928 => 'Newton, MA', + 1617934 => 'Quincy, MA', + 1617945 => 'Cambridge, MA', + 1617951 => 'Boston, MA', + 1617964 => 'Newton, MA', + 1617965 => 'Newton, MA', + 1617969 => 'Newton, MA', + 1617971 => 'Jamaica Plain, MA', + 1617972 => 'Watertown, MA', + 1617973 => 'Boston, MA', + 1617983 => 'Jamaica Plain, MA', + 1618 => 'Illinois', + 1618222 => 'Belleville, IL', + 1618224 => 'Trenton, IL', + 1618233 => 'Belleville, IL', + 1618234 => 'Belleville, IL', + 1618235 => 'Belleville, IL', + 1618236 => 'Belleville, IL', + 1618239 => 'Belleville, IL', + 1618241 => 'Mount Vernon, IL', + 1618242 => 'Mount Vernon, IL', + 1618244 => 'Mount Vernon, IL', + 1618251 => 'Wood River, IL', + 1618252 => 'Harrisburg, IL', + 1618253 => 'Harrisburg, IL', + 1618254 => 'Wood River, IL', + 1618256 => 'Scott AFB, IL', + 1618257 => 'Belleville, IL', + 1618262 => 'Mount Carmel, IL', + 1618263 => 'Mount Carmel, IL', + 1618271 => 'East St. Louis, IL', + 1618273 => 'Eldorado, IL', + 1618274 => 'East St. Louis, IL', + 1618277 => 'Belleville, IL', + 1618281 => 'Columbia, IL', + 1618282 => 'Red Bud, IL', + 1618283 => 'Vandalia, IL', + 1618286 => 'Dupo, IL', + 1618288 => 'Maryville, IL', + 1618295 => 'Marissa, IL', + 1618307 => 'Edwardsville, IL', + 1618327 => 'Nashville, IL', + 1618343 => 'Collinsville, IL', + 1618344 => 'Collinsville, IL', + 1618345 => 'Collinsville, IL', + 1618346 => 'Collinsville, IL', + 1618351 => 'Carbondale, IL', + 1618355 => 'Belleville, IL', + 1618357 => 'Pinckneyville, IL', + 1618372 => 'Brighton, IL', + 1618375 => 'Grayville, IL', + 1618377 => 'Bethalto, IL', + 1618382 => 'Carmi, IL', + 1618392 => 'Olney, IL', + 1618395 => 'Olney, IL', + 1618416 => 'Belleville, IL', + 1618426 => 'Ava, IL', + 1618435 => 'Benton, IL', + 1618438 => 'Benton, IL', + 1618439 => 'Benton, IL', + 1618443 => 'Sparta, IL', + 1618445 => 'Albion, IL', + 1618451 => 'Granite City, IL', + 1618452 => 'Granite City, IL', + 1618453 => 'Carbondale, IL', + 1618457 => 'Carbondale, IL', + 1618462 => 'Alton, IL', + 1618463 => 'Alton, IL', + 1618465 => 'Alton, IL', + 1618466 => 'Godfrey, IL', + 1618467 => 'Godfrey, IL', + 1618474 => 'Alton, IL', + 1618475 => 'New Athens, IL', + 1618476 => 'Millstadt, IL', + 1618482 => 'East St. Louis, IL', + 1618483 => 'Altamont, IL', + 1618498 => 'Jerseyville, IL', + 1618524 => 'Metropolis, IL', + 1618526 => 'Breese, IL', + 1618529 => 'Carbondale, IL', + 1618532 => 'Centralia, IL', + 1618533 => 'Centralia, IL', + 1618537 => 'Lebanon, IL', + 1618539 => 'Freeburg, IL', + 1618542 => 'Du Quoin, IL', + 1618544 => 'Robinson, IL', + 1618546 => 'Robinson, IL', + 1618548 => 'Salem, IL', + 1618549 => 'Carbondale, IL', + 1618566 => 'Mascoutah, IL', + 1618576 => 'Hardin, IL', + 1618585 => 'Bunker Hill, IL', + 1618588 => 'New Baden, IL', + 1618592 => 'Oblong, IL', + 1618594 => 'Carlyle, IL', + 1618624 => 'O\'Fallon, IL', + 1618632 => 'O\'Fallon, IL', + 1618635 => 'Staunton, IL', + 1618643 => 'McLeansboro, IL', + 1618651 => 'Highland, IL', + 1618654 => 'Highland, IL', + 1618655 => 'Edwardsville, IL', + 1618656 => 'Edwardsville, IL', + 1618658 => 'Vienna, IL', + 1618659 => 'Edwardsville, IL', + 1618662 => 'Flora, IL', + 1618664 => 'Greenville, IL', + 1618665 => 'Louisville, IL', + 1618667 => 'Troy, IL', + 1618684 => 'Murphysboro, IL', + 1618687 => 'Murphysboro, IL', + 1618692 => 'Edwardsville, IL', + 1618724 => 'Christopher, IL', + 1618734 => 'Cairo, IL', + 1618783 => 'Newton, IL', + 1618786 => 'Grafton, IL', + 1618797 => 'Granite City, IL', + 1618826 => 'Chester, IL', + 1618829 => 'St. Elmo, IL', + 1618833 => 'Anna, IL', + 1618842 => 'Fairfield, IL', + 1618874 => 'East St. Louis, IL', + 1618875 => 'East St. Louis, IL', + 1618876 => 'Granite City, IL', + 1618877 => 'Granite City, IL', + 1618893 => 'Cobden, IL', + 1618931 => 'Granite City, IL', + 1618932 => 'West Frankfort, IL', + 1618937 => 'West Frankfort, IL', + 1618939 => 'Waterloo, IL', + 1618942 => 'Herrin, IL', + 1618943 => 'Lawrenceville, IL', + 1618965 => 'Steeleville, IL', + 1618983 => 'Johnston City, IL', + 1618985 => 'Carterville, IL', + 1618988 => 'Herrin, IL', + 1618993 => 'Marion, IL', + 1618995 => 'Goreville, IL', + 1618997 => 'Marion, IL', + 1618998 => 'Marion, IL', + 1619 => 'California', + 1619209 => 'San Diego, CA', + 1619216 => 'Chula Vista, CA', + 1619220 => 'San Diego, CA', + 1619221 => 'San Diego, CA', + 1619222 => 'San Diego, CA', + 1619223 => 'San Diego, CA', + 1619224 => 'San Diego, CA', + 1619225 => 'San Diego, CA', + 1619226 => 'San Diego, CA', + 1619229 => 'San Diego, CA', + 1619230 => 'San Diego, CA', + 1619231 => 'San Diego, CA', + 1619232 => 'San Diego, CA', + 1619233 => 'San Diego, CA', + 1619234 => 'San Diego, CA', + 1619235 => 'San Diego, CA', + 1619236 => 'San Diego, CA', + 1619237 => 'San Diego, CA', + 1619238 => 'San Diego, CA', + 1619239 => 'San Diego, CA', + 1619255 => 'San Diego, CA', + 1619258 => 'Santee, CA', + 1619260 => 'San Diego, CA', + 1619262 => 'San Diego, CA', + 1619263 => 'San Diego, CA', + 1619264 => 'San Diego, CA', + 1619265 => 'San Diego, CA', + 1619266 => 'San Diego, CA', + 1619269 => 'San Diego, CA', + 1619271 => 'Chula Vista, CA', + 1619275 => 'San Diego, CA', + 1619276 => 'San Diego, CA', + 1619278 => 'San Diego, CA', + 1619280 => 'San Diego, CA', + 1619281 => 'San Diego, CA', + 1619282 => 'San Diego, CA', + 1619283 => 'San Diego, CA', + 1619284 => 'San Diego, CA', + 1619285 => 'San Diego, CA', + 1619286 => 'San Diego, CA', + 1619287 => 'San Diego, CA', + 1619291 => 'San Diego, CA', + 1619293 => 'San Diego, CA', + 1619294 => 'San Diego, CA', + 1619295 => 'San Diego, CA', + 1619296 => 'San Diego, CA', + 1619297 => 'San Diego, CA', + 1619298 => 'San Diego, CA', + 1619299 => 'San Diego, CA', + 1619325 => 'San Diego, CA', + 1619334 => 'El Cajon, CA', + 1619336 => 'National City, CA', + 1619338 => 'San Diego, CA', + 1619390 => 'Lakeside, CA', + 1619397 => 'Chula Vista, CA', + 1619398 => 'San Diego, CA', + 1619400 => 'San Diego, CA', + 1619401 => 'El Cajon, CA', + 1619409 => 'Chula Vista, CA', + 1619420 => 'Chula Vista, CA', + 1619421 => 'Chula Vista, CA', + 1619422 => 'Chula Vista, CA', + 1619425 => 'Chula Vista, CA', + 1619426 => 'Chula Vista, CA', + 1619427 => 'Chula Vista, CA', + 1619428 => 'San Ysidro, CA', + 1619435 => 'Coronado, CA', + 1619437 => 'Coronado, CA', + 1619440 => 'El Cajon, CA', + 1619441 => 'El Cajon, CA', + 1619442 => 'El Cajon, CA', + 1619443 => 'Lakeside, CA', + 1619444 => 'El Cajon, CA', + 1619445 => 'Alpine, CA', + 1619446 => 'San Diego, CA', + 1619447 => 'El Cajon, CA', + 1619448 => 'Santee, CA', + 1619449 => 'Santee, CA', + 1619450 => 'San Diego, CA', + 1619460 => 'La Mesa, CA', + 1619462 => 'La Mesa, CA', + 1619466 => 'La Mesa, CA', + 1619471 => 'San Diego, CA', + 1619474 => 'National City, CA', + 1619476 => 'Chula Vista, CA', + 1619477 => 'National City, CA', + 1619482 => 'Chula Vista, CA', + 1619497 => 'San Diego, CA', + 1619498 => 'Chula Vista, CA', + 1619501 => 'San Diego, CA', + 1619515 => 'San Diego, CA', + 1619516 => 'San Diego, CA', + 1619521 => 'San Diego, CA', + 1619522 => 'Coronado, CA', + 1619523 => 'San Diego, CA', + 1619525 => 'San Diego, CA', + 1619527 => 'San Diego, CA', + 1619528 => 'San Diego, CA', + 1619531 => 'San Diego, CA', + 1619532 => 'San Diego, CA', + 1619542 => 'San Diego, CA', + 1619543 => 'San Diego, CA', + 1619544 => 'San Diego, CA', + 1619546 => 'San Diego, CA', + 1619556 => 'San Diego, CA', + 1619557 => 'San Diego, CA', + 1619561 => 'Lakeside, CA', + 1619562 => 'Santee, CA', + 1619563 => 'San Diego, CA', + 1619564 => 'San Diego, CA', + 1619574 => 'San Diego, CA', + 1619579 => 'El Cajon, CA', + 1619582 => 'San Diego, CA', + 1619583 => 'San Diego, CA', + 1619584 => 'San Diego, CA', + 1619585 => 'Chula Vista, CA', + 1619588 => 'El Cajon, CA', + 1619589 => 'La Mesa, CA', + 1619590 => 'El Cajon, CA', + 1619591 => 'Chula Vista, CA', + 1619593 => 'El Cajon, CA', + 1619594 => 'San Diego, CA', + 1619595 => 'San Diego, CA', + 1619596 => 'Santee, CA', + 1619615 => 'San Diego, CA', + 1619640 => 'San Diego, CA', + 1619641 => 'San Diego, CA', + 1619644 => 'La Mesa, CA', + 1619656 => 'Chula Vista, CA', + 1619659 => 'Alpine, CA', + 1619661 => 'San Diego, CA', + 1619662 => 'San Diego, CA', + 1619667 => 'La Mesa, CA', + 1619668 => 'La Mesa, CA', + 1619669 => 'Jamul, CA', + 1619671 => 'San Diego, CA', + 1619677 => 'San Diego, CA', + 1619683 => 'San Diego, CA', + 1619688 => 'San Diego, CA', + 1619691 => 'Chula Vista, CA', + 1619692 => 'San Diego, CA', + 1619696 => 'San Diego, CA', + 1619697 => 'La Mesa, CA', + 1619698 => 'La Mesa, CA', + 1619702 => 'San Diego, CA', + 1619710 => 'San Diego, CA', + 1619722 => 'Alpine, CA', + 1619740 => 'La Mesa, CA', + 1619749 => 'El Cajon, CA', + 1619758 => 'San Diego, CA', + 1619794 => 'San Diego, CA', + 1619795 => 'San Diego, CA', + 1619849 => 'San Diego, CA', + 1619881 => 'San Diego, CA', + 1619934 => 'Chula Vista, CA', + 1619955 => 'San Diego, CA', + 1620 => 'Kansas', + 1620221 => 'Winfield, KS', + 1620223 => 'Fort Scott, KS', + 1620225 => 'Dodge City, KS', + 1620227 => 'Dodge City, KS', + 1620231 => 'Pittsburg, KS', + 1620232 => 'Pittsburg, KS', + 1620235 => 'Pittsburg, KS', + 1620241 => 'McPherson, KS', + 1620244 => 'Erie, KS', + 1620245 => 'McPherson, KS', + 1620249 => 'Pittsburg, KS', + 1620251 => 'Coffeyville, KS', + 1620257 => 'Lyons, KS', + 1620259 => 'Hutchinson, KS', + 1620271 => 'Garden City, KS', + 1620272 => 'Garden City, KS', + 1620273 => 'Cottonwood Falls, KS', + 1620275 => 'Garden City, KS', + 1620276 => 'Garden City, KS', + 1620277 => 'Holcomb, KS', + 1620278 => 'Sterling, KS', + 1620285 => 'Larned, KS', + 1620325 => 'Neodesha, KS', + 1620326 => 'Wellington, KS', + 1620327 => 'Hesston, KS', + 1620331 => 'Independence, KS', + 1620332 => 'Independence, KS', + 1620336 => 'Cherryvale, KS', + 1620340 => 'Emporia, KS', + 1620341 => 'Emporia, KS', + 1620342 => 'Emporia, KS', + 1620343 => 'Emporia, KS', + 1620345 => 'Moundridge, KS', + 1620347 => 'Arma, KS', + 1620355 => 'Lakin, KS', + 1620356 => 'Ulysses, KS', + 1620357 => 'Jetmore, KS', + 1620364 => 'Burlington, KS', + 1620365 => 'Iola, KS', + 1620375 => 'Leoti, KS', + 1620376 => 'Tribune, KS', + 1620378 => 'Fredonia, KS', + 1620382 => 'Marion, KS', + 1620384 => 'Syracuse, KS', + 1620397 => 'Dighton, KS', + 1620421 => 'Parsons, KS', + 1620429 => 'Columbus, KS', + 1620431 => 'Chanute, KS', + 1620441 => 'Arkansas City, KS', + 1620442 => 'Arkansas City, KS', + 1620456 => 'Conway Springs, KS', + 1620465 => 'Haven, KS', + 1620473 => 'Humboldt, KS', + 1620488 => 'Belle Plaine, KS', + 1620492 => 'Johnson City, KS', + 1620532 => 'Kingman, KS', + 1620544 => 'Hugoton, KS', + 1620549 => 'St. John, KS', + 1620563 => 'Plains, KS', + 1620564 => 'Ellinwood, KS', + 1620582 => 'Coldwater, KS', + 1620583 => 'Eureka, KS', + 1620584 => 'Clearwater, KS', + 1620585 => 'Inman, KS', + 1620624 => 'Liberal, KS', + 1620625 => 'Yates Center, KS', + 1620626 => 'Liberal, KS', + 1620635 => 'Ashland, KS', + 1620653 => 'Hoisington, KS', + 1620659 => 'Kinsley, KS', + 1620662 => 'Hutchinson, KS', + 1620663 => 'Hutchinson, KS', + 1620664 => 'Hutchinson, KS', + 1620665 => 'Hutchinson, KS', + 1620669 => 'Hutchinson, KS', + 1620672 => 'Pratt, KS', + 1620675 => 'Sublette, KS', + 1620694 => 'Hutchinson, KS', + 1620697 => 'Elkhart, KS', + 1620723 => 'Greensburg, KS', + 1620724 => 'Girard, KS', + 1620725 => 'Sedan, KS', + 1620767 => 'Council Grove, KS', + 1620783 => 'Galena, KS', + 1620792 => 'Great Bend, KS', + 1620793 => 'Great Bend, KS', + 1620795 => 'Oswego, KS', + 1620825 => 'Kiowa, KS', + 1620842 => 'Anthony, KS', + 1620855 => 'Cimarron, KS', + 1620856 => 'Baxter Springs, KS', + 1620872 => 'Scott City, KS', + 1620873 => 'Meade, KS', + 1620879 => 'Caney, KS', + 1620886 => 'Medicine Lodge, KS', + 1620896 => 'Harper, KS', + 1620947 => 'Hillsboro, KS', + 1623 => 'Arizona', + 1623245 => 'Phoenix, AZ', + 1623247 => 'Phoenix, AZ', + 1623386 => 'Buckeye, AZ', + 1623434 => 'Phoenix, AZ', + 1623435 => 'Glendale, AZ', + 1623445 => 'Phoenix, AZ', + 1623463 => 'Glendale, AZ', + 1623516 => 'Phoenix, AZ', + 1623561 => 'Glendale, AZ', + 1623580 => 'Phoenix, AZ', + 1623581 => 'Phoenix, AZ', + 1623582 => 'Phoenix, AZ', + 1623587 => 'Phoenix, AZ', + 1623691 => 'Phoenix, AZ', + 1623773 => 'Peoria, AZ', + 1623780 => 'Phoenix, AZ', + 1623842 => 'Glendale, AZ', + 1623845 => 'Phoenix, AZ', + 1623846 => 'Phoenix, AZ', + 1623847 => 'Glendale, AZ', + 1623848 => 'Phoenix, AZ', + 1623849 => 'Phoenix, AZ', + 1623869 => 'Phoenix, AZ', + 1623873 => 'Phoenix, AZ', + 1623879 => 'Phoenix, AZ', + 1623915 => 'Glendale, AZ', + 1623930 => 'Glendale, AZ', + 1623931 => 'Glendale, AZ', + 1623934 => 'Glendale, AZ', + 1623937 => 'Glendale, AZ', + 1623939 => 'Glendale, AZ', + 1623977 => 'Sun City, AZ', + 1626 => 'California', + 1626229 => 'Pasadena, CA', + 1626254 => 'Arcadia, CA', + 1626281 => 'Alhambra, CA', + 1626282 => 'Alhambra, CA', + 1626284 => 'Alhambra, CA', + 1626289 => 'Alhambra, CA', + 1626293 => 'Alhambra, CA', + 1626294 => 'Arcadia, CA', + 1626296 => 'Pasadena, CA', + 1626300 => 'Alhambra, CA', + 1626303 => 'Monrovia, CA', + 1626304 => 'Pasadena, CA', + 1626305 => 'Monrovia, CA', + 1626308 => 'Alhambra, CA', + 1626331 => 'Covina, CA', + 1626332 => 'Covina, CA', + 1626334 => 'Azusa, CA', + 1626335 => 'Glendora, CA', + 1626337 => 'Baldwin Park, CA', + 1626339 => 'Covina, CA', + 1626345 => 'Pasadena, CA', + 1626350 => 'El Monte, CA', + 1626351 => 'Pasadena, CA', + 1626355 => 'Sierra Madre, CA', + 1626356 => 'Pasadena, CA', + 1626357 => 'Monrovia, CA', + 1626358 => 'Monrovia, CA', + 1626396 => 'Pasadena, CA', + 1626397 => 'Pasadena, CA', + 1626398 => 'Pasadena, CA', + 1626403 => 'South Pasadena, CA', + 1626405 => 'Pasadena, CA', + 1626432 => 'Pasadena, CA', + 1626440 => 'Pasadena, CA', + 1626441 => 'South Pasadena, CA', + 1626442 => 'El Monte, CA', + 1626443 => 'El Monte, CA', + 1626444 => 'El Monte, CA', + 1626445 => 'Arcadia, CA', + 1626446 => 'Arcadia, CA', + 1626447 => 'Arcadia, CA', + 1626448 => 'El Monte, CA', + 1626449 => 'Pasadena, CA', + 1626452 => 'El Monte, CA', + 1626453 => 'El Monte, CA', + 1626454 => 'El Monte, CA', + 1626457 => 'Alhambra, CA', + 1626458 => 'Alhambra, CA', + 1626462 => 'Arcadia, CA', + 1626564 => 'Pasadena, CA', + 1626568 => 'Pasadena, CA', + 1626570 => 'Alhambra, CA', + 1626574 => 'Arcadia, CA', + 1626576 => 'Alhambra, CA', + 1626577 => 'Pasadena, CA', + 1626578 => 'Pasadena, CA', + 1626579 => 'El Monte, CA', + 1626583 => 'Pasadena, CA', + 1626584 => 'Pasadena, CA', + 1626585 => 'Pasadena, CA', + 1626599 => 'Monrovia, CA', + 1626683 => 'Pasadena, CA', + 1626732 => 'Covina, CA', + 1626744 => 'Pasadena, CA', + 1626765 => 'Pasadena, CA', + 1626791 => 'Pasadena, CA', + 1626792 => 'Pasadena, CA', + 1626793 => 'Pasadena, CA', + 1626794 => 'Pasadena, CA', + 1626795 => 'Pasadena, CA', + 1626796 => 'Pasadena, CA', + 1626797 => 'Pasadena, CA', + 1626798 => 'Pasadena, CA', + 1626799 => 'South Pasadena, CA', + 1626812 => 'Azusa, CA', + 1626815 => 'Azusa, CA', + 1626821 => 'Arcadia, CA', + 1626844 => 'Pasadena, CA', + 1626852 => 'Glendora, CA', + 1626857 => 'Glendora, CA', + 1626858 => 'Covina, CA', + 1626859 => 'Covina, CA', + 1626914 => 'Glendora, CA', + 1626915 => 'Covina, CA', + 1626917 => 'La Puente, CA', + 1626919 => 'West Covina, CA', + 1626943 => 'Alhambra, CA', + 1626963 => 'Glendora, CA', + 1626966 => 'Covina, CA', + 1626967 => 'Covina, CA', + 1626969 => 'Azusa, CA', + 1626974 => 'Covina, CA', + 1628 => 'California', + 1629 => 'Tennessee', + 1630 => 'Illinois', + 1630208 => 'Geneva, IL', + 1630226 => 'Bolingbrook, IL', + 1630229 => 'Aurora, IL', + 1630231 => 'West Chicago, IL', + 1630232 => 'Geneva, IL', + 1630236 => 'Aurora, IL', + 1630238 => 'Bensenville, IL', + 1630243 => 'Lemont, IL', + 1630250 => 'Itasca, IL', + 1630257 => 'Lemont, IL', + 1630260 => 'Wheaton, IL', + 1630262 => 'Geneva, IL', + 1630264 => 'Aurora, IL', + 1630275 => 'Downers Grove, IL', + 1630279 => 'Elmhurst, IL', + 1630285 => 'Itasca, IL', + 1630293 => 'West Chicago, IL', + 1630305 => 'Naperville, IL', + 1630340 => 'Aurora, IL', + 1630350 => 'Bensenville, IL', + 1630355 => 'Naperville, IL', + 1630357 => 'Naperville, IL', + 1630365 => 'Elburn, IL', + 1630368 => 'Oak Brook, IL', + 1630369 => 'Naperville, IL', + 1630375 => 'Aurora, IL', + 1630377 => 'St. Charles, IL', + 1630378 => 'Bolingbrook, IL', + 1630393 => 'Warrenville, IL', + 1630406 => 'Batavia, IL', + 1630416 => 'Naperville, IL', + 1630420 => 'Naperville, IL', + 1630422 => 'Bensenville, IL', + 1630428 => 'Naperville, IL', + 1630443 => 'St. Charles, IL', + 1630444 => 'St. Charles, IL', + 1630458 => 'Addison, IL', + 1630462 => 'Wheaton, IL', + 1630466 => 'Sugar Grove, IL', + 1630469 => 'Glen Ellyn, IL', + 1630482 => 'Batavia, IL', + 1630495 => 'Lombard, IL', + 1630499 => 'Aurora, IL', + 1630505 => 'Naperville, IL', + 1630513 => 'St. Charles, IL', + 1630521 => 'Bensenville, IL', + 1630527 => 'Naperville, IL', + 1630530 => 'Elmhurst, IL', + 1630543 => 'Addison, IL', + 1630545 => 'Glen Ellyn, IL', + 1630548 => 'Naperville, IL', + 1630551 => 'Oswego, IL', + 1630552 => 'Plano, IL', + 1630553 => 'Yorkville, IL', + 1630554 => 'Oswego, IL', + 1630556 => 'Big Rock, IL', + 1630562 => 'West Chicago, IL', + 1630571 => 'Oak Brook, IL', + 1630572 => 'Oak Brook, IL', + 1630573 => 'Oak Brook, IL', + 1630574 => 'Oak Brook, IL', + 1630575 => 'Oak Brook, IL', + 1630579 => 'Naperville, IL', + 1630584 => 'St. Charles, IL', + 1630585 => 'Aurora, IL', + 1630587 => 'St. Charles, IL', + 1630595 => 'Bensenville, IL', + 1630616 => 'Bensenville, IL', + 1630617 => 'Elmhurst, IL', + 1630620 => 'Lombard, IL', + 1630627 => 'Lombard, IL', + 1630628 => 'Addison, IL', + 1630629 => 'Lombard, IL', + 1630637 => 'Naperville, IL', + 1630653 => 'Wheaton, IL', + 1630665 => 'Wheaton, IL', + 1630668 => 'Wheaton, IL', + 1630679 => 'Bolingbrook, IL', + 1630681 => 'Wheaton, IL', + 1630682 => 'Wheaton, IL', + 1630692 => 'Aurora, IL', + 1630717 => 'Naperville, IL', + 1630718 => 'Naperville, IL', + 1630719 => 'Downers Grove, IL', + 1630739 => 'Bolingbrook, IL', + 1630752 => 'Wheaton, IL', + 1630758 => 'Elmhurst, IL', + 1630759 => 'Bolingbrook, IL', + 1630761 => 'Batavia, IL', + 1630762 => 'St. Charles, IL', + 1630766 => 'Bensenville, IL', + 1630769 => 'Downers Grove, IL', + 1630771 => 'Bolingbrook, IL', + 1630773 => 'Itasca, IL', + 1630778 => 'Naperville, IL', + 1630782 => 'Elmhurst, IL', + 1630783 => 'Bolingbrook, IL', + 1630787 => 'Bensenville, IL', + 1630790 => 'Glen Ellyn, IL', + 1630801 => 'Aurora, IL', + 1630820 => 'Aurora, IL', + 1630832 => 'Elmhurst, IL', + 1630833 => 'Elmhurst, IL', + 1630834 => 'Elmhurst, IL', + 1630836 => 'Warrenville, IL', + 1630844 => 'Aurora, IL', + 1630845 => 'Geneva, IL', + 1630848 => 'Naperville, IL', + 1630851 => 'Aurora, IL', + 1630856 => 'Hinsdale, IL', + 1630858 => 'Glen Ellyn, IL', + 1630859 => 'Aurora, IL', + 1630860 => 'Bensenville, IL', + 1630876 => 'West Chicago, IL', + 1630879 => 'Batavia, IL', + 1630882 => 'Yorkville, IL', + 1630892 => 'Aurora, IL', + 1630896 => 'Aurora, IL', + 1630897 => 'Aurora, IL', + 1630898 => 'Aurora, IL', + 1630904 => 'Naperville, IL', + 1630906 => 'Aurora, IL', + 1630907 => 'Aurora, IL', + 1630916 => 'Lombard, IL', + 1630922 => 'Naperville, IL', + 1630928 => 'Oak Brook, IL', + 1630932 => 'Lombard, IL', + 1630933 => 'Winfield, IL', + 1630941 => 'Elmhurst, IL', + 1630942 => 'Glen Ellyn, IL', + 1630954 => 'Oak Brook, IL', + 1630960 => 'Downers Grove, IL', + 1630961 => 'Naperville, IL', + 1630966 => 'Aurora, IL', + 1630968 => 'Downers Grove, IL', + 1630969 => 'Downers Grove, IL', + 1630972 => 'Bolingbrook, IL', + 1630978 => 'Aurora, IL', + 1630983 => 'Naperville, IL', + 1630990 => 'Oak Brook, IL', + 1630993 => 'Elmhurst, IL', + 1631 => 'New York', + 1631204 => 'Southampton, NY', + 1631206 => 'Bay Shore, NY', + 1631208 => 'Riverhead, NY', + 1631225 => 'Lindenhurst, NY', + 1631226 => 'Lindenhurst, NY', + 1631242 => 'Deer Park, NY', + 1631243 => 'Deer Park, NY', + 1631249 => 'Farmingdale, NY', + 1631254 => 'Deer Park, NY', + 1631259 => 'Southampton, NY', + 1631261 => 'Northport, NY', + 1631264 => 'Amityville, NY', + 1631265 => 'Smithtown, NY', + 1631266 => 'East Northport, NY', + 1631267 => 'Amagansett, NY', + 1631269 => 'Kings Park, NY', + 1631273 => 'Brentwood, NY', + 1631274 => 'Deer Park, NY', + 1631283 => 'Southampton, NY', + 1631287 => 'Southampton, NY', + 1631293 => 'Farmingdale, NY', + 1631298 => 'Mattituck, NY', + 1631324 => 'East Hampton, NY', + 1631328 => 'Bay Shore, NY', + 1631329 => 'East Hampton, NY', + 1631351 => 'Huntington, NY', + 1631360 => 'Smithtown, NY', + 1631363 => 'Blue Point, NY', + 1631368 => 'East Northport, NY', + 1631369 => 'Riverhead, NY', + 1631376 => 'West Islip, NY', + 1631392 => 'Deer Park, NY', + 1631420 => 'Farmingdale, NY', + 1631427 => 'Huntington, NY', + 1631462 => 'Commack, NY', + 1631465 => 'Melville, NY', + 1631472 => 'Bayport, NY', + 1631475 => 'Patchogue, NY', + 1631477 => 'Greenport, NY', + 1631499 => 'Commack, NY', + 1631537 => 'Bridgehampton, NY', + 1631543 => 'Commack, NY', + 1631544 => 'Kings Park, NY', + 1631569 => 'Patchogue, NY', + 1631583 => 'Ocean Beach, NY', + 1631584 => 'St. James, NY', + 1631586 => 'Deer Park, NY', + 1631591 => 'Riverhead, NY', + 1631592 => 'Lindenhurst, NY', + 1631595 => 'Deer Park, NY', + 1631598 => 'Amityville, NY', + 1631604 => 'East Hampton, NY', + 1631608 => 'Amityville, NY', + 1631632 => 'Stony Brook, NY', + 1631647 => 'Bay Shore, NY', + 1631653 => 'Quogue, NY', + 1631665 => 'Bay Shore, NY', + 1631666 => 'Bay Shore, NY', + 1631667 => 'Deer Park, NY', + 1631668 => 'Montauk, NY', + 1631687 => 'Patchogue, NY', + 1631691 => 'Amityville, NY', + 1631694 => 'Farmingdale, NY', + 1631723 => 'Hampton Bays, NY', + 1631725 => 'Sag Harbor, NY', + 1631726 => 'Water Mill, NY', + 1631727 => 'Riverhead, NY', + 1631728 => 'Hampton Bays, NY', + 1631734 => 'Cutchogue, NY', + 1631738 => 'Ronkonkoma, NY', + 1631749 => 'Shelter Island, NY', + 1631752 => 'Farmingdale, NY', + 1631753 => 'Farmingdale, NY', + 1631765 => 'Southold, NY', + 1631789 => 'Amityville, NY', + 1631841 => 'Amityville, NY', + 1631842 => 'Copiague, NY', + 1631858 => 'Commack, NY', + 1631863 => 'Smithtown, NY', + 1631864 => 'Commack, NY', + 1631884 => 'Lindenhurst, NY', + 1631907 => 'East Hampton, NY', + 1631929 => 'Wading River, NY', + 1631940 => 'Deer Park, NY', + 1631941 => 'Setauket- East Setauket, NY', + 1631956 => 'Lindenhurst, NY', + 1631957 => 'Lindenhurst, NY', + 1631968 => 'Bay Shore, NY', + 1631969 => 'Bay Shore, NY', + 1631991 => 'Lindenhurst, NY', + 1636 => 'Missouri', + 1636230 => 'Ballwin, MO', + 1636239 => 'Washington, MO', + 1636240 => 'O\'Fallon, MO', + 1636256 => 'Ballwin, MO', + 1636257 => 'Pacific, MO', + 1636271 => 'Pacific, MO', + 1636272 => 'O\'Fallon, MO', + 1636274 => 'Cedar Hill, MO', + 1636278 => 'St. Peters, MO', + 1636279 => 'St. Peters, MO', + 1636281 => 'O\'Fallon, MO', + 1636282 => 'Arnold, MO', + 1636285 => 'Cedar Hill, MO', + 1636287 => 'Arnold, MO', + 1636294 => 'O\'Fallon, MO', + 1636296 => 'Arnold, MO', + 1636305 => 'Fenton, MO', + 1636326 => 'Fenton, MO', + 1636327 => 'Wentzville, MO', + 1636332 => 'Wentzville, MO', + 1636337 => 'De Soto, MO', + 1636343 => 'Fenton, MO', + 1636349 => 'Fenton, MO', + 1636376 => 'High Ridge, MO', + 1636379 => 'O\'Fallon, MO', + 1636390 => 'Washington, MO', + 1636397 => 'St. Peters, MO', + 1636433 => 'Marthasville, MO', + 1636456 => 'Warrenton, MO', + 1636462 => 'Troy, MO', + 1636475 => 'Pevely, MO', + 1636479 => 'Pevely, MO', + 1636493 => 'St. Charles, MO', + 1636496 => 'Fenton, MO', + 1636519 => 'Chesterfield, MO', + 1636527 => 'Ballwin, MO', + 1636528 => 'Troy, MO', + 1636530 => 'Chesterfield, MO', + 1636532 => 'Chesterfield, MO', + 1636536 => 'Chesterfield, MO', + 1636537 => 'Chesterfield, MO', + 1636583 => 'Union, MO', + 1636584 => 'Union, MO', + 1636586 => 'De Soto, MO', + 1636587 => 'Eureka, MO', + 1636625 => 'Lake Saint Louis, MO', + 1636629 => 'Saint Clair, MO', + 1636639 => 'Wentzville, MO', + 1636671 => 'House Springs, MO', + 1636677 => 'High Ridge, MO', + 1636717 => 'Fenton, MO', + 1636723 => 'St. Charles, MO', + 1636724 => 'St. Charles, MO', + 1636728 => 'Chesterfield, MO', + 1636745 => 'Wright City, MO', + 1636789 => 'Hillsboro, MO', + 1636797 => 'Hillsboro, MO', + 1636887 => 'Wentzville, MO', + 1636916 => 'St. Charles, MO', + 1636922 => 'St. Peters, MO', + 1636925 => 'St. Charles, MO', + 1636931 => 'Festus, MO', + 1636933 => 'Festus, MO', + 1636937 => 'Festus, MO', + 1636938 => 'Eureka, MO', + 1636940 => 'St. Charles, MO', + 1636946 => 'St. Charles, MO', + 1636947 => 'St. Charles, MO', + 1636949 => 'St. Charles, MO', + 1636970 => 'St. Peters, MO', + 1636978 => 'O\'Fallon, MO', + 1636980 => 'O\'Fallon, MO', + 1639 => 'Saskatchewan', + 1641 => 'Iowa', + 1641209 => 'Fairfield, IA', + 1641228 => 'Charles City, IA', + 1641236 => 'Grinnell, IA', + 1641259 => 'Monroe, IA', + 1641322 => 'Corning, IA', + 1641324 => 'Northwood, IA', + 1641333 => 'Lenox, IA', + 1641342 => 'Osceola, IA', + 1641357 => 'Clear Lake, IA', + 1641366 => 'Conrad, IA', + 1641394 => 'New Hampton, IA', + 1641421 => 'Mason City, IA', + 1641422 => 'Mason City, IA', + 1641423 => 'Mason City, IA', + 1641424 => 'Mason City, IA', + 1641435 => 'Nashua, IA', + 1641437 => 'Centerville, IA', + 1641444 => 'Belmond, IA', + 1641446 => 'Leon, IA', + 1641456 => 'Hampton, IA', + 1641464 => 'Mount Ayr, IA', + 1641469 => 'Fairfield, IA', + 1641472 => 'Fairfield, IA', + 1641473 => 'Gladbrook, IA', + 1641484 => 'Toledo, IA', + 1641522 => 'Brooklyn, IA', + 1641585 => 'Forest City, IA', + 1641592 => 'Lake Mills, IA', + 1641594 => 'Sully, IA', + 1641622 => 'Sigourney, IA', + 1641623 => 'Montezuma, IA', + 1641628 => 'Pella, IA', + 1641637 => 'New Sharon, IA', + 1641648 => 'Iowa Falls, IA', + 1641664 => 'Bloomfield, IA', + 1641672 => 'Oskaloosa, IA', + 1641673 => 'Oskaloosa, IA', + 1641682 => 'Ottumwa, IA', + 1641683 => 'Ottumwa, IA', + 1641684 => 'Ottumwa, IA', + 1641732 => 'Osage, IA', + 1641743 => 'Greenfield, IA', + 1641747 => 'Guthrie Center, IA', + 1641752 => 'Marshalltown, IA', + 1641753 => 'Marshalltown, IA', + 1641754 => 'Marshalltown, IA', + 1641755 => 'Panora, IA', + 1641774 => 'Chariton, IA', + 1641782 => 'Creston, IA', + 1641784 => 'Lamoni, IA', + 1641791 => 'Newton, IA', + 1641792 => 'Newton, IA', + 1641822 => 'Rockwell, IA', + 1641828 => 'Knoxville, IA', + 1641842 => 'Knoxville, IA', + 1641843 => 'Britt, IA', + 1641847 => 'Ackley, IA', + 1641856 => 'Centerville, IA', + 1641858 => 'Eldora, IA', + 1641872 => 'Corydon, IA', + 1641923 => 'Garner, IA', + 1641932 => 'Albia, IA', + 1641939 => 'Eldora, IA', + 1641985 => 'Riceville, IA', + 1646 => 'New York', + 1646237 => 'New York, NY', + 1646336 => 'New York, NY', + 1646434 => 'New York, NY', + 1646476 => 'New York, NY', + 1646486 => 'New York, NY', + 1646559 => 'New York, NY', + 1646613 => 'New York, NY', + 1646638 => 'New York, NY', + 1646672 => 'New York, NY', + 1647 => 'Ontario', + 1649946 => 'Providenciales', + 1650 => 'California', + 1650212 => 'San Mateo, CA', + 1650216 => 'Redwood City, CA', + 1650233 => 'Menlo Park, CA', + 1650253 => 'Mountain View, CA', + 1650259 => 'Burlingame, CA', + 1650261 => 'Redwood City, CA', + 1650289 => 'Palo Alto, CA', + 1650298 => 'Redwood City, CA', + 1650299 => 'Redwood City, CA', + 1650301 => 'Daly City, CA', + 1650306 => 'Redwood City, CA', + 1650312 => 'San Mateo, CA', + 1650321 => 'Palo Alto, CA', + 1650327 => 'Palo Alto, CA', + 1650328 => 'Palo Alto, CA', + 1650329 => 'Palo Alto, CA', + 1650341 => 'San Mateo, CA', + 1650342 => 'San Mateo, CA', + 1650345 => 'San Mateo, CA', + 1650349 => 'San Mateo, CA', + 1650355 => 'Pacifica, CA', + 1650359 => 'Pacifica, CA', + 1650361 => 'Redwood City, CA', + 1650363 => 'Redwood City, CA', + 1650364 => 'Redwood City, CA', + 1650365 => 'Redwood City, CA', + 1650366 => 'Redwood City, CA', + 1650367 => 'Redwood City, CA', + 1650368 => 'Redwood City, CA', + 1650369 => 'Redwood City, CA', + 1650424 => 'Palo Alto, CA', + 1650458 => 'San Mateo, CA', + 1650493 => 'Palo Alto, CA', + 1650494 => 'Palo Alto, CA', + 1650497 => 'Palo Alto, CA', + 1650508 => 'San Carlos, CA', + 1650522 => 'San Mateo, CA', + 1650525 => 'San Mateo, CA', + 1650548 => 'San Mateo, CA', + 1650556 => 'Redwood City, CA', + 1650559 => 'Los Altos, CA', + 1650568 => 'Redwood City, CA', + 1650570 => 'San Mateo, CA', + 1650571 => 'San Mateo, CA', + 1650572 => 'San Mateo, CA', + 1650573 => 'San Mateo, CA', + 1650574 => 'San Mateo, CA', + 1650578 => 'San Mateo, CA', + 1650591 => 'San Carlos, CA', + 1650592 => 'San Carlos, CA', + 1650593 => 'San Carlos, CA', + 1650594 => 'San Carlos, CA', + 1650595 => 'San Carlos, CA', + 1650599 => 'Redwood City, CA', + 1650625 => 'Mountain View, CA', + 1650631 => 'San Carlos, CA', + 1650637 => 'San Carlos, CA', + 1650638 => 'San Mateo, CA', + 1650691 => 'Mountain View, CA', + 1650692 => 'Burlingame, CA', + 1650701 => 'Redwood City, CA', + 1650712 => 'Half Moon Bay, CA', + 1650721 => 'Redwood City, CA', + 1650723 => 'Stanford, CA', + 1650726 => 'Half Moon Bay, CA', + 1650738 => 'Pacifica, CA', + 1650742 => 'South San Francisco, CA', + 1650755 => 'Daly City, CA', + 1650756 => 'Daly City, CA', + 1650757 => 'Daly City, CA', + 1650758 => 'Daly City, CA', + 1650780 => 'Redwood City, CA', + 1650802 => 'San Carlos, CA', + 1650839 => 'Redwood City, CA', + 1650853 => 'Palo Alto, CA', + 1650854 => 'Menlo Park, CA', + 1650856 => 'Palo Alto, CA', + 1650858 => 'Palo Alto, CA', + 1650878 => 'Daly City, CA', + 1650879 => 'Pescadero, CA', + 1650903 => 'Mountain View, CA', + 1650938 => 'Mountain View, CA', + 1650940 => 'Mountain View, CA', + 1650941 => 'Los Altos, CA', + 1650947 => 'Los Altos, CA', + 1650948 => 'Los Altos, CA', + 1650949 => 'Los Altos, CA', + 1650960 => 'Mountain View, CA', + 1650961 => 'Mountain View, CA', + 1650962 => 'Mountain View, CA', + 1650964 => 'Mountain View, CA', + 1650965 => 'Mountain View, CA', + 1650967 => 'Mountain View, CA', + 1650968 => 'Mountain View, CA', + 1650969 => 'Mountain View, CA', + 1650991 => 'Daly City, CA', + 1650992 => 'Daly City, CA', + 1650994 => 'Daly City, CA', + 1651 => 'Minnesota', + 1651207 => 'Saint Paul, MN', + 1651209 => 'Saint Paul, MN', + 1651220 => 'Saint Paul, MN', + 1651221 => 'Saint Paul, MN', + 1651222 => 'Saint Paul, MN', + 1651224 => 'Saint Paul, MN', + 1651225 => 'Saint Paul, MN', + 1651227 => 'Saint Paul, MN', + 1651228 => 'Saint Paul, MN', + 1651254 => 'Saint Paul, MN', + 1651266 => 'Saint Paul, MN', + 1651267 => 'Red Wing, MN', + 1651275 => 'Stillwater, MN', + 1651288 => 'Saint Paul, MN', + 1651290 => 'Saint Paul, MN', + 1651291 => 'Saint Paul, MN', + 1651292 => 'Saint Paul, MN', + 1651293 => 'Saint Paul, MN', + 1651296 => 'Saint Paul, MN', + 1651297 => 'Saint Paul, MN', + 1651298 => 'Saint Paul, MN', + 1651312 => 'Saint Paul, MN', + 1651322 => 'Rosemount, MN', + 1651326 => 'Saint Paul, MN', + 1651330 => 'Saint Paul, MN', + 1651340 => 'Saint Paul, MN', + 1651342 => 'Stillwater, MN', + 1651345 => 'Lake City, MN', + 1651351 => 'Stillwater, MN', + 1651385 => 'Red Wing, MN', + 1651388 => 'Red Wing, MN', + 1651406 => 'Eagan, MN', + 1651423 => 'Rosemount, MN', + 1651430 => 'Stillwater, MN', + 1651437 => 'Hastings, MN', + 1651438 => 'Hastings, MN', + 1651439 => 'Stillwater, MN', + 1651452 => 'Eagan, MN', + 1651454 => 'Eagan, MN', + 1651458 => 'Cottage Grove, MN', + 1651459 => 'Cottage Grove, MN', + 1651460 => 'Farmington, MN', + 1651462 => 'Wyoming, MN', + 1651463 => 'Farmington, MN', + 1651464 => 'Forest Lake, MN', + 1651480 => 'Hastings, MN', + 1651487 => 'Saint Paul, MN', + 1651488 => 'Saint Paul, MN', + 1651489 => 'Saint Paul, MN', + 1651493 => 'Saint Paul, MN', + 1651528 => 'Saint Paul, MN', + 1651565 => 'Wabasha, MN', + 1651602 => 'Saint Paul, MN', + 1651603 => 'Saint Paul, MN', + 1651641 => 'Saint Paul, MN', + 1651642 => 'Saint Paul, MN', + 1651644 => 'Saint Paul, MN', + 1651645 => 'Saint Paul, MN', + 1651646 => 'Saint Paul, MN', + 1651647 => 'Saint Paul, MN', + 1651674 => 'North Branch, MN', + 1651683 => 'Eagan, MN', + 1651686 => 'Eagan, MN', + 1651690 => 'Saint Paul, MN', + 1651696 => 'Saint Paul, MN', + 1651698 => 'Saint Paul, MN', + 1651699 => 'Saint Paul, MN', + 1651756 => 'Saint Paul, MN', + 1651771 => 'Saint Paul, MN', + 1651772 => 'Saint Paul, MN', + 1651774 => 'Saint Paul, MN', + 1651776 => 'Saint Paul, MN', + 1651789 => 'Saint Paul, MN', + 1651793 => 'Saint Paul, MN', + 1651917 => 'Saint Paul, MN', + 1651923 => 'Goodhue, MN', + 1651999 => 'Saint Paul, MN', + 1657 => 'California', + 1660 => 'Missouri', + 1660248 => 'Fayette, MO', + 1660258 => 'Brookfield, MO', + 1660259 => 'Lexington, MO', + 1660263 => 'Moberly, MO', + 1660265 => 'Milan, MO', + 1660269 => 'Moberly, MO', + 1660277 => 'Huntsville, MO', + 1660327 => 'Paris, MO', + 1660335 => 'Sweet Springs, MO', + 1660338 => 'Glasgow, MO', + 1660359 => 'Trenton, MO', + 1660376 => 'Marceline, MO', + 1660385 => 'Macon, MO', + 1660388 => 'Salisbury, MO', + 1660397 => 'Edina, MO', + 1660425 => 'Bethany, MO', + 1660429 => 'Warrensburg, MO', + 1660433 => 'Tipton, MO', + 1660438 => 'Warsaw, MO', + 1660442 => 'Mound City, MO', + 1660446 => 'Oregon, MO', + 1660463 => 'Concordia, MO', + 1660465 => 'Memphis, MO', + 1660542 => 'Carrollton, MO', + 1660547 => 'Lincoln, MO', + 1660562 => 'Maryville, MO', + 1660563 => 'Knob Noster, MO', + 1660582 => 'Maryville, MO', + 1660584 => 'Higginsville, MO', + 1660626 => 'Kirksville, MO', + 1660627 => 'Kirksville, MO', + 1660646 => 'Chillicothe, MO', + 1660647 => 'Windsor, MO', + 1660663 => 'Gallatin, MO', + 1660665 => 'Kirksville, MO', + 1660668 => 'Cole Camp, MO', + 1660679 => 'Butler, MO', + 1660726 => 'Albany, MO', + 1660727 => 'Kahoka, MO', + 1660736 => 'Tarkio, MO', + 1660744 => 'Rock Port, MO', + 1660747 => 'Warrensburg, MO', + 1660748 => 'Princeton, MO', + 1660783 => 'Stanberry, MO', + 1660785 => 'Kirksville, MO', + 1660826 => 'Sedalia, MO', + 1660827 => 'Sedalia, MO', + 1660829 => 'Sedalia, MO', + 1660831 => 'Marshall, MO', + 1660882 => 'Boonville, MO', + 1660885 => 'Clinton, MO', + 1660886 => 'Marshall, MO', + 1660947 => 'Unionville, MO', + 1661 => 'California', + 1661213 => 'Bakersfield, CA', + 1661245 => 'Frazier Park, CA', + 1661248 => 'Lebec, CA', + 1661252 => 'Canyon Country, CA', + 1661256 => 'Rosamond, CA', + 1661263 => 'Santa Clarita, CA', + 1661264 => 'Palmdale, CA', + 1661265 => 'Palmdale, CA', + 1661266 => 'Palmdale, CA', + 1661267 => 'Palmdale, CA', + 1661268 => 'Santa Clarita, CA', + 1661269 => 'Acton, CA', + 1661272 => 'Palmdale, CA', + 1661273 => 'Palmdale, CA', + 1661274 => 'Palmdale, CA', + 1661285 => 'Palmdale, CA', + 1661294 => 'Valencia, CA', + 1661295 => 'Valencia, CA', + 1661296 => 'Santa Clarita, CA', + 1661297 => 'Santa Clarita, CA', + 1661298 => 'Canyon Country, CA', + 1661321 => 'Bakersfield, CA', + 1661322 => 'Bakersfield, CA', + 1661323 => 'Bakersfield, CA', + 1661324 => 'Bakersfield, CA', + 1661325 => 'Bakersfield, CA', + 1661326 => 'Bakersfield, CA', + 1661327 => 'Bakersfield, CA', + 1661328 => 'Bakersfield, CA', + 1661334 => 'Bakersfield, CA', + 1661363 => 'Bakersfield, CA', + 1661366 => 'Bakersfield, CA', + 1661377 => 'Bakersfield, CA', + 1661387 => 'Bakersfield, CA', + 1661391 => 'Bakersfield, CA', + 1661392 => 'Bakersfield, CA', + 1661393 => 'Bakersfield, CA', + 1661395 => 'Bakersfield, CA', + 1661396 => 'Bakersfield, CA', + 1661397 => 'Bakersfield, CA', + 1661398 => 'Bakersfield, CA', + 1661399 => 'Bakersfield, CA', + 1661424 => 'Canyon Country, CA', + 1661513 => 'Santa Clarita, CA', + 1661533 => 'Palmdale, CA', + 1661538 => 'Palmdale, CA', + 1661575 => 'Palmdale, CA', + 1661587 => 'Bakersfield, CA', + 1661588 => 'Bakersfield, CA', + 1661589 => 'Bakersfield, CA', + 1661631 => 'Bakersfield, CA', + 1661633 => 'Bakersfield, CA', + 1661634 => 'Bakersfield, CA', + 1661663 => 'Bakersfield, CA', + 1661664 => 'Bakersfield, CA', + 1661665 => 'Bakersfield, CA', + 1661702 => 'Valencia, CA', + 1661718 => 'Lancaster, CA', + 1661721 => 'Delano, CA', + 1661722 => 'Lancaster, CA', + 1661723 => 'Lancaster, CA', + 1661725 => 'Delano, CA', + 1661726 => 'Lancaster, CA', + 1661729 => 'Lancaster, CA', + 1661746 => 'Shafter, CA', + 1661758 => 'Wasco, CA', + 1661763 => 'Taft, CA', + 1661764 => 'Buttonwillow, CA', + 1661765 => 'Taft, CA', + 1661775 => 'Valencia, CA', + 1661792 => 'McFarland, CA', + 1661822 => 'Tehachapi, CA', + 1661823 => 'Tehachapi, CA', + 1661824 => 'Mojave, CA', + 1661827 => 'Bakersfield, CA', + 1661829 => 'Bakersfield, CA', + 1661831 => 'Bakersfield, CA', + 1661832 => 'Bakersfield, CA', + 1661833 => 'Bakersfield, CA', + 1661834 => 'Bakersfield, CA', + 1661835 => 'Bakersfield, CA', + 1661836 => 'Bakersfield, CA', + 1661837 => 'Bakersfield, CA', + 1661845 => 'Lamont, CA', + 1661854 => 'Arvin, CA', + 1661858 => 'Bakersfield, CA', + 1661859 => 'Bakersfield, CA', + 1661861 => 'Bakersfield, CA', + 1661864 => 'Bakersfield, CA', + 1661868 => 'Bakersfield, CA', + 1661869 => 'Bakersfield, CA', + 1661871 => 'Bakersfield, CA', + 1661872 => 'Bakersfield, CA', + 1661873 => 'Bakersfield, CA', + 1661940 => 'Lancaster, CA', + 1661942 => 'Lancaster, CA', + 1661943 => 'Lancaster, CA', + 1661944 => 'Littlerock, CA', + 1661945 => 'Lancaster, CA', + 1661946 => 'Lancaster, CA', + 1661947 => 'Palmdale, CA', + 1661948 => 'Lancaster, CA', + 1661949 => 'Lancaster, CA', + 1661951 => 'Lancaster, CA', + 1662 => 'Mississippi', + 1662205 => 'Tupelo, MS', + 1662223 => 'Walnut, MS', + 1662224 => 'Ashland, MS', + 1662226 => 'Grenada, MS', + 1662227 => 'Grenada, MS', + 1662232 => 'Oxford, MS', + 1662234 => 'Oxford, MS', + 1662236 => 'Oxford, MS', + 1662237 => 'Carrollton, MS', + 1662241 => 'Columbus, MS', + 1662244 => 'Columbus, MS', + 1662247 => 'Belzoni, MS', + 1662252 => 'Holly Springs, MS', + 1662253 => 'Southaven, MS', + 1662254 => 'Itta Bena, MS', + 1662256 => 'Amory, MS', + 1662257 => 'Amory, MS', + 1662258 => 'Eupora, MS', + 1662269 => 'Tupelo, MS', + 1662280 => 'Southaven, MS', + 1662281 => 'Oxford, MS', + 1662283 => 'Winona, MS', + 1662285 => 'Ackerman, MS', + 1662286 => 'Corinth, MS', + 1662287 => 'Corinth, MS', + 1662289 => 'Kosciusko, MS', + 1662320 => 'Starkville, MS', + 1662323 => 'Starkville, MS', + 1662324 => 'Starkville, MS', + 1662325 => 'Miss State, MS', + 1662326 => 'Marks, MS', + 1662327 => 'Columbus, MS', + 1662328 => 'Columbus, MS', + 1662329 => 'Columbus, MS', + 1662332 => 'Greenville, MS', + 1662334 => 'Greenville, MS', + 1662335 => 'Greenville, MS', + 1662342 => 'Southaven, MS', + 1662349 => 'Southaven, MS', + 1662363 => 'Tunica, MS', + 1662365 => 'Baldwyn, MS', + 1662369 => 'Aberdeen, MS', + 1662377 => 'Tupelo, MS', + 1662378 => 'Greenville, MS', + 1662393 => 'Southaven, MS', + 1662423 => 'Iuka, MS', + 1662429 => 'Hernando, MS', + 1662434 => 'Columbus, MS', + 1662447 => 'Okolona, MS', + 1662449 => 'Hernando, MS', + 1662453 => 'Greenwood, MS', + 1662454 => 'Belmont, MS', + 1662455 => 'Greenwood, MS', + 1662456 => 'Houston, MS', + 1662473 => 'Water Valley, MS', + 1662487 => 'Sardis, MS', + 1662488 => 'Pontotoc, MS', + 1662489 => 'Pontotoc, MS', + 1662494 => 'West Point, MS', + 1662513 => 'Oxford, MS', + 1662534 => 'New Albany, MS', + 1662536 => 'Southaven, MS', + 1662538 => 'New Albany, MS', + 1662562 => 'Senatobia, MS', + 1662563 => 'Batesville, MS', + 1662566 => 'Verona, MS', + 1662578 => 'Batesville, MS', + 1662620 => 'Tupelo, MS', + 1662622 => 'Coldwater, MS', + 1662624 => 'Clarksdale, MS', + 1662627 => 'Clarksdale, MS', + 1662628 => 'Calhoun City, MS', + 1662647 => 'Charleston, MS', + 1662653 => 'Durant, MS', + 1662680 => 'Tupelo, MS', + 1662686 => 'Leland, MS', + 1662720 => 'Booneville, MS', + 1662726 => 'Macon, MS', + 1662728 => 'Booneville, MS', + 1662745 => 'Drew, MS', + 1662746 => 'Yazoo City, MS', + 1662756 => 'Ruleville, MS', + 1662759 => 'Rosedale, MS', + 1662767 => 'Shannon, MS', + 1662773 => 'Louisville, MS', + 1662781 => 'Walls, MS', + 1662827 => 'Hollandale, MS', + 1662834 => 'Lexington, MS', + 1662837 => 'Ripley, MS', + 1662838 => 'Byhalia, MS', + 1662840 => 'Tupelo, MS', + 1662841 => 'Tupelo, MS', + 1662842 => 'Tupelo, MS', + 1662843 => 'Cleveland, MS', + 1662844 => 'Tupelo, MS', + 1662846 => 'Cleveland, MS', + 1662862 => 'Fulton, MS', + 1662869 => 'Saltillo, MS', + 1662873 => 'Rolling Fork, MS', + 1662887 => 'Indianola, MS', + 1662890 => 'Olive Branch, MS', + 1662893 => 'Olive Branch, MS', + 1662895 => 'Olive Branch, MS', + 1662963 => 'Nettleton, MS', + 1662983 => 'Bruce, MS', + 1667 => 'Maryland', + 1669 => 'California', + 1671646 => 'Tamuning', + 1678 => 'Georgia', + 1678208 => 'Cumming, GA', + 1678225 => 'Lawrenceville, GA', + 1678284 => 'Stockbridge, GA', + 1678289 => 'Stockbridge, GA', + 1678290 => 'Marietta, GA', + 1678297 => 'Alpharetta, GA', + 1678312 => 'Lawrenceville, GA', + 1678319 => 'Alpharetta, GA', + 1678342 => 'Covington, GA', + 1678344 => 'Snellville, GA', + 1678352 => 'Roswell, GA', + 1678363 => 'Dallas, GA', + 1678364 => 'Peachtree City, GA', + 1678366 => 'Alpharetta, GA', + 1678376 => 'Lawrenceville, GA', + 1678377 => 'Lawrenceville, GA', + 1678393 => 'Alpharetta, GA', + 1678407 => 'Lawrenceville, GA', + 1678413 => 'Conyers, GA', + 1678417 => 'Duluth, GA', + 1678421 => 'Norcross, GA', + 1678422 => 'Morrow, GA', + 1678423 => 'Newnan, GA', + 1678425 => 'Winder, GA', + 1678432 => 'McDonough, GA', + 1678442 => 'Lawrenceville, GA', + 1678445 => 'Woodstock, GA', + 1678450 => 'Gainesville, GA', + 1678455 => 'Cumming, GA', + 1678456 => 'Cumming, GA', + 1678461 => 'Roswell, GA', + 1678473 => 'Duluth, GA', + 1678474 => 'Duluth, GA', + 1678476 => 'Stone Mountain, GA', + 1678479 => 'Jonesboro, GA', + 1678493 => 'Canton, GA', + 1678494 => 'Woodstock, GA', + 1678513 => 'Cumming, GA', + 1678526 => 'Lithonia, GA', + 1678560 => 'Marietta, GA', + 1678565 => 'Stockbridge, GA', + 1678566 => 'Alpharetta, GA', + 1678574 => 'Acworth, GA', + 1678581 => 'Marietta, GA', + 1678583 => 'McDonough, GA', + 1678584 => 'Duluth, GA', + 1678624 => 'Alpharetta, GA', + 1678625 => 'Covington, GA', + 1678688 => 'Griffin, GA', + 1678705 => 'Atlanta, GA', + 1678712 => 'Covington, GA', + 1678715 => 'Douglasville, GA', + 1678721 => 'Cartersville, GA', + 1678732 => 'Atlanta, GA', + 1678762 => 'Alpharetta, GA', + 1678795 => 'Roswell, GA', + 1678807 => 'Cumming, GA', + 1678817 => 'Fayetteville, GA', + 1678838 => 'Douglasville, GA', + 1678840 => 'Villa Rica, GA', + 1678847 => 'Lawrenceville, GA', + 1678867 => 'Alpharetta, GA', + 1678880 => 'Canton, GA', + 1678904 => 'Atlanta, GA', + 1678947 => 'Cumming, GA', + 1678957 => 'Duluth, GA', + 1678963 => 'Winder, GA', + 1678965 => 'Cumming, GA', + 1678971 => 'Gainesville, GA', + 1678973 => 'Atlanta, GA', + 1678974 => 'Atlanta, GA', + 1678985 => 'Lawrenceville, GA', + 1682 => 'Texas', + 1682518 => 'Mansfield, TX', + 1682622 => 'Mansfield, TX', + 1682647 => 'Fort Worth, TX', + 1682885 => 'Fort Worth, TX', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1601.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1601.php deleted file mode 100644 index 459a762dd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1601.php +++ /dev/null @@ -1,156 +0,0 @@ - 'Mississippi', - 1601200 => 'Jackson, MS', - 1601225 => 'Gloster, MS', - 1601249 => 'McComb, MS', - 1601250 => 'McComb, MS', - 1601261 => 'Hattiesburg, MS', - 1601264 => 'Hattiesburg, MS', - 1601267 => 'Carthage, MS', - 1601268 => 'Hattiesburg, MS', - 1601271 => 'Hattiesburg, MS', - 1601276 => 'Summit, MS', - 1601288 => 'Hattiesburg, MS', - 1601296 => 'Hattiesburg, MS', - 1601304 => 'Natchez, MS', - 1601321 => 'Jackson, MS', - 1601336 => 'Hattiesburg, MS', - 1601346 => 'Jackson, MS', - 1601352 => 'Jackson, MS', - 1601353 => 'Jackson, MS', - 1601354 => 'Jackson, MS', - 1601355 => 'Jackson, MS', - 1601359 => 'Jackson, MS', - 1601362 => 'Jackson, MS', - 1601364 => 'Jackson, MS', - 1601366 => 'Jackson, MS', - 1601371 => 'Jackson, MS', - 1601372 => 'Jackson, MS', - 1601373 => 'Jackson, MS', - 1601376 => 'Jackson, MS', - 1601384 => 'Meadville, MS', - 1601389 => 'Philadelphia, MS', - 1601394 => 'Leakesville, MS', - 1601425 => 'Laurel, MS', - 1601426 => 'Laurel, MS', - 1601428 => 'Laurel, MS', - 1601437 => 'Port Gibson, MS', - 1601442 => 'Natchez, MS', - 1601445 => 'Natchez, MS', - 1601446 => 'Natchez, MS', - 1601450 => 'Hattiesburg, MS', - 1601469 => 'Forest, MS', - 1601477 => 'Ellisville, MS', - 1601482 => 'Meridian, MS', - 1601483 => 'Meridian, MS', - 1601484 => 'Meridian, MS', - 1601485 => 'Meridian, MS', - 1601487 => 'Jackson, MS', - 1601502 => 'Jackson, MS', - 1601528 => 'Wiggins, MS', - 1601544 => 'Hattiesburg, MS', - 1601545 => 'Hattiesburg, MS', - 1601553 => 'Meridian, MS', - 1601579 => 'Hattiesburg, MS', - 1601582 => 'Hattiesburg, MS', - 1601583 => 'Hattiesburg, MS', - 1601584 => 'Hattiesburg, MS', - 1601587 => 'Monticello, MS', - 1601591 => 'Brandon, MS', - 1601602 => 'Hattiesburg, MS', - 1601605 => 'Ridgeland, MS', - 1601631 => 'Vicksburg, MS', - 1601634 => 'Vicksburg, MS', - 1601635 => 'Decatur, MS', - 1601636 => 'Vicksburg, MS', - 1601638 => 'Vicksburg, MS', - 1601645 => 'Centreville, MS', - 1601649 => 'Laurel, MS', - 1601656 => 'Philadelphia, MS', - 1601657 => 'Liberty, MS', - 1601679 => 'Meridian, MS', - 1601683 => 'Newton, MS', - 1601684 => 'McComb, MS', - 1601693 => 'Meridian, MS', - 1601703 => 'Meridian, MS', - 1601713 => 'Jackson, MS', - 1601722 => 'Seminary, MS', - 1601729 => 'Soso, MS', - 1601731 => 'Columbia, MS', - 1601732 => 'Morton, MS', - 1601735 => 'Waynesboro, MS', - 1601736 => 'Columbia, MS', - 1601743 => 'De Kalb, MS', - 1601749 => 'Picayune, MS', - 1601758 => 'Sumrall, MS', - 1601764 => 'Bay Springs, MS', - 1601765 => 'Collins, MS', - 1601766 => 'Lucedale, MS', - 1601774 => 'Union, MS', - 1601776 => 'Quitman, MS', - 1601782 => 'Raleigh, MS', - 1601783 => 'Magnolia, MS', - 1601785 => 'Taylorsville, MS', - 1601786 => 'Fayette, MS', - 1601787 => 'Heidelberg, MS', - 1601788 => 'Richton, MS', - 1601792 => 'Prentiss, MS', - 1601794 => 'Purvis, MS', - 1601795 => 'Poplarville, MS', - 1601796 => 'Lumberton, MS', - 1601798 => 'Picayune, MS', - 1601799 => 'Picayune, MS', - 1601815 => 'Jackson, MS', - 1601823 => 'Brookhaven, MS', - 1601824 => 'Brandon, MS', - 1601825 => 'Brandon, MS', - 1601829 => 'Brandon, MS', - 1601833 => 'Brookhaven, MS', - 1601835 => 'Brookhaven, MS', - 1601845 => 'Florence, MS', - 1601847 => 'Mendenhall, MS', - 1601849 => 'Magee, MS', - 1601853 => 'Madison, MS', - 1601854 => 'Pelahatchie, MS', - 1601855 => 'Canton, MS', - 1601856 => 'Madison, MS', - 1601857 => 'Raymond, MS', - 1601859 => 'Canton, MS', - 1601876 => 'Tylertown, MS', - 1601878 => 'Terry, MS', - 1601879 => 'Flora, MS', - 1601883 => 'Vicksburg, MS', - 1601885 => 'Utica, MS', - 1601888 => 'Woodville, MS', - 1601892 => 'Crystal Springs, MS', - 1601894 => 'Hazlehurst, MS', - 1601914 => 'Jackson, MS', - 1601922 => 'Jackson, MS', - 1601923 => 'Jackson, MS', - 1601924 => 'Clinton, MS', - 1601925 => 'Clinton, MS', - 1601928 => 'Wiggins, MS', - 1601944 => 'Jackson, MS', - 1601947 => 'Lucedale, MS', - 1601948 => 'Jackson, MS', - 1601949 => 'Jackson, MS', - 1601956 => 'Jackson, MS', - 1601960 => 'Jackson, MS', - 1601961 => 'Jackson, MS', - 1601964 => 'New Augusta, MS', - 1601965 => 'Jackson, MS', - 1601968 => 'Jackson, MS', - 1601969 => 'Jackson, MS', - 1601981 => 'Jackson, MS', - 1601982 => 'Jackson, MS', - 1601984 => 'Jackson, MS', - 1601985 => 'Ridgeland, MS', - 1601987 => 'Jackson, MS', - 1601991 => 'Ridgeland, MS', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1602.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1602.php deleted file mode 100644 index 53cfa154c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1602.php +++ /dev/null @@ -1,175 +0,0 @@ - 'Arizona', - 1602200 => 'Phoenix, AZ', - 1602212 => 'Phoenix, AZ', - 1602216 => 'Phoenix, AZ', - 1602218 => 'Phoenix, AZ', - 1602222 => 'Phoenix, AZ', - 1602224 => 'Phoenix, AZ', - 1602225 => 'Phoenix, AZ', - 1602229 => 'Phoenix, AZ', - 1602230 => 'Phoenix, AZ', - 1602232 => 'Phoenix, AZ', - 1602233 => 'Phoenix, AZ', - 1602234 => 'Phoenix, AZ', - 1602235 => 'Phoenix, AZ', - 1602239 => 'Phoenix, AZ', - 1602240 => 'Phoenix, AZ', - 1602241 => 'Phoenix, AZ', - 1602242 => 'Phoenix, AZ', - 1602243 => 'Phoenix, AZ', - 1602244 => 'Phoenix, AZ', - 1602246 => 'Phoenix, AZ', - 1602248 => 'Phoenix, AZ', - 1602249 => 'Phoenix, AZ', - 1602251 => 'Phoenix, AZ', - 1602252 => 'Phoenix, AZ', - 1602253 => 'Phoenix, AZ', - 1602254 => 'Phoenix, AZ', - 1602255 => 'Phoenix, AZ', - 1602256 => 'Phoenix, AZ', - 1602257 => 'Phoenix, AZ', - 1602258 => 'Phoenix, AZ', - 1602262 => 'Phoenix, AZ', - 1602263 => 'Phoenix, AZ', - 1602264 => 'Phoenix, AZ', - 1602265 => 'Phoenix, AZ', - 1602266 => 'Phoenix, AZ', - 1602267 => 'Phoenix, AZ', - 1602268 => 'Phoenix, AZ', - 1602269 => 'Phoenix, AZ', - 1602271 => 'Phoenix, AZ', - 1602272 => 'Phoenix, AZ', - 1602273 => 'Phoenix, AZ', - 1602274 => 'Phoenix, AZ', - 1602275 => 'Phoenix, AZ', - 1602276 => 'Phoenix, AZ', - 1602277 => 'Phoenix, AZ', - 1602278 => 'Phoenix, AZ', - 1602279 => 'Phoenix, AZ', - 1602281 => 'Phoenix, AZ', - 1602283 => 'Phoenix, AZ', - 1602285 => 'Phoenix, AZ', - 1602286 => 'Phoenix, AZ', - 1602288 => 'Phoenix, AZ', - 1602296 => 'Phoenix, AZ', - 1602304 => 'Phoenix, AZ', - 1602305 => 'Phoenix, AZ', - 1602307 => 'Phoenix, AZ', - 1602314 => 'Phoenix, AZ', - 1602323 => 'Phoenix, AZ', - 1602331 => 'Phoenix, AZ', - 1602336 => 'Phoenix, AZ', - 1602340 => 'Phoenix, AZ', - 1602344 => 'Phoenix, AZ', - 1602347 => 'Phoenix, AZ', - 1602353 => 'Phoenix, AZ', - 1602354 => 'Phoenix, AZ', - 1602358 => 'Phoenix, AZ', - 1602368 => 'Phoenix, AZ', - 1602371 => 'Phoenix, AZ', - 1602372 => 'Phoenix, AZ', - 1602374 => 'Phoenix, AZ', - 1602375 => 'Phoenix, AZ', - 1602381 => 'Phoenix, AZ', - 1602382 => 'Phoenix, AZ', - 1602388 => 'Phoenix, AZ', - 1602393 => 'Phoenix, AZ', - 1602395 => 'Phoenix, AZ', - 1602404 => 'Phoenix, AZ', - 1602406 => 'Phoenix, AZ', - 1602424 => 'Phoenix, AZ', - 1602426 => 'Phoenix, AZ', - 1602433 => 'Phoenix, AZ', - 1602437 => 'Phoenix, AZ', - 1602438 => 'Phoenix, AZ', - 1602439 => 'Glendale, AZ', - 1602441 => 'Phoenix, AZ', - 1602442 => 'Phoenix, AZ', - 1602443 => 'Phoenix, AZ', - 1602445 => 'Phoenix, AZ', - 1602449 => 'Phoenix, AZ', - 1602454 => 'Phoenix, AZ', - 1602455 => 'Phoenix, AZ', - 1602456 => 'Phoenix, AZ', - 1602462 => 'Phoenix, AZ', - 1602466 => 'Phoenix, AZ', - 1602468 => 'Phoenix, AZ', - 1602470 => 'Phoenix, AZ', - 1602482 => 'Phoenix, AZ', - 1602484 => 'Phoenix, AZ', - 1602485 => 'Phoenix, AZ', - 1602493 => 'Phoenix, AZ', - 1602494 => 'Phoenix, AZ', - 1602495 => 'Phoenix, AZ', - 1602504 => 'Phoenix, AZ', - 1602506 => 'Phoenix, AZ', - 1602508 => 'Phoenix, AZ', - 1602522 => 'Phoenix, AZ', - 1602530 => 'Phoenix, AZ', - 1602535 => 'Phoenix, AZ', - 1602542 => 'Phoenix, AZ', - 1602546 => 'Phoenix, AZ', - 1602548 => 'Phoenix, AZ', - 1602553 => 'Phoenix, AZ', - 1602569 => 'Phoenix, AZ', - 1602588 => 'Glendale, AZ', - 1602589 => 'Phoenix, AZ', - 1602595 => 'Phoenix, AZ', - 1602604 => 'Phoenix, AZ', - 1602606 => 'Phoenix, AZ', - 1602626 => 'Phoenix, AZ', - 1602667 => 'Phoenix, AZ', - 1602674 => 'Phoenix, AZ', - 1602678 => 'Phoenix, AZ', - 1602682 => 'Phoenix, AZ', - 1602687 => 'Phoenix, AZ', - 1602712 => 'Phoenix, AZ', - 1602714 => 'Phoenix, AZ', - 1602749 => 'Phoenix, AZ', - 1602765 => 'Phoenix, AZ', - 1602778 => 'Phoenix, AZ', - 1602787 => 'Phoenix, AZ', - 1602788 => 'Phoenix, AZ', - 1602789 => 'Phoenix, AZ', - 1602795 => 'Phoenix, AZ', - 1602808 => 'Phoenix, AZ', - 1602839 => 'Phoenix, AZ', - 1602840 => 'Phoenix, AZ', - 1602841 => 'Phoenix, AZ', - 1602861 => 'Phoenix, AZ', - 1602863 => 'Phoenix, AZ', - 1602864 => 'Phoenix, AZ', - 1602865 => 'Glendale, AZ', - 1602866 => 'Phoenix, AZ', - 1602867 => 'Phoenix, AZ', - 1602870 => 'Phoenix, AZ', - 1602889 => 'Phoenix, AZ', - 1602896 => 'Phoenix, AZ', - 1602916 => 'Phoenix, AZ', - 1602923 => 'Phoenix, AZ', - 1602926 => 'Phoenix, AZ', - 1602942 => 'Phoenix, AZ', - 1602943 => 'Phoenix, AZ', - 1602944 => 'Phoenix, AZ', - 1602952 => 'Phoenix, AZ', - 1602953 => 'Phoenix, AZ', - 1602954 => 'Phoenix, AZ', - 1602955 => 'Phoenix, AZ', - 1602956 => 'Phoenix, AZ', - 1602957 => 'Phoenix, AZ', - 1602971 => 'Phoenix, AZ', - 1602973 => 'Phoenix, AZ', - 1602978 => 'Glendale, AZ', - 1602992 => 'Phoenix, AZ', - 1602993 => 'Phoenix, AZ', - 1602995 => 'Phoenix, AZ', - 1602996 => 'Phoenix, AZ', - 1602997 => 'Phoenix, AZ', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1603.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1603.php deleted file mode 100644 index 2414c3e9e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1603.php +++ /dev/null @@ -1,195 +0,0 @@ - 'New Hampshire', - 1603204 => 'Nashua, NH', - 1603223 => 'Concord, NH', - 1603224 => 'Concord, NH', - 1603225 => 'Concord, NH', - 1603226 => 'Concord, NH', - 1603227 => 'Concord, NH', - 1603228 => 'Concord, NH', - 1603229 => 'Concord, NH', - 1603232 => 'Manchester, NH', - 1603237 => 'Colebrook, NH', - 1603239 => 'Winchester, NH', - 1603253 => 'Moultonborough, NH', - 1603262 => 'Merrimack, NH', - 1603267 => 'Belmont, NH', - 1603271 => 'Concord, NH', - 1603279 => 'Meredith, NH', - 1603286 => 'Tilton, NH', - 1603293 => 'Gilford, NH', - 1603298 => 'West Lebanon, NH', - 1603319 => 'Portsmouth, NH', - 1603323 => 'Tamworth, NH', - 1603329 => 'Hampstead, NH', - 1603330 => 'Rochester, NH', - 1603332 => 'Rochester, NH', - 1603335 => 'Rochester, NH', - 1603343 => 'Dover, NH', - 1603352 => 'Keene, NH', - 1603354 => 'Keene, NH', - 1603355 => 'Keene, NH', - 1603356 => 'North Conway, NH', - 1603357 => 'Keene, NH', - 1603358 => 'Keene, NH', - 1603362 => 'Atkinson, NH', - 1603366 => 'Laconia, NH', - 1603378 => 'Plaistow, NH', - 1603382 => 'Plaistow, NH', - 1603383 => 'Jackson, NH', - 1603421 => 'Derry, NH', - 1603422 => 'Portsmouth, NH', - 1603424 => 'Merrimack, NH', - 1603427 => 'Portsmouth, NH', - 1603428 => 'Henniker, NH', - 1603429 => 'Merrimack, NH', - 1603430 => 'Portsmouth, NH', - 1603431 => 'Portsmouth, NH', - 1603433 => 'Portsmouth, NH', - 1603435 => 'Pittsfield, NH', - 1603436 => 'Portsmouth, NH', - 1603444 => 'Littleton, NH', - 1603447 => 'Conway, NH', - 1603448 => 'Lebanon, NH', - 1603456 => 'Warner, NH', - 1603458 => 'Salem, NH', - 1603463 => 'Deerfield, NH', - 1603464 => 'Hillsboro, NH', - 1603465 => 'Hollis, NH', - 1603466 => 'Gorham, NH', - 1603471 => 'Bedford, NH', - 1603472 => 'Bedford, NH', - 1603474 => 'Seabrook, NH', - 1603476 => 'Moultonborough, NH', - 1603483 => 'Candia, NH', - 1603487 => 'New Boston, NH', - 1603497 => 'Goffstown, NH', - 1603516 => 'Dover, NH', - 1603518 => 'Manchester, NH', - 1603522 => 'Sanbornville, NH', - 1603523 => 'Canaan, NH', - 1603524 => 'Laconia, NH', - 1603526 => 'New London, NH', - 1603527 => 'Laconia, NH', - 1603528 => 'Laconia, NH', - 1603529 => 'Weare, NH', - 1603532 => 'Jaffrey, NH', - 1603536 => 'Plymouth, NH', - 1603542 => 'Claremont, NH', - 1603543 => 'Claremont, NH', - 1603547 => 'Greenfield, NH', - 1603569 => 'Wolfeboro, NH', - 1603577 => 'Nashua, NH', - 1603578 => 'Nashua, NH', - 1603580 => 'Exeter, NH', - 1603585 => 'Fitzwilliam, NH', - 1603588 => 'Antrim, NH', - 1603589 => 'Nashua, NH', - 1603594 => 'Nashua, NH', - 1603595 => 'Nashua, NH', - 1603598 => 'Nashua, NH', - 1603601 => 'Hampton, NH', - 1603606 => 'Manchester, NH', - 1603610 => 'Portsmouth, NH', - 1603621 => 'Manchester, NH', - 1603622 => 'Manchester, NH', - 1603623 => 'Manchester, NH', - 1603624 => 'Manchester, NH', - 1603625 => 'Manchester, NH', - 1603626 => 'Manchester, NH', - 1603627 => 'Manchester, NH', - 1603629 => 'Manchester, NH', - 1603632 => 'Enfield, NH', - 1603635 => 'Pelham, NH', - 1603636 => 'Groveton, NH', - 1603641 => 'Manchester, NH', - 1603642 => 'Kingston, NH', - 1603643 => 'Hanover, NH', - 1603644 => 'Manchester, NH', - 1603645 => 'Manchester, NH', - 1603646 => 'Hanover, NH', - 1603647 => 'Manchester, NH', - 1603650 => 'Lebanon, NH', - 1603653 => 'Lebanon, NH', - 1603654 => 'Wilton, NH', - 1603659 => 'Newmarket, NH', - 1603663 => 'Manchester, NH', - 1603664 => 'Barrington, NH', - 1603666 => 'Manchester, NH', - 1603668 => 'Manchester, NH', - 1603669 => 'Manchester, NH', - 1603673 => 'Milford, NH', - 1603679 => 'Epping, NH', - 1603692 => 'Somersworth, NH', - 1603695 => 'Manchester, NH', - 1603726 => 'Campton, NH', - 1603736 => 'Epsom, NH', - 1603740 => 'Dover, NH', - 1603742 => 'Dover, NH', - 1603743 => 'Dover, NH', - 1603744 => 'Bristol, NH', - 1603745 => 'Lincoln, NH', - 1603747 => 'Woodsville, NH', - 1603749 => 'Dover, NH', - 1603752 => 'Berlin, NH', - 1603755 => 'Farmington, NH', - 1603756 => 'Walpole, NH', - 1603763 => 'Sunapee, NH', - 1603766 => 'Portsmouth, NH', - 1603772 => 'Exeter, NH', - 1603773 => 'Exeter, NH', - 1603774 => 'Dunbarton, NH', - 1603775 => 'Exeter, NH', - 1603778 => 'Exeter, NH', - 1603786 => 'Rumney, NH', - 1603787 => 'North Haverhill, NH', - 1603788 => 'Lancaster, NH', - 1603798 => 'Chichester, NH', - 1603821 => 'Nashua, NH', - 1603823 => 'Franconia, NH', - 1603826 => 'Charlestown, NH', - 1603835 => 'Alstead, NH', - 1603836 => 'Manchester, NH', - 1603837 => 'Whitefield, NH', - 1603838 => 'Lisbon, NH', - 1603856 => 'Concord, NH', - 1603862 => 'Durham, NH', - 1603863 => 'Newport, NH', - 1603868 => 'Durham, NH', - 1603870 => 'Salem, NH', - 1603875 => 'Alton, NH', - 1603876 => 'Marlborough, NH', - 1603878 => 'New Ipswich, NH', - 1603880 => 'Nashua, NH', - 1603881 => 'Nashua, NH', - 1603882 => 'Nashua, NH', - 1603883 => 'Nashua, NH', - 1603886 => 'Nashua, NH', - 1603887 => 'Chester, NH', - 1603888 => 'Nashua, NH', - 1603889 => 'Nashua, NH', - 1603890 => 'Salem, NH', - 1603891 => 'Nashua, NH', - 1603893 => 'Salem, NH', - 1603894 => 'Salem, NH', - 1603895 => 'Raymond, NH', - 1603898 => 'Salem, NH', - 1603899 => 'Rindge, NH', - 1603924 => 'Peterborough, NH', - 1603926 => 'Hampton, NH', - 1603929 => 'Hampton, NH', - 1603934 => 'Franklin, NH', - 1603935 => 'Manchester, NH', - 1603938 => 'Bradford, NH', - 1603942 => 'Northwood, NH', - 1603943 => 'Nashua, NH', - 1603964 => 'North Hampton, NH', - 1603965 => 'Derry, NH', - 1603968 => 'Ashland, NH', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1604.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1604.php deleted file mode 100644 index 322bee3f2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1604.php +++ /dev/null @@ -1,276 +0,0 @@ - 'British Columbia', - 1604205 => 'Burnaby, BC', - 1604207 => 'Richmond, BC', - 1604214 => 'Richmond, BC', - 1604215 => 'Vancouver, BC', - 1604221 => 'Vancouver, BC', - 1604222 => 'Vancouver, BC', - 1604224 => 'Vancouver, BC', - 1604228 => 'Vancouver, BC', - 1604231 => 'Richmond, BC', - 1604232 => 'Richmond, BC', - 1604233 => 'Richmond, BC', - 1604241 => 'Richmond, BC', - 1604244 => 'Richmond, BC', - 1604247 => 'Richmond, BC', - 1604248 => 'Richmond, BC', - 1604251 => 'Vancouver, BC', - 1604253 => 'Vancouver, BC', - 1604254 => 'Vancouver, BC', - 1604255 => 'Vancouver, BC', - 1604257 => 'Vancouver, BC', - 1604261 => 'Vancouver, BC', - 1604263 => 'Vancouver, BC', - 1604264 => 'Vancouver, BC', - 1604266 => 'Vancouver, BC', - 1604267 => 'Vancouver, BC', - 1604270 => 'Richmond, BC', - 1604271 => 'Richmond, BC', - 1604272 => 'Richmond, BC', - 1604273 => 'Richmond, BC', - 1604274 => 'Richmond, BC', - 1604275 => 'Richmond, BC', - 1604276 => 'Richmond, BC', - 1604277 => 'Richmond, BC', - 1604278 => 'Richmond, BC', - 1604279 => 'Richmond, BC', - 1604284 => 'Richmond, BC', - 1604291 => 'Burnaby, BC', - 1604293 => 'Burnaby, BC', - 1604294 => 'Burnaby, BC', - 1604295 => 'Richmond, BC', - 1604298 => 'Burnaby, BC', - 1604299 => 'Burnaby, BC', - 1604303 => 'Richmond, BC', - 1604304 => 'Richmond, BC', - 1604321 => 'Vancouver, BC', - 1604322 => 'Vancouver, BC', - 1604323 => 'Vancouver, BC', - 1604324 => 'Vancouver, BC', - 1604325 => 'Vancouver, BC', - 1604327 => 'Vancouver, BC', - 1604331 => 'Vancouver, BC', - 1604392 => 'Chilliwack, BC', - 1604408 => 'Vancouver, BC', - 1604415 => 'Burnaby, BC', - 1604420 => 'Burnaby, BC', - 1604421 => 'Burnaby, BC', - 1604430 => 'Burnaby, BC', - 1604431 => 'Burnaby, BC', - 1604432 => 'Burnaby, BC', - 1604433 => 'Burnaby, BC', - 1604434 => 'Burnaby, BC', - 1604435 => 'Burnaby, BC', - 1604436 => 'Burnaby, BC', - 1604437 => 'Burnaby, BC', - 1604438 => 'Burnaby, BC', - 1604439 => 'Burnaby, BC', - 1604444 => 'Burnaby, BC', - 1604448 => 'Richmond, BC', - 1604451 => 'Burnaby, BC', - 1604454 => 'Burnaby, BC', - 1604455 => 'Langley, BC', - 1604461 => 'Port Moody, BC', - 1604462 => 'Maple Ridge, BC', - 1604463 => 'Maple Ridge, BC', - 1604466 => 'Maple Ridge, BC', - 1604467 => 'Maple Ridge, BC', - 1604469 => 'Port Moody, BC', - 1604472 => 'Port Coquitlam, BC', - 1604476 => 'Maple Ridge, BC', - 1604477 => 'Maple Ridge, BC', - 1604483 => 'Powell River, BC', - 1604484 => 'Vancouver, BC', - 1604485 => 'Powell River, BC', - 1604488 => 'Vancouver, BC', - 1604501 => 'Surrey, BC', - 1604502 => 'Surrey, BC', - 1604504 => 'Abbotsford, BC', - 1604507 => 'Surrey, BC', - 1604510 => 'Langley, BC', - 1604513 => 'Langley, BC', - 1604514 => 'Langley, BC', - 1604521 => 'New Westminster, BC', - 1604522 => 'New Westminster, BC', - 1604530 => 'Langley, BC', - 1604531 => 'Surrey, BC', - 1604532 => 'Langley, BC', - 1604533 => 'Langley, BC', - 1604534 => 'Langley, BC', - 1604535 => 'Surrey, BC', - 1604536 => 'Surrey, BC', - 1604538 => 'Surrey, BC', - 1604539 => 'Langley, BC', - 1604541 => 'Surrey, BC', - 1604542 => 'Surrey, BC', - 1604543 => 'Surrey, BC', - 1604544 => 'New Westminster, BC', - 1604556 => 'Abbotsford, BC', - 1604557 => 'Abbotsford, BC', - 1604558 => 'Vancouver, BC', - 1604560 => 'Surrey, BC', - 1604566 => 'Vancouver, BC', - 1604568 => 'Vancouver, BC', - 1604569 => 'Vancouver, BC', - 1604572 => 'Surrey, BC', - 1604574 => 'Surrey, BC', - 1604575 => 'Surrey, BC', - 1604576 => 'Surrey, BC', - 1604580 => 'Surrey, BC', - 1604581 => 'Surrey, BC', - 1604582 => 'Surrey, BC', - 1604583 => 'Surrey, BC', - 1604584 => 'Surrey, BC', - 1604585 => 'Surrey, BC', - 1604588 => 'Surrey, BC', - 1604589 => 'Surrey, BC', - 1604590 => 'Surrey, BC', - 1604591 => 'Surrey, BC', - 1604592 => 'Surrey, BC', - 1604593 => 'Surrey, BC', - 1604594 => 'Surrey, BC', - 1604596 => 'Surrey, BC', - 1604597 => 'Surrey, BC', - 1604598 => 'Surrey, BC', - 1604599 => 'Surrey, BC', - 1604602 => 'Vancouver, BC', - 1604605 => 'Vancouver, BC', - 1604606 => 'Vancouver, BC', - 1604608 => 'Vancouver, BC', - 1604609 => 'Vancouver, BC', - 1604629 => 'Vancouver, BC', - 1604630 => 'Vancouver, BC', - 1604631 => 'Vancouver, BC', - 1604632 => 'Vancouver, BC', - 1604633 => 'Vancouver, BC', - 1604637 => 'Vancouver, BC', - 1604638 => 'Vancouver, BC', - 1604640 => 'Vancouver, BC', - 1604641 => 'Vancouver, BC', - 1604643 => 'Vancouver, BC', - 1604646 => 'Vancouver, BC', - 1604647 => 'Vancouver, BC', - 1604660 => 'Vancouver, BC', - 1604661 => 'Vancouver, BC', - 1604662 => 'Vancouver, BC', - 1604664 => 'Burnaby, BC', - 1604665 => 'Vancouver, BC', - 1604666 => 'Vancouver, BC', - 1604669 => 'Vancouver, BC', - 1604676 => 'Vancouver, BC', - 1604677 => 'Vancouver, BC', - 1604678 => 'Vancouver, BC', - 1604681 => 'Vancouver, BC', - 1604682 => 'Vancouver, BC', - 1604683 => 'Vancouver, BC', - 1604684 => 'Vancouver, BC', - 1604685 => 'Vancouver, BC', - 1604687 => 'Vancouver, BC', - 1604688 => 'Vancouver, BC', - 1604689 => 'Vancouver, BC', - 1604696 => 'Vancouver, BC', - 1604702 => 'Chilliwack, BC', - 1604703 => 'Chilliwack, BC', - 1604708 => 'Vancouver, BC', - 1604709 => 'Vancouver, BC', - 1604713 => 'Vancouver, BC', - 1604714 => 'Vancouver, BC', - 1604718 => 'Vancouver, BC', - 1604730 => 'Vancouver, BC', - 1604731 => 'Vancouver, BC', - 1604732 => 'Vancouver, BC', - 1604733 => 'Vancouver, BC', - 1604734 => 'Vancouver, BC', - 1604736 => 'Vancouver, BC', - 1604737 => 'Vancouver, BC', - 1604738 => 'Vancouver, BC', - 1604739 => 'Vancouver, BC', - 1604740 => 'Sechelt, BC', - 1604742 => 'Vancouver, BC', - 1604746 => 'Abbotsford, BC', - 1604792 => 'Chilliwack, BC', - 1604793 => 'Chilliwack, BC', - 1604794 => 'Chilliwack, BC', - 1604795 => 'Chilliwack, BC', - 1604796 => 'Agassiz, BC', - 1604801 => 'Vancouver, BC', - 1604806 => 'Vancouver, BC', - 1604814 => 'Mission, BC', - 1604815 => 'Squamish, BC', - 1604820 => 'Mission, BC', - 1604821 => 'Richmond, BC', - 1604822 => 'Vancouver, BC', - 1604823 => 'Chilliwack, BC', - 1604824 => 'Chilliwack, BC', - 1604826 => 'Mission, BC', - 1604846 => 'Chilliwack, BC', - 1604847 => 'Chilliwack, BC', - 1604850 => 'Abbotsford, BC', - 1604852 => 'Abbotsford, BC', - 1604853 => 'Abbotsford, BC', - 1604854 => 'Abbotsford, BC', - 1604855 => 'Abbotsford, BC', - 1604858 => 'Chilliwack, BC', - 1604859 => 'Abbotsford, BC', - 1604864 => 'Abbotsford, BC', - 1604869 => 'Hope, BC', - 1604870 => 'Abbotsford, BC', - 1604871 => 'Vancouver, BC', - 1604872 => 'Vancouver, BC', - 1604873 => 'Vancouver, BC', - 1604874 => 'Vancouver, BC', - 1604875 => 'Vancouver, BC', - 1604876 => 'Vancouver, BC', - 1604877 => 'Vancouver, BC', - 1604879 => 'Vancouver, BC', - 1604881 => 'Langley, BC', - 1604882 => 'Langley, BC', - 1604883 => 'Madeira Park, BC', - 1604885 => 'Sechelt, BC', - 1604886 => 'Gibsons, BC', - 1604888 => 'Langley, BC', - 1604891 => 'Vancouver, BC', - 1604892 => 'Squamish, BC', - 1604894 => 'Pemberton, BC', - 1604898 => 'Squamish, BC', - 1604899 => 'Vancouver, BC', - 1604904 => 'North Vancouver, BC', - 1604905 => 'Whistler, BC', - 1604913 => 'West Vancouver, BC', - 1604921 => 'West Vancouver, BC', - 1604922 => 'West Vancouver, BC', - 1604924 => 'North Vancouver, BC', - 1604925 => 'West Vancouver, BC', - 1604926 => 'West Vancouver, BC', - 1604929 => 'North Vancouver, BC', - 1604930 => 'Surrey, BC', - 1604931 => 'Coquitlam, BC', - 1604932 => 'Whistler, BC', - 1604935 => 'Whistler, BC', - 1604936 => 'Coquitlam, BC', - 1604937 => 'Coquitlam, BC', - 1604938 => 'Whistler, BC', - 1604939 => 'Coquitlam, BC', - 1604941 => 'Port Coquitlam, BC', - 1604942 => 'Port Coquitlam, BC', - 1604944 => 'Port Coquitlam, BC', - 1604947 => 'Bowen Island, BC', - 1604951 => 'Surrey, BC', - 1604980 => 'North Vancouver, BC', - 1604982 => 'North Vancouver, BC', - 1604983 => 'North Vancouver, BC', - 1604984 => 'North Vancouver, BC', - 1604985 => 'North Vancouver, BC', - 1604986 => 'North Vancouver, BC', - 1604987 => 'North Vancouver, BC', - 1604988 => 'North Vancouver, BC', - 1604990 => 'North Vancouver, BC', - 1604998 => 'North Vancouver, BC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1605.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1605.php deleted file mode 100644 index e3a057162..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1605.php +++ /dev/null @@ -1,144 +0,0 @@ - 'South Dakota', - 1605217 => 'North Sioux City, SD', - 1605223 => 'Fort Pierre, SD', - 1605224 => 'Pierre, SD', - 1605225 => 'Aberdeen, SD', - 1605226 => 'Aberdeen, SD', - 1605229 => 'Aberdeen, SD', - 1605232 => 'North Sioux City, SD', - 1605234 => 'Chamberlain, SD', - 1605256 => 'Madison, SD', - 1605260 => 'Yankton, SD', - 1605271 => 'Sioux Falls, SD', - 1605274 => 'Sioux Falls, SD', - 1605275 => 'Sioux Falls, SD', - 1605279 => 'Wall, SD', - 1605297 => 'Parker, SD', - 1605322 => 'Sioux Falls, SD', - 1605328 => 'Sioux Falls, SD', - 1605330 => 'Sioux Falls, SD', - 1605331 => 'Sioux Falls, SD', - 1605332 => 'Sioux Falls, SD', - 1605333 => 'Sioux Falls, SD', - 1605334 => 'Sioux Falls, SD', - 1605335 => 'Sioux Falls, SD', - 1605336 => 'Sioux Falls, SD', - 1605337 => 'Platte, SD', - 1605338 => 'Sioux Falls, SD', - 1605339 => 'Sioux Falls, SD', - 1605341 => 'Rapid City, SD', - 1605342 => 'Rapid City, SD', - 1605343 => 'Rapid City, SD', - 1605345 => 'Webster, SD', - 1605347 => 'Sturgis, SD', - 1605348 => 'Rapid City, SD', - 1605352 => 'Huron, SD', - 1605353 => 'Huron, SD', - 1605355 => 'Rapid City, SD', - 1605356 => 'Elk Point, SD', - 1605357 => 'Sioux Falls, SD', - 1605360 => 'Sioux Falls, SD', - 1605361 => 'Sioux Falls, SD', - 1605362 => 'Sioux Falls, SD', - 1605367 => 'Sioux Falls, SD', - 1605368 => 'Tea, SD', - 1605371 => 'Sioux Falls, SD', - 1605373 => 'Sioux Falls, SD', - 1605374 => 'Lemmon, SD', - 1605384 => 'Wagner, SD', - 1605387 => 'Menno, SD', - 1605388 => 'Rapid City, SD', - 1605393 => 'Rapid City, SD', - 1605394 => 'Rapid City, SD', - 1605397 => 'Groton, SD', - 1605399 => 'Rapid City, SD', - 1605425 => 'Salem, SD', - 1605426 => 'Ipswich, SD', - 1605428 => 'Dell Rapids, SD', - 1605432 => 'Milbank, SD', - 1605448 => 'Britton, SD', - 1605472 => 'Redfield, SD', - 1605487 => 'Lake Andes, SD', - 1605498 => 'Tea, SD', - 1605528 => 'Hartford, SD', - 1605532 => 'Clark, SD', - 1605539 => 'Wessington Spgs, SD', - 1605574 => 'Hill City, SD', - 1605578 => 'Deadwood, SD', - 1605582 => 'Brandon, SD', - 1605584 => 'Lead, SD', - 1605589 => 'Tyndall, SD', - 1605594 => 'Garretson, SD', - 1605598 => 'Faulkton, SD', - 1605622 => 'Aberdeen, SD', - 1605624 => 'Vermillion, SD', - 1605626 => 'Aberdeen, SD', - 1605627 => 'Volga, SD', - 1605642 => 'Spearfish, SD', - 1605644 => 'Spearfish, SD', - 1605647 => 'Lennox, SD', - 1605649 => 'Selby, SD', - 1605665 => 'Yankton, SD', - 1605668 => 'Yankton, SD', - 1605669 => 'Murdo, SD', - 1605673 => 'Custer, SD', - 1605685 => 'Martin, SD', - 1605692 => 'Brookings, SD', - 1605693 => 'Brookings, SD', - 1605697 => 'Brookings, SD', - 1605698 => 'Sisseton, SD', - 1605716 => 'Rapid City, SD', - 1605717 => 'Spearfish, SD', - 1605718 => 'Rapid City, SD', - 1605719 => 'Rapid City, SD', - 1605720 => 'Sturgis, SD', - 1605721 => 'Rapid City, SD', - 1605722 => 'Spearfish, SD', - 1605724 => 'Armour, SD', - 1605725 => 'Aberdeen, SD', - 1605734 => 'Chamberlain, SD', - 1605745 => 'Hot Springs, SD', - 1605747 => 'Rosebud, SD', - 1605753 => 'Watertown, SD', - 1605763 => 'Beresford, SD', - 1605765 => 'Gettysburg, SD', - 1605772 => 'Howard, SD', - 1605773 => 'Pierre, SD', - 1605775 => 'Burke, SD', - 1605778 => 'Kimball, SD', - 1605791 => 'Rapid City, SD', - 1605796 => 'Woonsocket, SD', - 1605823 => 'McLaughlin, SD', - 1605835 => 'Gregory, SD', - 1605842 => 'Winner, SD', - 1605845 => 'Mobridge, SD', - 1605852 => 'Highmore, SD', - 1605853 => 'Miller, SD', - 1605854 => 'De Smet, SD', - 1605856 => 'Mission, SD', - 1605859 => 'Philip, SD', - 1605867 => 'Pine Ridge, SD', - 1605874 => 'Clear Lake, SD', - 1605878 => 'Watertown, SD', - 1605882 => 'Watertown, SD', - 1605886 => 'Watertown, SD', - 1605892 => 'Belle Fourche, SD', - 1605923 => 'Box Elder, SD', - 1605925 => 'Freeman, SD', - 1605928 => 'Parkston, SD', - 1605945 => 'Pierre, SD', - 1605964 => 'Eagle Butte, SD', - 1605977 => 'Sioux Falls, SD', - 1605983 => 'Arlington, SD', - 1605987 => 'Canton, SD', - 1605995 => 'Mitchell, SD', - 1605996 => 'Mitchell, SD', - 1605997 => 'Flandreau, SD', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1606.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1606.php deleted file mode 100644 index b39425edf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1606.php +++ /dev/null @@ -1,103 +0,0 @@ - 'Kentucky', - 1606218 => 'Pikeville, KY', - 1606237 => 'South Williamson, KY', - 1606248 => 'Middlesboro, KY', - 1606256 => 'Mount Vernon, KY', - 1606258 => 'Corbin, KY', - 1606285 => 'Martin, KY', - 1606286 => 'Olive Hill, KY', - 1606287 => 'McKee, KY', - 1606298 => 'Inez, KY', - 1606324 => 'Ashland, KY', - 1606325 => 'Ashland, KY', - 1606326 => 'Ashland, KY', - 1606327 => 'Ashland, KY', - 1606329 => 'Ashland, KY', - 1606330 => 'London, KY', - 1606337 => 'Pineville, KY', - 1606340 => 'Monticello, KY', - 1606348 => 'Monticello, KY', - 1606349 => 'Salyersville, KY', - 1606354 => 'Pine Knot, KY', - 1606364 => 'Annville, KY', - 1606365 => 'Stanford, KY', - 1606376 => 'Whitley City, KY', - 1606379 => 'Eubank, KY', - 1606387 => 'Albany, KY', - 1606408 => 'Ashland, KY', - 1606423 => 'Science Hill, KY', - 1606432 => 'Pikeville, KY', - 1606433 => 'Pikeville, KY', - 1606435 => 'Hazard, KY', - 1606436 => 'Hazard, KY', - 1606437 => 'Pikeville, KY', - 1606439 => 'Hazard, KY', - 1606451 => 'Somerset, KY', - 1606456 => 'Phelps, KY', - 1606464 => 'Beattyville, KY', - 1606473 => 'Greenup, KY', - 1606474 => 'Grayson, KY', - 1606475 => 'Grayson, KY', - 1606487 => 'Hazard, KY', - 1606523 => 'Corbin, KY', - 1606526 => 'Corbin, KY', - 1606528 => 'Corbin, KY', - 1606545 => 'Barbourville, KY', - 1606546 => 'Barbourville, KY', - 1606549 => 'Williamsburg, KY', - 1606564 => 'Maysville, KY', - 1606573 => 'Harlan, KY', - 1606589 => 'Cumberland, KY', - 1606593 => 'Booneville, KY', - 1606598 => 'Manchester, KY', - 1606599 => 'Manchester, KY', - 1606633 => 'Whitesburg, KY', - 1606638 => 'Louisa, KY', - 1606663 => 'Stanton, KY', - 1606666 => 'Jackson, KY', - 1606668 => 'Campton, KY', - 1606672 => 'Hyden, KY', - 1606674 => 'Owingsville, KY', - 1606676 => 'Somerset, KY', - 1606677 => 'Somerset, KY', - 1606678 => 'Somerset, KY', - 1606679 => 'Somerset, KY', - 1606723 => 'Irvine, KY', - 1606735 => 'Brooksville, KY', - 1606738 => 'Sandy Hook, KY', - 1606739 => 'Catlettsburg, KY', - 1606743 => 'West Liberty, KY', - 1606754 => 'Elkhorn City, KY', - 1606756 => 'Augusta, KY', - 1606759 => 'Maysville, KY', - 1606768 => 'Frenchburg, KY', - 1606780 => 'Morehead, KY', - 1606783 => 'Morehead, KY', - 1606784 => 'Morehead, KY', - 1606785 => 'Hindman, KY', - 1606787 => 'Liberty, KY', - 1606788 => 'Paintsville, KY', - 1606789 => 'Paintsville, KY', - 1606796 => 'Vanceburg, KY', - 1606832 => 'Jenkins, KY', - 1606837 => 'Evarts, KY', - 1606843 => 'East Bernstadt, KY', - 1606845 => 'Flemingsburg, KY', - 1606849 => 'Flemingsburg, KY', - 1606862 => 'London, KY', - 1606864 => 'London, KY', - 1606877 => 'London, KY', - 1606878 => 'London, KY', - 1606886 => 'Prestonsburg, KY', - 1606889 => 'Prestonsburg, KY', - 1606928 => 'Ashland, KY', - 1606929 => 'Ashland, KY', - 1606932 => 'South Shore, KY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1607.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1607.php deleted file mode 100644 index 634c0fa19..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1607.php +++ /dev/null @@ -1,104 +0,0 @@ - 'New York', - 1607217 => 'Binghamton, NY', - 1607231 => 'Binghamton, NY', - 1607239 => 'Endicott, NY', - 1607243 => 'Dundee, NY', - 1607255 => 'Ithaca, NY', - 1607256 => 'Ithaca, NY', - 1607257 => 'Ithaca, NY', - 1607264 => 'Cherry Valley, NY', - 1607266 => 'Ithaca, NY', - 1607272 => 'Ithaca, NY', - 1607273 => 'Ithaca, NY', - 1607274 => 'Ithaca, NY', - 1607277 => 'Ithaca, NY', - 1607319 => 'Ithaca, NY', - 1607324 => 'Hornell, NY', - 1607334 => 'Norwich, NY', - 1607336 => 'Norwich, NY', - 1607337 => 'Norwich, NY', - 1607359 => 'Addison, NY', - 1607363 => 'Downsville, NY', - 1607369 => 'Unadilla, NY', - 1607387 => 'Trumansburg, NY', - 1607431 => 'Oneonta, NY', - 1607432 => 'Oneonta, NY', - 1607433 => 'Oneonta, NY', - 1607467 => 'Deposit, NY', - 1607498 => 'Roscoe, NY', - 1607533 => 'Lansing, NY', - 1607535 => 'Watkins Glen, NY', - 1607539 => 'Brooktondale, NY', - 1607546 => 'Burdett, NY', - 1607547 => 'Cooperstown, NY', - 1607562 => 'Big Flats, NY', - 1607563 => 'Sidney, NY', - 1607564 => 'Newfield, NY', - 1607565 => 'Waverly, NY', - 1607569 => 'Hammondsport, NY', - 1607587 => 'Alfred, NY', - 1607589 => 'Spencer, NY', - 1607625 => 'Apalachin, NY', - 1607637 => 'Hancock, NY', - 1607639 => 'Afton, NY', - 1607642 => 'Newark Valley, NY', - 1607652 => 'Stamford, NY', - 1607655 => 'Windsor, NY', - 1607656 => 'Greene, NY', - 1607659 => 'Candor, NY', - 1607664 => 'Bath, NY', - 1607674 => 'Sherburne, NY', - 1607687 => 'Owego, NY', - 1607692 => 'Whitney Point, NY', - 1607693 => 'Harpursville, NY', - 1607698 => 'Canisteo, NY', - 1607699 => 'Nichols, NY', - 1607722 => 'Binghamton, NY', - 1607723 => 'Binghamton, NY', - 1607724 => 'Binghamton, NY', - 1607732 => 'Elmira, NY', - 1607733 => 'Elmira, NY', - 1607734 => 'Elmira, NY', - 1607735 => 'Elmira, NY', - 1607737 => 'Elmira, NY', - 1607739 => 'Horseheads, NY', - 1607746 => 'Delhi, NY', - 1607748 => 'Endicott, NY', - 1607749 => 'Homer, NY', - 1607753 => 'Cortland, NY', - 1607754 => 'Endicott, NY', - 1607756 => 'Cortland, NY', - 1607757 => 'Endicott, NY', - 1607758 => 'Cortland, NY', - 1607762 => 'Binghamton, NY', - 1607763 => 'Johnson City, NY', - 1607771 => 'Binghamton, NY', - 1607772 => 'Binghamton, NY', - 1607773 => 'Binghamton, NY', - 1607776 => 'Bath, NY', - 1607778 => 'Binghamton, NY', - 1607785 => 'Endicott, NY', - 1607786 => 'Endicott, NY', - 1607795 => 'Horseheads, NY', - 1607796 => 'Horseheads, NY', - 1607843 => 'Oxford, NY', - 1607844 => 'Dryden, NY', - 1607847 => 'New Berlin, NY', - 1607849 => 'Marathon, NY', - 1607863 => 'Cincinnatus, NY', - 1607865 => 'Walton, NY', - 1607869 => 'Ovid, NY', - 1607898 => 'Groton, NY', - 1607936 => 'Corning, NY', - 1607937 => 'Corning, NY', - 1607962 => 'Corning, NY', - 1607965 => 'Edmeston, NY', - 1607967 => 'Bainbridge, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1608.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1608.php deleted file mode 100644 index 92eb34456..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1608.php +++ /dev/null @@ -1,182 +0,0 @@ - 'Wisconsin', - 1608204 => 'Madison, WI', - 1608205 => 'Stoughton, WI', - 1608221 => 'Madison, WI', - 1608222 => 'Madison, WI', - 1608223 => 'Madison, WI', - 1608224 => 'Madison, WI', - 1608231 => 'Madison, WI', - 1608232 => 'Madison, WI', - 1608233 => 'Madison, WI', - 1608237 => 'Madison, WI', - 1608238 => 'Madison, WI', - 1608240 => 'Madison, WI', - 1608241 => 'Madison, WI', - 1608242 => 'Madison, WI', - 1608243 => 'Madison, WI', - 1608244 => 'Madison, WI', - 1608245 => 'Madison, WI', - 1608246 => 'Madison, WI', - 1608249 => 'Madison, WI', - 1608250 => 'Madison, WI', - 1608251 => 'Madison, WI', - 1608252 => 'Madison, WI', - 1608253 => 'Wisconsin Dells, WI', - 1608254 => 'Wisconsin Dells, WI', - 1608255 => 'Madison, WI', - 1608256 => 'Madison, WI', - 1608257 => 'Madison, WI', - 1608258 => 'Madison, WI', - 1608259 => 'Madison, WI', - 1608260 => 'Madison, WI', - 1608262 => 'Madison, WI', - 1608263 => 'Madison, WI', - 1608265 => 'Madison, WI', - 1608266 => 'Madison, WI', - 1608267 => 'Madison, WI', - 1608268 => 'Madison, WI', - 1608269 => 'Sparta, WI', - 1608270 => 'Madison, WI', - 1608271 => 'Madison, WI', - 1608273 => 'Madison, WI', - 1608274 => 'Madison, WI', - 1608276 => 'Madison, WI', - 1608277 => 'Madison, WI', - 1608278 => 'Madison, WI', - 1608280 => 'Madison, WI', - 1608287 => 'Madison, WI', - 1608296 => 'Westfield, WI', - 1608297 => 'Montello, WI', - 1608301 => 'Madison, WI', - 1608310 => 'Madison, WI', - 1608314 => 'Janesville, WI', - 1608323 => 'Arcadia, WI', - 1608324 => 'Monroe, WI', - 1608325 => 'Monroe, WI', - 1608326 => 'Prairie du Chien, WI', - 1608328 => 'Monroe, WI', - 1608329 => 'Monroe, WI', - 1608348 => 'Platteville, WI', - 1608355 => 'Baraboo, WI', - 1608356 => 'Baraboo, WI', - 1608361 => 'Beloit, WI', - 1608362 => 'Beloit, WI', - 1608363 => 'Beloit, WI', - 1608364 => 'Beloit, WI', - 1608365 => 'Beloit, WI', - 1608372 => 'Tomah, WI', - 1608374 => 'Tomah, WI', - 1608375 => 'Boscobel, WI', - 1608378 => 'Warrens, WI', - 1608392 => 'La Crosse, WI', - 1608417 => 'Madison, WI', - 1608423 => 'Cambridge, WI', - 1608424 => 'Belleville, WI', - 1608427 => 'Camp Douglas, WI', - 1608429 => 'Pardeeville, WI', - 1608437 => 'Mount Horeb, WI', - 1608441 => 'Madison, WI', - 1608442 => 'Madison, WI', - 1608443 => 'Madison, WI', - 1608452 => 'Coon Valley, WI', - 1608462 => 'Elroy, WI', - 1608467 => 'Madison, WI', - 1608489 => 'Hillsboro, WI', - 1608524 => 'Reedsburg, WI', - 1608526 => 'Holmen, WI', - 1608527 => 'New Glarus, WI', - 1608562 => 'New Lisbon, WI', - 1608565 => 'Necedah, WI', - 1608582 => 'Galesville, WI', - 1608586 => 'Oxford, WI', - 1608588 => 'Spring Green, WI', - 1608592 => 'Lodi, WI', - 1608625 => 'La Farge, WI', - 1608630 => 'Madison, WI', - 1608634 => 'Westby, WI', - 1608635 => 'Poynette, WI', - 1608637 => 'Viroqua, WI', - 1608647 => 'Richland Center, WI', - 1608648 => 'De Soto, WI', - 1608654 => 'Cashton, WI', - 1608655 => 'Marshall, WI', - 1608661 => 'Madison, WI', - 1608662 => 'Madison, WI', - 1608663 => 'Madison, WI', - 1608676 => 'Clinton, WI', - 1608685 => 'Alma, WI', - 1608687 => 'Fountain City, WI', - 1608723 => 'Lancaster, WI', - 1608739 => 'Muscoda, WI', - 1608741 => 'Janesville, WI', - 1608742 => 'Portage, WI', - 1608743 => 'Janesville, WI', - 1608744 => 'Cuba City, WI', - 1608745 => 'Portage, WI', - 1608752 => 'Janesville, WI', - 1608754 => 'Janesville, WI', - 1608755 => 'Janesville, WI', - 1608756 => 'Janesville, WI', - 1608757 => 'Janesville, WI', - 1608758 => 'Janesville, WI', - 1608764 => 'Deerfield, WI', - 1608767 => 'Black Earth, WI', - 1608775 => 'La Crosse, WI', - 1608776 => 'Darlington, WI', - 1608779 => 'Onalaska, WI', - 1608782 => 'La Crosse, WI', - 1608783 => 'Onalaska, WI', - 1608784 => 'La Crosse, WI', - 1608785 => 'La Crosse, WI', - 1608786 => 'West Salem, WI', - 1608787 => 'La Crosse, WI', - 1608788 => 'La Crosse, WI', - 1608791 => 'La Crosse, WI', - 1608795 => 'Mazomanie, WI', - 1608796 => 'La Crosse, WI', - 1608798 => 'Cross Plains, WI', - 1608807 => 'Madison, WI', - 1608819 => 'Madison, WI', - 1608822 => 'Fennimore, WI', - 1608824 => 'Madison, WI', - 1608825 => 'Sun Prairie, WI', - 1608826 => 'Madison, WI', - 1608827 => 'Madison, WI', - 1608828 => 'Madison, WI', - 1608829 => 'Madison, WI', - 1608831 => 'Middleton, WI', - 1608833 => 'Madison, WI', - 1608834 => 'Sun Prairie, WI', - 1608835 => 'Oregon, WI', - 1608836 => 'Middleton, WI', - 1608837 => 'Sun Prairie, WI', - 1608838 => 'McFarland, WI', - 1608839 => 'Cottage Grove, WI', - 1608845 => 'Verona, WI', - 1608846 => 'DeForest, WI', - 1608847 => 'Mauston, WI', - 1608848 => 'Verona, WI', - 1608849 => 'Waunakee, WI', - 1608850 => 'Waunakee, WI', - 1608868 => 'Milton, WI', - 1608873 => 'Stoughton, WI', - 1608877 => 'Stoughton, WI', - 1608882 => 'Evansville, WI', - 1608884 => 'Edgerton, WI', - 1608897 => 'Brodhead, WI', - 1608924 => 'Barneveld, WI', - 1608930 => 'Dodgeville, WI', - 1608935 => 'Dodgeville, WI', - 1608938 => 'Monticello, WI', - 1608965 => 'Shullsburg, WI', - 1608987 => 'Mineral Point, WI', - 1608989 => 'Blair, WI', - 1608994 => 'Bloomington, WI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1609.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1609.php deleted file mode 100644 index 44921a32b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1609.php +++ /dev/null @@ -1,112 +0,0 @@ - 'New Jersey', - 1609239 => 'Burlington Township, NJ', - 1609242 => 'Forked River, NJ', - 1609252 => 'Princeton, NJ', - 1609263 => 'Sea Isle City, NJ', - 1609266 => 'Brigantine, NJ', - 1609278 => 'Trenton, NJ', - 1609279 => 'Princeton, NJ', - 1609292 => 'Trenton, NJ', - 1609340 => 'Atlantic City, NJ', - 1609343 => 'Atlantic City, NJ', - 1609344 => 'Atlantic City, NJ', - 1609345 => 'Atlantic City, NJ', - 1609347 => 'Atlantic City, NJ', - 1609348 => 'Atlantic City, NJ', - 1609368 => 'Stone Harbor, NJ', - 1609390 => 'Marmora, NJ', - 1609391 => 'Ocean City, NJ', - 1609392 => 'Trenton, NJ', - 1609393 => 'Trenton, NJ', - 1609394 => 'Trenton, NJ', - 1609396 => 'Trenton, NJ', - 1609397 => 'Lambertville, NJ', - 1609398 => 'Ocean City, NJ', - 1609399 => 'Ocean City, NJ', - 1609404 => 'Galloway, NJ', - 1609430 => 'Princeton, NJ', - 1609441 => 'Atlantic City, NJ', - 1609452 => 'Princeton, NJ', - 1609454 => 'Princeton, NJ', - 1609463 => 'Cape May Ct Hse, NJ', - 1609465 => 'Cape May Ct Hse, NJ', - 1609466 => 'Hopewell, NJ', - 1609492 => 'Beach Haven, NJ', - 1609497 => 'Princeton, NJ', - 1609514 => 'Princeton, NJ', - 1609520 => 'Princeton, NJ', - 1609522 => 'Wildwood, NJ', - 1609523 => 'Wildwood, NJ', - 1609530 => 'Ewing Township, NJ', - 1609538 => 'Ewing Township, NJ', - 1609561 => 'Hammonton, NJ', - 1609567 => 'Hammonton, NJ', - 1609572 => 'Atlantic City, NJ', - 1609581 => 'Trenton, NJ', - 1609584 => 'Trenton, NJ', - 1609585 => 'Trenton, NJ', - 1609586 => 'Trenton, NJ', - 1609587 => 'Trenton, NJ', - 1609588 => 'Trenton, NJ', - 1609597 => 'Manahawkin, NJ', - 1609599 => 'Trenton, NJ', - 1609607 => 'Barnegat Township, NJ', - 1609625 => 'Mays Landing, NJ', - 1609628 => 'Woodbine, NJ', - 1609631 => 'Trenton, NJ', - 1609652 => 'Galloway, NJ', - 1609654 => 'Medford, NJ', - 1609656 => 'Trenton, NJ', - 1609660 => 'Barnegat Township, NJ', - 1609683 => 'Princeton, NJ', - 1609688 => 'Princeton, NJ', - 1609689 => 'Trenton, NJ', - 1609693 => 'Forked River, NJ', - 1609695 => 'Trenton, NJ', - 1609698 => 'Barnegat Township, NJ', - 1609704 => 'Hammonton, NJ', - 1609714 => 'Medford, NJ', - 1609729 => 'Wildwood, NJ', - 1609730 => 'Pennington, NJ', - 1609737 => 'Pennington, NJ', - 1609747 => 'Burlington Township, NJ', - 1609748 => 'Galloway, NJ', - 1609771 => 'Ewing Township, NJ', - 1609818 => 'Pennington, NJ', - 1609835 => 'Willingboro, NJ', - 1609838 => 'Trenton, NJ', - 1609844 => 'Lawrenceville, NJ', - 1609859 => 'Southampton Township, NJ', - 1609861 => 'Woodbine, NJ', - 1609871 => 'Willingboro, NJ', - 1609877 => 'Willingboro, NJ', - 1609882 => 'Ewing Township, NJ', - 1609883 => 'Ewing Township, NJ', - 1609884 => 'Cape May, NJ', - 1609888 => 'Trenton, NJ', - 1609890 => 'Trenton, NJ', - 1609893 => 'Browns Mills, NJ', - 1609894 => 'Pemberton, NJ', - 1609895 => 'Lawrenceville, NJ', - 1609896 => 'Lawrenceville, NJ', - 1609898 => 'Cape May, NJ', - 1609909 => 'Mays Landing, NJ', - 1609919 => 'Princeton, NJ', - 1609921 => 'Princeton, NJ', - 1609924 => 'Princeton, NJ', - 1609951 => 'Princeton, NJ', - 1609953 => 'Medford, NJ', - 1609965 => 'Egg Harbor City, NJ', - 1609967 => 'Avalon, NJ', - 1609971 => 'Forked River, NJ', - 1609978 => 'Manahawkin, NJ', - 1609987 => 'Princeton, NJ', - 1609989 => 'Trenton, NJ', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1610.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1610.php deleted file mode 100644 index ae48d631b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1610.php +++ /dev/null @@ -1,217 +0,0 @@ - 'Pennsylvania', - 1610208 => 'Reading, PA', - 1610225 => 'Wayne, PA', - 1610237 => 'Darby, PA', - 1610250 => 'Easton, PA', - 1610252 => 'Easton, PA', - 1610253 => 'Easton, PA', - 1610255 => 'Landenberg, PA', - 1610258 => 'Easton, PA', - 1610261 => 'Northampton, PA', - 1610262 => 'Northampton, PA', - 1610265 => 'King of Prussia, PA', - 1610268 => 'Avondale, PA', - 1610269 => 'Downingtown, PA', - 1610270 => 'Norristown, PA', - 1610272 => 'Norristown, PA', - 1610273 => 'Honey Brook, PA', - 1610275 => 'Norristown, PA', - 1610277 => 'Norristown, PA', - 1610278 => 'Norristown, PA', - 1610279 => 'Norristown, PA', - 1610280 => 'Exton, PA', - 1610282 => 'Coopersburg, PA', - 1610287 => 'Schwenksville, PA', - 1610293 => 'Wayne, PA', - 1610298 => 'New Tripoli, PA', - 1610317 => 'Bethlehem, PA', - 1610323 => 'Pottstown, PA', - 1610326 => 'Pottstown, PA', - 1610327 => 'Pottstown, PA', - 1610328 => 'Springfield, PA', - 1610330 => 'Easton, PA', - 1610336 => 'Allentown, PA', - 1610337 => 'King of Prussia, PA', - 1610344 => 'West Chester, PA', - 1610345 => 'West Grove, PA', - 1610347 => 'Kennett Square, PA', - 1610351 => 'Allentown, PA', - 1610352 => 'Upper Darby, PA', - 1610354 => 'King of Prussia, PA', - 1610363 => 'Exton, PA', - 1610366 => 'Allentown, PA', - 1610367 => 'Boyertown, PA', - 1610369 => 'Boyertown, PA', - 1610370 => 'Reading, PA', - 1610371 => 'Reading, PA', - 1610372 => 'Reading, PA', - 1610373 => 'Reading, PA', - 1610374 => 'Reading, PA', - 1610375 => 'Reading, PA', - 1610376 => 'Reading, PA', - 1610377 => 'Lehighton, PA', - 1610378 => 'Reading, PA', - 1610380 => 'Coatesville, PA', - 1610383 => 'Coatesville, PA', - 1610384 => 'Coatesville, PA', - 1610385 => 'Douglassville, PA', - 1610388 => 'Chadds Ford, PA', - 1610391 => 'Allentown, PA', - 1610395 => 'Allentown, PA', - 1610398 => 'Allentown, PA', - 1610399 => 'West Chester, PA', - 1610402 => 'Allentown, PA', - 1610404 => 'Birdsboro, PA', - 1610409 => 'Collegeville, PA', - 1610415 => 'Phoenixville, PA', - 1610419 => 'Bethlehem, PA', - 1610429 => 'West Chester, PA', - 1610430 => 'West Chester, PA', - 1610431 => 'West Chester, PA', - 1610432 => 'Allentown, PA', - 1610433 => 'Allentown, PA', - 1610434 => 'Allentown, PA', - 1610435 => 'Allentown, PA', - 1610436 => 'West Chester, PA', - 1610437 => 'Allentown, PA', - 1610438 => 'Easton, PA', - 1610439 => 'Allentown, PA', - 1610444 => 'Kennett Square, PA', - 1610446 => 'Havertown, PA', - 1610447 => 'Chester, PA', - 1610449 => 'Havertown, PA', - 1610454 => 'Collegeville, PA', - 1610466 => 'Coatesville, PA', - 1610469 => 'Pottstown, PA', - 1610473 => 'Boyertown, PA', - 1610478 => 'Reading, PA', - 1610481 => 'Allentown, PA', - 1610488 => 'Bernville, PA', - 1610489 => 'Collegeville, PA', - 1610515 => 'Easton, PA', - 1610518 => 'Downingtown, PA', - 1610520 => 'Bryn Mawr, PA', - 1610524 => 'Exton, PA', - 1610525 => 'Bryn Mawr, PA', - 1610526 => 'Bryn Mawr, PA', - 1610527 => 'Bryn Mawr, PA', - 1610530 => 'Allentown, PA', - 1610543 => 'Springfield, PA', - 1610544 => 'Springfield, PA', - 1610559 => 'Easton, PA', - 1610562 => 'Hamburg, PA', - 1610565 => 'Media, PA', - 1610566 => 'Media, PA', - 1610582 => 'Birdsboro, PA', - 1610588 => 'Bangor, PA', - 1610589 => 'Womelsdorf, PA', - 1610594 => 'Exton, PA', - 1610599 => 'Bangor, PA', - 1610619 => 'Chester, PA', - 1610625 => 'Bethlehem, PA', - 1610627 => 'Media, PA', - 1610628 => 'Allentown, PA', - 1610645 => 'Wynnewood, PA', - 1610648 => 'Paoli, PA', - 1610655 => 'Reading, PA', - 1610660 => 'Bala Cynwyd, PA', - 1610667 => 'Bala Cynwyd, PA', - 1610668 => 'Bala Cynwyd, PA', - 1610683 => 'Kutztown, PA', - 1610685 => 'Reading, PA', - 1610687 => 'Wayne, PA', - 1610688 => 'Wayne, PA', - 1610690 => 'Springfield, PA', - 1610691 => 'Bethlehem, PA', - 1610692 => 'West Chester, PA', - 1610693 => 'Robesonia, PA', - 1610694 => 'Bethlehem, PA', - 1610696 => 'West Chester, PA', - 1610701 => 'West Chester, PA', - 1610705 => 'Pottstown, PA', - 1610718 => 'Pottstown, PA', - 1610734 => 'Upper Darby, PA', - 1610738 => 'West Chester, PA', - 1610740 => 'Allentown, PA', - 1610743 => 'Reading, PA', - 1610746 => 'Nazareth, PA', - 1610750 => 'Reading, PA', - 1610756 => 'Kempton, PA', - 1610758 => 'Bethlehem, PA', - 1610759 => 'Nazareth, PA', - 1610768 => 'King of Prussia, PA', - 1610770 => 'Allentown, PA', - 1610775 => 'Reading, PA', - 1610776 => 'Allentown, PA', - 1610779 => 'Reading, PA', - 1610782 => 'Allentown, PA', - 1610783 => 'King of Prussia, PA', - 1610791 => 'Allentown, PA', - 1610792 => 'Royersford, PA', - 1610793 => 'West Chester, PA', - 1610796 => 'Reading, PA', - 1610797 => 'Allentown, PA', - 1610807 => 'Bethlehem, PA', - 1610814 => 'Bethlehem, PA', - 1610820 => 'Allentown, PA', - 1610821 => 'Allentown, PA', - 1610826 => 'Palmerton, PA', - 1610827 => 'Chester Springs, PA', - 1610831 => 'Collegeville, PA', - 1610837 => 'Bath, PA', - 1610838 => 'Hellertown, PA', - 1610841 => 'Allentown, PA', - 1610847 => 'Ottsville, PA', - 1610853 => 'Havertown, PA', - 1610856 => 'Mohnton, PA', - 1610857 => 'Parkesburg, PA', - 1610861 => 'Bethlehem, PA', - 1610863 => 'Wind Gap, PA', - 1610865 => 'Bethlehem, PA', - 1610866 => 'Bethlehem, PA', - 1610867 => 'Bethlehem, PA', - 1610868 => 'Bethlehem, PA', - 1610869 => 'West Grove, PA', - 1610872 => 'Chester, PA', - 1610873 => 'Downingtown, PA', - 1610874 => 'Chester, PA', - 1610882 => 'Bethlehem, PA', - 1610891 => 'Media, PA', - 1610892 => 'Media, PA', - 1610898 => 'Reading, PA', - 1610913 => 'Morgantown, PA', - 1610917 => 'Phoenixville, PA', - 1610918 => 'West Chester, PA', - 1610921 => 'Reading, PA', - 1610923 => 'Easton, PA', - 1610925 => 'Kennett Square, PA', - 1610929 => 'Reading, PA', - 1610932 => 'Oxford, PA', - 1610933 => 'Phoenixville, PA', - 1610935 => 'Phoenixville, PA', - 1610939 => 'Reading, PA', - 1610942 => 'Glenmoore, PA', - 1610944 => 'Fleetwood, PA', - 1610948 => 'Royersford, PA', - 1610954 => 'Bethlehem, PA', - 1610964 => 'Wayne, PA', - 1610965 => 'Emmaus, PA', - 1610967 => 'Emmaus, PA', - 1610969 => 'Allentown, PA', - 1610970 => 'Pottstown, PA', - 1610971 => 'Wayne, PA', - 1610973 => 'Allentown, PA', - 1610975 => 'Wayne, PA', - 1610983 => 'Phoenixville, PA', - 1610987 => 'Oley, PA', - 1610988 => 'Reading, PA', - 1610992 => 'King of Prussia, PA', - 1610998 => 'Oxford, PA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1612.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1612.php deleted file mode 100644 index 4e83c5ce9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1612.php +++ /dev/null @@ -1,90 +0,0 @@ - 'Minnesota', - 1612225 => 'Minneapolis, MN', - 1612259 => 'Minneapolis, MN', - 1612273 => 'Minneapolis, MN', - 1612302 => 'Minneapolis, MN', - 1612331 => 'Minneapolis, MN', - 1612332 => 'Minneapolis, MN', - 1612333 => 'Minneapolis, MN', - 1612335 => 'Minneapolis, MN', - 1612337 => 'Minneapolis, MN', - 1612338 => 'Minneapolis, MN', - 1612339 => 'Minneapolis, MN', - 1612340 => 'Minneapolis, MN', - 1612341 => 'Minneapolis, MN', - 1612343 => 'Minneapolis, MN', - 1612347 => 'Minneapolis, MN', - 1612348 => 'Minneapolis, MN', - 1612349 => 'Minneapolis, MN', - 1612353 => 'Minneapolis, MN', - 1612354 => 'Minneapolis, MN', - 1612370 => 'Minneapolis, MN', - 1612371 => 'Minneapolis, MN', - 1612374 => 'Minneapolis, MN', - 1612375 => 'Minneapolis, MN', - 1612377 => 'Minneapolis, MN', - 1612378 => 'Minneapolis, MN', - 1612379 => 'Minneapolis, MN', - 1612436 => 'Minneapolis, MN', - 1612455 => 'Minneapolis, MN', - 1612467 => 'Minneapolis, MN', - 1612492 => 'Minneapolis, MN', - 1612521 => 'Minneapolis, MN', - 1612522 => 'Minneapolis, MN', - 1612529 => 'Minneapolis, MN', - 1612545 => 'Minneapolis, MN', - 1612573 => 'Minneapolis, MN', - 1612588 => 'Minneapolis, MN', - 1612623 => 'Minneapolis, MN', - 1612624 => 'Minneapolis, MN', - 1612625 => 'Minneapolis, MN', - 1612626 => 'Minneapolis, MN', - 1612632 => 'Minneapolis, MN', - 1612668 => 'Minneapolis, MN', - 1612672 => 'Minneapolis, MN', - 1612673 => 'Minneapolis, MN', - 1612706 => 'Minneapolis, MN', - 1612721 => 'Minneapolis, MN', - 1612722 => 'Minneapolis, MN', - 1612724 => 'Minneapolis, MN', - 1612725 => 'Minneapolis, MN', - 1612727 => 'Minneapolis, MN', - 1612728 => 'Minneapolis, MN', - 1612729 => 'Minneapolis, MN', - 1612746 => 'Minneapolis, MN', - 1612766 => 'South 7th Street, Minneapolis, MN', - 1612767 => 'Minneapolis, MN', - 1612781 => 'Minneapolis, MN', - 1612788 => 'Minneapolis, MN', - 1612789 => 'Minneapolis, MN', - 1612798 => 'Richfield, MN', - 1612813 => 'Minneapolis, MN', - 1612821 => 'Minneapolis, MN', - 1612822 => 'Minneapolis, MN', - 1612823 => 'Minneapolis, MN', - 1612824 => 'Minneapolis, MN', - 1612825 => 'Minneapolis, MN', - 1612827 => 'Minneapolis, MN', - 1612863 => 'Minneapolis, MN', - 1612870 => 'Minneapolis, MN', - 1612871 => 'Minneapolis, MN', - 1612872 => 'Minneapolis, MN', - 1612873 => 'Minneapolis, MN', - 1612874 => 'Minneapolis, MN', - 1612877 => 'Minneapolis, MN', - 1612879 => 'Minneapolis, MN', - 1612886 => 'Minneapolis, MN', - 1612920 => 'Minneapolis, MN', - 1612922 => 'Minneapolis, MN', - 1612925 => 'Minneapolis, MN', - 1612926 => 'Minneapolis, MN', - 1612929 => 'Minneapolis, MN', - 1612977 => 'Minneapolis, MN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1613.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1613.php deleted file mode 100644 index 576e91fee..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1613.php +++ /dev/null @@ -1,168 +0,0 @@ - 'Ontario', - 1613216 => 'Ottawa, ON', - 1613226 => 'Nepean, ON', - 1613230 => 'Ottawa, ON', - 1613231 => 'Ottawa, ON', - 1613232 => 'Ottawa, ON', - 1613233 => 'Ottawa, ON', - 1613234 => 'Ottawa, ON', - 1613235 => 'Ottawa, ON', - 1613236 => 'Ottawa, ON', - 1613237 => 'Ottawa, ON', - 1613238 => 'Ottawa, ON', - 1613241 => 'Ottawa, ON', - 1613244 => 'Ottawa, ON', - 1613247 => 'Ottawa, ON', - 1613248 => 'Ottawa, ON', - 1613249 => 'Ottawa, ON', - 1613253 => 'Carleton Place, ON', - 1613254 => 'Kanata, ON', - 1613256 => 'Almonte, ON', - 1613257 => 'Carleton Place, ON', - 1613258 => 'Kemptville, ON', - 1613260 => 'Ottawa, ON', - 1613264 => 'Perth, ON', - 1613267 => 'Perth, ON', - 1613269 => 'Merrickville, ON', - 1613270 => 'Kanata, ON', - 1613271 => 'Kanata, ON', - 1613273 => 'Westport, ON', - 1613279 => 'Sharbot Lake, ON', - 1613283 => 'Smiths Falls, ON', - 1613284 => 'Smiths Falls, ON', - 1613288 => 'Ottawa, ON', - 1613321 => 'Ottawa, ON', - 1613332 => 'Bancroft, ON', - 1613336 => 'Northbrook, ON', - 1613342 => 'Brockville, ON', - 1613345 => 'Brockville, ON', - 1613347 => 'Lancaster, ON', - 1613354 => 'Greater Napanee, ON', - 1613382 => 'Gananoque, ON', - 1613384 => 'Kingston, ON', - 1613389 => 'Kingston, ON', - 1613392 => 'Trenton, ON', - 1613393 => 'Bloomfield, ON', - 1613394 => 'Trenton, ON', - 1613395 => 'Stirling, ON', - 1613396 => 'Deseronto, ON', - 1613398 => 'Frankford, ON', - 1613399 => 'Wellington, ON', - 1613421 => 'Ottawa, ON', - 1613422 => 'Ottawa, ON', - 1613432 => 'Renfrew, ON', - 1613433 => 'Renfrew, ON', - 1613443 => 'Embrun, ON', - 1613445 => 'Russell, ON', - 1613446 => 'Rockland, ON', - 1613448 => 'Chesterville, ON', - 1613472 => 'Marmora, ON', - 1613473 => 'Madoc, ON', - 1613475 => 'Brighton, ON', - 1613476 => 'Picton, ON', - 1613478 => 'Tweed, ON', - 1613489 => 'North Gower, ON', - 1613498 => 'Brockville, ON', - 1613507 => 'Kingston, ON', - 1613521 => 'Ottawa, ON', - 1613523 => 'Ottawa, ON', - 1613524 => 'Saint Isidore, ON', - 1613525 => 'Alexandria, ON', - 1613526 => 'Ottawa, ON', - 1613530 => 'Kingston, ON', - 1613531 => 'Kingston, ON', - 1613542 => 'Kingston, ON', - 1613543 => 'Morrisburg, ON', - 1613544 => 'Kingston, ON', - 1613545 => 'Kingston, ON', - 1613546 => 'Kingston, ON', - 1613547 => 'Kingston, ON', - 1613548 => 'Kingston, ON', - 1613549 => 'Kingston, ON', - 1613562 => 'Ottawa, ON', - 1613563 => 'Ottawa, ON', - 1613564 => 'Ottawa, ON', - 1613565 => 'Ottawa, ON', - 1613567 => 'Ottawa, ON', - 1613569 => 'Ottawa, ON', - 1613584 => 'Deep River, ON', - 1613590 => 'Orléans, ON', - 1613591 => 'Kanata, ON', - 1613592 => 'Kanata, ON', - 1613594 => 'Ottawa, ON', - 1613599 => 'Kanata, ON', - 1613622 => 'Arnprior, ON', - 1613623 => 'Arnprior, ON', - 1613628 => 'Eganville, ON', - 1613632 => 'Hawkesbury, ON', - 1613634 => 'Kingston, ON', - 1613646 => 'Cobden, ON', - 1613652 => 'Iroquois, ON', - 1613659 => 'Lansdowne, ON', - 1613673 => 'Plantagenet, ON', - 1613678 => 'Vankleek Hill, ON', - 1613679 => 'Alfred, ON', - 1613680 => 'Ottawa, ON', - 1613687 => 'Petawawa, ON', - 1613688 => 'Ottawa, ON', - 1613692 => 'Manotick, ON', - 1613695 => 'Ottawa, ON', - 1613722 => 'Ottawa, ON', - 1613724 => 'Ottawa, ON', - 1613725 => 'Ottawa, ON', - 1613728 => 'Ottawa, ON', - 1613729 => 'Ottawa, ON', - 1613730 => 'Ottawa, ON', - 1613731 => 'Ottawa, ON', - 1613732 => 'Pembroke, ON', - 1613733 => 'Ottawa, ON', - 1613735 => 'Pembroke, ON', - 1613736 => 'Ottawa, ON', - 1613737 => 'Ottawa, ON', - 1613738 => 'Ottawa, ON', - 1613739 => 'Ottawa, ON', - 1613741 => 'Ottawa, ON', - 1613746 => 'Ottawa, ON', - 1613756 => 'Barry\'s Bay, ON', - 1613757 => 'Killaloe, ON', - 1613761 => 'Ottawa, ON', - 1613764 => 'Casselman, ON', - 1613766 => 'Kingston, ON', - 1613771 => 'Belleville, ON', - 1613774 => 'Winchester, ON', - 1613789 => 'Ottawa, ON', - 1613798 => 'Ottawa, ON', - 1613822 => 'Gloucester, ON', - 1613824 => 'Orléans, ON', - 1613830 => 'Orléans, ON', - 1613833 => 'Cumberland, ON', - 1613834 => 'Orléans, ON', - 1613835 => 'Navan, ON', - 1613837 => 'Orléans, ON', - 1613838 => 'Richmond, ON', - 1613839 => 'Carp, ON', - 1613841 => 'Orléans, ON', - 1613842 => 'Ottawa, ON', - 1613924 => 'Athens, ON', - 1613925 => 'Prescott, ON', - 1613931 => 'Cornwall, ON', - 1613932 => 'Cornwall, ON', - 1613933 => 'Cornwall, ON', - 1613936 => 'Cornwall, ON', - 1613937 => 'Cornwall, ON', - 1613938 => 'Cornwall, ON', - 1613961 => 'Belleville, ON', - 1613962 => 'Belleville, ON', - 1613965 => 'Trenton, ON', - 1613966 => 'Belleville, ON', - 1613967 => 'Belleville, ON', - 1613968 => 'Belleville, ON', - 1613969 => 'Belleville, ON', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1614.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1614.php deleted file mode 100644 index 8a2faf353..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1614.php +++ /dev/null @@ -1,162 +0,0 @@ - 'Ohio', - 1614210 => 'Dublin, OH', - 1614220 => 'Columbus, OH', - 1614221 => 'Columbus, OH', - 1614222 => 'Columbus, OH', - 1614223 => 'Columbus, OH', - 1614224 => 'Columbus, OH', - 1614225 => 'Columbus, OH', - 1614227 => 'Columbus, OH', - 1614228 => 'Columbus, OH', - 1614231 => 'Columbus, OH', - 1614234 => 'Columbus, OH', - 1614235 => 'Columbus, OH', - 1614236 => 'Columbus, OH', - 1614237 => 'Columbus, OH', - 1614238 => 'Columbus, OH', - 1614239 => 'Columbus, OH', - 1614252 => 'Columbus, OH', - 1614253 => 'Columbus, OH', - 1614255 => 'Columbus, OH', - 1614257 => 'Columbus, OH', - 1614258 => 'Columbus, OH', - 1614261 => 'Columbus, OH', - 1614262 => 'Columbus, OH', - 1614263 => 'Columbus, OH', - 1614267 => 'Columbus, OH', - 1614268 => 'Columbus, OH', - 1614272 => 'Columbus, OH', - 1614273 => 'Columbus, OH', - 1614274 => 'Columbus, OH', - 1614275 => 'Columbus, OH', - 1614276 => 'Columbus, OH', - 1614277 => 'Grove City, OH', - 1614279 => 'Columbus, OH', - 1614291 => 'Columbus, OH', - 1614292 => 'Columbus, OH', - 1614293 => 'Columbus, OH', - 1614294 => 'Columbus, OH', - 1614297 => 'Columbus, OH', - 1614298 => 'Columbus, OH', - 1614299 => 'Columbus, OH', - 1614326 => 'Columbus, OH', - 1614337 => 'Columbus, OH', - 1614338 => 'Columbus, OH', - 1614340 => 'Columbus, OH', - 1614342 => 'Columbus, OH', - 1614351 => 'Columbus, OH', - 1614355 => 'Columbus, OH', - 1614365 => 'Columbus, OH', - 1614366 => 'Columbus, OH', - 1614389 => 'Dublin, OH', - 1614398 => 'Columbus, OH', - 1614409 => 'Columbus, OH', - 1614414 => 'Columbus, OH', - 1614416 => 'Columbus, OH', - 1614418 => 'Columbus, OH', - 1614421 => 'Columbus, OH', - 1614428 => 'Columbus, OH', - 1614429 => 'Columbus, OH', - 1614430 => 'Columbus, OH', - 1614433 => 'Columbus, OH', - 1614442 => 'Columbus, OH', - 1614443 => 'Columbus, OH', - 1614444 => 'Columbus, OH', - 1614445 => 'Columbus, OH', - 1614447 => 'Columbus, OH', - 1614449 => 'Columbus, OH', - 1614451 => 'Columbus, OH', - 1614453 => 'Columbus, OH', - 1614457 => 'Columbus, OH', - 1614459 => 'Columbus, OH', - 1614461 => 'Columbus, OH', - 1614462 => 'Columbus, OH', - 1614464 => 'Columbus, OH', - 1614466 => 'Columbus, OH', - 1614469 => 'Columbus, OH', - 1614470 => 'Columbus, OH', - 1614473 => 'Columbus, OH', - 1614475 => 'Columbus, OH', - 1614476 => 'Columbus, OH', - 1614481 => 'Columbus, OH', - 1614485 => 'Columbus, OH', - 1614486 => 'Columbus, OH', - 1614487 => 'Columbus, OH', - 1614488 => 'Columbus, OH', - 1614491 => 'Columbus, OH', - 1614492 => 'Columbus, OH', - 1614497 => 'Columbus, OH', - 1614523 => 'Westerville, OH', - 1614525 => 'Columbus, OH', - 1614527 => 'Hilliard, OH', - 1614529 => 'Hilliard, OH', - 1614538 => 'Columbus, OH', - 1614539 => 'Grove City, OH', - 1614544 => 'Columbus, OH', - 1614545 => 'Columbus, OH', - 1614552 => 'Columbus, OH', - 1614566 => 'Columbus, OH', - 1614586 => 'Columbus, OH', - 1614621 => 'Columbus, OH', - 1614645 => 'Columbus, OH', - 1614717 => 'Dublin, OH', - 1614718 => 'Dublin, OH', - 1614719 => 'Columbus, OH', - 1614722 => 'Columbus, OH', - 1614725 => 'Columbus, OH', - 1614754 => 'Columbus, OH', - 1614760 => 'Dublin, OH', - 1614761 => 'Dublin, OH', - 1614764 => 'Dublin, OH', - 1614766 => 'Dublin, OH', - 1614771 => 'Hilliard, OH', - 1614775 => 'New Albany, OH', - 1614777 => 'Hilliard, OH', - 1614781 => 'Columbus, OH', - 1614784 => 'Columbus, OH', - 1614791 => 'Dublin, OH', - 1614792 => 'Dublin, OH', - 1614793 => 'Dublin, OH', - 1614794 => 'Westerville, OH', - 1614798 => 'Dublin, OH', - 1614799 => 'Dublin, OH', - 1614801 => 'Grove City, OH', - 1614818 => 'Westerville, OH', - 1614824 => 'Columbus, OH', - 1614836 => 'Groveport, OH', - 1614839 => 'Westerville, OH', - 1614840 => 'Columbus, OH', - 1614850 => 'Hilliard, OH', - 1614851 => 'Columbus, OH', - 1614853 => 'Columbus, OH', - 1614865 => 'Westerville, OH', - 1614870 => 'Columbus, OH', - 1614871 => 'Grove City, OH', - 1614873 => 'Plain City, OH', - 1614875 => 'Grove City, OH', - 1614876 => 'Hilliard, OH', - 1614877 => 'Orient, OH', - 1614878 => 'Columbus, OH', - 1614879 => 'West Jefferson, OH', - 1614882 => 'Westerville, OH', - 1614884 => 'Columbus, OH', - 1614889 => 'Dublin, OH', - 1614890 => 'Westerville, OH', - 1614891 => 'Westerville, OH', - 1614895 => 'Westerville, OH', - 1614898 => 'Westerville, OH', - 1614899 => 'Westerville, OH', - 1614901 => 'Westerville, OH', - 1614921 => 'Hilliard, OH', - 1614933 => 'New Albany, OH', - 1614939 => 'New Albany, OH', - 1614947 => 'Columbus, OH', - 1614985 => 'Columbus, OH', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1615.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1615.php deleted file mode 100644 index 84b358785..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1615.php +++ /dev/null @@ -1,204 +0,0 @@ - 'Tennessee', - 1615206 => 'Gallatin, TN', - 1615217 => 'Murfreesboro, TN', - 1615220 => 'Smyrna, TN', - 1615221 => 'Brentwood, TN', - 1615222 => 'Nashville, TN', - 1615223 => 'Smyrna, TN', - 1615225 => 'Murfreesboro, TN', - 1615226 => 'Nashville, TN', - 1615227 => 'Nashville, TN', - 1615228 => 'Nashville, TN', - 1615230 => 'Gallatin, TN', - 1615242 => 'Nashville, TN', - 1615244 => 'Nashville, TN', - 1615248 => 'Nashville, TN', - 1615250 => 'Nashville, TN', - 1615251 => 'Nashville, TN', - 1615252 => 'Nashville, TN', - 1615254 => 'Nashville, TN', - 1615255 => 'Nashville, TN', - 1615256 => 'Nashville, TN', - 1615259 => 'Nashville, TN', - 1615261 => 'Franklin, TN', - 1615262 => 'Nashville, TN', - 1615264 => 'Hendersonville, TN', - 1615269 => 'Nashville, TN', - 1615274 => 'Eagleville, TN', - 1615279 => 'Nashville, TN', - 1615284 => 'Nashville, TN', - 1615291 => 'Nashville, TN', - 1615292 => 'Nashville, TN', - 1615297 => 'Nashville, TN', - 1615298 => 'Nashville, TN', - 1615301 => 'Nashville, TN', - 1615302 => 'Spring Hill, TN', - 1615309 => 'Brentwood, TN', - 1615312 => 'Nashville, TN', - 1615313 => 'Nashville, TN', - 1615320 => 'Nashville, TN', - 1615321 => 'Nashville, TN', - 1615322 => 'Nashville, TN', - 1615323 => 'Portland, TN', - 1615325 => 'Portland, TN', - 1615327 => 'Nashville, TN', - 1615329 => 'Nashville, TN', - 1615331 => 'Nashville, TN', - 1615332 => 'Nashville, TN', - 1615333 => 'Nashville, TN', - 1615338 => 'Hendersonville, TN', - 1615340 => 'Nashville, TN', - 1615341 => 'Nashville, TN', - 1615342 => 'Nashville, TN', - 1615343 => 'Nashville, TN', - 1615350 => 'Nashville, TN', - 1615352 => 'Nashville, TN', - 1615353 => 'Nashville, TN', - 1615354 => 'Nashville, TN', - 1615355 => 'Smyrna, TN', - 1615356 => 'Nashville, TN', - 1615360 => 'Nashville, TN', - 1615361 => 'Nashville, TN', - 1615365 => 'Nashville, TN', - 1615366 => 'Nashville, TN', - 1615367 => 'Nashville, TN', - 1615370 => 'Brentwood, TN', - 1615371 => 'Brentwood, TN', - 1615373 => 'Brentwood, TN', - 1615374 => 'Hartsville, TN', - 1615376 => 'Brentwood, TN', - 1615377 => 'Brentwood, TN', - 1615382 => 'Springfield, TN', - 1615383 => 'Nashville, TN', - 1615384 => 'Springfield, TN', - 1615385 => 'Nashville, TN', - 1615386 => 'Nashville, TN', - 1615396 => 'Murfreesboro, TN', - 1615399 => 'Nashville, TN', - 1615410 => 'Murfreesboro, TN', - 1615431 => 'Hendersonville, TN', - 1615435 => 'Franklin, TN', - 1615441 => 'Dickson, TN', - 1615443 => 'Lebanon, TN', - 1615444 => 'Lebanon, TN', - 1615445 => 'Nashville, TN', - 1615446 => 'Dickson, TN', - 1615449 => 'Lebanon, TN', - 1615451 => 'Gallatin, TN', - 1615452 => 'Gallatin, TN', - 1615453 => 'Lebanon, TN', - 1615457 => 'Nashville, TN', - 1615459 => 'Smyrna, TN', - 1615460 => 'Nashville, TN', - 1615463 => 'Nashville, TN', - 1615472 => 'Franklin, TN', - 1615494 => 'Murfreesboro, TN', - 1615499 => 'Nashville, TN', - 1615514 => 'Nashville, TN', - 1615515 => 'Nashville, TN', - 1615538 => 'Franklin, TN', - 1615547 => 'Lebanon, TN', - 1615563 => 'Woodbury, TN', - 1615567 => 'Franklin, TN', - 1615591 => 'Franklin, TN', - 1615595 => 'Franklin, TN', - 1615597 => 'Smithville, TN', - 1615599 => 'Franklin, TN', - 1615612 => 'Madison, TN', - 1615620 => 'Nashville, TN', - 1615624 => 'Murfreesboro, TN', - 1615641 => 'Antioch, TN', - 1615643 => 'Greenbrier, TN', - 1615644 => 'Westmoreland, TN', - 1615646 => 'Nashville, TN', - 1615650 => 'Nashville, TN', - 1615653 => 'Murfreesboro, TN', - 1615654 => 'Cross Plains, TN', - 1615661 => 'Brentwood, TN', - 1615662 => 'Nashville, TN', - 1615665 => 'Nashville, TN', - 1615666 => 'Lafayette, TN', - 1615672 => 'White House, TN', - 1615673 => 'Nashville, TN', - 1615678 => 'Nashville, TN', - 1615683 => 'Gordonsville, TN', - 1615688 => 'Lafayette, TN', - 1615699 => 'Red Boiling Spgs, TN', - 1615712 => 'Nashville, TN', - 1615726 => 'Nashville, TN', - 1615730 => 'Nashville, TN', - 1615731 => 'Antioch, TN', - 1615732 => 'Nashville, TN', - 1615735 => 'Carthage, TN', - 1615736 => 'Nashville, TN', - 1615740 => 'Dickson, TN', - 1615741 => 'Nashville, TN', - 1615742 => 'Nashville, TN', - 1615746 => 'Pleasant View, TN', - 1615750 => 'Nashville, TN', - 1615754 => 'Mount Juliet, TN', - 1615758 => 'Mount Juliet, TN', - 1615771 => 'Franklin, TN', - 1615773 => 'Mount Juliet, TN', - 1615776 => 'Nolensville, TN', - 1615777 => 'Nashville, TN', - 1615781 => 'Nashville, TN', - 1615783 => 'Nashville, TN', - 1615789 => 'Charlotte, TN', - 1615790 => 'Franklin, TN', - 1615791 => 'Franklin, TN', - 1615792 => 'Ashland City, TN', - 1615793 => 'La Vergne, TN', - 1615794 => 'Franklin, TN', - 1615797 => 'White Bluff, TN', - 1615799 => 'Fairview, TN', - 1615807 => 'Franklin, TN', - 1615822 => 'Hendersonville, TN', - 1615823 => 'Nashville, TN', - 1615824 => 'Hendersonville, TN', - 1615826 => 'Hendersonville, TN', - 1615831 => 'Nashville, TN', - 1615832 => 'Nashville, TN', - 1615833 => 'Nashville, TN', - 1615834 => 'Nashville, TN', - 1615837 => 'Nashville, TN', - 1615847 => 'Old Hickory, TN', - 1615848 => 'Murfreesboro, TN', - 1615849 => 'Murfreesboro, TN', - 1615851 => 'Goodlettsville, TN', - 1615855 => 'Goodlettsville, TN', - 1615859 => 'Goodlettsville, TN', - 1615860 => 'Madison, TN', - 1615862 => 'Nashville, TN', - 1615865 => 'Madison, TN', - 1615867 => 'Murfreesboro, TN', - 1615868 => 'Madison, TN', - 1615871 => 'Nashville, TN', - 1615872 => 'Nashville, TN', - 1615873 => 'Nashville, TN', - 1615874 => 'Nashville, TN', - 1615883 => 'Nashville, TN', - 1615884 => 'Nashville, TN', - 1615889 => 'Nashville, TN', - 1615890 => 'Murfreesboro, TN', - 1615891 => 'Nashville, TN', - 1615893 => 'Murfreesboro, TN', - 1615895 => 'Murfreesboro, TN', - 1615896 => 'Murfreesboro, TN', - 1615898 => 'Murfreesboro, TN', - 1615904 => 'Murfreesboro, TN', - 1615907 => 'Murfreesboro, TN', - 1615915 => 'Nashville, TN', - 1615936 => 'Nashville, TN', - 1615942 => 'Nashville, TN', - 1615952 => 'Kingston Springs, TN', - 1615953 => 'Nashville, TN', - 1615962 => 'Murfreesboro, TN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1616.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1616.php deleted file mode 100644 index f840bc2e0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1616.php +++ /dev/null @@ -1,124 +0,0 @@ - 'Michigan', - 1616222 => 'Grand Rapids, MI', - 1616225 => 'Greenville, MI', - 1616233 => 'Grand Rapids, MI', - 1616235 => 'Grand Rapids, MI', - 1616241 => 'Grand Rapids, MI', - 1616242 => 'Grand Rapids, MI', - 1616243 => 'Grand Rapids, MI', - 1616245 => 'Grand Rapids, MI', - 1616247 => 'Grand Rapids, MI', - 1616248 => 'Grand Rapids, MI', - 1616281 => 'Grand Rapids, MI', - 1616285 => 'Grand Rapids, MI', - 1616301 => 'Grand Rapids, MI', - 1616335 => 'Holland, MI', - 1616336 => 'Grand Rapids, MI', - 1616355 => 'Holland, MI', - 1616356 => 'Grand Rapids, MI', - 1616361 => 'Grand Rapids, MI', - 1616363 => 'Grand Rapids, MI', - 1616364 => 'Grand Rapids, MI', - 1616365 => 'Grand Rapids, MI', - 1616374 => 'Lake Odessa, MI', - 1616391 => 'Grand Rapids, MI', - 1616392 => 'Holland, MI', - 1616393 => 'Holland, MI', - 1616394 => 'Holland, MI', - 1616395 => 'Holland, MI', - 1616396 => 'Holland, MI', - 1616399 => 'Holland, MI', - 1616447 => 'Grand Rapids, MI', - 1616451 => 'Grand Rapids, MI', - 1616452 => 'Grand Rapids, MI', - 1616453 => 'Grand Rapids, MI', - 1616454 => 'Grand Rapids, MI', - 1616455 => 'Grand Rapids, MI', - 1616456 => 'Grand Rapids, MI', - 1616457 => 'Jenison, MI', - 1616458 => 'Grand Rapids, MI', - 1616459 => 'Grand Rapids, MI', - 1616464 => 'Grand Rapids, MI', - 1616475 => 'Grand Rapids, MI', - 1616494 => 'Holland, MI', - 1616522 => 'Ionia, MI', - 1616527 => 'Ionia, MI', - 1616546 => 'Holland, MI', - 1616551 => 'Grand Rapids, MI', - 1616575 => 'Grand Rapids, MI', - 1616583 => 'Byron Center, MI', - 1616608 => 'Grand Rapids, MI', - 1616632 => 'Grand Rapids, MI', - 1616636 => 'Sand Lake, MI', - 1616642 => 'Saranac, MI', - 1616662 => 'Hudsonville, MI', - 1616667 => 'Jenison, MI', - 1616669 => 'Hudsonville, MI', - 1616676 => 'Ada, MI', - 1616677 => 'Marne, MI', - 1616681 => 'Dorr, MI', - 1616682 => 'Ada, MI', - 1616685 => 'Grand Rapids, MI', - 1616696 => 'Cedar Springs, MI', - 1616719 => 'Grand Rapids, MI', - 1616726 => 'Grand Rapids, MI', - 1616732 => 'Grand Rapids, MI', - 1616735 => 'Grand Rapids, MI', - 1616738 => 'Holland, MI', - 1616742 => 'Grand Rapids, MI', - 1616748 => 'Zeeland, MI', - 1616752 => 'Grand Rapids, MI', - 1616754 => 'Greenville, MI', - 1616772 => 'Zeeland, MI', - 1616774 => 'Grand Rapids, MI', - 1616776 => 'Grand Rapids, MI', - 1616786 => 'Holland, MI', - 1616791 => 'Grand Rapids, MI', - 1616794 => 'Belding, MI', - 1616796 => 'Holland, MI', - 1616805 => 'Grand Rapids, MI', - 1616819 => 'Grand Rapids, MI', - 1616827 => 'Grand Rapids, MI', - 1616828 => 'Grand Rapids, MI', - 1616831 => 'Grand Rapids, MI', - 1616836 => 'Holland, MI', - 1616837 => 'Coopersville, MI', - 1616842 => 'Grand Haven, MI', - 1616844 => 'Grand Haven, MI', - 1616846 => 'Grand Haven, MI', - 1616847 => 'Grand Haven, MI', - 1616850 => 'Grand Haven, MI', - 1616863 => 'Rockford, MI', - 1616866 => 'Rockford, MI', - 1616868 => 'Alto, MI', - 1616874 => 'Rockford, MI', - 1616877 => 'Wayland, MI', - 1616878 => 'Byron Center, MI', - 1616885 => 'Grand Rapids, MI', - 1616887 => 'Sparta, MI', - 1616891 => 'Caledonia, MI', - 1616892 => 'Allendale Charter Township, MI', - 1616895 => 'Allendale Charter Township, MI', - 1616896 => 'Hudsonville, MI', - 1616897 => 'Lowell, MI', - 1616935 => 'Grand Haven, MI', - 1616940 => 'Grand Rapids, MI', - 1616942 => 'Grand Rapids, MI', - 1616949 => 'Grand Rapids, MI', - 1616954 => 'Grand Rapids, MI', - 1616956 => 'Grand Rapids, MI', - 1616957 => 'Grand Rapids, MI', - 1616974 => 'Grand Rapids, MI', - 1616975 => 'Grand Rapids, MI', - 1616977 => 'Grand Rapids, MI', - 1616988 => 'Grand Rapids, MI', - 1616994 => 'Holland, MI', - 1616997 => 'Coopersville, MI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1617.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1617.php deleted file mode 100644 index 013f518d6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1617.php +++ /dev/null @@ -1,174 +0,0 @@ - 'Massachusetts', - 1617225 => 'Cambridge, MA', - 1617227 => 'Boston, MA', - 1617236 => 'Boston, MA', - 1617241 => 'Charlestown, MA', - 1617242 => 'Charlestown, MA', - 1617243 => 'Newton, MA', - 1617247 => 'Boston, MA', - 1617248 => 'Boston, MA', - 1617253 => 'Cambridge, MA', - 1617261 => 'Boston, MA', - 1617262 => 'Boston, MA', - 1617265 => 'Dorchester, MA', - 1617266 => 'Boston, MA', - 1617267 => 'Boston, MA', - 1617277 => 'Brookline, MA', - 1617282 => 'Dorchester, MA', - 1617284 => 'Somerville, MA', - 1617288 => 'Dorchester, MA', - 1617292 => 'Boston, MA', - 1617294 => 'Everett, MA', - 1617298 => 'Mattapan, MA', - 1617328 => 'Quincy, MA', - 1617330 => 'Boston, MA', - 1617332 => 'Newton, MA', - 1617338 => 'Boston, MA', - 1617342 => 'Boston, MA', - 1617345 => 'Boston, MA', - 1617348 => 'Boston, MA', - 1617349 => 'Cambridge, MA', - 1617350 => 'Boston, MA', - 1617353 => 'Boston, MA', - 1617354 => 'Cambridge, MA', - 1617355 => 'Boston, MA', - 1617357 => 'Boston, MA', - 1617361 => 'Hyde Park, MA', - 1617364 => 'Hyde Park, MA', - 1617367 => 'Boston, MA', - 1617371 => 'Boston, MA', - 1617375 => 'Boston, MA', - 1617376 => 'Quincy, MA', - 1617381 => 'Everett, MA', - 1617387 => 'Everett, MA', - 1617389 => 'Everett, MA', - 1617391 => 'Boston, MA', - 1617394 => 'Everett, MA', - 1617414 => 'Boston, MA', - 1617421 => 'Boston, MA', - 1617422 => 'Boston, MA', - 1617423 => 'Boston, MA', - 1617424 => 'Boston, MA', - 1617425 => 'Boston, MA', - 1617426 => 'Boston, MA', - 1617432 => 'Boston, MA', - 1617436 => 'Dorchester, MA', - 1617437 => 'Boston, MA', - 1617439 => 'Boston, MA', - 1617441 => 'Cambridge, MA', - 1617451 => 'Boston, MA', - 1617466 => 'Chelsea, MA', - 1617471 => 'Quincy, MA', - 1617472 => 'Quincy, MA', - 1617479 => 'Quincy, MA', - 1617482 => 'Boston, MA', - 1617484 => 'Belmont, MA', - 1617489 => 'Belmont, MA', - 1617491 => 'Cambridge, MA', - 1617492 => 'Cambridge, MA', - 1617494 => 'Cambridge, MA', - 1617495 => 'Cambridge, MA', - 1617497 => 'Cambridge, MA', - 1617499 => 'Cambridge, MA', - 1617522 => 'Jamaica Plain, MA', - 1617523 => 'Boston, MA', - 1617524 => 'Jamaica Plain, MA', - 1617525 => 'Boston, MA', - 1617526 => 'Boston, MA', - 1617527 => 'Newton, MA', - 1617536 => 'Boston, MA', - 1617542 => 'Boston, MA', - 1617547 => 'Cambridge, MA', - 1617557 => 'Boston, MA', - 1617558 => 'Newton, MA', - 1617562 => 'Brighton, MA', - 1617566 => 'Brookline, MA', - 1617567 => 'East Boston, MA', - 1617568 => 'East Boston, MA', - 1617569 => 'East Boston, MA', - 1617570 => 'Boston, MA', - 1617573 => 'Boston, MA', - 1617574 => 'Boston, MA', - 1617575 => 'Cambridge, MA', - 1617576 => 'Cambridge, MA', - 1617577 => 'Cambridge, MA', - 1617591 => 'Somerville, MA', - 1617621 => 'Cambridge, MA', - 1617623 => 'Somerville, MA', - 1617625 => 'Somerville, MA', - 1617626 => 'Boston, MA', - 1617628 => 'Somerville, MA', - 1617629 => 'Somerville, MA', - 1617630 => 'Newton, MA', - 1617632 => 'Boston, MA', - 1617636 => 'Boston, MA', - 1617638 => 'Boston, MA', - 1617643 => 'Boston, MA', - 1617661 => 'Cambridge, MA', - 1617665 => 'Cambridge, MA', - 1617666 => 'Somerville, MA', - 1617667 => 'Boston, MA', - 1617695 => 'Boston, MA', - 1617696 => 'Milton, MA', - 1617698 => 'Milton, MA', - 1617714 => 'Cambridge, MA', - 1617718 => 'Somerville, MA', - 1617720 => 'Boston, MA', - 1617722 => 'Boston, MA', - 1617723 => 'Boston, MA', - 1617724 => 'Boston, MA', - 1617726 => 'Boston, MA', - 1617727 => 'Boston, MA', - 1617728 => 'Boston, MA', - 1617731 => 'Brookline, MA', - 1617732 => 'Boston, MA', - 1617734 => 'Brookline, MA', - 1617737 => 'Boston, MA', - 1617738 => 'Brookline, MA', - 1617739 => 'Brookline, MA', - 1617742 => 'Boston, MA', - 1617764 => 'Somerville, MA', - 1617770 => 'Quincy, MA', - 1617773 => 'Quincy, MA', - 1617774 => 'Quincy, MA', - 1617776 => 'Somerville, MA', - 1617778 => 'Boston, MA', - 1617779 => 'Brighton, MA', - 1617786 => 'Quincy, MA', - 1617789 => 'Brighton, MA', - 1617796 => 'Newton, MA', - 1617832 => 'Boston, MA', - 1617846 => 'Winthrop, MA', - 1617847 => 'Quincy, MA', - 1617854 => 'Boston, MA', - 1617855 => 'Belmont, MA', - 1617859 => 'Boston, MA', - 1617864 => 'Cambridge, MA', - 1617868 => 'Cambridge, MA', - 1617876 => 'Cambridge, MA', - 1617879 => 'Brookline, MA', - 1617884 => 'Chelsea, MA', - 1617887 => 'Chelsea, MA', - 1617889 => 'Chelsea, MA', - 1617923 => 'Watertown, MA', - 1617924 => 'Watertown, MA', - 1617926 => 'Watertown, MA', - 1617928 => 'Newton, MA', - 1617934 => 'Quincy, MA', - 1617945 => 'Cambridge, MA', - 1617951 => 'Boston, MA', - 1617964 => 'Newton, MA', - 1617965 => 'Newton, MA', - 1617969 => 'Newton, MA', - 1617971 => 'Jamaica Plain, MA', - 1617972 => 'Watertown, MA', - 1617973 => 'Boston, MA', - 1617983 => 'Jamaica Plain, MA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1618.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1618.php deleted file mode 100644 index f5d441b4d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1618.php +++ /dev/null @@ -1,137 +0,0 @@ - 'Illinois', - 1618222 => 'Belleville, IL', - 1618224 => 'Trenton, IL', - 1618233 => 'Belleville, IL', - 1618234 => 'Belleville, IL', - 1618235 => 'Belleville, IL', - 1618236 => 'Belleville, IL', - 1618239 => 'Belleville, IL', - 1618241 => 'Mount Vernon, IL', - 1618242 => 'Mount Vernon, IL', - 1618244 => 'Mount Vernon, IL', - 1618251 => 'Wood River, IL', - 1618252 => 'Harrisburg, IL', - 1618253 => 'Harrisburg, IL', - 1618254 => 'Wood River, IL', - 1618256 => 'Scott AFB, IL', - 1618257 => 'Belleville, IL', - 1618262 => 'Mount Carmel, IL', - 1618263 => 'Mount Carmel, IL', - 1618271 => 'East St. Louis, IL', - 1618273 => 'Eldorado, IL', - 1618274 => 'East St. Louis, IL', - 1618277 => 'Belleville, IL', - 1618281 => 'Columbia, IL', - 1618282 => 'Red Bud, IL', - 1618283 => 'Vandalia, IL', - 1618286 => 'Dupo, IL', - 1618288 => 'Maryville, IL', - 1618295 => 'Marissa, IL', - 1618307 => 'Edwardsville, IL', - 1618327 => 'Nashville, IL', - 1618343 => 'Collinsville, IL', - 1618344 => 'Collinsville, IL', - 1618345 => 'Collinsville, IL', - 1618346 => 'Collinsville, IL', - 1618351 => 'Carbondale, IL', - 1618355 => 'Belleville, IL', - 1618357 => 'Pinckneyville, IL', - 1618372 => 'Brighton, IL', - 1618375 => 'Grayville, IL', - 1618377 => 'Bethalto, IL', - 1618382 => 'Carmi, IL', - 1618392 => 'Olney, IL', - 1618395 => 'Olney, IL', - 1618416 => 'Belleville, IL', - 1618426 => 'Ava, IL', - 1618435 => 'Benton, IL', - 1618438 => 'Benton, IL', - 1618439 => 'Benton, IL', - 1618443 => 'Sparta, IL', - 1618445 => 'Albion, IL', - 1618451 => 'Granite City, IL', - 1618452 => 'Granite City, IL', - 1618453 => 'Carbondale, IL', - 1618457 => 'Carbondale, IL', - 1618462 => 'Alton, IL', - 1618463 => 'Alton, IL', - 1618465 => 'Alton, IL', - 1618466 => 'Godfrey, IL', - 1618467 => 'Godfrey, IL', - 1618474 => 'Alton, IL', - 1618475 => 'New Athens, IL', - 1618476 => 'Millstadt, IL', - 1618482 => 'East St. Louis, IL', - 1618483 => 'Altamont, IL', - 1618498 => 'Jerseyville, IL', - 1618524 => 'Metropolis, IL', - 1618526 => 'Breese, IL', - 1618529 => 'Carbondale, IL', - 1618532 => 'Centralia, IL', - 1618533 => 'Centralia, IL', - 1618537 => 'Lebanon, IL', - 1618539 => 'Freeburg, IL', - 1618542 => 'Du Quoin, IL', - 1618544 => 'Robinson, IL', - 1618546 => 'Robinson, IL', - 1618548 => 'Salem, IL', - 1618549 => 'Carbondale, IL', - 1618566 => 'Mascoutah, IL', - 1618576 => 'Hardin, IL', - 1618585 => 'Bunker Hill, IL', - 1618588 => 'New Baden, IL', - 1618592 => 'Oblong, IL', - 1618594 => 'Carlyle, IL', - 1618624 => 'O\'Fallon, IL', - 1618632 => 'O\'Fallon, IL', - 1618635 => 'Staunton, IL', - 1618643 => 'McLeansboro, IL', - 1618651 => 'Highland, IL', - 1618654 => 'Highland, IL', - 1618655 => 'Edwardsville, IL', - 1618656 => 'Edwardsville, IL', - 1618658 => 'Vienna, IL', - 1618659 => 'Edwardsville, IL', - 1618662 => 'Flora, IL', - 1618664 => 'Greenville, IL', - 1618665 => 'Louisville, IL', - 1618667 => 'Troy, IL', - 1618684 => 'Murphysboro, IL', - 1618687 => 'Murphysboro, IL', - 1618692 => 'Edwardsville, IL', - 1618724 => 'Christopher, IL', - 1618734 => 'Cairo, IL', - 1618783 => 'Newton, IL', - 1618786 => 'Grafton, IL', - 1618797 => 'Granite City, IL', - 1618826 => 'Chester, IL', - 1618829 => 'St. Elmo, IL', - 1618833 => 'Anna, IL', - 1618842 => 'Fairfield, IL', - 1618874 => 'East St. Louis, IL', - 1618875 => 'East St. Louis, IL', - 1618876 => 'Granite City, IL', - 1618877 => 'Granite City, IL', - 1618893 => 'Cobden, IL', - 1618931 => 'Granite City, IL', - 1618932 => 'West Frankfort, IL', - 1618937 => 'West Frankfort, IL', - 1618939 => 'Waterloo, IL', - 1618942 => 'Herrin, IL', - 1618943 => 'Lawrenceville, IL', - 1618965 => 'Steeleville, IL', - 1618983 => 'Johnston City, IL', - 1618985 => 'Carterville, IL', - 1618988 => 'Herrin, IL', - 1618993 => 'Marion, IL', - 1618995 => 'Goreville, IL', - 1618997 => 'Marion, IL', - 1618998 => 'Marion, IL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1619.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1619.php deleted file mode 100644 index c59465999..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1619.php +++ /dev/null @@ -1,165 +0,0 @@ - 'California', - 1619209 => 'San Diego, CA', - 1619216 => 'Chula Vista, CA', - 1619220 => 'San Diego, CA', - 1619221 => 'San Diego, CA', - 1619222 => 'San Diego, CA', - 1619223 => 'San Diego, CA', - 1619224 => 'San Diego, CA', - 1619225 => 'San Diego, CA', - 1619226 => 'San Diego, CA', - 1619229 => 'San Diego, CA', - 1619230 => 'San Diego, CA', - 1619231 => 'San Diego, CA', - 1619232 => 'San Diego, CA', - 1619233 => 'San Diego, CA', - 1619234 => 'San Diego, CA', - 1619235 => 'San Diego, CA', - 1619236 => 'San Diego, CA', - 1619237 => 'San Diego, CA', - 1619238 => 'San Diego, CA', - 1619239 => 'San Diego, CA', - 1619255 => 'San Diego, CA', - 1619258 => 'Santee, CA', - 1619260 => 'San Diego, CA', - 1619262 => 'San Diego, CA', - 1619263 => 'San Diego, CA', - 1619264 => 'San Diego, CA', - 1619265 => 'San Diego, CA', - 1619266 => 'San Diego, CA', - 1619269 => 'San Diego, CA', - 1619271 => 'Chula Vista, CA', - 1619275 => 'San Diego, CA', - 1619276 => 'San Diego, CA', - 1619278 => 'San Diego, CA', - 1619280 => 'San Diego, CA', - 1619281 => 'San Diego, CA', - 1619282 => 'San Diego, CA', - 1619283 => 'San Diego, CA', - 1619284 => 'San Diego, CA', - 1619285 => 'San Diego, CA', - 1619286 => 'San Diego, CA', - 1619287 => 'San Diego, CA', - 1619291 => 'San Diego, CA', - 1619293 => 'San Diego, CA', - 1619294 => 'San Diego, CA', - 1619295 => 'San Diego, CA', - 1619296 => 'San Diego, CA', - 1619297 => 'San Diego, CA', - 1619298 => 'San Diego, CA', - 1619299 => 'San Diego, CA', - 1619325 => 'San Diego, CA', - 1619334 => 'El Cajon, CA', - 1619336 => 'National City, CA', - 1619338 => 'San Diego, CA', - 1619390 => 'Lakeside, CA', - 1619397 => 'Chula Vista, CA', - 1619398 => 'San Diego, CA', - 1619400 => 'San Diego, CA', - 1619401 => 'El Cajon, CA', - 1619409 => 'Chula Vista, CA', - 1619420 => 'Chula Vista, CA', - 1619421 => 'Chula Vista, CA', - 1619422 => 'Chula Vista, CA', - 1619425 => 'Chula Vista, CA', - 1619426 => 'Chula Vista, CA', - 1619427 => 'Chula Vista, CA', - 1619428 => 'San Ysidro, CA', - 1619435 => 'Coronado, CA', - 1619437 => 'Coronado, CA', - 1619440 => 'El Cajon, CA', - 1619441 => 'El Cajon, CA', - 1619442 => 'El Cajon, CA', - 1619443 => 'Lakeside, CA', - 1619444 => 'El Cajon, CA', - 1619445 => 'Alpine, CA', - 1619446 => 'San Diego, CA', - 1619447 => 'El Cajon, CA', - 1619448 => 'Santee, CA', - 1619449 => 'Santee, CA', - 1619450 => 'San Diego, CA', - 1619460 => 'La Mesa, CA', - 1619462 => 'La Mesa, CA', - 1619466 => 'La Mesa, CA', - 1619471 => 'San Diego, CA', - 1619474 => 'National City, CA', - 1619476 => 'Chula Vista, CA', - 1619477 => 'National City, CA', - 1619482 => 'Chula Vista, CA', - 1619497 => 'San Diego, CA', - 1619498 => 'Chula Vista, CA', - 1619501 => 'San Diego, CA', - 1619515 => 'San Diego, CA', - 1619516 => 'San Diego, CA', - 1619521 => 'San Diego, CA', - 1619522 => 'Coronado, CA', - 1619523 => 'San Diego, CA', - 1619525 => 'San Diego, CA', - 1619527 => 'San Diego, CA', - 1619528 => 'San Diego, CA', - 1619531 => 'San Diego, CA', - 1619532 => 'San Diego, CA', - 1619542 => 'San Diego, CA', - 1619543 => 'San Diego, CA', - 1619544 => 'San Diego, CA', - 1619546 => 'San Diego, CA', - 1619556 => 'San Diego, CA', - 1619557 => 'San Diego, CA', - 1619561 => 'Lakeside, CA', - 1619562 => 'Santee, CA', - 1619563 => 'San Diego, CA', - 1619564 => 'San Diego, CA', - 1619574 => 'San Diego, CA', - 1619579 => 'El Cajon, CA', - 1619582 => 'San Diego, CA', - 1619583 => 'San Diego, CA', - 1619584 => 'San Diego, CA', - 1619585 => 'Chula Vista, CA', - 1619588 => 'El Cajon, CA', - 1619589 => 'La Mesa, CA', - 1619590 => 'El Cajon, CA', - 1619591 => 'Chula Vista, CA', - 1619593 => 'El Cajon, CA', - 1619594 => 'San Diego, CA', - 1619595 => 'San Diego, CA', - 1619596 => 'Santee, CA', - 1619615 => 'San Diego, CA', - 1619640 => 'San Diego, CA', - 1619641 => 'San Diego, CA', - 1619644 => 'La Mesa, CA', - 1619656 => 'Chula Vista, CA', - 1619659 => 'Alpine, CA', - 1619661 => 'San Diego, CA', - 1619662 => 'San Diego, CA', - 1619667 => 'La Mesa, CA', - 1619668 => 'La Mesa, CA', - 1619669 => 'Jamul, CA', - 1619671 => 'San Diego, CA', - 1619677 => 'San Diego, CA', - 1619683 => 'San Diego, CA', - 1619688 => 'San Diego, CA', - 1619691 => 'Chula Vista, CA', - 1619692 => 'San Diego, CA', - 1619696 => 'San Diego, CA', - 1619697 => 'La Mesa, CA', - 1619698 => 'La Mesa, CA', - 1619702 => 'San Diego, CA', - 1619710 => 'San Diego, CA', - 1619722 => 'Alpine, CA', - 1619740 => 'La Mesa, CA', - 1619749 => 'El Cajon, CA', - 1619758 => 'San Diego, CA', - 1619794 => 'San Diego, CA', - 1619795 => 'San Diego, CA', - 1619849 => 'San Diego, CA', - 1619881 => 'San Diego, CA', - 1619934 => 'Chula Vista, CA', - 1619955 => 'San Diego, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1620.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1620.php deleted file mode 100644 index 07123b954..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1620.php +++ /dev/null @@ -1,106 +0,0 @@ - 'Kansas', - 1620221 => 'Winfield, KS', - 1620223 => 'Fort Scott, KS', - 1620225 => 'Dodge City, KS', - 1620227 => 'Dodge City, KS', - 1620231 => 'Pittsburg, KS', - 1620232 => 'Pittsburg, KS', - 1620235 => 'Pittsburg, KS', - 1620241 => 'McPherson, KS', - 1620244 => 'Erie, KS', - 1620245 => 'McPherson, KS', - 1620249 => 'Pittsburg, KS', - 1620251 => 'Coffeyville, KS', - 1620257 => 'Lyons, KS', - 1620259 => 'Hutchinson, KS', - 1620271 => 'Garden City, KS', - 1620272 => 'Garden City, KS', - 1620273 => 'Cottonwood Falls, KS', - 1620275 => 'Garden City, KS', - 1620276 => 'Garden City, KS', - 1620277 => 'Holcomb, KS', - 1620278 => 'Sterling, KS', - 1620285 => 'Larned, KS', - 1620325 => 'Neodesha, KS', - 1620326 => 'Wellington, KS', - 1620327 => 'Hesston, KS', - 1620331 => 'Independence, KS', - 1620332 => 'Independence, KS', - 1620336 => 'Cherryvale, KS', - 1620340 => 'Emporia, KS', - 1620341 => 'Emporia, KS', - 1620342 => 'Emporia, KS', - 1620343 => 'Emporia, KS', - 1620345 => 'Moundridge, KS', - 1620347 => 'Arma, KS', - 1620355 => 'Lakin, KS', - 1620356 => 'Ulysses, KS', - 1620357 => 'Jetmore, KS', - 1620364 => 'Burlington, KS', - 1620365 => 'Iola, KS', - 1620375 => 'Leoti, KS', - 1620376 => 'Tribune, KS', - 1620378 => 'Fredonia, KS', - 1620382 => 'Marion, KS', - 1620384 => 'Syracuse, KS', - 1620397 => 'Dighton, KS', - 1620421 => 'Parsons, KS', - 1620429 => 'Columbus, KS', - 1620431 => 'Chanute, KS', - 1620441 => 'Arkansas City, KS', - 1620442 => 'Arkansas City, KS', - 1620456 => 'Conway Springs, KS', - 1620465 => 'Haven, KS', - 1620473 => 'Humboldt, KS', - 1620488 => 'Belle Plaine, KS', - 1620492 => 'Johnson City, KS', - 1620532 => 'Kingman, KS', - 1620544 => 'Hugoton, KS', - 1620549 => 'St. John, KS', - 1620563 => 'Plains, KS', - 1620564 => 'Ellinwood, KS', - 1620582 => 'Coldwater, KS', - 1620583 => 'Eureka, KS', - 1620584 => 'Clearwater, KS', - 1620585 => 'Inman, KS', - 1620624 => 'Liberal, KS', - 1620625 => 'Yates Center, KS', - 1620626 => 'Liberal, KS', - 1620635 => 'Ashland, KS', - 1620653 => 'Hoisington, KS', - 1620659 => 'Kinsley, KS', - 1620662 => 'Hutchinson, KS', - 1620663 => 'Hutchinson, KS', - 1620664 => 'Hutchinson, KS', - 1620665 => 'Hutchinson, KS', - 1620669 => 'Hutchinson, KS', - 1620672 => 'Pratt, KS', - 1620675 => 'Sublette, KS', - 1620694 => 'Hutchinson, KS', - 1620697 => 'Elkhart, KS', - 1620723 => 'Greensburg, KS', - 1620724 => 'Girard, KS', - 1620725 => 'Sedan, KS', - 1620767 => 'Council Grove, KS', - 1620783 => 'Galena, KS', - 1620792 => 'Great Bend, KS', - 1620793 => 'Great Bend, KS', - 1620795 => 'Oswego, KS', - 1620825 => 'Kiowa, KS', - 1620842 => 'Anthony, KS', - 1620855 => 'Cimarron, KS', - 1620856 => 'Baxter Springs, KS', - 1620872 => 'Scott City, KS', - 1620873 => 'Meade, KS', - 1620879 => 'Caney, KS', - 1620886 => 'Medicine Lodge, KS', - 1620896 => 'Harper, KS', - 1620947 => 'Hillsboro, KS', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1623.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1623.php deleted file mode 100644 index 2fa756366..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1623.php +++ /dev/null @@ -1,41 +0,0 @@ - 'Arizona', - 1623245 => 'Phoenix, AZ', - 1623247 => 'Phoenix, AZ', - 1623386 => 'Buckeye, AZ', - 1623434 => 'Phoenix, AZ', - 1623435 => 'Glendale, AZ', - 1623445 => 'Phoenix, AZ', - 1623463 => 'Glendale, AZ', - 1623516 => 'Phoenix, AZ', - 1623561 => 'Glendale, AZ', - 1623580 => 'Phoenix, AZ', - 1623581 => 'Phoenix, AZ', - 1623582 => 'Phoenix, AZ', - 1623587 => 'Phoenix, AZ', - 1623691 => 'Phoenix, AZ', - 1623773 => 'Peoria, AZ', - 1623780 => 'Phoenix, AZ', - 1623842 => 'Glendale, AZ', - 1623845 => 'Phoenix, AZ', - 1623846 => 'Phoenix, AZ', - 1623847 => 'Glendale, AZ', - 1623848 => 'Phoenix, AZ', - 1623849 => 'Phoenix, AZ', - 1623869 => 'Phoenix, AZ', - 1623873 => 'Phoenix, AZ', - 1623879 => 'Phoenix, AZ', - 1623915 => 'Glendale, AZ', - 1623930 => 'Glendale, AZ', - 1623931 => 'Glendale, AZ', - 1623934 => 'Glendale, AZ', - 1623937 => 'Glendale, AZ', - 1623939 => 'Glendale, AZ', - 1623977 => 'Sun City, AZ', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1626.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1626.php deleted file mode 100644 index a793e5f61..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1626.php +++ /dev/null @@ -1,101 +0,0 @@ - 'California', - 1626229 => 'Pasadena, CA', - 1626254 => 'Arcadia, CA', - 1626281 => 'Alhambra, CA', - 1626282 => 'Alhambra, CA', - 1626284 => 'Alhambra, CA', - 1626289 => 'Alhambra, CA', - 1626293 => 'Alhambra, CA', - 1626294 => 'Arcadia, CA', - 1626296 => 'Pasadena, CA', - 1626300 => 'Alhambra, CA', - 1626303 => 'Monrovia, CA', - 1626304 => 'Pasadena, CA', - 1626305 => 'Monrovia, CA', - 1626308 => 'Alhambra, CA', - 1626331 => 'Covina, CA', - 1626332 => 'Covina, CA', - 1626334 => 'Azusa, CA', - 1626335 => 'Glendora, CA', - 1626337 => 'Baldwin Park, CA', - 1626339 => 'Covina, CA', - 1626345 => 'Pasadena, CA', - 1626350 => 'El Monte, CA', - 1626351 => 'Pasadena, CA', - 1626355 => 'Sierra Madre, CA', - 1626356 => 'Pasadena, CA', - 1626357 => 'Monrovia, CA', - 1626358 => 'Monrovia, CA', - 1626396 => 'Pasadena, CA', - 1626397 => 'Pasadena, CA', - 1626398 => 'Pasadena, CA', - 1626403 => 'South Pasadena, CA', - 1626405 => 'Pasadena, CA', - 1626432 => 'Pasadena, CA', - 1626440 => 'Pasadena, CA', - 1626441 => 'South Pasadena, CA', - 1626442 => 'El Monte, CA', - 1626443 => 'El Monte, CA', - 1626444 => 'El Monte, CA', - 1626445 => 'Arcadia, CA', - 1626446 => 'Arcadia, CA', - 1626447 => 'Arcadia, CA', - 1626448 => 'El Monte, CA', - 1626449 => 'Pasadena, CA', - 1626452 => 'El Monte, CA', - 1626453 => 'El Monte, CA', - 1626454 => 'El Monte, CA', - 1626457 => 'Alhambra, CA', - 1626458 => 'Alhambra, CA', - 1626462 => 'Arcadia, CA', - 1626564 => 'Pasadena, CA', - 1626568 => 'Pasadena, CA', - 1626570 => 'Alhambra, CA', - 1626574 => 'Arcadia, CA', - 1626576 => 'Alhambra, CA', - 1626577 => 'Pasadena, CA', - 1626578 => 'Pasadena, CA', - 1626579 => 'El Monte, CA', - 1626583 => 'Pasadena, CA', - 1626584 => 'Pasadena, CA', - 1626585 => 'Pasadena, CA', - 1626599 => 'Monrovia, CA', - 1626683 => 'Pasadena, CA', - 1626732 => 'Covina, CA', - 1626744 => 'Pasadena, CA', - 1626765 => 'Pasadena, CA', - 1626791 => 'Pasadena, CA', - 1626792 => 'Pasadena, CA', - 1626793 => 'Pasadena, CA', - 1626794 => 'Pasadena, CA', - 1626795 => 'Pasadena, CA', - 1626796 => 'Pasadena, CA', - 1626797 => 'Pasadena, CA', - 1626798 => 'Pasadena, CA', - 1626799 => 'South Pasadena, CA', - 1626812 => 'Azusa, CA', - 1626815 => 'Azusa, CA', - 1626821 => 'Arcadia, CA', - 1626844 => 'Pasadena, CA', - 1626852 => 'Glendora, CA', - 1626857 => 'Glendora, CA', - 1626858 => 'Covina, CA', - 1626859 => 'Covina, CA', - 1626914 => 'Glendora, CA', - 1626915 => 'Covina, CA', - 1626917 => 'La Puente, CA', - 1626919 => 'West Covina, CA', - 1626943 => 'Alhambra, CA', - 1626963 => 'Glendora, CA', - 1626966 => 'Covina, CA', - 1626967 => 'Covina, CA', - 1626969 => 'Azusa, CA', - 1626974 => 'Covina, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1628.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1628.php deleted file mode 100644 index b59f053e9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1628.php +++ /dev/null @@ -1,9 +0,0 @@ - 'California', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1629.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1629.php deleted file mode 100644 index 4872c5433..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1629.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tennessee', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1630.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1630.php deleted file mode 100644 index b1dbd587f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1630.php +++ /dev/null @@ -1,150 +0,0 @@ - 'Illinois', - 1630208 => 'Geneva, IL', - 1630226 => 'Bolingbrook, IL', - 1630229 => 'Aurora, IL', - 1630231 => 'West Chicago, IL', - 1630232 => 'Geneva, IL', - 1630236 => 'Aurora, IL', - 1630238 => 'Bensenville, IL', - 1630243 => 'Lemont, IL', - 1630250 => 'Itasca, IL', - 1630257 => 'Lemont, IL', - 1630260 => 'Wheaton, IL', - 1630262 => 'Geneva, IL', - 1630264 => 'Aurora, IL', - 1630275 => 'Downers Grove, IL', - 1630279 => 'Elmhurst, IL', - 1630285 => 'Itasca, IL', - 1630293 => 'West Chicago, IL', - 1630305 => 'Naperville, IL', - 1630340 => 'Aurora, IL', - 1630350 => 'Bensenville, IL', - 1630355 => 'Naperville, IL', - 1630357 => 'Naperville, IL', - 1630365 => 'Elburn, IL', - 1630368 => 'Oak Brook, IL', - 1630369 => 'Naperville, IL', - 1630375 => 'Aurora, IL', - 1630377 => 'St. Charles, IL', - 1630378 => 'Bolingbrook, IL', - 1630393 => 'Warrenville, IL', - 1630406 => 'Batavia, IL', - 1630416 => 'Naperville, IL', - 1630420 => 'Naperville, IL', - 1630422 => 'Bensenville, IL', - 1630428 => 'Naperville, IL', - 1630443 => 'St. Charles, IL', - 1630444 => 'St. Charles, IL', - 1630458 => 'Addison, IL', - 1630462 => 'Wheaton, IL', - 1630466 => 'Sugar Grove, IL', - 1630469 => 'Glen Ellyn, IL', - 1630482 => 'Batavia, IL', - 1630495 => 'Lombard, IL', - 1630499 => 'Aurora, IL', - 1630505 => 'Naperville, IL', - 1630513 => 'St. Charles, IL', - 1630521 => 'Bensenville, IL', - 1630527 => 'Naperville, IL', - 1630530 => 'Elmhurst, IL', - 1630543 => 'Addison, IL', - 1630545 => 'Glen Ellyn, IL', - 1630548 => 'Naperville, IL', - 1630551 => 'Oswego, IL', - 1630552 => 'Plano, IL', - 1630553 => 'Yorkville, IL', - 1630554 => 'Oswego, IL', - 1630556 => 'Big Rock, IL', - 1630562 => 'West Chicago, IL', - 1630571 => 'Oak Brook, IL', - 1630572 => 'Oak Brook, IL', - 1630573 => 'Oak Brook, IL', - 1630574 => 'Oak Brook, IL', - 1630575 => 'Oak Brook, IL', - 1630579 => 'Naperville, IL', - 1630584 => 'St. Charles, IL', - 1630585 => 'Aurora, IL', - 1630587 => 'St. Charles, IL', - 1630595 => 'Bensenville, IL', - 1630616 => 'Bensenville, IL', - 1630617 => 'Elmhurst, IL', - 1630620 => 'Lombard, IL', - 1630627 => 'Lombard, IL', - 1630628 => 'Addison, IL', - 1630629 => 'Lombard, IL', - 1630637 => 'Naperville, IL', - 1630653 => 'Wheaton, IL', - 1630665 => 'Wheaton, IL', - 1630668 => 'Wheaton, IL', - 1630679 => 'Bolingbrook, IL', - 1630681 => 'Wheaton, IL', - 1630682 => 'Wheaton, IL', - 1630692 => 'Aurora, IL', - 1630717 => 'Naperville, IL', - 1630718 => 'Naperville, IL', - 1630719 => 'Downers Grove, IL', - 1630739 => 'Bolingbrook, IL', - 1630752 => 'Wheaton, IL', - 1630758 => 'Elmhurst, IL', - 1630759 => 'Bolingbrook, IL', - 1630761 => 'Batavia, IL', - 1630762 => 'St. Charles, IL', - 1630766 => 'Bensenville, IL', - 1630769 => 'Downers Grove, IL', - 1630771 => 'Bolingbrook, IL', - 1630773 => 'Itasca, IL', - 1630778 => 'Naperville, IL', - 1630782 => 'Elmhurst, IL', - 1630783 => 'Bolingbrook, IL', - 1630787 => 'Bensenville, IL', - 1630790 => 'Glen Ellyn, IL', - 1630801 => 'Aurora, IL', - 1630820 => 'Aurora, IL', - 1630832 => 'Elmhurst, IL', - 1630833 => 'Elmhurst, IL', - 1630834 => 'Elmhurst, IL', - 1630836 => 'Warrenville, IL', - 1630844 => 'Aurora, IL', - 1630845 => 'Geneva, IL', - 1630848 => 'Naperville, IL', - 1630851 => 'Aurora, IL', - 1630856 => 'Hinsdale, IL', - 1630858 => 'Glen Ellyn, IL', - 1630859 => 'Aurora, IL', - 1630860 => 'Bensenville, IL', - 1630876 => 'West Chicago, IL', - 1630879 => 'Batavia, IL', - 1630882 => 'Yorkville, IL', - 1630892 => 'Aurora, IL', - 1630896 => 'Aurora, IL', - 1630897 => 'Aurora, IL', - 1630898 => 'Aurora, IL', - 1630904 => 'Naperville, IL', - 1630906 => 'Aurora, IL', - 1630907 => 'Aurora, IL', - 1630916 => 'Lombard, IL', - 1630922 => 'Naperville, IL', - 1630928 => 'Oak Brook, IL', - 1630932 => 'Lombard, IL', - 1630933 => 'Winfield, IL', - 1630941 => 'Elmhurst, IL', - 1630942 => 'Glen Ellyn, IL', - 1630954 => 'Oak Brook, IL', - 1630960 => 'Downers Grove, IL', - 1630961 => 'Naperville, IL', - 1630966 => 'Aurora, IL', - 1630968 => 'Downers Grove, IL', - 1630969 => 'Downers Grove, IL', - 1630972 => 'Bolingbrook, IL', - 1630978 => 'Aurora, IL', - 1630983 => 'Naperville, IL', - 1630990 => 'Oak Brook, IL', - 1630993 => 'Elmhurst, IL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1631.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1631.php deleted file mode 100644 index 52963918b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1631.php +++ /dev/null @@ -1,99 +0,0 @@ - 'New York', - 1631204 => 'Southampton, NY', - 1631206 => 'Bay Shore, NY', - 1631208 => 'Riverhead, NY', - 1631225 => 'Lindenhurst, NY', - 1631226 => 'Lindenhurst, NY', - 1631242 => 'Deer Park, NY', - 1631243 => 'Deer Park, NY', - 1631249 => 'Farmingdale, NY', - 1631254 => 'Deer Park, NY', - 1631259 => 'Southampton, NY', - 1631261 => 'Northport, NY', - 1631264 => 'Amityville, NY', - 1631265 => 'Smithtown, NY', - 1631266 => 'East Northport, NY', - 1631267 => 'Amagansett, NY', - 1631269 => 'Kings Park, NY', - 1631273 => 'Brentwood, NY', - 1631274 => 'Deer Park, NY', - 1631283 => 'Southampton, NY', - 1631287 => 'Southampton, NY', - 1631293 => 'Farmingdale, NY', - 1631298 => 'Mattituck, NY', - 1631324 => 'East Hampton, NY', - 1631328 => 'Bay Shore, NY', - 1631329 => 'East Hampton, NY', - 1631351 => 'Huntington, NY', - 1631360 => 'Smithtown, NY', - 1631363 => 'Blue Point, NY', - 1631368 => 'East Northport, NY', - 1631369 => 'Riverhead, NY', - 1631376 => 'West Islip, NY', - 1631392 => 'Deer Park, NY', - 1631420 => 'Farmingdale, NY', - 1631427 => 'Huntington, NY', - 1631462 => 'Commack, NY', - 1631465 => 'Melville, NY', - 1631472 => 'Bayport, NY', - 1631475 => 'Patchogue, NY', - 1631477 => 'Greenport, NY', - 1631499 => 'Commack, NY', - 1631537 => 'Bridgehampton, NY', - 1631543 => 'Commack, NY', - 1631544 => 'Kings Park, NY', - 1631569 => 'Patchogue, NY', - 1631583 => 'Ocean Beach, NY', - 1631584 => 'St. James, NY', - 1631586 => 'Deer Park, NY', - 1631591 => 'Riverhead, NY', - 1631592 => 'Lindenhurst, NY', - 1631595 => 'Deer Park, NY', - 1631598 => 'Amityville, NY', - 1631604 => 'East Hampton, NY', - 1631608 => 'Amityville, NY', - 1631632 => 'Stony Brook, NY', - 1631647 => 'Bay Shore, NY', - 1631653 => 'Quogue, NY', - 1631665 => 'Bay Shore, NY', - 1631666 => 'Bay Shore, NY', - 1631667 => 'Deer Park, NY', - 1631668 => 'Montauk, NY', - 1631687 => 'Patchogue, NY', - 1631691 => 'Amityville, NY', - 1631694 => 'Farmingdale, NY', - 1631723 => 'Hampton Bays, NY', - 1631725 => 'Sag Harbor, NY', - 1631726 => 'Water Mill, NY', - 1631727 => 'Riverhead, NY', - 1631728 => 'Hampton Bays, NY', - 1631734 => 'Cutchogue, NY', - 1631738 => 'Ronkonkoma, NY', - 1631749 => 'Shelter Island, NY', - 1631752 => 'Farmingdale, NY', - 1631753 => 'Farmingdale, NY', - 1631765 => 'Southold, NY', - 1631789 => 'Amityville, NY', - 1631841 => 'Amityville, NY', - 1631842 => 'Copiague, NY', - 1631858 => 'Commack, NY', - 1631863 => 'Smithtown, NY', - 1631864 => 'Commack, NY', - 1631884 => 'Lindenhurst, NY', - 1631907 => 'East Hampton, NY', - 1631929 => 'Wading River, NY', - 1631940 => 'Deer Park, NY', - 1631941 => 'Setauket- East Setauket, NY', - 1631956 => 'Lindenhurst, NY', - 1631957 => 'Lindenhurst, NY', - 1631968 => 'Bay Shore, NY', - 1631969 => 'Bay Shore, NY', - 1631991 => 'Lindenhurst, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1636.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1636.php deleted file mode 100644 index 6dc1cf243..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1636.php +++ /dev/null @@ -1,81 +0,0 @@ - 'Missouri', - 1636230 => 'Ballwin, MO', - 1636239 => 'Washington, MO', - 1636240 => 'O\'Fallon, MO', - 1636256 => 'Ballwin, MO', - 1636257 => 'Pacific, MO', - 1636271 => 'Pacific, MO', - 1636272 => 'O\'Fallon, MO', - 1636274 => 'Cedar Hill, MO', - 1636278 => 'St. Peters, MO', - 1636279 => 'St. Peters, MO', - 1636281 => 'O\'Fallon, MO', - 1636282 => 'Arnold, MO', - 1636285 => 'Cedar Hill, MO', - 1636287 => 'Arnold, MO', - 1636294 => 'O\'Fallon, MO', - 1636296 => 'Arnold, MO', - 1636305 => 'Fenton, MO', - 1636326 => 'Fenton, MO', - 1636327 => 'Wentzville, MO', - 1636332 => 'Wentzville, MO', - 1636337 => 'De Soto, MO', - 1636343 => 'Fenton, MO', - 1636349 => 'Fenton, MO', - 1636376 => 'High Ridge, MO', - 1636379 => 'O\'Fallon, MO', - 1636390 => 'Washington, MO', - 1636397 => 'St. Peters, MO', - 1636433 => 'Marthasville, MO', - 1636456 => 'Warrenton, MO', - 1636462 => 'Troy, MO', - 1636475 => 'Pevely, MO', - 1636479 => 'Pevely, MO', - 1636493 => 'St. Charles, MO', - 1636496 => 'Fenton, MO', - 1636519 => 'Chesterfield, MO', - 1636527 => 'Ballwin, MO', - 1636528 => 'Troy, MO', - 1636530 => 'Chesterfield, MO', - 1636532 => 'Chesterfield, MO', - 1636536 => 'Chesterfield, MO', - 1636537 => 'Chesterfield, MO', - 1636583 => 'Union, MO', - 1636584 => 'Union, MO', - 1636586 => 'De Soto, MO', - 1636587 => 'Eureka, MO', - 1636625 => 'Lake Saint Louis, MO', - 1636629 => 'Saint Clair, MO', - 1636639 => 'Wentzville, MO', - 1636671 => 'House Springs, MO', - 1636677 => 'High Ridge, MO', - 1636717 => 'Fenton, MO', - 1636723 => 'St. Charles, MO', - 1636724 => 'St. Charles, MO', - 1636728 => 'Chesterfield, MO', - 1636745 => 'Wright City, MO', - 1636789 => 'Hillsboro, MO', - 1636797 => 'Hillsboro, MO', - 1636887 => 'Wentzville, MO', - 1636916 => 'St. Charles, MO', - 1636922 => 'St. Peters, MO', - 1636925 => 'St. Charles, MO', - 1636931 => 'Festus, MO', - 1636933 => 'Festus, MO', - 1636937 => 'Festus, MO', - 1636938 => 'Eureka, MO', - 1636940 => 'St. Charles, MO', - 1636946 => 'St. Charles, MO', - 1636947 => 'St. Charles, MO', - 1636949 => 'St. Charles, MO', - 1636970 => 'St. Peters, MO', - 1636978 => 'O\'Fallon, MO', - 1636980 => 'O\'Fallon, MO', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1639.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1639.php deleted file mode 100644 index ba43e4107..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1639.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Saskatchewan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1641.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1641.php deleted file mode 100644 index 67cf2a20f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1641.php +++ /dev/null @@ -1,73 +0,0 @@ - 'Iowa', - 1641209 => 'Fairfield, IA', - 1641228 => 'Charles City, IA', - 1641236 => 'Grinnell, IA', - 1641259 => 'Monroe, IA', - 1641322 => 'Corning, IA', - 1641324 => 'Northwood, IA', - 1641333 => 'Lenox, IA', - 1641342 => 'Osceola, IA', - 1641357 => 'Clear Lake, IA', - 1641366 => 'Conrad, IA', - 1641394 => 'New Hampton, IA', - 1641421 => 'Mason City, IA', - 1641422 => 'Mason City, IA', - 1641423 => 'Mason City, IA', - 1641424 => 'Mason City, IA', - 1641435 => 'Nashua, IA', - 1641437 => 'Centerville, IA', - 1641444 => 'Belmond, IA', - 1641446 => 'Leon, IA', - 1641456 => 'Hampton, IA', - 1641464 => 'Mount Ayr, IA', - 1641469 => 'Fairfield, IA', - 1641472 => 'Fairfield, IA', - 1641473 => 'Gladbrook, IA', - 1641484 => 'Toledo, IA', - 1641522 => 'Brooklyn, IA', - 1641585 => 'Forest City, IA', - 1641592 => 'Lake Mills, IA', - 1641594 => 'Sully, IA', - 1641622 => 'Sigourney, IA', - 1641623 => 'Montezuma, IA', - 1641628 => 'Pella, IA', - 1641637 => 'New Sharon, IA', - 1641648 => 'Iowa Falls, IA', - 1641664 => 'Bloomfield, IA', - 1641672 => 'Oskaloosa, IA', - 1641673 => 'Oskaloosa, IA', - 1641682 => 'Ottumwa, IA', - 1641683 => 'Ottumwa, IA', - 1641684 => 'Ottumwa, IA', - 1641732 => 'Osage, IA', - 1641743 => 'Greenfield, IA', - 1641747 => 'Guthrie Center, IA', - 1641752 => 'Marshalltown, IA', - 1641753 => 'Marshalltown, IA', - 1641754 => 'Marshalltown, IA', - 1641755 => 'Panora, IA', - 1641774 => 'Chariton, IA', - 1641782 => 'Creston, IA', - 1641784 => 'Lamoni, IA', - 1641791 => 'Newton, IA', - 1641792 => 'Newton, IA', - 1641822 => 'Rockwell, IA', - 1641828 => 'Knoxville, IA', - 1641842 => 'Knoxville, IA', - 1641843 => 'Britt, IA', - 1641847 => 'Ackley, IA', - 1641856 => 'Centerville, IA', - 1641858 => 'Eldora, IA', - 1641872 => 'Corydon, IA', - 1641923 => 'Garner, IA', - 1641932 => 'Albia, IA', - 1641939 => 'Eldora, IA', - 1641985 => 'Riceville, IA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1646.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1646.php deleted file mode 100644 index 713c82784..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1646.php +++ /dev/null @@ -1,18 +0,0 @@ - 'New York', - 1646237 => 'New York, NY', - 1646336 => 'New York, NY', - 1646434 => 'New York, NY', - 1646476 => 'New York, NY', - 1646486 => 'New York, NY', - 1646559 => 'New York, NY', - 1646613 => 'New York, NY', - 1646638 => 'New York, NY', - 1646672 => 'New York, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1647.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1647.php deleted file mode 100644 index e5c4aaf86..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1647.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ontario', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1649.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1649.php deleted file mode 100644 index 7c0916848..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1649.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Providenciales', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1650.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1650.php deleted file mode 100644 index 33e33c4bf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1650.php +++ /dev/null @@ -1,107 +0,0 @@ - 'California', - 1650212 => 'San Mateo, CA', - 1650216 => 'Redwood City, CA', - 1650233 => 'Menlo Park, CA', - 1650253 => 'Mountain View, CA', - 1650259 => 'Burlingame, CA', - 1650261 => 'Redwood City, CA', - 1650289 => 'Palo Alto, CA', - 1650298 => 'Redwood City, CA', - 1650299 => 'Redwood City, CA', - 1650301 => 'Daly City, CA', - 1650306 => 'Redwood City, CA', - 1650312 => 'San Mateo, CA', - 1650321 => 'Palo Alto, CA', - 1650327 => 'Palo Alto, CA', - 1650328 => 'Palo Alto, CA', - 1650329 => 'Palo Alto, CA', - 1650341 => 'San Mateo, CA', - 1650342 => 'San Mateo, CA', - 1650345 => 'San Mateo, CA', - 1650349 => 'San Mateo, CA', - 1650355 => 'Pacifica, CA', - 1650359 => 'Pacifica, CA', - 1650361 => 'Redwood City, CA', - 1650363 => 'Redwood City, CA', - 1650364 => 'Redwood City, CA', - 1650365 => 'Redwood City, CA', - 1650366 => 'Redwood City, CA', - 1650367 => 'Redwood City, CA', - 1650368 => 'Redwood City, CA', - 1650369 => 'Redwood City, CA', - 1650424 => 'Palo Alto, CA', - 1650458 => 'San Mateo, CA', - 1650493 => 'Palo Alto, CA', - 1650494 => 'Palo Alto, CA', - 1650497 => 'Palo Alto, CA', - 1650508 => 'San Carlos, CA', - 1650522 => 'San Mateo, CA', - 1650525 => 'San Mateo, CA', - 1650548 => 'San Mateo, CA', - 1650556 => 'Redwood City, CA', - 1650559 => 'Los Altos, CA', - 1650568 => 'Redwood City, CA', - 1650570 => 'San Mateo, CA', - 1650571 => 'San Mateo, CA', - 1650572 => 'San Mateo, CA', - 1650573 => 'San Mateo, CA', - 1650574 => 'San Mateo, CA', - 1650578 => 'San Mateo, CA', - 1650591 => 'San Carlos, CA', - 1650592 => 'San Carlos, CA', - 1650593 => 'San Carlos, CA', - 1650594 => 'San Carlos, CA', - 1650595 => 'San Carlos, CA', - 1650599 => 'Redwood City, CA', - 1650625 => 'Mountain View, CA', - 1650631 => 'San Carlos, CA', - 1650637 => 'San Carlos, CA', - 1650638 => 'San Mateo, CA', - 1650691 => 'Mountain View, CA', - 1650692 => 'Burlingame, CA', - 1650701 => 'Redwood City, CA', - 1650712 => 'Half Moon Bay, CA', - 1650721 => 'Redwood City, CA', - 1650723 => 'Stanford, CA', - 1650726 => 'Half Moon Bay, CA', - 1650738 => 'Pacifica, CA', - 1650742 => 'South San Francisco, CA', - 1650755 => 'Daly City, CA', - 1650756 => 'Daly City, CA', - 1650757 => 'Daly City, CA', - 1650758 => 'Daly City, CA', - 1650780 => 'Redwood City, CA', - 1650802 => 'San Carlos, CA', - 1650839 => 'Redwood City, CA', - 1650853 => 'Palo Alto, CA', - 1650854 => 'Menlo Park, CA', - 1650856 => 'Palo Alto, CA', - 1650858 => 'Palo Alto, CA', - 1650878 => 'Daly City, CA', - 1650879 => 'Pescadero, CA', - 1650903 => 'Mountain View, CA', - 1650938 => 'Mountain View, CA', - 1650940 => 'Mountain View, CA', - 1650941 => 'Los Altos, CA', - 1650947 => 'Los Altos, CA', - 1650948 => 'Los Altos, CA', - 1650949 => 'Los Altos, CA', - 1650960 => 'Mountain View, CA', - 1650961 => 'Mountain View, CA', - 1650962 => 'Mountain View, CA', - 1650964 => 'Mountain View, CA', - 1650965 => 'Mountain View, CA', - 1650967 => 'Mountain View, CA', - 1650968 => 'Mountain View, CA', - 1650969 => 'Mountain View, CA', - 1650991 => 'Daly City, CA', - 1650992 => 'Daly City, CA', - 1650994 => 'Daly City, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1651.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1651.php deleted file mode 100644 index 2de8f17d6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1651.php +++ /dev/null @@ -1,86 +0,0 @@ - 'Minnesota', - 1651207 => 'Saint Paul, MN', - 1651209 => 'Saint Paul, MN', - 1651220 => 'Saint Paul, MN', - 1651221 => 'Saint Paul, MN', - 1651222 => 'Saint Paul, MN', - 1651224 => 'Saint Paul, MN', - 1651225 => 'Saint Paul, MN', - 1651227 => 'Saint Paul, MN', - 1651228 => 'Saint Paul, MN', - 1651254 => 'Saint Paul, MN', - 1651266 => 'Saint Paul, MN', - 1651267 => 'Red Wing, MN', - 1651275 => 'Stillwater, MN', - 1651288 => 'Saint Paul, MN', - 1651290 => 'Saint Paul, MN', - 1651291 => 'Saint Paul, MN', - 1651292 => 'Saint Paul, MN', - 1651293 => 'Saint Paul, MN', - 1651296 => 'Saint Paul, MN', - 1651297 => 'Saint Paul, MN', - 1651298 => 'Saint Paul, MN', - 1651312 => 'Saint Paul, MN', - 1651322 => 'Rosemount, MN', - 1651326 => 'Saint Paul, MN', - 1651330 => 'Saint Paul, MN', - 1651340 => 'Saint Paul, MN', - 1651342 => 'Stillwater, MN', - 1651345 => 'Lake City, MN', - 1651351 => 'Stillwater, MN', - 1651385 => 'Red Wing, MN', - 1651388 => 'Red Wing, MN', - 1651406 => 'Eagan, MN', - 1651423 => 'Rosemount, MN', - 1651430 => 'Stillwater, MN', - 1651437 => 'Hastings, MN', - 1651438 => 'Hastings, MN', - 1651439 => 'Stillwater, MN', - 1651452 => 'Eagan, MN', - 1651454 => 'Eagan, MN', - 1651458 => 'Cottage Grove, MN', - 1651459 => 'Cottage Grove, MN', - 1651460 => 'Farmington, MN', - 1651462 => 'Wyoming, MN', - 1651463 => 'Farmington, MN', - 1651464 => 'Forest Lake, MN', - 1651480 => 'Hastings, MN', - 1651487 => 'Saint Paul, MN', - 1651488 => 'Saint Paul, MN', - 1651489 => 'Saint Paul, MN', - 1651493 => 'Saint Paul, MN', - 1651528 => 'Saint Paul, MN', - 1651565 => 'Wabasha, MN', - 1651602 => 'Saint Paul, MN', - 1651603 => 'Saint Paul, MN', - 1651641 => 'Saint Paul, MN', - 1651642 => 'Saint Paul, MN', - 1651644 => 'Saint Paul, MN', - 1651645 => 'Saint Paul, MN', - 1651646 => 'Saint Paul, MN', - 1651647 => 'Saint Paul, MN', - 1651674 => 'North Branch, MN', - 1651683 => 'Eagan, MN', - 1651686 => 'Eagan, MN', - 1651690 => 'Saint Paul, MN', - 1651696 => 'Saint Paul, MN', - 1651698 => 'Saint Paul, MN', - 1651699 => 'Saint Paul, MN', - 1651756 => 'Saint Paul, MN', - 1651771 => 'Saint Paul, MN', - 1651772 => 'Saint Paul, MN', - 1651774 => 'Saint Paul, MN', - 1651776 => 'Saint Paul, MN', - 1651789 => 'Saint Paul, MN', - 1651793 => 'Saint Paul, MN', - 1651917 => 'Saint Paul, MN', - 1651923 => 'Goodhue, MN', - 1651999 => 'Saint Paul, MN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1657.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1657.php deleted file mode 100644 index 6ab1943ab..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1657.php +++ /dev/null @@ -1,9 +0,0 @@ - 'California', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1660.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1660.php deleted file mode 100644 index 87bea2757..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1660.php +++ /dev/null @@ -1,62 +0,0 @@ - 'Missouri', - 1660248 => 'Fayette, MO', - 1660258 => 'Brookfield, MO', - 1660259 => 'Lexington, MO', - 1660263 => 'Moberly, MO', - 1660265 => 'Milan, MO', - 1660269 => 'Moberly, MO', - 1660277 => 'Huntsville, MO', - 1660327 => 'Paris, MO', - 1660335 => 'Sweet Springs, MO', - 1660338 => 'Glasgow, MO', - 1660359 => 'Trenton, MO', - 1660376 => 'Marceline, MO', - 1660385 => 'Macon, MO', - 1660388 => 'Salisbury, MO', - 1660397 => 'Edina, MO', - 1660425 => 'Bethany, MO', - 1660429 => 'Warrensburg, MO', - 1660433 => 'Tipton, MO', - 1660438 => 'Warsaw, MO', - 1660442 => 'Mound City, MO', - 1660446 => 'Oregon, MO', - 1660463 => 'Concordia, MO', - 1660465 => 'Memphis, MO', - 1660542 => 'Carrollton, MO', - 1660547 => 'Lincoln, MO', - 1660562 => 'Maryville, MO', - 1660563 => 'Knob Noster, MO', - 1660582 => 'Maryville, MO', - 1660584 => 'Higginsville, MO', - 1660626 => 'Kirksville, MO', - 1660627 => 'Kirksville, MO', - 1660646 => 'Chillicothe, MO', - 1660647 => 'Windsor, MO', - 1660663 => 'Gallatin, MO', - 1660665 => 'Kirksville, MO', - 1660668 => 'Cole Camp, MO', - 1660679 => 'Butler, MO', - 1660726 => 'Albany, MO', - 1660727 => 'Kahoka, MO', - 1660736 => 'Tarkio, MO', - 1660744 => 'Rock Port, MO', - 1660747 => 'Warrensburg, MO', - 1660748 => 'Princeton, MO', - 1660783 => 'Stanberry, MO', - 1660785 => 'Kirksville, MO', - 1660826 => 'Sedalia, MO', - 1660827 => 'Sedalia, MO', - 1660829 => 'Sedalia, MO', - 1660831 => 'Marshall, MO', - 1660882 => 'Boonville, MO', - 1660885 => 'Clinton, MO', - 1660886 => 'Marshall, MO', - 1660947 => 'Unionville, MO', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1661.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1661.php deleted file mode 100644 index b47fbc217..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1661.php +++ /dev/null @@ -1,113 +0,0 @@ - 'California', - 1661213 => 'Bakersfield, CA', - 1661245 => 'Frazier Park, CA', - 1661248 => 'Lebec, CA', - 1661252 => 'Canyon Country, CA', - 1661256 => 'Rosamond, CA', - 1661263 => 'Santa Clarita, CA', - 1661264 => 'Palmdale, CA', - 1661265 => 'Palmdale, CA', - 1661266 => 'Palmdale, CA', - 1661267 => 'Palmdale, CA', - 1661268 => 'Santa Clarita, CA', - 1661269 => 'Acton, CA', - 1661272 => 'Palmdale, CA', - 1661273 => 'Palmdale, CA', - 1661274 => 'Palmdale, CA', - 1661285 => 'Palmdale, CA', - 1661294 => 'Valencia, CA', - 1661295 => 'Valencia, CA', - 1661296 => 'Santa Clarita, CA', - 1661297 => 'Santa Clarita, CA', - 1661298 => 'Canyon Country, CA', - 1661321 => 'Bakersfield, CA', - 1661322 => 'Bakersfield, CA', - 1661323 => 'Bakersfield, CA', - 1661324 => 'Bakersfield, CA', - 1661325 => 'Bakersfield, CA', - 1661326 => 'Bakersfield, CA', - 1661327 => 'Bakersfield, CA', - 1661328 => 'Bakersfield, CA', - 1661334 => 'Bakersfield, CA', - 1661363 => 'Bakersfield, CA', - 1661366 => 'Bakersfield, CA', - 1661377 => 'Bakersfield, CA', - 1661387 => 'Bakersfield, CA', - 1661391 => 'Bakersfield, CA', - 1661392 => 'Bakersfield, CA', - 1661393 => 'Bakersfield, CA', - 1661395 => 'Bakersfield, CA', - 1661396 => 'Bakersfield, CA', - 1661397 => 'Bakersfield, CA', - 1661398 => 'Bakersfield, CA', - 1661399 => 'Bakersfield, CA', - 1661424 => 'Canyon Country, CA', - 1661513 => 'Santa Clarita, CA', - 1661533 => 'Palmdale, CA', - 1661538 => 'Palmdale, CA', - 1661575 => 'Palmdale, CA', - 1661587 => 'Bakersfield, CA', - 1661588 => 'Bakersfield, CA', - 1661589 => 'Bakersfield, CA', - 1661631 => 'Bakersfield, CA', - 1661633 => 'Bakersfield, CA', - 1661634 => 'Bakersfield, CA', - 1661663 => 'Bakersfield, CA', - 1661664 => 'Bakersfield, CA', - 1661665 => 'Bakersfield, CA', - 1661702 => 'Valencia, CA', - 1661718 => 'Lancaster, CA', - 1661721 => 'Delano, CA', - 1661722 => 'Lancaster, CA', - 1661723 => 'Lancaster, CA', - 1661725 => 'Delano, CA', - 1661726 => 'Lancaster, CA', - 1661729 => 'Lancaster, CA', - 1661746 => 'Shafter, CA', - 1661758 => 'Wasco, CA', - 1661763 => 'Taft, CA', - 1661764 => 'Buttonwillow, CA', - 1661765 => 'Taft, CA', - 1661775 => 'Valencia, CA', - 1661792 => 'McFarland, CA', - 1661822 => 'Tehachapi, CA', - 1661823 => 'Tehachapi, CA', - 1661824 => 'Mojave, CA', - 1661827 => 'Bakersfield, CA', - 1661829 => 'Bakersfield, CA', - 1661831 => 'Bakersfield, CA', - 1661832 => 'Bakersfield, CA', - 1661833 => 'Bakersfield, CA', - 1661834 => 'Bakersfield, CA', - 1661835 => 'Bakersfield, CA', - 1661836 => 'Bakersfield, CA', - 1661837 => 'Bakersfield, CA', - 1661845 => 'Lamont, CA', - 1661854 => 'Arvin, CA', - 1661858 => 'Bakersfield, CA', - 1661859 => 'Bakersfield, CA', - 1661861 => 'Bakersfield, CA', - 1661864 => 'Bakersfield, CA', - 1661868 => 'Bakersfield, CA', - 1661869 => 'Bakersfield, CA', - 1661871 => 'Bakersfield, CA', - 1661872 => 'Bakersfield, CA', - 1661873 => 'Bakersfield, CA', - 1661940 => 'Lancaster, CA', - 1661942 => 'Lancaster, CA', - 1661943 => 'Lancaster, CA', - 1661944 => 'Littlerock, CA', - 1661945 => 'Lancaster, CA', - 1661946 => 'Lancaster, CA', - 1661947 => 'Palmdale, CA', - 1661948 => 'Lancaster, CA', - 1661949 => 'Lancaster, CA', - 1661951 => 'Lancaster, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1662.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1662.php deleted file mode 100644 index da65c6395..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1662.php +++ /dev/null @@ -1,114 +0,0 @@ - 'Mississippi', - 1662205 => 'Tupelo, MS', - 1662223 => 'Walnut, MS', - 1662224 => 'Ashland, MS', - 1662226 => 'Grenada, MS', - 1662227 => 'Grenada, MS', - 1662232 => 'Oxford, MS', - 1662234 => 'Oxford, MS', - 1662236 => 'Oxford, MS', - 1662237 => 'Carrollton, MS', - 1662241 => 'Columbus, MS', - 1662244 => 'Columbus, MS', - 1662247 => 'Belzoni, MS', - 1662252 => 'Holly Springs, MS', - 1662253 => 'Southaven, MS', - 1662254 => 'Itta Bena, MS', - 1662256 => 'Amory, MS', - 1662257 => 'Amory, MS', - 1662258 => 'Eupora, MS', - 1662269 => 'Tupelo, MS', - 1662280 => 'Southaven, MS', - 1662281 => 'Oxford, MS', - 1662283 => 'Winona, MS', - 1662285 => 'Ackerman, MS', - 1662286 => 'Corinth, MS', - 1662287 => 'Corinth, MS', - 1662289 => 'Kosciusko, MS', - 1662320 => 'Starkville, MS', - 1662323 => 'Starkville, MS', - 1662324 => 'Starkville, MS', - 1662325 => 'Miss State, MS', - 1662326 => 'Marks, MS', - 1662327 => 'Columbus, MS', - 1662328 => 'Columbus, MS', - 1662329 => 'Columbus, MS', - 1662332 => 'Greenville, MS', - 1662334 => 'Greenville, MS', - 1662335 => 'Greenville, MS', - 1662342 => 'Southaven, MS', - 1662349 => 'Southaven, MS', - 1662363 => 'Tunica, MS', - 1662365 => 'Baldwyn, MS', - 1662369 => 'Aberdeen, MS', - 1662377 => 'Tupelo, MS', - 1662378 => 'Greenville, MS', - 1662393 => 'Southaven, MS', - 1662423 => 'Iuka, MS', - 1662429 => 'Hernando, MS', - 1662434 => 'Columbus, MS', - 1662447 => 'Okolona, MS', - 1662449 => 'Hernando, MS', - 1662453 => 'Greenwood, MS', - 1662454 => 'Belmont, MS', - 1662455 => 'Greenwood, MS', - 1662456 => 'Houston, MS', - 1662473 => 'Water Valley, MS', - 1662487 => 'Sardis, MS', - 1662488 => 'Pontotoc, MS', - 1662489 => 'Pontotoc, MS', - 1662494 => 'West Point, MS', - 1662513 => 'Oxford, MS', - 1662534 => 'New Albany, MS', - 1662536 => 'Southaven, MS', - 1662538 => 'New Albany, MS', - 1662562 => 'Senatobia, MS', - 1662563 => 'Batesville, MS', - 1662566 => 'Verona, MS', - 1662578 => 'Batesville, MS', - 1662620 => 'Tupelo, MS', - 1662622 => 'Coldwater, MS', - 1662624 => 'Clarksdale, MS', - 1662627 => 'Clarksdale, MS', - 1662628 => 'Calhoun City, MS', - 1662647 => 'Charleston, MS', - 1662653 => 'Durant, MS', - 1662680 => 'Tupelo, MS', - 1662686 => 'Leland, MS', - 1662720 => 'Booneville, MS', - 1662726 => 'Macon, MS', - 1662728 => 'Booneville, MS', - 1662745 => 'Drew, MS', - 1662746 => 'Yazoo City, MS', - 1662756 => 'Ruleville, MS', - 1662759 => 'Rosedale, MS', - 1662767 => 'Shannon, MS', - 1662773 => 'Louisville, MS', - 1662781 => 'Walls, MS', - 1662827 => 'Hollandale, MS', - 1662834 => 'Lexington, MS', - 1662837 => 'Ripley, MS', - 1662838 => 'Byhalia, MS', - 1662840 => 'Tupelo, MS', - 1662841 => 'Tupelo, MS', - 1662842 => 'Tupelo, MS', - 1662843 => 'Cleveland, MS', - 1662844 => 'Tupelo, MS', - 1662846 => 'Cleveland, MS', - 1662862 => 'Fulton, MS', - 1662869 => 'Saltillo, MS', - 1662873 => 'Rolling Fork, MS', - 1662887 => 'Indianola, MS', - 1662890 => 'Olive Branch, MS', - 1662893 => 'Olive Branch, MS', - 1662895 => 'Olive Branch, MS', - 1662963 => 'Nettleton, MS', - 1662983 => 'Bruce, MS', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1667.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1667.php deleted file mode 100644 index b720c7b37..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1667.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Maryland', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1669.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1669.php deleted file mode 100644 index ef7726640..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1669.php +++ /dev/null @@ -1,9 +0,0 @@ - 'California', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1671.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1671.php deleted file mode 100644 index 32538caa8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1671.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tamuning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1678.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1678.php deleted file mode 100644 index eb1e59ee9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1678.php +++ /dev/null @@ -1,81 +0,0 @@ - 'Georgia', - 1678208 => 'Cumming, GA', - 1678225 => 'Lawrenceville, GA', - 1678284 => 'Stockbridge, GA', - 1678289 => 'Stockbridge, GA', - 1678290 => 'Marietta, GA', - 1678297 => 'Alpharetta, GA', - 1678312 => 'Lawrenceville, GA', - 1678319 => 'Alpharetta, GA', - 1678342 => 'Covington, GA', - 1678344 => 'Snellville, GA', - 1678352 => 'Roswell, GA', - 1678363 => 'Dallas, GA', - 1678364 => 'Peachtree City, GA', - 1678366 => 'Alpharetta, GA', - 1678376 => 'Lawrenceville, GA', - 1678377 => 'Lawrenceville, GA', - 1678393 => 'Alpharetta, GA', - 1678407 => 'Lawrenceville, GA', - 1678413 => 'Conyers, GA', - 1678417 => 'Duluth, GA', - 1678421 => 'Norcross, GA', - 1678422 => 'Morrow, GA', - 1678423 => 'Newnan, GA', - 1678425 => 'Winder, GA', - 1678432 => 'McDonough, GA', - 1678442 => 'Lawrenceville, GA', - 1678445 => 'Woodstock, GA', - 1678450 => 'Gainesville, GA', - 1678455 => 'Cumming, GA', - 1678456 => 'Cumming, GA', - 1678461 => 'Roswell, GA', - 1678473 => 'Duluth, GA', - 1678474 => 'Duluth, GA', - 1678476 => 'Stone Mountain, GA', - 1678479 => 'Jonesboro, GA', - 1678493 => 'Canton, GA', - 1678494 => 'Woodstock, GA', - 1678513 => 'Cumming, GA', - 1678526 => 'Lithonia, GA', - 1678560 => 'Marietta, GA', - 1678565 => 'Stockbridge, GA', - 1678566 => 'Alpharetta, GA', - 1678574 => 'Acworth, GA', - 1678581 => 'Marietta, GA', - 1678583 => 'McDonough, GA', - 1678584 => 'Duluth, GA', - 1678624 => 'Alpharetta, GA', - 1678625 => 'Covington, GA', - 1678688 => 'Griffin, GA', - 1678705 => 'Atlanta, GA', - 1678712 => 'Covington, GA', - 1678715 => 'Douglasville, GA', - 1678721 => 'Cartersville, GA', - 1678732 => 'Atlanta, GA', - 1678762 => 'Alpharetta, GA', - 1678795 => 'Roswell, GA', - 1678807 => 'Cumming, GA', - 1678817 => 'Fayetteville, GA', - 1678838 => 'Douglasville, GA', - 1678840 => 'Villa Rica, GA', - 1678847 => 'Lawrenceville, GA', - 1678867 => 'Alpharetta, GA', - 1678880 => 'Canton, GA', - 1678904 => 'Atlanta, GA', - 1678947 => 'Cumming, GA', - 1678957 => 'Duluth, GA', - 1678963 => 'Winder, GA', - 1678965 => 'Cumming, GA', - 1678971 => 'Gainesville, GA', - 1678973 => 'Atlanta, GA', - 1678974 => 'Atlanta, GA', - 1678985 => 'Lawrenceville, GA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1682.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1682.php deleted file mode 100644 index 69c3fba7e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1682.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Texas', - 1682518 => 'Mansfield, TX', - 1682622 => 'Mansfield, TX', - 1682647 => 'Fort Worth, TX', - 1682885 => 'Fort Worth, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/17.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/17.php new file mode 100644 index 000000000..eb9bb311f --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/17.php @@ -0,0 +1,5272 @@ + 'North Dakota', + 1701221 => 'Bismarck, ND', + 1701222 => 'Bismarck, ND', + 1701223 => 'Bismarck, ND', + 1701224 => 'Bismarck, ND', + 1701225 => 'Dickinson, ND', + 1701227 => 'Dickinson, ND', + 1701228 => 'Bottineau, ND', + 1701232 => 'Fargo, ND', + 1701234 => 'Fargo, ND', + 1701235 => 'Fargo, ND', + 1701237 => 'Fargo, ND', + 1701239 => 'Fargo, ND', + 1701241 => 'Fargo, ND', + 1701242 => 'Hankinson, ND', + 1701250 => 'Bismarck, ND', + 1701251 => 'Jamestown, ND', + 1701252 => 'Jamestown, ND', + 1701253 => 'Jamestown, ND', + 1701254 => 'Linton, ND', + 1701255 => 'Bismarck, ND', + 1701256 => 'Langdon, ND', + 1701258 => 'Bismarck, ND', + 1701265 => 'Cavalier, ND', + 1701271 => 'Fargo, ND', + 1701280 => 'Fargo, ND', + 1701284 => 'Park River, ND', + 1701288 => 'Ashley, ND', + 1701293 => 'Fargo, ND', + 1701297 => 'Fargo, ND', + 1701298 => 'Fargo, ND', + 1701323 => 'Bismarck, ND', + 1701324 => 'Harvey, ND', + 1701328 => 'Bismarck, ND', + 1701347 => 'Casselton, ND', + 1701349 => 'Ellendale, ND', + 1701352 => 'Grafton, ND', + 1701355 => 'Bismarck, ND', + 1701356 => 'Fargo, ND', + 1701364 => 'Fargo, ND', + 1701365 => 'Fargo, ND', + 1701385 => 'Kenmare, ND', + 1701400 => 'Bismarck, ND', + 1701437 => 'Enderlin, ND', + 1701448 => 'Turtle Lake, ND', + 1701452 => 'Wishek, ND', + 1701454 => 'Drayton, ND', + 1701456 => 'Dickinson, ND', + 1701462 => 'Washburn, ND', + 1701463 => 'Garrison, ND', + 1701476 => 'Fargo, ND', + 1701477 => 'Rolla, ND', + 1701478 => 'Fargo, ND', + 1701483 => 'Dickinson, ND', + 1701523 => 'Bowman, ND', + 1701530 => 'Bismarck, ND', + 1701549 => 'Walhalla, ND', + 1701567 => 'Hettinger, ND', + 1701572 => 'Williston, ND', + 1701575 => 'Belfield, ND', + 1701577 => 'Williston, ND', + 1701584 => 'Elgin, ND', + 1701627 => 'New Town, ND', + 1701628 => 'Stanley, ND', + 1701636 => 'Hillsboro, ND', + 1701642 => 'Wahpeton, ND', + 1701652 => 'Carrington, ND', + 1701662 => 'Devils Lake, ND', + 1701663 => 'Mandan, ND', + 1701664 => 'Tioga, ND', + 1701667 => 'Mandan, ND', + 1701683 => 'Lisbon, ND', + 1701724 => 'Forman, ND', + 1701738 => 'Grand Forks, ND', + 1701742 => 'Oakes, ND', + 1701746 => 'Grand Forks, ND', + 1701748 => 'Hazen, ND', + 1701751 => 'Bismarck, ND', + 1701756 => 'Mohall, ND', + 1701757 => 'Grand Forks, ND', + 1701764 => 'Killdeer, ND', + 1701766 => 'Fort Totten, ND', + 1701772 => 'Grand Forks, ND', + 1701774 => 'Williston, ND', + 1701775 => 'Grand Forks, ND', + 1701776 => 'Rugby, ND', + 1701777 => 'Grand Forks, ND', + 1701780 => 'Grand Forks, ND', + 1701786 => 'Mayville, ND', + 1701788 => 'Mayville, ND', + 1701794 => 'Center, ND', + 1701795 => 'Grand Forks, ND', + 1701797 => 'Cooperstown, ND', + 1701799 => 'Fargo, ND', + 1701833 => 'Minot, ND', + 1701837 => 'Minot, ND', + 1701838 => 'Minot, ND', + 1701839 => 'Minot, ND', + 1701842 => 'Watford City, ND', + 1701843 => 'New Salem, ND', + 1701845 => 'Valley City, ND', + 1701852 => 'Minot, ND', + 1701854 => 'Fort Yates, ND', + 1701857 => 'Minot, ND', + 1701858 => 'Minot, ND', + 1701872 => 'Beach, ND', + 1701873 => 'Beulah, ND', + 1701883 => 'LaMoure, ND', + 1701947 => 'New Rockford, ND', + 1701952 => 'Jamestown, ND', + 1701965 => 'Crosby, ND', + 1701968 => 'Cando, ND', + 1702 => 'Nevada', + 1702202 => 'Las Vegas, NV', + 1702207 => 'Las Vegas, NV', + 1702212 => 'Las Vegas, NV', + 1702214 => 'Las Vegas, NV', + 1702216 => 'Las Vegas, NV', + 1702220 => 'Las Vegas, NV', + 1702221 => 'Las Vegas, NV', + 1702222 => 'Las Vegas, NV', + 1702227 => 'Las Vegas, NV', + 1702228 => 'Las Vegas, NV', + 1702229 => 'Las Vegas, NV', + 1702233 => 'Las Vegas, NV', + 1702240 => 'Las Vegas, NV', + 1702242 => 'Las Vegas, NV', + 1702243 => 'Las Vegas, NV', + 1702247 => 'Las Vegas, NV', + 1702248 => 'Las Vegas, NV', + 1702251 => 'Las Vegas, NV', + 1702252 => 'Las Vegas, NV', + 1702253 => 'Las Vegas, NV', + 1702254 => 'Las Vegas, NV', + 1702255 => 'Las Vegas, NV', + 1702256 => 'Las Vegas, NV', + 1702257 => 'Las Vegas, NV', + 1702258 => 'Las Vegas, NV', + 1702259 => 'Las Vegas, NV', + 1702260 => 'Las Vegas, NV', + 1702261 => 'Las Vegas, NV', + 1702262 => 'Las Vegas, NV', + 1702263 => 'Las Vegas, NV', + 1702267 => 'Henderson, NV', + 1702269 => 'Las Vegas, NV', + 1702270 => 'Las Vegas, NV', + 1702272 => 'Las Vegas, NV', + 1702284 => 'Las Vegas, NV', + 1702293 => 'Boulder City, NV', + 1702294 => 'Boulder City, NV', + 1702298 => 'Laughlin, NV', + 1702304 => 'Las Vegas, NV', + 1702307 => 'Las Vegas, NV', + 1702309 => 'Las Vegas, NV', + 1702312 => 'Las Vegas, NV', + 1702313 => 'Las Vegas, NV', + 1702320 => 'Las Vegas, NV', + 1702331 => 'Las Vegas, NV', + 1702333 => 'Las Vegas, NV', + 1702341 => 'Las Vegas, NV', + 1702345 => 'Mesquite, NV', + 1702346 => 'Mesquite, NV', + 1702360 => 'Las Vegas, NV', + 1702361 => 'Las Vegas, NV', + 1702362 => 'Las Vegas, NV', + 1702363 => 'Las Vegas, NV', + 1702364 => 'Las Vegas, NV', + 1702365 => 'Las Vegas, NV', + 1702366 => 'Las Vegas, NV', + 1702367 => 'Las Vegas, NV', + 1702368 => 'Las Vegas, NV', + 1702369 => 'Las Vegas, NV', + 1702380 => 'Las Vegas, NV', + 1702382 => 'Las Vegas, NV', + 1702383 => 'Las Vegas, NV', + 1702384 => 'Las Vegas, NV', + 1702385 => 'Las Vegas, NV', + 1702386 => 'Las Vegas, NV', + 1702387 => 'Las Vegas, NV', + 1702388 => 'Las Vegas, NV', + 1702395 => 'Las Vegas, NV', + 1702396 => 'Las Vegas, NV', + 1702397 => 'Overton, NV', + 1702399 => 'North Las Vegas, NV', + 1702405 => 'Las Vegas, NV', + 1702407 => 'Las Vegas, NV', + 1702410 => 'Las Vegas, NV', + 1702413 => 'Las Vegas, NV', + 1702425 => 'Las Vegas, NV', + 1702431 => 'Las Vegas, NV', + 1702432 => 'Las Vegas, NV', + 1702433 => 'Las Vegas, NV', + 1702434 => 'Las Vegas, NV', + 1702435 => 'Las Vegas, NV', + 1702436 => 'Las Vegas, NV', + 1702437 => 'Las Vegas, NV', + 1702438 => 'Las Vegas, NV', + 1702444 => 'Las Vegas, NV', + 1702445 => 'Las Vegas, NV', + 1702448 => 'Las Vegas, NV', + 1702450 => 'Las Vegas, NV', + 1702451 => 'Las Vegas, NV', + 1702452 => 'Las Vegas, NV', + 1702453 => 'Las Vegas, NV', + 1702455 => 'Las Vegas, NV', + 1702456 => 'Las Vegas, NV', + 1702457 => 'Las Vegas, NV', + 1702458 => 'Las Vegas, NV', + 1702459 => 'Las Vegas, NV', + 1702460 => 'Las Vegas, NV', + 1702462 => 'Las Vegas, NV', + 1702463 => 'Las Vegas, NV', + 1702471 => 'Las Vegas, NV', + 1702472 => 'Las Vegas, NV', + 1702473 => 'Las Vegas, NV', + 1702474 => 'Las Vegas, NV', + 1702475 => 'Las Vegas, NV', + 1702476 => 'Las Vegas, NV', + 1702477 => 'Las Vegas, NV', + 1702478 => 'Las Vegas, NV', + 1702483 => 'Las Vegas, NV', + 1702485 => 'Las Vegas, NV', + 1702486 => 'Las Vegas, NV', + 1702487 => 'Las Vegas, NV', + 1702489 => 'Las Vegas, NV', + 1702515 => 'Las Vegas, NV', + 1702522 => 'Las Vegas, NV', + 1702525 => 'Las Vegas, NV', + 1702531 => 'Las Vegas, NV', + 1702538 => 'Las Vegas, NV', + 1702541 => 'Las Vegas, NV', + 1702547 => 'Las Vegas, NV', + 1702558 => 'Henderson, NV', + 1702562 => 'Las Vegas, NV', + 1702564 => 'Henderson, NV', + 1702565 => 'Henderson, NV', + 1702566 => 'Henderson, NV', + 1702567 => 'Henderson, NV', + 1702568 => 'Henderson, NV', + 1702570 => 'Las Vegas, NV', + 1702577 => 'Las Vegas, NV', + 1702579 => 'Las Vegas, NV', + 1702586 => 'Las Vegas, NV', + 1702597 => 'Las Vegas, NV', + 1702598 => 'Las Vegas, NV', + 1702629 => 'Las Vegas, NV', + 1702631 => 'Las Vegas, NV', + 1702632 => 'Las Vegas, NV', + 1702633 => 'North Las Vegas, NV', + 1702636 => 'Las Vegas, NV', + 1702637 => 'Las Vegas, NV', + 1702638 => 'Las Vegas, NV', + 1702639 => 'North Las Vegas, NV', + 1702641 => 'Las Vegas, NV', + 1702642 => 'North Las Vegas, NV', + 1702643 => 'Las Vegas, NV', + 1702644 => 'Las Vegas, NV', + 1702645 => 'Las Vegas, NV', + 1702646 => 'Las Vegas, NV', + 1702647 => 'Las Vegas, NV', + 1702648 => 'Las Vegas, NV', + 1702649 => 'North Las Vegas, NV', + 1702650 => 'Las Vegas, NV', + 1702651 => 'Las Vegas, NV', + 1702653 => 'Nellis AFB, NV', + 1702655 => 'Las Vegas, NV', + 1702656 => 'Las Vegas, NV', + 1702657 => 'North Las Vegas, NV', + 1702658 => 'Las Vegas, NV', + 1702671 => 'Las Vegas, NV', + 1702685 => 'Las Vegas, NV', + 1702693 => 'Las Vegas, NV', + 1702696 => 'Las Vegas, NV', + 1702697 => 'Las Vegas, NV', + 1702699 => 'Las Vegas, NV', + 1702722 => 'Las Vegas, NV', + 1702727 => 'Las Vegas, NV', + 1702731 => 'Las Vegas, NV', + 1702732 => 'Las Vegas, NV', + 1702733 => 'Las Vegas, NV', + 1702734 => 'Las Vegas, NV', + 1702735 => 'Las Vegas, NV', + 1702736 => 'Las Vegas, NV', + 1702737 => 'Las Vegas, NV', + 1702739 => 'Las Vegas, NV', + 1702740 => 'Las Vegas, NV', + 1702765 => 'Las Vegas, NV', + 1702768 => 'Las Vegas, NV', + 1702776 => 'Las Vegas, NV', + 1702778 => 'Las Vegas, NV', + 1702784 => 'Las Vegas, NV', + 1702791 => 'Las Vegas, NV', + 1702792 => 'Las Vegas, NV', + 1702794 => 'Las Vegas, NV', + 1702795 => 'Las Vegas, NV', + 1702796 => 'Las Vegas, NV', + 1702798 => 'Las Vegas, NV', + 1702799 => 'Las Vegas, NV', + 1702804 => 'Las Vegas, NV', + 1702818 => 'Las Vegas, NV', + 1702822 => 'Las Vegas, NV', + 1702823 => 'Las Vegas, NV', + 1702834 => 'Las Vegas, NV', + 1702835 => 'Las Vegas, NV', + 1702836 => 'Las Vegas, NV', + 1702837 => 'Las Vegas, NV', + 1702838 => 'Las Vegas, NV', + 1702839 => 'Las Vegas, NV', + 1702851 => 'Las Vegas, NV', + 1702853 => 'Las Vegas, NV', + 1702856 => 'Henderson, NV', + 1702862 => 'Las Vegas, NV', + 1702866 => 'Las Vegas, NV', + 1702868 => 'Las Vegas, NV', + 1702869 => 'Las Vegas, NV', + 1702870 => 'Las Vegas, NV', + 1702871 => 'Las Vegas, NV', + 1702873 => 'Las Vegas, NV', + 1702876 => 'Las Vegas, NV', + 1702877 => 'Las Vegas, NV', + 1702878 => 'Las Vegas, NV', + 1702880 => 'Las Vegas, NV', + 1702889 => 'Las Vegas, NV', + 1702891 => 'Las Vegas, NV', + 1702892 => 'Las Vegas, NV', + 1702893 => 'Las Vegas, NV', + 1702894 => 'Las Vegas, NV', + 1702895 => 'Las Vegas, NV', + 1702914 => 'Las Vegas, NV', + 1702932 => 'Las Vegas, NV', + 1702933 => 'Las Vegas, NV', + 1702938 => 'Las Vegas, NV', + 1702939 => 'Las Vegas, NV', + 1702940 => 'Las Vegas, NV', + 1702942 => 'Las Vegas, NV', + 1702944 => 'Las Vegas, NV', + 1702947 => 'Las Vegas, NV', + 1702948 => 'Las Vegas, NV', + 1702949 => 'Las Vegas, NV', + 1702951 => 'Las Vegas, NV', + 1702952 => 'Las Vegas, NV', + 1702966 => 'Las Vegas, NV', + 1702967 => 'Las Vegas, NV', + 1702968 => 'Las Vegas, NV', + 1702979 => 'Las Vegas, NV', + 1702982 => 'Las Vegas, NV', + 1702997 => 'Las Vegas, NV', + 1702998 => 'Las Vegas, NV', + 1703 => 'Virginia', + 1703212 => 'Alexandria, VA', + 1703218 => 'Fairfax, VA', + 1703221 => 'Dumfries, VA', + 1703228 => 'Arlington, VA', + 1703237 => 'Falls Church, VA', + 1703241 => 'Falls Church, VA', + 1703242 => 'Vienna, VA', + 1703243 => 'Arlington, VA', + 1703246 => 'Fairfax, VA', + 1703248 => 'Arlington, VA', + 1703249 => 'Burke, VA', + 1703255 => 'Vienna, VA', + 1703257 => 'Manassas, VA', + 1703263 => 'Chantilly, VA', + 1703266 => 'Centreville, VA', + 1703271 => 'Arlington, VA', + 1703273 => 'Fairfax, VA', + 1703276 => 'Arlington, VA', + 1703277 => 'Fairfax, VA', + 1703278 => 'Fairfax, VA', + 1703281 => 'Vienna, VA', + 1703299 => 'Alexandria, VA', + 1703313 => 'Alexandria, VA', + 1703319 => 'Vienna, VA', + 1703321 => 'Springfield, VA', + 1703324 => 'Fairfax, VA', + 1703329 => 'Alexandria, VA', + 1703330 => 'Manassas, VA', + 1703331 => 'Manassas, VA', + 1703335 => 'Manassas, VA', + 1703339 => 'Lorton, VA', + 1703351 => 'Arlington, VA', + 1703352 => 'Fairfax, VA', + 1703356 => 'McLean, VA', + 1703359 => 'Fairfax, VA', + 1703360 => 'Alexandria, VA', + 1703361 => 'Manassas, VA', + 1703365 => 'Manassas, VA', + 1703366 => 'Manassas, VA', + 1703367 => 'Manassas, VA', + 1703368 => 'Manassas, VA', + 1703369 => 'Manassas, VA', + 1703370 => 'Alexandria, VA', + 1703378 => 'Chantilly, VA', + 1703383 => 'Fairfax, VA', + 1703385 => 'Fairfax, VA', + 1703390 => 'Reston, VA', + 1703392 => 'Manassas, VA', + 1703393 => 'Manassas, VA', + 1703396 => 'Manassas, VA', + 1703404 => 'Sterling, VA', + 1703406 => 'Sterling, VA', + 1703412 => 'Arlington, VA', + 1703413 => 'Arlington, VA', + 1703415 => 'Arlington, VA', + 1703416 => 'Arlington, VA', + 1703418 => 'Arlington, VA', + 1703421 => 'Sterling, VA', + 1703430 => 'Sterling, VA', + 1703433 => 'Sterling, VA', + 1703440 => 'Springfield, VA', + 1703441 => 'Dumfries, VA', + 1703443 => 'Leesburg, VA', + 1703444 => 'Sterling, VA', + 1703445 => 'Dumfries, VA', + 1703448 => 'McLean, VA', + 1703450 => 'Sterling, VA', + 1703451 => 'Springfield, VA', + 1703455 => 'Springfield, VA', + 1703461 => 'Alexandria, VA', + 1703465 => 'Arlington, VA', + 1703476 => 'Reston, VA', + 1703486 => 'Arlington, VA', + 1703490 => 'Woodbridge, VA', + 1703491 => 'Woodbridge, VA', + 1703492 => 'Woodbridge, VA', + 1703494 => 'Woodbridge, VA', + 1703497 => 'Woodbridge, VA', + 1703499 => 'Woodbridge, VA', + 1703504 => 'Alexandria, VA', + 1703518 => 'Alexandria, VA', + 1703519 => 'Alexandria, VA', + 1703521 => 'Arlington, VA', + 1703522 => 'Arlington, VA', + 1703524 => 'Arlington, VA', + 1703525 => 'Arlington, VA', + 1703527 => 'Arlington, VA', + 1703528 => 'Arlington, VA', + 1703530 => 'Manassas, VA', + 1703531 => 'Falls Church, VA', + 1703532 => 'Falls Church, VA', + 1703533 => 'Falls Church, VA', + 1703534 => 'Falls Church, VA', + 1703535 => 'Alexandria, VA', + 1703536 => 'Falls Church, VA', + 1703538 => 'Falls Church, VA', + 1703543 => 'Centreville, VA', + 1703548 => 'Alexandria, VA', + 1703549 => 'Alexandria, VA', + 1703550 => 'Lorton, VA', + 1703553 => 'Arlington, VA', + 1703558 => 'Arlington, VA', + 1703569 => 'Springfield, VA', + 1703580 => 'Woodbridge, VA', + 1703583 => 'Woodbridge, VA', + 1703590 => 'Woodbridge, VA', + 1703591 => 'Fairfax, VA', + 1703594 => 'Nokesville, VA', + 1703644 => 'Springfield, VA', + 1703647 => 'Alexandria, VA', + 1703660 => 'Alexandria, VA', + 1703661 => 'Sterling, VA', + 1703664 => 'Alexandria, VA', + 1703669 => 'Leesburg, VA', + 1703670 => 'Woodbridge, VA', + 1703680 => 'Woodbridge, VA', + 1703683 => 'Alexandria, VA', + 1703684 => 'Alexandria, VA', + 1703691 => 'Fairfax, VA', + 1703709 => 'Reston, VA', + 1703719 => 'Alexandria, VA', + 1703723 => 'Ashburn, VA', + 1703726 => 'Ashburn, VA', + 1703729 => 'Ashburn, VA', + 1703730 => 'Woodbridge, VA', + 1703734 => 'McLean, VA', + 1703737 => 'Leesburg, VA', + 1703739 => 'Alexandria, VA', + 1703746 => 'Alexandria, VA', + 1703749 => 'McLean, VA', + 1703751 => 'Alexandria, VA', + 1703757 => 'Great Falls, VA', + 1703759 => 'Great Falls, VA', + 1703765 => 'Alexandria, VA', + 1703768 => 'Alexandria, VA', + 1703771 => 'Leesburg, VA', + 1703776 => 'Falls Church, VA', + 1703777 => 'Leesburg, VA', + 1703779 => 'Leesburg, VA', + 1703780 => 'Alexandria, VA', + 1703784 => 'Quantico, VA', + 1703790 => 'McLean, VA', + 1703791 => 'Manassas, VA', + 1703792 => 'Manassas, VA', + 1703793 => 'Herndon, VA', + 1703794 => 'Manassas, VA', + 1703799 => 'Alexandria, VA', + 1703805 => 'Fort Belvoir, VA', + 1703807 => 'Arlington, VA', + 1703815 => 'Centreville, VA', + 1703817 => 'Chantilly, VA', + 1703821 => 'McLean, VA', + 1703823 => 'Alexandria, VA', + 1703830 => 'Centreville, VA', + 1703836 => 'Alexandria, VA', + 1703837 => 'Alexandria, VA', + 1703838 => 'Alexandria, VA', + 1703841 => 'Arlington, VA', + 1703860 => 'Reston, VA', + 1703865 => 'Fairfax, VA', + 1703866 => 'Springfield, VA', + 1703875 => 'Arlington, VA', + 1703878 => 'Woodbridge, VA', + 1703892 => 'Arlington, VA', + 1703893 => 'McLean, VA', + 1703897 => 'Woodbridge, VA', + 1703910 => 'Woodbridge, VA', + 1703912 => 'Springfield, VA', + 1703913 => 'Springfield, VA', + 1703920 => 'Arlington, VA', + 1703921 => 'Alexandria, VA', + 1703922 => 'Springfield, VA', + 1703934 => 'Fairfax, VA', + 1703938 => 'Vienna, VA', + 1703960 => 'Alexandria, VA', + 1703961 => 'Chantilly, VA', + 1703971 => 'Alexandria, VA', + 1703979 => 'Arlington, VA', + 1703993 => 'Fairfax, VA', + 1703996 => 'Sterling, VA', + 1704 => 'North Carolina', + 1704216 => 'Salisbury, NC', + 1704225 => 'Monroe, NC', + 1704226 => 'Monroe, NC', + 1704233 => 'Wingate, NC', + 1704238 => 'Monroe, NC', + 1704243 => 'Waxhaw, NC', + 1704262 => 'Concord, NC', + 1704263 => 'Stanley, NC', + 1704276 => 'Vale, NC', + 1704278 => 'Cleveland, NC', + 1704282 => 'Monroe, NC', + 1704283 => 'Monroe, NC', + 1704289 => 'Monroe, NC', + 1704291 => 'Monroe, NC', + 1704292 => 'Monroe, NC', + 1704295 => 'Charlotte, NC', + 1704296 => 'Monroe, NC', + 1704304 => 'Charlotte, NC', + 1704315 => 'Charlotte, NC', + 1704323 => 'Charlotte, NC', + 1704331 => 'Charlotte, NC', + 1704332 => 'Charlotte, NC', + 1704333 => 'Charlotte, NC', + 1704334 => 'Charlotte, NC', + 1704335 => 'Charlotte, NC', + 1704336 => 'Charlotte, NC', + 1704338 => 'Charlotte, NC', + 1704339 => 'Charlotte, NC', + 1704341 => 'Charlotte, NC', + 1704342 => 'Charlotte, NC', + 1704343 => 'Charlotte, NC', + 1704344 => 'Charlotte, NC', + 1704347 => 'Charlotte, NC', + 1704348 => 'Charlotte, NC', + 1704355 => 'Charlotte, NC', + 1704357 => 'Charlotte, NC', + 1704358 => 'Charlotte, NC', + 1704359 => 'Charlotte, NC', + 1704362 => 'Charlotte, NC', + 1704364 => 'Charlotte, NC', + 1704365 => 'Charlotte, NC', + 1704366 => 'Charlotte, NC', + 1704367 => 'Charlotte, NC', + 1704369 => 'Charlotte, NC', + 1704370 => 'Charlotte, NC', + 1704372 => 'Charlotte, NC', + 1704373 => 'Charlotte, NC', + 1704374 => 'Charlotte, NC', + 1704375 => 'Charlotte, NC', + 1704376 => 'Charlotte, NC', + 1704377 => 'Charlotte, NC', + 1704379 => 'Charlotte, NC', + 1704381 => 'Charlotte, NC', + 1704384 => 'Charlotte, NC', + 1704391 => 'Charlotte, NC', + 1704392 => 'Charlotte, NC', + 1704393 => 'Charlotte, NC', + 1704394 => 'Charlotte, NC', + 1704395 => 'Charlotte, NC', + 1704398 => 'Charlotte, NC', + 1704399 => 'Charlotte, NC', + 1704403 => 'Concord, NC', + 1704405 => 'Charlotte, NC', + 1704432 => 'Charlotte, NC', + 1704434 => 'Shelby, NC', + 1704435 => 'Cherryville, NC', + 1704436 => 'Mount Pleasant, NC', + 1704442 => 'Charlotte, NC', + 1704444 => 'Charlotte, NC', + 1704446 => 'Charlotte, NC', + 1704454 => 'Harrisburg, NC', + 1704455 => 'Harrisburg, NC', + 1704474 => 'Norwood, NC', + 1704480 => 'Shelby, NC', + 1704481 => 'Shelby, NC', + 1704482 => 'Shelby, NC', + 1704483 => 'Denver, NC', + 1704484 => 'Shelby, NC', + 1704485 => 'Oakboro, NC', + 1704487 => 'Shelby, NC', + 1704489 => 'Denver, NC', + 1704494 => 'Charlotte, NC', + 1704503 => 'Charlotte, NC', + 1704504 => 'Charlotte, NC', + 1704509 => 'Charlotte, NC', + 1704510 => 'Charlotte, NC', + 1704512 => 'Charlotte, NC', + 1704521 => 'Charlotte, NC', + 1704522 => 'Charlotte, NC', + 1704523 => 'Charlotte, NC', + 1704525 => 'Charlotte, NC', + 1704527 => 'Charlotte, NC', + 1704528 => 'Troutman, NC', + 1704529 => 'Charlotte, NC', + 1704531 => 'Charlotte, NC', + 1704532 => 'Charlotte, NC', + 1704535 => 'Charlotte, NC', + 1704536 => 'Charlotte, NC', + 1704537 => 'Charlotte, NC', + 1704538 => 'Lawndale, NC', + 1704540 => 'Charlotte, NC', + 1704541 => 'Charlotte, NC', + 1704542 => 'Charlotte, NC', + 1704543 => 'Charlotte, NC', + 1704544 => 'Charlotte, NC', + 1704545 => 'Mint Hill, NC', + 1704546 => 'Harmony, NC', + 1704547 => 'Charlotte, NC', + 1704548 => 'Charlotte, NC', + 1704549 => 'Charlotte, NC', + 1704552 => 'Charlotte, NC', + 1704553 => 'Charlotte, NC', + 1704554 => 'Charlotte, NC', + 1704556 => 'Charlotte, NC', + 1704557 => 'Charlotte, NC', + 1704563 => 'Charlotte, NC', + 1704566 => 'Charlotte, NC', + 1704567 => 'Charlotte, NC', + 1704568 => 'Charlotte, NC', + 1704569 => 'Charlotte, NC', + 1704573 => 'Mint Hill, NC', + 1704583 => 'Charlotte, NC', + 1704585 => 'Stony Point, NC', + 1704587 => 'Charlotte, NC', + 1704588 => 'Charlotte, NC', + 1704596 => 'Charlotte, NC', + 1704597 => 'Charlotte, NC', + 1704598 => 'Charlotte, NC', + 1704599 => 'Charlotte, NC', + 1704624 => 'Marshville, NC', + 1704625 => 'Charlotte, NC', + 1704629 => 'Bessemer City, NC', + 1704630 => 'Salisbury, NC', + 1704633 => 'Salisbury, NC', + 1704635 => 'Monroe, NC', + 1704636 => 'Salisbury, NC', + 1704637 => 'Salisbury, NC', + 1704638 => 'Salisbury, NC', + 1704639 => 'Salisbury, NC', + 1704643 => 'Charlotte, NC', + 1704658 => 'Mooresville, NC', + 1704660 => 'Mooresville, NC', + 1704662 => 'Mooresville, NC', + 1704663 => 'Mooresville, NC', + 1704664 => 'Mooresville, NC', + 1704667 => 'Charlotte, NC', + 1704671 => 'Gastonia, NC', + 1704684 => 'Indian Trail, NC', + 1704688 => 'Charlotte, NC', + 1704694 => 'Wadesboro, NC', + 1704695 => 'Wadesboro, NC', + 1704714 => 'Charlotte, NC', + 1704716 => 'Charlotte, NC', + 1704717 => 'Charlotte, NC', + 1704720 => 'Concord, NC', + 1704721 => 'Concord, NC', + 1704732 => 'Lincolnton, NC', + 1704734 => 'Kings Mountain, NC', + 1704735 => 'Lincolnton, NC', + 1704736 => 'Lincolnton, NC', + 1704739 => 'Kings Mountain, NC', + 1704748 => 'Lincolnton, NC', + 1704749 => 'Charlotte, NC', + 1704752 => 'Charlotte, NC', + 1704753 => 'Monroe, NC', + 1704759 => 'Charlotte, NC', + 1704764 => 'Monroe, NC', + 1704776 => 'Monroe, NC', + 1704782 => 'Concord, NC', + 1704783 => 'Concord, NC', + 1704784 => 'Concord, NC', + 1704785 => 'Concord, NC', + 1704786 => 'Concord, NC', + 1704788 => 'Concord, NC', + 1704792 => 'Concord, NC', + 1704793 => 'Concord, NC', + 1704795 => 'Concord, NC', + 1704799 => 'Mooresville, NC', + 1704814 => 'Matthews, NC', + 1704820 => 'Mount Holly, NC', + 1704823 => 'Gastonia, NC', + 1704824 => 'Gastonia, NC', + 1704825 => 'Belmont, NC', + 1704827 => 'Mount Holly, NC', + 1704829 => 'Belmont, NC', + 1704834 => 'Gastonia, NC', + 1704838 => 'Statesville, NC', + 1704843 => 'Waxhaw, NC', + 1704847 => 'Matthews, NC', + 1704852 => 'Gastonia, NC', + 1704853 => 'Gastonia, NC', + 1704854 => 'Gastonia, NC', + 1704855 => 'China Grove, NC', + 1704857 => 'China Grove, NC', + 1704861 => 'Gastonia, NC', + 1704863 => 'Charlotte, NC', + 1704864 => 'Gastonia, NC', + 1704865 => 'Gastonia, NC', + 1704866 => 'Gastonia, NC', + 1704867 => 'Gastonia, NC', + 1704868 => 'Gastonia, NC', + 1704869 => 'Gastonia, NC', + 1704871 => 'Statesville, NC', + 1704872 => 'Statesville, NC', + 1704873 => 'Statesville, NC', + 1704875 => 'Huntersville, NC', + 1704876 => 'Statesville, NC', + 1704878 => 'Statesville, NC', + 1704882 => 'Indian Trail, NC', + 1704883 => 'Statesville, NC', + 1704887 => 'Charlotte, NC', + 1704889 => 'Pineville, NC', + 1704910 => 'Charlotte, NC', + 1704920 => 'Concord, NC', + 1704921 => 'Charlotte, NC', + 1704922 => 'Dallas, NC', + 1704924 => 'Statesville, NC', + 1704927 => 'Charlotte, NC', + 1704932 => 'Kannapolis, NC', + 1704933 => 'Kannapolis, NC', + 1704938 => 'Kannapolis, NC', + 1704940 => 'Charlotte, NC', + 1704944 => 'Charlotte, NC', + 1704947 => 'Huntersville, NC', + 1704948 => 'Huntersville, NC', + 1704971 => 'Charlotte, NC', + 1704979 => 'Concord, NC', + 1704982 => 'Albemarle, NC', + 1704983 => 'Albemarle, NC', + 1704984 => 'Albemarle, NC', + 1704986 => 'Albemarle, NC', + 1704988 => 'Charlotte, NC', + 1704992 => 'Huntersville, NC', + 1705 => 'Ontario', + 1705222 => 'Greater Sudbury, ON', + 1705232 => 'Iroquois Falls, ON', + 1705235 => 'South Porcupine, ON', + 1705252 => 'Barrie, ON', + 1705253 => 'Sault Ste. Marie, ON', + 1705254 => 'Sault Ste. Marie, ON', + 1705256 => 'Sault Ste. Marie, ON', + 1705264 => 'Timmins, ON', + 1705267 => 'Timmins, ON', + 1705268 => 'Timmins, ON', + 1705272 => 'Cochrane, ON', + 1705277 => 'Bethany, ON', + 1705282 => 'Gore Bay, ON', + 1705286 => 'Minden, ON', + 1705295 => 'Keene, ON', + 1705322 => 'Elmvale, ON', + 1705323 => 'Orillia, ON', + 1705324 => 'Lindsay, ON', + 1705325 => 'Orillia, ON', + 1705326 => 'Orillia, ON', + 1705327 => 'Orillia, ON', + 1705328 => 'Lindsay, ON', + 1705329 => 'Orillia, ON', + 1705335 => 'Kapuskasing, ON', + 1705337 => 'Kapuskasing, ON', + 1705356 => 'Blind River, ON', + 1705357 => 'Sunderland, ON', + 1705360 => 'Timmins, ON', + 1705362 => 'Hearst, ON', + 1705368 => 'Little Current, ON', + 1705375 => 'MacTier, ON', + 1705377 => 'Mindemoya, ON', + 1705382 => 'Burk\'s Falls, ON', + 1705384 => 'Sundridge, ON', + 1705385 => 'Port Sydney, ON', + 1705386 => 'South River, ON', + 1705422 => 'Wasaga Beach, ON', + 1705426 => 'Beaverton, ON', + 1705428 => 'Stayner, ON', + 1705429 => 'Wasaga Beach, ON', + 1705434 => 'Alliston, ON', + 1705435 => 'Alliston, ON', + 1705437 => 'Pefferlaw, ON', + 1705443 => 'Collingwood, ON', + 1705444 => 'Collingwood, ON', + 1705445 => 'Collingwood, ON', + 1705446 => 'Collingwood, ON', + 1705454 => 'Coboconk, ON', + 1705456 => 'Lefroy, ON', + 1705457 => 'Haliburton, ON', + 1705458 => 'Cookstown, ON', + 1705466 => 'Creemore, ON', + 1705472 => 'North Bay, ON', + 1705474 => 'North Bay, ON', + 1705475 => 'North Bay, ON', + 1705476 => 'North Bay, ON', + 1705484 => 'Brechin, ON', + 1705487 => 'Oro, ON', + 1705494 => 'North Bay, ON', + 1705495 => 'North Bay, ON', + 1705497 => 'North Bay, ON', + 1705503 => 'Barrie, ON', + 1705521 => 'Greater Sudbury, ON', + 1705522 => 'Greater Sudbury, ON', + 1705523 => 'Greater Sudbury, ON', + 1705524 => 'Greater Sudbury, ON', + 1705525 => 'Greater Sudbury, ON', + 1705526 => 'Midland, ON', + 1705527 => 'Midland, ON', + 1705528 => 'Midland, ON', + 1705534 => 'Port McNicoll, ON', + 1705538 => 'Waubaushene, ON', + 1705544 => 'Englehart, ON', + 1705549 => 'Penetanguishene, ON', + 1705560 => 'Greater Sudbury, ON', + 1705563 => 'Earlton, ON', + 1705566 => 'Greater Sudbury, ON', + 1705567 => 'Kirkland Lake, ON', + 1705575 => 'Sault Ste. Marie, ON', + 1705586 => 'Greater Sudbury, ON', + 1705635 => 'Dwight, ON', + 1705639 => 'Norwood, ON', + 1705645 => 'Bracebridge, ON', + 1705646 => 'Bracebridge, ON', + 1705647 => 'New Liskeard, ON', + 1705652 => 'Lakefield, ON', + 1705653 => 'Campbellford, ON', + 1705656 => 'Apsley, ON', + 1705657 => 'Buckhorn, ON', + 1705670 => 'Greater Sudbury, ON', + 1705671 => 'Greater Sudbury, ON', + 1705672 => 'Haileybury, ON', + 1705673 => 'Greater Sudbury, ON', + 1705674 => 'Greater Sudbury, ON', + 1705675 => 'Greater Sudbury, ON', + 1705686 => 'Coldwater, ON', + 1705687 => 'Gravenhurst, ON', + 1705688 => 'Greater Sudbury, ON', + 1705689 => 'Severn Bridge, ON', + 1705692 => 'Lively, ON', + 1705693 => 'Garson, ON', + 1705696 => 'Hastings, ON', + 1705719 => 'Barrie, ON', + 1705720 => 'Barrie, ON', + 1705721 => 'Barrie, ON', + 1705722 => 'Barrie, ON', + 1705724 => 'Powassan, ON', + 1705725 => 'Barrie, ON', + 1705726 => 'Barrie, ON', + 1705727 => 'Barrie, ON', + 1705728 => 'Barrie, ON', + 1705730 => 'Barrie, ON', + 1705733 => 'Barrie, ON', + 1705734 => 'Barrie, ON', + 1705735 => 'Barrie, ON', + 1705737 => 'Barrie, ON', + 1705738 => 'Bobcaygeon, ON', + 1705739 => 'Barrie, ON', + 1705740 => 'Peterborough, ON', + 1705741 => 'Peterborough, ON', + 1705742 => 'Peterborough, ON', + 1705743 => 'Peterborough, ON', + 1705744 => 'Mattawa, ON', + 1705745 => 'Peterborough, ON', + 1705746 => 'Parry Sound, ON', + 1705748 => 'Peterborough, ON', + 1705749 => 'Peterborough, ON', + 1705750 => 'Peterborough, ON', + 1705752 => 'Callander, ON', + 1705753 => 'West Nipissing, ON', + 1705759 => 'Sault Ste. Marie, ON', + 1705762 => 'Bala, ON', + 1705765 => 'Port Carling, ON', + 1705778 => 'Havelock, ON', + 1705787 => 'Huntsville, ON', + 1705788 => 'Huntsville, ON', + 1705789 => 'Huntsville, ON', + 1705792 => 'Barrie, ON', + 1705797 => 'Barrie, ON', + 1705799 => 'Omemee, ON', + 1705812 => 'Barrie, ON', + 1705840 => 'North Bay, ON', + 1705848 => 'Elliot Lake, ON', + 1705855 => 'Chelmsford, ON', + 1705856 => 'Wawa, ON', + 1705859 => 'Manitowaning, ON', + 1705864 => 'Chapleau, ON', + 1705869 => 'Espanola, ON', + 1705874 => 'Peterborough, ON', + 1705876 => 'Peterborough, ON', + 1705878 => 'Lindsay, ON', + 1705887 => 'Fenelon Falls, ON', + 1705897 => 'Val Caron, ON', + 1705932 => 'Millbrook, ON', + 1705942 => 'Sault Ste. Marie, ON', + 1705945 => 'Sault Ste. Marie, ON', + 1705946 => 'Sault Ste. Marie, ON', + 1705949 => 'Sault Ste. Marie, ON', + 1705969 => 'Hanmer, ON', + 1706 => 'Georgia', + 1706208 => 'Athens, GA', + 1706212 => 'Clayton, GA', + 1706213 => 'Elberton, GA', + 1706216 => 'Dawsonville, GA', + 1706217 => 'Dalton, GA', + 1706219 => 'Cleveland, GA', + 1706221 => 'Columbus, GA', + 1706226 => 'Dalton, GA', + 1706227 => 'Athens, GA', + 1706232 => 'Rome, GA', + 1706233 => 'Rome, GA', + 1706234 => 'Rome, GA', + 1706235 => 'Rome, GA', + 1706236 => 'Rome, GA', + 1706245 => 'Royston, GA', + 1706253 => 'Jasper, GA', + 1706256 => 'Columbus, GA', + 1706258 => 'Blue Ridge, GA', + 1706259 => 'Dalton, GA', + 1706265 => 'Dawsonville, GA', + 1706270 => 'Dalton, GA', + 1706272 => 'Dalton, GA', + 1706273 => 'Ellijay, GA', + 1706275 => 'Dalton, GA', + 1706276 => 'Ellijay, GA', + 1706277 => 'Dalton, GA', + 1706278 => 'Dalton, GA', + 1706279 => 'Dalton, GA', + 1706282 => 'Toccoa, GA', + 1706283 => 'Elberton, GA', + 1706290 => 'Rome, GA', + 1706291 => 'Rome, GA', + 1706295 => 'Rome, GA', + 1706310 => 'Watkinsville, GA', + 1706317 => 'Columbus, GA', + 1706320 => 'Columbus, GA', + 1706321 => 'Columbus, GA', + 1706322 => 'Columbus, GA', + 1706323 => 'Columbus, GA', + 1706324 => 'Columbus, GA', + 1706327 => 'Columbus, GA', + 1706335 => 'Commerce, GA', + 1706336 => 'Commerce, GA', + 1706337 => 'Fairmount, GA', + 1706342 => 'Madison, GA', + 1706343 => 'Madison, GA', + 1706344 => 'Dawsonville, GA', + 1706348 => 'Cleveland, GA', + 1706353 => 'Athens, GA', + 1706354 => 'Athens, GA', + 1706356 => 'Lavonia, GA', + 1706359 => 'Lincolnton, GA', + 1706364 => 'Augusta, GA', + 1706367 => 'Jefferson, GA', + 1706369 => 'Athens, GA', + 1706374 => 'Morganton, GA', + 1706375 => 'Chickamauga, GA', + 1706376 => 'Hartwell, GA', + 1706377 => 'Hartwell, GA', + 1706378 => 'Rome, GA', + 1706379 => 'Young Harris, GA', + 1706383 => 'Calhoun, GA', + 1706384 => 'Carnesville, GA', + 1706387 => 'Jefferson, GA', + 1706389 => 'Athens, GA', + 1706425 => 'Athens, GA', + 1706432 => 'Augusta, GA', + 1706437 => 'Waynesboro, GA', + 1706444 => 'Sparta, GA', + 1706453 => 'Greensboro, GA', + 1706454 => 'Greensboro, GA', + 1706465 => 'Warrenton, GA', + 1706467 => 'Greensboro, GA', + 1706468 => 'Monticello, GA', + 1706475 => 'Athens, GA', + 1706481 => 'Augusta, GA', + 1706484 => 'Eatonton, GA', + 1706485 => 'Eatonton, GA', + 1706492 => 'McCaysville, GA', + 1706494 => 'Columbus, GA', + 1706496 => 'Augusta, GA', + 1706504 => 'Augusta, GA', + 1706507 => 'Columbus, GA', + 1706509 => 'Rome, GA', + 1706517 => 'Chatsworth, GA', + 1706529 => 'Dalton, GA', + 1706541 => 'Appling, GA', + 1706542 => 'Athens, GA', + 1706543 => 'Athens, GA', + 1706544 => 'Fort Benning, GA', + 1706546 => 'Athens, GA', + 1706547 => 'Wrens, GA', + 1706548 => 'Athens, GA', + 1706549 => 'Athens, GA', + 1706552 => 'Athens, GA', + 1706554 => 'Waynesboro, GA', + 1706556 => 'Harlem, GA', + 1706560 => 'Augusta, GA', + 1706561 => 'Columbus, GA', + 1706562 => 'Columbus, GA', + 1706563 => 'Columbus, GA', + 1706565 => 'Columbus, GA', + 1706568 => 'Columbus, GA', + 1706569 => 'Columbus, GA', + 1706571 => 'Columbus, GA', + 1706576 => 'Columbus, GA', + 1706592 => 'Hephzibah, GA', + 1706595 => 'Thomson, GA', + 1706596 => 'Columbus, GA', + 1706597 => 'Thomson, GA', + 1706602 => 'Calhoun, GA', + 1706613 => 'Athens, GA', + 1706624 => 'Calhoun, GA', + 1706625 => 'Calhoun, GA', + 1706628 => 'Hamilton, GA', + 1706629 => 'Calhoun, GA', + 1706632 => 'Blue Ridge, GA', + 1706635 => 'Ellijay, GA', + 1706636 => 'Ellijay, GA', + 1706637 => 'Hogansville, GA', + 1706638 => 'LaFayette, GA', + 1706639 => 'LaFayette, GA', + 1706645 => 'West Point, GA', + 1706646 => 'Thomaston, GA', + 1706647 => 'Thomaston, GA', + 1706648 => 'Thomaston, GA', + 1706649 => 'Columbus, GA', + 1706651 => 'Augusta, GA', + 1706653 => 'Columbus, GA', + 1706655 => 'Warm Springs, GA', + 1706657 => 'Trenton, GA', + 1706660 => 'Columbus, GA', + 1706663 => 'Pine Mountain, GA', + 1706667 => 'Augusta, GA', + 1706672 => 'Greenville, GA', + 1706673 => 'Tunnel Hill, GA', + 1706675 => 'Franklin, GA', + 1706677 => 'Homer, GA', + 1706678 => 'Washington, GA', + 1706682 => 'Columbus, GA', + 1706685 => 'Columbus, GA', + 1706687 => 'Columbus, GA', + 1706689 => 'Columbus, GA', + 1706692 => 'Jasper, GA', + 1706693 => 'Pendergrass, GA', + 1706694 => 'Cohutta, GA', + 1706695 => 'Chatsworth, GA', + 1706698 => 'Ellijay, GA', + 1706721 => 'Augusta, GA', + 1706722 => 'Augusta, GA', + 1706724 => 'Augusta, GA', + 1706731 => 'Augusta, GA', + 1706733 => 'Augusta, GA', + 1706734 => 'Trion, GA', + 1706736 => 'Augusta, GA', + 1706737 => 'Augusta, GA', + 1706738 => 'Augusta, GA', + 1706742 => 'Winterville, GA', + 1706745 => 'Blairsville, GA', + 1706754 => 'Clarkesville, GA', + 1706769 => 'Watkinsville, GA', + 1706771 => 'Augusta, GA', + 1706774 => 'Augusta, GA', + 1706776 => 'Cornelia, GA', + 1706778 => 'Cornelia, GA', + 1706779 => 'Eastanollee, GA', + 1706781 => 'Blairsville, GA', + 1706782 => 'Clayton, GA', + 1706783 => 'Comer, GA', + 1706787 => 'Augusta, GA', + 1706790 => 'Augusta, GA', + 1706793 => 'Augusta, GA', + 1706795 => 'Danielsville, GA', + 1706796 => 'Augusta, GA', + 1706798 => 'Augusta, GA', + 1706802 => 'Rome, GA', + 1706812 => 'LaGrange, GA', + 1706814 => 'Augusta, GA', + 1706821 => 'Augusta, GA', + 1706823 => 'Augusta, GA', + 1706828 => 'Augusta, GA', + 1706835 => 'Blairsville, GA', + 1706839 => 'Clarkesville, GA', + 1706845 => 'LaGrange, GA', + 1706846 => 'Manchester, GA', + 1706850 => 'Athens, GA', + 1706855 => 'Augusta, GA', + 1706857 => 'Summerville, GA', + 1706858 => 'Fort Oglethorpe, GA', + 1706860 => 'Augusta, GA', + 1706863 => 'Augusta, GA', + 1706864 => 'Dahlonega, GA', + 1706865 => 'Cleveland, GA', + 1706867 => 'Dahlonega, GA', + 1706878 => 'Helen, GA', + 1706882 => 'LaGrange, GA', + 1706883 => 'LaGrange, GA', + 1706884 => 'LaGrange, GA', + 1706885 => 'LaGrange, GA', + 1706886 => 'Toccoa, GA', + 1706896 => 'Hiawassee, GA', + 1706922 => 'Augusta, GA', + 1706935 => 'Ringgold, GA', + 1706937 => 'Ringgold, GA', + 1706945 => 'Augusta, GA', + 1706946 => 'Blue Ridge, GA', + 1706955 => 'Augusta, GA', + 1706965 => 'Ringgold, GA', + 1707 => 'California', + 1707224 => 'Napa, CA', + 1707226 => 'Napa, CA', + 1707251 => 'Napa, CA', + 1707252 => 'Napa, CA', + 1707253 => 'Napa, CA', + 1707254 => 'Napa, CA', + 1707255 => 'Napa, CA', + 1707256 => 'Napa, CA', + 1707257 => 'Napa, CA', + 1707258 => 'Napa, CA', + 1707259 => 'Napa, CA', + 1707262 => 'Lakeport, CA', + 1707263 => 'Lakeport, CA', + 1707265 => 'Napa, CA', + 1707268 => 'Eureka, CA', + 1707269 => 'Eureka, CA', + 1707275 => 'Upper Lake, CA', + 1707279 => 'Kelseyville, CA', + 1707284 => 'Santa Rosa, CA', + 1707303 => 'Santa Rosa, CA', + 1707374 => 'Rio Vista, CA', + 1707393 => 'Santa Rosa, CA', + 1707399 => 'Fairfield, CA', + 1707421 => 'Fairfield, CA', + 1707422 => 'Fairfield, CA', + 1707423 => 'Travis Air Force Base, Fairfield, CA', + 1707425 => 'Fairfield, CA', + 1707426 => 'Fairfield, CA', + 1707427 => 'Fairfield, CA', + 1707428 => 'Fairfield, CA', + 1707429 => 'Fairfield, CA', + 1707431 => 'Healdsburg, CA', + 1707433 => 'Healdsburg, CA', + 1707434 => 'Fairfield, CA', + 1707437 => 'Fairfield, CA', + 1707441 => 'Eureka, CA', + 1707442 => 'Eureka, CA', + 1707443 => 'Eureka, CA', + 1707444 => 'Eureka, CA', + 1707445 => 'Eureka, CA', + 1707446 => 'Vacaville, CA', + 1707447 => 'Vacaville, CA', + 1707448 => 'Vacaville, CA', + 1707449 => 'Vacaville, CA', + 1707451 => 'Vacaville, CA', + 1707452 => 'Vacaville, CA', + 1707453 => 'Vacaville, CA', + 1707455 => 'Vacaville, CA', + 1707456 => 'Willits, CA', + 1707459 => 'Willits, CA', + 1707462 => 'Ukiah, CA', + 1707463 => 'Ukiah, CA', + 1707464 => 'Crescent City, CA', + 1707465 => 'Crescent City, CA', + 1707467 => 'Ukiah, CA', + 1707468 => 'Ukiah, CA', + 1707469 => 'Vacaville, CA', + 1707473 => 'Healdsburg, CA', + 1707476 => 'Eureka, CA', + 1707485 => 'Redwood Valley, CA', + 1707521 => 'Santa Rosa, CA', + 1707522 => 'Santa Rosa, CA', + 1707523 => 'Santa Rosa, CA', + 1707524 => 'Santa Rosa, CA', + 1707525 => 'Santa Rosa, CA', + 1707526 => 'Santa Rosa, CA', + 1707527 => 'Santa Rosa, CA', + 1707528 => 'Santa Rosa, CA', + 1707537 => 'Santa Rosa, CA', + 1707538 => 'Santa Rosa, CA', + 1707539 => 'Santa Rosa, CA', + 1707541 => 'Santa Rosa, CA', + 1707542 => 'Santa Rosa, CA', + 1707543 => 'Santa Rosa, CA', + 1707544 => 'Santa Rosa, CA', + 1707545 => 'Santa Rosa, CA', + 1707546 => 'Santa Rosa, CA', + 1707547 => 'Santa Rosa, CA', + 1707552 => 'Vallejo, CA', + 1707553 => 'Vallejo, CA', + 1707554 => 'Vallejo, CA', + 1707556 => 'Vallejo, CA', + 1707557 => 'Vallejo, CA', + 1707558 => 'Vallejo, CA', + 1707565 => 'Santa Rosa, CA', + 1707566 => 'Santa Rosa, CA', + 1707568 => 'Santa Rosa, CA', + 1707569 => 'Santa Rosa, CA', + 1707570 => 'Santa Rosa, CA', + 1707571 => 'Santa Rosa, CA', + 1707573 => 'Santa Rosa, CA', + 1707575 => 'Santa Rosa, CA', + 1707576 => 'Santa Rosa, CA', + 1707577 => 'Santa Rosa, CA', + 1707578 => 'Santa Rosa, CA', + 1707579 => 'Santa Rosa, CA', + 1707584 => 'Rohnert Park, CA', + 1707585 => 'Rohnert Park, CA', + 1707586 => 'Rohnert Park, CA', + 1707588 => 'Rohnert Park, CA', + 1707591 => 'Santa Rosa, CA', + 1707595 => 'Santa Rosa, CA', + 1707624 => 'Vacaville, CA', + 1707642 => 'Vallejo, CA', + 1707643 => 'Vallejo, CA', + 1707644 => 'Vallejo, CA', + 1707645 => 'Vallejo, CA', + 1707646 => 'Fairfield, CA', + 1707647 => 'Vallejo, CA', + 1707648 => 'Vallejo, CA', + 1707649 => 'Vallejo, CA', + 1707651 => 'Vallejo, CA', + 1707677 => 'Trinidad, CA', + 1707678 => 'Dixon, CA', + 1707693 => 'Dixon, CA', + 1707725 => 'Fortuna, CA', + 1707745 => 'Benicia, CA', + 1707746 => 'Benicia, CA', + 1707747 => 'Benicia, CA', + 1707748 => 'Benicia, CA', + 1707751 => 'Benicia, CA', + 1707762 => 'Petaluma, CA', + 1707763 => 'Petaluma, CA', + 1707764 => 'Rio Dell, CA', + 1707765 => 'Petaluma, CA', + 1707766 => 'Petaluma, CA', + 1707769 => 'Petaluma, CA', + 1707773 => 'Petaluma, CA', + 1707775 => 'Petaluma, CA', + 1707778 => 'Petaluma, CA', + 1707781 => 'Petaluma, CA', + 1707782 => 'Petaluma, CA', + 1707784 => 'Fairfield, CA', + 1707786 => 'Ferndale, CA', + 1707789 => 'Petaluma, CA', + 1707822 => 'Arcata, CA', + 1707823 => 'Sebastopol, CA', + 1707824 => 'Sebastopol, CA', + 1707825 => 'Arcata, CA', + 1707826 => 'Arcata, CA', + 1707829 => 'Sebastopol, CA', + 1707833 => 'Kenwood, CA', + 1707836 => 'Windsor, CA', + 1707837 => 'Windsor, CA', + 1707838 => 'Windsor, CA', + 1707839 => 'McKinleyville, CA', + 1707843 => 'Santa Rosa, CA', + 1707857 => 'Geyserville, CA', + 1707863 => 'Fairfield, CA', + 1707864 => 'Fairfield, CA', + 1707865 => 'Monte Rio, CA', + 1707869 => 'Guerneville, CA', + 1707874 => 'Occidental, CA', + 1707875 => 'Bodega Bay, CA', + 1707882 => 'Point Arena, CA', + 1707884 => 'Gualala, CA', + 1707887 => 'Forestville, CA', + 1707894 => 'Cloverdale, CA', + 1707923 => 'Garberville, CA', + 1707927 => 'Napa, CA', + 1707928 => 'Cobb, CA', + 1707933 => 'Sonoma, CA', + 1707935 => 'Sonoma, CA', + 1707937 => 'Mendocino, CA', + 1707938 => 'Sonoma, CA', + 1707939 => 'Sonoma, CA', + 1707942 => 'Calistoga, CA', + 1707944 => 'Yountville, CA', + 1707961 => 'Fort Bragg, CA', + 1707963 => 'Saint Helena, CA', + 1707964 => 'Fort Bragg, CA', + 1707965 => 'Angwin, CA', + 1707967 => 'Saint Helena, CA', + 1707968 => 'Saint Helena, CA', + 1707983 => 'Covelo, CA', + 1707984 => 'Laytonville, CA', + 1707987 => 'Middletown, CA', + 1707994 => 'Clearlake, CA', + 1707995 => 'Clearlake, CA', + 1707996 => 'Sonoma, CA', + 1707998 => 'Clearlake Oaks, CA', + 1708 => 'Illinois', + 1708201 => 'Dolton, IL', + 1708202 => 'Hines, IL', + 1708216 => 'Maywood, IL', + 1708222 => 'Cicero, IL', + 1708226 => 'Orland Park, IL', + 1708245 => 'La Grange, IL', + 1708246 => 'Western Springs, IL', + 1708258 => 'Peotone, IL', + 1708301 => 'Homer Glen, IL', + 1708327 => 'Maywood, IL', + 1708335 => 'Hazel Crest, IL', + 1708342 => 'Tinley Park, IL', + 1708346 => 'Oak Lawn, IL', + 1708349 => 'Orland Park, IL', + 1708358 => 'Oak Park, IL', + 1708364 => 'Orland Park, IL', + 1708366 => 'Forest Park, IL', + 1708383 => 'Oak Park, IL', + 1708386 => 'Oak Park, IL', + 1708387 => 'Brookfield, IL', + 1708403 => 'Orland Park, IL', + 1708418 => 'Lansing, IL', + 1708429 => 'Tinley Park, IL', + 1708444 => 'Tinley Park, IL', + 1708445 => 'Oak Park, IL', + 1708449 => 'Hillside, IL', + 1708450 => 'Melrose Park, IL', + 1708457 => 'Norridge, IL', + 1708460 => 'Orland Park, IL', + 1708474 => 'Lansing, IL', + 1708478 => 'Mokena, IL', + 1708479 => 'Mokena, IL', + 1708484 => 'Berwyn, IL', + 1708485 => 'Brookfield, IL', + 1708493 => 'Bellwood, IL', + 1708524 => 'Oak Park, IL', + 1708532 => 'Tinley Park, IL', + 1708534 => 'Monee, IL', + 1708535 => 'Oak Forest, IL', + 1708547 => 'Bellwood, IL', + 1708614 => 'Tinley Park, IL', + 1708633 => 'Tinley Park, IL', + 1708636 => 'Oak Lawn, IL', + 1708645 => 'Homer Glen, IL', + 1708652 => 'Cicero, IL', + 1708656 => 'Cicero, IL', + 1708660 => 'Oak Park, IL', + 1708672 => 'Crete, IL', + 1708681 => 'Melrose Park, IL', + 1708684 => 'Oak Lawn, IL', + 1708687 => 'Oak Forest, IL', + 1708709 => 'Chicago Heights, IL', + 1708720 => 'Matteson, IL', + 1708730 => 'Calumet City, IL', + 1708749 => 'Berwyn, IL', + 1708754 => 'Chicago Heights, IL', + 1708755 => 'Chicago Heights, IL', + 1708756 => 'Chicago Heights, IL', + 1708763 => 'Oak Park, IL', + 1708780 => 'Cicero, IL', + 1708783 => 'Berwyn, IL', + 1708784 => 'Western Springs, IL', + 1708788 => 'Berwyn, IL', + 1708795 => 'Berwyn, IL', + 1708832 => 'Calumet City, IL', + 1708839 => 'Willow Springs, IL', + 1708841 => 'Dolton, IL', + 1708848 => 'Oak Park, IL', + 1708849 => 'Dolton, IL', + 1708857 => 'Oak Lawn, IL', + 1708862 => 'Calumet City, IL', + 1708863 => 'Cicero, IL', + 1708867 => 'Harwood Heights, IL', + 1708868 => 'Calumet City, IL', + 1708873 => 'Orland Park, IL', + 1708891 => 'Calumet City, IL', + 1708895 => 'Lansing, IL', + 1708923 => 'Palos Heights, IL', + 1708946 => 'Beecher, IL', + 1708974 => 'Palos Hills, IL', + 1709 => 'Newfoundland and Labrador', + 1709237 => 'St. John\'s, NL', + 1709256 => 'Gander, NL', + 1709279 => 'Marystown, NL', + 1709282 => 'Wabush, NL', + 1709437 => 'Torbay, NL', + 1709466 => 'Clarenville, NL', + 1709489 => 'Grand Falls-Windsor, NL', + 1709535 => 'Lewisporte, NL', + 1709576 => 'St. John\'s, NL', + 1709579 => 'St. John\'s, NL', + 1709596 => 'Carbonear, NL', + 1709634 => 'Corner Brook, NL', + 1709635 => 'Deer Lake, NL', + 1709639 => 'Corner Brook, NL', + 1709643 => 'Stephenville, NL', + 1709651 => 'Gander, NL', + 1709673 => 'Springdale, NL', + 1709695 => 'Channel-Port aux Basques, NL', + 1709722 => 'St. John\'s, NL', + 1709726 => 'St. John\'s, NL', + 1709738 => 'St. John\'s, NL', + 1709739 => 'St. John\'s, NL', + 1709753 => 'St. John\'s, NL', + 1709754 => 'St. John\'s, NL', + 1709786 => 'Bay Roberts, NL', + 1709832 => 'Grand Bank, NL', + 1709896 => 'Happy Valley-Goose Bay, NL', + 1709944 => 'Labrador City, NL', + 1712 => 'Iowa', + 1712224 => 'Sioux City, IA', + 1712225 => 'Cherokee, IA', + 1712233 => 'Sioux City, IA', + 1712234 => 'Sioux City, IA', + 1712239 => 'Sioux City, IA', + 1712243 => 'Atlantic, IA', + 1712246 => 'Shenandoah, IA', + 1712252 => 'Sioux City, IA', + 1712255 => 'Sioux City, IA', + 1712256 => 'Council Bluffs, IA', + 1712258 => 'Sioux City, IA', + 1712262 => 'Spencer, IA', + 1712263 => 'Denison, IA', + 1712264 => 'Spencer, IA', + 1712274 => 'Sioux City, IA', + 1712276 => 'Sioux City, IA', + 1712277 => 'Sioux City, IA', + 1712279 => 'Sioux City, IA', + 1712294 => 'Sioux City, IA', + 1712297 => 'Rockwell City, IA', + 1712322 => 'Council Bluffs, IA', + 1712323 => 'Council Bluffs, IA', + 1712324 => 'Sheldon, IA', + 1712325 => 'Council Bluffs, IA', + 1712328 => 'Council Bluffs, IA', + 1712332 => 'Arnolds Park, IA', + 1712335 => 'Pocahontas, IA', + 1712336 => 'Spirit Lake, IA', + 1712338 => 'Milford, IA', + 1712343 => 'Avoca, IA', + 1712362 => 'Estherville, IA', + 1712364 => 'Ida Grove, IA', + 1712366 => 'Council Bluffs, IA', + 1712368 => 'Holstein, IA', + 1712374 => 'Sidney, IA', + 1712376 => 'Marcus, IA', + 1712378 => 'Kingsley, IA', + 1712382 => 'Hamburg, IA', + 1712396 => 'Council Bluffs, IA', + 1712423 => 'Onawa, IA', + 1712439 => 'Hull, IA', + 1712464 => 'Lake City, IA', + 1712469 => 'Manson, IA', + 1712472 => 'Rock Rapids, IA', + 1712475 => 'George, IA', + 1712476 => 'Rock Valley, IA', + 1712477 => 'Larchwood, IA', + 1712482 => 'Oakland, IA', + 1712523 => 'Bedford, IA', + 1712527 => 'Glenwood, IA', + 1712542 => 'Clarinda, IA', + 1712546 => 'Le Mars, IA', + 1712551 => 'Hawarden, IA', + 1712563 => 'Audubon, IA', + 1712568 => 'Akron, IA', + 1712580 => 'Spencer, IA', + 1712623 => 'Red Oak, IA', + 1712642 => 'Missouri Valley, IA', + 1712643 => 'Dunlap, IA', + 1712644 => 'Logan, IA', + 1712647 => 'Woodbine, IA', + 1712653 => 'Manning, IA', + 1712655 => 'Manning, IA', + 1712662 => 'Sac City, IA', + 1712664 => 'Wall Lake, IA', + 1712668 => 'Odebolt, IA', + 1712722 => 'Sioux Center, IA', + 1712732 => 'Storm Lake, IA', + 1712737 => 'Orange City, IA', + 1712752 => 'Hospers, IA', + 1712753 => 'Inwood, IA', + 1712754 => 'Sibley, IA', + 1712755 => 'Harlan, IA', + 1712762 => 'Anita, IA', + 1712778 => 'Griswold, IA', + 1712786 => 'Remsen, IA', + 1712792 => 'Carroll, IA', + 1712826 => 'Villisca, IA', + 1712852 => 'Emmetsburg, IA', + 1712873 => 'Moville, IA', + 1712943 => 'Sergeant Bluff, IA', + 1713 => 'Texas', + 1713218 => 'Houston, TX', + 1713220 => 'Houston, TX', + 1713221 => 'Houston, TX', + 1713222 => 'Houston, TX', + 1713223 => 'Houston, TX', + 1713224 => 'Houston, TX', + 1713225 => 'Houston, TX', + 1713226 => 'Houston, TX', + 1713227 => 'Houston, TX', + 1713228 => 'Houston, TX', + 1713229 => 'Houston, TX', + 1713236 => 'Houston, TX', + 1713237 => 'Houston, TX', + 1713242 => 'Houston, TX', + 1713255 => 'Houston, TX', + 1713260 => 'Houston, TX', + 1713263 => 'Houston, TX', + 1713266 => 'Houston, TX', + 1713267 => 'Houston, TX', + 1713270 => 'Houston, TX', + 1713271 => 'Houston, TX', + 1713272 => 'Houston, TX', + 1713275 => 'Houston, TX', + 1713276 => 'Louisiana Street, Houston, TX', + 1713278 => 'Houston, TX', + 1713283 => 'Houston, TX', + 1713290 => 'Houston, TX', + 1713330 => 'Houston, TX', + 1713331 => 'Houston, TX', + 1713333 => 'Houston, TX', + 1713334 => 'Houston, TX', + 1713337 => 'Houston, TX', + 1713339 => 'Houston, TX', + 1713340 => 'Pearland, TX', + 1713343 => 'Houston, TX', + 1713349 => 'Houston, TX', + 1713353 => 'Houston, TX', + 1713355 => 'Houston, TX', + 1713360 => 'Houston, TX', + 1713365 => 'Houston, TX', + 1713383 => 'Houston, TX', + 1713400 => 'Houston, TX', + 1713401 => 'Houston, TX', + 1713413 => 'Houston, TX', + 1713425 => 'Houston, TX', + 1713426 => 'Houston, TX', + 1713432 => 'Houston, TX', + 1713433 => 'Houston, TX', + 1713434 => 'Houston, TX', + 1713436 => 'Pearland, TX', + 1713439 => 'Houston, TX', + 1713440 => 'Houston, TX', + 1713441 => 'Houston, TX', + 1713442 => 'Houston, TX', + 1713450 => 'Houston, TX', + 1713451 => 'Houston, TX', + 1713453 => 'Houston, TX', + 1713454 => 'Houston, TX', + 1713455 => 'Houston, TX', + 1713456 => 'Houston, TX', + 1713457 => 'Houston, TX', + 1713458 => 'Houston, TX', + 1713460 => 'Houston, TX', + 1713461 => 'Houston, TX', + 1713462 => 'Houston, TX', + 1713463 => 'Houston, TX', + 1713464 => 'Houston, TX', + 1713465 => 'Houston, TX', + 1713466 => 'Houston, TX', + 1713467 => 'Houston, TX', + 1713468 => 'Houston, TX', + 1713472 => 'Pasadena, TX', + 1713473 => 'Pasadena, TX', + 1713475 => 'Pasadena, TX', + 1713477 => 'Pasadena, TX', + 1713484 => 'Houston, TX', + 1713490 => 'Houston, TX', + 1713491 => 'Houston, TX', + 1713492 => 'Houston, TX', + 1713500 => 'Houston, TX', + 1713512 => 'Houston, TX', + 1713514 => 'Houston, TX', + 1713520 => 'Houston, TX', + 1713521 => 'Houston, TX', + 1713522 => 'Houston, TX', + 1713523 => 'Houston, TX', + 1713524 => 'Houston, TX', + 1713526 => 'Houston, TX', + 1713527 => 'Houston, TX', + 1713528 => 'Houston, TX', + 1713529 => 'Houston, TX', + 1713532 => 'Houston, TX', + 1713533 => 'Houston, TX', + 1713541 => 'Houston, TX', + 1713552 => 'Houston, TX', + 1713554 => 'Houston, TX', + 1713563 => 'Houston, TX', + 1713566 => 'Houston, TX', + 1713571 => 'Houston, TX', + 1713572 => 'Houston, TX', + 1713574 => 'Houston, TX', + 1713590 => 'Houston, TX', + 1713592 => 'Houston, TX', + 1713599 => 'Houston, TX', + 1713620 => 'Houston, TX', + 1713621 => 'Houston, TX', + 1713622 => 'Houston, TX', + 1713623 => 'Houston, TX', + 1713626 => 'Houston, TX', + 1713627 => 'Houston, TX', + 1713629 => 'Houston, TX', + 1713631 => 'Houston, TX', + 1713633 => 'Houston, TX', + 1713635 => 'Houston, TX', + 1713636 => 'Houston, TX', + 1713637 => 'Houston, TX', + 1713640 => 'Houston, TX', + 1713641 => 'Houston, TX', + 1713643 => 'Houston, TX', + 1713644 => 'Houston, TX', + 1713645 => 'Houston, TX', + 1713647 => 'Houston, TX', + 1713649 => 'Houston, TX', + 1713650 => 'Houston, TX', + 1713651 => 'Houston, TX', + 1713652 => 'Houston, TX', + 1713654 => 'Houston, TX', + 1713655 => 'Houston, TX', + 1713658 => 'Houston, TX', + 1713659 => 'Houston, TX', + 1713660 => 'Houston, TX', + 1713661 => 'Houston, TX', + 1713662 => 'Houston, TX', + 1713663 => 'Houston, TX', + 1713664 => 'Houston, TX', + 1713665 => 'Houston, TX', + 1713666 => 'Houston, TX', + 1713667 => 'Houston, TX', + 1713668 => 'Houston, TX', + 1713669 => 'Houston, TX', + 1713670 => 'Houston, TX', + 1713671 => 'Houston, TX', + 1713672 => 'Houston, TX', + 1713673 => 'Houston, TX', + 1713674 => 'Houston, TX', + 1713675 => 'Houston, TX', + 1713676 => 'Houston, TX', + 1713677 => 'Houston, TX', + 1713678 => 'Houston, TX', + 1713680 => 'Houston, TX', + 1713681 => 'Houston, TX', + 1713682 => 'Houston, TX', + 1713683 => 'Houston, TX', + 1713686 => 'Houston, TX', + 1713688 => 'Houston, TX', + 1713690 => 'Houston, TX', + 1713691 => 'Houston, TX', + 1713692 => 'Houston, TX', + 1713694 => 'Houston, TX', + 1713695 => 'Houston, TX', + 1713696 => 'Houston, TX', + 1713697 => 'Houston, TX', + 1713699 => 'Houston, TX', + 1713704 => 'Houston, TX', + 1713706 => 'Houston, TX', + 1713721 => 'Houston, TX', + 1713722 => 'Houston, TX', + 1713723 => 'Houston, TX', + 1713726 => 'Houston, TX', + 1713728 => 'Houston, TX', + 1713729 => 'Houston, TX', + 1713731 => 'Houston, TX', + 1713733 => 'Houston, TX', + 1713734 => 'Houston, TX', + 1713738 => 'Houston, TX', + 1713739 => 'Houston, TX', + 1713740 => 'Pasadena, TX', + 1713741 => 'Houston, TX', + 1713742 => 'Houston, TX', + 1713743 => 'Houston, TX', + 1713747 => 'Houston, TX', + 1713748 => 'Houston, TX', + 1713750 => 'Houston, TX', + 1713751 => 'Houston, TX', + 1713752 => 'Houston, TX', + 1713755 => 'Houston, TX', + 1713757 => 'Houston, TX', + 1713758 => 'Houston, TX', + 1713759 => 'Houston, TX', + 1713771 => 'Houston, TX', + 1713772 => 'Houston, TX', + 1713773 => 'Houston, TX', + 1713774 => 'Houston, TX', + 1713776 => 'Houston, TX', + 1713777 => 'Houston, TX', + 1713778 => 'Houston, TX', + 1713779 => 'Houston, TX', + 1713780 => 'Houston, TX', + 1713781 => 'Houston, TX', + 1713782 => 'Houston, TX', + 1713783 => 'Houston, TX', + 1713784 => 'Houston, TX', + 1713785 => 'Houston, TX', + 1713787 => 'Houston, TX', + 1713789 => 'Houston, TX', + 1713790 => 'Houston, TX', + 1713791 => 'Houston, TX', + 1713792 => 'Houston, TX', + 1713794 => 'Houston, TX', + 1713795 => 'Houston, TX', + 1713796 => 'Houston, TX', + 1713797 => 'Houston, TX', + 1713798 => 'Houston, TX', + 1713799 => 'Houston, TX', + 1713802 => 'Houston, TX', + 1713807 => 'Houston, TX', + 1713812 => 'Houston, TX', + 1713827 => 'Houston, TX', + 1713830 => 'Houston, TX', + 1713838 => 'Houston, TX', + 1713839 => 'Houston, TX', + 1713840 => 'Houston, TX', + 1713842 => 'Houston, TX', + 1713847 => 'Houston, TX', + 1713849 => 'Houston, TX', + 1713850 => 'Houston, TX', + 1713856 => 'Houston, TX', + 1713861 => 'Houston, TX', + 1713862 => 'Houston, TX', + 1713863 => 'Houston, TX', + 1713864 => 'Houston, TX', + 1713867 => 'Houston, TX', + 1713868 => 'Houston, TX', + 1713869 => 'Houston, TX', + 1713871 => 'Houston, TX', + 1713873 => 'Houston, TX', + 1713874 => 'Houston, TX', + 1713877 => 'Houston, TX', + 1713880 => 'Houston, TX', + 1713884 => 'Houston, TX', + 1713895 => 'Houston, TX', + 1713896 => 'Houston, TX', + 1713914 => 'Houston, TX', + 1713917 => 'Houston, TX', + 1713920 => 'Pasadena, TX', + 1713921 => 'Houston, TX', + 1713923 => 'Houston, TX', + 1713924 => 'Houston, TX', + 1713926 => 'Houston, TX', + 1713928 => 'Houston, TX', + 1713932 => 'Houston, TX', + 1713934 => 'Houston, TX', + 1713935 => 'Houston, TX', + 1713937 => 'Houston, TX', + 1713939 => 'Houston, TX', + 1713942 => 'Houston, TX', + 1713951 => 'Houston, TX', + 1713952 => 'Houston, TX', + 1713953 => 'Houston, TX', + 1713956 => 'Houston, TX', + 1713957 => 'Houston, TX', + 1713960 => 'Houston, TX', + 1713961 => 'Houston, TX', + 1713963 => 'Houston, TX', + 1713965 => 'Houston, TX', + 1713966 => 'Houston, TX', + 1713968 => 'Houston, TX', + 1713970 => 'Houston, TX', + 1713972 => 'Houston, TX', + 1713973 => 'Houston, TX', + 1713974 => 'Houston, TX', + 1713975 => 'Houston, TX', + 1713977 => 'Houston, TX', + 1713978 => 'Houston, TX', + 1713979 => 'Houston, TX', + 1713981 => 'Houston, TX', + 1713983 => 'Houston, TX', + 1713984 => 'Houston, TX', + 1713986 => 'Houston, TX', + 1713987 => 'Houston, TX', + 1713988 => 'Houston, TX', + 1713991 => 'Houston, TX', + 1713993 => 'Houston, TX', + 1713995 => 'Houston, TX', + 1713996 => 'Houston, TX', + 1714 => 'California', + 1714221 => 'Orange, CA', + 1714224 => 'Anaheim, CA', + 1714228 => 'Buena Park, CA', + 1714245 => 'Santa Ana, CA', + 1714254 => 'Anaheim, CA', + 1714255 => 'Brea, CA', + 1714256 => 'Brea, CA', + 1714257 => 'Brea, CA', + 1714258 => 'Tustin, CA', + 1714259 => 'Tustin, CA', + 1714278 => 'Fullerton, CA', + 1714280 => 'Anaheim, CA', + 1714281 => 'Anaheim, CA', + 1714285 => 'Santa Ana, CA', + 1714288 => 'Orange, CA', + 1714289 => 'Orange, CA', + 1714368 => 'Tustin, CA', + 1714374 => 'Huntington Beach, CA', + 1714375 => 'Huntington Beach, CA', + 1714377 => 'Huntington Beach, CA', + 1714378 => 'Fountain Valley, CA', + 1714385 => 'Orange, CA', + 1714399 => 'Anaheim, CA', + 1714441 => 'Fullerton, CA', + 1714446 => 'Fullerton, CA', + 1714447 => 'Fullerton, CA', + 1714449 => 'Fullerton, CA', + 1714453 => 'Orange, CA', + 1714456 => 'Orange, CA', + 1714465 => 'Huntington Beach, CA', + 1714480 => 'Santa Ana, CA', + 1714491 => 'Anaheim, CA', + 1714502 => 'Anaheim, CA', + 1714505 => 'Tustin, CA', + 1714508 => 'Tustin, CA', + 1714516 => 'Orange, CA', + 1714517 => 'Anaheim, CA', + 1714520 => 'Anaheim, CA', + 1714521 => 'Buena Park, CA', + 1714522 => 'Buena Park, CA', + 1714523 => 'Buena Park, CA', + 1714525 => 'Fullerton, CA', + 1714526 => 'Fullerton, CA', + 1714529 => 'Brea, CA', + 1714530 => 'Garden Grove, CA', + 1714532 => 'Orange, CA', + 1714533 => 'Anaheim, CA', + 1714534 => 'Garden Grove, CA', + 1714535 => 'Anaheim, CA', + 1714536 => 'Huntington Beach, CA', + 1714537 => 'Garden Grove, CA', + 1714538 => 'Orange, CA', + 1714539 => 'Garden Grove, CA', + 1714541 => 'Santa Ana, CA', + 1714542 => 'Santa Ana, CA', + 1714543 => 'Santa Ana, CA', + 1714544 => 'Tustin, CA', + 1714547 => 'Santa Ana, CA', + 1714550 => 'Santa Ana, CA', + 1714554 => 'Santa Ana, CA', + 1714558 => 'Santa Ana, CA', + 1714560 => 'Santa Ana, CA', + 1714562 => 'Buena Park, CA', + 1714563 => 'Anaheim, CA', + 1714564 => 'Santa Ana, CA', + 1714568 => 'Santa Ana, CA', + 1714569 => 'Santa Ana, CA', + 1714571 => 'Santa Ana, CA', + 1714573 => 'Tustin, CA', + 1714578 => 'Fullerton, CA', + 1714590 => 'Garden Grove, CA', + 1714593 => 'Fountain Valley, CA', + 1714596 => 'Huntington Beach, CA', + 1714626 => 'Fullerton, CA', + 1714628 => 'Orange, CA', + 1714630 => 'Anaheim, CA', + 1714632 => 'Anaheim, CA', + 1714633 => 'Orange, CA', + 1714634 => 'Orange, CA', + 1714635 => 'Anaheim, CA', + 1714636 => 'Garden Grove, CA', + 1714637 => 'Orange, CA', + 1714638 => 'Garden Grove, CA', + 1714639 => 'Orange, CA', + 1714647 => 'Santa Ana, CA', + 1714663 => 'Garden Grove, CA', + 1714665 => 'Tustin, CA', + 1714666 => 'Anaheim, CA', + 1714667 => 'Santa Ana, CA', + 1714669 => 'Tustin, CA', + 1714670 => 'Buena Park, CA', + 1714671 => 'Brea, CA', + 1714672 => 'Brea, CA', + 1714674 => 'Brea, CA', + 1714680 => 'Fullerton, CA', + 1714690 => 'Buena Park, CA', + 1714692 => 'Yorba Linda, CA', + 1714693 => 'Yorba Linda, CA', + 1714701 => 'Anaheim, CA', + 1714730 => 'Tustin, CA', + 1714731 => 'Tustin, CA', + 1714734 => 'Tustin, CA', + 1714736 => 'Buena Park, CA', + 1714738 => 'Fullerton, CA', + 1714739 => 'Buena Park, CA', + 1714741 => 'Garden Grove, CA', + 1714744 => 'Orange, CA', + 1714758 => 'Anaheim, CA', + 1714765 => 'Anaheim, CA', + 1714769 => 'Orange, CA', + 1714771 => 'Orange, CA', + 1714772 => 'Anaheim, CA', + 1714773 => 'Fullerton, CA', + 1714774 => 'Anaheim, CA', + 1714776 => 'Anaheim, CA', + 1714777 => 'Yorba Linda, CA', + 1714778 => 'Anaheim, CA', + 1714780 => 'Anaheim, CA', + 1714781 => 'Anaheim, CA', + 1714808 => 'Anaheim, CA', + 1714817 => 'Anaheim, CA', + 1714832 => 'Tustin, CA', + 1714834 => 'Santa Ana, CA', + 1714835 => 'Santa Ana, CA', + 1714836 => 'Santa Ana, CA', + 1714838 => 'Tustin, CA', + 1714840 => 'Huntington Beach, CA', + 1714841 => 'Huntington Beach, CA', + 1714842 => 'Huntington Beach, CA', + 1714843 => 'Huntington Beach, CA', + 1714846 => 'Huntington Beach, CA', + 1714847 => 'Huntington Beach, CA', + 1714848 => 'Huntington Beach, CA', + 1714870 => 'Fullerton, CA', + 1714871 => 'Fullerton, CA', + 1714879 => 'Fullerton, CA', + 1714896 => 'Westminster, CA', + 1714921 => 'Orange, CA', + 1714935 => 'Orange, CA', + 1714937 => 'Orange, CA', + 1714938 => 'Orange, CA', + 1714939 => 'Orange, CA', + 1714940 => 'Orange, CA', + 1714953 => 'Santa Ana, CA', + 1714956 => 'Anaheim, CA', + 1714960 => 'Huntington Beach, CA', + 1714962 => 'Huntington Beach, CA', + 1714964 => 'Fountain Valley, CA', + 1714969 => 'Huntington Beach, CA', + 1714970 => 'Yorba Linda, CA', + 1714971 => 'Garden Grove, CA', + 1714972 => 'Santa Ana, CA', + 1714973 => 'Santa Ana, CA', + 1714978 => 'Orange, CA', + 1714990 => 'Brea, CA', + 1714991 => 'Anaheim, CA', + 1714992 => 'Fullerton, CA', + 1714994 => 'Buena Park, CA', + 1714997 => 'Orange, CA', + 1714999 => 'Anaheim, CA', + 1715 => 'Wisconsin', + 1715228 => 'Coloma, WI', + 1715229 => 'Owen, WI', + 1715231 => 'Menomonie, WI', + 1715232 => 'Menomonie, WI', + 1715233 => 'Menomonie, WI', + 1715234 => 'Rice Lake, WI', + 1715235 => 'Menomonie, WI', + 1715236 => 'Rice Lake, WI', + 1715239 => 'Cornell, WI', + 1715246 => 'New Richmond, WI', + 1715247 => 'Somerset, WI', + 1715248 => 'Star Prairie, WI', + 1715251 => 'Niagara, WI', + 1715253 => 'Wittenberg, WI', + 1715255 => 'Loyal, WI', + 1715256 => 'Waupaca, WI', + 1715257 => 'Athens, WI', + 1715258 => 'Waupaca, WI', + 1715261 => 'Wausau, WI', + 1715262 => 'Prescott, WI', + 1715263 => 'Clear Lake, WI', + 1715265 => 'Glenwood City, WI', + 1715266 => 'Winter, WI', + 1715267 => 'Greenwood, WI', + 1715268 => 'Amery, WI', + 1715273 => 'Ellsworth, WI', + 1715275 => 'Elcho, WI', + 1715277 => 'Lake Tomahawk, WI', + 1715284 => 'Black River Falls, WI', + 1715286 => 'Augusta, WI', + 1715289 => 'Cadott, WI', + 1715294 => 'Osceola, WI', + 1715298 => 'Wausau, WI', + 1715325 => 'Wisconsin Rapids, WI', + 1715327 => 'Frederic, WI', + 1715335 => 'Plainfield, WI', + 1715339 => 'Phillips, WI', + 1715341 => 'Stevens Point, WI', + 1715342 => 'Stevens Point, WI', + 1715343 => 'Stevens Point, WI', + 1715344 => 'Stevens Point, WI', + 1715345 => 'Stevens Point, WI', + 1715346 => 'Stevens Point, WI', + 1715349 => 'Siren, WI', + 1715352 => 'Edgar, WI', + 1715354 => 'Birchwood, WI', + 1715357 => 'Almena, WI', + 1715358 => 'Minocqua, WI', + 1715359 => 'Schofield, WI', + 1715361 => 'Rhinelander, WI', + 1715362 => 'Rhinelander, WI', + 1715365 => 'Rhinelander, WI', + 1715369 => 'Rhinelander, WI', + 1715372 => 'Iron River, WI', + 1715373 => 'Washburn, WI', + 1715377 => 'Hudson, WI', + 1715381 => 'Hudson, WI', + 1715384 => 'Marshfield, WI', + 1715385 => 'Boulder Junction, WI', + 1715386 => 'Hudson, WI', + 1715387 => 'Marshfield, WI', + 1715389 => 'Marshfield, WI', + 1715392 => 'Superior, WI', + 1715394 => 'Superior, WI', + 1715395 => 'Superior, WI', + 1715398 => 'Superior, WI', + 1715399 => 'Superior, WI', + 1715421 => 'Wisconsin Rapids, WI', + 1715422 => 'Wisconsin Rapids, WI', + 1715423 => 'Wisconsin Rapids, WI', + 1715424 => 'Wisconsin Rapids, WI', + 1715425 => 'River Falls, WI', + 1715426 => 'River Falls, WI', + 1715427 => 'Rib Lake, WI', + 1715428 => 'Prentice, WI', + 1715442 => 'Pepin, WI', + 1715443 => 'Marathon City, WI', + 1715445 => 'Iola, WI', + 1715446 => 'Hatley, WI', + 1715449 => 'Birnamwood, WI', + 1715453 => 'Tomahawk, WI', + 1715457 => 'Junction City, WI', + 1715458 => 'Cameron, WI', + 1715462 => 'Hayward, WI', + 1715463 => 'Grantsburg, WI', + 1715466 => 'Minong, WI', + 1715468 => 'Shell Lake, WI', + 1715472 => 'Luck, WI', + 1715476 => 'Mercer, WI', + 1715477 => 'Eagle River, WI', + 1715478 => 'Crandon, WI', + 1715479 => 'Eagle River, WI', + 1715483 => 'St. Croix Falls, WI', + 1715485 => 'Balsam Lake, WI', + 1715514 => 'Eau Claire, WI', + 1715524 => 'Shawano, WI', + 1715526 => 'Shawano, WI', + 1715528 => 'Florence, WI', + 1715531 => 'Hudson, WI', + 1715532 => 'Ladysmith, WI', + 1715536 => 'Merrill, WI', + 1715537 => 'Barron, WI', + 1715538 => 'Whitehall, WI', + 1715539 => 'Merrill, WI', + 1715542 => 'Saint Germain, WI', + 1715543 => 'Manitowish Waters, WI', + 1715544 => 'Stevens Point, WI', + 1715546 => 'Three Lakes, WI', + 1715547 => 'Land O\' Lakes, WI', + 1715552 => 'Eau Claire, WI', + 1715561 => 'Hurley, WI', + 1715568 => 'Bloomer, WI', + 1715582 => 'Peshtigo, WI', + 1715588 => 'Lac du Flambeau, WI', + 1715592 => 'Custer, WI', + 1715597 => 'Osseo, WI', + 1715623 => 'Antigo, WI', + 1715627 => 'Antigo, WI', + 1715634 => 'Hayward, WI', + 1715635 => 'Spooner, WI', + 1715644 => 'Stanley, WI', + 1715654 => 'Dorchester, WI', + 1715659 => 'Spencer, WI', + 1715669 => 'Thorp, WI', + 1715672 => 'Durand, WI', + 1715674 => 'Laona, WI', + 1715675 => 'Wausau, WI', + 1715677 => 'Rosholt, WI', + 1715682 => 'Ashland, WI', + 1715684 => 'Baldwin, WI', + 1715685 => 'Ashland, WI', + 1715687 => 'Stratford, WI', + 1715693 => 'Mosinee, WI', + 1715698 => 'Woodville, WI', + 1715720 => 'Chippewa Falls, WI', + 1715723 => 'Chippewa Falls, WI', + 1715726 => 'Chippewa Falls, WI', + 1715732 => 'Marinette, WI', + 1715735 => 'Marinette, WI', + 1715736 => 'Rice Lake, WI', + 1715743 => 'Neillsville, WI', + 1715745 => 'Cecil, WI', + 1715748 => 'Medford, WI', + 1715749 => 'Roberts, WI', + 1715754 => 'Marion, WI', + 1715755 => 'Dresser, WI', + 1715758 => 'Bonduel, WI', + 1715762 => 'Park Falls, WI', + 1715778 => 'Spring Valley, WI', + 1715779 => 'Bayfield, WI', + 1715787 => 'Gresham, WI', + 1715798 => 'Cable, WI', + 1715799 => 'Keshena, WI', + 1715822 => 'Cumberland, WI', + 1715823 => 'Clintonville, WI', + 1715824 => 'Amherst, WI', + 1715825 => 'Milltown, WI', + 1715830 => 'Eau Claire, WI', + 1715831 => 'Eau Claire, WI', + 1715832 => 'Eau Claire, WI', + 1715833 => 'Eau Claire, WI', + 1715834 => 'Eau Claire, WI', + 1715835 => 'Eau Claire, WI', + 1715836 => 'Eau Claire, WI', + 1715838 => 'Eau Claire, WI', + 1715839 => 'Eau Claire, WI', + 1715842 => 'Wausau, WI', + 1715843 => 'Wausau, WI', + 1715845 => 'Wausau, WI', + 1715847 => 'Wausau, WI', + 1715848 => 'Wausau, WI', + 1715849 => 'Wausau, WI', + 1715854 => 'Crivitz, WI', + 1715855 => 'Eau Claire, WI', + 1715856 => 'Wausaukee, WI', + 1715858 => 'Eau Claire, WI', + 1715866 => 'Webster, WI', + 1715868 => 'Bruce, WI', + 1715874 => 'Eau Claire, WI', + 1715877 => 'Fall Creek, WI', + 1715884 => 'Pittsville, WI', + 1715886 => 'Nekoosa, WI', + 1715924 => 'Chetek, WI', + 1715926 => 'Mondovi, WI', + 1715934 => 'Hayward, WI', + 1715962 => 'Colfax, WI', + 1715985 => 'Independence, WI', + 1715986 => 'Turtle Lake, WI', + 1716 => 'New York', + 1716257 => 'Cattaraugus, NY', + 1716276 => 'Wehrle Drive, Buffalo, NY', + 1716278 => 'Niagara Falls, NY', + 1716282 => 'Niagara Falls, NY', + 1716283 => 'Niagara Falls, NY', + 1716284 => 'Niagara Falls, NY', + 1716285 => 'Niagara Falls, NY', + 1716297 => 'Niagara Falls, NY', + 1716298 => 'Niagara Falls, NY', + 1716326 => 'Westfield, NY', + 1716332 => 'Buffalo, NY', + 1716337 => 'North Collins, NY', + 1716355 => 'Clymer, NY', + 1716358 => 'Randolph, NY', + 1716362 => 'Buffalo, NY', + 1716363 => 'Dunkirk, NY', + 1716366 => 'Dunkirk, NY', + 1716372 => 'Olean, NY', + 1716373 => 'Olean, NY', + 1716375 => 'Olean, NY', + 1716386 => 'Bemus Point, NY', + 1716433 => 'Lockport, NY', + 1716434 => 'Lockport, NY', + 1716438 => 'Lockport, NY', + 1716439 => 'Lockport, NY', + 1716446 => 'Buffalo, NY', + 1716483 => 'Jamestown, NY', + 1716484 => 'Jamestown, NY', + 1716487 => 'Jamestown, NY', + 1716488 => 'Jamestown, NY', + 1716532 => 'Gowanda, NY', + 1716537 => 'Holland, NY', + 1716542 => 'Akron, NY', + 1716549 => 'Angola, NY', + 1716569 => 'Frewsburg, NY', + 1716592 => 'Springville, NY', + 1716595 => 'Cassadaga, NY', + 1716625 => 'Lockport, NY', + 1716627 => 'Hamburg, NY', + 1716634 => 'Williamsville, NY', + 1716646 => 'Hamburg, NY', + 1716648 => 'Hamburg, NY', + 1716649 => 'Hamburg, NY', + 1716652 => 'East Aurora, NY', + 1716655 => 'East Aurora, NY', + 1716661 => 'Jamestown, NY', + 1716662 => 'Orchard Park, NY', + 1716664 => 'Jamestown, NY', + 1716665 => 'Jamestown, NY', + 1716667 => 'Orchard Park, NY', + 1716672 => 'Fredonia, NY', + 1716673 => 'Fredonia, NY', + 1716674 => 'West Seneca, NY', + 1716675 => 'West Seneca, NY', + 1716676 => 'Franklinville, NY', + 1716679 => 'Fredonia, NY', + 1716692 => 'North Tonawanda, NY', + 1716693 => 'North Tonawanda, NY', + 1716694 => 'North Tonawanda, NY', + 1716695 => 'North Tonawanda, NY', + 1716699 => 'Ellicottville, NY', + 1716712 => 'West Seneca, NY', + 1716731 => 'Sanborn, NY', + 1716735 => 'Middleport, NY', + 1716741 => 'Clarence Center, NY', + 1716745 => 'Youngstown, NY', + 1716751 => 'Wilson, NY', + 1716753 => 'Mayville, NY', + 1716754 => 'Lewiston, NY', + 1716759 => 'Clarence, NY', + 1716761 => 'Sherman, NY', + 1716763 => 'Lakewood, NY', + 1716772 => 'Gasport, NY', + 1716773 => 'Grand Island, NY', + 1716778 => 'Newfane, NY', + 1716783 => 'Buffalo, NY', + 1716791 => 'Ransomville, NY', + 1716792 => 'Brocton, NY', + 1716816 => 'Buffalo, NY', + 1716822 => 'Buffalo, NY', + 1716823 => 'Buffalo, NY', + 1716824 => 'Buffalo, NY', + 1716826 => 'Buffalo, NY', + 1716828 => 'Buffalo, NY', + 1716829 => 'Buffalo, NY', + 1716831 => 'Buffalo, NY', + 1716832 => 'Buffalo, NY', + 1716833 => 'Buffalo, NY', + 1716834 => 'Buffalo, NY', + 1716835 => 'Buffalo, NY', + 1716836 => 'Buffalo, NY', + 1716838 => 'Buffalo, NY', + 1716842 => 'Buffalo, NY', + 1716844 => 'Buffalo, NY', + 1716845 => 'Buffalo, NY', + 1716847 => 'Buffalo, NY', + 1716848 => 'Buffalo, NY', + 1716849 => 'Buffalo, NY', + 1716851 => 'Buffalo, NY', + 1716852 => 'Buffalo, NY', + 1716853 => 'Buffalo, NY', + 1716854 => 'Buffalo, NY', + 1716855 => 'Buffalo, NY', + 1716856 => 'Buffalo, NY', + 1716858 => 'Buffalo, NY', + 1716859 => 'Buffalo, NY', + 1716862 => 'Buffalo, NY', + 1716871 => 'Buffalo, NY', + 1716873 => 'Buffalo, NY', + 1716874 => 'Buffalo, NY', + 1716875 => 'Buffalo, NY', + 1716876 => 'Buffalo, NY', + 1716877 => 'Buffalo, NY', + 1716878 => 'Buffalo, NY', + 1716881 => 'Buffalo, NY', + 1716882 => 'Buffalo, NY', + 1716883 => 'Buffalo, NY', + 1716884 => 'Buffalo, NY', + 1716885 => 'Buffalo, NY', + 1716886 => 'Buffalo, NY', + 1716887 => 'Buffalo, NY', + 1716891 => 'Buffalo, NY', + 1716892 => 'Buffalo, NY', + 1716893 => 'Buffalo, NY', + 1716894 => 'Cheektowaga, NY', + 1716895 => 'Buffalo, NY', + 1716896 => 'Buffalo, NY', + 1716897 => 'Buffalo, NY', + 1716898 => 'Buffalo, NY', + 1716934 => 'Silver Creek, NY', + 1716937 => 'Alden, NY', + 1716938 => 'Little Valley, NY', + 1716945 => 'Salamanca, NY', + 1716947 => 'Derby, NY', + 1716961 => 'Buffalo, NY', + 1716992 => 'Eden, NY', + 1717 => 'Pennsylvania', + 1717207 => 'Lancaster, PA', + 1717217 => 'Chambersburg, PA', + 1717218 => 'Carlisle, PA', + 1717221 => 'Harrisburg, PA', + 1717225 => 'Spring Grove, PA', + 1717228 => 'Lebanon, PA', + 1717230 => 'Harrisburg, PA', + 1717231 => 'Harrisburg, PA', + 1717232 => 'Harrisburg, PA', + 1717233 => 'Harrisburg, PA', + 1717234 => 'Harrisburg, PA', + 1717236 => 'Harrisburg, PA', + 1717237 => 'Harrisburg, PA', + 1717238 => 'Harrisburg, PA', + 1717240 => 'Carlisle, PA', + 1717241 => 'Carlisle, PA', + 1717242 => 'Lewistown, PA', + 1717243 => 'Carlisle, PA', + 1717244 => 'Red Lion, PA', + 1717245 => 'Carlisle, PA', + 1717246 => 'Red Lion, PA', + 1717248 => 'Lewistown, PA', + 1717249 => 'Carlisle, PA', + 1717252 => 'Wrightsville, PA', + 1717255 => 'Harrisburg, PA', + 1717258 => 'Carlisle, PA', + 1717259 => 'East Berlin, PA', + 1717260 => 'Harrisburg, PA', + 1717261 => 'Chambersburg, PA', + 1717262 => 'Chambersburg, PA', + 1717263 => 'Chambersburg, PA', + 1717264 => 'Chambersburg, PA', + 1717267 => 'Chambersburg, PA', + 1717270 => 'Lebanon, PA', + 1717272 => 'Lebanon, PA', + 1717273 => 'Lebanon, PA', + 1717274 => 'Lebanon, PA', + 1717279 => 'Lebanon, PA', + 1717290 => 'Lancaster, PA', + 1717291 => 'Lancaster, PA', + 1717292 => 'Dover, PA', + 1717293 => 'Lancaster, PA', + 1717295 => 'Lancaster, PA', + 1717299 => 'Lancaster, PA', + 1717328 => 'Mercersburg, PA', + 1717334 => 'Gettysburg, PA', + 1717335 => 'Denver, PA', + 1717337 => 'Gettysburg, PA', + 1717338 => 'Gettysburg, PA', + 1717339 => 'Gettysburg, PA', + 1717352 => 'Fayetteville, PA', + 1717354 => 'New Holland, PA', + 1717355 => 'New Holland, PA', + 1717359 => 'Littlestown, PA', + 1717361 => 'Elizabethtown, PA', + 1717362 => 'Elizabethville, PA', + 1717367 => 'Elizabethtown, PA', + 1717375 => 'Chambersburg, PA', + 1717390 => 'Lancaster, PA', + 1717391 => 'Lancaster, PA', + 1717392 => 'Lancaster, PA', + 1717393 => 'Lancaster, PA', + 1717394 => 'Lancaster, PA', + 1717396 => 'Lancaster, PA', + 1717397 => 'Lancaster, PA', + 1717399 => 'Lancaster, PA', + 1717412 => 'Harrisburg, PA', + 1717423 => 'Newburg, PA', + 1717426 => 'Marietta, PA', + 1717431 => 'Lancaster, PA', + 1717432 => 'Dillsburg, PA', + 1717435 => 'Lancaster, PA', + 1717436 => 'Mifflintown, PA', + 1717441 => 'Harrisburg, PA', + 1717442 => 'Gap, PA', + 1717444 => 'Liverpool, PA', + 1717456 => 'Delta, PA', + 1717458 => 'Mechanicsburg, PA', + 1717463 => 'McAlisterville, PA', + 1717464 => 'Willow Street, PA', + 1717469 => 'Grantville, PA', + 1717477 => 'Shippensburg, PA', + 1717485 => 'McConnellsburg, PA', + 1717486 => 'Mount Holly Springs, PA', + 1717492 => 'Mount Joy, PA', + 1717502 => 'Dillsburg, PA', + 1717509 => 'Lancaster, PA', + 1717517 => 'Lancaster, PA', + 1717519 => 'Lancaster, PA', + 1717520 => 'Hershey, PA', + 1717525 => 'Harrisburg, PA', + 1717526 => 'Harrisburg, PA', + 1717528 => 'York Springs, PA', + 1717530 => 'Shippensburg, PA', + 1717531 => 'Hershey, PA', + 1717532 => 'Shippensburg, PA', + 1717533 => 'Hershey, PA', + 1717534 => 'Hershey, PA', + 1717540 => 'Harrisburg, PA', + 1717541 => 'Harrisburg, PA', + 1717544 => 'Lancaster, PA', + 1717545 => 'Harrisburg, PA', + 1717548 => 'Peach Bottom, PA', + 1717558 => 'Harrisburg, PA', + 1717560 => 'Lancaster, PA', + 1717561 => 'Harrisburg, PA', + 1717564 => 'Harrisburg, PA', + 1717566 => 'Hummelstown, PA', + 1717567 => 'Newport, PA', + 1717569 => 'Lancaster, PA', + 1717581 => 'Lancaster, PA', + 1717582 => 'New Bloomfield, PA', + 1717589 => 'Millerstown, PA', + 1717591 => 'Mechanicsburg, PA', + 1717597 => 'Greencastle, PA', + 1717600 => 'York, PA', + 1717624 => 'New Oxford, PA', + 1717625 => 'Lititz, PA', + 1717626 => 'Lititz, PA', + 1717627 => 'Lititz, PA', + 1717630 => 'Hanover, PA', + 1717632 => 'Hanover, PA', + 1717633 => 'Hanover, PA', + 1717635 => 'Harrisburg, PA', + 1717637 => 'Hanover, PA', + 1717642 => 'Fairfield, PA', + 1717646 => 'Hanover, PA', + 1717647 => 'Tower City, PA', + 1717650 => 'York, PA', + 1717651 => 'Harrisburg, PA', + 1717652 => 'Harrisburg, PA', + 1717653 => 'Mount Joy, PA', + 1717656 => 'Leola, PA', + 1717657 => 'Harrisburg, PA', + 1717664 => 'Manheim, PA', + 1717665 => 'Manheim, PA', + 1717667 => 'Reedsville, PA', + 1717671 => 'Harrisburg, PA', + 1717677 => 'Biglerville, PA', + 1717684 => 'Columbia, PA', + 1717691 => 'Mechanicsburg, PA', + 1717692 => 'Millersburg, PA', + 1717695 => 'Harrisburg, PA', + 1717697 => 'Mechanicsburg, PA', + 1717699 => 'York, PA', + 1717709 => 'Chambersburg, PA', + 1717718 => 'York, PA', + 1717721 => 'Ephrata, PA', + 1717724 => 'Harrisburg, PA', + 1717728 => 'Enola, PA', + 1717732 => 'Enola, PA', + 1717733 => 'Ephrata, PA', + 1717735 => 'Lancaster, PA', + 1717737 => 'Camp Hill, PA', + 1717738 => 'Ephrata, PA', + 1717741 => 'York, PA', + 1717747 => 'York, PA', + 1717749 => 'Waynesboro, PA', + 1717751 => 'York, PA', + 1717755 => 'York, PA', + 1717757 => 'York, PA', + 1717761 => 'Camp Hill, PA', + 1717762 => 'Waynesboro, PA', + 1717763 => 'Camp Hill, PA', + 1717764 => 'York, PA', + 1717765 => 'Waynesboro, PA', + 1717766 => 'Mechanicsburg, PA', + 1717767 => 'York, PA', + 1717771 => 'York, PA', + 1717774 => 'New Cumberland, PA', + 1717776 => 'Newville, PA', + 1717782 => 'Harrisburg, PA', + 1717786 => 'Quarryville, PA', + 1717787 => 'Harrisburg, PA', + 1717789 => 'Loysville, PA', + 1717790 => 'Mechanicsburg, PA', + 1717791 => 'Mechanicsburg, PA', + 1717792 => 'York, PA', + 1717793 => 'York, PA', + 1717795 => 'Mechanicsburg, PA', + 1717796 => 'Mechanicsburg, PA', + 1717812 => 'York, PA', + 1717832 => 'Palmyra, PA', + 1717834 => 'Duncannon, PA', + 1717838 => 'Palmyra, PA', + 1717840 => 'York, PA', + 1717843 => 'York, PA', + 1717845 => 'York, PA', + 1717846 => 'York, PA', + 1717848 => 'York, PA', + 1717849 => 'York, PA', + 1717851 => 'York, PA', + 1717852 => 'York, PA', + 1717854 => 'York, PA', + 1717866 => 'Myerstown, PA', + 1717867 => 'Annville, PA', + 1717896 => 'Halifax, PA', + 1717899 => 'McVeytown, PA', + 1717901 => 'Harrisburg, PA', + 1717909 => 'Harrisburg, PA', + 1717920 => 'Harrisburg, PA', + 1717921 => 'Dauphin, PA', + 1717927 => 'Brogue, PA', + 1717935 => 'Belleville, PA', + 1717944 => 'Middletown, PA', + 1717945 => 'Lancaster, PA', + 1717948 => 'Middletown, PA', + 1717957 => 'Marysville, PA', + 1717964 => 'Mount Gretna, PA', + 1717975 => 'Camp Hill, PA', + 1717993 => 'Stewartstown, PA', + 1718 => 'New York', + 1718206 => 'Jamaica, NY', + 1718209 => 'Brooklyn, NY', + 1718210 => 'Brooklyn, NY', + 1718218 => 'Brooklyn, NY', + 1718220 => 'Bronx, NY', + 1718221 => 'Brooklyn, NY', + 1718222 => 'Brooklyn, NY', + 1718226 => 'Staten Island, NY', + 1718227 => 'Staten Island, NY', + 1718230 => 'Brooklyn, NY', + 1718231 => 'Bronx, NY', + 1718232 => 'Brooklyn, NY', + 1718234 => 'Brooklyn, NY', + 1718235 => 'Brooklyn, NY', + 1718236 => 'Brooklyn, NY', + 1718237 => 'Brooklyn, NY', + 1718238 => 'Brooklyn, NY', + 1718239 => 'Bronx, NY', + 1718240 => 'Brooklyn, NY', + 1718241 => 'Brooklyn, NY', + 1718243 => 'Brooklyn, NY', + 1718244 => 'Jamaica, NY', + 1718245 => 'Brooklyn, NY', + 1718246 => 'Brooklyn, NY', + 1718250 => 'Downtown Brooklyn, Brooklyn, NY', + 1718251 => 'Brooklyn, NY', + 1718252 => 'Brooklyn, NY', + 1718253 => 'Brooklyn, NY', + 1718256 => 'Brooklyn, NY', + 1718257 => 'Brooklyn, NY', + 1718258 => 'Brooklyn, NY', + 1718259 => 'Brooklyn, NY', + 1718260 => 'Brooklyn, NY', + 1718262 => 'Jamaica, NY', + 1718265 => 'Brooklyn, NY', + 1718266 => 'Brooklyn, NY', + 1718270 => 'Brooklyn, NY', + 1718272 => 'Brooklyn, NY', + 1718273 => 'Staten Island, NY', + 1718277 => 'Brooklyn, NY', + 1718282 => 'Brooklyn, NY', + 1718283 => 'Brooklyn, NY', + 1718284 => 'Brooklyn, NY', + 1718287 => 'Brooklyn, NY', + 1718291 => 'Jamaica, NY', + 1718292 => 'Bronx, NY', + 1718293 => 'Bronx, NY', + 1718294 => 'Bronx, NY', + 1718295 => 'Bronx, NY', + 1718297 => 'Jamaica, NY', + 1718298 => 'Jamaica, NY', + 1718299 => 'Bronx, NY', + 1718302 => 'Brooklyn, NY', + 1718317 => 'Staten Island, NY', + 1718319 => 'Bronx, NY', + 1718320 => 'Bronx, NY', + 1718321 => 'Flushing, NY', + 1718324 => 'Bronx, NY', + 1718325 => 'Bronx, NY', + 1718327 => 'Far Rockaway, NY', + 1718328 => 'Bronx, NY', + 1718329 => 'Bronx, NY', + 1718330 => 'Brooklyn, NY', + 1718331 => 'Brooklyn, NY', + 1718332 => 'Brooklyn, NY', + 1718333 => 'Brooklyn, NY', + 1718334 => 'Elmhurst, NY', + 1718336 => 'Brooklyn, NY', + 1718337 => 'Far Rockaway, NY', + 1718338 => 'Brooklyn, NY', + 1718339 => 'Brooklyn, NY', + 1718342 => 'Brooklyn, NY', + 1718345 => 'Brooklyn, NY', + 1718346 => 'Brooklyn, NY', + 1718348 => 'Brooklyn, NY', + 1718349 => 'Brooklyn, NY', + 1718351 => 'Staten Island, NY', + 1718353 => 'Flushing, NY', + 1718356 => 'Staten Island, NY', + 1718358 => 'Flushing, NY', + 1718359 => 'Flushing, NY', + 1718361 => 'Long Island City, NY', + 1718363 => 'Brooklyn, NY', + 1718364 => 'Bronx, NY', + 1718365 => 'Bronx, NY', + 1718367 => 'Bronx, NY', + 1718368 => 'Brooklyn, NY', + 1718369 => 'Brooklyn, NY', + 1718370 => 'Staten Island, NY', + 1718372 => 'Brooklyn, NY', + 1718373 => 'Brooklyn, NY', + 1718375 => 'Brooklyn, NY', + 1718376 => 'Brooklyn, NY', + 1718377 => 'Brooklyn, NY', + 1718378 => 'Bronx, NY', + 1718379 => 'Bronx, NY', + 1718382 => 'Brooklyn, NY', + 1718383 => 'Brooklyn, NY', + 1718384 => 'Brooklyn, NY', + 1718385 => 'Brooklyn, NY', + 1718387 => 'Brooklyn, NY', + 1718388 => 'Brooklyn, NY', + 1718389 => 'Brooklyn, NY', + 1718390 => 'Staten Island, NY', + 1718392 => 'Long Island City, NY', + 1718397 => 'Flushing, NY', + 1718398 => 'Brooklyn, NY', + 1718399 => 'Brooklyn, NY', + 1718401 => 'Bronx, NY', + 1718402 => 'Bronx, NY', + 1718403 => 'Brooklyn, NY', + 1718405 => 'Bronx, NY', + 1718409 => 'Bronx, NY', + 1718410 => 'Bronx, NY', + 1718420 => 'Staten Island, NY', + 1718421 => 'Brooklyn, NY', + 1718422 => 'Brooklyn, NY', + 1718430 => 'Bronx, NY', + 1718431 => 'Brooklyn, NY', + 1718432 => 'Bronx, NY', + 1718433 => 'Long Island City, NY', + 1718434 => 'Brooklyn, NY', + 1718435 => 'Brooklyn, NY', + 1718436 => 'Brooklyn, NY', + 1718437 => 'Brooklyn, NY', + 1718438 => 'Brooklyn, NY', + 1718439 => 'Brooklyn, NY', + 1718442 => 'Staten Island, NY', + 1718443 => 'Brooklyn, NY', + 1718444 => 'Brooklyn, NY', + 1718445 => 'Flushing, NY', + 1718447 => 'Staten Island, NY', + 1718448 => 'Staten Island, NY', + 1718449 => 'Brooklyn, NY', + 1718450 => 'Bronx, NY', + 1718451 => 'Brooklyn, NY', + 1718452 => 'Brooklyn, NY', + 1718453 => 'Brooklyn, NY', + 1718455 => 'Brooklyn, NY', + 1718460 => 'Flushing, NY', + 1718461 => 'Flushing, NY', + 1718462 => 'Brooklyn, NY', + 1718463 => 'Flushing, NY', + 1718466 => 'Bronx, NY', + 1718467 => 'Brooklyn, NY', + 1718469 => 'Brooklyn, NY', + 1718471 => 'Far Rockaway, NY', + 1718472 => 'Long Island City, NY', + 1718477 => 'Staten Island, NY', + 1718482 => 'Long Island City, NY', + 1718483 => 'Brooklyn, NY', + 1718484 => 'Brooklyn, NY', + 1718485 => 'Brooklyn, NY', + 1718486 => 'Brooklyn, NY', + 1718488 => 'Brooklyn, NY', + 1718491 => 'Brooklyn, NY', + 1718492 => 'Brooklyn, NY', + 1718493 => 'Brooklyn, NY', + 1718494 => 'Staten Island, NY', + 1718495 => 'Brooklyn, NY', + 1718498 => 'Brooklyn, NY', + 1718499 => 'Brooklyn, NY', + 1718513 => 'Brooklyn, NY', + 1718515 => 'Bronx, NY', + 1718518 => 'Bronx, NY', + 1718519 => 'Bronx, NY', + 1718522 => 'Brooklyn, NY', + 1718523 => 'Jamaica, NY', + 1718525 => 'Jamaica, NY', + 1718526 => 'Jamaica, NY', + 1718527 => 'Jamaica, NY', + 1718531 => 'Brooklyn, NY', + 1718537 => 'Bronx, NY', + 1718538 => 'Bronx, NY', + 1718539 => 'Flushing, NY', + 1718542 => 'Bronx, NY', + 1718543 => 'Bronx, NY', + 1718547 => 'Bronx, NY', + 1718548 => 'Bronx, NY', + 1718549 => 'Bronx, NY', + 1718552 => 'Brooklyn, NY', + 1718553 => 'Jamaica, NY', + 1718556 => 'Staten Island, NY', + 1718558 => 'Jamaica, NY', + 1718561 => 'Bronx, NY', + 1718562 => 'Bronx, NY', + 1718563 => 'Bronx, NY', + 1718567 => 'Brooklyn, NY', + 1718573 => 'Brooklyn, NY', + 1718574 => 'Brooklyn, NY', + 1718579 => 'Bronx, NY', + 1718583 => 'Bronx, NY', + 1718584 => 'Bronx, NY', + 1718585 => 'Bronx, NY', + 1718588 => 'Bronx, NY', + 1718589 => 'Bronx, NY', + 1718590 => 'Bronx, NY', + 1718592 => 'Flushing, NY', + 1718596 => 'Brooklyn, NY', + 1718597 => 'Bronx, NY', + 1718599 => 'Brooklyn, NY', + 1718601 => 'Bronx, NY', + 1718602 => 'Brooklyn, NY', + 1718604 => 'Brooklyn, NY', + 1718605 => 'Staten Island, NY', + 1718608 => 'Staten Island, NY', + 1718615 => 'Brooklyn, NY', + 1718616 => 'Brooklyn, NY', + 1718617 => 'Bronx, NY', + 1718618 => 'Bronx, NY', + 1718620 => 'Bronx, NY', + 1718621 => 'Brooklyn, NY', + 1718622 => 'Brooklyn, NY', + 1718623 => 'Brooklyn, NY', + 1718624 => 'Brooklyn, NY', + 1718625 => 'Brooklyn, NY', + 1718627 => 'Brooklyn, NY', + 1718629 => 'Brooklyn, NY', + 1718630 => 'Brooklyn, NY', + 1718633 => 'Brooklyn, NY', + 1718636 => 'Brooklyn, NY', + 1718638 => 'Brooklyn, NY', + 1718642 => 'Brooklyn, NY', + 1718643 => 'Brooklyn, NY', + 1718645 => 'Brooklyn, NY', + 1718646 => 'Brooklyn, NY', + 1718647 => 'Brooklyn, NY', + 1718648 => 'Brooklyn, NY', + 1718649 => 'Brooklyn, NY', + 1718652 => 'Bronx, NY', + 1718653 => 'Bronx, NY', + 1718654 => 'Bronx, NY', + 1718655 => 'Bronx, NY', + 1718656 => 'Jamaica, NY', + 1718657 => 'Jamaica, NY', + 1718658 => 'Jamaica, NY', + 1718661 => 'Flushing, NY', + 1718665 => 'Bronx, NY', + 1718667 => 'Staten Island, NY', + 1718668 => 'Staten Island, NY', + 1718670 => 'Flushing, NY', + 1718676 => 'Brooklyn, NY', + 1718677 => 'Brooklyn, NY', + 1718680 => 'Brooklyn, NY', + 1718681 => 'Bronx, NY', + 1718684 => 'Bronx, NY', + 1718686 => 'Brooklyn, NY', + 1718692 => 'Brooklyn, NY', + 1718693 => 'Brooklyn, NY', + 1718698 => 'Staten Island, NY', + 1718703 => 'Brooklyn, NY', + 1718707 => 'Long Island City, NY', + 1718708 => 'Bronx, NY', + 1718714 => 'Brooklyn, NY', + 1718716 => 'Bronx, NY', + 1718720 => 'Staten Island, NY', + 1718722 => 'Brooklyn, NY', + 1718723 => 'Jamaica, NY', + 1718725 => 'Jamaica, NY', + 1718727 => 'Staten Island, NY', + 1718729 => 'Long Island City, NY', + 1718731 => 'Bronx, NY', + 1718733 => 'Bronx, NY', + 1718735 => 'Brooklyn, NY', + 1718739 => 'Jamaica, NY', + 1718741 => 'Bronx, NY', + 1718742 => 'Bronx, NY', + 1718743 => 'Brooklyn, NY', + 1718745 => 'Brooklyn, NY', + 1718748 => 'Brooklyn, NY', + 1718752 => 'Long Island City, NY', + 1718756 => 'Brooklyn, NY', + 1718758 => 'Brooklyn, NY', + 1718759 => 'Brooklyn, NY', + 1718761 => 'Staten Island, NY', + 1718762 => 'Flushing, NY', + 1718763 => 'Brooklyn, NY', + 1718765 => 'Brooklyn, NY', + 1718768 => 'Brooklyn, NY', + 1718769 => 'Brooklyn, NY', + 1718771 => 'Brooklyn, NY', + 1718773 => 'Brooklyn, NY', + 1718774 => 'Brooklyn, NY', + 1718778 => 'Brooklyn, NY', + 1718780 => 'Brooklyn, NY', + 1718782 => 'Brooklyn, NY', + 1718783 => 'Brooklyn, NY', + 1718784 => 'Long Island City, NY', + 1718786 => 'Long Island City, NY', + 1718787 => 'Brooklyn, NY', + 1718788 => 'Brooklyn, NY', + 1718789 => 'Brooklyn, NY', + 1718792 => 'Bronx, NY', + 1718794 => 'Bronx, NY', + 1718796 => 'Bronx, NY', + 1718797 => 'Brooklyn, NY', + 1718798 => 'Bronx, NY', + 1718802 => 'Brooklyn, NY', + 1718815 => 'Staten Island, NY', + 1718816 => 'Staten Island, NY', + 1718818 => 'Staten Island, NY', + 1718822 => 'Bronx, NY', + 1718823 => 'Bronx, NY', + 1718824 => 'Bronx, NY', + 1718826 => 'Brooklyn, NY', + 1718827 => 'Brooklyn, NY', + 1718828 => 'Bronx, NY', + 1718829 => 'Bronx, NY', + 1718832 => 'Brooklyn, NY', + 1718833 => 'Brooklyn, NY', + 1718834 => 'Brooklyn, NY', + 1718836 => 'Brooklyn, NY', + 1718837 => 'Brooklyn, NY', + 1718842 => 'Bronx, NY', + 1718851 => 'Brooklyn, NY', + 1718852 => 'Brooklyn, NY', + 1718853 => 'Brooklyn, NY', + 1718854 => 'Brooklyn, NY', + 1718855 => 'Brooklyn, NY', + 1718856 => 'Brooklyn, NY', + 1718857 => 'Brooklyn, NY', + 1718858 => 'Brooklyn, NY', + 1718859 => 'Brooklyn, NY', + 1718860 => 'Bronx, NY', + 1718861 => 'Bronx, NY', + 1718863 => 'Bronx, NY', + 1718868 => 'Far Rockaway, NY', + 1718871 => 'Brooklyn, NY', + 1718875 => 'Brooklyn, NY', + 1718876 => 'Staten Island, NY', + 1718881 => 'Bronx, NY', + 1718882 => 'Bronx, NY', + 1718883 => 'Jamaica, NY', + 1718884 => 'Bronx, NY', + 1718885 => 'Bronx, NY', + 1718886 => 'Flushing, NY', + 1718888 => 'Flushing, NY', + 1718891 => 'Brooklyn, NY', + 1718892 => 'Bronx, NY', + 1718893 => 'Bronx, NY', + 1718901 => 'Bronx, NY', + 1718904 => 'Bronx, NY', + 1718918 => 'Bronx, NY', + 1718919 => 'Brooklyn, NY', + 1718920 => 'Bronx, NY', + 1718921 => 'Brooklyn, NY', + 1718922 => 'Brooklyn, NY', + 1718927 => 'Brooklyn, NY', + 1718928 => 'Brooklyn, NY', + 1718931 => 'Bronx, NY', + 1718933 => 'Bronx, NY', + 1718934 => 'Brooklyn, NY', + 1718935 => 'Brooklyn, NY', + 1718937 => 'Long Island City, NY', + 1718939 => 'Flushing, NY', + 1718940 => 'Brooklyn, NY', + 1718941 => 'Brooklyn, NY', + 1718944 => 'Bronx, NY', + 1718946 => 'Brooklyn, NY', + 1718948 => 'Staten Island, NY', + 1718951 => 'Brooklyn, NY', + 1718953 => 'Brooklyn, NY', + 1718960 => 'Bronx, NY', + 1718961 => 'Flushing, NY', + 1718963 => 'Brooklyn, NY', + 1718965 => 'Brooklyn, NY', + 1718966 => 'Staten Island, NY', + 1718967 => 'Staten Island, NY', + 1718968 => 'Brooklyn, NY', + 1718972 => 'Brooklyn, NY', + 1718975 => 'Brooklyn, NY', + 1718978 => 'Jamaica, NY', + 1718979 => 'Staten Island, NY', + 1718980 => 'Staten Island, NY', + 1718981 => 'Staten Island, NY', + 1718982 => 'Staten Island, NY', + 1718983 => 'Staten Island, NY', + 1718984 => 'Staten Island, NY', + 1718987 => 'Staten Island, NY', + 1718990 => 'Jamaica, NY', + 1718991 => 'Bronx, NY', + 1718992 => 'Bronx, NY', + 1718993 => 'Bronx, NY', + 1718994 => 'Bronx, NY', + 1718995 => 'Jamaica, NY', + 1718996 => 'Brooklyn, NY', + 1718998 => 'Brooklyn, NY', + 1719 => 'Colorado', + 1719203 => 'Colorado Springs, CO', + 1719219 => 'Colorado Springs, CO', + 1719227 => 'Colorado Springs, CO', + 1719229 => 'Colorado Springs, CO', + 1719231 => 'Colorado Springs, CO', + 1719254 => 'Rocky Ford, CO', + 1719256 => 'Crestone, CO', + 1719260 => 'Colorado Springs, CO', + 1719263 => 'Fowler, CO', + 1719264 => 'Colorado Springs, CO', + 1719265 => 'Colorado Springs, CO', + 1719266 => 'Colorado Springs, CO', + 1719267 => 'Ordway, CO', + 1719268 => 'Colorado Springs, CO', + 1719269 => 'Cañon City, CO', + 1719274 => 'La Jara, CO', + 1719275 => 'Cañon City, CO', + 1719276 => 'Cañon City, CO', + 1719282 => 'Colorado Springs, CO', + 1719302 => 'Colorado Springs, CO', + 1719314 => 'Colorado Springs, CO', + 1719328 => 'Colorado Springs, CO', + 1719331 => 'Colorado Springs, CO', + 1719333 => 'Air Force Academy, CO', + 1719336 => 'Lamar, CO', + 1719338 => 'Colorado Springs, CO', + 1719339 => 'Colorado Springs, CO', + 1719344 => 'Colorado Springs, CO', + 1719346 => 'Burlington, CO', + 1719347 => 'Calhan, CO', + 1719357 => 'Colorado Springs, CO', + 1719358 => 'Colorado Springs, CO', + 1719359 => 'Colorado Springs, CO', + 1719365 => 'Colorado Springs, CO', + 1719372 => 'Penrose, CO', + 1719375 => 'Colorado Springs, CO', + 1719376 => 'Antonito, CO', + 1719380 => 'Colorado Springs, CO', + 1719382 => 'Fountain, CO', + 1719383 => 'La Junta, CO', + 1719384 => 'La Junta, CO', + 1719385 => 'Colorado Springs, CO', + 1719387 => 'Colorado Springs, CO', + 1719390 => 'Colorado Springs, CO', + 1719391 => 'Colorado Springs, CO', + 1719392 => 'Colorado Springs, CO', + 1719395 => 'Buena Vista, CO', + 1719434 => 'Colorado Springs, CO', + 1719438 => 'Eads, CO', + 1719442 => 'Colorado Springs, CO', + 1719444 => 'Colorado Springs, CO', + 1719447 => 'Colorado Springs, CO', + 1719448 => 'Colorado Springs, CO', + 1719456 => 'Las Animas, CO', + 1719465 => 'Colorado Springs, CO', + 1719471 => 'Colorado Springs, CO', + 1719473 => 'Colorado Springs, CO', + 1719475 => 'Colorado Springs, CO', + 1719477 => 'Colorado Springs, CO', + 1719481 => 'Monument, CO', + 1719486 => 'Leadville, CO', + 1719488 => 'Monument, CO', + 1719495 => 'Colorado Springs, CO', + 1719499 => 'Colorado Springs, CO', + 1719520 => 'Colorado Springs, CO', + 1719522 => 'Colorado Springs, CO', + 1719523 => 'Springfield, CO', + 1719526 => 'Fort Carson, CO', + 1719527 => 'Colorado Springs, CO', + 1719528 => 'Colorado Springs, CO', + 1719530 => 'Salida, CO', + 1719531 => 'Colorado Springs, CO', + 1719532 => 'Colorado Springs, CO', + 1719535 => 'Colorado Springs, CO', + 1719537 => 'Holly, CO', + 1719538 => 'Colorado Springs, CO', + 1719539 => 'Salida, CO', + 1719540 => 'Colorado Springs, CO', + 1719542 => 'Pueblo, CO', + 1719543 => 'Pueblo, CO', + 1719544 => 'Pueblo, CO', + 1719545 => 'Pueblo, CO', + 1719546 => 'Pueblo, CO', + 1719547 => 'Pueblo West, CO', + 1719548 => 'Colorado Springs, CO', + 1719550 => 'Colorado Springs, CO', + 1719553 => 'Pueblo, CO', + 1719556 => 'Colorado Springs, CO', + 1719560 => 'Pueblo, CO', + 1719561 => 'Pueblo, CO', + 1719562 => 'Pueblo, CO', + 1719564 => 'Pueblo, CO', + 1719566 => 'Pueblo, CO', + 1719570 => 'Colorado Springs, CO', + 1719572 => 'Colorado Springs, CO', + 1719573 => 'Colorado Springs, CO', + 1719574 => 'Colorado Springs, CO', + 1719575 => 'Colorado Springs, CO', + 1719576 => 'Colorado Springs, CO', + 1719577 => 'Colorado Springs, CO', + 1719578 => 'Colorado Springs, CO', + 1719579 => 'Colorado Springs, CO', + 1719583 => 'Pueblo, CO', + 1719584 => 'Pueblo, CO', + 1719587 => 'Alamosa, CO', + 1719589 => 'Alamosa, CO', + 1719590 => 'Colorado Springs, CO', + 1719591 => 'Colorado Springs, CO', + 1719592 => 'Colorado Springs, CO', + 1719593 => 'Colorado Springs, CO', + 1719594 => 'Colorado Springs, CO', + 1719596 => 'Colorado Springs, CO', + 1719597 => 'Colorado Springs, CO', + 1719598 => 'Colorado Springs, CO', + 1719599 => 'Colorado Springs, CO', + 1719622 => 'Colorado Springs, CO', + 1719623 => 'Colorado Springs, CO', + 1719630 => 'Colorado Springs, CO', + 1719632 => 'Colorado Springs, CO', + 1719633 => 'Colorado Springs, CO', + 1719634 => 'Colorado Springs, CO', + 1719635 => 'Colorado Springs, CO', + 1719636 => 'Colorado Springs, CO', + 1719637 => 'Colorado Springs, CO', + 1719638 => 'Colorado Springs, CO', + 1719641 => 'Colorado Springs, CO', + 1719647 => 'Pueblo West, CO', + 1719657 => 'Del Norte, CO', + 1719658 => 'Creede, CO', + 1719660 => 'Colorado Springs, CO', + 1719667 => 'Colorado Springs, CO', + 1719685 => 'Manitou Springs, CO', + 1719686 => 'Woodland Park, CO', + 1719687 => 'Woodland Park, CO', + 1719689 => 'Cripple Creek, CO', + 1719738 => 'Walsenburg, CO', + 1719742 => 'La Veta, CO', + 1719748 => 'Florissant, CO', + 1719749 => 'Peyton, CO', + 1719754 => 'Center, CO', + 1719767 => 'Cheyenne Wells, CO', + 1719775 => 'Limon, CO', + 1719776 => 'Colorado Springs, CO', + 1719783 => 'Westcliffe, CO', + 1719784 => 'Florence, CO', + 1719836 => 'Fairplay, CO', + 1719845 => 'Trinidad, CO', + 1719846 => 'Trinidad, CO', + 1719852 => 'Monte Vista, CO', + 1719873 => 'South Fork, CO', + 1719884 => 'Colorado Springs, CO', + 1719924 => 'Pueblo, CO', + 1719948 => 'Pueblo, CO', + 1719955 => 'Colorado Springs, CO', + 1720 => 'Colorado', + 1720283 => 'Littleton, CO', + 1720344 => 'Highlands Ranch, CO', + 1720348 => 'Highlands Ranch, CO', + 1720406 => 'Boulder, CO', + 1720424 => 'Denver, CO', + 1720494 => 'Longmont, CO', + 1720535 => 'Aurora, CO', + 1720565 => 'Boulder, CO', + 1720570 => 'Denver, CO', + 1720685 => 'Brighton, CO', + 1720733 => 'Castle Rock, CO', + 1720748 => 'Aurora, CO', + 1720777 => 'Aurora, CO', + 1720842 => 'Parker, CO', + 1720848 => 'Aurora, CO', + 1720851 => 'Parker, CO', + 1720855 => 'Denver, CO', + 1720859 => 'Aurora, CO', + 1720865 => 'Denver, CO', + 1720870 => 'Aurora, CO', + 1720887 => 'Broomfield, CO', + 1720904 => 'Denver, CO', + 1720913 => 'Denver, CO', + 1720922 => 'Littleton, CO', + 1720932 => 'Denver, CO', + 1720941 => 'Denver, CO', + 1720981 => 'Littleton, CO', + 1724 => 'Pennsylvania', + 1724222 => 'Washington, PA', + 1724223 => 'Washington, PA', + 1724225 => 'Washington, PA', + 1724226 => 'Natrona Heights, PA', + 1724228 => 'Washington, PA', + 1724229 => 'Washington, PA', + 1724238 => 'Ligonier, PA', + 1724239 => 'Bentleyville, PA', + 1724253 => 'Hadley, PA', + 1724254 => 'Clymer, PA', + 1724258 => 'Monongahela, PA', + 1724266 => 'Ambridge, PA', + 1724282 => 'Butler, PA', + 1724283 => 'Butler, PA', + 1724284 => 'Butler, PA', + 1724285 => 'Butler, PA', + 1724287 => 'Butler, PA', + 1724295 => 'Freeport, PA', + 1724297 => 'Worthington, PA', + 1724334 => 'New Kensington, PA', + 1724335 => 'New Kensington, PA', + 1724337 => 'New Kensington, PA', + 1724339 => 'New Kensington, PA', + 1724342 => 'Hermitage, PA', + 1724346 => 'Hermitage, PA', + 1724347 => 'Hermitage, PA', + 1724348 => 'Finleyville, PA', + 1724349 => 'Indiana, PA', + 1724352 => 'Saxonburg, PA', + 1724353 => 'Sarver, PA', + 1724356 => 'Hickory, PA', + 1724357 => 'Indiana, PA', + 1724368 => 'Portersville, PA', + 1724375 => 'Aliquippa, PA', + 1724376 => 'Sandy Lake, PA', + 1724378 => 'Aliquippa, PA', + 1724379 => 'Donora, PA', + 1724430 => 'Uniontown, PA', + 1724431 => 'Butler, PA', + 1724437 => 'Uniontown, PA', + 1724438 => 'Uniontown, PA', + 1724439 => 'Uniontown, PA', + 1724443 => 'Gibsonia, PA', + 1724444 => 'Gibsonia, PA', + 1724445 => 'Chicora, PA', + 1724449 => 'Gibsonia, PA', + 1724452 => 'Zelienople, PA', + 1724458 => 'Grove City, PA', + 1724459 => 'Blairsville, PA', + 1724463 => 'Indiana, PA', + 1724465 => 'Indiana, PA', + 1724468 => 'Delmont, PA', + 1724475 => 'Fredonia, PA', + 1724478 => 'Apollo, PA', + 1724479 => 'Homer City, PA', + 1724482 => 'Butler, PA', + 1724483 => 'Charleroi, PA', + 1724489 => 'Charleroi, PA', + 1724523 => 'Jeannette, PA', + 1724527 => 'Jeannette, PA', + 1724528 => 'West Middlesex, PA', + 1724532 => 'Latrobe, PA', + 1724537 => 'Latrobe, PA', + 1724538 => 'Evans City, PA', + 1724539 => 'Latrobe, PA', + 1724542 => 'Mount Pleasant, PA', + 1724543 => 'Kittanning, PA', + 1724545 => 'Kittanning, PA', + 1724547 => 'Mount Pleasant, PA', + 1724548 => 'Kittanning, PA', + 1724567 => 'Vandergrift, PA', + 1724568 => 'Vandergrift, PA', + 1724583 => 'Masontown, PA', + 1724586 => 'Butler, PA', + 1724588 => 'Greenville, PA', + 1724625 => 'Mars, PA', + 1724626 => 'Connellsville, PA', + 1724627 => 'Waynesburg, PA', + 1724628 => 'Connellsville, PA', + 1724639 => 'Saltsburg, PA', + 1724643 => 'Midland, PA', + 1724652 => 'New Castle, PA', + 1724654 => 'New Castle, PA', + 1724656 => 'New Castle, PA', + 1724657 => 'New Castle, PA', + 1724658 => 'New Castle, PA', + 1724662 => 'Mercer, PA', + 1724663 => 'Claysville, PA', + 1724668 => 'New Alexandria, PA', + 1724684 => 'Monessen, PA', + 1724693 => 'Oakdale, PA', + 1724694 => 'Derry, PA', + 1724695 => 'Imperial, PA', + 1724727 => 'Apollo, PA', + 1724735 => 'Harrisville, PA', + 1724736 => 'Perryopolis, PA', + 1724743 => 'Canonsburg, PA', + 1724745 => 'Canonsburg, PA', + 1724746 => 'Canonsburg, PA', + 1724748 => 'Grove City, PA', + 1724752 => 'Ellwood City, PA', + 1724758 => 'Ellwood City, PA', + 1724763 => 'Ford City, PA', + 1724773 => 'Beaver, PA', + 1724776 => 'Cranberry Twp, PA', + 1724785 => 'Brownsville, PA', + 1724794 => 'Slippery Rock, PA', + 1724830 => 'Greensburg, PA', + 1724832 => 'Greensburg, PA', + 1724834 => 'Greensburg, PA', + 1724836 => 'Greensburg, PA', + 1724837 => 'Greensburg, PA', + 1724838 => 'Greensburg, PA', + 1724843 => 'Beaver Falls, PA', + 1724845 => 'Leechburg, PA', + 1724846 => 'Beaver Falls, PA', + 1724847 => 'Beaver Falls, PA', + 1724850 => 'Greensburg, PA', + 1724852 => 'Waynesburg, PA', + 1724853 => 'Greensburg, PA', + 1724861 => 'Irwin, PA', + 1724863 => 'Irwin, PA', + 1724864 => 'Irwin, PA', + 1724865 => 'Prospect, PA', + 1724867 => 'Emlenton, PA', + 1724869 => 'Baden, PA', + 1724872 => 'West Newton, PA', + 1724873 => 'Canonsburg, PA', + 1724887 => 'Scottdale, PA', + 1724898 => 'Valencia, PA', + 1724899 => 'Clinton, PA', + 1724924 => 'New Castle, PA', + 1724926 => 'McDonald, PA', + 1724929 => 'Belle Vernon, PA', + 1724932 => 'Jamestown, PA', + 1724933 => 'Wexford, PA', + 1724934 => 'Wexford, PA', + 1724935 => 'Wexford, PA', + 1724940 => 'Wexford, PA', + 1724946 => 'New Wilmington, PA', + 1724947 => 'Burgettstown, PA', + 1724962 => 'Sharpsville, PA', + 1724966 => 'Carmichaels, PA', + 1724981 => 'Hermitage, PA', + 1725 => 'Nevada', + 1727 => 'Florida', + 1727298 => 'Clearwater, FL', + 1727321 => 'St. Petersburg, FL', + 1727322 => 'St. Petersburg, FL', + 1727323 => 'St. Petersburg, FL', + 1727327 => 'St. Petersburg, FL', + 1727328 => 'St. Petersburg, FL', + 1727341 => 'St. Petersburg, FL', + 1727343 => 'St. Petersburg, FL', + 1727344 => 'St. Petersburg, FL', + 1727345 => 'St. Petersburg, FL', + 1727347 => 'St. Petersburg, FL', + 1727363 => 'St. Pete Beach, FL', + 1727372 => 'New Port Richey, FL', + 1727375 => 'New Port Richey, FL', + 1727376 => 'New Port Richey, FL', + 1727381 => 'St. Petersburg, FL', + 1727384 => 'St. Petersburg, FL', + 1727392 => 'Seminole, FL', + 1727441 => 'Clearwater, FL', + 1727442 => 'Clearwater, FL', + 1727443 => 'Clearwater, FL', + 1727446 => 'Clearwater, FL', + 1727447 => 'Clearwater, FL', + 1727449 => 'Clearwater, FL', + 1727461 => 'Clearwater, FL', + 1727462 => 'Clearwater, FL', + 1727464 => 'Clearwater, FL', + 1727466 => 'Clearwater, FL', + 1727467 => 'Clearwater, FL', + 1727502 => 'St. Petersburg, FL', + 1727507 => 'Clearwater, FL', + 1727518 => 'Largo, FL', + 1727520 => 'St. Petersburg, FL', + 1727521 => 'St. Petersburg, FL', + 1727522 => 'St. Petersburg, FL', + 1727524 => 'Clearwater, FL', + 1727525 => 'St. Petersburg, FL', + 1727526 => 'St. Petersburg, FL', + 1727527 => 'St. Petersburg, FL', + 1727528 => 'St. Petersburg, FL', + 1727532 => 'Clearwater, FL', + 1727538 => 'Clearwater, FL', + 1727541 => 'Pinellas Park, FL', + 1727544 => 'Pinellas Park, FL', + 1727546 => 'Pinellas Park, FL', + 1727548 => 'Pinellas Park, FL', + 1727559 => 'Largo, FL', + 1727561 => 'Clearwater, FL', + 1727562 => 'Clearwater, FL', + 1727571 => 'Clearwater, FL', + 1727572 => 'Clearwater, FL', + 1727573 => 'Clearwater, FL', + 1727576 => 'St. Petersburg, FL', + 1727577 => 'St. Petersburg, FL', + 1727578 => 'St. Petersburg, FL', + 1727579 => 'St. Petersburg, FL', + 1727581 => 'Largo, FL', + 1727584 => 'Largo, FL', + 1727585 => 'Largo, FL', + 1727586 => 'Largo, FL', + 1727587 => 'Largo, FL', + 1727588 => 'Largo, FL', + 1727595 => 'Largo, FL', + 1727596 => 'Largo, FL', + 1727669 => 'Clearwater, FL', + 1727712 => 'Clearwater, FL', + 1727723 => 'Clearwater, FL', + 1727724 => 'Clearwater, FL', + 1727725 => 'Clearwater, FL', + 1727726 => 'Clearwater, FL', + 1727733 => 'Dunedin, FL', + 1727734 => 'Dunedin, FL', + 1727736 => 'Dunedin, FL', + 1727738 => 'Dunedin, FL', + 1727767 => 'St. Petersburg, FL', + 1727771 => 'Palm Harbor, FL', + 1727772 => 'Palm Harbor, FL', + 1727773 => 'Palm Harbor, FL', + 1727781 => 'Palm Harbor, FL', + 1727784 => 'Palm Harbor, FL', + 1727785 => 'Palm Harbor, FL', + 1727786 => 'Palm Harbor, FL', + 1727787 => 'Palm Harbor, FL', + 1727789 => 'Palm Harbor, FL', + 1727791 => 'Clearwater, FL', + 1727796 => 'Clearwater, FL', + 1727797 => 'Clearwater, FL', + 1727799 => 'Clearwater, FL', + 1727815 => 'New Port Richey, FL', + 1727819 => 'Hudson, FL', + 1727820 => 'St. Petersburg, FL', + 1727821 => 'St. Petersburg, FL', + 1727822 => 'St. Petersburg, FL', + 1727823 => 'St. Petersburg, FL', + 1727824 => 'St. Petersburg, FL', + 1727825 => 'St. Petersburg, FL', + 1727827 => 'St. Petersburg, FL', + 1727842 => 'New Port Richey, FL', + 1727857 => 'Hudson, FL', + 1727861 => 'Hudson, FL', + 1727862 => 'Hudson, FL', + 1727863 => 'Hudson, FL', + 1727864 => 'St. Petersburg, FL', + 1727866 => 'St. Petersburg, FL', + 1727867 => 'St. Petersburg, FL', + 1727868 => 'Hudson, FL', + 1727869 => 'Hudson, FL', + 1727893 => 'St. Petersburg, FL', + 1727894 => 'St. Petersburg, FL', + 1727895 => 'St. Petersburg, FL', + 1727896 => 'St. Petersburg, FL', + 1727898 => 'St. Petersburg, FL', + 1727934 => 'Tarpon Springs, FL', + 1727937 => 'Tarpon Springs, FL', + 1727938 => 'Tarpon Springs, FL', + 1727939 => 'Tarpon Springs, FL', + 1727940 => 'Tarpon Springs, FL', + 1727942 => 'Tarpon Springs, FL', + 1727943 => 'Tarpon Springs, FL', + 1727944 => 'Tarpon Springs, FL', + 1727945 => 'Tarpon Springs, FL', + 1731 => 'Tennessee', + 1731235 => 'Greenfield, TN', + 1731253 => 'Tiptonville, TN', + 1731256 => 'Jackson, TN', + 1731285 => 'Dyersburg, TN', + 1731286 => 'Dyersburg, TN', + 1731287 => 'Dyersburg, TN', + 1731288 => 'Dyersburg, TN', + 1731300 => 'Jackson, TN', + 1731352 => 'McKenzie, TN', + 1731364 => 'Dresden, TN', + 1731376 => 'Middleton, TN', + 1731422 => 'Jackson, TN', + 1731423 => 'Jackson, TN', + 1731424 => 'Jackson, TN', + 1731425 => 'Jackson, TN', + 1731427 => 'Jackson, TN', + 1731479 => 'South Fulton, TN', + 1731512 => 'Jackson, TN', + 1731536 => 'Troy, TN', + 1731541 => 'Jackson, TN', + 1731549 => 'Scotts Hill, TN', + 1731584 => 'Camden, TN', + 1731587 => 'Martin, TN', + 1731588 => 'Martin, TN', + 1731627 => 'Newbern, TN', + 1731632 => 'Adamsville, TN', + 1731635 => 'Ripley, TN', + 1731641 => 'Paris, TN', + 1731642 => 'Paris, TN', + 1731644 => 'Paris, TN', + 1731645 => 'Selmer, TN', + 1731658 => 'Bolivar, TN', + 1731660 => 'Jackson, TN', + 1731661 => 'Jackson, TN', + 1731663 => 'Bells, TN', + 1731664 => 'Jackson, TN', + 1731668 => 'Jackson, TN', + 1731686 => 'Milan, TN', + 1731689 => 'Counce, TN', + 1731692 => 'Dyer, TN', + 1731696 => 'Alamo, TN', + 1731736 => 'Jackson, TN', + 1731772 => 'Brownsville, TN', + 1731783 => 'Medina, TN', + 1731784 => 'Humboldt, TN', + 1731836 => 'Halls, TN', + 1731847 => 'Parsons, TN', + 1731852 => 'Decaturville, TN', + 1731855 => 'Trenton, TN', + 1731884 => 'Union City, TN', + 1731885 => 'Union City, TN', + 1731925 => 'Savannah, TN', + 1731926 => 'Savannah, TN', + 1731935 => 'Jackson, TN', + 1731967 => 'Lexington, TN', + 1731968 => 'Lexington, TN', + 1731986 => 'Huntingdon, TN', + 1731989 => 'Henderson, TN', + 1732 => 'New Jersey', + 1732202 => 'Brick, NJ', + 1732219 => 'Red Bank, NJ', + 1732222 => 'Long Branch, NJ', + 1732223 => 'Manasquan, NJ', + 1732225 => 'Edison, NJ', + 1732229 => 'Long Branch, NJ', + 1732235 => 'New Brunswick, NJ', + 1732237 => 'Bayville, NJ', + 1732238 => 'East Brunswick, NJ', + 1732240 => 'Toms River, NJ', + 1732244 => 'Toms River, NJ', + 1732248 => 'Edison, NJ', + 1732254 => 'East Brunswick, NJ', + 1732255 => 'Toms River, NJ', + 1732257 => 'East Brunswick, NJ', + 1732262 => 'Brick, NJ', + 1732269 => 'Bayville, NJ', + 1732270 => 'Toms River, NJ', + 1732279 => 'Toms River, NJ', + 1732281 => 'Toms River, NJ', + 1732283 => 'Iselin, NJ', + 1732286 => 'Toms River, NJ', + 1732287 => 'Edison, NJ', + 1732288 => 'Toms River, NJ', + 1732290 => 'Matawan, NJ', + 1732292 => 'Manasquan, NJ', + 1732321 => 'Edison, NJ', + 1732324 => 'Perth Amboy, NJ', + 1732326 => 'Woodbridge Township, NJ', + 1732333 => 'Freehold, NJ', + 1732341 => 'Toms River, NJ', + 1732346 => 'Edison, NJ', + 1732349 => 'Toms River, NJ', + 1732350 => 'Whiting, NJ', + 1732363 => 'Lakewood Township, NJ', + 1732364 => 'Lakewood Township, NJ', + 1732367 => 'Lakewood Township, NJ', + 1732376 => 'Perth Amboy, NJ', + 1732380 => 'Eatontown, NJ', + 1732389 => 'Eatontown, NJ', + 1732390 => 'East Brunswick, NJ', + 1732404 => 'Iselin, NJ', + 1732432 => 'East Brunswick, NJ', + 1732441 => 'Matawan, NJ', + 1732442 => 'Perth Amboy, NJ', + 1732451 => 'Brick, NJ', + 1732452 => 'Edison, NJ', + 1732458 => 'Brick, NJ', + 1732463 => 'Piscataway Township, NJ', + 1732473 => 'Toms River, NJ', + 1732477 => 'Brick, NJ', + 1732494 => 'Edison, NJ', + 1732505 => 'Toms River, NJ', + 1732506 => 'Toms River, NJ', + 1732521 => 'Jamesburg, NJ', + 1732528 => 'Manasquan, NJ', + 1732541 => 'Carteret, NJ', + 1732542 => 'Eatontown, NJ', + 1732544 => 'Eatontown, NJ', + 1732549 => 'Edison, NJ', + 1732557 => 'Toms River, NJ', + 1732562 => 'Piscataway Township, NJ', + 1732566 => 'Matawan, NJ', + 1732572 => 'Edison, NJ', + 1732578 => 'Eatontown, NJ', + 1732583 => 'Matawan, NJ', + 1732591 => 'Morganville, NJ', + 1732606 => 'Bayville, NJ', + 1732607 => 'Old Bridge Township, NJ', + 1732608 => 'Toms River, NJ', + 1732613 => 'East Brunswick, NJ', + 1732615 => 'Middletown, NJ', + 1732634 => 'Woodbridge Township, NJ', + 1732636 => 'Woodbridge Township, NJ', + 1732650 => 'Edison, NJ', + 1732651 => 'East Brunswick, NJ', + 1732657 => 'Manchester Township, NJ', + 1732662 => 'Edison, NJ', + 1732671 => 'Middletown, NJ', + 1732679 => 'Old Bridge Township, NJ', + 1732681 => 'Belmar, NJ', + 1732695 => 'Ocean Township, NJ', + 1732698 => 'East Brunswick, NJ', + 1732706 => 'Middletown, NJ', + 1732722 => 'Manasquan, NJ', + 1732728 => 'Long Branch, NJ', + 1732730 => 'Lakewood Township, NJ', + 1732736 => 'Toms River, NJ', + 1732744 => 'Edison, NJ', + 1732745 => 'New Brunswick, NJ', + 1732776 => 'Neptune Township, NJ', + 1732777 => 'Edison, NJ', + 1732785 => 'Brick, NJ', + 1732797 => 'Toms River, NJ', + 1732818 => 'Toms River, NJ', + 1732826 => 'Perth Amboy, NJ', + 1732828 => 'New Brunswick, NJ', + 1732833 => 'Jackson, NJ', + 1732836 => 'Brick, NJ', + 1732840 => 'Brick, NJ', + 1732870 => 'Long Branch, NJ', + 1732873 => 'Somerset, NJ', + 1732886 => 'Lakewood Township, NJ', + 1732901 => 'Lakewood Township, NJ', + 1732906 => 'Edison, NJ', + 1732914 => 'Toms River, NJ', + 1732920 => 'Brick, NJ', + 1732923 => 'Long Branch, NJ', + 1732928 => 'Jackson, NJ', + 1732929 => 'Toms River, NJ', + 1732932 => 'New Brunswick, NJ', + 1732935 => 'Eatontown, NJ', + 1732937 => 'New Brunswick, NJ', + 1732942 => 'Lakewood Township, NJ', + 1732946 => 'Holmdel, NJ', + 1732969 => 'Carteret, NJ', + 1732981 => 'Piscataway Township, NJ', + 1732985 => 'Edison, NJ', + 1734 => 'Michigan', + 1734213 => 'Ann Arbor, MI', + 1734222 => 'Ann Arbor, MI', + 1734240 => 'Monroe, MI', + 1734241 => 'Monroe, MI', + 1734242 => 'Monroe, MI', + 1734243 => 'Monroe, MI', + 1734246 => 'Wyandotte, MI', + 1734261 => 'Livonia, MI', + 1734266 => 'Livonia, MI', + 1734269 => 'Ida, MI', + 1734274 => 'Ann Arbor, MI', + 1734279 => 'Petersburg, MI', + 1734287 => 'Taylor, MI', + 1734289 => 'Monroe, MI', + 1734302 => 'Ann Arbor, MI', + 1734324 => 'Wyandotte, MI', + 1734326 => 'Westland, MI', + 1734327 => 'Ann Arbor, MI', + 1734332 => 'Ann Arbor, MI', + 1734340 => 'Ypsilanti, MI', + 1734369 => 'Ann Arbor, MI', + 1734374 => 'Taylor, MI', + 1734379 => 'Rockwood, MI', + 1734384 => 'Monroe, MI', + 1734394 => 'Canton, MI', + 1734397 => 'Canton, MI', + 1734398 => 'Canton, MI', + 1734420 => 'Plymouth, MI', + 1734422 => 'Livonia, MI', + 1734424 => 'Dexter, MI', + 1734425 => 'Livonia, MI', + 1734426 => 'Dexter, MI', + 1734427 => 'Livonia, MI', + 1734428 => 'Manchester, MI', + 1734429 => 'Saline, MI', + 1734432 => 'Livonia, MI', + 1734433 => 'Chelsea, MI', + 1734434 => 'Ypsilanti, MI', + 1734439 => 'Milan, MI', + 1734449 => 'Whitmore Lake, MI', + 1734453 => 'Plymouth, MI', + 1734457 => 'Monroe, MI', + 1734458 => 'Garden City, MI', + 1734462 => 'Livonia, MI', + 1734464 => 'Livonia, MI', + 1734466 => 'Livonia, MI', + 1734475 => 'Chelsea, MI', + 1734477 => 'Ann Arbor, MI', + 1734480 => 'Ypsilanti, MI', + 1734481 => 'Ypsilanti, MI', + 1734482 => 'Ypsilanti, MI', + 1734483 => 'Ypsilanti, MI', + 1734484 => 'Ypsilanti, MI', + 1734485 => 'Ypsilanti, MI', + 1734487 => 'Ypsilanti, MI', + 1734495 => 'Canton, MI', + 1734513 => 'Livonia, MI', + 1734522 => 'Livonia, MI', + 1734525 => 'Livonia, MI', + 1734528 => 'Ypsilanti, MI', + 1734529 => 'Dundee, MI', + 1734542 => 'Livonia, MI', + 1734544 => 'Ypsilanti, MI', + 1734547 => 'Ypsilanti, MI', + 1734572 => 'Ypsilanti, MI', + 1734586 => 'Newport, MI', + 1734591 => 'Livonia, MI', + 1734622 => 'Ann Arbor, MI', + 1734647 => 'Ann Arbor, MI', + 1734654 => 'Carleton, MI', + 1734655 => 'Livonia, MI', + 1734662 => 'Ann Arbor, MI', + 1734663 => 'Ann Arbor, MI', + 1734665 => 'Ann Arbor, MI', + 1734668 => 'Ann Arbor, MI', + 1734671 => 'Trenton, MI', + 1734677 => 'Ann Arbor, MI', + 1734697 => 'Belleville, MI', + 1734699 => 'Belleville, MI', + 1734712 => 'Ypsilanti, MI', + 1734728 => 'Westland, MI', + 1734729 => 'Westland, MI', + 1734741 => 'Ann Arbor, MI', + 1734744 => 'Livonia, MI', + 1734747 => 'Ann Arbor, MI', + 1734753 => 'New Boston, MI', + 1734761 => 'Ann Arbor, MI', + 1734763 => 'Ann Arbor, MI', + 1734764 => 'Ann Arbor, MI', + 1734769 => 'Ann Arbor, MI', + 1734779 => 'Livonia, MI', + 1734782 => 'Flat Rock, MI', + 1734783 => 'Flat Rock, MI', + 1734785 => 'Southgate, MI', + 1734794 => 'Ann Arbor, MI', + 1734844 => 'Canton, MI', + 1734845 => 'Ann Arbor, MI', + 1734847 => 'Temperance, MI', + 1734848 => 'Erie, MI', + 1734854 => 'Lambertville, MI', + 1734878 => 'Pinckney, MI', + 1734913 => 'Ann Arbor, MI', + 1734929 => 'Ann Arbor, MI', + 1734930 => 'Ann Arbor, MI', + 1734936 => 'Ann Arbor, MI', + 1734941 => 'Romulus, MI', + 1734942 => 'Romulus, MI', + 1734944 => 'Saline, MI', + 1734946 => 'Taylor, MI', + 1734947 => 'Taylor, MI', + 1734953 => 'Livonia, MI', + 1734955 => 'Romulus, MI', + 1734971 => 'Ann Arbor, MI', + 1734973 => 'Ann Arbor, MI', + 1734975 => 'Ann Arbor, MI', + 1734981 => 'Canton, MI', + 1734994 => 'Ann Arbor, MI', + 1734995 => 'Ann Arbor, MI', + 1734996 => 'Ann Arbor, MI', + 1734997 => 'Ann Arbor, MI', + 1734998 => 'Ann Arbor, MI', + 1737 => 'Texas', + 1740 => 'Ohio', + 1743 => 'North Carolina', + 1740223 => 'Marion, OH', + 1740246 => 'Thornville, OH', + 1740259 => 'Lucasville, OH', + 1740264 => 'Steubenville, OH', + 1740281 => 'Newark, OH', + 1740282 => 'Steubenville, OH', + 1740283 => 'Steubenville, OH', + 1740286 => 'Jackson, OH', + 1740288 => 'Jackson, OH', + 1740289 => 'Piketon, OH', + 1740297 => 'Zanesville, OH', + 1740332 => 'Laurelville, OH', + 1740333 => 'Washington Ct Hs, OH', + 1740335 => 'Washington Ct Hs, OH', + 1740342 => 'New Lexington, OH', + 1740344 => 'Newark, OH', + 1740345 => 'Newark, OH', + 1740348 => 'Newark, OH', + 1740349 => 'Newark, OH', + 1740353 => 'Portsmouth, OH', + 1740354 => 'Portsmouth, OH', + 1740355 => 'Portsmouth, OH', + 1740356 => 'Portsmouth, OH', + 1740362 => 'Delaware, OH', + 1740363 => 'Delaware, OH', + 1740364 => 'Newark, OH', + 1740366 => 'Newark, OH', + 1740368 => 'Delaware, OH', + 1740369 => 'Delaware, OH', + 1740373 => 'Marietta, OH', + 1740374 => 'Marietta, OH', + 1740376 => 'Marietta, OH', + 1740377 => 'South Point, OH', + 1740380 => 'Logan, OH', + 1740382 => 'Marion, OH', + 1740383 => 'Marion, OH', + 1740384 => 'Wellston, OH', + 1740385 => 'Logan, OH', + 1740387 => 'Marion, OH', + 1740389 => 'Marion, OH', + 1740392 => 'Mount Vernon, OH', + 1740393 => 'Mount Vernon, OH', + 1740395 => 'Jackson, OH', + 1740397 => 'Mount Vernon, OH', + 1740420 => 'Circleville, OH', + 1740423 => 'Belpre, OH', + 1740425 => 'Barnesville, OH', + 1740432 => 'Cambridge, OH', + 1740435 => 'Cambridge, OH', + 1740439 => 'Cambridge, OH', + 1740441 => 'Gallipolis, OH', + 1740446 => 'Gallipolis, OH', + 1740450 => 'Zanesville, OH', + 1740452 => 'Zanesville, OH', + 1740453 => 'Zanesville, OH', + 1740454 => 'Zanesville, OH', + 1740455 => 'Zanesville, OH', + 1740456 => 'New Boston, OH', + 1740467 => 'Millersport, OH', + 1740472 => 'Woodsfield, OH', + 1740474 => 'Circleville, OH', + 1740477 => 'Circleville, OH', + 1740498 => 'Newcomerstown, OH', + 1740522 => 'Heath, OH', + 1740532 => 'Ironton, OH', + 1740533 => 'Ironton, OH', + 1740537 => 'Toronto, OH', + 1740545 => 'West Lafayette, OH', + 1740548 => 'Lewis Center, OH', + 1740549 => 'Lewis Center, OH', + 1740574 => 'Wheelersburg, OH', + 1740587 => 'Granville, OH', + 1740588 => 'Zanesville, OH', + 1740592 => 'Athens, OH', + 1740593 => 'Athens, OH', + 1740594 => 'Athens, OH', + 1740596 => 'McArthur, OH', + 1740599 => 'Danville, OH', + 1740622 => 'Coshocton, OH', + 1740623 => 'Coshocton, OH', + 1740625 => 'Centerburg, OH', + 1740633 => 'Martins Ferry, OH', + 1740635 => 'Bridgeport, OH', + 1740652 => 'Lancaster, OH', + 1740653 => 'Lancaster, OH', + 1740654 => 'Lancaster, OH', + 1740657 => 'Lewis Center, OH', + 1740663 => 'Chillicothe, OH', + 1740667 => 'Coolville, OH', + 1740670 => 'Newark, OH', + 1740671 => 'Bellaire, OH', + 1740676 => 'Bellaire, OH', + 1740678 => 'Vincent, OH', + 1740681 => 'Lancaster, OH', + 1740682 => 'Oak Hill, OH', + 1740685 => 'Byesville, OH', + 1740687 => 'Lancaster, OH', + 1740689 => 'Lancaster, OH', + 1740694 => 'Fredericktown, OH', + 1740695 => 'St. Clairsville, OH', + 1740698 => 'Albany, OH', + 1740699 => 'St. Clairsville, OH', + 1740732 => 'Caldwell, OH', + 1740743 => 'Somerset, OH', + 1740745 => 'St. Louisville, OH', + 1740753 => 'Nelsonville, OH', + 1740754 => 'Dresden, OH', + 1740756 => 'Carroll, OH', + 1740763 => 'Newark, OH', + 1740767 => 'Glouster, OH', + 1740772 => 'Chillicothe, OH', + 1740773 => 'Chillicothe, OH', + 1740774 => 'Chillicothe, OH', + 1740775 => 'Chillicothe, OH', + 1740776 => 'Portsmouth, OH', + 1740779 => 'Chillicothe, OH', + 1740788 => 'Heath, OH', + 1740797 => 'The Plains, OH', + 1740820 => 'Minford, OH', + 1740824 => 'Warsaw, OH', + 1740826 => 'New Concord, OH', + 1740828 => 'Frazeysburg, OH', + 1740845 => 'London, OH', + 1740852 => 'London, OH', + 1740858 => 'West Portsmouth, OH', + 1740862 => 'Baltimore, OH', + 1740867 => 'Chesapeake, OH', + 1740869 => 'Mount Sterling, OH', + 1740881 => 'Powell, OH', + 1740886 => 'Proctorville, OH', + 1740892 => 'Utica, OH', + 1740894 => 'South Point, OH', + 1740922 => 'Uhrichsville, OH', + 1740927 => 'Pataskala, OH', + 1740928 => 'Hebron, OH', + 1740942 => 'Cadiz, OH', + 1740943 => 'Richwood, OH', + 1740947 => 'Waverly, OH', + 1740948 => 'Jeffersonville, OH', + 1740962 => 'McConnelsville, OH', + 1740964 => 'Pataskala, OH', + 1740965 => 'Sunbury, OH', + 1740967 => 'Johnstown, OH', + 1740969 => 'Amanda, OH', + 1740982 => 'Crooksville, OH', + 1740983 => 'Ashville, OH', + 1740984 => 'Beverly, OH', + 1740992 => 'Pomeroy, OH', + 1740998 => 'Frankfort, OH', + 1747 => 'California', + 1754 => 'Florida', + 1757 => 'Virginia', + 1757220 => 'Williamsburg, VA', + 1757221 => 'Williamsburg, VA', + 1757223 => 'Newport News, VA', + 1757224 => 'Hampton, VA', + 1757228 => 'Virginia Beach, VA', + 1757229 => 'Williamsburg, VA', + 1757238 => 'Carrollton, VA', + 1757240 => 'Newport News, VA', + 1757242 => 'Windsor, VA', + 1757244 => 'Newport News, VA', + 1757245 => 'Newport News, VA', + 1757247 => 'Newport News, VA', + 1757249 => 'Newport News, VA', + 1757253 => 'Williamsburg, VA', + 1757255 => 'Suffolk, VA', + 1757258 => 'Williamsburg, VA', + 1757259 => 'Williamsburg, VA', + 1757261 => 'Norfolk, VA', + 1757262 => 'Hampton, VA', + 1757294 => 'Surry, VA', + 1757301 => 'Virginia Beach, VA', + 1757306 => 'Virginia Beach, VA', + 1757312 => 'Chesapeake, VA', + 1757318 => 'Virginia Beach, VA', + 1757331 => 'Cape Charles, VA', + 1757336 => 'Chincoteague Island, VA', + 1757340 => 'Virginia Beach, VA', + 1757345 => 'Williamsburg, VA', + 1757353 => 'Virginia Beach, VA', + 1757356 => 'Smithfield, VA', + 1757357 => 'Smithfield, VA', + 1757363 => 'Virginia Beach, VA', + 1757365 => 'Smithfield, VA', + 1757368 => 'Virginia Beach, VA', + 1757369 => 'Newport News, VA', + 1757380 => 'Newport News, VA', + 1757382 => 'Chesapeake, VA', + 1757385 => 'Virginia Beach, VA', + 1757388 => 'Norfolk, VA', + 1757393 => 'Portsmouth, VA', + 1757395 => 'Virginia Beach, VA', + 1757397 => 'Portsmouth, VA', + 1757398 => 'Portsmouth, VA', + 1757399 => 'Portsmouth, VA', + 1757401 => 'Chesapeake, VA', + 1757405 => 'Portsmouth, VA', + 1757410 => 'Chesapeake, VA', + 1757412 => 'Virginia Beach, VA', + 1757416 => 'Virginia Beach, VA', + 1757417 => 'Virginia Beach, VA', + 1757421 => 'Chesapeake, VA', + 1757422 => 'Virginia Beach, VA', + 1757423 => 'Norfolk, VA', + 1757425 => 'Virginia Beach, VA', + 1757426 => 'Virginia Beach, VA', + 1757427 => 'Virginia Beach, VA', + 1757428 => 'Virginia Beach, VA', + 1757430 => 'Virginia Beach, VA', + 1757431 => 'Virginia Beach, VA', + 1757436 => 'Chesapeake, VA', + 1757437 => 'Virginia Beach, VA', + 1757440 => 'Norfolk, VA', + 1757441 => 'Norfolk, VA', + 1757446 => 'Norfolk, VA', + 1757455 => 'Norfolk, VA', + 1757456 => 'Virginia Beach, VA', + 1757460 => 'Virginia Beach, VA', + 1757461 => 'Norfolk, VA', + 1757463 => 'Virginia Beach, VA', + 1757464 => 'Virginia Beach, VA', + 1757466 => 'Norfolk, VA', + 1757467 => 'Virginia Beach, VA', + 1757468 => 'Virginia Beach, VA', + 1757471 => 'Virginia Beach, VA', + 1757473 => 'Virginia Beach, VA', + 1757474 => 'Virginia Beach, VA', + 1757479 => 'Virginia Beach, VA', + 1757480 => 'Norfolk, VA', + 1757481 => 'Virginia Beach, VA', + 1757482 => 'Chesapeake, VA', + 1757485 => 'Chesapeake, VA', + 1757486 => 'Virginia Beach, VA', + 1757487 => 'Chesapeake, VA', + 1757489 => 'Norfolk, VA', + 1757490 => 'Virginia Beach, VA', + 1757491 => 'Virginia Beach, VA', + 1757493 => 'Virginia Beach, VA', + 1757494 => 'Chesapeake, VA', + 1757495 => 'Virginia Beach, VA', + 1757496 => 'Virginia Beach, VA', + 1757497 => 'Virginia Beach, VA', + 1757498 => 'Virginia Beach, VA', + 1757499 => 'Virginia Beach, VA', + 1757502 => 'Virginia Beach, VA', + 1757516 => 'Franklin, VA', + 1757533 => 'Norfolk, VA', + 1757534 => 'Newport News, VA', + 1757538 => 'Suffolk, VA', + 1757539 => 'Suffolk, VA', + 1757543 => 'Chesapeake, VA', + 1757545 => 'Chesapeake, VA', + 1757546 => 'Chesapeake, VA', + 1757547 => 'Chesapeake, VA', + 1757548 => 'Chesapeake, VA', + 1757549 => 'Chesapeake, VA', + 1757552 => 'Virginia Beach, VA', + 1757558 => 'Chesapeake, VA', + 1757562 => 'Franklin, VA', + 1757563 => 'Virginia Beach, VA', + 1757564 => 'Williamsburg, VA', + 1757565 => 'Williamsburg, VA', + 1757566 => 'Toano, VA', + 1757569 => 'Franklin, VA', + 1757583 => 'Norfolk, VA', + 1757587 => 'Norfolk, VA', + 1757588 => 'Norfolk, VA', + 1757591 => 'Newport News, VA', + 1757594 => 'Newport News, VA', + 1757595 => 'Newport News, VA', + 1757596 => 'Newport News, VA', + 1757599 => 'Newport News, VA', + 1757622 => 'Norfolk, VA', + 1757623 => 'Norfolk, VA', + 1757624 => 'Norfolk, VA', + 1757625 => 'Norfolk, VA', + 1757627 => 'Norfolk, VA', + 1757628 => 'Norfolk, VA', + 1757631 => 'Virginia Beach, VA', + 1757640 => 'Norfolk, VA', + 1757645 => 'Williamsburg, VA', + 1757648 => 'Virginia Beach, VA', + 1757653 => 'Courtland, VA', + 1757664 => 'Norfolk, VA', + 1757665 => 'Parksley, VA', + 1757668 => 'Norfolk, VA', + 1757671 => 'Virginia Beach, VA', + 1757683 => 'Norfolk, VA', + 1757689 => 'Virginia Beach, VA', + 1757717 => 'Virginia Beach, VA', + 1757721 => 'Virginia Beach, VA', + 1757722 => 'Hampton, VA', + 1757723 => 'Hampton, VA', + 1757727 => 'Hampton, VA', + 1757728 => 'Hampton, VA', + 1757766 => 'Hampton, VA', + 1757788 => 'Hampton, VA', + 1757825 => 'Hampton, VA', + 1757826 => 'Hampton, VA', + 1757827 => 'Hampton, VA', + 1757833 => 'Newport News, VA', + 1757836 => 'Norfolk, VA', + 1757838 => 'Hampton, VA', + 1757850 => 'Hampton, VA', + 1757851 => 'Hampton, VA', + 1757853 => 'Norfolk, VA', + 1757855 => 'Norfolk, VA', + 1757857 => 'Norfolk, VA', + 1757858 => 'Norfolk, VA', + 1757865 => 'Hampton, VA', + 1757867 => 'Yorktown, VA', + 1757868 => 'Poquoson, VA', + 1757872 => 'Newport News, VA', + 1757873 => 'Newport News, VA', + 1757874 => 'Newport News, VA', + 1757875 => 'Newport News, VA', + 1757877 => 'Newport News, VA', + 1757886 => 'Newport News, VA', + 1757887 => 'Newport News, VA', + 1757889 => 'Norfolk, VA', + 1757890 => 'Yorktown, VA', + 1757896 => 'Hampton, VA', + 1757898 => 'Yorktown, VA', + 1757899 => 'Wakefield, VA', + 1757903 => 'Williamsburg, VA', + 1757923 => 'Suffolk, VA', + 1757925 => 'Suffolk, VA', + 1757926 => 'Newport News, VA', + 1757928 => 'Newport News, VA', + 1757930 => 'Newport News, VA', + 1757934 => 'Suffolk, VA', + 1757953 => 'Portsmouth, VA', + 1760 => 'California', + 1760202 => 'Cathedral City, CA', + 1760228 => 'Yucca Valley, CA', + 1760230 => 'Encinitas, CA', + 1760231 => 'Oceanside, CA', + 1760233 => 'Escondido, CA', + 1760240 => 'Apple Valley, CA', + 1760241 => 'Victorville, CA', + 1760242 => 'Apple Valley, CA', + 1760243 => 'Victorville, CA', + 1760244 => 'Hesperia, CA', + 1760245 => 'Victorville, CA', + 1760246 => 'Adelanto, CA', + 1760247 => 'Apple Valley, CA', + 1760248 => 'Lucerne Valley, CA', + 1760249 => 'Wrightwood, CA', + 1760251 => 'Desert Hot Spgs, CA', + 1760252 => 'Barstow, CA', + 1760253 => 'Barstow, CA', + 1760255 => 'Barstow, CA', + 1760256 => 'Barstow, CA', + 1760268 => 'Carlsbad, CA', + 1760291 => 'Escondido, CA', + 1760294 => 'Escondido, CA', + 1760295 => 'Vista, CA', + 1760318 => 'Palm Springs, CA', + 1760320 => 'Palm Springs, CA', + 1760321 => 'Cathedral City, CA', + 1760322 => 'Palm Springs, CA', + 1760323 => 'Palm Springs, CA', + 1760324 => 'Cathedral City, CA', + 1760325 => 'Palm Springs, CA', + 1760326 => 'Needles, CA', + 1760327 => 'Palm Springs, CA', + 1760328 => 'Cathedral City, CA', + 1760329 => 'Desert Hot Spgs, CA', + 1760336 => 'El Centro, CA', + 1760337 => 'El Centro, CA', + 1760339 => 'El Centro, CA', + 1760340 => 'Palm Desert, CA', + 1760341 => 'Palm Desert, CA', + 1760342 => 'Indio, CA', + 1760343 => 'Thousand Palms, CA', + 1760344 => 'Brawley, CA', + 1760345 => 'Palm Desert, CA', + 1760346 => 'Palm Desert, CA', + 1760347 => 'Indio, CA', + 1760348 => 'Calipatria, CA', + 1760351 => 'Brawley, CA', + 1760352 => 'El Centro, CA', + 1760353 => 'El Centro, CA', + 1760355 => 'Imperial, CA', + 1760356 => 'Holtville, CA', + 1760357 => 'Calexico, CA', + 1760360 => 'Palm Desert, CA', + 1760361 => 'Twentynine Palms, CA', + 1760365 => 'Yucca Valley, CA', + 1760366 => 'Joshua Tree, CA', + 1760367 => 'Twentynine Palms, CA', + 1760369 => 'Yucca Valley, CA', + 1760370 => 'El Centro, CA', + 1760371 => 'Ridgecrest, CA', + 1760373 => 'California City, CA', + 1760375 => 'Ridgecrest, CA', + 1760376 => 'Kernville, CA', + 1760379 => 'Lake Isabella, CA', + 1760384 => 'Ridgecrest, CA', + 1760391 => 'Coachella, CA', + 1760396 => 'Mecca, CA', + 1760398 => 'Coachella, CA', + 1760399 => 'Thermal, CA', + 1760414 => 'Vista, CA', + 1760416 => 'Palm Springs, CA', + 1760431 => 'Carlsbad, CA', + 1760432 => 'Escondido, CA', + 1760433 => 'Oceanside, CA', + 1760434 => 'Carlsbad, CA', + 1760435 => 'Oceanside, CA', + 1760436 => 'Encinitas, CA', + 1760438 => 'Carlsbad, CA', + 1760439 => 'Oceanside, CA', + 1760446 => 'Ridgecrest, CA', + 1760451 => 'Fallbrook, CA', + 1760471 => 'San Marcos, CA', + 1760476 => 'Carlsbad, CA', + 1760479 => 'Encinitas, CA', + 1760480 => 'Escondido, CA', + 1760482 => 'El Centro, CA', + 1760489 => 'Escondido, CA', + 1760510 => 'San Marcos, CA', + 1760529 => 'Oceanside, CA', + 1760530 => 'Adelanto, CA', + 1760564 => 'La Quinta, CA', + 1760568 => 'Palm Desert, CA', + 1760572 => 'Winterhaven, CA', + 1760591 => 'San Marcos, CA', + 1760597 => 'Vista, CA', + 1760598 => 'Vista, CA', + 1760599 => 'Vista, CA', + 1760602 => 'Carlsbad, CA', + 1760603 => 'Carlsbad, CA', + 1760630 => 'Vista, CA', + 1760631 => 'Vista, CA', + 1760632 => 'Encinitas, CA', + 1760633 => 'Encinitas, CA', + 1760634 => 'Encinitas, CA', + 1760635 => 'Encinitas, CA', + 1760639 => 'Vista, CA', + 1760643 => 'Vista, CA', + 1760674 => 'Palm Desert, CA', + 1760720 => 'Carlsbad, CA', + 1760721 => 'Oceanside, CA', + 1760722 => 'Oceanside, CA', + 1760723 => 'Fallbrook, CA', + 1760724 => 'Vista, CA', + 1760725 => 'Camp Pendleton North, CA', + 1760726 => 'Vista, CA', + 1760727 => 'Vista, CA', + 1760728 => 'Fallbrook, CA', + 1760729 => 'Carlsbad, CA', + 1760730 => 'Carlsbad, CA', + 1760731 => 'Fallbrook, CA', + 1760732 => 'Vista, CA', + 1760734 => 'Vista, CA', + 1760735 => 'Escondido, CA', + 1760736 => 'San Marcos, CA', + 1760737 => 'Escondido, CA', + 1760738 => 'Escondido, CA', + 1760739 => 'Escondido, CA', + 1760740 => 'Escondido, CA', + 1760741 => 'Escondido, CA', + 1760743 => 'Escondido, CA', + 1760744 => 'San Marcos, CA', + 1760745 => 'Escondido, CA', + 1760746 => 'Escondido, CA', + 1760747 => 'Escondido, CA', + 1760749 => 'Valley Center, CA', + 1760751 => 'Valley Center, CA', + 1760752 => 'San Marcos, CA', + 1760753 => 'Encinitas, CA', + 1760754 => 'Oceanside, CA', + 1760757 => 'Oceanside, CA', + 1760758 => 'Vista, CA', + 1760765 => 'Julian, CA', + 1760767 => 'Borrego Springs, CA', + 1760768 => 'Calexico, CA', + 1760770 => 'Cathedral City, CA', + 1760771 => 'La Quinta, CA', + 1760772 => 'Palm Desert, CA', + 1760773 => 'Palm Desert, CA', + 1760775 => 'Indio, CA', + 1760776 => 'Palm Desert, CA', + 1760777 => 'La Quinta, CA', + 1760778 => 'Palm Springs, CA', + 1760779 => 'Palm Desert, CA', + 1760781 => 'Escondido, CA', + 1760787 => 'Ramona, CA', + 1760788 => 'Ramona, CA', + 1760789 => 'Ramona, CA', + 1760798 => 'San Marcos, CA', + 1760804 => 'Carlsbad, CA', + 1760836 => 'Palm Desert, CA', + 1760837 => 'Palm Desert, CA', + 1760839 => 'Escondido, CA', + 1760843 => 'Victorville, CA', + 1760863 => 'Indio, CA', + 1760864 => 'Palm Springs, CA', + 1760868 => 'Phelan, CA', + 1760872 => 'Bishop, CA', + 1760873 => 'Bishop, CA', + 1760876 => 'Lone Pine, CA', + 1760881 => 'Victorville, CA', + 1760918 => 'Carlsbad, CA', + 1760921 => 'Blythe, CA', + 1760922 => 'Blythe, CA', + 1760924 => 'Mammoth Lakes, CA', + 1760929 => 'Carlsbad, CA', + 1760930 => 'Carlsbad, CA', + 1760931 => 'Carlsbad, CA', + 1760932 => 'Bridgeport, CA', + 1760934 => 'Mammoth Lakes, CA', + 1760940 => 'Vista, CA', + 1760941 => 'Vista, CA', + 1760942 => 'Encinitas, CA', + 1760943 => 'Encinitas, CA', + 1760944 => 'Encinitas, CA', + 1760945 => 'Vista, CA', + 1760946 => 'Apple Valley, CA', + 1760947 => 'Hesperia, CA', + 1760948 => 'Hesperia, CA', + 1760949 => 'Hesperia, CA', + 1760951 => 'Victorville, CA', + 1760952 => 'Victorville, CA', + 1760955 => 'Victorville, CA', + 1760956 => 'Hesperia, CA', + 1760961 => 'Apple Valley, CA', + 1760966 => 'Oceanside, CA', + 1760967 => 'Oceanside, CA', + 1760995 => 'Hesperia, CA', + 1763 => 'Minnesota', + 1763205 => 'Minneapolis, MN', + 1763208 => 'Minneapolis, MN', + 1763241 => 'Elk River, MN', + 1763261 => 'Becker, MN', + 1763262 => 'Becker, MN', + 1763263 => 'Big Lake, MN', + 1763271 => 'Monticello, MN', + 1763274 => 'Elk River, MN', + 1763295 => 'Monticello, MN', + 1763389 => 'Princeton, MN', + 1763420 => 'Maple Grove, MN', + 1763428 => 'Rogers, MN', + 1763441 => 'Elk River, MN', + 1763444 => 'Isanti, MN', + 1763477 => 'Rockford, MN', + 1763479 => 'Maple Plain, MN', + 1763494 => 'Maple Grove, MN', + 1763520 => 'Robbinsdale, MN', + 1763525 => 'Minneapolis, MN', + 1763552 => 'Cambridge, MN', + 1763553 => 'Plymouth, MN', + 1763577 => 'Plymouth, MN', + 1763581 => 'Maple Grove, MN', + 1763633 => 'Elk River, MN', + 1763682 => 'Buffalo, MN', + 1763684 => 'Buffalo, MN', + 1763689 => 'Cambridge, MN', + 1763788 => 'Columbia Heights, MN', + 1763856 => 'Zimmerman, MN', + 1763898 => 'Maple Grove, MN', + 1763972 => 'Delano, MN', + 1765 => 'Indiana', + 1765236 => 'Kokomo, IN', + 1765254 => 'Muncie, IN', + 1765281 => 'Muncie, IN', + 1765282 => 'Muncie, IN', + 1765284 => 'Muncie, IN', + 1765286 => 'Muncie, IN', + 1765287 => 'Muncie, IN', + 1765288 => 'Muncie, IN', + 1765289 => 'Muncie, IN', + 1765294 => 'Veedersburg, IN', + 1765298 => 'Anderson, IN', + 1765342 => 'Martinsville, IN', + 1765345 => 'Knightstown, IN', + 1765348 => 'Hartford City, IN', + 1765349 => 'Martinsville, IN', + 1765354 => 'Middletown, IN', + 1765361 => 'Crawfordsville, IN', + 1765362 => 'Crawfordsville, IN', + 1765364 => 'Crawfordsville, IN', + 1765379 => 'Rossville, IN', + 1765395 => 'Converse, IN', + 1765420 => 'Lafayette, IN', + 1765423 => 'Lafayette, IN', + 1765429 => 'Lafayette, IN', + 1765436 => 'Thorntown, IN', + 1765446 => 'Lafayette, IN', + 1765447 => 'Lafayette, IN', + 1765448 => 'Lafayette, IN', + 1765449 => 'Lafayette, IN', + 1765450 => 'Kokomo, IN', + 1765452 => 'Kokomo, IN', + 1765453 => 'Kokomo, IN', + 1765454 => 'Kokomo, IN', + 1765455 => 'Kokomo, IN', + 1765456 => 'Kokomo, IN', + 1765457 => 'Kokomo, IN', + 1765458 => 'Liberty, IN', + 1765459 => 'Kokomo, IN', + 1765463 => 'West Lafayette, IN', + 1765464 => 'West Lafayette, IN', + 1765468 => 'Farmland, IN', + 1765471 => 'Lafayette, IN', + 1765472 => 'Peru, IN', + 1765473 => 'Peru, IN', + 1765474 => 'Lafayette, IN', + 1765477 => 'Lafayette, IN', + 1765478 => 'Cambridge City, IN', + 1765482 => 'Lebanon, IN', + 1765483 => 'Lebanon, IN', + 1765489 => 'Hagerstown, IN', + 1765492 => 'Cayuga, IN', + 1765494 => 'West Lafayette, IN', + 1765497 => 'West Lafayette, IN', + 1765521 => 'New Castle, IN', + 1765522 => 'Roachdale, IN', + 1765529 => 'New Castle, IN', + 1765552 => 'Elwood, IN', + 1765563 => 'Brookston, IN', + 1765564 => 'Delphi, IN', + 1765569 => 'Rockville, IN', + 1765583 => 'Otterbein, IN', + 1765584 => 'Winchester, IN', + 1765588 => 'Lafayette, IN', + 1765622 => 'Anderson, IN', + 1765628 => 'Greentown, IN', + 1765640 => 'Anderson, IN', + 1765641 => 'Anderson, IN', + 1765642 => 'Anderson, IN', + 1765643 => 'Anderson, IN', + 1765644 => 'Anderson, IN', + 1765646 => 'Anderson, IN', + 1765647 => 'Brookville, IN', + 1765649 => 'Anderson, IN', + 1765651 => 'Marion, IN', + 1765653 => 'Greencastle, IN', + 1765654 => 'Frankfort, IN', + 1765659 => 'Frankfort, IN', + 1765662 => 'Marion, IN', + 1765664 => 'Marion, IN', + 1765668 => 'Marion, IN', + 1765674 => 'Marion, IN', + 1765675 => 'Tipton, IN', + 1765676 => 'Jamestown, IN', + 1765677 => 'Marion, IN', + 1765683 => 'Anderson, IN', + 1765689 => 'Bunker Hill, IN', + 1765724 => 'Alexandria, IN', + 1765728 => 'Montpelier, IN', + 1765741 => 'Muncie, IN', + 1765742 => 'Lafayette, IN', + 1765743 => 'West Lafayette, IN', + 1765747 => 'Muncie, IN', + 1765759 => 'Yorktown, IN', + 1765762 => 'Attica, IN', + 1765768 => 'Dunkirk, IN', + 1765778 => 'Pendleton, IN', + 1765789 => 'Albany, IN', + 1765793 => 'Covington, IN', + 1765795 => 'Cloverdale, IN', + 1765807 => 'Lafayette, IN', + 1765825 => 'Connersville, IN', + 1765827 => 'Connersville, IN', + 1765832 => 'Clinton, IN', + 1765838 => 'Lafayette, IN', + 1765855 => 'Centerville, IN', + 1765864 => 'Kokomo, IN', + 1765868 => 'Kokomo, IN', + 1765874 => 'Lynn, IN', + 1765883 => 'Russiaville, IN', + 1765884 => 'Fowler, IN', + 1765932 => 'Rushville, IN', + 1765935 => 'Richmond, IN', + 1765938 => 'Rushville, IN', + 1765939 => 'Richmond, IN', + 1765948 => 'Fairmount, IN', + 1765962 => 'Richmond, IN', + 1765964 => 'Union City, IN', + 1765965 => 'Richmond, IN', + 1765966 => 'Richmond, IN', + 1765983 => 'Richmond, IN', + 1765998 => 'Upland, IN', + 1769 => 'Mississippi', + 1769216 => 'Jackson, MS', + 1769233 => 'Jackson, MS', + 1769251 => 'Jackson, MS', + 1769257 => 'Jackson, MS', + 1770 => 'Georgia', + 1770205 => 'Cumming, GA', + 1770207 => 'Monroe, GA', + 1770209 => 'Norcross, GA', + 1770210 => 'Jonesboro, GA', + 1770214 => 'Carrollton, GA', + 1770219 => 'Gainesville, GA', + 1770227 => 'Griffin, GA', + 1770228 => 'Griffin, GA', + 1770229 => 'Griffin, GA', + 1770232 => 'Duluth, GA', + 1770233 => 'Griffin, GA', + 1770237 => 'Lawrenceville, GA', + 1770242 => 'Norcross, GA', + 1770246 => 'Norcross, GA', + 1770248 => 'Norcross, GA', + 1770251 => 'Newnan, GA', + 1770252 => 'Newnan, GA', + 1770253 => 'Newnan, GA', + 1770254 => 'Newnan, GA', + 1770258 => 'Bowdon, GA', + 1770263 => 'Norcross, GA', + 1770266 => 'Monroe, GA', + 1770267 => 'Monroe, GA', + 1770270 => 'Tucker, GA', + 1770277 => 'Lawrenceville, GA', + 1770287 => 'Gainesville, GA', + 1770288 => 'McDonough, GA', + 1770297 => 'Gainesville, GA', + 1770300 => 'Norcross, GA', + 1770304 => 'Newnan, GA', + 1770307 => 'Winder, GA', + 1770319 => 'Smyrna, GA', + 1770320 => 'McDonough, GA', + 1770321 => 'Marietta, GA', + 1770334 => 'Cartersville, GA', + 1770338 => 'Lawrenceville, GA', + 1770339 => 'Lawrenceville, GA', + 1770343 => 'Alpharetta, GA', + 1770345 => 'Canton, GA', + 1770346 => 'Alpharetta, GA', + 1770350 => 'Atlanta, GA', + 1770351 => 'Atlanta, GA', + 1770352 => 'Atlanta, GA', + 1770358 => 'Barnesville, GA', + 1770360 => 'Alpharetta, GA', + 1770368 => 'Norcross, GA', + 1770382 => 'Cartersville, GA', + 1770383 => 'Cartersville, GA', + 1770385 => 'Covington, GA', + 1770386 => 'Cartersville, GA', + 1770387 => 'Cartersville, GA', + 1770388 => 'Conyers, GA', + 1770389 => 'Stockbridge, GA', + 1770390 => 'Atlanta, GA', + 1770391 => 'Atlanta, GA', + 1770392 => 'Atlanta, GA', + 1770393 => 'Atlanta, GA', + 1770394 => 'Atlanta, GA', + 1770395 => 'Atlanta, GA', + 1770396 => 'Atlanta, GA', + 1770399 => 'Atlanta, GA', + 1770409 => 'Norcross, GA', + 1770410 => 'Alpharetta, GA', + 1770412 => 'Griffin, GA', + 1770413 => 'Stone Mountain, GA', + 1770414 => 'Tucker, GA', + 1770416 => 'Norcross, GA', + 1770418 => 'Duluth, GA', + 1770421 => 'Marietta, GA', + 1770422 => 'Marietta, GA', + 1770424 => 'Marietta, GA', + 1770425 => 'Marietta, GA', + 1770427 => 'Marietta, GA', + 1770428 => 'Marietta, GA', + 1770429 => 'Marietta, GA', + 1770432 => 'Smyrna, GA', + 1770433 => 'Smyrna, GA', + 1770434 => 'Smyrna, GA', + 1770435 => 'Smyrna, GA', + 1770436 => 'Smyrna, GA', + 1770438 => 'Smyrna, GA', + 1770441 => 'Norcross, GA', + 1770442 => 'Alpharetta, GA', + 1770443 => 'Dallas, GA', + 1770445 => 'Dallas, GA', + 1770446 => 'Norcross, GA', + 1770448 => 'Norcross, GA', + 1770449 => 'Norcross, GA', + 1770455 => 'Atlanta, GA', + 1770456 => 'Villa Rica, GA', + 1770459 => 'Villa Rica, GA', + 1770460 => 'Fayetteville, GA', + 1770461 => 'Fayetteville, GA', + 1770463 => 'Palmetto, GA', + 1770464 => 'Social Circle, GA', + 1770465 => 'Stone Mountain, GA', + 1770466 => 'Loganville, GA', + 1770467 => 'Griffin, GA', + 1770469 => 'Stone Mountain, GA', + 1770471 => 'Jonesboro, GA', + 1770472 => 'Jonesboro, GA', + 1770473 => 'Jonesboro, GA', + 1770474 => 'Stockbridge, GA', + 1770475 => 'Alpharetta, GA', + 1770476 => 'Duluth, GA', + 1770477 => 'Jonesboro, GA', + 1770478 => 'Jonesboro, GA', + 1770479 => 'Canton, GA', + 1770482 => 'Lithonia, GA', + 1770483 => 'Conyers, GA', + 1770484 => 'Lithonia, GA', + 1770486 => 'Peachtree City, GA', + 1770487 => 'Peachtree City, GA', + 1770489 => 'Douglasville, GA', + 1770491 => 'Tucker, GA', + 1770492 => 'Tucker, GA', + 1770493 => 'Tucker, GA', + 1770495 => 'Duluth, GA', + 1770496 => 'Tucker, GA', + 1770497 => 'Duluth, GA', + 1770498 => 'Stone Mountain, GA', + 1770499 => 'Marietta, GA', + 1770502 => 'Newnan, GA', + 1770503 => 'Gainesville, GA', + 1770504 => 'Jackson, GA', + 1770505 => 'Dallas, GA', + 1770506 => 'Stockbridge, GA', + 1770507 => 'Stockbridge, GA', + 1770509 => 'Marietta, GA', + 1770512 => 'Atlanta, GA', + 1770513 => 'Lawrenceville, GA', + 1770514 => 'Marietta, GA', + 1770516 => 'Woodstock, GA', + 1770517 => 'Woodstock, GA', + 1770518 => 'Roswell, GA', + 1770521 => 'Alpharetta, GA', + 1770522 => 'Atlanta, GA', + 1770528 => 'Marietta, GA', + 1770529 => 'Acworth, GA', + 1770531 => 'Gainesville, GA', + 1770532 => 'Gainesville, GA', + 1770533 => 'Gainesville, GA', + 1770534 => 'Gainesville, GA', + 1770535 => 'Gainesville, GA', + 1770536 => 'Gainesville, GA', + 1770537 => 'Bremen, GA', + 1770538 => 'Gainesville, GA', + 1770551 => 'Atlanta, GA', + 1770552 => 'Roswell, GA', + 1770554 => 'Loganville, GA', + 1770562 => 'Temple, GA', + 1770565 => 'Marietta, GA', + 1770567 => 'Zebulon, GA', + 1770569 => 'Alpharetta, GA', + 1770574 => 'Tallapoosa, GA', + 1770577 => 'Douglasville, GA', + 1770578 => 'Marietta, GA', + 1770579 => 'Marietta, GA', + 1770582 => 'Norcross, GA', + 1770587 => 'Roswell, GA', + 1770591 => 'Woodstock, GA', + 1770592 => 'Woodstock, GA', + 1770594 => 'Roswell, GA', + 1770599 => 'Senoia, GA', + 1770602 => 'Conyers, GA', + 1770603 => 'Jonesboro, GA', + 1770606 => 'Cartersville, GA', + 1770607 => 'Cartersville, GA', + 1770619 => 'Alpharetta, GA', + 1770622 => 'Duluth, GA', + 1770623 => 'Duluth, GA', + 1770631 => 'Peachtree City, GA', + 1770632 => 'Peachtree City, GA', + 1770640 => 'Roswell, GA', + 1770641 => 'Roswell, GA', + 1770642 => 'Roswell, GA', + 1770643 => 'Roswell, GA', + 1770646 => 'Buchanan, GA', + 1770648 => 'Conyers, GA', + 1770650 => 'Roswell, GA', + 1770662 => 'Norcross, GA', + 1770663 => 'Alpharetta, GA', + 1770664 => 'Alpharetta, GA', + 1770667 => 'Alpharetta, GA', + 1770668 => 'Atlanta, GA', + 1770671 => 'Atlanta, GA', + 1770677 => 'Atlanta, GA', + 1770679 => 'Conyers, GA', + 1770682 => 'Lawrenceville, GA', + 1770683 => 'Newnan, GA', + 1770684 => 'Rockmart, GA', + 1770698 => 'Atlanta, GA', + 1770704 => 'Canton, GA', + 1770707 => 'Hampton, GA', + 1770716 => 'Fayetteville, GA', + 1770718 => 'Gainesville, GA', + 1770719 => 'Fayetteville, GA', + 1770720 => 'Canton, GA', + 1770729 => 'Norcross, GA', + 1770730 => 'Atlanta, GA', + 1770732 => 'Austell, GA', + 1770735 => 'Ball Ground, GA', + 1770736 => 'Snellville, GA', + 1770740 => 'Alpharetta, GA', + 1770748 => 'Cedartown, GA', + 1770749 => 'Cedartown, GA', + 1770751 => 'Alpharetta, GA', + 1770752 => 'Alpharetta, GA', + 1770753 => 'Alpharetta, GA', + 1770754 => 'Alpharetta, GA', + 1770760 => 'Conyers, GA', + 1770761 => 'Conyers, GA', + 1770772 => 'Alpharetta, GA', + 1770773 => 'Adairsville, GA', + 1770775 => 'Jackson, GA', + 1770777 => 'Alpharetta, GA', + 1770781 => 'Cumming, GA', + 1770784 => 'Covington, GA', + 1770785 => 'Conyers, GA', + 1770786 => 'Covington, GA', + 1770787 => 'Covington, GA', + 1770788 => 'Covington, GA', + 1770792 => 'Marietta, GA', + 1770793 => 'Marietta, GA', + 1770794 => 'Marietta, GA', + 1770804 => 'Atlanta, GA', + 1770813 => 'Duluth, GA', + 1770814 => 'Duluth, GA', + 1770822 => 'Lawrenceville, GA', + 1770830 => 'Carrollton, GA', + 1770832 => 'Carrollton, GA', + 1770834 => 'Carrollton, GA', + 1770836 => 'Carrollton, GA', + 1770838 => 'Carrollton, GA', + 1770840 => 'Norcross, GA', + 1770844 => 'Cumming, GA', + 1770860 => 'Conyers, GA', + 1770867 => 'Winder, GA', + 1770868 => 'Winder, GA', + 1770869 => 'Lula, GA', + 1770879 => 'Stone Mountain, GA', + 1770886 => 'Cumming, GA', + 1770887 => 'Cumming, GA', + 1770888 => 'Cumming, GA', + 1770889 => 'Cumming, GA', + 1770898 => 'McDonough, GA', + 1770907 => 'Riverdale, GA', + 1770909 => 'Riverdale, GA', + 1770914 => 'McDonough, GA', + 1770917 => 'Acworth, GA', + 1770918 => 'Conyers, GA', + 1770919 => 'Marietta, GA', + 1770920 => 'Douglasville, GA', + 1770922 => 'Conyers, GA', + 1770924 => 'Woodstock, GA', + 1770926 => 'Woodstock, GA', + 1770927 => 'Luthersville, GA', + 1770929 => 'Conyers, GA', + 1770934 => 'Tucker, GA', + 1770938 => 'Tucker, GA', + 1770939 => 'Tucker, GA', + 1770942 => 'Douglasville, GA', + 1770945 => 'Buford, GA', + 1770946 => 'Hampton, GA', + 1770947 => 'Douglasville, GA', + 1770949 => 'Douglasville, GA', + 1770954 => 'McDonough, GA', + 1770957 => 'McDonough, GA', + 1770960 => 'Morrow, GA', + 1770961 => 'Morrow, GA', + 1770962 => 'Lawrenceville, GA', + 1770963 => 'Lawrenceville, GA', + 1770965 => 'Flowery Branch, GA', + 1770966 => 'Acworth, GA', + 1770967 => 'Flowery Branch, GA', + 1770968 => 'Morrow, GA', + 1770971 => 'Marietta, GA', + 1770972 => 'Snellville, GA', + 1770973 => 'Marietta, GA', + 1770974 => 'Acworth, GA', + 1770975 => 'Acworth, GA', + 1770977 => 'Marietta, GA', + 1770978 => 'Snellville, GA', + 1770979 => 'Snellville, GA', + 1770982 => 'Snellville, GA', + 1770985 => 'Snellville, GA', + 1770991 => 'Riverdale, GA', + 1770992 => 'Roswell, GA', + 1770993 => 'Roswell, GA', + 1770995 => 'Lawrenceville, GA', + 1770997 => 'Riverdale, GA', + 1770998 => 'Roswell, GA', + 1772 => 'Florida', + 1772204 => 'Port St. Lucie, FL', + 1772219 => 'Stuart, FL', + 1772220 => 'Stuart, FL', + 1772221 => 'Stuart, FL', + 1772223 => 'Stuart, FL', + 1772224 => 'Port St. Lucie, FL', + 1772225 => 'Jensen Beach, FL', + 1772226 => 'Vero Beach, FL', + 1772229 => 'Jensen Beach, FL', + 1772231 => 'Vero Beach, FL', + 1772232 => 'Jensen Beach, FL', + 1772234 => 'Vero Beach, FL', + 1772237 => 'Port St. Lucie, FL', + 1772257 => 'Vero Beach, FL', + 1772283 => 'Stuart, FL', + 1772286 => 'Stuart, FL', + 1772287 => 'Stuart, FL', + 1772288 => 'Stuart, FL', + 1772299 => 'Vero Beach, FL', + 1772321 => 'Vero Beach, FL', + 1772323 => 'Port St. Lucie, FL', + 1772334 => 'Jensen Beach, FL', + 1772335 => 'Port St. Lucie, FL', + 1772336 => 'Port St. Lucie, FL', + 1772337 => 'Port St. Lucie, FL', + 1772340 => 'Port St. Lucie, FL', + 1772343 => 'Port St. Lucie, FL', + 1772344 => 'Port St. Lucie, FL', + 1772345 => 'Port St. Lucie, FL', + 1772370 => 'Port St. Lucie, FL', + 1772388 => 'Sebastian, FL', + 1772398 => 'Port St. Lucie, FL', + 1772419 => 'Stuart, FL', + 1772429 => 'Fort Pierce, FL', + 1772460 => 'Fort Pierce, FL', + 1772461 => 'Fort Pierce, FL', + 1772462 => 'Fort Pierce, FL', + 1772463 => 'Stuart, FL', + 1772464 => 'Fort Pierce, FL', + 1772465 => 'Fort Pierce, FL', + 1772466 => 'Fort Pierce, FL', + 1772467 => 'Fort Pierce, FL', + 1772468 => 'Fort Pierce, FL', + 1772473 => 'Vero Beach, FL', + 1772489 => 'Fort Pierce, FL', + 1772492 => 'Vero Beach, FL', + 1772545 => 'Hobe Sound, FL', + 1772546 => 'Hobe Sound, FL', + 1772559 => 'Vero Beach, FL', + 1772562 => 'Vero Beach, FL', + 1772563 => 'Vero Beach, FL', + 1772564 => 'Vero Beach, FL', + 1772567 => 'Vero Beach, FL', + 1772569 => 'Vero Beach, FL', + 1772571 => 'Fellsmere, FL', + 1772581 => 'Sebastian, FL', + 1772589 => 'Sebastian, FL', + 1772595 => 'Fort Pierce, FL', + 1772597 => 'Indiantown, FL', + 1772600 => 'Stuart, FL', + 1772621 => 'Port St. Lucie, FL', + 1772626 => 'Port St. Lucie, FL', + 1772633 => 'Vero Beach, FL', + 1772664 => 'Sebastian, FL', + 1772672 => 'Fort Pierce, FL', + 1772692 => 'Stuart, FL', + 1772770 => 'Vero Beach, FL', + 1772778 => 'Vero Beach, FL', + 1772781 => 'Stuart, FL', + 1772785 => 'Port St. Lucie, FL', + 1772794 => 'Vero Beach, FL', + 1772807 => 'Port St. Lucie, FL', + 1772871 => 'Port St. Lucie, FL', + 1772873 => 'Port St. Lucie, FL', + 1772878 => 'Port St. Lucie, FL', + 1772879 => 'Port St. Lucie, FL', + 1772882 => 'Fort Pierce, FL', + 1772978 => 'Vero Beach, FL', + 1773 => 'Chicago, IL', + 1774 => 'Massachusetts', + 1774202 => 'New Bedford, MA', + 1775 => 'Nevada', + 1775265 => 'Gardnerville, NV', + 1775273 => 'Lovelock, NV', + 1775284 => 'Reno, NV', + 1775289 => 'Ely, NV', + 1775322 => 'Reno, NV', + 1775323 => 'Reno, NV', + 1775324 => 'Reno, NV', + 1775327 => 'Reno, NV', + 1775328 => 'Reno, NV', + 1775329 => 'Reno, NV', + 1775331 => 'Sparks, NV', + 1775332 => 'Reno, NV', + 1775333 => 'Reno, NV', + 1775334 => 'Reno, NV', + 1775337 => 'Reno, NV', + 1775348 => 'Reno, NV', + 1775351 => 'Sparks, NV', + 1775352 => 'Sparks, NV', + 1775353 => 'Sparks, NV', + 1775355 => 'Sparks, NV', + 1775356 => 'Sparks, NV', + 1775358 => 'Sparks, NV', + 1775359 => 'Sparks, NV', + 1775423 => 'Fallon, NV', + 1775424 => 'Sparks, NV', + 1775425 => 'Sparks, NV', + 1775428 => 'Fallon, NV', + 1775445 => 'Carson City, NV', + 1775453 => 'Reno, NV', + 1775463 => 'Yerington, NV', + 1775482 => 'Tonopah, NV', + 1775537 => 'Pahrump, NV', + 1775575 => 'Fernley, NV', + 1775577 => 'Silver Springs, NV', + 1775588 => 'Stateline, NV', + 1775622 => 'Reno, NV', + 1775623 => 'Winnemucca, NV', + 1775624 => 'Reno, NV', + 1775625 => 'Winnemucca, NV', + 1775626 => 'Sparks, NV', + 1775635 => 'Battle Mountain, NV', + 1775636 => 'Reno, NV', + 1775657 => 'Reno, NV', + 1775677 => 'Reno, NV', + 1775684 => 'Carson City, NV', + 1775687 => 'Carson City, NV', + 1775689 => 'Reno, NV', + 1775726 => 'Caliente, NV', + 1775727 => 'Pahrump, NV', + 1775738 => 'Elko, NV', + 1775746 => 'Reno, NV', + 1775747 => 'Reno, NV', + 1775751 => 'Pahrump, NV', + 1775752 => 'Wells, NV', + 1775753 => 'Elko, NV', + 1775770 => 'Reno, NV', + 1775777 => 'Elko, NV', + 1775778 => 'Elko, NV', + 1775782 => 'Gardnerville, NV', + 1775784 => 'Reno, NV', + 1775786 => 'Reno, NV', + 1775787 => 'Reno, NV', + 1775823 => 'Reno, NV', + 1775824 => 'Reno, NV', + 1775825 => 'Reno, NV', + 1775826 => 'Reno, NV', + 1775827 => 'Reno, NV', + 1775828 => 'Reno, NV', + 1775829 => 'Reno, NV', + 1775831 => 'Incline Village, NV', + 1775832 => 'Incline Village, NV', + 1775833 => 'Incline Village, NV', + 1775841 => 'Carson City, NV', + 1775847 => 'Virginia City, NV', + 1775849 => 'Reno, NV', + 1775850 => 'Reno, NV', + 1775851 => 'Reno, NV', + 1775852 => 'Reno, NV', + 1775853 => 'Reno, NV', + 1775856 => 'Reno, NV', + 1775857 => 'Reno, NV', + 1775867 => 'Fallon, NV', + 1775882 => 'Carson City, NV', + 1775883 => 'Carson City, NV', + 1775884 => 'Carson City, NV', + 1775885 => 'Carson City, NV', + 1775886 => 'Carson City, NV', + 1775887 => 'Carson City, NV', + 1775888 => 'Carson City, NV', + 1775945 => 'Hawthorne, NV', + 1775972 => 'Reno, NV', + 1775982 => 'Reno, NV', + 1778 => 'British Columbia', + 1778278 => 'Langley, BC', + 1778294 => 'Surrey, BC', + 1778297 => 'Richmond, BC', + 1778298 => 'Langley, BC', + 1778340 => 'North Vancouver, BC', + 1778371 => 'Vancouver, BC', + 1778395 => 'Surrey, BC', + 1778397 => 'New Westminster, BC', + 1778471 => 'Kamloops, BC', + 1778475 => 'Vernon, BC', + 1778476 => 'Penticton, BC', + 1778478 => 'Kelowna, BC', + 1778484 => 'Kelowna, BC', + 1778565 => 'Surrey, BC', + 1778574 => 'Surrey, BC', + 1779 => 'Illinois', + 1779423 => 'Rockford, IL', + 1780 => 'Alberta', + 1780332 => 'Grimshaw, AB', + 1780336 => 'Viking, AB', + 1780349 => 'Westlock, AB', + 1780352 => 'Wetaskiwin, AB', + 1780354 => 'Beaverlodge, AB', + 1780361 => 'Wetaskiwin, AB', + 1780385 => 'Killam, AB', + 1780387 => 'Millet, AB', + 1780402 => 'Grande Prairie, AB', + 1780406 => 'Edmonton, AB', + 1780407 => 'Edmonton, AB', + 1780408 => 'Edmonton, AB', + 1780409 => 'Edmonton, AB', + 1780413 => 'Edmonton, AB', + 1780414 => 'Edmonton, AB', + 1780416 => 'Sherwood Park, AB', + 1780417 => 'Sherwood Park, AB', + 1780418 => 'St. Albert, AB', + 1780420 => 'Edmonton, AB', + 1780421 => 'Edmonton, AB', + 1780422 => 'Edmonton, AB', + 1780423 => 'Edmonton, AB', + 1780424 => 'Edmonton, AB', + 1780425 => 'Edmonton, AB', + 1780426 => 'Edmonton, AB', + 1780428 => 'Edmonton, AB', + 1780429 => 'Edmonton, AB', + 1780430 => 'Edmonton, AB', + 1780431 => 'Edmonton, AB', + 1780432 => 'Edmonton, AB', + 1780433 => 'Edmonton, AB', + 1780434 => 'Edmonton, AB', + 1780435 => 'Edmonton, AB', + 1780436 => 'Edmonton, AB', + 1780437 => 'Edmonton, AB', + 1780438 => 'Edmonton, AB', + 1780439 => 'Edmonton, AB', + 1780440 => 'Edmonton, AB', + 1780441 => 'Edmonton, AB', + 1780442 => 'Edmonton, AB', + 1780443 => 'Edmonton, AB', + 1780444 => 'Edmonton, AB', + 1780446 => 'Edmonton, AB', + 1780447 => 'Edmonton, AB', + 1780448 => 'Edmonton, AB', + 1780449 => 'Sherwood Park, AB', + 1780450 => 'Edmonton, AB', + 1780451 => 'Edmonton, AB', + 1780452 => 'Edmonton, AB', + 1780453 => 'Edmonton, AB', + 1780454 => 'Edmonton, AB', + 1780455 => 'Edmonton, AB', + 1780456 => 'Edmonton, AB', + 1780457 => 'Edmonton, AB', + 1780458 => 'St. Albert, AB', + 1780459 => 'St. Albert, AB', + 1780460 => 'St. Albert, AB', + 1780461 => 'Edmonton, AB', + 1780462 => 'Edmonton, AB', + 1780463 => 'Edmonton, AB', + 1780464 => 'Sherwood Park, AB', + 1780465 => 'Edmonton, AB', + 1780466 => 'Edmonton, AB', + 1780467 => 'Sherwood Park, AB', + 1780468 => 'Edmonton, AB', + 1780469 => 'Edmonton, AB', + 1780470 => 'St. Albert, AB', + 1780471 => 'Edmonton, AB', + 1780472 => 'Edmonton, AB', + 1780473 => 'Edmonton, AB', + 1780474 => 'Edmonton, AB', + 1780475 => 'Edmonton, AB', + 1780476 => 'Edmonton, AB', + 1780477 => 'Edmonton, AB', + 1780478 => 'Edmonton, AB', + 1780479 => 'Edmonton, AB', + 1780481 => 'Edmonton, AB', + 1780482 => 'Edmonton, AB', + 1780483 => 'Edmonton, AB', + 1780484 => 'Edmonton, AB', + 1780485 => 'Edmonton, AB', + 1780486 => 'Edmonton, AB', + 1780487 => 'Edmonton, AB', + 1780488 => 'Edmonton, AB', + 1780489 => 'Edmonton, AB', + 1780490 => 'Edmonton, AB', + 1780492 => 'Edmonton, AB', + 1780496 => 'Edmonton, AB', + 1780497 => 'Edmonton, AB', + 1780499 => 'Edmonton, AB', + 1780513 => 'Grande Prairie, AB', + 1780523 => 'High Prairie, AB', + 1780524 => 'Valleyview, AB', + 1780532 => 'Grande Prairie, AB', + 1780538 => 'Grande Prairie, AB', + 1780539 => 'Grande Prairie, AB', + 1780542 => 'Drayton Valley, AB', + 1780568 => 'Sexsmith, AB', + 1780594 => 'Cold Lake, AB', + 1780608 => 'Camrose, AB', + 1780621 => 'Drayton Valley, AB', + 1780622 => 'Fox Creek, AB', + 1780623 => 'Lac la Biche, AB', + 1780624 => 'Peace River, AB', + 1780628 => 'Edmonton, AB', + 1780632 => 'Vegreville, AB', + 1780639 => 'Cold Lake, AB', + 1780645 => 'Saint Paul, AB', + 1780656 => 'Smoky Lake, AB', + 1780662 => 'Tofield, AB', + 1780672 => 'Camrose, AB', + 1780674 => 'Barrhead, AB', + 1780675 => 'Athabasca, AB', + 1780679 => 'Camrose, AB', + 1780689 => 'Boyle, AB', + 1780701 => 'Edmonton, AB', + 1780702 => 'Edmonton, AB', + 1780706 => 'Whitecourt, AB', + 1780712 => 'Edson, AB', + 1780715 => 'Fort McMurray, AB', + 1780723 => 'Edson, AB', + 1780724 => 'Elk Point, AB', + 1780727 => 'Evansburg, AB', + 1780743 => 'Fort McMurray, AB', + 1780750 => 'Fort McMurray, AB', + 1780753 => 'Provost, AB', + 1780756 => 'Edmonton, AB', + 1780757 => 'Edmonton, AB', + 1780758 => 'Edmonton, AB', + 1780760 => 'Edmonton, AB', + 1780761 => 'Edmonton, AB', + 1780778 => 'Whitecourt, AB', + 1780786 => 'Mayerthorpe, AB', + 1780790 => 'Fort McMurray, AB', + 1780791 => 'Fort McMurray, AB', + 1780799 => 'Fort McMurray, AB', + 1780800 => 'Edmonton, AB', + 1780808 => 'Lloydminster, AB', + 1780812 => 'Bonnyville, AB', + 1780814 => 'Grande Prairie, AB', + 1780826 => 'Bonnyville, AB', + 1780827 => 'Grande Cache, AB', + 1780830 => 'Grande Prairie, AB', + 1780831 => 'Grande Prairie, AB', + 1780832 => 'Grande Prairie, AB', + 1780835 => 'Fairview, AB', + 1780836 => 'Manning, AB', + 1780837 => 'Falher, AB', + 1780842 => 'Wainwright, AB', + 1780849 => 'Slave Lake, AB', + 1780852 => 'Jasper, AB', + 1780853 => 'Vermilion, AB', + 1780865 => 'Hinton, AB', + 1780871 => 'Lloydminster, AB', + 1780872 => 'Lloydminster, AB', + 1780875 => 'Lloydminster, AB', + 1780882 => 'Grande Prairie, AB', + 1780895 => 'Lamont, AB', + 1780922 => 'Ardrossan, AB', + 1780926 => 'High Level, AB', + 1780928 => 'La Crête, AB', + 1780929 => 'Beaumont, AB', + 1780930 => 'Edmonton, AB', + 1780939 => 'Morinville, AB', + 1780942 => 'Redwater, AB', + 1780944 => 'Edmonton, AB', + 1780955 => 'Nisku, AB', + 1780960 => 'Spruce Grove, AB', + 1780962 => 'Spruce Grove, AB', + 1780963 => 'Stony Plain, AB', + 1780967 => 'Onoway, AB', + 1780968 => 'Stony Plain, AB', + 1780980 => 'Leduc, AB', + 1780986 => 'Leduc, AB', + 1780987 => 'Devon, AB', + 1780988 => 'Edmonton, AB', + 1780989 => 'Edmonton, AB', + 1780990 => 'Edmonton, AB', + 1780992 => 'Fort Saskatchewan, AB', + 1780993 => 'Edmonton, AB', + 1780998 => 'Fort Saskatchewan, AB', + 1781 => 'Massachusetts', + 1781209 => 'Waltham, MA', + 1781221 => 'Burlington, MA', + 1781224 => 'Wakefield, MA', + 1781229 => 'Burlington, MA', + 1781231 => 'Saugus, MA', + 1781233 => 'Saugus, MA', + 1781235 => 'Wellesley, MA', + 1781237 => 'Wellesley, MA', + 1781239 => 'Wellesley, MA', + 1781245 => 'Wakefield, MA', + 1781246 => 'Wakefield, MA', + 1781251 => 'Dedham, MA', + 1781255 => 'Norwood, MA', + 1781259 => 'Lincoln, MA', + 1781270 => 'Burlington, MA', + 1781272 => 'Burlington, MA', + 1781273 => 'Burlington, MA', + 1781274 => 'Lexington, MA', + 1781275 => 'Bedford, MA', + 1781278 => 'Norwood, MA', + 1781279 => 'Stoneham, MA', + 1781281 => 'Woburn, MA', + 1781284 => 'Revere, MA', + 1781286 => 'Revere, MA', + 1781289 => 'Revere, MA', + 1781297 => 'Stoughton, MA', + 1781306 => 'Medford, MA', + 1781316 => 'Arlington, MA', + 1781320 => 'Dedham, MA', + 1781321 => 'Malden, MA', + 1781322 => 'Malden, MA', + 1781324 => 'Malden, MA', + 1781326 => 'Dedham, MA', + 1781329 => 'Dedham, MA', + 1781334 => 'Lynnfield, MA', + 1781335 => 'Weymouth, MA', + 1781337 => 'Weymouth, MA', + 1781338 => 'Malden, MA', + 1781341 => 'Stoughton, MA', + 1781344 => 'Stoughton, MA', + 1781356 => 'Braintree, MA', + 1781376 => 'Woburn, MA', + 1781380 => 'Braintree, MA', + 1781383 => 'Cohasset, MA', + 1781388 => 'Malden, MA', + 1781391 => 'Medford, MA', + 1781393 => 'Medford, MA', + 1781395 => 'Medford, MA', + 1781396 => 'Medford, MA', + 1781397 => 'Malden, MA', + 1781407 => 'Westwood, MA', + 1781431 => 'Wellesley, MA', + 1781433 => 'Needham, MA', + 1781436 => 'Stoughton, MA', + 1781438 => 'Stoneham, MA', + 1781444 => 'Needham, MA', + 1781447 => 'Whitman, MA', + 1781449 => 'Needham, MA', + 1781453 => 'Needham, MA', + 1781455 => 'Needham, MA', + 1781461 => 'Dedham, MA', + 1781477 => 'Lynn, MA', + 1781485 => 'Revere, MA', + 1781487 => 'Waltham, MA', + 1781544 => 'Scituate, MA', + 1781545 => 'Scituate, MA', + 1781551 => 'Norwood, MA', + 1781575 => 'Canton, MA', + 1781581 => 'Lynn, MA', + 1781582 => 'Kingston, MA', + 1781585 => 'Kingston, MA', + 1781592 => 'Lynn, MA', + 1781593 => 'Lynn, MA', + 1781595 => 'Lynn, MA', + 1781596 => 'Lynn, MA', + 1781598 => 'Lynn, MA', + 1781599 => 'Lynn, MA', + 1781631 => 'Marblehead, MA', + 1781639 => 'Marblehead, MA', + 1781641 => 'Arlington, MA', + 1781642 => 'Waltham, MA', + 1781643 => 'Arlington, MA', + 1781646 => 'Arlington, MA', + 1781647 => 'Waltham, MA', + 1781648 => 'Arlington, MA', + 1781659 => 'Norwell, MA', + 1781662 => 'Melrose, MA', + 1781665 => 'Melrose, MA', + 1781674 => 'Lexington, MA', + 1781682 => 'Weymouth, MA', + 1781687 => 'Bedford, MA', + 1781721 => 'Winchester, MA', + 1781729 => 'Winchester, MA', + 1781740 => 'Hingham, MA', + 1781741 => 'Hingham, MA', + 1781744 => 'Burlington, MA', + 1781749 => 'Hingham, MA', + 1781756 => 'Winchester, MA', + 1781762 => 'Norwood, MA', + 1781767 => 'Holbrook, MA', + 1781769 => 'Norwood, MA', + 1781780 => 'Lynn, MA', + 1781784 => 'Sharon, MA', + 1781821 => 'Canton, MA', + 1781826 => 'Hanover, MA', + 1781828 => 'Canton, MA', + 1781834 => 'Marshfield, MA', + 1781837 => 'Marshfield, MA', + 1781843 => 'Braintree, MA', + 1781848 => 'Braintree, MA', + 1781849 => 'Braintree, MA', + 1781860 => 'Lexington, MA', + 1781861 => 'Lexington, MA', + 1781862 => 'Lexington, MA', + 1781863 => 'Lexington, MA', + 1781890 => 'Waltham, MA', + 1781891 => 'Waltham, MA', + 1781893 => 'Waltham, MA', + 1781894 => 'Waltham, MA', + 1781895 => 'Waltham, MA', + 1781899 => 'Waltham, MA', + 1781925 => 'Hull, MA', + 1781932 => 'Woburn, MA', + 1781933 => 'Woburn, MA', + 1781934 => 'Duxbury, MA', + 1781935 => 'Woburn, MA', + 1781937 => 'Woburn, MA', + 1781938 => 'Woburn, MA', + 1781942 => 'Reading, MA', + 1781944 => 'Reading, MA', + 1781961 => 'Randolph, MA', + 1781963 => 'Randolph, MA', + 1781979 => 'Melrose, MA', + 1781986 => 'Randolph, MA', + 1782 => 'Nova Scotia', + 1785 => 'Kansas', + 1785215 => 'Topeka, KS', + 1785222 => 'La Crosse, KS', + 1785227 => 'Lindsborg, KS', + 1785228 => 'Topeka, KS', + 1785229 => 'Ottawa, KS', + 1785232 => 'Topeka, KS', + 1785233 => 'Topeka, KS', + 1785234 => 'Topeka, KS', + 1785235 => 'Topeka, KS', + 1785238 => 'Junction City, KS', + 1785239 => 'Fort Riley, KS', + 1785242 => 'Ottawa, KS', + 1785243 => 'Concordia, KS', + 1785246 => 'Topeka, KS', + 1785258 => 'Herington, KS', + 1785263 => 'Abilene, KS', + 1785266 => 'Topeka, KS', + 1785267 => 'Topeka, KS', + 1785271 => 'Topeka, KS', + 1785272 => 'Topeka, KS', + 1785273 => 'Topeka, KS', + 1785282 => 'Smith Center, KS', + 1785284 => 'Sabetha, KS', + 1785286 => 'Topeka, KS', + 1785295 => 'Topeka, KS', + 1785296 => 'Topeka, KS', + 1785309 => 'Salina, KS', + 1785312 => 'Lawrence, KS', + 1785320 => 'Manhattan, KS', + 1785325 => 'Washington, KS', + 1785331 => 'Lawrence, KS', + 1785332 => 'St. Francis, KS', + 1785336 => 'Seneca, KS', + 1785346 => 'Osborne, KS', + 1785350 => 'Topeka, KS', + 1785354 => 'Topeka, KS', + 1785357 => 'Topeka, KS', + 1785363 => 'Blue Rapids, KS', + 1785364 => 'Holton, KS', + 1785368 => 'Topeka, KS', + 1785378 => 'Mankato, KS', + 1785379 => 'Tecumseh, KS', + 1785392 => 'Minneapolis, KS', + 1785404 => 'Salina, KS', + 1785421 => 'Hill City, KS', + 1785425 => 'Stockton, KS', + 1785434 => 'Plainville, KS', + 1785437 => 'Saint Marys, KS', + 1785448 => 'Garnett, KS', + 1785452 => 'Salina, KS', + 1785454 => 'Downs, KS', + 1785456 => 'Wamego, KS', + 1785460 => 'Colby, KS', + 1785462 => 'Colby, KS', + 1785472 => 'Ellsworth, KS', + 1785475 => 'Oberlin, KS', + 1785478 => 'Topeka, KS', + 1785483 => 'Russell, KS', + 1785484 => 'Meriden, KS', + 1785486 => 'Horton, KS', + 1785524 => 'Lincoln, KS', + 1785527 => 'Belleville, KS', + 1785528 => 'Osage City, KS', + 1785532 => 'Manhattan, KS', + 1785537 => 'Manhattan, KS', + 1785539 => 'Manhattan, KS', + 1785542 => 'Eudora, KS', + 1785543 => 'Phillipsburg, KS', + 1785562 => 'Marysville, KS', + 1785587 => 'Manhattan, KS', + 1785594 => 'Baldwin City, KS', + 1785621 => 'Hays, KS', + 1785623 => 'Hays, KS', + 1785625 => 'Hays, KS', + 1785626 => 'Atwood, KS', + 1785628 => 'Hays, KS', + 1785632 => 'Clay Center, KS', + 1785672 => 'Oakley, KS', + 1785675 => 'Hoxie, KS', + 1785726 => 'Ellis, KS', + 1785735 => 'Victoria, KS', + 1785738 => 'Beloit, KS', + 1785742 => 'Hiawatha, KS', + 1785743 => 'WaKeeney, KS', + 1785749 => 'Lawrence, KS', + 1785754 => 'Quinter, KS', + 1785762 => 'Junction City, KS', + 1785766 => 'Lawrence, KS', + 1785776 => 'Manhattan, KS', + 1785783 => 'Topeka, KS', + 1785798 => 'Ness City, KS', + 1785820 => 'Salina, KS', + 1785823 => 'Salina, KS', + 1785825 => 'Salina, KS', + 1785826 => 'Salina, KS', + 1785827 => 'Salina, KS', + 1785828 => 'Lyndon, KS', + 1785830 => 'Lawrence, KS', + 1785832 => 'Lawrence, KS', + 1785836 => 'Carbondale, KS', + 1785838 => 'Lawrence, KS', + 1785840 => 'Lawrence, KS', + 1785841 => 'Lawrence, KS', + 1785842 => 'Lawrence, KS', + 1785843 => 'Lawrence, KS', + 1785852 => 'Sharon Springs, KS', + 1785856 => 'Lawrence, KS', + 1785862 => 'Topeka, KS', + 1785863 => 'Oskaloosa, KS', + 1785864 => 'Lawrence, KS', + 1785865 => 'Lawrence, KS', + 1785877 => 'Norton, KS', + 1785883 => 'Wellsville, KS', + 1785889 => 'Onaga, KS', + 1785890 => 'Goodland, KS', + 1785899 => 'Goodland, KS', + 1785945 => 'Valley Falls, KS', + 1785985 => 'Troy, KS', + 1785989 => 'Wathena, KS', + 1786 => 'Florida', + 1786242 => 'Miami, FL', + 1786243 => 'Homestead, FL', + 1786250 => 'Miami, FL', + 1786293 => 'Miami, FL', + 1786294 => 'Miami, FL', + 1786362 => 'Miami, FL', + 1786388 => 'Miami, FL', + 1786507 => 'Miami, FL', + 1786517 => 'Miami, FL', + 1786536 => 'Miami, FL', + 1786558 => 'Miami, FL', + 1786573 => 'Miami, FL', + 1786596 => 'Miami, FL', + 1786621 => 'Miami, FL', + 1786662 => 'South Miami, FL', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1701.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1701.php deleted file mode 100644 index dd90074c3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1701.php +++ /dev/null @@ -1,120 +0,0 @@ - 'North Dakota', - 1701221 => 'Bismarck, ND', - 1701222 => 'Bismarck, ND', - 1701223 => 'Bismarck, ND', - 1701224 => 'Bismarck, ND', - 1701225 => 'Dickinson, ND', - 1701227 => 'Dickinson, ND', - 1701228 => 'Bottineau, ND', - 1701232 => 'Fargo, ND', - 1701234 => 'Fargo, ND', - 1701235 => 'Fargo, ND', - 1701237 => 'Fargo, ND', - 1701239 => 'Fargo, ND', - 1701241 => 'Fargo, ND', - 1701242 => 'Hankinson, ND', - 1701250 => 'Bismarck, ND', - 1701251 => 'Jamestown, ND', - 1701252 => 'Jamestown, ND', - 1701253 => 'Jamestown, ND', - 1701254 => 'Linton, ND', - 1701255 => 'Bismarck, ND', - 1701256 => 'Langdon, ND', - 1701258 => 'Bismarck, ND', - 1701265 => 'Cavalier, ND', - 1701271 => 'Fargo, ND', - 1701280 => 'Fargo, ND', - 1701284 => 'Park River, ND', - 1701288 => 'Ashley, ND', - 1701293 => 'Fargo, ND', - 1701297 => 'Fargo, ND', - 1701298 => 'Fargo, ND', - 1701323 => 'Bismarck, ND', - 1701324 => 'Harvey, ND', - 1701328 => 'Bismarck, ND', - 1701347 => 'Casselton, ND', - 1701349 => 'Ellendale, ND', - 1701352 => 'Grafton, ND', - 1701355 => 'Bismarck, ND', - 1701356 => 'Fargo, ND', - 1701364 => 'Fargo, ND', - 1701365 => 'Fargo, ND', - 1701385 => 'Kenmare, ND', - 1701400 => 'Bismarck, ND', - 1701437 => 'Enderlin, ND', - 1701448 => 'Turtle Lake, ND', - 1701452 => 'Wishek, ND', - 1701454 => 'Drayton, ND', - 1701456 => 'Dickinson, ND', - 1701462 => 'Washburn, ND', - 1701463 => 'Garrison, ND', - 1701476 => 'Fargo, ND', - 1701477 => 'Rolla, ND', - 1701478 => 'Fargo, ND', - 1701483 => 'Dickinson, ND', - 1701523 => 'Bowman, ND', - 1701530 => 'Bismarck, ND', - 1701549 => 'Walhalla, ND', - 1701567 => 'Hettinger, ND', - 1701572 => 'Williston, ND', - 1701575 => 'Belfield, ND', - 1701577 => 'Williston, ND', - 1701584 => 'Elgin, ND', - 1701627 => 'New Town, ND', - 1701628 => 'Stanley, ND', - 1701636 => 'Hillsboro, ND', - 1701642 => 'Wahpeton, ND', - 1701652 => 'Carrington, ND', - 1701662 => 'Devils Lake, ND', - 1701663 => 'Mandan, ND', - 1701664 => 'Tioga, ND', - 1701667 => 'Mandan, ND', - 1701683 => 'Lisbon, ND', - 1701724 => 'Forman, ND', - 1701738 => 'Grand Forks, ND', - 1701742 => 'Oakes, ND', - 1701746 => 'Grand Forks, ND', - 1701748 => 'Hazen, ND', - 1701751 => 'Bismarck, ND', - 1701756 => 'Mohall, ND', - 1701757 => 'Grand Forks, ND', - 1701764 => 'Killdeer, ND', - 1701766 => 'Fort Totten, ND', - 1701772 => 'Grand Forks, ND', - 1701774 => 'Williston, ND', - 1701775 => 'Grand Forks, ND', - 1701776 => 'Rugby, ND', - 1701777 => 'Grand Forks, ND', - 1701780 => 'Grand Forks, ND', - 1701786 => 'Mayville, ND', - 1701788 => 'Mayville, ND', - 1701794 => 'Center, ND', - 1701795 => 'Grand Forks, ND', - 1701797 => 'Cooperstown, ND', - 1701799 => 'Fargo, ND', - 1701833 => 'Minot, ND', - 1701837 => 'Minot, ND', - 1701838 => 'Minot, ND', - 1701839 => 'Minot, ND', - 1701842 => 'Watford City, ND', - 1701843 => 'New Salem, ND', - 1701845 => 'Valley City, ND', - 1701852 => 'Minot, ND', - 1701854 => 'Fort Yates, ND', - 1701857 => 'Minot, ND', - 1701858 => 'Minot, ND', - 1701872 => 'Beach, ND', - 1701873 => 'Beulah, ND', - 1701883 => 'LaMoure, ND', - 1701947 => 'New Rockford, ND', - 1701952 => 'Jamestown, ND', - 1701965 => 'Crosby, ND', - 1701968 => 'Cando, ND', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1702.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1702.php deleted file mode 100644 index 3092222b9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1702.php +++ /dev/null @@ -1,244 +0,0 @@ - 'Nevada', - 1702202 => 'Las Vegas, NV', - 1702207 => 'Las Vegas, NV', - 1702212 => 'Las Vegas, NV', - 1702214 => 'Las Vegas, NV', - 1702216 => 'Las Vegas, NV', - 1702220 => 'Las Vegas, NV', - 1702221 => 'Las Vegas, NV', - 1702222 => 'Las Vegas, NV', - 1702227 => 'Las Vegas, NV', - 1702228 => 'Las Vegas, NV', - 1702229 => 'Las Vegas, NV', - 1702233 => 'Las Vegas, NV', - 1702240 => 'Las Vegas, NV', - 1702242 => 'Las Vegas, NV', - 1702243 => 'Las Vegas, NV', - 1702247 => 'Las Vegas, NV', - 1702248 => 'Las Vegas, NV', - 1702251 => 'Las Vegas, NV', - 1702252 => 'Las Vegas, NV', - 1702253 => 'Las Vegas, NV', - 1702254 => 'Las Vegas, NV', - 1702255 => 'Las Vegas, NV', - 1702256 => 'Las Vegas, NV', - 1702257 => 'Las Vegas, NV', - 1702258 => 'Las Vegas, NV', - 1702259 => 'Las Vegas, NV', - 1702260 => 'Las Vegas, NV', - 1702261 => 'Las Vegas, NV', - 1702262 => 'Las Vegas, NV', - 1702263 => 'Las Vegas, NV', - 1702267 => 'Henderson, NV', - 1702269 => 'Las Vegas, NV', - 1702270 => 'Las Vegas, NV', - 1702272 => 'Las Vegas, NV', - 1702284 => 'Las Vegas, NV', - 1702293 => 'Boulder City, NV', - 1702294 => 'Boulder City, NV', - 1702298 => 'Laughlin, NV', - 1702304 => 'Las Vegas, NV', - 1702307 => 'Las Vegas, NV', - 1702309 => 'Las Vegas, NV', - 1702312 => 'Las Vegas, NV', - 1702313 => 'Las Vegas, NV', - 1702320 => 'Las Vegas, NV', - 1702331 => 'Las Vegas, NV', - 1702333 => 'Las Vegas, NV', - 1702341 => 'Las Vegas, NV', - 1702345 => 'Mesquite, NV', - 1702346 => 'Mesquite, NV', - 1702360 => 'Las Vegas, NV', - 1702361 => 'Las Vegas, NV', - 1702362 => 'Las Vegas, NV', - 1702363 => 'Las Vegas, NV', - 1702364 => 'Las Vegas, NV', - 1702365 => 'Las Vegas, NV', - 1702366 => 'Las Vegas, NV', - 1702367 => 'Las Vegas, NV', - 1702368 => 'Las Vegas, NV', - 1702369 => 'Las Vegas, NV', - 1702380 => 'Las Vegas, NV', - 1702382 => 'Las Vegas, NV', - 1702383 => 'Las Vegas, NV', - 1702384 => 'Las Vegas, NV', - 1702385 => 'Las Vegas, NV', - 1702386 => 'Las Vegas, NV', - 1702387 => 'Las Vegas, NV', - 1702388 => 'Las Vegas, NV', - 1702395 => 'Las Vegas, NV', - 1702396 => 'Las Vegas, NV', - 1702397 => 'Overton, NV', - 1702399 => 'North Las Vegas, NV', - 1702405 => 'Las Vegas, NV', - 1702407 => 'Las Vegas, NV', - 1702410 => 'Las Vegas, NV', - 1702413 => 'Las Vegas, NV', - 1702425 => 'Las Vegas, NV', - 1702431 => 'Las Vegas, NV', - 1702432 => 'Las Vegas, NV', - 1702433 => 'Las Vegas, NV', - 1702434 => 'Las Vegas, NV', - 1702435 => 'Las Vegas, NV', - 1702436 => 'Las Vegas, NV', - 1702437 => 'Las Vegas, NV', - 1702438 => 'Las Vegas, NV', - 1702444 => 'Las Vegas, NV', - 1702445 => 'Las Vegas, NV', - 1702448 => 'Las Vegas, NV', - 1702450 => 'Las Vegas, NV', - 1702451 => 'Las Vegas, NV', - 1702452 => 'Las Vegas, NV', - 1702453 => 'Las Vegas, NV', - 1702455 => 'Las Vegas, NV', - 1702456 => 'Las Vegas, NV', - 1702457 => 'Las Vegas, NV', - 1702458 => 'Las Vegas, NV', - 1702459 => 'Las Vegas, NV', - 1702460 => 'Las Vegas, NV', - 1702462 => 'Las Vegas, NV', - 1702463 => 'Las Vegas, NV', - 1702471 => 'Las Vegas, NV', - 1702472 => 'Las Vegas, NV', - 1702473 => 'Las Vegas, NV', - 1702474 => 'Las Vegas, NV', - 1702475 => 'Las Vegas, NV', - 1702476 => 'Las Vegas, NV', - 1702477 => 'Las Vegas, NV', - 1702478 => 'Las Vegas, NV', - 1702483 => 'Las Vegas, NV', - 1702485 => 'Las Vegas, NV', - 1702486 => 'Las Vegas, NV', - 1702487 => 'Las Vegas, NV', - 1702489 => 'Las Vegas, NV', - 1702515 => 'Las Vegas, NV', - 1702522 => 'Las Vegas, NV', - 1702525 => 'Las Vegas, NV', - 1702531 => 'Las Vegas, NV', - 1702538 => 'Las Vegas, NV', - 1702541 => 'Las Vegas, NV', - 1702547 => 'Las Vegas, NV', - 1702558 => 'Henderson, NV', - 1702562 => 'Las Vegas, NV', - 1702564 => 'Henderson, NV', - 1702565 => 'Henderson, NV', - 1702566 => 'Henderson, NV', - 1702567 => 'Henderson, NV', - 1702568 => 'Henderson, NV', - 1702570 => 'Las Vegas, NV', - 1702577 => 'Las Vegas, NV', - 1702579 => 'Las Vegas, NV', - 1702586 => 'Las Vegas, NV', - 1702597 => 'Las Vegas, NV', - 1702598 => 'Las Vegas, NV', - 1702629 => 'Las Vegas, NV', - 1702631 => 'Las Vegas, NV', - 1702632 => 'Las Vegas, NV', - 1702633 => 'North Las Vegas, NV', - 1702636 => 'Las Vegas, NV', - 1702637 => 'Las Vegas, NV', - 1702638 => 'Las Vegas, NV', - 1702639 => 'North Las Vegas, NV', - 1702641 => 'Las Vegas, NV', - 1702642 => 'North Las Vegas, NV', - 1702643 => 'Las Vegas, NV', - 1702644 => 'Las Vegas, NV', - 1702645 => 'Las Vegas, NV', - 1702646 => 'Las Vegas, NV', - 1702647 => 'Las Vegas, NV', - 1702648 => 'Las Vegas, NV', - 1702649 => 'North Las Vegas, NV', - 1702650 => 'Las Vegas, NV', - 1702651 => 'Las Vegas, NV', - 1702653 => 'Nellis AFB, NV', - 1702655 => 'Las Vegas, NV', - 1702656 => 'Las Vegas, NV', - 1702657 => 'North Las Vegas, NV', - 1702658 => 'Las Vegas, NV', - 1702671 => 'Las Vegas, NV', - 1702685 => 'Las Vegas, NV', - 1702693 => 'Las Vegas, NV', - 1702696 => 'Las Vegas, NV', - 1702697 => 'Las Vegas, NV', - 1702699 => 'Las Vegas, NV', - 1702722 => 'Las Vegas, NV', - 1702727 => 'Las Vegas, NV', - 1702731 => 'Las Vegas, NV', - 1702732 => 'Las Vegas, NV', - 1702733 => 'Las Vegas, NV', - 1702734 => 'Las Vegas, NV', - 1702735 => 'Las Vegas, NV', - 1702736 => 'Las Vegas, NV', - 1702737 => 'Las Vegas, NV', - 1702739 => 'Las Vegas, NV', - 1702740 => 'Las Vegas, NV', - 1702765 => 'Las Vegas, NV', - 1702768 => 'Las Vegas, NV', - 1702776 => 'Las Vegas, NV', - 1702778 => 'Las Vegas, NV', - 1702784 => 'Las Vegas, NV', - 1702791 => 'Las Vegas, NV', - 1702792 => 'Las Vegas, NV', - 1702794 => 'Las Vegas, NV', - 1702795 => 'Las Vegas, NV', - 1702796 => 'Las Vegas, NV', - 1702798 => 'Las Vegas, NV', - 1702799 => 'Las Vegas, NV', - 1702804 => 'Las Vegas, NV', - 1702818 => 'Las Vegas, NV', - 1702822 => 'Las Vegas, NV', - 1702823 => 'Las Vegas, NV', - 1702834 => 'Las Vegas, NV', - 1702835 => 'Las Vegas, NV', - 1702836 => 'Las Vegas, NV', - 1702837 => 'Las Vegas, NV', - 1702838 => 'Las Vegas, NV', - 1702839 => 'Las Vegas, NV', - 1702851 => 'Las Vegas, NV', - 1702853 => 'Las Vegas, NV', - 1702856 => 'Henderson, NV', - 1702862 => 'Las Vegas, NV', - 1702866 => 'Las Vegas, NV', - 1702868 => 'Las Vegas, NV', - 1702869 => 'Las Vegas, NV', - 1702870 => 'Las Vegas, NV', - 1702871 => 'Las Vegas, NV', - 1702873 => 'Las Vegas, NV', - 1702876 => 'Las Vegas, NV', - 1702877 => 'Las Vegas, NV', - 1702878 => 'Las Vegas, NV', - 1702880 => 'Las Vegas, NV', - 1702889 => 'Las Vegas, NV', - 1702891 => 'Las Vegas, NV', - 1702892 => 'Las Vegas, NV', - 1702893 => 'Las Vegas, NV', - 1702894 => 'Las Vegas, NV', - 1702895 => 'Las Vegas, NV', - 1702914 => 'Las Vegas, NV', - 1702932 => 'Las Vegas, NV', - 1702933 => 'Las Vegas, NV', - 1702938 => 'Las Vegas, NV', - 1702939 => 'Las Vegas, NV', - 1702940 => 'Las Vegas, NV', - 1702942 => 'Las Vegas, NV', - 1702944 => 'Las Vegas, NV', - 1702947 => 'Las Vegas, NV', - 1702948 => 'Las Vegas, NV', - 1702949 => 'Las Vegas, NV', - 1702951 => 'Las Vegas, NV', - 1702952 => 'Las Vegas, NV', - 1702966 => 'Las Vegas, NV', - 1702967 => 'Las Vegas, NV', - 1702968 => 'Las Vegas, NV', - 1702979 => 'Las Vegas, NV', - 1702982 => 'Las Vegas, NV', - 1702997 => 'Las Vegas, NV', - 1702998 => 'Las Vegas, NV', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1703.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1703.php deleted file mode 100644 index 0bde5e2e9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1703.php +++ /dev/null @@ -1,189 +0,0 @@ - 'Virginia', - 1703212 => 'Alexandria, VA', - 1703218 => 'Fairfax, VA', - 1703221 => 'Dumfries, VA', - 1703228 => 'Arlington, VA', - 1703237 => 'Falls Church, VA', - 1703241 => 'Falls Church, VA', - 1703242 => 'Vienna, VA', - 1703243 => 'Arlington, VA', - 1703246 => 'Fairfax, VA', - 1703248 => 'Arlington, VA', - 1703249 => 'Burke, VA', - 1703255 => 'Vienna, VA', - 1703257 => 'Manassas, VA', - 1703263 => 'Chantilly, VA', - 1703266 => 'Centreville, VA', - 1703271 => 'Arlington, VA', - 1703273 => 'Fairfax, VA', - 1703276 => 'Arlington, VA', - 1703277 => 'Fairfax, VA', - 1703278 => 'Fairfax, VA', - 1703281 => 'Vienna, VA', - 1703299 => 'Alexandria, VA', - 1703313 => 'Alexandria, VA', - 1703319 => 'Vienna, VA', - 1703321 => 'Springfield, VA', - 1703324 => 'Fairfax, VA', - 1703329 => 'Alexandria, VA', - 1703330 => 'Manassas, VA', - 1703331 => 'Manassas, VA', - 1703335 => 'Manassas, VA', - 1703339 => 'Lorton, VA', - 1703351 => 'Arlington, VA', - 1703352 => 'Fairfax, VA', - 1703356 => 'McLean, VA', - 1703359 => 'Fairfax, VA', - 1703360 => 'Alexandria, VA', - 1703361 => 'Manassas, VA', - 1703365 => 'Manassas, VA', - 1703366 => 'Manassas, VA', - 1703367 => 'Manassas, VA', - 1703368 => 'Manassas, VA', - 1703369 => 'Manassas, VA', - 1703370 => 'Alexandria, VA', - 1703378 => 'Chantilly, VA', - 1703383 => 'Fairfax, VA', - 1703385 => 'Fairfax, VA', - 1703390 => 'Reston, VA', - 1703392 => 'Manassas, VA', - 1703393 => 'Manassas, VA', - 1703396 => 'Manassas, VA', - 1703404 => 'Sterling, VA', - 1703406 => 'Sterling, VA', - 1703412 => 'Arlington, VA', - 1703413 => 'Arlington, VA', - 1703415 => 'Arlington, VA', - 1703416 => 'Arlington, VA', - 1703418 => 'Arlington, VA', - 1703421 => 'Sterling, VA', - 1703430 => 'Sterling, VA', - 1703433 => 'Sterling, VA', - 1703440 => 'Springfield, VA', - 1703441 => 'Dumfries, VA', - 1703443 => 'Leesburg, VA', - 1703444 => 'Sterling, VA', - 1703445 => 'Dumfries, VA', - 1703448 => 'McLean, VA', - 1703450 => 'Sterling, VA', - 1703451 => 'Springfield, VA', - 1703455 => 'Springfield, VA', - 1703461 => 'Alexandria, VA', - 1703465 => 'Arlington, VA', - 1703476 => 'Reston, VA', - 1703486 => 'Arlington, VA', - 1703490 => 'Woodbridge, VA', - 1703491 => 'Woodbridge, VA', - 1703492 => 'Woodbridge, VA', - 1703494 => 'Woodbridge, VA', - 1703497 => 'Woodbridge, VA', - 1703499 => 'Woodbridge, VA', - 1703504 => 'Alexandria, VA', - 1703518 => 'Alexandria, VA', - 1703519 => 'Alexandria, VA', - 1703521 => 'Arlington, VA', - 1703522 => 'Arlington, VA', - 1703524 => 'Arlington, VA', - 1703525 => 'Arlington, VA', - 1703527 => 'Arlington, VA', - 1703528 => 'Arlington, VA', - 1703530 => 'Manassas, VA', - 1703531 => 'Falls Church, VA', - 1703532 => 'Falls Church, VA', - 1703533 => 'Falls Church, VA', - 1703534 => 'Falls Church, VA', - 1703535 => 'Alexandria, VA', - 1703536 => 'Falls Church, VA', - 1703538 => 'Falls Church, VA', - 1703543 => 'Centreville, VA', - 1703548 => 'Alexandria, VA', - 1703549 => 'Alexandria, VA', - 1703550 => 'Lorton, VA', - 1703553 => 'Arlington, VA', - 1703558 => 'Arlington, VA', - 1703569 => 'Springfield, VA', - 1703580 => 'Woodbridge, VA', - 1703583 => 'Woodbridge, VA', - 1703590 => 'Woodbridge, VA', - 1703591 => 'Fairfax, VA', - 1703594 => 'Nokesville, VA', - 1703644 => 'Springfield, VA', - 1703647 => 'Alexandria, VA', - 1703660 => 'Alexandria, VA', - 1703661 => 'Sterling, VA', - 1703664 => 'Alexandria, VA', - 1703669 => 'Leesburg, VA', - 1703670 => 'Woodbridge, VA', - 1703680 => 'Woodbridge, VA', - 1703683 => 'Alexandria, VA', - 1703684 => 'Alexandria, VA', - 1703691 => 'Fairfax, VA', - 1703709 => 'Reston, VA', - 1703719 => 'Alexandria, VA', - 1703723 => 'Ashburn, VA', - 1703726 => 'Ashburn, VA', - 1703729 => 'Ashburn, VA', - 1703730 => 'Woodbridge, VA', - 1703734 => 'McLean, VA', - 1703737 => 'Leesburg, VA', - 1703739 => 'Alexandria, VA', - 1703746 => 'Alexandria, VA', - 1703749 => 'McLean, VA', - 1703751 => 'Alexandria, VA', - 1703757 => 'Great Falls, VA', - 1703759 => 'Great Falls, VA', - 1703765 => 'Alexandria, VA', - 1703768 => 'Alexandria, VA', - 1703771 => 'Leesburg, VA', - 1703776 => 'Falls Church, VA', - 1703777 => 'Leesburg, VA', - 1703779 => 'Leesburg, VA', - 1703780 => 'Alexandria, VA', - 1703784 => 'Quantico, VA', - 1703790 => 'McLean, VA', - 1703791 => 'Manassas, VA', - 1703792 => 'Manassas, VA', - 1703793 => 'Herndon, VA', - 1703794 => 'Manassas, VA', - 1703799 => 'Alexandria, VA', - 1703805 => 'Fort Belvoir, VA', - 1703807 => 'Arlington, VA', - 1703815 => 'Centreville, VA', - 1703817 => 'Chantilly, VA', - 1703821 => 'McLean, VA', - 1703823 => 'Alexandria, VA', - 1703830 => 'Centreville, VA', - 1703836 => 'Alexandria, VA', - 1703837 => 'Alexandria, VA', - 1703838 => 'Alexandria, VA', - 1703841 => 'Arlington, VA', - 1703860 => 'Reston, VA', - 1703865 => 'Fairfax, VA', - 1703866 => 'Springfield, VA', - 1703875 => 'Arlington, VA', - 1703878 => 'Woodbridge, VA', - 1703892 => 'Arlington, VA', - 1703893 => 'McLean, VA', - 1703897 => 'Woodbridge, VA', - 1703910 => 'Woodbridge, VA', - 1703912 => 'Springfield, VA', - 1703913 => 'Springfield, VA', - 1703920 => 'Arlington, VA', - 1703921 => 'Alexandria, VA', - 1703922 => 'Springfield, VA', - 1703934 => 'Fairfax, VA', - 1703938 => 'Vienna, VA', - 1703960 => 'Alexandria, VA', - 1703961 => 'Chantilly, VA', - 1703971 => 'Alexandria, VA', - 1703979 => 'Arlington, VA', - 1703993 => 'Fairfax, VA', - 1703996 => 'Sterling, VA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1704.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1704.php deleted file mode 100644 index bb82892c2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1704.php +++ /dev/null @@ -1,242 +0,0 @@ - 'North Carolina', - 1704216 => 'Salisbury, NC', - 1704225 => 'Monroe, NC', - 1704226 => 'Monroe, NC', - 1704233 => 'Wingate, NC', - 1704238 => 'Monroe, NC', - 1704243 => 'Waxhaw, NC', - 1704262 => 'Concord, NC', - 1704263 => 'Stanley, NC', - 1704276 => 'Vale, NC', - 1704278 => 'Cleveland, NC', - 1704282 => 'Monroe, NC', - 1704283 => 'Monroe, NC', - 1704289 => 'Monroe, NC', - 1704291 => 'Monroe, NC', - 1704292 => 'Monroe, NC', - 1704295 => 'Charlotte, NC', - 1704296 => 'Monroe, NC', - 1704304 => 'Charlotte, NC', - 1704315 => 'Charlotte, NC', - 1704323 => 'Charlotte, NC', - 1704331 => 'Charlotte, NC', - 1704332 => 'Charlotte, NC', - 1704333 => 'Charlotte, NC', - 1704334 => 'Charlotte, NC', - 1704335 => 'Charlotte, NC', - 1704336 => 'Charlotte, NC', - 1704338 => 'Charlotte, NC', - 1704339 => 'Charlotte, NC', - 1704341 => 'Charlotte, NC', - 1704342 => 'Charlotte, NC', - 1704343 => 'Charlotte, NC', - 1704344 => 'Charlotte, NC', - 1704347 => 'Charlotte, NC', - 1704348 => 'Charlotte, NC', - 1704355 => 'Charlotte, NC', - 1704357 => 'Charlotte, NC', - 1704358 => 'Charlotte, NC', - 1704359 => 'Charlotte, NC', - 1704362 => 'Charlotte, NC', - 1704364 => 'Charlotte, NC', - 1704365 => 'Charlotte, NC', - 1704366 => 'Charlotte, NC', - 1704367 => 'Charlotte, NC', - 1704369 => 'Charlotte, NC', - 1704370 => 'Charlotte, NC', - 1704372 => 'Charlotte, NC', - 1704373 => 'Charlotte, NC', - 1704374 => 'Charlotte, NC', - 1704375 => 'Charlotte, NC', - 1704376 => 'Charlotte, NC', - 1704377 => 'Charlotte, NC', - 1704379 => 'Charlotte, NC', - 1704381 => 'Charlotte, NC', - 1704384 => 'Charlotte, NC', - 1704391 => 'Charlotte, NC', - 1704392 => 'Charlotte, NC', - 1704393 => 'Charlotte, NC', - 1704394 => 'Charlotte, NC', - 1704395 => 'Charlotte, NC', - 1704398 => 'Charlotte, NC', - 1704399 => 'Charlotte, NC', - 1704403 => 'Concord, NC', - 1704405 => 'Charlotte, NC', - 1704432 => 'Charlotte, NC', - 1704434 => 'Shelby, NC', - 1704435 => 'Cherryville, NC', - 1704436 => 'Mount Pleasant, NC', - 1704442 => 'Charlotte, NC', - 1704444 => 'Charlotte, NC', - 1704446 => 'Charlotte, NC', - 1704454 => 'Harrisburg, NC', - 1704455 => 'Harrisburg, NC', - 1704474 => 'Norwood, NC', - 1704480 => 'Shelby, NC', - 1704481 => 'Shelby, NC', - 1704482 => 'Shelby, NC', - 1704483 => 'Denver, NC', - 1704484 => 'Shelby, NC', - 1704485 => 'Oakboro, NC', - 1704487 => 'Shelby, NC', - 1704489 => 'Denver, NC', - 1704494 => 'Charlotte, NC', - 1704503 => 'Charlotte, NC', - 1704504 => 'Charlotte, NC', - 1704509 => 'Charlotte, NC', - 1704510 => 'Charlotte, NC', - 1704512 => 'Charlotte, NC', - 1704521 => 'Charlotte, NC', - 1704522 => 'Charlotte, NC', - 1704523 => 'Charlotte, NC', - 1704525 => 'Charlotte, NC', - 1704527 => 'Charlotte, NC', - 1704528 => 'Troutman, NC', - 1704529 => 'Charlotte, NC', - 1704531 => 'Charlotte, NC', - 1704532 => 'Charlotte, NC', - 1704535 => 'Charlotte, NC', - 1704536 => 'Charlotte, NC', - 1704537 => 'Charlotte, NC', - 1704538 => 'Lawndale, NC', - 1704540 => 'Charlotte, NC', - 1704541 => 'Charlotte, NC', - 1704542 => 'Charlotte, NC', - 1704543 => 'Charlotte, NC', - 1704544 => 'Charlotte, NC', - 1704545 => 'Mint Hill, NC', - 1704546 => 'Harmony, NC', - 1704547 => 'Charlotte, NC', - 1704548 => 'Charlotte, NC', - 1704549 => 'Charlotte, NC', - 1704552 => 'Charlotte, NC', - 1704553 => 'Charlotte, NC', - 1704554 => 'Charlotte, NC', - 1704556 => 'Charlotte, NC', - 1704557 => 'Charlotte, NC', - 1704563 => 'Charlotte, NC', - 1704566 => 'Charlotte, NC', - 1704567 => 'Charlotte, NC', - 1704568 => 'Charlotte, NC', - 1704569 => 'Charlotte, NC', - 1704573 => 'Mint Hill, NC', - 1704583 => 'Charlotte, NC', - 1704585 => 'Stony Point, NC', - 1704587 => 'Charlotte, NC', - 1704588 => 'Charlotte, NC', - 1704596 => 'Charlotte, NC', - 1704597 => 'Charlotte, NC', - 1704598 => 'Charlotte, NC', - 1704599 => 'Charlotte, NC', - 1704624 => 'Marshville, NC', - 1704625 => 'Charlotte, NC', - 1704629 => 'Bessemer City, NC', - 1704630 => 'Salisbury, NC', - 1704633 => 'Salisbury, NC', - 1704635 => 'Monroe, NC', - 1704636 => 'Salisbury, NC', - 1704637 => 'Salisbury, NC', - 1704638 => 'Salisbury, NC', - 1704639 => 'Salisbury, NC', - 1704643 => 'Charlotte, NC', - 1704658 => 'Mooresville, NC', - 1704660 => 'Mooresville, NC', - 1704662 => 'Mooresville, NC', - 1704663 => 'Mooresville, NC', - 1704664 => 'Mooresville, NC', - 1704667 => 'Charlotte, NC', - 1704671 => 'Gastonia, NC', - 1704684 => 'Indian Trail, NC', - 1704688 => 'Charlotte, NC', - 1704694 => 'Wadesboro, NC', - 1704695 => 'Wadesboro, NC', - 1704714 => 'Charlotte, NC', - 1704716 => 'Charlotte, NC', - 1704717 => 'Charlotte, NC', - 1704720 => 'Concord, NC', - 1704721 => 'Concord, NC', - 1704732 => 'Lincolnton, NC', - 1704734 => 'Kings Mountain, NC', - 1704735 => 'Lincolnton, NC', - 1704736 => 'Lincolnton, NC', - 1704739 => 'Kings Mountain, NC', - 1704748 => 'Lincolnton, NC', - 1704749 => 'Charlotte, NC', - 1704752 => 'Charlotte, NC', - 1704753 => 'Monroe, NC', - 1704759 => 'Charlotte, NC', - 1704764 => 'Monroe, NC', - 1704776 => 'Monroe, NC', - 1704782 => 'Concord, NC', - 1704783 => 'Concord, NC', - 1704784 => 'Concord, NC', - 1704785 => 'Concord, NC', - 1704786 => 'Concord, NC', - 1704788 => 'Concord, NC', - 1704792 => 'Concord, NC', - 1704793 => 'Concord, NC', - 1704795 => 'Concord, NC', - 1704799 => 'Mooresville, NC', - 1704814 => 'Matthews, NC', - 1704820 => 'Mount Holly, NC', - 1704823 => 'Gastonia, NC', - 1704824 => 'Gastonia, NC', - 1704825 => 'Belmont, NC', - 1704827 => 'Mount Holly, NC', - 1704829 => 'Belmont, NC', - 1704834 => 'Gastonia, NC', - 1704838 => 'Statesville, NC', - 1704843 => 'Waxhaw, NC', - 1704847 => 'Matthews, NC', - 1704852 => 'Gastonia, NC', - 1704853 => 'Gastonia, NC', - 1704854 => 'Gastonia, NC', - 1704855 => 'China Grove, NC', - 1704857 => 'China Grove, NC', - 1704861 => 'Gastonia, NC', - 1704863 => 'Charlotte, NC', - 1704864 => 'Gastonia, NC', - 1704865 => 'Gastonia, NC', - 1704866 => 'Gastonia, NC', - 1704867 => 'Gastonia, NC', - 1704868 => 'Gastonia, NC', - 1704869 => 'Gastonia, NC', - 1704871 => 'Statesville, NC', - 1704872 => 'Statesville, NC', - 1704873 => 'Statesville, NC', - 1704875 => 'Huntersville, NC', - 1704876 => 'Statesville, NC', - 1704878 => 'Statesville, NC', - 1704882 => 'Indian Trail, NC', - 1704883 => 'Statesville, NC', - 1704887 => 'Charlotte, NC', - 1704889 => 'Pineville, NC', - 1704910 => 'Charlotte, NC', - 1704920 => 'Concord, NC', - 1704921 => 'Charlotte, NC', - 1704922 => 'Dallas, NC', - 1704924 => 'Statesville, NC', - 1704927 => 'Charlotte, NC', - 1704932 => 'Kannapolis, NC', - 1704933 => 'Kannapolis, NC', - 1704938 => 'Kannapolis, NC', - 1704940 => 'Charlotte, NC', - 1704944 => 'Charlotte, NC', - 1704947 => 'Huntersville, NC', - 1704948 => 'Huntersville, NC', - 1704971 => 'Charlotte, NC', - 1704979 => 'Concord, NC', - 1704982 => 'Albemarle, NC', - 1704983 => 'Albemarle, NC', - 1704984 => 'Albemarle, NC', - 1704986 => 'Albemarle, NC', - 1704988 => 'Charlotte, NC', - 1704992 => 'Huntersville, NC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1705.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1705.php deleted file mode 100644 index 1fa0fb183..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1705.php +++ /dev/null @@ -1,168 +0,0 @@ - 'Ontario', - 1705222 => 'Greater Sudbury, ON', - 1705232 => 'Iroquois Falls, ON', - 1705235 => 'South Porcupine, ON', - 1705252 => 'Barrie, ON', - 1705253 => 'Sault Ste. Marie, ON', - 1705254 => 'Sault Ste. Marie, ON', - 1705256 => 'Sault Ste. Marie, ON', - 1705264 => 'Timmins, ON', - 1705267 => 'Timmins, ON', - 1705268 => 'Timmins, ON', - 1705272 => 'Cochrane, ON', - 1705277 => 'Bethany, ON', - 1705282 => 'Gore Bay, ON', - 1705286 => 'Minden, ON', - 1705295 => 'Keene, ON', - 1705322 => 'Elmvale, ON', - 1705323 => 'Orillia, ON', - 1705324 => 'Lindsay, ON', - 1705325 => 'Orillia, ON', - 1705326 => 'Orillia, ON', - 1705327 => 'Orillia, ON', - 1705328 => 'Lindsay, ON', - 1705329 => 'Orillia, ON', - 1705335 => 'Kapuskasing, ON', - 1705337 => 'Kapuskasing, ON', - 1705356 => 'Blind River, ON', - 1705357 => 'Sunderland, ON', - 1705360 => 'Timmins, ON', - 1705362 => 'Hearst, ON', - 1705368 => 'Little Current, ON', - 1705375 => 'MacTier, ON', - 1705377 => 'Mindemoya, ON', - 1705382 => 'Burk\'s Falls, ON', - 1705384 => 'Sundridge, ON', - 1705385 => 'Port Sydney, ON', - 1705386 => 'South River, ON', - 1705422 => 'Wasaga Beach, ON', - 1705426 => 'Beaverton, ON', - 1705428 => 'Stayner, ON', - 1705429 => 'Wasaga Beach, ON', - 1705434 => 'Alliston, ON', - 1705435 => 'Alliston, ON', - 1705437 => 'Pefferlaw, ON', - 1705443 => 'Collingwood, ON', - 1705444 => 'Collingwood, ON', - 1705445 => 'Collingwood, ON', - 1705446 => 'Collingwood, ON', - 1705454 => 'Coboconk, ON', - 1705456 => 'Lefroy, ON', - 1705457 => 'Haliburton, ON', - 1705458 => 'Cookstown, ON', - 1705466 => 'Creemore, ON', - 1705472 => 'North Bay, ON', - 1705474 => 'North Bay, ON', - 1705475 => 'North Bay, ON', - 1705476 => 'North Bay, ON', - 1705484 => 'Brechin, ON', - 1705487 => 'Oro, ON', - 1705494 => 'North Bay, ON', - 1705495 => 'North Bay, ON', - 1705497 => 'North Bay, ON', - 1705503 => 'Barrie, ON', - 1705521 => 'Greater Sudbury, ON', - 1705522 => 'Greater Sudbury, ON', - 1705523 => 'Greater Sudbury, ON', - 1705524 => 'Greater Sudbury, ON', - 1705525 => 'Greater Sudbury, ON', - 1705526 => 'Midland, ON', - 1705527 => 'Midland, ON', - 1705528 => 'Midland, ON', - 1705534 => 'Port McNicoll, ON', - 1705538 => 'Waubaushene, ON', - 1705544 => 'Englehart, ON', - 1705549 => 'Penetanguishene, ON', - 1705560 => 'Greater Sudbury, ON', - 1705563 => 'Earlton, ON', - 1705566 => 'Greater Sudbury, ON', - 1705567 => 'Kirkland Lake, ON', - 1705575 => 'Sault Ste. Marie, ON', - 1705586 => 'Greater Sudbury, ON', - 1705635 => 'Dwight, ON', - 1705639 => 'Norwood, ON', - 1705645 => 'Bracebridge, ON', - 1705646 => 'Bracebridge, ON', - 1705647 => 'New Liskeard, ON', - 1705652 => 'Lakefield, ON', - 1705653 => 'Campbellford, ON', - 1705656 => 'Apsley, ON', - 1705657 => 'Buckhorn, ON', - 1705670 => 'Greater Sudbury, ON', - 1705671 => 'Greater Sudbury, ON', - 1705672 => 'Haileybury, ON', - 1705673 => 'Greater Sudbury, ON', - 1705674 => 'Greater Sudbury, ON', - 1705675 => 'Greater Sudbury, ON', - 1705686 => 'Coldwater, ON', - 1705687 => 'Gravenhurst, ON', - 1705688 => 'Greater Sudbury, ON', - 1705689 => 'Severn Bridge, ON', - 1705692 => 'Lively, ON', - 1705693 => 'Garson, ON', - 1705696 => 'Hastings, ON', - 1705719 => 'Barrie, ON', - 1705720 => 'Barrie, ON', - 1705721 => 'Barrie, ON', - 1705722 => 'Barrie, ON', - 1705724 => 'Powassan, ON', - 1705725 => 'Barrie, ON', - 1705726 => 'Barrie, ON', - 1705727 => 'Barrie, ON', - 1705728 => 'Barrie, ON', - 1705730 => 'Barrie, ON', - 1705733 => 'Barrie, ON', - 1705734 => 'Barrie, ON', - 1705735 => 'Barrie, ON', - 1705737 => 'Barrie, ON', - 1705738 => 'Bobcaygeon, ON', - 1705739 => 'Barrie, ON', - 1705740 => 'Peterborough, ON', - 1705741 => 'Peterborough, ON', - 1705742 => 'Peterborough, ON', - 1705743 => 'Peterborough, ON', - 1705744 => 'Mattawa, ON', - 1705745 => 'Peterborough, ON', - 1705746 => 'Parry Sound, ON', - 1705748 => 'Peterborough, ON', - 1705749 => 'Peterborough, ON', - 1705750 => 'Peterborough, ON', - 1705752 => 'Callander, ON', - 1705753 => 'West Nipissing, ON', - 1705759 => 'Sault Ste. Marie, ON', - 1705762 => 'Bala, ON', - 1705765 => 'Port Carling, ON', - 1705778 => 'Havelock, ON', - 1705787 => 'Huntsville, ON', - 1705788 => 'Huntsville, ON', - 1705789 => 'Huntsville, ON', - 1705792 => 'Barrie, ON', - 1705797 => 'Barrie, ON', - 1705799 => 'Omemee, ON', - 1705812 => 'Barrie, ON', - 1705840 => 'North Bay, ON', - 1705848 => 'Elliot Lake, ON', - 1705855 => 'Chelmsford, ON', - 1705856 => 'Wawa, ON', - 1705859 => 'Manitowaning, ON', - 1705864 => 'Chapleau, ON', - 1705869 => 'Espanola, ON', - 1705874 => 'Peterborough, ON', - 1705876 => 'Peterborough, ON', - 1705878 => 'Lindsay, ON', - 1705887 => 'Fenelon Falls, ON', - 1705897 => 'Val Caron, ON', - 1705932 => 'Millbrook, ON', - 1705942 => 'Sault Ste. Marie, ON', - 1705945 => 'Sault Ste. Marie, ON', - 1705946 => 'Sault Ste. Marie, ON', - 1705949 => 'Sault Ste. Marie, ON', - 1705969 => 'Hanmer, ON', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1706.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1706.php deleted file mode 100644 index 8d000a83a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1706.php +++ /dev/null @@ -1,217 +0,0 @@ - 'Georgia', - 1706208 => 'Athens, GA', - 1706212 => 'Clayton, GA', - 1706213 => 'Elberton, GA', - 1706216 => 'Dawsonville, GA', - 1706217 => 'Dalton, GA', - 1706219 => 'Cleveland, GA', - 1706221 => 'Columbus, GA', - 1706226 => 'Dalton, GA', - 1706227 => 'Athens, GA', - 1706232 => 'Rome, GA', - 1706233 => 'Rome, GA', - 1706234 => 'Rome, GA', - 1706235 => 'Rome, GA', - 1706236 => 'Rome, GA', - 1706245 => 'Royston, GA', - 1706253 => 'Jasper, GA', - 1706256 => 'Columbus, GA', - 1706258 => 'Blue Ridge, GA', - 1706259 => 'Dalton, GA', - 1706265 => 'Dawsonville, GA', - 1706270 => 'Dalton, GA', - 1706272 => 'Dalton, GA', - 1706273 => 'Ellijay, GA', - 1706275 => 'Dalton, GA', - 1706276 => 'Ellijay, GA', - 1706277 => 'Dalton, GA', - 1706278 => 'Dalton, GA', - 1706279 => 'Dalton, GA', - 1706282 => 'Toccoa, GA', - 1706283 => 'Elberton, GA', - 1706290 => 'Rome, GA', - 1706291 => 'Rome, GA', - 1706295 => 'Rome, GA', - 1706310 => 'Watkinsville, GA', - 1706317 => 'Columbus, GA', - 1706320 => 'Columbus, GA', - 1706321 => 'Columbus, GA', - 1706322 => 'Columbus, GA', - 1706323 => 'Columbus, GA', - 1706324 => 'Columbus, GA', - 1706327 => 'Columbus, GA', - 1706335 => 'Commerce, GA', - 1706336 => 'Commerce, GA', - 1706337 => 'Fairmount, GA', - 1706342 => 'Madison, GA', - 1706343 => 'Madison, GA', - 1706344 => 'Dawsonville, GA', - 1706348 => 'Cleveland, GA', - 1706353 => 'Athens, GA', - 1706354 => 'Athens, GA', - 1706356 => 'Lavonia, GA', - 1706359 => 'Lincolnton, GA', - 1706364 => 'Augusta, GA', - 1706367 => 'Jefferson, GA', - 1706369 => 'Athens, GA', - 1706374 => 'Morganton, GA', - 1706375 => 'Chickamauga, GA', - 1706376 => 'Hartwell, GA', - 1706377 => 'Hartwell, GA', - 1706378 => 'Rome, GA', - 1706379 => 'Young Harris, GA', - 1706383 => 'Calhoun, GA', - 1706384 => 'Carnesville, GA', - 1706387 => 'Jefferson, GA', - 1706389 => 'Athens, GA', - 1706425 => 'Athens, GA', - 1706432 => 'Augusta, GA', - 1706437 => 'Waynesboro, GA', - 1706444 => 'Sparta, GA', - 1706453 => 'Greensboro, GA', - 1706454 => 'Greensboro, GA', - 1706465 => 'Warrenton, GA', - 1706467 => 'Greensboro, GA', - 1706468 => 'Monticello, GA', - 1706475 => 'Athens, GA', - 1706481 => 'Augusta, GA', - 1706484 => 'Eatonton, GA', - 1706485 => 'Eatonton, GA', - 1706492 => 'McCaysville, GA', - 1706494 => 'Columbus, GA', - 1706496 => 'Augusta, GA', - 1706504 => 'Augusta, GA', - 1706507 => 'Columbus, GA', - 1706509 => 'Rome, GA', - 1706517 => 'Chatsworth, GA', - 1706529 => 'Dalton, GA', - 1706541 => 'Appling, GA', - 1706542 => 'Athens, GA', - 1706543 => 'Athens, GA', - 1706544 => 'Fort Benning, GA', - 1706546 => 'Athens, GA', - 1706547 => 'Wrens, GA', - 1706548 => 'Athens, GA', - 1706549 => 'Athens, GA', - 1706552 => 'Athens, GA', - 1706554 => 'Waynesboro, GA', - 1706556 => 'Harlem, GA', - 1706560 => 'Augusta, GA', - 1706561 => 'Columbus, GA', - 1706562 => 'Columbus, GA', - 1706563 => 'Columbus, GA', - 1706565 => 'Columbus, GA', - 1706568 => 'Columbus, GA', - 1706569 => 'Columbus, GA', - 1706571 => 'Columbus, GA', - 1706576 => 'Columbus, GA', - 1706592 => 'Hephzibah, GA', - 1706595 => 'Thomson, GA', - 1706596 => 'Columbus, GA', - 1706597 => 'Thomson, GA', - 1706602 => 'Calhoun, GA', - 1706613 => 'Athens, GA', - 1706624 => 'Calhoun, GA', - 1706625 => 'Calhoun, GA', - 1706628 => 'Hamilton, GA', - 1706629 => 'Calhoun, GA', - 1706632 => 'Blue Ridge, GA', - 1706635 => 'Ellijay, GA', - 1706636 => 'Ellijay, GA', - 1706637 => 'Hogansville, GA', - 1706638 => 'LaFayette, GA', - 1706639 => 'LaFayette, GA', - 1706645 => 'West Point, GA', - 1706646 => 'Thomaston, GA', - 1706647 => 'Thomaston, GA', - 1706648 => 'Thomaston, GA', - 1706649 => 'Columbus, GA', - 1706651 => 'Augusta, GA', - 1706653 => 'Columbus, GA', - 1706655 => 'Warm Springs, GA', - 1706657 => 'Trenton, GA', - 1706660 => 'Columbus, GA', - 1706663 => 'Pine Mountain, GA', - 1706667 => 'Augusta, GA', - 1706672 => 'Greenville, GA', - 1706673 => 'Tunnel Hill, GA', - 1706675 => 'Franklin, GA', - 1706677 => 'Homer, GA', - 1706678 => 'Washington, GA', - 1706682 => 'Columbus, GA', - 1706685 => 'Columbus, GA', - 1706687 => 'Columbus, GA', - 1706689 => 'Columbus, GA', - 1706692 => 'Jasper, GA', - 1706693 => 'Pendergrass, GA', - 1706694 => 'Cohutta, GA', - 1706695 => 'Chatsworth, GA', - 1706698 => 'Ellijay, GA', - 1706721 => 'Augusta, GA', - 1706722 => 'Augusta, GA', - 1706724 => 'Augusta, GA', - 1706731 => 'Augusta, GA', - 1706733 => 'Augusta, GA', - 1706734 => 'Trion, GA', - 1706736 => 'Augusta, GA', - 1706737 => 'Augusta, GA', - 1706738 => 'Augusta, GA', - 1706742 => 'Winterville, GA', - 1706745 => 'Blairsville, GA', - 1706754 => 'Clarkesville, GA', - 1706769 => 'Watkinsville, GA', - 1706771 => 'Augusta, GA', - 1706774 => 'Augusta, GA', - 1706776 => 'Cornelia, GA', - 1706778 => 'Cornelia, GA', - 1706779 => 'Eastanollee, GA', - 1706781 => 'Blairsville, GA', - 1706782 => 'Clayton, GA', - 1706783 => 'Comer, GA', - 1706787 => 'Augusta, GA', - 1706790 => 'Augusta, GA', - 1706793 => 'Augusta, GA', - 1706795 => 'Danielsville, GA', - 1706796 => 'Augusta, GA', - 1706798 => 'Augusta, GA', - 1706802 => 'Rome, GA', - 1706812 => 'LaGrange, GA', - 1706814 => 'Augusta, GA', - 1706821 => 'Augusta, GA', - 1706823 => 'Augusta, GA', - 1706828 => 'Augusta, GA', - 1706835 => 'Blairsville, GA', - 1706839 => 'Clarkesville, GA', - 1706845 => 'LaGrange, GA', - 1706846 => 'Manchester, GA', - 1706850 => 'Athens, GA', - 1706855 => 'Augusta, GA', - 1706857 => 'Summerville, GA', - 1706858 => 'Fort Oglethorpe, GA', - 1706860 => 'Augusta, GA', - 1706863 => 'Augusta, GA', - 1706864 => 'Dahlonega, GA', - 1706865 => 'Cleveland, GA', - 1706867 => 'Dahlonega, GA', - 1706878 => 'Helen, GA', - 1706882 => 'LaGrange, GA', - 1706883 => 'LaGrange, GA', - 1706884 => 'LaGrange, GA', - 1706885 => 'LaGrange, GA', - 1706886 => 'Toccoa, GA', - 1706896 => 'Hiawassee, GA', - 1706922 => 'Augusta, GA', - 1706935 => 'Ringgold, GA', - 1706937 => 'Ringgold, GA', - 1706945 => 'Augusta, GA', - 1706946 => 'Blue Ridge, GA', - 1706955 => 'Augusta, GA', - 1706965 => 'Ringgold, GA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1707.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1707.php deleted file mode 100644 index 3d4fedf32..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1707.php +++ /dev/null @@ -1,190 +0,0 @@ - 'California', - 1707224 => 'Napa, CA', - 1707226 => 'Napa, CA', - 1707251 => 'Napa, CA', - 1707252 => 'Napa, CA', - 1707253 => 'Napa, CA', - 1707254 => 'Napa, CA', - 1707255 => 'Napa, CA', - 1707256 => 'Napa, CA', - 1707257 => 'Napa, CA', - 1707258 => 'Napa, CA', - 1707259 => 'Napa, CA', - 1707262 => 'Lakeport, CA', - 1707263 => 'Lakeport, CA', - 1707265 => 'Napa, CA', - 1707268 => 'Eureka, CA', - 1707269 => 'Eureka, CA', - 1707275 => 'Upper Lake, CA', - 1707279 => 'Kelseyville, CA', - 1707284 => 'Santa Rosa, CA', - 1707303 => 'Santa Rosa, CA', - 1707374 => 'Rio Vista, CA', - 1707393 => 'Santa Rosa, CA', - 1707399 => 'Fairfield, CA', - 1707421 => 'Fairfield, CA', - 1707422 => 'Fairfield, CA', - 1707423 => 'Travis Air Force Base, Fairfield, CA', - 1707425 => 'Fairfield, CA', - 1707426 => 'Fairfield, CA', - 1707427 => 'Fairfield, CA', - 1707428 => 'Fairfield, CA', - 1707429 => 'Fairfield, CA', - 1707431 => 'Healdsburg, CA', - 1707433 => 'Healdsburg, CA', - 1707434 => 'Fairfield, CA', - 1707437 => 'Fairfield, CA', - 1707441 => 'Eureka, CA', - 1707442 => 'Eureka, CA', - 1707443 => 'Eureka, CA', - 1707444 => 'Eureka, CA', - 1707445 => 'Eureka, CA', - 1707446 => 'Vacaville, CA', - 1707447 => 'Vacaville, CA', - 1707448 => 'Vacaville, CA', - 1707449 => 'Vacaville, CA', - 1707451 => 'Vacaville, CA', - 1707452 => 'Vacaville, CA', - 1707453 => 'Vacaville, CA', - 1707455 => 'Vacaville, CA', - 1707456 => 'Willits, CA', - 1707459 => 'Willits, CA', - 1707462 => 'Ukiah, CA', - 1707463 => 'Ukiah, CA', - 1707464 => 'Crescent City, CA', - 1707465 => 'Crescent City, CA', - 1707467 => 'Ukiah, CA', - 1707468 => 'Ukiah, CA', - 1707469 => 'Vacaville, CA', - 1707473 => 'Healdsburg, CA', - 1707476 => 'Eureka, CA', - 1707485 => 'Redwood Valley, CA', - 1707521 => 'Santa Rosa, CA', - 1707522 => 'Santa Rosa, CA', - 1707523 => 'Santa Rosa, CA', - 1707524 => 'Santa Rosa, CA', - 1707525 => 'Santa Rosa, CA', - 1707526 => 'Santa Rosa, CA', - 1707527 => 'Santa Rosa, CA', - 1707528 => 'Santa Rosa, CA', - 1707537 => 'Santa Rosa, CA', - 1707538 => 'Santa Rosa, CA', - 1707539 => 'Santa Rosa, CA', - 1707541 => 'Santa Rosa, CA', - 1707542 => 'Santa Rosa, CA', - 1707543 => 'Santa Rosa, CA', - 1707544 => 'Santa Rosa, CA', - 1707545 => 'Santa Rosa, CA', - 1707546 => 'Santa Rosa, CA', - 1707547 => 'Santa Rosa, CA', - 1707552 => 'Vallejo, CA', - 1707553 => 'Vallejo, CA', - 1707554 => 'Vallejo, CA', - 1707556 => 'Vallejo, CA', - 1707557 => 'Vallejo, CA', - 1707558 => 'Vallejo, CA', - 1707565 => 'Santa Rosa, CA', - 1707566 => 'Santa Rosa, CA', - 1707568 => 'Santa Rosa, CA', - 1707569 => 'Santa Rosa, CA', - 1707570 => 'Santa Rosa, CA', - 1707571 => 'Santa Rosa, CA', - 1707573 => 'Santa Rosa, CA', - 1707575 => 'Santa Rosa, CA', - 1707576 => 'Santa Rosa, CA', - 1707577 => 'Santa Rosa, CA', - 1707578 => 'Santa Rosa, CA', - 1707579 => 'Santa Rosa, CA', - 1707584 => 'Rohnert Park, CA', - 1707585 => 'Rohnert Park, CA', - 1707586 => 'Rohnert Park, CA', - 1707588 => 'Rohnert Park, CA', - 1707591 => 'Santa Rosa, CA', - 1707595 => 'Santa Rosa, CA', - 1707624 => 'Vacaville, CA', - 1707642 => 'Vallejo, CA', - 1707643 => 'Vallejo, CA', - 1707644 => 'Vallejo, CA', - 1707645 => 'Vallejo, CA', - 1707646 => 'Fairfield, CA', - 1707647 => 'Vallejo, CA', - 1707648 => 'Vallejo, CA', - 1707649 => 'Vallejo, CA', - 1707651 => 'Vallejo, CA', - 1707677 => 'Trinidad, CA', - 1707678 => 'Dixon, CA', - 1707693 => 'Dixon, CA', - 1707725 => 'Fortuna, CA', - 1707745 => 'Benicia, CA', - 1707746 => 'Benicia, CA', - 1707747 => 'Benicia, CA', - 1707748 => 'Benicia, CA', - 1707751 => 'Benicia, CA', - 1707762 => 'Petaluma, CA', - 1707763 => 'Petaluma, CA', - 1707764 => 'Rio Dell, CA', - 1707765 => 'Petaluma, CA', - 1707766 => 'Petaluma, CA', - 1707769 => 'Petaluma, CA', - 1707773 => 'Petaluma, CA', - 1707775 => 'Petaluma, CA', - 1707778 => 'Petaluma, CA', - 1707781 => 'Petaluma, CA', - 1707782 => 'Petaluma, CA', - 1707784 => 'Fairfield, CA', - 1707786 => 'Ferndale, CA', - 1707789 => 'Petaluma, CA', - 1707822 => 'Arcata, CA', - 1707823 => 'Sebastopol, CA', - 1707824 => 'Sebastopol, CA', - 1707825 => 'Arcata, CA', - 1707826 => 'Arcata, CA', - 1707829 => 'Sebastopol, CA', - 1707833 => 'Kenwood, CA', - 1707836 => 'Windsor, CA', - 1707837 => 'Windsor, CA', - 1707838 => 'Windsor, CA', - 1707839 => 'McKinleyville, CA', - 1707843 => 'Santa Rosa, CA', - 1707857 => 'Geyserville, CA', - 1707863 => 'Fairfield, CA', - 1707864 => 'Fairfield, CA', - 1707865 => 'Monte Rio, CA', - 1707869 => 'Guerneville, CA', - 1707874 => 'Occidental, CA', - 1707875 => 'Bodega Bay, CA', - 1707882 => 'Point Arena, CA', - 1707884 => 'Gualala, CA', - 1707887 => 'Forestville, CA', - 1707894 => 'Cloverdale, CA', - 1707923 => 'Garberville, CA', - 1707927 => 'Napa, CA', - 1707928 => 'Cobb, CA', - 1707933 => 'Sonoma, CA', - 1707935 => 'Sonoma, CA', - 1707937 => 'Mendocino, CA', - 1707938 => 'Sonoma, CA', - 1707939 => 'Sonoma, CA', - 1707942 => 'Calistoga, CA', - 1707944 => 'Yountville, CA', - 1707961 => 'Fort Bragg, CA', - 1707963 => 'Saint Helena, CA', - 1707964 => 'Fort Bragg, CA', - 1707965 => 'Angwin, CA', - 1707967 => 'Saint Helena, CA', - 1707968 => 'Saint Helena, CA', - 1707983 => 'Covelo, CA', - 1707984 => 'Laytonville, CA', - 1707987 => 'Middletown, CA', - 1707994 => 'Clearlake, CA', - 1707995 => 'Clearlake, CA', - 1707996 => 'Sonoma, CA', - 1707998 => 'Clearlake Oaks, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1708.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1708.php deleted file mode 100644 index cb6ec6365..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1708.php +++ /dev/null @@ -1,89 +0,0 @@ - 'Illinois', - 1708201 => 'Dolton, IL', - 1708202 => 'Hines, IL', - 1708216 => 'Maywood, IL', - 1708222 => 'Cicero, IL', - 1708226 => 'Orland Park, IL', - 1708245 => 'La Grange, IL', - 1708246 => 'Western Springs, IL', - 1708258 => 'Peotone, IL', - 1708301 => 'Homer Glen, IL', - 1708327 => 'Maywood, IL', - 1708335 => 'Hazel Crest, IL', - 1708342 => 'Tinley Park, IL', - 1708346 => 'Oak Lawn, IL', - 1708349 => 'Orland Park, IL', - 1708358 => 'Oak Park, IL', - 1708364 => 'Orland Park, IL', - 1708366 => 'Forest Park, IL', - 1708383 => 'Oak Park, IL', - 1708386 => 'Oak Park, IL', - 1708387 => 'Brookfield, IL', - 1708403 => 'Orland Park, IL', - 1708418 => 'Lansing, IL', - 1708429 => 'Tinley Park, IL', - 1708444 => 'Tinley Park, IL', - 1708445 => 'Oak Park, IL', - 1708449 => 'Hillside, IL', - 1708450 => 'Melrose Park, IL', - 1708457 => 'Norridge, IL', - 1708460 => 'Orland Park, IL', - 1708474 => 'Lansing, IL', - 1708478 => 'Mokena, IL', - 1708479 => 'Mokena, IL', - 1708484 => 'Berwyn, IL', - 1708485 => 'Brookfield, IL', - 1708493 => 'Bellwood, IL', - 1708524 => 'Oak Park, IL', - 1708532 => 'Tinley Park, IL', - 1708534 => 'Monee, IL', - 1708535 => 'Oak Forest, IL', - 1708547 => 'Bellwood, IL', - 1708614 => 'Tinley Park, IL', - 1708633 => 'Tinley Park, IL', - 1708636 => 'Oak Lawn, IL', - 1708645 => 'Homer Glen, IL', - 1708652 => 'Cicero, IL', - 1708656 => 'Cicero, IL', - 1708660 => 'Oak Park, IL', - 1708672 => 'Crete, IL', - 1708681 => 'Melrose Park, IL', - 1708684 => 'Oak Lawn, IL', - 1708687 => 'Oak Forest, IL', - 1708709 => 'Chicago Heights, IL', - 1708720 => 'Matteson, IL', - 1708730 => 'Calumet City, IL', - 1708749 => 'Berwyn, IL', - 1708754 => 'Chicago Heights, IL', - 1708755 => 'Chicago Heights, IL', - 1708756 => 'Chicago Heights, IL', - 1708763 => 'Oak Park, IL', - 1708780 => 'Cicero, IL', - 1708783 => 'Berwyn, IL', - 1708784 => 'Western Springs, IL', - 1708788 => 'Berwyn, IL', - 1708795 => 'Berwyn, IL', - 1708832 => 'Calumet City, IL', - 1708839 => 'Willow Springs, IL', - 1708841 => 'Dolton, IL', - 1708848 => 'Oak Park, IL', - 1708849 => 'Dolton, IL', - 1708857 => 'Oak Lawn, IL', - 1708862 => 'Calumet City, IL', - 1708863 => 'Cicero, IL', - 1708867 => 'Harwood Heights, IL', - 1708868 => 'Calumet City, IL', - 1708873 => 'Orland Park, IL', - 1708891 => 'Calumet City, IL', - 1708895 => 'Lansing, IL', - 1708923 => 'Palos Heights, IL', - 1708946 => 'Beecher, IL', - 1708974 => 'Palos Hills, IL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1709.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1709.php deleted file mode 100644 index ee7564e13..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1709.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Newfoundland and Labrador', - 1709237 => 'St. John\'s, NL', - 1709256 => 'Gander, NL', - 1709279 => 'Marystown, NL', - 1709282 => 'Wabush, NL', - 1709437 => 'Torbay, NL', - 1709466 => 'Clarenville, NL', - 1709489 => 'Grand Falls-Windsor, NL', - 1709535 => 'Lewisporte, NL', - 1709576 => 'St. John\'s, NL', - 1709579 => 'St. John\'s, NL', - 1709596 => 'Carbonear, NL', - 1709634 => 'Corner Brook, NL', - 1709635 => 'Deer Lake, NL', - 1709639 => 'Corner Brook, NL', - 1709643 => 'Stephenville, NL', - 1709651 => 'Gander, NL', - 1709673 => 'Springdale, NL', - 1709695 => 'Channel-Port aux Basques, NL', - 1709722 => 'St. John\'s, NL', - 1709726 => 'St. John\'s, NL', - 1709738 => 'St. John\'s, NL', - 1709739 => 'St. John\'s, NL', - 1709753 => 'St. John\'s, NL', - 1709754 => 'St. John\'s, NL', - 1709786 => 'Bay Roberts, NL', - 1709832 => 'Grand Bank, NL', - 1709896 => 'Happy Valley-Goose Bay, NL', - 1709944 => 'Labrador City, NL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1712.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1712.php deleted file mode 100644 index 85e6cc141..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1712.php +++ /dev/null @@ -1,90 +0,0 @@ - 'Iowa', - 1712224 => 'Sioux City, IA', - 1712225 => 'Cherokee, IA', - 1712233 => 'Sioux City, IA', - 1712234 => 'Sioux City, IA', - 1712239 => 'Sioux City, IA', - 1712243 => 'Atlantic, IA', - 1712246 => 'Shenandoah, IA', - 1712252 => 'Sioux City, IA', - 1712255 => 'Sioux City, IA', - 1712256 => 'Council Bluffs, IA', - 1712258 => 'Sioux City, IA', - 1712262 => 'Spencer, IA', - 1712263 => 'Denison, IA', - 1712264 => 'Spencer, IA', - 1712274 => 'Sioux City, IA', - 1712276 => 'Sioux City, IA', - 1712277 => 'Sioux City, IA', - 1712279 => 'Sioux City, IA', - 1712294 => 'Sioux City, IA', - 1712297 => 'Rockwell City, IA', - 1712322 => 'Council Bluffs, IA', - 1712323 => 'Council Bluffs, IA', - 1712324 => 'Sheldon, IA', - 1712325 => 'Council Bluffs, IA', - 1712328 => 'Council Bluffs, IA', - 1712332 => 'Arnolds Park, IA', - 1712335 => 'Pocahontas, IA', - 1712336 => 'Spirit Lake, IA', - 1712338 => 'Milford, IA', - 1712343 => 'Avoca, IA', - 1712362 => 'Estherville, IA', - 1712364 => 'Ida Grove, IA', - 1712366 => 'Council Bluffs, IA', - 1712368 => 'Holstein, IA', - 1712374 => 'Sidney, IA', - 1712376 => 'Marcus, IA', - 1712378 => 'Kingsley, IA', - 1712382 => 'Hamburg, IA', - 1712396 => 'Council Bluffs, IA', - 1712423 => 'Onawa, IA', - 1712439 => 'Hull, IA', - 1712464 => 'Lake City, IA', - 1712469 => 'Manson, IA', - 1712472 => 'Rock Rapids, IA', - 1712475 => 'George, IA', - 1712476 => 'Rock Valley, IA', - 1712477 => 'Larchwood, IA', - 1712482 => 'Oakland, IA', - 1712523 => 'Bedford, IA', - 1712527 => 'Glenwood, IA', - 1712542 => 'Clarinda, IA', - 1712546 => 'Le Mars, IA', - 1712551 => 'Hawarden, IA', - 1712563 => 'Audubon, IA', - 1712568 => 'Akron, IA', - 1712580 => 'Spencer, IA', - 1712623 => 'Red Oak, IA', - 1712642 => 'Missouri Valley, IA', - 1712643 => 'Dunlap, IA', - 1712644 => 'Logan, IA', - 1712647 => 'Woodbine, IA', - 1712653 => 'Manning, IA', - 1712655 => 'Manning, IA', - 1712662 => 'Sac City, IA', - 1712664 => 'Wall Lake, IA', - 1712668 => 'Odebolt, IA', - 1712722 => 'Sioux Center, IA', - 1712732 => 'Storm Lake, IA', - 1712737 => 'Orange City, IA', - 1712752 => 'Hospers, IA', - 1712753 => 'Inwood, IA', - 1712754 => 'Sibley, IA', - 1712755 => 'Harlan, IA', - 1712762 => 'Anita, IA', - 1712778 => 'Griswold, IA', - 1712786 => 'Remsen, IA', - 1712792 => 'Carroll, IA', - 1712826 => 'Villisca, IA', - 1712852 => 'Emmetsburg, IA', - 1712873 => 'Moville, IA', - 1712943 => 'Sergeant Bluff, IA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1713.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1713.php deleted file mode 100644 index ef672ebd3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1713.php +++ /dev/null @@ -1,294 +0,0 @@ - 'Texas', - 1713218 => 'Houston, TX', - 1713220 => 'Houston, TX', - 1713221 => 'Houston, TX', - 1713222 => 'Houston, TX', - 1713223 => 'Houston, TX', - 1713224 => 'Houston, TX', - 1713225 => 'Houston, TX', - 1713226 => 'Houston, TX', - 1713227 => 'Houston, TX', - 1713228 => 'Houston, TX', - 1713229 => 'Houston, TX', - 1713236 => 'Houston, TX', - 1713237 => 'Houston, TX', - 1713242 => 'Houston, TX', - 1713255 => 'Houston, TX', - 1713260 => 'Houston, TX', - 1713263 => 'Houston, TX', - 1713266 => 'Houston, TX', - 1713267 => 'Houston, TX', - 1713270 => 'Houston, TX', - 1713271 => 'Houston, TX', - 1713272 => 'Houston, TX', - 1713275 => 'Houston, TX', - 1713276 => 'Louisiana Street, Houston, TX', - 1713278 => 'Houston, TX', - 1713283 => 'Houston, TX', - 1713290 => 'Houston, TX', - 1713330 => 'Houston, TX', - 1713331 => 'Houston, TX', - 1713333 => 'Houston, TX', - 1713334 => 'Houston, TX', - 1713337 => 'Houston, TX', - 1713339 => 'Houston, TX', - 1713340 => 'Pearland, TX', - 1713343 => 'Houston, TX', - 1713349 => 'Houston, TX', - 1713353 => 'Houston, TX', - 1713355 => 'Houston, TX', - 1713360 => 'Houston, TX', - 1713365 => 'Houston, TX', - 1713383 => 'Houston, TX', - 1713400 => 'Houston, TX', - 1713401 => 'Houston, TX', - 1713413 => 'Houston, TX', - 1713425 => 'Houston, TX', - 1713426 => 'Houston, TX', - 1713432 => 'Houston, TX', - 1713433 => 'Houston, TX', - 1713434 => 'Houston, TX', - 1713436 => 'Pearland, TX', - 1713439 => 'Houston, TX', - 1713440 => 'Houston, TX', - 1713441 => 'Houston, TX', - 1713442 => 'Houston, TX', - 1713450 => 'Houston, TX', - 1713451 => 'Houston, TX', - 1713453 => 'Houston, TX', - 1713454 => 'Houston, TX', - 1713455 => 'Houston, TX', - 1713456 => 'Houston, TX', - 1713457 => 'Houston, TX', - 1713458 => 'Houston, TX', - 1713460 => 'Houston, TX', - 1713461 => 'Houston, TX', - 1713462 => 'Houston, TX', - 1713463 => 'Houston, TX', - 1713464 => 'Houston, TX', - 1713465 => 'Houston, TX', - 1713466 => 'Houston, TX', - 1713467 => 'Houston, TX', - 1713468 => 'Houston, TX', - 1713472 => 'Pasadena, TX', - 1713473 => 'Pasadena, TX', - 1713475 => 'Pasadena, TX', - 1713477 => 'Pasadena, TX', - 1713484 => 'Houston, TX', - 1713490 => 'Houston, TX', - 1713491 => 'Houston, TX', - 1713492 => 'Houston, TX', - 1713500 => 'Houston, TX', - 1713512 => 'Houston, TX', - 1713514 => 'Houston, TX', - 1713520 => 'Houston, TX', - 1713521 => 'Houston, TX', - 1713522 => 'Houston, TX', - 1713523 => 'Houston, TX', - 1713524 => 'Houston, TX', - 1713526 => 'Houston, TX', - 1713527 => 'Houston, TX', - 1713528 => 'Houston, TX', - 1713529 => 'Houston, TX', - 1713532 => 'Houston, TX', - 1713533 => 'Houston, TX', - 1713541 => 'Houston, TX', - 1713552 => 'Houston, TX', - 1713554 => 'Houston, TX', - 1713563 => 'Houston, TX', - 1713566 => 'Houston, TX', - 1713571 => 'Houston, TX', - 1713572 => 'Houston, TX', - 1713574 => 'Houston, TX', - 1713590 => 'Houston, TX', - 1713592 => 'Houston, TX', - 1713599 => 'Houston, TX', - 1713620 => 'Houston, TX', - 1713621 => 'Houston, TX', - 1713622 => 'Houston, TX', - 1713623 => 'Houston, TX', - 1713626 => 'Houston, TX', - 1713627 => 'Houston, TX', - 1713629 => 'Houston, TX', - 1713631 => 'Houston, TX', - 1713633 => 'Houston, TX', - 1713635 => 'Houston, TX', - 1713636 => 'Houston, TX', - 1713637 => 'Houston, TX', - 1713640 => 'Houston, TX', - 1713641 => 'Houston, TX', - 1713643 => 'Houston, TX', - 1713644 => 'Houston, TX', - 1713645 => 'Houston, TX', - 1713647 => 'Houston, TX', - 1713649 => 'Houston, TX', - 1713650 => 'Houston, TX', - 1713651 => 'Houston, TX', - 1713652 => 'Houston, TX', - 1713654 => 'Houston, TX', - 1713655 => 'Houston, TX', - 1713658 => 'Houston, TX', - 1713659 => 'Houston, TX', - 1713660 => 'Houston, TX', - 1713661 => 'Houston, TX', - 1713662 => 'Houston, TX', - 1713663 => 'Houston, TX', - 1713664 => 'Houston, TX', - 1713665 => 'Houston, TX', - 1713666 => 'Houston, TX', - 1713667 => 'Houston, TX', - 1713668 => 'Houston, TX', - 1713669 => 'Houston, TX', - 1713670 => 'Houston, TX', - 1713671 => 'Houston, TX', - 1713672 => 'Houston, TX', - 1713673 => 'Houston, TX', - 1713674 => 'Houston, TX', - 1713675 => 'Houston, TX', - 1713676 => 'Houston, TX', - 1713677 => 'Houston, TX', - 1713678 => 'Houston, TX', - 1713680 => 'Houston, TX', - 1713681 => 'Houston, TX', - 1713682 => 'Houston, TX', - 1713683 => 'Houston, TX', - 1713686 => 'Houston, TX', - 1713688 => 'Houston, TX', - 1713690 => 'Houston, TX', - 1713691 => 'Houston, TX', - 1713692 => 'Houston, TX', - 1713694 => 'Houston, TX', - 1713695 => 'Houston, TX', - 1713696 => 'Houston, TX', - 1713697 => 'Houston, TX', - 1713699 => 'Houston, TX', - 1713704 => 'Houston, TX', - 1713706 => 'Houston, TX', - 1713721 => 'Houston, TX', - 1713722 => 'Houston, TX', - 1713723 => 'Houston, TX', - 1713726 => 'Houston, TX', - 1713728 => 'Houston, TX', - 1713729 => 'Houston, TX', - 1713731 => 'Houston, TX', - 1713733 => 'Houston, TX', - 1713734 => 'Houston, TX', - 1713738 => 'Houston, TX', - 1713739 => 'Houston, TX', - 1713740 => 'Pasadena, TX', - 1713741 => 'Houston, TX', - 1713742 => 'Houston, TX', - 1713743 => 'Houston, TX', - 1713747 => 'Houston, TX', - 1713748 => 'Houston, TX', - 1713750 => 'Houston, TX', - 1713751 => 'Houston, TX', - 1713752 => 'Houston, TX', - 1713755 => 'Houston, TX', - 1713757 => 'Houston, TX', - 1713758 => 'Houston, TX', - 1713759 => 'Houston, TX', - 1713771 => 'Houston, TX', - 1713772 => 'Houston, TX', - 1713773 => 'Houston, TX', - 1713774 => 'Houston, TX', - 1713776 => 'Houston, TX', - 1713777 => 'Houston, TX', - 1713778 => 'Houston, TX', - 1713779 => 'Houston, TX', - 1713780 => 'Houston, TX', - 1713781 => 'Houston, TX', - 1713782 => 'Houston, TX', - 1713783 => 'Houston, TX', - 1713784 => 'Houston, TX', - 1713785 => 'Houston, TX', - 1713787 => 'Houston, TX', - 1713789 => 'Houston, TX', - 1713790 => 'Houston, TX', - 1713791 => 'Houston, TX', - 1713792 => 'Houston, TX', - 1713794 => 'Houston, TX', - 1713795 => 'Houston, TX', - 1713796 => 'Houston, TX', - 1713797 => 'Houston, TX', - 1713798 => 'Houston, TX', - 1713799 => 'Houston, TX', - 1713802 => 'Houston, TX', - 1713807 => 'Houston, TX', - 1713812 => 'Houston, TX', - 1713827 => 'Houston, TX', - 1713830 => 'Houston, TX', - 1713838 => 'Houston, TX', - 1713839 => 'Houston, TX', - 1713840 => 'Houston, TX', - 1713842 => 'Houston, TX', - 1713847 => 'Houston, TX', - 1713849 => 'Houston, TX', - 1713850 => 'Houston, TX', - 1713856 => 'Houston, TX', - 1713861 => 'Houston, TX', - 1713862 => 'Houston, TX', - 1713863 => 'Houston, TX', - 1713864 => 'Houston, TX', - 1713867 => 'Houston, TX', - 1713868 => 'Houston, TX', - 1713869 => 'Houston, TX', - 1713871 => 'Houston, TX', - 1713873 => 'Houston, TX', - 1713874 => 'Houston, TX', - 1713877 => 'Houston, TX', - 1713880 => 'Houston, TX', - 1713884 => 'Houston, TX', - 1713895 => 'Houston, TX', - 1713896 => 'Houston, TX', - 1713914 => 'Houston, TX', - 1713917 => 'Houston, TX', - 1713920 => 'Pasadena, TX', - 1713921 => 'Houston, TX', - 1713923 => 'Houston, TX', - 1713924 => 'Houston, TX', - 1713926 => 'Houston, TX', - 1713928 => 'Houston, TX', - 1713932 => 'Houston, TX', - 1713934 => 'Houston, TX', - 1713935 => 'Houston, TX', - 1713937 => 'Houston, TX', - 1713939 => 'Houston, TX', - 1713942 => 'Houston, TX', - 1713951 => 'Houston, TX', - 1713952 => 'Houston, TX', - 1713953 => 'Houston, TX', - 1713956 => 'Houston, TX', - 1713957 => 'Houston, TX', - 1713960 => 'Houston, TX', - 1713961 => 'Houston, TX', - 1713963 => 'Houston, TX', - 1713965 => 'Houston, TX', - 1713966 => 'Houston, TX', - 1713968 => 'Houston, TX', - 1713970 => 'Houston, TX', - 1713972 => 'Houston, TX', - 1713973 => 'Houston, TX', - 1713974 => 'Houston, TX', - 1713975 => 'Houston, TX', - 1713977 => 'Houston, TX', - 1713978 => 'Houston, TX', - 1713979 => 'Houston, TX', - 1713981 => 'Houston, TX', - 1713983 => 'Houston, TX', - 1713984 => 'Houston, TX', - 1713986 => 'Houston, TX', - 1713987 => 'Houston, TX', - 1713988 => 'Houston, TX', - 1713991 => 'Houston, TX', - 1713993 => 'Houston, TX', - 1713995 => 'Houston, TX', - 1713996 => 'Houston, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1714.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1714.php deleted file mode 100644 index 4a73b61eb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1714.php +++ /dev/null @@ -1,169 +0,0 @@ - 'California', - 1714221 => 'Orange, CA', - 1714224 => 'Anaheim, CA', - 1714228 => 'Buena Park, CA', - 1714245 => 'Santa Ana, CA', - 1714254 => 'Anaheim, CA', - 1714255 => 'Brea, CA', - 1714256 => 'Brea, CA', - 1714257 => 'Brea, CA', - 1714258 => 'Tustin, CA', - 1714259 => 'Tustin, CA', - 1714278 => 'Fullerton, CA', - 1714280 => 'Anaheim, CA', - 1714281 => 'Anaheim, CA', - 1714285 => 'Santa Ana, CA', - 1714288 => 'Orange, CA', - 1714289 => 'Orange, CA', - 1714368 => 'Tustin, CA', - 1714374 => 'Huntington Beach, CA', - 1714375 => 'Huntington Beach, CA', - 1714377 => 'Huntington Beach, CA', - 1714378 => 'Fountain Valley, CA', - 1714385 => 'Orange, CA', - 1714399 => 'Anaheim, CA', - 1714441 => 'Fullerton, CA', - 1714446 => 'Fullerton, CA', - 1714447 => 'Fullerton, CA', - 1714449 => 'Fullerton, CA', - 1714453 => 'Orange, CA', - 1714456 => 'Orange, CA', - 1714465 => 'Huntington Beach, CA', - 1714480 => 'Santa Ana, CA', - 1714491 => 'Anaheim, CA', - 1714502 => 'Anaheim, CA', - 1714505 => 'Tustin, CA', - 1714508 => 'Tustin, CA', - 1714516 => 'Orange, CA', - 1714517 => 'Anaheim, CA', - 1714520 => 'Anaheim, CA', - 1714521 => 'Buena Park, CA', - 1714522 => 'Buena Park, CA', - 1714523 => 'Buena Park, CA', - 1714525 => 'Fullerton, CA', - 1714526 => 'Fullerton, CA', - 1714529 => 'Brea, CA', - 1714530 => 'Garden Grove, CA', - 1714532 => 'Orange, CA', - 1714533 => 'Anaheim, CA', - 1714534 => 'Garden Grove, CA', - 1714535 => 'Anaheim, CA', - 1714536 => 'Huntington Beach, CA', - 1714537 => 'Garden Grove, CA', - 1714538 => 'Orange, CA', - 1714539 => 'Garden Grove, CA', - 1714541 => 'Santa Ana, CA', - 1714542 => 'Santa Ana, CA', - 1714543 => 'Santa Ana, CA', - 1714544 => 'Tustin, CA', - 1714547 => 'Santa Ana, CA', - 1714550 => 'Santa Ana, CA', - 1714554 => 'Santa Ana, CA', - 1714558 => 'Santa Ana, CA', - 1714560 => 'Santa Ana, CA', - 1714562 => 'Buena Park, CA', - 1714563 => 'Anaheim, CA', - 1714564 => 'Santa Ana, CA', - 1714568 => 'Santa Ana, CA', - 1714569 => 'Santa Ana, CA', - 1714571 => 'Santa Ana, CA', - 1714573 => 'Tustin, CA', - 1714578 => 'Fullerton, CA', - 1714590 => 'Garden Grove, CA', - 1714593 => 'Fountain Valley, CA', - 1714596 => 'Huntington Beach, CA', - 1714626 => 'Fullerton, CA', - 1714628 => 'Orange, CA', - 1714630 => 'Anaheim, CA', - 1714632 => 'Anaheim, CA', - 1714633 => 'Orange, CA', - 1714634 => 'Orange, CA', - 1714635 => 'Anaheim, CA', - 1714636 => 'Garden Grove, CA', - 1714637 => 'Orange, CA', - 1714638 => 'Garden Grove, CA', - 1714639 => 'Orange, CA', - 1714647 => 'Santa Ana, CA', - 1714663 => 'Garden Grove, CA', - 1714665 => 'Tustin, CA', - 1714666 => 'Anaheim, CA', - 1714667 => 'Santa Ana, CA', - 1714669 => 'Tustin, CA', - 1714670 => 'Buena Park, CA', - 1714671 => 'Brea, CA', - 1714672 => 'Brea, CA', - 1714674 => 'Brea, CA', - 1714680 => 'Fullerton, CA', - 1714690 => 'Buena Park, CA', - 1714692 => 'Yorba Linda, CA', - 1714693 => 'Yorba Linda, CA', - 1714701 => 'Anaheim, CA', - 1714730 => 'Tustin, CA', - 1714731 => 'Tustin, CA', - 1714734 => 'Tustin, CA', - 1714736 => 'Buena Park, CA', - 1714738 => 'Fullerton, CA', - 1714739 => 'Buena Park, CA', - 1714741 => 'Garden Grove, CA', - 1714744 => 'Orange, CA', - 1714758 => 'Anaheim, CA', - 1714765 => 'Anaheim, CA', - 1714769 => 'Orange, CA', - 1714771 => 'Orange, CA', - 1714772 => 'Anaheim, CA', - 1714773 => 'Fullerton, CA', - 1714774 => 'Anaheim, CA', - 1714776 => 'Anaheim, CA', - 1714777 => 'Yorba Linda, CA', - 1714778 => 'Anaheim, CA', - 1714780 => 'Anaheim, CA', - 1714781 => 'Anaheim, CA', - 1714808 => 'Anaheim, CA', - 1714817 => 'Anaheim, CA', - 1714832 => 'Tustin, CA', - 1714834 => 'Santa Ana, CA', - 1714835 => 'Santa Ana, CA', - 1714836 => 'Santa Ana, CA', - 1714838 => 'Tustin, CA', - 1714840 => 'Huntington Beach, CA', - 1714841 => 'Huntington Beach, CA', - 1714842 => 'Huntington Beach, CA', - 1714843 => 'Huntington Beach, CA', - 1714846 => 'Huntington Beach, CA', - 1714847 => 'Huntington Beach, CA', - 1714848 => 'Huntington Beach, CA', - 1714870 => 'Fullerton, CA', - 1714871 => 'Fullerton, CA', - 1714879 => 'Fullerton, CA', - 1714896 => 'Westminster, CA', - 1714921 => 'Orange, CA', - 1714935 => 'Orange, CA', - 1714937 => 'Orange, CA', - 1714938 => 'Orange, CA', - 1714939 => 'Orange, CA', - 1714940 => 'Orange, CA', - 1714953 => 'Santa Ana, CA', - 1714956 => 'Anaheim, CA', - 1714960 => 'Huntington Beach, CA', - 1714962 => 'Huntington Beach, CA', - 1714964 => 'Fountain Valley, CA', - 1714969 => 'Huntington Beach, CA', - 1714970 => 'Yorba Linda, CA', - 1714971 => 'Garden Grove, CA', - 1714972 => 'Santa Ana, CA', - 1714973 => 'Santa Ana, CA', - 1714978 => 'Orange, CA', - 1714990 => 'Brea, CA', - 1714991 => 'Anaheim, CA', - 1714992 => 'Fullerton, CA', - 1714994 => 'Buena Park, CA', - 1714997 => 'Orange, CA', - 1714999 => 'Anaheim, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1715.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1715.php deleted file mode 100644 index 6bbf09a22..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1715.php +++ /dev/null @@ -1,197 +0,0 @@ - 'Wisconsin', - 1715228 => 'Coloma, WI', - 1715229 => 'Owen, WI', - 1715231 => 'Menomonie, WI', - 1715232 => 'Menomonie, WI', - 1715233 => 'Menomonie, WI', - 1715234 => 'Rice Lake, WI', - 1715235 => 'Menomonie, WI', - 1715236 => 'Rice Lake, WI', - 1715239 => 'Cornell, WI', - 1715246 => 'New Richmond, WI', - 1715247 => 'Somerset, WI', - 1715248 => 'Star Prairie, WI', - 1715251 => 'Niagara, WI', - 1715253 => 'Wittenberg, WI', - 1715255 => 'Loyal, WI', - 1715256 => 'Waupaca, WI', - 1715257 => 'Athens, WI', - 1715258 => 'Waupaca, WI', - 1715261 => 'Wausau, WI', - 1715262 => 'Prescott, WI', - 1715263 => 'Clear Lake, WI', - 1715265 => 'Glenwood City, WI', - 1715266 => 'Winter, WI', - 1715267 => 'Greenwood, WI', - 1715268 => 'Amery, WI', - 1715273 => 'Ellsworth, WI', - 1715275 => 'Elcho, WI', - 1715277 => 'Lake Tomahawk, WI', - 1715284 => 'Black River Falls, WI', - 1715286 => 'Augusta, WI', - 1715289 => 'Cadott, WI', - 1715294 => 'Osceola, WI', - 1715298 => 'Wausau, WI', - 1715325 => 'Wisconsin Rapids, WI', - 1715327 => 'Frederic, WI', - 1715335 => 'Plainfield, WI', - 1715339 => 'Phillips, WI', - 1715341 => 'Stevens Point, WI', - 1715342 => 'Stevens Point, WI', - 1715343 => 'Stevens Point, WI', - 1715344 => 'Stevens Point, WI', - 1715345 => 'Stevens Point, WI', - 1715346 => 'Stevens Point, WI', - 1715349 => 'Siren, WI', - 1715352 => 'Edgar, WI', - 1715354 => 'Birchwood, WI', - 1715357 => 'Almena, WI', - 1715358 => 'Minocqua, WI', - 1715359 => 'Schofield, WI', - 1715361 => 'Rhinelander, WI', - 1715362 => 'Rhinelander, WI', - 1715365 => 'Rhinelander, WI', - 1715369 => 'Rhinelander, WI', - 1715372 => 'Iron River, WI', - 1715373 => 'Washburn, WI', - 1715377 => 'Hudson, WI', - 1715381 => 'Hudson, WI', - 1715384 => 'Marshfield, WI', - 1715385 => 'Boulder Junction, WI', - 1715386 => 'Hudson, WI', - 1715387 => 'Marshfield, WI', - 1715389 => 'Marshfield, WI', - 1715392 => 'Superior, WI', - 1715394 => 'Superior, WI', - 1715395 => 'Superior, WI', - 1715398 => 'Superior, WI', - 1715399 => 'Superior, WI', - 1715421 => 'Wisconsin Rapids, WI', - 1715422 => 'Wisconsin Rapids, WI', - 1715423 => 'Wisconsin Rapids, WI', - 1715424 => 'Wisconsin Rapids, WI', - 1715425 => 'River Falls, WI', - 1715426 => 'River Falls, WI', - 1715427 => 'Rib Lake, WI', - 1715428 => 'Prentice, WI', - 1715442 => 'Pepin, WI', - 1715443 => 'Marathon City, WI', - 1715445 => 'Iola, WI', - 1715446 => 'Hatley, WI', - 1715449 => 'Birnamwood, WI', - 1715453 => 'Tomahawk, WI', - 1715457 => 'Junction City, WI', - 1715458 => 'Cameron, WI', - 1715462 => 'Hayward, WI', - 1715463 => 'Grantsburg, WI', - 1715466 => 'Minong, WI', - 1715468 => 'Shell Lake, WI', - 1715472 => 'Luck, WI', - 1715476 => 'Mercer, WI', - 1715477 => 'Eagle River, WI', - 1715478 => 'Crandon, WI', - 1715479 => 'Eagle River, WI', - 1715483 => 'St. Croix Falls, WI', - 1715485 => 'Balsam Lake, WI', - 1715514 => 'Eau Claire, WI', - 1715524 => 'Shawano, WI', - 1715526 => 'Shawano, WI', - 1715528 => 'Florence, WI', - 1715531 => 'Hudson, WI', - 1715532 => 'Ladysmith, WI', - 1715536 => 'Merrill, WI', - 1715537 => 'Barron, WI', - 1715538 => 'Whitehall, WI', - 1715539 => 'Merrill, WI', - 1715542 => 'Saint Germain, WI', - 1715543 => 'Manitowish Waters, WI', - 1715544 => 'Stevens Point, WI', - 1715546 => 'Three Lakes, WI', - 1715547 => 'Land O\' Lakes, WI', - 1715552 => 'Eau Claire, WI', - 1715561 => 'Hurley, WI', - 1715568 => 'Bloomer, WI', - 1715582 => 'Peshtigo, WI', - 1715588 => 'Lac du Flambeau, WI', - 1715592 => 'Custer, WI', - 1715597 => 'Osseo, WI', - 1715623 => 'Antigo, WI', - 1715627 => 'Antigo, WI', - 1715634 => 'Hayward, WI', - 1715635 => 'Spooner, WI', - 1715644 => 'Stanley, WI', - 1715654 => 'Dorchester, WI', - 1715659 => 'Spencer, WI', - 1715669 => 'Thorp, WI', - 1715672 => 'Durand, WI', - 1715674 => 'Laona, WI', - 1715675 => 'Wausau, WI', - 1715677 => 'Rosholt, WI', - 1715682 => 'Ashland, WI', - 1715684 => 'Baldwin, WI', - 1715685 => 'Ashland, WI', - 1715687 => 'Stratford, WI', - 1715693 => 'Mosinee, WI', - 1715698 => 'Woodville, WI', - 1715720 => 'Chippewa Falls, WI', - 1715723 => 'Chippewa Falls, WI', - 1715726 => 'Chippewa Falls, WI', - 1715732 => 'Marinette, WI', - 1715735 => 'Marinette, WI', - 1715736 => 'Rice Lake, WI', - 1715743 => 'Neillsville, WI', - 1715745 => 'Cecil, WI', - 1715748 => 'Medford, WI', - 1715749 => 'Roberts, WI', - 1715754 => 'Marion, WI', - 1715755 => 'Dresser, WI', - 1715758 => 'Bonduel, WI', - 1715762 => 'Park Falls, WI', - 1715778 => 'Spring Valley, WI', - 1715779 => 'Bayfield, WI', - 1715787 => 'Gresham, WI', - 1715798 => 'Cable, WI', - 1715799 => 'Keshena, WI', - 1715822 => 'Cumberland, WI', - 1715823 => 'Clintonville, WI', - 1715824 => 'Amherst, WI', - 1715825 => 'Milltown, WI', - 1715830 => 'Eau Claire, WI', - 1715831 => 'Eau Claire, WI', - 1715832 => 'Eau Claire, WI', - 1715833 => 'Eau Claire, WI', - 1715834 => 'Eau Claire, WI', - 1715835 => 'Eau Claire, WI', - 1715836 => 'Eau Claire, WI', - 1715838 => 'Eau Claire, WI', - 1715839 => 'Eau Claire, WI', - 1715842 => 'Wausau, WI', - 1715843 => 'Wausau, WI', - 1715845 => 'Wausau, WI', - 1715847 => 'Wausau, WI', - 1715848 => 'Wausau, WI', - 1715849 => 'Wausau, WI', - 1715854 => 'Crivitz, WI', - 1715855 => 'Eau Claire, WI', - 1715856 => 'Wausaukee, WI', - 1715858 => 'Eau Claire, WI', - 1715866 => 'Webster, WI', - 1715868 => 'Bruce, WI', - 1715874 => 'Eau Claire, WI', - 1715877 => 'Fall Creek, WI', - 1715884 => 'Pittsville, WI', - 1715886 => 'Nekoosa, WI', - 1715924 => 'Chetek, WI', - 1715926 => 'Mondovi, WI', - 1715934 => 'Hayward, WI', - 1715962 => 'Colfax, WI', - 1715985 => 'Independence, WI', - 1715986 => 'Turtle Lake, WI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1716.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1716.php deleted file mode 100644 index e46703224..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1716.php +++ /dev/null @@ -1,145 +0,0 @@ - 'New York', - 1716257 => 'Cattaraugus, NY', - 1716276 => 'Wehrle Drive, Buffalo, NY', - 1716278 => 'Niagara Falls, NY', - 1716282 => 'Niagara Falls, NY', - 1716283 => 'Niagara Falls, NY', - 1716284 => 'Niagara Falls, NY', - 1716285 => 'Niagara Falls, NY', - 1716297 => 'Niagara Falls, NY', - 1716298 => 'Niagara Falls, NY', - 1716326 => 'Westfield, NY', - 1716332 => 'Buffalo, NY', - 1716337 => 'North Collins, NY', - 1716355 => 'Clymer, NY', - 1716358 => 'Randolph, NY', - 1716362 => 'Buffalo, NY', - 1716363 => 'Dunkirk, NY', - 1716366 => 'Dunkirk, NY', - 1716372 => 'Olean, NY', - 1716373 => 'Olean, NY', - 1716375 => 'Olean, NY', - 1716386 => 'Bemus Point, NY', - 1716433 => 'Lockport, NY', - 1716434 => 'Lockport, NY', - 1716438 => 'Lockport, NY', - 1716439 => 'Lockport, NY', - 1716446 => 'Buffalo, NY', - 1716483 => 'Jamestown, NY', - 1716484 => 'Jamestown, NY', - 1716487 => 'Jamestown, NY', - 1716488 => 'Jamestown, NY', - 1716532 => 'Gowanda, NY', - 1716537 => 'Holland, NY', - 1716542 => 'Akron, NY', - 1716549 => 'Angola, NY', - 1716569 => 'Frewsburg, NY', - 1716592 => 'Springville, NY', - 1716595 => 'Cassadaga, NY', - 1716625 => 'Lockport, NY', - 1716627 => 'Hamburg, NY', - 1716634 => 'Williamsville, NY', - 1716646 => 'Hamburg, NY', - 1716648 => 'Hamburg, NY', - 1716649 => 'Hamburg, NY', - 1716652 => 'East Aurora, NY', - 1716655 => 'East Aurora, NY', - 1716661 => 'Jamestown, NY', - 1716662 => 'Orchard Park, NY', - 1716664 => 'Jamestown, NY', - 1716665 => 'Jamestown, NY', - 1716667 => 'Orchard Park, NY', - 1716672 => 'Fredonia, NY', - 1716673 => 'Fredonia, NY', - 1716674 => 'West Seneca, NY', - 1716675 => 'West Seneca, NY', - 1716676 => 'Franklinville, NY', - 1716679 => 'Fredonia, NY', - 1716692 => 'North Tonawanda, NY', - 1716693 => 'North Tonawanda, NY', - 1716694 => 'North Tonawanda, NY', - 1716695 => 'North Tonawanda, NY', - 1716699 => 'Ellicottville, NY', - 1716712 => 'West Seneca, NY', - 1716731 => 'Sanborn, NY', - 1716735 => 'Middleport, NY', - 1716741 => 'Clarence Center, NY', - 1716745 => 'Youngstown, NY', - 1716751 => 'Wilson, NY', - 1716753 => 'Mayville, NY', - 1716754 => 'Lewiston, NY', - 1716759 => 'Clarence, NY', - 1716761 => 'Sherman, NY', - 1716763 => 'Lakewood, NY', - 1716772 => 'Gasport, NY', - 1716773 => 'Grand Island, NY', - 1716778 => 'Newfane, NY', - 1716783 => 'Buffalo, NY', - 1716791 => 'Ransomville, NY', - 1716792 => 'Brocton, NY', - 1716816 => 'Buffalo, NY', - 1716822 => 'Buffalo, NY', - 1716823 => 'Buffalo, NY', - 1716824 => 'Buffalo, NY', - 1716826 => 'Buffalo, NY', - 1716828 => 'Buffalo, NY', - 1716829 => 'Buffalo, NY', - 1716831 => 'Buffalo, NY', - 1716832 => 'Buffalo, NY', - 1716833 => 'Buffalo, NY', - 1716834 => 'Buffalo, NY', - 1716835 => 'Buffalo, NY', - 1716836 => 'Buffalo, NY', - 1716838 => 'Buffalo, NY', - 1716842 => 'Buffalo, NY', - 1716844 => 'Buffalo, NY', - 1716845 => 'Buffalo, NY', - 1716847 => 'Buffalo, NY', - 1716848 => 'Buffalo, NY', - 1716849 => 'Buffalo, NY', - 1716851 => 'Buffalo, NY', - 1716852 => 'Buffalo, NY', - 1716853 => 'Buffalo, NY', - 1716854 => 'Buffalo, NY', - 1716855 => 'Buffalo, NY', - 1716856 => 'Buffalo, NY', - 1716858 => 'Buffalo, NY', - 1716859 => 'Buffalo, NY', - 1716862 => 'Buffalo, NY', - 1716871 => 'Buffalo, NY', - 1716873 => 'Buffalo, NY', - 1716874 => 'Buffalo, NY', - 1716875 => 'Buffalo, NY', - 1716876 => 'Buffalo, NY', - 1716877 => 'Buffalo, NY', - 1716878 => 'Buffalo, NY', - 1716881 => 'Buffalo, NY', - 1716882 => 'Buffalo, NY', - 1716883 => 'Buffalo, NY', - 1716884 => 'Buffalo, NY', - 1716885 => 'Buffalo, NY', - 1716886 => 'Buffalo, NY', - 1716887 => 'Buffalo, NY', - 1716891 => 'Buffalo, NY', - 1716892 => 'Buffalo, NY', - 1716893 => 'Buffalo, NY', - 1716894 => 'Cheektowaga, NY', - 1716895 => 'Buffalo, NY', - 1716896 => 'Buffalo, NY', - 1716897 => 'Buffalo, NY', - 1716898 => 'Buffalo, NY', - 1716934 => 'Silver Creek, NY', - 1716937 => 'Alden, NY', - 1716938 => 'Little Valley, NY', - 1716945 => 'Salamanca, NY', - 1716947 => 'Derby, NY', - 1716961 => 'Buffalo, NY', - 1716992 => 'Eden, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1717.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1717.php deleted file mode 100644 index 981c40e28..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1717.php +++ /dev/null @@ -1,220 +0,0 @@ - 'Pennsylvania', - 1717207 => 'Lancaster, PA', - 1717217 => 'Chambersburg, PA', - 1717218 => 'Carlisle, PA', - 1717221 => 'Harrisburg, PA', - 1717225 => 'Spring Grove, PA', - 1717228 => 'Lebanon, PA', - 1717230 => 'Harrisburg, PA', - 1717231 => 'Harrisburg, PA', - 1717232 => 'Harrisburg, PA', - 1717233 => 'Harrisburg, PA', - 1717234 => 'Harrisburg, PA', - 1717236 => 'Harrisburg, PA', - 1717237 => 'Harrisburg, PA', - 1717238 => 'Harrisburg, PA', - 1717240 => 'Carlisle, PA', - 1717241 => 'Carlisle, PA', - 1717242 => 'Lewistown, PA', - 1717243 => 'Carlisle, PA', - 1717244 => 'Red Lion, PA', - 1717245 => 'Carlisle, PA', - 1717246 => 'Red Lion, PA', - 1717248 => 'Lewistown, PA', - 1717249 => 'Carlisle, PA', - 1717252 => 'Wrightsville, PA', - 1717255 => 'Harrisburg, PA', - 1717258 => 'Carlisle, PA', - 1717259 => 'East Berlin, PA', - 1717260 => 'Harrisburg, PA', - 1717261 => 'Chambersburg, PA', - 1717262 => 'Chambersburg, PA', - 1717263 => 'Chambersburg, PA', - 1717264 => 'Chambersburg, PA', - 1717267 => 'Chambersburg, PA', - 1717270 => 'Lebanon, PA', - 1717272 => 'Lebanon, PA', - 1717273 => 'Lebanon, PA', - 1717274 => 'Lebanon, PA', - 1717279 => 'Lebanon, PA', - 1717290 => 'Lancaster, PA', - 1717291 => 'Lancaster, PA', - 1717292 => 'Dover, PA', - 1717293 => 'Lancaster, PA', - 1717295 => 'Lancaster, PA', - 1717299 => 'Lancaster, PA', - 1717328 => 'Mercersburg, PA', - 1717334 => 'Gettysburg, PA', - 1717335 => 'Denver, PA', - 1717337 => 'Gettysburg, PA', - 1717338 => 'Gettysburg, PA', - 1717339 => 'Gettysburg, PA', - 1717352 => 'Fayetteville, PA', - 1717354 => 'New Holland, PA', - 1717355 => 'New Holland, PA', - 1717359 => 'Littlestown, PA', - 1717361 => 'Elizabethtown, PA', - 1717362 => 'Elizabethville, PA', - 1717367 => 'Elizabethtown, PA', - 1717375 => 'Chambersburg, PA', - 1717390 => 'Lancaster, PA', - 1717391 => 'Lancaster, PA', - 1717392 => 'Lancaster, PA', - 1717393 => 'Lancaster, PA', - 1717394 => 'Lancaster, PA', - 1717396 => 'Lancaster, PA', - 1717397 => 'Lancaster, PA', - 1717399 => 'Lancaster, PA', - 1717412 => 'Harrisburg, PA', - 1717423 => 'Newburg, PA', - 1717426 => 'Marietta, PA', - 1717431 => 'Lancaster, PA', - 1717432 => 'Dillsburg, PA', - 1717435 => 'Lancaster, PA', - 1717436 => 'Mifflintown, PA', - 1717441 => 'Harrisburg, PA', - 1717442 => 'Gap, PA', - 1717444 => 'Liverpool, PA', - 1717456 => 'Delta, PA', - 1717458 => 'Mechanicsburg, PA', - 1717463 => 'McAlisterville, PA', - 1717464 => 'Willow Street, PA', - 1717469 => 'Grantville, PA', - 1717477 => 'Shippensburg, PA', - 1717485 => 'McConnellsburg, PA', - 1717486 => 'Mount Holly Springs, PA', - 1717492 => 'Mount Joy, PA', - 1717502 => 'Dillsburg, PA', - 1717509 => 'Lancaster, PA', - 1717517 => 'Lancaster, PA', - 1717519 => 'Lancaster, PA', - 1717520 => 'Hershey, PA', - 1717525 => 'Harrisburg, PA', - 1717526 => 'Harrisburg, PA', - 1717528 => 'York Springs, PA', - 1717530 => 'Shippensburg, PA', - 1717531 => 'Hershey, PA', - 1717532 => 'Shippensburg, PA', - 1717533 => 'Hershey, PA', - 1717534 => 'Hershey, PA', - 1717540 => 'Harrisburg, PA', - 1717541 => 'Harrisburg, PA', - 1717544 => 'Lancaster, PA', - 1717545 => 'Harrisburg, PA', - 1717548 => 'Peach Bottom, PA', - 1717558 => 'Harrisburg, PA', - 1717560 => 'Lancaster, PA', - 1717561 => 'Harrisburg, PA', - 1717564 => 'Harrisburg, PA', - 1717566 => 'Hummelstown, PA', - 1717567 => 'Newport, PA', - 1717569 => 'Lancaster, PA', - 1717581 => 'Lancaster, PA', - 1717582 => 'New Bloomfield, PA', - 1717589 => 'Millerstown, PA', - 1717591 => 'Mechanicsburg, PA', - 1717597 => 'Greencastle, PA', - 1717600 => 'York, PA', - 1717624 => 'New Oxford, PA', - 1717625 => 'Lititz, PA', - 1717626 => 'Lititz, PA', - 1717627 => 'Lititz, PA', - 1717630 => 'Hanover, PA', - 1717632 => 'Hanover, PA', - 1717633 => 'Hanover, PA', - 1717635 => 'Harrisburg, PA', - 1717637 => 'Hanover, PA', - 1717642 => 'Fairfield, PA', - 1717646 => 'Hanover, PA', - 1717647 => 'Tower City, PA', - 1717650 => 'York, PA', - 1717651 => 'Harrisburg, PA', - 1717652 => 'Harrisburg, PA', - 1717653 => 'Mount Joy, PA', - 1717656 => 'Leola, PA', - 1717657 => 'Harrisburg, PA', - 1717664 => 'Manheim, PA', - 1717665 => 'Manheim, PA', - 1717667 => 'Reedsville, PA', - 1717671 => 'Harrisburg, PA', - 1717677 => 'Biglerville, PA', - 1717684 => 'Columbia, PA', - 1717691 => 'Mechanicsburg, PA', - 1717692 => 'Millersburg, PA', - 1717695 => 'Harrisburg, PA', - 1717697 => 'Mechanicsburg, PA', - 1717699 => 'York, PA', - 1717709 => 'Chambersburg, PA', - 1717718 => 'York, PA', - 1717721 => 'Ephrata, PA', - 1717724 => 'Harrisburg, PA', - 1717728 => 'Enola, PA', - 1717732 => 'Enola, PA', - 1717733 => 'Ephrata, PA', - 1717735 => 'Lancaster, PA', - 1717737 => 'Camp Hill, PA', - 1717738 => 'Ephrata, PA', - 1717741 => 'York, PA', - 1717747 => 'York, PA', - 1717749 => 'Waynesboro, PA', - 1717751 => 'York, PA', - 1717755 => 'York, PA', - 1717757 => 'York, PA', - 1717761 => 'Camp Hill, PA', - 1717762 => 'Waynesboro, PA', - 1717763 => 'Camp Hill, PA', - 1717764 => 'York, PA', - 1717765 => 'Waynesboro, PA', - 1717766 => 'Mechanicsburg, PA', - 1717767 => 'York, PA', - 1717771 => 'York, PA', - 1717774 => 'New Cumberland, PA', - 1717776 => 'Newville, PA', - 1717782 => 'Harrisburg, PA', - 1717786 => 'Quarryville, PA', - 1717787 => 'Harrisburg, PA', - 1717789 => 'Loysville, PA', - 1717790 => 'Mechanicsburg, PA', - 1717791 => 'Mechanicsburg, PA', - 1717792 => 'York, PA', - 1717793 => 'York, PA', - 1717795 => 'Mechanicsburg, PA', - 1717796 => 'Mechanicsburg, PA', - 1717812 => 'York, PA', - 1717832 => 'Palmyra, PA', - 1717834 => 'Duncannon, PA', - 1717838 => 'Palmyra, PA', - 1717840 => 'York, PA', - 1717843 => 'York, PA', - 1717845 => 'York, PA', - 1717846 => 'York, PA', - 1717848 => 'York, PA', - 1717849 => 'York, PA', - 1717851 => 'York, PA', - 1717852 => 'York, PA', - 1717854 => 'York, PA', - 1717866 => 'Myerstown, PA', - 1717867 => 'Annville, PA', - 1717896 => 'Halifax, PA', - 1717899 => 'McVeytown, PA', - 1717901 => 'Harrisburg, PA', - 1717909 => 'Harrisburg, PA', - 1717920 => 'Harrisburg, PA', - 1717921 => 'Dauphin, PA', - 1717927 => 'Brogue, PA', - 1717935 => 'Belleville, PA', - 1717944 => 'Middletown, PA', - 1717945 => 'Lancaster, PA', - 1717948 => 'Middletown, PA', - 1717957 => 'Marysville, PA', - 1717964 => 'Mount Gretna, PA', - 1717975 => 'Camp Hill, PA', - 1717993 => 'Stewartstown, PA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1718.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1718.php deleted file mode 100644 index b34540820..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1718.php +++ /dev/null @@ -1,396 +0,0 @@ - 'New York', - 1718206 => 'Jamaica, NY', - 1718209 => 'Brooklyn, NY', - 1718210 => 'Brooklyn, NY', - 1718218 => 'Brooklyn, NY', - 1718220 => 'Bronx, NY', - 1718221 => 'Brooklyn, NY', - 1718222 => 'Brooklyn, NY', - 1718226 => 'Staten Island, NY', - 1718227 => 'Staten Island, NY', - 1718230 => 'Brooklyn, NY', - 1718231 => 'Bronx, NY', - 1718232 => 'Brooklyn, NY', - 1718234 => 'Brooklyn, NY', - 1718235 => 'Brooklyn, NY', - 1718236 => 'Brooklyn, NY', - 1718237 => 'Brooklyn, NY', - 1718238 => 'Brooklyn, NY', - 1718239 => 'Bronx, NY', - 1718240 => 'Brooklyn, NY', - 1718241 => 'Brooklyn, NY', - 1718243 => 'Brooklyn, NY', - 1718244 => 'Jamaica, NY', - 1718245 => 'Brooklyn, NY', - 1718246 => 'Brooklyn, NY', - 1718250 => 'Downtown Brooklyn, Brooklyn, NY', - 1718251 => 'Brooklyn, NY', - 1718252 => 'Brooklyn, NY', - 1718253 => 'Brooklyn, NY', - 1718256 => 'Brooklyn, NY', - 1718257 => 'Brooklyn, NY', - 1718258 => 'Brooklyn, NY', - 1718259 => 'Brooklyn, NY', - 1718260 => 'Brooklyn, NY', - 1718262 => 'Jamaica, NY', - 1718265 => 'Brooklyn, NY', - 1718266 => 'Brooklyn, NY', - 1718270 => 'Brooklyn, NY', - 1718272 => 'Brooklyn, NY', - 1718273 => 'Staten Island, NY', - 1718277 => 'Brooklyn, NY', - 1718282 => 'Brooklyn, NY', - 1718283 => 'Brooklyn, NY', - 1718284 => 'Brooklyn, NY', - 1718287 => 'Brooklyn, NY', - 1718291 => 'Jamaica, NY', - 1718292 => 'Bronx, NY', - 1718293 => 'Bronx, NY', - 1718294 => 'Bronx, NY', - 1718295 => 'Bronx, NY', - 1718297 => 'Jamaica, NY', - 1718298 => 'Jamaica, NY', - 1718299 => 'Bronx, NY', - 1718302 => 'Brooklyn, NY', - 1718317 => 'Staten Island, NY', - 1718319 => 'Bronx, NY', - 1718320 => 'Bronx, NY', - 1718321 => 'Flushing, NY', - 1718324 => 'Bronx, NY', - 1718325 => 'Bronx, NY', - 1718327 => 'Far Rockaway, NY', - 1718328 => 'Bronx, NY', - 1718329 => 'Bronx, NY', - 1718330 => 'Brooklyn, NY', - 1718331 => 'Brooklyn, NY', - 1718332 => 'Brooklyn, NY', - 1718333 => 'Brooklyn, NY', - 1718334 => 'Elmhurst, NY', - 1718336 => 'Brooklyn, NY', - 1718337 => 'Far Rockaway, NY', - 1718338 => 'Brooklyn, NY', - 1718339 => 'Brooklyn, NY', - 1718342 => 'Brooklyn, NY', - 1718345 => 'Brooklyn, NY', - 1718346 => 'Brooklyn, NY', - 1718348 => 'Brooklyn, NY', - 1718349 => 'Brooklyn, NY', - 1718351 => 'Staten Island, NY', - 1718353 => 'Flushing, NY', - 1718356 => 'Staten Island, NY', - 1718358 => 'Flushing, NY', - 1718359 => 'Flushing, NY', - 1718361 => 'Long Island City, NY', - 1718363 => 'Brooklyn, NY', - 1718364 => 'Bronx, NY', - 1718365 => 'Bronx, NY', - 1718367 => 'Bronx, NY', - 1718368 => 'Brooklyn, NY', - 1718369 => 'Brooklyn, NY', - 1718370 => 'Staten Island, NY', - 1718372 => 'Brooklyn, NY', - 1718373 => 'Brooklyn, NY', - 1718375 => 'Brooklyn, NY', - 1718376 => 'Brooklyn, NY', - 1718377 => 'Brooklyn, NY', - 1718378 => 'Bronx, NY', - 1718379 => 'Bronx, NY', - 1718382 => 'Brooklyn, NY', - 1718383 => 'Brooklyn, NY', - 1718384 => 'Brooklyn, NY', - 1718385 => 'Brooklyn, NY', - 1718387 => 'Brooklyn, NY', - 1718388 => 'Brooklyn, NY', - 1718389 => 'Brooklyn, NY', - 1718390 => 'Staten Island, NY', - 1718392 => 'Long Island City, NY', - 1718397 => 'Flushing, NY', - 1718398 => 'Brooklyn, NY', - 1718399 => 'Brooklyn, NY', - 1718401 => 'Bronx, NY', - 1718402 => 'Bronx, NY', - 1718403 => 'Brooklyn, NY', - 1718405 => 'Bronx, NY', - 1718409 => 'Bronx, NY', - 1718410 => 'Bronx, NY', - 1718420 => 'Staten Island, NY', - 1718421 => 'Brooklyn, NY', - 1718422 => 'Brooklyn, NY', - 1718430 => 'Bronx, NY', - 1718431 => 'Brooklyn, NY', - 1718432 => 'Bronx, NY', - 1718433 => 'Long Island City, NY', - 1718434 => 'Brooklyn, NY', - 1718435 => 'Brooklyn, NY', - 1718436 => 'Brooklyn, NY', - 1718437 => 'Brooklyn, NY', - 1718438 => 'Brooklyn, NY', - 1718439 => 'Brooklyn, NY', - 1718442 => 'Staten Island, NY', - 1718443 => 'Brooklyn, NY', - 1718444 => 'Brooklyn, NY', - 1718445 => 'Flushing, NY', - 1718447 => 'Staten Island, NY', - 1718448 => 'Staten Island, NY', - 1718449 => 'Brooklyn, NY', - 1718450 => 'Bronx, NY', - 1718451 => 'Brooklyn, NY', - 1718452 => 'Brooklyn, NY', - 1718453 => 'Brooklyn, NY', - 1718455 => 'Brooklyn, NY', - 1718460 => 'Flushing, NY', - 1718461 => 'Flushing, NY', - 1718462 => 'Brooklyn, NY', - 1718463 => 'Flushing, NY', - 1718466 => 'Bronx, NY', - 1718467 => 'Brooklyn, NY', - 1718469 => 'Brooklyn, NY', - 1718471 => 'Far Rockaway, NY', - 1718472 => 'Long Island City, NY', - 1718477 => 'Staten Island, NY', - 1718482 => 'Long Island City, NY', - 1718483 => 'Brooklyn, NY', - 1718484 => 'Brooklyn, NY', - 1718485 => 'Brooklyn, NY', - 1718486 => 'Brooklyn, NY', - 1718488 => 'Brooklyn, NY', - 1718491 => 'Brooklyn, NY', - 1718492 => 'Brooklyn, NY', - 1718493 => 'Brooklyn, NY', - 1718494 => 'Staten Island, NY', - 1718495 => 'Brooklyn, NY', - 1718498 => 'Brooklyn, NY', - 1718499 => 'Brooklyn, NY', - 1718513 => 'Brooklyn, NY', - 1718515 => 'Bronx, NY', - 1718518 => 'Bronx, NY', - 1718519 => 'Bronx, NY', - 1718522 => 'Brooklyn, NY', - 1718523 => 'Jamaica, NY', - 1718525 => 'Jamaica, NY', - 1718526 => 'Jamaica, NY', - 1718527 => 'Jamaica, NY', - 1718531 => 'Brooklyn, NY', - 1718537 => 'Bronx, NY', - 1718538 => 'Bronx, NY', - 1718539 => 'Flushing, NY', - 1718542 => 'Bronx, NY', - 1718543 => 'Bronx, NY', - 1718547 => 'Bronx, NY', - 1718548 => 'Bronx, NY', - 1718549 => 'Bronx, NY', - 1718552 => 'Brooklyn, NY', - 1718553 => 'Jamaica, NY', - 1718556 => 'Staten Island, NY', - 1718558 => 'Jamaica, NY', - 1718561 => 'Bronx, NY', - 1718562 => 'Bronx, NY', - 1718563 => 'Bronx, NY', - 1718567 => 'Brooklyn, NY', - 1718573 => 'Brooklyn, NY', - 1718574 => 'Brooklyn, NY', - 1718579 => 'Bronx, NY', - 1718583 => 'Bronx, NY', - 1718584 => 'Bronx, NY', - 1718585 => 'Bronx, NY', - 1718588 => 'Bronx, NY', - 1718589 => 'Bronx, NY', - 1718590 => 'Bronx, NY', - 1718592 => 'Flushing, NY', - 1718596 => 'Brooklyn, NY', - 1718597 => 'Bronx, NY', - 1718599 => 'Brooklyn, NY', - 1718601 => 'Bronx, NY', - 1718602 => 'Brooklyn, NY', - 1718604 => 'Brooklyn, NY', - 1718605 => 'Staten Island, NY', - 1718608 => 'Staten Island, NY', - 1718615 => 'Brooklyn, NY', - 1718616 => 'Brooklyn, NY', - 1718617 => 'Bronx, NY', - 1718618 => 'Bronx, NY', - 1718620 => 'Bronx, NY', - 1718621 => 'Brooklyn, NY', - 1718622 => 'Brooklyn, NY', - 1718623 => 'Brooklyn, NY', - 1718624 => 'Brooklyn, NY', - 1718625 => 'Brooklyn, NY', - 1718627 => 'Brooklyn, NY', - 1718629 => 'Brooklyn, NY', - 1718630 => 'Brooklyn, NY', - 1718633 => 'Brooklyn, NY', - 1718636 => 'Brooklyn, NY', - 1718638 => 'Brooklyn, NY', - 1718642 => 'Brooklyn, NY', - 1718643 => 'Brooklyn, NY', - 1718645 => 'Brooklyn, NY', - 1718646 => 'Brooklyn, NY', - 1718647 => 'Brooklyn, NY', - 1718648 => 'Brooklyn, NY', - 1718649 => 'Brooklyn, NY', - 1718652 => 'Bronx, NY', - 1718653 => 'Bronx, NY', - 1718654 => 'Bronx, NY', - 1718655 => 'Bronx, NY', - 1718656 => 'Jamaica, NY', - 1718657 => 'Jamaica, NY', - 1718658 => 'Jamaica, NY', - 1718661 => 'Flushing, NY', - 1718665 => 'Bronx, NY', - 1718667 => 'Staten Island, NY', - 1718668 => 'Staten Island, NY', - 1718670 => 'Flushing, NY', - 1718676 => 'Brooklyn, NY', - 1718677 => 'Brooklyn, NY', - 1718680 => 'Brooklyn, NY', - 1718681 => 'Bronx, NY', - 1718684 => 'Bronx, NY', - 1718686 => 'Brooklyn, NY', - 1718692 => 'Brooklyn, NY', - 1718693 => 'Brooklyn, NY', - 1718698 => 'Staten Island, NY', - 1718703 => 'Brooklyn, NY', - 1718707 => 'Long Island City, NY', - 1718708 => 'Bronx, NY', - 1718714 => 'Brooklyn, NY', - 1718716 => 'Bronx, NY', - 1718720 => 'Staten Island, NY', - 1718722 => 'Brooklyn, NY', - 1718723 => 'Jamaica, NY', - 1718725 => 'Jamaica, NY', - 1718727 => 'Staten Island, NY', - 1718729 => 'Long Island City, NY', - 1718731 => 'Bronx, NY', - 1718733 => 'Bronx, NY', - 1718735 => 'Brooklyn, NY', - 1718739 => 'Jamaica, NY', - 1718741 => 'Bronx, NY', - 1718742 => 'Bronx, NY', - 1718743 => 'Brooklyn, NY', - 1718745 => 'Brooklyn, NY', - 1718748 => 'Brooklyn, NY', - 1718752 => 'Long Island City, NY', - 1718756 => 'Brooklyn, NY', - 1718758 => 'Brooklyn, NY', - 1718759 => 'Brooklyn, NY', - 1718761 => 'Staten Island, NY', - 1718762 => 'Flushing, NY', - 1718763 => 'Brooklyn, NY', - 1718765 => 'Brooklyn, NY', - 1718768 => 'Brooklyn, NY', - 1718769 => 'Brooklyn, NY', - 1718771 => 'Brooklyn, NY', - 1718773 => 'Brooklyn, NY', - 1718774 => 'Brooklyn, NY', - 1718778 => 'Brooklyn, NY', - 1718780 => 'Brooklyn, NY', - 1718782 => 'Brooklyn, NY', - 1718783 => 'Brooklyn, NY', - 1718784 => 'Long Island City, NY', - 1718786 => 'Long Island City, NY', - 1718787 => 'Brooklyn, NY', - 1718788 => 'Brooklyn, NY', - 1718789 => 'Brooklyn, NY', - 1718792 => 'Bronx, NY', - 1718794 => 'Bronx, NY', - 1718796 => 'Bronx, NY', - 1718797 => 'Brooklyn, NY', - 1718798 => 'Bronx, NY', - 1718802 => 'Brooklyn, NY', - 1718815 => 'Staten Island, NY', - 1718816 => 'Staten Island, NY', - 1718818 => 'Staten Island, NY', - 1718822 => 'Bronx, NY', - 1718823 => 'Bronx, NY', - 1718824 => 'Bronx, NY', - 1718826 => 'Brooklyn, NY', - 1718827 => 'Brooklyn, NY', - 1718828 => 'Bronx, NY', - 1718829 => 'Bronx, NY', - 1718832 => 'Brooklyn, NY', - 1718833 => 'Brooklyn, NY', - 1718834 => 'Brooklyn, NY', - 1718836 => 'Brooklyn, NY', - 1718837 => 'Brooklyn, NY', - 1718842 => 'Bronx, NY', - 1718851 => 'Brooklyn, NY', - 1718852 => 'Brooklyn, NY', - 1718853 => 'Brooklyn, NY', - 1718854 => 'Brooklyn, NY', - 1718855 => 'Brooklyn, NY', - 1718856 => 'Brooklyn, NY', - 1718857 => 'Brooklyn, NY', - 1718858 => 'Brooklyn, NY', - 1718859 => 'Brooklyn, NY', - 1718860 => 'Bronx, NY', - 1718861 => 'Bronx, NY', - 1718863 => 'Bronx, NY', - 1718868 => 'Far Rockaway, NY', - 1718871 => 'Brooklyn, NY', - 1718875 => 'Brooklyn, NY', - 1718876 => 'Staten Island, NY', - 1718881 => 'Bronx, NY', - 1718882 => 'Bronx, NY', - 1718883 => 'Jamaica, NY', - 1718884 => 'Bronx, NY', - 1718885 => 'Bronx, NY', - 1718886 => 'Flushing, NY', - 1718888 => 'Flushing, NY', - 1718891 => 'Brooklyn, NY', - 1718892 => 'Bronx, NY', - 1718893 => 'Bronx, NY', - 1718901 => 'Bronx, NY', - 1718904 => 'Bronx, NY', - 1718918 => 'Bronx, NY', - 1718919 => 'Brooklyn, NY', - 1718920 => 'Bronx, NY', - 1718921 => 'Brooklyn, NY', - 1718922 => 'Brooklyn, NY', - 1718927 => 'Brooklyn, NY', - 1718928 => 'Brooklyn, NY', - 1718931 => 'Bronx, NY', - 1718933 => 'Bronx, NY', - 1718934 => 'Brooklyn, NY', - 1718935 => 'Brooklyn, NY', - 1718937 => 'Long Island City, NY', - 1718939 => 'Flushing, NY', - 1718940 => 'Brooklyn, NY', - 1718941 => 'Brooklyn, NY', - 1718944 => 'Bronx, NY', - 1718946 => 'Brooklyn, NY', - 1718948 => 'Staten Island, NY', - 1718951 => 'Brooklyn, NY', - 1718953 => 'Brooklyn, NY', - 1718960 => 'Bronx, NY', - 1718961 => 'Flushing, NY', - 1718963 => 'Brooklyn, NY', - 1718965 => 'Brooklyn, NY', - 1718966 => 'Staten Island, NY', - 1718967 => 'Staten Island, NY', - 1718968 => 'Brooklyn, NY', - 1718972 => 'Brooklyn, NY', - 1718975 => 'Brooklyn, NY', - 1718978 => 'Jamaica, NY', - 1718979 => 'Staten Island, NY', - 1718980 => 'Staten Island, NY', - 1718981 => 'Staten Island, NY', - 1718982 => 'Staten Island, NY', - 1718983 => 'Staten Island, NY', - 1718984 => 'Staten Island, NY', - 1718987 => 'Staten Island, NY', - 1718990 => 'Jamaica, NY', - 1718991 => 'Bronx, NY', - 1718992 => 'Bronx, NY', - 1718993 => 'Bronx, NY', - 1718994 => 'Bronx, NY', - 1718995 => 'Jamaica, NY', - 1718996 => 'Brooklyn, NY', - 1718998 => 'Brooklyn, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1719.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1719.php deleted file mode 100644 index 08df89ef4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1719.php +++ /dev/null @@ -1,163 +0,0 @@ - 'Colorado', - 1719203 => 'Colorado Springs, CO', - 1719219 => 'Colorado Springs, CO', - 1719227 => 'Colorado Springs, CO', - 1719229 => 'Colorado Springs, CO', - 1719231 => 'Colorado Springs, CO', - 1719254 => 'Rocky Ford, CO', - 1719256 => 'Crestone, CO', - 1719260 => 'Colorado Springs, CO', - 1719263 => 'Fowler, CO', - 1719264 => 'Colorado Springs, CO', - 1719265 => 'Colorado Springs, CO', - 1719266 => 'Colorado Springs, CO', - 1719267 => 'Ordway, CO', - 1719268 => 'Colorado Springs, CO', - 1719269 => 'Cañon City, CO', - 1719274 => 'La Jara, CO', - 1719275 => 'Cañon City, CO', - 1719276 => 'Cañon City, CO', - 1719282 => 'Colorado Springs, CO', - 1719302 => 'Colorado Springs, CO', - 1719314 => 'Colorado Springs, CO', - 1719328 => 'Colorado Springs, CO', - 1719331 => 'Colorado Springs, CO', - 1719333 => 'Air Force Academy, CO', - 1719336 => 'Lamar, CO', - 1719338 => 'Colorado Springs, CO', - 1719339 => 'Colorado Springs, CO', - 1719344 => 'Colorado Springs, CO', - 1719346 => 'Burlington, CO', - 1719347 => 'Calhan, CO', - 1719357 => 'Colorado Springs, CO', - 1719358 => 'Colorado Springs, CO', - 1719359 => 'Colorado Springs, CO', - 1719365 => 'Colorado Springs, CO', - 1719372 => 'Penrose, CO', - 1719375 => 'Colorado Springs, CO', - 1719376 => 'Antonito, CO', - 1719380 => 'Colorado Springs, CO', - 1719382 => 'Fountain, CO', - 1719383 => 'La Junta, CO', - 1719384 => 'La Junta, CO', - 1719385 => 'Colorado Springs, CO', - 1719387 => 'Colorado Springs, CO', - 1719390 => 'Colorado Springs, CO', - 1719391 => 'Colorado Springs, CO', - 1719392 => 'Colorado Springs, CO', - 1719395 => 'Buena Vista, CO', - 1719434 => 'Colorado Springs, CO', - 1719438 => 'Eads, CO', - 1719442 => 'Colorado Springs, CO', - 1719444 => 'Colorado Springs, CO', - 1719447 => 'Colorado Springs, CO', - 1719448 => 'Colorado Springs, CO', - 1719456 => 'Las Animas, CO', - 1719465 => 'Colorado Springs, CO', - 1719471 => 'Colorado Springs, CO', - 1719473 => 'Colorado Springs, CO', - 1719475 => 'Colorado Springs, CO', - 1719477 => 'Colorado Springs, CO', - 1719481 => 'Monument, CO', - 1719486 => 'Leadville, CO', - 1719488 => 'Monument, CO', - 1719495 => 'Colorado Springs, CO', - 1719499 => 'Colorado Springs, CO', - 1719520 => 'Colorado Springs, CO', - 1719522 => 'Colorado Springs, CO', - 1719523 => 'Springfield, CO', - 1719526 => 'Fort Carson, CO', - 1719527 => 'Colorado Springs, CO', - 1719528 => 'Colorado Springs, CO', - 1719530 => 'Salida, CO', - 1719531 => 'Colorado Springs, CO', - 1719532 => 'Colorado Springs, CO', - 1719535 => 'Colorado Springs, CO', - 1719537 => 'Holly, CO', - 1719538 => 'Colorado Springs, CO', - 1719539 => 'Salida, CO', - 1719540 => 'Colorado Springs, CO', - 1719542 => 'Pueblo, CO', - 1719543 => 'Pueblo, CO', - 1719544 => 'Pueblo, CO', - 1719545 => 'Pueblo, CO', - 1719546 => 'Pueblo, CO', - 1719547 => 'Pueblo West, CO', - 1719548 => 'Colorado Springs, CO', - 1719550 => 'Colorado Springs, CO', - 1719553 => 'Pueblo, CO', - 1719556 => 'Colorado Springs, CO', - 1719560 => 'Pueblo, CO', - 1719561 => 'Pueblo, CO', - 1719562 => 'Pueblo, CO', - 1719564 => 'Pueblo, CO', - 1719566 => 'Pueblo, CO', - 1719570 => 'Colorado Springs, CO', - 1719572 => 'Colorado Springs, CO', - 1719573 => 'Colorado Springs, CO', - 1719574 => 'Colorado Springs, CO', - 1719575 => 'Colorado Springs, CO', - 1719576 => 'Colorado Springs, CO', - 1719577 => 'Colorado Springs, CO', - 1719578 => 'Colorado Springs, CO', - 1719579 => 'Colorado Springs, CO', - 1719583 => 'Pueblo, CO', - 1719584 => 'Pueblo, CO', - 1719587 => 'Alamosa, CO', - 1719589 => 'Alamosa, CO', - 1719590 => 'Colorado Springs, CO', - 1719591 => 'Colorado Springs, CO', - 1719592 => 'Colorado Springs, CO', - 1719593 => 'Colorado Springs, CO', - 1719594 => 'Colorado Springs, CO', - 1719596 => 'Colorado Springs, CO', - 1719597 => 'Colorado Springs, CO', - 1719598 => 'Colorado Springs, CO', - 1719599 => 'Colorado Springs, CO', - 1719622 => 'Colorado Springs, CO', - 1719623 => 'Colorado Springs, CO', - 1719630 => 'Colorado Springs, CO', - 1719632 => 'Colorado Springs, CO', - 1719633 => 'Colorado Springs, CO', - 1719634 => 'Colorado Springs, CO', - 1719635 => 'Colorado Springs, CO', - 1719636 => 'Colorado Springs, CO', - 1719637 => 'Colorado Springs, CO', - 1719638 => 'Colorado Springs, CO', - 1719641 => 'Colorado Springs, CO', - 1719647 => 'Pueblo West, CO', - 1719657 => 'Del Norte, CO', - 1719658 => 'Creede, CO', - 1719660 => 'Colorado Springs, CO', - 1719667 => 'Colorado Springs, CO', - 1719685 => 'Manitou Springs, CO', - 1719686 => 'Woodland Park, CO', - 1719687 => 'Woodland Park, CO', - 1719689 => 'Cripple Creek, CO', - 1719738 => 'Walsenburg, CO', - 1719742 => 'La Veta, CO', - 1719748 => 'Florissant, CO', - 1719749 => 'Peyton, CO', - 1719754 => 'Center, CO', - 1719767 => 'Cheyenne Wells, CO', - 1719775 => 'Limon, CO', - 1719776 => 'Colorado Springs, CO', - 1719783 => 'Westcliffe, CO', - 1719784 => 'Florence, CO', - 1719836 => 'Fairplay, CO', - 1719845 => 'Trinidad, CO', - 1719846 => 'Trinidad, CO', - 1719852 => 'Monte Vista, CO', - 1719873 => 'South Fork, CO', - 1719884 => 'Colorado Springs, CO', - 1719924 => 'Pueblo, CO', - 1719948 => 'Pueblo, CO', - 1719955 => 'Colorado Springs, CO', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1720.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1720.php deleted file mode 100644 index 3fcc2a692..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1720.php +++ /dev/null @@ -1,36 +0,0 @@ - 'Colorado', - 1720283 => 'Littleton, CO', - 1720344 => 'Highlands Ranch, CO', - 1720348 => 'Highlands Ranch, CO', - 1720406 => 'Boulder, CO', - 1720424 => 'Denver, CO', - 1720494 => 'Longmont, CO', - 1720535 => 'Aurora, CO', - 1720565 => 'Boulder, CO', - 1720570 => 'Denver, CO', - 1720685 => 'Brighton, CO', - 1720733 => 'Castle Rock, CO', - 1720748 => 'Aurora, CO', - 1720777 => 'Aurora, CO', - 1720842 => 'Parker, CO', - 1720848 => 'Aurora, CO', - 1720851 => 'Parker, CO', - 1720855 => 'Denver, CO', - 1720859 => 'Aurora, CO', - 1720865 => 'Denver, CO', - 1720870 => 'Aurora, CO', - 1720887 => 'Broomfield, CO', - 1720904 => 'Denver, CO', - 1720913 => 'Denver, CO', - 1720922 => 'Littleton, CO', - 1720932 => 'Denver, CO', - 1720941 => 'Denver, CO', - 1720981 => 'Littleton, CO', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1724.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1724.php deleted file mode 100644 index bde1d6485..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1724.php +++ /dev/null @@ -1,153 +0,0 @@ - 'Pennsylvania', - 1724222 => 'Washington, PA', - 1724223 => 'Washington, PA', - 1724225 => 'Washington, PA', - 1724226 => 'Natrona Heights, PA', - 1724228 => 'Washington, PA', - 1724229 => 'Washington, PA', - 1724238 => 'Ligonier, PA', - 1724239 => 'Bentleyville, PA', - 1724253 => 'Hadley, PA', - 1724254 => 'Clymer, PA', - 1724258 => 'Monongahela, PA', - 1724266 => 'Ambridge, PA', - 1724282 => 'Butler, PA', - 1724283 => 'Butler, PA', - 1724284 => 'Butler, PA', - 1724285 => 'Butler, PA', - 1724287 => 'Butler, PA', - 1724295 => 'Freeport, PA', - 1724297 => 'Worthington, PA', - 1724334 => 'New Kensington, PA', - 1724335 => 'New Kensington, PA', - 1724337 => 'New Kensington, PA', - 1724339 => 'New Kensington, PA', - 1724342 => 'Hermitage, PA', - 1724346 => 'Hermitage, PA', - 1724347 => 'Hermitage, PA', - 1724348 => 'Finleyville, PA', - 1724349 => 'Indiana, PA', - 1724352 => 'Saxonburg, PA', - 1724353 => 'Sarver, PA', - 1724356 => 'Hickory, PA', - 1724357 => 'Indiana, PA', - 1724368 => 'Portersville, PA', - 1724375 => 'Aliquippa, PA', - 1724376 => 'Sandy Lake, PA', - 1724378 => 'Aliquippa, PA', - 1724379 => 'Donora, PA', - 1724430 => 'Uniontown, PA', - 1724431 => 'Butler, PA', - 1724437 => 'Uniontown, PA', - 1724438 => 'Uniontown, PA', - 1724439 => 'Uniontown, PA', - 1724443 => 'Gibsonia, PA', - 1724444 => 'Gibsonia, PA', - 1724445 => 'Chicora, PA', - 1724449 => 'Gibsonia, PA', - 1724452 => 'Zelienople, PA', - 1724458 => 'Grove City, PA', - 1724459 => 'Blairsville, PA', - 1724463 => 'Indiana, PA', - 1724465 => 'Indiana, PA', - 1724468 => 'Delmont, PA', - 1724475 => 'Fredonia, PA', - 1724478 => 'Apollo, PA', - 1724479 => 'Homer City, PA', - 1724482 => 'Butler, PA', - 1724483 => 'Charleroi, PA', - 1724489 => 'Charleroi, PA', - 1724523 => 'Jeannette, PA', - 1724527 => 'Jeannette, PA', - 1724528 => 'West Middlesex, PA', - 1724532 => 'Latrobe, PA', - 1724537 => 'Latrobe, PA', - 1724538 => 'Evans City, PA', - 1724539 => 'Latrobe, PA', - 1724542 => 'Mount Pleasant, PA', - 1724543 => 'Kittanning, PA', - 1724545 => 'Kittanning, PA', - 1724547 => 'Mount Pleasant, PA', - 1724548 => 'Kittanning, PA', - 1724567 => 'Vandergrift, PA', - 1724568 => 'Vandergrift, PA', - 1724583 => 'Masontown, PA', - 1724586 => 'Butler, PA', - 1724588 => 'Greenville, PA', - 1724625 => 'Mars, PA', - 1724626 => 'Connellsville, PA', - 1724627 => 'Waynesburg, PA', - 1724628 => 'Connellsville, PA', - 1724639 => 'Saltsburg, PA', - 1724643 => 'Midland, PA', - 1724652 => 'New Castle, PA', - 1724654 => 'New Castle, PA', - 1724656 => 'New Castle, PA', - 1724657 => 'New Castle, PA', - 1724658 => 'New Castle, PA', - 1724662 => 'Mercer, PA', - 1724663 => 'Claysville, PA', - 1724668 => 'New Alexandria, PA', - 1724684 => 'Monessen, PA', - 1724693 => 'Oakdale, PA', - 1724694 => 'Derry, PA', - 1724695 => 'Imperial, PA', - 1724727 => 'Apollo, PA', - 1724735 => 'Harrisville, PA', - 1724736 => 'Perryopolis, PA', - 1724743 => 'Canonsburg, PA', - 1724745 => 'Canonsburg, PA', - 1724746 => 'Canonsburg, PA', - 1724748 => 'Grove City, PA', - 1724752 => 'Ellwood City, PA', - 1724758 => 'Ellwood City, PA', - 1724763 => 'Ford City, PA', - 1724773 => 'Beaver, PA', - 1724776 => 'Cranberry Twp, PA', - 1724785 => 'Brownsville, PA', - 1724794 => 'Slippery Rock, PA', - 1724830 => 'Greensburg, PA', - 1724832 => 'Greensburg, PA', - 1724834 => 'Greensburg, PA', - 1724836 => 'Greensburg, PA', - 1724837 => 'Greensburg, PA', - 1724838 => 'Greensburg, PA', - 1724843 => 'Beaver Falls, PA', - 1724845 => 'Leechburg, PA', - 1724846 => 'Beaver Falls, PA', - 1724847 => 'Beaver Falls, PA', - 1724850 => 'Greensburg, PA', - 1724852 => 'Waynesburg, PA', - 1724853 => 'Greensburg, PA', - 1724861 => 'Irwin, PA', - 1724863 => 'Irwin, PA', - 1724864 => 'Irwin, PA', - 1724865 => 'Prospect, PA', - 1724867 => 'Emlenton, PA', - 1724869 => 'Baden, PA', - 1724872 => 'West Newton, PA', - 1724873 => 'Canonsburg, PA', - 1724887 => 'Scottdale, PA', - 1724898 => 'Valencia, PA', - 1724899 => 'Clinton, PA', - 1724924 => 'New Castle, PA', - 1724926 => 'McDonald, PA', - 1724929 => 'Belle Vernon, PA', - 1724932 => 'Jamestown, PA', - 1724933 => 'Wexford, PA', - 1724934 => 'Wexford, PA', - 1724935 => 'Wexford, PA', - 1724940 => 'Wexford, PA', - 1724946 => 'New Wilmington, PA', - 1724947 => 'Burgettstown, PA', - 1724962 => 'Sharpsville, PA', - 1724966 => 'Carmichaels, PA', - 1724981 => 'Hermitage, PA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1725.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1725.php deleted file mode 100644 index fcbeedced..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1725.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Nevada', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1727.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1727.php deleted file mode 100644 index f42b10494..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1727.php +++ /dev/null @@ -1,130 +0,0 @@ - 'Florida', - 1727298 => 'Clearwater, FL', - 1727321 => 'St. Petersburg, FL', - 1727322 => 'St. Petersburg, FL', - 1727323 => 'St. Petersburg, FL', - 1727327 => 'St. Petersburg, FL', - 1727328 => 'St. Petersburg, FL', - 1727341 => 'St. Petersburg, FL', - 1727343 => 'St. Petersburg, FL', - 1727344 => 'St. Petersburg, FL', - 1727345 => 'St. Petersburg, FL', - 1727347 => 'St. Petersburg, FL', - 1727363 => 'St. Pete Beach, FL', - 1727372 => 'New Port Richey, FL', - 1727375 => 'New Port Richey, FL', - 1727376 => 'New Port Richey, FL', - 1727381 => 'St. Petersburg, FL', - 1727384 => 'St. Petersburg, FL', - 1727392 => 'Seminole, FL', - 1727441 => 'Clearwater, FL', - 1727442 => 'Clearwater, FL', - 1727443 => 'Clearwater, FL', - 1727446 => 'Clearwater, FL', - 1727447 => 'Clearwater, FL', - 1727449 => 'Clearwater, FL', - 1727461 => 'Clearwater, FL', - 1727462 => 'Clearwater, FL', - 1727464 => 'Clearwater, FL', - 1727466 => 'Clearwater, FL', - 1727467 => 'Clearwater, FL', - 1727502 => 'St. Petersburg, FL', - 1727507 => 'Clearwater, FL', - 1727518 => 'Largo, FL', - 1727520 => 'St. Petersburg, FL', - 1727521 => 'St. Petersburg, FL', - 1727522 => 'St. Petersburg, FL', - 1727524 => 'Clearwater, FL', - 1727525 => 'St. Petersburg, FL', - 1727526 => 'St. Petersburg, FL', - 1727527 => 'St. Petersburg, FL', - 1727528 => 'St. Petersburg, FL', - 1727532 => 'Clearwater, FL', - 1727538 => 'Clearwater, FL', - 1727541 => 'Pinellas Park, FL', - 1727544 => 'Pinellas Park, FL', - 1727546 => 'Pinellas Park, FL', - 1727548 => 'Pinellas Park, FL', - 1727559 => 'Largo, FL', - 1727561 => 'Clearwater, FL', - 1727562 => 'Clearwater, FL', - 1727571 => 'Clearwater, FL', - 1727572 => 'Clearwater, FL', - 1727573 => 'Clearwater, FL', - 1727576 => 'St. Petersburg, FL', - 1727577 => 'St. Petersburg, FL', - 1727578 => 'St. Petersburg, FL', - 1727579 => 'St. Petersburg, FL', - 1727581 => 'Largo, FL', - 1727584 => 'Largo, FL', - 1727585 => 'Largo, FL', - 1727586 => 'Largo, FL', - 1727587 => 'Largo, FL', - 1727588 => 'Largo, FL', - 1727595 => 'Largo, FL', - 1727596 => 'Largo, FL', - 1727669 => 'Clearwater, FL', - 1727712 => 'Clearwater, FL', - 1727723 => 'Clearwater, FL', - 1727724 => 'Clearwater, FL', - 1727725 => 'Clearwater, FL', - 1727726 => 'Clearwater, FL', - 1727733 => 'Dunedin, FL', - 1727734 => 'Dunedin, FL', - 1727736 => 'Dunedin, FL', - 1727738 => 'Dunedin, FL', - 1727767 => 'St. Petersburg, FL', - 1727771 => 'Palm Harbor, FL', - 1727772 => 'Palm Harbor, FL', - 1727773 => 'Palm Harbor, FL', - 1727781 => 'Palm Harbor, FL', - 1727784 => 'Palm Harbor, FL', - 1727785 => 'Palm Harbor, FL', - 1727786 => 'Palm Harbor, FL', - 1727787 => 'Palm Harbor, FL', - 1727789 => 'Palm Harbor, FL', - 1727791 => 'Clearwater, FL', - 1727796 => 'Clearwater, FL', - 1727797 => 'Clearwater, FL', - 1727799 => 'Clearwater, FL', - 1727815 => 'New Port Richey, FL', - 1727819 => 'Hudson, FL', - 1727820 => 'St. Petersburg, FL', - 1727821 => 'St. Petersburg, FL', - 1727822 => 'St. Petersburg, FL', - 1727823 => 'St. Petersburg, FL', - 1727824 => 'St. Petersburg, FL', - 1727825 => 'St. Petersburg, FL', - 1727827 => 'St. Petersburg, FL', - 1727842 => 'New Port Richey, FL', - 1727857 => 'Hudson, FL', - 1727861 => 'Hudson, FL', - 1727862 => 'Hudson, FL', - 1727863 => 'Hudson, FL', - 1727864 => 'St. Petersburg, FL', - 1727866 => 'St. Petersburg, FL', - 1727867 => 'St. Petersburg, FL', - 1727868 => 'Hudson, FL', - 1727869 => 'Hudson, FL', - 1727893 => 'St. Petersburg, FL', - 1727894 => 'St. Petersburg, FL', - 1727895 => 'St. Petersburg, FL', - 1727896 => 'St. Petersburg, FL', - 1727898 => 'St. Petersburg, FL', - 1727934 => 'Tarpon Springs, FL', - 1727937 => 'Tarpon Springs, FL', - 1727938 => 'Tarpon Springs, FL', - 1727939 => 'Tarpon Springs, FL', - 1727940 => 'Tarpon Springs, FL', - 1727942 => 'Tarpon Springs, FL', - 1727943 => 'Tarpon Springs, FL', - 1727944 => 'Tarpon Springs, FL', - 1727945 => 'Tarpon Springs, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1731.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1731.php deleted file mode 100644 index ae9eeed0b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1731.php +++ /dev/null @@ -1,67 +0,0 @@ - 'Tennessee', - 1731235 => 'Greenfield, TN', - 1731253 => 'Tiptonville, TN', - 1731256 => 'Jackson, TN', - 1731285 => 'Dyersburg, TN', - 1731286 => 'Dyersburg, TN', - 1731287 => 'Dyersburg, TN', - 1731288 => 'Dyersburg, TN', - 1731300 => 'Jackson, TN', - 1731352 => 'McKenzie, TN', - 1731364 => 'Dresden, TN', - 1731376 => 'Middleton, TN', - 1731422 => 'Jackson, TN', - 1731423 => 'Jackson, TN', - 1731424 => 'Jackson, TN', - 1731425 => 'Jackson, TN', - 1731427 => 'Jackson, TN', - 1731479 => 'South Fulton, TN', - 1731512 => 'Jackson, TN', - 1731536 => 'Troy, TN', - 1731541 => 'Jackson, TN', - 1731549 => 'Scotts Hill, TN', - 1731584 => 'Camden, TN', - 1731587 => 'Martin, TN', - 1731588 => 'Martin, TN', - 1731627 => 'Newbern, TN', - 1731632 => 'Adamsville, TN', - 1731635 => 'Ripley, TN', - 1731641 => 'Paris, TN', - 1731642 => 'Paris, TN', - 1731644 => 'Paris, TN', - 1731645 => 'Selmer, TN', - 1731658 => 'Bolivar, TN', - 1731660 => 'Jackson, TN', - 1731661 => 'Jackson, TN', - 1731663 => 'Bells, TN', - 1731664 => 'Jackson, TN', - 1731668 => 'Jackson, TN', - 1731686 => 'Milan, TN', - 1731689 => 'Counce, TN', - 1731692 => 'Dyer, TN', - 1731696 => 'Alamo, TN', - 1731736 => 'Jackson, TN', - 1731772 => 'Brownsville, TN', - 1731783 => 'Medina, TN', - 1731784 => 'Humboldt, TN', - 1731836 => 'Halls, TN', - 1731847 => 'Parsons, TN', - 1731852 => 'Decaturville, TN', - 1731855 => 'Trenton, TN', - 1731884 => 'Union City, TN', - 1731885 => 'Union City, TN', - 1731925 => 'Savannah, TN', - 1731926 => 'Savannah, TN', - 1731935 => 'Jackson, TN', - 1731967 => 'Lexington, TN', - 1731968 => 'Lexington, TN', - 1731986 => 'Huntingdon, TN', - 1731989 => 'Henderson, TN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1732.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1732.php deleted file mode 100644 index ce562b0a8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1732.php +++ /dev/null @@ -1,127 +0,0 @@ - 'New Jersey', - 1732202 => 'Brick, NJ', - 1732219 => 'Red Bank, NJ', - 1732222 => 'Long Branch, NJ', - 1732223 => 'Manasquan, NJ', - 1732225 => 'Edison, NJ', - 1732229 => 'Long Branch, NJ', - 1732235 => 'New Brunswick, NJ', - 1732237 => 'Bayville, NJ', - 1732238 => 'East Brunswick, NJ', - 1732240 => 'Toms River, NJ', - 1732244 => 'Toms River, NJ', - 1732248 => 'Edison, NJ', - 1732254 => 'East Brunswick, NJ', - 1732255 => 'Toms River, NJ', - 1732257 => 'East Brunswick, NJ', - 1732262 => 'Brick, NJ', - 1732269 => 'Bayville, NJ', - 1732270 => 'Toms River, NJ', - 1732279 => 'Toms River, NJ', - 1732281 => 'Toms River, NJ', - 1732283 => 'Iselin, NJ', - 1732286 => 'Toms River, NJ', - 1732287 => 'Edison, NJ', - 1732288 => 'Toms River, NJ', - 1732290 => 'Matawan, NJ', - 1732292 => 'Manasquan, NJ', - 1732321 => 'Edison, NJ', - 1732324 => 'Perth Amboy, NJ', - 1732326 => 'Woodbridge Township, NJ', - 1732333 => 'Freehold, NJ', - 1732341 => 'Toms River, NJ', - 1732346 => 'Edison, NJ', - 1732349 => 'Toms River, NJ', - 1732350 => 'Whiting, NJ', - 1732363 => 'Lakewood Township, NJ', - 1732364 => 'Lakewood Township, NJ', - 1732367 => 'Lakewood Township, NJ', - 1732376 => 'Perth Amboy, NJ', - 1732380 => 'Eatontown, NJ', - 1732389 => 'Eatontown, NJ', - 1732390 => 'East Brunswick, NJ', - 1732404 => 'Iselin, NJ', - 1732432 => 'East Brunswick, NJ', - 1732441 => 'Matawan, NJ', - 1732442 => 'Perth Amboy, NJ', - 1732451 => 'Brick, NJ', - 1732452 => 'Edison, NJ', - 1732458 => 'Brick, NJ', - 1732463 => 'Piscataway Township, NJ', - 1732473 => 'Toms River, NJ', - 1732477 => 'Brick, NJ', - 1732494 => 'Edison, NJ', - 1732505 => 'Toms River, NJ', - 1732506 => 'Toms River, NJ', - 1732521 => 'Jamesburg, NJ', - 1732528 => 'Manasquan, NJ', - 1732541 => 'Carteret, NJ', - 1732542 => 'Eatontown, NJ', - 1732544 => 'Eatontown, NJ', - 1732549 => 'Edison, NJ', - 1732557 => 'Toms River, NJ', - 1732562 => 'Piscataway Township, NJ', - 1732566 => 'Matawan, NJ', - 1732572 => 'Edison, NJ', - 1732578 => 'Eatontown, NJ', - 1732583 => 'Matawan, NJ', - 1732591 => 'Morganville, NJ', - 1732606 => 'Bayville, NJ', - 1732607 => 'Old Bridge Township, NJ', - 1732608 => 'Toms River, NJ', - 1732613 => 'East Brunswick, NJ', - 1732615 => 'Middletown, NJ', - 1732634 => 'Woodbridge Township, NJ', - 1732636 => 'Woodbridge Township, NJ', - 1732650 => 'Edison, NJ', - 1732651 => 'East Brunswick, NJ', - 1732657 => 'Manchester Township, NJ', - 1732662 => 'Edison, NJ', - 1732671 => 'Middletown, NJ', - 1732679 => 'Old Bridge Township, NJ', - 1732681 => 'Belmar, NJ', - 1732695 => 'Ocean Township, NJ', - 1732698 => 'East Brunswick, NJ', - 1732706 => 'Middletown, NJ', - 1732722 => 'Manasquan, NJ', - 1732728 => 'Long Branch, NJ', - 1732730 => 'Lakewood Township, NJ', - 1732736 => 'Toms River, NJ', - 1732744 => 'Edison, NJ', - 1732745 => 'New Brunswick, NJ', - 1732776 => 'Neptune Township, NJ', - 1732777 => 'Edison, NJ', - 1732785 => 'Brick, NJ', - 1732797 => 'Toms River, NJ', - 1732818 => 'Toms River, NJ', - 1732826 => 'Perth Amboy, NJ', - 1732828 => 'New Brunswick, NJ', - 1732833 => 'Jackson, NJ', - 1732836 => 'Brick, NJ', - 1732840 => 'Brick, NJ', - 1732870 => 'Long Branch, NJ', - 1732873 => 'Somerset, NJ', - 1732886 => 'Lakewood Township, NJ', - 1732901 => 'Lakewood Township, NJ', - 1732906 => 'Edison, NJ', - 1732914 => 'Toms River, NJ', - 1732920 => 'Brick, NJ', - 1732923 => 'Long Branch, NJ', - 1732928 => 'Jackson, NJ', - 1732929 => 'Toms River, NJ', - 1732932 => 'New Brunswick, NJ', - 1732935 => 'Eatontown, NJ', - 1732937 => 'New Brunswick, NJ', - 1732942 => 'Lakewood Township, NJ', - 1732946 => 'Holmdel, NJ', - 1732969 => 'Carteret, NJ', - 1732981 => 'Piscataway Township, NJ', - 1732985 => 'Edison, NJ', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1734.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1734.php deleted file mode 100644 index 475696720..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1734.php +++ /dev/null @@ -1,130 +0,0 @@ - 'Michigan', - 1734213 => 'Ann Arbor, MI', - 1734222 => 'Ann Arbor, MI', - 1734240 => 'Monroe, MI', - 1734241 => 'Monroe, MI', - 1734242 => 'Monroe, MI', - 1734243 => 'Monroe, MI', - 1734246 => 'Wyandotte, MI', - 1734261 => 'Livonia, MI', - 1734266 => 'Livonia, MI', - 1734269 => 'Ida, MI', - 1734274 => 'Ann Arbor, MI', - 1734279 => 'Petersburg, MI', - 1734287 => 'Taylor, MI', - 1734289 => 'Monroe, MI', - 1734302 => 'Ann Arbor, MI', - 1734324 => 'Wyandotte, MI', - 1734326 => 'Westland, MI', - 1734327 => 'Ann Arbor, MI', - 1734332 => 'Ann Arbor, MI', - 1734340 => 'Ypsilanti, MI', - 1734369 => 'Ann Arbor, MI', - 1734374 => 'Taylor, MI', - 1734379 => 'Rockwood, MI', - 1734384 => 'Monroe, MI', - 1734394 => 'Canton, MI', - 1734397 => 'Canton, MI', - 1734398 => 'Canton, MI', - 1734420 => 'Plymouth, MI', - 1734422 => 'Livonia, MI', - 1734424 => 'Dexter, MI', - 1734425 => 'Livonia, MI', - 1734426 => 'Dexter, MI', - 1734427 => 'Livonia, MI', - 1734428 => 'Manchester, MI', - 1734429 => 'Saline, MI', - 1734432 => 'Livonia, MI', - 1734433 => 'Chelsea, MI', - 1734434 => 'Ypsilanti, MI', - 1734439 => 'Milan, MI', - 1734449 => 'Whitmore Lake, MI', - 1734453 => 'Plymouth, MI', - 1734457 => 'Monroe, MI', - 1734458 => 'Garden City, MI', - 1734462 => 'Livonia, MI', - 1734464 => 'Livonia, MI', - 1734466 => 'Livonia, MI', - 1734475 => 'Chelsea, MI', - 1734477 => 'Ann Arbor, MI', - 1734480 => 'Ypsilanti, MI', - 1734481 => 'Ypsilanti, MI', - 1734482 => 'Ypsilanti, MI', - 1734483 => 'Ypsilanti, MI', - 1734484 => 'Ypsilanti, MI', - 1734485 => 'Ypsilanti, MI', - 1734487 => 'Ypsilanti, MI', - 1734495 => 'Canton, MI', - 1734513 => 'Livonia, MI', - 1734522 => 'Livonia, MI', - 1734525 => 'Livonia, MI', - 1734528 => 'Ypsilanti, MI', - 1734529 => 'Dundee, MI', - 1734542 => 'Livonia, MI', - 1734544 => 'Ypsilanti, MI', - 1734547 => 'Ypsilanti, MI', - 1734572 => 'Ypsilanti, MI', - 1734586 => 'Newport, MI', - 1734591 => 'Livonia, MI', - 1734622 => 'Ann Arbor, MI', - 1734647 => 'Ann Arbor, MI', - 1734654 => 'Carleton, MI', - 1734655 => 'Livonia, MI', - 1734662 => 'Ann Arbor, MI', - 1734663 => 'Ann Arbor, MI', - 1734665 => 'Ann Arbor, MI', - 1734668 => 'Ann Arbor, MI', - 1734671 => 'Trenton, MI', - 1734677 => 'Ann Arbor, MI', - 1734697 => 'Belleville, MI', - 1734699 => 'Belleville, MI', - 1734712 => 'Ypsilanti, MI', - 1734728 => 'Westland, MI', - 1734729 => 'Westland, MI', - 1734741 => 'Ann Arbor, MI', - 1734744 => 'Livonia, MI', - 1734747 => 'Ann Arbor, MI', - 1734753 => 'New Boston, MI', - 1734761 => 'Ann Arbor, MI', - 1734763 => 'Ann Arbor, MI', - 1734764 => 'Ann Arbor, MI', - 1734769 => 'Ann Arbor, MI', - 1734779 => 'Livonia, MI', - 1734782 => 'Flat Rock, MI', - 1734783 => 'Flat Rock, MI', - 1734785 => 'Southgate, MI', - 1734794 => 'Ann Arbor, MI', - 1734844 => 'Canton, MI', - 1734845 => 'Ann Arbor, MI', - 1734847 => 'Temperance, MI', - 1734848 => 'Erie, MI', - 1734854 => 'Lambertville, MI', - 1734878 => 'Pinckney, MI', - 1734913 => 'Ann Arbor, MI', - 1734929 => 'Ann Arbor, MI', - 1734930 => 'Ann Arbor, MI', - 1734936 => 'Ann Arbor, MI', - 1734941 => 'Romulus, MI', - 1734942 => 'Romulus, MI', - 1734944 => 'Saline, MI', - 1734946 => 'Taylor, MI', - 1734947 => 'Taylor, MI', - 1734953 => 'Livonia, MI', - 1734955 => 'Romulus, MI', - 1734971 => 'Ann Arbor, MI', - 1734973 => 'Ann Arbor, MI', - 1734975 => 'Ann Arbor, MI', - 1734981 => 'Canton, MI', - 1734994 => 'Ann Arbor, MI', - 1734995 => 'Ann Arbor, MI', - 1734996 => 'Ann Arbor, MI', - 1734997 => 'Ann Arbor, MI', - 1734998 => 'Ann Arbor, MI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1737.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1737.php deleted file mode 100644 index 7e22ca8f4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1737.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Texas', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1740.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1740.php deleted file mode 100644 index 249d4ad00..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1740.php +++ /dev/null @@ -1,158 +0,0 @@ - 'Ohio', - 1740223 => 'Marion, OH', - 1740246 => 'Thornville, OH', - 1740259 => 'Lucasville, OH', - 1740264 => 'Steubenville, OH', - 1740281 => 'Newark, OH', - 1740282 => 'Steubenville, OH', - 1740283 => 'Steubenville, OH', - 1740286 => 'Jackson, OH', - 1740288 => 'Jackson, OH', - 1740289 => 'Piketon, OH', - 1740297 => 'Zanesville, OH', - 1740332 => 'Laurelville, OH', - 1740333 => 'Washington Ct Hs, OH', - 1740335 => 'Washington Ct Hs, OH', - 1740342 => 'New Lexington, OH', - 1740344 => 'Newark, OH', - 1740345 => 'Newark, OH', - 1740348 => 'Newark, OH', - 1740349 => 'Newark, OH', - 1740353 => 'Portsmouth, OH', - 1740354 => 'Portsmouth, OH', - 1740355 => 'Portsmouth, OH', - 1740356 => 'Portsmouth, OH', - 1740362 => 'Delaware, OH', - 1740363 => 'Delaware, OH', - 1740364 => 'Newark, OH', - 1740366 => 'Newark, OH', - 1740368 => 'Delaware, OH', - 1740369 => 'Delaware, OH', - 1740373 => 'Marietta, OH', - 1740374 => 'Marietta, OH', - 1740376 => 'Marietta, OH', - 1740377 => 'South Point, OH', - 1740380 => 'Logan, OH', - 1740382 => 'Marion, OH', - 1740383 => 'Marion, OH', - 1740384 => 'Wellston, OH', - 1740385 => 'Logan, OH', - 1740387 => 'Marion, OH', - 1740389 => 'Marion, OH', - 1740392 => 'Mount Vernon, OH', - 1740393 => 'Mount Vernon, OH', - 1740395 => 'Jackson, OH', - 1740397 => 'Mount Vernon, OH', - 1740420 => 'Circleville, OH', - 1740423 => 'Belpre, OH', - 1740425 => 'Barnesville, OH', - 1740432 => 'Cambridge, OH', - 1740435 => 'Cambridge, OH', - 1740439 => 'Cambridge, OH', - 1740441 => 'Gallipolis, OH', - 1740446 => 'Gallipolis, OH', - 1740450 => 'Zanesville, OH', - 1740452 => 'Zanesville, OH', - 1740453 => 'Zanesville, OH', - 1740454 => 'Zanesville, OH', - 1740455 => 'Zanesville, OH', - 1740456 => 'New Boston, OH', - 1740467 => 'Millersport, OH', - 1740472 => 'Woodsfield, OH', - 1740474 => 'Circleville, OH', - 1740477 => 'Circleville, OH', - 1740498 => 'Newcomerstown, OH', - 1740522 => 'Heath, OH', - 1740532 => 'Ironton, OH', - 1740533 => 'Ironton, OH', - 1740537 => 'Toronto, OH', - 1740545 => 'West Lafayette, OH', - 1740548 => 'Lewis Center, OH', - 1740549 => 'Lewis Center, OH', - 1740574 => 'Wheelersburg, OH', - 1740587 => 'Granville, OH', - 1740588 => 'Zanesville, OH', - 1740592 => 'Athens, OH', - 1740593 => 'Athens, OH', - 1740594 => 'Athens, OH', - 1740596 => 'McArthur, OH', - 1740599 => 'Danville, OH', - 1740622 => 'Coshocton, OH', - 1740623 => 'Coshocton, OH', - 1740625 => 'Centerburg, OH', - 1740633 => 'Martins Ferry, OH', - 1740635 => 'Bridgeport, OH', - 1740652 => 'Lancaster, OH', - 1740653 => 'Lancaster, OH', - 1740654 => 'Lancaster, OH', - 1740657 => 'Lewis Center, OH', - 1740663 => 'Chillicothe, OH', - 1740667 => 'Coolville, OH', - 1740670 => 'Newark, OH', - 1740671 => 'Bellaire, OH', - 1740676 => 'Bellaire, OH', - 1740678 => 'Vincent, OH', - 1740681 => 'Lancaster, OH', - 1740682 => 'Oak Hill, OH', - 1740685 => 'Byesville, OH', - 1740687 => 'Lancaster, OH', - 1740689 => 'Lancaster, OH', - 1740694 => 'Fredericktown, OH', - 1740695 => 'St. Clairsville, OH', - 1740698 => 'Albany, OH', - 1740699 => 'St. Clairsville, OH', - 1740732 => 'Caldwell, OH', - 1740743 => 'Somerset, OH', - 1740745 => 'St. Louisville, OH', - 1740753 => 'Nelsonville, OH', - 1740754 => 'Dresden, OH', - 1740756 => 'Carroll, OH', - 1740763 => 'Newark, OH', - 1740767 => 'Glouster, OH', - 1740772 => 'Chillicothe, OH', - 1740773 => 'Chillicothe, OH', - 1740774 => 'Chillicothe, OH', - 1740775 => 'Chillicothe, OH', - 1740776 => 'Portsmouth, OH', - 1740779 => 'Chillicothe, OH', - 1740788 => 'Heath, OH', - 1740797 => 'The Plains, OH', - 1740820 => 'Minford, OH', - 1740824 => 'Warsaw, OH', - 1740826 => 'New Concord, OH', - 1740828 => 'Frazeysburg, OH', - 1740845 => 'London, OH', - 1740852 => 'London, OH', - 1740858 => 'West Portsmouth, OH', - 1740862 => 'Baltimore, OH', - 1740867 => 'Chesapeake, OH', - 1740869 => 'Mount Sterling, OH', - 1740881 => 'Powell, OH', - 1740886 => 'Proctorville, OH', - 1740892 => 'Utica, OH', - 1740894 => 'South Point, OH', - 1740922 => 'Uhrichsville, OH', - 1740927 => 'Pataskala, OH', - 1740928 => 'Hebron, OH', - 1740942 => 'Cadiz, OH', - 1740943 => 'Richwood, OH', - 1740947 => 'Waverly, OH', - 1740948 => 'Jeffersonville, OH', - 1740962 => 'McConnelsville, OH', - 1740964 => 'Pataskala, OH', - 1740965 => 'Sunbury, OH', - 1740967 => 'Johnstown, OH', - 1740969 => 'Amanda, OH', - 1740982 => 'Crooksville, OH', - 1740983 => 'Ashville, OH', - 1740984 => 'Beverly, OH', - 1740992 => 'Pomeroy, OH', - 1740998 => 'Frankfort, OH', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1743.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1743.php deleted file mode 100644 index 916801499..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1743.php +++ /dev/null @@ -1,9 +0,0 @@ - 'North Carolina', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1747.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1747.php deleted file mode 100644 index efb7fa9de..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1747.php +++ /dev/null @@ -1,9 +0,0 @@ - 'California', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1754.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1754.php deleted file mode 100644 index bea2d1f51..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1754.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Florida', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1757.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1757.php deleted file mode 100644 index 03cd330aa..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1757.php +++ /dev/null @@ -1,190 +0,0 @@ - 'Virginia', - 1757220 => 'Williamsburg, VA', - 1757221 => 'Williamsburg, VA', - 1757223 => 'Newport News, VA', - 1757224 => 'Hampton, VA', - 1757228 => 'Virginia Beach, VA', - 1757229 => 'Williamsburg, VA', - 1757238 => 'Carrollton, VA', - 1757240 => 'Newport News, VA', - 1757242 => 'Windsor, VA', - 1757244 => 'Newport News, VA', - 1757245 => 'Newport News, VA', - 1757247 => 'Newport News, VA', - 1757249 => 'Newport News, VA', - 1757253 => 'Williamsburg, VA', - 1757255 => 'Suffolk, VA', - 1757258 => 'Williamsburg, VA', - 1757259 => 'Williamsburg, VA', - 1757261 => 'Norfolk, VA', - 1757262 => 'Hampton, VA', - 1757294 => 'Surry, VA', - 1757301 => 'Virginia Beach, VA', - 1757306 => 'Virginia Beach, VA', - 1757312 => 'Chesapeake, VA', - 1757318 => 'Virginia Beach, VA', - 1757331 => 'Cape Charles, VA', - 1757336 => 'Chincoteague Island, VA', - 1757340 => 'Virginia Beach, VA', - 1757345 => 'Williamsburg, VA', - 1757353 => 'Virginia Beach, VA', - 1757356 => 'Smithfield, VA', - 1757357 => 'Smithfield, VA', - 1757363 => 'Virginia Beach, VA', - 1757365 => 'Smithfield, VA', - 1757368 => 'Virginia Beach, VA', - 1757369 => 'Newport News, VA', - 1757380 => 'Newport News, VA', - 1757382 => 'Chesapeake, VA', - 1757385 => 'Virginia Beach, VA', - 1757388 => 'Norfolk, VA', - 1757393 => 'Portsmouth, VA', - 1757395 => 'Virginia Beach, VA', - 1757397 => 'Portsmouth, VA', - 1757398 => 'Portsmouth, VA', - 1757399 => 'Portsmouth, VA', - 1757401 => 'Chesapeake, VA', - 1757405 => 'Portsmouth, VA', - 1757410 => 'Chesapeake, VA', - 1757412 => 'Virginia Beach, VA', - 1757416 => 'Virginia Beach, VA', - 1757417 => 'Virginia Beach, VA', - 1757421 => 'Chesapeake, VA', - 1757422 => 'Virginia Beach, VA', - 1757423 => 'Norfolk, VA', - 1757425 => 'Virginia Beach, VA', - 1757426 => 'Virginia Beach, VA', - 1757427 => 'Virginia Beach, VA', - 1757428 => 'Virginia Beach, VA', - 1757430 => 'Virginia Beach, VA', - 1757431 => 'Virginia Beach, VA', - 1757436 => 'Chesapeake, VA', - 1757437 => 'Virginia Beach, VA', - 1757440 => 'Norfolk, VA', - 1757441 => 'Norfolk, VA', - 1757446 => 'Norfolk, VA', - 1757455 => 'Norfolk, VA', - 1757456 => 'Virginia Beach, VA', - 1757460 => 'Virginia Beach, VA', - 1757461 => 'Norfolk, VA', - 1757463 => 'Virginia Beach, VA', - 1757464 => 'Virginia Beach, VA', - 1757466 => 'Norfolk, VA', - 1757467 => 'Virginia Beach, VA', - 1757468 => 'Virginia Beach, VA', - 1757471 => 'Virginia Beach, VA', - 1757473 => 'Virginia Beach, VA', - 1757474 => 'Virginia Beach, VA', - 1757479 => 'Virginia Beach, VA', - 1757480 => 'Norfolk, VA', - 1757481 => 'Virginia Beach, VA', - 1757482 => 'Chesapeake, VA', - 1757485 => 'Chesapeake, VA', - 1757486 => 'Virginia Beach, VA', - 1757487 => 'Chesapeake, VA', - 1757489 => 'Norfolk, VA', - 1757490 => 'Virginia Beach, VA', - 1757491 => 'Virginia Beach, VA', - 1757493 => 'Virginia Beach, VA', - 1757494 => 'Chesapeake, VA', - 1757495 => 'Virginia Beach, VA', - 1757496 => 'Virginia Beach, VA', - 1757497 => 'Virginia Beach, VA', - 1757498 => 'Virginia Beach, VA', - 1757499 => 'Virginia Beach, VA', - 1757502 => 'Virginia Beach, VA', - 1757516 => 'Franklin, VA', - 1757533 => 'Norfolk, VA', - 1757534 => 'Newport News, VA', - 1757538 => 'Suffolk, VA', - 1757539 => 'Suffolk, VA', - 1757543 => 'Chesapeake, VA', - 1757545 => 'Chesapeake, VA', - 1757546 => 'Chesapeake, VA', - 1757547 => 'Chesapeake, VA', - 1757548 => 'Chesapeake, VA', - 1757549 => 'Chesapeake, VA', - 1757552 => 'Virginia Beach, VA', - 1757558 => 'Chesapeake, VA', - 1757562 => 'Franklin, VA', - 1757563 => 'Virginia Beach, VA', - 1757564 => 'Williamsburg, VA', - 1757565 => 'Williamsburg, VA', - 1757566 => 'Toano, VA', - 1757569 => 'Franklin, VA', - 1757583 => 'Norfolk, VA', - 1757587 => 'Norfolk, VA', - 1757588 => 'Norfolk, VA', - 1757591 => 'Newport News, VA', - 1757594 => 'Newport News, VA', - 1757595 => 'Newport News, VA', - 1757596 => 'Newport News, VA', - 1757599 => 'Newport News, VA', - 1757622 => 'Norfolk, VA', - 1757623 => 'Norfolk, VA', - 1757624 => 'Norfolk, VA', - 1757625 => 'Norfolk, VA', - 1757627 => 'Norfolk, VA', - 1757628 => 'Norfolk, VA', - 1757631 => 'Virginia Beach, VA', - 1757640 => 'Norfolk, VA', - 1757645 => 'Williamsburg, VA', - 1757648 => 'Virginia Beach, VA', - 1757653 => 'Courtland, VA', - 1757664 => 'Norfolk, VA', - 1757665 => 'Parksley, VA', - 1757668 => 'Norfolk, VA', - 1757671 => 'Virginia Beach, VA', - 1757683 => 'Norfolk, VA', - 1757689 => 'Virginia Beach, VA', - 1757717 => 'Virginia Beach, VA', - 1757721 => 'Virginia Beach, VA', - 1757722 => 'Hampton, VA', - 1757723 => 'Hampton, VA', - 1757727 => 'Hampton, VA', - 1757728 => 'Hampton, VA', - 1757766 => 'Hampton, VA', - 1757788 => 'Hampton, VA', - 1757825 => 'Hampton, VA', - 1757826 => 'Hampton, VA', - 1757827 => 'Hampton, VA', - 1757833 => 'Newport News, VA', - 1757836 => 'Norfolk, VA', - 1757838 => 'Hampton, VA', - 1757850 => 'Hampton, VA', - 1757851 => 'Hampton, VA', - 1757853 => 'Norfolk, VA', - 1757855 => 'Norfolk, VA', - 1757857 => 'Norfolk, VA', - 1757858 => 'Norfolk, VA', - 1757865 => 'Hampton, VA', - 1757867 => 'Yorktown, VA', - 1757868 => 'Poquoson, VA', - 1757872 => 'Newport News, VA', - 1757873 => 'Newport News, VA', - 1757874 => 'Newport News, VA', - 1757875 => 'Newport News, VA', - 1757877 => 'Newport News, VA', - 1757886 => 'Newport News, VA', - 1757887 => 'Newport News, VA', - 1757889 => 'Norfolk, VA', - 1757890 => 'Yorktown, VA', - 1757896 => 'Hampton, VA', - 1757898 => 'Yorktown, VA', - 1757899 => 'Wakefield, VA', - 1757903 => 'Williamsburg, VA', - 1757923 => 'Suffolk, VA', - 1757925 => 'Suffolk, VA', - 1757926 => 'Newport News, VA', - 1757928 => 'Newport News, VA', - 1757930 => 'Newport News, VA', - 1757934 => 'Suffolk, VA', - 1757953 => 'Portsmouth, VA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1760.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1760.php deleted file mode 100644 index 0a53e165c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1760.php +++ /dev/null @@ -1,207 +0,0 @@ - 'California', - 1760202 => 'Cathedral City, CA', - 1760228 => 'Yucca Valley, CA', - 1760230 => 'Encinitas, CA', - 1760231 => 'Oceanside, CA', - 1760233 => 'Escondido, CA', - 1760240 => 'Apple Valley, CA', - 1760241 => 'Victorville, CA', - 1760242 => 'Apple Valley, CA', - 1760243 => 'Victorville, CA', - 1760244 => 'Hesperia, CA', - 1760245 => 'Victorville, CA', - 1760246 => 'Adelanto, CA', - 1760247 => 'Apple Valley, CA', - 1760248 => 'Lucerne Valley, CA', - 1760249 => 'Wrightwood, CA', - 1760251 => 'Desert Hot Spgs, CA', - 1760252 => 'Barstow, CA', - 1760253 => 'Barstow, CA', - 1760255 => 'Barstow, CA', - 1760256 => 'Barstow, CA', - 1760268 => 'Carlsbad, CA', - 1760291 => 'Escondido, CA', - 1760294 => 'Escondido, CA', - 1760295 => 'Vista, CA', - 1760318 => 'Palm Springs, CA', - 1760320 => 'Palm Springs, CA', - 1760321 => 'Cathedral City, CA', - 1760322 => 'Palm Springs, CA', - 1760323 => 'Palm Springs, CA', - 1760324 => 'Cathedral City, CA', - 1760325 => 'Palm Springs, CA', - 1760326 => 'Needles, CA', - 1760327 => 'Palm Springs, CA', - 1760328 => 'Cathedral City, CA', - 1760329 => 'Desert Hot Spgs, CA', - 1760336 => 'El Centro, CA', - 1760337 => 'El Centro, CA', - 1760339 => 'El Centro, CA', - 1760340 => 'Palm Desert, CA', - 1760341 => 'Palm Desert, CA', - 1760342 => 'Indio, CA', - 1760343 => 'Thousand Palms, CA', - 1760344 => 'Brawley, CA', - 1760345 => 'Palm Desert, CA', - 1760346 => 'Palm Desert, CA', - 1760347 => 'Indio, CA', - 1760348 => 'Calipatria, CA', - 1760351 => 'Brawley, CA', - 1760352 => 'El Centro, CA', - 1760353 => 'El Centro, CA', - 1760355 => 'Imperial, CA', - 1760356 => 'Holtville, CA', - 1760357 => 'Calexico, CA', - 1760360 => 'Palm Desert, CA', - 1760361 => 'Twentynine Palms, CA', - 1760365 => 'Yucca Valley, CA', - 1760366 => 'Joshua Tree, CA', - 1760367 => 'Twentynine Palms, CA', - 1760369 => 'Yucca Valley, CA', - 1760370 => 'El Centro, CA', - 1760371 => 'Ridgecrest, CA', - 1760373 => 'California City, CA', - 1760375 => 'Ridgecrest, CA', - 1760376 => 'Kernville, CA', - 1760379 => 'Lake Isabella, CA', - 1760384 => 'Ridgecrest, CA', - 1760391 => 'Coachella, CA', - 1760396 => 'Mecca, CA', - 1760398 => 'Coachella, CA', - 1760399 => 'Thermal, CA', - 1760414 => 'Vista, CA', - 1760416 => 'Palm Springs, CA', - 1760431 => 'Carlsbad, CA', - 1760432 => 'Escondido, CA', - 1760433 => 'Oceanside, CA', - 1760434 => 'Carlsbad, CA', - 1760435 => 'Oceanside, CA', - 1760436 => 'Encinitas, CA', - 1760438 => 'Carlsbad, CA', - 1760439 => 'Oceanside, CA', - 1760446 => 'Ridgecrest, CA', - 1760451 => 'Fallbrook, CA', - 1760471 => 'San Marcos, CA', - 1760476 => 'Carlsbad, CA', - 1760479 => 'Encinitas, CA', - 1760480 => 'Escondido, CA', - 1760482 => 'El Centro, CA', - 1760489 => 'Escondido, CA', - 1760510 => 'San Marcos, CA', - 1760529 => 'Oceanside, CA', - 1760530 => 'Adelanto, CA', - 1760564 => 'La Quinta, CA', - 1760568 => 'Palm Desert, CA', - 1760572 => 'Winterhaven, CA', - 1760591 => 'San Marcos, CA', - 1760597 => 'Vista, CA', - 1760598 => 'Vista, CA', - 1760599 => 'Vista, CA', - 1760602 => 'Carlsbad, CA', - 1760603 => 'Carlsbad, CA', - 1760630 => 'Vista, CA', - 1760631 => 'Vista, CA', - 1760632 => 'Encinitas, CA', - 1760633 => 'Encinitas, CA', - 1760634 => 'Encinitas, CA', - 1760635 => 'Encinitas, CA', - 1760639 => 'Vista, CA', - 1760643 => 'Vista, CA', - 1760674 => 'Palm Desert, CA', - 1760720 => 'Carlsbad, CA', - 1760721 => 'Oceanside, CA', - 1760722 => 'Oceanside, CA', - 1760723 => 'Fallbrook, CA', - 1760724 => 'Vista, CA', - 1760725 => 'Camp Pendleton North, CA', - 1760726 => 'Vista, CA', - 1760727 => 'Vista, CA', - 1760728 => 'Fallbrook, CA', - 1760729 => 'Carlsbad, CA', - 1760730 => 'Carlsbad, CA', - 1760731 => 'Fallbrook, CA', - 1760732 => 'Vista, CA', - 1760734 => 'Vista, CA', - 1760735 => 'Escondido, CA', - 1760736 => 'San Marcos, CA', - 1760737 => 'Escondido, CA', - 1760738 => 'Escondido, CA', - 1760739 => 'Escondido, CA', - 1760740 => 'Escondido, CA', - 1760741 => 'Escondido, CA', - 1760743 => 'Escondido, CA', - 1760744 => 'San Marcos, CA', - 1760745 => 'Escondido, CA', - 1760746 => 'Escondido, CA', - 1760747 => 'Escondido, CA', - 1760749 => 'Valley Center, CA', - 1760751 => 'Valley Center, CA', - 1760752 => 'San Marcos, CA', - 1760753 => 'Encinitas, CA', - 1760754 => 'Oceanside, CA', - 1760757 => 'Oceanside, CA', - 1760758 => 'Vista, CA', - 1760765 => 'Julian, CA', - 1760767 => 'Borrego Springs, CA', - 1760768 => 'Calexico, CA', - 1760770 => 'Cathedral City, CA', - 1760771 => 'La Quinta, CA', - 1760772 => 'Palm Desert, CA', - 1760773 => 'Palm Desert, CA', - 1760775 => 'Indio, CA', - 1760776 => 'Palm Desert, CA', - 1760777 => 'La Quinta, CA', - 1760778 => 'Palm Springs, CA', - 1760779 => 'Palm Desert, CA', - 1760781 => 'Escondido, CA', - 1760787 => 'Ramona, CA', - 1760788 => 'Ramona, CA', - 1760789 => 'Ramona, CA', - 1760798 => 'San Marcos, CA', - 1760804 => 'Carlsbad, CA', - 1760836 => 'Palm Desert, CA', - 1760837 => 'Palm Desert, CA', - 1760839 => 'Escondido, CA', - 1760843 => 'Victorville, CA', - 1760863 => 'Indio, CA', - 1760864 => 'Palm Springs, CA', - 1760868 => 'Phelan, CA', - 1760872 => 'Bishop, CA', - 1760873 => 'Bishop, CA', - 1760876 => 'Lone Pine, CA', - 1760881 => 'Victorville, CA', - 1760918 => 'Carlsbad, CA', - 1760921 => 'Blythe, CA', - 1760922 => 'Blythe, CA', - 1760924 => 'Mammoth Lakes, CA', - 1760929 => 'Carlsbad, CA', - 1760930 => 'Carlsbad, CA', - 1760931 => 'Carlsbad, CA', - 1760932 => 'Bridgeport, CA', - 1760934 => 'Mammoth Lakes, CA', - 1760940 => 'Vista, CA', - 1760941 => 'Vista, CA', - 1760942 => 'Encinitas, CA', - 1760943 => 'Encinitas, CA', - 1760944 => 'Encinitas, CA', - 1760945 => 'Vista, CA', - 1760946 => 'Apple Valley, CA', - 1760947 => 'Hesperia, CA', - 1760948 => 'Hesperia, CA', - 1760949 => 'Hesperia, CA', - 1760951 => 'Victorville, CA', - 1760952 => 'Victorville, CA', - 1760955 => 'Victorville, CA', - 1760956 => 'Hesperia, CA', - 1760961 => 'Apple Valley, CA', - 1760966 => 'Oceanside, CA', - 1760967 => 'Oceanside, CA', - 1760995 => 'Hesperia, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1763.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1763.php deleted file mode 100644 index 25d819816..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1763.php +++ /dev/null @@ -1,40 +0,0 @@ - 'Minnesota', - 1763205 => 'Minneapolis, MN', - 1763208 => 'Minneapolis, MN', - 1763241 => 'Elk River, MN', - 1763261 => 'Becker, MN', - 1763262 => 'Becker, MN', - 1763263 => 'Big Lake, MN', - 1763271 => 'Monticello, MN', - 1763274 => 'Elk River, MN', - 1763295 => 'Monticello, MN', - 1763389 => 'Princeton, MN', - 1763420 => 'Maple Grove, MN', - 1763428 => 'Rogers, MN', - 1763441 => 'Elk River, MN', - 1763444 => 'Isanti, MN', - 1763477 => 'Rockford, MN', - 1763479 => 'Maple Plain, MN', - 1763494 => 'Maple Grove, MN', - 1763520 => 'Robbinsdale, MN', - 1763525 => 'Minneapolis, MN', - 1763552 => 'Cambridge, MN', - 1763553 => 'Plymouth, MN', - 1763577 => 'Plymouth, MN', - 1763581 => 'Maple Grove, MN', - 1763633 => 'Elk River, MN', - 1763682 => 'Buffalo, MN', - 1763684 => 'Buffalo, MN', - 1763689 => 'Cambridge, MN', - 1763788 => 'Columbia Heights, MN', - 1763856 => 'Zimmerman, MN', - 1763898 => 'Maple Grove, MN', - 1763972 => 'Delano, MN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1765.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1765.php deleted file mode 100644 index 7b97bcc01..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1765.php +++ /dev/null @@ -1,130 +0,0 @@ - 'Indiana', - 1765236 => 'Kokomo, IN', - 1765254 => 'Muncie, IN', - 1765281 => 'Muncie, IN', - 1765282 => 'Muncie, IN', - 1765284 => 'Muncie, IN', - 1765286 => 'Muncie, IN', - 1765287 => 'Muncie, IN', - 1765288 => 'Muncie, IN', - 1765289 => 'Muncie, IN', - 1765294 => 'Veedersburg, IN', - 1765298 => 'Anderson, IN', - 1765342 => 'Martinsville, IN', - 1765345 => 'Knightstown, IN', - 1765348 => 'Hartford City, IN', - 1765349 => 'Martinsville, IN', - 1765354 => 'Middletown, IN', - 1765361 => 'Crawfordsville, IN', - 1765362 => 'Crawfordsville, IN', - 1765364 => 'Crawfordsville, IN', - 1765379 => 'Rossville, IN', - 1765395 => 'Converse, IN', - 1765420 => 'Lafayette, IN', - 1765423 => 'Lafayette, IN', - 1765429 => 'Lafayette, IN', - 1765436 => 'Thorntown, IN', - 1765446 => 'Lafayette, IN', - 1765447 => 'Lafayette, IN', - 1765448 => 'Lafayette, IN', - 1765449 => 'Lafayette, IN', - 1765450 => 'Kokomo, IN', - 1765452 => 'Kokomo, IN', - 1765453 => 'Kokomo, IN', - 1765454 => 'Kokomo, IN', - 1765455 => 'Kokomo, IN', - 1765456 => 'Kokomo, IN', - 1765457 => 'Kokomo, IN', - 1765458 => 'Liberty, IN', - 1765459 => 'Kokomo, IN', - 1765463 => 'West Lafayette, IN', - 1765464 => 'West Lafayette, IN', - 1765468 => 'Farmland, IN', - 1765471 => 'Lafayette, IN', - 1765472 => 'Peru, IN', - 1765473 => 'Peru, IN', - 1765474 => 'Lafayette, IN', - 1765477 => 'Lafayette, IN', - 1765478 => 'Cambridge City, IN', - 1765482 => 'Lebanon, IN', - 1765483 => 'Lebanon, IN', - 1765489 => 'Hagerstown, IN', - 1765492 => 'Cayuga, IN', - 1765494 => 'West Lafayette, IN', - 1765497 => 'West Lafayette, IN', - 1765521 => 'New Castle, IN', - 1765522 => 'Roachdale, IN', - 1765529 => 'New Castle, IN', - 1765552 => 'Elwood, IN', - 1765563 => 'Brookston, IN', - 1765564 => 'Delphi, IN', - 1765569 => 'Rockville, IN', - 1765583 => 'Otterbein, IN', - 1765584 => 'Winchester, IN', - 1765588 => 'Lafayette, IN', - 1765622 => 'Anderson, IN', - 1765628 => 'Greentown, IN', - 1765640 => 'Anderson, IN', - 1765641 => 'Anderson, IN', - 1765642 => 'Anderson, IN', - 1765643 => 'Anderson, IN', - 1765644 => 'Anderson, IN', - 1765646 => 'Anderson, IN', - 1765647 => 'Brookville, IN', - 1765649 => 'Anderson, IN', - 1765651 => 'Marion, IN', - 1765653 => 'Greencastle, IN', - 1765654 => 'Frankfort, IN', - 1765659 => 'Frankfort, IN', - 1765662 => 'Marion, IN', - 1765664 => 'Marion, IN', - 1765668 => 'Marion, IN', - 1765674 => 'Marion, IN', - 1765675 => 'Tipton, IN', - 1765676 => 'Jamestown, IN', - 1765677 => 'Marion, IN', - 1765683 => 'Anderson, IN', - 1765689 => 'Bunker Hill, IN', - 1765724 => 'Alexandria, IN', - 1765728 => 'Montpelier, IN', - 1765741 => 'Muncie, IN', - 1765742 => 'Lafayette, IN', - 1765743 => 'West Lafayette, IN', - 1765747 => 'Muncie, IN', - 1765759 => 'Yorktown, IN', - 1765762 => 'Attica, IN', - 1765768 => 'Dunkirk, IN', - 1765778 => 'Pendleton, IN', - 1765789 => 'Albany, IN', - 1765793 => 'Covington, IN', - 1765795 => 'Cloverdale, IN', - 1765807 => 'Lafayette, IN', - 1765825 => 'Connersville, IN', - 1765827 => 'Connersville, IN', - 1765832 => 'Clinton, IN', - 1765838 => 'Lafayette, IN', - 1765855 => 'Centerville, IN', - 1765864 => 'Kokomo, IN', - 1765868 => 'Kokomo, IN', - 1765874 => 'Lynn, IN', - 1765883 => 'Russiaville, IN', - 1765884 => 'Fowler, IN', - 1765932 => 'Rushville, IN', - 1765935 => 'Richmond, IN', - 1765938 => 'Rushville, IN', - 1765939 => 'Richmond, IN', - 1765948 => 'Fairmount, IN', - 1765962 => 'Richmond, IN', - 1765964 => 'Union City, IN', - 1765965 => 'Richmond, IN', - 1765966 => 'Richmond, IN', - 1765983 => 'Richmond, IN', - 1765998 => 'Upland, IN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1769.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1769.php deleted file mode 100644 index 846a6113a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1769.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Mississippi', - 1769216 => 'Jackson, MS', - 1769233 => 'Jackson, MS', - 1769251 => 'Jackson, MS', - 1769257 => 'Jackson, MS', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1770.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1770.php deleted file mode 100644 index f7097bbfe..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1770.php +++ /dev/null @@ -1,301 +0,0 @@ - 'Georgia', - 1770205 => 'Cumming, GA', - 1770207 => 'Monroe, GA', - 1770209 => 'Norcross, GA', - 1770210 => 'Jonesboro, GA', - 1770214 => 'Carrollton, GA', - 1770219 => 'Gainesville, GA', - 1770227 => 'Griffin, GA', - 1770228 => 'Griffin, GA', - 1770229 => 'Griffin, GA', - 1770232 => 'Duluth, GA', - 1770233 => 'Griffin, GA', - 1770237 => 'Lawrenceville, GA', - 1770242 => 'Norcross, GA', - 1770246 => 'Norcross, GA', - 1770248 => 'Norcross, GA', - 1770251 => 'Newnan, GA', - 1770252 => 'Newnan, GA', - 1770253 => 'Newnan, GA', - 1770254 => 'Newnan, GA', - 1770258 => 'Bowdon, GA', - 1770263 => 'Norcross, GA', - 1770266 => 'Monroe, GA', - 1770267 => 'Monroe, GA', - 1770270 => 'Tucker, GA', - 1770277 => 'Lawrenceville, GA', - 1770287 => 'Gainesville, GA', - 1770288 => 'McDonough, GA', - 1770297 => 'Gainesville, GA', - 1770300 => 'Norcross, GA', - 1770304 => 'Newnan, GA', - 1770307 => 'Winder, GA', - 1770319 => 'Smyrna, GA', - 1770320 => 'McDonough, GA', - 1770321 => 'Marietta, GA', - 1770334 => 'Cartersville, GA', - 1770338 => 'Lawrenceville, GA', - 1770339 => 'Lawrenceville, GA', - 1770343 => 'Alpharetta, GA', - 1770345 => 'Canton, GA', - 1770346 => 'Alpharetta, GA', - 1770350 => 'Atlanta, GA', - 1770351 => 'Atlanta, GA', - 1770352 => 'Atlanta, GA', - 1770358 => 'Barnesville, GA', - 1770360 => 'Alpharetta, GA', - 1770368 => 'Norcross, GA', - 1770382 => 'Cartersville, GA', - 1770383 => 'Cartersville, GA', - 1770385 => 'Covington, GA', - 1770386 => 'Cartersville, GA', - 1770387 => 'Cartersville, GA', - 1770388 => 'Conyers, GA', - 1770389 => 'Stockbridge, GA', - 1770390 => 'Atlanta, GA', - 1770391 => 'Atlanta, GA', - 1770392 => 'Atlanta, GA', - 1770393 => 'Atlanta, GA', - 1770394 => 'Atlanta, GA', - 1770395 => 'Atlanta, GA', - 1770396 => 'Atlanta, GA', - 1770399 => 'Atlanta, GA', - 1770409 => 'Norcross, GA', - 1770410 => 'Alpharetta, GA', - 1770412 => 'Griffin, GA', - 1770413 => 'Stone Mountain, GA', - 1770414 => 'Tucker, GA', - 1770416 => 'Norcross, GA', - 1770418 => 'Duluth, GA', - 1770421 => 'Marietta, GA', - 1770422 => 'Marietta, GA', - 1770424 => 'Marietta, GA', - 1770425 => 'Marietta, GA', - 1770427 => 'Marietta, GA', - 1770428 => 'Marietta, GA', - 1770429 => 'Marietta, GA', - 1770432 => 'Smyrna, GA', - 1770433 => 'Smyrna, GA', - 1770434 => 'Smyrna, GA', - 1770435 => 'Smyrna, GA', - 1770436 => 'Smyrna, GA', - 1770438 => 'Smyrna, GA', - 1770441 => 'Norcross, GA', - 1770442 => 'Alpharetta, GA', - 1770443 => 'Dallas, GA', - 1770445 => 'Dallas, GA', - 1770446 => 'Norcross, GA', - 1770448 => 'Norcross, GA', - 1770449 => 'Norcross, GA', - 1770455 => 'Atlanta, GA', - 1770456 => 'Villa Rica, GA', - 1770459 => 'Villa Rica, GA', - 1770460 => 'Fayetteville, GA', - 1770461 => 'Fayetteville, GA', - 1770463 => 'Palmetto, GA', - 1770464 => 'Social Circle, GA', - 1770465 => 'Stone Mountain, GA', - 1770466 => 'Loganville, GA', - 1770467 => 'Griffin, GA', - 1770469 => 'Stone Mountain, GA', - 1770471 => 'Jonesboro, GA', - 1770472 => 'Jonesboro, GA', - 1770473 => 'Jonesboro, GA', - 1770474 => 'Stockbridge, GA', - 1770475 => 'Alpharetta, GA', - 1770476 => 'Duluth, GA', - 1770477 => 'Jonesboro, GA', - 1770478 => 'Jonesboro, GA', - 1770479 => 'Canton, GA', - 1770482 => 'Lithonia, GA', - 1770483 => 'Conyers, GA', - 1770484 => 'Lithonia, GA', - 1770486 => 'Peachtree City, GA', - 1770487 => 'Peachtree City, GA', - 1770489 => 'Douglasville, GA', - 1770491 => 'Tucker, GA', - 1770492 => 'Tucker, GA', - 1770493 => 'Tucker, GA', - 1770495 => 'Duluth, GA', - 1770496 => 'Tucker, GA', - 1770497 => 'Duluth, GA', - 1770498 => 'Stone Mountain, GA', - 1770499 => 'Marietta, GA', - 1770502 => 'Newnan, GA', - 1770503 => 'Gainesville, GA', - 1770504 => 'Jackson, GA', - 1770505 => 'Dallas, GA', - 1770506 => 'Stockbridge, GA', - 1770507 => 'Stockbridge, GA', - 1770509 => 'Marietta, GA', - 1770512 => 'Atlanta, GA', - 1770513 => 'Lawrenceville, GA', - 1770514 => 'Marietta, GA', - 1770516 => 'Woodstock, GA', - 1770517 => 'Woodstock, GA', - 1770518 => 'Roswell, GA', - 1770521 => 'Alpharetta, GA', - 1770522 => 'Atlanta, GA', - 1770528 => 'Marietta, GA', - 1770529 => 'Acworth, GA', - 1770531 => 'Gainesville, GA', - 1770532 => 'Gainesville, GA', - 1770533 => 'Gainesville, GA', - 1770534 => 'Gainesville, GA', - 1770535 => 'Gainesville, GA', - 1770536 => 'Gainesville, GA', - 1770537 => 'Bremen, GA', - 1770538 => 'Gainesville, GA', - 1770551 => 'Atlanta, GA', - 1770552 => 'Roswell, GA', - 1770554 => 'Loganville, GA', - 1770562 => 'Temple, GA', - 1770565 => 'Marietta, GA', - 1770567 => 'Zebulon, GA', - 1770569 => 'Alpharetta, GA', - 1770574 => 'Tallapoosa, GA', - 1770577 => 'Douglasville, GA', - 1770578 => 'Marietta, GA', - 1770579 => 'Marietta, GA', - 1770582 => 'Norcross, GA', - 1770587 => 'Roswell, GA', - 1770591 => 'Woodstock, GA', - 1770592 => 'Woodstock, GA', - 1770594 => 'Roswell, GA', - 1770599 => 'Senoia, GA', - 1770602 => 'Conyers, GA', - 1770603 => 'Jonesboro, GA', - 1770606 => 'Cartersville, GA', - 1770607 => 'Cartersville, GA', - 1770619 => 'Alpharetta, GA', - 1770622 => 'Duluth, GA', - 1770623 => 'Duluth, GA', - 1770631 => 'Peachtree City, GA', - 1770632 => 'Peachtree City, GA', - 1770640 => 'Roswell, GA', - 1770641 => 'Roswell, GA', - 1770642 => 'Roswell, GA', - 1770643 => 'Roswell, GA', - 1770646 => 'Buchanan, GA', - 1770648 => 'Conyers, GA', - 1770650 => 'Roswell, GA', - 1770662 => 'Norcross, GA', - 1770663 => 'Alpharetta, GA', - 1770664 => 'Alpharetta, GA', - 1770667 => 'Alpharetta, GA', - 1770668 => 'Atlanta, GA', - 1770671 => 'Atlanta, GA', - 1770677 => 'Atlanta, GA', - 1770679 => 'Conyers, GA', - 1770682 => 'Lawrenceville, GA', - 1770683 => 'Newnan, GA', - 1770684 => 'Rockmart, GA', - 1770698 => 'Atlanta, GA', - 1770704 => 'Canton, GA', - 1770707 => 'Hampton, GA', - 1770716 => 'Fayetteville, GA', - 1770718 => 'Gainesville, GA', - 1770719 => 'Fayetteville, GA', - 1770720 => 'Canton, GA', - 1770729 => 'Norcross, GA', - 1770730 => 'Atlanta, GA', - 1770732 => 'Austell, GA', - 1770735 => 'Ball Ground, GA', - 1770736 => 'Snellville, GA', - 1770740 => 'Alpharetta, GA', - 1770748 => 'Cedartown, GA', - 1770749 => 'Cedartown, GA', - 1770751 => 'Alpharetta, GA', - 1770752 => 'Alpharetta, GA', - 1770753 => 'Alpharetta, GA', - 1770754 => 'Alpharetta, GA', - 1770760 => 'Conyers, GA', - 1770761 => 'Conyers, GA', - 1770772 => 'Alpharetta, GA', - 1770773 => 'Adairsville, GA', - 1770775 => 'Jackson, GA', - 1770777 => 'Alpharetta, GA', - 1770781 => 'Cumming, GA', - 1770784 => 'Covington, GA', - 1770785 => 'Conyers, GA', - 1770786 => 'Covington, GA', - 1770787 => 'Covington, GA', - 1770788 => 'Covington, GA', - 1770792 => 'Marietta, GA', - 1770793 => 'Marietta, GA', - 1770794 => 'Marietta, GA', - 1770804 => 'Atlanta, GA', - 1770813 => 'Duluth, GA', - 1770814 => 'Duluth, GA', - 1770822 => 'Lawrenceville, GA', - 1770830 => 'Carrollton, GA', - 1770832 => 'Carrollton, GA', - 1770834 => 'Carrollton, GA', - 1770836 => 'Carrollton, GA', - 1770838 => 'Carrollton, GA', - 1770840 => 'Norcross, GA', - 1770844 => 'Cumming, GA', - 1770860 => 'Conyers, GA', - 1770867 => 'Winder, GA', - 1770868 => 'Winder, GA', - 1770869 => 'Lula, GA', - 1770879 => 'Stone Mountain, GA', - 1770886 => 'Cumming, GA', - 1770887 => 'Cumming, GA', - 1770888 => 'Cumming, GA', - 1770889 => 'Cumming, GA', - 1770898 => 'McDonough, GA', - 1770907 => 'Riverdale, GA', - 1770909 => 'Riverdale, GA', - 1770914 => 'McDonough, GA', - 1770917 => 'Acworth, GA', - 1770918 => 'Conyers, GA', - 1770919 => 'Marietta, GA', - 1770920 => 'Douglasville, GA', - 1770922 => 'Conyers, GA', - 1770924 => 'Woodstock, GA', - 1770926 => 'Woodstock, GA', - 1770927 => 'Luthersville, GA', - 1770929 => 'Conyers, GA', - 1770934 => 'Tucker, GA', - 1770938 => 'Tucker, GA', - 1770939 => 'Tucker, GA', - 1770942 => 'Douglasville, GA', - 1770945 => 'Buford, GA', - 1770946 => 'Hampton, GA', - 1770947 => 'Douglasville, GA', - 1770949 => 'Douglasville, GA', - 1770954 => 'McDonough, GA', - 1770957 => 'McDonough, GA', - 1770960 => 'Morrow, GA', - 1770961 => 'Morrow, GA', - 1770962 => 'Lawrenceville, GA', - 1770963 => 'Lawrenceville, GA', - 1770965 => 'Flowery Branch, GA', - 1770966 => 'Acworth, GA', - 1770967 => 'Flowery Branch, GA', - 1770968 => 'Morrow, GA', - 1770971 => 'Marietta, GA', - 1770972 => 'Snellville, GA', - 1770973 => 'Marietta, GA', - 1770974 => 'Acworth, GA', - 1770975 => 'Acworth, GA', - 1770977 => 'Marietta, GA', - 1770978 => 'Snellville, GA', - 1770979 => 'Snellville, GA', - 1770982 => 'Snellville, GA', - 1770985 => 'Snellville, GA', - 1770991 => 'Riverdale, GA', - 1770992 => 'Roswell, GA', - 1770993 => 'Roswell, GA', - 1770995 => 'Lawrenceville, GA', - 1770997 => 'Riverdale, GA', - 1770998 => 'Roswell, GA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1772.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1772.php deleted file mode 100644 index 5fd83aaa6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1772.php +++ /dev/null @@ -1,87 +0,0 @@ - 'Florida', - 1772204 => 'Port St. Lucie, FL', - 1772219 => 'Stuart, FL', - 1772220 => 'Stuart, FL', - 1772221 => 'Stuart, FL', - 1772223 => 'Stuart, FL', - 1772224 => 'Port St. Lucie, FL', - 1772225 => 'Jensen Beach, FL', - 1772226 => 'Vero Beach, FL', - 1772229 => 'Jensen Beach, FL', - 1772231 => 'Vero Beach, FL', - 1772232 => 'Jensen Beach, FL', - 1772234 => 'Vero Beach, FL', - 1772237 => 'Port St. Lucie, FL', - 1772257 => 'Vero Beach, FL', - 1772283 => 'Stuart, FL', - 1772286 => 'Stuart, FL', - 1772287 => 'Stuart, FL', - 1772288 => 'Stuart, FL', - 1772299 => 'Vero Beach, FL', - 1772321 => 'Vero Beach, FL', - 1772323 => 'Port St. Lucie, FL', - 1772334 => 'Jensen Beach, FL', - 1772335 => 'Port St. Lucie, FL', - 1772336 => 'Port St. Lucie, FL', - 1772337 => 'Port St. Lucie, FL', - 1772340 => 'Port St. Lucie, FL', - 1772343 => 'Port St. Lucie, FL', - 1772344 => 'Port St. Lucie, FL', - 1772345 => 'Port St. Lucie, FL', - 1772370 => 'Port St. Lucie, FL', - 1772388 => 'Sebastian, FL', - 1772398 => 'Port St. Lucie, FL', - 1772419 => 'Stuart, FL', - 1772429 => 'Fort Pierce, FL', - 1772460 => 'Fort Pierce, FL', - 1772461 => 'Fort Pierce, FL', - 1772462 => 'Fort Pierce, FL', - 1772463 => 'Stuart, FL', - 1772464 => 'Fort Pierce, FL', - 1772465 => 'Fort Pierce, FL', - 1772466 => 'Fort Pierce, FL', - 1772467 => 'Fort Pierce, FL', - 1772468 => 'Fort Pierce, FL', - 1772473 => 'Vero Beach, FL', - 1772489 => 'Fort Pierce, FL', - 1772492 => 'Vero Beach, FL', - 1772545 => 'Hobe Sound, FL', - 1772546 => 'Hobe Sound, FL', - 1772559 => 'Vero Beach, FL', - 1772562 => 'Vero Beach, FL', - 1772563 => 'Vero Beach, FL', - 1772564 => 'Vero Beach, FL', - 1772567 => 'Vero Beach, FL', - 1772569 => 'Vero Beach, FL', - 1772571 => 'Fellsmere, FL', - 1772581 => 'Sebastian, FL', - 1772589 => 'Sebastian, FL', - 1772595 => 'Fort Pierce, FL', - 1772597 => 'Indiantown, FL', - 1772600 => 'Stuart, FL', - 1772621 => 'Port St. Lucie, FL', - 1772626 => 'Port St. Lucie, FL', - 1772633 => 'Vero Beach, FL', - 1772664 => 'Sebastian, FL', - 1772672 => 'Fort Pierce, FL', - 1772692 => 'Stuart, FL', - 1772770 => 'Vero Beach, FL', - 1772778 => 'Vero Beach, FL', - 1772781 => 'Stuart, FL', - 1772785 => 'Port St. Lucie, FL', - 1772794 => 'Vero Beach, FL', - 1772807 => 'Port St. Lucie, FL', - 1772871 => 'Port St. Lucie, FL', - 1772873 => 'Port St. Lucie, FL', - 1772878 => 'Port St. Lucie, FL', - 1772879 => 'Port St. Lucie, FL', - 1772882 => 'Fort Pierce, FL', - 1772978 => 'Vero Beach, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1773.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1773.php deleted file mode 100644 index 746117152..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1773.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Chicago, IL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1774.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1774.php deleted file mode 100644 index 8b5ee98ff..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1774.php +++ /dev/null @@ -1,10 +0,0 @@ - 'Massachusetts', - 1774202 => 'New Bedford, MA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1775.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1775.php deleted file mode 100644 index 76524e90f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1775.php +++ /dev/null @@ -1,101 +0,0 @@ - 'Nevada', - 1775265 => 'Gardnerville, NV', - 1775273 => 'Lovelock, NV', - 1775284 => 'Reno, NV', - 1775289 => 'Ely, NV', - 1775322 => 'Reno, NV', - 1775323 => 'Reno, NV', - 1775324 => 'Reno, NV', - 1775327 => 'Reno, NV', - 1775328 => 'Reno, NV', - 1775329 => 'Reno, NV', - 1775331 => 'Sparks, NV', - 1775332 => 'Reno, NV', - 1775333 => 'Reno, NV', - 1775334 => 'Reno, NV', - 1775337 => 'Reno, NV', - 1775348 => 'Reno, NV', - 1775351 => 'Sparks, NV', - 1775352 => 'Sparks, NV', - 1775353 => 'Sparks, NV', - 1775355 => 'Sparks, NV', - 1775356 => 'Sparks, NV', - 1775358 => 'Sparks, NV', - 1775359 => 'Sparks, NV', - 1775423 => 'Fallon, NV', - 1775424 => 'Sparks, NV', - 1775425 => 'Sparks, NV', - 1775428 => 'Fallon, NV', - 1775445 => 'Carson City, NV', - 1775453 => 'Reno, NV', - 1775463 => 'Yerington, NV', - 1775482 => 'Tonopah, NV', - 1775537 => 'Pahrump, NV', - 1775575 => 'Fernley, NV', - 1775577 => 'Silver Springs, NV', - 1775588 => 'Stateline, NV', - 1775622 => 'Reno, NV', - 1775623 => 'Winnemucca, NV', - 1775624 => 'Reno, NV', - 1775625 => 'Winnemucca, NV', - 1775626 => 'Sparks, NV', - 1775635 => 'Battle Mountain, NV', - 1775636 => 'Reno, NV', - 1775657 => 'Reno, NV', - 1775677 => 'Reno, NV', - 1775684 => 'Carson City, NV', - 1775687 => 'Carson City, NV', - 1775689 => 'Reno, NV', - 1775726 => 'Caliente, NV', - 1775727 => 'Pahrump, NV', - 1775738 => 'Elko, NV', - 1775746 => 'Reno, NV', - 1775747 => 'Reno, NV', - 1775751 => 'Pahrump, NV', - 1775752 => 'Wells, NV', - 1775753 => 'Elko, NV', - 1775770 => 'Reno, NV', - 1775777 => 'Elko, NV', - 1775778 => 'Elko, NV', - 1775782 => 'Gardnerville, NV', - 1775784 => 'Reno, NV', - 1775786 => 'Reno, NV', - 1775787 => 'Reno, NV', - 1775823 => 'Reno, NV', - 1775824 => 'Reno, NV', - 1775825 => 'Reno, NV', - 1775826 => 'Reno, NV', - 1775827 => 'Reno, NV', - 1775828 => 'Reno, NV', - 1775829 => 'Reno, NV', - 1775831 => 'Incline Village, NV', - 1775832 => 'Incline Village, NV', - 1775833 => 'Incline Village, NV', - 1775841 => 'Carson City, NV', - 1775847 => 'Virginia City, NV', - 1775849 => 'Reno, NV', - 1775850 => 'Reno, NV', - 1775851 => 'Reno, NV', - 1775852 => 'Reno, NV', - 1775853 => 'Reno, NV', - 1775856 => 'Reno, NV', - 1775857 => 'Reno, NV', - 1775867 => 'Fallon, NV', - 1775882 => 'Carson City, NV', - 1775883 => 'Carson City, NV', - 1775884 => 'Carson City, NV', - 1775885 => 'Carson City, NV', - 1775886 => 'Carson City, NV', - 1775887 => 'Carson City, NV', - 1775888 => 'Carson City, NV', - 1775945 => 'Hawthorne, NV', - 1775972 => 'Reno, NV', - 1775982 => 'Reno, NV', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1778.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1778.php deleted file mode 100644 index 6c7fbb37e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1778.php +++ /dev/null @@ -1,24 +0,0 @@ - 'British Columbia', - 1778278 => 'Langley, BC', - 1778294 => 'Surrey, BC', - 1778297 => 'Richmond, BC', - 1778298 => 'Langley, BC', - 1778340 => 'North Vancouver, BC', - 1778371 => 'Vancouver, BC', - 1778395 => 'Surrey, BC', - 1778397 => 'New Westminster, BC', - 1778471 => 'Kamloops, BC', - 1778475 => 'Vernon, BC', - 1778476 => 'Penticton, BC', - 1778478 => 'Kelowna, BC', - 1778484 => 'Kelowna, BC', - 1778565 => 'Surrey, BC', - 1778574 => 'Surrey, BC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1779.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1779.php deleted file mode 100644 index 7959d7cd5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1779.php +++ /dev/null @@ -1,10 +0,0 @@ - 'Illinois', - 1779423 => 'Rockford, IL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1780.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1780.php deleted file mode 100644 index 93d2a00e6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1780.php +++ /dev/null @@ -1,190 +0,0 @@ - 'Alberta', - 1780332 => 'Grimshaw, AB', - 1780336 => 'Viking, AB', - 1780349 => 'Westlock, AB', - 1780352 => 'Wetaskiwin, AB', - 1780354 => 'Beaverlodge, AB', - 1780361 => 'Wetaskiwin, AB', - 1780385 => 'Killam, AB', - 1780387 => 'Millet, AB', - 1780402 => 'Grande Prairie, AB', - 1780406 => 'Edmonton, AB', - 1780407 => 'Edmonton, AB', - 1780408 => 'Edmonton, AB', - 1780409 => 'Edmonton, AB', - 1780413 => 'Edmonton, AB', - 1780414 => 'Edmonton, AB', - 1780416 => 'Sherwood Park, AB', - 1780417 => 'Sherwood Park, AB', - 1780418 => 'St. Albert, AB', - 1780420 => 'Edmonton, AB', - 1780421 => 'Edmonton, AB', - 1780422 => 'Edmonton, AB', - 1780423 => 'Edmonton, AB', - 1780424 => 'Edmonton, AB', - 1780425 => 'Edmonton, AB', - 1780426 => 'Edmonton, AB', - 1780428 => 'Edmonton, AB', - 1780429 => 'Edmonton, AB', - 1780430 => 'Edmonton, AB', - 1780431 => 'Edmonton, AB', - 1780432 => 'Edmonton, AB', - 1780433 => 'Edmonton, AB', - 1780434 => 'Edmonton, AB', - 1780435 => 'Edmonton, AB', - 1780436 => 'Edmonton, AB', - 1780437 => 'Edmonton, AB', - 1780438 => 'Edmonton, AB', - 1780439 => 'Edmonton, AB', - 1780440 => 'Edmonton, AB', - 1780441 => 'Edmonton, AB', - 1780442 => 'Edmonton, AB', - 1780443 => 'Edmonton, AB', - 1780444 => 'Edmonton, AB', - 1780446 => 'Edmonton, AB', - 1780447 => 'Edmonton, AB', - 1780448 => 'Edmonton, AB', - 1780449 => 'Sherwood Park, AB', - 1780450 => 'Edmonton, AB', - 1780451 => 'Edmonton, AB', - 1780452 => 'Edmonton, AB', - 1780453 => 'Edmonton, AB', - 1780454 => 'Edmonton, AB', - 1780455 => 'Edmonton, AB', - 1780456 => 'Edmonton, AB', - 1780457 => 'Edmonton, AB', - 1780458 => 'St. Albert, AB', - 1780459 => 'St. Albert, AB', - 1780460 => 'St. Albert, AB', - 1780461 => 'Edmonton, AB', - 1780462 => 'Edmonton, AB', - 1780463 => 'Edmonton, AB', - 1780464 => 'Sherwood Park, AB', - 1780465 => 'Edmonton, AB', - 1780466 => 'Edmonton, AB', - 1780467 => 'Sherwood Park, AB', - 1780468 => 'Edmonton, AB', - 1780469 => 'Edmonton, AB', - 1780470 => 'St. Albert, AB', - 1780471 => 'Edmonton, AB', - 1780472 => 'Edmonton, AB', - 1780473 => 'Edmonton, AB', - 1780474 => 'Edmonton, AB', - 1780475 => 'Edmonton, AB', - 1780476 => 'Edmonton, AB', - 1780477 => 'Edmonton, AB', - 1780478 => 'Edmonton, AB', - 1780479 => 'Edmonton, AB', - 1780481 => 'Edmonton, AB', - 1780482 => 'Edmonton, AB', - 1780483 => 'Edmonton, AB', - 1780484 => 'Edmonton, AB', - 1780485 => 'Edmonton, AB', - 1780486 => 'Edmonton, AB', - 1780487 => 'Edmonton, AB', - 1780488 => 'Edmonton, AB', - 1780489 => 'Edmonton, AB', - 1780490 => 'Edmonton, AB', - 1780492 => 'Edmonton, AB', - 1780496 => 'Edmonton, AB', - 1780497 => 'Edmonton, AB', - 1780499 => 'Edmonton, AB', - 1780513 => 'Grande Prairie, AB', - 1780523 => 'High Prairie, AB', - 1780524 => 'Valleyview, AB', - 1780532 => 'Grande Prairie, AB', - 1780538 => 'Grande Prairie, AB', - 1780539 => 'Grande Prairie, AB', - 1780542 => 'Drayton Valley, AB', - 1780568 => 'Sexsmith, AB', - 1780594 => 'Cold Lake, AB', - 1780608 => 'Camrose, AB', - 1780621 => 'Drayton Valley, AB', - 1780622 => 'Fox Creek, AB', - 1780623 => 'Lac la Biche, AB', - 1780624 => 'Peace River, AB', - 1780628 => 'Edmonton, AB', - 1780632 => 'Vegreville, AB', - 1780639 => 'Cold Lake, AB', - 1780645 => 'Saint Paul, AB', - 1780656 => 'Smoky Lake, AB', - 1780662 => 'Tofield, AB', - 1780672 => 'Camrose, AB', - 1780674 => 'Barrhead, AB', - 1780675 => 'Athabasca, AB', - 1780679 => 'Camrose, AB', - 1780689 => 'Boyle, AB', - 1780701 => 'Edmonton, AB', - 1780702 => 'Edmonton, AB', - 1780706 => 'Whitecourt, AB', - 1780712 => 'Edson, AB', - 1780715 => 'Fort McMurray, AB', - 1780723 => 'Edson, AB', - 1780724 => 'Elk Point, AB', - 1780727 => 'Evansburg, AB', - 1780743 => 'Fort McMurray, AB', - 1780750 => 'Fort McMurray, AB', - 1780753 => 'Provost, AB', - 1780756 => 'Edmonton, AB', - 1780757 => 'Edmonton, AB', - 1780758 => 'Edmonton, AB', - 1780760 => 'Edmonton, AB', - 1780761 => 'Edmonton, AB', - 1780778 => 'Whitecourt, AB', - 1780786 => 'Mayerthorpe, AB', - 1780790 => 'Fort McMurray, AB', - 1780791 => 'Fort McMurray, AB', - 1780799 => 'Fort McMurray, AB', - 1780800 => 'Edmonton, AB', - 1780808 => 'Lloydminster, AB', - 1780812 => 'Bonnyville, AB', - 1780814 => 'Grande Prairie, AB', - 1780826 => 'Bonnyville, AB', - 1780827 => 'Grande Cache, AB', - 1780830 => 'Grande Prairie, AB', - 1780831 => 'Grande Prairie, AB', - 1780832 => 'Grande Prairie, AB', - 1780835 => 'Fairview, AB', - 1780836 => 'Manning, AB', - 1780837 => 'Falher, AB', - 1780842 => 'Wainwright, AB', - 1780849 => 'Slave Lake, AB', - 1780852 => 'Jasper, AB', - 1780853 => 'Vermilion, AB', - 1780865 => 'Hinton, AB', - 1780871 => 'Lloydminster, AB', - 1780872 => 'Lloydminster, AB', - 1780875 => 'Lloydminster, AB', - 1780882 => 'Grande Prairie, AB', - 1780895 => 'Lamont, AB', - 1780922 => 'Ardrossan, AB', - 1780926 => 'High Level, AB', - 1780928 => 'La Crête, AB', - 1780929 => 'Beaumont, AB', - 1780930 => 'Edmonton, AB', - 1780939 => 'Morinville, AB', - 1780942 => 'Redwater, AB', - 1780944 => 'Edmonton, AB', - 1780955 => 'Nisku, AB', - 1780960 => 'Spruce Grove, AB', - 1780962 => 'Spruce Grove, AB', - 1780963 => 'Stony Plain, AB', - 1780967 => 'Onoway, AB', - 1780968 => 'Stony Plain, AB', - 1780980 => 'Leduc, AB', - 1780986 => 'Leduc, AB', - 1780987 => 'Devon, AB', - 1780988 => 'Edmonton, AB', - 1780989 => 'Edmonton, AB', - 1780990 => 'Edmonton, AB', - 1780992 => 'Fort Saskatchewan, AB', - 1780993 => 'Edmonton, AB', - 1780998 => 'Fort Saskatchewan, AB', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1781.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1781.php deleted file mode 100644 index 78a943f85..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1781.php +++ /dev/null @@ -1,143 +0,0 @@ - 'Massachusetts', - 1781209 => 'Waltham, MA', - 1781221 => 'Burlington, MA', - 1781224 => 'Wakefield, MA', - 1781229 => 'Burlington, MA', - 1781231 => 'Saugus, MA', - 1781233 => 'Saugus, MA', - 1781235 => 'Wellesley, MA', - 1781237 => 'Wellesley, MA', - 1781239 => 'Wellesley, MA', - 1781245 => 'Wakefield, MA', - 1781246 => 'Wakefield, MA', - 1781251 => 'Dedham, MA', - 1781255 => 'Norwood, MA', - 1781259 => 'Lincoln, MA', - 1781270 => 'Burlington, MA', - 1781272 => 'Burlington, MA', - 1781273 => 'Burlington, MA', - 1781274 => 'Lexington, MA', - 1781275 => 'Bedford, MA', - 1781278 => 'Norwood, MA', - 1781279 => 'Stoneham, MA', - 1781281 => 'Woburn, MA', - 1781284 => 'Revere, MA', - 1781286 => 'Revere, MA', - 1781289 => 'Revere, MA', - 1781297 => 'Stoughton, MA', - 1781306 => 'Medford, MA', - 1781316 => 'Arlington, MA', - 1781320 => 'Dedham, MA', - 1781321 => 'Malden, MA', - 1781322 => 'Malden, MA', - 1781324 => 'Malden, MA', - 1781326 => 'Dedham, MA', - 1781329 => 'Dedham, MA', - 1781334 => 'Lynnfield, MA', - 1781335 => 'Weymouth, MA', - 1781337 => 'Weymouth, MA', - 1781338 => 'Malden, MA', - 1781341 => 'Stoughton, MA', - 1781344 => 'Stoughton, MA', - 1781356 => 'Braintree, MA', - 1781376 => 'Woburn, MA', - 1781380 => 'Braintree, MA', - 1781383 => 'Cohasset, MA', - 1781388 => 'Malden, MA', - 1781391 => 'Medford, MA', - 1781393 => 'Medford, MA', - 1781395 => 'Medford, MA', - 1781396 => 'Medford, MA', - 1781397 => 'Malden, MA', - 1781407 => 'Westwood, MA', - 1781431 => 'Wellesley, MA', - 1781433 => 'Needham, MA', - 1781436 => 'Stoughton, MA', - 1781438 => 'Stoneham, MA', - 1781444 => 'Needham, MA', - 1781447 => 'Whitman, MA', - 1781449 => 'Needham, MA', - 1781453 => 'Needham, MA', - 1781455 => 'Needham, MA', - 1781461 => 'Dedham, MA', - 1781477 => 'Lynn, MA', - 1781485 => 'Revere, MA', - 1781487 => 'Waltham, MA', - 1781544 => 'Scituate, MA', - 1781545 => 'Scituate, MA', - 1781551 => 'Norwood, MA', - 1781575 => 'Canton, MA', - 1781581 => 'Lynn, MA', - 1781582 => 'Kingston, MA', - 1781585 => 'Kingston, MA', - 1781592 => 'Lynn, MA', - 1781593 => 'Lynn, MA', - 1781595 => 'Lynn, MA', - 1781596 => 'Lynn, MA', - 1781598 => 'Lynn, MA', - 1781599 => 'Lynn, MA', - 1781631 => 'Marblehead, MA', - 1781639 => 'Marblehead, MA', - 1781641 => 'Arlington, MA', - 1781642 => 'Waltham, MA', - 1781643 => 'Arlington, MA', - 1781646 => 'Arlington, MA', - 1781647 => 'Waltham, MA', - 1781648 => 'Arlington, MA', - 1781659 => 'Norwell, MA', - 1781662 => 'Melrose, MA', - 1781665 => 'Melrose, MA', - 1781674 => 'Lexington, MA', - 1781682 => 'Weymouth, MA', - 1781687 => 'Bedford, MA', - 1781721 => 'Winchester, MA', - 1781729 => 'Winchester, MA', - 1781740 => 'Hingham, MA', - 1781741 => 'Hingham, MA', - 1781744 => 'Burlington, MA', - 1781749 => 'Hingham, MA', - 1781756 => 'Winchester, MA', - 1781762 => 'Norwood, MA', - 1781767 => 'Holbrook, MA', - 1781769 => 'Norwood, MA', - 1781780 => 'Lynn, MA', - 1781784 => 'Sharon, MA', - 1781821 => 'Canton, MA', - 1781826 => 'Hanover, MA', - 1781828 => 'Canton, MA', - 1781834 => 'Marshfield, MA', - 1781837 => 'Marshfield, MA', - 1781843 => 'Braintree, MA', - 1781848 => 'Braintree, MA', - 1781849 => 'Braintree, MA', - 1781860 => 'Lexington, MA', - 1781861 => 'Lexington, MA', - 1781862 => 'Lexington, MA', - 1781863 => 'Lexington, MA', - 1781890 => 'Waltham, MA', - 1781891 => 'Waltham, MA', - 1781893 => 'Waltham, MA', - 1781894 => 'Waltham, MA', - 1781895 => 'Waltham, MA', - 1781899 => 'Waltham, MA', - 1781925 => 'Hull, MA', - 1781932 => 'Woburn, MA', - 1781933 => 'Woburn, MA', - 1781934 => 'Duxbury, MA', - 1781935 => 'Woburn, MA', - 1781937 => 'Woburn, MA', - 1781938 => 'Woburn, MA', - 1781942 => 'Reading, MA', - 1781944 => 'Reading, MA', - 1781961 => 'Randolph, MA', - 1781963 => 'Randolph, MA', - 1781979 => 'Melrose, MA', - 1781986 => 'Randolph, MA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1782.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1782.php deleted file mode 100644 index 301d72deb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1782.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Nova Scotia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1785.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1785.php deleted file mode 100644 index 4ab46a9d4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1785.php +++ /dev/null @@ -1,128 +0,0 @@ - 'Kansas', - 1785215 => 'Topeka, KS', - 1785222 => 'La Crosse, KS', - 1785227 => 'Lindsborg, KS', - 1785228 => 'Topeka, KS', - 1785229 => 'Ottawa, KS', - 1785232 => 'Topeka, KS', - 1785233 => 'Topeka, KS', - 1785234 => 'Topeka, KS', - 1785235 => 'Topeka, KS', - 1785238 => 'Junction City, KS', - 1785239 => 'Fort Riley, KS', - 1785242 => 'Ottawa, KS', - 1785243 => 'Concordia, KS', - 1785246 => 'Topeka, KS', - 1785258 => 'Herington, KS', - 1785263 => 'Abilene, KS', - 1785266 => 'Topeka, KS', - 1785267 => 'Topeka, KS', - 1785271 => 'Topeka, KS', - 1785272 => 'Topeka, KS', - 1785273 => 'Topeka, KS', - 1785282 => 'Smith Center, KS', - 1785284 => 'Sabetha, KS', - 1785286 => 'Topeka, KS', - 1785295 => 'Topeka, KS', - 1785296 => 'Topeka, KS', - 1785309 => 'Salina, KS', - 1785312 => 'Lawrence, KS', - 1785320 => 'Manhattan, KS', - 1785325 => 'Washington, KS', - 1785331 => 'Lawrence, KS', - 1785332 => 'St. Francis, KS', - 1785336 => 'Seneca, KS', - 1785346 => 'Osborne, KS', - 1785350 => 'Topeka, KS', - 1785354 => 'Topeka, KS', - 1785357 => 'Topeka, KS', - 1785363 => 'Blue Rapids, KS', - 1785364 => 'Holton, KS', - 1785368 => 'Topeka, KS', - 1785378 => 'Mankato, KS', - 1785379 => 'Tecumseh, KS', - 1785392 => 'Minneapolis, KS', - 1785404 => 'Salina, KS', - 1785421 => 'Hill City, KS', - 1785425 => 'Stockton, KS', - 1785434 => 'Plainville, KS', - 1785437 => 'Saint Marys, KS', - 1785448 => 'Garnett, KS', - 1785452 => 'Salina, KS', - 1785454 => 'Downs, KS', - 1785456 => 'Wamego, KS', - 1785460 => 'Colby, KS', - 1785462 => 'Colby, KS', - 1785472 => 'Ellsworth, KS', - 1785475 => 'Oberlin, KS', - 1785478 => 'Topeka, KS', - 1785483 => 'Russell, KS', - 1785484 => 'Meriden, KS', - 1785486 => 'Horton, KS', - 1785524 => 'Lincoln, KS', - 1785527 => 'Belleville, KS', - 1785528 => 'Osage City, KS', - 1785532 => 'Manhattan, KS', - 1785537 => 'Manhattan, KS', - 1785539 => 'Manhattan, KS', - 1785542 => 'Eudora, KS', - 1785543 => 'Phillipsburg, KS', - 1785562 => 'Marysville, KS', - 1785587 => 'Manhattan, KS', - 1785594 => 'Baldwin City, KS', - 1785621 => 'Hays, KS', - 1785623 => 'Hays, KS', - 1785625 => 'Hays, KS', - 1785626 => 'Atwood, KS', - 1785628 => 'Hays, KS', - 1785632 => 'Clay Center, KS', - 1785672 => 'Oakley, KS', - 1785675 => 'Hoxie, KS', - 1785726 => 'Ellis, KS', - 1785735 => 'Victoria, KS', - 1785738 => 'Beloit, KS', - 1785742 => 'Hiawatha, KS', - 1785743 => 'WaKeeney, KS', - 1785749 => 'Lawrence, KS', - 1785754 => 'Quinter, KS', - 1785762 => 'Junction City, KS', - 1785766 => 'Lawrence, KS', - 1785776 => 'Manhattan, KS', - 1785783 => 'Topeka, KS', - 1785798 => 'Ness City, KS', - 1785820 => 'Salina, KS', - 1785823 => 'Salina, KS', - 1785825 => 'Salina, KS', - 1785826 => 'Salina, KS', - 1785827 => 'Salina, KS', - 1785828 => 'Lyndon, KS', - 1785830 => 'Lawrence, KS', - 1785832 => 'Lawrence, KS', - 1785836 => 'Carbondale, KS', - 1785838 => 'Lawrence, KS', - 1785840 => 'Lawrence, KS', - 1785841 => 'Lawrence, KS', - 1785842 => 'Lawrence, KS', - 1785843 => 'Lawrence, KS', - 1785852 => 'Sharon Springs, KS', - 1785856 => 'Lawrence, KS', - 1785862 => 'Topeka, KS', - 1785863 => 'Oskaloosa, KS', - 1785864 => 'Lawrence, KS', - 1785865 => 'Lawrence, KS', - 1785877 => 'Norton, KS', - 1785883 => 'Wellsville, KS', - 1785889 => 'Onaga, KS', - 1785890 => 'Goodland, KS', - 1785899 => 'Goodland, KS', - 1785945 => 'Valley Falls, KS', - 1785985 => 'Troy, KS', - 1785989 => 'Wathena, KS', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1786.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1786.php deleted file mode 100644 index 28272c0e3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1786.php +++ /dev/null @@ -1,24 +0,0 @@ - 'Florida', - 1786242 => 'Miami, FL', - 1786243 => 'Homestead, FL', - 1786250 => 'Miami, FL', - 1786293 => 'Miami, FL', - 1786294 => 'Miami, FL', - 1786362 => 'Miami, FL', - 1786388 => 'Miami, FL', - 1786507 => 'Miami, FL', - 1786517 => 'Miami, FL', - 1786536 => 'Miami, FL', - 1786558 => 'Miami, FL', - 1786573 => 'Miami, FL', - 1786596 => 'Miami, FL', - 1786621 => 'Miami, FL', - 1786662 => 'South Miami, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/18.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/18.php new file mode 100644 index 000000000..b82b48507 --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/18.php @@ -0,0 +1,4408 @@ + 'Utah', + 1801213 => 'Salt Lake City, UT', + 1801221 => 'Orem, UT', + 1801222 => 'Orem, UT', + 1801224 => 'Orem, UT', + 1801225 => 'Orem, UT', + 1801226 => 'Orem, UT', + 1801227 => 'Orem, UT', + 1801229 => 'Orem, UT', + 1801250 => 'Magna, UT', + 1801257 => 'South State Street, Salt Lake City, UT', + 1801262 => 'Salt Lake City, UT', + 1801263 => 'Salt Lake City, UT', + 1801269 => 'Salt Lake City, UT', + 1801272 => 'Salt Lake City, UT', + 1801274 => 'Salt Lake City, UT', + 1801277 => 'Salt Lake City, UT', + 1801278 => 'Salt Lake City, UT', + 1801280 => 'West Jordan, UT', + 1801282 => 'West Jordan, UT', + 1801288 => 'Salt Lake City, UT', + 1801292 => 'Bountiful, UT', + 1801293 => 'Salt Lake City, UT', + 1801295 => 'Bountiful, UT', + 1801296 => 'Bountiful, UT', + 1801298 => 'Bountiful, UT', + 1801299 => 'Bountiful, UT', + 1801314 => 'Murray, UT', + 1801322 => 'Salt Lake City, UT', + 1801326 => 'Salt Lake City, UT', + 1801328 => 'Salt Lake City, UT', + 1801334 => 'Ogden, UT', + 1801341 => 'Lehi, UT', + 1801350 => 'Salt Lake City, UT', + 1801355 => 'Salt Lake City, UT', + 1801356 => 'Provo, UT', + 1801357 => 'Provo, UT', + 1801359 => 'Salt Lake City, UT', + 1801363 => 'Salt Lake City, UT', + 1801364 => 'Salt Lake City, UT', + 1801370 => 'Provo, UT', + 1801373 => 'Provo, UT', + 1801374 => 'Provo, UT', + 1801375 => 'Provo, UT', + 1801377 => 'Provo, UT', + 1801387 => 'Ogden, UT', + 1801392 => 'Ogden, UT', + 1801393 => 'Ogden, UT', + 1801394 => 'Ogden, UT', + 1801397 => 'Bountiful, UT', + 1801399 => 'Ogden, UT', + 1801408 => 'Salt Lake City, UT', + 1801422 => 'Provo, UT', + 1801423 => 'Salem, UT', + 1801426 => 'Orem, UT', + 1801429 => 'Provo, UT', + 1801433 => 'Salt Lake City, UT', + 1801434 => 'Orem, UT', + 1801444 => 'Layton, UT', + 1801447 => 'Farmington, UT', + 1801451 => 'Farmington, UT', + 1801456 => 'Salt Lake City, UT', + 1801463 => 'Salt Lake City, UT', + 1801465 => 'Payson, UT', + 1801466 => 'Salt Lake City, UT', + 1801467 => 'Salt Lake City, UT', + 1801468 => 'Salt Lake City, UT', + 1801474 => 'Salt Lake City, UT', + 1801475 => 'Ogden, UT', + 1801476 => 'Ogden, UT', + 1801479 => 'Ogden, UT', + 1801483 => 'Salt Lake City, UT', + 1801484 => 'Salt Lake City, UT', + 1801485 => 'Salt Lake City, UT', + 1801486 => 'Salt Lake City, UT', + 1801487 => 'Salt Lake City, UT', + 1801489 => 'Springville, UT', + 1801491 => 'Springville, UT', + 1801492 => 'American Fork, UT', + 1801501 => 'Sandy, UT', + 1801507 => 'Murray, UT', + 1801521 => 'Salt Lake City, UT', + 1801524 => 'Salt Lake City, UT', + 1801531 => 'Salt Lake City, UT', + 1801532 => 'Salt Lake City, UT', + 1801533 => 'Salt Lake City, UT', + 1801535 => 'Salt Lake City, UT', + 1801538 => 'Salt Lake City, UT', + 1801539 => 'Salt Lake City, UT', + 1801544 => 'Layton, UT', + 1801546 => 'Layton, UT', + 1801547 => 'Layton, UT', + 1801555 => 'Windsor North, Orem, UT', + 1801575 => 'Salt Lake City, UT', + 1801578 => 'Salt Lake City, UT', + 1801581 => 'Salt Lake City, UT', + 1801582 => 'Salt Lake City, UT', + 1801583 => 'Salt Lake City, UT', + 1801584 => 'Salt Lake City, UT', + 1801585 => 'Salt Lake City, UT', + 1801587 => 'Salt Lake City, UT', + 1801590 => 'Salt Lake City, UT', + 1801593 => 'Layton, UT', + 1801595 => 'Salt Lake City, UT', + 1801596 => 'Salt Lake City, UT', + 1801621 => 'Ogden, UT', + 1801625 => 'Ogden, UT', + 1801626 => 'Ogden, UT', + 1801627 => 'Ogden, UT', + 1801662 => 'Salt Lake City, UT', + 1801737 => 'Ogden, UT', + 1801745 => 'Eden, UT', + 1801746 => 'Salt Lake City, UT', + 1801754 => 'Santaquin, UT', + 1801756 => 'American Fork, UT', + 1801763 => 'American Fork, UT', + 1801765 => 'Orem, UT', + 1801766 => 'Lehi, UT', + 1801768 => 'Lehi, UT', + 1801771 => 'Layton, UT', + 1801782 => 'Ogden, UT', + 1801785 => 'Pleasant Grove, UT', + 1801786 => 'Ogden, UT', + 1801789 => 'Eagle Mountain, UT', + 1801794 => 'Spanish Fork, UT', + 1801798 => 'Spanish Fork, UT', + 1801802 => 'Orem, UT', + 1801829 => 'Morgan, UT', + 1801852 => 'Provo, UT', + 1801855 => 'American Fork, UT', + 1801886 => 'Salt Lake City, UT', + 1801904 => 'Salt Lake City, UT', + 1801906 => 'Salt Lake City, UT', + 1801908 => 'Salt Lake City, UT', + 1801924 => 'Salt Lake City, UT', + 1801936 => 'North Salt Lake, UT', + 1801942 => 'Salt Lake City, UT', + 1801953 => 'Salt Lake City, UT', + 1801968 => 'Salt Lake City, UT', + 1801972 => 'Salt Lake City, UT', + 1801973 => 'Salt Lake City, UT', + 1801974 => 'Salt Lake City, UT', + 1801975 => 'Salt Lake City, UT', + 1801977 => 'Salt Lake City, UT', + 1801978 => 'Salt Lake City, UT', + 1801983 => 'Salt Lake City, UT', + 1801985 => 'Roy, UT', + 1801990 => 'Salt Lake City, UT', + 1802 => 'Vermont', + 1802222 => 'Bradford, VT', + 1802223 => 'Montpelier, VT', + 1802228 => 'Ludlow, VT', + 1802229 => 'Montpelier, VT', + 1802234 => 'Bethel, VT', + 1802244 => 'Waterbury, VT', + 1802247 => 'Brandon, VT', + 1802251 => 'Brattleboro, VT', + 1802253 => 'Stowe, VT', + 1802254 => 'Brattleboro, VT', + 1802257 => 'Brattleboro, VT', + 1802258 => 'Brattleboro, VT', + 1802265 => 'Fair Haven, VT', + 1802287 => 'Poultney, VT', + 1802295 => 'White River Junction, VT', + 1802296 => 'White River Junction, VT', + 1802333 => 'Fairlee, VT', + 1802334 => 'Newport, VT', + 1802365 => 'Townshend, VT', + 1802371 => 'Berlin, VT', + 1802375 => 'Arlington, VT', + 1802387 => 'Putney, VT', + 1802388 => 'Middlebury, VT', + 1802422 => 'Killington, VT', + 1802425 => 'Charlotte, VT', + 1802434 => 'Richmond, VT', + 1802436 => 'Hartland, VT', + 1802438 => 'West Rutland, VT', + 1802442 => 'Bennington, VT', + 1802446 => 'Wallingford, VT', + 1802447 => 'Bennington, VT', + 1802453 => 'Bristol, VT', + 1802454 => 'Plainfield, VT', + 1802457 => 'Woodstock, VT', + 1802463 => 'Bellows Falls, VT', + 1802464 => 'Wilmington, VT', + 1802468 => 'Castleton, VT', + 1802472 => 'Hardwick, VT', + 1802476 => 'Barre, VT', + 1802479 => 'Barre, VT', + 1802482 => 'Hinesburg, VT', + 1802483 => 'Pittsford, VT', + 1802485 => 'Northfield, VT', + 1802488 => 'Burlington, VT', + 1802496 => 'Waitsfield, VT', + 1802524 => 'St. Albans, VT', + 1802525 => 'Barton, VT', + 1802527 => 'St. Albans, VT', + 1802626 => 'Lyndonville, VT', + 1802635 => 'Johnson, VT', + 1802649 => 'Norwich, VT', + 1802656 => 'Burlington, VT', + 1802674 => 'Windsor, VT', + 1802685 => 'Chelsea, VT', + 1802728 => 'Randolph, VT', + 1802747 => 'Rutland, VT', + 1802748 => 'St. Johnsbury, VT', + 1802754 => 'Orleans, VT', + 1802763 => 'South Royalton, VT', + 1802766 => 'Derby, VT', + 1802767 => 'Rochester, VT', + 1802773 => 'Rutland, VT', + 1802775 => 'Rutland, VT', + 1802786 => 'Rutland, VT', + 1802824 => 'Londonderry, VT', + 1802828 => 'Montpelier, VT', + 1802847 => 'Burlington, VT', + 1802848 => 'Richford, VT', + 1802849 => 'Fairfax, VT', + 1802868 => 'Swanton, VT', + 1802875 => 'Chester, VT', + 1802877 => 'Vergennes, VT', + 1802885 => 'Springfield, VT', + 1802886 => 'Springfield, VT', + 1802888 => 'Morrisville, VT', + 1802893 => 'Milton, VT', + 1802899 => 'Jericho, VT', + 1802933 => 'Enosburg Falls, VT', + 1802985 => 'Shelburne, VT', + 1803 => 'South Carolina', + 1803212 => 'Columbia, SC', + 1803222 => 'Clover, SC', + 1803226 => 'Aiken, SC', + 1803227 => 'Columbia, SC', + 1803245 => 'Bamberg, SC', + 1803247 => 'North, SC', + 1803251 => 'Columbia, SC', + 1803252 => 'Columbia, SC', + 1803253 => 'Columbia, SC', + 1803254 => 'Columbia, SC', + 1803255 => 'Columbia, SC', + 1803256 => 'Columbia, SC', + 1803259 => 'Barnwell, SC', + 1803266 => 'Williston, SC', + 1803275 => 'Johnston, SC', + 1803276 => 'Newberry, SC', + 1803278 => 'North Augusta, SC', + 1803279 => 'North Augusta, SC', + 1803283 => 'Lancaster, SC', + 1803285 => 'Lancaster, SC', + 1803286 => 'Lancaster, SC', + 1803289 => 'Lancaster, SC', + 1803296 => 'Columbia, SC', + 1803321 => 'Newberry, SC', + 1803324 => 'Rock Hill, SC', + 1803325 => 'Rock Hill, SC', + 1803327 => 'Rock Hill, SC', + 1803328 => 'Rock Hill, SC', + 1803329 => 'Rock Hill, SC', + 1803337 => 'Ridgeway, SC', + 1803345 => 'Chapin, SC', + 1803353 => 'Eastover, SC', + 1803356 => 'Lexington, SC', + 1803358 => 'Lexington, SC', + 1803359 => 'Lexington, SC', + 1803364 => 'Prosperity, SC', + 1803366 => 'Rock Hill, SC', + 1803376 => 'Columbia, SC', + 1803377 => 'Chester, SC', + 1803385 => 'Chester, SC', + 1803396 => 'Fort Mill, SC', + 1803405 => 'Newberry, SC', + 1803408 => 'Lugoff, SC', + 1803419 => 'Columbia, SC', + 1803424 => 'Camden, SC', + 1803425 => 'Camden, SC', + 1803428 => 'Bishopville, SC', + 1803432 => 'Camden, SC', + 1803433 => 'Manning, SC', + 1803434 => 'Columbia, SC', + 1803435 => 'Manning, SC', + 1803436 => 'Sumter, SC', + 1803438 => 'Lugoff, SC', + 1803454 => 'Columbia, SC', + 1803461 => 'Columbia, SC', + 1803462 => 'Columbia, SC', + 1803469 => 'Sumter, SC', + 1803473 => 'Manning, SC', + 1803475 => 'Kershaw, SC', + 1803478 => 'Summerton, SC', + 1803481 => 'Sumter, SC', + 1803482 => 'Great Falls, SC', + 1803484 => 'Bishopville, SC', + 1803492 => 'Eutawville, SC', + 1803494 => 'Sumter, SC', + 1803496 => 'Holly Hill, SC', + 1803520 => 'Lexington, SC', + 1803531 => 'Orangeburg, SC', + 1803532 => 'Batesburg-Leesville, SC', + 1803533 => 'Orangeburg, SC', + 1803534 => 'Orangeburg, SC', + 1803535 => 'Orangeburg, SC', + 1803536 => 'Orangeburg, SC', + 1803541 => 'Barnwell, SC', + 1803547 => 'Fort Mill, SC', + 1803548 => 'Fort Mill, SC', + 1803564 => 'Wagener, SC', + 1803568 => 'Swansea, SC', + 1803581 => 'Chester, SC', + 1803584 => 'Allendale, SC', + 1803625 => 'Estill, SC', + 1803628 => 'York, SC', + 1803632 => 'Fairfax, SC', + 1803635 => 'Winnsboro, SC', + 1803637 => 'Edgefield, SC', + 1803641 => 'Aiken, SC', + 1803642 => 'Aiken, SC', + 1803643 => 'Aiken, SC', + 1803644 => 'Aiken, SC', + 1803647 => 'Columbia, SC', + 1803648 => 'Aiken, SC', + 1803649 => 'Aiken, SC', + 1803652 => 'New Ellenton, SC', + 1803661 => 'Columbia, SC', + 1803663 => 'Graniteville, SC', + 1803684 => 'York, SC', + 1803685 => 'Ridge Spring, SC', + 1803691 => 'Columbia, SC', + 1803695 => 'Columbia, SC', + 1803699 => 'Columbia, SC', + 1803708 => 'Columbia, SC', + 1803713 => 'Camden, SC', + 1803714 => 'Columbia, SC', + 1803731 => 'Columbia, SC', + 1803733 => 'Columbia, SC', + 1803734 => 'Columbia, SC', + 1803735 => 'Columbia, SC', + 1803736 => 'Columbia, SC', + 1803738 => 'Columbia, SC', + 1803739 => 'West Columbia, SC', + 1803744 => 'Columbia, SC', + 1803748 => 'Columbia, SC', + 1803750 => 'Columbia, SC', + 1803751 => 'East & Southern, Columbia, SC', + 1803754 => 'Columbia, SC', + 1803755 => 'West Columbia, SC', + 1803765 => 'Columbia, SC', + 1803771 => 'Columbia, SC', + 1803772 => 'Columbia, SC', + 1803773 => 'Sumter, SC', + 1803774 => 'Sumter, SC', + 1803775 => 'Sumter, SC', + 1803776 => 'Columbia, SC', + 1803777 => 'Columbia, SC', + 1803778 => 'Sumter, SC', + 1803779 => 'Columbia, SC', + 1803782 => 'Columbia, SC', + 1803783 => 'Columbia, SC', + 1803786 => 'Columbia, SC', + 1803787 => 'Columbia, SC', + 1803788 => 'Columbia, SC', + 1803789 => 'Richburg, SC', + 1803790 => 'Columbia, SC', + 1803791 => 'West Columbia, SC', + 1803793 => 'Denmark, SC', + 1803794 => 'West Columbia, SC', + 1803796 => 'West Columbia, SC', + 1803798 => 'Columbia, SC', + 1803799 => 'Columbia, SC', + 1803802 => 'Fort Mill, SC', + 1803808 => 'Lexington, SC', + 1803831 => 'Clover, SC', + 1803834 => 'Columbia, SC', + 1803854 => 'Santee, SC', + 1803865 => 'Columbia, SC', + 1803874 => 'St. Matthews, SC', + 1803892 => 'Gilbert, SC', + 1803894 => 'Pelion, SC', + 1803896 => 'Columbia, SC', + 1803898 => 'Columbia, SC', + 1803905 => 'Sumter, SC', + 1803926 => 'West Columbia, SC', + 1803929 => 'Columbia, SC', + 1803932 => 'Chapin, SC', + 1803934 => 'Sumter, SC', + 1803935 => 'Columbia, SC', + 1803936 => 'West Columbia, SC', + 1803939 => 'West Columbia, SC', + 1803943 => 'Hampton, SC', + 1803951 => 'Lexington, SC', + 1803957 => 'Lexington, SC', + 1803980 => 'Rock Hill, SC', + 1803981 => 'Rock Hill, SC', + 1803985 => 'Rock Hill, SC', + 1803996 => 'Lexington, SC', + 1804 => 'Virginia', + 1804222 => 'Richmond, VA', + 1804224 => 'Colonial Beach, VA', + 1804225 => 'Richmond, VA', + 1804226 => 'Richmond, VA', + 1804228 => 'Richmond, VA', + 1804230 => 'Richmond, VA', + 1804231 => 'Richmond, VA', + 1804232 => 'Richmond, VA', + 1804233 => 'Richmond, VA', + 1804236 => 'Richmond, VA', + 1804249 => 'Richmond, VA', + 1804254 => 'Richmond, VA', + 1804257 => 'Richmond, VA', + 1804261 => 'Richmond, VA', + 1804262 => 'Richmond, VA', + 1804264 => 'Richmond, VA', + 1804266 => 'Richmond, VA', + 1804269 => 'Richmond, VA', + 1804271 => 'N Chesterfield, VA', + 1804275 => 'N Chesterfield, VA', + 1804281 => 'Richmond, VA', + 1804282 => 'Richmond, VA', + 1804285 => 'Richmond, VA', + 1804287 => 'Richmond, VA', + 1804288 => 'Richmond, VA', + 1804289 => 'Richmond, VA', + 1804303 => 'Richmond, VA', + 1804308 => 'Richmond, VA', + 1804321 => 'Richmond, VA', + 1804323 => 'Richmond, VA', + 1804329 => 'Richmond, VA', + 1804333 => 'Warsaw, VA', + 1804340 => 'Richmond, VA', + 1804342 => 'Mechanicsville, VA', + 1804343 => 'Richmond, VA', + 1804344 => 'Richmond, VA', + 1804353 => 'Richmond, VA', + 1804354 => 'Richmond, VA', + 1804355 => 'Richmond, VA', + 1804358 => 'Richmond, VA', + 1804359 => 'Richmond, VA', + 1804360 => 'Richmond, VA', + 1804364 => 'Richmond, VA', + 1804365 => 'Ashland, VA', + 1804368 => 'Ashland, VA', + 1804377 => 'Richmond, VA', + 1804378 => 'Midlothian, VA', + 1804379 => 'Midlothian, VA', + 1804423 => 'Midlothian, VA', + 1804435 => 'Kilmarnock, VA', + 1804438 => 'Irvington, VA', + 1804443 => 'Tappahannock, VA', + 1804447 => 'Richmond, VA', + 1804448 => 'Ruther Glen, VA', + 1804452 => 'Hopewell, VA', + 1804458 => 'Hopewell, VA', + 1804462 => 'Lancaster, VA', + 1804469 => 'Dinwiddie, VA', + 1804477 => 'Richmond, VA', + 1804492 => 'Cumberland, VA', + 1804493 => 'Montross, VA', + 1804501 => 'Richmond, VA', + 1804504 => 'Colonial Heights, VA', + 1804515 => 'Richmond, VA', + 1804520 => 'Colonial Heights, VA', + 1804521 => 'Richmond, VA', + 1804524 => 'Colonial Heights, VA', + 1804526 => 'Colonial Heights, VA', + 1804529 => 'Callao, VA', + 1804530 => 'Chester, VA', + 1804541 => 'Hopewell, VA', + 1804545 => 'Richmond, VA', + 1804550 => 'Ashland, VA', + 1804553 => 'Richmond, VA', + 1804556 => 'Goochland, VA', + 1804559 => 'Mechanicsville, VA', + 1804561 => 'Amelia Court Hse, VA', + 1804562 => 'Richmond, VA', + 1804569 => 'Mechanicsville, VA', + 1804580 => 'Heathsville, VA', + 1804598 => 'Powhatan, VA', + 1804608 => 'Midlothian, VA', + 1804612 => 'Richmond, VA', + 1804622 => 'Richmond, VA', + 1804628 => 'Richmond, VA', + 1804633 => 'Bowling Green, VA', + 1804639 => 'Midlothian, VA', + 1804642 => 'Hayes, VA', + 1804643 => 'Richmond, VA', + 1804644 => 'Richmond, VA', + 1804646 => 'Richmond, VA', + 1804648 => 'Richmond, VA', + 1804649 => 'Richmond, VA', + 1804658 => 'Richmond, VA', + 1804672 => 'Richmond, VA', + 1804673 => 'Richmond, VA', + 1804675 => 'Richmond, VA', + 1804693 => 'Gloucester Courthouse, VA', + 1804694 => 'Gloucester Courthouse, VA', + 1804695 => 'Gloucester Courthouse, VA', + 1804697 => 'Richmond, VA', + 1804698 => 'Richmond, VA', + 1804706 => 'Chester, VA', + 1804716 => 'Richmond, VA', + 1804717 => 'Chester, VA', + 1804722 => 'Petersburg, VA', + 1804723 => 'Mechanicsville, VA', + 1804725 => 'Mathews, VA', + 1804726 => 'Richmond, VA', + 1804727 => 'Glen Allen, VA', + 1804730 => 'Mechanicsville, VA', + 1804732 => 'Petersburg, VA', + 1804733 => 'Petersburg, VA', + 1804734 => 'Fort Lee, VA', + 1804739 => 'Midlothian, VA', + 1804740 => 'Richmond, VA', + 1804741 => 'Richmond, VA', + 1804743 => 'N Chesterfield, VA', + 1804744 => 'Midlothian, VA', + 1804746 => 'Mechanicsville, VA', + 1804748 => 'Chester, VA', + 1804749 => 'Rockville, VA', + 1804750 => 'Richmond, VA', + 1804751 => 'Chester, VA', + 1804752 => 'Ashland, VA', + 1804754 => 'Richmond, VA', + 1804755 => 'Richmond, VA', + 1804763 => 'Midlothian, VA', + 1804764 => 'Mechanicsville, VA', + 1804767 => 'Richmond, VA', + 1804768 => 'Chester, VA', + 1804771 => 'Richmond, VA', + 1804775 => 'Richmond, VA', + 1804776 => 'Deltaville, VA', + 1804780 => 'Richmond, VA', + 1804783 => 'Richmond, VA', + 1804786 => 'Richmond, VA', + 1804788 => 'Richmond, VA', + 1804794 => 'Midlothian, VA', + 1804795 => 'Richmond, VA', + 1804796 => 'Chester, VA', + 1804798 => 'Ashland, VA', + 1804828 => 'Richmond, VA', + 1804829 => 'Charles City, VA', + 1804834 => 'Waverly, VA', + 1804843 => 'West Point, VA', + 1804861 => 'Petersburg, VA', + 1804862 => 'Petersburg, VA', + 1804863 => 'Petersburg, VA', + 1804864 => 'Richmond, VA', + 1804883 => 'Montpelier, VA', + 1804932 => 'Quinton, VA', + 1805 => 'California', + 1805226 => 'Paso Robles, CA', + 1805227 => 'Paso Robles, CA', + 1805237 => 'Paso Robles, CA', + 1805238 => 'Paso Robles, CA', + 1805239 => 'Paso Robles, CA', + 1805240 => 'Oxnard, CA', + 1805241 => 'Thousand Oaks, CA', + 1805278 => 'Oxnard, CA', + 1805306 => 'Simi Valley, CA', + 1805339 => 'Ventura, CA', + 1805343 => 'Guadalupe, CA', + 1805346 => 'Santa Maria, CA', + 1805347 => 'Santa Maria, CA', + 1805348 => 'Santa Maria, CA', + 1805349 => 'Santa Maria, CA', + 1805370 => 'Thousand Oaks, CA', + 1805373 => 'Thousand Oaks, CA', + 1805374 => 'Thousand Oaks, CA', + 1805375 => 'Newbury Park, CA', + 1805376 => 'Newbury Park, CA', + 1805379 => 'Thousand Oaks, CA', + 1805382 => 'Oxnard, CA', + 1805383 => 'Camarillo, CA', + 1805384 => 'Camarillo, CA', + 1805385 => 'Oxnard, CA', + 1805386 => 'Somis, CA', + 1805388 => 'Camarillo, CA', + 1805389 => 'Camarillo, CA', + 1805434 => 'Templeton, CA', + 1805438 => 'Santa Margarita, CA', + 1805439 => 'San Luis Obispo, CA', + 1805445 => 'Camarillo, CA', + 1805460 => 'Atascadero, CA', + 1805461 => 'Atascadero, CA', + 1805462 => 'Atascadero, CA', + 1805464 => 'Atascadero, CA', + 1805466 => 'Atascadero, CA', + 1805467 => 'San Miguel, CA', + 1805468 => 'Atascadero, CA', + 1805473 => 'Arroyo Grande, CA', + 1805474 => 'Arroyo Grande, CA', + 1805477 => 'Ventura, CA', + 1805480 => 'Newbury Park, CA', + 1805481 => 'Arroyo Grande, CA', + 1805482 => 'Camarillo, CA', + 1805483 => 'Oxnard, CA', + 1805484 => 'Camarillo, CA', + 1805485 => 'Oxnard, CA', + 1805486 => 'Oxnard, CA', + 1805487 => 'Oxnard, CA', + 1805488 => 'Oxnard, CA', + 1805489 => 'Arroyo Grande, CA', + 1805492 => 'Thousand Oaks, CA', + 1805493 => 'Thousand Oaks, CA', + 1805494 => 'Thousand Oaks, CA', + 1805495 => 'Thousand Oaks, CA', + 1805496 => 'Thousand Oaks, CA', + 1805497 => 'Thousand Oaks, CA', + 1805498 => 'Newbury Park, CA', + 1805499 => 'Newbury Park, CA', + 1805520 => 'Simi Valley, CA', + 1805522 => 'Simi Valley, CA', + 1805523 => 'Moorpark, CA', + 1805524 => 'Fillmore, CA', + 1805525 => 'Santa Paula, CA', + 1805526 => 'Simi Valley, CA', + 1805527 => 'Simi Valley, CA', + 1805528 => 'Los Osos, CA', + 1805529 => 'Moorpark, CA', + 1805531 => 'Moorpark, CA', + 1805532 => 'Moorpark, CA', + 1805534 => 'Los Osos, CA', + 1805540 => 'San Luis Obispo, CA', + 1805541 => 'San Luis Obispo, CA', + 1805542 => 'San Luis Obispo, CA', + 1805543 => 'San Luis Obispo, CA', + 1805544 => 'San Luis Obispo, CA', + 1805545 => 'San Luis Obispo, CA', + 1805546 => 'San Luis Obispo, CA', + 1805547 => 'San Luis Obispo, CA', + 1805549 => 'San Luis Obispo, CA', + 1805557 => 'Thousand Oaks, CA', + 1805560 => 'Santa Barbara, CA', + 1805563 => 'Santa Barbara, CA', + 1805564 => 'Santa Barbara, CA', + 1805565 => 'Santa Barbara, CA', + 1805566 => 'Carpinteria, CA', + 1805568 => 'Santa Barbara, CA', + 1805569 => 'Santa Barbara, CA', + 1805577 => 'Simi Valley, CA', + 1805578 => 'Simi Valley, CA', + 1805579 => 'Simi Valley, CA', + 1805581 => 'Simi Valley, CA', + 1805582 => 'Simi Valley, CA', + 1805583 => 'Simi Valley, CA', + 1805584 => 'Simi Valley, CA', + 1805595 => 'San Luis Obispo, CA', + 1805604 => 'Oxnard, CA', + 1805610 => 'Paso Robles, CA', + 1805614 => 'Santa Maria, CA', + 1805639 => 'Ventura, CA', + 1805640 => 'Ojai, CA', + 1805641 => 'Ventura, CA', + 1805642 => 'Ventura, CA', + 1805643 => 'Ventura, CA', + 1805644 => 'Ventura, CA', + 1805646 => 'Ojai, CA', + 1805647 => 'Ventura, CA', + 1805648 => 'Ventura, CA', + 1805649 => 'Oak View, CA', + 1805650 => 'Ventura, CA', + 1805652 => 'Ventura, CA', + 1805653 => 'Ventura, CA', + 1805654 => 'Ventura, CA', + 1805656 => 'Ventura, CA', + 1805658 => 'Ventura, CA', + 1805659 => 'Ventura, CA', + 1805676 => 'Ventura, CA', + 1805681 => 'Santa Barbara, CA', + 1805682 => 'Santa Barbara, CA', + 1805683 => 'Santa Barbara, CA', + 1805684 => 'Carpinteria, CA', + 1805685 => 'Goleta, CA', + 1805687 => 'Santa Barbara, CA', + 1805692 => 'Santa Barbara, CA', + 1805730 => 'Santa Barbara, CA', + 1805733 => 'Lompoc, CA', + 1805735 => 'Lompoc, CA', + 1805736 => 'Lompoc, CA', + 1805737 => 'Lompoc, CA', + 1805739 => 'Santa Maria, CA', + 1805771 => 'Morro Bay, CA', + 1805772 => 'Morro Bay, CA', + 1805773 => 'Pismo Beach, CA', + 1805777 => 'Thousand Oaks, CA', + 1805781 => 'San Luis Obispo, CA', + 1805782 => 'San Luis Obispo, CA', + 1805783 => 'San Luis Obispo, CA', + 1805845 => 'Santa Barbara, CA', + 1805884 => 'Santa Barbara, CA', + 1805898 => 'Santa Barbara, CA', + 1805899 => 'Santa Barbara, CA', + 1805922 => 'Santa Maria, CA', + 1805925 => 'Santa Maria, CA', + 1805927 => 'Cambria, CA', + 1805928 => 'Santa Maria, CA', + 1805929 => 'Nipomo, CA', + 1805933 => 'Santa Paula, CA', + 1805934 => 'Santa Maria, CA', + 1805937 => 'Santa Maria, CA', + 1805938 => 'Santa Maria, CA', + 1805955 => 'Simi Valley, CA', + 1805962 => 'Santa Barbara, CA', + 1805963 => 'Santa Barbara, CA', + 1805964 => 'Santa Barbara, CA', + 1805965 => 'Santa Barbara, CA', + 1805966 => 'Santa Barbara, CA', + 1805967 => 'Santa Barbara, CA', + 1805968 => 'Goleta, CA', + 1805969 => 'Santa Barbara, CA', + 1805981 => 'Oxnard, CA', + 1805983 => 'Oxnard, CA', + 1805984 => 'Oxnard, CA', + 1805985 => 'Oxnard, CA', + 1805986 => 'Oxnard, CA', + 1805987 => 'Camarillo, CA', + 1805988 => 'Oxnard, CA', + 1805995 => 'Cayucos, CA', + 1806 => 'Texas', + 1806212 => 'Amarillo, TX', + 1806220 => 'Amarillo, TX', + 1806236 => 'Amarillo, TX', + 1806244 => 'Dalhart, TX', + 1806249 => 'Dalhart, TX', + 1806250 => 'Friona, TX', + 1806256 => 'Shamrock, TX', + 1806259 => 'Memphis, TX', + 1806266 => 'Morton, TX', + 1806272 => 'Muleshoe, TX', + 1806273 => 'Borger, TX', + 1806274 => 'Borger, TX', + 1806291 => 'Plainview, TX', + 1806293 => 'Plainview, TX', + 1806296 => 'Plainview, TX', + 1806318 => 'Amarillo, TX', + 1806322 => 'Amarillo, TX', + 1806323 => 'Canadian, TX', + 1806331 => 'Amarillo, TX', + 1806335 => 'Amarillo, TX', + 1806342 => 'Amarillo, TX', + 1806350 => 'Amarillo, TX', + 1806351 => 'Amarillo, TX', + 1806352 => 'Amarillo, TX', + 1806353 => 'Amarillo, TX', + 1806354 => 'Amarillo, TX', + 1806355 => 'Amarillo, TX', + 1806356 => 'Amarillo, TX', + 1806358 => 'Amarillo, TX', + 1806359 => 'Amarillo, TX', + 1806363 => 'Hereford, TX', + 1806364 => 'Hereford, TX', + 1806367 => 'Amarillo, TX', + 1806368 => 'Lubbock, TX', + 1806371 => 'Amarillo, TX', + 1806372 => 'Amarillo, TX', + 1806373 => 'Amarillo, TX', + 1806374 => 'Amarillo, TX', + 1806376 => 'Amarillo, TX', + 1806378 => 'Amarillo, TX', + 1806379 => 'Amarillo, TX', + 1806381 => 'Amarillo, TX', + 1806383 => 'Amarillo, TX', + 1806385 => 'Littlefield, TX', + 1806418 => 'Amarillo, TX', + 1806433 => 'Amarillo, TX', + 1806435 => 'Perryton, TX', + 1806447 => 'Wellington, TX', + 1806456 => 'Plains, TX', + 1806463 => 'Amarillo, TX', + 1806467 => 'Amarillo, TX', + 1806468 => 'Amarillo, TX', + 1806495 => 'Post, TX', + 1806535 => 'Lubbock, TX', + 1806537 => 'Panhandle, TX', + 1806553 => 'Amarillo, TX', + 1806576 => 'Amarillo, TX', + 1806592 => 'Denver City, TX', + 1806622 => 'Amarillo, TX', + 1806637 => 'Brownfield, TX', + 1806647 => 'Dimmitt, TX', + 1806652 => 'Lockney, TX', + 1806655 => 'Canyon, TX', + 1806659 => 'Spearman, TX', + 1806665 => 'Pampa, TX', + 1806669 => 'Pampa, TX', + 1806675 => 'Crosbyton, TX', + 1806677 => 'Amarillo, TX', + 1806687 => 'Lubbock, TX', + 1806698 => 'Lubbock, TX', + 1806722 => 'Lubbock, TX', + 1806725 => 'Lubbock, TX', + 1806741 => 'Lubbock, TX', + 1806743 => 'Lubbock, TX', + 1806744 => 'Lubbock, TX', + 1806745 => 'Lubbock, TX', + 1806747 => 'Lubbock, TX', + 1806748 => 'Lubbock, TX', + 1806749 => 'Lubbock, TX', + 1806762 => 'Lubbock, TX', + 1806763 => 'Lubbock, TX', + 1806765 => 'Lubbock, TX', + 1806766 => 'Lubbock, TX', + 1806771 => 'Lubbock, TX', + 1806775 => 'Lubbock, TX', + 1806780 => 'Lubbock, TX', + 1806783 => 'Lubbock, TX', + 1806785 => 'Lubbock, TX', + 1806788 => 'Lubbock, TX', + 1806791 => 'Lubbock, TX', + 1806792 => 'Lubbock, TX', + 1806793 => 'Lubbock, TX', + 1806794 => 'Lubbock, TX', + 1806795 => 'Lubbock, TX', + 1806796 => 'Lubbock, TX', + 1806797 => 'Lubbock, TX', + 1806798 => 'Lubbock, TX', + 1806799 => 'Lubbock, TX', + 1806826 => 'Wheeler, TX', + 1806828 => 'Slaton, TX', + 1806863 => 'Lubbock, TX', + 1806866 => 'Wolfforth, TX', + 1806872 => 'Lamesa, TX', + 1806874 => 'Clarendon, TX', + 1806894 => 'Levelland, TX', + 1806897 => 'Levelland, TX', + 1806934 => 'Dumas, TX', + 1806935 => 'Dumas, TX', + 1806983 => 'Floydada, TX', + 1806995 => 'Tulia, TX', + 1807 => 'Ontario', + 1807223 => 'Dryden, ON', + 1807229 => 'Marathon, ON', + 1807274 => 'Fort Frances, ON', + 1807285 => 'Thunder Bay, ON', + 1807343 => 'Thunder Bay, ON', + 1807344 => 'Thunder Bay, ON', + 1807345 => 'Thunder Bay, ON', + 1807346 => 'Thunder Bay, ON', + 1807467 => 'Kenora, ON', + 1807468 => 'Kenora, ON', + 1807473 => 'Thunder Bay, ON', + 1807475 => 'Thunder Bay, ON', + 1807548 => 'Kenora, ON', + 1807577 => 'Thunder Bay, ON', + 1807597 => 'Atikokan, ON', + 1807622 => 'Thunder Bay, ON', + 1807623 => 'Thunder Bay, ON', + 1807626 => 'Thunder Bay, ON', + 1807683 => 'Thunder Bay, ON', + 1807727 => 'Red Lake, ON', + 1807737 => 'Sioux Lookout, ON', + 1807767 => 'Thunder Bay, ON', + 1807768 => 'Thunder Bay, ON', + 1807854 => 'Geraldton, ON', + 1807876 => 'Longlac, ON', + 1807887 => 'Nipigon, ON', + 1807934 => 'Ignace, ON', + 1807937 => 'Oxdrift, ON', + 1807939 => 'Thunder Bay, ON', + 1808 => 'Hawaii', + 1808233 => 'Kaneohe, HI', + 1808234 => 'Kaneohe, HI', + 1808235 => 'Kaneohe, HI', + 1808236 => 'Kaneohe, HI', + 1808239 => 'Kaneohe, HI', + 1808241 => 'Lihue, HI', + 1808242 => 'Wailuku, HI', + 1808243 => 'Wailuku, HI', + 1808244 => 'Wailuku, HI', + 1808245 => 'Lihue, HI', + 1808246 => 'Lihue, HI', + 1808247 => 'Kaneohe, HI', + 1808248 => 'Hāna, HI', + 1808249 => 'Wailuku, HI', + 1808254 => 'Kailua, HI', + 1808259 => 'Waimanalo, HI', + 1808261 => 'Kailua, HI', + 1808262 => 'Kailua, HI', + 1808263 => 'Kailua, HI', + 1808323 => 'Kealakekua, HI', + 1808325 => 'Kailua-Kona, HI', + 1808326 => 'Kailua-Kona, HI', + 1808327 => 'Kailua-Kona, HI', + 1808328 => 'Captain Cook, HI', + 1808329 => 'Kailua-Kona, HI', + 1808331 => 'Kailua-Kona, HI', + 1808332 => 'Kalaheo, HI', + 1808334 => 'Kailua-Kona, HI', + 1808335 => 'Hanapepe, HI', + 1808338 => 'Waimea, HI', + 1808373 => 'Honolulu, HI', + 1808377 => 'Honolulu, HI', + 1808394 => 'Honolulu, HI', + 1808395 => 'Honolulu, HI', + 1808396 => 'Honolulu, HI', + 1808422 => 'Honolulu, HI', + 1808423 => 'Honolulu, HI', + 1808432 => 'Honolulu, HI', + 1808433 => 'Honolulu, HI', + 1808454 => 'Pearl City, HI', + 1808455 => 'Pearl City, HI', + 1808456 => 'Pearl City, HI', + 1808483 => 'Aiea, HI', + 1808484 => 'Aiea, HI', + 1808485 => 'Aiea, HI', + 1808486 => 'Aiea, HI', + 1808487 => 'Aiea, HI', + 1808488 => 'Aiea, HI', + 1808521 => 'Honolulu, HI', + 1808522 => 'Honolulu, HI', + 1808523 => 'Honolulu, HI', + 1808524 => 'Honolulu, HI', + 1808526 => 'Honolulu, HI', + 1808528 => 'Honolulu, HI', + 1808531 => 'Honolulu, HI', + 1808532 => 'Honolulu, HI', + 1808533 => 'Honolulu, HI', + 1808535 => 'Honolulu, HI', + 1808536 => 'Honolulu, HI', + 1808537 => 'Honolulu, HI', + 1808538 => 'Honolulu, HI', + 1808539 => 'Honolulu, HI', + 1808545 => 'Honolulu, HI', + 1808547 => 'Honolulu, HI', + 1808548 => 'Honolulu, HI', + 1808550 => 'Honolulu, HI', + 1808553 => 'Kaunakakai, HI', + 1808565 => 'Lanai City, HI', + 1808572 => 'Makawao, HI', + 1808573 => 'Makawao, HI', + 1808575 => 'Haiku, HI', + 1808579 => 'Paia, HI', + 1808585 => 'Honolulu, HI', + 1808586 => 'Honolulu, HI', + 1808587 => 'Honolulu, HI', + 1808589 => 'Honolulu, HI', + 1808591 => 'Honolulu, HI', + 1808593 => 'Honolulu, HI', + 1808595 => 'Honolulu, HI', + 1808596 => 'Honolulu, HI', + 1808597 => 'Honolulu, HI', + 1808599 => 'Honolulu, HI', + 1808621 => 'Wahiawā, HI', + 1808622 => 'Wahiawā, HI', + 1808623 => 'Mililani, HI', + 1808625 => 'Mililani, HI', + 1808627 => 'Mililani, HI', + 1808637 => 'Haleiwa, HI', + 1808638 => 'Haleiwa, HI', + 1808661 => 'Lahaina, HI', + 1808662 => 'Lahaina, HI', + 1808667 => 'Lahaina, HI', + 1808668 => 'Waianae, HI', + 1808669 => 'Lahaina, HI', + 1808671 => 'Waipahu, HI', + 1808672 => 'Kapolei, HI', + 1808674 => 'Kapolei, HI', + 1808676 => 'Waipahu, HI', + 1808677 => 'Waipahu, HI', + 1808678 => 'Waipahu, HI', + 1808682 => 'Kapolei, HI', + 1808689 => 'Ewa Beach, HI', + 1808696 => 'Waianae, HI', + 1808732 => 'Honolulu, HI', + 1808733 => 'Honolulu, HI', + 1808734 => 'Honolulu, HI', + 1808735 => 'Honolulu, HI', + 1808737 => 'Honolulu, HI', + 1808739 => 'Honolulu, HI', + 1808742 => 'Koloa, HI', + 1808775 => 'Honokaa, HI', + 1808791 => 'Honolulu, HI', + 1808792 => 'Honolulu, HI', + 1808821 => 'Kapaa, HI', + 1808822 => 'Kapaa, HI', + 1808823 => 'Kapaa, HI', + 1808826 => 'Hanalei, HI', + 1808828 => 'Kilauea, HI', + 1808832 => 'Honolulu, HI', + 1808833 => 'Honolulu, HI', + 1808834 => 'Honolulu, HI', + 1808836 => 'Honolulu, HI', + 1808839 => 'Honolulu, HI', + 1808841 => 'Honolulu, HI', + 1808842 => 'Honolulu, HI', + 1808843 => 'Honolulu, HI', + 1808845 => 'Honolulu, HI', + 1808847 => 'Honolulu, HI', + 1808848 => 'Honolulu, HI', + 1808871 => 'Kahului, HI', + 1808873 => 'Kahului, HI', + 1808874 => 'Kihei, HI', + 1808875 => 'Kihei, HI', + 1808877 => 'Kahului, HI', + 1808878 => 'Kula, HI', + 1808879 => 'Kihei, HI', + 1808883 => 'Waikoloa Village, HI', + 1808885 => 'Waimea, HI', + 1808886 => 'Waikoloa Village, HI', + 1808887 => 'Waimea, HI', + 1808889 => 'Kapaau, HI', + 1808891 => 'Kihei, HI', + 1808921 => 'Honolulu, HI', + 1808922 => 'Honolulu, HI', + 1808923 => 'Honolulu, HI', + 1808924 => 'Honolulu, HI', + 1808926 => 'Honolulu, HI', + 1808929 => 'Naalehu, HI', + 1808933 => 'Hilo, HI', + 1808934 => 'Hilo, HI', + 1808935 => 'Hilo, HI', + 1808941 => 'Honolulu, HI', + 1808942 => 'Honolulu, HI', + 1808943 => 'Honolulu, HI', + 1808944 => 'Honolulu, HI', + 1808945 => 'Honolulu, HI', + 1808946 => 'Honolulu, HI', + 1808947 => 'Honolulu, HI', + 1808949 => 'Honolulu, HI', + 1808951 => 'Honolulu, HI', + 1808955 => 'Honolulu, HI', + 1808956 => 'Honolulu, HI', + 1808959 => 'Hilo, HI', + 1808961 => 'Hilo, HI', + 1808965 => 'Pāhoa, HI', + 1808966 => 'Keaau, HI', + 1808969 => 'Hilo, HI', + 1808973 => 'Honolulu, HI', + 1808974 => 'Hilo, HI', + 1808982 => 'Keaau, HI', + 1808983 => 'Honolulu, HI', + 1808988 => 'Honolulu, HI', + 1809552 => 'Bavaro', + 1809554 => 'Higüey', + 1809573 => 'La Vega', + 1809574 => 'Jarabacoa', + 1809578 => 'Moca', + 1809584 => 'Nagua', + 1810 => 'Michigan', + 1810220 => 'Brighton, MI', + 1810225 => 'Brighton, MI', + 1810227 => 'Brighton, MI', + 1810229 => 'Brighton, MI', + 1810230 => 'Flint Township, MI', + 1810232 => 'Flint, MI', + 1810233 => 'Flint, MI', + 1810234 => 'Flint, MI', + 1810235 => 'Flint, MI', + 1810238 => 'Flint, MI', + 1810239 => 'Flint, MI', + 1810245 => 'Lapeer, MI', + 1810257 => 'Flint, MI', + 1810326 => 'St. Clair, MI', + 1810329 => 'St. Clair, MI', + 1810342 => 'Flint Township, MI', + 1810346 => 'Brown City, MI', + 1810359 => 'Lexington, MI', + 1810364 => 'Marysville, MI', + 1810376 => 'Deckerville, MI', + 1810385 => 'Fort Gratiot Township, MI', + 1810387 => 'Yale, MI', + 1810388 => 'Marysville, MI', + 1810424 => 'Flint, MI', + 1810487 => 'Flushing, MI', + 1810494 => 'Brighton, MI', + 1810564 => 'Clio, MI', + 1810588 => 'Brighton, MI', + 1810606 => 'Grand Blanc Township, MI', + 1810622 => 'Port Sanilac, MI', + 1810629 => 'Fenton, MI', + 1810631 => 'Otisville, MI', + 1810632 => 'Hartland, MI', + 1810635 => 'Swartz Creek, MI', + 1810636 => 'Goodrich, MI', + 1810639 => 'Montrose, MI', + 1810648 => 'Sandusky, MI', + 1810653 => 'Davison, MI', + 1810655 => 'Swartz Creek, MI', + 1810658 => 'Davison, MI', + 1810659 => 'Flushing, MI', + 1810664 => 'Lapeer, MI', + 1810667 => 'Lapeer, MI', + 1810678 => 'Metamora, MI', + 1810679 => 'Croswell, MI', + 1810686 => 'Clio, MI', + 1810687 => 'Clio, MI', + 1810688 => 'North Branch, MI', + 1810714 => 'Fenton, MI', + 1810715 => 'Burton, MI', + 1810720 => 'Flint Township, MI', + 1810721 => 'Imlay City, MI', + 1810724 => 'Imlay City, MI', + 1810732 => 'Flint Township, MI', + 1810733 => 'Flint Township, MI', + 1810735 => 'Linden, MI', + 1810736 => 'Flint, MI', + 1810742 => 'Burton, MI', + 1810743 => 'Burton, MI', + 1810744 => 'Burton, MI', + 1810750 => 'Fenton, MI', + 1810762 => 'Flint, MI', + 1810765 => 'Marine City, MI', + 1810766 => 'Flint, MI', + 1810767 => 'Flint, MI', + 1810785 => 'Flint, MI', + 1810787 => 'Flint, MI', + 1810789 => 'Flint, MI', + 1810793 => 'Columbiaville, MI', + 1810794 => 'Algonac, MI', + 1810796 => 'Dryden, MI', + 1810798 => 'Almont, MI', + 1810844 => 'Brighton, MI', + 1810966 => 'Port Huron, MI', + 1810982 => 'Port Huron, MI', + 1810984 => 'Port Huron, MI', + 1810985 => 'Port Huron, MI', + 1810987 => 'Port Huron, MI', + 1810989 => 'Port Huron, MI', + 1812 => 'Indiana', + 1812218 => 'Jeffersonville, IN', + 1812231 => 'Terre Haute, IN', + 1812232 => 'Terre Haute, IN', + 1812234 => 'Terre Haute, IN', + 1812235 => 'Terre Haute, IN', + 1812238 => 'Terre Haute, IN', + 1812242 => 'Terre Haute, IN', + 1812246 => 'Sellersburg, IN', + 1812247 => 'Shoals, IN', + 1812254 => 'Washington, IN', + 1812256 => 'Charlestown, IN', + 1812265 => 'Madison, IN', + 1812268 => 'Sullivan, IN', + 1812273 => 'Madison, IN', + 1812275 => 'Bedford, IN', + 1812277 => 'Bedford, IN', + 1812278 => 'Bedford, IN', + 1812279 => 'Bedford, IN', + 1812280 => 'Jeffersonville, IN', + 1812282 => 'Jeffersonville, IN', + 1812283 => 'Jeffersonville, IN', + 1812284 => 'Jeffersonville, IN', + 1812285 => 'Jeffersonville, IN', + 1812288 => 'Jeffersonville, IN', + 1812294 => 'Henryville, IN', + 1812295 => 'Loogootee, IN', + 1812299 => 'Terre Haute, IN', + 1812314 => 'Columbus, IN', + 1812323 => 'Bloomington, IN', + 1812330 => 'Bloomington, IN', + 1812331 => 'Bloomington, IN', + 1812332 => 'Bloomington, IN', + 1812333 => 'Bloomington, IN', + 1812334 => 'Bloomington, IN', + 1812335 => 'Bloomington, IN', + 1812336 => 'Bloomington, IN', + 1812337 => 'Bloomington, IN', + 1812338 => 'English, IN', + 1812339 => 'Bloomington, IN', + 1812342 => 'Columbus, IN', + 1812346 => 'North Vernon, IN', + 1812349 => 'Bloomington, IN', + 1812352 => 'North Vernon, IN', + 1812353 => 'Bloomington, IN', + 1812354 => 'Petersburg, IN', + 1812355 => 'Bloomington, IN', + 1812358 => 'Brownstown, IN', + 1812367 => 'Ferdinand, IN', + 1812372 => 'Columbus, IN', + 1812375 => 'Columbus, IN', + 1812376 => 'Columbus, IN', + 1812378 => 'Columbus, IN', + 1812379 => 'Columbus, IN', + 1812384 => 'Bloomfield, IN', + 1812385 => 'Princeton, IN', + 1812386 => 'Princeton, IN', + 1812401 => 'Evansville, IN', + 1812402 => 'Evansville, IN', + 1812421 => 'Evansville, IN', + 1812422 => 'Evansville, IN', + 1812423 => 'Evansville, IN', + 1812424 => 'Evansville, IN', + 1812425 => 'Evansville, IN', + 1812426 => 'Evansville, IN', + 1812427 => 'Vevay, IN', + 1812428 => 'Evansville, IN', + 1812432 => 'Dillsboro, IN', + 1812435 => 'Evansville, IN', + 1812437 => 'Evansville, IN', + 1812438 => 'Rising Sun, IN', + 1812442 => 'Brazil, IN', + 1812443 => 'Brazil, IN', + 1812446 => 'Brazil, IN', + 1812448 => 'Brazil, IN', + 1812450 => 'Evansville, IN', + 1812462 => 'Terre Haute, IN', + 1812464 => 'Evansville, IN', + 1812466 => 'Terre Haute, IN', + 1812471 => 'Evansville, IN', + 1812473 => 'Evansville, IN', + 1812474 => 'Evansville, IN', + 1812475 => 'Evansville, IN', + 1812476 => 'Evansville, IN', + 1812477 => 'Evansville, IN', + 1812478 => 'Terre Haute, IN', + 1812479 => 'Evansville, IN', + 1812481 => 'Jasper, IN', + 1812482 => 'Jasper, IN', + 1812485 => 'Evansville, IN', + 1812486 => 'Montgomery, IN', + 1812490 => 'Newburgh, IN', + 1812491 => 'Evansville, IN', + 1812522 => 'Seymour, IN', + 1812523 => 'Seymour, IN', + 1812524 => 'Seymour, IN', + 1812526 => 'Edinburgh, IN', + 1812533 => 'West Terre Haute, IN', + 1812537 => 'Lawrenceburg, IN', + 1812539 => 'Lawrenceburg, IN', + 1812546 => 'Hope, IN', + 1812547 => 'Tell City, IN', + 1812591 => 'Westport, IN', + 1812597 => 'Morgantown, IN', + 1812623 => 'Sunman, IN', + 1812634 => 'Jasper, IN', + 1812636 => 'Odon, IN', + 1812637 => 'Lawrenceburg, IN', + 1812649 => 'Rockport, IN', + 1812654 => 'Milan, IN', + 1812662 => 'Greensburg, IN', + 1812663 => 'Greensburg, IN', + 1812665 => 'Jasonville, IN', + 1812683 => 'Huntingburg, IN', + 1812723 => 'Paoli, IN', + 1812735 => 'Bicknell, IN', + 1812738 => 'Corydon, IN', + 1812749 => 'Oakland City, IN', + 1812752 => 'Scottsburg, IN', + 1812753 => 'Fort Branch, IN', + 1812768 => 'Haubstadt, IN', + 1812794 => 'Austin, IN', + 1812822 => 'Bloomington, IN', + 1812824 => 'Bloomington, IN', + 1812825 => 'Bloomington, IN', + 1812829 => 'Spencer, IN', + 1812838 => 'Mount Vernon, IN', + 1812842 => 'Newburgh, IN', + 1812847 => 'Linton, IN', + 1812849 => 'Mitchell, IN', + 1812853 => 'Newburgh, IN', + 1812855 => 'Bloomington, IN', + 1812858 => 'Newburgh, IN', + 1812865 => 'Orleans, IN', + 1812866 => 'Hanover, IN', + 1812867 => 'Evansville, IN', + 1812875 => 'Worthington, IN', + 1812877 => 'Terre Haute, IN', + 1812882 => 'Vincennes, IN', + 1812883 => 'Salem, IN', + 1812885 => 'Vincennes, IN', + 1812886 => 'Vincennes, IN', + 1812897 => 'Boonville, IN', + 1812917 => 'Terre Haute, IN', + 1812923 => 'Floyds Knobs, IN', + 1812925 => 'Chandler, IN', + 1812926 => 'Aurora, IN', + 1812932 => 'Batesville, IN', + 1812933 => 'Batesville, IN', + 1812934 => 'Batesville, IN', + 1812936 => 'French Lick, IN', + 1812937 => 'Dale, IN', + 1812939 => 'Clay City, IN', + 1812941 => 'New Albany, IN', + 1812944 => 'New Albany, IN', + 1812945 => 'New Albany, IN', + 1812948 => 'New Albany, IN', + 1812949 => 'New Albany, IN', + 1812951 => 'Georgetown, IN', + 1812952 => 'Lanesville, IN', + 1812963 => 'Evansville, IN', + 1812967 => 'New Pekin, IN', + 1812988 => 'Nashville, IN', + 1813 => 'Florida', + 1813221 => 'Tampa, FL', + 1813222 => 'Tampa, FL', + 1813223 => 'Tampa, FL', + 1813224 => 'Tampa, FL', + 1813225 => 'Tampa, FL', + 1813226 => 'Tampa, FL', + 1813227 => 'Tampa, FL', + 1813228 => 'Tampa, FL', + 1813229 => 'Tampa, FL', + 1813231 => 'Tampa, FL', + 1813232 => 'Tampa, FL', + 1813234 => 'Tampa, FL', + 1813236 => 'Tampa, FL', + 1813237 => 'Tampa, FL', + 1813238 => 'Tampa, FL', + 1813239 => 'Tampa, FL', + 1813241 => 'Tampa, FL', + 1813242 => 'Tampa, FL', + 1813246 => 'Tampa, FL', + 1813247 => 'Tampa, FL', + 1813248 => 'Tampa, FL', + 1813249 => 'Tampa, FL', + 1813250 => 'Tampa, FL', + 1813251 => 'Tampa, FL', + 1813253 => 'Tampa, FL', + 1813254 => 'Tampa, FL', + 1813258 => 'Tampa, FL', + 1813259 => 'Tampa, FL', + 1813261 => 'Tampa, FL', + 1813264 => 'Tampa, FL', + 1813265 => 'Tampa, FL', + 1813269 => 'Tampa, FL', + 1813272 => 'Tampa, FL', + 1813273 => 'Tampa, FL', + 1813274 => 'Tampa, FL', + 1813280 => 'Tampa, FL', + 1813281 => 'Tampa, FL', + 1813282 => 'Tampa, FL', + 1813286 => 'Tampa, FL', + 1813287 => 'Tampa, FL', + 1813288 => 'Tampa, FL', + 1813289 => 'Tampa, FL', + 1813319 => 'Tampa, FL', + 1813341 => 'Tampa, FL', + 1813343 => 'Tampa, FL', + 1813348 => 'Tampa, FL', + 1813350 => 'Tampa, FL', + 1813353 => 'Tampa, FL', + 1813374 => 'Tampa, FL', + 1813386 => 'Tampa, FL', + 1813402 => 'Tampa, FL', + 1813443 => 'Tampa, FL', + 1813490 => 'Tampa, FL', + 1813514 => 'Tampa, FL', + 1813558 => 'Tampa, FL', + 1813571 => 'Brandon, FL', + 1813579 => 'Tampa, FL', + 1813615 => 'Tampa, FL', + 1813620 => 'Tampa, FL', + 1813621 => 'Tampa, FL', + 1813622 => 'Tampa, FL', + 1813623 => 'Tampa, FL', + 1813626 => 'Tampa, FL', + 1813627 => 'Tampa, FL', + 1813628 => 'Tampa, FL', + 1813630 => 'Tampa, FL', + 1813631 => 'Tampa, FL', + 1813632 => 'Tampa, FL', + 1813634 => 'Sun City Center, FL', + 1813635 => 'Tampa, FL', + 1813639 => 'Tampa, FL', + 1813644 => 'Tampa, FL', + 1813645 => 'Ruskin, FL', + 1813653 => 'Brandon, FL', + 1813654 => 'Brandon, FL', + 1813655 => 'Brandon, FL', + 1813659 => 'Plant City, FL', + 1813661 => 'Brandon, FL', + 1813662 => 'Brandon, FL', + 1813664 => 'Tampa, FL', + 1813671 => 'Riverview, FL', + 1813672 => 'Riverview, FL', + 1813677 => 'Riverview, FL', + 1813681 => 'Brandon, FL', + 1813684 => 'Brandon, FL', + 1813685 => 'Brandon, FL', + 1813689 => 'Brandon, FL', + 1813704 => 'Plant City, FL', + 1813707 => 'Plant City, FL', + 1813715 => 'Zephyrhills, FL', + 1813719 => 'Plant City, FL', + 1813737 => 'Plant City, FL', + 1813740 => 'Tampa, FL', + 1813741 => 'Riverview, FL', + 1813745 => 'Tampa, FL', + 1813752 => 'Plant City, FL', + 1813754 => 'Plant City, FL', + 1813757 => 'Plant City, FL', + 1813759 => 'Plant City, FL', + 1813774 => 'Tampa, FL', + 1813779 => 'Zephyrhills, FL', + 1813780 => 'Zephyrhills, FL', + 1813782 => 'Zephyrhills, FL', + 1813783 => 'Zephyrhills, FL', + 1813788 => 'Zephyrhills, FL', + 1813792 => 'Tampa, FL', + 1813805 => 'Tampa, FL', + 1813814 => 'Tampa, FL', + 1813831 => 'Tampa, FL', + 1813832 => 'Tampa, FL', + 1813835 => 'Tampa, FL', + 1813837 => 'Tampa, FL', + 1813839 => 'Tampa, FL', + 1813844 => 'Tampa, FL', + 1813849 => 'Tampa, FL', + 1813855 => 'Oldsmar, FL', + 1813864 => 'Tampa, FL', + 1813866 => 'Tampa, FL', + 1813868 => 'Tampa, FL', + 1813870 => 'Tampa, FL', + 1813871 => 'Tampa, FL', + 1813872 => 'Tampa, FL', + 1813873 => 'Tampa, FL', + 1813874 => 'Tampa, FL', + 1813875 => 'Tampa, FL', + 1813876 => 'Tampa, FL', + 1813877 => 'Tampa, FL', + 1813879 => 'Tampa, FL', + 1813880 => 'Tampa, FL', + 1813882 => 'Tampa, FL', + 1813884 => 'Tampa, FL', + 1813885 => 'Tampa, FL', + 1813886 => 'Tampa, FL', + 1813887 => 'Tampa, FL', + 1813888 => 'Tampa, FL', + 1813889 => 'Tampa, FL', + 1813890 => 'Tampa, FL', + 1813891 => 'Tampa, FL', + 1813899 => 'Tampa, FL', + 1813902 => 'Tampa, FL', + 1813903 => 'Tampa, FL', + 1813907 => 'Wesley Chapel, FL', + 1813908 => 'Tampa, FL', + 1813909 => 'Lutz, FL', + 1813910 => 'Tampa, FL', + 1813915 => 'Tampa, FL', + 1813925 => 'Tampa, FL', + 1813926 => 'Tampa, FL', + 1813930 => 'Tampa, FL', + 1813931 => 'Tampa, FL', + 1813932 => 'Tampa, FL', + 1813933 => 'Tampa, FL', + 1813935 => 'Tampa, FL', + 1813936 => 'Tampa, FL', + 1813948 => 'Lutz, FL', + 1813949 => 'Lutz, FL', + 1813960 => 'Tampa, FL', + 1813961 => 'Tampa, FL', + 1813962 => 'Tampa, FL', + 1813963 => 'Tampa, FL', + 1813964 => 'Tampa, FL', + 1813968 => 'Tampa, FL', + 1813969 => 'Tampa, FL', + 1813971 => 'Tampa, FL', + 1813972 => 'Tampa, FL', + 1813973 => 'Wesley Chapel, FL', + 1813974 => 'Tampa, FL', + 1813975 => 'Tampa, FL', + 1813977 => 'Tampa, FL', + 1813979 => 'Tampa, FL', + 1813984 => 'Tampa, FL', + 1813986 => 'Thonotosassa, FL', + 1813988 => 'Tampa, FL', + 1813989 => 'Tampa, FL', + 1813991 => 'Wesley Chapel, FL', + 1813994 => 'Wesley Chapel, FL', + 1813995 => 'Land O\' Lakes, FL', + 1813996 => 'Land O\' Lakes, FL', + 1814 => 'Pennsylvania', + 1814201 => 'Altoona, PA', + 1814224 => 'Roaring Spring, PA', + 1814226 => 'Clarion, PA', + 1814227 => 'Clarion, PA', + 1814231 => 'State College, PA', + 1814234 => 'State College, PA', + 1814235 => 'State College, PA', + 1814236 => 'Curwensville, PA', + 1814237 => 'State College, PA', + 1814238 => 'State College, PA', + 1814239 => 'Claysburg, PA', + 1814247 => 'Hastings, PA', + 1814254 => 'Johnstown, PA', + 1814255 => 'Johnstown, PA', + 1814258 => 'Elkland, PA', + 1814262 => 'Johnstown, PA', + 1814265 => 'Brockway, PA', + 1814266 => 'Johnstown, PA', + 1814267 => 'Berlin, PA', + 1814269 => 'Johnstown, PA', + 1814272 => 'State College, PA', + 1814274 => 'Coudersport, PA', + 1814275 => 'New Bethlehem, PA', + 1814288 => 'Johnstown, PA', + 1814308 => 'State College, PA', + 1814322 => 'Johnstown, PA', + 1814333 => 'Meadville, PA', + 1814336 => 'Meadville, PA', + 1814337 => 'Meadville, PA', + 1814339 => 'Osceola Mills, PA', + 1814342 => 'Philipsburg, PA', + 1814344 => 'Carrolltown, PA', + 1814353 => 'Bellefonte, PA', + 1814355 => 'Bellefonte, PA', + 1814359 => 'Pleasant Gap, PA', + 1814362 => 'Bradford, PA', + 1814364 => 'Centre Hall, PA', + 1814367 => 'Westfield, PA', + 1814368 => 'Bradford, PA', + 1814371 => 'DuBois, PA', + 1814375 => 'DuBois, PA', + 1814378 => 'Houtzdale, PA', + 1814382 => 'Conneaut Lake, PA', + 1814395 => 'Confluence, PA', + 1814398 => 'Cambridge Spgs, PA', + 1814422 => 'Spring Mills, PA', + 1814425 => 'Cochranton, PA', + 1814432 => 'Franklin, PA', + 1814435 => 'Galeton, PA', + 1814437 => 'Franklin, PA', + 1814438 => 'Union City, PA', + 1814443 => 'Somerset, PA', + 1814444 => 'Somerset, PA', + 1814445 => 'Somerset, PA', + 1814446 => 'Seward, PA', + 1814447 => 'Orbisonia, PA', + 1814451 => 'Erie, PA', + 1814452 => 'Erie, PA', + 1814453 => 'Erie, PA', + 1814454 => 'Erie, PA', + 1814455 => 'Erie, PA', + 1814456 => 'Erie, PA', + 1814459 => 'Erie, PA', + 1814461 => 'Erie, PA', + 1814464 => 'Erie, PA', + 1814466 => 'Boalsburg, PA', + 1814467 => 'Windber, PA', + 1814471 => 'Ebensburg, PA', + 1814472 => 'Ebensburg, PA', + 1814474 => 'Fairview, PA', + 1814476 => 'McKean, PA', + 1814486 => 'Emporium, PA', + 1814489 => 'Sugar Grove, PA', + 1814533 => 'Johnstown, PA', + 1814534 => 'Johnstown, PA', + 1814535 => 'Johnstown, PA', + 1814536 => 'Johnstown, PA', + 1814539 => 'Johnstown, PA', + 1814542 => 'Mount Union, PA', + 1814563 => 'Youngsville, PA', + 1814587 => 'Conneautville, PA', + 1814623 => 'Bedford, PA', + 1814629 => 'Boswell, PA', + 1814634 => 'Meyersdale, PA', + 1814635 => 'Saxton, PA', + 1814642 => 'Port Allegany, PA', + 1814643 => 'Huntingdon, PA', + 1814652 => 'Everett, PA', + 1814653 => 'Reynoldsville, PA', + 1814662 => 'Salisbury, PA', + 1814663 => 'Corry, PA', + 1814664 => 'Corry, PA', + 1814665 => 'Corry, PA', + 1814669 => 'Alexandria, PA', + 1814672 => 'Coalport, PA', + 1814674 => 'Patton, PA', + 1814677 => 'Oil City, PA', + 1814683 => 'Linesville, PA', + 1814684 => 'Tyrone, PA', + 1814692 => 'Port Matilda, PA', + 1814723 => 'Warren, PA', + 1814724 => 'Meadville, PA', + 1814725 => 'North East, PA', + 1814726 => 'Warren, PA', + 1814734 => 'Edinboro, PA', + 1814735 => 'Breezewood, PA', + 1814736 => 'Portage, PA', + 1814742 => 'Bellwood, PA', + 1814754 => 'Central City, PA', + 1814755 => 'Tionesta, PA', + 1814756 => 'Albion, PA', + 1814757 => 'Russell, PA', + 1814763 => 'Saegertown, PA', + 1814765 => 'Clearfield, PA', + 1814768 => 'Clearfield, PA', + 1814772 => 'Ridgway, PA', + 1814774 => 'Girard, PA', + 1814776 => 'Ridgway, PA', + 1814781 => 'St. Marys, PA', + 1814793 => 'Martinsburg, PA', + 1814796 => 'Waterford, PA', + 1814797 => 'Knox, PA', + 1814825 => 'Erie, PA', + 1814827 => 'Titusville, PA', + 1814832 => 'Williamsburg, PA', + 1814833 => 'Erie, PA', + 1814834 => 'St. Marys, PA', + 1814835 => 'Erie, PA', + 1814836 => 'Erie, PA', + 1814837 => 'Kane, PA', + 1814838 => 'Erie, PA', + 1814849 => 'Brookville, PA', + 1814860 => 'Erie, PA', + 1814861 => 'State College, PA', + 1814864 => 'Erie, PA', + 1814865 => 'University Park, PA', + 1814866 => 'Erie, PA', + 1814867 => 'State College, PA', + 1814868 => 'Erie, PA', + 1814871 => 'Erie, PA', + 1814877 => 'Erie, PA', + 1814886 => 'Cresson, PA', + 1814887 => 'Smethport, PA', + 1814889 => 'Altoona, PA', + 1814898 => 'Erie, PA', + 1814899 => 'Erie, PA', + 1814926 => 'Rockwood, PA', + 1814938 => 'Punxsutawney, PA', + 1814940 => 'Altoona, PA', + 1814941 => 'Altoona, PA', + 1814942 => 'Altoona, PA', + 1814943 => 'Altoona, PA', + 1814944 => 'Altoona, PA', + 1814946 => 'Altoona, PA', + 1814948 => 'Northern Cambria, PA', + 1814949 => 'Altoona, PA', + 1814965 => 'Johnsonburg, PA', + 1815 => 'Illinois', + 1815206 => 'Woodstock, IL', + 1815220 => 'Peru, IL', + 1815223 => 'Peru, IL', + 1815224 => 'Peru, IL', + 1815225 => 'Milledgeville, IL', + 1815226 => 'Rockford, IL', + 1815227 => 'Rockford, IL', + 1815229 => 'Rockford, IL', + 1815230 => 'Plainfield, IL', + 1815232 => 'Freeport, IL', + 1815233 => 'Freeport, IL', + 1815234 => 'Byron, IL', + 1815235 => 'Freeport, IL', + 1815237 => 'Gardner, IL', + 1815239 => 'Pecatonica, IL', + 1815244 => 'Mount Carroll, IL', + 1815246 => 'Earlville, IL', + 1815248 => 'Durand, IL', + 1815254 => 'Plainfield, IL', + 1815265 => 'Gilman, IL', + 1815267 => 'Plainfield, IL', + 1815273 => 'Savanna, IL', + 1815284 => 'Dixon, IL', + 1815285 => 'Dixon, IL', + 1815286 => 'Hinckley, IL', + 1815288 => 'Dixon, IL', + 1815293 => 'Romeoville, IL', + 1815316 => 'Rockford, IL', + 1815332 => 'Rockford, IL', + 1815334 => 'Woodstock, IL', + 1815335 => 'Winnebago, IL', + 1815337 => 'Woodstock, IL', + 1815338 => 'Woodstock, IL', + 1815339 => 'Granville, IL', + 1815344 => 'McHenry, IL', + 1815356 => 'Crystal Lake, IL', + 1815357 => 'Seneca, IL', + 1815363 => 'McHenry, IL', + 1815369 => 'Lena, IL', + 1815372 => 'Romeoville, IL', + 1815379 => 'Walnut, IL', + 1815385 => 'McHenry, IL', + 1815389 => 'South Beloit, IL', + 1815391 => 'Rockford, IL', + 1815394 => 'Rockford, IL', + 1815395 => 'Rockford, IL', + 1815397 => 'Rockford, IL', + 1815398 => 'Rockford, IL', + 1815399 => 'Rockford, IL', + 1815416 => 'Morris, IL', + 1815423 => 'Elwood, IL', + 1815426 => 'Herscher, IL', + 1815431 => 'Ottawa, IL', + 1815432 => 'Watseka, IL', + 1815433 => 'Ottawa, IL', + 1815434 => 'Ottawa, IL', + 1815436 => 'Plainfield, IL', + 1815439 => 'Plainfield, IL', + 1815444 => 'Crystal Lake, IL', + 1815455 => 'Crystal Lake, IL', + 1815457 => 'Cissna Park, IL', + 1815458 => 'Braidwood, IL', + 1815459 => 'Crystal Lake, IL', + 1815462 => 'New Lenox, IL', + 1815463 => 'New Lenox, IL', + 1815464 => 'Frankfort, IL', + 1815468 => 'Manteno, IL', + 1815469 => 'Frankfort, IL', + 1815472 => 'Momence, IL', + 1815476 => 'Wilmington, IL', + 1815477 => 'Crystal Lake, IL', + 1815478 => 'Manhattan, IL', + 1815479 => 'Crystal Lake, IL', + 1815484 => 'Rockford, IL', + 1815485 => 'New Lenox, IL', + 1815489 => 'Rockford, IL', + 1815490 => 'Rockford, IL', + 1815493 => 'Lanark, IL', + 1815496 => 'Sheridan, IL', + 1815498 => 'Somonauk, IL', + 1815537 => 'Prophetstown, IL', + 1815538 => 'Mendota, IL', + 1815539 => 'Mendota, IL', + 1815544 => 'Belvidere, IL', + 1815547 => 'Belvidere, IL', + 1815561 => 'Rochelle, IL', + 1815562 => 'Rochelle, IL', + 1815568 => 'Marengo, IL', + 1815577 => 'Plainfield, IL', + 1815578 => 'McHenry, IL', + 1815584 => 'Dwight, IL', + 1815588 => 'Lockport, IL', + 1815589 => 'Fulton, IL', + 1815599 => 'Freeport, IL', + 1815609 => 'Plainfield, IL', + 1815622 => 'Sterling, IL', + 1815623 => 'Roscoe, IL', + 1815624 => 'Rockton, IL', + 1815625 => 'Sterling, IL', + 1815626 => 'Sterling, IL', + 1815634 => 'Coal City, IL', + 1815648 => 'Hebron, IL', + 1815653 => 'Wonder Lake, IL', + 1815657 => 'Forrest, IL', + 1815663 => 'Spring Valley, IL', + 1815664 => 'Spring Valley, IL', + 1815667 => 'North Utica, IL', + 1815672 => 'Streator, IL', + 1815673 => 'Streator, IL', + 1815675 => 'Spring Grove, IL', + 1815678 => 'Richmond, IL', + 1815692 => 'Fairbury, IL', + 1815694 => 'Clifton, IL', + 1815695 => 'Newark, IL', + 1815708 => 'Rockford, IL', + 1815722 => 'Joliet, IL', + 1815723 => 'Joliet, IL', + 1815724 => 'Joliet, IL', + 1815725 => 'Joliet, IL', + 1815726 => 'Joliet, IL', + 1815727 => 'Joliet, IL', + 1815728 => 'Wonder Lake, IL', + 1815729 => 'Joliet, IL', + 1815730 => 'Joliet, IL', + 1815732 => 'Oregon, IL', + 1815734 => 'Mount Morris, IL', + 1815740 => 'Joliet, IL', + 1815741 => 'Joliet, IL', + 1815744 => 'Joliet, IL', + 1815745 => 'Warren, IL', + 1815747 => 'East Dubuque, IL', + 1815748 => 'DeKalb, IL', + 1815754 => 'DeKalb, IL', + 1815756 => 'DeKalb, IL', + 1815758 => 'DeKalb, IL', + 1815759 => 'McHenry, IL', + 1815765 => 'Poplar Grove, IL', + 1815772 => 'Morrison, IL', + 1815773 => 'Joliet, IL', + 1815774 => 'Joliet, IL', + 1815776 => 'Galena, IL', + 1815777 => 'Galena, IL', + 1815784 => 'Genoa, IL', + 1815786 => 'Sandwich, IL', + 1815787 => 'DeKalb, IL', + 1815788 => 'Crystal Lake, IL', + 1815795 => 'Marseilles, IL', + 1815806 => 'Frankfort, IL', + 1815824 => 'Shabbona, IL', + 1815834 => 'Lockport, IL', + 1815836 => 'Lockport, IL', + 1815838 => 'Lockport, IL', + 1815842 => 'Pontiac, IL', + 1815844 => 'Pontiac, IL', + 1815857 => 'Amboy, IL', + 1815858 => 'Elizabeth, IL', + 1815872 => 'Princeton, IL', + 1815874 => 'Rockford, IL', + 1815875 => 'Princeton, IL', + 1815879 => 'Princeton, IL', + 1815883 => 'Oglesby, IL', + 1815886 => 'Romeoville, IL', + 1815893 => 'Crystal Lake, IL', + 1815895 => 'Sycamore, IL', + 1815899 => 'Sycamore, IL', + 1815923 => 'Union, IL', + 1815937 => 'Kankakee, IL', + 1815938 => 'Forreston, IL', + 1815941 => 'Morris, IL', + 1815942 => 'Morris, IL', + 1815943 => 'Harvard, IL', + 1815945 => 'Chenoa, IL', + 1815946 => 'Polo, IL', + 1815947 => 'Stockton, IL', + 1815961 => 'Rockford, IL', + 1815962 => 'Rockford, IL', + 1815963 => 'Rockford, IL', + 1815964 => 'Rockford, IL', + 1815965 => 'Rockford, IL', + 1815968 => 'Rockford, IL', + 1815971 => 'Rockford, IL', + 1815977 => 'Rockford, IL', + 1815986 => 'Rockford, IL', + 1815987 => 'Rockford, IL', + 1816 => 'Missouri', + 1816214 => 'Kansas City, MO', + 1816220 => 'Blue Springs, MO', + 1816221 => 'Kansas City, MO', + 1816224 => 'Blue Springs, MO', + 1816228 => 'Blue Springs, MO', + 1816229 => 'Blue Springs, MO', + 1816230 => 'Odessa, MO', + 1816231 => 'Kansas City, MO', + 1816232 => 'St. Joseph, MO', + 1816233 => 'St. Joseph, MO', + 1816234 => 'Kansas City, MO', + 1816235 => 'Kansas City, MO', + 1816238 => 'St. Joseph, MO', + 1816241 => 'Kansas City, MO', + 1816246 => 'Lee\'s Summit, MO', + 1816252 => 'Independence, MO', + 1816254 => 'Independence, MO', + 1816257 => 'Independence, MO', + 1816268 => 'Kansas City, MO', + 1816271 => 'St. Joseph, MO', + 1816276 => 'Kansas City, MO', + 1816279 => 'St. Joseph, MO', + 1816283 => 'Kansas City, MO', + 1816292 => 'Kansas City, MO', + 1816297 => 'Adrian, MO', + 1816318 => 'Belton, MO', + 1816322 => 'Belton, MO', + 1816324 => 'Savannah, MO', + 1816331 => 'Belton, MO', + 1816333 => 'Kansas City, MO', + 1816347 => 'Lee\'s Summit, MO', + 1816348 => 'Belton, MO', + 1816350 => 'Independence, MO', + 1816353 => 'Raytown, MO', + 1816356 => 'Raytown, MO', + 1816358 => 'Raytown, MO', + 1816361 => 'Kansas City, MO', + 1816363 => 'Kansas City, MO', + 1816364 => 'St. Joseph, MO', + 1816373 => 'Independence, MO', + 1816380 => 'Harrisonville, MO', + 1816387 => 'St. Joseph, MO', + 1816390 => 'St. Joseph, MO', + 1816404 => 'Kansas City, MO', + 1816407 => 'Liberty, MO', + 1816412 => 'Kansas City, MO', + 1816413 => 'Kansas City, MO', + 1816415 => 'Liberty, MO', + 1816418 => 'Kansas City, MO', + 1816420 => 'Kansas City, MO', + 1816421 => 'Kansas City, MO', + 1816436 => 'Kansas City, MO', + 1816444 => 'Kansas City, MO', + 1816449 => 'Maysville, MO', + 1816452 => 'Kansas City, MO', + 1816453 => 'Kansas City, MO', + 1816454 => 'Kansas City, MO', + 1816455 => 'Kansas City, MO', + 1816459 => 'Kansas City, MO', + 1816461 => 'Independence, MO', + 1816468 => 'Kansas City, MO', + 1816471 => 'Kansas City, MO', + 1816472 => 'Kansas City, MO', + 1816474 => 'Kansas City, MO', + 1816478 => 'Independence, MO', + 1816483 => 'Kansas City, MO', + 1816505 => 'Kansas City, MO', + 1816513 => 'Kansas City, MO', + 1816523 => 'Kansas City, MO', + 1816524 => 'Lee\'s Summit, MO', + 1816525 => 'Lee\'s Summit, MO', + 1816531 => 'Kansas City, MO', + 1816532 => 'Smithville, MO', + 1816539 => 'Plattsburg, MO', + 1816540 => 'Pleasant Hill, MO', + 1816554 => 'Lee\'s Summit, MO', + 1816561 => 'Kansas City, MO', + 1816569 => 'Kansas City, MO', + 1816583 => 'Hamilton, MO', + 1816584 => 'Kansas City, MO', + 1816587 => 'Kansas City, MO', + 1816625 => 'Oak Grove, MO', + 1816628 => 'Kearney, MO', + 1816630 => 'Excelsior Spgs, MO', + 1816632 => 'Cameron, MO', + 1816633 => 'Odessa, MO', + 1816637 => 'Excelsior Spgs, MO', + 1816650 => 'Buckner, MO', + 1816671 => 'St. Joseph, MO', + 1816676 => 'St. Joseph, MO', + 1816690 => 'Oak Grove, MO', + 1816697 => 'Lone Jack, MO', + 1816698 => 'Independence, MO', + 1816732 => 'Holden, MO', + 1816734 => 'Kansas City, MO', + 1816737 => 'Raytown, MO', + 1816741 => 'Kansas City, MO', + 1816746 => 'Kansas City, MO', + 1816753 => 'Kansas City, MO', + 1816756 => 'Kansas City, MO', + 1816776 => 'Richmond, MO', + 1816779 => 'Peculiar, MO', + 1816781 => 'Liberty, MO', + 1816792 => 'Liberty, MO', + 1816795 => 'Independence, MO', + 1816796 => 'Independence, MO', + 1816822 => 'Kansas City, MO', + 1816833 => 'Independence, MO', + 1816836 => 'Independence, MO', + 1816842 => 'Kansas City, MO', + 1816847 => 'Grain Valley, MO', + 1816858 => 'Platte City, MO', + 1816861 => 'Kansas City, MO', + 1816880 => 'Kansas City, MO', + 1816881 => 'Kansas City, MO', + 1816884 => 'Harrisonville, MO', + 1816886 => 'Independence, MO', + 1816891 => 'Kansas City, MO', + 1816903 => 'Kearney, MO', + 1816920 => 'Kansas City, MO', + 1816921 => 'Kansas City, MO', + 1816922 => 'Kansas City, MO', + 1816923 => 'Kansas City, MO', + 1816924 => 'Kansas City, MO', + 1816931 => 'Kansas City, MO', + 1816932 => 'Kansas City, MO', + 1816941 => 'Kansas City, MO', + 1816942 => 'Kansas City, MO', + 1816943 => 'Kansas City, MO', + 1816960 => 'Kansas City, MO', + 1816983 => 'Kansas City, MO', + 1816987 => 'Pleasant Hill, MO', + 1817 => 'Texas', + 1817202 => 'Cleburne, TX', + 1817207 => 'Fort Worth, TX', + 1817220 => 'Springtown, TX', + 1817222 => 'Fort Worth, TX', + 1817225 => 'Mansfield, TX', + 1817226 => 'Arlington, TX', + 1817236 => 'Fort Worth, TX', + 1817237 => 'Fort Worth, TX', + 1817238 => 'Fort Worth, TX', + 1817244 => 'Fort Worth, TX', + 1817246 => 'Fort Worth, TX', + 1817249 => 'Benbrook, TX', + 1817261 => 'Arlington, TX', + 1817263 => 'Fort Worth, TX', + 1817265 => 'Arlington, TX', + 1817268 => 'Hurst, TX', + 1817270 => 'Azle, TX', + 1817274 => 'Arlington, TX', + 1817275 => 'Arlington, TX', + 1817276 => 'Arlington, TX', + 1817277 => 'Arlington, TX', + 1817279 => 'Granbury, TX', + 1817280 => 'Hurst, TX', + 1817282 => 'Hurst, TX', + 1817285 => 'Hurst, TX', + 1817292 => 'Fort Worth, TX', + 1817293 => 'Fort Worth, TX', + 1817294 => 'Fort Worth, TX', + 1817295 => 'Burleson, TX', + 1817297 => 'Crowley, TX', + 1817299 => 'Arlington, TX', + 1817303 => 'Arlington, TX', + 1817306 => 'Fort Worth, TX', + 1817321 => 'Fort Worth, TX', + 1817326 => 'Granbury, TX', + 1817329 => 'Grapevine, TX', + 1817332 => 'Fort Worth, TX', + 1817334 => 'Fort Worth, TX', + 1817335 => 'Fort Worth, TX', + 1817336 => 'Fort Worth, TX', + 1817337 => 'Keller, TX', + 1817338 => 'Fort Worth, TX', + 1817341 => 'Weatherford, TX', + 1817346 => 'Fort Worth, TX', + 1817348 => 'Fort Worth, TX', + 1817361 => 'Fort Worth, TX', + 1817367 => 'Fort Worth, TX', + 1817370 => 'Fort Worth, TX', + 1817375 => 'Arlington, TX', + 1817377 => 'Fort Worth, TX', + 1817378 => 'Fort Worth, TX', + 1817379 => 'Keller, TX', + 1817385 => 'Arlington, TX', + 1817386 => 'Fort Worth, TX', + 1817392 => 'Fort Worth, TX', + 1817410 => 'Grapevine, TX', + 1817413 => 'Fort Worth, TX', + 1817417 => 'Arlington, TX', + 1817419 => 'Arlington, TX', + 1817420 => 'Fort Worth, TX', + 1817423 => 'Fort Worth, TX', + 1817426 => 'Burleson, TX', + 1817429 => 'Fort Worth, TX', + 1817431 => 'Keller, TX', + 1817433 => 'Fort Worth, TX', + 1817439 => 'Haslet, TX', + 1817441 => 'Aledo, TX', + 1817443 => 'Fort Worth, TX', + 1817444 => 'Azle, TX', + 1817446 => 'Fort Worth, TX', + 1817447 => 'Burleson, TX', + 1817451 => 'Fort Worth, TX', + 1817453 => 'Mansfield, TX', + 1817457 => 'Fort Worth, TX', + 1817459 => 'Arlington, TX', + 1817460 => 'Arlington, TX', + 1817461 => 'Arlington, TX', + 1817462 => 'Arlington, TX', + 1817465 => 'Arlington, TX', + 1817466 => 'Arlington, TX', + 1817467 => 'Arlington, TX', + 1817468 => 'Arlington, TX', + 1817469 => 'Arlington, TX', + 1817472 => 'Arlington, TX', + 1817473 => 'Mansfield, TX', + 1817477 => 'Mansfield, TX', + 1817481 => 'Grapevine, TX', + 1817491 => 'Roanoke, TX', + 1817492 => 'Fort Worth, TX', + 1817496 => 'Fort Worth, TX', + 1817517 => 'Cleburne, TX', + 1817523 => 'Springtown, TX', + 1817529 => 'Fort Worth, TX', + 1817531 => 'Fort Worth, TX', + 1817534 => 'Fort Worth, TX', + 1817535 => 'Fort Worth, TX', + 1817536 => 'Fort Worth, TX', + 1817539 => 'Mansfield, TX', + 1817546 => 'Fort Worth, TX', + 1817548 => 'Arlington, TX', + 1817551 => 'Fort Worth, TX', + 1817556 => 'Cleburne, TX', + 1817557 => 'Arlington, TX', + 1817558 => 'Cleburne, TX', + 1817560 => 'Fort Worth, TX', + 1817562 => 'Keller, TX', + 1817568 => 'Fort Worth, TX', + 1817569 => 'Fort Worth, TX', + 1817570 => 'Fort Worth, TX', + 1817573 => 'Granbury, TX', + 1817578 => 'Granbury, TX', + 1817579 => 'Granbury, TX', + 1817594 => 'Weatherford, TX', + 1817596 => 'Weatherford, TX', + 1817598 => 'Weatherford, TX', + 1817599 => 'Weatherford, TX', + 1817613 => 'Weatherford, TX', + 1817624 => 'Fort Worth, TX', + 1817625 => 'Fort Worth, TX', + 1817626 => 'Fort Worth, TX', + 1817633 => 'Arlington, TX', + 1817636 => 'Rhome, TX', + 1817640 => 'Arlington, TX', + 1817641 => 'Cleburne, TX', + 1817645 => 'Cleburne, TX', + 1817649 => 'Arlington, TX', + 1817652 => 'Arlington, TX', + 1817654 => 'Fort Worth, TX', + 1817717 => 'Fort Worth, TX', + 1817731 => 'Fort Worth, TX', + 1817732 => 'Fort Worth, TX', + 1817735 => 'Fort Worth, TX', + 1817737 => 'Fort Worth, TX', + 1817738 => 'Fort Worth, TX', + 1817740 => 'Fort Worth, TX', + 1817744 => 'Fort Worth, TX', + 1817750 => 'Fort Worth, TX', + 1817759 => 'Fort Worth, TX', + 1817763 => 'Fort Worth, TX', + 1817774 => 'Cleburne, TX', + 1817783 => 'Alvarado, TX', + 1817784 => 'Arlington, TX', + 1817790 => 'Alvarado, TX', + 1817795 => 'Arlington, TX', + 1817801 => 'Arlington, TX', + 1817803 => 'Central Drive, Bedford, TX', + 1817810 => 'Fort Worth, TX', + 1817820 => 'Fort Worth, TX', + 1817831 => 'Fort Worth, TX', + 1817834 => 'Fort Worth, TX', + 1817838 => 'Fort Worth, TX', + 1817847 => 'Fort Worth, TX', + 1817860 => 'Arlington, TX', + 1817861 => 'Arlington, TX', + 1817866 => 'Grandview, TX', + 1817870 => 'Fort Worth, TX', + 1817877 => 'Fort Worth, TX', + 1817878 => 'Fort Worth, TX', + 1817882 => 'Fort Worth, TX', + 1817885 => 'Fort Worth, TX', + 1817920 => 'Fort Worth, TX', + 1817921 => 'Fort Worth, TX', + 1817922 => 'Fort Worth, TX', + 1817923 => 'Fort Worth, TX', + 1817924 => 'Fort Worth, TX', + 1817926 => 'Fort Worth, TX', + 1817927 => 'Fort Worth, TX', + 1817989 => 'Fort Worth, TX', + 1818 => 'California', + 1818222 => 'Calabasas, CA', + 1818223 => 'Calabasas, CA', + 1818238 => 'Burbank, CA', + 1818240 => 'Glendale, CA', + 1818241 => 'Glendale, CA', + 1818242 => 'Glendale, CA', + 1818243 => 'Glendale, CA', + 1818244 => 'Glendale, CA', + 1818246 => 'Glendale, CA', + 1818247 => 'Glendale, CA', + 1818252 => 'Sun Valley, CA', + 1818255 => 'North Hollywood, CA', + 1818260 => 'Burbank, CA', + 1818265 => 'Glendale, CA', + 1818291 => 'Glendale, CA', + 1818361 => 'San Fernando, CA', + 1818362 => 'Sylmar, CA', + 1818364 => 'Sylmar, CA', + 1818365 => 'San Fernando, CA', + 1818367 => 'Sylmar, CA', + 1818375 => 'Panorama City, CA', + 1818376 => 'Van Nuys, CA', + 1818409 => 'Glendale, CA', + 1818484 => 'Glendale, CA', + 1818500 => 'Glendale, CA', + 1818502 => 'Glendale, CA', + 1818503 => 'North Hollywood, CA', + 1818504 => 'Sun Valley, CA', + 1818507 => 'Glendale, CA', + 1818543 => 'Glendale, CA', + 1818545 => 'Glendale, CA', + 1818546 => 'Glendale, CA', + 1818547 => 'Glendale, CA', + 1818548 => 'Glendale, CA', + 1818549 => 'Glendale, CA', + 1818550 => 'Glendale, CA', + 1818551 => 'Glendale, CA', + 1818552 => 'Glendale, CA', + 1818553 => 'Glendale, CA', + 1818556 => 'Burbank, CA', + 1818557 => 'Burbank, CA', + 1818558 => 'Burbank, CA', + 1818559 => 'Burbank, CA', + 1818563 => 'Burbank, CA', + 1818565 => 'Burbank, CA', + 1818566 => 'Burbank, CA', + 1818567 => 'Burbank, CA', + 1818591 => 'Calabasas, CA', + 1818637 => 'Glendale, CA', + 1818662 => 'Glendale, CA', + 1818686 => 'Pacoima, CA', + 1818706 => 'Agoura Hills, CA', + 1818719 => 'Woodland Hills, CA', + 1818729 => 'Burbank, CA', + 1818735 => 'Agoura Hills, CA', + 1818759 => 'North Hollywood, CA', + 1818764 => 'North Hollywood, CA', + 1818765 => 'North Hollywood, CA', + 1818767 => 'Sun Valley, CA', + 1818768 => 'Sun Valley, CA', + 1818771 => 'Sun Valley, CA', + 1818779 => 'Van Nuys, CA', + 1818780 => 'Van Nuys, CA', + 1818781 => 'Van Nuys, CA', + 1818782 => 'Van Nuys, CA', + 1818785 => 'Van Nuys, CA', + 1818786 => 'Van Nuys, CA', + 1818787 => 'Van Nuys, CA', + 1818833 => 'Sylmar, CA', + 1818840 => 'Burbank, CA', + 1818841 => 'Burbank, CA', + 1818842 => 'Burbank, CA', + 1818843 => 'Burbank, CA', + 1818845 => 'Burbank, CA', + 1818846 => 'Burbank, CA', + 1818847 => 'Burbank, CA', + 1818848 => 'Burbank, CA', + 1818861 => 'Burbank, CA', + 1818878 => 'Calabasas, CA', + 1818880 => 'Calabasas, CA', + 1818885 => 'Northridge, CA', + 1818886 => 'Northridge, CA', + 1818896 => 'Pacoima, CA', + 1818897 => 'Pacoima, CA', + 1818898 => 'San Fernando, CA', + 1818901 => 'Van Nuys, CA', + 1818902 => 'Van Nuys, CA', + 1818904 => 'Van Nuys, CA', + 1818908 => 'Van Nuys, CA', + 1818909 => 'Van Nuys, CA', + 1818937 => 'Glendale, CA', + 1818953 => 'Burbank, CA', + 1818954 => 'Burbank, CA', + 1818955 => 'Burbank, CA', + 1818956 => 'Glendale, CA', + 1818972 => 'Burbank, CA', + 1818982 => 'North Hollywood, CA', + 1818988 => 'Van Nuys, CA', + 1818989 => 'Van Nuys, CA', + 1818993 => 'Northridge, CA', + 1818994 => 'Van Nuys, CA', + 1818997 => 'Van Nuys, CA', + 1819 => 'Quebec', + 1819205 => 'Gatineau, QC', + 1819228 => 'Louiseville, QC', + 1819242 => 'Grenville, QC', + 1819243 => 'Gatineau, QC', + 1819246 => 'Gatineau, QC', + 1819275 => 'Rivière-Rouge, QC', + 1819281 => 'Gatineau, QC', + 1819293 => 'Nicolet, QC', + 1819298 => 'Gentilly, QC', + 1819321 => 'Sainte-Agathe-des-Monts, QC', + 1819322 => 'Val-David, QC', + 1819326 => 'Sainte-Agathe-des-Monts, QC', + 1819333 => 'La Sarre, QC', + 1819346 => 'Sherbrooke, QC', + 1819347 => 'Sherbrooke, QC', + 1819348 => 'Sherbrooke, QC', + 1819357 => 'Victoriaville, QC', + 1819358 => 'Warwick, QC', + 1819362 => 'Plessisville, QC', + 1819364 => 'Princeville, QC', + 1819370 => 'Trois-Rivières, QC', + 1819371 => 'Trois-Rivières, QC', + 1819372 => 'Trois-Rivières, QC', + 1819373 => 'Trois-Rivières, QC', + 1819374 => 'Trois-Rivières, QC', + 1819375 => 'Trois-Rivières, QC', + 1819376 => 'Trois-Rivières, QC', + 1819377 => 'Trois-Rivières, QC', + 1819378 => 'Trois-Rivières, QC', + 1819379 => 'Trois-Rivières, QC', + 1819395 => 'Saint-Germain-de-Grantham, QC', + 1819397 => 'Saint-Cyrille-de-Wendover, QC', + 1819398 => 'Wickham, QC', + 1819423 => 'Montebello, QC', + 1819424 => 'Saint-Donat, QC', + 1819425 => 'Mont-Tremblant, QC', + 1819427 => 'Papineauville, QC', + 1819429 => 'Mont-Tremblant, QC', + 1819440 => 'Mont-Laurier, QC', + 1819441 => 'Maniwaki, QC', + 1819449 => 'Maniwaki, QC', + 1819463 => 'Gracefield, QC', + 1819472 => 'Drummondville, QC', + 1819474 => 'Drummondville, QC', + 1819475 => 'Drummondville, QC', + 1819477 => 'Drummondville, QC', + 1819478 => 'Drummondville, QC', + 1819479 => 'Drummondville, QC', + 1819523 => 'La Tuque, QC', + 1819533 => 'Grand-Mère, QC', + 1819535 => 'St-Boniface-de-Shawinigan, QC', + 1819536 => 'Shawinigan, QC', + 1819537 => 'Shawinigan, QC', + 1819538 => 'Grand-Mère, QC', + 1819539 => 'Shawinigan, QC', + 1819561 => 'Gatineau, QC', + 1819562 => 'Sherbrooke, QC', + 1819563 => 'Sherbrooke, QC', + 1819564 => 'Sherbrooke, QC', + 1819565 => 'Sherbrooke, QC', + 1819566 => 'Sherbrooke, QC', + 1819568 => 'Gatineau, QC', + 1819569 => 'Sherbrooke, QC', + 1819575 => 'Sherbrooke, QC', + 1819583 => 'Lac-Mégantic, QC', + 1819585 => 'Lac-des-Écorces, QC', + 1819587 => 'Ferme-Neuve, QC', + 1819595 => 'Gatineau, QC', + 1819604 => 'Victoriaville, QC', + 1819622 => 'Ville-Marie, QC', + 1819623 => 'Mont-Laurier, QC', + 1819627 => 'Temiscaming, QC', + 1819629 => 'Ville-Marie, QC', + 1819643 => 'Gatineau, QC', + 1819647 => 'Shawville, QC', + 1819648 => 'Campbell\'s Bay, QC', + 1819663 => 'Gatineau, QC', + 1819669 => 'Gatineau, QC', + 1819671 => 'Val-des-Monts, QC', + 1819681 => 'Mont-Tremblant, QC', + 1819682 => 'Gatineau, QC', + 1819684 => 'Gatineau, QC', + 1819685 => 'Gatineau, QC', + 1819686 => 'Village de Labelle, QC', + 1819691 => 'Trois-Rivières, QC', + 1819693 => 'Trois-Rivières, QC', + 1819694 => 'Trois-Rivières, QC', + 1819697 => 'Trois-Rivières, QC', + 1819727 => 'Amos, QC', + 1819732 => 'Amos, QC', + 1819737 => 'Senneterre, QC', + 1819739 => 'Matagami, QC', + 1819751 => 'Victoriaville, QC', + 1819752 => 'Victoriaville, QC', + 1819755 => 'Lebel-sur-Quévillon, QC', + 1819757 => 'Malartic, QC', + 1819758 => 'Victoriaville, QC', + 1819762 => 'Rouyn-Noranda, QC', + 1819763 => 'Rouyn-Noranda, QC', + 1819764 => 'Rouyn-Noranda, QC', + 1819770 => 'Gatineau, QC', + 1819771 => 'Gatineau, QC', + 1819772 => 'Gatineau, QC', + 1819775 => 'Gatineau, QC', + 1819776 => 'Gatineau, QC', + 1819777 => 'Gatineau, QC', + 1819778 => 'Gatineau, QC', + 1819791 => 'Sherbrooke, QC', + 1819797 => 'Rouyn-Noranda, QC', + 1819820 => 'Sherbrooke, QC', + 1819821 => 'Sherbrooke, QC', + 1819822 => 'Sherbrooke, QC', + 1819823 => 'Sherbrooke, QC', + 1819824 => 'Val-d\'Or, QC', + 1819825 => 'Val-d\'Or, QC', + 1819829 => 'Sherbrooke, QC', + 1819832 => 'East Angus, QC', + 1819839 => 'Danville, QC', + 1819840 => 'Trois-Rivières, QC', + 1819843 => 'Magog, QC', + 1819845 => 'Windsor, QC', + 1819847 => 'Magog, QC', + 1819849 => 'Coaticook, QC', + 1819850 => 'Drummondville, QC', + 1819864 => 'Sherbrooke, QC', + 1819868 => 'Magog, QC', + 1819874 => 'Val-d\'Or, QC', + 1819875 => 'Cookshire, QC', + 1819876 => 'Stanstead, QC', + 1819877 => 'Weedon, QC', + 1819879 => 'Asbestos, QC', + 1819893 => 'Gatineau, QC', + 1819983 => 'Saint-André-Avellin, QC', + 1819985 => 'Thurso, QC', + 1819986 => 'Gatineau, QC', + 1825 => 'Alberta', + 1828 => 'North Carolina', + 1828210 => 'Asheville, NC', + 1828213 => 'Asheville, NC', + 1828225 => 'Asheville, NC', + 1828232 => 'Asheville, NC', + 1828236 => 'Asheville, NC', + 1828241 => 'Catawba, NC', + 1828245 => 'Forest City, NC', + 1828246 => 'Waynesville, NC', + 1828247 => 'Forest City, NC', + 1828248 => 'Forest City, NC', + 1828250 => 'Asheville, NC', + 1828251 => 'Asheville, NC', + 1828252 => 'Asheville, NC', + 1828253 => 'Asheville, NC', + 1828254 => 'Asheville, NC', + 1828255 => 'Asheville, NC', + 1828256 => 'Hickory, NC', + 1828257 => 'Asheville, NC', + 1828258 => 'Asheville, NC', + 1828259 => 'Asheville, NC', + 1828261 => 'Hickory, NC', + 1828262 => 'Boone, NC', + 1828263 => 'Boone, NC', + 1828264 => 'Boone, NC', + 1828265 => 'Boone, NC', + 1828267 => 'Hickory, NC', + 1828268 => 'Boone, NC', + 1828274 => 'Asheville, NC', + 1828277 => 'Asheville, NC', + 1828281 => 'Asheville, NC', + 1828285 => 'Asheville, NC', + 1828287 => 'Rutherfordton, NC', + 1828288 => 'Rutherfordton, NC', + 1828293 => 'Cullowhee, NC', + 1828294 => 'Hickory, NC', + 1828295 => 'Blowing Rock, NC', + 1828298 => 'Asheville, NC', + 1828299 => 'Asheville, NC', + 1828304 => 'Hickory, NC', + 1828315 => 'Hickory, NC', + 1828321 => 'Andrews, NC', + 1828322 => 'Hickory, NC', + 1828323 => 'Hickory, NC', + 1828324 => 'Hickory, NC', + 1828326 => 'Hickory, NC', + 1828327 => 'Hickory, NC', + 1828328 => 'Hickory, NC', + 1828345 => 'Hickory, NC', + 1828348 => 'Asheville, NC', + 1828349 => 'Franklin, NC', + 1828350 => 'Asheville, NC', + 1828369 => 'Franklin, NC', + 1828389 => 'Hayesville, NC', + 1828396 => 'Granite Falls, NC', + 1828398 => 'Asheville, NC', + 1828428 => 'Maiden, NC', + 1828430 => 'Morganton, NC', + 1828433 => 'Morganton, NC', + 1828437 => 'Morganton, NC', + 1828438 => 'Morganton, NC', + 1828439 => 'Morganton, NC', + 1828452 => 'Waynesville, NC', + 1828453 => 'Ellenboro, NC', + 1828454 => 'Waynesville, NC', + 1828456 => 'Waynesville, NC', + 1828459 => 'Claremont, NC', + 1828464 => 'Newton, NC', + 1828465 => 'Newton, NC', + 1828466 => 'Newton, NC', + 1828478 => 'Sherrills Ford, NC', + 1828479 => 'Robbinsville, NC', + 1828488 => 'Bryson City, NC', + 1828495 => 'Hickory, NC', + 1828497 => 'Cherokee, NC', + 1828505 => 'Asheville, NC', + 1828524 => 'Franklin, NC', + 1828526 => 'Highlands, NC', + 1828572 => 'Lenoir, NC', + 1828575 => 'Asheville, NC', + 1828580 => 'Morganton, NC', + 1828584 => 'Morganton, NC', + 1828586 => 'Sylva, NC', + 1828625 => 'Lake Lure, NC', + 1828627 => 'Clyde, NC', + 1828628 => 'Fairview, NC', + 1828631 => 'Sylva, NC', + 1828632 => 'Taylorsville, NC', + 1828635 => 'Taylorsville, NC', + 1828645 => 'Weaverville, NC', + 1828648 => 'Canton, NC', + 1828649 => 'Marshall, NC', + 1828652 => 'Marion, NC', + 1828658 => 'Weaverville, NC', + 1828659 => 'Marion, NC', + 1828667 => 'Candler, NC', + 1828668 => 'Old Fort, NC', + 1828669 => 'Black Mountain, NC', + 1828670 => 'Asheville, NC', + 1828675 => 'Burnsville, NC', + 1828682 => 'Burnsville, NC', + 1828683 => 'Leicester, NC', + 1828685 => 'Hendersonville, NC', + 1828686 => 'Swannanoa, NC', + 1828688 => 'Bakersville, NC', + 1828689 => 'Mars Hill, NC', + 1828692 => 'Hendersonville, NC', + 1828693 => 'Hendersonville, NC', + 1828694 => 'Hendersonville, NC', + 1828696 => 'Hendersonville, NC', + 1828697 => 'Hendersonville, NC', + 1828698 => 'Hendersonville, NC', + 1828713 => 'Asheville, NC', + 1828726 => 'Lenoir, NC', + 1828733 => 'Newland, NC', + 1828737 => 'Newland, NC', + 1828738 => 'Marion, NC', + 1828743 => 'Cashiers, NC', + 1828749 => 'Saluda, NC', + 1828754 => 'Lenoir, NC', + 1828757 => 'Lenoir, NC', + 1828758 => 'Lenoir, NC', + 1828765 => 'Spruce Pine, NC', + 1828766 => 'Spruce Pine, NC', + 1828771 => 'Asheville, NC', + 1828773 => 'Boone, NC', + 1828835 => 'Murphy, NC', + 1828837 => 'Murphy, NC', + 1828855 => 'Hickory, NC', + 1828859 => 'Tryon, NC', + 1828862 => 'Brevard, NC', + 1828863 => 'Columbus, NC', + 1828874 => 'Valdese, NC', + 1828877 => 'Brevard, NC', + 1828879 => 'Valdese, NC', + 1828883 => 'Brevard, NC', + 1828884 => 'Brevard, NC', + 1828885 => 'Brevard, NC', + 1828894 => 'Columbus, NC', + 1828898 => 'Banner Elk, NC', + 1828926 => 'Maggie Valley, NC', + 1830 => 'Texas', + 1830214 => 'New Braunfels, TX', + 1830216 => 'Floresville, TX', + 1830232 => 'Leakey, TX', + 1830238 => 'Hunt, TX', + 1830249 => 'Boerne, TX', + 1830257 => 'Kerrville, TX', + 1830278 => 'Uvalde, TX', + 1830281 => 'Pleasanton, TX', + 1830298 => 'Laughlin AFB, TX', + 1830303 => 'Seguin, TX', + 1830331 => 'Boerne, TX', + 1830334 => 'Pearsall, TX', + 1830336 => 'Boerne, TX', + 1830367 => 'Ingram, TX', + 1830372 => 'Seguin, TX', + 1830374 => 'Crystal City, TX', + 1830379 => 'Seguin, TX', + 1830393 => 'Floresville, TX', + 1830401 => 'Seguin, TX', + 1830426 => 'Hondo, TX', + 1830438 => 'Bulverde, TX', + 1830515 => 'New Braunfels, TX', + 1830537 => 'Boerne, TX', + 1830538 => 'Castroville, TX', + 1830563 => 'Brackettville, TX', + 1830569 => 'Pleasanton, TX', + 1830583 => 'Kenedy, TX', + 1830591 => 'Uvalde, TX', + 1830598 => 'Horseshoe Bay, TX', + 1830606 => 'New Braunfels, TX', + 1830608 => 'New Braunfels, TX', + 1830609 => 'New Braunfels, TX', + 1830620 => 'New Braunfels, TX', + 1830624 => 'New Braunfels, TX', + 1830625 => 'New Braunfels, TX', + 1830626 => 'New Braunfels, TX', + 1830627 => 'New Braunfels, TX', + 1830629 => 'New Braunfels, TX', + 1830634 => 'Center Point, TX', + 1830643 => 'New Braunfels, TX', + 1830663 => 'Devine, TX', + 1830665 => 'Devine, TX', + 1830672 => 'Gonzales, TX', + 1830683 => 'Rocksprings, TX', + 1830693 => 'Marble Falls, TX', + 1830708 => 'New Braunfels, TX', + 1830741 => 'Hondo, TX', + 1830742 => 'Poteet, TX', + 1830755 => 'Boerne, TX', + 1830757 => 'Eagle Pass, TX', + 1830758 => 'Eagle Pass, TX', + 1830768 => 'Del Rio, TX', + 1830769 => 'Jourdanton, TX', + 1830772 => 'Lytle, TX', + 1830773 => 'Eagle Pass, TX', + 1830774 => 'Del Rio, TX', + 1830775 => 'Del Rio, TX', + 1830778 => 'Del Rio, TX', + 1830779 => 'La Vernia, TX', + 1830780 => 'Karnes City, TX', + 1830792 => 'Kerrville, TX', + 1830796 => 'Bandera, TX', + 1830798 => 'Marble Falls, TX', + 1830816 => 'Boerne, TX', + 1830833 => 'Blanco, TX', + 1830868 => 'Johnson City, TX', + 1830875 => 'Luling, TX', + 1830876 => 'Carrizo Springs, TX', + 1830879 => 'Cotulla, TX', + 1830885 => 'Spring Branch, TX', + 1830895 => 'Kerrville, TX', + 1830896 => 'Kerrville, TX', + 1830899 => 'Canyon Lake, TX', + 1830931 => 'Castroville, TX', + 1830935 => 'Canyon Lake, TX', + 1830964 => 'Canyon Lake, TX', + 1830965 => 'Dilley, TX', + 1830966 => 'Utopia, TX', + 1830981 => 'Boerne, TX', + 1830990 => 'Fredericksburg, TX', + 1830992 => 'Fredericksburg, TX', + 1830995 => 'Comfort, TX', + 1830996 => 'Stockdale, TX', + 1830997 => 'Fredericksburg, TX', + 1831 => 'California', + 1831333 => 'Monterey, CA', + 1831335 => 'Felton, CA', + 1831336 => 'Ben Lomond, CA', + 1831338 => 'Boulder Creek, CA', + 1831372 => 'Monterey, CA', + 1831373 => 'Monterey, CA', + 1831375 => 'Monterey, CA', + 1831384 => 'Marina, CA', + 1831385 => 'King City, CA', + 1831386 => 'King City, CA', + 1831393 => 'Seaside, CA', + 1831394 => 'Seaside, CA', + 1831420 => 'Santa Cruz, CA', + 1831421 => 'Santa Cruz, CA', + 1831422 => 'Salinas, CA', + 1831423 => 'Santa Cruz, CA', + 1831424 => 'Salinas, CA', + 1831425 => 'Santa Cruz, CA', + 1831426 => 'Santa Cruz, CA', + 1831427 => 'Santa Cruz, CA', + 1831429 => 'Santa Cruz, CA', + 1831430 => 'Scotts Valley, CA', + 1831438 => 'Scotts Valley, CA', + 1831439 => 'Scotts Valley, CA', + 1831440 => 'Scotts Valley, CA', + 1831442 => 'Salinas, CA', + 1831443 => 'Salinas, CA', + 1831444 => 'Salinas, CA', + 1831449 => 'Salinas, CA', + 1831454 => 'Santa Cruz, CA', + 1831455 => 'Salinas, CA', + 1831457 => 'Santa Cruz, CA', + 1831458 => 'Santa Cruz, CA', + 1831459 => 'Santa Cruz, CA', + 1831460 => 'Santa Cruz, CA', + 1831466 => 'Santa Cruz, CA', + 1831469 => 'Santa Cruz, CA', + 1831479 => 'Santa Cruz, CA', + 1831484 => 'Salinas, CA', + 1831600 => 'Santa Cruz, CA', + 1831620 => 'Carmel, CA', + 1831622 => 'Carmel, CA', + 1831623 => 'San Jn Bautista, CA', + 1831624 => 'Carmel, CA', + 1831625 => 'Carmel, CA', + 1831626 => 'Carmel, CA', + 1831630 => 'Hollister, CA', + 1831633 => 'Castroville, CA', + 1831635 => 'Hollister, CA', + 1831636 => 'Hollister, CA', + 1831637 => 'Hollister, CA', + 1831638 => 'Hollister, CA', + 1831643 => 'Monterey, CA', + 1831644 => 'Monterey, CA', + 1831646 => 'Monterey, CA', + 1831647 => 'Monterey, CA', + 1831648 => 'Monterey, CA', + 1831649 => 'Monterey, CA', + 1831655 => 'Monterey, CA', + 1831656 => 'Monterey, CA', + 1831659 => 'Carmel Valley, CA', + 1831662 => 'Aptos, CA', + 1831663 => 'Salinas, CA', + 1831674 => 'Greenfield, CA', + 1831675 => 'Gonzales, CA', + 1831678 => 'Soledad, CA', + 1831684 => 'Aptos, CA', + 1831685 => 'Aptos, CA', + 1831688 => 'Aptos, CA', + 1831722 => 'Watsonville, CA', + 1831724 => 'Watsonville, CA', + 1831726 => 'Aromas, CA', + 1831728 => 'Watsonville, CA', + 1831751 => 'Salinas, CA', + 1831753 => 'Salinas, CA', + 1831754 => 'Salinas, CA', + 1831755 => 'Salinas, CA', + 1831757 => 'Salinas, CA', + 1831758 => 'Salinas, CA', + 1831759 => 'Salinas, CA', + 1831761 => 'Watsonville, CA', + 1831763 => 'Watsonville, CA', + 1831768 => 'Watsonville, CA', + 1831769 => 'Salinas, CA', + 1831771 => 'Salinas, CA', + 1831786 => 'Watsonville, CA', + 1831796 => 'Salinas, CA', + 1831883 => 'Marina, CA', + 1831899 => 'Seaside, CA', + 1831998 => 'Salinas, CA', + 1832 => 'Texas', + 1832203 => 'Houston, TX', + 1832230 => 'Houston, TX', + 1832237 => 'Houston, TX', + 1832242 => 'Houston, TX', + 1832243 => 'Houston, TX', + 1832249 => 'Houston, TX', + 1832251 => 'Houston, TX', + 1832286 => 'Houston, TX', + 1832325 => 'Houston, TX', + 1832328 => 'Houston, TX', + 1832355 => 'Houston, TX', + 1832358 => 'Houston, TX', + 1832426 => 'Houston, TX', + 1832437 => 'Katy, TX', + 1832467 => 'Houston, TX', + 1832476 => 'Houston, TX', + 1832538 => 'Houston, TX', + 1832582 => 'Houston, TX', + 1832593 => 'Houston, TX', + 1832623 => 'Houston, TX', + 1832632 => 'League City, TX', + 1832644 => 'Humble, TX', + 1832649 => 'Houston, TX', + 1832736 => 'Pearland, TX', + 1832767 => 'Houston, TX', + 1832778 => 'Houston, TX', + 1832813 => 'Spring, TX', + 1832822 => 'Houston, TX', + 1832824 => 'Houston, TX', + 1832826 => 'Houston, TX', + 1832912 => 'Houston, TX', + 1832934 => 'Magnolia, TX', + 1843 => 'South Carolina', + 1843207 => 'North Charleston, SC', + 1843208 => 'Hardeeville, SC', + 1843213 => 'Myrtle Beach, SC', + 1843215 => 'Myrtle Beach, SC', + 1843216 => 'Mount Pleasant, SC', + 1843228 => 'Beaufort, SC', + 1843234 => 'Conway, SC', + 1843235 => 'Pawleys Island, SC', + 1843236 => 'Myrtle Beach, SC', + 1843237 => 'Pawleys Island, SC', + 1843238 => 'Surfside Beach, SC', + 1843241 => 'Myrtle Beach, SC', + 1843248 => 'Conway, SC', + 1843261 => 'Summerville, SC', + 1843264 => 'Andrews, SC', + 1843292 => 'Florence, SC', + 1843293 => 'Myrtle Beach, SC', + 1843294 => 'Myrtle Beach, SC', + 1843317 => 'Florence, SC', + 1843326 => 'Lamar, SC', + 1843332 => 'Hartsville, SC', + 1843339 => 'Hartsville, SC', + 1843341 => 'Hilton Head Isle, SC', + 1843342 => 'Hilton Head Isle, SC', + 1843346 => 'Timmonsville, SC', + 1843347 => 'Conway, SC', + 1843349 => 'Conway, SC', + 1843354 => 'Kingstree, SC', + 1843355 => 'Kingstree, SC', + 1843357 => 'Murrells Inlet, SC', + 1843358 => 'Aynor, SC', + 1843363 => 'Hilton Head Isle, SC', + 1843365 => 'Conway, SC', + 1843369 => 'Conway, SC', + 1843374 => 'Lake City, SC', + 1843379 => 'Beaufort, SC', + 1843382 => 'Kingstree, SC', + 1843383 => 'Hartsville, SC', + 1843386 => 'Johnsonville, SC', + 1843388 => 'Mount Pleasant, SC', + 1843393 => 'Darlington, SC', + 1843394 => 'Lake City, SC', + 1843395 => 'Darlington, SC', + 1843397 => 'Conway, SC', + 1843398 => 'Darlington, SC', + 1843402 => 'Charleston, SC', + 1843406 => 'Charleston, SC', + 1843407 => 'Florence, SC', + 1843413 => 'Florence, SC', + 1843416 => 'Mount Pleasant, SC', + 1843423 => 'Marion, SC', + 1843444 => 'Myrtle Beach, SC', + 1843445 => 'Myrtle Beach, SC', + 1843448 => 'Myrtle Beach, SC', + 1843449 => 'Myrtle Beach, SC', + 1843454 => 'Bennettsville, SC', + 1843455 => 'Myrtle Beach, SC', + 1843464 => 'Mullins, SC', + 1843479 => 'Bennettsville, SC', + 1843488 => 'Conway, SC', + 1843492 => 'Myrtle Beach, SC', + 1843493 => 'Pamplico, SC', + 1843497 => 'Myrtle Beach, SC', + 1843520 => 'Georgetown, SC', + 1843521 => 'Beaufort, SC', + 1843522 => 'Beaufort, SC', + 1843524 => 'Beaufort, SC', + 1843525 => 'Beaufort, SC', + 1843527 => 'Georgetown, SC', + 1843529 => 'North Charleston, SC', + 1843537 => 'Cheraw, SC', + 1843538 => 'Walterboro, SC', + 1843545 => 'Georgetown, SC', + 1843546 => 'Georgetown, SC', + 1843549 => 'Walterboro, SC', + 1843552 => 'North Charleston, SC', + 1843556 => 'Charleston, SC', + 1843558 => 'Hemingway, SC', + 1843559 => 'Johns Island, SC', + 1843563 => 'St. George, SC', + 1843567 => 'St. Stephen, SC', + 1843571 => 'Charleston, SC', + 1843573 => 'Charleston, SC', + 1843577 => 'Charleston, SC', + 1843588 => 'Folly Beach, SC', + 1843623 => 'Chesterfield, SC', + 1843626 => 'Myrtle Beach, SC', + 1843629 => 'Florence, SC', + 1843645 => 'Ridgeland, SC', + 1843650 => 'Myrtle Beach, SC', + 1843651 => 'Murrells Inlet, SC', + 1843652 => 'Murrells Inlet, SC', + 1843654 => 'Mount Pleasant, SC', + 1843658 => 'Jefferson, SC', + 1843659 => 'Turbeville, SC', + 1843661 => 'Florence, SC', + 1843662 => 'Florence, SC', + 1843664 => 'Florence, SC', + 1843665 => 'Florence, SC', + 1843667 => 'Florence, SC', + 1843669 => 'Florence, SC', + 1843671 => 'Hilton Head Isle, SC', + 1843672 => 'Pageland, SC', + 1843673 => 'Florence, SC', + 1843676 => 'Florence, SC', + 1843679 => 'Florence, SC', + 1843681 => 'Hilton Head Isle, SC', + 1843682 => 'Hilton Head Isle, SC', + 1843686 => 'Hilton Head Isle, SC', + 1843689 => 'Hilton Head Isle, SC', + 1843692 => 'Myrtle Beach, SC', + 1843695 => 'Summerville, SC', + 1843705 => 'Bluffton, SC', + 1843706 => 'Bluffton, SC', + 1843712 => 'Myrtle Beach, SC', + 1843716 => 'Loris, SC', + 1843720 => 'Charleston, SC', + 1843722 => 'Charleston, SC', + 1843723 => 'Charleston, SC', + 1843724 => 'Charleston, SC', + 1843726 => 'Ridgeland, SC', + 1843727 => 'Charleston, SC', + 1843740 => 'North Charleston, SC', + 1843744 => 'North Charleston, SC', + 1843745 => 'North Charleston, SC', + 1843747 => 'North Charleston, SC', + 1843752 => 'Latta, SC', + 1843756 => 'Loris, SC', + 1843757 => 'Bluffton, SC', + 1843760 => 'North Charleston, SC', + 1843761 => 'Moncks Corner, SC', + 1843762 => 'Charleston, SC', + 1843763 => 'Charleston, SC', + 1843766 => 'Charleston, SC', + 1843767 => 'North Charleston, SC', + 1843768 => 'Johns Island, SC', + 1843769 => 'Charleston, SC', + 1843771 => 'Summerville, SC', + 1843774 => 'Dillon, SC', + 1843777 => 'Florence, SC', + 1843782 => 'Walterboro, SC', + 1843784 => 'Hardeeville, SC', + 1843785 => 'Hilton Head Isle, SC', + 1843789 => 'Charleston, SC', + 1843792 => 'Charleston, SC', + 1843795 => 'Charleston, SC', + 1843815 => 'Bluffton, SC', + 1843821 => 'Summerville, SC', + 1843832 => 'Summerville, SC', + 1843835 => 'Cottageville, SC', + 1843836 => 'Bluffton, SC', + 1843837 => 'Bluffton, SC', + 1843838 => 'Saint Helena Island, SC', + 1843839 => 'Myrtle Beach, SC', + 1843841 => 'Dillon, SC', + 1843842 => 'Hilton Head Isle, SC', + 1843846 => 'Beaufort, SC', + 1843849 => 'Mount Pleasant, SC', + 1843851 => 'Summerville, SC', + 1843852 => 'Charleston, SC', + 1843853 => 'Charleston, SC', + 1843856 => 'Mount Pleasant, SC', + 1843869 => 'Edisto Island, SC', + 1843871 => 'Summerville, SC', + 1843873 => 'Summerville, SC', + 1843875 => 'Summerville, SC', + 1843876 => 'Charleston, SC', + 1843881 => 'Mount Pleasant, SC', + 1843884 => 'Mount Pleasant, SC', + 1843886 => 'Isle of Palms, SC', + 1843889 => 'Hollywood, SC', + 1843899 => 'Moncks Corner, SC', + 1843903 => 'Myrtle Beach, SC', + 1843915 => 'Conway, SC', + 1843916 => 'Myrtle Beach, SC', + 1843937 => 'Charleston, SC', + 1843946 => 'Myrtle Beach, SC', + 1843958 => 'Charleston, SC', + 1843971 => 'Mount Pleasant, SC', + 1843986 => 'Beaufort, SC', + 1845 => 'New York', + 1845225 => 'Carmel, NY', + 1845228 => 'Carmel, NY', + 1845229 => 'Hyde Park, NY', + 1845231 => 'Fishkill, NY', + 1845236 => 'Marlboro, NY', + 1845246 => 'Saugerties, NY', + 1845247 => 'Saugerties, NY', + 1845252 => 'Narrowsburg, NY', + 1845255 => 'New Paltz, NY', + 1845256 => 'New Paltz, NY', + 1845258 => 'Pine Island, NY', + 1845265 => 'Cold Spring, NY', + 1845267 => 'Congers, NY', + 1845268 => 'Congers, NY', + 1845278 => 'Brewster, NY', + 1845279 => 'Brewster, NY', + 1845291 => 'Goshen, NY', + 1845292 => 'Liberty, NY', + 1845294 => 'Goshen, NY', + 1845296 => 'Wappingers Falls, NY', + 1845297 => 'Wappingers Falls, NY', + 1845298 => 'Wappingers Falls, NY', + 1845331 => 'Kingston, NY', + 1845334 => 'Kingston, NY', + 1845336 => 'Kingston, NY', + 1845338 => 'Kingston, NY', + 1845339 => 'Kingston, NY', + 1845340 => 'Kingston, NY', + 1845341 => 'Middletown, NY', + 1845342 => 'Middletown, NY', + 1845343 => 'Middletown, NY', + 1845344 => 'Middletown, NY', + 1845348 => 'Nyack, NY', + 1845351 => 'Tuxedo Park, NY', + 1845353 => 'Nyack, NY', + 1845357 => 'Suffern, NY', + 1845358 => 'Nyack, NY', + 1845364 => 'Pomona, NY', + 1845368 => 'Suffern, NY', + 1845369 => 'Suffern, NY', + 1845373 => 'Amenia, NY', + 1845374 => 'New Hampton, NY', + 1845386 => 'Otisville, NY', + 1845424 => 'Garrison, NY', + 1845427 => 'Maybrook, NY', + 1845431 => 'Poughkeepsie, NY', + 1845439 => 'Livingston Manor, NY', + 1845446 => 'Highland Falls, NY', + 1845452 => 'Poughkeepsie, NY', + 1845454 => 'Poughkeepsie, NY', + 1845457 => 'Montgomery, NY', + 1845462 => 'Poughkeepsie, NY', + 1845463 => 'Poughkeepsie, NY', + 1845469 => 'Chester, NY', + 1845471 => 'Poughkeepsie, NY', + 1845473 => 'Poughkeepsie, NY', + 1845477 => 'Greenwood Lake, NY', + 1845482 => 'Jeffersonville, NY', + 1845483 => 'Poughkeepsie, NY', + 1845485 => 'Poughkeepsie, NY', + 1845486 => 'Poughkeepsie, NY', + 1845496 => 'Washingtonville, NY', + 1845497 => 'Washingtonville, NY', + 1845528 => 'Putnam Valley, NY', + 1845534 => 'Cornwall, NY', + 1845561 => 'Newburgh, NY', + 1845562 => 'Newburgh, NY', + 1845563 => 'Newburgh, NY', + 1845564 => 'Newburgh, NY', + 1845565 => 'Newburgh, NY', + 1845566 => 'Newburgh, NY', + 1845568 => 'Newburgh, NY', + 1845569 => 'Newburgh, NY', + 1845575 => 'Poughkeepsie, NY', + 1845586 => 'Margaretville, NY', + 1845615 => 'Goshen, NY', + 1845621 => 'Mahopac, NY', + 1845623 => 'Nanuet, NY', + 1845624 => 'Nanuet, NY', + 1845626 => 'Kerhonkson, NY', + 1845627 => 'Nanuet, NY', + 1845628 => 'Mahopac, NY', + 1845632 => 'Wappingers Falls, NY', + 1845634 => 'New City, NY', + 1845635 => 'Pleasant Valley, NY', + 1845638 => 'New City, NY', + 1845639 => 'New City, NY', + 1845647 => 'Ellenville, NY', + 1845651 => 'Florida, NY', + 1845676 => 'Andes, NY', + 1845677 => 'Millbrook, NY', + 1845679 => 'Woodstock, NY', + 1845687 => 'Stone Ridge, NY', + 1845691 => 'Highland, NY', + 1845692 => 'Middletown, NY', + 1845695 => 'Middletown, NY', + 1845703 => 'Middletown, NY', + 1845708 => 'New City, NY', + 1845724 => 'Poughquag, NY', + 1845733 => 'Bloomingburg, NY', + 1845735 => 'Pearl River, NY', + 1845744 => 'Pine Bush, NY', + 1845753 => 'Sloatsburg, NY', + 1845758 => 'Red Hook, NY', + 1845774 => 'Monroe, NY', + 1845778 => 'Walden, NY', + 1845781 => 'Monroe, NY', + 1845782 => 'Monroe, NY', + 1845783 => 'Monroe, NY', + 1845791 => 'Monticello, NY', + 1845794 => 'Monticello, NY', + 1845795 => 'Milton, NY', + 1845796 => 'Monticello, NY', + 1845831 => 'Beacon, NY', + 1845832 => 'Wingdale, NY', + 1845838 => 'Beacon, NY', + 1845849 => 'Poughkeepsie, NY', + 1845855 => 'Pawling, NY', + 1845856 => 'Port Jervis, NY', + 1845858 => 'Port Jervis, NY', + 1845868 => 'Stanfordville, NY', + 1845876 => 'Rhinebeck, NY', + 1845877 => 'Dover Plains, NY', + 1845878 => 'Patterson, NY', + 1845887 => 'Callicoon, NY', + 1845888 => 'Wurtsboro, NY', + 1845895 => 'Wallkill, NY', + 1845896 => 'Fishkill, NY', + 1845897 => 'Fishkill, NY', + 1845928 => 'Central Valley, NY', + 1845938 => 'West Point, NY', + 1845942 => 'Stony Point, NY', + 1845985 => 'Grahamsville, NY', + 1845986 => 'Warwick, NY', + 1845987 => 'Warwick, NY', + 1845988 => 'Warwick, NY', + 1847 => 'Illinois', + 1847202 => 'Palatine, IL', + 1847205 => 'Northbrook, IL', + 1847214 => 'Elgin, IL', + 1847221 => 'Palatine, IL', + 1847223 => 'Grayslake, IL', + 1847231 => 'Grayslake, IL', + 1847234 => 'Lake Forest, IL', + 1847236 => 'Deerfield, IL', + 1847240 => 'Schaumburg, IL', + 1847249 => 'Waukegan, IL', + 1847251 => 'Wilmette, IL', + 1847256 => 'Wilmette, IL', + 1847266 => 'Highland Park, IL', + 1847272 => 'Northbrook, IL', + 1847277 => 'Barrington, IL', + 1847288 => 'Franklin Park, IL', + 1847289 => 'Elgin, IL', + 1847291 => 'Northbrook, IL', + 1847292 => 'Park Ridge, IL', + 1847294 => 'Des Plaines, IL', + 1847295 => 'Lake Forest, IL', + 1847296 => 'Des Plaines, IL', + 1847297 => 'Des Plaines, IL', + 1847298 => 'Des Plaines, IL', + 1847299 => 'Des Plaines, IL', + 1847301 => 'Schaumburg, IL', + 1847304 => 'Barrington, IL', + 1847316 => 'Evanston, IL', + 1847317 => 'Deerfield, IL', + 1847318 => 'Park Ridge, IL', + 1847328 => 'Evanston, IL', + 1847329 => 'Skokie, IL', + 1847330 => 'Schaumburg, IL', + 1847332 => 'Evanston, IL', + 1847336 => 'Waukegan, IL', + 1847352 => 'Schaumburg, IL', + 1847356 => 'Lake Villa, IL', + 1847358 => 'Palatine, IL', + 1847359 => 'Palatine, IL', + 1847360 => 'Waukegan, IL', + 1847362 => 'Libertyville, IL', + 1847367 => 'Libertyville, IL', + 1847377 => 'Waukegan, IL', + 1847381 => 'Barrington, IL', + 1847382 => 'Barrington, IL', + 1847391 => 'Des Plaines, IL', + 1847395 => 'Antioch, IL', + 1847412 => 'Northbrook, IL', + 1847413 => 'Schaumburg, IL', + 1847424 => 'Evanston, IL', + 1847425 => 'Evanston, IL', + 1847429 => 'Elgin, IL', + 1847432 => 'Highland Park, IL', + 1847433 => 'Highland Park, IL', + 1847438 => 'Lake Zurich, IL', + 1847446 => 'Winnetka, IL', + 1847451 => 'Franklin Park, IL', + 1847455 => 'Franklin Park, IL', + 1847458 => 'Algonquin, IL', + 1847462 => 'Cary, IL', + 1847466 => 'Schaumburg, IL', + 1847468 => 'Elgin, IL', + 1847473 => 'North Chicago, IL', + 1847475 => 'Evanston, IL', + 1847480 => 'Northbrook, IL', + 1847482 => 'Lake Forest, IL', + 1847486 => 'Glenview, IL', + 1847487 => 'Wauconda, IL', + 1847488 => 'Elgin, IL', + 1847491 => 'Evanston, IL', + 1847492 => 'Evanston, IL', + 1847498 => 'Northbrook, IL', + 1847509 => 'Northbrook, IL', + 1847515 => 'Huntley, IL', + 1847516 => 'Cary, IL', + 1847517 => 'Schaumburg, IL', + 1847518 => 'Park Ridge, IL', + 1847519 => 'Schaumburg, IL', + 1847524 => 'Schaumburg, IL', + 1847526 => 'Wauconda, IL', + 1847531 => 'Elgin, IL', + 1847535 => 'Lake Forest, IL', + 1847540 => 'Lake Zurich, IL', + 1847543 => 'Grayslake, IL', + 1847548 => 'Grayslake, IL', + 1847549 => 'Libertyville, IL', + 1847550 => 'Lake Zurich, IL', + 1847559 => 'Northbrook, IL', + 1847562 => 'Northbrook, IL', + 1847564 => 'Northbrook, IL', + 1847566 => 'Mundelein, IL', + 1847568 => 'Skokie, IL', + 1847570 => 'Evanston, IL', + 1847578 => 'North Chicago, IL', + 1847579 => 'Highland Park, IL', + 1847584 => 'Schaumburg, IL', + 1847587 => 'Fox Lake, IL', + 1847588 => 'Niles, IL', + 1847599 => 'Waukegan, IL', + 1847605 => 'Schaumburg, IL', + 1847608 => 'Elgin, IL', + 1847618 => 'Arlington Hts, IL', + 1847619 => 'Schaumburg, IL', + 1847622 => 'Elgin, IL', + 1847623 => 'Waukegan, IL', + 1847625 => 'Waukegan, IL', + 1847635 => 'Des Plaines, IL', + 1847639 => 'Cary, IL', + 1847647 => 'Niles, IL', + 1847657 => 'Glenview, IL', + 1847658 => 'Algonquin, IL', + 1847662 => 'Waukegan, IL', + 1847669 => 'Huntley, IL', + 1847672 => 'Waukegan, IL', + 1847673 => 'Skokie, IL', + 1847674 => 'Skokie, IL', + 1847675 => 'Skokie, IL', + 1847676 => 'Skokie, IL', + 1847677 => 'Skokie, IL', + 1847679 => 'Skokie, IL', + 1847680 => 'Libertyville, IL', + 1847681 => 'Highland Park, IL', + 1847683 => 'Hampshire, IL', + 1847688 => 'North Chicago, IL', + 1847689 => 'North Chicago, IL', + 1847692 => 'Park Ridge, IL', + 1847695 => 'Elgin, IL', + 1847696 => 'Park Ridge, IL', + 1847697 => 'Elgin, IL', + 1847698 => 'Park Ridge, IL', + 1847705 => 'Palatine, IL', + 1847714 => 'Northbrook, IL', + 1847723 => 'Park Ridge, IL', + 1847724 => 'Glenview, IL', + 1847726 => 'Lake Zurich, IL', + 1847729 => 'Glenview, IL', + 1847730 => 'Glenview, IL', + 1847731 => 'Zion, IL', + 1847733 => 'Evanston, IL', + 1847735 => 'Lake Forest, IL', + 1847741 => 'Elgin, IL', + 1847742 => 'Elgin, IL', + 1847746 => 'Zion, IL', + 1847763 => 'Skokie, IL', + 1847776 => 'Palatine, IL', + 1847782 => 'Waukegan, IL', + 1847784 => 'Northfield, IL', + 1847813 => 'Des Plaines, IL', + 1847823 => 'Park Ridge, IL', + 1847824 => 'Des Plaines, IL', + 1847825 => 'Park Ridge, IL', + 1847827 => 'Des Plaines, IL', + 1847831 => 'Highland Park, IL', + 1847832 => 'Glenview, IL', + 1847835 => 'Glencoe, IL', + 1847837 => 'Mundelein, IL', + 1847838 => 'Antioch, IL', + 1847841 => 'Elgin, IL', + 1847842 => 'Barrington, IL', + 1847853 => 'Wilmette, IL', + 1847854 => 'Algonquin, IL', + 1847855 => 'Gurnee, IL', + 1847856 => 'Gurnee, IL', + 1847864 => 'Evanston, IL', + 1847866 => 'Evanston, IL', + 1847869 => 'Evanston, IL', + 1847872 => 'Zion, IL', + 1847888 => 'Elgin, IL', + 1847891 => 'Schaumburg, IL', + 1847895 => 'Schaumburg, IL', + 1847920 => 'Wilmette, IL', + 1847923 => 'Schaumburg, IL', + 1847925 => 'Schaumburg, IL', + 1847926 => 'Highland Park, IL', + 1847931 => 'Elgin, IL', + 1847933 => 'Skokie, IL', + 1847934 => 'Palatine, IL', + 1847940 => 'Deerfield, IL', + 1847945 => 'Deerfield, IL', + 1847948 => 'Deerfield, IL', + 1847949 => 'Mundelein, IL', + 1847963 => 'Palatine, IL', + 1847969 => 'Schaumburg, IL', + 1847970 => 'Mundelein, IL', + 1847973 => 'Fox Lake, IL', + 1847982 => 'Skokie, IL', + 1847985 => 'Schaumburg, IL', + 1847991 => 'Palatine, IL', + 1847995 => 'Schaumburg, IL', + 1847998 => 'Glenview, IL', + 1848 => 'New Jersey', + 1850 => 'Florida', + 1850210 => 'Tallahassee, FL', + 1850215 => 'Panama City, FL', + 1850216 => 'Tallahassee, FL', + 1850219 => 'Tallahassee, FL', + 1850222 => 'Tallahassee, FL', + 1850224 => 'Tallahassee, FL', + 1850227 => 'Port St. Joe, FL', + 1850229 => 'Port St. Joe, FL', + 1850231 => 'Santa Rosa Beach, FL', + 1850232 => 'Pensacola, FL', + 1850243 => 'Fort Walton Bch, FL', + 1850244 => 'Fort Walton Bch, FL', + 1850248 => 'Lynn Haven, FL', + 1850251 => 'Tallahassee, FL', + 1850256 => 'Century, FL', + 1850258 => 'Panama City, FL', + 1850263 => 'Graceville, FL', + 1850265 => 'Lynn Haven, FL', + 1850267 => 'Santa Rosa Beach, FL', + 1850269 => 'Destin, FL', + 1850270 => 'Tallahassee, FL', + 1850271 => 'Lynn Haven, FL', + 1850279 => 'Niceville, FL', + 1850297 => 'Tallahassee, FL', + 1850309 => 'Tallahassee, FL', + 1850325 => 'Tallahassee, FL', + 1850329 => 'Tallahassee, FL', + 1850332 => 'Pensacola, FL', + 1850383 => 'Tallahassee, FL', + 1850385 => 'Tallahassee, FL', + 1850386 => 'Tallahassee, FL', + 1850391 => 'Tallahassee, FL', + 1850398 => 'Crestview, FL', + 1850402 => 'Tallahassee, FL', + 1850416 => 'Pensacola, FL', + 1850421 => 'Tallahassee, FL', + 1850422 => 'Tallahassee, FL', + 1850423 => 'Crestview, FL', + 1850424 => 'Destin, FL', + 1850425 => 'Tallahassee, FL', + 1850429 => 'Pensacola, FL', + 1850431 => 'Tallahassee, FL', + 1850432 => 'Pensacola, FL', + 1850433 => 'Pensacola, FL', + 1850434 => 'Pensacola, FL', + 1850435 => 'Pensacola, FL', + 1850436 => 'Pensacola, FL', + 1850437 => 'Pensacola, FL', + 1850438 => 'Pensacola, FL', + 1850439 => 'Pensacola, FL', + 1850444 => 'Pensacola, FL', + 1850452 => 'Pensacola, FL', + 1850453 => 'Pensacola, FL', + 1850455 => 'Pensacola, FL', + 1850456 => 'Pensacola, FL', + 1850457 => 'Pensacola, FL', + 1850458 => 'Pensacola, FL', + 1850460 => 'Destin, FL', + 1850466 => 'Pensacola, FL', + 1850469 => 'Pensacola, FL', + 1850470 => 'Pensacola, FL', + 1850471 => 'Pensacola, FL', + 1850473 => 'Pensacola, FL', + 1850474 => 'Pensacola, FL', + 1850475 => 'Pensacola, FL', + 1850476 => 'Pensacola, FL', + 1850477 => 'Pensacola, FL', + 1850478 => 'Pensacola, FL', + 1850479 => 'Pensacola, FL', + 1850481 => 'Panama City, FL', + 1850482 => 'Marianna, FL', + 1850484 => 'Pensacola, FL', + 1850488 => 'Tallahassee, FL', + 1850492 => 'Pensacola, FL', + 1850494 => 'Pensacola, FL', + 1850497 => 'Pensacola, FL', + 1850505 => 'Pensacola, FL', + 1850508 => 'Tallahassee, FL', + 1850514 => 'Tallahassee, FL', + 1850522 => 'Panama City, FL', + 1850523 => 'Tallahassee, FL', + 1850526 => 'Marianna, FL', + 1850535 => 'Vernon, FL', + 1850537 => 'Baker, FL', + 1850539 => 'Havana, FL', + 1850545 => 'Tallahassee, FL', + 1850547 => 'Bonifay, FL', + 1850561 => 'Tallahassee, FL', + 1850562 => 'Tallahassee, FL', + 1850574 => 'Tallahassee, FL', + 1850575 => 'Tallahassee, FL', + 1850576 => 'Tallahassee, FL', + 1850577 => 'Tallahassee, FL', + 1850580 => 'Tallahassee, FL', + 1850581 => 'Mary Esther, FL', + 1850584 => 'Perry, FL', + 1850587 => 'Molino, FL', + 1850592 => 'Grand Ridge, FL', + 1850593 => 'Sneads, FL', + 1850595 => 'Pensacola, FL', + 1850597 => 'Tallahassee, FL', + 1850607 => 'Pensacola, FL', + 1850622 => 'Santa Rosa Beach, FL', + 1850623 => 'Milton, FL', + 1850626 => 'Milton, FL', + 1850627 => 'Quincy, FL', + 1850638 => 'Chipley, FL', + 1850639 => 'Wewahitchka, FL', + 1850640 => 'Panama City, FL', + 1850643 => 'Bristol, FL', + 1850644 => 'Tallahassee, FL', + 1850650 => 'Destin, FL', + 1850651 => 'Shalimar, FL', + 1850653 => 'Apalachicola, FL', + 1850654 => 'Destin, FL', + 1850656 => 'Tallahassee, FL', + 1850663 => 'Chattahoochee, FL', + 1850664 => 'Fort Walton Bch, FL', + 1850668 => 'Tallahassee, FL', + 1850670 => 'Eastpoint, FL', + 1850671 => 'Tallahassee, FL', + 1850674 => 'Blountstown, FL', + 1850675 => 'Jay, FL', + 1850678 => 'Niceville, FL', + 1850681 => 'Tallahassee, FL', + 1850682 => 'Crestview, FL', + 1850683 => 'Crestview, FL', + 1850689 => 'Crestview, FL', + 1850696 => 'Pensacola, FL', + 1850697 => 'Carrabelle, FL', + 1850722 => 'Youngstown, FL', + 1850727 => 'Tallahassee, FL', + 1850729 => 'Niceville, FL', + 1850747 => 'Panama City, FL', + 1850763 => 'Panama City, FL', + 1850765 => 'Tallahassee, FL', + 1850769 => 'Panama City, FL', + 1850784 => 'Panama City, FL', + 1850785 => 'Panama City, FL', + 1850835 => 'Freeport, FL', + 1850837 => 'Destin, FL', + 1850838 => 'Perry, FL', + 1850857 => 'Pensacola, FL', + 1850862 => 'Fort Walton Bch, FL', + 1850863 => 'Fort Walton Bch, FL', + 1850864 => 'Fort Walton Bch, FL', + 1850871 => 'Panama City, FL', + 1850872 => 'Panama City, FL', + 1850874 => 'Panama City, FL', + 1850875 => 'Quincy, FL', + 1850877 => 'Tallahassee, FL', + 1850878 => 'Tallahassee, FL', + 1850883 => 'Eglin AFB, FL', + 1850891 => 'Tallahassee, FL', + 1850892 => 'DeFuniak Springs, FL', + 1850893 => 'Tallahassee, FL', + 1850894 => 'Tallahassee, FL', + 1850897 => 'Niceville, FL', + 1850912 => 'Pensacola, FL', + 1850913 => 'Panama City, FL', + 1850914 => 'Panama City, FL', + 1850916 => 'Gulf Breeze, FL', + 1850926 => 'Crawfordville, FL', + 1850932 => 'Gulf Breeze, FL', + 1850934 => 'Gulf Breeze, FL', + 1850936 => 'Navarre, FL', + 1850937 => 'Cantonment, FL', + 1850939 => 'Navarre, FL', + 1850941 => 'Pensacola, FL', + 1850942 => 'Tallahassee, FL', + 1850944 => 'Pensacola, FL', + 1850951 => 'DeFuniak Springs, FL', + 1850968 => 'Cantonment, FL', + 1850969 => 'Pensacola, FL', + 1850973 => 'Madison, FL', + 1850981 => 'Milton, FL', + 1850983 => 'Milton, FL', + 1850994 => 'Milton, FL', + 1850997 => 'Monticello, FL', + 1854 => 'Ohio', + 1856 => 'New Jersey', + 1856205 => 'Vineland, NJ', + 1856216 => 'Cherry Hill, NJ', + 1856218 => 'Sewell, NJ', + 1856222 => 'Mount Laurel, NJ', + 1856223 => 'Mullica Hill, NJ', + 1856225 => 'Camden, NJ', + 1856237 => 'Sicklerville, NJ', + 1856241 => 'Swedesboro, NJ', + 1856273 => 'Mount Laurel, NJ', + 1856293 => 'Millville, NJ', + 1856303 => 'Cinnaminson, NJ', + 1856321 => 'Cherry Hill, NJ', + 1856325 => 'Voorhees Township, NJ', + 1856327 => 'Millville, NJ', + 1856338 => 'Camden, NJ', + 1856342 => 'Camden, NJ', + 1856354 => 'Cherry Hill, NJ', + 1856358 => 'Elmer, NJ', + 1856365 => 'Camden, NJ', + 1856396 => 'Marlton, NJ', + 1856424 => 'Cherry Hill, NJ', + 1856427 => 'Cherry Hill, NJ', + 1856428 => 'Cherry Hill, NJ', + 1856447 => 'Cedarville, NJ', + 1856451 => 'Bridgeton, NJ', + 1856453 => 'Bridgeton, NJ', + 1856455 => 'Bridgeton, NJ', + 1856456 => 'Gloucester City, NJ', + 1856459 => 'Bridgeton, NJ', + 1856467 => 'Swedesboro, NJ', + 1856478 => 'Mullica Hill, NJ', + 1856482 => 'Cherry Hill, NJ', + 1856486 => 'Pennsauken Township, NJ', + 1856489 => 'Cherry Hill, NJ', + 1856507 => 'Vineland, NJ', + 1856541 => 'Camden, NJ', + 1856582 => 'Sewell, NJ', + 1856596 => 'Marlton, NJ', + 1856629 => 'Williamstown, NJ', + 1856641 => 'Vineland, NJ', + 1856665 => 'Pennsauken Township, NJ', + 1856667 => 'Cherry Hill, NJ', + 1856678 => 'Pennsville Township, NJ', + 1856690 => 'Vineland, NJ', + 1856691 => 'Vineland, NJ', + 1856692 => 'Vineland, NJ', + 1856694 => 'Franklinville, NJ', + 1856696 => 'Vineland, NJ', + 1856757 => 'Camden, NJ', + 1856764 => 'Delran, NJ', + 1856765 => 'Millville, NJ', + 1856769 => 'Woodstown, NJ', + 1856770 => 'Voorhees Township, NJ', + 1856772 => 'Voorhees Township, NJ', + 1856779 => 'Maple Shade Township, NJ', + 1856786 => 'Cinnaminson, NJ', + 1856794 => 'Vineland, NJ', + 1856797 => 'Marlton, NJ', + 1856810 => 'Marlton, NJ', + 1856825 => 'Millville, NJ', + 1856829 => 'Cinnaminson, NJ', + 1856857 => 'Cherry Hill, NJ', + 1856863 => 'Glassboro, NJ', + 1856874 => 'Cherry Hill, NJ', + 1856881 => 'Glassboro, NJ', + 1856931 => 'Bellmawr, NJ', + 1856933 => 'Bellmawr, NJ', + 1856935 => 'Salem, NJ', + 1856939 => 'Runnemede, NJ', + 1856963 => 'Camden, NJ', + 1856964 => 'Camden, NJ', + 1856966 => 'Camden, NJ', + 1856968 => 'Camden, NJ', + 1856983 => 'Marlton, NJ', + 1856985 => 'Marlton, NJ', + 1856988 => 'Marlton, NJ', + 1857 => 'Massachusetts', + 1857654 => 'Boston, MA', + 1858 => 'California', + 1858202 => 'San Diego, CA', + 1858268 => 'San Diego, CA', + 1858270 => 'San Diego, CA', + 1858271 => 'San Diego, CA', + 1858272 => 'San Diego, CA', + 1858273 => 'San Diego, CA', + 1858274 => 'San Diego, CA', + 1858277 => 'San Diego, CA', + 1858278 => 'San Diego, CA', + 1858279 => 'San Diego, CA', + 1858292 => 'San Diego, CA', + 1858300 => 'San Diego, CA', + 1858385 => 'San Diego, CA', + 1858391 => 'Poway, CA', + 1858450 => 'San Diego, CA', + 1858451 => 'San Diego, CA', + 1858453 => 'San Diego, CA', + 1858454 => 'La Jolla, CA', + 1858456 => 'La Jolla, CA', + 1858457 => 'San Diego, CA', + 1858458 => 'San Diego, CA', + 1858459 => 'La Jolla, CA', + 1858467 => 'San Diego, CA', + 1858483 => 'San Diego, CA', + 1858484 => 'San Diego, CA', + 1858485 => 'San Diego, CA', + 1858486 => 'Poway, CA', + 1858487 => 'San Diego, CA', + 1858488 => 'San Diego, CA', + 1858490 => 'San Diego, CA', + 1858492 => 'San Diego, CA', + 1858495 => 'San Diego, CA', + 1858496 => 'San Diego, CA', + 1858499 => 'San Diego, CA', + 1858505 => 'San Diego, CA', + 1858513 => 'Poway, CA', + 1858514 => 'San Diego, CA', + 1858521 => 'San Diego, CA', + 1858527 => 'San Diego, CA', + 1858530 => 'San Diego, CA', + 1858534 => 'La Jolla, CA', + 1858535 => 'San Diego, CA', + 1858536 => 'San Diego, CA', + 1858537 => 'San Diego, CA', + 1858538 => 'San Diego, CA', + 1858541 => 'San Diego, CA', + 1858546 => 'San Diego, CA', + 1858547 => 'San Diego, CA', + 1858549 => 'San Diego, CA', + 1858550 => 'San Diego, CA', + 1858551 => 'La Jolla, CA', + 1858552 => 'San Diego, CA', + 1858554 => 'La Jolla, CA', + 1858558 => 'San Diego, CA', + 1858560 => 'San Diego, CA', + 1858565 => 'San Diego, CA', + 1858566 => 'San Diego, CA', + 1858569 => 'San Diego, CA', + 1858571 => 'San Diego, CA', + 1858573 => 'San Diego, CA', + 1858576 => 'San Diego, CA', + 1858578 => 'San Diego, CA', + 1858581 => 'San Diego, CA', + 1858586 => 'San Diego, CA', + 1858587 => 'San Diego, CA', + 1858592 => 'San Diego, CA', + 1858597 => 'San Diego, CA', + 1858605 => 'San Diego, CA', + 1858613 => 'San Diego, CA', + 1858621 => 'San Diego, CA', + 1858622 => 'San Diego, CA', + 1858623 => 'San Diego, CA', + 1858625 => 'San Diego, CA', + 1858638 => 'San Diego, CA', + 1858642 => 'San Diego, CA', + 1858653 => 'San Diego, CA', + 1858668 => 'Poway, CA', + 1858672 => 'San Diego, CA', + 1858673 => 'San Diego, CA', + 1858674 => 'San Diego, CA', + 1858675 => 'San Diego, CA', + 1858676 => 'San Diego, CA', + 1858677 => 'San Diego, CA', + 1858678 => 'San Diego, CA', + 1858679 => 'Poway, CA', + 1858689 => 'San Diego, CA', + 1858693 => 'San Diego, CA', + 1858694 => 'San Diego, CA', + 1858695 => 'San Diego, CA', + 1858715 => 'San Diego, CA', + 1858748 => 'Poway, CA', + 1858756 => 'Rancho Santa Fe, CA', + 1858759 => 'Rancho Santa Fe, CA', + 1858764 => 'San Diego, CA', + 1858780 => 'San Diego, CA', + 1858822 => 'La Jolla, CA', + 1858866 => 'San Diego, CA', + 1858874 => 'San Diego, CA', + 1858939 => 'San Diego, CA', + 1858966 => 'San Diego, CA', + 1859 => 'Kentucky', + 1859212 => 'Florence, KY', + 1859219 => 'Lexington, KY', + 1859223 => 'Lexington, KY', + 1859224 => 'Lexington, KY', + 1859225 => 'Lexington, KY', + 1859226 => 'Lexington, KY', + 1859231 => 'Lexington, KY', + 1859233 => 'Lexington, KY', + 1859234 => 'Cynthiana, KY', + 1859236 => 'Danville, KY', + 1859238 => 'Danville, KY', + 1859239 => 'Danville, KY', + 1859245 => 'Lexington, KY', + 1859246 => 'Lexington, KY', + 1859252 => 'Lexington, KY', + 1859253 => 'Lexington, KY', + 1859254 => 'Lexington, KY', + 1859255 => 'Lexington, KY', + 1859257 => 'Lexington, KY', + 1859258 => 'Lexington, KY', + 1859259 => 'Lexington, KY', + 1859260 => 'Lexington, KY', + 1859263 => 'Lexington, KY', + 1859264 => 'Lexington, KY', + 1859266 => 'Lexington, KY', + 1859268 => 'Lexington, KY', + 1859269 => 'Lexington, KY', + 1859271 => 'Lexington, KY', + 1859272 => 'Lexington, KY', + 1859273 => 'Lexington, KY', + 1859275 => 'Lexington, KY', + 1859276 => 'Lexington, KY', + 1859277 => 'Lexington, KY', + 1859278 => 'Lexington, KY', + 1859281 => 'Lexington, KY', + 1859282 => 'Florence, KY', + 1859283 => 'Florence, KY', + 1859289 => 'Carlisle, KY', + 1859293 => 'Lexington, KY', + 1859294 => 'Lexington, KY', + 1859296 => 'Lexington, KY', + 1859299 => 'Lexington, KY', + 1859301 => 'Edgewood, KY', + 1859309 => 'Lexington, KY', + 1859313 => 'Lexington, KY', + 1859317 => 'Lexington, KY', + 1859323 => 'Lexington, KY', + 1859334 => 'Burlington, KY', + 1859335 => 'Lexington, KY', + 1859336 => 'Springfield, KY', + 1859363 => 'Independence, KY', + 1859368 => 'Lexington, KY', + 1859371 => 'Florence, KY', + 1859373 => 'Lexington, KY', + 1859381 => 'Lexington, KY', + 1859384 => 'Union, KY', + 1859389 => 'Lexington, KY', + 1859448 => 'Alexandria, KY', + 1859455 => 'Lexington, KY', + 1859472 => 'Butler, KY', + 1859485 => 'Walton, KY', + 1859497 => 'Mount Sterling, KY', + 1859498 => 'Mount Sterling, KY', + 1859499 => 'Mount Sterling, KY', + 1859514 => 'Lexington, KY', + 1859523 => 'Lexington, KY', + 1859525 => 'Florence, KY', + 1859543 => 'Lexington, KY', + 1859548 => 'Lancaster, KY', + 1859554 => 'Lexington, KY', + 1859567 => 'Warsaw, KY', + 1859572 => 'Fort Thomas, KY', + 1859586 => 'Burlington, KY', + 1859623 => 'Richmond, KY', + 1859624 => 'Richmond, KY', + 1859625 => 'Richmond, KY', + 1859626 => 'Richmond, KY', + 1859635 => 'Alexandria, KY', + 1859647 => 'Florence, KY', + 1859654 => 'Falmouth, KY', + 1859655 => 'Covington, KY', + 1859689 => 'Hebron, KY', + 1859727 => 'Erlanger, KY', + 1859734 => 'Harrodsburg, KY', + 1859737 => 'Winchester, KY', + 1859744 => 'Winchester, KY', + 1859745 => 'Winchester, KY', + 1859746 => 'Florence, KY', + 1859792 => 'Lancaster, KY', + 1859823 => 'Dry Ridge, KY', + 1859824 => 'Williamstown, KY', + 1859846 => 'Midway, KY', + 1859854 => 'Junction City, KY', + 1859858 => 'Wilmore, KY', + 1859873 => 'Versailles, KY', + 1859879 => 'Versailles, KY', + 1859881 => 'Nicholasville, KY', + 1859885 => 'Nicholasville, KY', + 1859887 => 'Nicholasville, KY', + 1859936 => 'Danville, KY', + 1859967 => 'Lexington, KY', + 1859971 => 'Lexington, KY', + 1859977 => 'Lexington, KY', + 1859983 => 'Lexington, KY', + 1859985 => 'Berea, KY', + 1859986 => 'Berea, KY', + 1859987 => 'Paris, KY', + 1860 => 'Connecticut', + 1860206 => 'Hartford, CT', + 1860210 => 'New Milford, CT', + 1860223 => 'New Britain, CT', + 1860224 => 'New Britain, CT', + 1860225 => 'New Britain, CT', + 1860229 => 'New Britain, CT', + 1860230 => 'Plainfield, CT', + 1860231 => 'West Hartford, CT', + 1860232 => 'West Hartford, CT', + 1860233 => 'West Hartford, CT', + 1860236 => 'West Hartford, CT', + 1860240 => 'Hartford, CT', + 1860241 => 'Hartford, CT', + 1860242 => 'Bloomfield, CT', + 1860243 => 'Bloomfield, CT', + 1860244 => 'Hartford, CT', + 1860246 => 'Hartford, CT', + 1860247 => 'Hartford, CT', + 1860249 => 'Hartford, CT', + 1860253 => 'Enfield, CT', + 1860258 => 'Rocky Hill, CT', + 1860265 => 'Enfield, CT', + 1860267 => 'East Hampton, CT', + 1860274 => 'Watertown, CT', + 1860275 => 'Hartford, CT', + 1860276 => 'Southington, CT', + 1860278 => 'Hartford, CT', + 1860282 => 'East Hartford, CT', + 1860283 => 'Thomaston, CT', + 1860284 => 'Farmington, CT', + 1860285 => 'Windsor, CT', + 1860286 => 'Bloomfield, CT', + 1860290 => 'East Hartford, CT', + 1860291 => 'East Hartford, CT', + 1860293 => 'Hartford, CT', + 1860295 => 'Marlborough, CT', + 1860296 => 'Hartford, CT', + 1860297 => 'Hartford, CT', + 1860298 => 'Windsor, CT', + 1860313 => 'West Hartford, CT', + 1860314 => 'Bristol, CT', + 1860342 => 'Portland, CT', + 1860343 => 'Middletown, CT', + 1860344 => 'Middletown, CT', + 1860346 => 'Middletown, CT', + 1860347 => 'Middletown, CT', + 1860348 => 'New Britain, CT', + 1860349 => 'Durham, CT', + 1860350 => 'New Milford, CT', + 1860354 => 'New Milford, CT', + 1860355 => 'New Milford, CT', + 1860357 => 'New Britain, CT', + 1860358 => 'Middletown, CT', + 1860364 => 'Sharon, CT', + 1860376 => 'Jewett City, CT', + 1860379 => 'Winsted, CT', + 1860388 => 'Old Saybrook, CT', + 1860395 => 'Old Saybrook, CT', + 1860399 => 'Westbrook, CT', + 1860408 => 'Simsbury, CT', + 1860417 => 'Watertown, CT', + 1860423 => 'Willimantic, CT', + 1860426 => 'Southington, CT', + 1860430 => 'Glastonbury, CT', + 1860432 => 'Manchester, CT', + 1860434 => 'Old Lyme, CT', + 1860437 => 'New London, CT', + 1860439 => 'New London, CT', + 1860442 => 'New London, CT', + 1860443 => 'New London, CT', + 1860444 => 'New London, CT', + 1860445 => 'Groton, CT', + 1860446 => 'Groton, CT', + 1860447 => 'New London, CT', + 1860448 => 'Groton, CT', + 1860449 => 'Groton, CT', + 1860450 => 'Willimantic, CT', + 1860464 => 'Gales Ferry, CT', + 1860465 => 'Willimantic, CT', + 1860482 => 'Torrington, CT', + 1860485 => 'Harwinton, CT', + 1860486 => 'Storrs, CT', + 1860489 => 'Torrington, CT', + 1860491 => 'Goshen, CT', + 1860496 => 'Torrington, CT', + 1860510 => 'Old Saybrook, CT', + 1860521 => 'West Hartford, CT', + 1860522 => 'Hartford, CT', + 1860523 => 'West Hartford, CT', + 1860524 => 'Hartford, CT', + 1860525 => 'Hartford, CT', + 1860527 => 'Hartford, CT', + 1860528 => 'East Hartford, CT', + 1860533 => 'Manchester, CT', + 1860535 => 'Stonington, CT', + 1860536 => 'Mystic, CT', + 1860537 => 'Colchester, CT', + 1860542 => 'Norfolk, CT', + 1860545 => 'Hartford, CT', + 1860546 => 'Canterbury, CT', + 1860547 => 'Hartford, CT', + 1860548 => 'Hartford, CT', + 1860549 => 'Hartford, CT', + 1860560 => 'Hartford, CT', + 1860561 => 'West Hartford, CT', + 1860564 => 'Plainfield, CT', + 1860567 => 'Litchfield, CT', + 1860568 => 'East Hartford, CT', + 1860569 => 'East Hartford, CT', + 1860570 => 'West Hartford, CT', + 1860571 => 'Wethersfield, CT', + 1860572 => 'Mystic, CT', + 1860582 => 'Bristol, CT', + 1860583 => 'Bristol, CT', + 1860584 => 'Bristol, CT', + 1860585 => 'Bristol, CT', + 1860586 => 'West Hartford, CT', + 1860589 => 'Bristol, CT', + 1860599 => 'Pawcatuck, CT', + 1860613 => 'Cromwell, CT', + 1860618 => 'Torrington, CT', + 1860620 => 'Southington, CT', + 1860621 => 'Southington, CT', + 1860626 => 'Torrington, CT', + 1860627 => 'Windsor Locks, CT', + 1860628 => 'Southington, CT', + 1860632 => 'Cromwell, CT', + 1860633 => 'Glastonbury, CT', + 1860635 => 'Cromwell, CT', + 1860642 => 'Lebanon, CT', + 1860643 => 'Manchester, CT', + 1860644 => 'South Windsor, CT', + 1860645 => 'Manchester, CT', + 1860646 => 'Manchester, CT', + 1860647 => 'Manchester, CT', + 1860648 => 'South Windsor, CT', + 1860649 => 'Manchester, CT', + 1860651 => 'Simsbury, CT', + 1860652 => 'Glastonbury, CT', + 1860657 => 'Glastonbury, CT', + 1860658 => 'Simsbury, CT', + 1860659 => 'Glastonbury, CT', + 1860663 => 'Killingworth, CT', + 1860664 => 'Clinton, CT', + 1860665 => 'Newington, CT', + 1860666 => 'Newington, CT', + 1860667 => 'Newington, CT', + 1860668 => 'Suffield, CT', + 1860669 => 'Clinton, CT', + 1860674 => 'Farmington, CT', + 1860676 => 'Farmington, CT', + 1860677 => 'Farmington, CT', + 1860678 => 'Farmington, CT', + 1860679 => 'Farmington, CT', + 1860683 => 'Windsor, CT', + 1860684 => 'Stafford Springs, CT', + 1860687 => 'Windsor, CT', + 1860688 => 'Windsor, CT', + 1860693 => 'Canton, CT', + 1860704 => 'Middletown, CT', + 1860714 => 'Hartford, CT', + 1860724 => 'Hartford, CT', + 1860727 => 'Hartford, CT', + 1860728 => 'Hartford, CT', + 1860738 => 'Winsted, CT', + 1860741 => 'Enfield, CT', + 1860742 => 'Coventry, CT', + 1860745 => 'Enfield, CT', + 1860747 => 'Plainville, CT', + 1860749 => 'Enfield, CT', + 1860757 => 'Hartford, CT', + 1860763 => 'Enfield, CT', + 1860767 => 'Essex, CT', + 1860788 => 'Middletown, CT', + 1860793 => 'Plainville, CT', + 1860799 => 'New Milford, CT', + 1860823 => 'Norwich, CT', + 1860824 => 'Canaan, CT', + 1860826 => 'New Britain, CT', + 1860827 => 'New Britain, CT', + 1860828 => 'Berlin, CT', + 1860829 => 'Berlin, CT', + 1860832 => 'New Britain, CT', + 1860844 => 'Granby, CT', + 1860848 => 'Montville, CT', + 1860873 => 'East Haddam, CT', + 1860885 => 'Norwich, CT', + 1860886 => 'Norwich, CT', + 1860887 => 'Norwich, CT', + 1860889 => 'Norwich, CT', + 1860892 => 'Norwich, CT', + 1860927 => 'Kent, CT', + 1860928 => 'Putnam, CT', + 1860945 => 'Watertown, CT', + 1860951 => 'Hartford, CT', + 1860956 => 'Hartford, CT', + 1860963 => 'Putnam, CT', + 1862 => 'New Jersey', + 1862210 => 'Fairfield, NJ', + 1862520 => 'East Orange, NJ', + 1862772 => 'Irvington, NJ', + 1863 => 'Florida', + 1863248 => 'Lakeland, FL', + 1863284 => 'Lakeland, FL', + 1863285 => 'Fort Meade, FL', + 1863291 => 'Winter Haven, FL', + 1863292 => 'Winter Haven, FL', + 1863293 => 'Winter Haven, FL', + 1863294 => 'Winter Haven, FL', + 1863297 => 'Winter Haven, FL', + 1863298 => 'Winter Haven, FL', + 1863299 => 'Winter Haven, FL', + 1863314 => 'Sebring, FL', + 1863318 => 'Winter Haven, FL', + 1863324 => 'Winter Haven, FL', + 1863326 => 'Winter Haven, FL', + 1863357 => 'Okeechobee, FL', + 1863382 => 'Sebring, FL', + 1863385 => 'Sebring, FL', + 1863386 => 'Sebring, FL', + 1863401 => 'Winter Haven, FL', + 1863402 => 'Sebring, FL', + 1863413 => 'Lakeland, FL', + 1863420 => 'Davenport, FL', + 1863421 => 'Haines City, FL', + 1863422 => 'Haines City, FL', + 1863424 => 'Davenport, FL', + 1863425 => 'Mulberry, FL', + 1863452 => 'Avon Park, FL', + 1863453 => 'Avon Park, FL', + 1863465 => 'Lake Placid, FL', + 1863467 => 'Okeechobee, FL', + 1863471 => 'Sebring, FL', + 1863491 => 'Arcadia, FL', + 1863494 => 'Arcadia, FL', + 1863519 => 'Bartow, FL', + 1863533 => 'Bartow, FL', + 1863534 => 'Bartow, FL', + 1863603 => 'Lakeland, FL', + 1863607 => 'Lakeland, FL', + 1863619 => 'Lakeland, FL', + 1863635 => 'Frostproof, FL', + 1863644 => 'Lakeland, FL', + 1863646 => 'Lakeland, FL', + 1863647 => 'Lakeland, FL', + 1863648 => 'Lakeland, FL', + 1863655 => 'Sebring, FL', + 1863665 => 'Lakeland, FL', + 1863666 => 'Lakeland, FL', + 1863667 => 'Lakeland, FL', + 1863674 => 'LaBelle, FL', + 1863675 => 'LaBelle, FL', + 1863676 => 'Lake Wales, FL', + 1863678 => 'Lake Wales, FL', + 1863679 => 'Lake Wales, FL', + 1863680 => 'Lakeland, FL', + 1863682 => 'Lakeland, FL', + 1863683 => 'Lakeland, FL', + 1863686 => 'Lakeland, FL', + 1863687 => 'Lakeland, FL', + 1863688 => 'Lakeland, FL', + 1863699 => 'Lake Placid, FL', + 1863701 => 'Lakeland, FL', + 1863709 => 'Lakeland, FL', + 1863735 => 'Zolfo Springs, FL', + 1863763 => 'Okeechobee, FL', + 1863767 => 'Wauchula, FL', + 1863773 => 'Wauchula, FL', + 1863802 => 'Lakeland, FL', + 1863815 => 'Lakeland, FL', + 1863816 => 'Lakeland, FL', + 1863824 => 'Okeechobee, FL', + 1863853 => 'Lakeland, FL', + 1863858 => 'Lakeland, FL', + 1863859 => 'Lakeland, FL', + 1863875 => 'Winter Haven, FL', + 1863937 => 'Lakeland, FL', + 1863946 => 'Moore Haven, FL', + 1863956 => 'Lake Alfred, FL', + 1863965 => 'Auburndale, FL', + 1863967 => 'Auburndale, FL', + 1863983 => 'Clewiston, FL', + 1863984 => 'Polk City, FL', + 1863993 => 'Arcadia, FL', + 1864 => 'South Carolina', + 1864213 => 'Greenville, SC', + 1864214 => 'Greenville, SC', + 1864220 => 'Greenville, SC', + 1864222 => 'Anderson, SC', + 1864223 => 'Greenwood, SC', + 1864224 => 'Anderson, SC', + 1864225 => 'Anderson, SC', + 1864226 => 'Anderson, SC', + 1864227 => 'Greenwood, SC', + 1864228 => 'Simpsonville, SC', + 1864229 => 'Greenwood, SC', + 1864231 => 'Anderson, SC', + 1864232 => 'Greenville, SC', + 1864233 => 'Greenville, SC', + 1864234 => 'Greenville, SC', + 1864235 => 'Greenville, SC', + 1864236 => 'Greenville, SC', + 1864239 => 'Greenville, SC', + 1864240 => 'Greenville, SC', + 1864241 => 'Greenville, SC', + 1864242 => 'Greenville, SC', + 1864246 => 'Greenville, SC', + 1864250 => 'Greenville, SC', + 1864254 => 'Greenville, SC', + 1864255 => 'Greenville, SC', + 1864260 => 'Anderson, SC', + 1864261 => 'Anderson, SC', + 1864269 => 'Greenville, SC', + 1864271 => 'Greenville, SC', + 1864272 => 'Greenville, SC', + 1864277 => 'Greenville, SC', + 1864281 => 'Greenville, SC', + 1864282 => 'Greenville, SC', + 1864283 => 'Greenville, SC', + 1864284 => 'Greenville, SC', + 1864286 => 'Greenville, SC', + 1864288 => 'Greenville, SC', + 1864289 => 'Greenville, SC', + 1864294 => 'Greenville, SC', + 1864295 => 'Greenville, SC', + 1864296 => 'Anderson, SC', + 1864297 => 'Greenville, SC', + 1864298 => 'Greenville, SC', + 1864299 => 'Greenville, SC', + 1864306 => 'Easley, SC', + 1864327 => 'Spartanburg, SC', + 1864329 => 'Greenville, SC', + 1864331 => 'Greenville, SC', + 1864332 => 'Anderson, SC', + 1864335 => 'Greenville, SC', + 1864338 => 'Belton, SC', + 1864346 => 'Greenville, SC', + 1864348 => 'Iva, SC', + 1864366 => 'Abbeville, SC', + 1864369 => 'Honea Path, SC', + 1864370 => 'Greenville, SC', + 1864373 => 'Greenville, SC', + 1864388 => 'Greenwood, SC', + 1864421 => 'Greenville, SC', + 1864422 => 'Greenville, SC', + 1864427 => 'Union, SC', + 1864429 => 'Union, SC', + 1864433 => 'Duncan, SC', + 1864442 => 'Easley, SC', + 1864445 => 'Saluda, SC', + 1864446 => 'Abbeville, SC', + 1864454 => 'Greenville, SC', + 1864455 => 'Greenville, SC', + 1864456 => 'Ware Shoals, SC', + 1864457 => 'Landrum, SC', + 1864458 => 'Greenville, SC', + 1864461 => 'Chesnee, SC', + 1864463 => 'Cowpens, SC', + 1864467 => 'Greenville, SC', + 1864469 => 'Greer, SC', + 1864472 => 'Inman, SC', + 1864474 => 'Pacolet, SC', + 1864476 => 'Woodruff, SC', + 1864486 => 'Duncan, SC', + 1864487 => 'Gaffney, SC', + 1864488 => 'Gaffney, SC', + 1864489 => 'Gaffney, SC', + 1864503 => 'Spartanburg, SC', + 1864512 => 'Anderson, SC', + 1864527 => 'Greenville, SC', + 1864541 => 'Spartanburg, SC', + 1864542 => 'Spartanburg, SC', + 1864543 => 'Ninety Six, SC', + 1864552 => 'Greenville, SC', + 1864560 => 'Spartanburg, SC', + 1864573 => 'Spartanburg, SC', + 1864574 => 'Spartanburg, SC', + 1864576 => 'Spartanburg, SC', + 1864578 => 'Spartanburg, SC', + 1864579 => 'Spartanburg, SC', + 1864582 => 'Spartanburg, SC', + 1864583 => 'Spartanburg, SC', + 1864585 => 'Spartanburg, SC', + 1864587 => 'Spartanburg, SC', + 1864591 => 'Spartanburg, SC', + 1864592 => 'Inman, SC', + 1864595 => 'Spartanburg, SC', + 1864596 => 'Spartanburg, SC', + 1864627 => 'Greenville, SC', + 1864631 => 'Greenville, SC', + 1864638 => 'Walhalla, SC', + 1864639 => 'Central, SC', + 1864642 => 'Anderson, SC', + 1864646 => 'Pendleton, SC', + 1864647 => 'Westminster, SC', + 1864653 => 'Clemson, SC', + 1864654 => 'Clemson, SC', + 1864674 => 'Jonesville, SC', + 1864675 => 'Greenville, SC', + 1864676 => 'Greenville, SC', + 1864681 => 'Laurens, SC', + 1864682 => 'Laurens, SC', + 1864699 => 'Spartanburg, SC', + 1864716 => 'Anderson, SC', + 1864725 => 'Greenwood, SC', + 1864757 => 'Simpsonville, SC', + 1864760 => 'Anderson, SC', + 1864797 => 'Greer, SC', + 1864801 => 'Greer, SC', + 1864804 => 'Spartanburg, SC', + 1864814 => 'Spartanburg, SC', + 1864833 => 'Clinton, SC', + 1864834 => 'Travelers Rest, SC', + 1864839 => 'Blacksburg, SC', + 1864843 => 'Liberty, SC', + 1864845 => 'Piedmont, SC', + 1864847 => 'Williamston, SC', + 1864848 => 'Greer, SC', + 1864849 => 'Greer, SC', + 1864850 => 'Easley, SC', + 1864852 => 'McCormick, SC', + 1864855 => 'Easley, SC', + 1864859 => 'Easley, SC', + 1864862 => 'Fountain Inn, SC', + 1864868 => 'Six Mile, SC', + 1864876 => 'Gray Court, SC', + 1864877 => 'Greer, SC', + 1864878 => 'Pickens, SC', + 1864879 => 'Greer, SC', + 1864882 => 'Seneca, SC', + 1864885 => 'Seneca, SC', + 1864886 => 'Seneca, SC', + 1864888 => 'Seneca, SC', + 1864898 => 'Pickens, SC', + 1864942 => 'Greenwood, SC', + 1864943 => 'Greenwood, SC', + 1864944 => 'Salem, SC', + 1864947 => 'Pelzer, SC', + 1864962 => 'Simpsonville, SC', + 1864963 => 'Simpsonville, SC', + 1864964 => 'Anderson, SC', + 1864967 => 'Simpsonville, SC', + 1864968 => 'Greer, SC', + 1864984 => 'Laurens, SC', + 1864987 => 'Greenville, SC', + 1864990 => 'Greenville, SC', + 1864991 => 'Greenville, SC', + 1865 => 'Tennessee', + 1865200 => 'Knoxville, TN', + 1865212 => 'Knoxville, TN', + 1865215 => 'Knoxville, TN', + 1865218 => 'Knoxville, TN', + 1865219 => 'Knoxville, TN', + 1865220 => 'Oak Ridge, TN', + 1865233 => 'Maryville, TN', + 1865246 => 'Knoxville, TN', + 1865247 => 'Knoxville, TN', + 1865249 => 'Knoxville, TN', + 1865273 => 'Maryville, TN', + 1865281 => 'Knoxville, TN', + 1865286 => 'Sevierville, TN', + 1865288 => 'Knoxville, TN', + 1865305 => 'Knoxville, TN', + 1865329 => 'Knoxville, TN', + 1865330 => 'Knoxville, TN', + 1865354 => 'Rockwood, TN', + 1865357 => 'Knoxville, TN', + 1865365 => 'Sevierville, TN', + 1865374 => 'Knoxville, TN', + 1865376 => 'Kingston, TN', + 1865379 => 'Maryville, TN', + 1865380 => 'Maryville, TN', + 1865388 => 'Knoxville, TN', + 1865397 => 'Dandridge, TN', + 1865408 => 'Loudon, TN', + 1865425 => 'Oak Ridge, TN', + 1865426 => 'Lake City, TN', + 1865428 => 'Sevierville, TN', + 1865429 => 'Sevierville, TN', + 1865430 => 'Gatlinburg, TN', + 1865435 => 'Oliver Springs, TN', + 1865436 => 'Gatlinburg, TN', + 1865446 => 'Sevierville, TN', + 1865448 => 'Townsend, TN', + 1865450 => 'Knoxville, TN', + 1865453 => 'Sevierville, TN', + 1865457 => 'Clinton, TN', + 1865458 => 'Loudon, TN', + 1865463 => 'Clinton, TN', + 1865470 => 'Knoxville, TN', + 1865471 => 'Jefferson City, TN', + 1865474 => 'Knoxville, TN', + 1865475 => 'Jefferson City, TN', + 1865481 => 'Oak Ridge, TN', + 1865482 => 'Oak Ridge, TN', + 1865483 => 'Oak Ridge, TN', + 1865521 => 'Knoxville, TN', + 1865522 => 'Knoxville, TN', + 1865523 => 'Knoxville, TN', + 1865524 => 'Knoxville, TN', + 1865525 => 'Knoxville, TN', + 1865531 => 'Knoxville, TN', + 1865539 => 'Knoxville, TN', + 1865540 => 'Knoxville, TN', + 1865541 => 'Knoxville, TN', + 1865544 => 'Knoxville, TN', + 1865545 => 'Knoxville, TN', + 1865546 => 'Knoxville, TN', + 1865549 => 'Knoxville, TN', + 1865558 => 'Knoxville, TN', + 1865560 => 'Knoxville, TN', + 1865573 => 'Knoxville, TN', + 1865577 => 'Knoxville, TN', + 1865579 => 'Knoxville, TN', + 1865584 => 'Knoxville, TN', + 1865588 => 'Knoxville, TN', + 1865594 => 'Knoxville, TN', + 1865609 => 'Knoxville, TN', + 1865622 => 'Knoxville, TN', + 1865632 => 'Knoxville, TN', + 1865633 => 'Knoxville, TN', + 1865637 => 'Knoxville, TN', + 1865670 => 'Knoxville, TN', + 1865671 => 'Knoxville, TN', + 1865673 => 'Knoxville, TN', + 1865674 => 'White Pine, TN', + 1865675 => 'Knoxville, TN', + 1865681 => 'Maryville, TN', + 1865686 => 'Knoxville, TN', + 1865687 => 'Knoxville, TN', + 1865688 => 'Knoxville, TN', + 1865689 => 'Knoxville, TN', + 1865690 => 'Knoxville, TN', + 1865691 => 'Knoxville, TN', + 1865692 => 'Knoxville, TN', + 1865693 => 'Knoxville, TN', + 1865694 => 'Knoxville, TN', + 1865717 => 'Kingston, TN', + 1865766 => 'Knoxville, TN', + 1865769 => 'Knoxville, TN', + 1865774 => 'Sevierville, TN', + 1865777 => 'Knoxville, TN', + 1865824 => 'Knoxville, TN', + 1865828 => 'Rutledge, TN', + 1865851 => 'Knoxville, TN', + 1865856 => 'Maryville, TN', + 1865882 => 'Harriman, TN', + 1865908 => 'Sevierville, TN', + 1865909 => 'Knoxville, TN', + 1865922 => 'Knoxville, TN', + 1865925 => 'Knoxville, TN', + 1865938 => 'Powell, TN', + 1865945 => 'Powell, TN', + 1865947 => 'Powell, TN', + 1865951 => 'Knoxville, TN', + 1865966 => 'Knoxville, TN', + 1865971 => 'Knoxville, TN', + 1865974 => 'Knoxville, TN', + 1865977 => 'Maryville, TN', + 1865980 => 'Maryville, TN', + 1865981 => 'Maryville, TN', + 1865982 => 'Maryville, TN', + 1865983 => 'Maryville, TN', + 1865984 => 'Maryville, TN', + 1865986 => 'Lenoir City, TN', + 1865988 => 'Lenoir City, TN', + 1865992 => 'Maynardville, TN', + 1865993 => 'Bean Station, TN', + 1865995 => 'Friendsville, TN', + 1867393 => 'Whitehorse, YT', + 1867456 => 'Whitehorse, YT', + 1867536 => 'Watson Lake Hospital', + 1867633 => 'Whitehorse, YT', + 1867645 => 'Rankin Inlet, NU', + 1867667 => 'Whitehorse, YT', + 1867668 => 'Whitehorse, YT', + 1867669 => 'Yellowknife, NT', + 1867695 => 'Fort Simpson, NT', + 1867766 => 'Yellowknife, NT', + 1867777 => 'Inuvik, NT', + 1867872 => 'Fort Smith, NT', + 1867873 => 'Yellowknife, NT', + 1867874 => 'Hay River, NT', + 1867920 => 'Yellowknife, NT', + 1867979 => 'Iqaluit, NU', + 1867993 => 'Dawson, YT', + 1870 => 'Arkansas', + 1870215 => 'Paragould, AR', + 1870222 => 'McGehee, AR', + 1870226 => 'Warren, AR', + 1870230 => 'Arkadelphia, AR', + 1870231 => 'Camden, AR', + 1870234 => 'Magnolia, AR', + 1870236 => 'Paragould, AR', + 1870238 => 'Wynne, AR', + 1870239 => 'Paragould, AR', + 1870240 => 'Paragould, AR', + 1870245 => 'Arkadelphia, AR', + 1870246 => 'Arkadelphia, AR', + 1870247 => 'White Hall, AR', + 1870251 => 'Batesville, AR', + 1870255 => 'Hazen, AR', + 1870256 => 'Des Arc, AR', + 1870257 => 'Cherokee Village, AR', + 1870265 => 'Lake Village, AR', + 1870268 => 'Jonesboro, AR', + 1870269 => 'Mountain View, AR', + 1870275 => 'Jonesboro, AR', + 1870283 => 'Cave City, AR', + 1870285 => 'Murfreesboro, AR', + 1870295 => 'Marianna, AR', + 1870297 => 'Calico Rock, AR', + 1870307 => 'Batesville, AR', + 1870325 => 'Rison, AR', + 1870336 => 'Jonesboro, AR', + 1870338 => 'Helena, AR', + 1870347 => 'Augusta, AR', + 1870352 => 'Fordyce, AR', + 1870353 => 'Gurdon, AR', + 1870355 => 'Eudora, AR', + 1870356 => 'Glenwood, AR', + 1870358 => 'Marked Tree, AR', + 1870364 => 'Crossett, AR', + 1870365 => 'Harrison, AR', + 1870367 => 'Monticello, AR', + 1870368 => 'Melbourne, AR', + 1870382 => 'Dumas, AR', + 1870423 => 'Berryville, AR', + 1870424 => 'Mountain Home, AR', + 1870425 => 'Mountain Home, AR', + 1870431 => 'Lakeview, AR', + 1870435 => 'Gassville, AR', + 1870436 => 'Lead Hill, AR', + 1870438 => 'Green Forest, AR', + 1870445 => 'Bull Shoals, AR', + 1870446 => 'Jasper, AR', + 1870448 => 'Marshall, AR', + 1870449 => 'Yellville, AR', + 1870453 => 'Flippin, AR', + 1870460 => 'Monticello, AR', + 1870483 => 'Trumann, AR', + 1870492 => 'Mountain Home, AR', + 1870508 => 'Mountain Home, AR', + 1870523 => 'Newport, AR', + 1870532 => 'Blytheville, AR', + 1870533 => 'Stamps, AR', + 1870534 => 'Pine Bluff, AR', + 1870535 => 'Pine Bluff, AR', + 1870536 => 'Pine Bluff, AR', + 1870538 => 'Dermott, AR', + 1870541 => 'Pine Bluff, AR', + 1870542 => 'Foreman, AR', + 1870552 => 'Carlisle, AR', + 1870561 => 'Manila, AR', + 1870563 => 'Osceola, AR', + 1870572 => 'West Helena, AR', + 1870574 => 'Camden, AR', + 1870578 => 'Harrisburg, AR', + 1870584 => 'De Queen, AR', + 1870595 => 'Rector, AR', + 1870598 => 'Piggott, AR', + 1870628 => 'Star City, AR', + 1870630 => 'Forrest City, AR', + 1870633 => 'Forrest City, AR', + 1870642 => 'De Queen, AR', + 1870653 => 'Fouke, AR', + 1870672 => 'Stuttgart, AR', + 1870673 => 'Stuttgart, AR', + 1870698 => 'Batesville, AR', + 1870702 => 'West Memphis, AR', + 1870722 => 'Hope, AR', + 1870725 => 'Smackover, AR', + 1870731 => 'McCrory, AR', + 1870732 => 'West Memphis, AR', + 1870733 => 'West Memphis, AR', + 1870734 => 'Brinkley, AR', + 1870735 => 'West Memphis, AR', + 1870739 => 'Marion, AR', + 1870741 => 'Harrison, AR', + 1870743 => 'Harrison, AR', + 1870747 => 'Clarendon, AR', + 1870762 => 'Blytheville, AR', + 1870763 => 'Blytheville, AR', + 1870772 => 'Texarkana, AR', + 1870773 => 'Texarkana, AR', + 1870774 => 'Texarkana, AR', + 1870777 => 'Hope, AR', + 1870779 => 'Texarkana, AR', + 1870792 => 'Earle, AR', + 1870793 => 'Batesville, AR', + 1870798 => 'Hampton, AR', + 1870802 => 'Jonesboro, AR', + 1870836 => 'Camden, AR', + 1870837 => 'Camden, AR', + 1870845 => 'Nashville, AR', + 1870850 => 'Pine Bluff, AR', + 1870853 => 'Hamburg, AR', + 1870856 => 'Hardy, AR', + 1870857 => 'Corning, AR', + 1870862 => 'El Dorado, AR', + 1870863 => 'El Dorado, AR', + 1870864 => 'El Dorado, AR', + 1870867 => 'Mount Ida, AR', + 1870869 => 'Imboden, AR', + 1870875 => 'El Dorado, AR', + 1870879 => 'Pine Bluff, AR', + 1870881 => 'El Dorado, AR', + 1870886 => 'Walnut Ridge, AR', + 1870887 => 'Prescott, AR', + 1870892 => 'Pocahontas, AR', + 1870895 => 'Salem, AR', + 1870898 => 'Ashdown, AR', + 1870910 => 'Jonesboro, AR', + 1870921 => 'Lewisville, AR', + 1870931 => 'Jonesboro, AR', + 1870932 => 'Jonesboro, AR', + 1870933 => 'Jonesboro, AR', + 1870934 => 'Jonesboro, AR', + 1870935 => 'Jonesboro, AR', + 1870942 => 'Sheridan, AR', + 1870946 => 'DeWitt, AR', + 1870972 => 'Jonesboro, AR', + 1870994 => 'Ash Flat, AR', + 1872 => 'Chicago, IL', + 1873 => 'Quebec', + 1876957 => 'Negril', + 1878 => 'Pennsylvania', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1801.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1801.php deleted file mode 100644 index f214643d3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1801.php +++ /dev/null @@ -1,156 +0,0 @@ - 'Utah', - 1801213 => 'Salt Lake City, UT', - 1801221 => 'Orem, UT', - 1801222 => 'Orem, UT', - 1801224 => 'Orem, UT', - 1801225 => 'Orem, UT', - 1801226 => 'Orem, UT', - 1801227 => 'Orem, UT', - 1801229 => 'Orem, UT', - 1801250 => 'Magna, UT', - 1801257 => 'South State Street, Salt Lake City, UT', - 1801262 => 'Salt Lake City, UT', - 1801263 => 'Salt Lake City, UT', - 1801269 => 'Salt Lake City, UT', - 1801272 => 'Salt Lake City, UT', - 1801274 => 'Salt Lake City, UT', - 1801277 => 'Salt Lake City, UT', - 1801278 => 'Salt Lake City, UT', - 1801280 => 'West Jordan, UT', - 1801282 => 'West Jordan, UT', - 1801288 => 'Salt Lake City, UT', - 1801292 => 'Bountiful, UT', - 1801293 => 'Salt Lake City, UT', - 1801295 => 'Bountiful, UT', - 1801296 => 'Bountiful, UT', - 1801298 => 'Bountiful, UT', - 1801299 => 'Bountiful, UT', - 1801314 => 'Murray, UT', - 1801322 => 'Salt Lake City, UT', - 1801326 => 'Salt Lake City, UT', - 1801328 => 'Salt Lake City, UT', - 1801334 => 'Ogden, UT', - 1801341 => 'Lehi, UT', - 1801350 => 'Salt Lake City, UT', - 1801355 => 'Salt Lake City, UT', - 1801356 => 'Provo, UT', - 1801357 => 'Provo, UT', - 1801359 => 'Salt Lake City, UT', - 1801363 => 'Salt Lake City, UT', - 1801364 => 'Salt Lake City, UT', - 1801370 => 'Provo, UT', - 1801373 => 'Provo, UT', - 1801374 => 'Provo, UT', - 1801375 => 'Provo, UT', - 1801377 => 'Provo, UT', - 1801387 => 'Ogden, UT', - 1801392 => 'Ogden, UT', - 1801393 => 'Ogden, UT', - 1801394 => 'Ogden, UT', - 1801397 => 'Bountiful, UT', - 1801399 => 'Ogden, UT', - 1801408 => 'Salt Lake City, UT', - 1801422 => 'Provo, UT', - 1801423 => 'Salem, UT', - 1801426 => 'Orem, UT', - 1801429 => 'Provo, UT', - 1801433 => 'Salt Lake City, UT', - 1801434 => 'Orem, UT', - 1801444 => 'Layton, UT', - 1801447 => 'Farmington, UT', - 1801451 => 'Farmington, UT', - 1801456 => 'Salt Lake City, UT', - 1801463 => 'Salt Lake City, UT', - 1801465 => 'Payson, UT', - 1801466 => 'Salt Lake City, UT', - 1801467 => 'Salt Lake City, UT', - 1801468 => 'Salt Lake City, UT', - 1801474 => 'Salt Lake City, UT', - 1801475 => 'Ogden, UT', - 1801476 => 'Ogden, UT', - 1801479 => 'Ogden, UT', - 1801483 => 'Salt Lake City, UT', - 1801484 => 'Salt Lake City, UT', - 1801485 => 'Salt Lake City, UT', - 1801486 => 'Salt Lake City, UT', - 1801487 => 'Salt Lake City, UT', - 1801489 => 'Springville, UT', - 1801491 => 'Springville, UT', - 1801492 => 'American Fork, UT', - 1801501 => 'Sandy, UT', - 1801507 => 'Murray, UT', - 1801521 => 'Salt Lake City, UT', - 1801524 => 'Salt Lake City, UT', - 1801531 => 'Salt Lake City, UT', - 1801532 => 'Salt Lake City, UT', - 1801533 => 'Salt Lake City, UT', - 1801535 => 'Salt Lake City, UT', - 1801538 => 'Salt Lake City, UT', - 1801539 => 'Salt Lake City, UT', - 1801544 => 'Layton, UT', - 1801546 => 'Layton, UT', - 1801547 => 'Layton, UT', - 1801555 => 'Windsor North, Orem, UT', - 1801575 => 'Salt Lake City, UT', - 1801578 => 'Salt Lake City, UT', - 1801581 => 'Salt Lake City, UT', - 1801582 => 'Salt Lake City, UT', - 1801583 => 'Salt Lake City, UT', - 1801584 => 'Salt Lake City, UT', - 1801585 => 'Salt Lake City, UT', - 1801587 => 'Salt Lake City, UT', - 1801590 => 'Salt Lake City, UT', - 1801593 => 'Layton, UT', - 1801595 => 'Salt Lake City, UT', - 1801596 => 'Salt Lake City, UT', - 1801621 => 'Ogden, UT', - 1801625 => 'Ogden, UT', - 1801626 => 'Ogden, UT', - 1801627 => 'Ogden, UT', - 1801662 => 'Salt Lake City, UT', - 1801737 => 'Ogden, UT', - 1801745 => 'Eden, UT', - 1801746 => 'Salt Lake City, UT', - 1801754 => 'Santaquin, UT', - 1801756 => 'American Fork, UT', - 1801763 => 'American Fork, UT', - 1801765 => 'Orem, UT', - 1801766 => 'Lehi, UT', - 1801768 => 'Lehi, UT', - 1801771 => 'Layton, UT', - 1801782 => 'Ogden, UT', - 1801785 => 'Pleasant Grove, UT', - 1801786 => 'Ogden, UT', - 1801789 => 'Eagle Mountain, UT', - 1801794 => 'Spanish Fork, UT', - 1801798 => 'Spanish Fork, UT', - 1801802 => 'Orem, UT', - 1801829 => 'Morgan, UT', - 1801852 => 'Provo, UT', - 1801855 => 'American Fork, UT', - 1801886 => 'Salt Lake City, UT', - 1801904 => 'Salt Lake City, UT', - 1801906 => 'Salt Lake City, UT', - 1801908 => 'Salt Lake City, UT', - 1801924 => 'Salt Lake City, UT', - 1801936 => 'North Salt Lake, UT', - 1801942 => 'Salt Lake City, UT', - 1801953 => 'Salt Lake City, UT', - 1801968 => 'Salt Lake City, UT', - 1801972 => 'Salt Lake City, UT', - 1801973 => 'Salt Lake City, UT', - 1801974 => 'Salt Lake City, UT', - 1801975 => 'Salt Lake City, UT', - 1801977 => 'Salt Lake City, UT', - 1801978 => 'Salt Lake City, UT', - 1801983 => 'Salt Lake City, UT', - 1801985 => 'Roy, UT', - 1801990 => 'Salt Lake City, UT', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1802.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1802.php deleted file mode 100644 index 1a381f846..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1802.php +++ /dev/null @@ -1,88 +0,0 @@ - 'Vermont', - 1802222 => 'Bradford, VT', - 1802223 => 'Montpelier, VT', - 1802228 => 'Ludlow, VT', - 1802229 => 'Montpelier, VT', - 1802234 => 'Bethel, VT', - 1802244 => 'Waterbury, VT', - 1802247 => 'Brandon, VT', - 1802251 => 'Brattleboro, VT', - 1802253 => 'Stowe, VT', - 1802254 => 'Brattleboro, VT', - 1802257 => 'Brattleboro, VT', - 1802258 => 'Brattleboro, VT', - 1802265 => 'Fair Haven, VT', - 1802287 => 'Poultney, VT', - 1802295 => 'White River Junction, VT', - 1802296 => 'White River Junction, VT', - 1802333 => 'Fairlee, VT', - 1802334 => 'Newport, VT', - 1802365 => 'Townshend, VT', - 1802371 => 'Berlin, VT', - 1802375 => 'Arlington, VT', - 1802387 => 'Putney, VT', - 1802388 => 'Middlebury, VT', - 1802422 => 'Killington, VT', - 1802425 => 'Charlotte, VT', - 1802434 => 'Richmond, VT', - 1802436 => 'Hartland, VT', - 1802438 => 'West Rutland, VT', - 1802442 => 'Bennington, VT', - 1802446 => 'Wallingford, VT', - 1802447 => 'Bennington, VT', - 1802453 => 'Bristol, VT', - 1802454 => 'Plainfield, VT', - 1802457 => 'Woodstock, VT', - 1802463 => 'Bellows Falls, VT', - 1802464 => 'Wilmington, VT', - 1802468 => 'Castleton, VT', - 1802472 => 'Hardwick, VT', - 1802476 => 'Barre, VT', - 1802479 => 'Barre, VT', - 1802482 => 'Hinesburg, VT', - 1802483 => 'Pittsford, VT', - 1802485 => 'Northfield, VT', - 1802488 => 'Burlington, VT', - 1802496 => 'Waitsfield, VT', - 1802524 => 'St. Albans, VT', - 1802525 => 'Barton, VT', - 1802527 => 'St. Albans, VT', - 1802626 => 'Lyndonville, VT', - 1802635 => 'Johnson, VT', - 1802649 => 'Norwich, VT', - 1802656 => 'Burlington, VT', - 1802674 => 'Windsor, VT', - 1802685 => 'Chelsea, VT', - 1802728 => 'Randolph, VT', - 1802747 => 'Rutland, VT', - 1802748 => 'St. Johnsbury, VT', - 1802754 => 'Orleans, VT', - 1802763 => 'South Royalton, VT', - 1802766 => 'Derby, VT', - 1802767 => 'Rochester, VT', - 1802773 => 'Rutland, VT', - 1802775 => 'Rutland, VT', - 1802786 => 'Rutland, VT', - 1802824 => 'Londonderry, VT', - 1802828 => 'Montpelier, VT', - 1802847 => 'Burlington, VT', - 1802848 => 'Richford, VT', - 1802849 => 'Fairfax, VT', - 1802868 => 'Swanton, VT', - 1802875 => 'Chester, VT', - 1802877 => 'Vergennes, VT', - 1802885 => 'Springfield, VT', - 1802886 => 'Springfield, VT', - 1802888 => 'Morrisville, VT', - 1802893 => 'Milton, VT', - 1802899 => 'Jericho, VT', - 1802933 => 'Enosburg Falls, VT', - 1802985 => 'Shelburne, VT', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1803.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1803.php deleted file mode 100644 index 563c53e1e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1803.php +++ /dev/null @@ -1,174 +0,0 @@ - 'South Carolina', - 1803212 => 'Columbia, SC', - 1803222 => 'Clover, SC', - 1803226 => 'Aiken, SC', - 1803227 => 'Columbia, SC', - 1803245 => 'Bamberg, SC', - 1803247 => 'North, SC', - 1803251 => 'Columbia, SC', - 1803252 => 'Columbia, SC', - 1803253 => 'Columbia, SC', - 1803254 => 'Columbia, SC', - 1803255 => 'Columbia, SC', - 1803256 => 'Columbia, SC', - 1803259 => 'Barnwell, SC', - 1803266 => 'Williston, SC', - 1803275 => 'Johnston, SC', - 1803276 => 'Newberry, SC', - 1803278 => 'North Augusta, SC', - 1803279 => 'North Augusta, SC', - 1803283 => 'Lancaster, SC', - 1803285 => 'Lancaster, SC', - 1803286 => 'Lancaster, SC', - 1803289 => 'Lancaster, SC', - 1803296 => 'Columbia, SC', - 1803321 => 'Newberry, SC', - 1803324 => 'Rock Hill, SC', - 1803325 => 'Rock Hill, SC', - 1803327 => 'Rock Hill, SC', - 1803328 => 'Rock Hill, SC', - 1803329 => 'Rock Hill, SC', - 1803337 => 'Ridgeway, SC', - 1803345 => 'Chapin, SC', - 1803353 => 'Eastover, SC', - 1803356 => 'Lexington, SC', - 1803358 => 'Lexington, SC', - 1803359 => 'Lexington, SC', - 1803364 => 'Prosperity, SC', - 1803366 => 'Rock Hill, SC', - 1803376 => 'Columbia, SC', - 1803377 => 'Chester, SC', - 1803385 => 'Chester, SC', - 1803396 => 'Fort Mill, SC', - 1803405 => 'Newberry, SC', - 1803408 => 'Lugoff, SC', - 1803419 => 'Columbia, SC', - 1803424 => 'Camden, SC', - 1803425 => 'Camden, SC', - 1803428 => 'Bishopville, SC', - 1803432 => 'Camden, SC', - 1803433 => 'Manning, SC', - 1803434 => 'Columbia, SC', - 1803435 => 'Manning, SC', - 1803436 => 'Sumter, SC', - 1803438 => 'Lugoff, SC', - 1803454 => 'Columbia, SC', - 1803461 => 'Columbia, SC', - 1803462 => 'Columbia, SC', - 1803469 => 'Sumter, SC', - 1803473 => 'Manning, SC', - 1803475 => 'Kershaw, SC', - 1803478 => 'Summerton, SC', - 1803481 => 'Sumter, SC', - 1803482 => 'Great Falls, SC', - 1803484 => 'Bishopville, SC', - 1803492 => 'Eutawville, SC', - 1803494 => 'Sumter, SC', - 1803496 => 'Holly Hill, SC', - 1803520 => 'Lexington, SC', - 1803531 => 'Orangeburg, SC', - 1803532 => 'Batesburg-Leesville, SC', - 1803533 => 'Orangeburg, SC', - 1803534 => 'Orangeburg, SC', - 1803535 => 'Orangeburg, SC', - 1803536 => 'Orangeburg, SC', - 1803541 => 'Barnwell, SC', - 1803547 => 'Fort Mill, SC', - 1803548 => 'Fort Mill, SC', - 1803564 => 'Wagener, SC', - 1803568 => 'Swansea, SC', - 1803581 => 'Chester, SC', - 1803584 => 'Allendale, SC', - 1803625 => 'Estill, SC', - 1803628 => 'York, SC', - 1803632 => 'Fairfax, SC', - 1803635 => 'Winnsboro, SC', - 1803637 => 'Edgefield, SC', - 1803641 => 'Aiken, SC', - 1803642 => 'Aiken, SC', - 1803643 => 'Aiken, SC', - 1803644 => 'Aiken, SC', - 1803647 => 'Columbia, SC', - 1803648 => 'Aiken, SC', - 1803649 => 'Aiken, SC', - 1803652 => 'New Ellenton, SC', - 1803661 => 'Columbia, SC', - 1803663 => 'Graniteville, SC', - 1803684 => 'York, SC', - 1803685 => 'Ridge Spring, SC', - 1803691 => 'Columbia, SC', - 1803695 => 'Columbia, SC', - 1803699 => 'Columbia, SC', - 1803708 => 'Columbia, SC', - 1803713 => 'Camden, SC', - 1803714 => 'Columbia, SC', - 1803731 => 'Columbia, SC', - 1803733 => 'Columbia, SC', - 1803734 => 'Columbia, SC', - 1803735 => 'Columbia, SC', - 1803736 => 'Columbia, SC', - 1803738 => 'Columbia, SC', - 1803739 => 'West Columbia, SC', - 1803744 => 'Columbia, SC', - 1803748 => 'Columbia, SC', - 1803750 => 'Columbia, SC', - 1803751 => 'East & Southern, Columbia, SC', - 1803754 => 'Columbia, SC', - 1803755 => 'West Columbia, SC', - 1803765 => 'Columbia, SC', - 1803771 => 'Columbia, SC', - 1803772 => 'Columbia, SC', - 1803773 => 'Sumter, SC', - 1803774 => 'Sumter, SC', - 1803775 => 'Sumter, SC', - 1803776 => 'Columbia, SC', - 1803777 => 'Columbia, SC', - 1803778 => 'Sumter, SC', - 1803779 => 'Columbia, SC', - 1803782 => 'Columbia, SC', - 1803783 => 'Columbia, SC', - 1803786 => 'Columbia, SC', - 1803787 => 'Columbia, SC', - 1803788 => 'Columbia, SC', - 1803789 => 'Richburg, SC', - 1803790 => 'Columbia, SC', - 1803791 => 'West Columbia, SC', - 1803793 => 'Denmark, SC', - 1803794 => 'West Columbia, SC', - 1803796 => 'West Columbia, SC', - 1803798 => 'Columbia, SC', - 1803799 => 'Columbia, SC', - 1803802 => 'Fort Mill, SC', - 1803808 => 'Lexington, SC', - 1803831 => 'Clover, SC', - 1803834 => 'Columbia, SC', - 1803854 => 'Santee, SC', - 1803865 => 'Columbia, SC', - 1803874 => 'St. Matthews, SC', - 1803892 => 'Gilbert, SC', - 1803894 => 'Pelion, SC', - 1803896 => 'Columbia, SC', - 1803898 => 'Columbia, SC', - 1803905 => 'Sumter, SC', - 1803926 => 'West Columbia, SC', - 1803929 => 'Columbia, SC', - 1803932 => 'Chapin, SC', - 1803934 => 'Sumter, SC', - 1803935 => 'Columbia, SC', - 1803936 => 'West Columbia, SC', - 1803939 => 'West Columbia, SC', - 1803943 => 'Hampton, SC', - 1803951 => 'Lexington, SC', - 1803957 => 'Lexington, SC', - 1803980 => 'Rock Hill, SC', - 1803981 => 'Rock Hill, SC', - 1803985 => 'Rock Hill, SC', - 1803996 => 'Lexington, SC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1804.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1804.php deleted file mode 100644 index 9e3f722d7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1804.php +++ /dev/null @@ -1,161 +0,0 @@ - 'Virginia', - 1804222 => 'Richmond, VA', - 1804224 => 'Colonial Beach, VA', - 1804225 => 'Richmond, VA', - 1804226 => 'Richmond, VA', - 1804228 => 'Richmond, VA', - 1804230 => 'Richmond, VA', - 1804231 => 'Richmond, VA', - 1804232 => 'Richmond, VA', - 1804233 => 'Richmond, VA', - 1804236 => 'Richmond, VA', - 1804249 => 'Richmond, VA', - 1804254 => 'Richmond, VA', - 1804257 => 'Richmond, VA', - 1804261 => 'Richmond, VA', - 1804262 => 'Richmond, VA', - 1804264 => 'Richmond, VA', - 1804266 => 'Richmond, VA', - 1804269 => 'Richmond, VA', - 1804271 => 'N Chesterfield, VA', - 1804275 => 'N Chesterfield, VA', - 1804281 => 'Richmond, VA', - 1804282 => 'Richmond, VA', - 1804285 => 'Richmond, VA', - 1804287 => 'Richmond, VA', - 1804288 => 'Richmond, VA', - 1804289 => 'Richmond, VA', - 1804303 => 'Richmond, VA', - 1804308 => 'Richmond, VA', - 1804321 => 'Richmond, VA', - 1804323 => 'Richmond, VA', - 1804329 => 'Richmond, VA', - 1804333 => 'Warsaw, VA', - 1804340 => 'Richmond, VA', - 1804342 => 'Mechanicsville, VA', - 1804343 => 'Richmond, VA', - 1804344 => 'Richmond, VA', - 1804353 => 'Richmond, VA', - 1804354 => 'Richmond, VA', - 1804355 => 'Richmond, VA', - 1804358 => 'Richmond, VA', - 1804359 => 'Richmond, VA', - 1804360 => 'Richmond, VA', - 1804364 => 'Richmond, VA', - 1804365 => 'Ashland, VA', - 1804368 => 'Ashland, VA', - 1804377 => 'Richmond, VA', - 1804378 => 'Midlothian, VA', - 1804379 => 'Midlothian, VA', - 1804423 => 'Midlothian, VA', - 1804435 => 'Kilmarnock, VA', - 1804438 => 'Irvington, VA', - 1804443 => 'Tappahannock, VA', - 1804447 => 'Richmond, VA', - 1804448 => 'Ruther Glen, VA', - 1804452 => 'Hopewell, VA', - 1804458 => 'Hopewell, VA', - 1804462 => 'Lancaster, VA', - 1804469 => 'Dinwiddie, VA', - 1804477 => 'Richmond, VA', - 1804492 => 'Cumberland, VA', - 1804493 => 'Montross, VA', - 1804501 => 'Richmond, VA', - 1804504 => 'Colonial Heights, VA', - 1804515 => 'Richmond, VA', - 1804520 => 'Colonial Heights, VA', - 1804521 => 'Richmond, VA', - 1804524 => 'Colonial Heights, VA', - 1804526 => 'Colonial Heights, VA', - 1804529 => 'Callao, VA', - 1804530 => 'Chester, VA', - 1804541 => 'Hopewell, VA', - 1804545 => 'Richmond, VA', - 1804550 => 'Ashland, VA', - 1804553 => 'Richmond, VA', - 1804556 => 'Goochland, VA', - 1804559 => 'Mechanicsville, VA', - 1804561 => 'Amelia Court Hse, VA', - 1804562 => 'Richmond, VA', - 1804569 => 'Mechanicsville, VA', - 1804580 => 'Heathsville, VA', - 1804598 => 'Powhatan, VA', - 1804608 => 'Midlothian, VA', - 1804612 => 'Richmond, VA', - 1804622 => 'Richmond, VA', - 1804628 => 'Richmond, VA', - 1804633 => 'Bowling Green, VA', - 1804639 => 'Midlothian, VA', - 1804642 => 'Hayes, VA', - 1804643 => 'Richmond, VA', - 1804644 => 'Richmond, VA', - 1804646 => 'Richmond, VA', - 1804648 => 'Richmond, VA', - 1804649 => 'Richmond, VA', - 1804658 => 'Richmond, VA', - 1804672 => 'Richmond, VA', - 1804673 => 'Richmond, VA', - 1804675 => 'Richmond, VA', - 1804693 => 'Gloucester Courthouse, VA', - 1804694 => 'Gloucester Courthouse, VA', - 1804695 => 'Gloucester Courthouse, VA', - 1804697 => 'Richmond, VA', - 1804698 => 'Richmond, VA', - 1804706 => 'Chester, VA', - 1804716 => 'Richmond, VA', - 1804717 => 'Chester, VA', - 1804722 => 'Petersburg, VA', - 1804723 => 'Mechanicsville, VA', - 1804725 => 'Mathews, VA', - 1804726 => 'Richmond, VA', - 1804727 => 'Glen Allen, VA', - 1804730 => 'Mechanicsville, VA', - 1804732 => 'Petersburg, VA', - 1804733 => 'Petersburg, VA', - 1804734 => 'Fort Lee, VA', - 1804739 => 'Midlothian, VA', - 1804740 => 'Richmond, VA', - 1804741 => 'Richmond, VA', - 1804743 => 'N Chesterfield, VA', - 1804744 => 'Midlothian, VA', - 1804746 => 'Mechanicsville, VA', - 1804748 => 'Chester, VA', - 1804749 => 'Rockville, VA', - 1804750 => 'Richmond, VA', - 1804751 => 'Chester, VA', - 1804752 => 'Ashland, VA', - 1804754 => 'Richmond, VA', - 1804755 => 'Richmond, VA', - 1804763 => 'Midlothian, VA', - 1804764 => 'Mechanicsville, VA', - 1804767 => 'Richmond, VA', - 1804768 => 'Chester, VA', - 1804771 => 'Richmond, VA', - 1804775 => 'Richmond, VA', - 1804776 => 'Deltaville, VA', - 1804780 => 'Richmond, VA', - 1804783 => 'Richmond, VA', - 1804786 => 'Richmond, VA', - 1804788 => 'Richmond, VA', - 1804794 => 'Midlothian, VA', - 1804795 => 'Richmond, VA', - 1804796 => 'Chester, VA', - 1804798 => 'Ashland, VA', - 1804828 => 'Richmond, VA', - 1804829 => 'Charles City, VA', - 1804834 => 'Waverly, VA', - 1804843 => 'West Point, VA', - 1804861 => 'Petersburg, VA', - 1804862 => 'Petersburg, VA', - 1804863 => 'Petersburg, VA', - 1804864 => 'Richmond, VA', - 1804883 => 'Montpelier, VA', - 1804932 => 'Quinton, VA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1805.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1805.php deleted file mode 100644 index f26c4e6f5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1805.php +++ /dev/null @@ -1,177 +0,0 @@ - 'California', - 1805226 => 'Paso Robles, CA', - 1805227 => 'Paso Robles, CA', - 1805237 => 'Paso Robles, CA', - 1805238 => 'Paso Robles, CA', - 1805239 => 'Paso Robles, CA', - 1805240 => 'Oxnard, CA', - 1805241 => 'Thousand Oaks, CA', - 1805278 => 'Oxnard, CA', - 1805306 => 'Simi Valley, CA', - 1805339 => 'Ventura, CA', - 1805343 => 'Guadalupe, CA', - 1805346 => 'Santa Maria, CA', - 1805347 => 'Santa Maria, CA', - 1805348 => 'Santa Maria, CA', - 1805349 => 'Santa Maria, CA', - 1805370 => 'Thousand Oaks, CA', - 1805373 => 'Thousand Oaks, CA', - 1805374 => 'Thousand Oaks, CA', - 1805375 => 'Newbury Park, CA', - 1805376 => 'Newbury Park, CA', - 1805379 => 'Thousand Oaks, CA', - 1805382 => 'Oxnard, CA', - 1805383 => 'Camarillo, CA', - 1805384 => 'Camarillo, CA', - 1805385 => 'Oxnard, CA', - 1805386 => 'Somis, CA', - 1805388 => 'Camarillo, CA', - 1805389 => 'Camarillo, CA', - 1805434 => 'Templeton, CA', - 1805438 => 'Santa Margarita, CA', - 1805439 => 'San Luis Obispo, CA', - 1805445 => 'Camarillo, CA', - 1805460 => 'Atascadero, CA', - 1805461 => 'Atascadero, CA', - 1805462 => 'Atascadero, CA', - 1805464 => 'Atascadero, CA', - 1805466 => 'Atascadero, CA', - 1805467 => 'San Miguel, CA', - 1805468 => 'Atascadero, CA', - 1805473 => 'Arroyo Grande, CA', - 1805474 => 'Arroyo Grande, CA', - 1805477 => 'Ventura, CA', - 1805480 => 'Newbury Park, CA', - 1805481 => 'Arroyo Grande, CA', - 1805482 => 'Camarillo, CA', - 1805483 => 'Oxnard, CA', - 1805484 => 'Camarillo, CA', - 1805485 => 'Oxnard, CA', - 1805486 => 'Oxnard, CA', - 1805487 => 'Oxnard, CA', - 1805488 => 'Oxnard, CA', - 1805489 => 'Arroyo Grande, CA', - 1805492 => 'Thousand Oaks, CA', - 1805493 => 'Thousand Oaks, CA', - 1805494 => 'Thousand Oaks, CA', - 1805495 => 'Thousand Oaks, CA', - 1805496 => 'Thousand Oaks, CA', - 1805497 => 'Thousand Oaks, CA', - 1805498 => 'Newbury Park, CA', - 1805499 => 'Newbury Park, CA', - 1805520 => 'Simi Valley, CA', - 1805522 => 'Simi Valley, CA', - 1805523 => 'Moorpark, CA', - 1805524 => 'Fillmore, CA', - 1805525 => 'Santa Paula, CA', - 1805526 => 'Simi Valley, CA', - 1805527 => 'Simi Valley, CA', - 1805528 => 'Los Osos, CA', - 1805529 => 'Moorpark, CA', - 1805531 => 'Moorpark, CA', - 1805532 => 'Moorpark, CA', - 1805534 => 'Los Osos, CA', - 1805540 => 'San Luis Obispo, CA', - 1805541 => 'San Luis Obispo, CA', - 1805542 => 'San Luis Obispo, CA', - 1805543 => 'San Luis Obispo, CA', - 1805544 => 'San Luis Obispo, CA', - 1805545 => 'San Luis Obispo, CA', - 1805546 => 'San Luis Obispo, CA', - 1805547 => 'San Luis Obispo, CA', - 1805549 => 'San Luis Obispo, CA', - 1805557 => 'Thousand Oaks, CA', - 1805560 => 'Santa Barbara, CA', - 1805563 => 'Santa Barbara, CA', - 1805564 => 'Santa Barbara, CA', - 1805565 => 'Santa Barbara, CA', - 1805566 => 'Carpinteria, CA', - 1805568 => 'Santa Barbara, CA', - 1805569 => 'Santa Barbara, CA', - 1805577 => 'Simi Valley, CA', - 1805578 => 'Simi Valley, CA', - 1805579 => 'Simi Valley, CA', - 1805581 => 'Simi Valley, CA', - 1805582 => 'Simi Valley, CA', - 1805583 => 'Simi Valley, CA', - 1805584 => 'Simi Valley, CA', - 1805595 => 'San Luis Obispo, CA', - 1805604 => 'Oxnard, CA', - 1805610 => 'Paso Robles, CA', - 1805614 => 'Santa Maria, CA', - 1805639 => 'Ventura, CA', - 1805640 => 'Ojai, CA', - 1805641 => 'Ventura, CA', - 1805642 => 'Ventura, CA', - 1805643 => 'Ventura, CA', - 1805644 => 'Ventura, CA', - 1805646 => 'Ojai, CA', - 1805647 => 'Ventura, CA', - 1805648 => 'Ventura, CA', - 1805649 => 'Oak View, CA', - 1805650 => 'Ventura, CA', - 1805652 => 'Ventura, CA', - 1805653 => 'Ventura, CA', - 1805654 => 'Ventura, CA', - 1805656 => 'Ventura, CA', - 1805658 => 'Ventura, CA', - 1805659 => 'Ventura, CA', - 1805676 => 'Ventura, CA', - 1805681 => 'Santa Barbara, CA', - 1805682 => 'Santa Barbara, CA', - 1805683 => 'Santa Barbara, CA', - 1805684 => 'Carpinteria, CA', - 1805685 => 'Goleta, CA', - 1805687 => 'Santa Barbara, CA', - 1805692 => 'Santa Barbara, CA', - 1805730 => 'Santa Barbara, CA', - 1805733 => 'Lompoc, CA', - 1805735 => 'Lompoc, CA', - 1805736 => 'Lompoc, CA', - 1805737 => 'Lompoc, CA', - 1805739 => 'Santa Maria, CA', - 1805771 => 'Morro Bay, CA', - 1805772 => 'Morro Bay, CA', - 1805773 => 'Pismo Beach, CA', - 1805777 => 'Thousand Oaks, CA', - 1805781 => 'San Luis Obispo, CA', - 1805782 => 'San Luis Obispo, CA', - 1805783 => 'San Luis Obispo, CA', - 1805845 => 'Santa Barbara, CA', - 1805884 => 'Santa Barbara, CA', - 1805898 => 'Santa Barbara, CA', - 1805899 => 'Santa Barbara, CA', - 1805922 => 'Santa Maria, CA', - 1805925 => 'Santa Maria, CA', - 1805927 => 'Cambria, CA', - 1805928 => 'Santa Maria, CA', - 1805929 => 'Nipomo, CA', - 1805933 => 'Santa Paula, CA', - 1805934 => 'Santa Maria, CA', - 1805937 => 'Santa Maria, CA', - 1805938 => 'Santa Maria, CA', - 1805955 => 'Simi Valley, CA', - 1805962 => 'Santa Barbara, CA', - 1805963 => 'Santa Barbara, CA', - 1805964 => 'Santa Barbara, CA', - 1805965 => 'Santa Barbara, CA', - 1805966 => 'Santa Barbara, CA', - 1805967 => 'Santa Barbara, CA', - 1805968 => 'Goleta, CA', - 1805969 => 'Santa Barbara, CA', - 1805981 => 'Oxnard, CA', - 1805983 => 'Oxnard, CA', - 1805984 => 'Oxnard, CA', - 1805985 => 'Oxnard, CA', - 1805986 => 'Oxnard, CA', - 1805987 => 'Camarillo, CA', - 1805988 => 'Oxnard, CA', - 1805995 => 'Cayucos, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1806.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1806.php deleted file mode 100644 index 15f10a95b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1806.php +++ /dev/null @@ -1,119 +0,0 @@ - 'Texas', - 1806212 => 'Amarillo, TX', - 1806220 => 'Amarillo, TX', - 1806236 => 'Amarillo, TX', - 1806244 => 'Dalhart, TX', - 1806249 => 'Dalhart, TX', - 1806250 => 'Friona, TX', - 1806256 => 'Shamrock, TX', - 1806259 => 'Memphis, TX', - 1806266 => 'Morton, TX', - 1806272 => 'Muleshoe, TX', - 1806273 => 'Borger, TX', - 1806274 => 'Borger, TX', - 1806291 => 'Plainview, TX', - 1806293 => 'Plainview, TX', - 1806296 => 'Plainview, TX', - 1806318 => 'Amarillo, TX', - 1806322 => 'Amarillo, TX', - 1806323 => 'Canadian, TX', - 1806331 => 'Amarillo, TX', - 1806335 => 'Amarillo, TX', - 1806342 => 'Amarillo, TX', - 1806350 => 'Amarillo, TX', - 1806351 => 'Amarillo, TX', - 1806352 => 'Amarillo, TX', - 1806353 => 'Amarillo, TX', - 1806354 => 'Amarillo, TX', - 1806355 => 'Amarillo, TX', - 1806356 => 'Amarillo, TX', - 1806358 => 'Amarillo, TX', - 1806359 => 'Amarillo, TX', - 1806363 => 'Hereford, TX', - 1806364 => 'Hereford, TX', - 1806367 => 'Amarillo, TX', - 1806368 => 'Lubbock, TX', - 1806371 => 'Amarillo, TX', - 1806372 => 'Amarillo, TX', - 1806373 => 'Amarillo, TX', - 1806374 => 'Amarillo, TX', - 1806376 => 'Amarillo, TX', - 1806378 => 'Amarillo, TX', - 1806379 => 'Amarillo, TX', - 1806381 => 'Amarillo, TX', - 1806383 => 'Amarillo, TX', - 1806385 => 'Littlefield, TX', - 1806418 => 'Amarillo, TX', - 1806433 => 'Amarillo, TX', - 1806435 => 'Perryton, TX', - 1806447 => 'Wellington, TX', - 1806456 => 'Plains, TX', - 1806463 => 'Amarillo, TX', - 1806467 => 'Amarillo, TX', - 1806468 => 'Amarillo, TX', - 1806495 => 'Post, TX', - 1806535 => 'Lubbock, TX', - 1806537 => 'Panhandle, TX', - 1806553 => 'Amarillo, TX', - 1806576 => 'Amarillo, TX', - 1806592 => 'Denver City, TX', - 1806622 => 'Amarillo, TX', - 1806637 => 'Brownfield, TX', - 1806647 => 'Dimmitt, TX', - 1806652 => 'Lockney, TX', - 1806655 => 'Canyon, TX', - 1806659 => 'Spearman, TX', - 1806665 => 'Pampa, TX', - 1806669 => 'Pampa, TX', - 1806675 => 'Crosbyton, TX', - 1806677 => 'Amarillo, TX', - 1806687 => 'Lubbock, TX', - 1806698 => 'Lubbock, TX', - 1806722 => 'Lubbock, TX', - 1806725 => 'Lubbock, TX', - 1806741 => 'Lubbock, TX', - 1806743 => 'Lubbock, TX', - 1806744 => 'Lubbock, TX', - 1806745 => 'Lubbock, TX', - 1806747 => 'Lubbock, TX', - 1806748 => 'Lubbock, TX', - 1806749 => 'Lubbock, TX', - 1806762 => 'Lubbock, TX', - 1806763 => 'Lubbock, TX', - 1806765 => 'Lubbock, TX', - 1806766 => 'Lubbock, TX', - 1806771 => 'Lubbock, TX', - 1806775 => 'Lubbock, TX', - 1806780 => 'Lubbock, TX', - 1806783 => 'Lubbock, TX', - 1806785 => 'Lubbock, TX', - 1806788 => 'Lubbock, TX', - 1806791 => 'Lubbock, TX', - 1806792 => 'Lubbock, TX', - 1806793 => 'Lubbock, TX', - 1806794 => 'Lubbock, TX', - 1806795 => 'Lubbock, TX', - 1806796 => 'Lubbock, TX', - 1806797 => 'Lubbock, TX', - 1806798 => 'Lubbock, TX', - 1806799 => 'Lubbock, TX', - 1806826 => 'Wheeler, TX', - 1806828 => 'Slaton, TX', - 1806863 => 'Lubbock, TX', - 1806866 => 'Wolfforth, TX', - 1806872 => 'Lamesa, TX', - 1806874 => 'Clarendon, TX', - 1806894 => 'Levelland, TX', - 1806897 => 'Levelland, TX', - 1806934 => 'Dumas, TX', - 1806935 => 'Dumas, TX', - 1806983 => 'Floydada, TX', - 1806995 => 'Tulia, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1807.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1807.php deleted file mode 100644 index 2c90730ad..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1807.php +++ /dev/null @@ -1,38 +0,0 @@ - 'Ontario', - 1807223 => 'Dryden, ON', - 1807229 => 'Marathon, ON', - 1807274 => 'Fort Frances, ON', - 1807285 => 'Thunder Bay, ON', - 1807343 => 'Thunder Bay, ON', - 1807344 => 'Thunder Bay, ON', - 1807345 => 'Thunder Bay, ON', - 1807346 => 'Thunder Bay, ON', - 1807467 => 'Kenora, ON', - 1807468 => 'Kenora, ON', - 1807473 => 'Thunder Bay, ON', - 1807475 => 'Thunder Bay, ON', - 1807548 => 'Kenora, ON', - 1807577 => 'Thunder Bay, ON', - 1807597 => 'Atikokan, ON', - 1807622 => 'Thunder Bay, ON', - 1807623 => 'Thunder Bay, ON', - 1807626 => 'Thunder Bay, ON', - 1807683 => 'Thunder Bay, ON', - 1807727 => 'Red Lake, ON', - 1807737 => 'Sioux Lookout, ON', - 1807767 => 'Thunder Bay, ON', - 1807768 => 'Thunder Bay, ON', - 1807854 => 'Geraldton, ON', - 1807876 => 'Longlac, ON', - 1807887 => 'Nipigon, ON', - 1807934 => 'Ignace, ON', - 1807937 => 'Oxdrift, ON', - 1807939 => 'Thunder Bay, ON', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1808.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1808.php deleted file mode 100644 index 21a20d56f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1808.php +++ /dev/null @@ -1,181 +0,0 @@ - 'Hawaii', - 1808233 => 'Kaneohe, HI', - 1808234 => 'Kaneohe, HI', - 1808235 => 'Kaneohe, HI', - 1808236 => 'Kaneohe, HI', - 1808239 => 'Kaneohe, HI', - 1808241 => 'Lihue, HI', - 1808242 => 'Wailuku, HI', - 1808243 => 'Wailuku, HI', - 1808244 => 'Wailuku, HI', - 1808245 => 'Lihue, HI', - 1808246 => 'Lihue, HI', - 1808247 => 'Kaneohe, HI', - 1808248 => 'Hāna, HI', - 1808249 => 'Wailuku, HI', - 1808254 => 'Kailua, HI', - 1808259 => 'Waimanalo, HI', - 1808261 => 'Kailua, HI', - 1808262 => 'Kailua, HI', - 1808263 => 'Kailua, HI', - 1808323 => 'Kealakekua, HI', - 1808325 => 'Kailua-Kona, HI', - 1808326 => 'Kailua-Kona, HI', - 1808327 => 'Kailua-Kona, HI', - 1808328 => 'Captain Cook, HI', - 1808329 => 'Kailua-Kona, HI', - 1808331 => 'Kailua-Kona, HI', - 1808332 => 'Kalaheo, HI', - 1808334 => 'Kailua-Kona, HI', - 1808335 => 'Hanapepe, HI', - 1808338 => 'Waimea, HI', - 1808373 => 'Honolulu, HI', - 1808377 => 'Honolulu, HI', - 1808394 => 'Honolulu, HI', - 1808395 => 'Honolulu, HI', - 1808396 => 'Honolulu, HI', - 1808422 => 'Honolulu, HI', - 1808423 => 'Honolulu, HI', - 1808432 => 'Honolulu, HI', - 1808433 => 'Honolulu, HI', - 1808454 => 'Pearl City, HI', - 1808455 => 'Pearl City, HI', - 1808456 => 'Pearl City, HI', - 1808483 => 'Aiea, HI', - 1808484 => 'Aiea, HI', - 1808485 => 'Aiea, HI', - 1808486 => 'Aiea, HI', - 1808487 => 'Aiea, HI', - 1808488 => 'Aiea, HI', - 1808521 => 'Honolulu, HI', - 1808522 => 'Honolulu, HI', - 1808523 => 'Honolulu, HI', - 1808524 => 'Honolulu, HI', - 1808526 => 'Honolulu, HI', - 1808528 => 'Honolulu, HI', - 1808531 => 'Honolulu, HI', - 1808532 => 'Honolulu, HI', - 1808533 => 'Honolulu, HI', - 1808535 => 'Honolulu, HI', - 1808536 => 'Honolulu, HI', - 1808537 => 'Honolulu, HI', - 1808538 => 'Honolulu, HI', - 1808539 => 'Honolulu, HI', - 1808545 => 'Honolulu, HI', - 1808547 => 'Honolulu, HI', - 1808548 => 'Honolulu, HI', - 1808550 => 'Honolulu, HI', - 1808553 => 'Kaunakakai, HI', - 1808565 => 'Lanai City, HI', - 1808572 => 'Makawao, HI', - 1808573 => 'Makawao, HI', - 1808575 => 'Haiku, HI', - 1808579 => 'Paia, HI', - 1808585 => 'Honolulu, HI', - 1808586 => 'Honolulu, HI', - 1808587 => 'Honolulu, HI', - 1808589 => 'Honolulu, HI', - 1808591 => 'Honolulu, HI', - 1808593 => 'Honolulu, HI', - 1808595 => 'Honolulu, HI', - 1808596 => 'Honolulu, HI', - 1808597 => 'Honolulu, HI', - 1808599 => 'Honolulu, HI', - 1808621 => 'Wahiawā, HI', - 1808622 => 'Wahiawā, HI', - 1808623 => 'Mililani, HI', - 1808625 => 'Mililani, HI', - 1808627 => 'Mililani, HI', - 1808637 => 'Haleiwa, HI', - 1808638 => 'Haleiwa, HI', - 1808661 => 'Lahaina, HI', - 1808662 => 'Lahaina, HI', - 1808667 => 'Lahaina, HI', - 1808668 => 'Waianae, HI', - 1808669 => 'Lahaina, HI', - 1808671 => 'Waipahu, HI', - 1808672 => 'Kapolei, HI', - 1808674 => 'Kapolei, HI', - 1808676 => 'Waipahu, HI', - 1808677 => 'Waipahu, HI', - 1808678 => 'Waipahu, HI', - 1808682 => 'Kapolei, HI', - 1808689 => 'Ewa Beach, HI', - 1808696 => 'Waianae, HI', - 1808732 => 'Honolulu, HI', - 1808733 => 'Honolulu, HI', - 1808734 => 'Honolulu, HI', - 1808735 => 'Honolulu, HI', - 1808737 => 'Honolulu, HI', - 1808739 => 'Honolulu, HI', - 1808742 => 'Koloa, HI', - 1808775 => 'Honokaa, HI', - 1808791 => 'Honolulu, HI', - 1808792 => 'Honolulu, HI', - 1808821 => 'Kapaa, HI', - 1808822 => 'Kapaa, HI', - 1808823 => 'Kapaa, HI', - 1808826 => 'Hanalei, HI', - 1808828 => 'Kilauea, HI', - 1808832 => 'Honolulu, HI', - 1808833 => 'Honolulu, HI', - 1808834 => 'Honolulu, HI', - 1808836 => 'Honolulu, HI', - 1808839 => 'Honolulu, HI', - 1808841 => 'Honolulu, HI', - 1808842 => 'Honolulu, HI', - 1808843 => 'Honolulu, HI', - 1808845 => 'Honolulu, HI', - 1808847 => 'Honolulu, HI', - 1808848 => 'Honolulu, HI', - 1808871 => 'Kahului, HI', - 1808873 => 'Kahului, HI', - 1808874 => 'Kihei, HI', - 1808875 => 'Kihei, HI', - 1808877 => 'Kahului, HI', - 1808878 => 'Kula, HI', - 1808879 => 'Kihei, HI', - 1808883 => 'Waikoloa Village, HI', - 1808885 => 'Waimea, HI', - 1808886 => 'Waikoloa Village, HI', - 1808887 => 'Waimea, HI', - 1808889 => 'Kapaau, HI', - 1808891 => 'Kihei, HI', - 1808921 => 'Honolulu, HI', - 1808922 => 'Honolulu, HI', - 1808923 => 'Honolulu, HI', - 1808924 => 'Honolulu, HI', - 1808926 => 'Honolulu, HI', - 1808929 => 'Naalehu, HI', - 1808933 => 'Hilo, HI', - 1808934 => 'Hilo, HI', - 1808935 => 'Hilo, HI', - 1808941 => 'Honolulu, HI', - 1808942 => 'Honolulu, HI', - 1808943 => 'Honolulu, HI', - 1808944 => 'Honolulu, HI', - 1808945 => 'Honolulu, HI', - 1808946 => 'Honolulu, HI', - 1808947 => 'Honolulu, HI', - 1808949 => 'Honolulu, HI', - 1808951 => 'Honolulu, HI', - 1808955 => 'Honolulu, HI', - 1808956 => 'Honolulu, HI', - 1808959 => 'Hilo, HI', - 1808961 => 'Hilo, HI', - 1808965 => 'Pāhoa, HI', - 1808966 => 'Keaau, HI', - 1808969 => 'Hilo, HI', - 1808973 => 'Honolulu, HI', - 1808974 => 'Hilo, HI', - 1808982 => 'Keaau, HI', - 1808983 => 'Honolulu, HI', - 1808988 => 'Honolulu, HI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1809.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1809.php deleted file mode 100644 index f8feca0fb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1809.php +++ /dev/null @@ -1,14 +0,0 @@ - 'Bavaro', - 1809554 => 'Higüey', - 1809573 => 'La Vega', - 1809574 => 'Jarabacoa', - 1809578 => 'Moca', - 1809584 => 'Nagua', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1810.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1810.php deleted file mode 100644 index 1bc03e2a1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1810.php +++ /dev/null @@ -1,88 +0,0 @@ - 'Michigan', - 1810220 => 'Brighton, MI', - 1810225 => 'Brighton, MI', - 1810227 => 'Brighton, MI', - 1810229 => 'Brighton, MI', - 1810230 => 'Flint Township, MI', - 1810232 => 'Flint, MI', - 1810233 => 'Flint, MI', - 1810234 => 'Flint, MI', - 1810235 => 'Flint, MI', - 1810238 => 'Flint, MI', - 1810239 => 'Flint, MI', - 1810245 => 'Lapeer, MI', - 1810257 => 'Flint, MI', - 1810326 => 'St. Clair, MI', - 1810329 => 'St. Clair, MI', - 1810342 => 'Flint Township, MI', - 1810346 => 'Brown City, MI', - 1810359 => 'Lexington, MI', - 1810364 => 'Marysville, MI', - 1810376 => 'Deckerville, MI', - 1810385 => 'Fort Gratiot Township, MI', - 1810387 => 'Yale, MI', - 1810388 => 'Marysville, MI', - 1810424 => 'Flint, MI', - 1810487 => 'Flushing, MI', - 1810494 => 'Brighton, MI', - 1810564 => 'Clio, MI', - 1810588 => 'Brighton, MI', - 1810606 => 'Grand Blanc Township, MI', - 1810622 => 'Port Sanilac, MI', - 1810629 => 'Fenton, MI', - 1810631 => 'Otisville, MI', - 1810632 => 'Hartland, MI', - 1810635 => 'Swartz Creek, MI', - 1810636 => 'Goodrich, MI', - 1810639 => 'Montrose, MI', - 1810648 => 'Sandusky, MI', - 1810653 => 'Davison, MI', - 1810655 => 'Swartz Creek, MI', - 1810658 => 'Davison, MI', - 1810659 => 'Flushing, MI', - 1810664 => 'Lapeer, MI', - 1810667 => 'Lapeer, MI', - 1810678 => 'Metamora, MI', - 1810679 => 'Croswell, MI', - 1810686 => 'Clio, MI', - 1810687 => 'Clio, MI', - 1810688 => 'North Branch, MI', - 1810714 => 'Fenton, MI', - 1810715 => 'Burton, MI', - 1810720 => 'Flint Township, MI', - 1810721 => 'Imlay City, MI', - 1810724 => 'Imlay City, MI', - 1810732 => 'Flint Township, MI', - 1810733 => 'Flint Township, MI', - 1810735 => 'Linden, MI', - 1810736 => 'Flint, MI', - 1810742 => 'Burton, MI', - 1810743 => 'Burton, MI', - 1810744 => 'Burton, MI', - 1810750 => 'Fenton, MI', - 1810762 => 'Flint, MI', - 1810765 => 'Marine City, MI', - 1810766 => 'Flint, MI', - 1810767 => 'Flint, MI', - 1810785 => 'Flint, MI', - 1810787 => 'Flint, MI', - 1810789 => 'Flint, MI', - 1810793 => 'Columbiaville, MI', - 1810794 => 'Algonac, MI', - 1810796 => 'Dryden, MI', - 1810798 => 'Almont, MI', - 1810844 => 'Brighton, MI', - 1810966 => 'Port Huron, MI', - 1810982 => 'Port Huron, MI', - 1810984 => 'Port Huron, MI', - 1810985 => 'Port Huron, MI', - 1810987 => 'Port Huron, MI', - 1810989 => 'Port Huron, MI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1812.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1812.php deleted file mode 100644 index 22c970f81..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1812.php +++ /dev/null @@ -1,171 +0,0 @@ - 'Indiana', - 1812218 => 'Jeffersonville, IN', - 1812231 => 'Terre Haute, IN', - 1812232 => 'Terre Haute, IN', - 1812234 => 'Terre Haute, IN', - 1812235 => 'Terre Haute, IN', - 1812238 => 'Terre Haute, IN', - 1812242 => 'Terre Haute, IN', - 1812246 => 'Sellersburg, IN', - 1812247 => 'Shoals, IN', - 1812254 => 'Washington, IN', - 1812256 => 'Charlestown, IN', - 1812265 => 'Madison, IN', - 1812268 => 'Sullivan, IN', - 1812273 => 'Madison, IN', - 1812275 => 'Bedford, IN', - 1812277 => 'Bedford, IN', - 1812278 => 'Bedford, IN', - 1812279 => 'Bedford, IN', - 1812280 => 'Jeffersonville, IN', - 1812282 => 'Jeffersonville, IN', - 1812283 => 'Jeffersonville, IN', - 1812284 => 'Jeffersonville, IN', - 1812285 => 'Jeffersonville, IN', - 1812288 => 'Jeffersonville, IN', - 1812294 => 'Henryville, IN', - 1812295 => 'Loogootee, IN', - 1812299 => 'Terre Haute, IN', - 1812314 => 'Columbus, IN', - 1812323 => 'Bloomington, IN', - 1812330 => 'Bloomington, IN', - 1812331 => 'Bloomington, IN', - 1812332 => 'Bloomington, IN', - 1812333 => 'Bloomington, IN', - 1812334 => 'Bloomington, IN', - 1812335 => 'Bloomington, IN', - 1812336 => 'Bloomington, IN', - 1812337 => 'Bloomington, IN', - 1812338 => 'English, IN', - 1812339 => 'Bloomington, IN', - 1812342 => 'Columbus, IN', - 1812346 => 'North Vernon, IN', - 1812349 => 'Bloomington, IN', - 1812352 => 'North Vernon, IN', - 1812353 => 'Bloomington, IN', - 1812354 => 'Petersburg, IN', - 1812355 => 'Bloomington, IN', - 1812358 => 'Brownstown, IN', - 1812367 => 'Ferdinand, IN', - 1812372 => 'Columbus, IN', - 1812375 => 'Columbus, IN', - 1812376 => 'Columbus, IN', - 1812378 => 'Columbus, IN', - 1812379 => 'Columbus, IN', - 1812384 => 'Bloomfield, IN', - 1812385 => 'Princeton, IN', - 1812386 => 'Princeton, IN', - 1812401 => 'Evansville, IN', - 1812402 => 'Evansville, IN', - 1812421 => 'Evansville, IN', - 1812422 => 'Evansville, IN', - 1812423 => 'Evansville, IN', - 1812424 => 'Evansville, IN', - 1812425 => 'Evansville, IN', - 1812426 => 'Evansville, IN', - 1812427 => 'Vevay, IN', - 1812428 => 'Evansville, IN', - 1812432 => 'Dillsboro, IN', - 1812435 => 'Evansville, IN', - 1812437 => 'Evansville, IN', - 1812438 => 'Rising Sun, IN', - 1812442 => 'Brazil, IN', - 1812443 => 'Brazil, IN', - 1812446 => 'Brazil, IN', - 1812448 => 'Brazil, IN', - 1812450 => 'Evansville, IN', - 1812462 => 'Terre Haute, IN', - 1812464 => 'Evansville, IN', - 1812466 => 'Terre Haute, IN', - 1812471 => 'Evansville, IN', - 1812473 => 'Evansville, IN', - 1812474 => 'Evansville, IN', - 1812475 => 'Evansville, IN', - 1812476 => 'Evansville, IN', - 1812477 => 'Evansville, IN', - 1812478 => 'Terre Haute, IN', - 1812479 => 'Evansville, IN', - 1812481 => 'Jasper, IN', - 1812482 => 'Jasper, IN', - 1812485 => 'Evansville, IN', - 1812486 => 'Montgomery, IN', - 1812490 => 'Newburgh, IN', - 1812491 => 'Evansville, IN', - 1812522 => 'Seymour, IN', - 1812523 => 'Seymour, IN', - 1812524 => 'Seymour, IN', - 1812526 => 'Edinburgh, IN', - 1812533 => 'West Terre Haute, IN', - 1812537 => 'Lawrenceburg, IN', - 1812539 => 'Lawrenceburg, IN', - 1812546 => 'Hope, IN', - 1812547 => 'Tell City, IN', - 1812591 => 'Westport, IN', - 1812597 => 'Morgantown, IN', - 1812623 => 'Sunman, IN', - 1812634 => 'Jasper, IN', - 1812636 => 'Odon, IN', - 1812637 => 'Lawrenceburg, IN', - 1812649 => 'Rockport, IN', - 1812654 => 'Milan, IN', - 1812662 => 'Greensburg, IN', - 1812663 => 'Greensburg, IN', - 1812665 => 'Jasonville, IN', - 1812683 => 'Huntingburg, IN', - 1812723 => 'Paoli, IN', - 1812735 => 'Bicknell, IN', - 1812738 => 'Corydon, IN', - 1812749 => 'Oakland City, IN', - 1812752 => 'Scottsburg, IN', - 1812753 => 'Fort Branch, IN', - 1812768 => 'Haubstadt, IN', - 1812794 => 'Austin, IN', - 1812822 => 'Bloomington, IN', - 1812824 => 'Bloomington, IN', - 1812825 => 'Bloomington, IN', - 1812829 => 'Spencer, IN', - 1812838 => 'Mount Vernon, IN', - 1812842 => 'Newburgh, IN', - 1812847 => 'Linton, IN', - 1812849 => 'Mitchell, IN', - 1812853 => 'Newburgh, IN', - 1812855 => 'Bloomington, IN', - 1812858 => 'Newburgh, IN', - 1812865 => 'Orleans, IN', - 1812866 => 'Hanover, IN', - 1812867 => 'Evansville, IN', - 1812875 => 'Worthington, IN', - 1812877 => 'Terre Haute, IN', - 1812882 => 'Vincennes, IN', - 1812883 => 'Salem, IN', - 1812885 => 'Vincennes, IN', - 1812886 => 'Vincennes, IN', - 1812897 => 'Boonville, IN', - 1812917 => 'Terre Haute, IN', - 1812923 => 'Floyds Knobs, IN', - 1812925 => 'Chandler, IN', - 1812926 => 'Aurora, IN', - 1812932 => 'Batesville, IN', - 1812933 => 'Batesville, IN', - 1812934 => 'Batesville, IN', - 1812936 => 'French Lick, IN', - 1812937 => 'Dale, IN', - 1812939 => 'Clay City, IN', - 1812941 => 'New Albany, IN', - 1812944 => 'New Albany, IN', - 1812945 => 'New Albany, IN', - 1812948 => 'New Albany, IN', - 1812949 => 'New Albany, IN', - 1812951 => 'Georgetown, IN', - 1812952 => 'Lanesville, IN', - 1812963 => 'Evansville, IN', - 1812967 => 'New Pekin, IN', - 1812988 => 'Nashville, IN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1813.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1813.php deleted file mode 100644 index 5b20226ab..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1813.php +++ /dev/null @@ -1,187 +0,0 @@ - 'Florida', - 1813221 => 'Tampa, FL', - 1813222 => 'Tampa, FL', - 1813223 => 'Tampa, FL', - 1813224 => 'Tampa, FL', - 1813225 => 'Tampa, FL', - 1813226 => 'Tampa, FL', - 1813227 => 'Tampa, FL', - 1813228 => 'Tampa, FL', - 1813229 => 'Tampa, FL', - 1813231 => 'Tampa, FL', - 1813232 => 'Tampa, FL', - 1813234 => 'Tampa, FL', - 1813236 => 'Tampa, FL', - 1813237 => 'Tampa, FL', - 1813238 => 'Tampa, FL', - 1813239 => 'Tampa, FL', - 1813241 => 'Tampa, FL', - 1813242 => 'Tampa, FL', - 1813246 => 'Tampa, FL', - 1813247 => 'Tampa, FL', - 1813248 => 'Tampa, FL', - 1813249 => 'Tampa, FL', - 1813250 => 'Tampa, FL', - 1813251 => 'Tampa, FL', - 1813253 => 'Tampa, FL', - 1813254 => 'Tampa, FL', - 1813258 => 'Tampa, FL', - 1813259 => 'Tampa, FL', - 1813261 => 'Tampa, FL', - 1813264 => 'Tampa, FL', - 1813265 => 'Tampa, FL', - 1813269 => 'Tampa, FL', - 1813272 => 'Tampa, FL', - 1813273 => 'Tampa, FL', - 1813274 => 'Tampa, FL', - 1813280 => 'Tampa, FL', - 1813281 => 'Tampa, FL', - 1813282 => 'Tampa, FL', - 1813286 => 'Tampa, FL', - 1813287 => 'Tampa, FL', - 1813288 => 'Tampa, FL', - 1813289 => 'Tampa, FL', - 1813319 => 'Tampa, FL', - 1813341 => 'Tampa, FL', - 1813343 => 'Tampa, FL', - 1813348 => 'Tampa, FL', - 1813350 => 'Tampa, FL', - 1813353 => 'Tampa, FL', - 1813374 => 'Tampa, FL', - 1813386 => 'Tampa, FL', - 1813402 => 'Tampa, FL', - 1813443 => 'Tampa, FL', - 1813490 => 'Tampa, FL', - 1813514 => 'Tampa, FL', - 1813558 => 'Tampa, FL', - 1813571 => 'Brandon, FL', - 1813579 => 'Tampa, FL', - 1813615 => 'Tampa, FL', - 1813620 => 'Tampa, FL', - 1813621 => 'Tampa, FL', - 1813622 => 'Tampa, FL', - 1813623 => 'Tampa, FL', - 1813626 => 'Tampa, FL', - 1813627 => 'Tampa, FL', - 1813628 => 'Tampa, FL', - 1813630 => 'Tampa, FL', - 1813631 => 'Tampa, FL', - 1813632 => 'Tampa, FL', - 1813634 => 'Sun City Center, FL', - 1813635 => 'Tampa, FL', - 1813639 => 'Tampa, FL', - 1813644 => 'Tampa, FL', - 1813645 => 'Ruskin, FL', - 1813653 => 'Brandon, FL', - 1813654 => 'Brandon, FL', - 1813655 => 'Brandon, FL', - 1813659 => 'Plant City, FL', - 1813661 => 'Brandon, FL', - 1813662 => 'Brandon, FL', - 1813664 => 'Tampa, FL', - 1813671 => 'Riverview, FL', - 1813672 => 'Riverview, FL', - 1813677 => 'Riverview, FL', - 1813681 => 'Brandon, FL', - 1813684 => 'Brandon, FL', - 1813685 => 'Brandon, FL', - 1813689 => 'Brandon, FL', - 1813704 => 'Plant City, FL', - 1813707 => 'Plant City, FL', - 1813715 => 'Zephyrhills, FL', - 1813719 => 'Plant City, FL', - 1813737 => 'Plant City, FL', - 1813740 => 'Tampa, FL', - 1813741 => 'Riverview, FL', - 1813745 => 'Tampa, FL', - 1813752 => 'Plant City, FL', - 1813754 => 'Plant City, FL', - 1813757 => 'Plant City, FL', - 1813759 => 'Plant City, FL', - 1813774 => 'Tampa, FL', - 1813779 => 'Zephyrhills, FL', - 1813780 => 'Zephyrhills, FL', - 1813782 => 'Zephyrhills, FL', - 1813783 => 'Zephyrhills, FL', - 1813788 => 'Zephyrhills, FL', - 1813792 => 'Tampa, FL', - 1813805 => 'Tampa, FL', - 1813814 => 'Tampa, FL', - 1813831 => 'Tampa, FL', - 1813832 => 'Tampa, FL', - 1813835 => 'Tampa, FL', - 1813837 => 'Tampa, FL', - 1813839 => 'Tampa, FL', - 1813844 => 'Tampa, FL', - 1813849 => 'Tampa, FL', - 1813855 => 'Oldsmar, FL', - 1813864 => 'Tampa, FL', - 1813866 => 'Tampa, FL', - 1813868 => 'Tampa, FL', - 1813870 => 'Tampa, FL', - 1813871 => 'Tampa, FL', - 1813872 => 'Tampa, FL', - 1813873 => 'Tampa, FL', - 1813874 => 'Tampa, FL', - 1813875 => 'Tampa, FL', - 1813876 => 'Tampa, FL', - 1813877 => 'Tampa, FL', - 1813879 => 'Tampa, FL', - 1813880 => 'Tampa, FL', - 1813882 => 'Tampa, FL', - 1813884 => 'Tampa, FL', - 1813885 => 'Tampa, FL', - 1813886 => 'Tampa, FL', - 1813887 => 'Tampa, FL', - 1813888 => 'Tampa, FL', - 1813889 => 'Tampa, FL', - 1813890 => 'Tampa, FL', - 1813891 => 'Tampa, FL', - 1813899 => 'Tampa, FL', - 1813902 => 'Tampa, FL', - 1813903 => 'Tampa, FL', - 1813907 => 'Wesley Chapel, FL', - 1813908 => 'Tampa, FL', - 1813909 => 'Lutz, FL', - 1813910 => 'Tampa, FL', - 1813915 => 'Tampa, FL', - 1813925 => 'Tampa, FL', - 1813926 => 'Tampa, FL', - 1813930 => 'Tampa, FL', - 1813931 => 'Tampa, FL', - 1813932 => 'Tampa, FL', - 1813933 => 'Tampa, FL', - 1813935 => 'Tampa, FL', - 1813936 => 'Tampa, FL', - 1813948 => 'Lutz, FL', - 1813949 => 'Lutz, FL', - 1813960 => 'Tampa, FL', - 1813961 => 'Tampa, FL', - 1813962 => 'Tampa, FL', - 1813963 => 'Tampa, FL', - 1813964 => 'Tampa, FL', - 1813968 => 'Tampa, FL', - 1813969 => 'Tampa, FL', - 1813971 => 'Tampa, FL', - 1813972 => 'Tampa, FL', - 1813973 => 'Wesley Chapel, FL', - 1813974 => 'Tampa, FL', - 1813975 => 'Tampa, FL', - 1813977 => 'Tampa, FL', - 1813979 => 'Tampa, FL', - 1813984 => 'Tampa, FL', - 1813986 => 'Thonotosassa, FL', - 1813988 => 'Tampa, FL', - 1813989 => 'Tampa, FL', - 1813991 => 'Wesley Chapel, FL', - 1813994 => 'Wesley Chapel, FL', - 1813995 => 'Land O\' Lakes, FL', - 1813996 => 'Land O\' Lakes, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1814.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1814.php deleted file mode 100644 index f58bf7e49..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1814.php +++ /dev/null @@ -1,166 +0,0 @@ - 'Pennsylvania', - 1814201 => 'Altoona, PA', - 1814224 => 'Roaring Spring, PA', - 1814226 => 'Clarion, PA', - 1814227 => 'Clarion, PA', - 1814231 => 'State College, PA', - 1814234 => 'State College, PA', - 1814235 => 'State College, PA', - 1814236 => 'Curwensville, PA', - 1814237 => 'State College, PA', - 1814238 => 'State College, PA', - 1814239 => 'Claysburg, PA', - 1814247 => 'Hastings, PA', - 1814254 => 'Johnstown, PA', - 1814255 => 'Johnstown, PA', - 1814258 => 'Elkland, PA', - 1814262 => 'Johnstown, PA', - 1814265 => 'Brockway, PA', - 1814266 => 'Johnstown, PA', - 1814267 => 'Berlin, PA', - 1814269 => 'Johnstown, PA', - 1814272 => 'State College, PA', - 1814274 => 'Coudersport, PA', - 1814275 => 'New Bethlehem, PA', - 1814288 => 'Johnstown, PA', - 1814308 => 'State College, PA', - 1814322 => 'Johnstown, PA', - 1814333 => 'Meadville, PA', - 1814336 => 'Meadville, PA', - 1814337 => 'Meadville, PA', - 1814339 => 'Osceola Mills, PA', - 1814342 => 'Philipsburg, PA', - 1814344 => 'Carrolltown, PA', - 1814353 => 'Bellefonte, PA', - 1814355 => 'Bellefonte, PA', - 1814359 => 'Pleasant Gap, PA', - 1814362 => 'Bradford, PA', - 1814364 => 'Centre Hall, PA', - 1814367 => 'Westfield, PA', - 1814368 => 'Bradford, PA', - 1814371 => 'DuBois, PA', - 1814375 => 'DuBois, PA', - 1814378 => 'Houtzdale, PA', - 1814382 => 'Conneaut Lake, PA', - 1814395 => 'Confluence, PA', - 1814398 => 'Cambridge Spgs, PA', - 1814422 => 'Spring Mills, PA', - 1814425 => 'Cochranton, PA', - 1814432 => 'Franklin, PA', - 1814435 => 'Galeton, PA', - 1814437 => 'Franklin, PA', - 1814438 => 'Union City, PA', - 1814443 => 'Somerset, PA', - 1814444 => 'Somerset, PA', - 1814445 => 'Somerset, PA', - 1814446 => 'Seward, PA', - 1814447 => 'Orbisonia, PA', - 1814451 => 'Erie, PA', - 1814452 => 'Erie, PA', - 1814453 => 'Erie, PA', - 1814454 => 'Erie, PA', - 1814455 => 'Erie, PA', - 1814456 => 'Erie, PA', - 1814459 => 'Erie, PA', - 1814461 => 'Erie, PA', - 1814464 => 'Erie, PA', - 1814466 => 'Boalsburg, PA', - 1814467 => 'Windber, PA', - 1814471 => 'Ebensburg, PA', - 1814472 => 'Ebensburg, PA', - 1814474 => 'Fairview, PA', - 1814476 => 'McKean, PA', - 1814486 => 'Emporium, PA', - 1814489 => 'Sugar Grove, PA', - 1814533 => 'Johnstown, PA', - 1814534 => 'Johnstown, PA', - 1814535 => 'Johnstown, PA', - 1814536 => 'Johnstown, PA', - 1814539 => 'Johnstown, PA', - 1814542 => 'Mount Union, PA', - 1814563 => 'Youngsville, PA', - 1814587 => 'Conneautville, PA', - 1814623 => 'Bedford, PA', - 1814629 => 'Boswell, PA', - 1814634 => 'Meyersdale, PA', - 1814635 => 'Saxton, PA', - 1814642 => 'Port Allegany, PA', - 1814643 => 'Huntingdon, PA', - 1814652 => 'Everett, PA', - 1814653 => 'Reynoldsville, PA', - 1814662 => 'Salisbury, PA', - 1814663 => 'Corry, PA', - 1814664 => 'Corry, PA', - 1814665 => 'Corry, PA', - 1814669 => 'Alexandria, PA', - 1814672 => 'Coalport, PA', - 1814674 => 'Patton, PA', - 1814677 => 'Oil City, PA', - 1814683 => 'Linesville, PA', - 1814684 => 'Tyrone, PA', - 1814692 => 'Port Matilda, PA', - 1814723 => 'Warren, PA', - 1814724 => 'Meadville, PA', - 1814725 => 'North East, PA', - 1814726 => 'Warren, PA', - 1814734 => 'Edinboro, PA', - 1814735 => 'Breezewood, PA', - 1814736 => 'Portage, PA', - 1814742 => 'Bellwood, PA', - 1814754 => 'Central City, PA', - 1814755 => 'Tionesta, PA', - 1814756 => 'Albion, PA', - 1814757 => 'Russell, PA', - 1814763 => 'Saegertown, PA', - 1814765 => 'Clearfield, PA', - 1814768 => 'Clearfield, PA', - 1814772 => 'Ridgway, PA', - 1814774 => 'Girard, PA', - 1814776 => 'Ridgway, PA', - 1814781 => 'St. Marys, PA', - 1814793 => 'Martinsburg, PA', - 1814796 => 'Waterford, PA', - 1814797 => 'Knox, PA', - 1814825 => 'Erie, PA', - 1814827 => 'Titusville, PA', - 1814832 => 'Williamsburg, PA', - 1814833 => 'Erie, PA', - 1814834 => 'St. Marys, PA', - 1814835 => 'Erie, PA', - 1814836 => 'Erie, PA', - 1814837 => 'Kane, PA', - 1814838 => 'Erie, PA', - 1814849 => 'Brookville, PA', - 1814860 => 'Erie, PA', - 1814861 => 'State College, PA', - 1814864 => 'Erie, PA', - 1814865 => 'University Park, PA', - 1814866 => 'Erie, PA', - 1814867 => 'State College, PA', - 1814868 => 'Erie, PA', - 1814871 => 'Erie, PA', - 1814877 => 'Erie, PA', - 1814886 => 'Cresson, PA', - 1814887 => 'Smethport, PA', - 1814889 => 'Altoona, PA', - 1814898 => 'Erie, PA', - 1814899 => 'Erie, PA', - 1814926 => 'Rockwood, PA', - 1814938 => 'Punxsutawney, PA', - 1814940 => 'Altoona, PA', - 1814941 => 'Altoona, PA', - 1814942 => 'Altoona, PA', - 1814943 => 'Altoona, PA', - 1814944 => 'Altoona, PA', - 1814946 => 'Altoona, PA', - 1814948 => 'Northern Cambria, PA', - 1814949 => 'Altoona, PA', - 1814965 => 'Johnsonburg, PA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1815.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1815.php deleted file mode 100644 index 114ca8ef0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1815.php +++ /dev/null @@ -1,193 +0,0 @@ - 'Illinois', - 1815206 => 'Woodstock, IL', - 1815220 => 'Peru, IL', - 1815223 => 'Peru, IL', - 1815224 => 'Peru, IL', - 1815225 => 'Milledgeville, IL', - 1815226 => 'Rockford, IL', - 1815227 => 'Rockford, IL', - 1815229 => 'Rockford, IL', - 1815230 => 'Plainfield, IL', - 1815232 => 'Freeport, IL', - 1815233 => 'Freeport, IL', - 1815234 => 'Byron, IL', - 1815235 => 'Freeport, IL', - 1815237 => 'Gardner, IL', - 1815239 => 'Pecatonica, IL', - 1815244 => 'Mount Carroll, IL', - 1815246 => 'Earlville, IL', - 1815248 => 'Durand, IL', - 1815254 => 'Plainfield, IL', - 1815265 => 'Gilman, IL', - 1815267 => 'Plainfield, IL', - 1815273 => 'Savanna, IL', - 1815284 => 'Dixon, IL', - 1815285 => 'Dixon, IL', - 1815286 => 'Hinckley, IL', - 1815288 => 'Dixon, IL', - 1815293 => 'Romeoville, IL', - 1815316 => 'Rockford, IL', - 1815332 => 'Rockford, IL', - 1815334 => 'Woodstock, IL', - 1815335 => 'Winnebago, IL', - 1815337 => 'Woodstock, IL', - 1815338 => 'Woodstock, IL', - 1815339 => 'Granville, IL', - 1815344 => 'McHenry, IL', - 1815356 => 'Crystal Lake, IL', - 1815357 => 'Seneca, IL', - 1815363 => 'McHenry, IL', - 1815369 => 'Lena, IL', - 1815372 => 'Romeoville, IL', - 1815379 => 'Walnut, IL', - 1815385 => 'McHenry, IL', - 1815389 => 'South Beloit, IL', - 1815391 => 'Rockford, IL', - 1815394 => 'Rockford, IL', - 1815395 => 'Rockford, IL', - 1815397 => 'Rockford, IL', - 1815398 => 'Rockford, IL', - 1815399 => 'Rockford, IL', - 1815416 => 'Morris, IL', - 1815423 => 'Elwood, IL', - 1815426 => 'Herscher, IL', - 1815431 => 'Ottawa, IL', - 1815432 => 'Watseka, IL', - 1815433 => 'Ottawa, IL', - 1815434 => 'Ottawa, IL', - 1815436 => 'Plainfield, IL', - 1815439 => 'Plainfield, IL', - 1815444 => 'Crystal Lake, IL', - 1815455 => 'Crystal Lake, IL', - 1815457 => 'Cissna Park, IL', - 1815458 => 'Braidwood, IL', - 1815459 => 'Crystal Lake, IL', - 1815462 => 'New Lenox, IL', - 1815463 => 'New Lenox, IL', - 1815464 => 'Frankfort, IL', - 1815468 => 'Manteno, IL', - 1815469 => 'Frankfort, IL', - 1815472 => 'Momence, IL', - 1815476 => 'Wilmington, IL', - 1815477 => 'Crystal Lake, IL', - 1815478 => 'Manhattan, IL', - 1815479 => 'Crystal Lake, IL', - 1815484 => 'Rockford, IL', - 1815485 => 'New Lenox, IL', - 1815489 => 'Rockford, IL', - 1815490 => 'Rockford, IL', - 1815493 => 'Lanark, IL', - 1815496 => 'Sheridan, IL', - 1815498 => 'Somonauk, IL', - 1815537 => 'Prophetstown, IL', - 1815538 => 'Mendota, IL', - 1815539 => 'Mendota, IL', - 1815544 => 'Belvidere, IL', - 1815547 => 'Belvidere, IL', - 1815561 => 'Rochelle, IL', - 1815562 => 'Rochelle, IL', - 1815568 => 'Marengo, IL', - 1815577 => 'Plainfield, IL', - 1815578 => 'McHenry, IL', - 1815584 => 'Dwight, IL', - 1815588 => 'Lockport, IL', - 1815589 => 'Fulton, IL', - 1815599 => 'Freeport, IL', - 1815609 => 'Plainfield, IL', - 1815622 => 'Sterling, IL', - 1815623 => 'Roscoe, IL', - 1815624 => 'Rockton, IL', - 1815625 => 'Sterling, IL', - 1815626 => 'Sterling, IL', - 1815634 => 'Coal City, IL', - 1815648 => 'Hebron, IL', - 1815653 => 'Wonder Lake, IL', - 1815657 => 'Forrest, IL', - 1815663 => 'Spring Valley, IL', - 1815664 => 'Spring Valley, IL', - 1815667 => 'North Utica, IL', - 1815672 => 'Streator, IL', - 1815673 => 'Streator, IL', - 1815675 => 'Spring Grove, IL', - 1815678 => 'Richmond, IL', - 1815692 => 'Fairbury, IL', - 1815694 => 'Clifton, IL', - 1815695 => 'Newark, IL', - 1815708 => 'Rockford, IL', - 1815722 => 'Joliet, IL', - 1815723 => 'Joliet, IL', - 1815724 => 'Joliet, IL', - 1815725 => 'Joliet, IL', - 1815726 => 'Joliet, IL', - 1815727 => 'Joliet, IL', - 1815728 => 'Wonder Lake, IL', - 1815729 => 'Joliet, IL', - 1815730 => 'Joliet, IL', - 1815732 => 'Oregon, IL', - 1815734 => 'Mount Morris, IL', - 1815740 => 'Joliet, IL', - 1815741 => 'Joliet, IL', - 1815744 => 'Joliet, IL', - 1815745 => 'Warren, IL', - 1815747 => 'East Dubuque, IL', - 1815748 => 'DeKalb, IL', - 1815754 => 'DeKalb, IL', - 1815756 => 'DeKalb, IL', - 1815758 => 'DeKalb, IL', - 1815759 => 'McHenry, IL', - 1815765 => 'Poplar Grove, IL', - 1815772 => 'Morrison, IL', - 1815773 => 'Joliet, IL', - 1815774 => 'Joliet, IL', - 1815776 => 'Galena, IL', - 1815777 => 'Galena, IL', - 1815784 => 'Genoa, IL', - 1815786 => 'Sandwich, IL', - 1815787 => 'DeKalb, IL', - 1815788 => 'Crystal Lake, IL', - 1815795 => 'Marseilles, IL', - 1815806 => 'Frankfort, IL', - 1815824 => 'Shabbona, IL', - 1815834 => 'Lockport, IL', - 1815836 => 'Lockport, IL', - 1815838 => 'Lockport, IL', - 1815842 => 'Pontiac, IL', - 1815844 => 'Pontiac, IL', - 1815857 => 'Amboy, IL', - 1815858 => 'Elizabeth, IL', - 1815872 => 'Princeton, IL', - 1815874 => 'Rockford, IL', - 1815875 => 'Princeton, IL', - 1815879 => 'Princeton, IL', - 1815883 => 'Oglesby, IL', - 1815886 => 'Romeoville, IL', - 1815893 => 'Crystal Lake, IL', - 1815895 => 'Sycamore, IL', - 1815899 => 'Sycamore, IL', - 1815923 => 'Union, IL', - 1815937 => 'Kankakee, IL', - 1815938 => 'Forreston, IL', - 1815941 => 'Morris, IL', - 1815942 => 'Morris, IL', - 1815943 => 'Harvard, IL', - 1815945 => 'Chenoa, IL', - 1815946 => 'Polo, IL', - 1815947 => 'Stockton, IL', - 1815961 => 'Rockford, IL', - 1815962 => 'Rockford, IL', - 1815963 => 'Rockford, IL', - 1815964 => 'Rockford, IL', - 1815965 => 'Rockford, IL', - 1815968 => 'Rockford, IL', - 1815971 => 'Rockford, IL', - 1815977 => 'Rockford, IL', - 1815986 => 'Rockford, IL', - 1815987 => 'Rockford, IL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1816.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1816.php deleted file mode 100644 index abaa19ab7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1816.php +++ /dev/null @@ -1,141 +0,0 @@ - 'Missouri', - 1816214 => 'Kansas City, MO', - 1816220 => 'Blue Springs, MO', - 1816221 => 'Kansas City, MO', - 1816224 => 'Blue Springs, MO', - 1816228 => 'Blue Springs, MO', - 1816229 => 'Blue Springs, MO', - 1816230 => 'Odessa, MO', - 1816231 => 'Kansas City, MO', - 1816232 => 'St. Joseph, MO', - 1816233 => 'St. Joseph, MO', - 1816234 => 'Kansas City, MO', - 1816235 => 'Kansas City, MO', - 1816238 => 'St. Joseph, MO', - 1816241 => 'Kansas City, MO', - 1816246 => 'Lee\'s Summit, MO', - 1816252 => 'Independence, MO', - 1816254 => 'Independence, MO', - 1816257 => 'Independence, MO', - 1816268 => 'Kansas City, MO', - 1816271 => 'St. Joseph, MO', - 1816276 => 'Kansas City, MO', - 1816279 => 'St. Joseph, MO', - 1816283 => 'Kansas City, MO', - 1816292 => 'Kansas City, MO', - 1816297 => 'Adrian, MO', - 1816318 => 'Belton, MO', - 1816322 => 'Belton, MO', - 1816324 => 'Savannah, MO', - 1816331 => 'Belton, MO', - 1816333 => 'Kansas City, MO', - 1816347 => 'Lee\'s Summit, MO', - 1816348 => 'Belton, MO', - 1816350 => 'Independence, MO', - 1816353 => 'Raytown, MO', - 1816356 => 'Raytown, MO', - 1816358 => 'Raytown, MO', - 1816361 => 'Kansas City, MO', - 1816363 => 'Kansas City, MO', - 1816364 => 'St. Joseph, MO', - 1816373 => 'Independence, MO', - 1816380 => 'Harrisonville, MO', - 1816387 => 'St. Joseph, MO', - 1816390 => 'St. Joseph, MO', - 1816404 => 'Kansas City, MO', - 1816407 => 'Liberty, MO', - 1816412 => 'Kansas City, MO', - 1816413 => 'Kansas City, MO', - 1816415 => 'Liberty, MO', - 1816418 => 'Kansas City, MO', - 1816420 => 'Kansas City, MO', - 1816421 => 'Kansas City, MO', - 1816436 => 'Kansas City, MO', - 1816444 => 'Kansas City, MO', - 1816449 => 'Maysville, MO', - 1816452 => 'Kansas City, MO', - 1816453 => 'Kansas City, MO', - 1816454 => 'Kansas City, MO', - 1816455 => 'Kansas City, MO', - 1816459 => 'Kansas City, MO', - 1816461 => 'Independence, MO', - 1816468 => 'Kansas City, MO', - 1816471 => 'Kansas City, MO', - 1816472 => 'Kansas City, MO', - 1816474 => 'Kansas City, MO', - 1816478 => 'Independence, MO', - 1816483 => 'Kansas City, MO', - 1816505 => 'Kansas City, MO', - 1816513 => 'Kansas City, MO', - 1816523 => 'Kansas City, MO', - 1816524 => 'Lee\'s Summit, MO', - 1816525 => 'Lee\'s Summit, MO', - 1816531 => 'Kansas City, MO', - 1816532 => 'Smithville, MO', - 1816539 => 'Plattsburg, MO', - 1816540 => 'Pleasant Hill, MO', - 1816554 => 'Lee\'s Summit, MO', - 1816561 => 'Kansas City, MO', - 1816569 => 'Kansas City, MO', - 1816583 => 'Hamilton, MO', - 1816584 => 'Kansas City, MO', - 1816587 => 'Kansas City, MO', - 1816625 => 'Oak Grove, MO', - 1816628 => 'Kearney, MO', - 1816630 => 'Excelsior Spgs, MO', - 1816632 => 'Cameron, MO', - 1816633 => 'Odessa, MO', - 1816637 => 'Excelsior Spgs, MO', - 1816650 => 'Buckner, MO', - 1816671 => 'St. Joseph, MO', - 1816676 => 'St. Joseph, MO', - 1816690 => 'Oak Grove, MO', - 1816697 => 'Lone Jack, MO', - 1816698 => 'Independence, MO', - 1816732 => 'Holden, MO', - 1816734 => 'Kansas City, MO', - 1816737 => 'Raytown, MO', - 1816741 => 'Kansas City, MO', - 1816746 => 'Kansas City, MO', - 1816753 => 'Kansas City, MO', - 1816756 => 'Kansas City, MO', - 1816776 => 'Richmond, MO', - 1816779 => 'Peculiar, MO', - 1816781 => 'Liberty, MO', - 1816792 => 'Liberty, MO', - 1816795 => 'Independence, MO', - 1816796 => 'Independence, MO', - 1816822 => 'Kansas City, MO', - 1816833 => 'Independence, MO', - 1816836 => 'Independence, MO', - 1816842 => 'Kansas City, MO', - 1816847 => 'Grain Valley, MO', - 1816858 => 'Platte City, MO', - 1816861 => 'Kansas City, MO', - 1816880 => 'Kansas City, MO', - 1816881 => 'Kansas City, MO', - 1816884 => 'Harrisonville, MO', - 1816886 => 'Independence, MO', - 1816891 => 'Kansas City, MO', - 1816903 => 'Kearney, MO', - 1816920 => 'Kansas City, MO', - 1816921 => 'Kansas City, MO', - 1816922 => 'Kansas City, MO', - 1816923 => 'Kansas City, MO', - 1816924 => 'Kansas City, MO', - 1816931 => 'Kansas City, MO', - 1816932 => 'Kansas City, MO', - 1816941 => 'Kansas City, MO', - 1816942 => 'Kansas City, MO', - 1816943 => 'Kansas City, MO', - 1816960 => 'Kansas City, MO', - 1816983 => 'Kansas City, MO', - 1816987 => 'Pleasant Hill, MO', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1817.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1817.php deleted file mode 100644 index 89b1f2050..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1817.php +++ /dev/null @@ -1,177 +0,0 @@ - 'Texas', - 1817202 => 'Cleburne, TX', - 1817207 => 'Fort Worth, TX', - 1817220 => 'Springtown, TX', - 1817222 => 'Fort Worth, TX', - 1817225 => 'Mansfield, TX', - 1817226 => 'Arlington, TX', - 1817236 => 'Fort Worth, TX', - 1817237 => 'Fort Worth, TX', - 1817238 => 'Fort Worth, TX', - 1817244 => 'Fort Worth, TX', - 1817246 => 'Fort Worth, TX', - 1817249 => 'Benbrook, TX', - 1817261 => 'Arlington, TX', - 1817263 => 'Fort Worth, TX', - 1817265 => 'Arlington, TX', - 1817268 => 'Hurst, TX', - 1817270 => 'Azle, TX', - 1817274 => 'Arlington, TX', - 1817275 => 'Arlington, TX', - 1817276 => 'Arlington, TX', - 1817277 => 'Arlington, TX', - 1817279 => 'Granbury, TX', - 1817280 => 'Hurst, TX', - 1817282 => 'Hurst, TX', - 1817285 => 'Hurst, TX', - 1817292 => 'Fort Worth, TX', - 1817293 => 'Fort Worth, TX', - 1817294 => 'Fort Worth, TX', - 1817295 => 'Burleson, TX', - 1817297 => 'Crowley, TX', - 1817299 => 'Arlington, TX', - 1817303 => 'Arlington, TX', - 1817306 => 'Fort Worth, TX', - 1817321 => 'Fort Worth, TX', - 1817326 => 'Granbury, TX', - 1817329 => 'Grapevine, TX', - 1817332 => 'Fort Worth, TX', - 1817334 => 'Fort Worth, TX', - 1817335 => 'Fort Worth, TX', - 1817336 => 'Fort Worth, TX', - 1817337 => 'Keller, TX', - 1817338 => 'Fort Worth, TX', - 1817341 => 'Weatherford, TX', - 1817346 => 'Fort Worth, TX', - 1817348 => 'Fort Worth, TX', - 1817361 => 'Fort Worth, TX', - 1817367 => 'Fort Worth, TX', - 1817370 => 'Fort Worth, TX', - 1817375 => 'Arlington, TX', - 1817377 => 'Fort Worth, TX', - 1817378 => 'Fort Worth, TX', - 1817379 => 'Keller, TX', - 1817385 => 'Arlington, TX', - 1817386 => 'Fort Worth, TX', - 1817392 => 'Fort Worth, TX', - 1817410 => 'Grapevine, TX', - 1817413 => 'Fort Worth, TX', - 1817417 => 'Arlington, TX', - 1817419 => 'Arlington, TX', - 1817420 => 'Fort Worth, TX', - 1817423 => 'Fort Worth, TX', - 1817426 => 'Burleson, TX', - 1817429 => 'Fort Worth, TX', - 1817431 => 'Keller, TX', - 1817433 => 'Fort Worth, TX', - 1817439 => 'Haslet, TX', - 1817441 => 'Aledo, TX', - 1817443 => 'Fort Worth, TX', - 1817444 => 'Azle, TX', - 1817446 => 'Fort Worth, TX', - 1817447 => 'Burleson, TX', - 1817451 => 'Fort Worth, TX', - 1817453 => 'Mansfield, TX', - 1817457 => 'Fort Worth, TX', - 1817459 => 'Arlington, TX', - 1817460 => 'Arlington, TX', - 1817461 => 'Arlington, TX', - 1817462 => 'Arlington, TX', - 1817465 => 'Arlington, TX', - 1817466 => 'Arlington, TX', - 1817467 => 'Arlington, TX', - 1817468 => 'Arlington, TX', - 1817469 => 'Arlington, TX', - 1817472 => 'Arlington, TX', - 1817473 => 'Mansfield, TX', - 1817477 => 'Mansfield, TX', - 1817481 => 'Grapevine, TX', - 1817491 => 'Roanoke, TX', - 1817492 => 'Fort Worth, TX', - 1817496 => 'Fort Worth, TX', - 1817517 => 'Cleburne, TX', - 1817523 => 'Springtown, TX', - 1817529 => 'Fort Worth, TX', - 1817531 => 'Fort Worth, TX', - 1817534 => 'Fort Worth, TX', - 1817535 => 'Fort Worth, TX', - 1817536 => 'Fort Worth, TX', - 1817539 => 'Mansfield, TX', - 1817546 => 'Fort Worth, TX', - 1817548 => 'Arlington, TX', - 1817551 => 'Fort Worth, TX', - 1817556 => 'Cleburne, TX', - 1817557 => 'Arlington, TX', - 1817558 => 'Cleburne, TX', - 1817560 => 'Fort Worth, TX', - 1817562 => 'Keller, TX', - 1817568 => 'Fort Worth, TX', - 1817569 => 'Fort Worth, TX', - 1817570 => 'Fort Worth, TX', - 1817573 => 'Granbury, TX', - 1817578 => 'Granbury, TX', - 1817579 => 'Granbury, TX', - 1817594 => 'Weatherford, TX', - 1817596 => 'Weatherford, TX', - 1817598 => 'Weatherford, TX', - 1817599 => 'Weatherford, TX', - 1817613 => 'Weatherford, TX', - 1817624 => 'Fort Worth, TX', - 1817625 => 'Fort Worth, TX', - 1817626 => 'Fort Worth, TX', - 1817633 => 'Arlington, TX', - 1817636 => 'Rhome, TX', - 1817640 => 'Arlington, TX', - 1817641 => 'Cleburne, TX', - 1817645 => 'Cleburne, TX', - 1817649 => 'Arlington, TX', - 1817652 => 'Arlington, TX', - 1817654 => 'Fort Worth, TX', - 1817717 => 'Fort Worth, TX', - 1817731 => 'Fort Worth, TX', - 1817732 => 'Fort Worth, TX', - 1817735 => 'Fort Worth, TX', - 1817737 => 'Fort Worth, TX', - 1817738 => 'Fort Worth, TX', - 1817740 => 'Fort Worth, TX', - 1817744 => 'Fort Worth, TX', - 1817750 => 'Fort Worth, TX', - 1817759 => 'Fort Worth, TX', - 1817763 => 'Fort Worth, TX', - 1817774 => 'Cleburne, TX', - 1817783 => 'Alvarado, TX', - 1817784 => 'Arlington, TX', - 1817790 => 'Alvarado, TX', - 1817795 => 'Arlington, TX', - 1817801 => 'Arlington, TX', - 1817803 => 'Central Drive, Bedford, TX', - 1817810 => 'Fort Worth, TX', - 1817820 => 'Fort Worth, TX', - 1817831 => 'Fort Worth, TX', - 1817834 => 'Fort Worth, TX', - 1817838 => 'Fort Worth, TX', - 1817847 => 'Fort Worth, TX', - 1817860 => 'Arlington, TX', - 1817861 => 'Arlington, TX', - 1817866 => 'Grandview, TX', - 1817870 => 'Fort Worth, TX', - 1817877 => 'Fort Worth, TX', - 1817878 => 'Fort Worth, TX', - 1817882 => 'Fort Worth, TX', - 1817885 => 'Fort Worth, TX', - 1817920 => 'Fort Worth, TX', - 1817921 => 'Fort Worth, TX', - 1817922 => 'Fort Worth, TX', - 1817923 => 'Fort Worth, TX', - 1817924 => 'Fort Worth, TX', - 1817926 => 'Fort Worth, TX', - 1817927 => 'Fort Worth, TX', - 1817989 => 'Fort Worth, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1818.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1818.php deleted file mode 100644 index f5189dbef..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1818.php +++ /dev/null @@ -1,111 +0,0 @@ - 'California', - 1818222 => 'Calabasas, CA', - 1818223 => 'Calabasas, CA', - 1818238 => 'Burbank, CA', - 1818240 => 'Glendale, CA', - 1818241 => 'Glendale, CA', - 1818242 => 'Glendale, CA', - 1818243 => 'Glendale, CA', - 1818244 => 'Glendale, CA', - 1818246 => 'Glendale, CA', - 1818247 => 'Glendale, CA', - 1818252 => 'Sun Valley, CA', - 1818255 => 'North Hollywood, CA', - 1818260 => 'Burbank, CA', - 1818265 => 'Glendale, CA', - 1818291 => 'Glendale, CA', - 1818361 => 'San Fernando, CA', - 1818362 => 'Sylmar, CA', - 1818364 => 'Sylmar, CA', - 1818365 => 'San Fernando, CA', - 1818367 => 'Sylmar, CA', - 1818375 => 'Panorama City, CA', - 1818376 => 'Van Nuys, CA', - 1818409 => 'Glendale, CA', - 1818484 => 'Glendale, CA', - 1818500 => 'Glendale, CA', - 1818502 => 'Glendale, CA', - 1818503 => 'North Hollywood, CA', - 1818504 => 'Sun Valley, CA', - 1818507 => 'Glendale, CA', - 1818543 => 'Glendale, CA', - 1818545 => 'Glendale, CA', - 1818546 => 'Glendale, CA', - 1818547 => 'Glendale, CA', - 1818548 => 'Glendale, CA', - 1818549 => 'Glendale, CA', - 1818550 => 'Glendale, CA', - 1818551 => 'Glendale, CA', - 1818552 => 'Glendale, CA', - 1818553 => 'Glendale, CA', - 1818556 => 'Burbank, CA', - 1818557 => 'Burbank, CA', - 1818558 => 'Burbank, CA', - 1818559 => 'Burbank, CA', - 1818563 => 'Burbank, CA', - 1818565 => 'Burbank, CA', - 1818566 => 'Burbank, CA', - 1818567 => 'Burbank, CA', - 1818591 => 'Calabasas, CA', - 1818637 => 'Glendale, CA', - 1818662 => 'Glendale, CA', - 1818686 => 'Pacoima, CA', - 1818706 => 'Agoura Hills, CA', - 1818719 => 'Woodland Hills, CA', - 1818729 => 'Burbank, CA', - 1818735 => 'Agoura Hills, CA', - 1818759 => 'North Hollywood, CA', - 1818764 => 'North Hollywood, CA', - 1818765 => 'North Hollywood, CA', - 1818767 => 'Sun Valley, CA', - 1818768 => 'Sun Valley, CA', - 1818771 => 'Sun Valley, CA', - 1818779 => 'Van Nuys, CA', - 1818780 => 'Van Nuys, CA', - 1818781 => 'Van Nuys, CA', - 1818782 => 'Van Nuys, CA', - 1818785 => 'Van Nuys, CA', - 1818786 => 'Van Nuys, CA', - 1818787 => 'Van Nuys, CA', - 1818833 => 'Sylmar, CA', - 1818840 => 'Burbank, CA', - 1818841 => 'Burbank, CA', - 1818842 => 'Burbank, CA', - 1818843 => 'Burbank, CA', - 1818845 => 'Burbank, CA', - 1818846 => 'Burbank, CA', - 1818847 => 'Burbank, CA', - 1818848 => 'Burbank, CA', - 1818861 => 'Burbank, CA', - 1818878 => 'Calabasas, CA', - 1818880 => 'Calabasas, CA', - 1818885 => 'Northridge, CA', - 1818886 => 'Northridge, CA', - 1818896 => 'Pacoima, CA', - 1818897 => 'Pacoima, CA', - 1818898 => 'San Fernando, CA', - 1818901 => 'Van Nuys, CA', - 1818902 => 'Van Nuys, CA', - 1818904 => 'Van Nuys, CA', - 1818908 => 'Van Nuys, CA', - 1818909 => 'Van Nuys, CA', - 1818937 => 'Glendale, CA', - 1818953 => 'Burbank, CA', - 1818954 => 'Burbank, CA', - 1818955 => 'Burbank, CA', - 1818956 => 'Glendale, CA', - 1818972 => 'Burbank, CA', - 1818982 => 'North Hollywood, CA', - 1818988 => 'Van Nuys, CA', - 1818989 => 'Van Nuys, CA', - 1818993 => 'Northridge, CA', - 1818994 => 'Van Nuys, CA', - 1818997 => 'Van Nuys, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1819.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1819.php deleted file mode 100644 index 1386994bf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1819.php +++ /dev/null @@ -1,144 +0,0 @@ - 'Quebec', - 1819205 => 'Gatineau, QC', - 1819228 => 'Louiseville, QC', - 1819242 => 'Grenville, QC', - 1819243 => 'Gatineau, QC', - 1819246 => 'Gatineau, QC', - 1819275 => 'Rivière-Rouge, QC', - 1819281 => 'Gatineau, QC', - 1819293 => 'Nicolet, QC', - 1819298 => 'Gentilly, QC', - 1819321 => 'Sainte-Agathe-des-Monts, QC', - 1819322 => 'Val-David, QC', - 1819326 => 'Sainte-Agathe-des-Monts, QC', - 1819333 => 'La Sarre, QC', - 1819346 => 'Sherbrooke, QC', - 1819347 => 'Sherbrooke, QC', - 1819348 => 'Sherbrooke, QC', - 1819357 => 'Victoriaville, QC', - 1819358 => 'Warwick, QC', - 1819362 => 'Plessisville, QC', - 1819364 => 'Princeville, QC', - 1819370 => 'Trois-Rivières, QC', - 1819371 => 'Trois-Rivières, QC', - 1819372 => 'Trois-Rivières, QC', - 1819373 => 'Trois-Rivières, QC', - 1819374 => 'Trois-Rivières, QC', - 1819375 => 'Trois-Rivières, QC', - 1819376 => 'Trois-Rivières, QC', - 1819377 => 'Trois-Rivières, QC', - 1819378 => 'Trois-Rivières, QC', - 1819379 => 'Trois-Rivières, QC', - 1819395 => 'Saint-Germain-de-Grantham, QC', - 1819397 => 'Saint-Cyrille-de-Wendover, QC', - 1819398 => 'Wickham, QC', - 1819423 => 'Montebello, QC', - 1819424 => 'Saint-Donat, QC', - 1819425 => 'Mont-Tremblant, QC', - 1819427 => 'Papineauville, QC', - 1819429 => 'Mont-Tremblant, QC', - 1819440 => 'Mont-Laurier, QC', - 1819441 => 'Maniwaki, QC', - 1819449 => 'Maniwaki, QC', - 1819463 => 'Gracefield, QC', - 1819472 => 'Drummondville, QC', - 1819474 => 'Drummondville, QC', - 1819475 => 'Drummondville, QC', - 1819477 => 'Drummondville, QC', - 1819478 => 'Drummondville, QC', - 1819479 => 'Drummondville, QC', - 1819523 => 'La Tuque, QC', - 1819533 => 'Grand-Mère, QC', - 1819535 => 'St-Boniface-de-Shawinigan, QC', - 1819536 => 'Shawinigan, QC', - 1819537 => 'Shawinigan, QC', - 1819538 => 'Grand-Mère, QC', - 1819539 => 'Shawinigan, QC', - 1819561 => 'Gatineau, QC', - 1819562 => 'Sherbrooke, QC', - 1819563 => 'Sherbrooke, QC', - 1819564 => 'Sherbrooke, QC', - 1819565 => 'Sherbrooke, QC', - 1819566 => 'Sherbrooke, QC', - 1819568 => 'Gatineau, QC', - 1819569 => 'Sherbrooke, QC', - 1819575 => 'Sherbrooke, QC', - 1819583 => 'Lac-Mégantic, QC', - 1819585 => 'Lac-des-Écorces, QC', - 1819587 => 'Ferme-Neuve, QC', - 1819595 => 'Gatineau, QC', - 1819604 => 'Victoriaville, QC', - 1819622 => 'Ville-Marie, QC', - 1819623 => 'Mont-Laurier, QC', - 1819627 => 'Temiscaming, QC', - 1819629 => 'Ville-Marie, QC', - 1819643 => 'Gatineau, QC', - 1819647 => 'Shawville, QC', - 1819648 => 'Campbell\'s Bay, QC', - 1819663 => 'Gatineau, QC', - 1819669 => 'Gatineau, QC', - 1819671 => 'Val-des-Monts, QC', - 1819681 => 'Mont-Tremblant, QC', - 1819682 => 'Gatineau, QC', - 1819684 => 'Gatineau, QC', - 1819685 => 'Gatineau, QC', - 1819686 => 'Village de Labelle, QC', - 1819691 => 'Trois-Rivières, QC', - 1819693 => 'Trois-Rivières, QC', - 1819694 => 'Trois-Rivières, QC', - 1819697 => 'Trois-Rivières, QC', - 1819727 => 'Amos, QC', - 1819732 => 'Amos, QC', - 1819737 => 'Senneterre, QC', - 1819739 => 'Matagami, QC', - 1819751 => 'Victoriaville, QC', - 1819752 => 'Victoriaville, QC', - 1819755 => 'Lebel-sur-Quévillon, QC', - 1819757 => 'Malartic, QC', - 1819758 => 'Victoriaville, QC', - 1819762 => 'Rouyn-Noranda, QC', - 1819763 => 'Rouyn-Noranda, QC', - 1819764 => 'Rouyn-Noranda, QC', - 1819770 => 'Gatineau, QC', - 1819771 => 'Gatineau, QC', - 1819772 => 'Gatineau, QC', - 1819775 => 'Gatineau, QC', - 1819776 => 'Gatineau, QC', - 1819777 => 'Gatineau, QC', - 1819778 => 'Gatineau, QC', - 1819791 => 'Sherbrooke, QC', - 1819797 => 'Rouyn-Noranda, QC', - 1819820 => 'Sherbrooke, QC', - 1819821 => 'Sherbrooke, QC', - 1819822 => 'Sherbrooke, QC', - 1819823 => 'Sherbrooke, QC', - 1819824 => 'Val-d\'Or, QC', - 1819825 => 'Val-d\'Or, QC', - 1819829 => 'Sherbrooke, QC', - 1819832 => 'East Angus, QC', - 1819839 => 'Danville, QC', - 1819840 => 'Trois-Rivières, QC', - 1819843 => 'Magog, QC', - 1819845 => 'Windsor, QC', - 1819847 => 'Magog, QC', - 1819849 => 'Coaticook, QC', - 1819850 => 'Drummondville, QC', - 1819864 => 'Sherbrooke, QC', - 1819868 => 'Magog, QC', - 1819874 => 'Val-d\'Or, QC', - 1819875 => 'Cookshire, QC', - 1819876 => 'Stanstead, QC', - 1819877 => 'Weedon, QC', - 1819879 => 'Asbestos, QC', - 1819893 => 'Gatineau, QC', - 1819983 => 'Saint-André-Avellin, QC', - 1819985 => 'Thurso, QC', - 1819986 => 'Gatineau, QC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1825.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1825.php deleted file mode 100644 index f732f4221..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1825.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Alberta', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1828.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1828.php deleted file mode 100644 index 3f805777a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1828.php +++ /dev/null @@ -1,149 +0,0 @@ - 'North Carolina', - 1828210 => 'Asheville, NC', - 1828213 => 'Asheville, NC', - 1828225 => 'Asheville, NC', - 1828232 => 'Asheville, NC', - 1828236 => 'Asheville, NC', - 1828241 => 'Catawba, NC', - 1828245 => 'Forest City, NC', - 1828246 => 'Waynesville, NC', - 1828247 => 'Forest City, NC', - 1828248 => 'Forest City, NC', - 1828250 => 'Asheville, NC', - 1828251 => 'Asheville, NC', - 1828252 => 'Asheville, NC', - 1828253 => 'Asheville, NC', - 1828254 => 'Asheville, NC', - 1828255 => 'Asheville, NC', - 1828256 => 'Hickory, NC', - 1828257 => 'Asheville, NC', - 1828258 => 'Asheville, NC', - 1828259 => 'Asheville, NC', - 1828261 => 'Hickory, NC', - 1828262 => 'Boone, NC', - 1828263 => 'Boone, NC', - 1828264 => 'Boone, NC', - 1828265 => 'Boone, NC', - 1828267 => 'Hickory, NC', - 1828268 => 'Boone, NC', - 1828274 => 'Asheville, NC', - 1828277 => 'Asheville, NC', - 1828281 => 'Asheville, NC', - 1828285 => 'Asheville, NC', - 1828287 => 'Rutherfordton, NC', - 1828288 => 'Rutherfordton, NC', - 1828293 => 'Cullowhee, NC', - 1828294 => 'Hickory, NC', - 1828295 => 'Blowing Rock, NC', - 1828298 => 'Asheville, NC', - 1828299 => 'Asheville, NC', - 1828304 => 'Hickory, NC', - 1828315 => 'Hickory, NC', - 1828321 => 'Andrews, NC', - 1828322 => 'Hickory, NC', - 1828323 => 'Hickory, NC', - 1828324 => 'Hickory, NC', - 1828326 => 'Hickory, NC', - 1828327 => 'Hickory, NC', - 1828328 => 'Hickory, NC', - 1828345 => 'Hickory, NC', - 1828348 => 'Asheville, NC', - 1828349 => 'Franklin, NC', - 1828350 => 'Asheville, NC', - 1828369 => 'Franklin, NC', - 1828389 => 'Hayesville, NC', - 1828396 => 'Granite Falls, NC', - 1828398 => 'Asheville, NC', - 1828428 => 'Maiden, NC', - 1828430 => 'Morganton, NC', - 1828433 => 'Morganton, NC', - 1828437 => 'Morganton, NC', - 1828438 => 'Morganton, NC', - 1828439 => 'Morganton, NC', - 1828452 => 'Waynesville, NC', - 1828453 => 'Ellenboro, NC', - 1828454 => 'Waynesville, NC', - 1828456 => 'Waynesville, NC', - 1828459 => 'Claremont, NC', - 1828464 => 'Newton, NC', - 1828465 => 'Newton, NC', - 1828466 => 'Newton, NC', - 1828478 => 'Sherrills Ford, NC', - 1828479 => 'Robbinsville, NC', - 1828488 => 'Bryson City, NC', - 1828495 => 'Hickory, NC', - 1828497 => 'Cherokee, NC', - 1828505 => 'Asheville, NC', - 1828524 => 'Franklin, NC', - 1828526 => 'Highlands, NC', - 1828572 => 'Lenoir, NC', - 1828575 => 'Asheville, NC', - 1828580 => 'Morganton, NC', - 1828584 => 'Morganton, NC', - 1828586 => 'Sylva, NC', - 1828625 => 'Lake Lure, NC', - 1828627 => 'Clyde, NC', - 1828628 => 'Fairview, NC', - 1828631 => 'Sylva, NC', - 1828632 => 'Taylorsville, NC', - 1828635 => 'Taylorsville, NC', - 1828645 => 'Weaverville, NC', - 1828648 => 'Canton, NC', - 1828649 => 'Marshall, NC', - 1828652 => 'Marion, NC', - 1828658 => 'Weaverville, NC', - 1828659 => 'Marion, NC', - 1828667 => 'Candler, NC', - 1828668 => 'Old Fort, NC', - 1828669 => 'Black Mountain, NC', - 1828670 => 'Asheville, NC', - 1828675 => 'Burnsville, NC', - 1828682 => 'Burnsville, NC', - 1828683 => 'Leicester, NC', - 1828685 => 'Hendersonville, NC', - 1828686 => 'Swannanoa, NC', - 1828688 => 'Bakersville, NC', - 1828689 => 'Mars Hill, NC', - 1828692 => 'Hendersonville, NC', - 1828693 => 'Hendersonville, NC', - 1828694 => 'Hendersonville, NC', - 1828696 => 'Hendersonville, NC', - 1828697 => 'Hendersonville, NC', - 1828698 => 'Hendersonville, NC', - 1828713 => 'Asheville, NC', - 1828726 => 'Lenoir, NC', - 1828733 => 'Newland, NC', - 1828737 => 'Newland, NC', - 1828738 => 'Marion, NC', - 1828743 => 'Cashiers, NC', - 1828749 => 'Saluda, NC', - 1828754 => 'Lenoir, NC', - 1828757 => 'Lenoir, NC', - 1828758 => 'Lenoir, NC', - 1828765 => 'Spruce Pine, NC', - 1828766 => 'Spruce Pine, NC', - 1828771 => 'Asheville, NC', - 1828773 => 'Boone, NC', - 1828835 => 'Murphy, NC', - 1828837 => 'Murphy, NC', - 1828855 => 'Hickory, NC', - 1828859 => 'Tryon, NC', - 1828862 => 'Brevard, NC', - 1828863 => 'Columbus, NC', - 1828874 => 'Valdese, NC', - 1828877 => 'Brevard, NC', - 1828879 => 'Valdese, NC', - 1828883 => 'Brevard, NC', - 1828884 => 'Brevard, NC', - 1828885 => 'Brevard, NC', - 1828894 => 'Columbus, NC', - 1828898 => 'Banner Elk, NC', - 1828926 => 'Maggie Valley, NC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1830.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1830.php deleted file mode 100644 index 735d9987c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1830.php +++ /dev/null @@ -1,93 +0,0 @@ - 'Texas', - 1830214 => 'New Braunfels, TX', - 1830216 => 'Floresville, TX', - 1830232 => 'Leakey, TX', - 1830238 => 'Hunt, TX', - 1830249 => 'Boerne, TX', - 1830257 => 'Kerrville, TX', - 1830278 => 'Uvalde, TX', - 1830281 => 'Pleasanton, TX', - 1830298 => 'Laughlin AFB, TX', - 1830303 => 'Seguin, TX', - 1830331 => 'Boerne, TX', - 1830334 => 'Pearsall, TX', - 1830336 => 'Boerne, TX', - 1830367 => 'Ingram, TX', - 1830372 => 'Seguin, TX', - 1830374 => 'Crystal City, TX', - 1830379 => 'Seguin, TX', - 1830393 => 'Floresville, TX', - 1830401 => 'Seguin, TX', - 1830426 => 'Hondo, TX', - 1830438 => 'Bulverde, TX', - 1830515 => 'New Braunfels, TX', - 1830537 => 'Boerne, TX', - 1830538 => 'Castroville, TX', - 1830563 => 'Brackettville, TX', - 1830569 => 'Pleasanton, TX', - 1830583 => 'Kenedy, TX', - 1830591 => 'Uvalde, TX', - 1830598 => 'Horseshoe Bay, TX', - 1830606 => 'New Braunfels, TX', - 1830608 => 'New Braunfels, TX', - 1830609 => 'New Braunfels, TX', - 1830620 => 'New Braunfels, TX', - 1830624 => 'New Braunfels, TX', - 1830625 => 'New Braunfels, TX', - 1830626 => 'New Braunfels, TX', - 1830627 => 'New Braunfels, TX', - 1830629 => 'New Braunfels, TX', - 1830634 => 'Center Point, TX', - 1830643 => 'New Braunfels, TX', - 1830663 => 'Devine, TX', - 1830665 => 'Devine, TX', - 1830672 => 'Gonzales, TX', - 1830683 => 'Rocksprings, TX', - 1830693 => 'Marble Falls, TX', - 1830708 => 'New Braunfels, TX', - 1830741 => 'Hondo, TX', - 1830742 => 'Poteet, TX', - 1830755 => 'Boerne, TX', - 1830757 => 'Eagle Pass, TX', - 1830758 => 'Eagle Pass, TX', - 1830768 => 'Del Rio, TX', - 1830769 => 'Jourdanton, TX', - 1830772 => 'Lytle, TX', - 1830773 => 'Eagle Pass, TX', - 1830774 => 'Del Rio, TX', - 1830775 => 'Del Rio, TX', - 1830778 => 'Del Rio, TX', - 1830779 => 'La Vernia, TX', - 1830780 => 'Karnes City, TX', - 1830792 => 'Kerrville, TX', - 1830796 => 'Bandera, TX', - 1830798 => 'Marble Falls, TX', - 1830816 => 'Boerne, TX', - 1830833 => 'Blanco, TX', - 1830868 => 'Johnson City, TX', - 1830875 => 'Luling, TX', - 1830876 => 'Carrizo Springs, TX', - 1830879 => 'Cotulla, TX', - 1830885 => 'Spring Branch, TX', - 1830895 => 'Kerrville, TX', - 1830896 => 'Kerrville, TX', - 1830899 => 'Canyon Lake, TX', - 1830931 => 'Castroville, TX', - 1830935 => 'Canyon Lake, TX', - 1830964 => 'Canyon Lake, TX', - 1830965 => 'Dilley, TX', - 1830966 => 'Utopia, TX', - 1830981 => 'Boerne, TX', - 1830990 => 'Fredericksburg, TX', - 1830992 => 'Fredericksburg, TX', - 1830995 => 'Comfort, TX', - 1830996 => 'Stockdale, TX', - 1830997 => 'Fredericksburg, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1831.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1831.php deleted file mode 100644 index df3b82ec0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1831.php +++ /dev/null @@ -1,99 +0,0 @@ - 'California', - 1831333 => 'Monterey, CA', - 1831335 => 'Felton, CA', - 1831336 => 'Ben Lomond, CA', - 1831338 => 'Boulder Creek, CA', - 1831372 => 'Monterey, CA', - 1831373 => 'Monterey, CA', - 1831375 => 'Monterey, CA', - 1831384 => 'Marina, CA', - 1831385 => 'King City, CA', - 1831386 => 'King City, CA', - 1831393 => 'Seaside, CA', - 1831394 => 'Seaside, CA', - 1831420 => 'Santa Cruz, CA', - 1831421 => 'Santa Cruz, CA', - 1831422 => 'Salinas, CA', - 1831423 => 'Santa Cruz, CA', - 1831424 => 'Salinas, CA', - 1831425 => 'Santa Cruz, CA', - 1831426 => 'Santa Cruz, CA', - 1831427 => 'Santa Cruz, CA', - 1831429 => 'Santa Cruz, CA', - 1831430 => 'Scotts Valley, CA', - 1831438 => 'Scotts Valley, CA', - 1831439 => 'Scotts Valley, CA', - 1831440 => 'Scotts Valley, CA', - 1831442 => 'Salinas, CA', - 1831443 => 'Salinas, CA', - 1831444 => 'Salinas, CA', - 1831449 => 'Salinas, CA', - 1831454 => 'Santa Cruz, CA', - 1831455 => 'Salinas, CA', - 1831457 => 'Santa Cruz, CA', - 1831458 => 'Santa Cruz, CA', - 1831459 => 'Santa Cruz, CA', - 1831460 => 'Santa Cruz, CA', - 1831466 => 'Santa Cruz, CA', - 1831469 => 'Santa Cruz, CA', - 1831479 => 'Santa Cruz, CA', - 1831484 => 'Salinas, CA', - 1831600 => 'Santa Cruz, CA', - 1831620 => 'Carmel, CA', - 1831622 => 'Carmel, CA', - 1831623 => 'San Jn Bautista, CA', - 1831624 => 'Carmel, CA', - 1831625 => 'Carmel, CA', - 1831626 => 'Carmel, CA', - 1831630 => 'Hollister, CA', - 1831633 => 'Castroville, CA', - 1831635 => 'Hollister, CA', - 1831636 => 'Hollister, CA', - 1831637 => 'Hollister, CA', - 1831638 => 'Hollister, CA', - 1831643 => 'Monterey, CA', - 1831644 => 'Monterey, CA', - 1831646 => 'Monterey, CA', - 1831647 => 'Monterey, CA', - 1831648 => 'Monterey, CA', - 1831649 => 'Monterey, CA', - 1831655 => 'Monterey, CA', - 1831656 => 'Monterey, CA', - 1831659 => 'Carmel Valley, CA', - 1831662 => 'Aptos, CA', - 1831663 => 'Salinas, CA', - 1831674 => 'Greenfield, CA', - 1831675 => 'Gonzales, CA', - 1831678 => 'Soledad, CA', - 1831684 => 'Aptos, CA', - 1831685 => 'Aptos, CA', - 1831688 => 'Aptos, CA', - 1831722 => 'Watsonville, CA', - 1831724 => 'Watsonville, CA', - 1831726 => 'Aromas, CA', - 1831728 => 'Watsonville, CA', - 1831751 => 'Salinas, CA', - 1831753 => 'Salinas, CA', - 1831754 => 'Salinas, CA', - 1831755 => 'Salinas, CA', - 1831757 => 'Salinas, CA', - 1831758 => 'Salinas, CA', - 1831759 => 'Salinas, CA', - 1831761 => 'Watsonville, CA', - 1831763 => 'Watsonville, CA', - 1831768 => 'Watsonville, CA', - 1831769 => 'Salinas, CA', - 1831771 => 'Salinas, CA', - 1831786 => 'Watsonville, CA', - 1831796 => 'Salinas, CA', - 1831883 => 'Marina, CA', - 1831899 => 'Seaside, CA', - 1831998 => 'Salinas, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1832.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1832.php deleted file mode 100644 index 95942916e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1832.php +++ /dev/null @@ -1,41 +0,0 @@ - 'Texas', - 1832203 => 'Houston, TX', - 1832230 => 'Houston, TX', - 1832237 => 'Houston, TX', - 1832242 => 'Houston, TX', - 1832243 => 'Houston, TX', - 1832249 => 'Houston, TX', - 1832251 => 'Houston, TX', - 1832286 => 'Houston, TX', - 1832325 => 'Houston, TX', - 1832328 => 'Houston, TX', - 1832355 => 'Houston, TX', - 1832358 => 'Houston, TX', - 1832426 => 'Houston, TX', - 1832437 => 'Katy, TX', - 1832467 => 'Houston, TX', - 1832476 => 'Houston, TX', - 1832538 => 'Houston, TX', - 1832582 => 'Houston, TX', - 1832593 => 'Houston, TX', - 1832623 => 'Houston, TX', - 1832632 => 'League City, TX', - 1832644 => 'Humble, TX', - 1832649 => 'Houston, TX', - 1832736 => 'Pearland, TX', - 1832767 => 'Houston, TX', - 1832778 => 'Houston, TX', - 1832813 => 'Spring, TX', - 1832822 => 'Houston, TX', - 1832824 => 'Houston, TX', - 1832826 => 'Houston, TX', - 1832912 => 'Houston, TX', - 1832934 => 'Magnolia, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1843.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1843.php deleted file mode 100644 index 56f699b4f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1843.php +++ /dev/null @@ -1,189 +0,0 @@ - 'South Carolina', - 1843207 => 'North Charleston, SC', - 1843208 => 'Hardeeville, SC', - 1843213 => 'Myrtle Beach, SC', - 1843215 => 'Myrtle Beach, SC', - 1843216 => 'Mount Pleasant, SC', - 1843228 => 'Beaufort, SC', - 1843234 => 'Conway, SC', - 1843235 => 'Pawleys Island, SC', - 1843236 => 'Myrtle Beach, SC', - 1843237 => 'Pawleys Island, SC', - 1843238 => 'Surfside Beach, SC', - 1843241 => 'Myrtle Beach, SC', - 1843248 => 'Conway, SC', - 1843261 => 'Summerville, SC', - 1843264 => 'Andrews, SC', - 1843292 => 'Florence, SC', - 1843293 => 'Myrtle Beach, SC', - 1843294 => 'Myrtle Beach, SC', - 1843317 => 'Florence, SC', - 1843326 => 'Lamar, SC', - 1843332 => 'Hartsville, SC', - 1843339 => 'Hartsville, SC', - 1843341 => 'Hilton Head Isle, SC', - 1843342 => 'Hilton Head Isle, SC', - 1843346 => 'Timmonsville, SC', - 1843347 => 'Conway, SC', - 1843349 => 'Conway, SC', - 1843354 => 'Kingstree, SC', - 1843355 => 'Kingstree, SC', - 1843357 => 'Murrells Inlet, SC', - 1843358 => 'Aynor, SC', - 1843363 => 'Hilton Head Isle, SC', - 1843365 => 'Conway, SC', - 1843369 => 'Conway, SC', - 1843374 => 'Lake City, SC', - 1843379 => 'Beaufort, SC', - 1843382 => 'Kingstree, SC', - 1843383 => 'Hartsville, SC', - 1843386 => 'Johnsonville, SC', - 1843388 => 'Mount Pleasant, SC', - 1843393 => 'Darlington, SC', - 1843394 => 'Lake City, SC', - 1843395 => 'Darlington, SC', - 1843397 => 'Conway, SC', - 1843398 => 'Darlington, SC', - 1843402 => 'Charleston, SC', - 1843406 => 'Charleston, SC', - 1843407 => 'Florence, SC', - 1843413 => 'Florence, SC', - 1843416 => 'Mount Pleasant, SC', - 1843423 => 'Marion, SC', - 1843444 => 'Myrtle Beach, SC', - 1843445 => 'Myrtle Beach, SC', - 1843448 => 'Myrtle Beach, SC', - 1843449 => 'Myrtle Beach, SC', - 1843454 => 'Bennettsville, SC', - 1843455 => 'Myrtle Beach, SC', - 1843464 => 'Mullins, SC', - 1843479 => 'Bennettsville, SC', - 1843488 => 'Conway, SC', - 1843492 => 'Myrtle Beach, SC', - 1843493 => 'Pamplico, SC', - 1843497 => 'Myrtle Beach, SC', - 1843520 => 'Georgetown, SC', - 1843521 => 'Beaufort, SC', - 1843522 => 'Beaufort, SC', - 1843524 => 'Beaufort, SC', - 1843525 => 'Beaufort, SC', - 1843527 => 'Georgetown, SC', - 1843529 => 'North Charleston, SC', - 1843537 => 'Cheraw, SC', - 1843538 => 'Walterboro, SC', - 1843545 => 'Georgetown, SC', - 1843546 => 'Georgetown, SC', - 1843549 => 'Walterboro, SC', - 1843552 => 'North Charleston, SC', - 1843556 => 'Charleston, SC', - 1843558 => 'Hemingway, SC', - 1843559 => 'Johns Island, SC', - 1843563 => 'St. George, SC', - 1843567 => 'St. Stephen, SC', - 1843571 => 'Charleston, SC', - 1843573 => 'Charleston, SC', - 1843577 => 'Charleston, SC', - 1843588 => 'Folly Beach, SC', - 1843623 => 'Chesterfield, SC', - 1843626 => 'Myrtle Beach, SC', - 1843629 => 'Florence, SC', - 1843645 => 'Ridgeland, SC', - 1843650 => 'Myrtle Beach, SC', - 1843651 => 'Murrells Inlet, SC', - 1843652 => 'Murrells Inlet, SC', - 1843654 => 'Mount Pleasant, SC', - 1843658 => 'Jefferson, SC', - 1843659 => 'Turbeville, SC', - 1843661 => 'Florence, SC', - 1843662 => 'Florence, SC', - 1843664 => 'Florence, SC', - 1843665 => 'Florence, SC', - 1843667 => 'Florence, SC', - 1843669 => 'Florence, SC', - 1843671 => 'Hilton Head Isle, SC', - 1843672 => 'Pageland, SC', - 1843673 => 'Florence, SC', - 1843676 => 'Florence, SC', - 1843679 => 'Florence, SC', - 1843681 => 'Hilton Head Isle, SC', - 1843682 => 'Hilton Head Isle, SC', - 1843686 => 'Hilton Head Isle, SC', - 1843689 => 'Hilton Head Isle, SC', - 1843692 => 'Myrtle Beach, SC', - 1843695 => 'Summerville, SC', - 1843705 => 'Bluffton, SC', - 1843706 => 'Bluffton, SC', - 1843712 => 'Myrtle Beach, SC', - 1843716 => 'Loris, SC', - 1843720 => 'Charleston, SC', - 1843722 => 'Charleston, SC', - 1843723 => 'Charleston, SC', - 1843724 => 'Charleston, SC', - 1843726 => 'Ridgeland, SC', - 1843727 => 'Charleston, SC', - 1843740 => 'North Charleston, SC', - 1843744 => 'North Charleston, SC', - 1843745 => 'North Charleston, SC', - 1843747 => 'North Charleston, SC', - 1843752 => 'Latta, SC', - 1843756 => 'Loris, SC', - 1843757 => 'Bluffton, SC', - 1843760 => 'North Charleston, SC', - 1843761 => 'Moncks Corner, SC', - 1843762 => 'Charleston, SC', - 1843763 => 'Charleston, SC', - 1843766 => 'Charleston, SC', - 1843767 => 'North Charleston, SC', - 1843768 => 'Johns Island, SC', - 1843769 => 'Charleston, SC', - 1843771 => 'Summerville, SC', - 1843774 => 'Dillon, SC', - 1843777 => 'Florence, SC', - 1843782 => 'Walterboro, SC', - 1843784 => 'Hardeeville, SC', - 1843785 => 'Hilton Head Isle, SC', - 1843789 => 'Charleston, SC', - 1843792 => 'Charleston, SC', - 1843795 => 'Charleston, SC', - 1843815 => 'Bluffton, SC', - 1843821 => 'Summerville, SC', - 1843832 => 'Summerville, SC', - 1843835 => 'Cottageville, SC', - 1843836 => 'Bluffton, SC', - 1843837 => 'Bluffton, SC', - 1843838 => 'Saint Helena Island, SC', - 1843839 => 'Myrtle Beach, SC', - 1843841 => 'Dillon, SC', - 1843842 => 'Hilton Head Isle, SC', - 1843846 => 'Beaufort, SC', - 1843849 => 'Mount Pleasant, SC', - 1843851 => 'Summerville, SC', - 1843852 => 'Charleston, SC', - 1843853 => 'Charleston, SC', - 1843856 => 'Mount Pleasant, SC', - 1843869 => 'Edisto Island, SC', - 1843871 => 'Summerville, SC', - 1843873 => 'Summerville, SC', - 1843875 => 'Summerville, SC', - 1843876 => 'Charleston, SC', - 1843881 => 'Mount Pleasant, SC', - 1843884 => 'Mount Pleasant, SC', - 1843886 => 'Isle of Palms, SC', - 1843889 => 'Hollywood, SC', - 1843899 => 'Moncks Corner, SC', - 1843903 => 'Myrtle Beach, SC', - 1843915 => 'Conway, SC', - 1843916 => 'Myrtle Beach, SC', - 1843937 => 'Charleston, SC', - 1843946 => 'Myrtle Beach, SC', - 1843958 => 'Charleston, SC', - 1843971 => 'Mount Pleasant, SC', - 1843986 => 'Beaufort, SC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1845.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1845.php deleted file mode 100644 index c5fc8f3ff..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1845.php +++ /dev/null @@ -1,145 +0,0 @@ - 'New York', - 1845225 => 'Carmel, NY', - 1845228 => 'Carmel, NY', - 1845229 => 'Hyde Park, NY', - 1845231 => 'Fishkill, NY', - 1845236 => 'Marlboro, NY', - 1845246 => 'Saugerties, NY', - 1845247 => 'Saugerties, NY', - 1845252 => 'Narrowsburg, NY', - 1845255 => 'New Paltz, NY', - 1845256 => 'New Paltz, NY', - 1845258 => 'Pine Island, NY', - 1845265 => 'Cold Spring, NY', - 1845267 => 'Congers, NY', - 1845268 => 'Congers, NY', - 1845278 => 'Brewster, NY', - 1845279 => 'Brewster, NY', - 1845291 => 'Goshen, NY', - 1845292 => 'Liberty, NY', - 1845294 => 'Goshen, NY', - 1845296 => 'Wappingers Falls, NY', - 1845297 => 'Wappingers Falls, NY', - 1845298 => 'Wappingers Falls, NY', - 1845331 => 'Kingston, NY', - 1845334 => 'Kingston, NY', - 1845336 => 'Kingston, NY', - 1845338 => 'Kingston, NY', - 1845339 => 'Kingston, NY', - 1845340 => 'Kingston, NY', - 1845341 => 'Middletown, NY', - 1845342 => 'Middletown, NY', - 1845343 => 'Middletown, NY', - 1845344 => 'Middletown, NY', - 1845348 => 'Nyack, NY', - 1845351 => 'Tuxedo Park, NY', - 1845353 => 'Nyack, NY', - 1845357 => 'Suffern, NY', - 1845358 => 'Nyack, NY', - 1845364 => 'Pomona, NY', - 1845368 => 'Suffern, NY', - 1845369 => 'Suffern, NY', - 1845373 => 'Amenia, NY', - 1845374 => 'New Hampton, NY', - 1845386 => 'Otisville, NY', - 1845424 => 'Garrison, NY', - 1845427 => 'Maybrook, NY', - 1845431 => 'Poughkeepsie, NY', - 1845439 => 'Livingston Manor, NY', - 1845446 => 'Highland Falls, NY', - 1845452 => 'Poughkeepsie, NY', - 1845454 => 'Poughkeepsie, NY', - 1845457 => 'Montgomery, NY', - 1845462 => 'Poughkeepsie, NY', - 1845463 => 'Poughkeepsie, NY', - 1845469 => 'Chester, NY', - 1845471 => 'Poughkeepsie, NY', - 1845473 => 'Poughkeepsie, NY', - 1845477 => 'Greenwood Lake, NY', - 1845482 => 'Jeffersonville, NY', - 1845483 => 'Poughkeepsie, NY', - 1845485 => 'Poughkeepsie, NY', - 1845486 => 'Poughkeepsie, NY', - 1845496 => 'Washingtonville, NY', - 1845497 => 'Washingtonville, NY', - 1845528 => 'Putnam Valley, NY', - 1845534 => 'Cornwall, NY', - 1845561 => 'Newburgh, NY', - 1845562 => 'Newburgh, NY', - 1845563 => 'Newburgh, NY', - 1845564 => 'Newburgh, NY', - 1845565 => 'Newburgh, NY', - 1845566 => 'Newburgh, NY', - 1845568 => 'Newburgh, NY', - 1845569 => 'Newburgh, NY', - 1845575 => 'Poughkeepsie, NY', - 1845586 => 'Margaretville, NY', - 1845615 => 'Goshen, NY', - 1845621 => 'Mahopac, NY', - 1845623 => 'Nanuet, NY', - 1845624 => 'Nanuet, NY', - 1845626 => 'Kerhonkson, NY', - 1845627 => 'Nanuet, NY', - 1845628 => 'Mahopac, NY', - 1845632 => 'Wappingers Falls, NY', - 1845634 => 'New City, NY', - 1845635 => 'Pleasant Valley, NY', - 1845638 => 'New City, NY', - 1845639 => 'New City, NY', - 1845647 => 'Ellenville, NY', - 1845651 => 'Florida, NY', - 1845676 => 'Andes, NY', - 1845677 => 'Millbrook, NY', - 1845679 => 'Woodstock, NY', - 1845687 => 'Stone Ridge, NY', - 1845691 => 'Highland, NY', - 1845692 => 'Middletown, NY', - 1845695 => 'Middletown, NY', - 1845703 => 'Middletown, NY', - 1845708 => 'New City, NY', - 1845724 => 'Poughquag, NY', - 1845733 => 'Bloomingburg, NY', - 1845735 => 'Pearl River, NY', - 1845744 => 'Pine Bush, NY', - 1845753 => 'Sloatsburg, NY', - 1845758 => 'Red Hook, NY', - 1845774 => 'Monroe, NY', - 1845778 => 'Walden, NY', - 1845781 => 'Monroe, NY', - 1845782 => 'Monroe, NY', - 1845783 => 'Monroe, NY', - 1845791 => 'Monticello, NY', - 1845794 => 'Monticello, NY', - 1845795 => 'Milton, NY', - 1845796 => 'Monticello, NY', - 1845831 => 'Beacon, NY', - 1845832 => 'Wingdale, NY', - 1845838 => 'Beacon, NY', - 1845849 => 'Poughkeepsie, NY', - 1845855 => 'Pawling, NY', - 1845856 => 'Port Jervis, NY', - 1845858 => 'Port Jervis, NY', - 1845868 => 'Stanfordville, NY', - 1845876 => 'Rhinebeck, NY', - 1845877 => 'Dover Plains, NY', - 1845878 => 'Patterson, NY', - 1845887 => 'Callicoon, NY', - 1845888 => 'Wurtsboro, NY', - 1845895 => 'Wallkill, NY', - 1845896 => 'Fishkill, NY', - 1845897 => 'Fishkill, NY', - 1845928 => 'Central Valley, NY', - 1845938 => 'West Point, NY', - 1845942 => 'Stony Point, NY', - 1845985 => 'Grahamsville, NY', - 1845986 => 'Warwick, NY', - 1845987 => 'Warwick, NY', - 1845988 => 'Warwick, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1847.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1847.php deleted file mode 100644 index 4b31c71b7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1847.php +++ /dev/null @@ -1,199 +0,0 @@ - 'Illinois', - 1847202 => 'Palatine, IL', - 1847205 => 'Northbrook, IL', - 1847214 => 'Elgin, IL', - 1847221 => 'Palatine, IL', - 1847223 => 'Grayslake, IL', - 1847231 => 'Grayslake, IL', - 1847234 => 'Lake Forest, IL', - 1847236 => 'Deerfield, IL', - 1847240 => 'Schaumburg, IL', - 1847249 => 'Waukegan, IL', - 1847251 => 'Wilmette, IL', - 1847256 => 'Wilmette, IL', - 1847266 => 'Highland Park, IL', - 1847272 => 'Northbrook, IL', - 1847277 => 'Barrington, IL', - 1847288 => 'Franklin Park, IL', - 1847289 => 'Elgin, IL', - 1847291 => 'Northbrook, IL', - 1847292 => 'Park Ridge, IL', - 1847294 => 'Des Plaines, IL', - 1847295 => 'Lake Forest, IL', - 1847296 => 'Des Plaines, IL', - 1847297 => 'Des Plaines, IL', - 1847298 => 'Des Plaines, IL', - 1847299 => 'Des Plaines, IL', - 1847301 => 'Schaumburg, IL', - 1847304 => 'Barrington, IL', - 1847316 => 'Evanston, IL', - 1847317 => 'Deerfield, IL', - 1847318 => 'Park Ridge, IL', - 1847328 => 'Evanston, IL', - 1847329 => 'Skokie, IL', - 1847330 => 'Schaumburg, IL', - 1847332 => 'Evanston, IL', - 1847336 => 'Waukegan, IL', - 1847352 => 'Schaumburg, IL', - 1847356 => 'Lake Villa, IL', - 1847358 => 'Palatine, IL', - 1847359 => 'Palatine, IL', - 1847360 => 'Waukegan, IL', - 1847362 => 'Libertyville, IL', - 1847367 => 'Libertyville, IL', - 1847377 => 'Waukegan, IL', - 1847381 => 'Barrington, IL', - 1847382 => 'Barrington, IL', - 1847391 => 'Des Plaines, IL', - 1847395 => 'Antioch, IL', - 1847412 => 'Northbrook, IL', - 1847413 => 'Schaumburg, IL', - 1847424 => 'Evanston, IL', - 1847425 => 'Evanston, IL', - 1847429 => 'Elgin, IL', - 1847432 => 'Highland Park, IL', - 1847433 => 'Highland Park, IL', - 1847438 => 'Lake Zurich, IL', - 1847446 => 'Winnetka, IL', - 1847451 => 'Franklin Park, IL', - 1847455 => 'Franklin Park, IL', - 1847458 => 'Algonquin, IL', - 1847462 => 'Cary, IL', - 1847466 => 'Schaumburg, IL', - 1847468 => 'Elgin, IL', - 1847473 => 'North Chicago, IL', - 1847475 => 'Evanston, IL', - 1847480 => 'Northbrook, IL', - 1847482 => 'Lake Forest, IL', - 1847486 => 'Glenview, IL', - 1847487 => 'Wauconda, IL', - 1847488 => 'Elgin, IL', - 1847491 => 'Evanston, IL', - 1847492 => 'Evanston, IL', - 1847498 => 'Northbrook, IL', - 1847509 => 'Northbrook, IL', - 1847515 => 'Huntley, IL', - 1847516 => 'Cary, IL', - 1847517 => 'Schaumburg, IL', - 1847518 => 'Park Ridge, IL', - 1847519 => 'Schaumburg, IL', - 1847524 => 'Schaumburg, IL', - 1847526 => 'Wauconda, IL', - 1847531 => 'Elgin, IL', - 1847535 => 'Lake Forest, IL', - 1847540 => 'Lake Zurich, IL', - 1847543 => 'Grayslake, IL', - 1847548 => 'Grayslake, IL', - 1847549 => 'Libertyville, IL', - 1847550 => 'Lake Zurich, IL', - 1847559 => 'Northbrook, IL', - 1847562 => 'Northbrook, IL', - 1847564 => 'Northbrook, IL', - 1847566 => 'Mundelein, IL', - 1847568 => 'Skokie, IL', - 1847570 => 'Evanston, IL', - 1847578 => 'North Chicago, IL', - 1847579 => 'Highland Park, IL', - 1847584 => 'Schaumburg, IL', - 1847587 => 'Fox Lake, IL', - 1847588 => 'Niles, IL', - 1847599 => 'Waukegan, IL', - 1847605 => 'Schaumburg, IL', - 1847608 => 'Elgin, IL', - 1847618 => 'Arlington Hts, IL', - 1847619 => 'Schaumburg, IL', - 1847622 => 'Elgin, IL', - 1847623 => 'Waukegan, IL', - 1847625 => 'Waukegan, IL', - 1847635 => 'Des Plaines, IL', - 1847639 => 'Cary, IL', - 1847647 => 'Niles, IL', - 1847657 => 'Glenview, IL', - 1847658 => 'Algonquin, IL', - 1847662 => 'Waukegan, IL', - 1847669 => 'Huntley, IL', - 1847672 => 'Waukegan, IL', - 1847673 => 'Skokie, IL', - 1847674 => 'Skokie, IL', - 1847675 => 'Skokie, IL', - 1847676 => 'Skokie, IL', - 1847677 => 'Skokie, IL', - 1847679 => 'Skokie, IL', - 1847680 => 'Libertyville, IL', - 1847681 => 'Highland Park, IL', - 1847683 => 'Hampshire, IL', - 1847688 => 'North Chicago, IL', - 1847689 => 'North Chicago, IL', - 1847692 => 'Park Ridge, IL', - 1847695 => 'Elgin, IL', - 1847696 => 'Park Ridge, IL', - 1847697 => 'Elgin, IL', - 1847698 => 'Park Ridge, IL', - 1847705 => 'Palatine, IL', - 1847714 => 'Northbrook, IL', - 1847723 => 'Park Ridge, IL', - 1847724 => 'Glenview, IL', - 1847726 => 'Lake Zurich, IL', - 1847729 => 'Glenview, IL', - 1847730 => 'Glenview, IL', - 1847731 => 'Zion, IL', - 1847733 => 'Evanston, IL', - 1847735 => 'Lake Forest, IL', - 1847741 => 'Elgin, IL', - 1847742 => 'Elgin, IL', - 1847746 => 'Zion, IL', - 1847763 => 'Skokie, IL', - 1847776 => 'Palatine, IL', - 1847782 => 'Waukegan, IL', - 1847784 => 'Northfield, IL', - 1847813 => 'Des Plaines, IL', - 1847823 => 'Park Ridge, IL', - 1847824 => 'Des Plaines, IL', - 1847825 => 'Park Ridge, IL', - 1847827 => 'Des Plaines, IL', - 1847831 => 'Highland Park, IL', - 1847832 => 'Glenview, IL', - 1847835 => 'Glencoe, IL', - 1847837 => 'Mundelein, IL', - 1847838 => 'Antioch, IL', - 1847841 => 'Elgin, IL', - 1847842 => 'Barrington, IL', - 1847853 => 'Wilmette, IL', - 1847854 => 'Algonquin, IL', - 1847855 => 'Gurnee, IL', - 1847856 => 'Gurnee, IL', - 1847864 => 'Evanston, IL', - 1847866 => 'Evanston, IL', - 1847869 => 'Evanston, IL', - 1847872 => 'Zion, IL', - 1847888 => 'Elgin, IL', - 1847891 => 'Schaumburg, IL', - 1847895 => 'Schaumburg, IL', - 1847920 => 'Wilmette, IL', - 1847923 => 'Schaumburg, IL', - 1847925 => 'Schaumburg, IL', - 1847926 => 'Highland Park, IL', - 1847931 => 'Elgin, IL', - 1847933 => 'Skokie, IL', - 1847934 => 'Palatine, IL', - 1847940 => 'Deerfield, IL', - 1847945 => 'Deerfield, IL', - 1847948 => 'Deerfield, IL', - 1847949 => 'Mundelein, IL', - 1847963 => 'Palatine, IL', - 1847969 => 'Schaumburg, IL', - 1847970 => 'Mundelein, IL', - 1847973 => 'Fox Lake, IL', - 1847982 => 'Skokie, IL', - 1847985 => 'Schaumburg, IL', - 1847991 => 'Palatine, IL', - 1847995 => 'Schaumburg, IL', - 1847998 => 'Glenview, IL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1848.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1848.php deleted file mode 100644 index c1b770d44..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1848.php +++ /dev/null @@ -1,9 +0,0 @@ - 'New Jersey', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1850.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1850.php deleted file mode 100644 index 0c3fa02f4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1850.php +++ /dev/null @@ -1,188 +0,0 @@ - 'Florida', - 1850210 => 'Tallahassee, FL', - 1850215 => 'Panama City, FL', - 1850216 => 'Tallahassee, FL', - 1850219 => 'Tallahassee, FL', - 1850222 => 'Tallahassee, FL', - 1850224 => 'Tallahassee, FL', - 1850227 => 'Port St. Joe, FL', - 1850229 => 'Port St. Joe, FL', - 1850231 => 'Santa Rosa Beach, FL', - 1850232 => 'Pensacola, FL', - 1850243 => 'Fort Walton Bch, FL', - 1850244 => 'Fort Walton Bch, FL', - 1850248 => 'Lynn Haven, FL', - 1850251 => 'Tallahassee, FL', - 1850256 => 'Century, FL', - 1850258 => 'Panama City, FL', - 1850263 => 'Graceville, FL', - 1850265 => 'Lynn Haven, FL', - 1850267 => 'Santa Rosa Beach, FL', - 1850269 => 'Destin, FL', - 1850270 => 'Tallahassee, FL', - 1850271 => 'Lynn Haven, FL', - 1850279 => 'Niceville, FL', - 1850297 => 'Tallahassee, FL', - 1850309 => 'Tallahassee, FL', - 1850325 => 'Tallahassee, FL', - 1850329 => 'Tallahassee, FL', - 1850332 => 'Pensacola, FL', - 1850383 => 'Tallahassee, FL', - 1850385 => 'Tallahassee, FL', - 1850386 => 'Tallahassee, FL', - 1850391 => 'Tallahassee, FL', - 1850398 => 'Crestview, FL', - 1850402 => 'Tallahassee, FL', - 1850416 => 'Pensacola, FL', - 1850421 => 'Tallahassee, FL', - 1850422 => 'Tallahassee, FL', - 1850423 => 'Crestview, FL', - 1850424 => 'Destin, FL', - 1850425 => 'Tallahassee, FL', - 1850429 => 'Pensacola, FL', - 1850431 => 'Tallahassee, FL', - 1850432 => 'Pensacola, FL', - 1850433 => 'Pensacola, FL', - 1850434 => 'Pensacola, FL', - 1850435 => 'Pensacola, FL', - 1850436 => 'Pensacola, FL', - 1850437 => 'Pensacola, FL', - 1850438 => 'Pensacola, FL', - 1850439 => 'Pensacola, FL', - 1850444 => 'Pensacola, FL', - 1850452 => 'Pensacola, FL', - 1850453 => 'Pensacola, FL', - 1850455 => 'Pensacola, FL', - 1850456 => 'Pensacola, FL', - 1850457 => 'Pensacola, FL', - 1850458 => 'Pensacola, FL', - 1850460 => 'Destin, FL', - 1850466 => 'Pensacola, FL', - 1850469 => 'Pensacola, FL', - 1850470 => 'Pensacola, FL', - 1850471 => 'Pensacola, FL', - 1850473 => 'Pensacola, FL', - 1850474 => 'Pensacola, FL', - 1850475 => 'Pensacola, FL', - 1850476 => 'Pensacola, FL', - 1850477 => 'Pensacola, FL', - 1850478 => 'Pensacola, FL', - 1850479 => 'Pensacola, FL', - 1850481 => 'Panama City, FL', - 1850482 => 'Marianna, FL', - 1850484 => 'Pensacola, FL', - 1850488 => 'Tallahassee, FL', - 1850492 => 'Pensacola, FL', - 1850494 => 'Pensacola, FL', - 1850497 => 'Pensacola, FL', - 1850505 => 'Pensacola, FL', - 1850508 => 'Tallahassee, FL', - 1850514 => 'Tallahassee, FL', - 1850522 => 'Panama City, FL', - 1850523 => 'Tallahassee, FL', - 1850526 => 'Marianna, FL', - 1850535 => 'Vernon, FL', - 1850537 => 'Baker, FL', - 1850539 => 'Havana, FL', - 1850545 => 'Tallahassee, FL', - 1850547 => 'Bonifay, FL', - 1850561 => 'Tallahassee, FL', - 1850562 => 'Tallahassee, FL', - 1850574 => 'Tallahassee, FL', - 1850575 => 'Tallahassee, FL', - 1850576 => 'Tallahassee, FL', - 1850577 => 'Tallahassee, FL', - 1850580 => 'Tallahassee, FL', - 1850581 => 'Mary Esther, FL', - 1850584 => 'Perry, FL', - 1850587 => 'Molino, FL', - 1850592 => 'Grand Ridge, FL', - 1850593 => 'Sneads, FL', - 1850595 => 'Pensacola, FL', - 1850597 => 'Tallahassee, FL', - 1850607 => 'Pensacola, FL', - 1850622 => 'Santa Rosa Beach, FL', - 1850623 => 'Milton, FL', - 1850626 => 'Milton, FL', - 1850627 => 'Quincy, FL', - 1850638 => 'Chipley, FL', - 1850639 => 'Wewahitchka, FL', - 1850640 => 'Panama City, FL', - 1850643 => 'Bristol, FL', - 1850644 => 'Tallahassee, FL', - 1850650 => 'Destin, FL', - 1850651 => 'Shalimar, FL', - 1850653 => 'Apalachicola, FL', - 1850654 => 'Destin, FL', - 1850656 => 'Tallahassee, FL', - 1850663 => 'Chattahoochee, FL', - 1850664 => 'Fort Walton Bch, FL', - 1850668 => 'Tallahassee, FL', - 1850670 => 'Eastpoint, FL', - 1850671 => 'Tallahassee, FL', - 1850674 => 'Blountstown, FL', - 1850675 => 'Jay, FL', - 1850678 => 'Niceville, FL', - 1850681 => 'Tallahassee, FL', - 1850682 => 'Crestview, FL', - 1850683 => 'Crestview, FL', - 1850689 => 'Crestview, FL', - 1850696 => 'Pensacola, FL', - 1850697 => 'Carrabelle, FL', - 1850722 => 'Youngstown, FL', - 1850727 => 'Tallahassee, FL', - 1850729 => 'Niceville, FL', - 1850747 => 'Panama City, FL', - 1850763 => 'Panama City, FL', - 1850765 => 'Tallahassee, FL', - 1850769 => 'Panama City, FL', - 1850784 => 'Panama City, FL', - 1850785 => 'Panama City, FL', - 1850835 => 'Freeport, FL', - 1850837 => 'Destin, FL', - 1850838 => 'Perry, FL', - 1850857 => 'Pensacola, FL', - 1850862 => 'Fort Walton Bch, FL', - 1850863 => 'Fort Walton Bch, FL', - 1850864 => 'Fort Walton Bch, FL', - 1850871 => 'Panama City, FL', - 1850872 => 'Panama City, FL', - 1850874 => 'Panama City, FL', - 1850875 => 'Quincy, FL', - 1850877 => 'Tallahassee, FL', - 1850878 => 'Tallahassee, FL', - 1850883 => 'Eglin AFB, FL', - 1850891 => 'Tallahassee, FL', - 1850892 => 'DeFuniak Springs, FL', - 1850893 => 'Tallahassee, FL', - 1850894 => 'Tallahassee, FL', - 1850897 => 'Niceville, FL', - 1850912 => 'Pensacola, FL', - 1850913 => 'Panama City, FL', - 1850914 => 'Panama City, FL', - 1850916 => 'Gulf Breeze, FL', - 1850926 => 'Crawfordville, FL', - 1850932 => 'Gulf Breeze, FL', - 1850934 => 'Gulf Breeze, FL', - 1850936 => 'Navarre, FL', - 1850937 => 'Cantonment, FL', - 1850939 => 'Navarre, FL', - 1850941 => 'Pensacola, FL', - 1850942 => 'Tallahassee, FL', - 1850944 => 'Pensacola, FL', - 1850951 => 'DeFuniak Springs, FL', - 1850968 => 'Cantonment, FL', - 1850969 => 'Pensacola, FL', - 1850973 => 'Madison, FL', - 1850981 => 'Milton, FL', - 1850983 => 'Milton, FL', - 1850994 => 'Milton, FL', - 1850997 => 'Monticello, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1854.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1854.php deleted file mode 100644 index 42f43f605..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1854.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ohio', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1856.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1856.php deleted file mode 100644 index 0f48a4fdc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1856.php +++ /dev/null @@ -1,85 +0,0 @@ - 'New Jersey', - 1856205 => 'Vineland, NJ', - 1856216 => 'Cherry Hill, NJ', - 1856218 => 'Sewell, NJ', - 1856222 => 'Mount Laurel, NJ', - 1856223 => 'Mullica Hill, NJ', - 1856225 => 'Camden, NJ', - 1856237 => 'Sicklerville, NJ', - 1856241 => 'Swedesboro, NJ', - 1856273 => 'Mount Laurel, NJ', - 1856293 => 'Millville, NJ', - 1856303 => 'Cinnaminson, NJ', - 1856321 => 'Cherry Hill, NJ', - 1856325 => 'Voorhees Township, NJ', - 1856327 => 'Millville, NJ', - 1856338 => 'Camden, NJ', - 1856342 => 'Camden, NJ', - 1856354 => 'Cherry Hill, NJ', - 1856358 => 'Elmer, NJ', - 1856365 => 'Camden, NJ', - 1856396 => 'Marlton, NJ', - 1856424 => 'Cherry Hill, NJ', - 1856427 => 'Cherry Hill, NJ', - 1856428 => 'Cherry Hill, NJ', - 1856447 => 'Cedarville, NJ', - 1856451 => 'Bridgeton, NJ', - 1856453 => 'Bridgeton, NJ', - 1856455 => 'Bridgeton, NJ', - 1856456 => 'Gloucester City, NJ', - 1856459 => 'Bridgeton, NJ', - 1856467 => 'Swedesboro, NJ', - 1856478 => 'Mullica Hill, NJ', - 1856482 => 'Cherry Hill, NJ', - 1856486 => 'Pennsauken Township, NJ', - 1856489 => 'Cherry Hill, NJ', - 1856507 => 'Vineland, NJ', - 1856541 => 'Camden, NJ', - 1856582 => 'Sewell, NJ', - 1856596 => 'Marlton, NJ', - 1856629 => 'Williamstown, NJ', - 1856641 => 'Vineland, NJ', - 1856665 => 'Pennsauken Township, NJ', - 1856667 => 'Cherry Hill, NJ', - 1856678 => 'Pennsville Township, NJ', - 1856690 => 'Vineland, NJ', - 1856691 => 'Vineland, NJ', - 1856692 => 'Vineland, NJ', - 1856694 => 'Franklinville, NJ', - 1856696 => 'Vineland, NJ', - 1856757 => 'Camden, NJ', - 1856764 => 'Delran, NJ', - 1856765 => 'Millville, NJ', - 1856769 => 'Woodstown, NJ', - 1856770 => 'Voorhees Township, NJ', - 1856772 => 'Voorhees Township, NJ', - 1856779 => 'Maple Shade Township, NJ', - 1856786 => 'Cinnaminson, NJ', - 1856794 => 'Vineland, NJ', - 1856797 => 'Marlton, NJ', - 1856810 => 'Marlton, NJ', - 1856825 => 'Millville, NJ', - 1856829 => 'Cinnaminson, NJ', - 1856857 => 'Cherry Hill, NJ', - 1856863 => 'Glassboro, NJ', - 1856874 => 'Cherry Hill, NJ', - 1856881 => 'Glassboro, NJ', - 1856931 => 'Bellmawr, NJ', - 1856933 => 'Bellmawr, NJ', - 1856935 => 'Salem, NJ', - 1856939 => 'Runnemede, NJ', - 1856963 => 'Camden, NJ', - 1856964 => 'Camden, NJ', - 1856966 => 'Camden, NJ', - 1856968 => 'Camden, NJ', - 1856983 => 'Marlton, NJ', - 1856985 => 'Marlton, NJ', - 1856988 => 'Marlton, NJ', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1857.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1857.php deleted file mode 100644 index 8ec1724df..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1857.php +++ /dev/null @@ -1,10 +0,0 @@ - 'Massachusetts', - 1857654 => 'Boston, MA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1858.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1858.php deleted file mode 100644 index cd76ccf62..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1858.php +++ /dev/null @@ -1,109 +0,0 @@ - 'California', - 1858202 => 'San Diego, CA', - 1858268 => 'San Diego, CA', - 1858270 => 'San Diego, CA', - 1858271 => 'San Diego, CA', - 1858272 => 'San Diego, CA', - 1858273 => 'San Diego, CA', - 1858274 => 'San Diego, CA', - 1858277 => 'San Diego, CA', - 1858278 => 'San Diego, CA', - 1858279 => 'San Diego, CA', - 1858292 => 'San Diego, CA', - 1858300 => 'San Diego, CA', - 1858385 => 'San Diego, CA', - 1858391 => 'Poway, CA', - 1858450 => 'San Diego, CA', - 1858451 => 'San Diego, CA', - 1858453 => 'San Diego, CA', - 1858454 => 'La Jolla, CA', - 1858456 => 'La Jolla, CA', - 1858457 => 'San Diego, CA', - 1858458 => 'San Diego, CA', - 1858459 => 'La Jolla, CA', - 1858467 => 'San Diego, CA', - 1858483 => 'San Diego, CA', - 1858484 => 'San Diego, CA', - 1858485 => 'San Diego, CA', - 1858486 => 'Poway, CA', - 1858487 => 'San Diego, CA', - 1858488 => 'San Diego, CA', - 1858490 => 'San Diego, CA', - 1858492 => 'San Diego, CA', - 1858495 => 'San Diego, CA', - 1858496 => 'San Diego, CA', - 1858499 => 'San Diego, CA', - 1858505 => 'San Diego, CA', - 1858513 => 'Poway, CA', - 1858514 => 'San Diego, CA', - 1858521 => 'San Diego, CA', - 1858527 => 'San Diego, CA', - 1858530 => 'San Diego, CA', - 1858534 => 'La Jolla, CA', - 1858535 => 'San Diego, CA', - 1858536 => 'San Diego, CA', - 1858537 => 'San Diego, CA', - 1858538 => 'San Diego, CA', - 1858541 => 'San Diego, CA', - 1858546 => 'San Diego, CA', - 1858547 => 'San Diego, CA', - 1858549 => 'San Diego, CA', - 1858550 => 'San Diego, CA', - 1858551 => 'La Jolla, CA', - 1858552 => 'San Diego, CA', - 1858554 => 'La Jolla, CA', - 1858558 => 'San Diego, CA', - 1858560 => 'San Diego, CA', - 1858565 => 'San Diego, CA', - 1858566 => 'San Diego, CA', - 1858569 => 'San Diego, CA', - 1858571 => 'San Diego, CA', - 1858573 => 'San Diego, CA', - 1858576 => 'San Diego, CA', - 1858578 => 'San Diego, CA', - 1858581 => 'San Diego, CA', - 1858586 => 'San Diego, CA', - 1858587 => 'San Diego, CA', - 1858592 => 'San Diego, CA', - 1858597 => 'San Diego, CA', - 1858605 => 'San Diego, CA', - 1858613 => 'San Diego, CA', - 1858621 => 'San Diego, CA', - 1858622 => 'San Diego, CA', - 1858623 => 'San Diego, CA', - 1858625 => 'San Diego, CA', - 1858638 => 'San Diego, CA', - 1858642 => 'San Diego, CA', - 1858653 => 'San Diego, CA', - 1858668 => 'Poway, CA', - 1858672 => 'San Diego, CA', - 1858673 => 'San Diego, CA', - 1858674 => 'San Diego, CA', - 1858675 => 'San Diego, CA', - 1858676 => 'San Diego, CA', - 1858677 => 'San Diego, CA', - 1858678 => 'San Diego, CA', - 1858679 => 'Poway, CA', - 1858689 => 'San Diego, CA', - 1858693 => 'San Diego, CA', - 1858694 => 'San Diego, CA', - 1858695 => 'San Diego, CA', - 1858715 => 'San Diego, CA', - 1858748 => 'Poway, CA', - 1858756 => 'Rancho Santa Fe, CA', - 1858759 => 'Rancho Santa Fe, CA', - 1858764 => 'San Diego, CA', - 1858780 => 'San Diego, CA', - 1858822 => 'La Jolla, CA', - 1858866 => 'San Diego, CA', - 1858874 => 'San Diego, CA', - 1858939 => 'San Diego, CA', - 1858966 => 'San Diego, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1859.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1859.php deleted file mode 100644 index 2b5fc6a54..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1859.php +++ /dev/null @@ -1,116 +0,0 @@ - 'Kentucky', - 1859212 => 'Florence, KY', - 1859219 => 'Lexington, KY', - 1859223 => 'Lexington, KY', - 1859224 => 'Lexington, KY', - 1859225 => 'Lexington, KY', - 1859226 => 'Lexington, KY', - 1859231 => 'Lexington, KY', - 1859233 => 'Lexington, KY', - 1859234 => 'Cynthiana, KY', - 1859236 => 'Danville, KY', - 1859238 => 'Danville, KY', - 1859239 => 'Danville, KY', - 1859245 => 'Lexington, KY', - 1859246 => 'Lexington, KY', - 1859252 => 'Lexington, KY', - 1859253 => 'Lexington, KY', - 1859254 => 'Lexington, KY', - 1859255 => 'Lexington, KY', - 1859257 => 'Lexington, KY', - 1859258 => 'Lexington, KY', - 1859259 => 'Lexington, KY', - 1859260 => 'Lexington, KY', - 1859263 => 'Lexington, KY', - 1859264 => 'Lexington, KY', - 1859266 => 'Lexington, KY', - 1859268 => 'Lexington, KY', - 1859269 => 'Lexington, KY', - 1859271 => 'Lexington, KY', - 1859272 => 'Lexington, KY', - 1859273 => 'Lexington, KY', - 1859275 => 'Lexington, KY', - 1859276 => 'Lexington, KY', - 1859277 => 'Lexington, KY', - 1859278 => 'Lexington, KY', - 1859281 => 'Lexington, KY', - 1859282 => 'Florence, KY', - 1859283 => 'Florence, KY', - 1859289 => 'Carlisle, KY', - 1859293 => 'Lexington, KY', - 1859294 => 'Lexington, KY', - 1859296 => 'Lexington, KY', - 1859299 => 'Lexington, KY', - 1859301 => 'Edgewood, KY', - 1859309 => 'Lexington, KY', - 1859313 => 'Lexington, KY', - 1859317 => 'Lexington, KY', - 1859323 => 'Lexington, KY', - 1859334 => 'Burlington, KY', - 1859335 => 'Lexington, KY', - 1859336 => 'Springfield, KY', - 1859363 => 'Independence, KY', - 1859368 => 'Lexington, KY', - 1859371 => 'Florence, KY', - 1859373 => 'Lexington, KY', - 1859381 => 'Lexington, KY', - 1859384 => 'Union, KY', - 1859389 => 'Lexington, KY', - 1859448 => 'Alexandria, KY', - 1859455 => 'Lexington, KY', - 1859472 => 'Butler, KY', - 1859485 => 'Walton, KY', - 1859497 => 'Mount Sterling, KY', - 1859498 => 'Mount Sterling, KY', - 1859499 => 'Mount Sterling, KY', - 1859514 => 'Lexington, KY', - 1859523 => 'Lexington, KY', - 1859525 => 'Florence, KY', - 1859543 => 'Lexington, KY', - 1859548 => 'Lancaster, KY', - 1859554 => 'Lexington, KY', - 1859567 => 'Warsaw, KY', - 1859572 => 'Fort Thomas, KY', - 1859586 => 'Burlington, KY', - 1859623 => 'Richmond, KY', - 1859624 => 'Richmond, KY', - 1859625 => 'Richmond, KY', - 1859626 => 'Richmond, KY', - 1859635 => 'Alexandria, KY', - 1859647 => 'Florence, KY', - 1859654 => 'Falmouth, KY', - 1859655 => 'Covington, KY', - 1859689 => 'Hebron, KY', - 1859727 => 'Erlanger, KY', - 1859734 => 'Harrodsburg, KY', - 1859737 => 'Winchester, KY', - 1859744 => 'Winchester, KY', - 1859745 => 'Winchester, KY', - 1859746 => 'Florence, KY', - 1859792 => 'Lancaster, KY', - 1859823 => 'Dry Ridge, KY', - 1859824 => 'Williamstown, KY', - 1859846 => 'Midway, KY', - 1859854 => 'Junction City, KY', - 1859858 => 'Wilmore, KY', - 1859873 => 'Versailles, KY', - 1859879 => 'Versailles, KY', - 1859881 => 'Nicholasville, KY', - 1859885 => 'Nicholasville, KY', - 1859887 => 'Nicholasville, KY', - 1859936 => 'Danville, KY', - 1859967 => 'Lexington, KY', - 1859971 => 'Lexington, KY', - 1859977 => 'Lexington, KY', - 1859983 => 'Lexington, KY', - 1859985 => 'Berea, KY', - 1859986 => 'Berea, KY', - 1859987 => 'Paris, KY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1860.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1860.php deleted file mode 100644 index f8859e89a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1860.php +++ /dev/null @@ -1,206 +0,0 @@ - 'Connecticut', - 1860206 => 'Hartford, CT', - 1860210 => 'New Milford, CT', - 1860223 => 'New Britain, CT', - 1860224 => 'New Britain, CT', - 1860225 => 'New Britain, CT', - 1860229 => 'New Britain, CT', - 1860230 => 'Plainfield, CT', - 1860231 => 'West Hartford, CT', - 1860232 => 'West Hartford, CT', - 1860233 => 'West Hartford, CT', - 1860236 => 'West Hartford, CT', - 1860240 => 'Hartford, CT', - 1860241 => 'Hartford, CT', - 1860242 => 'Bloomfield, CT', - 1860243 => 'Bloomfield, CT', - 1860244 => 'Hartford, CT', - 1860246 => 'Hartford, CT', - 1860247 => 'Hartford, CT', - 1860249 => 'Hartford, CT', - 1860253 => 'Enfield, CT', - 1860258 => 'Rocky Hill, CT', - 1860265 => 'Enfield, CT', - 1860267 => 'East Hampton, CT', - 1860274 => 'Watertown, CT', - 1860275 => 'Hartford, CT', - 1860276 => 'Southington, CT', - 1860278 => 'Hartford, CT', - 1860282 => 'East Hartford, CT', - 1860283 => 'Thomaston, CT', - 1860284 => 'Farmington, CT', - 1860285 => 'Windsor, CT', - 1860286 => 'Bloomfield, CT', - 1860290 => 'East Hartford, CT', - 1860291 => 'East Hartford, CT', - 1860293 => 'Hartford, CT', - 1860295 => 'Marlborough, CT', - 1860296 => 'Hartford, CT', - 1860297 => 'Hartford, CT', - 1860298 => 'Windsor, CT', - 1860313 => 'West Hartford, CT', - 1860314 => 'Bristol, CT', - 1860342 => 'Portland, CT', - 1860343 => 'Middletown, CT', - 1860344 => 'Middletown, CT', - 1860346 => 'Middletown, CT', - 1860347 => 'Middletown, CT', - 1860348 => 'New Britain, CT', - 1860349 => 'Durham, CT', - 1860350 => 'New Milford, CT', - 1860354 => 'New Milford, CT', - 1860355 => 'New Milford, CT', - 1860357 => 'New Britain, CT', - 1860358 => 'Middletown, CT', - 1860364 => 'Sharon, CT', - 1860376 => 'Jewett City, CT', - 1860379 => 'Winsted, CT', - 1860388 => 'Old Saybrook, CT', - 1860395 => 'Old Saybrook, CT', - 1860399 => 'Westbrook, CT', - 1860408 => 'Simsbury, CT', - 1860417 => 'Watertown, CT', - 1860423 => 'Willimantic, CT', - 1860426 => 'Southington, CT', - 1860430 => 'Glastonbury, CT', - 1860432 => 'Manchester, CT', - 1860434 => 'Old Lyme, CT', - 1860437 => 'New London, CT', - 1860439 => 'New London, CT', - 1860442 => 'New London, CT', - 1860443 => 'New London, CT', - 1860444 => 'New London, CT', - 1860445 => 'Groton, CT', - 1860446 => 'Groton, CT', - 1860447 => 'New London, CT', - 1860448 => 'Groton, CT', - 1860449 => 'Groton, CT', - 1860450 => 'Willimantic, CT', - 1860464 => 'Gales Ferry, CT', - 1860465 => 'Willimantic, CT', - 1860482 => 'Torrington, CT', - 1860485 => 'Harwinton, CT', - 1860486 => 'Storrs, CT', - 1860489 => 'Torrington, CT', - 1860491 => 'Goshen, CT', - 1860496 => 'Torrington, CT', - 1860510 => 'Old Saybrook, CT', - 1860521 => 'West Hartford, CT', - 1860522 => 'Hartford, CT', - 1860523 => 'West Hartford, CT', - 1860524 => 'Hartford, CT', - 1860525 => 'Hartford, CT', - 1860527 => 'Hartford, CT', - 1860528 => 'East Hartford, CT', - 1860533 => 'Manchester, CT', - 1860535 => 'Stonington, CT', - 1860536 => 'Mystic, CT', - 1860537 => 'Colchester, CT', - 1860542 => 'Norfolk, CT', - 1860545 => 'Hartford, CT', - 1860546 => 'Canterbury, CT', - 1860547 => 'Hartford, CT', - 1860548 => 'Hartford, CT', - 1860549 => 'Hartford, CT', - 1860560 => 'Hartford, CT', - 1860561 => 'West Hartford, CT', - 1860564 => 'Plainfield, CT', - 1860567 => 'Litchfield, CT', - 1860568 => 'East Hartford, CT', - 1860569 => 'East Hartford, CT', - 1860570 => 'West Hartford, CT', - 1860571 => 'Wethersfield, CT', - 1860572 => 'Mystic, CT', - 1860582 => 'Bristol, CT', - 1860583 => 'Bristol, CT', - 1860584 => 'Bristol, CT', - 1860585 => 'Bristol, CT', - 1860586 => 'West Hartford, CT', - 1860589 => 'Bristol, CT', - 1860599 => 'Pawcatuck, CT', - 1860613 => 'Cromwell, CT', - 1860618 => 'Torrington, CT', - 1860620 => 'Southington, CT', - 1860621 => 'Southington, CT', - 1860626 => 'Torrington, CT', - 1860627 => 'Windsor Locks, CT', - 1860628 => 'Southington, CT', - 1860632 => 'Cromwell, CT', - 1860633 => 'Glastonbury, CT', - 1860635 => 'Cromwell, CT', - 1860642 => 'Lebanon, CT', - 1860643 => 'Manchester, CT', - 1860644 => 'South Windsor, CT', - 1860645 => 'Manchester, CT', - 1860646 => 'Manchester, CT', - 1860647 => 'Manchester, CT', - 1860648 => 'South Windsor, CT', - 1860649 => 'Manchester, CT', - 1860651 => 'Simsbury, CT', - 1860652 => 'Glastonbury, CT', - 1860657 => 'Glastonbury, CT', - 1860658 => 'Simsbury, CT', - 1860659 => 'Glastonbury, CT', - 1860663 => 'Killingworth, CT', - 1860664 => 'Clinton, CT', - 1860665 => 'Newington, CT', - 1860666 => 'Newington, CT', - 1860667 => 'Newington, CT', - 1860668 => 'Suffield, CT', - 1860669 => 'Clinton, CT', - 1860674 => 'Farmington, CT', - 1860676 => 'Farmington, CT', - 1860677 => 'Farmington, CT', - 1860678 => 'Farmington, CT', - 1860679 => 'Farmington, CT', - 1860683 => 'Windsor, CT', - 1860684 => 'Stafford Springs, CT', - 1860687 => 'Windsor, CT', - 1860688 => 'Windsor, CT', - 1860693 => 'Canton, CT', - 1860704 => 'Middletown, CT', - 1860714 => 'Hartford, CT', - 1860724 => 'Hartford, CT', - 1860727 => 'Hartford, CT', - 1860728 => 'Hartford, CT', - 1860738 => 'Winsted, CT', - 1860741 => 'Enfield, CT', - 1860742 => 'Coventry, CT', - 1860745 => 'Enfield, CT', - 1860747 => 'Plainville, CT', - 1860749 => 'Enfield, CT', - 1860757 => 'Hartford, CT', - 1860763 => 'Enfield, CT', - 1860767 => 'Essex, CT', - 1860788 => 'Middletown, CT', - 1860793 => 'Plainville, CT', - 1860799 => 'New Milford, CT', - 1860823 => 'Norwich, CT', - 1860824 => 'Canaan, CT', - 1860826 => 'New Britain, CT', - 1860827 => 'New Britain, CT', - 1860828 => 'Berlin, CT', - 1860829 => 'Berlin, CT', - 1860832 => 'New Britain, CT', - 1860844 => 'Granby, CT', - 1860848 => 'Montville, CT', - 1860873 => 'East Haddam, CT', - 1860885 => 'Norwich, CT', - 1860886 => 'Norwich, CT', - 1860887 => 'Norwich, CT', - 1860889 => 'Norwich, CT', - 1860892 => 'Norwich, CT', - 1860927 => 'Kent, CT', - 1860928 => 'Putnam, CT', - 1860945 => 'Watertown, CT', - 1860951 => 'Hartford, CT', - 1860956 => 'Hartford, CT', - 1860963 => 'Putnam, CT', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1862.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1862.php deleted file mode 100644 index 08dfa4ced..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1862.php +++ /dev/null @@ -1,12 +0,0 @@ - 'New Jersey', - 1862210 => 'Fairfield, NJ', - 1862520 => 'East Orange, NJ', - 1862772 => 'Irvington, NJ', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1863.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1863.php deleted file mode 100644 index 85f67b357..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1863.php +++ /dev/null @@ -1,91 +0,0 @@ - 'Florida', - 1863248 => 'Lakeland, FL', - 1863284 => 'Lakeland, FL', - 1863285 => 'Fort Meade, FL', - 1863291 => 'Winter Haven, FL', - 1863292 => 'Winter Haven, FL', - 1863293 => 'Winter Haven, FL', - 1863294 => 'Winter Haven, FL', - 1863297 => 'Winter Haven, FL', - 1863298 => 'Winter Haven, FL', - 1863299 => 'Winter Haven, FL', - 1863314 => 'Sebring, FL', - 1863318 => 'Winter Haven, FL', - 1863324 => 'Winter Haven, FL', - 1863326 => 'Winter Haven, FL', - 1863357 => 'Okeechobee, FL', - 1863382 => 'Sebring, FL', - 1863385 => 'Sebring, FL', - 1863386 => 'Sebring, FL', - 1863401 => 'Winter Haven, FL', - 1863402 => 'Sebring, FL', - 1863413 => 'Lakeland, FL', - 1863420 => 'Davenport, FL', - 1863421 => 'Haines City, FL', - 1863422 => 'Haines City, FL', - 1863424 => 'Davenport, FL', - 1863425 => 'Mulberry, FL', - 1863452 => 'Avon Park, FL', - 1863453 => 'Avon Park, FL', - 1863465 => 'Lake Placid, FL', - 1863467 => 'Okeechobee, FL', - 1863471 => 'Sebring, FL', - 1863491 => 'Arcadia, FL', - 1863494 => 'Arcadia, FL', - 1863519 => 'Bartow, FL', - 1863533 => 'Bartow, FL', - 1863534 => 'Bartow, FL', - 1863603 => 'Lakeland, FL', - 1863607 => 'Lakeland, FL', - 1863619 => 'Lakeland, FL', - 1863635 => 'Frostproof, FL', - 1863644 => 'Lakeland, FL', - 1863646 => 'Lakeland, FL', - 1863647 => 'Lakeland, FL', - 1863648 => 'Lakeland, FL', - 1863655 => 'Sebring, FL', - 1863665 => 'Lakeland, FL', - 1863666 => 'Lakeland, FL', - 1863667 => 'Lakeland, FL', - 1863674 => 'LaBelle, FL', - 1863675 => 'LaBelle, FL', - 1863676 => 'Lake Wales, FL', - 1863678 => 'Lake Wales, FL', - 1863679 => 'Lake Wales, FL', - 1863680 => 'Lakeland, FL', - 1863682 => 'Lakeland, FL', - 1863683 => 'Lakeland, FL', - 1863686 => 'Lakeland, FL', - 1863687 => 'Lakeland, FL', - 1863688 => 'Lakeland, FL', - 1863699 => 'Lake Placid, FL', - 1863701 => 'Lakeland, FL', - 1863709 => 'Lakeland, FL', - 1863735 => 'Zolfo Springs, FL', - 1863763 => 'Okeechobee, FL', - 1863767 => 'Wauchula, FL', - 1863773 => 'Wauchula, FL', - 1863802 => 'Lakeland, FL', - 1863815 => 'Lakeland, FL', - 1863816 => 'Lakeland, FL', - 1863824 => 'Okeechobee, FL', - 1863853 => 'Lakeland, FL', - 1863858 => 'Lakeland, FL', - 1863859 => 'Lakeland, FL', - 1863875 => 'Winter Haven, FL', - 1863937 => 'Lakeland, FL', - 1863946 => 'Moore Haven, FL', - 1863956 => 'Lake Alfred, FL', - 1863965 => 'Auburndale, FL', - 1863967 => 'Auburndale, FL', - 1863983 => 'Clewiston, FL', - 1863984 => 'Polk City, FL', - 1863993 => 'Arcadia, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1864.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1864.php deleted file mode 100644 index 48152202b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1864.php +++ /dev/null @@ -1,171 +0,0 @@ - 'South Carolina', - 1864213 => 'Greenville, SC', - 1864214 => 'Greenville, SC', - 1864220 => 'Greenville, SC', - 1864222 => 'Anderson, SC', - 1864223 => 'Greenwood, SC', - 1864224 => 'Anderson, SC', - 1864225 => 'Anderson, SC', - 1864226 => 'Anderson, SC', - 1864227 => 'Greenwood, SC', - 1864228 => 'Simpsonville, SC', - 1864229 => 'Greenwood, SC', - 1864231 => 'Anderson, SC', - 1864232 => 'Greenville, SC', - 1864233 => 'Greenville, SC', - 1864234 => 'Greenville, SC', - 1864235 => 'Greenville, SC', - 1864236 => 'Greenville, SC', - 1864239 => 'Greenville, SC', - 1864240 => 'Greenville, SC', - 1864241 => 'Greenville, SC', - 1864242 => 'Greenville, SC', - 1864246 => 'Greenville, SC', - 1864250 => 'Greenville, SC', - 1864254 => 'Greenville, SC', - 1864255 => 'Greenville, SC', - 1864260 => 'Anderson, SC', - 1864261 => 'Anderson, SC', - 1864269 => 'Greenville, SC', - 1864271 => 'Greenville, SC', - 1864272 => 'Greenville, SC', - 1864277 => 'Greenville, SC', - 1864281 => 'Greenville, SC', - 1864282 => 'Greenville, SC', - 1864283 => 'Greenville, SC', - 1864284 => 'Greenville, SC', - 1864286 => 'Greenville, SC', - 1864288 => 'Greenville, SC', - 1864289 => 'Greenville, SC', - 1864294 => 'Greenville, SC', - 1864295 => 'Greenville, SC', - 1864296 => 'Anderson, SC', - 1864297 => 'Greenville, SC', - 1864298 => 'Greenville, SC', - 1864299 => 'Greenville, SC', - 1864306 => 'Easley, SC', - 1864327 => 'Spartanburg, SC', - 1864329 => 'Greenville, SC', - 1864331 => 'Greenville, SC', - 1864332 => 'Anderson, SC', - 1864335 => 'Greenville, SC', - 1864338 => 'Belton, SC', - 1864346 => 'Greenville, SC', - 1864348 => 'Iva, SC', - 1864366 => 'Abbeville, SC', - 1864369 => 'Honea Path, SC', - 1864370 => 'Greenville, SC', - 1864373 => 'Greenville, SC', - 1864388 => 'Greenwood, SC', - 1864421 => 'Greenville, SC', - 1864422 => 'Greenville, SC', - 1864427 => 'Union, SC', - 1864429 => 'Union, SC', - 1864433 => 'Duncan, SC', - 1864442 => 'Easley, SC', - 1864445 => 'Saluda, SC', - 1864446 => 'Abbeville, SC', - 1864454 => 'Greenville, SC', - 1864455 => 'Greenville, SC', - 1864456 => 'Ware Shoals, SC', - 1864457 => 'Landrum, SC', - 1864458 => 'Greenville, SC', - 1864461 => 'Chesnee, SC', - 1864463 => 'Cowpens, SC', - 1864467 => 'Greenville, SC', - 1864469 => 'Greer, SC', - 1864472 => 'Inman, SC', - 1864474 => 'Pacolet, SC', - 1864476 => 'Woodruff, SC', - 1864486 => 'Duncan, SC', - 1864487 => 'Gaffney, SC', - 1864488 => 'Gaffney, SC', - 1864489 => 'Gaffney, SC', - 1864503 => 'Spartanburg, SC', - 1864512 => 'Anderson, SC', - 1864527 => 'Greenville, SC', - 1864541 => 'Spartanburg, SC', - 1864542 => 'Spartanburg, SC', - 1864543 => 'Ninety Six, SC', - 1864552 => 'Greenville, SC', - 1864560 => 'Spartanburg, SC', - 1864573 => 'Spartanburg, SC', - 1864574 => 'Spartanburg, SC', - 1864576 => 'Spartanburg, SC', - 1864578 => 'Spartanburg, SC', - 1864579 => 'Spartanburg, SC', - 1864582 => 'Spartanburg, SC', - 1864583 => 'Spartanburg, SC', - 1864585 => 'Spartanburg, SC', - 1864587 => 'Spartanburg, SC', - 1864591 => 'Spartanburg, SC', - 1864592 => 'Inman, SC', - 1864595 => 'Spartanburg, SC', - 1864596 => 'Spartanburg, SC', - 1864627 => 'Greenville, SC', - 1864631 => 'Greenville, SC', - 1864638 => 'Walhalla, SC', - 1864639 => 'Central, SC', - 1864642 => 'Anderson, SC', - 1864646 => 'Pendleton, SC', - 1864647 => 'Westminster, SC', - 1864653 => 'Clemson, SC', - 1864654 => 'Clemson, SC', - 1864674 => 'Jonesville, SC', - 1864675 => 'Greenville, SC', - 1864676 => 'Greenville, SC', - 1864681 => 'Laurens, SC', - 1864682 => 'Laurens, SC', - 1864699 => 'Spartanburg, SC', - 1864716 => 'Anderson, SC', - 1864725 => 'Greenwood, SC', - 1864757 => 'Simpsonville, SC', - 1864760 => 'Anderson, SC', - 1864797 => 'Greer, SC', - 1864801 => 'Greer, SC', - 1864804 => 'Spartanburg, SC', - 1864814 => 'Spartanburg, SC', - 1864833 => 'Clinton, SC', - 1864834 => 'Travelers Rest, SC', - 1864839 => 'Blacksburg, SC', - 1864843 => 'Liberty, SC', - 1864845 => 'Piedmont, SC', - 1864847 => 'Williamston, SC', - 1864848 => 'Greer, SC', - 1864849 => 'Greer, SC', - 1864850 => 'Easley, SC', - 1864852 => 'McCormick, SC', - 1864855 => 'Easley, SC', - 1864859 => 'Easley, SC', - 1864862 => 'Fountain Inn, SC', - 1864868 => 'Six Mile, SC', - 1864876 => 'Gray Court, SC', - 1864877 => 'Greer, SC', - 1864878 => 'Pickens, SC', - 1864879 => 'Greer, SC', - 1864882 => 'Seneca, SC', - 1864885 => 'Seneca, SC', - 1864886 => 'Seneca, SC', - 1864888 => 'Seneca, SC', - 1864898 => 'Pickens, SC', - 1864942 => 'Greenwood, SC', - 1864943 => 'Greenwood, SC', - 1864944 => 'Salem, SC', - 1864947 => 'Pelzer, SC', - 1864962 => 'Simpsonville, SC', - 1864963 => 'Simpsonville, SC', - 1864964 => 'Anderson, SC', - 1864967 => 'Simpsonville, SC', - 1864968 => 'Greer, SC', - 1864984 => 'Laurens, SC', - 1864987 => 'Greenville, SC', - 1864990 => 'Greenville, SC', - 1864991 => 'Greenville, SC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1865.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1865.php deleted file mode 100644 index 423c9fce6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1865.php +++ /dev/null @@ -1,130 +0,0 @@ - 'Tennessee', - 1865200 => 'Knoxville, TN', - 1865212 => 'Knoxville, TN', - 1865215 => 'Knoxville, TN', - 1865218 => 'Knoxville, TN', - 1865219 => 'Knoxville, TN', - 1865220 => 'Oak Ridge, TN', - 1865233 => 'Maryville, TN', - 1865246 => 'Knoxville, TN', - 1865247 => 'Knoxville, TN', - 1865249 => 'Knoxville, TN', - 1865273 => 'Maryville, TN', - 1865281 => 'Knoxville, TN', - 1865286 => 'Sevierville, TN', - 1865288 => 'Knoxville, TN', - 1865305 => 'Knoxville, TN', - 1865329 => 'Knoxville, TN', - 1865330 => 'Knoxville, TN', - 1865354 => 'Rockwood, TN', - 1865357 => 'Knoxville, TN', - 1865365 => 'Sevierville, TN', - 1865374 => 'Knoxville, TN', - 1865376 => 'Kingston, TN', - 1865379 => 'Maryville, TN', - 1865380 => 'Maryville, TN', - 1865388 => 'Knoxville, TN', - 1865397 => 'Dandridge, TN', - 1865408 => 'Loudon, TN', - 1865425 => 'Oak Ridge, TN', - 1865426 => 'Lake City, TN', - 1865428 => 'Sevierville, TN', - 1865429 => 'Sevierville, TN', - 1865430 => 'Gatlinburg, TN', - 1865435 => 'Oliver Springs, TN', - 1865436 => 'Gatlinburg, TN', - 1865446 => 'Sevierville, TN', - 1865448 => 'Townsend, TN', - 1865450 => 'Knoxville, TN', - 1865453 => 'Sevierville, TN', - 1865457 => 'Clinton, TN', - 1865458 => 'Loudon, TN', - 1865463 => 'Clinton, TN', - 1865470 => 'Knoxville, TN', - 1865471 => 'Jefferson City, TN', - 1865474 => 'Knoxville, TN', - 1865475 => 'Jefferson City, TN', - 1865481 => 'Oak Ridge, TN', - 1865482 => 'Oak Ridge, TN', - 1865483 => 'Oak Ridge, TN', - 1865521 => 'Knoxville, TN', - 1865522 => 'Knoxville, TN', - 1865523 => 'Knoxville, TN', - 1865524 => 'Knoxville, TN', - 1865525 => 'Knoxville, TN', - 1865531 => 'Knoxville, TN', - 1865539 => 'Knoxville, TN', - 1865540 => 'Knoxville, TN', - 1865541 => 'Knoxville, TN', - 1865544 => 'Knoxville, TN', - 1865545 => 'Knoxville, TN', - 1865546 => 'Knoxville, TN', - 1865549 => 'Knoxville, TN', - 1865558 => 'Knoxville, TN', - 1865560 => 'Knoxville, TN', - 1865573 => 'Knoxville, TN', - 1865577 => 'Knoxville, TN', - 1865579 => 'Knoxville, TN', - 1865584 => 'Knoxville, TN', - 1865588 => 'Knoxville, TN', - 1865594 => 'Knoxville, TN', - 1865609 => 'Knoxville, TN', - 1865622 => 'Knoxville, TN', - 1865632 => 'Knoxville, TN', - 1865633 => 'Knoxville, TN', - 1865637 => 'Knoxville, TN', - 1865670 => 'Knoxville, TN', - 1865671 => 'Knoxville, TN', - 1865673 => 'Knoxville, TN', - 1865674 => 'White Pine, TN', - 1865675 => 'Knoxville, TN', - 1865681 => 'Maryville, TN', - 1865686 => 'Knoxville, TN', - 1865687 => 'Knoxville, TN', - 1865688 => 'Knoxville, TN', - 1865689 => 'Knoxville, TN', - 1865690 => 'Knoxville, TN', - 1865691 => 'Knoxville, TN', - 1865692 => 'Knoxville, TN', - 1865693 => 'Knoxville, TN', - 1865694 => 'Knoxville, TN', - 1865717 => 'Kingston, TN', - 1865766 => 'Knoxville, TN', - 1865769 => 'Knoxville, TN', - 1865774 => 'Sevierville, TN', - 1865777 => 'Knoxville, TN', - 1865824 => 'Knoxville, TN', - 1865828 => 'Rutledge, TN', - 1865851 => 'Knoxville, TN', - 1865856 => 'Maryville, TN', - 1865882 => 'Harriman, TN', - 1865908 => 'Sevierville, TN', - 1865909 => 'Knoxville, TN', - 1865922 => 'Knoxville, TN', - 1865925 => 'Knoxville, TN', - 1865938 => 'Powell, TN', - 1865945 => 'Powell, TN', - 1865947 => 'Powell, TN', - 1865951 => 'Knoxville, TN', - 1865966 => 'Knoxville, TN', - 1865971 => 'Knoxville, TN', - 1865974 => 'Knoxville, TN', - 1865977 => 'Maryville, TN', - 1865980 => 'Maryville, TN', - 1865981 => 'Maryville, TN', - 1865982 => 'Maryville, TN', - 1865983 => 'Maryville, TN', - 1865984 => 'Maryville, TN', - 1865986 => 'Lenoir City, TN', - 1865988 => 'Lenoir City, TN', - 1865992 => 'Maynardville, TN', - 1865993 => 'Bean Station, TN', - 1865995 => 'Friendsville, TN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1867.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1867.php deleted file mode 100644 index 93a594526..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1867.php +++ /dev/null @@ -1,25 +0,0 @@ - 'Whitehorse, YT', - 1867456 => 'Whitehorse, YT', - 1867536 => 'Watson Lake Hospital', - 1867633 => 'Whitehorse, YT', - 1867645 => 'Rankin Inlet, NU', - 1867667 => 'Whitehorse, YT', - 1867668 => 'Whitehorse, YT', - 1867669 => 'Yellowknife, NT', - 1867695 => 'Fort Simpson, NT', - 1867766 => 'Yellowknife, NT', - 1867777 => 'Inuvik, NT', - 1867872 => 'Fort Smith, NT', - 1867873 => 'Yellowknife, NT', - 1867874 => 'Hay River, NT', - 1867920 => 'Yellowknife, NT', - 1867979 => 'Iqaluit, NU', - 1867993 => 'Dawson, YT', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1870.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1870.php deleted file mode 100644 index f366249eb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1870.php +++ /dev/null @@ -1,145 +0,0 @@ - 'Arkansas', - 1870215 => 'Paragould, AR', - 1870222 => 'McGehee, AR', - 1870226 => 'Warren, AR', - 1870230 => 'Arkadelphia, AR', - 1870231 => 'Camden, AR', - 1870234 => 'Magnolia, AR', - 1870236 => 'Paragould, AR', - 1870238 => 'Wynne, AR', - 1870239 => 'Paragould, AR', - 1870240 => 'Paragould, AR', - 1870245 => 'Arkadelphia, AR', - 1870246 => 'Arkadelphia, AR', - 1870247 => 'White Hall, AR', - 1870251 => 'Batesville, AR', - 1870255 => 'Hazen, AR', - 1870256 => 'Des Arc, AR', - 1870257 => 'Cherokee Village, AR', - 1870265 => 'Lake Village, AR', - 1870268 => 'Jonesboro, AR', - 1870269 => 'Mountain View, AR', - 1870275 => 'Jonesboro, AR', - 1870283 => 'Cave City, AR', - 1870285 => 'Murfreesboro, AR', - 1870295 => 'Marianna, AR', - 1870297 => 'Calico Rock, AR', - 1870307 => 'Batesville, AR', - 1870325 => 'Rison, AR', - 1870336 => 'Jonesboro, AR', - 1870338 => 'Helena, AR', - 1870347 => 'Augusta, AR', - 1870352 => 'Fordyce, AR', - 1870353 => 'Gurdon, AR', - 1870355 => 'Eudora, AR', - 1870356 => 'Glenwood, AR', - 1870358 => 'Marked Tree, AR', - 1870364 => 'Crossett, AR', - 1870365 => 'Harrison, AR', - 1870367 => 'Monticello, AR', - 1870368 => 'Melbourne, AR', - 1870382 => 'Dumas, AR', - 1870423 => 'Berryville, AR', - 1870424 => 'Mountain Home, AR', - 1870425 => 'Mountain Home, AR', - 1870431 => 'Lakeview, AR', - 1870435 => 'Gassville, AR', - 1870436 => 'Lead Hill, AR', - 1870438 => 'Green Forest, AR', - 1870445 => 'Bull Shoals, AR', - 1870446 => 'Jasper, AR', - 1870448 => 'Marshall, AR', - 1870449 => 'Yellville, AR', - 1870453 => 'Flippin, AR', - 1870460 => 'Monticello, AR', - 1870483 => 'Trumann, AR', - 1870492 => 'Mountain Home, AR', - 1870508 => 'Mountain Home, AR', - 1870523 => 'Newport, AR', - 1870532 => 'Blytheville, AR', - 1870533 => 'Stamps, AR', - 1870534 => 'Pine Bluff, AR', - 1870535 => 'Pine Bluff, AR', - 1870536 => 'Pine Bluff, AR', - 1870538 => 'Dermott, AR', - 1870541 => 'Pine Bluff, AR', - 1870542 => 'Foreman, AR', - 1870552 => 'Carlisle, AR', - 1870561 => 'Manila, AR', - 1870563 => 'Osceola, AR', - 1870572 => 'West Helena, AR', - 1870574 => 'Camden, AR', - 1870578 => 'Harrisburg, AR', - 1870584 => 'De Queen, AR', - 1870595 => 'Rector, AR', - 1870598 => 'Piggott, AR', - 1870628 => 'Star City, AR', - 1870630 => 'Forrest City, AR', - 1870633 => 'Forrest City, AR', - 1870642 => 'De Queen, AR', - 1870653 => 'Fouke, AR', - 1870672 => 'Stuttgart, AR', - 1870673 => 'Stuttgart, AR', - 1870698 => 'Batesville, AR', - 1870702 => 'West Memphis, AR', - 1870722 => 'Hope, AR', - 1870725 => 'Smackover, AR', - 1870731 => 'McCrory, AR', - 1870732 => 'West Memphis, AR', - 1870733 => 'West Memphis, AR', - 1870734 => 'Brinkley, AR', - 1870735 => 'West Memphis, AR', - 1870739 => 'Marion, AR', - 1870741 => 'Harrison, AR', - 1870743 => 'Harrison, AR', - 1870747 => 'Clarendon, AR', - 1870762 => 'Blytheville, AR', - 1870763 => 'Blytheville, AR', - 1870772 => 'Texarkana, AR', - 1870773 => 'Texarkana, AR', - 1870774 => 'Texarkana, AR', - 1870777 => 'Hope, AR', - 1870779 => 'Texarkana, AR', - 1870792 => 'Earle, AR', - 1870793 => 'Batesville, AR', - 1870798 => 'Hampton, AR', - 1870802 => 'Jonesboro, AR', - 1870836 => 'Camden, AR', - 1870837 => 'Camden, AR', - 1870845 => 'Nashville, AR', - 1870850 => 'Pine Bluff, AR', - 1870853 => 'Hamburg, AR', - 1870856 => 'Hardy, AR', - 1870857 => 'Corning, AR', - 1870862 => 'El Dorado, AR', - 1870863 => 'El Dorado, AR', - 1870864 => 'El Dorado, AR', - 1870867 => 'Mount Ida, AR', - 1870869 => 'Imboden, AR', - 1870875 => 'El Dorado, AR', - 1870879 => 'Pine Bluff, AR', - 1870881 => 'El Dorado, AR', - 1870886 => 'Walnut Ridge, AR', - 1870887 => 'Prescott, AR', - 1870892 => 'Pocahontas, AR', - 1870895 => 'Salem, AR', - 1870898 => 'Ashdown, AR', - 1870910 => 'Jonesboro, AR', - 1870921 => 'Lewisville, AR', - 1870931 => 'Jonesboro, AR', - 1870932 => 'Jonesboro, AR', - 1870933 => 'Jonesboro, AR', - 1870934 => 'Jonesboro, AR', - 1870935 => 'Jonesboro, AR', - 1870942 => 'Sheridan, AR', - 1870946 => 'DeWitt, AR', - 1870972 => 'Jonesboro, AR', - 1870994 => 'Ash Flat, AR', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1872.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1872.php deleted file mode 100644 index 086e85681..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1872.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Chicago, IL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1873.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1873.php deleted file mode 100644 index b8dbda428..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1873.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Quebec', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1876.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1876.php deleted file mode 100644 index ad3a94446..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1876.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Negril', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1878.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1878.php deleted file mode 100644 index f93e22b84..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1878.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Pennsylvania', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/19.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/19.php new file mode 100644 index 000000000..8fd92e12a --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/19.php @@ -0,0 +1,5041 @@ + 'Tennessee', + 1901213 => 'Memphis, TN', + 1901226 => 'Memphis, TN', + 1901252 => 'Memphis, TN', + 1901259 => 'Memphis, TN', + 1901260 => 'Memphis, TN', + 1901266 => 'Memphis, TN', + 1901271 => 'Memphis, TN', + 1901272 => 'Memphis, TN', + 1901273 => 'Memphis, TN', + 1901274 => 'Memphis, TN', + 1901276 => 'Memphis, TN', + 1901278 => 'Memphis, TN', + 1901287 => 'Memphis, TN', + 1901308 => 'Memphis, TN', + 1901312 => 'Memphis, TN', + 1901320 => 'Memphis, TN', + 1901322 => 'Memphis, TN', + 1901323 => 'Memphis, TN', + 1901324 => 'Memphis, TN', + 1901327 => 'Memphis, TN', + 1901332 => 'Memphis, TN', + 1901345 => 'Memphis, TN', + 1901346 => 'Memphis, TN', + 1901348 => 'Memphis, TN', + 1901353 => 'Memphis, TN', + 1901357 => 'Memphis, TN', + 1901358 => 'Memphis, TN', + 1901360 => 'Memphis, TN', + 1901362 => 'Memphis, TN', + 1901363 => 'Memphis, TN', + 1901365 => 'Memphis, TN', + 1901366 => 'Memphis, TN', + 1901367 => 'Memphis, TN', + 1901368 => 'Memphis, TN', + 1901369 => 'Memphis, TN', + 1901371 => 'Memphis, TN', + 1901372 => 'Memphis, TN', + 1901373 => 'Memphis, TN', + 1901375 => 'Memphis, TN', + 1901377 => 'Memphis, TN', + 1901379 => 'Memphis, TN', + 1901380 => 'Memphis, TN', + 1901381 => 'Memphis, TN', + 1901382 => 'Memphis, TN', + 1901383 => 'Memphis, TN', + 1901384 => 'Memphis, TN', + 1901385 => 'Memphis, TN', + 1901386 => 'Memphis, TN', + 1901387 => 'Memphis, TN', + 1901388 => 'Memphis, TN', + 1901396 => 'Memphis, TN', + 1901398 => 'Memphis, TN', + 1901405 => 'Memphis, TN', + 1901416 => 'Memphis, TN', + 1901417 => 'Memphis, TN', + 1901433 => 'Memphis, TN', + 1901435 => 'Memphis, TN', + 1901448 => 'Memphis, TN', + 1901452 => 'Memphis, TN', + 1901454 => 'Memphis, TN', + 1901457 => 'Collierville, TN', + 1901458 => 'Memphis, TN', + 1901465 => 'Somerville, TN', + 1901475 => 'Covington, TN', + 1901476 => 'Covington, TN', + 1901495 => 'Memphis, TN', + 1901507 => 'Memphis, TN', + 1901516 => 'Memphis, TN', + 1901521 => 'Memphis, TN', + 1901522 => 'Memphis, TN', + 1901523 => 'Memphis, TN', + 1901524 => 'Memphis, TN', + 1901525 => 'Memphis, TN', + 1901526 => 'Memphis, TN', + 1901527 => 'Memphis, TN', + 1901528 => 'Memphis, TN', + 1901529 => 'Memphis, TN', + 1901542 => 'Memphis, TN', + 1901543 => 'Memphis, TN', + 1901544 => 'Memphis, TN', + 1901545 => 'Memphis, TN', + 1901546 => 'Memphis, TN', + 1901552 => 'Memphis, TN', + 1901565 => 'Memphis, TN', + 1901576 => 'Memphis, TN', + 1901577 => 'Memphis, TN', + 1901578 => 'Memphis, TN', + 1901590 => 'Memphis, TN', + 1901595 => 'Memphis, TN', + 1901672 => 'Memphis, TN', + 1901680 => 'Memphis, TN', + 1901681 => 'Memphis, TN', + 1901682 => 'Memphis, TN', + 1901683 => 'Memphis, TN', + 1901684 => 'Memphis, TN', + 1901685 => 'Memphis, TN', + 1901722 => 'Memphis, TN', + 1901725 => 'Memphis, TN', + 1901726 => 'Memphis, TN', + 1901729 => 'Memphis, TN', + 1901730 => 'Memphis, TN', + 1901743 => 'Memphis, TN', + 1901744 => 'Memphis, TN', + 1901746 => 'Memphis, TN', + 1901747 => 'Memphis, TN', + 1901748 => 'Memphis, TN', + 1901761 => 'Memphis, TN', + 1901763 => 'Memphis, TN', + 1901765 => 'Memphis, TN', + 1901766 => 'Memphis, TN', + 1901767 => 'Memphis, TN', + 1901774 => 'Memphis, TN', + 1901775 => 'Memphis, TN', + 1901785 => 'Memphis, TN', + 1901789 => 'Memphis, TN', + 1901791 => 'Memphis, TN', + 1901794 => 'Memphis, TN', + 1901795 => 'Memphis, TN', + 1901797 => 'Memphis, TN', + 1901818 => 'Memphis, TN', + 1901820 => 'Memphis, TN', + 1901821 => 'Memphis, TN', + 1901850 => 'Collierville, TN', + 1901853 => 'Collierville, TN', + 1901854 => 'Collierville, TN', + 1901861 => 'Collierville, TN', + 1901866 => 'Memphis, TN', + 1901867 => 'Arlington, TN', + 1901872 => 'Millington, TN', + 1901873 => 'Millington, TN', + 1901881 => 'Memphis, TN', + 1901937 => 'Memphis, TN', + 1901942 => 'Memphis, TN', + 1901946 => 'Memphis, TN', + 1901947 => 'Memphis, TN', + 1901948 => 'Memphis, TN', + 1902 => 'Nova Scotia', + 1902224 => 'Chéticamp, NS', + 1902245 => 'Digby, NS', + 1902254 => 'Parrsboro, NS', + 1902275 => 'Chester, NS', + 1902295 => 'Baddeck, NS', + 1902354 => 'Liverpool, NS', + 1902367 => 'Charlottetown, PE', + 1902368 => 'Charlottetown, PE', + 1902370 => 'Charlottetown, PE', + 1902393 => 'Charlottetown, PE', + 1902396 => 'New Glasgow, NS', + 1902404 => 'Halifax, NS', + 1902405 => 'Halifax, NS', + 1902406 => 'Halifax, NS', + 1902407 => 'Halifax, NS', + 1902420 => 'Halifax, NS', + 1902421 => 'Halifax, NS', + 1902422 => 'Halifax, NS', + 1902423 => 'Halifax, NS', + 1902425 => 'Halifax, NS', + 1902429 => 'Halifax, NS', + 1902431 => 'Halifax, NS', + 1902434 => 'Dartmouth, NS', + 1902435 => 'Dartmouth, NS', + 1902436 => 'Summerside, PE', + 1902442 => 'Halifax, NS', + 1902443 => 'Halifax, NS', + 1902444 => 'Halifax, NS', + 1902445 => 'Halifax, NS', + 1902446 => 'Halifax, NS', + 1902450 => 'Halifax, NS', + 1902452 => 'Halifax, NS', + 1902453 => 'Halifax, NS', + 1902454 => 'Halifax, NS', + 1902455 => 'Halifax, NS', + 1902456 => 'Halifax, NS', + 1902457 => 'Halifax, NS', + 1902461 => 'Dartmouth, NS', + 1902463 => 'Dartmouth, NS', + 1902464 => 'Dartmouth, NS', + 1902466 => 'Dartmouth, NS', + 1902468 => 'Dartmouth, NS', + 1902469 => 'Dartmouth, NS', + 1902471 => 'Halifax, NS', + 1902477 => 'Halifax, NS', + 1902479 => 'Halifax, NS', + 1902481 => 'Dartmouth, NS', + 1902482 => 'Halifax, NS', + 1902485 => 'Pictou, NS', + 1902488 => 'Halifax, NS', + 1902492 => 'Halifax, NS', + 1902494 => 'Halifax, NS', + 1902497 => 'Halifax, NS', + 1902499 => 'Halifax, NS', + 1902527 => 'Bridgewater, NS', + 1902530 => 'Bridgewater, NS', + 1902532 => 'Annapolis Royal, NS', + 1902535 => 'St. Peter\'s, NS', + 1902538 => 'Berwick, NS', + 1902539 => 'Sydney, NS', + 1902542 => 'Wolfville, NS', + 1902543 => 'Bridgewater, NS', + 1902562 => 'Sydney, NS', + 1902564 => 'Sydney, NS', + 1902566 => 'Charlottetown, PE', + 1902567 => 'Sydney, NS', + 1902569 => 'Charlottetown, PE', + 1902582 => 'Canning, NS', + 1902624 => 'Mahone Bay, NS', + 1902625 => 'Port Hawkesbury, NS', + 1902626 => 'Charlottetown, PE', + 1902628 => 'Charlottetown, PE', + 1902629 => 'Charlottetown, PE', + 1902634 => 'Lunenburg, NS', + 1902637 => 'Barrington, NS', + 1902657 => 'Tatamagouche, NS', + 1902661 => 'Amherst, NS', + 1902662 => 'Debert, NS', + 1902665 => 'Bridgetown, NS', + 1902667 => 'Amherst, NS', + 1902678 => 'Kentville, NS', + 1902679 => 'Kentville, NS', + 1902687 => 'Souris, PE', + 1902695 => 'New Glasgow, NS', + 1902736 => 'North Sydney, NS', + 1902742 => 'Yarmouth, NS', + 1902752 => 'New Glasgow, NS', + 1902755 => 'New Glasgow, NS', + 1902758 => 'Shubenacadie, NS', + 1902762 => 'Pubnico, NS', + 1902765 => 'Kingston, NS', + 1902769 => 'Saulnierville, NS', + 1902794 => 'North Sydney, NS', + 1902798 => 'Windsor, NS', + 1902825 => 'Middleton, NS', + 1902826 => 'St Margaret Village, NS', + 1902827 => 'Chezzetcook, NS', + 1902830 => 'Halifax, NS', + 1902836 => 'Kensington, PE', + 1902837 => 'Weymouth, NS', + 1902838 => 'Montague, PE', + 1902842 => 'Glace Bay, NS', + 1902843 => 'Truro, NS', + 1902849 => 'Glace Bay, NS', + 1902853 => 'Alberton, PE', + 1902857 => 'Hubbards, NS', + 1902859 => 'O\'Leary, PE', + 1902860 => 'Waverley, NS', + 1902861 => 'Waverley, NS', + 1902862 => 'New Waterford, NS', + 1902863 => 'Antigonish, NS', + 1902875 => 'Shelburne, NS', + 1902876 => 'Halifax, NS', + 1902882 => 'Tignish, PE', + 1902883 => 'Elmsdale, NS', + 1902888 => 'Summerside, PE', + 1902889 => 'Musquodoboit Harbour, NS', + 1902892 => 'Charlottetown, PE', + 1902893 => 'Truro, NS', + 1902894 => 'Charlottetown, PE', + 1902895 => 'Truro, NS', + 1902897 => 'Truro, NS', + 1902963 => 'Rusticoville, PE', + 1903 => 'Texas', + 1903212 => 'Longview, TX', + 1903223 => 'Texarkana, TX', + 1903234 => 'Longview, TX', + 1903236 => 'Longview, TX', + 1903237 => 'Longview, TX', + 1903238 => 'Longview, TX', + 1903291 => 'Longview, TX', + 1903295 => 'Longview, TX', + 1903297 => 'Longview, TX', + 1903315 => 'Longview, TX', + 1903322 => 'Buffalo, TX', + 1903334 => 'Texarkana, TX', + 1903342 => 'Winnsboro, TX', + 1903356 => 'Quinlan, TX', + 1903364 => 'Whitewright, TX', + 1903378 => 'Honey Grove, TX', + 1903383 => 'Yantis, TX', + 1903389 => 'Fairfield, TX', + 1903395 => 'Cooper, TX', + 1903408 => 'Greenville, TX', + 1903416 => 'Denison, TX', + 1903427 => 'Clarksville, TX', + 1903438 => 'Sulphur Springs, TX', + 1903439 => 'Sulphur Springs, TX', + 1903447 => 'Quinlan, TX', + 1903450 => 'Greenville, TX', + 1903451 => 'Mabank, TX', + 1903454 => 'Greenville, TX', + 1903455 => 'Greenville, TX', + 1903463 => 'Denison, TX', + 1903465 => 'Denison, TX', + 1903473 => 'Emory, TX', + 1903482 => 'Van Alstyne, TX', + 1903489 => 'Malakoff, TX', + 1903498 => 'Kemp, TX', + 1903509 => 'Tyler, TX', + 1903510 => 'Tyler, TX', + 1903525 => 'Tyler, TX', + 1903526 => 'Tyler, TX', + 1903527 => 'Caddo Mills, TX', + 1903531 => 'Tyler, TX', + 1903533 => 'Tyler, TX', + 1903534 => 'Tyler, TX', + 1903535 => 'Tyler, TX', + 1903536 => 'Centerville, TX', + 1903537 => 'Mount Vernon, TX', + 1903547 => 'Hooks, TX', + 1903553 => 'Longview, TX', + 1903561 => 'Tyler, TX', + 1903564 => 'Whitesboro, TX', + 1903566 => 'Tyler, TX', + 1903567 => 'Canton, TX', + 1903569 => 'Mineola, TX', + 1903572 => 'Mount Pleasant, TX', + 1903575 => 'Mount Pleasant, TX', + 1903577 => 'Mount Pleasant, TX', + 1903581 => 'Tyler, TX', + 1903583 => 'Bonham, TX', + 1903586 => 'Jacksonville, TX', + 1903587 => 'Leonard, TX', + 1903589 => 'Jacksonville, TX', + 1903592 => 'Tyler, TX', + 1903593 => 'Tyler, TX', + 1903595 => 'Tyler, TX', + 1903596 => 'Tyler, TX', + 1903597 => 'Tyler, TX', + 1903614 => 'Texarkana, TX', + 1903626 => 'Jewett, TX', + 1903628 => 'New Boston, TX', + 1903636 => 'Big Sandy, TX', + 1903639 => 'Hughes Springs, TX', + 1903640 => 'Bonham, TX', + 1903641 => 'Corsicana, TX', + 1903643 => 'Longview, TX', + 1903645 => 'Daingerfield, TX', + 1903654 => 'Corsicana, TX', + 1903655 => 'Henderson, TX', + 1903657 => 'Henderson, TX', + 1903663 => 'Longview, TX', + 1903665 => 'Jefferson, TX', + 1903667 => 'De Kalb, TX', + 1903668 => 'Hallsville, TX', + 1903670 => 'Athens, TX', + 1903675 => 'Athens, TX', + 1903677 => 'Athens, TX', + 1903683 => 'Rusk, TX', + 1903687 => 'Waskom, TX', + 1903693 => 'Carthage, TX', + 1903694 => 'Carthage, TX', + 1903723 => 'Palestine, TX', + 1903729 => 'Palestine, TX', + 1903731 => 'Palestine, TX', + 1903734 => 'Gilmer, TX', + 1903737 => 'Paris, TX', + 1903739 => 'Paris, TX', + 1903753 => 'Longview, TX', + 1903756 => 'Linden, TX', + 1903757 => 'Longview, TX', + 1903758 => 'Longview, TX', + 1903759 => 'Longview, TX', + 1903763 => 'Quitman, TX', + 1903769 => 'Hawkins, TX', + 1903783 => 'Paris, TX', + 1903784 => 'Paris, TX', + 1903785 => 'Paris, TX', + 1903786 => 'Pottsboro, TX', + 1903791 => 'Texarkana, TX', + 1903792 => 'Texarkana, TX', + 1903793 => 'Texarkana, TX', + 1903794 => 'Texarkana, TX', + 1903796 => 'Atlanta, TX', + 1903798 => 'Texarkana, TX', + 1903799 => 'Atlanta, TX', + 1903813 => 'Sherman, TX', + 1903825 => 'Flint, TX', + 1903831 => 'Texarkana, TX', + 1903832 => 'Texarkana, TX', + 1903834 => 'Overton, TX', + 1903838 => 'Texarkana, TX', + 1903839 => 'Whitehouse, TX', + 1903842 => 'Troup, TX', + 1903843 => 'Gilmer, TX', + 1903845 => 'Gladewater, TX', + 1903849 => 'Chandler, TX', + 1903852 => 'Brownsboro, TX', + 1903856 => 'Pittsburg, TX', + 1903868 => 'Sherman, TX', + 1903870 => 'Sherman, TX', + 1903872 => 'Corsicana, TX', + 1903873 => 'Wills Point, TX', + 1903874 => 'Corsicana, TX', + 1903875 => 'Corsicana, TX', + 1903876 => 'Frankston, TX', + 1903877 => 'Tyler, TX', + 1903881 => 'Lindale, TX', + 1903882 => 'Lindale, TX', + 1903883 => 'Greenville, TX', + 1903885 => 'Sulphur Springs, TX', + 1903886 => 'Commerce, TX', + 1903887 => 'Gun Barrel City, TX', + 1903891 => 'Sherman, TX', + 1903892 => 'Sherman, TX', + 1903893 => 'Sherman, TX', + 1903894 => 'Bullard, TX', + 1903896 => 'Edgewood, TX', + 1903923 => 'Marshall, TX', + 1903927 => 'Marshall, TX', + 1903934 => 'Marshall, TX', + 1903935 => 'Marshall, TX', + 1903938 => 'Marshall, TX', + 1903939 => 'Tyler, TX', + 1903947 => 'Tatum, TX', + 1903962 => 'Grand Saline, TX', + 1903963 => 'Van, TX', + 1903965 => 'Bells, TX', + 1903968 => 'Ore City, TX', + 1903983 => 'Kilgore, TX', + 1903984 => 'Kilgore, TX', + 1903986 => 'Kilgore, TX', + 1904 => 'Florida', + 1904202 => 'Jacksonville, FL', + 1904209 => 'St. Augustine, FL', + 1904213 => 'Orange Park, FL', + 1904215 => 'Orange Park, FL', + 1904217 => 'St. Augustine, FL', + 1904220 => 'Jacksonville, FL', + 1904221 => 'Jacksonville, FL', + 1904223 => 'Jacksonville, FL', + 1904225 => 'Yulee, FL', + 1904232 => 'Jacksonville, FL', + 1904240 => 'Jacksonville, FL', + 1904244 => 'Jacksonville, FL', + 1904253 => 'Jacksonville, FL', + 1904259 => 'Macclenny, FL', + 1904260 => 'Jacksonville, FL', + 1904261 => 'Fernandina Beach, FL', + 1904262 => 'Jacksonville, FL', + 1904264 => 'Orange Park, FL', + 1904268 => 'Jacksonville, FL', + 1904269 => 'Orange Park, FL', + 1904272 => 'Orange Park, FL', + 1904273 => 'Ponte Vedra Bch, FL', + 1904276 => 'Orange Park, FL', + 1904277 => 'Fernandina Beach, FL', + 1904278 => 'Orange Park, FL', + 1904280 => 'Ponte Vedra Bch, FL', + 1904281 => 'Jacksonville, FL', + 1904282 => 'Middleburg, FL', + 1904284 => 'Green Cove Spgs, FL', + 1904285 => 'Ponte Vedra Bch, FL', + 1904288 => 'Jacksonville, FL', + 1904291 => 'Middleburg, FL', + 1904292 => 'Jacksonville, FL', + 1904296 => 'Jacksonville, FL', + 1904298 => 'Orange Park, FL', + 1904306 => 'Jacksonville, FL', + 1904308 => 'Jacksonville, FL', + 1904310 => 'Fernandina Beach, FL', + 1904317 => 'Jacksonville, FL', + 1904321 => 'Fernandina Beach, FL', + 1904329 => 'Jacksonville, FL', + 1904332 => 'Jacksonville, FL', + 1904338 => 'Jacksonville, FL', + 1904342 => 'St. Augustine, FL', + 1904346 => 'Jacksonville, FL', + 1904347 => 'St. Augustine, FL', + 1904348 => 'Jacksonville, FL', + 1904353 => 'Jacksonville, FL', + 1904354 => 'Jacksonville, FL', + 1904355 => 'Jacksonville, FL', + 1904356 => 'Jacksonville, FL', + 1904358 => 'Jacksonville, FL', + 1904359 => 'Jacksonville, FL', + 1904363 => 'Jacksonville, FL', + 1904367 => 'Jacksonville, FL', + 1904368 => 'Starke, FL', + 1904371 => 'Jacksonville, FL', + 1904374 => 'Jacksonville, FL', + 1904375 => 'Orange Park, FL', + 1904378 => 'Jacksonville, FL', + 1904379 => 'Jacksonville, FL', + 1904381 => 'Jacksonville, FL', + 1904383 => 'Jacksonville, FL', + 1904384 => 'Jacksonville, FL', + 1904387 => 'Jacksonville, FL', + 1904388 => 'Jacksonville, FL', + 1904389 => 'Jacksonville, FL', + 1904394 => 'Jacksonville, FL', + 1904396 => 'Jacksonville, FL', + 1904398 => 'Jacksonville, FL', + 1904399 => 'Jacksonville, FL', + 1904406 => 'Middleburg, FL', + 1904419 => 'Jacksonville, FL', + 1904421 => 'Jacksonville, FL', + 1904425 => 'Jacksonville, FL', + 1904448 => 'Jacksonville, FL', + 1904460 => 'St. Augustine, FL', + 1904461 => 'St. Augustine, FL', + 1904471 => 'St. Augustine, FL', + 1904491 => 'Fernandina Beach, FL', + 1904493 => 'Jacksonville, FL', + 1904501 => 'St. Augustine, FL', + 1904503 => 'Jacksonville, FL', + 1904519 => 'Jacksonville, FL', + 1904527 => 'Jacksonville, FL', + 1904529 => 'Green Cove Spgs, FL', + 1904538 => 'Jacksonville, FL', + 1904540 => 'St. Augustine, FL', + 1904541 => 'Orange Park, FL', + 1904542 => 'Jacksonville, FL', + 1904548 => 'Yulee, FL', + 1904551 => 'Jacksonville, FL', + 1904564 => 'Jacksonville, FL', + 1904565 => 'Jacksonville, FL', + 1904573 => 'Jacksonville, FL', + 1904579 => 'Orange Park, FL', + 1904598 => 'Jacksonville, FL', + 1904619 => 'Jacksonville, FL', + 1904620 => 'Jacksonville, FL', + 1904630 => 'Jacksonville, FL', + 1904632 => 'Jacksonville, FL', + 1904633 => 'Jacksonville, FL', + 1904634 => 'Jacksonville, FL', + 1904636 => 'Jacksonville, FL', + 1904641 => 'Jacksonville, FL', + 1904642 => 'Jacksonville, FL', + 1904644 => 'Orange Park, FL', + 1904645 => 'Jacksonville, FL', + 1904646 => 'Jacksonville, FL', + 1904647 => 'Jacksonville, FL', + 1904652 => 'Jacksonville, FL', + 1904669 => 'St. Augustine, FL', + 1904674 => 'Jacksonville, FL', + 1904683 => 'Jacksonville, FL', + 1904687 => 'St. Augustine, FL', + 1904692 => 'Hastings, FL', + 1904693 => 'Jacksonville, FL', + 1904695 => 'Jacksonville, FL', + 1904696 => 'Jacksonville, FL', + 1904697 => 'Jacksonville, FL', + 1904714 => 'Jacksonville, FL', + 1904720 => 'Jacksonville, FL', + 1904721 => 'Jacksonville, FL', + 1904722 => 'Jacksonville, FL', + 1904723 => 'Jacksonville, FL', + 1904724 => 'Jacksonville, FL', + 1904725 => 'Jacksonville, FL', + 1904726 => 'Jacksonville, FL', + 1904727 => 'Jacksonville, FL', + 1904730 => 'Jacksonville, FL', + 1904731 => 'Jacksonville, FL', + 1904732 => 'Jacksonville, FL', + 1904733 => 'Jacksonville, FL', + 1904737 => 'Jacksonville, FL', + 1904738 => 'Jacksonville, FL', + 1904739 => 'Jacksonville, FL', + 1904741 => 'Jacksonville, FL', + 1904743 => 'Jacksonville, FL', + 1904744 => 'Jacksonville, FL', + 1904745 => 'Jacksonville, FL', + 1904751 => 'Jacksonville, FL', + 1904757 => 'Jacksonville, FL', + 1904764 => 'Jacksonville, FL', + 1904765 => 'Jacksonville, FL', + 1904766 => 'Jacksonville, FL', + 1904768 => 'Jacksonville, FL', + 1904771 => 'Jacksonville, FL', + 1904772 => 'Jacksonville, FL', + 1904777 => 'Jacksonville, FL', + 1904778 => 'Jacksonville, FL', + 1904779 => 'Jacksonville, FL', + 1904781 => 'Jacksonville, FL', + 1904783 => 'Jacksonville, FL', + 1904786 => 'Jacksonville, FL', + 1904794 => 'St. Augustine, FL', + 1904797 => 'St. Augustine, FL', + 1904807 => 'Jacksonville, FL', + 1904808 => 'St. Augustine, FL', + 1904810 => 'St. Augustine, FL', + 1904814 => 'St. Augustine, FL', + 1904819 => 'St. Augustine, FL', + 1904821 => 'Jacksonville, FL', + 1904823 => 'St. Augustine, FL', + 1904824 => 'St. Augustine, FL', + 1904825 => 'St. Augustine, FL', + 1904826 => 'St. Augustine, FL', + 1904827 => 'St. Augustine, FL', + 1904829 => 'St. Augustine, FL', + 1904845 => 'Hilliard, FL', + 1904854 => 'Jacksonville, FL', + 1904858 => 'Jacksonville, FL', + 1904879 => 'Callahan, FL', + 1904880 => 'Jacksonville, FL', + 1904886 => 'Jacksonville, FL', + 1904900 => 'Jacksonville, FL', + 1904908 => 'Jacksonville, FL', + 1904924 => 'Jacksonville, FL', + 1904928 => 'Jacksonville, FL', + 1904940 => 'St. Augustine, FL', + 1904953 => 'Jacksonville, FL', + 1904964 => 'Starke, FL', + 1904992 => 'Jacksonville, FL', + 1904996 => 'Jacksonville, FL', + 1904997 => 'Jacksonville, FL', + 1904998 => 'Jacksonville, FL', + 1905 => 'Ontario', + 1905201 => 'Markham, ON', + 1905206 => 'Mississauga, ON', + 1905209 => 'Markham, ON', + 1905212 => 'Mississauga, ON', + 1905216 => 'Brampton, ON', + 1905227 => 'Thorold, ON', + 1905230 => 'Brampton, ON', + 1905231 => 'Ajax, ON', + 1905232 => 'Mississauga, ON', + 1905235 => 'Newmarket, ON', + 1905237 => 'Richmond Hill, ON', + 1905238 => 'Mississauga, ON', + 1905239 => 'Ajax, ON', + 1905240 => 'Oshawa, ON', + 1905257 => 'Oakville, ON', + 1905263 => 'Hampton, ON', + 1905264 => 'Woodbridge, ON', + 1905265 => 'Woodbridge, ON', + 1905266 => 'Woodbridge, ON', + 1905267 => 'Mississauga, ON', + 1905268 => 'Mississauga, ON', + 1905270 => 'Mississauga, ON', + 1905271 => 'Mississauga, ON', + 1905272 => 'Mississauga, ON', + 1905273 => 'Mississauga, ON', + 1905274 => 'Mississauga, ON', + 1905275 => 'Mississauga, ON', + 1905276 => 'Mississauga, ON', + 1905277 => 'Mississauga, ON', + 1905278 => 'Mississauga, ON', + 1905279 => 'Mississauga, ON', + 1905281 => 'Mississauga, ON', + 1905282 => 'Mississauga, ON', + 1905286 => 'Mississauga, ON', + 1905290 => 'Mississauga, ON', + 1905294 => 'Markham, ON', + 1905295 => 'Niagara Falls, ON', + 1905296 => 'Hamilton, ON', + 1905297 => 'Hamilton, ON', + 1905303 => 'Maple, ON', + 1905304 => 'Ancaster, ON', + 1905305 => 'Markham, ON', + 1905306 => 'Mississauga, ON', + 1905308 => 'Hamilton, ON', + 1905309 => 'Grimsby, ON', + 1905312 => 'Hamilton, ON', + 1905315 => 'Burlington, ON', + 1905318 => 'Hamilton, ON', + 1905319 => 'Burlington, ON', + 1905331 => 'Burlington, ON', + 1905332 => 'Burlington, ON', + 1905333 => 'Burlington, ON', + 1905335 => 'Burlington, ON', + 1905336 => 'Burlington, ON', + 1905337 => 'Oakville, ON', + 1905338 => 'Oakville, ON', + 1905339 => 'Oakville, ON', + 1905346 => 'St. Catharines, ON', + 1905353 => 'Niagara Falls, ON', + 1905354 => 'Niagara Falls, ON', + 1905355 => 'Colborne, ON', + 1905356 => 'Niagara Falls, ON', + 1905357 => 'Niagara Falls, ON', + 1905358 => 'Niagara Falls, ON', + 1905362 => 'Mississauga, ON', + 1905366 => 'Mississauga, ON', + 1905371 => 'Niagara Falls, ON', + 1905372 => 'Cobourg, ON', + 1905373 => 'Cobourg, ON', + 1905374 => 'Niagara Falls, ON', + 1905377 => 'Cobourg, ON', + 1905382 => 'Stevensville, ON', + 1905383 => 'Hamilton, ON', + 1905385 => 'Hamilton, ON', + 1905387 => 'Hamilton, ON', + 1905388 => 'Hamilton, ON', + 1905389 => 'Hamilton, ON', + 1905397 => 'St. Catharines, ON', + 1905403 => 'Mississauga, ON', + 1905404 => 'Oshawa, ON', + 1905405 => 'Mississauga, ON', + 1905415 => 'Markham, ON', + 1905417 => 'Maple, ON', + 1905420 => 'Pickering, ON', + 1905426 => 'Ajax, ON', + 1905427 => 'Ajax, ON', + 1905428 => 'Ajax, ON', + 1905430 => 'Whitby, ON', + 1905432 => 'Oshawa, ON', + 1905433 => 'Oshawa, ON', + 1905434 => 'Oshawa, ON', + 1905436 => 'Oshawa, ON', + 1905438 => 'Oshawa, ON', + 1905448 => 'Oshawa, ON', + 1905450 => 'Brampton, ON', + 1905451 => 'Brampton, ON', + 1905452 => 'Brampton, ON', + 1905453 => 'Brampton, ON', + 1905454 => 'Brampton, ON', + 1905455 => 'Brampton, ON', + 1905456 => 'Brampton, ON', + 1905457 => 'Brampton, ON', + 1905458 => 'Brampton, ON', + 1905459 => 'Brampton, ON', + 1905460 => 'Brampton, ON', + 1905461 => 'Mississauga, ON', + 1905463 => 'Brampton, ON', + 1905465 => 'Oakville, ON', + 1905468 => 'Niagara-on-the-Lake, ON', + 1905469 => 'Oakville, ON', + 1905470 => 'Markham, ON', + 1905471 => 'Markham, ON', + 1905472 => 'Markham, ON', + 1905473 => 'Mount Albert, ON', + 1905474 => 'Markham, ON', + 1905475 => 'Markham, ON', + 1905476 => 'Keswick, ON', + 1905477 => 'Markham, ON', + 1905478 => 'Queensville, ON', + 1905479 => 'Markham, ON', + 1905480 => 'Markham, ON', + 1905487 => 'Brampton, ON', + 1905488 => 'Brampton, ON', + 1905489 => 'Markham, ON', + 1905492 => 'Pickering, ON', + 1905493 => 'Whitby, ON', + 1905494 => 'Brampton, ON', + 1905495 => 'Brampton, ON', + 1905497 => 'Brampton, ON', + 1905501 => 'Mississauga, ON', + 1905502 => 'Mississauga, ON', + 1905503 => 'Aurora, ON', + 1905507 => 'Mississauga, ON', + 1905508 => 'Richmond Hill, ON', + 1905509 => 'Pickering, ON', + 1905513 => 'Markham, ON', + 1905521 => 'Hamilton, ON', + 1905522 => 'Hamilton, ON', + 1905523 => 'Hamilton, ON', + 1905524 => 'Hamilton, ON', + 1905525 => 'Hamilton, ON', + 1905526 => 'Hamilton, ON', + 1905527 => 'Hamilton, ON', + 1905528 => 'Hamilton, ON', + 1905529 => 'Hamilton, ON', + 1905538 => 'Hamilton, ON', + 1905540 => 'Hamilton, ON', + 1905542 => 'Mississauga, ON', + 1905543 => 'Hamilton, ON', + 1905544 => 'Hamilton, ON', + 1905545 => 'Hamilton, ON', + 1905546 => 'Hamilton, ON', + 1905547 => 'Hamilton, ON', + 1905548 => 'Hamilton, ON', + 1905549 => 'Hamilton, ON', + 1905554 => 'Markham, ON', + 1905560 => 'Hamilton, ON', + 1905561 => 'Hamilton, ON', + 1905562 => 'Vineland, ON', + 1905563 => 'Beamsville, ON', + 1905564 => 'Mississauga, ON', + 1905565 => 'Mississauga, ON', + 1905566 => 'Mississauga, ON', + 1905567 => 'Mississauga, ON', + 1905568 => 'Mississauga, ON', + 1905569 => 'Mississauga, ON', + 1905571 => 'Oshawa, ON', + 1905572 => 'Hamilton, ON', + 1905573 => 'Hamilton, ON', + 1905574 => 'Hamilton, ON', + 1905575 => 'Hamilton, ON', + 1905576 => 'Oshawa, ON', + 1905577 => 'Hamilton, ON', + 1905578 => 'Hamilton, ON', + 1905579 => 'Oshawa, ON', + 1905582 => 'Oakville, ON', + 1905592 => 'Burlington, ON', + 1905593 => 'Mississauga, ON', + 1905595 => 'Brampton, ON', + 1905602 => 'Mississauga, ON', + 1905604 => 'Markham, ON', + 1905605 => 'Woodbridge, ON', + 1905607 => 'Mississauga, ON', + 1905608 => 'Mississauga, ON', + 1905612 => 'Mississauga, ON', + 1905614 => 'Mississauga, ON', + 1905615 => 'Mississauga, ON', + 1905619 => 'Ajax, ON', + 1905623 => 'Bowmanville, ON', + 1905624 => 'Mississauga, ON', + 1905625 => 'Mississauga, ON', + 1905627 => 'Dundas, ON', + 1905628 => 'Dundas, ON', + 1905629 => 'Mississauga, ON', + 1905631 => 'Burlington, ON', + 1905632 => 'Burlington, ON', + 1905633 => 'Burlington, ON', + 1905634 => 'Burlington, ON', + 1905635 => 'Burlington, ON', + 1905636 => 'Milton, ON', + 1905637 => 'Burlington, ON', + 1905639 => 'Burlington, ON', + 1905640 => 'Whitchurch-Stouffville, ON', + 1905641 => 'St. Catharines, ON', + 1905642 => 'Whitchurch-Stouffville, ON', + 1905643 => 'Stoney Creek, ON', + 1905646 => 'St. Catharines, ON', + 1905648 => 'Ancaster, ON', + 1905649 => 'Claremont, ON', + 1905655 => 'Brooklin, ON', + 1905659 => 'Freelton, ON', + 1905660 => 'Concord, ON', + 1905662 => 'Stoney Creek, ON', + 1905664 => 'Stoney Creek, ON', + 1905665 => 'Whitby, ON', + 1905666 => 'Whitby, ON', + 1905667 => 'Hamilton, ON', + 1905668 => 'Whitby, ON', + 1905669 => 'Concord, ON', + 1905670 => 'Mississauga, ON', + 1905671 => 'Mississauga, ON', + 1905672 => 'Mississauga, ON', + 1905673 => 'Mississauga, ON', + 1905676 => 'Mississauga, ON', + 1905677 => 'Mississauga, ON', + 1905678 => 'Mississauga, ON', + 1905679 => 'Mount Hope, ON', + 1905681 => 'Burlington, ON', + 1905682 => 'St. Catharines, ON', + 1905683 => 'Ajax, ON', + 1905684 => 'St. Catharines, ON', + 1905685 => 'St. Catharines, ON', + 1905686 => 'Ajax, ON', + 1905687 => 'St. Catharines, ON', + 1905688 => 'St. Catharines, ON', + 1905689 => 'Waterdown, ON', + 1905690 => 'Waterdown, ON', + 1905692 => 'Binbrook, ON', + 1905693 => 'Milton, ON', + 1905696 => 'Mississauga, ON', + 1905697 => 'Bowmanville, ON', + 1905701 => 'Dunnville, ON', + 1905702 => 'Georgetown, ON', + 1905704 => 'St. Catharines, ON', + 1905712 => 'Mississauga, ON', + 1905713 => 'Aurora, ON', + 1905714 => 'Welland, ON', + 1905715 => 'Newmarket, ON', + 1905720 => 'Oshawa, ON', + 1905721 => 'Oshawa, ON', + 1905722 => 'Sutton West, ON', + 1905723 => 'Oshawa, ON', + 1905725 => 'Oshawa, ON', + 1905726 => 'Aurora, ON', + 1905727 => 'Aurora, ON', + 1905728 => 'Oshawa, ON', + 1905729 => 'Beeton, ON', + 1905731 => 'Thornhill, ON', + 1905732 => 'Welland, ON', + 1905734 => 'Welland, ON', + 1905735 => 'Welland, ON', + 1905737 => 'Richmond Hill, ON', + 1905738 => 'Concord, ON', + 1905751 => 'Aurora, ON', + 1905752 => 'Markham, ON', + 1905760 => 'Concord, ON', + 1905761 => 'Concord, ON', + 1905765 => 'Caledonia, ON', + 1905768 => 'Hagersville, ON', + 1905770 => 'Richmond Hill, ON', + 1905772 => 'Cayuga, ON', + 1905774 => 'Dunnville, ON', + 1905775 => 'Bradford, ON', + 1905777 => 'Hamilton, ON', + 1905778 => 'Bradford, ON', + 1905780 => 'Richmond Hill, ON', + 1905785 => 'Mississauga, ON', + 1905787 => 'Richmond Hill, ON', + 1905788 => 'Welland, ON', + 1905789 => 'Brampton, ON', + 1905790 => 'Brampton, ON', + 1905791 => 'Brampton, ON', + 1905792 => 'Brampton, ON', + 1905793 => 'Brampton, ON', + 1905794 => 'Castlemore, ON', + 1905795 => 'Mississauga, ON', + 1905796 => 'Brampton, ON', + 1905799 => 'Brampton, ON', + 1905803 => 'Mississauga, ON', + 1905804 => 'Mississauga, ON', + 1905812 => 'Mississauga, ON', + 1905813 => 'Mississauga, ON', + 1905814 => 'Mississauga, ON', + 1905815 => 'Oakville, ON', + 1905817 => 'Mississauga, ON', + 1905819 => 'Mississauga, ON', + 1905820 => 'Mississauga, ON', + 1905821 => 'Mississauga, ON', + 1905822 => 'Mississauga, ON', + 1905823 => 'Mississauga, ON', + 1905824 => 'Mississauga, ON', + 1905825 => 'Oakville, ON', + 1905826 => 'Mississauga, ON', + 1905827 => 'Oakville, ON', + 1905828 => 'Mississauga, ON', + 1905829 => 'Oakville, ON', + 1905830 => 'Newmarket, ON', + 1905831 => 'Pickering, ON', + 1905832 => 'Maple, ON', + 1905833 => 'King City, ON', + 1905834 => 'Port Colborne, ON', + 1905835 => 'Port Colborne, ON', + 1905836 => 'Newmarket, ON', + 1905837 => 'Pickering, ON', + 1905839 => 'Pickering, ON', + 1905840 => 'Brampton, ON', + 1905841 => 'Aurora, ON', + 1905842 => 'Oakville, ON', + 1905844 => 'Oakville, ON', + 1905845 => 'Oakville, ON', + 1905846 => 'Brampton, ON', + 1905847 => 'Oakville, ON', + 1905848 => 'Mississauga, ON', + 1905849 => 'Oakville, ON', + 1905850 => 'Woodbridge, ON', + 1905851 => 'Woodbridge, ON', + 1905852 => 'Uxbridge, ON', + 1905853 => 'Newmarket, ON', + 1905854 => 'Campbellville, ON', + 1905855 => 'Mississauga, ON', + 1905856 => 'Woodbridge, ON', + 1905857 => 'Bolton, ON', + 1905858 => 'Mississauga, ON', + 1905859 => 'Nobleton, ON', + 1905862 => 'Uxbridge, ON', + 1905864 => 'Milton, ON', + 1905868 => 'Newmarket, ON', + 1905871 => 'Fort Erie, ON', + 1905873 => 'Georgetown, ON', + 1905874 => 'Brampton, ON', + 1905875 => 'Milton, ON', + 1905876 => 'Milton, ON', + 1905877 => 'Georgetown, ON', + 1905878 => 'Milton, ON', + 1905881 => 'Thornhill, ON', + 1905883 => 'Richmond Hill, ON', + 1905884 => 'Richmond Hill, ON', + 1905885 => 'Port Hope, ON', + 1905888 => 'Bethesda, ON', + 1905889 => 'Thornhill, ON', + 1905890 => 'Mississauga, ON', + 1905891 => 'Mississauga, ON', + 1905893 => 'Kleinburg, ON', + 1905894 => 'Ridgeway, ON', + 1905895 => 'Newmarket, ON', + 1905896 => 'Mississauga, ON', + 1905897 => 'Mississauga, ON', + 1905898 => 'Newmarket, ON', + 1905899 => 'Wainfleet, ON', + 1905901 => 'Oakville, ON', + 1905910 => 'Markham, ON', + 1905913 => 'Castlemore, ON', + 1905918 => 'Richmond Hill, ON', + 1905934 => 'St. Catharines, ON', + 1905935 => 'St. Catharines, ON', + 1905936 => 'Tottenham, ON', + 1905937 => 'St. Catharines, ON', + 1905938 => 'St. Catharines, ON', + 1905939 => 'Schomberg, ON', + 1905940 => 'Markham, ON', + 1905943 => 'Markham, ON', + 1905944 => 'Markham, ON', + 1905945 => 'Grimsby, ON', + 1905946 => 'Markham, ON', + 1905947 => 'Markham, ON', + 1905948 => 'Markham, ON', + 1905949 => 'Mississauga, ON', + 1905951 => 'Bolton, ON', + 1905953 => 'Newmarket, ON', + 1905954 => 'Newmarket, ON', + 1905957 => 'Smithville, ON', + 1905967 => 'Newmarket, ON', + 1905970 => 'Brampton, ON', + 1905982 => 'Port Perry, ON', + 1905983 => 'Orono, ON', + 1905984 => 'St. Catharines, ON', + 1905985 => 'Port Perry, ON', + 1905987 => 'Newcastle, ON', + 1905988 => 'St. Catharines, ON', + 1905989 => 'Keswick, ON', + 1905990 => 'Mississauga, ON', + 1905994 => 'Fort Erie, ON', + 1905997 => 'Mississauga, ON', + 1906 => 'Michigan', + 1906225 => 'Marquette, MI', + 1906226 => 'Marquette, MI', + 1906227 => 'Marquette, MI', + 1906228 => 'Marquette, MI', + 1906233 => 'Escanaba, MI', + 1906248 => 'Brimley, MI', + 1906249 => 'Marquette, MI', + 1906253 => 'Sault Ste. Marie, MI', + 1906265 => 'Iron River, MI', + 1906293 => 'Newberry, MI', + 1906296 => 'Lake Linden, MI', + 1906337 => 'Calumet Township, MI', + 1906341 => 'Manistique, MI', + 1906346 => 'Gwinn, MI', + 1906353 => 'Baraga, MI', + 1906387 => 'Munising, MI', + 1906428 => 'Gladstone, MI', + 1906466 => 'Bark River, MI', + 1906475 => 'Negaunee, MI', + 1906484 => 'Cedarville, MI', + 1906485 => 'Ishpeming, MI', + 1906486 => 'Ishpeming, MI', + 1906487 => 'Houghton, MI', + 1906493 => 'Drummond, MI', + 1906495 => 'Kincheloe, MI', + 1906523 => 'Chassell, MI', + 1906524 => 'L\'Anse, MI', + 1906563 => 'Norway, MI', + 1906632 => 'Sault Ste. Marie, MI', + 1906635 => 'Sault Ste. Marie, MI', + 1906643 => 'St. Ignace, MI', + 1906647 => 'Pickford, MI', + 1906753 => 'Stephenson, MI', + 1906774 => 'Iron Mountain, MI', + 1906776 => 'Iron Mountain, MI', + 1906779 => 'Iron Mountain, MI', + 1906786 => 'Escanaba, MI', + 1906789 => 'Escanaba, MI', + 1906847 => 'Mackinac Island, MI', + 1906863 => 'Menominee, MI', + 1906864 => 'Menominee, MI', + 1906875 => 'Crystal Falls, MI', + 1906884 => 'Ontonagon, MI', + 1906932 => 'Ironwood, MI', + 1907 => 'Alaska', + 1907212 => 'Anchorage, AK', + 1907222 => 'Anchorage, AK', + 1907224 => 'Seward, AK', + 1907225 => 'Ketchikan, AK', + 1907228 => 'Ketchikan, AK', + 1907235 => 'Homer, AK', + 1907243 => 'Anchorage, AK', + 1907245 => 'Anchorage, AK', + 1907247 => 'Ketchikan, AK', + 1907248 => 'Anchorage, AK', + 1907257 => 'Anchorage, AK', + 1907258 => 'Anchorage, AK', + 1907260 => 'Soldotna, AK', + 1907262 => 'Soldotna, AK', + 1907264 => 'Anchorage, AK', + 1907269 => 'Anchorage, AK', + 1907271 => 'Anchorage, AK', + 1907272 => 'Anchorage, AK', + 1907274 => 'Anchorage, AK', + 1907276 => 'Anchorage, AK', + 1907277 => 'Anchorage, AK', + 1907278 => 'Anchorage, AK', + 1907279 => 'Anchorage, AK', + 1907283 => 'Kenai, AK', + 1907332 => 'Anchorage, AK', + 1907333 => 'Anchorage, AK', + 1907334 => 'Anchorage, AK', + 1907335 => 'Kenai, AK', + 1907336 => 'Anchorage, AK', + 1907337 => 'Anchorage, AK', + 1907338 => 'Anchorage, AK', + 1907339 => 'Anchorage, AK', + 1907343 => 'Anchorage, AK', + 1907344 => 'Anchorage, AK', + 1907345 => 'Anchorage, AK', + 1907346 => 'Anchorage, AK', + 1907349 => 'Anchorage, AK', + 1907352 => 'Wasilla, AK', + 1907357 => 'Wasilla, AK', + 1907373 => 'Wasilla, AK', + 1907374 => 'Fairbanks, AK', + 1907376 => 'Wasilla, AK', + 1907424 => 'Cordova, AK', + 1907442 => 'Kotzebue, AK', + 1907443 => 'Nome, AK', + 1907451 => 'Fairbanks, AK', + 1907452 => 'Fairbanks, AK', + 1907455 => 'Fairbanks, AK', + 1907456 => 'Fairbanks, AK', + 1907457 => 'Fairbanks, AK', + 1907458 => 'Fairbanks, AK', + 1907459 => 'Fairbanks, AK', + 1907463 => 'Juneau, AK', + 1907465 => 'Juneau, AK', + 1907474 => 'Fairbanks, AK', + 1907479 => 'Fairbanks, AK', + 1907486 => 'Kodiak, AK', + 1907487 => 'Kodiak, AK', + 1907488 => 'North Pole, AK', + 1907490 => 'North Pole, AK', + 1907495 => 'Willow, AK', + 1907522 => 'Anchorage, AK', + 1907523 => 'Juneau, AK', + 1907543 => 'Bethel, AK', + 1907561 => 'Anchorage, AK', + 1907562 => 'Anchorage, AK', + 1907563 => 'Anchorage, AK', + 1907567 => 'Ninilchik, AK', + 1907569 => 'Anchorage, AK', + 1907580 => 'Elmendorf Air Force Base, AK', + 1907581 => 'Unalaska, AK', + 1907586 => 'Juneau, AK', + 1907622 => 'Eagle River, AK', + 1907644 => 'Anchorage, AK', + 1907646 => 'Anchorage, AK', + 1907677 => 'Anchorage, AK', + 1907683 => 'Healy, AK', + 1907688 => 'Chugiak, AK', + 1907694 => 'Eagle River, AK', + 1907696 => 'Eagle River, AK', + 1907714 => 'Soldotna, AK', + 1907729 => 'Anchorage, AK', + 1907733 => 'Talkeetna, AK', + 1907742 => 'Anchorage, AK', + 1907743 => 'Anchorage, AK', + 1907745 => 'Palmer, AK', + 1907746 => 'Palmer, AK', + 1907747 => 'Sitka, AK', + 1907766 => 'Haines, AK', + 1907770 => 'Anchorage, AK', + 1907772 => 'Petersburg, AK', + 1907776 => 'Kenai, AK', + 1907780 => 'Juneau, AK', + 1907783 => 'Girdwood, AK', + 1907789 => 'Juneau, AK', + 1907790 => 'Juneau, AK', + 1907822 => 'Glennallen, AK', + 1907826 => 'Craig, AK', + 1907835 => 'Valdez, AK', + 1907842 => 'Dillingham, AK', + 1907852 => 'Barrow, AK', + 1907868 => 'Anchorage, AK', + 1907874 => 'Wrangell, AK', + 1907883 => 'Tok, AK', + 1907895 => 'Delta Junction, AK', + 1907929 => 'Anchorage, AK', + 1907966 => 'Sitka, AK', + 1907983 => 'Skagway, AK', + 1908 => 'New Jersey', + 1908206 => 'Union, NJ', + 1908213 => 'Phillipsburg, NJ', + 1908221 => 'Bernardsville, NJ', + 1908232 => 'Westfield, NJ', + 1908233 => 'Westfield, NJ', + 1908236 => 'Lebanon, NJ', + 1908237 => 'Flemington, NJ', + 1908258 => 'Union, NJ', + 1908272 => 'Cranford, NJ', + 1908273 => 'Summit, NJ', + 1908276 => 'Cranford, NJ', + 1908277 => 'Summit, NJ', + 1908281 => 'Hillsborough Township, NJ', + 1908282 => 'Elizabeth, NJ', + 1908284 => 'Flemington, NJ', + 1908289 => 'Elizabeth, NJ', + 1908317 => 'Westfield, NJ', + 1908322 => 'Scotch Plains, NJ', + 1908351 => 'Elizabeth, NJ', + 1908352 => 'Elizabeth, NJ', + 1908353 => 'Elizabeth, NJ', + 1908354 => 'Elizabeth, NJ', + 1908355 => 'Elizabeth, NJ', + 1908359 => 'Hillsborough Township, NJ', + 1908362 => 'Blairstown, NJ', + 1908369 => 'Hillsborough Township, NJ', + 1908387 => 'Phillipsburg, NJ', + 1908431 => 'Hillsborough Township, NJ', + 1908436 => 'Elizabeth, NJ', + 1908453 => 'Oxford Township, NJ', + 1908454 => 'Phillipsburg, NJ', + 1908464 => 'Berkeley Heights, NJ', + 1908469 => 'Elizabeth, NJ', + 1908474 => 'Linden, NJ', + 1908475 => 'Belvidere, NJ', + 1908486 => 'Linden, NJ', + 1908496 => 'Columbia, NJ', + 1908497 => 'Cranford, NJ', + 1908522 => 'Summit, NJ', + 1908527 => 'Elizabeth, NJ', + 1908558 => 'Elizabeth, NJ', + 1908587 => 'Linden, NJ', + 1908598 => 'Summit, NJ', + 1908624 => 'Union, NJ', + 1908637 => 'Great Meadows, NJ', + 1908654 => 'Westfield, NJ', + 1908684 => 'Hackettstown, NJ', + 1908686 => 'Union, NJ', + 1908687 => 'Union, NJ', + 1908688 => 'Union, NJ', + 1908689 => 'Washington, NJ', + 1908709 => 'Cranford, NJ', + 1908719 => 'Bedminster Township, NJ', + 1908782 => 'Flemington, NJ', + 1908788 => 'Flemington, NJ', + 1908806 => 'Flemington, NJ', + 1908810 => 'Union, NJ', + 1908813 => 'Hackettstown, NJ', + 1908820 => 'Elizabeth, NJ', + 1908832 => 'Califon, NJ', + 1908835 => 'Washington, NJ', + 1908850 => 'Hackettstown, NJ', + 1908851 => 'Union, NJ', + 1908852 => 'Hackettstown, NJ', + 1908859 => 'Phillipsburg, NJ', + 1908862 => 'Linden, NJ', + 1908874 => 'Hillsborough Township, NJ', + 1908876 => 'Long Valley, NJ', + 1908879 => 'Chester Borough, NJ', + 1908904 => 'Hillsborough Township, NJ', + 1908925 => 'Linden, NJ', + 1908931 => 'Cranford, NJ', + 1908964 => 'Union, NJ', + 1908965 => 'Elizabeth, NJ', + 1908979 => 'Hackettstown, NJ', + 1908994 => 'Elizabeth, NJ', + 1908995 => 'Milford, NJ', + 1908996 => 'Frenchtown, NJ', + 1909 => 'California', + 1909305 => 'San Dimas, CA', + 1909307 => 'Redlands, CA', + 1909335 => 'Redlands, CA', + 1909336 => 'Lake Arrowhead, CA', + 1909337 => 'Lake Arrowhead, CA', + 1909338 => 'Crestline, CA', + 1909349 => 'Fontana, CA', + 1909350 => 'Fontana, CA', + 1909353 => 'Riverside, CA', + 1909355 => 'Fontana, CA', + 1909356 => 'Fontana, CA', + 1909357 => 'Fontana, CA', + 1909364 => 'Chino, CA', + 1909370 => 'Colton, CA', + 1909381 => 'San Bernardino, CA', + 1909382 => 'San Bernardino, CA', + 1909383 => 'San Bernardino, CA', + 1909384 => 'San Bernardino, CA', + 1909386 => 'San Bernardino, CA', + 1909387 => 'San Bernardino, CA', + 1909388 => 'San Bernardino, CA', + 1909390 => 'Ontario, CA', + 1909391 => 'Ontario, CA', + 1909392 => 'La Verne, CA', + 1909393 => 'Chino Hills, CA', + 1909394 => 'San Dimas, CA', + 1909395 => 'Ontario, CA', + 1909396 => 'Diamond Bar, CA', + 1909397 => 'Pomona, CA', + 1909421 => 'Rialto, CA', + 1909422 => 'Colton, CA', + 1909427 => 'Fontana, CA', + 1909428 => 'Fontana, CA', + 1909429 => 'Fontana, CA', + 1909433 => 'Colton, CA', + 1909444 => 'Walnut, CA', + 1909460 => 'Ontario, CA', + 1909464 => 'Chino, CA', + 1909465 => 'Chino, CA', + 1909466 => 'Rancho Cucamonga, CA', + 1909467 => 'Ontario, CA', + 1909468 => 'Walnut, CA', + 1909469 => 'Pomona, CA', + 1909473 => 'San Bernardino, CA', + 1909475 => 'San Bernardino, CA', + 1909476 => 'Rancho Cucamonga, CA', + 1909477 => 'Rancho Cucamonga, CA', + 1909478 => 'Loma Linda, CA', + 1909481 => 'Rancho Cucamonga, CA', + 1909483 => 'Rancho Cucamonga, CA', + 1909484 => 'Rancho Cucamonga, CA', + 1909517 => 'Chino, CA', + 1909548 => 'Chino, CA', + 1909558 => 'Loma Linda, CA', + 1909574 => 'Fontana, CA', + 1909579 => 'Upland, CA', + 1909580 => 'Colton, CA', + 1909581 => 'Rancho Cucamonga, CA', + 1909584 => 'Big Bear, CA', + 1909585 => 'Big Bear, CA', + 1909590 => 'Chino, CA', + 1909591 => 'Chino, CA', + 1909592 => 'San Dimas, CA', + 1909593 => 'La Verne, CA', + 1909594 => 'Walnut, CA', + 1909595 => 'Walnut, CA', + 1909596 => 'La Verne, CA', + 1909598 => 'Walnut, CA', + 1909599 => 'San Dimas, CA', + 1909605 => 'Ontario, CA', + 1909606 => 'Chino Hills, CA', + 1909608 => 'Upland, CA', + 1909612 => 'Diamond Bar, CA', + 1909613 => 'Chino, CA', + 1909620 => 'Pomona, CA', + 1909622 => 'Pomona, CA', + 1909623 => 'Pomona, CA', + 1909627 => 'Chino, CA', + 1909628 => 'Chino, CA', + 1909629 => 'Pomona, CA', + 1909646 => 'Rancho Cucamonga, CA', + 1909673 => 'Ontario, CA', + 1909748 => 'Redlands, CA', + 1909758 => 'Rancho Cucamonga, CA', + 1909790 => 'Yucaipa, CA', + 1909792 => 'Redlands, CA', + 1909793 => 'Redlands, CA', + 1909797 => 'Yucaipa, CA', + 1909798 => 'Redlands, CA', + 1909799 => 'Loma Linda, CA', + 1909820 => 'Rialto, CA', + 1909822 => 'Fontana, CA', + 1909823 => 'Fontana, CA', + 1909829 => 'Fontana, CA', + 1909854 => 'Fontana, CA', + 1909860 => 'Diamond Bar, CA', + 1909861 => 'Diamond Bar, CA', + 1909862 => 'Highland, CA', + 1909863 => 'Highland, CA', + 1909864 => 'Highland, CA', + 1909865 => 'Pomona, CA', + 1909866 => 'Big Bear Lake, CA', + 1909867 => 'Running Springs, CA', + 1909868 => 'Pomona, CA', + 1909873 => 'Rialto, CA', + 1909874 => 'Rialto, CA', + 1909875 => 'Rialto, CA', + 1909877 => 'Bloomington, CA', + 1909878 => 'Big Bear Lake, CA', + 1909880 => 'San Bernardino, CA', + 1909881 => 'San Bernardino, CA', + 1909882 => 'San Bernardino, CA', + 1909883 => 'San Bernardino, CA', + 1909884 => 'San Bernardino, CA', + 1909885 => 'San Bernardino, CA', + 1909886 => 'San Bernardino, CA', + 1909887 => 'San Bernardino, CA', + 1909888 => 'San Bernardino, CA', + 1909889 => 'San Bernardino, CA', + 1909890 => 'San Bernardino, CA', + 1909902 => 'Chino, CA', + 1909920 => 'Upland, CA', + 1909923 => 'Ontario, CA', + 1909930 => 'Ontario, CA', + 1909931 => 'Upland, CA', + 1909937 => 'Ontario, CA', + 1909941 => 'Rancho Cucamonga, CA', + 1909944 => 'Rancho Cucamonga, CA', + 1909945 => 'Rancho Cucamonga, CA', + 1909946 => 'Upland, CA', + 1909947 => 'Ontario, CA', + 1909948 => 'Rancho Cucamonga, CA', + 1909949 => 'Upland, CA', + 1909980 => 'Rancho Cucamonga, CA', + 1909981 => 'Upland, CA', + 1909982 => 'Upland, CA', + 1909983 => 'Ontario, CA', + 1909984 => 'Ontario, CA', + 1909985 => 'Upland, CA', + 1909986 => 'Ontario, CA', + 1909987 => 'Rancho Cucamonga, CA', + 1909988 => 'Ontario, CA', + 1909989 => 'Rancho Cucamonga, CA', + 1910 => 'North Carolina', + 1910215 => 'Pinehurst, NC', + 1910219 => 'Jacksonville, NC', + 1910223 => 'Fayetteville, NC', + 1910228 => 'Wilmington, NC', + 1910232 => 'Wilmington, NC', + 1910235 => 'Pinehurst, NC', + 1910245 => 'Vass, NC', + 1910246 => 'Southern Pines, NC', + 1910251 => 'Wilmington, NC', + 1910253 => 'Bolivia, NC', + 1910254 => 'Wilmington, NC', + 1910256 => 'Wilmington, NC', + 1910259 => 'Burgaw, NC', + 1910262 => 'Wilmington, NC', + 1910264 => 'Wilmington, NC', + 1910267 => 'Faison, NC', + 1910270 => 'Hampstead, NC', + 1910272 => 'Lumberton, NC', + 1910276 => 'Laurinburg, NC', + 1910277 => 'Laurinburg, NC', + 1910278 => 'Oak Island, NC', + 1910285 => 'Wallace, NC', + 1910289 => 'Rose Hill, NC', + 1910293 => 'Warsaw, NC', + 1910295 => 'Pinehurst, NC', + 1910296 => 'Kenansville, NC', + 1910297 => 'Wilmington, NC', + 1910298 => 'Beulaville, NC', + 1910299 => 'Clinton, NC', + 1910313 => 'Wilmington, NC', + 1910321 => 'Fayetteville, NC', + 1910323 => 'Fayetteville, NC', + 1910324 => 'Richlands, NC', + 1910325 => 'Swansboro, NC', + 1910326 => 'Swansboro, NC', + 1910327 => 'Sneads Ferry, NC', + 1910328 => 'Surf City, NC', + 1910329 => 'Holly Ridge, NC', + 1910332 => 'Wilmington, NC', + 1910333 => 'Jacksonville, NC', + 1910338 => 'Wilmington, NC', + 1910339 => 'Fayetteville, NC', + 1910341 => 'Wilmington, NC', + 1910343 => 'Wilmington, NC', + 1910346 => 'Jacksonville, NC', + 1910347 => 'Jacksonville, NC', + 1910350 => 'Wilmington, NC', + 1910352 => 'Wilmington, NC', + 1910353 => 'Jacksonville, NC', + 1910355 => 'Jacksonville, NC', + 1910362 => 'Wilmington, NC', + 1910371 => 'Leland, NC', + 1910383 => 'Leland, NC', + 1910392 => 'Wilmington, NC', + 1910395 => 'Wilmington, NC', + 1910396 => 'Fort Bragg, NC', + 1910397 => 'Wilmington, NC', + 1910399 => 'Wilmington, NC', + 1910417 => 'Rockingham, NC', + 1910422 => 'Rowland, NC', + 1910423 => 'Fayetteville, NC', + 1910424 => 'Fayetteville, NC', + 1910425 => 'Fayetteville, NC', + 1910426 => 'Fayetteville, NC', + 1910428 => 'Biscoe, NC', + 1910429 => 'Fayetteville, NC', + 1910433 => 'Fayetteville, NC', + 1910436 => 'Spring Lake, NC', + 1910439 => 'Mount Gilead, NC', + 1910442 => 'Wilmington, NC', + 1910450 => 'Camp Lejeune, NC', + 1910451 => 'Camp Lejeune, NC', + 1910452 => 'Wilmington, NC', + 1910454 => 'Southport, NC', + 1910455 => 'Jacksonville, NC', + 1910457 => 'Southport, NC', + 1910458 => 'Carolina Beach, NC', + 1910482 => 'Fayetteville, NC', + 1910483 => 'Fayetteville, NC', + 1910484 => 'Fayetteville, NC', + 1910485 => 'Fayetteville, NC', + 1910486 => 'Fayetteville, NC', + 1910487 => 'Fayetteville, NC', + 1910488 => 'Fayetteville, NC', + 1910497 => 'Spring Lake, NC', + 1910509 => 'Wilmington, NC', + 1910520 => 'Wilmington, NC', + 1910521 => 'Pembroke, NC', + 1910522 => 'Pembroke, NC', + 1910525 => 'Roseboro, NC', + 1910538 => 'Wilmington, NC', + 1910564 => 'Clinton, NC', + 1910572 => 'Troy, NC', + 1910576 => 'Troy, NC', + 1910577 => 'Jacksonville, NC', + 1910582 => 'Hamlet, NC', + 1910590 => 'Clinton, NC', + 1910592 => 'Clinton, NC', + 1910594 => 'Newton Grove, NC', + 1910609 => 'Fayetteville, NC', + 1910615 => 'Fayetteville, NC', + 1910616 => 'Wilmington, NC', + 1910618 => 'Lumberton, NC', + 1910620 => 'Wilmington, NC', + 1910628 => 'Fairmont, NC', + 1910630 => 'Fayetteville, NC', + 1910640 => 'Whiteville, NC', + 1910641 => 'Whiteville, NC', + 1910642 => 'Whiteville, NC', + 1910648 => 'Bladenboro, NC', + 1910652 => 'Ellerbe, NC', + 1910653 => 'Tabor City, NC', + 1910654 => 'Chadbourn, NC', + 1910671 => 'Lumberton, NC', + 1910673 => 'West End, NC', + 1910675 => 'Castle Hayne, NC', + 1910678 => 'Fayetteville, NC', + 1910686 => 'Wilmington, NC', + 1910692 => 'Southern Pines, NC', + 1910693 => 'Southern Pines, NC', + 1910695 => 'Southern Pines, NC', + 1910715 => 'Pinehurst, NC', + 1910738 => 'Lumberton, NC', + 1910739 => 'Lumberton, NC', + 1910762 => 'Wilmington, NC', + 1910763 => 'Wilmington, NC', + 1910764 => 'Fayetteville, NC', + 1910772 => 'Wilmington, NC', + 1910777 => 'Wilmington, NC', + 1910790 => 'Wilmington, NC', + 1910791 => 'Wilmington, NC', + 1910792 => 'Wilmington, NC', + 1910793 => 'Wilmington, NC', + 1910794 => 'Wilmington, NC', + 1910796 => 'Wilmington, NC', + 1910798 => 'Wilmington, NC', + 1910799 => 'Wilmington, NC', + 1910814 => 'Lillington, NC', + 1910815 => 'Wilmington, NC', + 1910822 => 'Fayetteville, NC', + 1910826 => 'Fayetteville, NC', + 1910842 => 'Supply, NC', + 1910843 => 'Red Springs, NC', + 1910844 => 'Maxton, NC', + 1910848 => 'Raeford, NC', + 1910860 => 'Fayetteville, NC', + 1910862 => 'Elizabethtown, NC', + 1910863 => 'Bladenboro, NC', + 1910864 => 'Fayetteville, NC', + 1910865 => 'St. Pauls, NC', + 1910867 => 'Fayetteville, NC', + 1910868 => 'Fayetteville, NC', + 1910875 => 'Raeford, NC', + 1910891 => 'Dunn, NC', + 1910892 => 'Dunn, NC', + 1910893 => 'Lillington, NC', + 1910895 => 'Rockingham, NC', + 1910904 => 'Raeford, NC', + 1910907 => 'E. E. Smith, Fort Bragg, NC', + 1910920 => 'Fayetteville, NC', + 1910938 => 'Jacksonville, NC', + 1910944 => 'Aberdeen, NC', + 1910947 => 'Carthage, NC', + 1910948 => 'Robbins, NC', + 1910974 => 'Candor, NC', + 1910997 => 'Rockingham, NC', + 1912 => 'Georgia', + 1912201 => 'Savannah, GA', + 1912231 => 'Savannah, GA', + 1912232 => 'Savannah, GA', + 1912233 => 'Savannah, GA', + 1912234 => 'Savannah, GA', + 1912236 => 'Savannah, GA', + 1912238 => 'Savannah, GA', + 1912261 => 'Brunswick, GA', + 1912262 => 'Brunswick, GA', + 1912264 => 'Brunswick, GA', + 1912265 => 'Brunswick, GA', + 1912267 => 'Brunswick, GA', + 1912275 => 'Brunswick, GA', + 1912280 => 'Brunswick, GA', + 1912283 => 'Waycross, GA', + 1912284 => 'Waycross, GA', + 1912285 => 'Waycross, GA', + 1912287 => 'Waycross, GA', + 1912289 => 'Brunswick, GA', + 1912303 => 'Savannah, GA', + 1912330 => 'Pooler, GA', + 1912335 => 'Savannah, GA', + 1912342 => 'Brunswick, GA', + 1912349 => 'Savannah, GA', + 1912350 => 'Savannah, GA', + 1912351 => 'Savannah, GA', + 1912352 => 'Savannah, GA', + 1912353 => 'Savannah, GA', + 1912354 => 'Savannah, GA', + 1912355 => 'Savannah, GA', + 1912356 => 'Savannah, GA', + 1912359 => 'Broxton, GA', + 1912366 => 'Baxley, GA', + 1912367 => 'Baxley, GA', + 1912368 => 'Hinesville, GA', + 1912369 => 'Hinesville, GA', + 1912375 => 'Hazlehurst, GA', + 1912383 => 'Douglas, GA', + 1912384 => 'Douglas, GA', + 1912389 => 'Douglas, GA', + 1912422 => 'Pearson, GA', + 1912427 => 'Jesup, GA', + 1912435 => 'Fort Stewart, GA', + 1912437 => 'Darien, GA', + 1912443 => 'Savannah, GA', + 1912447 => 'Savannah, GA', + 1912449 => 'Blackshear, GA', + 1912459 => 'Richmond Hill, GA', + 1912462 => 'Nahunta, GA', + 1912466 => 'Brunswick, GA', + 1912487 => 'Homerville, GA', + 1912489 => 'Statesboro, GA', + 1912496 => 'Folkston, GA', + 1912526 => 'Lyons, GA', + 1912529 => 'Soperton, GA', + 1912530 => 'Jesup, GA', + 1912537 => 'Vidalia, GA', + 1912538 => 'Vidalia, GA', + 1912545 => 'Ludowici, GA', + 1912554 => 'Brunswick, GA', + 1912557 => 'Reidsville, GA', + 1912564 => 'Sylvania, GA', + 1912583 => 'Mount Vernon, GA', + 1912587 => 'Statesboro, GA', + 1912588 => 'Jesup, GA', + 1912598 => 'Savannah, GA', + 1912629 => 'Savannah, GA', + 1912632 => 'Alma, GA', + 1912634 => 'Saint Simons Island, GA', + 1912638 => 'Saint Simons Island, GA', + 1912644 => 'Savannah, GA', + 1912651 => 'Savannah, GA', + 1912652 => 'Savannah, GA', + 1912653 => 'Pembroke, GA', + 1912654 => 'Glennville, GA', + 1912673 => 'St. Marys, GA', + 1912681 => 'Statesboro, GA', + 1912685 => 'Metter, GA', + 1912691 => 'Savannah, GA', + 1912692 => 'Savannah, GA', + 1912727 => 'Richmond Hill, GA', + 1912729 => 'Kingsland, GA', + 1912739 => 'Claxton, GA', + 1912748 => 'Pooler, GA', + 1912754 => 'Springfield, GA', + 1912756 => 'Richmond Hill, GA', + 1912764 => 'Statesboro, GA', + 1912772 => 'Guyton, GA', + 1912786 => 'Tybee Island, GA', + 1912790 => 'Savannah, GA', + 1912819 => 'Savannah, GA', + 1912826 => 'Rincon, GA', + 1912832 => 'Townsend, GA', + 1912839 => 'Statesboro, GA', + 1912842 => 'Brooklet, GA', + 1912863 => 'Sylvania, GA', + 1912865 => 'Portal, GA', + 1912871 => 'Statesboro, GA', + 1912876 => 'Hinesville, GA', + 1912877 => 'Hinesville, GA', + 1912882 => 'St. Marys, GA', + 1912884 => 'Midway, GA', + 1912897 => 'Savannah, GA', + 1912898 => 'Savannah, GA', + 1912920 => 'Savannah, GA', + 1912921 => 'Savannah, GA', + 1912925 => 'Savannah, GA', + 1912927 => 'Savannah, GA', + 1912961 => 'Savannah, GA', + 1912964 => 'Savannah, GA', + 1913 => 'Kansas', + 1913233 => 'Kansas City, KS', + 1913239 => 'Overland Park, KS', + 1913248 => 'Shawnee, KS', + 1913250 => 'Leavenworth, KS', + 1913254 => 'Olathe, KS', + 1913281 => 'Kansas City, KS', + 1913287 => 'Kansas City, KS', + 1913294 => 'Paola, KS', + 1913299 => 'Kansas City, KS', + 1913317 => 'Overland Park, KS', + 1913321 => 'Kansas City, KS', + 1913328 => 'Kansas City, KS', + 1913334 => 'Kansas City, KS', + 1913342 => 'Kansas City, KS', + 1913352 => 'Pleasanton, KS', + 1913367 => 'Atchison, KS', + 1913371 => 'Kansas City, KS', + 1913390 => 'Olathe, KS', + 1913393 => 'Olathe, KS', + 1913397 => 'Olathe, KS', + 1913402 => 'Overland Park, KS', + 1913498 => 'Overland Park, KS', + 1913557 => 'Paola, KS', + 1913573 => 'Kansas City, KS', + 1913583 => 'De Soto, KS', + 1913588 => 'Kansas City, KS', + 1913592 => 'Spring Hill, KS', + 1913596 => 'Kansas City, KS', + 1913621 => 'Kansas City, KS', + 1913651 => 'Leavenworth, KS', + 1913680 => 'Leavenworth, KS', + 1913681 => 'Overland Park, KS', + 1913682 => 'Leavenworth, KS', + 1913685 => 'Overland Park, KS', + 1913696 => 'Leawood, KS', + 1913715 => 'Olathe, KS', + 1913721 => 'Kansas City, KS', + 1913724 => 'Basehor, KS', + 1913727 => 'Lansing, KS', + 1913755 => 'Osawatomie, KS', + 1913757 => 'LaCygne, KS', + 1913758 => 'Leavenworth, KS', + 1913764 => 'Olathe, KS', + 1913768 => 'Olathe, KS', + 1913780 => 'Olathe, KS', + 1913782 => 'Olathe, KS', + 1913788 => 'Kansas City, KS', + 1913791 => 'Olathe, KS', + 1913795 => 'Mound City, KS', + 1913814 => 'Overland Park, KS', + 1913829 => 'Olathe, KS', + 1913837 => 'Louisburg, KS', + 1913845 => 'Tonganoxie, KS', + 1913851 => 'Overland Park, KS', + 1913856 => 'Gardner, KS', + 1913884 => 'Gardner, KS', + 1913901 => 'Overland Park, KS', + 1914 => 'New York', + 1914207 => 'Yonkers, NY', + 1914232 => 'Katonah, NY', + 1914234 => 'Bedford, NY', + 1914235 => 'New Rochelle, NY', + 1914237 => 'Yonkers, NY', + 1914238 => 'Chappaqua, NY', + 1914241 => 'Mount Kisco, NY', + 1914242 => 'Mount Kisco, NY', + 1914243 => 'Yorktown Heights, NY', + 1914244 => 'Mount Kisco, NY', + 1914245 => 'Yorktown Heights, NY', + 1914271 => 'Croton-on-Hudson, NY', + 1914273 => 'Armonk, NY', + 1914276 => 'Somers, NY', + 1914277 => 'Somers, NY', + 1914285 => 'White Plains, NY', + 1914287 => 'White Plains, NY', + 1914288 => 'White Plains, NY', + 1914304 => 'White Plains, NY', + 1914305 => 'Port Chester, NY', + 1914328 => 'White Plains, NY', + 1914332 => 'Tarrytown, NY', + 1914333 => 'Tarrytown, NY', + 1914345 => 'Elmsford, NY', + 1914347 => 'Elmsford, NY', + 1914355 => 'New Rochelle, NY', + 1914358 => 'White Plains, NY', + 1914366 => 'Sleepy Hollow, NY', + 1914375 => 'Yonkers, NY', + 1914376 => 'Yonkers, NY', + 1914377 => 'Yonkers, NY', + 1914378 => 'Yonkers, NY', + 1914381 => 'Mamaroneck, NY', + 1914421 => 'White Plains, NY', + 1914422 => 'White Plains, NY', + 1914423 => 'Yonkers, NY', + 1914428 => 'White Plains, NY', + 1914457 => 'Yonkers, NY', + 1914472 => 'Scarsdale, NY', + 1914476 => 'Yonkers, NY', + 1914481 => 'Port Chester, NY', + 1914493 => 'Valhalla, NY', + 1914524 => 'Tarrytown, NY', + 1914528 => 'Mohegan Lake, NY', + 1914533 => 'South Salem, NY', + 1914576 => 'New Rochelle, NY', + 1914591 => 'Irvington, NY', + 1914592 => 'Elmsford, NY', + 1914631 => 'Tarrytown, NY', + 1914632 => 'New Rochelle, NY', + 1914633 => 'New Rochelle, NY', + 1914636 => 'New Rochelle, NY', + 1914637 => 'New Rochelle, NY', + 1914654 => 'New Rochelle, NY', + 1914663 => 'Mount Vernon, NY', + 1914664 => 'Mount Vernon, NY', + 1914665 => 'Mount Vernon, NY', + 1914666 => 'Mount Kisco, NY', + 1914667 => 'Mount Vernon, NY', + 1914668 => 'Mount Vernon, NY', + 1914669 => 'North Salem, NY', + 1914681 => 'White Plains, NY', + 1914682 => 'White Plains, NY', + 1914683 => 'White Plains, NY', + 1914684 => 'White Plains, NY', + 1914686 => 'White Plains, NY', + 1914698 => 'Mamaroneck, NY', + 1914699 => 'Mount Vernon, NY', + 1914713 => 'Scarsdale, NY', + 1914722 => 'Scarsdale, NY', + 1914723 => 'Scarsdale, NY', + 1914725 => 'Scarsdale, NY', + 1914734 => 'Peekskill, NY', + 1914738 => 'Pelham, NY', + 1914740 => 'New Rochelle, NY', + 1914751 => 'Yonkers, NY', + 1914761 => 'White Plains, NY', + 1914764 => 'Pound Ridge, NY', + 1914776 => 'Yonkers, NY', + 1914777 => 'Mamaroneck, NY', + 1914813 => 'New Rochelle, NY', + 1914831 => 'White Plains, NY', + 1914833 => 'Larchmont, NY', + 1914834 => 'Larchmont, NY', + 1914835 => 'Harrison, NY', + 1914864 => 'Mount Kisco, NY', + 1914921 => 'Rye, NY', + 1914923 => 'Ossining, NY', + 1914925 => 'Rye, NY', + 1914930 => 'Peekskill, NY', + 1914934 => 'Port Chester, NY', + 1914935 => 'Port Chester, NY', + 1914937 => 'Port Chester, NY', + 1914939 => 'Port Chester, NY', + 1914941 => 'Ossining, NY', + 1914944 => 'Ossining, NY', + 1914946 => 'White Plains, NY', + 1914948 => 'White Plains, NY', + 1914949 => 'White Plains, NY', + 1914962 => 'Yorktown Heights, NY', + 1914963 => 'Yonkers, NY', + 1914964 => 'Yonkers, NY', + 1914965 => 'Yonkers, NY', + 1914966 => 'Yonkers, NY', + 1914967 => 'Rye, NY', + 1914968 => 'Yonkers, NY', + 1914969 => 'Yonkers, NY', + 1914993 => 'White Plains, NY', + 1914997 => 'White Plains, NY', + 1915 => 'Texas', + 1915231 => 'El Paso, TX', + 1915257 => 'El Paso, TX', + 1915307 => 'El Paso, TX', + 1915313 => 'El Paso, TX', + 1915351 => 'El Paso, TX', + 1915532 => 'El Paso, TX', + 1915533 => 'El Paso, TX', + 1915534 => 'El Paso, TX', + 1915541 => 'El Paso, TX', + 1915542 => 'El Paso, TX', + 1915543 => 'El Paso, TX', + 1915544 => 'El Paso, TX', + 1915545 => 'El Paso, TX', + 1915546 => 'El Paso, TX', + 1915562 => 'El Paso, TX', + 1915564 => 'El Paso, TX', + 1915565 => 'El Paso, TX', + 1915566 => 'El Paso, TX', + 1915569 => 'El Paso, TX', + 1915577 => 'El Paso, TX', + 1915581 => 'El Paso, TX', + 1915584 => 'El Paso, TX', + 1915585 => 'El Paso, TX', + 1915587 => 'El Paso, TX', + 1915590 => 'El Paso, TX', + 1915591 => 'El Paso, TX', + 1915592 => 'El Paso, TX', + 1915593 => 'El Paso, TX', + 1915594 => 'El Paso, TX', + 1915595 => 'El Paso, TX', + 1915598 => 'El Paso, TX', + 1915599 => 'El Paso, TX', + 1915613 => 'El Paso, TX', + 1915629 => 'El Paso, TX', + 1915633 => 'El Paso, TX', + 1915751 => 'El Paso, TX', + 1915755 => 'El Paso, TX', + 1915757 => 'El Paso, TX', + 1915759 => 'El Paso, TX', + 1915760 => 'El Paso, TX', + 1915764 => 'Fabens, TX', + 1915771 => 'El Paso, TX', + 1915772 => 'El Paso, TX', + 1915774 => 'El Paso, TX', + 1915775 => 'El Paso, TX', + 1915778 => 'El Paso, TX', + 1915779 => 'El Paso, TX', + 1915781 => 'El Paso, TX', + 1915790 => 'El Paso, TX', + 1915821 => 'El Paso, TX', + 1915833 => 'El Paso, TX', + 1915838 => 'El Paso, TX', + 1915842 => 'El Paso, TX', + 1915843 => 'El Paso, TX', + 1915845 => 'El Paso, TX', + 1915849 => 'El Paso, TX', + 1915852 => 'El Paso, TX', + 1915855 => 'El Paso, TX', + 1915856 => 'El Paso, TX', + 1915857 => 'El Paso, TX', + 1915858 => 'El Paso, TX', + 1915859 => 'El Paso, TX', + 1915860 => 'El Paso, TX', + 1915872 => 'El Paso, TX', + 1915875 => 'El Paso, TX', + 1915877 => 'Canutillo, TX', + 1915881 => 'El Paso, TX', + 1915886 => 'Anthony, TX', + 1915921 => 'El Paso, TX', + 1916 => 'California', + 1916285 => 'Sacramento, CA', + 1916294 => 'Folsom, CA', + 1916315 => 'Rocklin, CA', + 1916325 => 'Sacramento, CA', + 1916333 => 'Sacramento, CA', + 1916338 => 'Sacramento, CA', + 1916351 => 'Folsom, CA', + 1916353 => 'Folsom, CA', + 1916354 => 'Rancho Murieta, CA', + 1916355 => 'Folsom, CA', + 1916358 => 'El Dorado Hills, CA', + 1916361 => 'Sacramento, CA', + 1916362 => 'Sacramento, CA', + 1916363 => 'Sacramento, CA', + 1916364 => 'Sacramento, CA', + 1916366 => 'Sacramento, CA', + 1916368 => 'Sacramento, CA', + 1916369 => 'Sacramento, CA', + 1916371 => 'West Sacramento, CA', + 1916372 => 'West Sacramento, CA', + 1916373 => 'West Sacramento, CA', + 1916374 => 'West Sacramento, CA', + 1916375 => 'West Sacramento, CA', + 1916376 => 'West Sacramento, CA', + 1916379 => 'Sacramento, CA', + 1916381 => 'Sacramento, CA', + 1916383 => 'Sacramento, CA', + 1916386 => 'Sacramento, CA', + 1916387 => 'Sacramento, CA', + 1916388 => 'Sacramento, CA', + 1916391 => 'Sacramento, CA', + 1916392 => 'Sacramento, CA', + 1916393 => 'Sacramento, CA', + 1916394 => 'Sacramento, CA', + 1916395 => 'Sacramento, CA', + 1916399 => 'Sacramento, CA', + 1916408 => 'Lincoln, CA', + 1916419 => 'Sacramento, CA', + 1916421 => 'Sacramento, CA', + 1916422 => 'Sacramento, CA', + 1916423 => 'Sacramento, CA', + 1916424 => 'Sacramento, CA', + 1916427 => 'Sacramento, CA', + 1916428 => 'Sacramento, CA', + 1916429 => 'Sacramento, CA', + 1916434 => 'Lincoln, CA', + 1916435 => 'Rocklin, CA', + 1916440 => 'Sacramento, CA', + 1916441 => 'Sacramento, CA', + 1916442 => 'Sacramento, CA', + 1916443 => 'Sacramento, CA', + 1916444 => 'Sacramento, CA', + 1916446 => 'Sacramento, CA', + 1916447 => 'Sacramento, CA', + 1916448 => 'Sacramento, CA', + 1916449 => 'Sacramento, CA', + 1916451 => 'Sacramento, CA', + 1916452 => 'Sacramento, CA', + 1916453 => 'Sacramento, CA', + 1916454 => 'Sacramento, CA', + 1916455 => 'Sacramento, CA', + 1916456 => 'Sacramento, CA', + 1916457 => 'Sacramento, CA', + 1916473 => 'Sacramento, CA', + 1916476 => 'Sacramento, CA', + 1916478 => 'Elk Grove, CA', + 1916480 => 'Sacramento, CA', + 1916481 => 'Sacramento, CA', + 1916482 => 'Sacramento, CA', + 1916483 => 'Sacramento, CA', + 1916484 => 'Sacramento, CA', + 1916485 => 'Sacramento, CA', + 1916486 => 'Sacramento, CA', + 1916487 => 'Sacramento, CA', + 1916488 => 'Sacramento, CA', + 1916489 => 'Sacramento, CA', + 1916492 => 'Sacramento, CA', + 1916498 => 'Sacramento, CA', + 1916514 => 'Sacramento, CA', + 1916515 => 'Sacramento, CA', + 1916525 => 'Sacramento, CA', + 1916537 => 'Carmichael, CA', + 1916543 => 'Lincoln, CA', + 1916550 => 'Sacramento, CA', + 1916564 => 'Sacramento, CA', + 1916565 => 'Sacramento, CA', + 1916567 => 'Sacramento, CA', + 1916568 => 'Sacramento, CA', + 1916608 => 'Folsom, CA', + 1916609 => 'Carmichael, CA', + 1916614 => 'Sacramento, CA', + 1916624 => 'Rocklin, CA', + 1916625 => 'Rocklin, CA', + 1916630 => 'Rocklin, CA', + 1916631 => 'Rancho Cordova, CA', + 1916632 => 'Rocklin, CA', + 1916635 => 'Rancho Cordova, CA', + 1916638 => 'Rancho Cordova, CA', + 1916641 => 'Sacramento, CA', + 1916645 => 'Lincoln, CA', + 1916646 => 'Sacramento, CA', + 1916648 => 'Sacramento, CA', + 1916649 => 'Sacramento, CA', + 1916652 => 'Loomis, CA', + 1916660 => 'Loomis, CA', + 1916663 => 'Newcastle, CA', + 1916681 => 'Sacramento, CA', + 1916682 => 'Sacramento, CA', + 1916683 => 'Elk Grove, CA', + 1916684 => 'Elk Grove, CA', + 1916685 => 'Elk Grove, CA', + 1916686 => 'Elk Grove, CA', + 1916687 => 'Wilton, CA', + 1916688 => 'Sacramento, CA', + 1916689 => 'Sacramento, CA', + 1916691 => 'Elk Grove, CA', + 1916706 => 'Sacramento, CA', + 1916714 => 'Elk Grove, CA', + 1916721 => 'Citrus Heights, CA', + 1916722 => 'Citrus Heights, CA', + 1916723 => 'Citrus Heights, CA', + 1916725 => 'Citrus Heights, CA', + 1916726 => 'Citrus Heights, CA', + 1916727 => 'Citrus Heights, CA', + 1916728 => 'Citrus Heights, CA', + 1916729 => 'Citrus Heights, CA', + 1916731 => 'Sacramento, CA', + 1916733 => 'Sacramento, CA', + 1916734 => 'Sacramento, CA', + 1916736 => 'Sacramento, CA', + 1916737 => 'Sacramento, CA', + 1916739 => 'Sacramento, CA', + 1916771 => 'Roseville, CA', + 1916772 => 'Roseville, CA', + 1916773 => 'Roseville, CA', + 1916774 => 'Roseville, CA', + 1916776 => 'Walnut Grove, CA', + 1916777 => 'Isleton, CA', + 1916780 => 'Roseville, CA', + 1916781 => 'Roseville, CA', + 1916782 => 'Roseville, CA', + 1916783 => 'Roseville, CA', + 1916784 => 'Roseville, CA', + 1916786 => 'Roseville, CA', + 1916787 => 'Roseville, CA', + 1916788 => 'Roseville, CA', + 1916789 => 'Roseville, CA', + 1916808 => 'Sacramento, CA', + 1916817 => 'Folsom, CA', + 1916851 => 'Rancho Cordova, CA', + 1916852 => 'Rancho Cordova, CA', + 1916853 => 'Rancho Cordova, CA', + 1916858 => 'Rancho Cordova, CA', + 1916863 => 'Fair Oaks, CA', + 1916874 => 'Sacramento, CA', + 1916875 => 'Sacramento, CA', + 1916920 => 'Sacramento, CA', + 1916921 => 'Sacramento, CA', + 1916922 => 'Sacramento, CA', + 1916923 => 'Sacramento, CA', + 1916924 => 'Sacramento, CA', + 1916925 => 'Sacramento, CA', + 1916927 => 'Sacramento, CA', + 1916928 => 'Sacramento, CA', + 1916929 => 'Sacramento, CA', + 1916930 => 'Sacramento, CA', + 1916932 => 'Folsom, CA', + 1916933 => 'El Dorado Hills, CA', + 1916939 => 'El Dorado Hills, CA', + 1916941 => 'El Dorado Hills, CA', + 1916944 => 'Carmichael, CA', + 1916962 => 'Fair Oaks, CA', + 1916965 => 'Fair Oaks, CA', + 1916966 => 'Fair Oaks, CA', + 1916967 => 'Fair Oaks, CA', + 1916972 => 'Sacramento, CA', + 1916973 => 'Sacramento, CA', + 1916978 => 'Sacramento, CA', + 1916979 => 'Sacramento, CA', + 1916983 => 'Folsom, CA', + 1916984 => 'Folsom, CA', + 1916985 => 'Folsom, CA', + 1916987 => 'Orangevale, CA', + 1916988 => 'Orangevale, CA', + 1916989 => 'Orangevale, CA', + 1916991 => 'Rio Linda, CA', + 1916992 => 'Rio Linda, CA', + 1917 => 'New York', + 1918 => 'Oklahoma', + 1918207 => 'Tahlequah, OK', + 1918224 => 'Sapulpa, OK', + 1918225 => 'Cushing, OK', + 1918227 => 'Sapulpa, OK', + 1918234 => 'Tulsa, OK', + 1918241 => 'Sand Springs, OK', + 1918245 => 'Sand Springs, OK', + 1918246 => 'Sand Springs, OK', + 1918249 => 'Tulsa, OK', + 1918250 => 'Tulsa, OK', + 1918251 => 'Broken Arrow, OK', + 1918252 => 'Tulsa, OK', + 1918253 => 'Jay, OK', + 1918254 => 'Tulsa, OK', + 1918256 => 'Vinita, OK', + 1918257 => 'Afton, OK', + 1918258 => 'Broken Arrow, OK', + 1918259 => 'Broken Arrow, OK', + 1918266 => 'Catoosa, OK', + 1918267 => 'Beggs, OK', + 1918270 => 'Tulsa, OK', + 1918272 => 'Owasso, OK', + 1918273 => 'Nowata, OK', + 1918274 => 'Owasso, OK', + 1918279 => 'Coweta, OK', + 1918283 => 'Claremore, OK', + 1918286 => 'Broken Arrow, OK', + 1918287 => 'Pawhuska, OK', + 1918289 => 'Tulsa, OK', + 1918291 => 'Glenpool, OK', + 1918293 => 'Tulsa, OK', + 1918294 => 'Tulsa, OK', + 1918295 => 'Tulsa, OK', + 1918297 => 'Hartshorne, OK', + 1918298 => 'Tulsa, OK', + 1918302 => 'McAlester, OK', + 1918307 => 'Tulsa, OK', + 1918321 => 'Kiefer, OK', + 1918331 => 'Bartlesville, OK', + 1918333 => 'Bartlesville, OK', + 1918335 => 'Bartlesville, OK', + 1918336 => 'Bartlesville, OK', + 1918337 => 'Bartlesville, OK', + 1918341 => 'Claremore, OK', + 1918342 => 'Claremore, OK', + 1918343 => 'Claremore, OK', + 1918352 => 'Drumright, OK', + 1918355 => 'Broken Arrow, OK', + 1918357 => 'Broken Arrow, OK', + 1918358 => 'Cleveland, OK', + 1918366 => 'Bixby, OK', + 1918367 => 'Bristow, OK', + 1918369 => 'Bixby, OK', + 1918371 => 'Collinsville, OK', + 1918376 => 'Owasso, OK', + 1918382 => 'Tulsa, OK', + 1918392 => 'Tulsa, OK', + 1918394 => 'Tulsa, OK', + 1918396 => 'Skiatook, OK', + 1918398 => 'Tulsa, OK', + 1918420 => 'McAlester, OK', + 1918421 => 'McAlester, OK', + 1918422 => 'Colcord, OK', + 1918423 => 'McAlester, OK', + 1918425 => 'Tulsa, OK', + 1918426 => 'McAlester, OK', + 1918427 => 'Muldrow, OK', + 1918429 => 'McAlester, OK', + 1918431 => 'Tahlequah, OK', + 1918434 => 'Salina, OK', + 1918436 => 'Pocola, OK', + 1918437 => 'Tulsa, OK', + 1918438 => 'Tulsa, OK', + 1918439 => 'Tulsa, OK', + 1918443 => 'Oologah, OK', + 1918445 => 'Tulsa, OK', + 1918446 => 'Tulsa, OK', + 1918447 => 'Tulsa, OK', + 1918449 => 'Broken Arrow, OK', + 1918451 => 'Broken Arrow, OK', + 1918453 => 'Tahlequah, OK', + 1918455 => 'Broken Arrow, OK', + 1918456 => 'Tahlequah, OK', + 1918458 => 'Tahlequah, OK', + 1918459 => 'Tulsa, OK', + 1918461 => 'Tulsa, OK', + 1918465 => 'Wilburton, OK', + 1918473 => 'Checotah, OK', + 1918476 => 'Chouteau, OK', + 1918477 => 'Tulsa, OK', + 1918478 => 'Fort Gibson, OK', + 1918479 => 'Locust Grove, OK', + 1918481 => 'Tulsa, OK', + 1918482 => 'Haskell, OK', + 1918485 => 'Wagoner, OK', + 1918486 => 'Coweta, OK', + 1918488 => 'Tulsa, OK', + 1918491 => 'Tulsa, OK', + 1918492 => 'Tulsa, OK', + 1918493 => 'Tulsa, OK', + 1918494 => 'Tulsa, OK', + 1918495 => 'Tulsa, OK', + 1918496 => 'Tulsa, OK', + 1918497 => 'Tulsa, OK', + 1918499 => 'Tulsa, OK', + 1918502 => 'Tulsa, OK', + 1918534 => 'Dewey, OK', + 1918540 => 'Miami, OK', + 1918542 => 'Miami, OK', + 1918543 => 'Inola, OK', + 1918567 => 'Talihina, OK', + 1918569 => 'Clayton, OK', + 1918574 => 'Tulsa, OK', + 1918579 => 'Tulsa, OK', + 1918582 => 'Tulsa, OK', + 1918583 => 'Tulsa, OK', + 1918584 => 'Tulsa, OK', + 1918585 => 'Tulsa, OK', + 1918587 => 'Tulsa, OK', + 1918588 => 'Tulsa, OK', + 1918591 => 'Tulsa, OK', + 1918592 => 'Tulsa, OK', + 1918594 => 'Tulsa, OK', + 1918596 => 'Tulsa, OK', + 1918599 => 'Tulsa, OK', + 1918609 => 'Owasso, OK', + 1918610 => 'Tulsa, OK', + 1918619 => 'Tulsa, OK', + 1918622 => 'Tulsa, OK', + 1918623 => 'Okemah, OK', + 1918627 => 'Tulsa, OK', + 1918628 => 'Tulsa, OK', + 1918647 => 'Poteau, OK', + 1918649 => 'Poteau, OK', + 1918652 => 'Henryetta, OK', + 1918653 => 'Heavener, OK', + 1918660 => 'Tulsa, OK', + 1918663 => 'Tulsa, OK', + 1918664 => 'Tulsa, OK', + 1918665 => 'Tulsa, OK', + 1918681 => 'Muskogee, OK', + 1918682 => 'Muskogee, OK', + 1918683 => 'Muskogee, OK', + 1918684 => 'Muskogee, OK', + 1918686 => 'Muskogee, OK', + 1918687 => 'Muskogee, OK', + 1918689 => 'Eufaula, OK', + 1918696 => 'Stilwell, OK', + 1918712 => 'Tulsa, OK', + 1918723 => 'Westville, OK', + 1918728 => 'Tulsa, OK', + 1918742 => 'Tulsa, OK', + 1918743 => 'Tulsa, OK', + 1918744 => 'Tulsa, OK', + 1918745 => 'Tulsa, OK', + 1918746 => 'Tulsa, OK', + 1918747 => 'Tulsa, OK', + 1918748 => 'Tulsa, OK', + 1918749 => 'Tulsa, OK', + 1918756 => 'Okmulgee, OK', + 1918758 => 'Okmulgee, OK', + 1918762 => 'Pawnee, OK', + 1918770 => 'Tulsa, OK', + 1918773 => 'Vian, OK', + 1918775 => 'Sallisaw, OK', + 1918779 => 'Tulsa, OK', + 1918786 => 'Grove, OK', + 1918787 => 'Grove, OK', + 1918789 => 'Chelsea, OK', + 1918794 => 'Tulsa, OK', + 1918806 => 'Broken Arrow, OK', + 1918824 => 'Pryor Creek, OK', + 1918825 => 'Pryor Creek, OK', + 1918828 => 'Tulsa, OK', + 1918832 => 'Tulsa, OK', + 1918834 => 'Tulsa, OK', + 1918835 => 'Tulsa, OK', + 1918836 => 'Tulsa, OK', + 1918838 => 'Tulsa, OK', + 1918865 => 'Mannford, OK', + 1918868 => 'Kansas, OK', + 1918872 => 'Broken Arrow, OK', + 1918877 => 'Tulsa, OK', + 1918885 => 'Hominy, OK', + 1918895 => 'Tulsa, OK', + 1918933 => 'Tulsa, OK', + 1918938 => 'Tulsa, OK', + 1918949 => 'Tulsa, OK', + 1918962 => 'Spiro, OK', + 1918967 => 'Stigler, OK', + 1918968 => 'Stroud, OK', + 1919 => 'North Carolina', + 1919207 => 'Benson, NC', + 1919209 => 'Smithfield, NC', + 1919212 => 'Raleigh, NC', + 1919217 => 'Knightdale, NC', + 1919220 => 'Durham, NC', + 1919231 => 'Raleigh, NC', + 1919232 => 'Raleigh, NC', + 1919237 => 'Durham, NC', + 1919240 => 'Chapel Hill, NC', + 1919242 => 'Fremont, NC', + 1919245 => 'Hillsborough, NC', + 1919250 => 'Raleigh, NC', + 1919251 => 'Durham, NC', + 1919255 => 'Raleigh, NC', + 1919256 => 'Raleigh, NC', + 1919258 => 'Broadway, NC', + 1919261 => 'Knightdale, NC', + 1919266 => 'Knightdale, NC', + 1919267 => 'Apex, NC', + 1919269 => 'Zebulon, NC', + 1919284 => 'Kenly, NC', + 1919286 => 'Durham, NC', + 1919303 => 'Apex, NC', + 1919304 => 'Mebane, NC', + 1919309 => 'Durham, NC', + 1919313 => 'Durham, NC', + 1919319 => 'Cary, NC', + 1919331 => 'Angier, NC', + 1919340 => 'Louisburg, NC', + 1919350 => 'Raleigh, NC', + 1919359 => 'Clayton, NC', + 1919361 => 'Durham, NC', + 1919362 => 'Apex, NC', + 1919363 => 'Apex, NC', + 1919365 => 'Wendell, NC', + 1919366 => 'Wendell, NC', + 1919367 => 'Apex, NC', + 1919380 => 'Cary, NC', + 1919381 => 'Durham, NC', + 1919382 => 'Durham, NC', + 1919383 => 'Durham, NC', + 1919387 => 'Apex, NC', + 1919388 => 'Cary, NC', + 1919401 => 'Durham, NC', + 1919402 => 'Durham, NC', + 1919403 => 'Durham, NC', + 1919404 => 'Zebulon, NC', + 1919405 => 'Durham, NC', + 1919416 => 'Durham, NC', + 1919419 => 'Durham, NC', + 1919420 => 'Raleigh, NC', + 1919424 => 'Raleigh, NC', + 1919453 => 'Wake Forest, NC', + 1919460 => 'Cary, NC', + 1919461 => 'Cary, NC', + 1919462 => 'Cary, NC', + 1919463 => 'Cary, NC', + 1919465 => 'Cary, NC', + 1919466 => 'Cary, NC', + 1919467 => 'Cary, NC', + 1919468 => 'Cary, NC', + 1919469 => 'Cary, NC', + 1919470 => 'Durham, NC', + 1919471 => 'Durham, NC', + 1919477 => 'Durham, NC', + 1919479 => 'Durham, NC', + 1919481 => 'Cary, NC', + 1919484 => 'Durham, NC', + 1919489 => 'Durham, NC', + 1919490 => 'Durham, NC', + 1919493 => 'Durham, NC', + 1919494 => 'Franklinton, NC', + 1919496 => 'Louisburg, NC', + 1919497 => 'Louisburg, NC', + 1919499 => 'Sanford, NC', + 1919510 => 'Raleigh, NC', + 1919515 => 'Raleigh, NC', + 1919518 => 'Raleigh, NC', + 1919528 => 'Creedmoor, NC', + 1919530 => 'Durham, NC', + 1919542 => 'Pittsboro, NC', + 1919544 => 'Durham, NC', + 1919545 => 'Pittsboro, NC', + 1919550 => 'Clayton, NC', + 1919552 => 'Fuquay-Varina, NC', + 1919553 => 'Clayton, NC', + 1919554 => 'Wake Forest, NC', + 1919556 => 'Wake Forest, NC', + 1919557 => 'Fuquay-Varina, NC', + 1919560 => 'Durham, NC', + 1919562 => 'Wake Forest, NC', + 1919563 => 'Mebane, NC', + 1919567 => 'Fuquay-Varina, NC', + 1919571 => 'Raleigh, NC', + 1919572 => 'Durham, NC', + 1919575 => 'Butner, NC', + 1919577 => 'Fuquay-Varina, NC', + 1919580 => 'Goldsboro, NC', + 1919585 => 'Clayton, NC', + 1919596 => 'Durham, NC', + 1919598 => 'Durham, NC', + 1919603 => 'Oxford, NC', + 1919620 => 'Durham, NC', + 1919639 => 'Angier, NC', + 1919644 => 'Hillsborough, NC', + 1919658 => 'Mount Olive, NC', + 1919660 => 'Durham, NC', + 1919661 => 'Garner, NC', + 1919662 => 'Garner, NC', + 1919663 => 'Siler City, NC', + 1919668 => 'Durham, NC', + 1919676 => 'Raleigh, NC', + 1919677 => 'Cary, NC', + 1919678 => 'Cary, NC', + 1919680 => 'Durham, NC', + 1919681 => 'Durham, NC', + 1919682 => 'Durham, NC', + 1919683 => 'Durham, NC', + 1919684 => 'Durham, NC', + 1919687 => 'Durham, NC', + 1919688 => 'Durham, NC', + 1919689 => 'Goldsboro, NC', + 1919690 => 'Oxford, NC', + 1919693 => 'Oxford, NC', + 1919708 => 'Sanford, NC', + 1919718 => 'Sanford, NC', + 1919731 => 'Goldsboro, NC', + 1919732 => 'Hillsborough, NC', + 1919733 => 'Raleigh, NC', + 1919734 => 'Goldsboro, NC', + 1919735 => 'Goldsboro, NC', + 1919736 => 'Goldsboro, NC', + 1919739 => 'Goldsboro, NC', + 1919742 => 'Siler City, NC', + 1919751 => 'Goldsboro, NC', + 1919755 => 'Raleigh, NC', + 1919772 => 'Garner, NC', + 1919773 => 'Garner, NC', + 1919774 => 'Sanford, NC', + 1919775 => 'Sanford, NC', + 1919776 => 'Sanford, NC', + 1919777 => 'Sanford, NC', + 1919778 => 'Goldsboro, NC', + 1919779 => 'Garner, NC', + 1919781 => 'Raleigh, NC', + 1919782 => 'Raleigh, NC', + 1919783 => 'Raleigh, NC', + 1919784 => 'Raleigh, NC', + 1919785 => 'Raleigh, NC', + 1919786 => 'Raleigh, NC', + 1919787 => 'Raleigh, NC', + 1919788 => 'Raleigh, NC', + 1919789 => 'Raleigh, NC', + 1919790 => 'Raleigh, NC', + 1919791 => 'Raleigh, NC', + 1919792 => 'Raleigh, NC', + 1919803 => 'Raleigh, NC', + 1919806 => 'Durham, NC', + 1919821 => 'Raleigh, NC', + 1919828 => 'Raleigh, NC', + 1919829 => 'Raleigh, NC', + 1919831 => 'Raleigh, NC', + 1919832 => 'Raleigh, NC', + 1919833 => 'Raleigh, NC', + 1919834 => 'Raleigh, NC', + 1919835 => 'Raleigh, NC', + 1919836 => 'Raleigh, NC', + 1919838 => 'Raleigh, NC', + 1919839 => 'Raleigh, NC', + 1919840 => 'Morrisville, NC', + 1919841 => 'Raleigh, NC', + 1919843 => 'Chapel Hill, NC', + 1919844 => 'Raleigh, NC', + 1919845 => 'Raleigh, NC', + 1919846 => 'Raleigh, NC', + 1919847 => 'Raleigh, NC', + 1919848 => 'Raleigh, NC', + 1919850 => 'Raleigh, NC', + 1919855 => 'Raleigh, NC', + 1919856 => 'Raleigh, NC', + 1919861 => 'Raleigh, NC', + 1919862 => 'Raleigh, NC', + 1919863 => 'Raleigh, NC', + 1919870 => 'Raleigh, NC', + 1919871 => 'Raleigh, NC', + 1919872 => 'Raleigh, NC', + 1919873 => 'Raleigh, NC', + 1919875 => 'Raleigh, NC', + 1919876 => 'Raleigh, NC', + 1919877 => 'Raleigh, NC', + 1919878 => 'Raleigh, NC', + 1919881 => 'Raleigh, NC', + 1919890 => 'Raleigh, NC', + 1919894 => 'Benson, NC', + 1919896 => 'Raleigh, NC', + 1919918 => 'Chapel Hill, NC', + 1919928 => 'Chapel Hill, NC', + 1919929 => 'Chapel Hill, NC', + 1919932 => 'Chapel Hill, NC', + 1919933 => 'Chapel Hill, NC', + 1919934 => 'Smithfield, NC', + 1919936 => 'Princeton, NC', + 1919938 => 'Smithfield, NC', + 1919941 => 'Durham, NC', + 1919942 => 'Chapel Hill, NC', + 1919954 => 'Raleigh, NC', + 1919956 => 'Durham, NC', + 1919957 => 'Durham, NC', + 1919960 => 'Chapel Hill, NC', + 1919962 => 'Chapel Hill, NC', + 1919963 => 'Four Oaks, NC', + 1919965 => 'Selma, NC', + 1919966 => 'Chapel Hill, NC', + 1919967 => 'Chapel Hill, NC', + 1919968 => 'Chapel Hill, NC', + 1919969 => 'Chapel Hill, NC', + 1919981 => 'Raleigh, NC', + 1919989 => 'Smithfield, NC', + 1920 => 'Wisconsin', + 1920206 => 'Watertown, WI', + 1920208 => 'Sheboygan, WI', + 1920223 => 'Oshkosh, WI', + 1920230 => 'Oshkosh, WI', + 1920231 => 'Oshkosh, WI', + 1920232 => 'Oshkosh, WI', + 1920233 => 'Oshkosh, WI', + 1920235 => 'Oshkosh, WI', + 1920236 => 'Oshkosh, WI', + 1920261 => 'Watertown, WI', + 1920262 => 'Watertown, WI', + 1920269 => 'Lomira, WI', + 1920288 => 'Green Bay, WI', + 1920294 => 'Green Lake, WI', + 1920295 => 'Princeton, WI', + 1920303 => 'Oshkosh, WI', + 1920320 => 'Manitowoc, WI', + 1920322 => 'Fond du Lac, WI', + 1920324 => 'Waupun, WI', + 1920326 => 'Randolph, WI', + 1920330 => 'De Pere, WI', + 1920336 => 'De Pere, WI', + 1920337 => 'De Pere, WI', + 1920338 => 'De Pere, WI', + 1920339 => 'De Pere, WI', + 1920347 => 'De Pere, WI', + 1920356 => 'Beaver Dam, WI', + 1920361 => 'Berlin, WI', + 1920380 => 'Appleton, WI', + 1920386 => 'Juneau, WI', + 1920387 => 'Mayville, WI', + 1920388 => 'Kewaunee, WI', + 1920398 => 'Markesan, WI', + 1920405 => 'Green Bay, WI', + 1920406 => 'Green Bay, WI', + 1920424 => 'Oshkosh, WI', + 1920426 => 'Oshkosh, WI', + 1920430 => 'Green Bay, WI', + 1920431 => 'Green Bay, WI', + 1920432 => 'Green Bay, WI', + 1920433 => 'Green Bay, WI', + 1920434 => 'Green Bay, WI', + 1920435 => 'Green Bay, WI', + 1920436 => 'Green Bay, WI', + 1920437 => 'Green Bay, WI', + 1920446 => 'Fremont, WI', + 1920448 => 'Green Bay, WI', + 1920451 => 'Sheboygan, WI', + 1920452 => 'Sheboygan, WI', + 1920457 => 'Sheboygan, WI', + 1920458 => 'Sheboygan, WI', + 1920459 => 'Sheboygan, WI', + 1920465 => 'Green Bay, WI', + 1920467 => 'Sheboygan Falls, WI', + 1920468 => 'Green Bay, WI', + 1920469 => 'Green Bay, WI', + 1920478 => 'Waterloo, WI', + 1920485 => 'Horicon, WI', + 1920487 => 'Algoma, WI', + 1920490 => 'Green Bay, WI', + 1920494 => 'Green Bay, WI', + 1920496 => 'Green Bay, WI', + 1920497 => 'Green Bay, WI', + 1920498 => 'Green Bay, WI', + 1920499 => 'Green Bay, WI', + 1920532 => 'Wrightstown, WI', + 1920533 => 'Campbellsport, WI', + 1920544 => 'Green Bay, WI', + 1920563 => 'Fort Atkinson, WI', + 1920564 => 'Oostburg, WI', + 1920568 => 'Fort Atkinson, WI', + 1920574 => 'Appleton, WI', + 1920582 => 'Winneconne, WI', + 1920593 => 'Green Bay, WI', + 1920596 => 'Manawa, WI', + 1920622 => 'Wild Rose, WI', + 1920623 => 'Columbus, WI', + 1920648 => 'Lake Mills, WI', + 1920652 => 'Manitowoc, WI', + 1920662 => 'Green Bay, WI', + 1920668 => 'Cedar Grove, WI', + 1920674 => 'Jefferson, WI', + 1920682 => 'Manitowoc, WI', + 1920683 => 'Manitowoc, WI', + 1920684 => 'Manitowoc, WI', + 1920685 => 'Omro, WI', + 1920686 => 'Manitowoc, WI', + 1920693 => 'Cleveland, WI', + 1920699 => 'Johnson Creek, WI', + 1920720 => 'Neenah, WI', + 1920722 => 'Neenah, WI', + 1920725 => 'Neenah, WI', + 1920727 => 'Neenah, WI', + 1920729 => 'Neenah, WI', + 1920730 => 'Appleton, WI', + 1920731 => 'Appleton, WI', + 1920733 => 'Appleton, WI', + 1920734 => 'Appleton, WI', + 1920735 => 'Appleton, WI', + 1920738 => 'Appleton, WI', + 1920739 => 'Appleton, WI', + 1920743 => 'Sturgeon Bay, WI', + 1920746 => 'Sturgeon Bay, WI', + 1920748 => 'Ripon, WI', + 1920749 => 'Appleton, WI', + 1920751 => 'Neenah, WI', + 1920755 => 'Mishicot, WI', + 1920756 => 'Brillion, WI', + 1920757 => 'Greenville, WI', + 1920758 => 'Manitowoc, WI', + 1920759 => 'Kaukauna, WI', + 1920766 => 'Kaukauna, WI', + 1920775 => 'Valders, WI', + 1920779 => 'Hortonville, WI', + 1920787 => 'Wautoma, WI', + 1920793 => 'Two Rivers, WI', + 1920794 => 'Two Rivers, WI', + 1920803 => 'Sheboygan, WI', + 1920822 => 'Pulaski, WI', + 1920826 => 'Abrams, WI', + 1920830 => 'Appleton, WI', + 1920831 => 'Appleton, WI', + 1920832 => 'Appleton, WI', + 1920833 => 'Seymour, WI', + 1920834 => 'Oconto, WI', + 1920836 => 'Larsen, WI', + 1920837 => 'Casco, WI', + 1920839 => 'Baileys Harbor, WI', + 1920842 => 'Suring, WI', + 1920845 => 'Luxemburg, WI', + 1920846 => 'Oconto Falls, WI', + 1920849 => 'Chilton, WI', + 1920853 => 'Hilbert, WI', + 1920854 => 'Sister Bay, WI', + 1920855 => 'Gillett, WI', + 1920863 => 'Denmark, WI', + 1920864 => 'Greenleaf, WI', + 1920866 => 'New Franken, WI', + 1920867 => 'Weyauwega, WI', + 1920868 => 'Fish Creek, WI', + 1920869 => 'Oneida, WI', + 1920876 => 'Elkhart Lake, WI', + 1920882 => 'Appleton, WI', + 1920884 => 'Green Bay, WI', + 1920885 => 'Beaver Dam, WI', + 1920886 => 'Neenah, WI', + 1920887 => 'Beaver Dam, WI', + 1920892 => 'Plymouth, WI', + 1920893 => 'Plymouth, WI', + 1920894 => 'Kiel, WI', + 1920897 => 'Coleman, WI', + 1920898 => 'New Holstein, WI', + 1920907 => 'Fond du Lac, WI', + 1920921 => 'Fond du Lac, WI', + 1920922 => 'Fond du Lac, WI', + 1920923 => 'Fond du Lac, WI', + 1920924 => 'Fond du Lac, WI', + 1920926 => 'Fond du Lac, WI', + 1920928 => 'Fox Lake, WI', + 1920929 => 'Fond du Lac, WI', + 1920933 => 'Fond du Lac, WI', + 1920954 => 'Appleton, WI', + 1920964 => 'De Pere, WI', + 1920965 => 'Green Bay, WI', + 1920968 => 'Appleton, WI', + 1920969 => 'Neenah, WI', + 1920982 => 'New London, WI', + 1920983 => 'De Pere, WI', + 1920984 => 'Black Creek, WI', + 1920992 => 'Rio, WI', + 1920993 => 'Appleton, WI', + 1920994 => 'Random Lake, WI', + 1920996 => 'Appleton, WI', + 1920997 => 'Appleton, WI', + 1925 => 'California', + 1925210 => 'Walnut Creek, CA', + 1925225 => 'Pleasanton, CA', + 1925227 => 'Pleasanton, CA', + 1925228 => 'Martinez, CA', + 1925229 => 'Martinez, CA', + 1925240 => 'Brentwood, CA', + 1925242 => 'San Ramon, CA', + 1925243 => 'Livermore, CA', + 1925244 => 'San Ramon, CA', + 1925245 => 'Livermore, CA', + 1925249 => 'Pleasanton, CA', + 1925251 => 'Pleasanton, CA', + 1925252 => 'Pittsburg, CA', + 1925253 => 'Orinda, CA', + 1925254 => 'Orinda, CA', + 1925256 => 'Walnut Creek, CA', + 1925258 => 'Orinda, CA', + 1925274 => 'Walnut Creek, CA', + 1925275 => 'San Ramon, CA', + 1925277 => 'San Ramon, CA', + 1925280 => 'Walnut Creek, CA', + 1925283 => 'Lafayette, CA', + 1925284 => 'Lafayette, CA', + 1925287 => 'Walnut Creek, CA', + 1925288 => 'Concord, CA', + 1925292 => 'Livermore, CA', + 1925294 => 'Livermore, CA', + 1925295 => 'Walnut Creek, CA', + 1925296 => 'Walnut Creek, CA', + 1925299 => 'Lafayette, CA', + 1925308 => 'Brentwood, CA', + 1925313 => 'Martinez, CA', + 1925314 => 'Danville, CA', + 1925335 => 'Martinez, CA', + 1925355 => 'San Ramon, CA', + 1925356 => 'Concord, CA', + 1925363 => 'Concord, CA', + 1925370 => 'Martinez, CA', + 1925371 => 'Livermore, CA', + 1925372 => 'Martinez, CA', + 1925373 => 'Livermore, CA', + 1925376 => 'Moraga, CA', + 1925377 => 'Moraga, CA', + 1925416 => 'Pleasanton, CA', + 1925417 => 'Pleasanton, CA', + 1925426 => 'Pleasanton, CA', + 1925427 => 'Pittsburg, CA', + 1925432 => 'Pittsburg, CA', + 1925439 => 'Pittsburg, CA', + 1925443 => 'Livermore, CA', + 1925447 => 'Livermore, CA', + 1925449 => 'Livermore, CA', + 1925454 => 'Livermore, CA', + 1925455 => 'Livermore, CA', + 1925456 => 'Livermore, CA', + 1925458 => 'Bay Point, CA', + 1925460 => 'Pleasanton, CA', + 1925461 => 'Pleasanton, CA', + 1925462 => 'Pleasanton, CA', + 1925463 => 'Pleasanton, CA', + 1925469 => 'Pleasanton, CA', + 1925472 => 'Walnut Creek, CA', + 1925473 => 'Pittsburg, CA', + 1925478 => 'Walnut Creek, CA', + 1925484 => 'Pleasanton, CA', + 1925485 => 'Pleasanton, CA', + 1925513 => 'Brentwood, CA', + 1925516 => 'Brentwood, CA', + 1925521 => 'Concord, CA', + 1925522 => 'Antioch, CA', + 1925543 => 'San Ramon, CA', + 1925551 => 'Dublin, CA', + 1925556 => 'Dublin, CA', + 1925560 => 'Dublin, CA', + 1925600 => 'Pleasanton, CA', + 1925603 => 'Concord, CA', + 1925606 => 'Livermore, CA', + 1925609 => 'Concord, CA', + 1925625 => 'Oakley, CA', + 1925631 => 'Moraga, CA', + 1925634 => 'Brentwood, CA', + 1925648 => 'Danville, CA', + 1925671 => 'Concord, CA', + 1925672 => 'Clayton, CA', + 1925673 => 'Clayton, CA', + 1925674 => 'Concord, CA', + 1925676 => 'Concord, CA', + 1925679 => 'Oakley, CA', + 1925680 => 'Concord, CA', + 1925681 => 'Concord, CA', + 1925682 => 'Concord, CA', + 1925684 => 'Bethel Island, CA', + 1925685 => 'Concord, CA', + 1925686 => 'Concord, CA', + 1925687 => 'Concord, CA', + 1925689 => 'Concord, CA', + 1925691 => 'Concord, CA', + 1925706 => 'Antioch, CA', + 1925734 => 'Pleasanton, CA', + 1925735 => 'San Ramon, CA', + 1925736 => 'Danville, CA', + 1925743 => 'Danville, CA', + 1925754 => 'Antioch, CA', + 1925755 => 'Antioch, CA', + 1925756 => 'Antioch, CA', + 1925757 => 'Antioch, CA', + 1925776 => 'Antioch, CA', + 1925777 => 'Antioch, CA', + 1925778 => 'Antioch, CA', + 1925779 => 'Antioch, CA', + 1925798 => 'Concord, CA', + 1925803 => 'Dublin, CA', + 1925813 => 'Antioch, CA', + 1925820 => 'Danville, CA', + 1925825 => 'Concord, CA', + 1925827 => 'Concord, CA', + 1925828 => 'Dublin, CA', + 1925829 => 'Dublin, CA', + 1925830 => 'San Ramon, CA', + 1925833 => 'Dublin, CA', + 1925837 => 'Danville, CA', + 1925846 => 'Pleasanton, CA', + 1925847 => 'Pleasanton, CA', + 1925849 => 'Concord, CA', + 1925866 => 'San Ramon, CA', + 1925875 => 'Dublin, CA', + 1925906 => 'Walnut Creek, CA', + 1925924 => 'Pleasanton, CA', + 1925930 => 'Walnut Creek, CA', + 1925931 => 'Pleasanton, CA', + 1925932 => 'Walnut Creek, CA', + 1925933 => 'Walnut Creek, CA', + 1925934 => 'Walnut Creek, CA', + 1925935 => 'Walnut Creek, CA', + 1925937 => 'Walnut Creek, CA', + 1925938 => 'Walnut Creek, CA', + 1925939 => 'Walnut Creek, CA', + 1925943 => 'Walnut Creek, CA', + 1925944 => 'Walnut Creek, CA', + 1925945 => 'Walnut Creek, CA', + 1925946 => 'Walnut Creek, CA', + 1925947 => 'Walnut Creek, CA', + 1925952 => 'Walnut Creek, CA', + 1925954 => 'Walnut Creek, CA', + 1925957 => 'Martinez, CA', + 1925960 => 'Livermore, CA', + 1925962 => 'Lafayette, CA', + 1925969 => 'Concord, CA', + 1925978 => 'Antioch, CA', + 1925979 => 'Walnut Creek, CA', + 1925988 => 'Walnut Creek, CA', + 1928 => 'Arizona', + 1928203 => 'Sedona, AZ', + 1928204 => 'Sedona, AZ', + 1928213 => 'Flagstaff, AZ', + 1928214 => 'Flagstaff, AZ', + 1928226 => 'Flagstaff, AZ', + 1928237 => 'Prescott, AZ', + 1928282 => 'Sedona, AZ', + 1928283 => 'Tuba City, AZ', + 1928284 => 'Sedona, AZ', + 1928289 => 'Winslow, AZ', + 1928314 => 'Yuma, AZ', + 1928317 => 'Yuma, AZ', + 1928329 => 'Yuma, AZ', + 1928333 => 'Springerville, AZ', + 1928337 => 'St. Johns, AZ', + 1928338 => 'Whiteriver, AZ', + 1928341 => 'Yuma, AZ', + 1928342 => 'Yuma, AZ', + 1928343 => 'Yuma, AZ', + 1928344 => 'Yuma, AZ', + 1928345 => 'Yuma, AZ', + 1928348 => 'Safford, AZ', + 1928367 => 'Pinetop, AZ', + 1928368 => 'Lakeside, AZ', + 1928373 => 'Yuma, AZ', + 1928425 => 'Globe, AZ', + 1928428 => 'Safford, AZ', + 1928442 => 'Prescott, AZ', + 1928443 => 'Prescott, AZ', + 1928445 => 'Prescott, AZ', + 1928453 => 'Lake Havasu City, AZ', + 1928468 => 'Payson, AZ', + 1928472 => 'Payson, AZ', + 1928474 => 'Payson, AZ', + 1928475 => 'San Carlos, AZ', + 1928476 => 'Pine, AZ', + 1928505 => 'Lake Havasu City, AZ', + 1928522 => 'Flagstaff, AZ', + 1928524 => 'Holbrook, AZ', + 1928526 => 'Flagstaff, AZ', + 1928527 => 'Flagstaff, AZ', + 1928532 => 'Show Low, AZ', + 1928536 => 'Snowflake, AZ', + 1928537 => 'Show Low, AZ', + 1928541 => 'Prescott, AZ', + 1928556 => 'Flagstaff, AZ', + 1928565 => 'Golden Valley, AZ', + 1928567 => 'Camp Verde, AZ', + 1928607 => 'Flagstaff, AZ', + 1928634 => 'Cottonwood, AZ', + 1928635 => 'Williams, AZ', + 1928636 => 'Chino Valley, AZ', + 1928638 => 'Grand Canyon Village, AZ', + 1928639 => 'Cottonwood, AZ', + 1928645 => 'Page, AZ', + 1928649 => 'Cottonwood, AZ', + 1928669 => 'Parker, AZ', + 1928674 => 'Chinle, AZ', + 1928680 => 'Lake Havasu City, AZ', + 1928681 => 'Kingman, AZ', + 1928684 => 'Wickenburg, AZ', + 1928692 => 'Kingman, AZ', + 1928697 => 'Kayenta, AZ', + 1928699 => 'Flagstaff, AZ', + 1928704 => 'Bullhead City, AZ', + 1928708 => 'Prescott, AZ', + 1928710 => 'Prescott, AZ', + 1928714 => 'Flagstaff, AZ', + 1928717 => 'Prescott, AZ', + 1928718 => 'Kingman, AZ', + 1928726 => 'Yuma, AZ', + 1928729 => 'Fort Defiance, AZ', + 1928753 => 'Kingman, AZ', + 1928754 => 'Bullhead City, AZ', + 1928757 => 'Kingman, AZ', + 1928758 => 'Bullhead City, AZ', + 1928759 => 'Prescott Valley, AZ', + 1928763 => 'Bullhead City, AZ', + 1928764 => 'Lake Havasu City, AZ', + 1928771 => 'Prescott, AZ', + 1928772 => 'Prescott Valley, AZ', + 1928773 => 'Flagstaff, AZ', + 1928774 => 'Flagstaff, AZ', + 1928775 => 'Prescott Valley, AZ', + 1928776 => 'Prescott, AZ', + 1928777 => 'Prescott, AZ', + 1928778 => 'Prescott, AZ', + 1928779 => 'Flagstaff, AZ', + 1928782 => 'Yuma, AZ', + 1928783 => 'Yuma, AZ', + 1928785 => 'Wellton, AZ', + 1928788 => 'Fort Mohave, AZ', + 1928853 => 'Flagstaff, AZ', + 1928854 => 'Lake Havasu City, AZ', + 1928855 => 'Lake Havasu City, AZ', + 1928859 => 'Salome, AZ', + 1928865 => 'Clifton, AZ', + 1928871 => 'Window Rock, AZ', + 1928899 => 'Prescott, AZ', + 1928927 => 'Quartzsite, AZ', + 1929 => 'New York', + 1930 => 'Indiana', + 1931 => 'Tennessee', + 1931221 => 'Clarksville, TN', + 1931223 => 'Columbia, TN', + 1931232 => 'Dover, TN', + 1931243 => 'Celina, TN', + 1931245 => 'Clarksville, TN', + 1931268 => 'Gainesboro, TN', + 1931270 => 'Lewisburg, TN', + 1931289 => 'Erin, TN', + 1931296 => 'Waverly, TN', + 1931320 => 'Clarksville, TN', + 1931358 => 'Clarksville, TN', + 1931359 => 'Lewisburg, TN', + 1931363 => 'Pulaski, TN', + 1931364 => 'Chapel Hill, TN', + 1931372 => 'Cookeville, TN', + 1931379 => 'Mount Pleasant, TN', + 1931380 => 'Columbia, TN', + 1931381 => 'Columbia, TN', + 1931388 => 'Columbia, TN', + 1931393 => 'Tullahoma, TN', + 1931424 => 'Pulaski, TN', + 1931427 => 'Ardmore, TN', + 1931431 => 'Clarksville, TN', + 1931432 => 'Cookeville, TN', + 1931433 => 'Fayetteville, TN', + 1931438 => 'Fayetteville, TN', + 1931454 => 'Tullahoma, TN', + 1931455 => 'Tullahoma, TN', + 1931456 => 'Crossville, TN', + 1931461 => 'Tullahoma, TN', + 1931473 => 'McMinnville, TN', + 1931474 => 'McMinnville, TN', + 1931484 => 'Crossville, TN', + 1931486 => 'Spring Hill, TN', + 1931490 => 'Columbia, TN', + 1931503 => 'Clarksville, TN', + 1931507 => 'McMinnville, TN', + 1931520 => 'Cookeville, TN', + 1931525 => 'Cookeville, TN', + 1931526 => 'Cookeville, TN', + 1931528 => 'Cookeville, TN', + 1931535 => 'New Johnsonville, TN', + 1931537 => 'Cookeville, TN', + 1931542 => 'Clarksville, TN', + 1931551 => 'Clarksville, TN', + 1931552 => 'Clarksville, TN', + 1931553 => 'Clarksville, TN', + 1931582 => 'McEwen, TN', + 1931589 => 'Linden, TN', + 1931592 => 'Tracy City, TN', + 1931598 => 'Sewanee, TN', + 1931645 => 'Clarksville, TN', + 1931647 => 'Clarksville, TN', + 1931648 => 'Clarksville, TN', + 1931668 => 'McMinnville, TN', + 1931670 => 'Lyles, TN', + 1931680 => 'Shelbyville, TN', + 1931684 => 'Shelbyville, TN', + 1931685 => 'Shelbyville, TN', + 1931686 => 'Rock Island, TN', + 1931707 => 'Crossville, TN', + 1931722 => 'Waynesboro, TN', + 1931723 => 'Manchester, TN', + 1931724 => 'Collinwood, TN', + 1931728 => 'Manchester, TN', + 1931729 => 'Centerville, TN', + 1931738 => 'Sparta, TN', + 1931759 => 'Lynchburg, TN', + 1931761 => 'Sparta, TN', + 1931762 => 'Lawrenceburg, TN', + 1931766 => 'Lawrenceburg, TN', + 1931779 => 'Gruetli-Laager, TN', + 1931787 => 'Crossville, TN', + 1931788 => 'Crossville, TN', + 1931796 => 'Hohenwald, TN', + 1931802 => 'Clarksville, TN', + 1931815 => 'McMinnville, TN', + 1931823 => 'Livingston, TN', + 1931836 => 'Sparta, TN', + 1931837 => 'Sparta, TN', + 1931839 => 'Monterey, TN', + 1931840 => 'Columbia, TN', + 1931852 => 'Leoma, TN', + 1931853 => 'Loretto, TN', + 1931858 => 'Baxter, TN', + 1931863 => 'Clarkrange, TN', + 1931864 => 'Byrdstown, TN', + 1931879 => 'Jamestown, TN', + 1931905 => 'Clarksville, TN', + 1931906 => 'Clarksville, TN', + 1931920 => 'Clarksville, TN', + 1931924 => 'Monteagle, TN', + 1931946 => 'Spencer, TN', + 1931962 => 'Winchester, TN', + 1931967 => 'Winchester, TN', + 1934 => 'New York, NY', + 1936 => 'Texas', + 1936231 => 'Conroe, TX', + 1936254 => 'Timpson, TX', + 1936257 => 'Dayton, TX', + 1936258 => 'Dayton, TX', + 1936264 => 'Conroe, TX', + 1936269 => 'Joaquin, TX', + 1936271 => 'Conroe, TX', + 1936273 => 'Conroe, TX', + 1936275 => 'San Augustine, TX', + 1936291 => 'Huntsville, TX', + 1936293 => 'Huntsville, TX', + 1936294 => 'Huntsville, TX', + 1936295 => 'Huntsville, TX', + 1936327 => 'Livingston, TX', + 1936328 => 'Livingston, TX', + 1936334 => 'Liberty, TX', + 1936336 => 'Liberty, TX', + 1936344 => 'New Waverly, TX', + 1936348 => 'Madisonville, TX', + 1936372 => 'Waller, TX', + 1936398 => 'Corrigan, TX', + 1936435 => 'Huntsville, TX', + 1936436 => 'Huntsville, TX', + 1936439 => 'Huntsville, TX', + 1936441 => 'Conroe, TX', + 1936448 => 'Montgomery, TX', + 1936449 => 'Montgomery, TX', + 1936462 => 'Nacogdoches, TX', + 1936494 => 'Conroe, TX', + 1936522 => 'Conroe, TX', + 1936539 => 'Conroe, TX', + 1936544 => 'Crockett, TX', + 1936559 => 'Nacogdoches, TX', + 1936560 => 'Nacogdoches, TX', + 1936564 => 'Nacogdoches, TX', + 1936569 => 'Nacogdoches, TX', + 1936582 => 'Montgomery, TX', + 1936588 => 'Montgomery, TX', + 1936590 => 'Center, TX', + 1936591 => 'Center, TX', + 1936594 => 'Trinity, TX', + 1936597 => 'Montgomery, TX', + 1936598 => 'Center, TX', + 1936628 => 'Shepherd, TX', + 1936632 => 'Lufkin, TX', + 1936633 => 'Lufkin, TX', + 1936634 => 'Lufkin, TX', + 1936637 => 'Lufkin, TX', + 1936639 => 'Lufkin, TX', + 1936642 => 'Groveton, TX', + 1936646 => 'Onalaska, TX', + 1936647 => 'Conroe, TX', + 1936653 => 'Coldspring, TX', + 1936687 => 'Grapeland, TX', + 1936699 => 'Lufkin, TX', + 1936756 => 'Conroe, TX', + 1936760 => 'Conroe, TX', + 1936788 => 'Conroe, TX', + 1936825 => 'Navasota, TX', + 1936829 => 'Diboll, TX', + 1936856 => 'Willis, TX', + 1936858 => 'Alto, TX', + 1936875 => 'Lufkin, TX', + 1936890 => 'Willis, TX', + 1936931 => 'Waller, TX', + 1936967 => 'Livingston, TX', + 1937 => 'Ohio', + 1937208 => 'Dayton, OH', + 1937222 => 'Dayton, OH', + 1937223 => 'Dayton, OH', + 1937224 => 'Dayton, OH', + 1937225 => 'Dayton, OH', + 1937226 => 'Dayton, OH', + 1937228 => 'Dayton, OH', + 1937233 => 'Dayton, OH', + 1937235 => 'Dayton, OH', + 1937236 => 'Dayton, OH', + 1937237 => 'Dayton, OH', + 1937252 => 'Dayton, OH', + 1937253 => 'Dayton, OH', + 1937254 => 'Dayton, OH', + 1937256 => 'Dayton, OH', + 1937257 => 'Dayton, OH', + 1937258 => 'Dayton, OH', + 1937262 => 'Dayton, OH', + 1937263 => 'Dayton, OH', + 1937264 => 'Dayton, OH', + 1937268 => 'Dayton, OH', + 1937274 => 'Dayton, OH', + 1937275 => 'Dayton, OH', + 1937276 => 'Dayton, OH', + 1937277 => 'Dayton, OH', + 1937278 => 'Dayton, OH', + 1937279 => 'Dayton, OH', + 1937291 => 'Dayton, OH', + 1937292 => 'Bellefontaine, OH', + 1937293 => 'Dayton, OH', + 1937294 => 'Dayton, OH', + 1937295 => 'Fort Loramie, OH', + 1937296 => 'Dayton, OH', + 1937297 => 'Dayton, OH', + 1937298 => 'Dayton, OH', + 1937299 => 'Dayton, OH', + 1937312 => 'Dayton, OH', + 1937320 => 'Beavercreek, OH', + 1937322 => 'Springfield, OH', + 1937323 => 'Springfield, OH', + 1937324 => 'Springfield, OH', + 1937325 => 'Springfield, OH', + 1937328 => 'Springfield, OH', + 1937332 => 'Troy, OH', + 1937333 => 'Dayton, OH', + 1937335 => 'Troy, OH', + 1937339 => 'Troy, OH', + 1937342 => 'Springfield, OH', + 1937352 => 'Xenia, OH', + 1937364 => 'Lynchburg, OH', + 1937372 => 'Xenia, OH', + 1937374 => 'Xenia, OH', + 1937376 => 'Xenia, OH', + 1937378 => 'Georgetown, OH', + 1937382 => 'Wilmington, OH', + 1937383 => 'Wilmington, OH', + 1937384 => 'Miamisburg, OH', + 1937386 => 'Seaman, OH', + 1937390 => 'Springfield, OH', + 1937392 => 'Ripley, OH', + 1937393 => 'Hillsboro, OH', + 1937399 => 'Springfield, OH', + 1937415 => 'Dayton, OH', + 1937424 => 'Dayton, OH', + 1937426 => 'Beavercreek, OH', + 1937427 => 'Beavercreek, OH', + 1937428 => 'Dayton, OH', + 1937429 => 'Beavercreek, OH', + 1937431 => 'Beavercreek, OH', + 1937432 => 'Dayton, OH', + 1937433 => 'Dayton, OH', + 1937434 => 'Dayton, OH', + 1937435 => 'Dayton, OH', + 1937436 => 'Dayton, OH', + 1937437 => 'New Paris, OH', + 1937438 => 'Dayton, OH', + 1937439 => 'Dayton, OH', + 1937440 => 'Troy, OH', + 1937443 => 'Dayton, OH', + 1937444 => 'Mount Orab, OH', + 1937446 => 'Sardinia, OH', + 1937452 => 'Camden, OH', + 1937454 => 'Dayton, OH', + 1937456 => 'Eaton, OH', + 1937461 => 'Dayton, OH', + 1937465 => 'West Liberty, OH', + 1937473 => 'Covington, OH', + 1937484 => 'Urbana, OH', + 1937492 => 'Sidney, OH', + 1937496 => 'Dayton, OH', + 1937497 => 'Sidney, OH', + 1937498 => 'Sidney, OH', + 1937525 => 'Springfield, OH', + 1937526 => 'Versailles, OH', + 1937544 => 'West Union, OH', + 1937547 => 'Greenville, OH', + 1937548 => 'Greenville, OH', + 1937549 => 'Manchester, OH', + 1937558 => 'Dayton, OH', + 1937578 => 'Marysville, OH', + 1937584 => 'Sabina, OH', + 1937585 => 'De Graff, OH', + 1937587 => 'Peebles, OH', + 1937592 => 'Bellefontaine, OH', + 1937593 => 'Bellefontaine, OH', + 1937596 => 'Jackson Center, OH', + 1937599 => 'Bellefontaine, OH', + 1937610 => 'Dayton, OH', + 1937615 => 'Piqua, OH', + 1937641 => 'Dayton, OH', + 1937642 => 'Marysville, OH', + 1937644 => 'Marysville, OH', + 1937652 => 'Urbana, OH', + 1937653 => 'Urbana, OH', + 1937660 => 'Dayton, OH', + 1937663 => 'St. Paris, OH', + 1937667 => 'Tipp City, OH', + 1937669 => 'Tipp City, OH', + 1937675 => 'Jamestown, OH', + 1937687 => 'New Lebanon, OH', + 1937692 => 'Arcanum, OH', + 1937698 => 'West Milton, OH', + 1937723 => 'Dayton, OH', + 1937743 => 'Franklin, OH', + 1937746 => 'Franklin, OH', + 1937748 => 'Springboro, OH', + 1937754 => 'Fairborn, OH', + 1937766 => 'Cedarville, OH', + 1937767 => 'Yellow Springs, OH', + 1937773 => 'Piqua, OH', + 1937778 => 'Piqua, OH', + 1937780 => 'Leesburg, OH', + 1937783 => 'Blanchester, OH', + 1937833 => 'Brookville, OH', + 1937834 => 'Mechanicsburg, OH', + 1937836 => 'Englewood, OH', + 1937839 => 'West Alexandria, OH', + 1937845 => 'New Carlisle, OH', + 1937847 => 'Miamisburg, OH', + 1937848 => 'Bellbrook, OH', + 1937849 => 'New Carlisle, OH', + 1937855 => 'Germantown, OH', + 1937864 => 'Enon, OH', + 1937865 => 'Miamisburg, OH', + 1937866 => 'Miamisburg, OH', + 1937878 => 'Fairborn, OH', + 1937879 => 'Fairborn, OH', + 1937890 => 'Dayton, OH', + 1937898 => 'Vandalia, OH', + 1937912 => 'Beavercreek, OH', + 1937938 => 'Dayton, OH', + 1937962 => 'Lewisburg, OH', + 1937964 => 'Springfield, OH', + 1937981 => 'Greenfield, OH', + 1938 => 'Alabama', + 1940 => 'Texas', + 1940228 => 'Wichita Falls, TX', + 1940243 => 'Denton, TX', + 1940320 => 'Denton, TX', + 1940322 => 'Wichita Falls, TX', + 1940323 => 'Denton, TX', + 1940325 => 'Mineral Wells, TX', + 1940328 => 'Mineral Wells, TX', + 1940349 => 'Denton, TX', + 1940365 => 'Aubrey, TX', + 1940380 => 'Denton, TX', + 1940381 => 'Denton, TX', + 1940382 => 'Denton, TX', + 1940383 => 'Denton, TX', + 1940384 => 'Denton, TX', + 1940387 => 'Denton, TX', + 1940397 => 'Wichita Falls, TX', + 1940433 => 'Boyd, TX', + 1940442 => 'Denton, TX', + 1940458 => 'Sanger, TX', + 1940464 => 'Argyle, TX', + 1940479 => 'Ponder, TX', + 1940482 => 'Krum, TX', + 1940484 => 'Denton, TX', + 1940495 => 'Electra, TX', + 1940521 => 'Graham, TX', + 1940538 => 'Henrietta, TX', + 1940549 => 'Graham, TX', + 1940552 => 'Vernon, TX', + 1940553 => 'Vernon, TX', + 1940564 => 'Olney, TX', + 1940565 => 'Denton, TX', + 1940566 => 'Denton, TX', + 1940567 => 'Jacksboro, TX', + 1940569 => 'Burkburnett, TX', + 1940574 => 'Archer City, TX', + 1940591 => 'Denton, TX', + 1940592 => 'Iowa Park, TX', + 1940612 => 'Gainesville, TX', + 1940626 => 'Decatur, TX', + 1940627 => 'Decatur, TX', + 1940644 => 'Chico, TX', + 1940648 => 'Justin, TX', + 1940663 => 'Quanah, TX', + 1940665 => 'Gainesville, TX', + 1940668 => 'Gainesville, TX', + 1940676 => 'Sheppard AFB, Wichita Falls, TX', + 1940683 => 'Bridgeport, TX', + 1940686 => 'Pilot Point, TX', + 1940687 => 'Wichita Falls, TX', + 1940689 => 'Wichita Falls, TX', + 1940691 => 'Wichita Falls, TX', + 1940692 => 'Wichita Falls, TX', + 1940696 => 'Wichita Falls, TX', + 1940716 => 'Wichita Falls, TX', + 1940723 => 'Wichita Falls, TX', + 1940759 => 'Muenster, TX', + 1940761 => 'Wichita Falls, TX', + 1940766 => 'Wichita Falls, TX', + 1940767 => 'Wichita Falls, TX', + 1940779 => 'Graford, TX', + 1940825 => 'Nocona, TX', + 1940851 => 'Wichita Falls, TX', + 1940855 => 'Wichita Falls, TX', + 1940864 => 'Haskell, TX', + 1940872 => 'Bowie, TX', + 1940889 => 'Seymour, TX', + 1940891 => 'Denton, TX', + 1940898 => 'Denton, TX', + 1940937 => 'Childress, TX', + 1941 => 'Florida', + 1941205 => 'Punta Gorda, FL', + 1941235 => 'Port Charlotte, FL', + 1941240 => 'North Port, FL', + 1941244 => 'Venice, FL', + 1941255 => 'Port Charlotte, FL', + 1941284 => 'Sarasota, FL', + 1941302 => 'Sarasota, FL', + 1941306 => 'Sarasota, FL', + 1941308 => 'Sarasota, FL', + 1941312 => 'Sarasota, FL', + 1941316 => 'Sarasota, FL', + 1941320 => 'Sarasota, FL', + 1941321 => 'Sarasota, FL', + 1941322 => 'Myakka City, FL', + 1941330 => 'Sarasota, FL', + 1941342 => 'Sarasota, FL', + 1941343 => 'Sarasota, FL', + 1941346 => 'Sarasota, FL', + 1941347 => 'Punta Gorda, FL', + 1941349 => 'Sarasota, FL', + 1941350 => 'Sarasota, FL', + 1941351 => 'Sarasota, FL', + 1941355 => 'Sarasota, FL', + 1941358 => 'Sarasota, FL', + 1941359 => 'Sarasota, FL', + 1941360 => 'Sarasota, FL', + 1941361 => 'Sarasota, FL', + 1941362 => 'Sarasota, FL', + 1941363 => 'Sarasota, FL', + 1941364 => 'Sarasota, FL', + 1941365 => 'Sarasota, FL', + 1941366 => 'Sarasota, FL', + 1941371 => 'Sarasota, FL', + 1941373 => 'Sarasota, FL', + 1941377 => 'Sarasota, FL', + 1941378 => 'Sarasota, FL', + 1941379 => 'Sarasota, FL', + 1941383 => 'Longboat Key, FL', + 1941387 => 'Longboat Key, FL', + 1941388 => 'Sarasota, FL', + 1941391 => 'Port Charlotte, FL', + 1941400 => 'Sarasota, FL', + 1941408 => 'Venice, FL', + 1941412 => 'Venice, FL', + 1941423 => 'North Port, FL', + 1941426 => 'North Port, FL', + 1941429 => 'North Port, FL', + 1941444 => 'Sarasota, FL', + 1941460 => 'Englewood, FL', + 1941473 => 'Englewood, FL', + 1941474 => 'Englewood, FL', + 1941475 => 'Englewood, FL', + 1941480 => 'Venice, FL', + 1941483 => 'Venice, FL', + 1941484 => 'Venice, FL', + 1941485 => 'Venice, FL', + 1941486 => 'Venice, FL', + 1941487 => 'Sarasota, FL', + 1941488 => 'Venice, FL', + 1941492 => 'Venice, FL', + 1941493 => 'Venice, FL', + 1941496 => 'Venice, FL', + 1941497 => 'Venice, FL', + 1941505 => 'Punta Gorda, FL', + 1941544 => 'Sarasota, FL', + 1941552 => 'Sarasota, FL', + 1941554 => 'Sarasota, FL', + 1941556 => 'Sarasota, FL', + 1941564 => 'North Port, FL', + 1941567 => 'Bradenton, FL', + 1941575 => 'Punta Gorda, FL', + 1941586 => 'Sarasota, FL', + 1941613 => 'Port Charlotte, FL', + 1941623 => 'Port Charlotte, FL', + 1941624 => 'Port Charlotte, FL', + 1941625 => 'Port Charlotte, FL', + 1941627 => 'Port Charlotte, FL', + 1941629 => 'Port Charlotte, FL', + 1941637 => 'Punta Gorda, FL', + 1941639 => 'Punta Gorda, FL', + 1941706 => 'Sarasota, FL', + 1941708 => 'Bradenton, FL', + 1941721 => 'Palmetto, FL', + 1941722 => 'Palmetto, FL', + 1941723 => 'Palmetto, FL', + 1941727 => 'Bradenton, FL', + 1941729 => 'Palmetto, FL', + 1941739 => 'Bradenton, FL', + 1941741 => 'Bradenton, FL', + 1941743 => 'Port Charlotte, FL', + 1941744 => 'Bradenton, FL', + 1941745 => 'Bradenton, FL', + 1941746 => 'Bradenton, FL', + 1941747 => 'Bradenton, FL', + 1941748 => 'Bradenton, FL', + 1941749 => 'Bradenton, FL', + 1941750 => 'Bradenton, FL', + 1941751 => 'Bradenton, FL', + 1941752 => 'Bradenton, FL', + 1941753 => 'Bradenton, FL', + 1941755 => 'Bradenton, FL', + 1941756 => 'Bradenton, FL', + 1941758 => 'Bradenton, FL', + 1941761 => 'Bradenton, FL', + 1941764 => 'Port Charlotte, FL', + 1941766 => 'Port Charlotte, FL', + 1941776 => 'Parrish, FL', + 1941782 => 'Bradenton, FL', + 1941792 => 'Bradenton, FL', + 1941794 => 'Bradenton, FL', + 1941795 => 'Bradenton, FL', + 1941798 => 'Bradenton, FL', + 1941809 => 'Sarasota, FL', + 1941822 => 'Sarasota, FL', + 1941833 => 'Punta Gorda, FL', + 1941861 => 'Sarasota, FL', + 1941870 => 'Sarasota, FL', + 1941894 => 'Sarasota, FL', + 1941896 => 'Bradenton, FL', + 1941906 => 'Sarasota, FL', + 1941917 => 'Sarasota, FL', + 1941921 => 'Sarasota, FL', + 1941922 => 'Sarasota, FL', + 1941923 => 'Sarasota, FL', + 1941924 => 'Sarasota, FL', + 1941925 => 'Sarasota, FL', + 1941926 => 'Sarasota, FL', + 1941927 => 'Sarasota, FL', + 1941928 => 'Sarasota, FL', + 1941929 => 'Sarasota, FL', + 1941932 => 'Bradenton, FL', + 1941951 => 'Sarasota, FL', + 1941952 => 'Sarasota, FL', + 1941953 => 'Sarasota, FL', + 1941954 => 'Sarasota, FL', + 1941955 => 'Sarasota, FL', + 1941957 => 'Sarasota, FL', + 1941964 => 'Boca Grande, FL', + 1941979 => 'Port Charlotte, FL', + 1947 => 'Michigan', + 1949 => 'California', + 1949221 => 'Irvine, CA', + 1949249 => 'Laguna Niguel, CA', + 1949253 => 'Irvine, CA', + 1949258 => 'Newport Beach, CA', + 1949260 => 'Irvine, CA', + 1949262 => 'Irvine, CA', + 1949333 => 'Irvine, CA', + 1949336 => 'Irvine, CA', + 1949341 => 'Irvine, CA', + 1949347 => 'Mission Viejo, CA', + 1949361 => 'San Clemente, CA', + 1949363 => 'Laguna Niguel, CA', + 1949364 => 'Mission Viejo, CA', + 1949366 => 'San Clemente, CA', + 1949369 => 'San Clemente, CA', + 1949376 => 'Laguna Beach, CA', + 1949387 => 'Irvine, CA', + 1949425 => 'Aliso Viejo, CA', + 1949428 => 'Irvine, CA', + 1949442 => 'Irvine, CA', + 1949450 => 'Irvine, CA', + 1949452 => 'Laguna Hills, CA', + 1949453 => 'Irvine, CA', + 1949474 => 'Irvine, CA', + 1949477 => 'Irvine, CA', + 1949492 => 'San Clemente, CA', + 1949494 => 'Laguna Beach, CA', + 1949495 => 'Laguna Niguel, CA', + 1949497 => 'Laguna Beach, CA', + 1949498 => 'San Clemente, CA', + 1949499 => 'Laguna Beach, CA', + 1949502 => 'Irvine, CA', + 1949509 => 'Irvine, CA', + 1949515 => 'Costa Mesa, CA', + 1949548 => 'Costa Mesa, CA', + 1949551 => 'Irvine, CA', + 1949552 => 'Irvine, CA', + 1949553 => 'Irvine, CA', + 1949559 => 'Irvine, CA', + 1949585 => 'Irvine, CA', + 1949622 => 'Irvine, CA', + 1949631 => 'Costa Mesa, CA', + 1949640 => 'Newport Beach, CA', + 1949642 => 'Costa Mesa, CA', + 1949644 => 'Newport Beach, CA', + 1949645 => 'Costa Mesa, CA', + 1949646 => 'Costa Mesa, CA', + 1949650 => 'Costa Mesa, CA', + 1949651 => 'Irvine, CA', + 1949653 => 'Irvine, CA', + 1949654 => 'Irvine, CA', + 1949660 => 'Irvine, CA', + 1949673 => 'Newport Beach, CA', + 1949675 => 'Newport Beach, CA', + 1949679 => 'Irvine, CA', + 1949706 => 'Newport Beach, CA', + 1949715 => 'Laguna Beach, CA', + 1949717 => 'Newport Beach, CA', + 1949718 => 'Newport Beach, CA', + 1949719 => 'Newport Beach, CA', + 1949720 => 'Newport Beach, CA', + 1949721 => 'Newport Beach, CA', + 1949722 => 'Costa Mesa, CA', + 1949723 => 'Newport Beach, CA', + 1949724 => 'Irvine, CA', + 1949725 => 'Irvine, CA', + 1949726 => 'Irvine, CA', + 1949727 => 'Irvine, CA', + 1949733 => 'Irvine, CA', + 1949748 => 'Irvine, CA', + 1949753 => 'Irvine, CA', + 1949757 => 'Irvine, CA', + 1949759 => 'Newport Beach, CA', + 1949760 => 'Newport Beach, CA', + 1949764 => 'Newport Beach, CA', + 1949769 => 'Irvine, CA', + 1949786 => 'Irvine, CA', + 1949788 => 'Irvine, CA', + 1949824 => 'Irvine, CA', + 1949854 => 'Irvine, CA', + 1949857 => 'Irvine, CA', + 1949861 => 'Irvine, CA', + 1949940 => 'San Clemente, CA', + 1951 => 'California', + 1951222 => 'Riverside, CA', + 1951225 => 'Temecula, CA', + 1951242 => 'Moreno Valley, CA', + 1951243 => 'Moreno Valley, CA', + 1951244 => 'Canyon Lake, CA', + 1951245 => 'Lake Elsinore, CA', + 1951247 => 'Moreno Valley, CA', + 1951248 => 'Riverside, CA', + 1951270 => 'Corona, CA', + 1951271 => 'Corona, CA', + 1951272 => 'Corona, CA', + 1951273 => 'Corona, CA', + 1951274 => 'Riverside, CA', + 1951275 => 'Riverside, CA', + 1951276 => 'Riverside, CA', + 1951277 => 'Corona, CA', + 1951278 => 'Corona, CA', + 1951279 => 'Corona, CA', + 1951280 => 'Corona, CA', + 1951296 => 'Temecula, CA', + 1951302 => 'Temecula, CA', + 1951303 => 'Temecula, CA', + 1951304 => 'Murrieta, CA', + 1951308 => 'Temecula, CA', + 1951328 => 'Riverside, CA', + 1951340 => 'Corona, CA', + 1951343 => 'Riverside, CA', + 1951351 => 'Riverside, CA', + 1951352 => 'Riverside, CA', + 1951353 => 'Riverside, CA', + 1951354 => 'Riverside, CA', + 1951358 => 'Riverside, CA', + 1951359 => 'Riverside, CA', + 1951369 => 'Riverside, CA', + 1951371 => 'Corona, CA', + 1951372 => 'Corona, CA', + 1951413 => 'Moreno Valley, CA', + 1951443 => 'Perris, CA', + 1951445 => 'Murrieta, CA', + 1951461 => 'Murrieta, CA', + 1951471 => 'Lake Elsinore, CA', + 1951485 => 'Moreno Valley, CA', + 1951486 => 'Moreno Valley, CA', + 1951487 => 'San Jacinto, CA', + 1951491 => 'Temecula, CA', + 1951506 => 'Temecula, CA', + 1951509 => 'Riverside, CA', + 1951520 => 'Corona, CA', + 1951549 => 'Corona, CA', + 1951571 => 'Moreno Valley, CA', + 1951582 => 'Corona, CA', + 1951587 => 'Temecula, CA', + 1951600 => 'Murrieta, CA', + 1951601 => 'Moreno Valley, CA', + 1951609 => 'Wildomar, CA', + 1951637 => 'Riverside, CA', + 1951652 => 'Hemet, CA', + 1951653 => 'Moreno Valley, CA', + 1951654 => 'San Jacinto, CA', + 1951657 => 'Perris, CA', + 1951658 => 'Hemet, CA', + 1951659 => 'Idyllwild-Pine Cove, CA', + 1951674 => 'Lake Elsinore, CA', + 1951676 => 'Temecula, CA', + 1951677 => 'Murrieta, CA', + 1951680 => 'Riverside, CA', + 1951682 => 'Riverside, CA', + 1951683 => 'Riverside, CA', + 1951684 => 'Riverside, CA', + 1951685 => 'Riverside, CA', + 1951686 => 'Riverside, CA', + 1951687 => 'Riverside, CA', + 1951688 => 'Riverside, CA', + 1951689 => 'Riverside, CA', + 1951693 => 'Temecula, CA', + 1951694 => 'Temecula, CA', + 1951695 => 'Temecula, CA', + 1951696 => 'Murrieta, CA', + 1951698 => 'Murrieta, CA', + 1951699 => 'Temecula, CA', + 1951719 => 'Temecula, CA', + 1951734 => 'Corona, CA', + 1951735 => 'Corona, CA', + 1951736 => 'Corona, CA', + 1951737 => 'Corona, CA', + 1951738 => 'Corona, CA', + 1951739 => 'Corona, CA', + 1951763 => 'Anza, CA', + 1951765 => 'Hemet, CA', + 1951766 => 'Hemet, CA', + 1951769 => 'Beaumont, CA', + 1951776 => 'Riverside, CA', + 1951779 => 'Riverside, CA', + 1951780 => 'Riverside, CA', + 1951781 => 'Riverside, CA', + 1951782 => 'Riverside, CA', + 1951784 => 'Riverside, CA', + 1951785 => 'Riverside, CA', + 1951786 => 'Riverside, CA', + 1951787 => 'Riverside, CA', + 1951788 => 'Riverside, CA', + 1951789 => 'Riverside, CA', + 1951808 => 'Corona, CA', + 1951817 => 'Corona, CA', + 1951845 => 'Beaumont, CA', + 1951849 => 'Banning, CA', + 1951894 => 'Murrieta, CA', + 1951898 => 'Corona, CA', + 1951922 => 'Banning, CA', + 1951924 => 'Moreno Valley, CA', + 1951925 => 'Hemet, CA', + 1951927 => 'Hemet, CA', + 1951929 => 'Hemet, CA', + 1951940 => 'Perris, CA', + 1951943 => 'Perris, CA', + 1951955 => 'Riverside, CA', + 1951977 => 'Riverside, CA', + 1952 => 'Minnesota', + 1952233 => 'Shakopee, MN', + 1952361 => 'Chaska, MN', + 1952368 => 'Chaska, MN', + 1952403 => 'Shakopee, MN', + 1952423 => 'Apple Valley, MN', + 1952432 => 'Apple Valley, MN', + 1952435 => 'Burnsville, MN', + 1952440 => 'Prior Lake, MN', + 1952442 => 'Waconia, MN', + 1952443 => 'Victoria, MN', + 1952445 => 'Shakopee, MN', + 1952446 => 'St. Bonifacius, MN', + 1952447 => 'Prior Lake, MN', + 1952448 => 'Chaska, MN', + 1952466 => 'Cologne, MN', + 1952469 => 'Lakeville, MN', + 1952472 => 'Mound, MN', + 1952473 => 'Wayzata, MN', + 1952474 => 'Excelsior, MN', + 1952475 => 'Wayzata, MN', + 1952476 => 'Wayzata, MN', + 1952492 => 'Jordan, MN', + 1952496 => 'Shakopee, MN', + 1952556 => 'Chaska, MN', + 1952707 => 'Burnsville, MN', + 1952736 => 'Burnsville, MN', + 1952758 => 'New Prague, MN', + 1952808 => 'Burnsville, MN', + 1952829 => 'Eden Prairie, MN', + 1952848 => 'Edina, MN', + 1952854 => 'Bloomington, MN', + 1952858 => 'Bloomington, MN', + 1952873 => 'Belle Plaine, MN', + 1952882 => 'Burnsville, MN', + 1952883 => 'Minneapolis, MN', + 1952885 => 'East Bloomington, Bloomington, MN', + 1952890 => 'Burnsville, MN', + 1952892 => 'Burnsville, MN', + 1952894 => 'Burnsville, MN', + 1952895 => 'Burnsville, MN', + 1952924 => 'Minneapolis, MN', + 1952934 => 'Eden Prairie, MN', + 1952937 => 'Eden Prairie, MN', + 1952941 => 'Eden Prairie, MN', + 1952942 => 'Eden Prairie, MN', + 1952944 => 'Eden Prairie, MN', + 1952949 => 'Eden Prairie, MN', + 1952955 => 'Watertown, MN', + 1952975 => 'Eden Prairie, MN', + 1952985 => 'Lakeville, MN', + 1954 => 'Florida', + 1954202 => 'Fort Lauderdale, FL', + 1954217 => 'Weston, FL', + 1954227 => 'Coral Springs, FL', + 1954229 => 'Fort Lauderdale, FL', + 1954255 => 'Coral Springs, FL', + 1954262 => 'Davie, FL', + 1954265 => 'Hollywood, FL', + 1954267 => 'Fort Lauderdale, FL', + 1954332 => 'Fort Lauderdale, FL', + 1954340 => 'Coral Springs, FL', + 1954341 => 'Coral Springs, FL', + 1954344 => 'Coral Springs, FL', + 1954345 => 'Coral Springs, FL', + 1954346 => 'Coral Springs, FL', + 1954349 => 'Weston, FL', + 1954351 => 'Fort Lauderdale, FL', + 1954355 => 'Fort Lauderdale, FL', + 1954359 => 'Fort Lauderdale, FL', + 1954360 => 'Deerfield Beach, FL', + 1954384 => 'Weston, FL', + 1954385 => 'Weston, FL', + 1954389 => 'Weston, FL', + 1954396 => 'Fort Lauderdale, FL', + 1954418 => 'Deerfield Beach, FL', + 1954420 => 'Deerfield Beach, FL', + 1954421 => 'Deerfield Beach, FL', + 1954422 => 'Deerfield Beach, FL', + 1954425 => 'Deerfield Beach, FL', + 1954426 => 'Deerfield Beach, FL', + 1954427 => 'Deerfield Beach, FL', + 1954428 => 'Deerfield Beach, FL', + 1954429 => 'Deerfield Beach, FL', + 1954430 => 'Pembroke Pines, FL', + 1954431 => 'Pembroke Pines, FL', + 1954432 => 'Pembroke Pines, FL', + 1954433 => 'Pembroke Pines, FL', + 1954435 => 'Pembroke Pines, FL', + 1954436 => 'Pembroke Pines, FL', + 1954437 => 'Pembroke Pines, FL', + 1954438 => 'Pembroke Pines, FL', + 1954441 => 'Pembroke Pines, FL', + 1954442 => 'Pembroke Pines, FL', + 1954443 => 'Pembroke Pines, FL', + 1954450 => 'Pembroke Pines, FL', + 1954454 => 'Hallandale Beach, FL', + 1954455 => 'Hallandale Beach, FL', + 1954456 => 'Hallandale Beach, FL', + 1954457 => 'Hallandale Beach, FL', + 1954458 => 'Hallandale Beach, FL', + 1954462 => 'Fort Lauderdale, FL', + 1954463 => 'Fort Lauderdale, FL', + 1954467 => 'Fort Lauderdale, FL', + 1954468 => 'Fort Lauderdale, FL', + 1954473 => 'Plantation, FL', + 1954480 => 'Deerfield Beach, FL', + 1954481 => 'Deerfield Beach, FL', + 1954489 => 'Fort Lauderdale, FL', + 1954491 => 'Fort Lauderdale, FL', + 1954492 => 'Fort Lauderdale, FL', + 1954493 => 'Fort Lauderdale, FL', + 1954509 => 'Coral Springs, FL', + 1954510 => 'Coral Springs, FL', + 1954522 => 'Fort Lauderdale, FL', + 1954523 => 'Fort Lauderdale, FL', + 1954524 => 'Fort Lauderdale, FL', + 1954525 => 'Fort Lauderdale, FL', + 1954527 => 'Fort Lauderdale, FL', + 1954531 => 'Deerfield Beach, FL', + 1954532 => 'Pompano Beach, FL', + 1954537 => 'Fort Lauderdale, FL', + 1954545 => 'Pompano Beach, FL', + 1954563 => 'Fort Lauderdale, FL', + 1954564 => 'Fort Lauderdale, FL', + 1954565 => 'Fort Lauderdale, FL', + 1954566 => 'Fort Lauderdale, FL', + 1954568 => 'Fort Lauderdale, FL', + 1954570 => 'Deerfield Beach, FL', + 1954571 => 'Deerfield Beach, FL', + 1954572 => 'Sunrise, FL', + 1954575 => 'Coral Springs, FL', + 1954578 => 'Sunrise, FL', + 1954580 => 'Pompano Beach, FL', + 1954596 => 'Deerfield Beach, FL', + 1954597 => 'Tamarac, FL', + 1954659 => 'Weston, FL', + 1954693 => 'Plantation, FL', + 1954698 => 'Deerfield Beach, FL', + 1954704 => 'Pembroke Pines, FL', + 1954712 => 'Fort Lauderdale, FL', + 1954718 => 'Tamarac, FL', + 1954720 => 'Tamarac, FL', + 1954721 => 'Tamarac, FL', + 1954722 => 'Tamarac, FL', + 1954724 => 'Tamarac, FL', + 1954725 => 'Deerfield Beach, FL', + 1954726 => 'Tamarac, FL', + 1954728 => 'Fort Lauderdale, FL', + 1954741 => 'Sunrise, FL', + 1954742 => 'Sunrise, FL', + 1954746 => 'Sunrise, FL', + 1954747 => 'Sunrise, FL', + 1954748 => 'Sunrise, FL', + 1954749 => 'Sunrise, FL', + 1954752 => 'Coral Springs, FL', + 1954753 => 'Coral Springs, FL', + 1954755 => 'Coral Springs, FL', + 1954757 => 'Coral Springs, FL', + 1954759 => 'Fort Lauderdale, FL', + 1954760 => 'Fort Lauderdale, FL', + 1954761 => 'Fort Lauderdale, FL', + 1954763 => 'Fort Lauderdale, FL', + 1954764 => 'Fort Lauderdale, FL', + 1954765 => 'Fort Lauderdale, FL', + 1954766 => 'Fort Lauderdale, FL', + 1954767 => 'Fort Lauderdale, FL', + 1954768 => 'Fort Lauderdale, FL', + 1954769 => 'Fort Lauderdale, FL', + 1954771 => 'Fort Lauderdale, FL', + 1954772 => 'Fort Lauderdale, FL', + 1954776 => 'Fort Lauderdale, FL', + 1954779 => 'Fort Lauderdale, FL', + 1954781 => 'Pompano Beach, FL', + 1954782 => 'Pompano Beach, FL', + 1954783 => 'Pompano Beach, FL', + 1954784 => 'Pompano Beach, FL', + 1954785 => 'Pompano Beach, FL', + 1954786 => 'Pompano Beach, FL', + 1954788 => 'Pompano Beach, FL', + 1954796 => 'Coral Springs, FL', + 1954828 => 'Fort Lauderdale, FL', + 1954831 => 'Fort Lauderdale, FL', + 1954835 => 'Sunrise, FL', + 1954838 => 'Sunrise, FL', + 1954845 => 'Sunrise, FL', + 1954846 => 'Sunrise, FL', + 1954851 => 'Sunrise, FL', + 1954894 => 'Hollywood, FL', + 1954920 => 'Hollywood, FL', + 1954921 => 'Hollywood, FL', + 1954922 => 'Hollywood, FL', + 1954923 => 'Hollywood, FL', + 1954924 => 'Hollywood, FL', + 1954925 => 'Hollywood, FL', + 1954926 => 'Hollywood, FL', + 1954927 => 'Hollywood, FL', + 1954929 => 'Hollywood, FL', + 1954933 => 'Pompano Beach, FL', + 1954938 => 'Fort Lauderdale, FL', + 1954941 => 'Pompano Beach, FL', + 1954942 => 'Pompano Beach, FL', + 1954943 => 'Pompano Beach, FL', + 1954946 => 'Pompano Beach, FL', + 1954958 => 'Fort Lauderdale, FL', + 1954960 => 'Pompano Beach, FL', + 1954961 => 'Hollywood, FL', + 1954962 => 'Hollywood, FL', + 1954964 => 'Hollywood, FL', + 1954965 => 'Hollywood, FL', + 1954966 => 'Hollywood, FL', + 1954967 => 'Hollywood, FL', + 1954981 => 'Hollywood, FL', + 1954983 => 'Hollywood, FL', + 1954985 => 'Hollywood, FL', + 1954986 => 'Hollywood, FL', + 1954987 => 'Hollywood, FL', + 1954989 => 'Hollywood, FL', + 1956 => 'Texas', + 1956213 => 'McAllen, TX', + 1956233 => 'Los Fresnos, TX', + 1956283 => 'Pharr, TX', + 1956287 => 'Edinburg, TX', + 1956289 => 'Edinburg, TX', + 1956316 => 'Edinburg, TX', + 1956318 => 'Edinburg, TX', + 1956350 => 'Brownsville, TX', + 1956361 => 'San Benito, TX', + 1956364 => 'Harlingen, TX', + 1956365 => 'Harlingen, TX', + 1956380 => 'Edinburg, TX', + 1956381 => 'Edinburg, TX', + 1956383 => 'Edinburg, TX', + 1956386 => 'Edinburg, TX', + 1956389 => 'Harlingen, TX', + 1956399 => 'San Benito, TX', + 1956412 => 'Harlingen, TX', + 1956421 => 'Harlingen, TX', + 1956423 => 'Harlingen, TX', + 1956424 => 'Mission, TX', + 1956425 => 'Harlingen, TX', + 1956428 => 'Harlingen, TX', + 1956440 => 'Harlingen, TX', + 1956447 => 'Weslaco, TX', + 1956461 => 'Donna, TX', + 1956464 => 'Donna, TX', + 1956465 => 'Brownsville, TX', + 1956487 => 'Rio Grande City, TX', + 1956488 => 'Rio Grande City, TX', + 1956504 => 'Brownsville, TX', + 1956514 => 'Mercedes, TX', + 1956519 => 'Mission, TX', + 1956523 => 'Laredo, TX', + 1956541 => 'Brownsville, TX', + 1956542 => 'Brownsville, TX', + 1956544 => 'Brownsville, TX', + 1956546 => 'Brownsville, TX', + 1956548 => 'Brownsville, TX', + 1956550 => 'Brownsville, TX', + 1956554 => 'Brownsville, TX', + 1956565 => 'Mercedes, TX', + 1956568 => 'Laredo, TX', + 1956574 => 'Brownsville, TX', + 1956580 => 'Mission, TX', + 1956581 => 'Mission, TX', + 1956583 => 'Mission, TX', + 1956584 => 'Mission, TX', + 1956585 => 'Mission, TX', + 1956618 => 'McAllen, TX', + 1956621 => 'Brownsville, TX', + 1956627 => 'McAllen, TX', + 1956630 => 'McAllen, TX', + 1956631 => 'McAllen, TX', + 1956661 => 'McAllen, TX', + 1956664 => 'McAllen, TX', + 1956668 => 'McAllen, TX', + 1956682 => 'McAllen, TX', + 1956683 => 'McAllen, TX', + 1956686 => 'McAllen, TX', + 1956687 => 'McAllen, TX', + 1956688 => 'McAllen, TX', + 1956689 => 'Raymondville, TX', + 1956702 => 'Pharr, TX', + 1956712 => 'Laredo, TX', + 1956717 => 'Laredo, TX', + 1956718 => 'Laredo, TX', + 1956722 => 'Laredo, TX', + 1956723 => 'Laredo, TX', + 1956724 => 'Laredo, TX', + 1956725 => 'Laredo, TX', + 1956726 => 'Laredo, TX', + 1956727 => 'Laredo, TX', + 1956728 => 'Laredo, TX', + 1956729 => 'Laredo, TX', + 1956748 => 'Rio Hondo, TX', + 1956753 => 'Laredo, TX', + 1956765 => 'Zapata, TX', + 1956781 => 'Pharr, TX', + 1956782 => 'Pharr, TX', + 1956783 => 'Pharr, TX', + 1956787 => 'Pharr, TX', + 1956791 => 'Laredo, TX', + 1956795 => 'Laredo, TX', + 1956796 => 'Laredo, TX', + 1956797 => 'La Feria, TX', + 1956825 => 'Mercedes, TX', + 1956831 => 'Brownsville, TX', + 1956838 => 'Brownsville, TX', + 1956843 => 'Hidalgo, TX', + 1956849 => 'Roma, TX', + 1956928 => 'McAllen, TX', + 1956943 => 'Port Isabel, TX', + 1956968 => 'Weslaco, TX', + 1956969 => 'Weslaco, TX', + 1956971 => 'McAllen, TX', + 1956972 => 'McAllen, TX', + 1956973 => 'Weslaco, TX', + 1956982 => 'Brownsville, TX', + 1956992 => 'McAllen, TX', + 1956994 => 'McAllen, TX', + 1959 => 'Connecticut', + 1970 => 'Colorado', + 1970203 => 'Loveland, CO', + 1970204 => 'Fort Collins, CO', + 1970206 => 'Fort Collins, CO', + 1970207 => 'Fort Collins, CO', + 1970221 => 'Fort Collins, CO', + 1970223 => 'Fort Collins, CO', + 1970224 => 'Fort Collins, CO', + 1970225 => 'Fort Collins, CO', + 1970226 => 'Fort Collins, CO', + 1970229 => 'Fort Collins, CO', + 1970232 => 'Fort Collins, CO', + 1970240 => 'Montrose, CO', + 1970241 => 'Grand Junction, CO', + 1970242 => 'Grand Junction, CO', + 1970243 => 'Grand Junction, CO', + 1970244 => 'Grand Junction, CO', + 1970245 => 'Grand Junction, CO', + 1970247 => 'Durango, CO', + 1970248 => 'Grand Junction, CO', + 1970249 => 'Montrose, CO', + 1970250 => 'Grand Junction, CO', + 1970252 => 'Montrose, CO', + 1970254 => 'Grand Junction, CO', + 1970255 => 'Grand Junction, CO', + 1970256 => 'Grand Junction, CO', + 1970257 => 'Grand Junction, CO', + 1970259 => 'Durango, CO', + 1970261 => 'Grand Junction, CO', + 1970263 => 'Grand Junction, CO', + 1970264 => 'Pagosa Springs, CO', + 1970266 => 'Fort Collins, CO', + 1970276 => 'Hayden, CO', + 1970278 => 'Loveland, CO', + 1970282 => 'Fort Collins, CO', + 1970284 => 'La Salle, CO', + 1970285 => 'Parachute, CO', + 1970298 => 'Grand Junction, CO', + 1970304 => 'Greeley, CO', + 1970323 => 'Olathe, CO', + 1970325 => 'Ouray, CO', + 1970327 => 'Norwood, CO', + 1970328 => 'Eagle, CO', + 1970330 => 'Greeley, CO', + 1970332 => 'Wray, CO', + 1970336 => 'Greeley, CO', + 1970339 => 'Greeley, CO', + 1970345 => 'Akron, CO', + 1970346 => 'Greeley, CO', + 1970347 => 'Greeley, CO', + 1970349 => 'Crested Butte, CO', + 1970350 => 'Greeley, CO', + 1970351 => 'Greeley, CO', + 1970352 => 'Greeley, CO', + 1970353 => 'Greeley, CO', + 1970356 => 'Greeley, CO', + 1970375 => 'Durango, CO', + 1970377 => 'Fort Collins, CO', + 1970378 => 'Greeley, CO', + 1970382 => 'Durango, CO', + 1970384 => 'Glenwood Springs, CO', + 1970385 => 'Durango, CO', + 1970387 => 'Silverton, CO', + 1970392 => 'Greeley, CO', + 1970396 => 'Greeley, CO', + 1970403 => 'Durango, CO', + 1970407 => 'Fort Collins, CO', + 1970416 => 'Fort Collins, CO', + 1970424 => 'Grand Junction, CO', + 1970429 => 'Aspen, CO', + 1970449 => 'Fort Collins, CO', + 1970453 => 'Breckenridge, CO', + 1970454 => 'Eaton, CO', + 1970461 => 'Loveland, CO', + 1970464 => 'Palisade, CO', + 1970472 => 'Fort Collins, CO', + 1970474 => 'Julesburg, CO', + 1970476 => 'Vail, CO', + 1970479 => 'Vail, CO', + 1970482 => 'Fort Collins, CO', + 1970483 => 'Wiggins, CO', + 1970484 => 'Fort Collins, CO', + 1970490 => 'Fort Collins, CO', + 1970491 => 'Fort Collins, CO', + 1970493 => 'Fort Collins, CO', + 1970494 => 'Fort Collins, CO', + 1970495 => 'Fort Collins, CO', + 1970498 => 'Fort Collins, CO', + 1970506 => 'Greeley, CO', + 1970521 => 'Sterling, CO', + 1970522 => 'Sterling, CO', + 1970523 => 'Grand Junction, CO', + 1970524 => 'Gypsum, CO', + 1970527 => 'Paonia, CO', + 1970532 => 'Berthoud, CO', + 1970533 => 'Mancos, CO', + 1970542 => 'Fort Morgan, CO', + 1970544 => 'Aspen, CO', + 1970547 => 'Breckenridge, CO', + 1970563 => 'Ignacio, CO', + 1970564 => 'Cortez, CO', + 1970565 => 'Cortez, CO', + 1970568 => 'Wellington, CO', + 1970569 => 'Edwards, CO', + 1970577 => 'Estes Park, CO', + 1970586 => 'Estes Park, CO', + 1970587 => 'Johnstown, CO', + 1970593 => 'Loveland, CO', + 1970613 => 'Loveland, CO', + 1970619 => 'Loveland, CO', + 1970622 => 'Loveland, CO', + 1970625 => 'Rifle, CO', + 1970626 => 'Ridgway, CO', + 1970627 => 'Grand Lake, CO', + 1970631 => 'Fort Collins, CO', + 1970635 => 'Loveland, CO', + 1970641 => 'Gunnison, CO', + 1970663 => 'Loveland, CO', + 1970667 => 'Loveland, CO', + 1970668 => 'Frisco, CO', + 1970669 => 'Loveland, CO', + 1970672 => 'Fort Collins, CO', + 1970673 => 'Greeley, CO', + 1970674 => 'Windsor, CO', + 1970675 => 'Rangely, CO', + 1970677 => 'Dove Creek, CO', + 1970682 => 'Fort Collins, CO', + 1970686 => 'Windsor, CO', + 1970689 => 'Fort Collins, CO', + 1970704 => 'Carbondale, CO', + 1970723 => 'Walden, CO', + 1970724 => 'Kremmling, CO', + 1970728 => 'Telluride, CO', + 1970731 => 'Pagosa Springs, CO', + 1970739 => 'Cortez, CO', + 1970748 => 'Avon, CO', + 1970749 => 'Durango, CO', + 1970759 => 'Durango, CO', + 1970764 => 'Durango, CO', + 1970769 => 'Durango, CO', + 1970774 => 'Haxtun, CO', + 1970776 => 'Loveland, CO', + 1970785 => 'Platteville, CO', + 1970799 => 'Durango, CO', + 1970824 => 'Craig, CO', + 1970827 => 'Minturn, CO', + 1970834 => 'Ault, CO', + 1970842 => 'Brush, CO', + 1970845 => 'Avon, CO', + 1970848 => 'Yuma, CO', + 1970854 => 'Holyoke, CO', + 1970856 => 'Cedaredge, CO', + 1970858 => 'Fruita, CO', + 1970864 => 'Nucla, CO', + 1970867 => 'Fort Morgan, CO', + 1970870 => 'Steamboat Spgs, CO', + 1970871 => 'Steamboat Spgs, CO', + 1970872 => 'Hotchkiss, CO', + 1970874 => 'Delta, CO', + 1970876 => 'Silt, CO', + 1970878 => 'Meeker, CO', + 1970879 => 'Steamboat Spgs, CO', + 1970882 => 'Dolores, CO', + 1970884 => 'Bayfield, CO', + 1970887 => 'Granby, CO', + 1970903 => 'Durango, CO', + 1970920 => 'Aspen, CO', + 1970923 => 'Snowmass Village, CO', + 1970925 => 'Aspen, CO', + 1970926 => 'Edwards, CO', + 1970927 => 'Basalt, CO', + 1970928 => 'Glenwood Springs, CO', + 1970944 => 'Lake City, CO', + 1970945 => 'Glenwood Springs, CO', + 1970946 => 'Durango, CO', + 1970947 => 'Glenwood Springs, CO', + 1970949 => 'Avon, CO', + 1970962 => 'Loveland, CO', + 1970963 => 'Carbondale, CO', + 1970984 => 'New Castle, CO', + 1971 => 'Oregon', + 1971255 => 'Portland, OR', + 1971279 => 'Portland, OR', + 1972 => 'Texas', + 1972202 => 'Plano, TX', + 1972205 => 'Garland, TX', + 1972206 => 'Grand Prairie, TX', + 1972208 => 'Plano, TX', + 1972216 => 'Mesquite, TX', + 1972218 => 'Lancaster, TX', + 1972219 => 'Lewisville, TX', + 1972221 => 'Lewisville, TX', + 1972222 => 'Mesquite, TX', + 1972223 => 'DeSoto, TX', + 1972225 => 'Hutchins, TX', + 1972227 => 'Lancaster, TX', + 1972230 => 'DeSoto, TX', + 1972231 => 'Richardson, TX', + 1972233 => 'Dallas, TX', + 1972234 => 'Richardson, TX', + 1972235 => 'Richardson, TX', + 1972237 => 'Grand Prairie, TX', + 1972238 => 'Richardson, TX', + 1972239 => 'Dallas, TX', + 1972240 => 'Garland, TX', + 1972241 => 'Dallas, TX', + 1972242 => 'Carrollton, TX', + 1972243 => 'Dallas, TX', + 1972245 => 'Carrollton, TX', + 1972247 => 'Dallas, TX', + 1972248 => 'Dallas, TX', + 1972252 => 'Irving, TX', + 1972253 => 'Irving, TX', + 1972254 => 'Irving, TX', + 1972255 => 'Irving, TX', + 1972256 => 'Irving, TX', + 1972257 => 'Irving, TX', + 1972258 => 'Irving, TX', + 1972259 => 'Irving, TX', + 1972262 => 'Grand Prairie, TX', + 1972263 => 'Grand Prairie, TX', + 1972264 => 'Grand Prairie, TX', + 1972266 => 'Grand Prairie, TX', + 1972270 => 'Mesquite, TX', + 1972271 => 'Garland, TX', + 1972272 => 'Garland, TX', + 1972274 => 'DeSoto, TX', + 1972276 => 'Garland, TX', + 1972278 => 'Garland, TX', + 1972279 => 'Mesquite, TX', + 1972285 => 'Mesquite, TX', + 1972287 => 'Seagoville, TX', + 1972288 => 'Mesquite, TX', + 1972289 => 'Mesquite, TX', + 1972291 => 'Cedar Hill, TX', + 1972293 => 'Cedar Hill, TX', + 1972296 => 'Duncanville, TX', + 1972298 => 'Duncanville, TX', + 1972299 => 'Cedar Hill, TX', + 1972303 => 'Garland, TX', + 1972304 => 'Coppell, TX', + 1972312 => 'Plano, TX', + 1972313 => 'Irving, TX', + 1972315 => 'Lewisville, TX', + 1972316 => 'Lewisville, TX', + 1972317 => 'Lewisville, TX', + 1972323 => 'Carrollton, TX', + 1972329 => 'Mesquite, TX', + 1972335 => 'Frisco, TX', + 1972346 => 'Prosper, TX', + 1972347 => 'Prosper, TX', + 1972352 => 'Grand Prairie, TX', + 1972353 => 'Lewisville, TX', + 1972355 => 'Flower Mound, TX', + 1972359 => 'Allen, TX', + 1972369 => 'McKinney, TX', + 1972370 => 'The Colony, TX', + 1972377 => 'Frisco, TX', + 1972378 => 'Plano, TX', + 1972382 => 'Celina, TX', + 1972385 => 'Dallas, TX', + 1972386 => 'Dallas, TX', + 1972387 => 'Dallas, TX', + 1972390 => 'Allen, TX', + 1972392 => 'Dallas, TX', + 1972393 => 'Coppell, TX', + 1972394 => 'Carrollton, TX', + 1972395 => 'Carrollton, TX', + 1972396 => 'Allen, TX', + 1972398 => 'Plano, TX', + 1972401 => 'Irving, TX', + 1972402 => 'Irving, TX', + 1972403 => 'Plano, TX', + 1972404 => 'Dallas, TX', + 1972406 => 'Dallas, TX', + 1972407 => 'Dallas, TX', + 1972409 => 'Irving, TX', + 1972412 => 'Rowlett, TX', + 1972414 => 'Garland, TX', + 1972416 => 'Carrollton, TX', + 1972417 => 'Carrollton, TX', + 1972418 => 'Carrollton, TX', + 1972419 => 'Dallas, TX', + 1972420 => 'Lewisville, TX', + 1972422 => 'Plano, TX', + 1972423 => 'Plano, TX', + 1972424 => 'Plano, TX', + 1972429 => 'Wylie, TX', + 1972434 => 'Lewisville, TX', + 1972436 => 'Lewisville, TX', + 1972437 => 'Richardson, TX', + 1972438 => 'Irving, TX', + 1972442 => 'Wylie, TX', + 1972445 => 'Irving, TX', + 1972446 => 'Carrollton, TX', + 1972450 => 'Dallas, TX', + 1972456 => 'Dallas, TX', + 1972458 => 'Dallas, TX', + 1972459 => 'Lewisville, TX', + 1972462 => 'Coppell, TX', + 1972463 => 'Rowlett, TX', + 1972466 => 'Carrollton, TX', + 1972470 => 'Richardson, TX', + 1972473 => 'Plano, TX', + 1972475 => 'Rowlett, TX', + 1972478 => 'Carrollton, TX', + 1972479 => 'Richardson, TX', + 1972481 => 'Dallas, TX', + 1972484 => 'Dallas, TX', + 1972485 => 'Garland, TX', + 1972487 => 'Garland, TX', + 1972488 => 'Dallas, TX', + 1972490 => 'Dallas, TX', + 1972491 => 'Plano, TX', + 1972492 => 'Carrollton, TX', + 1972494 => 'Garland, TX', + 1972495 => 'Garland, TX', + 1972496 => 'Garland, TX', + 1972501 => 'Irving, TX', + 1972503 => 'Dallas, TX', + 1972509 => 'Plano, TX', + 1972516 => 'Plano, TX', + 1972517 => 'Plano, TX', + 1972519 => 'Plano, TX', + 1972522 => 'Grand Prairie, TX', + 1972524 => 'Terrell, TX', + 1972527 => 'Plano, TX', + 1972529 => 'McKinney, TX', + 1972530 => 'Garland, TX', + 1972539 => 'Flower Mound, TX', + 1972540 => 'McKinney, TX', + 1972542 => 'McKinney, TX', + 1972544 => 'Ferris, TX', + 1972547 => 'McKinney, TX', + 1972548 => 'McKinney, TX', + 1972550 => 'Irving, TX', + 1972551 => 'Terrell, TX', + 1972552 => 'Forney, TX', + 1972554 => 'Irving, TX', + 1972562 => 'McKinney, TX', + 1972563 => 'Terrell, TX', + 1972564 => 'Forney, TX', + 1972566 => 'Dallas, TX', + 1972569 => 'McKinney, TX', + 1972570 => 'Irving, TX', + 1972574 => 'Dallas, TX', + 1972576 => 'Red Oak, TX', + 1972578 => 'Plano, TX', + 1972579 => 'Irving, TX', + 1972580 => 'Irving, TX', + 1972594 => 'Irving, TX', + 1972596 => 'Plano, TX', + 1972599 => 'Plano, TX', + 1972600 => 'Irving, TX', + 1972602 => 'Grand Prairie, TX', + 1972606 => 'Grand Prairie, TX', + 1972608 => 'Plano, TX', + 1972612 => 'Plano, TX', + 1972613 => 'Mesquite, TX', + 1972617 => 'Red Oak, TX', + 1972618 => 'Plano, TX', + 1972620 => 'Dallas, TX', + 1972623 => 'Grand Prairie, TX', + 1972625 => 'The Colony, TX', + 1972633 => 'Plano, TX', + 1972635 => 'Royse City, TX', + 1972636 => 'Royse City, TX', + 1972641 => 'Grand Prairie, TX', + 1972642 => 'Grand Prairie, TX', + 1972644 => 'Richardson, TX', + 1972647 => 'Grand Prairie, TX', + 1972660 => 'Grand Prairie, TX', + 1972661 => 'Dallas, TX', + 1972663 => 'Dallas, TX', + 1972664 => 'Richardson, TX', + 1972665 => 'Plano, TX', + 1972668 => 'Frisco, TX', + 1972669 => 'Richardson, TX', + 1972671 => 'Richardson, TX', + 1972675 => 'Garland, TX', + 1972678 => 'Allen, TX', + 1972680 => 'Richardson, TX', + 1972681 => 'Mesquite, TX', + 1972682 => 'Mesquite, TX', + 1972686 => 'Mesquite, TX', + 1972690 => 'Richardson, TX', + 1972691 => 'Flower Mound, TX', + 1972698 => 'Mesquite, TX', + 1972699 => 'Richardson, TX', + 1972701 => 'Dallas, TX', + 1972702 => 'Dallas, TX', + 1972712 => 'Frisco, TX', + 1972717 => 'Irving, TX', + 1972719 => 'Irving, TX', + 1972721 => 'Irving, TX', + 1972722 => 'Rockwall, TX', + 1972723 => 'Midlothian, TX', + 1972724 => 'Flower Mound, TX', + 1972726 => 'Dallas, TX', + 1972727 => 'Allen, TX', + 1972732 => 'Dallas, TX', + 1972733 => 'Dallas, TX', + 1972736 => 'Princeton, TX', + 1972744 => 'Richardson, TX', + 1972745 => 'Coppell, TX', + 1972747 => 'Allen, TX', + 1972758 => 'Plano, TX', + 1972769 => 'Plano, TX', + 1972770 => 'Dallas, TX', + 1972771 => 'Rockwall, TX', + 1972772 => 'Rockwall, TX', + 1972774 => 'Dallas, TX', + 1972775 => 'Midlothian, TX', + 1972780 => 'Duncanville, TX', + 1972781 => 'Plano, TX', + 1972782 => 'Farmersville, TX', + 1972783 => 'Richardson, TX', + 1972784 => 'Farmersville, TX', + 1972788 => 'Dallas, TX', + 1972789 => 'Dallas, TX', + 1972790 => 'Irving, TX', + 1972801 => 'Plano, TX', + 1972837 => 'Melissa, TX', + 1972840 => 'Garland, TX', + 1972851 => 'Dallas, TX', + 1972855 => 'Dallas, TX', + 1972864 => 'Garland, TX', + 1972867 => 'Plano, TX', + 1972870 => 'Irving, TX', + 1972871 => 'Irving, TX', + 1972874 => 'Flower Mound, TX', + 1972875 => 'Ennis, TX', + 1972878 => 'Ennis, TX', + 1972881 => 'Plano, TX', + 1972889 => 'Richardson, TX', + 1972906 => 'Lewisville, TX', + 1972907 => 'Richardson, TX', + 1972910 => 'Irving, TX', + 1972918 => 'Richardson, TX', + 1972923 => 'Waxahachie, TX', + 1972924 => 'Anna, TX', + 1972926 => 'Garland, TX', + 1972929 => 'Irving, TX', + 1972932 => 'Kaufman, TX', + 1972934 => 'Dallas, TX', + 1972935 => 'Waxahachie, TX', + 1972937 => 'Waxahachie, TX', + 1972938 => 'Waxahachie, TX', + 1972939 => 'Carrollton, TX', + 1972941 => 'Plano, TX', + 1972943 => 'Plano, TX', + 1972960 => 'Dallas, TX', + 1972961 => 'Rockwall, TX', + 1972962 => 'Kaufman, TX', + 1972964 => 'Plano, TX', + 1972980 => 'Dallas, TX', + 1972981 => 'Plano, TX', + 1972984 => 'McKinney, TX', + 1972985 => 'Plano, TX', + 1972986 => 'Irving, TX', + 1972988 => 'Grand Prairie, TX', + 1972991 => 'Dallas, TX', + 1973 => 'New Jersey', + 1973227 => 'Fairfield, NJ', + 1973230 => 'Newark, NJ', + 1973233 => 'Montclair, NJ', + 1973235 => 'Nutley, NJ', + 1973239 => 'Verona, NJ', + 1973242 => 'Newark, NJ', + 1973243 => 'West Orange, NJ', + 1973244 => 'Fairfield, NJ', + 1973247 => 'Paterson, NJ', + 1973253 => 'Clifton, NJ', + 1973259 => 'Bloomfield, NJ', + 1973266 => 'East Orange, NJ', + 1973267 => 'Morristown, NJ', + 1973268 => 'Newark, NJ', + 1973273 => 'Newark, NJ', + 1973274 => 'Newark, NJ', + 1973276 => 'Fairfield, NJ', + 1973278 => 'Paterson, NJ', + 1973279 => 'Paterson, NJ', + 1973284 => 'Nutley, NJ', + 1973285 => 'Morristown, NJ', + 1973292 => 'Morristown, NJ', + 1973293 => 'Montague Township, NJ', + 1973300 => 'Newton, NJ', + 1973301 => 'Florham Park, NJ', + 1973305 => 'Wayne, NJ', + 1973321 => 'Paterson, NJ', + 1973322 => 'Livingston, NJ', + 1973324 => 'West Orange, NJ', + 1973325 => 'West Orange, NJ', + 1973326 => 'Morristown, NJ', + 1973333 => 'Paterson, NJ', + 1973338 => 'Bloomfield, NJ', + 1973340 => 'Clifton, NJ', + 1973341 => 'Paterson, NJ', + 1973344 => 'Newark, NJ', + 1973345 => 'Paterson, NJ', + 1973350 => 'Newark, NJ', + 1973353 => 'Newark, NJ', + 1973357 => 'Paterson, NJ', + 1973365 => 'Passaic, NJ', + 1973371 => 'Irvington, NJ', + 1973372 => 'Irvington, NJ', + 1973373 => 'Irvington, NJ', + 1973374 => 'Irvington, NJ', + 1973375 => 'Irvington, NJ', + 1973383 => 'Newton, NJ', + 1973395 => 'East Orange, NJ', + 1973399 => 'Irvington, NJ', + 1973414 => 'East Orange, NJ', + 1973416 => 'Irvington, NJ', + 1973422 => 'Livingston, NJ', + 1973423 => 'Hawthorne, NJ', + 1973425 => 'Morristown, NJ', + 1973427 => 'Hawthorne, NJ', + 1973429 => 'Bloomfield, NJ', + 1973439 => 'Fairfield, NJ', + 1973450 => 'Belleville, NJ', + 1973455 => 'Morristown, NJ', + 1973465 => 'Newark, NJ', + 1973466 => 'Newark, NJ', + 1973481 => 'Newark, NJ', + 1973482 => 'Newark, NJ', + 1973483 => 'Newark, NJ', + 1973484 => 'Newark, NJ', + 1973485 => 'Newark, NJ', + 1973491 => 'Newark, NJ', + 1973509 => 'Montclair, NJ', + 1973522 => 'Newark, NJ', + 1973523 => 'Paterson, NJ', + 1973533 => 'Livingston, NJ', + 1973535 => 'Livingston, NJ', + 1973538 => 'Morristown, NJ', + 1973539 => 'Morristown, NJ', + 1973540 => 'Morristown, NJ', + 1973542 => 'Nutley, NJ', + 1973543 => 'Mendham, NJ', + 1973546 => 'Clifton, NJ', + 1973569 => 'Paterson, NJ', + 1973575 => 'Fairfield, NJ', + 1973579 => 'Newton, NJ', + 1973589 => 'Newark, NJ', + 1973593 => 'Madison, NJ', + 1973594 => 'Clifton, NJ', + 1973596 => 'Newark, NJ', + 1973597 => 'Livingston, NJ', + 1973605 => 'Morristown, NJ', + 1973621 => 'Newark, NJ', + 1973622 => 'Newark, NJ', + 1973623 => 'Newark, NJ', + 1973624 => 'Newark, NJ', + 1973625 => 'Denville, NJ', + 1973628 => 'Wayne, NJ', + 1973633 => 'Wayne, NJ', + 1973635 => 'Chatham, NJ', + 1973642 => 'Newark, NJ', + 1973643 => 'Newark, NJ', + 1973644 => 'Morristown, NJ', + 1973645 => 'Newark, NJ', + 1973648 => 'Newark, NJ', + 1973653 => 'Paterson, NJ', + 1973655 => 'Montclair, NJ', + 1973656 => 'Morristown, NJ', + 1973660 => 'Florham Park, NJ', + 1973661 => 'Nutley, NJ', + 1973663 => 'Lake Hopatcong, NJ', + 1973667 => 'Nutley, NJ', + 1973669 => 'West Orange, NJ', + 1973672 => 'East Orange, NJ', + 1973673 => 'East Orange, NJ', + 1973674 => 'East Orange, NJ', + 1973675 => 'East Orange, NJ', + 1973676 => 'East Orange, NJ', + 1973678 => 'East Orange, NJ', + 1973680 => 'Bloomfield, NJ', + 1973684 => 'Paterson, NJ', + 1973686 => 'Wayne, NJ', + 1973689 => 'Paterson, NJ', + 1973694 => 'Wayne, NJ', + 1973696 => 'Wayne, NJ', + 1973701 => 'Chatham, NJ', + 1973702 => 'Sussex, NJ', + 1973706 => 'Wayne, NJ', + 1973726 => 'Sparta Township, NJ', + 1973728 => 'West Milford, NJ', + 1973729 => 'Sparta Township, NJ', + 1973731 => 'West Orange, NJ', + 1973732 => 'Newark, NJ', + 1973733 => 'Newark, NJ', + 1973736 => 'West Orange, NJ', + 1973740 => 'Livingston, NJ', + 1973742 => 'Paterson, NJ', + 1973743 => 'Bloomfield, NJ', + 1973744 => 'Montclair, NJ', + 1973746 => 'Montclair, NJ', + 1973748 => 'Bloomfield, NJ', + 1973751 => 'Belleville, NJ', + 1973754 => 'Paterson, NJ', + 1973759 => 'Belleville, NJ', + 1973761 => 'Maplewood, NJ', + 1973764 => 'Vernon Township, NJ', + 1973772 => 'Clifton, NJ', + 1973782 => 'Paterson, NJ', + 1973783 => 'Montclair, NJ', + 1973786 => 'Andover, NJ', + 1973808 => 'Fairfield, NJ', + 1973817 => 'Newark, NJ', + 1973824 => 'Newark, NJ', + 1973829 => 'Morristown, NJ', + 1973844 => 'Belleville, NJ', + 1973853 => 'Hewitt, NJ', + 1973857 => 'Verona, NJ', + 1973872 => 'Wayne, NJ', + 1973875 => 'Sussex, NJ', + 1973877 => 'Newark, NJ', + 1973881 => 'Paterson, NJ', + 1973882 => 'Fairfield, NJ', + 1973889 => 'Morristown, NJ', + 1973895 => 'Randolph, NJ', + 1973898 => 'Morristown, NJ', + 1973923 => 'Newark, NJ', + 1973925 => 'Paterson, NJ', + 1973926 => 'Newark, NJ', + 1973940 => 'Newton, NJ', + 1973948 => 'Branchville, NJ', + 1973962 => 'Ringwood, NJ', + 1973971 => 'Morristown, NJ', + 1973972 => 'Newark, NJ', + 1973977 => 'Paterson, NJ', + 1973984 => 'Morristown, NJ', + 1973991 => 'Newark, NJ', + 1973992 => 'Livingston, NJ', + 1973993 => 'Morristown, NJ', + 1973994 => 'Livingston, NJ', + 1978 => 'Massachusetts', + 1978208 => 'Lawrence, MA', + 1978232 => 'Beverly, MA', + 1978244 => 'Chelmsford, MA', + 1978249 => 'Athol, MA', + 1978250 => 'Chelmsford, MA', + 1978251 => 'North Chelmsford, MA', + 1978256 => 'Chelmsford, MA', + 1978258 => 'Lawrence, MA', + 1978263 => 'Acton, MA', + 1978264 => 'Acton, MA', + 1978266 => 'Acton, MA', + 1978275 => 'Lowell, MA', + 1978276 => 'North Reading, MA', + 1978281 => 'Gloucester, MA', + 1978282 => 'Gloucester, MA', + 1978283 => 'Gloucester, MA', + 1978287 => 'Concord, MA', + 1978297 => 'Winchendon, MA', + 1978318 => 'Concord, MA', + 1978327 => 'Lawrence, MA', + 1978342 => 'Fitchburg, MA', + 1978343 => 'Fitchburg, MA', + 1978345 => 'Fitchburg, MA', + 1978346 => 'Merrimac, MA', + 1978352 => 'Georgetown, MA', + 1978354 => 'Salem, MA', + 1978355 => 'Barre, MA', + 1978356 => 'Ipswich, MA', + 1978363 => 'West Newbury, MA', + 1978365 => 'Clinton, MA', + 1978368 => 'Clinton, MA', + 1978369 => 'Concord, MA', + 1978371 => 'Concord, MA', + 1978372 => 'Haverhill, MA', + 1978373 => 'Haverhill, MA', + 1978374 => 'Haverhill, MA', + 1978386 => 'Ashby, MA', + 1978388 => 'Amesbury, MA', + 1978392 => 'Westford, MA', + 1978422 => 'Sterling, MA', + 1978425 => 'Shirley, MA', + 1978433 => 'Pepperell, MA', + 1978440 => 'Sudbury, MA', + 1978441 => 'Lowell, MA', + 1978443 => 'Sudbury, MA', + 1978446 => 'Lowell, MA', + 1978448 => 'Groton, MA', + 1978452 => 'Lowell, MA', + 1978453 => 'Lowell, MA', + 1978454 => 'Lowell, MA', + 1978456 => 'Harvard, MA', + 1978458 => 'Lowell, MA', + 1978459 => 'Lowell, MA', + 1978461 => 'Maynard, MA', + 1978462 => 'Newburyport, MA', + 1978463 => 'Newburyport, MA', + 1978464 => 'Princeton, MA', + 1978465 => 'Newburyport, MA', + 1978466 => 'Leominster, MA', + 1978468 => 'South Hamilton, MA', + 1978470 => 'Andover, MA', + 1978474 => 'Andover, MA', + 1978475 => 'Andover, MA', + 1978486 => 'Littleton, MA', + 1978499 => 'Newburyport, MA', + 1978521 => 'Haverhill, MA', + 1978524 => 'Beverly, MA', + 1978525 => 'Gloucester, MA', + 1978526 => 'Manchester, MA', + 1978531 => 'Peabody, MA', + 1978532 => 'Peabody, MA', + 1978534 => 'Leominster, MA', + 1978535 => 'Peabody, MA', + 1978536 => 'Peabody, MA', + 1978537 => 'Leominster, MA', + 1978538 => 'Peabody, MA', + 1978544 => 'Orange, MA', + 1978546 => 'Rockport, MA', + 1978556 => 'Haverhill, MA', + 1978557 => 'Lawrence, MA', + 1978562 => 'Hudson, MA', + 1978567 => 'Hudson, MA', + 1978568 => 'Hudson, MA', + 1978582 => 'Lunenburg, MA', + 1978594 => 'Salem, MA', + 1978597 => 'Townsend, MA', + 1978630 => 'Gardner, MA', + 1978632 => 'Gardner, MA', + 1978635 => 'Acton, MA', + 1978640 => 'Tewksbury, MA', + 1978646 => 'Danvers, MA', + 1978649 => 'Tyngsborough, MA', + 1978657 => 'Wilmington, MA', + 1978658 => 'Wilmington, MA', + 1978663 => 'Billerica, MA', + 1978664 => 'North Reading, MA', + 1978667 => 'Billerica, MA', + 1978670 => 'Billerica, MA', + 1978671 => 'Billerica, MA', + 1978692 => 'Westford, MA', + 1978735 => 'Lowell, MA', + 1978739 => 'Danvers, MA', + 1978740 => 'Salem, MA', + 1978741 => 'Salem, MA', + 1978744 => 'Salem, MA', + 1978745 => 'Salem, MA', + 1978749 => 'Andover, MA', + 1978750 => 'Danvers, MA', + 1978762 => 'Danvers, MA', + 1978768 => 'Essex, MA', + 1978772 => 'Ayer, MA', + 1978774 => 'Danvers, MA', + 1978777 => 'Danvers, MA', + 1978779 => 'Bolton, MA', + 1978827 => 'Ashburnham, MA', + 1978834 => 'Amesbury, MA', + 1978838 => 'Berlin, MA', + 1978840 => 'Leominster, MA', + 1978851 => 'Tewksbury, MA', + 1978858 => 'Tewksbury, MA', + 1978874 => 'Westminster, MA', + 1978887 => 'Topsfield, MA', + 1978897 => 'Maynard, MA', + 1978921 => 'Beverly, MA', + 1978922 => 'Beverly, MA', + 1978927 => 'Beverly, MA', + 1978928 => 'Hubbardston, MA', + 1978934 => 'Lowell, MA', + 1978937 => 'Lowell, MA', + 1978939 => 'Templeton, MA', + 1978948 => 'Rowley, MA', + 1978952 => 'Littleton, MA', + 1978957 => 'Dracut, MA', + 1978969 => 'Beverly, MA', + 1978970 => 'Lowell, MA', + 1978977 => 'Peabody, MA', + 1978988 => 'Wilmington, MA', + 1979 => 'Texas', + 1979209 => 'Bryan, TX', + 1979233 => 'Freeport, TX', + 1979234 => 'Eagle Lake, TX', + 1979239 => 'Freeport, TX', + 1979242 => 'La Grange, TX', + 1979244 => 'Bay City, TX', + 1979245 => 'Bay City, TX', + 1979251 => 'Brenham, TX', + 1979265 => 'Clute, TX', + 1979272 => 'Caldwell, TX', + 1979277 => 'Brenham, TX', + 1979279 => 'Hearne, TX', + 1979282 => 'Wharton, TX', + 1979285 => 'Lake Jackson, TX', + 1979297 => 'Lake Jackson, TX', + 1979299 => 'Lake Jackson, TX', + 1979323 => 'Bay City, TX', + 1979335 => 'East Bernard, TX', + 1979345 => 'West Columbia, TX', + 1979421 => 'Brenham, TX', + 1979480 => 'Lake Jackson, TX', + 1979532 => 'Wharton, TX', + 1979542 => 'Giddings, TX', + 1979543 => 'El Campo, TX', + 1979548 => 'Sweeny, TX', + 1979567 => 'Caldwell, TX', + 1979578 => 'El Campo, TX', + 1979596 => 'Somerville, TX', + 1979690 => 'College Station, TX', + 1979691 => 'College Station, TX', + 1979693 => 'College Station, TX', + 1979694 => 'College Station, TX', + 1979695 => 'College Station, TX', + 1979696 => 'College Station, TX', + 1979703 => 'Bryan, TX', + 1979725 => 'Weimar, TX', + 1979731 => 'Bryan, TX', + 1979732 => 'Columbus, TX', + 1979733 => 'Columbus, TX', + 1979743 => 'Schulenburg, TX', + 1979764 => 'College Station, TX', + 1979773 => 'Lexington, TX', + 1979774 => 'Bryan, TX', + 1979775 => 'Bryan, TX', + 1979776 => 'Bryan, TX', + 1979778 => 'Bryan, TX', + 1979779 => 'Bryan, TX', + 1979793 => 'Needville, TX', + 1979798 => 'Brazoria, TX', + 1979822 => 'Bryan, TX', + 1979823 => 'Bryan, TX', + 1979826 => 'Hempstead, TX', + 1979828 => 'Franklin, TX', + 1979830 => 'Brenham, TX', + 1979836 => 'Brenham, TX', + 1979845 => 'College Station, TX', + 1979848 => 'Angleton, TX', + 1979849 => 'Angleton, TX', + 1979864 => 'Angleton, TX', + 1979865 => 'Bellville, TX', + 1979885 => 'Sealy, TX', + 1979968 => 'La Grange, TX', + 1980 => 'North Carolina', + 1980207 => 'Charlotte, NC', + 1980224 => 'Charlotte, NC', + 1980343 => 'Charlotte, NC', + 1980487 => 'Shelby, NC', + 1980819 => 'Charlotte, NC', + 1984 => 'North Carolina', + 1985 => 'Louisiana', + 1985223 => 'Houma, LA', + 1985229 => 'Kentwood, LA', + 1985230 => 'Hammond, LA', + 1985246 => 'Covington, LA', + 1985249 => 'Covington, LA', + 1985252 => 'Pierre Part, LA', + 1985262 => 'Houma, LA', + 1985288 => 'Slidell, LA', + 1985325 => 'Cut Off, LA', + 1985327 => 'Covington, LA', + 1985331 => 'Luling, LA', + 1985340 => 'Hammond, LA', + 1985345 => 'Hammond, LA', + 1985359 => 'LaPlace, LA', + 1985369 => 'Napoleonville, LA', + 1985370 => 'Ponchatoula, LA', + 1985384 => 'Morgan City, LA', + 1985385 => 'Morgan City, LA', + 1985386 => 'Ponchatoula, LA', + 1985395 => 'Patterson, LA', + 1985396 => 'Golden Meadow, LA', + 1985419 => 'Hammond, LA', + 1985429 => 'Hammond, LA', + 1985446 => 'Thibodaux, LA', + 1985447 => 'Thibodaux, LA', + 1985448 => 'Thibodaux, LA', + 1985449 => 'Thibodaux, LA', + 1985475 => 'Golden Meadow, LA', + 1985493 => 'Thibodaux, LA', + 1985532 => 'Lockport, LA', + 1985536 => 'Reserve, LA', + 1985537 => 'Raceland, LA', + 1985542 => 'Hammond, LA', + 1985543 => 'Hammond, LA', + 1985580 => 'Houma, LA', + 1985624 => 'Mandeville, LA', + 1985626 => 'Mandeville, LA', + 1985632 => 'Cut Off, LA', + 1985639 => 'Slidell, LA', + 1985641 => 'Slidell, LA', + 1985643 => 'Slidell, LA', + 1985645 => 'Slidell, LA', + 1985646 => 'Slidell, LA', + 1985649 => 'Slidell, LA', + 1985651 => 'LaPlace, LA', + 1985652 => 'LaPlace, LA', + 1985662 => 'Hammond, LA', + 1985674 => 'Mandeville, LA', + 1985690 => 'Slidell, LA', + 1985693 => 'Larose, LA', + 1985727 => 'Mandeville, LA', + 1985732 => 'Bogalusa, LA', + 1985735 => 'Bogalusa, LA', + 1985747 => 'Amite City, LA', + 1985748 => 'Amite City, LA', + 1985764 => 'Destrehan, LA', + 1985778 => 'Mandeville, LA', + 1985781 => 'Slidell, LA', + 1985783 => 'Hahnville, LA', + 1985785 => 'Luling, LA', + 1985792 => 'Madisonville, LA', + 1985795 => 'Franklinton, LA', + 1985796 => 'Folsom, LA', + 1985809 => 'Covington, LA', + 1985839 => 'Franklinton, LA', + 1985845 => 'Madisonville, LA', + 1985847 => 'Slidell, LA', + 1985851 => 'Houma, LA', + 1985853 => 'Houma, LA', + 1985857 => 'Houma, LA', + 1985863 => 'Pearl River, LA', + 1985867 => 'Covington, LA', + 1985868 => 'Houma, LA', + 1985871 => 'Covington, LA', + 1985872 => 'Houma, LA', + 1985873 => 'Houma, LA', + 1985875 => 'Covington, LA', + 1985876 => 'Houma, LA', + 1985878 => 'Independence, LA', + 1985879 => 'Houma, LA', + 1985882 => 'Lacombe, LA', + 1985892 => 'Covington, LA', + 1985893 => 'Covington, LA', + 1985898 => 'Covington, LA', + 1989 => 'Michigan', + 1989224 => 'St. Johns, MI', + 1989227 => 'St. Johns, MI', + 1989246 => 'Gladwin, MI', + 1989249 => 'Saginaw, MI', + 1989269 => 'Bad Axe, MI', + 1989275 => 'Roscommon, MI', + 1989288 => 'Durand, MI', + 1989317 => 'Mount Pleasant, MI', + 1989343 => 'West Branch, MI', + 1989345 => 'West Branch, MI', + 1989348 => 'Grayling, MI', + 1989352 => 'Lakeview, MI', + 1989354 => 'Alpena, MI', + 1989356 => 'Alpena, MI', + 1989358 => 'Alpena, MI', + 1989362 => 'Tawas City, MI', + 1989366 => 'Houghton Lake, MI', + 1989386 => 'Clare, MI', + 1989389 => 'Saint Helen, MI', + 1989401 => 'Saginaw, MI', + 1989422 => 'Houghton Lake, MI', + 1989426 => 'Gladwin, MI', + 1989427 => 'Edmore, MI', + 1989435 => 'Beaverton, MI', + 1989453 => 'Pigeon, MI', + 1989463 => 'Alma, MI', + 1989465 => 'Coleman, MI', + 1989466 => 'Alma, MI', + 1989471 => 'Ossineke, MI', + 1989479 => 'Harbor Beach, MI', + 1989486 => 'Midland, MI', + 1989496 => 'Midland, MI', + 1989497 => 'Saginaw, MI', + 1989539 => 'Harrison, MI', + 1989583 => 'Saginaw, MI', + 1989584 => 'Carson City, MI', + 1989588 => 'Farwell, MI', + 1989593 => 'Fowler, MI', + 1989624 => 'Birch Run, MI', + 1989631 => 'Midland, MI', + 1989633 => 'Midland, MI', + 1989635 => 'Marlette, MI', + 1989642 => 'Hemlock, MI', + 1989643 => 'Merrill, MI', + 1989644 => 'Weidman, MI', + 1989652 => 'Frankenmuth, MI', + 1989658 => 'Ubly, MI', + 1989662 => 'Auburn, MI', + 1989667 => 'Bay City, MI', + 1989671 => 'Bay City, MI', + 1989672 => 'Caro, MI', + 1989673 => 'Caro, MI', + 1989681 => 'St. Louis, MI', + 1989684 => 'Bay City, MI', + 1989685 => 'Rose City, MI', + 1989686 => 'Bay City, MI', + 1989687 => 'Sanford, MI', + 1989695 => 'Freeland, MI', + 1989697 => 'Linwood, MI', + 1989705 => 'Gaylord, MI', + 1989723 => 'Owosso, MI', + 1989724 => 'Harrisville, MI', + 1989725 => 'Owosso, MI', + 1989727 => 'Hubbard Lake, MI', + 1989728 => 'Hale, MI', + 1989729 => 'Owosso, MI', + 1989731 => 'Gaylord, MI', + 1989732 => 'Gaylord, MI', + 1989733 => 'Onaway, MI', + 1989734 => 'Rogers City, MI', + 1989736 => 'Lincoln, MI', + 1989738 => 'Port Austin, MI', + 1989739 => 'Oscoda, MI', + 1989742 => 'Hillman, MI', + 1989743 => 'Corunna, MI', + 1989752 => 'Saginaw, MI', + 1989753 => 'Saginaw, MI', + 1989754 => 'Saginaw, MI', + 1989755 => 'Saginaw, MI', + 1989759 => 'Saginaw, MI', + 1989772 => 'Mount Pleasant, MI', + 1989773 => 'Mount Pleasant, MI', + 1989775 => 'Mount Pleasant, MI', + 1989779 => 'Mount Pleasant, MI', + 1989781 => 'Saginaw, MI', + 1989785 => 'Atlanta, MI', + 1989786 => 'Lewiston, MI', + 1989790 => 'Saginaw, MI', + 1989791 => 'Saginaw, MI', + 1989792 => 'Saginaw, MI', + 1989793 => 'Saginaw, MI', + 1989797 => 'Saginaw, MI', + 1989799 => 'Saginaw, MI', + 1989821 => 'Roscommon, MI', + 1989823 => 'Vassar, MI', + 1989826 => 'Mio, MI', + 1989828 => 'Shepherd, MI', + 1989831 => 'Stanton, MI', + 1989832 => 'Midland, MI', + 1989834 => 'Ovid, MI', + 1989835 => 'Midland, MI', + 1989837 => 'Midland, MI', + 1989839 => 'Midland, MI', + 1989842 => 'Breckenridge, MI', + 1989843 => 'Mayville, MI', + 1989845 => 'Chesaning, MI', + 1989846 => 'Standish, MI', + 1989848 => 'Fairview, MI', + 1989856 => 'Caseville, MI', + 1989862 => 'Elsie, MI', + 1989865 => 'St. Charles, MI', + 1989868 => 'Reese, MI', + 1989871 => 'Millington, MI', + 1989872 => 'Cass City, MI', + 1989873 => 'Prescott, MI', + 1989875 => 'Ithaca, MI', + 1989876 => 'Au Gres, MI', + 1989879 => 'Pinconning, MI', + 1989883 => 'Sebewaing, MI', + 1989891 => 'Bay City, MI', + 1989892 => 'Bay City, MI', + 1989893 => 'Bay City, MI', + 1989894 => 'Bay City, MI', + 1989895 => 'Bay City, MI', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1901.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1901.php deleted file mode 100644 index e403ae50b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1901.php +++ /dev/null @@ -1,145 +0,0 @@ - 'Tennessee', - 1901213 => 'Memphis, TN', - 1901226 => 'Memphis, TN', - 1901252 => 'Memphis, TN', - 1901259 => 'Memphis, TN', - 1901260 => 'Memphis, TN', - 1901266 => 'Memphis, TN', - 1901271 => 'Memphis, TN', - 1901272 => 'Memphis, TN', - 1901273 => 'Memphis, TN', - 1901274 => 'Memphis, TN', - 1901276 => 'Memphis, TN', - 1901278 => 'Memphis, TN', - 1901287 => 'Memphis, TN', - 1901308 => 'Memphis, TN', - 1901312 => 'Memphis, TN', - 1901320 => 'Memphis, TN', - 1901322 => 'Memphis, TN', - 1901323 => 'Memphis, TN', - 1901324 => 'Memphis, TN', - 1901327 => 'Memphis, TN', - 1901332 => 'Memphis, TN', - 1901345 => 'Memphis, TN', - 1901346 => 'Memphis, TN', - 1901348 => 'Memphis, TN', - 1901353 => 'Memphis, TN', - 1901357 => 'Memphis, TN', - 1901358 => 'Memphis, TN', - 1901360 => 'Memphis, TN', - 1901362 => 'Memphis, TN', - 1901363 => 'Memphis, TN', - 1901365 => 'Memphis, TN', - 1901366 => 'Memphis, TN', - 1901367 => 'Memphis, TN', - 1901368 => 'Memphis, TN', - 1901369 => 'Memphis, TN', - 1901371 => 'Memphis, TN', - 1901372 => 'Memphis, TN', - 1901373 => 'Memphis, TN', - 1901375 => 'Memphis, TN', - 1901377 => 'Memphis, TN', - 1901379 => 'Memphis, TN', - 1901380 => 'Memphis, TN', - 1901381 => 'Memphis, TN', - 1901382 => 'Memphis, TN', - 1901383 => 'Memphis, TN', - 1901384 => 'Memphis, TN', - 1901385 => 'Memphis, TN', - 1901386 => 'Memphis, TN', - 1901387 => 'Memphis, TN', - 1901388 => 'Memphis, TN', - 1901396 => 'Memphis, TN', - 1901398 => 'Memphis, TN', - 1901405 => 'Memphis, TN', - 1901416 => 'Memphis, TN', - 1901417 => 'Memphis, TN', - 1901433 => 'Memphis, TN', - 1901435 => 'Memphis, TN', - 1901448 => 'Memphis, TN', - 1901452 => 'Memphis, TN', - 1901454 => 'Memphis, TN', - 1901457 => 'Collierville, TN', - 1901458 => 'Memphis, TN', - 1901465 => 'Somerville, TN', - 1901475 => 'Covington, TN', - 1901476 => 'Covington, TN', - 1901495 => 'Memphis, TN', - 1901507 => 'Memphis, TN', - 1901516 => 'Memphis, TN', - 1901521 => 'Memphis, TN', - 1901522 => 'Memphis, TN', - 1901523 => 'Memphis, TN', - 1901524 => 'Memphis, TN', - 1901525 => 'Memphis, TN', - 1901526 => 'Memphis, TN', - 1901527 => 'Memphis, TN', - 1901528 => 'Memphis, TN', - 1901529 => 'Memphis, TN', - 1901542 => 'Memphis, TN', - 1901543 => 'Memphis, TN', - 1901544 => 'Memphis, TN', - 1901545 => 'Memphis, TN', - 1901546 => 'Memphis, TN', - 1901552 => 'Memphis, TN', - 1901565 => 'Memphis, TN', - 1901576 => 'Memphis, TN', - 1901577 => 'Memphis, TN', - 1901578 => 'Memphis, TN', - 1901590 => 'Memphis, TN', - 1901595 => 'Memphis, TN', - 1901672 => 'Memphis, TN', - 1901680 => 'Memphis, TN', - 1901681 => 'Memphis, TN', - 1901682 => 'Memphis, TN', - 1901683 => 'Memphis, TN', - 1901684 => 'Memphis, TN', - 1901685 => 'Memphis, TN', - 1901722 => 'Memphis, TN', - 1901725 => 'Memphis, TN', - 1901726 => 'Memphis, TN', - 1901729 => 'Memphis, TN', - 1901730 => 'Memphis, TN', - 1901743 => 'Memphis, TN', - 1901744 => 'Memphis, TN', - 1901746 => 'Memphis, TN', - 1901747 => 'Memphis, TN', - 1901748 => 'Memphis, TN', - 1901761 => 'Memphis, TN', - 1901763 => 'Memphis, TN', - 1901765 => 'Memphis, TN', - 1901766 => 'Memphis, TN', - 1901767 => 'Memphis, TN', - 1901774 => 'Memphis, TN', - 1901775 => 'Memphis, TN', - 1901785 => 'Memphis, TN', - 1901789 => 'Memphis, TN', - 1901791 => 'Memphis, TN', - 1901794 => 'Memphis, TN', - 1901795 => 'Memphis, TN', - 1901797 => 'Memphis, TN', - 1901818 => 'Memphis, TN', - 1901820 => 'Memphis, TN', - 1901821 => 'Memphis, TN', - 1901850 => 'Collierville, TN', - 1901853 => 'Collierville, TN', - 1901854 => 'Collierville, TN', - 1901861 => 'Collierville, TN', - 1901866 => 'Memphis, TN', - 1901867 => 'Arlington, TN', - 1901872 => 'Millington, TN', - 1901873 => 'Millington, TN', - 1901881 => 'Memphis, TN', - 1901937 => 'Memphis, TN', - 1901942 => 'Memphis, TN', - 1901946 => 'Memphis, TN', - 1901947 => 'Memphis, TN', - 1901948 => 'Memphis, TN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1902.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1902.php deleted file mode 100644 index 77964263e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1902.php +++ /dev/null @@ -1,132 +0,0 @@ - 'Nova Scotia', - 1902224 => 'Chéticamp, NS', - 1902245 => 'Digby, NS', - 1902254 => 'Parrsboro, NS', - 1902275 => 'Chester, NS', - 1902295 => 'Baddeck, NS', - 1902354 => 'Liverpool, NS', - 1902367 => 'Charlottetown, PE', - 1902368 => 'Charlottetown, PE', - 1902370 => 'Charlottetown, PE', - 1902393 => 'Charlottetown, PE', - 1902396 => 'New Glasgow, NS', - 1902404 => 'Halifax, NS', - 1902405 => 'Halifax, NS', - 1902406 => 'Halifax, NS', - 1902407 => 'Halifax, NS', - 1902420 => 'Halifax, NS', - 1902421 => 'Halifax, NS', - 1902422 => 'Halifax, NS', - 1902423 => 'Halifax, NS', - 1902425 => 'Halifax, NS', - 1902429 => 'Halifax, NS', - 1902431 => 'Halifax, NS', - 1902434 => 'Dartmouth, NS', - 1902435 => 'Dartmouth, NS', - 1902436 => 'Summerside, PE', - 1902442 => 'Halifax, NS', - 1902443 => 'Halifax, NS', - 1902444 => 'Halifax, NS', - 1902445 => 'Halifax, NS', - 1902446 => 'Halifax, NS', - 1902450 => 'Halifax, NS', - 1902452 => 'Halifax, NS', - 1902453 => 'Halifax, NS', - 1902454 => 'Halifax, NS', - 1902455 => 'Halifax, NS', - 1902456 => 'Halifax, NS', - 1902457 => 'Halifax, NS', - 1902461 => 'Dartmouth, NS', - 1902463 => 'Dartmouth, NS', - 1902464 => 'Dartmouth, NS', - 1902466 => 'Dartmouth, NS', - 1902468 => 'Dartmouth, NS', - 1902469 => 'Dartmouth, NS', - 1902471 => 'Halifax, NS', - 1902477 => 'Halifax, NS', - 1902479 => 'Halifax, NS', - 1902481 => 'Dartmouth, NS', - 1902482 => 'Halifax, NS', - 1902485 => 'Pictou, NS', - 1902488 => 'Halifax, NS', - 1902492 => 'Halifax, NS', - 1902494 => 'Halifax, NS', - 1902497 => 'Halifax, NS', - 1902499 => 'Halifax, NS', - 1902527 => 'Bridgewater, NS', - 1902530 => 'Bridgewater, NS', - 1902532 => 'Annapolis Royal, NS', - 1902535 => 'St. Peter\'s, NS', - 1902538 => 'Berwick, NS', - 1902539 => 'Sydney, NS', - 1902542 => 'Wolfville, NS', - 1902543 => 'Bridgewater, NS', - 1902562 => 'Sydney, NS', - 1902564 => 'Sydney, NS', - 1902566 => 'Charlottetown, PE', - 1902567 => 'Sydney, NS', - 1902569 => 'Charlottetown, PE', - 1902582 => 'Canning, NS', - 1902624 => 'Mahone Bay, NS', - 1902625 => 'Port Hawkesbury, NS', - 1902626 => 'Charlottetown, PE', - 1902628 => 'Charlottetown, PE', - 1902629 => 'Charlottetown, PE', - 1902634 => 'Lunenburg, NS', - 1902637 => 'Barrington, NS', - 1902657 => 'Tatamagouche, NS', - 1902661 => 'Amherst, NS', - 1902662 => 'Debert, NS', - 1902665 => 'Bridgetown, NS', - 1902667 => 'Amherst, NS', - 1902678 => 'Kentville, NS', - 1902679 => 'Kentville, NS', - 1902687 => 'Souris, PE', - 1902695 => 'New Glasgow, NS', - 1902736 => 'North Sydney, NS', - 1902742 => 'Yarmouth, NS', - 1902752 => 'New Glasgow, NS', - 1902755 => 'New Glasgow, NS', - 1902758 => 'Shubenacadie, NS', - 1902762 => 'Pubnico, NS', - 1902765 => 'Kingston, NS', - 1902769 => 'Saulnierville, NS', - 1902794 => 'North Sydney, NS', - 1902798 => 'Windsor, NS', - 1902825 => 'Middleton, NS', - 1902826 => 'St Margaret Village, NS', - 1902827 => 'Chezzetcook, NS', - 1902830 => 'Halifax, NS', - 1902836 => 'Kensington, PE', - 1902837 => 'Weymouth, NS', - 1902838 => 'Montague, PE', - 1902842 => 'Glace Bay, NS', - 1902843 => 'Truro, NS', - 1902849 => 'Glace Bay, NS', - 1902853 => 'Alberton, PE', - 1902857 => 'Hubbards, NS', - 1902859 => 'O\'Leary, PE', - 1902860 => 'Waverley, NS', - 1902861 => 'Waverley, NS', - 1902862 => 'New Waterford, NS', - 1902863 => 'Antigonish, NS', - 1902875 => 'Shelburne, NS', - 1902876 => 'Halifax, NS', - 1902882 => 'Tignish, PE', - 1902883 => 'Elmsdale, NS', - 1902888 => 'Summerside, PE', - 1902889 => 'Musquodoboit Harbour, NS', - 1902892 => 'Charlottetown, PE', - 1902893 => 'Truro, NS', - 1902894 => 'Charlottetown, PE', - 1902895 => 'Truro, NS', - 1902897 => 'Truro, NS', - 1902963 => 'Rusticoville, PE', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1903.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1903.php deleted file mode 100644 index 14467d1d4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1903.php +++ /dev/null @@ -1,168 +0,0 @@ - 'Texas', - 1903212 => 'Longview, TX', - 1903223 => 'Texarkana, TX', - 1903234 => 'Longview, TX', - 1903236 => 'Longview, TX', - 1903237 => 'Longview, TX', - 1903238 => 'Longview, TX', - 1903291 => 'Longview, TX', - 1903295 => 'Longview, TX', - 1903297 => 'Longview, TX', - 1903315 => 'Longview, TX', - 1903322 => 'Buffalo, TX', - 1903334 => 'Texarkana, TX', - 1903342 => 'Winnsboro, TX', - 1903356 => 'Quinlan, TX', - 1903364 => 'Whitewright, TX', - 1903378 => 'Honey Grove, TX', - 1903383 => 'Yantis, TX', - 1903389 => 'Fairfield, TX', - 1903395 => 'Cooper, TX', - 1903408 => 'Greenville, TX', - 1903416 => 'Denison, TX', - 1903427 => 'Clarksville, TX', - 1903438 => 'Sulphur Springs, TX', - 1903439 => 'Sulphur Springs, TX', - 1903447 => 'Quinlan, TX', - 1903450 => 'Greenville, TX', - 1903451 => 'Mabank, TX', - 1903454 => 'Greenville, TX', - 1903455 => 'Greenville, TX', - 1903463 => 'Denison, TX', - 1903465 => 'Denison, TX', - 1903473 => 'Emory, TX', - 1903482 => 'Van Alstyne, TX', - 1903489 => 'Malakoff, TX', - 1903498 => 'Kemp, TX', - 1903509 => 'Tyler, TX', - 1903510 => 'Tyler, TX', - 1903525 => 'Tyler, TX', - 1903526 => 'Tyler, TX', - 1903527 => 'Caddo Mills, TX', - 1903531 => 'Tyler, TX', - 1903533 => 'Tyler, TX', - 1903534 => 'Tyler, TX', - 1903535 => 'Tyler, TX', - 1903536 => 'Centerville, TX', - 1903537 => 'Mount Vernon, TX', - 1903547 => 'Hooks, TX', - 1903553 => 'Longview, TX', - 1903561 => 'Tyler, TX', - 1903564 => 'Whitesboro, TX', - 1903566 => 'Tyler, TX', - 1903567 => 'Canton, TX', - 1903569 => 'Mineola, TX', - 1903572 => 'Mount Pleasant, TX', - 1903575 => 'Mount Pleasant, TX', - 1903577 => 'Mount Pleasant, TX', - 1903581 => 'Tyler, TX', - 1903583 => 'Bonham, TX', - 1903586 => 'Jacksonville, TX', - 1903587 => 'Leonard, TX', - 1903589 => 'Jacksonville, TX', - 1903592 => 'Tyler, TX', - 1903593 => 'Tyler, TX', - 1903595 => 'Tyler, TX', - 1903596 => 'Tyler, TX', - 1903597 => 'Tyler, TX', - 1903614 => 'Texarkana, TX', - 1903626 => 'Jewett, TX', - 1903628 => 'New Boston, TX', - 1903636 => 'Big Sandy, TX', - 1903639 => 'Hughes Springs, TX', - 1903640 => 'Bonham, TX', - 1903641 => 'Corsicana, TX', - 1903643 => 'Longview, TX', - 1903645 => 'Daingerfield, TX', - 1903654 => 'Corsicana, TX', - 1903655 => 'Henderson, TX', - 1903657 => 'Henderson, TX', - 1903663 => 'Longview, TX', - 1903665 => 'Jefferson, TX', - 1903667 => 'De Kalb, TX', - 1903668 => 'Hallsville, TX', - 1903670 => 'Athens, TX', - 1903675 => 'Athens, TX', - 1903677 => 'Athens, TX', - 1903683 => 'Rusk, TX', - 1903687 => 'Waskom, TX', - 1903693 => 'Carthage, TX', - 1903694 => 'Carthage, TX', - 1903723 => 'Palestine, TX', - 1903729 => 'Palestine, TX', - 1903731 => 'Palestine, TX', - 1903734 => 'Gilmer, TX', - 1903737 => 'Paris, TX', - 1903739 => 'Paris, TX', - 1903753 => 'Longview, TX', - 1903756 => 'Linden, TX', - 1903757 => 'Longview, TX', - 1903758 => 'Longview, TX', - 1903759 => 'Longview, TX', - 1903763 => 'Quitman, TX', - 1903769 => 'Hawkins, TX', - 1903783 => 'Paris, TX', - 1903784 => 'Paris, TX', - 1903785 => 'Paris, TX', - 1903786 => 'Pottsboro, TX', - 1903791 => 'Texarkana, TX', - 1903792 => 'Texarkana, TX', - 1903793 => 'Texarkana, TX', - 1903794 => 'Texarkana, TX', - 1903796 => 'Atlanta, TX', - 1903798 => 'Texarkana, TX', - 1903799 => 'Atlanta, TX', - 1903813 => 'Sherman, TX', - 1903825 => 'Flint, TX', - 1903831 => 'Texarkana, TX', - 1903832 => 'Texarkana, TX', - 1903834 => 'Overton, TX', - 1903838 => 'Texarkana, TX', - 1903839 => 'Whitehouse, TX', - 1903842 => 'Troup, TX', - 1903843 => 'Gilmer, TX', - 1903845 => 'Gladewater, TX', - 1903849 => 'Chandler, TX', - 1903852 => 'Brownsboro, TX', - 1903856 => 'Pittsburg, TX', - 1903868 => 'Sherman, TX', - 1903870 => 'Sherman, TX', - 1903872 => 'Corsicana, TX', - 1903873 => 'Wills Point, TX', - 1903874 => 'Corsicana, TX', - 1903875 => 'Corsicana, TX', - 1903876 => 'Frankston, TX', - 1903877 => 'Tyler, TX', - 1903881 => 'Lindale, TX', - 1903882 => 'Lindale, TX', - 1903883 => 'Greenville, TX', - 1903885 => 'Sulphur Springs, TX', - 1903886 => 'Commerce, TX', - 1903887 => 'Gun Barrel City, TX', - 1903891 => 'Sherman, TX', - 1903892 => 'Sherman, TX', - 1903893 => 'Sherman, TX', - 1903894 => 'Bullard, TX', - 1903896 => 'Edgewood, TX', - 1903923 => 'Marshall, TX', - 1903927 => 'Marshall, TX', - 1903934 => 'Marshall, TX', - 1903935 => 'Marshall, TX', - 1903938 => 'Marshall, TX', - 1903939 => 'Tyler, TX', - 1903947 => 'Tatum, TX', - 1903962 => 'Grand Saline, TX', - 1903963 => 'Van, TX', - 1903965 => 'Bells, TX', - 1903968 => 'Ore City, TX', - 1903983 => 'Kilgore, TX', - 1903984 => 'Kilgore, TX', - 1903986 => 'Kilgore, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1904.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1904.php deleted file mode 100644 index b3145e02b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1904.php +++ /dev/null @@ -1,194 +0,0 @@ - 'Florida', - 1904202 => 'Jacksonville, FL', - 1904209 => 'St. Augustine, FL', - 1904213 => 'Orange Park, FL', - 1904215 => 'Orange Park, FL', - 1904217 => 'St. Augustine, FL', - 1904220 => 'Jacksonville, FL', - 1904221 => 'Jacksonville, FL', - 1904223 => 'Jacksonville, FL', - 1904225 => 'Yulee, FL', - 1904232 => 'Jacksonville, FL', - 1904240 => 'Jacksonville, FL', - 1904244 => 'Jacksonville, FL', - 1904253 => 'Jacksonville, FL', - 1904259 => 'Macclenny, FL', - 1904260 => 'Jacksonville, FL', - 1904261 => 'Fernandina Beach, FL', - 1904262 => 'Jacksonville, FL', - 1904264 => 'Orange Park, FL', - 1904268 => 'Jacksonville, FL', - 1904269 => 'Orange Park, FL', - 1904272 => 'Orange Park, FL', - 1904273 => 'Ponte Vedra Bch, FL', - 1904276 => 'Orange Park, FL', - 1904277 => 'Fernandina Beach, FL', - 1904278 => 'Orange Park, FL', - 1904280 => 'Ponte Vedra Bch, FL', - 1904281 => 'Jacksonville, FL', - 1904282 => 'Middleburg, FL', - 1904284 => 'Green Cove Spgs, FL', - 1904285 => 'Ponte Vedra Bch, FL', - 1904288 => 'Jacksonville, FL', - 1904291 => 'Middleburg, FL', - 1904292 => 'Jacksonville, FL', - 1904296 => 'Jacksonville, FL', - 1904298 => 'Orange Park, FL', - 1904306 => 'Jacksonville, FL', - 1904308 => 'Jacksonville, FL', - 1904310 => 'Fernandina Beach, FL', - 1904317 => 'Jacksonville, FL', - 1904321 => 'Fernandina Beach, FL', - 1904329 => 'Jacksonville, FL', - 1904332 => 'Jacksonville, FL', - 1904338 => 'Jacksonville, FL', - 1904342 => 'St. Augustine, FL', - 1904346 => 'Jacksonville, FL', - 1904347 => 'St. Augustine, FL', - 1904348 => 'Jacksonville, FL', - 1904353 => 'Jacksonville, FL', - 1904354 => 'Jacksonville, FL', - 1904355 => 'Jacksonville, FL', - 1904356 => 'Jacksonville, FL', - 1904358 => 'Jacksonville, FL', - 1904359 => 'Jacksonville, FL', - 1904363 => 'Jacksonville, FL', - 1904367 => 'Jacksonville, FL', - 1904368 => 'Starke, FL', - 1904371 => 'Jacksonville, FL', - 1904374 => 'Jacksonville, FL', - 1904375 => 'Orange Park, FL', - 1904378 => 'Jacksonville, FL', - 1904379 => 'Jacksonville, FL', - 1904381 => 'Jacksonville, FL', - 1904383 => 'Jacksonville, FL', - 1904384 => 'Jacksonville, FL', - 1904387 => 'Jacksonville, FL', - 1904388 => 'Jacksonville, FL', - 1904389 => 'Jacksonville, FL', - 1904394 => 'Jacksonville, FL', - 1904396 => 'Jacksonville, FL', - 1904398 => 'Jacksonville, FL', - 1904399 => 'Jacksonville, FL', - 1904406 => 'Middleburg, FL', - 1904419 => 'Jacksonville, FL', - 1904421 => 'Jacksonville, FL', - 1904425 => 'Jacksonville, FL', - 1904448 => 'Jacksonville, FL', - 1904460 => 'St. Augustine, FL', - 1904461 => 'St. Augustine, FL', - 1904471 => 'St. Augustine, FL', - 1904491 => 'Fernandina Beach, FL', - 1904493 => 'Jacksonville, FL', - 1904501 => 'St. Augustine, FL', - 1904503 => 'Jacksonville, FL', - 1904519 => 'Jacksonville, FL', - 1904527 => 'Jacksonville, FL', - 1904529 => 'Green Cove Spgs, FL', - 1904538 => 'Jacksonville, FL', - 1904540 => 'St. Augustine, FL', - 1904541 => 'Orange Park, FL', - 1904542 => 'Jacksonville, FL', - 1904548 => 'Yulee, FL', - 1904551 => 'Jacksonville, FL', - 1904564 => 'Jacksonville, FL', - 1904565 => 'Jacksonville, FL', - 1904573 => 'Jacksonville, FL', - 1904579 => 'Orange Park, FL', - 1904598 => 'Jacksonville, FL', - 1904619 => 'Jacksonville, FL', - 1904620 => 'Jacksonville, FL', - 1904630 => 'Jacksonville, FL', - 1904632 => 'Jacksonville, FL', - 1904633 => 'Jacksonville, FL', - 1904634 => 'Jacksonville, FL', - 1904636 => 'Jacksonville, FL', - 1904641 => 'Jacksonville, FL', - 1904642 => 'Jacksonville, FL', - 1904644 => 'Orange Park, FL', - 1904645 => 'Jacksonville, FL', - 1904646 => 'Jacksonville, FL', - 1904647 => 'Jacksonville, FL', - 1904652 => 'Jacksonville, FL', - 1904669 => 'St. Augustine, FL', - 1904674 => 'Jacksonville, FL', - 1904683 => 'Jacksonville, FL', - 1904687 => 'St. Augustine, FL', - 1904692 => 'Hastings, FL', - 1904693 => 'Jacksonville, FL', - 1904695 => 'Jacksonville, FL', - 1904696 => 'Jacksonville, FL', - 1904697 => 'Jacksonville, FL', - 1904714 => 'Jacksonville, FL', - 1904720 => 'Jacksonville, FL', - 1904721 => 'Jacksonville, FL', - 1904722 => 'Jacksonville, FL', - 1904723 => 'Jacksonville, FL', - 1904724 => 'Jacksonville, FL', - 1904725 => 'Jacksonville, FL', - 1904726 => 'Jacksonville, FL', - 1904727 => 'Jacksonville, FL', - 1904730 => 'Jacksonville, FL', - 1904731 => 'Jacksonville, FL', - 1904732 => 'Jacksonville, FL', - 1904733 => 'Jacksonville, FL', - 1904737 => 'Jacksonville, FL', - 1904738 => 'Jacksonville, FL', - 1904739 => 'Jacksonville, FL', - 1904741 => 'Jacksonville, FL', - 1904743 => 'Jacksonville, FL', - 1904744 => 'Jacksonville, FL', - 1904745 => 'Jacksonville, FL', - 1904751 => 'Jacksonville, FL', - 1904757 => 'Jacksonville, FL', - 1904764 => 'Jacksonville, FL', - 1904765 => 'Jacksonville, FL', - 1904766 => 'Jacksonville, FL', - 1904768 => 'Jacksonville, FL', - 1904771 => 'Jacksonville, FL', - 1904772 => 'Jacksonville, FL', - 1904777 => 'Jacksonville, FL', - 1904778 => 'Jacksonville, FL', - 1904779 => 'Jacksonville, FL', - 1904781 => 'Jacksonville, FL', - 1904783 => 'Jacksonville, FL', - 1904786 => 'Jacksonville, FL', - 1904794 => 'St. Augustine, FL', - 1904797 => 'St. Augustine, FL', - 1904807 => 'Jacksonville, FL', - 1904808 => 'St. Augustine, FL', - 1904810 => 'St. Augustine, FL', - 1904814 => 'St. Augustine, FL', - 1904819 => 'St. Augustine, FL', - 1904821 => 'Jacksonville, FL', - 1904823 => 'St. Augustine, FL', - 1904824 => 'St. Augustine, FL', - 1904825 => 'St. Augustine, FL', - 1904826 => 'St. Augustine, FL', - 1904827 => 'St. Augustine, FL', - 1904829 => 'St. Augustine, FL', - 1904845 => 'Hilliard, FL', - 1904854 => 'Jacksonville, FL', - 1904858 => 'Jacksonville, FL', - 1904879 => 'Callahan, FL', - 1904880 => 'Jacksonville, FL', - 1904886 => 'Jacksonville, FL', - 1904900 => 'Jacksonville, FL', - 1904908 => 'Jacksonville, FL', - 1904924 => 'Jacksonville, FL', - 1904928 => 'Jacksonville, FL', - 1904940 => 'St. Augustine, FL', - 1904953 => 'Jacksonville, FL', - 1904964 => 'Starke, FL', - 1904992 => 'Jacksonville, FL', - 1904996 => 'Jacksonville, FL', - 1904997 => 'Jacksonville, FL', - 1904998 => 'Jacksonville, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1905.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1905.php deleted file mode 100644 index 0e582981d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1905.php +++ /dev/null @@ -1,402 +0,0 @@ - 'Ontario', - 1905201 => 'Markham, ON', - 1905206 => 'Mississauga, ON', - 1905209 => 'Markham, ON', - 1905212 => 'Mississauga, ON', - 1905216 => 'Brampton, ON', - 1905227 => 'Thorold, ON', - 1905230 => 'Brampton, ON', - 1905231 => 'Ajax, ON', - 1905232 => 'Mississauga, ON', - 1905235 => 'Newmarket, ON', - 1905237 => 'Richmond Hill, ON', - 1905238 => 'Mississauga, ON', - 1905239 => 'Ajax, ON', - 1905240 => 'Oshawa, ON', - 1905257 => 'Oakville, ON', - 1905263 => 'Hampton, ON', - 1905264 => 'Woodbridge, ON', - 1905265 => 'Woodbridge, ON', - 1905266 => 'Woodbridge, ON', - 1905267 => 'Mississauga, ON', - 1905268 => 'Mississauga, ON', - 1905270 => 'Mississauga, ON', - 1905271 => 'Mississauga, ON', - 1905272 => 'Mississauga, ON', - 1905273 => 'Mississauga, ON', - 1905274 => 'Mississauga, ON', - 1905275 => 'Mississauga, ON', - 1905276 => 'Mississauga, ON', - 1905277 => 'Mississauga, ON', - 1905278 => 'Mississauga, ON', - 1905279 => 'Mississauga, ON', - 1905281 => 'Mississauga, ON', - 1905282 => 'Mississauga, ON', - 1905286 => 'Mississauga, ON', - 1905290 => 'Mississauga, ON', - 1905294 => 'Markham, ON', - 1905295 => 'Niagara Falls, ON', - 1905296 => 'Hamilton, ON', - 1905297 => 'Hamilton, ON', - 1905303 => 'Maple, ON', - 1905304 => 'Ancaster, ON', - 1905305 => 'Markham, ON', - 1905306 => 'Mississauga, ON', - 1905308 => 'Hamilton, ON', - 1905309 => 'Grimsby, ON', - 1905312 => 'Hamilton, ON', - 1905315 => 'Burlington, ON', - 1905318 => 'Hamilton, ON', - 1905319 => 'Burlington, ON', - 1905331 => 'Burlington, ON', - 1905332 => 'Burlington, ON', - 1905333 => 'Burlington, ON', - 1905335 => 'Burlington, ON', - 1905336 => 'Burlington, ON', - 1905337 => 'Oakville, ON', - 1905338 => 'Oakville, ON', - 1905339 => 'Oakville, ON', - 1905346 => 'St. Catharines, ON', - 1905353 => 'Niagara Falls, ON', - 1905354 => 'Niagara Falls, ON', - 1905355 => 'Colborne, ON', - 1905356 => 'Niagara Falls, ON', - 1905357 => 'Niagara Falls, ON', - 1905358 => 'Niagara Falls, ON', - 1905362 => 'Mississauga, ON', - 1905366 => 'Mississauga, ON', - 1905371 => 'Niagara Falls, ON', - 1905372 => 'Cobourg, ON', - 1905373 => 'Cobourg, ON', - 1905374 => 'Niagara Falls, ON', - 1905377 => 'Cobourg, ON', - 1905382 => 'Stevensville, ON', - 1905383 => 'Hamilton, ON', - 1905385 => 'Hamilton, ON', - 1905387 => 'Hamilton, ON', - 1905388 => 'Hamilton, ON', - 1905389 => 'Hamilton, ON', - 1905397 => 'St. Catharines, ON', - 1905403 => 'Mississauga, ON', - 1905404 => 'Oshawa, ON', - 1905405 => 'Mississauga, ON', - 1905415 => 'Markham, ON', - 1905417 => 'Maple, ON', - 1905420 => 'Pickering, ON', - 1905426 => 'Ajax, ON', - 1905427 => 'Ajax, ON', - 1905428 => 'Ajax, ON', - 1905430 => 'Whitby, ON', - 1905432 => 'Oshawa, ON', - 1905433 => 'Oshawa, ON', - 1905434 => 'Oshawa, ON', - 1905436 => 'Oshawa, ON', - 1905438 => 'Oshawa, ON', - 1905448 => 'Oshawa, ON', - 1905450 => 'Brampton, ON', - 1905451 => 'Brampton, ON', - 1905452 => 'Brampton, ON', - 1905453 => 'Brampton, ON', - 1905454 => 'Brampton, ON', - 1905455 => 'Brampton, ON', - 1905456 => 'Brampton, ON', - 1905457 => 'Brampton, ON', - 1905458 => 'Brampton, ON', - 1905459 => 'Brampton, ON', - 1905460 => 'Brampton, ON', - 1905461 => 'Mississauga, ON', - 1905463 => 'Brampton, ON', - 1905465 => 'Oakville, ON', - 1905468 => 'Niagara-on-the-Lake, ON', - 1905469 => 'Oakville, ON', - 1905470 => 'Markham, ON', - 1905471 => 'Markham, ON', - 1905472 => 'Markham, ON', - 1905473 => 'Mount Albert, ON', - 1905474 => 'Markham, ON', - 1905475 => 'Markham, ON', - 1905476 => 'Keswick, ON', - 1905477 => 'Markham, ON', - 1905478 => 'Queensville, ON', - 1905479 => 'Markham, ON', - 1905480 => 'Markham, ON', - 1905487 => 'Brampton, ON', - 1905488 => 'Brampton, ON', - 1905489 => 'Markham, ON', - 1905492 => 'Pickering, ON', - 1905493 => 'Whitby, ON', - 1905494 => 'Brampton, ON', - 1905495 => 'Brampton, ON', - 1905497 => 'Brampton, ON', - 1905501 => 'Mississauga, ON', - 1905502 => 'Mississauga, ON', - 1905503 => 'Aurora, ON', - 1905507 => 'Mississauga, ON', - 1905508 => 'Richmond Hill, ON', - 1905509 => 'Pickering, ON', - 1905513 => 'Markham, ON', - 1905521 => 'Hamilton, ON', - 1905522 => 'Hamilton, ON', - 1905523 => 'Hamilton, ON', - 1905524 => 'Hamilton, ON', - 1905525 => 'Hamilton, ON', - 1905526 => 'Hamilton, ON', - 1905527 => 'Hamilton, ON', - 1905528 => 'Hamilton, ON', - 1905529 => 'Hamilton, ON', - 1905538 => 'Hamilton, ON', - 1905540 => 'Hamilton, ON', - 1905542 => 'Mississauga, ON', - 1905543 => 'Hamilton, ON', - 1905544 => 'Hamilton, ON', - 1905545 => 'Hamilton, ON', - 1905546 => 'Hamilton, ON', - 1905547 => 'Hamilton, ON', - 1905548 => 'Hamilton, ON', - 1905549 => 'Hamilton, ON', - 1905554 => 'Markham, ON', - 1905560 => 'Hamilton, ON', - 1905561 => 'Hamilton, ON', - 1905562 => 'Vineland, ON', - 1905563 => 'Beamsville, ON', - 1905564 => 'Mississauga, ON', - 1905565 => 'Mississauga, ON', - 1905566 => 'Mississauga, ON', - 1905567 => 'Mississauga, ON', - 1905568 => 'Mississauga, ON', - 1905569 => 'Mississauga, ON', - 1905571 => 'Oshawa, ON', - 1905572 => 'Hamilton, ON', - 1905573 => 'Hamilton, ON', - 1905574 => 'Hamilton, ON', - 1905575 => 'Hamilton, ON', - 1905576 => 'Oshawa, ON', - 1905577 => 'Hamilton, ON', - 1905578 => 'Hamilton, ON', - 1905579 => 'Oshawa, ON', - 1905582 => 'Oakville, ON', - 1905592 => 'Burlington, ON', - 1905593 => 'Mississauga, ON', - 1905595 => 'Brampton, ON', - 1905602 => 'Mississauga, ON', - 1905604 => 'Markham, ON', - 1905605 => 'Woodbridge, ON', - 1905607 => 'Mississauga, ON', - 1905608 => 'Mississauga, ON', - 1905612 => 'Mississauga, ON', - 1905614 => 'Mississauga, ON', - 1905615 => 'Mississauga, ON', - 1905619 => 'Ajax, ON', - 1905623 => 'Bowmanville, ON', - 1905624 => 'Mississauga, ON', - 1905625 => 'Mississauga, ON', - 1905627 => 'Dundas, ON', - 1905628 => 'Dundas, ON', - 1905629 => 'Mississauga, ON', - 1905631 => 'Burlington, ON', - 1905632 => 'Burlington, ON', - 1905633 => 'Burlington, ON', - 1905634 => 'Burlington, ON', - 1905635 => 'Burlington, ON', - 1905636 => 'Milton, ON', - 1905637 => 'Burlington, ON', - 1905639 => 'Burlington, ON', - 1905640 => 'Whitchurch-Stouffville, ON', - 1905641 => 'St. Catharines, ON', - 1905642 => 'Whitchurch-Stouffville, ON', - 1905643 => 'Stoney Creek, ON', - 1905646 => 'St. Catharines, ON', - 1905648 => 'Ancaster, ON', - 1905649 => 'Claremont, ON', - 1905655 => 'Brooklin, ON', - 1905659 => 'Freelton, ON', - 1905660 => 'Concord, ON', - 1905662 => 'Stoney Creek, ON', - 1905664 => 'Stoney Creek, ON', - 1905665 => 'Whitby, ON', - 1905666 => 'Whitby, ON', - 1905667 => 'Hamilton, ON', - 1905668 => 'Whitby, ON', - 1905669 => 'Concord, ON', - 1905670 => 'Mississauga, ON', - 1905671 => 'Mississauga, ON', - 1905672 => 'Mississauga, ON', - 1905673 => 'Mississauga, ON', - 1905676 => 'Mississauga, ON', - 1905677 => 'Mississauga, ON', - 1905678 => 'Mississauga, ON', - 1905679 => 'Mount Hope, ON', - 1905681 => 'Burlington, ON', - 1905682 => 'St. Catharines, ON', - 1905683 => 'Ajax, ON', - 1905684 => 'St. Catharines, ON', - 1905685 => 'St. Catharines, ON', - 1905686 => 'Ajax, ON', - 1905687 => 'St. Catharines, ON', - 1905688 => 'St. Catharines, ON', - 1905689 => 'Waterdown, ON', - 1905690 => 'Waterdown, ON', - 1905692 => 'Binbrook, ON', - 1905693 => 'Milton, ON', - 1905696 => 'Mississauga, ON', - 1905697 => 'Bowmanville, ON', - 1905701 => 'Dunnville, ON', - 1905702 => 'Georgetown, ON', - 1905704 => 'St. Catharines, ON', - 1905712 => 'Mississauga, ON', - 1905713 => 'Aurora, ON', - 1905714 => 'Welland, ON', - 1905715 => 'Newmarket, ON', - 1905720 => 'Oshawa, ON', - 1905721 => 'Oshawa, ON', - 1905722 => 'Sutton West, ON', - 1905723 => 'Oshawa, ON', - 1905725 => 'Oshawa, ON', - 1905726 => 'Aurora, ON', - 1905727 => 'Aurora, ON', - 1905728 => 'Oshawa, ON', - 1905729 => 'Beeton, ON', - 1905731 => 'Thornhill, ON', - 1905732 => 'Welland, ON', - 1905734 => 'Welland, ON', - 1905735 => 'Welland, ON', - 1905737 => 'Richmond Hill, ON', - 1905738 => 'Concord, ON', - 1905751 => 'Aurora, ON', - 1905752 => 'Markham, ON', - 1905760 => 'Concord, ON', - 1905761 => 'Concord, ON', - 1905765 => 'Caledonia, ON', - 1905768 => 'Hagersville, ON', - 1905770 => 'Richmond Hill, ON', - 1905772 => 'Cayuga, ON', - 1905774 => 'Dunnville, ON', - 1905775 => 'Bradford, ON', - 1905777 => 'Hamilton, ON', - 1905778 => 'Bradford, ON', - 1905780 => 'Richmond Hill, ON', - 1905785 => 'Mississauga, ON', - 1905787 => 'Richmond Hill, ON', - 1905788 => 'Welland, ON', - 1905789 => 'Brampton, ON', - 1905790 => 'Brampton, ON', - 1905791 => 'Brampton, ON', - 1905792 => 'Brampton, ON', - 1905793 => 'Brampton, ON', - 1905794 => 'Castlemore, ON', - 1905795 => 'Mississauga, ON', - 1905796 => 'Brampton, ON', - 1905799 => 'Brampton, ON', - 1905803 => 'Mississauga, ON', - 1905804 => 'Mississauga, ON', - 1905812 => 'Mississauga, ON', - 1905813 => 'Mississauga, ON', - 1905814 => 'Mississauga, ON', - 1905815 => 'Oakville, ON', - 1905817 => 'Mississauga, ON', - 1905819 => 'Mississauga, ON', - 1905820 => 'Mississauga, ON', - 1905821 => 'Mississauga, ON', - 1905822 => 'Mississauga, ON', - 1905823 => 'Mississauga, ON', - 1905824 => 'Mississauga, ON', - 1905825 => 'Oakville, ON', - 1905826 => 'Mississauga, ON', - 1905827 => 'Oakville, ON', - 1905828 => 'Mississauga, ON', - 1905829 => 'Oakville, ON', - 1905830 => 'Newmarket, ON', - 1905831 => 'Pickering, ON', - 1905832 => 'Maple, ON', - 1905833 => 'King City, ON', - 1905834 => 'Port Colborne, ON', - 1905835 => 'Port Colborne, ON', - 1905836 => 'Newmarket, ON', - 1905837 => 'Pickering, ON', - 1905839 => 'Pickering, ON', - 1905840 => 'Brampton, ON', - 1905841 => 'Aurora, ON', - 1905842 => 'Oakville, ON', - 1905844 => 'Oakville, ON', - 1905845 => 'Oakville, ON', - 1905846 => 'Brampton, ON', - 1905847 => 'Oakville, ON', - 1905848 => 'Mississauga, ON', - 1905849 => 'Oakville, ON', - 1905850 => 'Woodbridge, ON', - 1905851 => 'Woodbridge, ON', - 1905852 => 'Uxbridge, ON', - 1905853 => 'Newmarket, ON', - 1905854 => 'Campbellville, ON', - 1905855 => 'Mississauga, ON', - 1905856 => 'Woodbridge, ON', - 1905857 => 'Bolton, ON', - 1905858 => 'Mississauga, ON', - 1905859 => 'Nobleton, ON', - 1905862 => 'Uxbridge, ON', - 1905864 => 'Milton, ON', - 1905868 => 'Newmarket, ON', - 1905871 => 'Fort Erie, ON', - 1905873 => 'Georgetown, ON', - 1905874 => 'Brampton, ON', - 1905875 => 'Milton, ON', - 1905876 => 'Milton, ON', - 1905877 => 'Georgetown, ON', - 1905878 => 'Milton, ON', - 1905881 => 'Thornhill, ON', - 1905883 => 'Richmond Hill, ON', - 1905884 => 'Richmond Hill, ON', - 1905885 => 'Port Hope, ON', - 1905888 => 'Bethesda, ON', - 1905889 => 'Thornhill, ON', - 1905890 => 'Mississauga, ON', - 1905891 => 'Mississauga, ON', - 1905893 => 'Kleinburg, ON', - 1905894 => 'Ridgeway, ON', - 1905895 => 'Newmarket, ON', - 1905896 => 'Mississauga, ON', - 1905897 => 'Mississauga, ON', - 1905898 => 'Newmarket, ON', - 1905899 => 'Wainfleet, ON', - 1905901 => 'Oakville, ON', - 1905910 => 'Markham, ON', - 1905913 => 'Castlemore, ON', - 1905918 => 'Richmond Hill, ON', - 1905934 => 'St. Catharines, ON', - 1905935 => 'St. Catharines, ON', - 1905936 => 'Tottenham, ON', - 1905937 => 'St. Catharines, ON', - 1905938 => 'St. Catharines, ON', - 1905939 => 'Schomberg, ON', - 1905940 => 'Markham, ON', - 1905943 => 'Markham, ON', - 1905944 => 'Markham, ON', - 1905945 => 'Grimsby, ON', - 1905946 => 'Markham, ON', - 1905947 => 'Markham, ON', - 1905948 => 'Markham, ON', - 1905949 => 'Mississauga, ON', - 1905951 => 'Bolton, ON', - 1905953 => 'Newmarket, ON', - 1905954 => 'Newmarket, ON', - 1905957 => 'Smithville, ON', - 1905967 => 'Newmarket, ON', - 1905970 => 'Brampton, ON', - 1905982 => 'Port Perry, ON', - 1905983 => 'Orono, ON', - 1905984 => 'St. Catharines, ON', - 1905985 => 'Port Perry, ON', - 1905987 => 'Newcastle, ON', - 1905988 => 'St. Catharines, ON', - 1905989 => 'Keswick, ON', - 1905990 => 'Mississauga, ON', - 1905994 => 'Fort Erie, ON', - 1905997 => 'Mississauga, ON', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1906.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1906.php deleted file mode 100644 index 21c083d8f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1906.php +++ /dev/null @@ -1,53 +0,0 @@ - 'Michigan', - 1906225 => 'Marquette, MI', - 1906226 => 'Marquette, MI', - 1906227 => 'Marquette, MI', - 1906228 => 'Marquette, MI', - 1906233 => 'Escanaba, MI', - 1906248 => 'Brimley, MI', - 1906249 => 'Marquette, MI', - 1906253 => 'Sault Ste. Marie, MI', - 1906265 => 'Iron River, MI', - 1906293 => 'Newberry, MI', - 1906296 => 'Lake Linden, MI', - 1906337 => 'Calumet Township, MI', - 1906341 => 'Manistique, MI', - 1906346 => 'Gwinn, MI', - 1906353 => 'Baraga, MI', - 1906387 => 'Munising, MI', - 1906428 => 'Gladstone, MI', - 1906466 => 'Bark River, MI', - 1906475 => 'Negaunee, MI', - 1906484 => 'Cedarville, MI', - 1906485 => 'Ishpeming, MI', - 1906486 => 'Ishpeming, MI', - 1906487 => 'Houghton, MI', - 1906493 => 'Drummond, MI', - 1906495 => 'Kincheloe, MI', - 1906523 => 'Chassell, MI', - 1906524 => 'L\'Anse, MI', - 1906563 => 'Norway, MI', - 1906632 => 'Sault Ste. Marie, MI', - 1906635 => 'Sault Ste. Marie, MI', - 1906643 => 'St. Ignace, MI', - 1906647 => 'Pickford, MI', - 1906753 => 'Stephenson, MI', - 1906774 => 'Iron Mountain, MI', - 1906776 => 'Iron Mountain, MI', - 1906779 => 'Iron Mountain, MI', - 1906786 => 'Escanaba, MI', - 1906789 => 'Escanaba, MI', - 1906847 => 'Mackinac Island, MI', - 1906863 => 'Menominee, MI', - 1906864 => 'Menominee, MI', - 1906875 => 'Crystal Falls, MI', - 1906884 => 'Ontonagon, MI', - 1906932 => 'Ironwood, MI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1907.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1907.php deleted file mode 100644 index d54cc3f43..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1907.php +++ /dev/null @@ -1,117 +0,0 @@ - 'Alaska', - 1907212 => 'Anchorage, AK', - 1907222 => 'Anchorage, AK', - 1907224 => 'Seward, AK', - 1907225 => 'Ketchikan, AK', - 1907228 => 'Ketchikan, AK', - 1907235 => 'Homer, AK', - 1907243 => 'Anchorage, AK', - 1907245 => 'Anchorage, AK', - 1907247 => 'Ketchikan, AK', - 1907248 => 'Anchorage, AK', - 1907257 => 'Anchorage, AK', - 1907258 => 'Anchorage, AK', - 1907260 => 'Soldotna, AK', - 1907262 => 'Soldotna, AK', - 1907264 => 'Anchorage, AK', - 1907269 => 'Anchorage, AK', - 1907271 => 'Anchorage, AK', - 1907272 => 'Anchorage, AK', - 1907274 => 'Anchorage, AK', - 1907276 => 'Anchorage, AK', - 1907277 => 'Anchorage, AK', - 1907278 => 'Anchorage, AK', - 1907279 => 'Anchorage, AK', - 1907283 => 'Kenai, AK', - 1907332 => 'Anchorage, AK', - 1907333 => 'Anchorage, AK', - 1907334 => 'Anchorage, AK', - 1907335 => 'Kenai, AK', - 1907336 => 'Anchorage, AK', - 1907337 => 'Anchorage, AK', - 1907338 => 'Anchorage, AK', - 1907339 => 'Anchorage, AK', - 1907343 => 'Anchorage, AK', - 1907344 => 'Anchorage, AK', - 1907345 => 'Anchorage, AK', - 1907346 => 'Anchorage, AK', - 1907349 => 'Anchorage, AK', - 1907352 => 'Wasilla, AK', - 1907357 => 'Wasilla, AK', - 1907373 => 'Wasilla, AK', - 1907374 => 'Fairbanks, AK', - 1907376 => 'Wasilla, AK', - 1907424 => 'Cordova, AK', - 1907442 => 'Kotzebue, AK', - 1907443 => 'Nome, AK', - 1907451 => 'Fairbanks, AK', - 1907452 => 'Fairbanks, AK', - 1907455 => 'Fairbanks, AK', - 1907456 => 'Fairbanks, AK', - 1907457 => 'Fairbanks, AK', - 1907458 => 'Fairbanks, AK', - 1907459 => 'Fairbanks, AK', - 1907463 => 'Juneau, AK', - 1907465 => 'Juneau, AK', - 1907474 => 'Fairbanks, AK', - 1907479 => 'Fairbanks, AK', - 1907486 => 'Kodiak, AK', - 1907487 => 'Kodiak, AK', - 1907488 => 'North Pole, AK', - 1907490 => 'North Pole, AK', - 1907495 => 'Willow, AK', - 1907522 => 'Anchorage, AK', - 1907523 => 'Juneau, AK', - 1907543 => 'Bethel, AK', - 1907561 => 'Anchorage, AK', - 1907562 => 'Anchorage, AK', - 1907563 => 'Anchorage, AK', - 1907567 => 'Ninilchik, AK', - 1907569 => 'Anchorage, AK', - 1907580 => 'Elmendorf Air Force Base, AK', - 1907581 => 'Unalaska, AK', - 1907586 => 'Juneau, AK', - 1907622 => 'Eagle River, AK', - 1907644 => 'Anchorage, AK', - 1907646 => 'Anchorage, AK', - 1907677 => 'Anchorage, AK', - 1907683 => 'Healy, AK', - 1907688 => 'Chugiak, AK', - 1907694 => 'Eagle River, AK', - 1907696 => 'Eagle River, AK', - 1907714 => 'Soldotna, AK', - 1907729 => 'Anchorage, AK', - 1907733 => 'Talkeetna, AK', - 1907742 => 'Anchorage, AK', - 1907743 => 'Anchorage, AK', - 1907745 => 'Palmer, AK', - 1907746 => 'Palmer, AK', - 1907747 => 'Sitka, AK', - 1907766 => 'Haines, AK', - 1907770 => 'Anchorage, AK', - 1907772 => 'Petersburg, AK', - 1907776 => 'Kenai, AK', - 1907780 => 'Juneau, AK', - 1907783 => 'Girdwood, AK', - 1907789 => 'Juneau, AK', - 1907790 => 'Juneau, AK', - 1907822 => 'Glennallen, AK', - 1907826 => 'Craig, AK', - 1907835 => 'Valdez, AK', - 1907842 => 'Dillingham, AK', - 1907852 => 'Barrow, AK', - 1907868 => 'Anchorage, AK', - 1907874 => 'Wrangell, AK', - 1907883 => 'Tok, AK', - 1907895 => 'Delta Junction, AK', - 1907929 => 'Anchorage, AK', - 1907966 => 'Sitka, AK', - 1907983 => 'Skagway, AK', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1908.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1908.php deleted file mode 100644 index edb8bbfc5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1908.php +++ /dev/null @@ -1,87 +0,0 @@ - 'New Jersey', - 1908206 => 'Union, NJ', - 1908213 => 'Phillipsburg, NJ', - 1908221 => 'Bernardsville, NJ', - 1908232 => 'Westfield, NJ', - 1908233 => 'Westfield, NJ', - 1908236 => 'Lebanon, NJ', - 1908237 => 'Flemington, NJ', - 1908258 => 'Union, NJ', - 1908272 => 'Cranford, NJ', - 1908273 => 'Summit, NJ', - 1908276 => 'Cranford, NJ', - 1908277 => 'Summit, NJ', - 1908281 => 'Hillsborough Township, NJ', - 1908282 => 'Elizabeth, NJ', - 1908284 => 'Flemington, NJ', - 1908289 => 'Elizabeth, NJ', - 1908317 => 'Westfield, NJ', - 1908322 => 'Scotch Plains, NJ', - 1908351 => 'Elizabeth, NJ', - 1908352 => 'Elizabeth, NJ', - 1908353 => 'Elizabeth, NJ', - 1908354 => 'Elizabeth, NJ', - 1908355 => 'Elizabeth, NJ', - 1908359 => 'Hillsborough Township, NJ', - 1908362 => 'Blairstown, NJ', - 1908369 => 'Hillsborough Township, NJ', - 1908387 => 'Phillipsburg, NJ', - 1908431 => 'Hillsborough Township, NJ', - 1908436 => 'Elizabeth, NJ', - 1908453 => 'Oxford Township, NJ', - 1908454 => 'Phillipsburg, NJ', - 1908464 => 'Berkeley Heights, NJ', - 1908469 => 'Elizabeth, NJ', - 1908474 => 'Linden, NJ', - 1908475 => 'Belvidere, NJ', - 1908486 => 'Linden, NJ', - 1908496 => 'Columbia, NJ', - 1908497 => 'Cranford, NJ', - 1908522 => 'Summit, NJ', - 1908527 => 'Elizabeth, NJ', - 1908558 => 'Elizabeth, NJ', - 1908587 => 'Linden, NJ', - 1908598 => 'Summit, NJ', - 1908624 => 'Union, NJ', - 1908637 => 'Great Meadows, NJ', - 1908654 => 'Westfield, NJ', - 1908684 => 'Hackettstown, NJ', - 1908686 => 'Union, NJ', - 1908687 => 'Union, NJ', - 1908688 => 'Union, NJ', - 1908689 => 'Washington, NJ', - 1908709 => 'Cranford, NJ', - 1908719 => 'Bedminster Township, NJ', - 1908782 => 'Flemington, NJ', - 1908788 => 'Flemington, NJ', - 1908806 => 'Flemington, NJ', - 1908810 => 'Union, NJ', - 1908813 => 'Hackettstown, NJ', - 1908820 => 'Elizabeth, NJ', - 1908832 => 'Califon, NJ', - 1908835 => 'Washington, NJ', - 1908850 => 'Hackettstown, NJ', - 1908851 => 'Union, NJ', - 1908852 => 'Hackettstown, NJ', - 1908859 => 'Phillipsburg, NJ', - 1908862 => 'Linden, NJ', - 1908874 => 'Hillsborough Township, NJ', - 1908876 => 'Long Valley, NJ', - 1908879 => 'Chester Borough, NJ', - 1908904 => 'Hillsborough Township, NJ', - 1908925 => 'Linden, NJ', - 1908931 => 'Cranford, NJ', - 1908964 => 'Union, NJ', - 1908965 => 'Elizabeth, NJ', - 1908979 => 'Hackettstown, NJ', - 1908994 => 'Elizabeth, NJ', - 1908995 => 'Milford, NJ', - 1908996 => 'Frenchtown, NJ', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1909.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1909.php deleted file mode 100644 index 51e477f4c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1909.php +++ /dev/null @@ -1,152 +0,0 @@ - 'California', - 1909305 => 'San Dimas, CA', - 1909307 => 'Redlands, CA', - 1909335 => 'Redlands, CA', - 1909336 => 'Lake Arrowhead, CA', - 1909337 => 'Lake Arrowhead, CA', - 1909338 => 'Crestline, CA', - 1909349 => 'Fontana, CA', - 1909350 => 'Fontana, CA', - 1909353 => 'Riverside, CA', - 1909355 => 'Fontana, CA', - 1909356 => 'Fontana, CA', - 1909357 => 'Fontana, CA', - 1909364 => 'Chino, CA', - 1909370 => 'Colton, CA', - 1909381 => 'San Bernardino, CA', - 1909382 => 'San Bernardino, CA', - 1909383 => 'San Bernardino, CA', - 1909384 => 'San Bernardino, CA', - 1909386 => 'San Bernardino, CA', - 1909387 => 'San Bernardino, CA', - 1909388 => 'San Bernardino, CA', - 1909390 => 'Ontario, CA', - 1909391 => 'Ontario, CA', - 1909392 => 'La Verne, CA', - 1909393 => 'Chino Hills, CA', - 1909394 => 'San Dimas, CA', - 1909395 => 'Ontario, CA', - 1909396 => 'Diamond Bar, CA', - 1909397 => 'Pomona, CA', - 1909421 => 'Rialto, CA', - 1909422 => 'Colton, CA', - 1909427 => 'Fontana, CA', - 1909428 => 'Fontana, CA', - 1909429 => 'Fontana, CA', - 1909433 => 'Colton, CA', - 1909444 => 'Walnut, CA', - 1909460 => 'Ontario, CA', - 1909464 => 'Chino, CA', - 1909465 => 'Chino, CA', - 1909466 => 'Rancho Cucamonga, CA', - 1909467 => 'Ontario, CA', - 1909468 => 'Walnut, CA', - 1909469 => 'Pomona, CA', - 1909473 => 'San Bernardino, CA', - 1909475 => 'San Bernardino, CA', - 1909476 => 'Rancho Cucamonga, CA', - 1909477 => 'Rancho Cucamonga, CA', - 1909478 => 'Loma Linda, CA', - 1909481 => 'Rancho Cucamonga, CA', - 1909483 => 'Rancho Cucamonga, CA', - 1909484 => 'Rancho Cucamonga, CA', - 1909517 => 'Chino, CA', - 1909548 => 'Chino, CA', - 1909558 => 'Loma Linda, CA', - 1909574 => 'Fontana, CA', - 1909579 => 'Upland, CA', - 1909580 => 'Colton, CA', - 1909581 => 'Rancho Cucamonga, CA', - 1909584 => 'Big Bear, CA', - 1909585 => 'Big Bear, CA', - 1909590 => 'Chino, CA', - 1909591 => 'Chino, CA', - 1909592 => 'San Dimas, CA', - 1909593 => 'La Verne, CA', - 1909594 => 'Walnut, CA', - 1909595 => 'Walnut, CA', - 1909596 => 'La Verne, CA', - 1909598 => 'Walnut, CA', - 1909599 => 'San Dimas, CA', - 1909605 => 'Ontario, CA', - 1909606 => 'Chino Hills, CA', - 1909608 => 'Upland, CA', - 1909612 => 'Diamond Bar, CA', - 1909613 => 'Chino, CA', - 1909620 => 'Pomona, CA', - 1909622 => 'Pomona, CA', - 1909623 => 'Pomona, CA', - 1909627 => 'Chino, CA', - 1909628 => 'Chino, CA', - 1909629 => 'Pomona, CA', - 1909646 => 'Rancho Cucamonga, CA', - 1909673 => 'Ontario, CA', - 1909748 => 'Redlands, CA', - 1909758 => 'Rancho Cucamonga, CA', - 1909790 => 'Yucaipa, CA', - 1909792 => 'Redlands, CA', - 1909793 => 'Redlands, CA', - 1909797 => 'Yucaipa, CA', - 1909798 => 'Redlands, CA', - 1909799 => 'Loma Linda, CA', - 1909820 => 'Rialto, CA', - 1909822 => 'Fontana, CA', - 1909823 => 'Fontana, CA', - 1909829 => 'Fontana, CA', - 1909854 => 'Fontana, CA', - 1909860 => 'Diamond Bar, CA', - 1909861 => 'Diamond Bar, CA', - 1909862 => 'Highland, CA', - 1909863 => 'Highland, CA', - 1909864 => 'Highland, CA', - 1909865 => 'Pomona, CA', - 1909866 => 'Big Bear Lake, CA', - 1909867 => 'Running Springs, CA', - 1909868 => 'Pomona, CA', - 1909873 => 'Rialto, CA', - 1909874 => 'Rialto, CA', - 1909875 => 'Rialto, CA', - 1909877 => 'Bloomington, CA', - 1909878 => 'Big Bear Lake, CA', - 1909880 => 'San Bernardino, CA', - 1909881 => 'San Bernardino, CA', - 1909882 => 'San Bernardino, CA', - 1909883 => 'San Bernardino, CA', - 1909884 => 'San Bernardino, CA', - 1909885 => 'San Bernardino, CA', - 1909886 => 'San Bernardino, CA', - 1909887 => 'San Bernardino, CA', - 1909888 => 'San Bernardino, CA', - 1909889 => 'San Bernardino, CA', - 1909890 => 'San Bernardino, CA', - 1909902 => 'Chino, CA', - 1909920 => 'Upland, CA', - 1909923 => 'Ontario, CA', - 1909930 => 'Ontario, CA', - 1909931 => 'Upland, CA', - 1909937 => 'Ontario, CA', - 1909941 => 'Rancho Cucamonga, CA', - 1909944 => 'Rancho Cucamonga, CA', - 1909945 => 'Rancho Cucamonga, CA', - 1909946 => 'Upland, CA', - 1909947 => 'Ontario, CA', - 1909948 => 'Rancho Cucamonga, CA', - 1909949 => 'Upland, CA', - 1909980 => 'Rancho Cucamonga, CA', - 1909981 => 'Upland, CA', - 1909982 => 'Upland, CA', - 1909983 => 'Ontario, CA', - 1909984 => 'Ontario, CA', - 1909985 => 'Upland, CA', - 1909986 => 'Ontario, CA', - 1909987 => 'Rancho Cucamonga, CA', - 1909988 => 'Ontario, CA', - 1909989 => 'Rancho Cucamonga, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1910.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1910.php deleted file mode 100644 index 9de59485d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1910.php +++ /dev/null @@ -1,175 +0,0 @@ - 'North Carolina', - 1910215 => 'Pinehurst, NC', - 1910219 => 'Jacksonville, NC', - 1910223 => 'Fayetteville, NC', - 1910228 => 'Wilmington, NC', - 1910232 => 'Wilmington, NC', - 1910235 => 'Pinehurst, NC', - 1910245 => 'Vass, NC', - 1910246 => 'Southern Pines, NC', - 1910251 => 'Wilmington, NC', - 1910253 => 'Bolivia, NC', - 1910254 => 'Wilmington, NC', - 1910256 => 'Wilmington, NC', - 1910259 => 'Burgaw, NC', - 1910262 => 'Wilmington, NC', - 1910264 => 'Wilmington, NC', - 1910267 => 'Faison, NC', - 1910270 => 'Hampstead, NC', - 1910272 => 'Lumberton, NC', - 1910276 => 'Laurinburg, NC', - 1910277 => 'Laurinburg, NC', - 1910278 => 'Oak Island, NC', - 1910285 => 'Wallace, NC', - 1910289 => 'Rose Hill, NC', - 1910293 => 'Warsaw, NC', - 1910295 => 'Pinehurst, NC', - 1910296 => 'Kenansville, NC', - 1910297 => 'Wilmington, NC', - 1910298 => 'Beulaville, NC', - 1910299 => 'Clinton, NC', - 1910313 => 'Wilmington, NC', - 1910321 => 'Fayetteville, NC', - 1910323 => 'Fayetteville, NC', - 1910324 => 'Richlands, NC', - 1910325 => 'Swansboro, NC', - 1910326 => 'Swansboro, NC', - 1910327 => 'Sneads Ferry, NC', - 1910328 => 'Surf City, NC', - 1910329 => 'Holly Ridge, NC', - 1910332 => 'Wilmington, NC', - 1910333 => 'Jacksonville, NC', - 1910338 => 'Wilmington, NC', - 1910339 => 'Fayetteville, NC', - 1910341 => 'Wilmington, NC', - 1910343 => 'Wilmington, NC', - 1910346 => 'Jacksonville, NC', - 1910347 => 'Jacksonville, NC', - 1910350 => 'Wilmington, NC', - 1910352 => 'Wilmington, NC', - 1910353 => 'Jacksonville, NC', - 1910355 => 'Jacksonville, NC', - 1910362 => 'Wilmington, NC', - 1910371 => 'Leland, NC', - 1910383 => 'Leland, NC', - 1910392 => 'Wilmington, NC', - 1910395 => 'Wilmington, NC', - 1910396 => 'Fort Bragg, NC', - 1910397 => 'Wilmington, NC', - 1910399 => 'Wilmington, NC', - 1910417 => 'Rockingham, NC', - 1910422 => 'Rowland, NC', - 1910423 => 'Fayetteville, NC', - 1910424 => 'Fayetteville, NC', - 1910425 => 'Fayetteville, NC', - 1910426 => 'Fayetteville, NC', - 1910428 => 'Biscoe, NC', - 1910429 => 'Fayetteville, NC', - 1910433 => 'Fayetteville, NC', - 1910436 => 'Spring Lake, NC', - 1910439 => 'Mount Gilead, NC', - 1910442 => 'Wilmington, NC', - 1910450 => 'Camp Lejeune, NC', - 1910451 => 'Camp Lejeune, NC', - 1910452 => 'Wilmington, NC', - 1910454 => 'Southport, NC', - 1910455 => 'Jacksonville, NC', - 1910457 => 'Southport, NC', - 1910458 => 'Carolina Beach, NC', - 1910482 => 'Fayetteville, NC', - 1910483 => 'Fayetteville, NC', - 1910484 => 'Fayetteville, NC', - 1910485 => 'Fayetteville, NC', - 1910486 => 'Fayetteville, NC', - 1910487 => 'Fayetteville, NC', - 1910488 => 'Fayetteville, NC', - 1910497 => 'Spring Lake, NC', - 1910509 => 'Wilmington, NC', - 1910520 => 'Wilmington, NC', - 1910521 => 'Pembroke, NC', - 1910522 => 'Pembroke, NC', - 1910525 => 'Roseboro, NC', - 1910538 => 'Wilmington, NC', - 1910564 => 'Clinton, NC', - 1910572 => 'Troy, NC', - 1910576 => 'Troy, NC', - 1910577 => 'Jacksonville, NC', - 1910582 => 'Hamlet, NC', - 1910590 => 'Clinton, NC', - 1910592 => 'Clinton, NC', - 1910594 => 'Newton Grove, NC', - 1910609 => 'Fayetteville, NC', - 1910615 => 'Fayetteville, NC', - 1910616 => 'Wilmington, NC', - 1910618 => 'Lumberton, NC', - 1910620 => 'Wilmington, NC', - 1910628 => 'Fairmont, NC', - 1910630 => 'Fayetteville, NC', - 1910640 => 'Whiteville, NC', - 1910641 => 'Whiteville, NC', - 1910642 => 'Whiteville, NC', - 1910648 => 'Bladenboro, NC', - 1910652 => 'Ellerbe, NC', - 1910653 => 'Tabor City, NC', - 1910654 => 'Chadbourn, NC', - 1910671 => 'Lumberton, NC', - 1910673 => 'West End, NC', - 1910675 => 'Castle Hayne, NC', - 1910678 => 'Fayetteville, NC', - 1910686 => 'Wilmington, NC', - 1910692 => 'Southern Pines, NC', - 1910693 => 'Southern Pines, NC', - 1910695 => 'Southern Pines, NC', - 1910715 => 'Pinehurst, NC', - 1910738 => 'Lumberton, NC', - 1910739 => 'Lumberton, NC', - 1910762 => 'Wilmington, NC', - 1910763 => 'Wilmington, NC', - 1910764 => 'Fayetteville, NC', - 1910772 => 'Wilmington, NC', - 1910777 => 'Wilmington, NC', - 1910790 => 'Wilmington, NC', - 1910791 => 'Wilmington, NC', - 1910792 => 'Wilmington, NC', - 1910793 => 'Wilmington, NC', - 1910794 => 'Wilmington, NC', - 1910796 => 'Wilmington, NC', - 1910798 => 'Wilmington, NC', - 1910799 => 'Wilmington, NC', - 1910814 => 'Lillington, NC', - 1910815 => 'Wilmington, NC', - 1910822 => 'Fayetteville, NC', - 1910826 => 'Fayetteville, NC', - 1910842 => 'Supply, NC', - 1910843 => 'Red Springs, NC', - 1910844 => 'Maxton, NC', - 1910848 => 'Raeford, NC', - 1910860 => 'Fayetteville, NC', - 1910862 => 'Elizabethtown, NC', - 1910863 => 'Bladenboro, NC', - 1910864 => 'Fayetteville, NC', - 1910865 => 'St. Pauls, NC', - 1910867 => 'Fayetteville, NC', - 1910868 => 'Fayetteville, NC', - 1910875 => 'Raeford, NC', - 1910891 => 'Dunn, NC', - 1910892 => 'Dunn, NC', - 1910893 => 'Lillington, NC', - 1910895 => 'Rockingham, NC', - 1910904 => 'Raeford, NC', - 1910907 => 'E. E. Smith, Fort Bragg, NC', - 1910920 => 'Fayetteville, NC', - 1910938 => 'Jacksonville, NC', - 1910944 => 'Aberdeen, NC', - 1910947 => 'Carthage, NC', - 1910948 => 'Robbins, NC', - 1910974 => 'Candor, NC', - 1910997 => 'Rockingham, NC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1912.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1912.php deleted file mode 100644 index e9d2fc078..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1912.php +++ /dev/null @@ -1,119 +0,0 @@ - 'Georgia', - 1912201 => 'Savannah, GA', - 1912231 => 'Savannah, GA', - 1912232 => 'Savannah, GA', - 1912233 => 'Savannah, GA', - 1912234 => 'Savannah, GA', - 1912236 => 'Savannah, GA', - 1912238 => 'Savannah, GA', - 1912261 => 'Brunswick, GA', - 1912262 => 'Brunswick, GA', - 1912264 => 'Brunswick, GA', - 1912265 => 'Brunswick, GA', - 1912267 => 'Brunswick, GA', - 1912275 => 'Brunswick, GA', - 1912280 => 'Brunswick, GA', - 1912283 => 'Waycross, GA', - 1912284 => 'Waycross, GA', - 1912285 => 'Waycross, GA', - 1912287 => 'Waycross, GA', - 1912289 => 'Brunswick, GA', - 1912303 => 'Savannah, GA', - 1912330 => 'Pooler, GA', - 1912335 => 'Savannah, GA', - 1912342 => 'Brunswick, GA', - 1912349 => 'Savannah, GA', - 1912350 => 'Savannah, GA', - 1912351 => 'Savannah, GA', - 1912352 => 'Savannah, GA', - 1912353 => 'Savannah, GA', - 1912354 => 'Savannah, GA', - 1912355 => 'Savannah, GA', - 1912356 => 'Savannah, GA', - 1912359 => 'Broxton, GA', - 1912366 => 'Baxley, GA', - 1912367 => 'Baxley, GA', - 1912368 => 'Hinesville, GA', - 1912369 => 'Hinesville, GA', - 1912375 => 'Hazlehurst, GA', - 1912383 => 'Douglas, GA', - 1912384 => 'Douglas, GA', - 1912389 => 'Douglas, GA', - 1912422 => 'Pearson, GA', - 1912427 => 'Jesup, GA', - 1912435 => 'Fort Stewart, GA', - 1912437 => 'Darien, GA', - 1912443 => 'Savannah, GA', - 1912447 => 'Savannah, GA', - 1912449 => 'Blackshear, GA', - 1912459 => 'Richmond Hill, GA', - 1912462 => 'Nahunta, GA', - 1912466 => 'Brunswick, GA', - 1912487 => 'Homerville, GA', - 1912489 => 'Statesboro, GA', - 1912496 => 'Folkston, GA', - 1912526 => 'Lyons, GA', - 1912529 => 'Soperton, GA', - 1912530 => 'Jesup, GA', - 1912537 => 'Vidalia, GA', - 1912538 => 'Vidalia, GA', - 1912545 => 'Ludowici, GA', - 1912554 => 'Brunswick, GA', - 1912557 => 'Reidsville, GA', - 1912564 => 'Sylvania, GA', - 1912583 => 'Mount Vernon, GA', - 1912587 => 'Statesboro, GA', - 1912588 => 'Jesup, GA', - 1912598 => 'Savannah, GA', - 1912629 => 'Savannah, GA', - 1912632 => 'Alma, GA', - 1912634 => 'Saint Simons Island, GA', - 1912638 => 'Saint Simons Island, GA', - 1912644 => 'Savannah, GA', - 1912651 => 'Savannah, GA', - 1912652 => 'Savannah, GA', - 1912653 => 'Pembroke, GA', - 1912654 => 'Glennville, GA', - 1912673 => 'St. Marys, GA', - 1912681 => 'Statesboro, GA', - 1912685 => 'Metter, GA', - 1912691 => 'Savannah, GA', - 1912692 => 'Savannah, GA', - 1912727 => 'Richmond Hill, GA', - 1912729 => 'Kingsland, GA', - 1912739 => 'Claxton, GA', - 1912748 => 'Pooler, GA', - 1912754 => 'Springfield, GA', - 1912756 => 'Richmond Hill, GA', - 1912764 => 'Statesboro, GA', - 1912772 => 'Guyton, GA', - 1912786 => 'Tybee Island, GA', - 1912790 => 'Savannah, GA', - 1912819 => 'Savannah, GA', - 1912826 => 'Rincon, GA', - 1912832 => 'Townsend, GA', - 1912839 => 'Statesboro, GA', - 1912842 => 'Brooklet, GA', - 1912863 => 'Sylvania, GA', - 1912865 => 'Portal, GA', - 1912871 => 'Statesboro, GA', - 1912876 => 'Hinesville, GA', - 1912877 => 'Hinesville, GA', - 1912882 => 'St. Marys, GA', - 1912884 => 'Midway, GA', - 1912897 => 'Savannah, GA', - 1912898 => 'Savannah, GA', - 1912920 => 'Savannah, GA', - 1912921 => 'Savannah, GA', - 1912925 => 'Savannah, GA', - 1912927 => 'Savannah, GA', - 1912961 => 'Savannah, GA', - 1912964 => 'Savannah, GA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1913.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1913.php deleted file mode 100644 index 72b5f0803..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1913.php +++ /dev/null @@ -1,66 +0,0 @@ - 'Kansas', - 1913233 => 'Kansas City, KS', - 1913239 => 'Overland Park, KS', - 1913248 => 'Shawnee, KS', - 1913250 => 'Leavenworth, KS', - 1913254 => 'Olathe, KS', - 1913281 => 'Kansas City, KS', - 1913287 => 'Kansas City, KS', - 1913294 => 'Paola, KS', - 1913299 => 'Kansas City, KS', - 1913317 => 'Overland Park, KS', - 1913321 => 'Kansas City, KS', - 1913328 => 'Kansas City, KS', - 1913334 => 'Kansas City, KS', - 1913342 => 'Kansas City, KS', - 1913352 => 'Pleasanton, KS', - 1913367 => 'Atchison, KS', - 1913371 => 'Kansas City, KS', - 1913390 => 'Olathe, KS', - 1913393 => 'Olathe, KS', - 1913397 => 'Olathe, KS', - 1913402 => 'Overland Park, KS', - 1913498 => 'Overland Park, KS', - 1913557 => 'Paola, KS', - 1913573 => 'Kansas City, KS', - 1913583 => 'De Soto, KS', - 1913588 => 'Kansas City, KS', - 1913592 => 'Spring Hill, KS', - 1913596 => 'Kansas City, KS', - 1913621 => 'Kansas City, KS', - 1913651 => 'Leavenworth, KS', - 1913680 => 'Leavenworth, KS', - 1913681 => 'Overland Park, KS', - 1913682 => 'Leavenworth, KS', - 1913685 => 'Overland Park, KS', - 1913696 => 'Leawood, KS', - 1913715 => 'Olathe, KS', - 1913721 => 'Kansas City, KS', - 1913724 => 'Basehor, KS', - 1913727 => 'Lansing, KS', - 1913755 => 'Osawatomie, KS', - 1913757 => 'LaCygne, KS', - 1913758 => 'Leavenworth, KS', - 1913764 => 'Olathe, KS', - 1913768 => 'Olathe, KS', - 1913780 => 'Olathe, KS', - 1913782 => 'Olathe, KS', - 1913788 => 'Kansas City, KS', - 1913791 => 'Olathe, KS', - 1913795 => 'Mound City, KS', - 1913814 => 'Overland Park, KS', - 1913829 => 'Olathe, KS', - 1913837 => 'Louisburg, KS', - 1913845 => 'Tonganoxie, KS', - 1913851 => 'Overland Park, KS', - 1913856 => 'Gardner, KS', - 1913884 => 'Gardner, KS', - 1913901 => 'Overland Park, KS', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1914.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1914.php deleted file mode 100644 index 4088fc431..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1914.php +++ /dev/null @@ -1,118 +0,0 @@ - 'New York', - 1914207 => 'Yonkers, NY', - 1914232 => 'Katonah, NY', - 1914234 => 'Bedford, NY', - 1914235 => 'New Rochelle, NY', - 1914237 => 'Yonkers, NY', - 1914238 => 'Chappaqua, NY', - 1914241 => 'Mount Kisco, NY', - 1914242 => 'Mount Kisco, NY', - 1914243 => 'Yorktown Heights, NY', - 1914244 => 'Mount Kisco, NY', - 1914245 => 'Yorktown Heights, NY', - 1914271 => 'Croton-on-Hudson, NY', - 1914273 => 'Armonk, NY', - 1914276 => 'Somers, NY', - 1914277 => 'Somers, NY', - 1914285 => 'White Plains, NY', - 1914287 => 'White Plains, NY', - 1914288 => 'White Plains, NY', - 1914304 => 'White Plains, NY', - 1914305 => 'Port Chester, NY', - 1914328 => 'White Plains, NY', - 1914332 => 'Tarrytown, NY', - 1914333 => 'Tarrytown, NY', - 1914345 => 'Elmsford, NY', - 1914347 => 'Elmsford, NY', - 1914355 => 'New Rochelle, NY', - 1914358 => 'White Plains, NY', - 1914366 => 'Sleepy Hollow, NY', - 1914375 => 'Yonkers, NY', - 1914376 => 'Yonkers, NY', - 1914377 => 'Yonkers, NY', - 1914378 => 'Yonkers, NY', - 1914381 => 'Mamaroneck, NY', - 1914421 => 'White Plains, NY', - 1914422 => 'White Plains, NY', - 1914423 => 'Yonkers, NY', - 1914428 => 'White Plains, NY', - 1914457 => 'Yonkers, NY', - 1914472 => 'Scarsdale, NY', - 1914476 => 'Yonkers, NY', - 1914481 => 'Port Chester, NY', - 1914493 => 'Valhalla, NY', - 1914524 => 'Tarrytown, NY', - 1914528 => 'Mohegan Lake, NY', - 1914533 => 'South Salem, NY', - 1914576 => 'New Rochelle, NY', - 1914591 => 'Irvington, NY', - 1914592 => 'Elmsford, NY', - 1914631 => 'Tarrytown, NY', - 1914632 => 'New Rochelle, NY', - 1914633 => 'New Rochelle, NY', - 1914636 => 'New Rochelle, NY', - 1914637 => 'New Rochelle, NY', - 1914654 => 'New Rochelle, NY', - 1914663 => 'Mount Vernon, NY', - 1914664 => 'Mount Vernon, NY', - 1914665 => 'Mount Vernon, NY', - 1914666 => 'Mount Kisco, NY', - 1914667 => 'Mount Vernon, NY', - 1914668 => 'Mount Vernon, NY', - 1914669 => 'North Salem, NY', - 1914681 => 'White Plains, NY', - 1914682 => 'White Plains, NY', - 1914683 => 'White Plains, NY', - 1914684 => 'White Plains, NY', - 1914686 => 'White Plains, NY', - 1914698 => 'Mamaroneck, NY', - 1914699 => 'Mount Vernon, NY', - 1914713 => 'Scarsdale, NY', - 1914722 => 'Scarsdale, NY', - 1914723 => 'Scarsdale, NY', - 1914725 => 'Scarsdale, NY', - 1914734 => 'Peekskill, NY', - 1914738 => 'Pelham, NY', - 1914740 => 'New Rochelle, NY', - 1914751 => 'Yonkers, NY', - 1914761 => 'White Plains, NY', - 1914764 => 'Pound Ridge, NY', - 1914776 => 'Yonkers, NY', - 1914777 => 'Mamaroneck, NY', - 1914813 => 'New Rochelle, NY', - 1914831 => 'White Plains, NY', - 1914833 => 'Larchmont, NY', - 1914834 => 'Larchmont, NY', - 1914835 => 'Harrison, NY', - 1914864 => 'Mount Kisco, NY', - 1914921 => 'Rye, NY', - 1914923 => 'Ossining, NY', - 1914925 => 'Rye, NY', - 1914930 => 'Peekskill, NY', - 1914934 => 'Port Chester, NY', - 1914935 => 'Port Chester, NY', - 1914937 => 'Port Chester, NY', - 1914939 => 'Port Chester, NY', - 1914941 => 'Ossining, NY', - 1914944 => 'Ossining, NY', - 1914946 => 'White Plains, NY', - 1914948 => 'White Plains, NY', - 1914949 => 'White Plains, NY', - 1914962 => 'Yorktown Heights, NY', - 1914963 => 'Yonkers, NY', - 1914964 => 'Yonkers, NY', - 1914965 => 'Yonkers, NY', - 1914966 => 'Yonkers, NY', - 1914967 => 'Rye, NY', - 1914968 => 'Yonkers, NY', - 1914969 => 'Yonkers, NY', - 1914993 => 'White Plains, NY', - 1914997 => 'White Plains, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1915.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1915.php deleted file mode 100644 index 240be2137..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1915.php +++ /dev/null @@ -1,78 +0,0 @@ - 'Texas', - 1915231 => 'El Paso, TX', - 1915257 => 'El Paso, TX', - 1915307 => 'El Paso, TX', - 1915313 => 'El Paso, TX', - 1915351 => 'El Paso, TX', - 1915532 => 'El Paso, TX', - 1915533 => 'El Paso, TX', - 1915534 => 'El Paso, TX', - 1915541 => 'El Paso, TX', - 1915542 => 'El Paso, TX', - 1915543 => 'El Paso, TX', - 1915544 => 'El Paso, TX', - 1915545 => 'El Paso, TX', - 1915546 => 'El Paso, TX', - 1915562 => 'El Paso, TX', - 1915564 => 'El Paso, TX', - 1915565 => 'El Paso, TX', - 1915566 => 'El Paso, TX', - 1915569 => 'El Paso, TX', - 1915577 => 'El Paso, TX', - 1915581 => 'El Paso, TX', - 1915584 => 'El Paso, TX', - 1915585 => 'El Paso, TX', - 1915587 => 'El Paso, TX', - 1915590 => 'El Paso, TX', - 1915591 => 'El Paso, TX', - 1915592 => 'El Paso, TX', - 1915593 => 'El Paso, TX', - 1915594 => 'El Paso, TX', - 1915595 => 'El Paso, TX', - 1915598 => 'El Paso, TX', - 1915599 => 'El Paso, TX', - 1915613 => 'El Paso, TX', - 1915629 => 'El Paso, TX', - 1915633 => 'El Paso, TX', - 1915751 => 'El Paso, TX', - 1915755 => 'El Paso, TX', - 1915757 => 'El Paso, TX', - 1915759 => 'El Paso, TX', - 1915760 => 'El Paso, TX', - 1915764 => 'Fabens, TX', - 1915771 => 'El Paso, TX', - 1915772 => 'El Paso, TX', - 1915774 => 'El Paso, TX', - 1915775 => 'El Paso, TX', - 1915778 => 'El Paso, TX', - 1915779 => 'El Paso, TX', - 1915781 => 'El Paso, TX', - 1915790 => 'El Paso, TX', - 1915821 => 'El Paso, TX', - 1915833 => 'El Paso, TX', - 1915838 => 'El Paso, TX', - 1915842 => 'El Paso, TX', - 1915843 => 'El Paso, TX', - 1915845 => 'El Paso, TX', - 1915849 => 'El Paso, TX', - 1915852 => 'El Paso, TX', - 1915855 => 'El Paso, TX', - 1915856 => 'El Paso, TX', - 1915857 => 'El Paso, TX', - 1915858 => 'El Paso, TX', - 1915859 => 'El Paso, TX', - 1915860 => 'El Paso, TX', - 1915872 => 'El Paso, TX', - 1915875 => 'El Paso, TX', - 1915877 => 'Canutillo, TX', - 1915881 => 'El Paso, TX', - 1915886 => 'Anthony, TX', - 1915921 => 'El Paso, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1916.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1916.php deleted file mode 100644 index 10083e611..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1916.php +++ /dev/null @@ -1,196 +0,0 @@ - 'California', - 1916285 => 'Sacramento, CA', - 1916294 => 'Folsom, CA', - 1916315 => 'Rocklin, CA', - 1916325 => 'Sacramento, CA', - 1916333 => 'Sacramento, CA', - 1916338 => 'Sacramento, CA', - 1916351 => 'Folsom, CA', - 1916353 => 'Folsom, CA', - 1916354 => 'Rancho Murieta, CA', - 1916355 => 'Folsom, CA', - 1916358 => 'El Dorado Hills, CA', - 1916361 => 'Sacramento, CA', - 1916362 => 'Sacramento, CA', - 1916363 => 'Sacramento, CA', - 1916364 => 'Sacramento, CA', - 1916366 => 'Sacramento, CA', - 1916368 => 'Sacramento, CA', - 1916369 => 'Sacramento, CA', - 1916371 => 'West Sacramento, CA', - 1916372 => 'West Sacramento, CA', - 1916373 => 'West Sacramento, CA', - 1916374 => 'West Sacramento, CA', - 1916375 => 'West Sacramento, CA', - 1916376 => 'West Sacramento, CA', - 1916379 => 'Sacramento, CA', - 1916381 => 'Sacramento, CA', - 1916383 => 'Sacramento, CA', - 1916386 => 'Sacramento, CA', - 1916387 => 'Sacramento, CA', - 1916388 => 'Sacramento, CA', - 1916391 => 'Sacramento, CA', - 1916392 => 'Sacramento, CA', - 1916393 => 'Sacramento, CA', - 1916394 => 'Sacramento, CA', - 1916395 => 'Sacramento, CA', - 1916399 => 'Sacramento, CA', - 1916408 => 'Lincoln, CA', - 1916419 => 'Sacramento, CA', - 1916421 => 'Sacramento, CA', - 1916422 => 'Sacramento, CA', - 1916423 => 'Sacramento, CA', - 1916424 => 'Sacramento, CA', - 1916427 => 'Sacramento, CA', - 1916428 => 'Sacramento, CA', - 1916429 => 'Sacramento, CA', - 1916434 => 'Lincoln, CA', - 1916435 => 'Rocklin, CA', - 1916440 => 'Sacramento, CA', - 1916441 => 'Sacramento, CA', - 1916442 => 'Sacramento, CA', - 1916443 => 'Sacramento, CA', - 1916444 => 'Sacramento, CA', - 1916446 => 'Sacramento, CA', - 1916447 => 'Sacramento, CA', - 1916448 => 'Sacramento, CA', - 1916449 => 'Sacramento, CA', - 1916451 => 'Sacramento, CA', - 1916452 => 'Sacramento, CA', - 1916453 => 'Sacramento, CA', - 1916454 => 'Sacramento, CA', - 1916455 => 'Sacramento, CA', - 1916456 => 'Sacramento, CA', - 1916457 => 'Sacramento, CA', - 1916473 => 'Sacramento, CA', - 1916476 => 'Sacramento, CA', - 1916478 => 'Elk Grove, CA', - 1916480 => 'Sacramento, CA', - 1916481 => 'Sacramento, CA', - 1916482 => 'Sacramento, CA', - 1916483 => 'Sacramento, CA', - 1916484 => 'Sacramento, CA', - 1916485 => 'Sacramento, CA', - 1916486 => 'Sacramento, CA', - 1916487 => 'Sacramento, CA', - 1916488 => 'Sacramento, CA', - 1916489 => 'Sacramento, CA', - 1916492 => 'Sacramento, CA', - 1916498 => 'Sacramento, CA', - 1916514 => 'Sacramento, CA', - 1916515 => 'Sacramento, CA', - 1916525 => 'Sacramento, CA', - 1916537 => 'Carmichael, CA', - 1916543 => 'Lincoln, CA', - 1916550 => 'Sacramento, CA', - 1916564 => 'Sacramento, CA', - 1916565 => 'Sacramento, CA', - 1916567 => 'Sacramento, CA', - 1916568 => 'Sacramento, CA', - 1916608 => 'Folsom, CA', - 1916609 => 'Carmichael, CA', - 1916614 => 'Sacramento, CA', - 1916624 => 'Rocklin, CA', - 1916625 => 'Rocklin, CA', - 1916630 => 'Rocklin, CA', - 1916631 => 'Rancho Cordova, CA', - 1916632 => 'Rocklin, CA', - 1916635 => 'Rancho Cordova, CA', - 1916638 => 'Rancho Cordova, CA', - 1916641 => 'Sacramento, CA', - 1916645 => 'Lincoln, CA', - 1916646 => 'Sacramento, CA', - 1916648 => 'Sacramento, CA', - 1916649 => 'Sacramento, CA', - 1916652 => 'Loomis, CA', - 1916660 => 'Loomis, CA', - 1916663 => 'Newcastle, CA', - 1916681 => 'Sacramento, CA', - 1916682 => 'Sacramento, CA', - 1916683 => 'Elk Grove, CA', - 1916684 => 'Elk Grove, CA', - 1916685 => 'Elk Grove, CA', - 1916686 => 'Elk Grove, CA', - 1916687 => 'Wilton, CA', - 1916688 => 'Sacramento, CA', - 1916689 => 'Sacramento, CA', - 1916691 => 'Elk Grove, CA', - 1916706 => 'Sacramento, CA', - 1916714 => 'Elk Grove, CA', - 1916721 => 'Citrus Heights, CA', - 1916722 => 'Citrus Heights, CA', - 1916723 => 'Citrus Heights, CA', - 1916725 => 'Citrus Heights, CA', - 1916726 => 'Citrus Heights, CA', - 1916727 => 'Citrus Heights, CA', - 1916728 => 'Citrus Heights, CA', - 1916729 => 'Citrus Heights, CA', - 1916731 => 'Sacramento, CA', - 1916733 => 'Sacramento, CA', - 1916734 => 'Sacramento, CA', - 1916736 => 'Sacramento, CA', - 1916737 => 'Sacramento, CA', - 1916739 => 'Sacramento, CA', - 1916771 => 'Roseville, CA', - 1916772 => 'Roseville, CA', - 1916773 => 'Roseville, CA', - 1916774 => 'Roseville, CA', - 1916776 => 'Walnut Grove, CA', - 1916777 => 'Isleton, CA', - 1916780 => 'Roseville, CA', - 1916781 => 'Roseville, CA', - 1916782 => 'Roseville, CA', - 1916783 => 'Roseville, CA', - 1916784 => 'Roseville, CA', - 1916786 => 'Roseville, CA', - 1916787 => 'Roseville, CA', - 1916788 => 'Roseville, CA', - 1916789 => 'Roseville, CA', - 1916808 => 'Sacramento, CA', - 1916817 => 'Folsom, CA', - 1916851 => 'Rancho Cordova, CA', - 1916852 => 'Rancho Cordova, CA', - 1916853 => 'Rancho Cordova, CA', - 1916858 => 'Rancho Cordova, CA', - 1916863 => 'Fair Oaks, CA', - 1916874 => 'Sacramento, CA', - 1916875 => 'Sacramento, CA', - 1916920 => 'Sacramento, CA', - 1916921 => 'Sacramento, CA', - 1916922 => 'Sacramento, CA', - 1916923 => 'Sacramento, CA', - 1916924 => 'Sacramento, CA', - 1916925 => 'Sacramento, CA', - 1916927 => 'Sacramento, CA', - 1916928 => 'Sacramento, CA', - 1916929 => 'Sacramento, CA', - 1916930 => 'Sacramento, CA', - 1916932 => 'Folsom, CA', - 1916933 => 'El Dorado Hills, CA', - 1916939 => 'El Dorado Hills, CA', - 1916941 => 'El Dorado Hills, CA', - 1916944 => 'Carmichael, CA', - 1916962 => 'Fair Oaks, CA', - 1916965 => 'Fair Oaks, CA', - 1916966 => 'Fair Oaks, CA', - 1916967 => 'Fair Oaks, CA', - 1916972 => 'Sacramento, CA', - 1916973 => 'Sacramento, CA', - 1916978 => 'Sacramento, CA', - 1916979 => 'Sacramento, CA', - 1916983 => 'Folsom, CA', - 1916984 => 'Folsom, CA', - 1916985 => 'Folsom, CA', - 1916987 => 'Orangevale, CA', - 1916988 => 'Orangevale, CA', - 1916989 => 'Orangevale, CA', - 1916991 => 'Rio Linda, CA', - 1916992 => 'Rio Linda, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1917.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1917.php deleted file mode 100644 index 32d9cb550..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1917.php +++ /dev/null @@ -1,9 +0,0 @@ - 'New York', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1918.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1918.php deleted file mode 100644 index 354a6de0b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1918.php +++ /dev/null @@ -1,200 +0,0 @@ - 'Oklahoma', - 1918207 => 'Tahlequah, OK', - 1918224 => 'Sapulpa, OK', - 1918225 => 'Cushing, OK', - 1918227 => 'Sapulpa, OK', - 1918234 => 'Tulsa, OK', - 1918241 => 'Sand Springs, OK', - 1918245 => 'Sand Springs, OK', - 1918246 => 'Sand Springs, OK', - 1918249 => 'Tulsa, OK', - 1918250 => 'Tulsa, OK', - 1918251 => 'Broken Arrow, OK', - 1918252 => 'Tulsa, OK', - 1918253 => 'Jay, OK', - 1918254 => 'Tulsa, OK', - 1918256 => 'Vinita, OK', - 1918257 => 'Afton, OK', - 1918258 => 'Broken Arrow, OK', - 1918259 => 'Broken Arrow, OK', - 1918266 => 'Catoosa, OK', - 1918267 => 'Beggs, OK', - 1918270 => 'Tulsa, OK', - 1918272 => 'Owasso, OK', - 1918273 => 'Nowata, OK', - 1918274 => 'Owasso, OK', - 1918279 => 'Coweta, OK', - 1918283 => 'Claremore, OK', - 1918286 => 'Broken Arrow, OK', - 1918287 => 'Pawhuska, OK', - 1918289 => 'Tulsa, OK', - 1918291 => 'Glenpool, OK', - 1918293 => 'Tulsa, OK', - 1918294 => 'Tulsa, OK', - 1918295 => 'Tulsa, OK', - 1918297 => 'Hartshorne, OK', - 1918298 => 'Tulsa, OK', - 1918302 => 'McAlester, OK', - 1918307 => 'Tulsa, OK', - 1918321 => 'Kiefer, OK', - 1918331 => 'Bartlesville, OK', - 1918333 => 'Bartlesville, OK', - 1918335 => 'Bartlesville, OK', - 1918336 => 'Bartlesville, OK', - 1918337 => 'Bartlesville, OK', - 1918341 => 'Claremore, OK', - 1918342 => 'Claremore, OK', - 1918343 => 'Claremore, OK', - 1918352 => 'Drumright, OK', - 1918355 => 'Broken Arrow, OK', - 1918357 => 'Broken Arrow, OK', - 1918358 => 'Cleveland, OK', - 1918366 => 'Bixby, OK', - 1918367 => 'Bristow, OK', - 1918369 => 'Bixby, OK', - 1918371 => 'Collinsville, OK', - 1918376 => 'Owasso, OK', - 1918382 => 'Tulsa, OK', - 1918392 => 'Tulsa, OK', - 1918394 => 'Tulsa, OK', - 1918396 => 'Skiatook, OK', - 1918398 => 'Tulsa, OK', - 1918420 => 'McAlester, OK', - 1918421 => 'McAlester, OK', - 1918422 => 'Colcord, OK', - 1918423 => 'McAlester, OK', - 1918425 => 'Tulsa, OK', - 1918426 => 'McAlester, OK', - 1918427 => 'Muldrow, OK', - 1918429 => 'McAlester, OK', - 1918431 => 'Tahlequah, OK', - 1918434 => 'Salina, OK', - 1918436 => 'Pocola, OK', - 1918437 => 'Tulsa, OK', - 1918438 => 'Tulsa, OK', - 1918439 => 'Tulsa, OK', - 1918443 => 'Oologah, OK', - 1918445 => 'Tulsa, OK', - 1918446 => 'Tulsa, OK', - 1918447 => 'Tulsa, OK', - 1918449 => 'Broken Arrow, OK', - 1918451 => 'Broken Arrow, OK', - 1918453 => 'Tahlequah, OK', - 1918455 => 'Broken Arrow, OK', - 1918456 => 'Tahlequah, OK', - 1918458 => 'Tahlequah, OK', - 1918459 => 'Tulsa, OK', - 1918461 => 'Tulsa, OK', - 1918465 => 'Wilburton, OK', - 1918473 => 'Checotah, OK', - 1918476 => 'Chouteau, OK', - 1918477 => 'Tulsa, OK', - 1918478 => 'Fort Gibson, OK', - 1918479 => 'Locust Grove, OK', - 1918481 => 'Tulsa, OK', - 1918482 => 'Haskell, OK', - 1918485 => 'Wagoner, OK', - 1918486 => 'Coweta, OK', - 1918488 => 'Tulsa, OK', - 1918491 => 'Tulsa, OK', - 1918492 => 'Tulsa, OK', - 1918493 => 'Tulsa, OK', - 1918494 => 'Tulsa, OK', - 1918495 => 'Tulsa, OK', - 1918496 => 'Tulsa, OK', - 1918497 => 'Tulsa, OK', - 1918499 => 'Tulsa, OK', - 1918502 => 'Tulsa, OK', - 1918534 => 'Dewey, OK', - 1918540 => 'Miami, OK', - 1918542 => 'Miami, OK', - 1918543 => 'Inola, OK', - 1918567 => 'Talihina, OK', - 1918569 => 'Clayton, OK', - 1918574 => 'Tulsa, OK', - 1918579 => 'Tulsa, OK', - 1918582 => 'Tulsa, OK', - 1918583 => 'Tulsa, OK', - 1918584 => 'Tulsa, OK', - 1918585 => 'Tulsa, OK', - 1918587 => 'Tulsa, OK', - 1918588 => 'Tulsa, OK', - 1918591 => 'Tulsa, OK', - 1918592 => 'Tulsa, OK', - 1918594 => 'Tulsa, OK', - 1918596 => 'Tulsa, OK', - 1918599 => 'Tulsa, OK', - 1918609 => 'Owasso, OK', - 1918610 => 'Tulsa, OK', - 1918619 => 'Tulsa, OK', - 1918622 => 'Tulsa, OK', - 1918623 => 'Okemah, OK', - 1918627 => 'Tulsa, OK', - 1918628 => 'Tulsa, OK', - 1918647 => 'Poteau, OK', - 1918649 => 'Poteau, OK', - 1918652 => 'Henryetta, OK', - 1918653 => 'Heavener, OK', - 1918660 => 'Tulsa, OK', - 1918663 => 'Tulsa, OK', - 1918664 => 'Tulsa, OK', - 1918665 => 'Tulsa, OK', - 1918681 => 'Muskogee, OK', - 1918682 => 'Muskogee, OK', - 1918683 => 'Muskogee, OK', - 1918684 => 'Muskogee, OK', - 1918686 => 'Muskogee, OK', - 1918687 => 'Muskogee, OK', - 1918689 => 'Eufaula, OK', - 1918696 => 'Stilwell, OK', - 1918712 => 'Tulsa, OK', - 1918723 => 'Westville, OK', - 1918728 => 'Tulsa, OK', - 1918742 => 'Tulsa, OK', - 1918743 => 'Tulsa, OK', - 1918744 => 'Tulsa, OK', - 1918745 => 'Tulsa, OK', - 1918746 => 'Tulsa, OK', - 1918747 => 'Tulsa, OK', - 1918748 => 'Tulsa, OK', - 1918749 => 'Tulsa, OK', - 1918756 => 'Okmulgee, OK', - 1918758 => 'Okmulgee, OK', - 1918762 => 'Pawnee, OK', - 1918770 => 'Tulsa, OK', - 1918773 => 'Vian, OK', - 1918775 => 'Sallisaw, OK', - 1918779 => 'Tulsa, OK', - 1918786 => 'Grove, OK', - 1918787 => 'Grove, OK', - 1918789 => 'Chelsea, OK', - 1918794 => 'Tulsa, OK', - 1918806 => 'Broken Arrow, OK', - 1918824 => 'Pryor Creek, OK', - 1918825 => 'Pryor Creek, OK', - 1918828 => 'Tulsa, OK', - 1918832 => 'Tulsa, OK', - 1918834 => 'Tulsa, OK', - 1918835 => 'Tulsa, OK', - 1918836 => 'Tulsa, OK', - 1918838 => 'Tulsa, OK', - 1918865 => 'Mannford, OK', - 1918868 => 'Kansas, OK', - 1918872 => 'Broken Arrow, OK', - 1918877 => 'Tulsa, OK', - 1918885 => 'Hominy, OK', - 1918895 => 'Tulsa, OK', - 1918933 => 'Tulsa, OK', - 1918938 => 'Tulsa, OK', - 1918949 => 'Tulsa, OK', - 1918962 => 'Spiro, OK', - 1918967 => 'Stigler, OK', - 1918968 => 'Stroud, OK', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1919.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1919.php deleted file mode 100644 index f29978c87..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1919.php +++ /dev/null @@ -1,227 +0,0 @@ - 'North Carolina', - 1919207 => 'Benson, NC', - 1919209 => 'Smithfield, NC', - 1919212 => 'Raleigh, NC', - 1919217 => 'Knightdale, NC', - 1919220 => 'Durham, NC', - 1919231 => 'Raleigh, NC', - 1919232 => 'Raleigh, NC', - 1919237 => 'Durham, NC', - 1919240 => 'Chapel Hill, NC', - 1919242 => 'Fremont, NC', - 1919245 => 'Hillsborough, NC', - 1919250 => 'Raleigh, NC', - 1919251 => 'Durham, NC', - 1919255 => 'Raleigh, NC', - 1919256 => 'Raleigh, NC', - 1919258 => 'Broadway, NC', - 1919261 => 'Knightdale, NC', - 1919266 => 'Knightdale, NC', - 1919267 => 'Apex, NC', - 1919269 => 'Zebulon, NC', - 1919284 => 'Kenly, NC', - 1919286 => 'Durham, NC', - 1919303 => 'Apex, NC', - 1919304 => 'Mebane, NC', - 1919309 => 'Durham, NC', - 1919313 => 'Durham, NC', - 1919319 => 'Cary, NC', - 1919331 => 'Angier, NC', - 1919340 => 'Louisburg, NC', - 1919350 => 'Raleigh, NC', - 1919359 => 'Clayton, NC', - 1919361 => 'Durham, NC', - 1919362 => 'Apex, NC', - 1919363 => 'Apex, NC', - 1919365 => 'Wendell, NC', - 1919366 => 'Wendell, NC', - 1919367 => 'Apex, NC', - 1919380 => 'Cary, NC', - 1919381 => 'Durham, NC', - 1919382 => 'Durham, NC', - 1919383 => 'Durham, NC', - 1919387 => 'Apex, NC', - 1919388 => 'Cary, NC', - 1919401 => 'Durham, NC', - 1919402 => 'Durham, NC', - 1919403 => 'Durham, NC', - 1919404 => 'Zebulon, NC', - 1919405 => 'Durham, NC', - 1919416 => 'Durham, NC', - 1919419 => 'Durham, NC', - 1919420 => 'Raleigh, NC', - 1919424 => 'Raleigh, NC', - 1919453 => 'Wake Forest, NC', - 1919460 => 'Cary, NC', - 1919461 => 'Cary, NC', - 1919462 => 'Cary, NC', - 1919463 => 'Cary, NC', - 1919465 => 'Cary, NC', - 1919466 => 'Cary, NC', - 1919467 => 'Cary, NC', - 1919468 => 'Cary, NC', - 1919469 => 'Cary, NC', - 1919470 => 'Durham, NC', - 1919471 => 'Durham, NC', - 1919477 => 'Durham, NC', - 1919479 => 'Durham, NC', - 1919481 => 'Cary, NC', - 1919484 => 'Durham, NC', - 1919489 => 'Durham, NC', - 1919490 => 'Durham, NC', - 1919493 => 'Durham, NC', - 1919494 => 'Franklinton, NC', - 1919496 => 'Louisburg, NC', - 1919497 => 'Louisburg, NC', - 1919499 => 'Sanford, NC', - 1919510 => 'Raleigh, NC', - 1919515 => 'Raleigh, NC', - 1919518 => 'Raleigh, NC', - 1919528 => 'Creedmoor, NC', - 1919530 => 'Durham, NC', - 1919542 => 'Pittsboro, NC', - 1919544 => 'Durham, NC', - 1919545 => 'Pittsboro, NC', - 1919550 => 'Clayton, NC', - 1919552 => 'Fuquay-Varina, NC', - 1919553 => 'Clayton, NC', - 1919554 => 'Wake Forest, NC', - 1919556 => 'Wake Forest, NC', - 1919557 => 'Fuquay-Varina, NC', - 1919560 => 'Durham, NC', - 1919562 => 'Wake Forest, NC', - 1919563 => 'Mebane, NC', - 1919567 => 'Fuquay-Varina, NC', - 1919571 => 'Raleigh, NC', - 1919572 => 'Durham, NC', - 1919575 => 'Butner, NC', - 1919577 => 'Fuquay-Varina, NC', - 1919580 => 'Goldsboro, NC', - 1919585 => 'Clayton, NC', - 1919596 => 'Durham, NC', - 1919598 => 'Durham, NC', - 1919603 => 'Oxford, NC', - 1919620 => 'Durham, NC', - 1919639 => 'Angier, NC', - 1919644 => 'Hillsborough, NC', - 1919658 => 'Mount Olive, NC', - 1919660 => 'Durham, NC', - 1919661 => 'Garner, NC', - 1919662 => 'Garner, NC', - 1919663 => 'Siler City, NC', - 1919668 => 'Durham, NC', - 1919676 => 'Raleigh, NC', - 1919677 => 'Cary, NC', - 1919678 => 'Cary, NC', - 1919680 => 'Durham, NC', - 1919681 => 'Durham, NC', - 1919682 => 'Durham, NC', - 1919683 => 'Durham, NC', - 1919684 => 'Durham, NC', - 1919687 => 'Durham, NC', - 1919688 => 'Durham, NC', - 1919689 => 'Goldsboro, NC', - 1919690 => 'Oxford, NC', - 1919693 => 'Oxford, NC', - 1919708 => 'Sanford, NC', - 1919718 => 'Sanford, NC', - 1919731 => 'Goldsboro, NC', - 1919732 => 'Hillsborough, NC', - 1919733 => 'Raleigh, NC', - 1919734 => 'Goldsboro, NC', - 1919735 => 'Goldsboro, NC', - 1919736 => 'Goldsboro, NC', - 1919739 => 'Goldsboro, NC', - 1919742 => 'Siler City, NC', - 1919751 => 'Goldsboro, NC', - 1919755 => 'Raleigh, NC', - 1919772 => 'Garner, NC', - 1919773 => 'Garner, NC', - 1919774 => 'Sanford, NC', - 1919775 => 'Sanford, NC', - 1919776 => 'Sanford, NC', - 1919777 => 'Sanford, NC', - 1919778 => 'Goldsboro, NC', - 1919779 => 'Garner, NC', - 1919781 => 'Raleigh, NC', - 1919782 => 'Raleigh, NC', - 1919783 => 'Raleigh, NC', - 1919784 => 'Raleigh, NC', - 1919785 => 'Raleigh, NC', - 1919786 => 'Raleigh, NC', - 1919787 => 'Raleigh, NC', - 1919788 => 'Raleigh, NC', - 1919789 => 'Raleigh, NC', - 1919790 => 'Raleigh, NC', - 1919791 => 'Raleigh, NC', - 1919792 => 'Raleigh, NC', - 1919803 => 'Raleigh, NC', - 1919806 => 'Durham, NC', - 1919821 => 'Raleigh, NC', - 1919828 => 'Raleigh, NC', - 1919829 => 'Raleigh, NC', - 1919831 => 'Raleigh, NC', - 1919832 => 'Raleigh, NC', - 1919833 => 'Raleigh, NC', - 1919834 => 'Raleigh, NC', - 1919835 => 'Raleigh, NC', - 1919836 => 'Raleigh, NC', - 1919838 => 'Raleigh, NC', - 1919839 => 'Raleigh, NC', - 1919840 => 'Morrisville, NC', - 1919841 => 'Raleigh, NC', - 1919843 => 'Chapel Hill, NC', - 1919844 => 'Raleigh, NC', - 1919845 => 'Raleigh, NC', - 1919846 => 'Raleigh, NC', - 1919847 => 'Raleigh, NC', - 1919848 => 'Raleigh, NC', - 1919850 => 'Raleigh, NC', - 1919855 => 'Raleigh, NC', - 1919856 => 'Raleigh, NC', - 1919861 => 'Raleigh, NC', - 1919862 => 'Raleigh, NC', - 1919863 => 'Raleigh, NC', - 1919870 => 'Raleigh, NC', - 1919871 => 'Raleigh, NC', - 1919872 => 'Raleigh, NC', - 1919873 => 'Raleigh, NC', - 1919875 => 'Raleigh, NC', - 1919876 => 'Raleigh, NC', - 1919877 => 'Raleigh, NC', - 1919878 => 'Raleigh, NC', - 1919881 => 'Raleigh, NC', - 1919890 => 'Raleigh, NC', - 1919894 => 'Benson, NC', - 1919896 => 'Raleigh, NC', - 1919918 => 'Chapel Hill, NC', - 1919928 => 'Chapel Hill, NC', - 1919929 => 'Chapel Hill, NC', - 1919932 => 'Chapel Hill, NC', - 1919933 => 'Chapel Hill, NC', - 1919934 => 'Smithfield, NC', - 1919936 => 'Princeton, NC', - 1919938 => 'Smithfield, NC', - 1919941 => 'Durham, NC', - 1919942 => 'Chapel Hill, NC', - 1919954 => 'Raleigh, NC', - 1919956 => 'Durham, NC', - 1919957 => 'Durham, NC', - 1919960 => 'Chapel Hill, NC', - 1919962 => 'Chapel Hill, NC', - 1919963 => 'Four Oaks, NC', - 1919965 => 'Selma, NC', - 1919966 => 'Chapel Hill, NC', - 1919967 => 'Chapel Hill, NC', - 1919968 => 'Chapel Hill, NC', - 1919969 => 'Chapel Hill, NC', - 1919981 => 'Raleigh, NC', - 1919989 => 'Smithfield, NC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1920.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1920.php deleted file mode 100644 index f83222b54..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1920.php +++ /dev/null @@ -1,183 +0,0 @@ - 'Wisconsin', - 1920206 => 'Watertown, WI', - 1920208 => 'Sheboygan, WI', - 1920223 => 'Oshkosh, WI', - 1920230 => 'Oshkosh, WI', - 1920231 => 'Oshkosh, WI', - 1920232 => 'Oshkosh, WI', - 1920233 => 'Oshkosh, WI', - 1920235 => 'Oshkosh, WI', - 1920236 => 'Oshkosh, WI', - 1920261 => 'Watertown, WI', - 1920262 => 'Watertown, WI', - 1920269 => 'Lomira, WI', - 1920288 => 'Green Bay, WI', - 1920294 => 'Green Lake, WI', - 1920295 => 'Princeton, WI', - 1920303 => 'Oshkosh, WI', - 1920320 => 'Manitowoc, WI', - 1920322 => 'Fond du Lac, WI', - 1920324 => 'Waupun, WI', - 1920326 => 'Randolph, WI', - 1920330 => 'De Pere, WI', - 1920336 => 'De Pere, WI', - 1920337 => 'De Pere, WI', - 1920338 => 'De Pere, WI', - 1920339 => 'De Pere, WI', - 1920347 => 'De Pere, WI', - 1920356 => 'Beaver Dam, WI', - 1920361 => 'Berlin, WI', - 1920380 => 'Appleton, WI', - 1920386 => 'Juneau, WI', - 1920387 => 'Mayville, WI', - 1920388 => 'Kewaunee, WI', - 1920398 => 'Markesan, WI', - 1920405 => 'Green Bay, WI', - 1920406 => 'Green Bay, WI', - 1920424 => 'Oshkosh, WI', - 1920426 => 'Oshkosh, WI', - 1920430 => 'Green Bay, WI', - 1920431 => 'Green Bay, WI', - 1920432 => 'Green Bay, WI', - 1920433 => 'Green Bay, WI', - 1920434 => 'Green Bay, WI', - 1920435 => 'Green Bay, WI', - 1920436 => 'Green Bay, WI', - 1920437 => 'Green Bay, WI', - 1920446 => 'Fremont, WI', - 1920448 => 'Green Bay, WI', - 1920451 => 'Sheboygan, WI', - 1920452 => 'Sheboygan, WI', - 1920457 => 'Sheboygan, WI', - 1920458 => 'Sheboygan, WI', - 1920459 => 'Sheboygan, WI', - 1920465 => 'Green Bay, WI', - 1920467 => 'Sheboygan Falls, WI', - 1920468 => 'Green Bay, WI', - 1920469 => 'Green Bay, WI', - 1920478 => 'Waterloo, WI', - 1920485 => 'Horicon, WI', - 1920487 => 'Algoma, WI', - 1920490 => 'Green Bay, WI', - 1920494 => 'Green Bay, WI', - 1920496 => 'Green Bay, WI', - 1920497 => 'Green Bay, WI', - 1920498 => 'Green Bay, WI', - 1920499 => 'Green Bay, WI', - 1920532 => 'Wrightstown, WI', - 1920533 => 'Campbellsport, WI', - 1920544 => 'Green Bay, WI', - 1920563 => 'Fort Atkinson, WI', - 1920564 => 'Oostburg, WI', - 1920568 => 'Fort Atkinson, WI', - 1920574 => 'Appleton, WI', - 1920582 => 'Winneconne, WI', - 1920593 => 'Green Bay, WI', - 1920596 => 'Manawa, WI', - 1920622 => 'Wild Rose, WI', - 1920623 => 'Columbus, WI', - 1920648 => 'Lake Mills, WI', - 1920652 => 'Manitowoc, WI', - 1920662 => 'Green Bay, WI', - 1920668 => 'Cedar Grove, WI', - 1920674 => 'Jefferson, WI', - 1920682 => 'Manitowoc, WI', - 1920683 => 'Manitowoc, WI', - 1920684 => 'Manitowoc, WI', - 1920685 => 'Omro, WI', - 1920686 => 'Manitowoc, WI', - 1920693 => 'Cleveland, WI', - 1920699 => 'Johnson Creek, WI', - 1920720 => 'Neenah, WI', - 1920722 => 'Neenah, WI', - 1920725 => 'Neenah, WI', - 1920727 => 'Neenah, WI', - 1920729 => 'Neenah, WI', - 1920730 => 'Appleton, WI', - 1920731 => 'Appleton, WI', - 1920733 => 'Appleton, WI', - 1920734 => 'Appleton, WI', - 1920735 => 'Appleton, WI', - 1920738 => 'Appleton, WI', - 1920739 => 'Appleton, WI', - 1920743 => 'Sturgeon Bay, WI', - 1920746 => 'Sturgeon Bay, WI', - 1920748 => 'Ripon, WI', - 1920749 => 'Appleton, WI', - 1920751 => 'Neenah, WI', - 1920755 => 'Mishicot, WI', - 1920756 => 'Brillion, WI', - 1920757 => 'Greenville, WI', - 1920758 => 'Manitowoc, WI', - 1920759 => 'Kaukauna, WI', - 1920766 => 'Kaukauna, WI', - 1920775 => 'Valders, WI', - 1920779 => 'Hortonville, WI', - 1920787 => 'Wautoma, WI', - 1920793 => 'Two Rivers, WI', - 1920794 => 'Two Rivers, WI', - 1920803 => 'Sheboygan, WI', - 1920822 => 'Pulaski, WI', - 1920826 => 'Abrams, WI', - 1920830 => 'Appleton, WI', - 1920831 => 'Appleton, WI', - 1920832 => 'Appleton, WI', - 1920833 => 'Seymour, WI', - 1920834 => 'Oconto, WI', - 1920836 => 'Larsen, WI', - 1920837 => 'Casco, WI', - 1920839 => 'Baileys Harbor, WI', - 1920842 => 'Suring, WI', - 1920845 => 'Luxemburg, WI', - 1920846 => 'Oconto Falls, WI', - 1920849 => 'Chilton, WI', - 1920853 => 'Hilbert, WI', - 1920854 => 'Sister Bay, WI', - 1920855 => 'Gillett, WI', - 1920863 => 'Denmark, WI', - 1920864 => 'Greenleaf, WI', - 1920866 => 'New Franken, WI', - 1920867 => 'Weyauwega, WI', - 1920868 => 'Fish Creek, WI', - 1920869 => 'Oneida, WI', - 1920876 => 'Elkhart Lake, WI', - 1920882 => 'Appleton, WI', - 1920884 => 'Green Bay, WI', - 1920885 => 'Beaver Dam, WI', - 1920886 => 'Neenah, WI', - 1920887 => 'Beaver Dam, WI', - 1920892 => 'Plymouth, WI', - 1920893 => 'Plymouth, WI', - 1920894 => 'Kiel, WI', - 1920897 => 'Coleman, WI', - 1920898 => 'New Holstein, WI', - 1920907 => 'Fond du Lac, WI', - 1920921 => 'Fond du Lac, WI', - 1920922 => 'Fond du Lac, WI', - 1920923 => 'Fond du Lac, WI', - 1920924 => 'Fond du Lac, WI', - 1920926 => 'Fond du Lac, WI', - 1920928 => 'Fox Lake, WI', - 1920929 => 'Fond du Lac, WI', - 1920933 => 'Fond du Lac, WI', - 1920954 => 'Appleton, WI', - 1920964 => 'De Pere, WI', - 1920965 => 'Green Bay, WI', - 1920968 => 'Appleton, WI', - 1920969 => 'Neenah, WI', - 1920982 => 'New London, WI', - 1920983 => 'De Pere, WI', - 1920984 => 'Black Creek, WI', - 1920992 => 'Rio, WI', - 1920993 => 'Appleton, WI', - 1920994 => 'Random Lake, WI', - 1920996 => 'Appleton, WI', - 1920997 => 'Appleton, WI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1925.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1925.php deleted file mode 100644 index ef3e4d21d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1925.php +++ /dev/null @@ -1,160 +0,0 @@ - 'California', - 1925210 => 'Walnut Creek, CA', - 1925225 => 'Pleasanton, CA', - 1925227 => 'Pleasanton, CA', - 1925228 => 'Martinez, CA', - 1925229 => 'Martinez, CA', - 1925240 => 'Brentwood, CA', - 1925242 => 'San Ramon, CA', - 1925243 => 'Livermore, CA', - 1925244 => 'San Ramon, CA', - 1925245 => 'Livermore, CA', - 1925249 => 'Pleasanton, CA', - 1925251 => 'Pleasanton, CA', - 1925252 => 'Pittsburg, CA', - 1925253 => 'Orinda, CA', - 1925254 => 'Orinda, CA', - 1925256 => 'Walnut Creek, CA', - 1925258 => 'Orinda, CA', - 1925274 => 'Walnut Creek, CA', - 1925275 => 'San Ramon, CA', - 1925277 => 'San Ramon, CA', - 1925280 => 'Walnut Creek, CA', - 1925283 => 'Lafayette, CA', - 1925284 => 'Lafayette, CA', - 1925287 => 'Walnut Creek, CA', - 1925288 => 'Concord, CA', - 1925292 => 'Livermore, CA', - 1925294 => 'Livermore, CA', - 1925295 => 'Walnut Creek, CA', - 1925296 => 'Walnut Creek, CA', - 1925299 => 'Lafayette, CA', - 1925308 => 'Brentwood, CA', - 1925313 => 'Martinez, CA', - 1925314 => 'Danville, CA', - 1925335 => 'Martinez, CA', - 1925355 => 'San Ramon, CA', - 1925356 => 'Concord, CA', - 1925363 => 'Concord, CA', - 1925370 => 'Martinez, CA', - 1925371 => 'Livermore, CA', - 1925372 => 'Martinez, CA', - 1925373 => 'Livermore, CA', - 1925376 => 'Moraga, CA', - 1925377 => 'Moraga, CA', - 1925416 => 'Pleasanton, CA', - 1925417 => 'Pleasanton, CA', - 1925426 => 'Pleasanton, CA', - 1925427 => 'Pittsburg, CA', - 1925432 => 'Pittsburg, CA', - 1925439 => 'Pittsburg, CA', - 1925443 => 'Livermore, CA', - 1925447 => 'Livermore, CA', - 1925449 => 'Livermore, CA', - 1925454 => 'Livermore, CA', - 1925455 => 'Livermore, CA', - 1925456 => 'Livermore, CA', - 1925458 => 'Bay Point, CA', - 1925460 => 'Pleasanton, CA', - 1925461 => 'Pleasanton, CA', - 1925462 => 'Pleasanton, CA', - 1925463 => 'Pleasanton, CA', - 1925469 => 'Pleasanton, CA', - 1925472 => 'Walnut Creek, CA', - 1925473 => 'Pittsburg, CA', - 1925478 => 'Walnut Creek, CA', - 1925484 => 'Pleasanton, CA', - 1925485 => 'Pleasanton, CA', - 1925513 => 'Brentwood, CA', - 1925516 => 'Brentwood, CA', - 1925521 => 'Concord, CA', - 1925522 => 'Antioch, CA', - 1925543 => 'San Ramon, CA', - 1925551 => 'Dublin, CA', - 1925556 => 'Dublin, CA', - 1925560 => 'Dublin, CA', - 1925600 => 'Pleasanton, CA', - 1925603 => 'Concord, CA', - 1925606 => 'Livermore, CA', - 1925609 => 'Concord, CA', - 1925625 => 'Oakley, CA', - 1925631 => 'Moraga, CA', - 1925634 => 'Brentwood, CA', - 1925648 => 'Danville, CA', - 1925671 => 'Concord, CA', - 1925672 => 'Clayton, CA', - 1925673 => 'Clayton, CA', - 1925674 => 'Concord, CA', - 1925676 => 'Concord, CA', - 1925679 => 'Oakley, CA', - 1925680 => 'Concord, CA', - 1925681 => 'Concord, CA', - 1925682 => 'Concord, CA', - 1925684 => 'Bethel Island, CA', - 1925685 => 'Concord, CA', - 1925686 => 'Concord, CA', - 1925687 => 'Concord, CA', - 1925689 => 'Concord, CA', - 1925691 => 'Concord, CA', - 1925706 => 'Antioch, CA', - 1925734 => 'Pleasanton, CA', - 1925735 => 'San Ramon, CA', - 1925736 => 'Danville, CA', - 1925743 => 'Danville, CA', - 1925754 => 'Antioch, CA', - 1925755 => 'Antioch, CA', - 1925756 => 'Antioch, CA', - 1925757 => 'Antioch, CA', - 1925776 => 'Antioch, CA', - 1925777 => 'Antioch, CA', - 1925778 => 'Antioch, CA', - 1925779 => 'Antioch, CA', - 1925798 => 'Concord, CA', - 1925803 => 'Dublin, CA', - 1925813 => 'Antioch, CA', - 1925820 => 'Danville, CA', - 1925825 => 'Concord, CA', - 1925827 => 'Concord, CA', - 1925828 => 'Dublin, CA', - 1925829 => 'Dublin, CA', - 1925830 => 'San Ramon, CA', - 1925833 => 'Dublin, CA', - 1925837 => 'Danville, CA', - 1925846 => 'Pleasanton, CA', - 1925847 => 'Pleasanton, CA', - 1925849 => 'Concord, CA', - 1925866 => 'San Ramon, CA', - 1925875 => 'Dublin, CA', - 1925906 => 'Walnut Creek, CA', - 1925924 => 'Pleasanton, CA', - 1925930 => 'Walnut Creek, CA', - 1925931 => 'Pleasanton, CA', - 1925932 => 'Walnut Creek, CA', - 1925933 => 'Walnut Creek, CA', - 1925934 => 'Walnut Creek, CA', - 1925935 => 'Walnut Creek, CA', - 1925937 => 'Walnut Creek, CA', - 1925938 => 'Walnut Creek, CA', - 1925939 => 'Walnut Creek, CA', - 1925943 => 'Walnut Creek, CA', - 1925944 => 'Walnut Creek, CA', - 1925945 => 'Walnut Creek, CA', - 1925946 => 'Walnut Creek, CA', - 1925947 => 'Walnut Creek, CA', - 1925952 => 'Walnut Creek, CA', - 1925954 => 'Walnut Creek, CA', - 1925957 => 'Martinez, CA', - 1925960 => 'Livermore, CA', - 1925962 => 'Lafayette, CA', - 1925969 => 'Concord, CA', - 1925978 => 'Antioch, CA', - 1925979 => 'Walnut Creek, CA', - 1925988 => 'Walnut Creek, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1928.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1928.php deleted file mode 100644 index aa338738d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1928.php +++ /dev/null @@ -1,109 +0,0 @@ - 'Arizona', - 1928203 => 'Sedona, AZ', - 1928204 => 'Sedona, AZ', - 1928213 => 'Flagstaff, AZ', - 1928214 => 'Flagstaff, AZ', - 1928226 => 'Flagstaff, AZ', - 1928237 => 'Prescott, AZ', - 1928282 => 'Sedona, AZ', - 1928283 => 'Tuba City, AZ', - 1928284 => 'Sedona, AZ', - 1928289 => 'Winslow, AZ', - 1928314 => 'Yuma, AZ', - 1928317 => 'Yuma, AZ', - 1928329 => 'Yuma, AZ', - 1928333 => 'Springerville, AZ', - 1928337 => 'St. Johns, AZ', - 1928338 => 'Whiteriver, AZ', - 1928341 => 'Yuma, AZ', - 1928342 => 'Yuma, AZ', - 1928343 => 'Yuma, AZ', - 1928344 => 'Yuma, AZ', - 1928345 => 'Yuma, AZ', - 1928348 => 'Safford, AZ', - 1928367 => 'Pinetop, AZ', - 1928368 => 'Lakeside, AZ', - 1928373 => 'Yuma, AZ', - 1928425 => 'Globe, AZ', - 1928428 => 'Safford, AZ', - 1928442 => 'Prescott, AZ', - 1928443 => 'Prescott, AZ', - 1928445 => 'Prescott, AZ', - 1928453 => 'Lake Havasu City, AZ', - 1928468 => 'Payson, AZ', - 1928472 => 'Payson, AZ', - 1928474 => 'Payson, AZ', - 1928475 => 'San Carlos, AZ', - 1928476 => 'Pine, AZ', - 1928505 => 'Lake Havasu City, AZ', - 1928522 => 'Flagstaff, AZ', - 1928524 => 'Holbrook, AZ', - 1928526 => 'Flagstaff, AZ', - 1928527 => 'Flagstaff, AZ', - 1928532 => 'Show Low, AZ', - 1928536 => 'Snowflake, AZ', - 1928537 => 'Show Low, AZ', - 1928541 => 'Prescott, AZ', - 1928556 => 'Flagstaff, AZ', - 1928565 => 'Golden Valley, AZ', - 1928567 => 'Camp Verde, AZ', - 1928607 => 'Flagstaff, AZ', - 1928634 => 'Cottonwood, AZ', - 1928635 => 'Williams, AZ', - 1928636 => 'Chino Valley, AZ', - 1928638 => 'Grand Canyon Village, AZ', - 1928639 => 'Cottonwood, AZ', - 1928645 => 'Page, AZ', - 1928649 => 'Cottonwood, AZ', - 1928669 => 'Parker, AZ', - 1928674 => 'Chinle, AZ', - 1928680 => 'Lake Havasu City, AZ', - 1928681 => 'Kingman, AZ', - 1928684 => 'Wickenburg, AZ', - 1928692 => 'Kingman, AZ', - 1928697 => 'Kayenta, AZ', - 1928699 => 'Flagstaff, AZ', - 1928704 => 'Bullhead City, AZ', - 1928708 => 'Prescott, AZ', - 1928710 => 'Prescott, AZ', - 1928714 => 'Flagstaff, AZ', - 1928717 => 'Prescott, AZ', - 1928718 => 'Kingman, AZ', - 1928726 => 'Yuma, AZ', - 1928729 => 'Fort Defiance, AZ', - 1928753 => 'Kingman, AZ', - 1928754 => 'Bullhead City, AZ', - 1928757 => 'Kingman, AZ', - 1928758 => 'Bullhead City, AZ', - 1928759 => 'Prescott Valley, AZ', - 1928763 => 'Bullhead City, AZ', - 1928764 => 'Lake Havasu City, AZ', - 1928771 => 'Prescott, AZ', - 1928772 => 'Prescott Valley, AZ', - 1928773 => 'Flagstaff, AZ', - 1928774 => 'Flagstaff, AZ', - 1928775 => 'Prescott Valley, AZ', - 1928776 => 'Prescott, AZ', - 1928777 => 'Prescott, AZ', - 1928778 => 'Prescott, AZ', - 1928779 => 'Flagstaff, AZ', - 1928782 => 'Yuma, AZ', - 1928783 => 'Yuma, AZ', - 1928785 => 'Wellton, AZ', - 1928788 => 'Fort Mohave, AZ', - 1928853 => 'Flagstaff, AZ', - 1928854 => 'Lake Havasu City, AZ', - 1928855 => 'Lake Havasu City, AZ', - 1928859 => 'Salome, AZ', - 1928865 => 'Clifton, AZ', - 1928871 => 'Window Rock, AZ', - 1928899 => 'Prescott, AZ', - 1928927 => 'Quartzsite, AZ', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1929.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1929.php deleted file mode 100644 index 0d87078d8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1929.php +++ /dev/null @@ -1,9 +0,0 @@ - 'New York', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1930.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1930.php deleted file mode 100644 index 2284b16e6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1930.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Indiana', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1931.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1931.php deleted file mode 100644 index d520573e6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1931.php +++ /dev/null @@ -1,104 +0,0 @@ - 'Tennessee', - 1931221 => 'Clarksville, TN', - 1931223 => 'Columbia, TN', - 1931232 => 'Dover, TN', - 1931243 => 'Celina, TN', - 1931245 => 'Clarksville, TN', - 1931268 => 'Gainesboro, TN', - 1931270 => 'Lewisburg, TN', - 1931289 => 'Erin, TN', - 1931296 => 'Waverly, TN', - 1931320 => 'Clarksville, TN', - 1931358 => 'Clarksville, TN', - 1931359 => 'Lewisburg, TN', - 1931363 => 'Pulaski, TN', - 1931364 => 'Chapel Hill, TN', - 1931372 => 'Cookeville, TN', - 1931379 => 'Mount Pleasant, TN', - 1931380 => 'Columbia, TN', - 1931381 => 'Columbia, TN', - 1931388 => 'Columbia, TN', - 1931393 => 'Tullahoma, TN', - 1931424 => 'Pulaski, TN', - 1931427 => 'Ardmore, TN', - 1931431 => 'Clarksville, TN', - 1931432 => 'Cookeville, TN', - 1931433 => 'Fayetteville, TN', - 1931438 => 'Fayetteville, TN', - 1931454 => 'Tullahoma, TN', - 1931455 => 'Tullahoma, TN', - 1931456 => 'Crossville, TN', - 1931461 => 'Tullahoma, TN', - 1931473 => 'McMinnville, TN', - 1931474 => 'McMinnville, TN', - 1931484 => 'Crossville, TN', - 1931486 => 'Spring Hill, TN', - 1931490 => 'Columbia, TN', - 1931503 => 'Clarksville, TN', - 1931507 => 'McMinnville, TN', - 1931520 => 'Cookeville, TN', - 1931525 => 'Cookeville, TN', - 1931526 => 'Cookeville, TN', - 1931528 => 'Cookeville, TN', - 1931535 => 'New Johnsonville, TN', - 1931537 => 'Cookeville, TN', - 1931542 => 'Clarksville, TN', - 1931551 => 'Clarksville, TN', - 1931552 => 'Clarksville, TN', - 1931553 => 'Clarksville, TN', - 1931582 => 'McEwen, TN', - 1931589 => 'Linden, TN', - 1931592 => 'Tracy City, TN', - 1931598 => 'Sewanee, TN', - 1931645 => 'Clarksville, TN', - 1931647 => 'Clarksville, TN', - 1931648 => 'Clarksville, TN', - 1931668 => 'McMinnville, TN', - 1931670 => 'Lyles, TN', - 1931680 => 'Shelbyville, TN', - 1931684 => 'Shelbyville, TN', - 1931685 => 'Shelbyville, TN', - 1931686 => 'Rock Island, TN', - 1931707 => 'Crossville, TN', - 1931722 => 'Waynesboro, TN', - 1931723 => 'Manchester, TN', - 1931724 => 'Collinwood, TN', - 1931728 => 'Manchester, TN', - 1931729 => 'Centerville, TN', - 1931738 => 'Sparta, TN', - 1931759 => 'Lynchburg, TN', - 1931761 => 'Sparta, TN', - 1931762 => 'Lawrenceburg, TN', - 1931766 => 'Lawrenceburg, TN', - 1931779 => 'Gruetli-Laager, TN', - 1931787 => 'Crossville, TN', - 1931788 => 'Crossville, TN', - 1931796 => 'Hohenwald, TN', - 1931802 => 'Clarksville, TN', - 1931815 => 'McMinnville, TN', - 1931823 => 'Livingston, TN', - 1931836 => 'Sparta, TN', - 1931837 => 'Sparta, TN', - 1931839 => 'Monterey, TN', - 1931840 => 'Columbia, TN', - 1931852 => 'Leoma, TN', - 1931853 => 'Loretto, TN', - 1931858 => 'Baxter, TN', - 1931863 => 'Clarkrange, TN', - 1931864 => 'Byrdstown, TN', - 1931879 => 'Jamestown, TN', - 1931905 => 'Clarksville, TN', - 1931906 => 'Clarksville, TN', - 1931920 => 'Clarksville, TN', - 1931924 => 'Monteagle, TN', - 1931946 => 'Spencer, TN', - 1931962 => 'Winchester, TN', - 1931967 => 'Winchester, TN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1934.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1934.php deleted file mode 100644 index dcc762660..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1934.php +++ /dev/null @@ -1,9 +0,0 @@ - 'New York, NY', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1936.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1936.php deleted file mode 100644 index 27347c997..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1936.php +++ /dev/null @@ -1,75 +0,0 @@ - 'Texas', - 1936231 => 'Conroe, TX', - 1936254 => 'Timpson, TX', - 1936257 => 'Dayton, TX', - 1936258 => 'Dayton, TX', - 1936264 => 'Conroe, TX', - 1936269 => 'Joaquin, TX', - 1936271 => 'Conroe, TX', - 1936273 => 'Conroe, TX', - 1936275 => 'San Augustine, TX', - 1936291 => 'Huntsville, TX', - 1936293 => 'Huntsville, TX', - 1936294 => 'Huntsville, TX', - 1936295 => 'Huntsville, TX', - 1936327 => 'Livingston, TX', - 1936328 => 'Livingston, TX', - 1936334 => 'Liberty, TX', - 1936336 => 'Liberty, TX', - 1936344 => 'New Waverly, TX', - 1936348 => 'Madisonville, TX', - 1936372 => 'Waller, TX', - 1936398 => 'Corrigan, TX', - 1936435 => 'Huntsville, TX', - 1936436 => 'Huntsville, TX', - 1936439 => 'Huntsville, TX', - 1936441 => 'Conroe, TX', - 1936448 => 'Montgomery, TX', - 1936449 => 'Montgomery, TX', - 1936462 => 'Nacogdoches, TX', - 1936494 => 'Conroe, TX', - 1936522 => 'Conroe, TX', - 1936539 => 'Conroe, TX', - 1936544 => 'Crockett, TX', - 1936559 => 'Nacogdoches, TX', - 1936560 => 'Nacogdoches, TX', - 1936564 => 'Nacogdoches, TX', - 1936569 => 'Nacogdoches, TX', - 1936582 => 'Montgomery, TX', - 1936588 => 'Montgomery, TX', - 1936590 => 'Center, TX', - 1936591 => 'Center, TX', - 1936594 => 'Trinity, TX', - 1936597 => 'Montgomery, TX', - 1936598 => 'Center, TX', - 1936628 => 'Shepherd, TX', - 1936632 => 'Lufkin, TX', - 1936633 => 'Lufkin, TX', - 1936634 => 'Lufkin, TX', - 1936637 => 'Lufkin, TX', - 1936639 => 'Lufkin, TX', - 1936642 => 'Groveton, TX', - 1936646 => 'Onalaska, TX', - 1936647 => 'Conroe, TX', - 1936653 => 'Coldspring, TX', - 1936687 => 'Grapeland, TX', - 1936699 => 'Lufkin, TX', - 1936756 => 'Conroe, TX', - 1936760 => 'Conroe, TX', - 1936788 => 'Conroe, TX', - 1936825 => 'Navasota, TX', - 1936829 => 'Diboll, TX', - 1936856 => 'Willis, TX', - 1936858 => 'Alto, TX', - 1936875 => 'Lufkin, TX', - 1936890 => 'Willis, TX', - 1936931 => 'Waller, TX', - 1936967 => 'Livingston, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1937.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1937.php deleted file mode 100644 index bd645aaf4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1937.php +++ /dev/null @@ -1,163 +0,0 @@ - 'Ohio', - 1937208 => 'Dayton, OH', - 1937222 => 'Dayton, OH', - 1937223 => 'Dayton, OH', - 1937224 => 'Dayton, OH', - 1937225 => 'Dayton, OH', - 1937226 => 'Dayton, OH', - 1937228 => 'Dayton, OH', - 1937233 => 'Dayton, OH', - 1937235 => 'Dayton, OH', - 1937236 => 'Dayton, OH', - 1937237 => 'Dayton, OH', - 1937252 => 'Dayton, OH', - 1937253 => 'Dayton, OH', - 1937254 => 'Dayton, OH', - 1937256 => 'Dayton, OH', - 1937257 => 'Dayton, OH', - 1937258 => 'Dayton, OH', - 1937262 => 'Dayton, OH', - 1937263 => 'Dayton, OH', - 1937264 => 'Dayton, OH', - 1937268 => 'Dayton, OH', - 1937274 => 'Dayton, OH', - 1937275 => 'Dayton, OH', - 1937276 => 'Dayton, OH', - 1937277 => 'Dayton, OH', - 1937278 => 'Dayton, OH', - 1937279 => 'Dayton, OH', - 1937291 => 'Dayton, OH', - 1937292 => 'Bellefontaine, OH', - 1937293 => 'Dayton, OH', - 1937294 => 'Dayton, OH', - 1937295 => 'Fort Loramie, OH', - 1937296 => 'Dayton, OH', - 1937297 => 'Dayton, OH', - 1937298 => 'Dayton, OH', - 1937299 => 'Dayton, OH', - 1937312 => 'Dayton, OH', - 1937320 => 'Beavercreek, OH', - 1937322 => 'Springfield, OH', - 1937323 => 'Springfield, OH', - 1937324 => 'Springfield, OH', - 1937325 => 'Springfield, OH', - 1937328 => 'Springfield, OH', - 1937332 => 'Troy, OH', - 1937333 => 'Dayton, OH', - 1937335 => 'Troy, OH', - 1937339 => 'Troy, OH', - 1937342 => 'Springfield, OH', - 1937352 => 'Xenia, OH', - 1937364 => 'Lynchburg, OH', - 1937372 => 'Xenia, OH', - 1937374 => 'Xenia, OH', - 1937376 => 'Xenia, OH', - 1937378 => 'Georgetown, OH', - 1937382 => 'Wilmington, OH', - 1937383 => 'Wilmington, OH', - 1937384 => 'Miamisburg, OH', - 1937386 => 'Seaman, OH', - 1937390 => 'Springfield, OH', - 1937392 => 'Ripley, OH', - 1937393 => 'Hillsboro, OH', - 1937399 => 'Springfield, OH', - 1937415 => 'Dayton, OH', - 1937424 => 'Dayton, OH', - 1937426 => 'Beavercreek, OH', - 1937427 => 'Beavercreek, OH', - 1937428 => 'Dayton, OH', - 1937429 => 'Beavercreek, OH', - 1937431 => 'Beavercreek, OH', - 1937432 => 'Dayton, OH', - 1937433 => 'Dayton, OH', - 1937434 => 'Dayton, OH', - 1937435 => 'Dayton, OH', - 1937436 => 'Dayton, OH', - 1937437 => 'New Paris, OH', - 1937438 => 'Dayton, OH', - 1937439 => 'Dayton, OH', - 1937440 => 'Troy, OH', - 1937443 => 'Dayton, OH', - 1937444 => 'Mount Orab, OH', - 1937446 => 'Sardinia, OH', - 1937452 => 'Camden, OH', - 1937454 => 'Dayton, OH', - 1937456 => 'Eaton, OH', - 1937461 => 'Dayton, OH', - 1937465 => 'West Liberty, OH', - 1937473 => 'Covington, OH', - 1937484 => 'Urbana, OH', - 1937492 => 'Sidney, OH', - 1937496 => 'Dayton, OH', - 1937497 => 'Sidney, OH', - 1937498 => 'Sidney, OH', - 1937525 => 'Springfield, OH', - 1937526 => 'Versailles, OH', - 1937544 => 'West Union, OH', - 1937547 => 'Greenville, OH', - 1937548 => 'Greenville, OH', - 1937549 => 'Manchester, OH', - 1937558 => 'Dayton, OH', - 1937578 => 'Marysville, OH', - 1937584 => 'Sabina, OH', - 1937585 => 'De Graff, OH', - 1937587 => 'Peebles, OH', - 1937592 => 'Bellefontaine, OH', - 1937593 => 'Bellefontaine, OH', - 1937596 => 'Jackson Center, OH', - 1937599 => 'Bellefontaine, OH', - 1937610 => 'Dayton, OH', - 1937615 => 'Piqua, OH', - 1937641 => 'Dayton, OH', - 1937642 => 'Marysville, OH', - 1937644 => 'Marysville, OH', - 1937652 => 'Urbana, OH', - 1937653 => 'Urbana, OH', - 1937660 => 'Dayton, OH', - 1937663 => 'St. Paris, OH', - 1937667 => 'Tipp City, OH', - 1937669 => 'Tipp City, OH', - 1937675 => 'Jamestown, OH', - 1937687 => 'New Lebanon, OH', - 1937692 => 'Arcanum, OH', - 1937698 => 'West Milton, OH', - 1937723 => 'Dayton, OH', - 1937743 => 'Franklin, OH', - 1937746 => 'Franklin, OH', - 1937748 => 'Springboro, OH', - 1937754 => 'Fairborn, OH', - 1937766 => 'Cedarville, OH', - 1937767 => 'Yellow Springs, OH', - 1937773 => 'Piqua, OH', - 1937778 => 'Piqua, OH', - 1937780 => 'Leesburg, OH', - 1937783 => 'Blanchester, OH', - 1937833 => 'Brookville, OH', - 1937834 => 'Mechanicsburg, OH', - 1937836 => 'Englewood, OH', - 1937839 => 'West Alexandria, OH', - 1937845 => 'New Carlisle, OH', - 1937847 => 'Miamisburg, OH', - 1937848 => 'Bellbrook, OH', - 1937849 => 'New Carlisle, OH', - 1937855 => 'Germantown, OH', - 1937864 => 'Enon, OH', - 1937865 => 'Miamisburg, OH', - 1937866 => 'Miamisburg, OH', - 1937878 => 'Fairborn, OH', - 1937879 => 'Fairborn, OH', - 1937890 => 'Dayton, OH', - 1937898 => 'Vandalia, OH', - 1937912 => 'Beavercreek, OH', - 1937938 => 'Dayton, OH', - 1937962 => 'Lewisburg, OH', - 1937964 => 'Springfield, OH', - 1937981 => 'Greenfield, OH', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1938.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1938.php deleted file mode 100644 index b5e5bdbf2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1938.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Alabama', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1940.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1940.php deleted file mode 100644 index f2ce741b3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1940.php +++ /dev/null @@ -1,78 +0,0 @@ - 'Texas', - 1940228 => 'Wichita Falls, TX', - 1940243 => 'Denton, TX', - 1940320 => 'Denton, TX', - 1940322 => 'Wichita Falls, TX', - 1940323 => 'Denton, TX', - 1940325 => 'Mineral Wells, TX', - 1940328 => 'Mineral Wells, TX', - 1940349 => 'Denton, TX', - 1940365 => 'Aubrey, TX', - 1940380 => 'Denton, TX', - 1940381 => 'Denton, TX', - 1940382 => 'Denton, TX', - 1940383 => 'Denton, TX', - 1940384 => 'Denton, TX', - 1940387 => 'Denton, TX', - 1940397 => 'Wichita Falls, TX', - 1940433 => 'Boyd, TX', - 1940442 => 'Denton, TX', - 1940458 => 'Sanger, TX', - 1940464 => 'Argyle, TX', - 1940479 => 'Ponder, TX', - 1940482 => 'Krum, TX', - 1940484 => 'Denton, TX', - 1940495 => 'Electra, TX', - 1940521 => 'Graham, TX', - 1940538 => 'Henrietta, TX', - 1940549 => 'Graham, TX', - 1940552 => 'Vernon, TX', - 1940553 => 'Vernon, TX', - 1940564 => 'Olney, TX', - 1940565 => 'Denton, TX', - 1940566 => 'Denton, TX', - 1940567 => 'Jacksboro, TX', - 1940569 => 'Burkburnett, TX', - 1940574 => 'Archer City, TX', - 1940591 => 'Denton, TX', - 1940592 => 'Iowa Park, TX', - 1940612 => 'Gainesville, TX', - 1940626 => 'Decatur, TX', - 1940627 => 'Decatur, TX', - 1940644 => 'Chico, TX', - 1940648 => 'Justin, TX', - 1940663 => 'Quanah, TX', - 1940665 => 'Gainesville, TX', - 1940668 => 'Gainesville, TX', - 1940676 => 'Sheppard AFB, Wichita Falls, TX', - 1940683 => 'Bridgeport, TX', - 1940686 => 'Pilot Point, TX', - 1940687 => 'Wichita Falls, TX', - 1940689 => 'Wichita Falls, TX', - 1940691 => 'Wichita Falls, TX', - 1940692 => 'Wichita Falls, TX', - 1940696 => 'Wichita Falls, TX', - 1940716 => 'Wichita Falls, TX', - 1940723 => 'Wichita Falls, TX', - 1940759 => 'Muenster, TX', - 1940761 => 'Wichita Falls, TX', - 1940766 => 'Wichita Falls, TX', - 1940767 => 'Wichita Falls, TX', - 1940779 => 'Graford, TX', - 1940825 => 'Nocona, TX', - 1940851 => 'Wichita Falls, TX', - 1940855 => 'Wichita Falls, TX', - 1940864 => 'Haskell, TX', - 1940872 => 'Bowie, TX', - 1940889 => 'Seymour, TX', - 1940891 => 'Denton, TX', - 1940898 => 'Denton, TX', - 1940937 => 'Childress, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1941.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1941.php deleted file mode 100644 index 2ebf19bba..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1941.php +++ /dev/null @@ -1,148 +0,0 @@ - 'Florida', - 1941205 => 'Punta Gorda, FL', - 1941235 => 'Port Charlotte, FL', - 1941240 => 'North Port, FL', - 1941244 => 'Venice, FL', - 1941255 => 'Port Charlotte, FL', - 1941284 => 'Sarasota, FL', - 1941302 => 'Sarasota, FL', - 1941306 => 'Sarasota, FL', - 1941308 => 'Sarasota, FL', - 1941312 => 'Sarasota, FL', - 1941316 => 'Sarasota, FL', - 1941320 => 'Sarasota, FL', - 1941321 => 'Sarasota, FL', - 1941322 => 'Myakka City, FL', - 1941330 => 'Sarasota, FL', - 1941342 => 'Sarasota, FL', - 1941343 => 'Sarasota, FL', - 1941346 => 'Sarasota, FL', - 1941347 => 'Punta Gorda, FL', - 1941349 => 'Sarasota, FL', - 1941350 => 'Sarasota, FL', - 1941351 => 'Sarasota, FL', - 1941355 => 'Sarasota, FL', - 1941358 => 'Sarasota, FL', - 1941359 => 'Sarasota, FL', - 1941360 => 'Sarasota, FL', - 1941361 => 'Sarasota, FL', - 1941362 => 'Sarasota, FL', - 1941363 => 'Sarasota, FL', - 1941364 => 'Sarasota, FL', - 1941365 => 'Sarasota, FL', - 1941366 => 'Sarasota, FL', - 1941371 => 'Sarasota, FL', - 1941373 => 'Sarasota, FL', - 1941377 => 'Sarasota, FL', - 1941378 => 'Sarasota, FL', - 1941379 => 'Sarasota, FL', - 1941383 => 'Longboat Key, FL', - 1941387 => 'Longboat Key, FL', - 1941388 => 'Sarasota, FL', - 1941391 => 'Port Charlotte, FL', - 1941400 => 'Sarasota, FL', - 1941408 => 'Venice, FL', - 1941412 => 'Venice, FL', - 1941423 => 'North Port, FL', - 1941426 => 'North Port, FL', - 1941429 => 'North Port, FL', - 1941444 => 'Sarasota, FL', - 1941460 => 'Englewood, FL', - 1941473 => 'Englewood, FL', - 1941474 => 'Englewood, FL', - 1941475 => 'Englewood, FL', - 1941480 => 'Venice, FL', - 1941483 => 'Venice, FL', - 1941484 => 'Venice, FL', - 1941485 => 'Venice, FL', - 1941486 => 'Venice, FL', - 1941487 => 'Sarasota, FL', - 1941488 => 'Venice, FL', - 1941492 => 'Venice, FL', - 1941493 => 'Venice, FL', - 1941496 => 'Venice, FL', - 1941497 => 'Venice, FL', - 1941505 => 'Punta Gorda, FL', - 1941544 => 'Sarasota, FL', - 1941552 => 'Sarasota, FL', - 1941554 => 'Sarasota, FL', - 1941556 => 'Sarasota, FL', - 1941564 => 'North Port, FL', - 1941567 => 'Bradenton, FL', - 1941575 => 'Punta Gorda, FL', - 1941586 => 'Sarasota, FL', - 1941613 => 'Port Charlotte, FL', - 1941623 => 'Port Charlotte, FL', - 1941624 => 'Port Charlotte, FL', - 1941625 => 'Port Charlotte, FL', - 1941627 => 'Port Charlotte, FL', - 1941629 => 'Port Charlotte, FL', - 1941637 => 'Punta Gorda, FL', - 1941639 => 'Punta Gorda, FL', - 1941706 => 'Sarasota, FL', - 1941708 => 'Bradenton, FL', - 1941721 => 'Palmetto, FL', - 1941722 => 'Palmetto, FL', - 1941723 => 'Palmetto, FL', - 1941727 => 'Bradenton, FL', - 1941729 => 'Palmetto, FL', - 1941739 => 'Bradenton, FL', - 1941741 => 'Bradenton, FL', - 1941743 => 'Port Charlotte, FL', - 1941744 => 'Bradenton, FL', - 1941745 => 'Bradenton, FL', - 1941746 => 'Bradenton, FL', - 1941747 => 'Bradenton, FL', - 1941748 => 'Bradenton, FL', - 1941749 => 'Bradenton, FL', - 1941750 => 'Bradenton, FL', - 1941751 => 'Bradenton, FL', - 1941752 => 'Bradenton, FL', - 1941753 => 'Bradenton, FL', - 1941755 => 'Bradenton, FL', - 1941756 => 'Bradenton, FL', - 1941758 => 'Bradenton, FL', - 1941761 => 'Bradenton, FL', - 1941764 => 'Port Charlotte, FL', - 1941766 => 'Port Charlotte, FL', - 1941776 => 'Parrish, FL', - 1941782 => 'Bradenton, FL', - 1941792 => 'Bradenton, FL', - 1941794 => 'Bradenton, FL', - 1941795 => 'Bradenton, FL', - 1941798 => 'Bradenton, FL', - 1941809 => 'Sarasota, FL', - 1941822 => 'Sarasota, FL', - 1941833 => 'Punta Gorda, FL', - 1941861 => 'Sarasota, FL', - 1941870 => 'Sarasota, FL', - 1941894 => 'Sarasota, FL', - 1941896 => 'Bradenton, FL', - 1941906 => 'Sarasota, FL', - 1941917 => 'Sarasota, FL', - 1941921 => 'Sarasota, FL', - 1941922 => 'Sarasota, FL', - 1941923 => 'Sarasota, FL', - 1941924 => 'Sarasota, FL', - 1941925 => 'Sarasota, FL', - 1941926 => 'Sarasota, FL', - 1941927 => 'Sarasota, FL', - 1941928 => 'Sarasota, FL', - 1941929 => 'Sarasota, FL', - 1941932 => 'Bradenton, FL', - 1941951 => 'Sarasota, FL', - 1941952 => 'Sarasota, FL', - 1941953 => 'Sarasota, FL', - 1941954 => 'Sarasota, FL', - 1941955 => 'Sarasota, FL', - 1941957 => 'Sarasota, FL', - 1941964 => 'Boca Grande, FL', - 1941979 => 'Port Charlotte, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1947.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1947.php deleted file mode 100644 index 27d6126c2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1947.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Michigan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1949.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1949.php deleted file mode 100644 index 55cb20cd3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1949.php +++ /dev/null @@ -1,92 +0,0 @@ - 'California', - 1949221 => 'Irvine, CA', - 1949249 => 'Laguna Niguel, CA', - 1949253 => 'Irvine, CA', - 1949258 => 'Newport Beach, CA', - 1949260 => 'Irvine, CA', - 1949262 => 'Irvine, CA', - 1949333 => 'Irvine, CA', - 1949336 => 'Irvine, CA', - 1949341 => 'Irvine, CA', - 1949347 => 'Mission Viejo, CA', - 1949361 => 'San Clemente, CA', - 1949363 => 'Laguna Niguel, CA', - 1949364 => 'Mission Viejo, CA', - 1949366 => 'San Clemente, CA', - 1949369 => 'San Clemente, CA', - 1949376 => 'Laguna Beach, CA', - 1949387 => 'Irvine, CA', - 1949425 => 'Aliso Viejo, CA', - 1949428 => 'Irvine, CA', - 1949442 => 'Irvine, CA', - 1949450 => 'Irvine, CA', - 1949452 => 'Laguna Hills, CA', - 1949453 => 'Irvine, CA', - 1949474 => 'Irvine, CA', - 1949477 => 'Irvine, CA', - 1949492 => 'San Clemente, CA', - 1949494 => 'Laguna Beach, CA', - 1949495 => 'Laguna Niguel, CA', - 1949497 => 'Laguna Beach, CA', - 1949498 => 'San Clemente, CA', - 1949499 => 'Laguna Beach, CA', - 1949502 => 'Irvine, CA', - 1949509 => 'Irvine, CA', - 1949515 => 'Costa Mesa, CA', - 1949548 => 'Costa Mesa, CA', - 1949551 => 'Irvine, CA', - 1949552 => 'Irvine, CA', - 1949553 => 'Irvine, CA', - 1949559 => 'Irvine, CA', - 1949585 => 'Irvine, CA', - 1949622 => 'Irvine, CA', - 1949631 => 'Costa Mesa, CA', - 1949640 => 'Newport Beach, CA', - 1949642 => 'Costa Mesa, CA', - 1949644 => 'Newport Beach, CA', - 1949645 => 'Costa Mesa, CA', - 1949646 => 'Costa Mesa, CA', - 1949650 => 'Costa Mesa, CA', - 1949651 => 'Irvine, CA', - 1949653 => 'Irvine, CA', - 1949654 => 'Irvine, CA', - 1949660 => 'Irvine, CA', - 1949673 => 'Newport Beach, CA', - 1949675 => 'Newport Beach, CA', - 1949679 => 'Irvine, CA', - 1949706 => 'Newport Beach, CA', - 1949715 => 'Laguna Beach, CA', - 1949717 => 'Newport Beach, CA', - 1949718 => 'Newport Beach, CA', - 1949719 => 'Newport Beach, CA', - 1949720 => 'Newport Beach, CA', - 1949721 => 'Newport Beach, CA', - 1949722 => 'Costa Mesa, CA', - 1949723 => 'Newport Beach, CA', - 1949724 => 'Irvine, CA', - 1949725 => 'Irvine, CA', - 1949726 => 'Irvine, CA', - 1949727 => 'Irvine, CA', - 1949733 => 'Irvine, CA', - 1949748 => 'Irvine, CA', - 1949753 => 'Irvine, CA', - 1949757 => 'Irvine, CA', - 1949759 => 'Newport Beach, CA', - 1949760 => 'Newport Beach, CA', - 1949764 => 'Newport Beach, CA', - 1949769 => 'Irvine, CA', - 1949786 => 'Irvine, CA', - 1949788 => 'Irvine, CA', - 1949824 => 'Irvine, CA', - 1949854 => 'Irvine, CA', - 1949857 => 'Irvine, CA', - 1949861 => 'Irvine, CA', - 1949940 => 'San Clemente, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1951.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1951.php deleted file mode 100644 index cf98f6ae9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1951.php +++ /dev/null @@ -1,126 +0,0 @@ - 'California', - 1951222 => 'Riverside, CA', - 1951225 => 'Temecula, CA', - 1951242 => 'Moreno Valley, CA', - 1951243 => 'Moreno Valley, CA', - 1951244 => 'Canyon Lake, CA', - 1951245 => 'Lake Elsinore, CA', - 1951247 => 'Moreno Valley, CA', - 1951248 => 'Riverside, CA', - 1951270 => 'Corona, CA', - 1951271 => 'Corona, CA', - 1951272 => 'Corona, CA', - 1951273 => 'Corona, CA', - 1951274 => 'Riverside, CA', - 1951275 => 'Riverside, CA', - 1951276 => 'Riverside, CA', - 1951277 => 'Corona, CA', - 1951278 => 'Corona, CA', - 1951279 => 'Corona, CA', - 1951280 => 'Corona, CA', - 1951296 => 'Temecula, CA', - 1951302 => 'Temecula, CA', - 1951303 => 'Temecula, CA', - 1951304 => 'Murrieta, CA', - 1951308 => 'Temecula, CA', - 1951328 => 'Riverside, CA', - 1951340 => 'Corona, CA', - 1951343 => 'Riverside, CA', - 1951351 => 'Riverside, CA', - 1951352 => 'Riverside, CA', - 1951353 => 'Riverside, CA', - 1951354 => 'Riverside, CA', - 1951358 => 'Riverside, CA', - 1951359 => 'Riverside, CA', - 1951369 => 'Riverside, CA', - 1951371 => 'Corona, CA', - 1951372 => 'Corona, CA', - 1951413 => 'Moreno Valley, CA', - 1951443 => 'Perris, CA', - 1951445 => 'Murrieta, CA', - 1951461 => 'Murrieta, CA', - 1951471 => 'Lake Elsinore, CA', - 1951485 => 'Moreno Valley, CA', - 1951486 => 'Moreno Valley, CA', - 1951487 => 'San Jacinto, CA', - 1951491 => 'Temecula, CA', - 1951506 => 'Temecula, CA', - 1951509 => 'Riverside, CA', - 1951520 => 'Corona, CA', - 1951549 => 'Corona, CA', - 1951571 => 'Moreno Valley, CA', - 1951582 => 'Corona, CA', - 1951587 => 'Temecula, CA', - 1951600 => 'Murrieta, CA', - 1951601 => 'Moreno Valley, CA', - 1951609 => 'Wildomar, CA', - 1951637 => 'Riverside, CA', - 1951652 => 'Hemet, CA', - 1951653 => 'Moreno Valley, CA', - 1951654 => 'San Jacinto, CA', - 1951657 => 'Perris, CA', - 1951658 => 'Hemet, CA', - 1951659 => 'Idyllwild-Pine Cove, CA', - 1951674 => 'Lake Elsinore, CA', - 1951676 => 'Temecula, CA', - 1951677 => 'Murrieta, CA', - 1951680 => 'Riverside, CA', - 1951682 => 'Riverside, CA', - 1951683 => 'Riverside, CA', - 1951684 => 'Riverside, CA', - 1951685 => 'Riverside, CA', - 1951686 => 'Riverside, CA', - 1951687 => 'Riverside, CA', - 1951688 => 'Riverside, CA', - 1951689 => 'Riverside, CA', - 1951693 => 'Temecula, CA', - 1951694 => 'Temecula, CA', - 1951695 => 'Temecula, CA', - 1951696 => 'Murrieta, CA', - 1951698 => 'Murrieta, CA', - 1951699 => 'Temecula, CA', - 1951719 => 'Temecula, CA', - 1951734 => 'Corona, CA', - 1951735 => 'Corona, CA', - 1951736 => 'Corona, CA', - 1951737 => 'Corona, CA', - 1951738 => 'Corona, CA', - 1951739 => 'Corona, CA', - 1951763 => 'Anza, CA', - 1951765 => 'Hemet, CA', - 1951766 => 'Hemet, CA', - 1951769 => 'Beaumont, CA', - 1951776 => 'Riverside, CA', - 1951779 => 'Riverside, CA', - 1951780 => 'Riverside, CA', - 1951781 => 'Riverside, CA', - 1951782 => 'Riverside, CA', - 1951784 => 'Riverside, CA', - 1951785 => 'Riverside, CA', - 1951786 => 'Riverside, CA', - 1951787 => 'Riverside, CA', - 1951788 => 'Riverside, CA', - 1951789 => 'Riverside, CA', - 1951808 => 'Corona, CA', - 1951817 => 'Corona, CA', - 1951845 => 'Beaumont, CA', - 1951849 => 'Banning, CA', - 1951894 => 'Murrieta, CA', - 1951898 => 'Corona, CA', - 1951922 => 'Banning, CA', - 1951924 => 'Moreno Valley, CA', - 1951925 => 'Hemet, CA', - 1951927 => 'Hemet, CA', - 1951929 => 'Hemet, CA', - 1951940 => 'Perris, CA', - 1951943 => 'Perris, CA', - 1951955 => 'Riverside, CA', - 1951977 => 'Riverside, CA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1952.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1952.php deleted file mode 100644 index 860f44d2b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1952.php +++ /dev/null @@ -1,59 +0,0 @@ - 'Minnesota', - 1952233 => 'Shakopee, MN', - 1952361 => 'Chaska, MN', - 1952368 => 'Chaska, MN', - 1952403 => 'Shakopee, MN', - 1952423 => 'Apple Valley, MN', - 1952432 => 'Apple Valley, MN', - 1952435 => 'Burnsville, MN', - 1952440 => 'Prior Lake, MN', - 1952442 => 'Waconia, MN', - 1952443 => 'Victoria, MN', - 1952445 => 'Shakopee, MN', - 1952446 => 'St. Bonifacius, MN', - 1952447 => 'Prior Lake, MN', - 1952448 => 'Chaska, MN', - 1952466 => 'Cologne, MN', - 1952469 => 'Lakeville, MN', - 1952472 => 'Mound, MN', - 1952473 => 'Wayzata, MN', - 1952474 => 'Excelsior, MN', - 1952475 => 'Wayzata, MN', - 1952476 => 'Wayzata, MN', - 1952492 => 'Jordan, MN', - 1952496 => 'Shakopee, MN', - 1952556 => 'Chaska, MN', - 1952707 => 'Burnsville, MN', - 1952736 => 'Burnsville, MN', - 1952758 => 'New Prague, MN', - 1952808 => 'Burnsville, MN', - 1952829 => 'Eden Prairie, MN', - 1952848 => 'Edina, MN', - 1952854 => 'Bloomington, MN', - 1952858 => 'Bloomington, MN', - 1952873 => 'Belle Plaine, MN', - 1952882 => 'Burnsville, MN', - 1952883 => 'Minneapolis, MN', - 1952885 => 'East Bloomington, Bloomington, MN', - 1952890 => 'Burnsville, MN', - 1952892 => 'Burnsville, MN', - 1952894 => 'Burnsville, MN', - 1952895 => 'Burnsville, MN', - 1952924 => 'Minneapolis, MN', - 1952934 => 'Eden Prairie, MN', - 1952937 => 'Eden Prairie, MN', - 1952941 => 'Eden Prairie, MN', - 1952942 => 'Eden Prairie, MN', - 1952944 => 'Eden Prairie, MN', - 1952949 => 'Eden Prairie, MN', - 1952955 => 'Watertown, MN', - 1952975 => 'Eden Prairie, MN', - 1952985 => 'Lakeville, MN', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1954.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1954.php deleted file mode 100644 index 540b29952..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1954.php +++ /dev/null @@ -1,175 +0,0 @@ - 'Florida', - 1954202 => 'Fort Lauderdale, FL', - 1954217 => 'Weston, FL', - 1954227 => 'Coral Springs, FL', - 1954229 => 'Fort Lauderdale, FL', - 1954255 => 'Coral Springs, FL', - 1954262 => 'Davie, FL', - 1954265 => 'Hollywood, FL', - 1954267 => 'Fort Lauderdale, FL', - 1954332 => 'Fort Lauderdale, FL', - 1954340 => 'Coral Springs, FL', - 1954341 => 'Coral Springs, FL', - 1954344 => 'Coral Springs, FL', - 1954345 => 'Coral Springs, FL', - 1954346 => 'Coral Springs, FL', - 1954349 => 'Weston, FL', - 1954351 => 'Fort Lauderdale, FL', - 1954355 => 'Fort Lauderdale, FL', - 1954359 => 'Fort Lauderdale, FL', - 1954360 => 'Deerfield Beach, FL', - 1954384 => 'Weston, FL', - 1954385 => 'Weston, FL', - 1954389 => 'Weston, FL', - 1954396 => 'Fort Lauderdale, FL', - 1954418 => 'Deerfield Beach, FL', - 1954420 => 'Deerfield Beach, FL', - 1954421 => 'Deerfield Beach, FL', - 1954422 => 'Deerfield Beach, FL', - 1954425 => 'Deerfield Beach, FL', - 1954426 => 'Deerfield Beach, FL', - 1954427 => 'Deerfield Beach, FL', - 1954428 => 'Deerfield Beach, FL', - 1954429 => 'Deerfield Beach, FL', - 1954430 => 'Pembroke Pines, FL', - 1954431 => 'Pembroke Pines, FL', - 1954432 => 'Pembroke Pines, FL', - 1954433 => 'Pembroke Pines, FL', - 1954435 => 'Pembroke Pines, FL', - 1954436 => 'Pembroke Pines, FL', - 1954437 => 'Pembroke Pines, FL', - 1954438 => 'Pembroke Pines, FL', - 1954441 => 'Pembroke Pines, FL', - 1954442 => 'Pembroke Pines, FL', - 1954443 => 'Pembroke Pines, FL', - 1954450 => 'Pembroke Pines, FL', - 1954454 => 'Hallandale Beach, FL', - 1954455 => 'Hallandale Beach, FL', - 1954456 => 'Hallandale Beach, FL', - 1954457 => 'Hallandale Beach, FL', - 1954458 => 'Hallandale Beach, FL', - 1954462 => 'Fort Lauderdale, FL', - 1954463 => 'Fort Lauderdale, FL', - 1954467 => 'Fort Lauderdale, FL', - 1954468 => 'Fort Lauderdale, FL', - 1954473 => 'Plantation, FL', - 1954480 => 'Deerfield Beach, FL', - 1954481 => 'Deerfield Beach, FL', - 1954489 => 'Fort Lauderdale, FL', - 1954491 => 'Fort Lauderdale, FL', - 1954492 => 'Fort Lauderdale, FL', - 1954493 => 'Fort Lauderdale, FL', - 1954509 => 'Coral Springs, FL', - 1954510 => 'Coral Springs, FL', - 1954522 => 'Fort Lauderdale, FL', - 1954523 => 'Fort Lauderdale, FL', - 1954524 => 'Fort Lauderdale, FL', - 1954525 => 'Fort Lauderdale, FL', - 1954527 => 'Fort Lauderdale, FL', - 1954531 => 'Deerfield Beach, FL', - 1954532 => 'Pompano Beach, FL', - 1954537 => 'Fort Lauderdale, FL', - 1954545 => 'Pompano Beach, FL', - 1954563 => 'Fort Lauderdale, FL', - 1954564 => 'Fort Lauderdale, FL', - 1954565 => 'Fort Lauderdale, FL', - 1954566 => 'Fort Lauderdale, FL', - 1954568 => 'Fort Lauderdale, FL', - 1954570 => 'Deerfield Beach, FL', - 1954571 => 'Deerfield Beach, FL', - 1954572 => 'Sunrise, FL', - 1954575 => 'Coral Springs, FL', - 1954578 => 'Sunrise, FL', - 1954580 => 'Pompano Beach, FL', - 1954596 => 'Deerfield Beach, FL', - 1954597 => 'Tamarac, FL', - 1954659 => 'Weston, FL', - 1954693 => 'Plantation, FL', - 1954698 => 'Deerfield Beach, FL', - 1954704 => 'Pembroke Pines, FL', - 1954712 => 'Fort Lauderdale, FL', - 1954718 => 'Tamarac, FL', - 1954720 => 'Tamarac, FL', - 1954721 => 'Tamarac, FL', - 1954722 => 'Tamarac, FL', - 1954724 => 'Tamarac, FL', - 1954725 => 'Deerfield Beach, FL', - 1954726 => 'Tamarac, FL', - 1954728 => 'Fort Lauderdale, FL', - 1954741 => 'Sunrise, FL', - 1954742 => 'Sunrise, FL', - 1954746 => 'Sunrise, FL', - 1954747 => 'Sunrise, FL', - 1954748 => 'Sunrise, FL', - 1954749 => 'Sunrise, FL', - 1954752 => 'Coral Springs, FL', - 1954753 => 'Coral Springs, FL', - 1954755 => 'Coral Springs, FL', - 1954757 => 'Coral Springs, FL', - 1954759 => 'Fort Lauderdale, FL', - 1954760 => 'Fort Lauderdale, FL', - 1954761 => 'Fort Lauderdale, FL', - 1954763 => 'Fort Lauderdale, FL', - 1954764 => 'Fort Lauderdale, FL', - 1954765 => 'Fort Lauderdale, FL', - 1954766 => 'Fort Lauderdale, FL', - 1954767 => 'Fort Lauderdale, FL', - 1954768 => 'Fort Lauderdale, FL', - 1954769 => 'Fort Lauderdale, FL', - 1954771 => 'Fort Lauderdale, FL', - 1954772 => 'Fort Lauderdale, FL', - 1954776 => 'Fort Lauderdale, FL', - 1954779 => 'Fort Lauderdale, FL', - 1954781 => 'Pompano Beach, FL', - 1954782 => 'Pompano Beach, FL', - 1954783 => 'Pompano Beach, FL', - 1954784 => 'Pompano Beach, FL', - 1954785 => 'Pompano Beach, FL', - 1954786 => 'Pompano Beach, FL', - 1954788 => 'Pompano Beach, FL', - 1954796 => 'Coral Springs, FL', - 1954828 => 'Fort Lauderdale, FL', - 1954831 => 'Fort Lauderdale, FL', - 1954835 => 'Sunrise, FL', - 1954838 => 'Sunrise, FL', - 1954845 => 'Sunrise, FL', - 1954846 => 'Sunrise, FL', - 1954851 => 'Sunrise, FL', - 1954894 => 'Hollywood, FL', - 1954920 => 'Hollywood, FL', - 1954921 => 'Hollywood, FL', - 1954922 => 'Hollywood, FL', - 1954923 => 'Hollywood, FL', - 1954924 => 'Hollywood, FL', - 1954925 => 'Hollywood, FL', - 1954926 => 'Hollywood, FL', - 1954927 => 'Hollywood, FL', - 1954929 => 'Hollywood, FL', - 1954933 => 'Pompano Beach, FL', - 1954938 => 'Fort Lauderdale, FL', - 1954941 => 'Pompano Beach, FL', - 1954942 => 'Pompano Beach, FL', - 1954943 => 'Pompano Beach, FL', - 1954946 => 'Pompano Beach, FL', - 1954958 => 'Fort Lauderdale, FL', - 1954960 => 'Pompano Beach, FL', - 1954961 => 'Hollywood, FL', - 1954962 => 'Hollywood, FL', - 1954964 => 'Hollywood, FL', - 1954965 => 'Hollywood, FL', - 1954966 => 'Hollywood, FL', - 1954967 => 'Hollywood, FL', - 1954981 => 'Hollywood, FL', - 1954983 => 'Hollywood, FL', - 1954985 => 'Hollywood, FL', - 1954986 => 'Hollywood, FL', - 1954987 => 'Hollywood, FL', - 1954989 => 'Hollywood, FL', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1956.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1956.php deleted file mode 100644 index 08ac1abb5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1956.php +++ /dev/null @@ -1,110 +0,0 @@ - 'Texas', - 1956213 => 'McAllen, TX', - 1956233 => 'Los Fresnos, TX', - 1956283 => 'Pharr, TX', - 1956287 => 'Edinburg, TX', - 1956289 => 'Edinburg, TX', - 1956316 => 'Edinburg, TX', - 1956318 => 'Edinburg, TX', - 1956350 => 'Brownsville, TX', - 1956361 => 'San Benito, TX', - 1956364 => 'Harlingen, TX', - 1956365 => 'Harlingen, TX', - 1956380 => 'Edinburg, TX', - 1956381 => 'Edinburg, TX', - 1956383 => 'Edinburg, TX', - 1956386 => 'Edinburg, TX', - 1956389 => 'Harlingen, TX', - 1956399 => 'San Benito, TX', - 1956412 => 'Harlingen, TX', - 1956421 => 'Harlingen, TX', - 1956423 => 'Harlingen, TX', - 1956424 => 'Mission, TX', - 1956425 => 'Harlingen, TX', - 1956428 => 'Harlingen, TX', - 1956440 => 'Harlingen, TX', - 1956447 => 'Weslaco, TX', - 1956461 => 'Donna, TX', - 1956464 => 'Donna, TX', - 1956465 => 'Brownsville, TX', - 1956487 => 'Rio Grande City, TX', - 1956488 => 'Rio Grande City, TX', - 1956504 => 'Brownsville, TX', - 1956514 => 'Mercedes, TX', - 1956519 => 'Mission, TX', - 1956523 => 'Laredo, TX', - 1956541 => 'Brownsville, TX', - 1956542 => 'Brownsville, TX', - 1956544 => 'Brownsville, TX', - 1956546 => 'Brownsville, TX', - 1956548 => 'Brownsville, TX', - 1956550 => 'Brownsville, TX', - 1956554 => 'Brownsville, TX', - 1956565 => 'Mercedes, TX', - 1956568 => 'Laredo, TX', - 1956574 => 'Brownsville, TX', - 1956580 => 'Mission, TX', - 1956581 => 'Mission, TX', - 1956583 => 'Mission, TX', - 1956584 => 'Mission, TX', - 1956585 => 'Mission, TX', - 1956618 => 'McAllen, TX', - 1956621 => 'Brownsville, TX', - 1956627 => 'McAllen, TX', - 1956630 => 'McAllen, TX', - 1956631 => 'McAllen, TX', - 1956661 => 'McAllen, TX', - 1956664 => 'McAllen, TX', - 1956668 => 'McAllen, TX', - 1956682 => 'McAllen, TX', - 1956683 => 'McAllen, TX', - 1956686 => 'McAllen, TX', - 1956687 => 'McAllen, TX', - 1956688 => 'McAllen, TX', - 1956689 => 'Raymondville, TX', - 1956702 => 'Pharr, TX', - 1956712 => 'Laredo, TX', - 1956717 => 'Laredo, TX', - 1956718 => 'Laredo, TX', - 1956722 => 'Laredo, TX', - 1956723 => 'Laredo, TX', - 1956724 => 'Laredo, TX', - 1956725 => 'Laredo, TX', - 1956726 => 'Laredo, TX', - 1956727 => 'Laredo, TX', - 1956728 => 'Laredo, TX', - 1956729 => 'Laredo, TX', - 1956748 => 'Rio Hondo, TX', - 1956753 => 'Laredo, TX', - 1956765 => 'Zapata, TX', - 1956781 => 'Pharr, TX', - 1956782 => 'Pharr, TX', - 1956783 => 'Pharr, TX', - 1956787 => 'Pharr, TX', - 1956791 => 'Laredo, TX', - 1956795 => 'Laredo, TX', - 1956796 => 'Laredo, TX', - 1956797 => 'La Feria, TX', - 1956825 => 'Mercedes, TX', - 1956831 => 'Brownsville, TX', - 1956838 => 'Brownsville, TX', - 1956843 => 'Hidalgo, TX', - 1956849 => 'Roma, TX', - 1956928 => 'McAllen, TX', - 1956943 => 'Port Isabel, TX', - 1956968 => 'Weslaco, TX', - 1956969 => 'Weslaco, TX', - 1956971 => 'McAllen, TX', - 1956972 => 'McAllen, TX', - 1956973 => 'Weslaco, TX', - 1956982 => 'Brownsville, TX', - 1956992 => 'McAllen, TX', - 1956994 => 'McAllen, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1959.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1959.php deleted file mode 100644 index 12ebe9383..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1959.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Connecticut', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1970.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1970.php deleted file mode 100644 index 9a682519d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1970.php +++ /dev/null @@ -1,188 +0,0 @@ - 'Colorado', - 1970203 => 'Loveland, CO', - 1970204 => 'Fort Collins, CO', - 1970206 => 'Fort Collins, CO', - 1970207 => 'Fort Collins, CO', - 1970221 => 'Fort Collins, CO', - 1970223 => 'Fort Collins, CO', - 1970224 => 'Fort Collins, CO', - 1970225 => 'Fort Collins, CO', - 1970226 => 'Fort Collins, CO', - 1970229 => 'Fort Collins, CO', - 1970232 => 'Fort Collins, CO', - 1970240 => 'Montrose, CO', - 1970241 => 'Grand Junction, CO', - 1970242 => 'Grand Junction, CO', - 1970243 => 'Grand Junction, CO', - 1970244 => 'Grand Junction, CO', - 1970245 => 'Grand Junction, CO', - 1970247 => 'Durango, CO', - 1970248 => 'Grand Junction, CO', - 1970249 => 'Montrose, CO', - 1970250 => 'Grand Junction, CO', - 1970252 => 'Montrose, CO', - 1970254 => 'Grand Junction, CO', - 1970255 => 'Grand Junction, CO', - 1970256 => 'Grand Junction, CO', - 1970257 => 'Grand Junction, CO', - 1970259 => 'Durango, CO', - 1970261 => 'Grand Junction, CO', - 1970263 => 'Grand Junction, CO', - 1970264 => 'Pagosa Springs, CO', - 1970266 => 'Fort Collins, CO', - 1970276 => 'Hayden, CO', - 1970278 => 'Loveland, CO', - 1970282 => 'Fort Collins, CO', - 1970284 => 'La Salle, CO', - 1970285 => 'Parachute, CO', - 1970298 => 'Grand Junction, CO', - 1970304 => 'Greeley, CO', - 1970323 => 'Olathe, CO', - 1970325 => 'Ouray, CO', - 1970327 => 'Norwood, CO', - 1970328 => 'Eagle, CO', - 1970330 => 'Greeley, CO', - 1970332 => 'Wray, CO', - 1970336 => 'Greeley, CO', - 1970339 => 'Greeley, CO', - 1970345 => 'Akron, CO', - 1970346 => 'Greeley, CO', - 1970347 => 'Greeley, CO', - 1970349 => 'Crested Butte, CO', - 1970350 => 'Greeley, CO', - 1970351 => 'Greeley, CO', - 1970352 => 'Greeley, CO', - 1970353 => 'Greeley, CO', - 1970356 => 'Greeley, CO', - 1970375 => 'Durango, CO', - 1970377 => 'Fort Collins, CO', - 1970378 => 'Greeley, CO', - 1970382 => 'Durango, CO', - 1970384 => 'Glenwood Springs, CO', - 1970385 => 'Durango, CO', - 1970387 => 'Silverton, CO', - 1970392 => 'Greeley, CO', - 1970396 => 'Greeley, CO', - 1970403 => 'Durango, CO', - 1970407 => 'Fort Collins, CO', - 1970416 => 'Fort Collins, CO', - 1970424 => 'Grand Junction, CO', - 1970429 => 'Aspen, CO', - 1970449 => 'Fort Collins, CO', - 1970453 => 'Breckenridge, CO', - 1970454 => 'Eaton, CO', - 1970461 => 'Loveland, CO', - 1970464 => 'Palisade, CO', - 1970472 => 'Fort Collins, CO', - 1970474 => 'Julesburg, CO', - 1970476 => 'Vail, CO', - 1970479 => 'Vail, CO', - 1970482 => 'Fort Collins, CO', - 1970483 => 'Wiggins, CO', - 1970484 => 'Fort Collins, CO', - 1970490 => 'Fort Collins, CO', - 1970491 => 'Fort Collins, CO', - 1970493 => 'Fort Collins, CO', - 1970494 => 'Fort Collins, CO', - 1970495 => 'Fort Collins, CO', - 1970498 => 'Fort Collins, CO', - 1970506 => 'Greeley, CO', - 1970521 => 'Sterling, CO', - 1970522 => 'Sterling, CO', - 1970523 => 'Grand Junction, CO', - 1970524 => 'Gypsum, CO', - 1970527 => 'Paonia, CO', - 1970532 => 'Berthoud, CO', - 1970533 => 'Mancos, CO', - 1970542 => 'Fort Morgan, CO', - 1970544 => 'Aspen, CO', - 1970547 => 'Breckenridge, CO', - 1970563 => 'Ignacio, CO', - 1970564 => 'Cortez, CO', - 1970565 => 'Cortez, CO', - 1970568 => 'Wellington, CO', - 1970569 => 'Edwards, CO', - 1970577 => 'Estes Park, CO', - 1970586 => 'Estes Park, CO', - 1970587 => 'Johnstown, CO', - 1970593 => 'Loveland, CO', - 1970613 => 'Loveland, CO', - 1970619 => 'Loveland, CO', - 1970622 => 'Loveland, CO', - 1970625 => 'Rifle, CO', - 1970626 => 'Ridgway, CO', - 1970627 => 'Grand Lake, CO', - 1970631 => 'Fort Collins, CO', - 1970635 => 'Loveland, CO', - 1970641 => 'Gunnison, CO', - 1970663 => 'Loveland, CO', - 1970667 => 'Loveland, CO', - 1970668 => 'Frisco, CO', - 1970669 => 'Loveland, CO', - 1970672 => 'Fort Collins, CO', - 1970673 => 'Greeley, CO', - 1970674 => 'Windsor, CO', - 1970675 => 'Rangely, CO', - 1970677 => 'Dove Creek, CO', - 1970682 => 'Fort Collins, CO', - 1970686 => 'Windsor, CO', - 1970689 => 'Fort Collins, CO', - 1970704 => 'Carbondale, CO', - 1970723 => 'Walden, CO', - 1970724 => 'Kremmling, CO', - 1970728 => 'Telluride, CO', - 1970731 => 'Pagosa Springs, CO', - 1970739 => 'Cortez, CO', - 1970748 => 'Avon, CO', - 1970749 => 'Durango, CO', - 1970759 => 'Durango, CO', - 1970764 => 'Durango, CO', - 1970769 => 'Durango, CO', - 1970774 => 'Haxtun, CO', - 1970776 => 'Loveland, CO', - 1970785 => 'Platteville, CO', - 1970799 => 'Durango, CO', - 1970824 => 'Craig, CO', - 1970827 => 'Minturn, CO', - 1970834 => 'Ault, CO', - 1970842 => 'Brush, CO', - 1970845 => 'Avon, CO', - 1970848 => 'Yuma, CO', - 1970854 => 'Holyoke, CO', - 1970856 => 'Cedaredge, CO', - 1970858 => 'Fruita, CO', - 1970864 => 'Nucla, CO', - 1970867 => 'Fort Morgan, CO', - 1970870 => 'Steamboat Spgs, CO', - 1970871 => 'Steamboat Spgs, CO', - 1970872 => 'Hotchkiss, CO', - 1970874 => 'Delta, CO', - 1970876 => 'Silt, CO', - 1970878 => 'Meeker, CO', - 1970879 => 'Steamboat Spgs, CO', - 1970882 => 'Dolores, CO', - 1970884 => 'Bayfield, CO', - 1970887 => 'Granby, CO', - 1970903 => 'Durango, CO', - 1970920 => 'Aspen, CO', - 1970923 => 'Snowmass Village, CO', - 1970925 => 'Aspen, CO', - 1970926 => 'Edwards, CO', - 1970927 => 'Basalt, CO', - 1970928 => 'Glenwood Springs, CO', - 1970944 => 'Lake City, CO', - 1970945 => 'Glenwood Springs, CO', - 1970946 => 'Durango, CO', - 1970947 => 'Glenwood Springs, CO', - 1970949 => 'Avon, CO', - 1970962 => 'Loveland, CO', - 1970963 => 'Carbondale, CO', - 1970984 => 'New Castle, CO', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1971.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1971.php deleted file mode 100644 index 19cc6ff30..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1971.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Oregon', - 1971255 => 'Portland, OR', - 1971279 => 'Portland, OR', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1972.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1972.php deleted file mode 100644 index 379cdb52e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1972.php +++ /dev/null @@ -1,287 +0,0 @@ - 'Texas', - 1972202 => 'Plano, TX', - 1972205 => 'Garland, TX', - 1972206 => 'Grand Prairie, TX', - 1972208 => 'Plano, TX', - 1972216 => 'Mesquite, TX', - 1972218 => 'Lancaster, TX', - 1972219 => 'Lewisville, TX', - 1972221 => 'Lewisville, TX', - 1972222 => 'Mesquite, TX', - 1972223 => 'DeSoto, TX', - 1972225 => 'Hutchins, TX', - 1972227 => 'Lancaster, TX', - 1972230 => 'DeSoto, TX', - 1972231 => 'Richardson, TX', - 1972233 => 'Dallas, TX', - 1972234 => 'Richardson, TX', - 1972235 => 'Richardson, TX', - 1972237 => 'Grand Prairie, TX', - 1972238 => 'Richardson, TX', - 1972239 => 'Dallas, TX', - 1972240 => 'Garland, TX', - 1972241 => 'Dallas, TX', - 1972242 => 'Carrollton, TX', - 1972243 => 'Dallas, TX', - 1972245 => 'Carrollton, TX', - 1972247 => 'Dallas, TX', - 1972248 => 'Dallas, TX', - 1972252 => 'Irving, TX', - 1972253 => 'Irving, TX', - 1972254 => 'Irving, TX', - 1972255 => 'Irving, TX', - 1972256 => 'Irving, TX', - 1972257 => 'Irving, TX', - 1972258 => 'Irving, TX', - 1972259 => 'Irving, TX', - 1972262 => 'Grand Prairie, TX', - 1972263 => 'Grand Prairie, TX', - 1972264 => 'Grand Prairie, TX', - 1972266 => 'Grand Prairie, TX', - 1972270 => 'Mesquite, TX', - 1972271 => 'Garland, TX', - 1972272 => 'Garland, TX', - 1972274 => 'DeSoto, TX', - 1972276 => 'Garland, TX', - 1972278 => 'Garland, TX', - 1972279 => 'Mesquite, TX', - 1972285 => 'Mesquite, TX', - 1972287 => 'Seagoville, TX', - 1972288 => 'Mesquite, TX', - 1972289 => 'Mesquite, TX', - 1972291 => 'Cedar Hill, TX', - 1972293 => 'Cedar Hill, TX', - 1972296 => 'Duncanville, TX', - 1972298 => 'Duncanville, TX', - 1972299 => 'Cedar Hill, TX', - 1972303 => 'Garland, TX', - 1972304 => 'Coppell, TX', - 1972312 => 'Plano, TX', - 1972313 => 'Irving, TX', - 1972315 => 'Lewisville, TX', - 1972316 => 'Lewisville, TX', - 1972317 => 'Lewisville, TX', - 1972323 => 'Carrollton, TX', - 1972329 => 'Mesquite, TX', - 1972335 => 'Frisco, TX', - 1972346 => 'Prosper, TX', - 1972347 => 'Prosper, TX', - 1972352 => 'Grand Prairie, TX', - 1972353 => 'Lewisville, TX', - 1972355 => 'Flower Mound, TX', - 1972359 => 'Allen, TX', - 1972369 => 'McKinney, TX', - 1972370 => 'The Colony, TX', - 1972377 => 'Frisco, TX', - 1972378 => 'Plano, TX', - 1972382 => 'Celina, TX', - 1972385 => 'Dallas, TX', - 1972386 => 'Dallas, TX', - 1972387 => 'Dallas, TX', - 1972390 => 'Allen, TX', - 1972392 => 'Dallas, TX', - 1972393 => 'Coppell, TX', - 1972394 => 'Carrollton, TX', - 1972395 => 'Carrollton, TX', - 1972396 => 'Allen, TX', - 1972398 => 'Plano, TX', - 1972401 => 'Irving, TX', - 1972402 => 'Irving, TX', - 1972403 => 'Plano, TX', - 1972404 => 'Dallas, TX', - 1972406 => 'Dallas, TX', - 1972407 => 'Dallas, TX', - 1972409 => 'Irving, TX', - 1972412 => 'Rowlett, TX', - 1972414 => 'Garland, TX', - 1972416 => 'Carrollton, TX', - 1972417 => 'Carrollton, TX', - 1972418 => 'Carrollton, TX', - 1972419 => 'Dallas, TX', - 1972420 => 'Lewisville, TX', - 1972422 => 'Plano, TX', - 1972423 => 'Plano, TX', - 1972424 => 'Plano, TX', - 1972429 => 'Wylie, TX', - 1972434 => 'Lewisville, TX', - 1972436 => 'Lewisville, TX', - 1972437 => 'Richardson, TX', - 1972438 => 'Irving, TX', - 1972442 => 'Wylie, TX', - 1972445 => 'Irving, TX', - 1972446 => 'Carrollton, TX', - 1972450 => 'Dallas, TX', - 1972456 => 'Dallas, TX', - 1972458 => 'Dallas, TX', - 1972459 => 'Lewisville, TX', - 1972462 => 'Coppell, TX', - 1972463 => 'Rowlett, TX', - 1972466 => 'Carrollton, TX', - 1972470 => 'Richardson, TX', - 1972473 => 'Plano, TX', - 1972475 => 'Rowlett, TX', - 1972478 => 'Carrollton, TX', - 1972479 => 'Richardson, TX', - 1972481 => 'Dallas, TX', - 1972484 => 'Dallas, TX', - 1972485 => 'Garland, TX', - 1972487 => 'Garland, TX', - 1972488 => 'Dallas, TX', - 1972490 => 'Dallas, TX', - 1972491 => 'Plano, TX', - 1972492 => 'Carrollton, TX', - 1972494 => 'Garland, TX', - 1972495 => 'Garland, TX', - 1972496 => 'Garland, TX', - 1972501 => 'Irving, TX', - 1972503 => 'Dallas, TX', - 1972509 => 'Plano, TX', - 1972516 => 'Plano, TX', - 1972517 => 'Plano, TX', - 1972519 => 'Plano, TX', - 1972522 => 'Grand Prairie, TX', - 1972524 => 'Terrell, TX', - 1972527 => 'Plano, TX', - 1972529 => 'McKinney, TX', - 1972530 => 'Garland, TX', - 1972539 => 'Flower Mound, TX', - 1972540 => 'McKinney, TX', - 1972542 => 'McKinney, TX', - 1972544 => 'Ferris, TX', - 1972547 => 'McKinney, TX', - 1972548 => 'McKinney, TX', - 1972550 => 'Irving, TX', - 1972551 => 'Terrell, TX', - 1972552 => 'Forney, TX', - 1972554 => 'Irving, TX', - 1972562 => 'McKinney, TX', - 1972563 => 'Terrell, TX', - 1972564 => 'Forney, TX', - 1972566 => 'Dallas, TX', - 1972569 => 'McKinney, TX', - 1972570 => 'Irving, TX', - 1972574 => 'Dallas, TX', - 1972576 => 'Red Oak, TX', - 1972578 => 'Plano, TX', - 1972579 => 'Irving, TX', - 1972580 => 'Irving, TX', - 1972594 => 'Irving, TX', - 1972596 => 'Plano, TX', - 1972599 => 'Plano, TX', - 1972600 => 'Irving, TX', - 1972602 => 'Grand Prairie, TX', - 1972606 => 'Grand Prairie, TX', - 1972608 => 'Plano, TX', - 1972612 => 'Plano, TX', - 1972613 => 'Mesquite, TX', - 1972617 => 'Red Oak, TX', - 1972618 => 'Plano, TX', - 1972620 => 'Dallas, TX', - 1972623 => 'Grand Prairie, TX', - 1972625 => 'The Colony, TX', - 1972633 => 'Plano, TX', - 1972635 => 'Royse City, TX', - 1972636 => 'Royse City, TX', - 1972641 => 'Grand Prairie, TX', - 1972642 => 'Grand Prairie, TX', - 1972644 => 'Richardson, TX', - 1972647 => 'Grand Prairie, TX', - 1972660 => 'Grand Prairie, TX', - 1972661 => 'Dallas, TX', - 1972663 => 'Dallas, TX', - 1972664 => 'Richardson, TX', - 1972665 => 'Plano, TX', - 1972668 => 'Frisco, TX', - 1972669 => 'Richardson, TX', - 1972671 => 'Richardson, TX', - 1972675 => 'Garland, TX', - 1972678 => 'Allen, TX', - 1972680 => 'Richardson, TX', - 1972681 => 'Mesquite, TX', - 1972682 => 'Mesquite, TX', - 1972686 => 'Mesquite, TX', - 1972690 => 'Richardson, TX', - 1972691 => 'Flower Mound, TX', - 1972698 => 'Mesquite, TX', - 1972699 => 'Richardson, TX', - 1972701 => 'Dallas, TX', - 1972702 => 'Dallas, TX', - 1972712 => 'Frisco, TX', - 1972717 => 'Irving, TX', - 1972719 => 'Irving, TX', - 1972721 => 'Irving, TX', - 1972722 => 'Rockwall, TX', - 1972723 => 'Midlothian, TX', - 1972724 => 'Flower Mound, TX', - 1972726 => 'Dallas, TX', - 1972727 => 'Allen, TX', - 1972732 => 'Dallas, TX', - 1972733 => 'Dallas, TX', - 1972736 => 'Princeton, TX', - 1972744 => 'Richardson, TX', - 1972745 => 'Coppell, TX', - 1972747 => 'Allen, TX', - 1972758 => 'Plano, TX', - 1972769 => 'Plano, TX', - 1972770 => 'Dallas, TX', - 1972771 => 'Rockwall, TX', - 1972772 => 'Rockwall, TX', - 1972774 => 'Dallas, TX', - 1972775 => 'Midlothian, TX', - 1972780 => 'Duncanville, TX', - 1972781 => 'Plano, TX', - 1972782 => 'Farmersville, TX', - 1972783 => 'Richardson, TX', - 1972784 => 'Farmersville, TX', - 1972788 => 'Dallas, TX', - 1972789 => 'Dallas, TX', - 1972790 => 'Irving, TX', - 1972801 => 'Plano, TX', - 1972837 => 'Melissa, TX', - 1972840 => 'Garland, TX', - 1972851 => 'Dallas, TX', - 1972855 => 'Dallas, TX', - 1972864 => 'Garland, TX', - 1972867 => 'Plano, TX', - 1972870 => 'Irving, TX', - 1972871 => 'Irving, TX', - 1972874 => 'Flower Mound, TX', - 1972875 => 'Ennis, TX', - 1972878 => 'Ennis, TX', - 1972881 => 'Plano, TX', - 1972889 => 'Richardson, TX', - 1972906 => 'Lewisville, TX', - 1972907 => 'Richardson, TX', - 1972910 => 'Irving, TX', - 1972918 => 'Richardson, TX', - 1972923 => 'Waxahachie, TX', - 1972924 => 'Anna, TX', - 1972926 => 'Garland, TX', - 1972929 => 'Irving, TX', - 1972932 => 'Kaufman, TX', - 1972934 => 'Dallas, TX', - 1972935 => 'Waxahachie, TX', - 1972937 => 'Waxahachie, TX', - 1972938 => 'Waxahachie, TX', - 1972939 => 'Carrollton, TX', - 1972941 => 'Plano, TX', - 1972943 => 'Plano, TX', - 1972960 => 'Dallas, TX', - 1972961 => 'Rockwall, TX', - 1972962 => 'Kaufman, TX', - 1972964 => 'Plano, TX', - 1972980 => 'Dallas, TX', - 1972981 => 'Plano, TX', - 1972984 => 'McKinney, TX', - 1972985 => 'Plano, TX', - 1972986 => 'Irving, TX', - 1972988 => 'Grand Prairie, TX', - 1972991 => 'Dallas, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1973.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1973.php deleted file mode 100644 index 0179da4c0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1973.php +++ /dev/null @@ -1,183 +0,0 @@ - 'New Jersey', - 1973227 => 'Fairfield, NJ', - 1973230 => 'Newark, NJ', - 1973233 => 'Montclair, NJ', - 1973235 => 'Nutley, NJ', - 1973239 => 'Verona, NJ', - 1973242 => 'Newark, NJ', - 1973243 => 'West Orange, NJ', - 1973244 => 'Fairfield, NJ', - 1973247 => 'Paterson, NJ', - 1973253 => 'Clifton, NJ', - 1973259 => 'Bloomfield, NJ', - 1973266 => 'East Orange, NJ', - 1973267 => 'Morristown, NJ', - 1973268 => 'Newark, NJ', - 1973273 => 'Newark, NJ', - 1973274 => 'Newark, NJ', - 1973276 => 'Fairfield, NJ', - 1973278 => 'Paterson, NJ', - 1973279 => 'Paterson, NJ', - 1973284 => 'Nutley, NJ', - 1973285 => 'Morristown, NJ', - 1973292 => 'Morristown, NJ', - 1973293 => 'Montague Township, NJ', - 1973300 => 'Newton, NJ', - 1973301 => 'Florham Park, NJ', - 1973305 => 'Wayne, NJ', - 1973321 => 'Paterson, NJ', - 1973322 => 'Livingston, NJ', - 1973324 => 'West Orange, NJ', - 1973325 => 'West Orange, NJ', - 1973326 => 'Morristown, NJ', - 1973333 => 'Paterson, NJ', - 1973338 => 'Bloomfield, NJ', - 1973340 => 'Clifton, NJ', - 1973341 => 'Paterson, NJ', - 1973344 => 'Newark, NJ', - 1973345 => 'Paterson, NJ', - 1973350 => 'Newark, NJ', - 1973353 => 'Newark, NJ', - 1973357 => 'Paterson, NJ', - 1973365 => 'Passaic, NJ', - 1973371 => 'Irvington, NJ', - 1973372 => 'Irvington, NJ', - 1973373 => 'Irvington, NJ', - 1973374 => 'Irvington, NJ', - 1973375 => 'Irvington, NJ', - 1973383 => 'Newton, NJ', - 1973395 => 'East Orange, NJ', - 1973399 => 'Irvington, NJ', - 1973414 => 'East Orange, NJ', - 1973416 => 'Irvington, NJ', - 1973422 => 'Livingston, NJ', - 1973423 => 'Hawthorne, NJ', - 1973425 => 'Morristown, NJ', - 1973427 => 'Hawthorne, NJ', - 1973429 => 'Bloomfield, NJ', - 1973439 => 'Fairfield, NJ', - 1973450 => 'Belleville, NJ', - 1973455 => 'Morristown, NJ', - 1973465 => 'Newark, NJ', - 1973466 => 'Newark, NJ', - 1973481 => 'Newark, NJ', - 1973482 => 'Newark, NJ', - 1973483 => 'Newark, NJ', - 1973484 => 'Newark, NJ', - 1973485 => 'Newark, NJ', - 1973491 => 'Newark, NJ', - 1973509 => 'Montclair, NJ', - 1973522 => 'Newark, NJ', - 1973523 => 'Paterson, NJ', - 1973533 => 'Livingston, NJ', - 1973535 => 'Livingston, NJ', - 1973538 => 'Morristown, NJ', - 1973539 => 'Morristown, NJ', - 1973540 => 'Morristown, NJ', - 1973542 => 'Nutley, NJ', - 1973543 => 'Mendham, NJ', - 1973546 => 'Clifton, NJ', - 1973569 => 'Paterson, NJ', - 1973575 => 'Fairfield, NJ', - 1973579 => 'Newton, NJ', - 1973589 => 'Newark, NJ', - 1973593 => 'Madison, NJ', - 1973594 => 'Clifton, NJ', - 1973596 => 'Newark, NJ', - 1973597 => 'Livingston, NJ', - 1973605 => 'Morristown, NJ', - 1973621 => 'Newark, NJ', - 1973622 => 'Newark, NJ', - 1973623 => 'Newark, NJ', - 1973624 => 'Newark, NJ', - 1973625 => 'Denville, NJ', - 1973628 => 'Wayne, NJ', - 1973633 => 'Wayne, NJ', - 1973635 => 'Chatham, NJ', - 1973642 => 'Newark, NJ', - 1973643 => 'Newark, NJ', - 1973644 => 'Morristown, NJ', - 1973645 => 'Newark, NJ', - 1973648 => 'Newark, NJ', - 1973653 => 'Paterson, NJ', - 1973655 => 'Montclair, NJ', - 1973656 => 'Morristown, NJ', - 1973660 => 'Florham Park, NJ', - 1973661 => 'Nutley, NJ', - 1973663 => 'Lake Hopatcong, NJ', - 1973667 => 'Nutley, NJ', - 1973669 => 'West Orange, NJ', - 1973672 => 'East Orange, NJ', - 1973673 => 'East Orange, NJ', - 1973674 => 'East Orange, NJ', - 1973675 => 'East Orange, NJ', - 1973676 => 'East Orange, NJ', - 1973678 => 'East Orange, NJ', - 1973680 => 'Bloomfield, NJ', - 1973684 => 'Paterson, NJ', - 1973686 => 'Wayne, NJ', - 1973689 => 'Paterson, NJ', - 1973694 => 'Wayne, NJ', - 1973696 => 'Wayne, NJ', - 1973701 => 'Chatham, NJ', - 1973702 => 'Sussex, NJ', - 1973706 => 'Wayne, NJ', - 1973726 => 'Sparta Township, NJ', - 1973728 => 'West Milford, NJ', - 1973729 => 'Sparta Township, NJ', - 1973731 => 'West Orange, NJ', - 1973732 => 'Newark, NJ', - 1973733 => 'Newark, NJ', - 1973736 => 'West Orange, NJ', - 1973740 => 'Livingston, NJ', - 1973742 => 'Paterson, NJ', - 1973743 => 'Bloomfield, NJ', - 1973744 => 'Montclair, NJ', - 1973746 => 'Montclair, NJ', - 1973748 => 'Bloomfield, NJ', - 1973751 => 'Belleville, NJ', - 1973754 => 'Paterson, NJ', - 1973759 => 'Belleville, NJ', - 1973761 => 'Maplewood, NJ', - 1973764 => 'Vernon Township, NJ', - 1973772 => 'Clifton, NJ', - 1973782 => 'Paterson, NJ', - 1973783 => 'Montclair, NJ', - 1973786 => 'Andover, NJ', - 1973808 => 'Fairfield, NJ', - 1973817 => 'Newark, NJ', - 1973824 => 'Newark, NJ', - 1973829 => 'Morristown, NJ', - 1973844 => 'Belleville, NJ', - 1973853 => 'Hewitt, NJ', - 1973857 => 'Verona, NJ', - 1973872 => 'Wayne, NJ', - 1973875 => 'Sussex, NJ', - 1973877 => 'Newark, NJ', - 1973881 => 'Paterson, NJ', - 1973882 => 'Fairfield, NJ', - 1973889 => 'Morristown, NJ', - 1973895 => 'Randolph, NJ', - 1973898 => 'Morristown, NJ', - 1973923 => 'Newark, NJ', - 1973925 => 'Paterson, NJ', - 1973926 => 'Newark, NJ', - 1973940 => 'Newton, NJ', - 1973948 => 'Branchville, NJ', - 1973962 => 'Ringwood, NJ', - 1973971 => 'Morristown, NJ', - 1973972 => 'Newark, NJ', - 1973977 => 'Paterson, NJ', - 1973984 => 'Morristown, NJ', - 1973991 => 'Newark, NJ', - 1973992 => 'Livingston, NJ', - 1973993 => 'Morristown, NJ', - 1973994 => 'Livingston, NJ', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1978.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1978.php deleted file mode 100644 index 1f1d77e71..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1978.php +++ /dev/null @@ -1,146 +0,0 @@ - 'Massachusetts', - 1978208 => 'Lawrence, MA', - 1978232 => 'Beverly, MA', - 1978244 => 'Chelmsford, MA', - 1978249 => 'Athol, MA', - 1978250 => 'Chelmsford, MA', - 1978251 => 'North Chelmsford, MA', - 1978256 => 'Chelmsford, MA', - 1978258 => 'Lawrence, MA', - 1978263 => 'Acton, MA', - 1978264 => 'Acton, MA', - 1978266 => 'Acton, MA', - 1978275 => 'Lowell, MA', - 1978276 => 'North Reading, MA', - 1978281 => 'Gloucester, MA', - 1978282 => 'Gloucester, MA', - 1978283 => 'Gloucester, MA', - 1978287 => 'Concord, MA', - 1978297 => 'Winchendon, MA', - 1978318 => 'Concord, MA', - 1978327 => 'Lawrence, MA', - 1978342 => 'Fitchburg, MA', - 1978343 => 'Fitchburg, MA', - 1978345 => 'Fitchburg, MA', - 1978346 => 'Merrimac, MA', - 1978352 => 'Georgetown, MA', - 1978354 => 'Salem, MA', - 1978355 => 'Barre, MA', - 1978356 => 'Ipswich, MA', - 1978363 => 'West Newbury, MA', - 1978365 => 'Clinton, MA', - 1978368 => 'Clinton, MA', - 1978369 => 'Concord, MA', - 1978371 => 'Concord, MA', - 1978372 => 'Haverhill, MA', - 1978373 => 'Haverhill, MA', - 1978374 => 'Haverhill, MA', - 1978386 => 'Ashby, MA', - 1978388 => 'Amesbury, MA', - 1978392 => 'Westford, MA', - 1978422 => 'Sterling, MA', - 1978425 => 'Shirley, MA', - 1978433 => 'Pepperell, MA', - 1978440 => 'Sudbury, MA', - 1978441 => 'Lowell, MA', - 1978443 => 'Sudbury, MA', - 1978446 => 'Lowell, MA', - 1978448 => 'Groton, MA', - 1978452 => 'Lowell, MA', - 1978453 => 'Lowell, MA', - 1978454 => 'Lowell, MA', - 1978456 => 'Harvard, MA', - 1978458 => 'Lowell, MA', - 1978459 => 'Lowell, MA', - 1978461 => 'Maynard, MA', - 1978462 => 'Newburyport, MA', - 1978463 => 'Newburyport, MA', - 1978464 => 'Princeton, MA', - 1978465 => 'Newburyport, MA', - 1978466 => 'Leominster, MA', - 1978468 => 'South Hamilton, MA', - 1978470 => 'Andover, MA', - 1978474 => 'Andover, MA', - 1978475 => 'Andover, MA', - 1978486 => 'Littleton, MA', - 1978499 => 'Newburyport, MA', - 1978521 => 'Haverhill, MA', - 1978524 => 'Beverly, MA', - 1978525 => 'Gloucester, MA', - 1978526 => 'Manchester, MA', - 1978531 => 'Peabody, MA', - 1978532 => 'Peabody, MA', - 1978534 => 'Leominster, MA', - 1978535 => 'Peabody, MA', - 1978536 => 'Peabody, MA', - 1978537 => 'Leominster, MA', - 1978538 => 'Peabody, MA', - 1978544 => 'Orange, MA', - 1978546 => 'Rockport, MA', - 1978556 => 'Haverhill, MA', - 1978557 => 'Lawrence, MA', - 1978562 => 'Hudson, MA', - 1978567 => 'Hudson, MA', - 1978568 => 'Hudson, MA', - 1978582 => 'Lunenburg, MA', - 1978594 => 'Salem, MA', - 1978597 => 'Townsend, MA', - 1978630 => 'Gardner, MA', - 1978632 => 'Gardner, MA', - 1978635 => 'Acton, MA', - 1978640 => 'Tewksbury, MA', - 1978646 => 'Danvers, MA', - 1978649 => 'Tyngsborough, MA', - 1978657 => 'Wilmington, MA', - 1978658 => 'Wilmington, MA', - 1978663 => 'Billerica, MA', - 1978664 => 'North Reading, MA', - 1978667 => 'Billerica, MA', - 1978670 => 'Billerica, MA', - 1978671 => 'Billerica, MA', - 1978692 => 'Westford, MA', - 1978735 => 'Lowell, MA', - 1978739 => 'Danvers, MA', - 1978740 => 'Salem, MA', - 1978741 => 'Salem, MA', - 1978744 => 'Salem, MA', - 1978745 => 'Salem, MA', - 1978749 => 'Andover, MA', - 1978750 => 'Danvers, MA', - 1978762 => 'Danvers, MA', - 1978768 => 'Essex, MA', - 1978772 => 'Ayer, MA', - 1978774 => 'Danvers, MA', - 1978777 => 'Danvers, MA', - 1978779 => 'Bolton, MA', - 1978827 => 'Ashburnham, MA', - 1978834 => 'Amesbury, MA', - 1978838 => 'Berlin, MA', - 1978840 => 'Leominster, MA', - 1978851 => 'Tewksbury, MA', - 1978858 => 'Tewksbury, MA', - 1978874 => 'Westminster, MA', - 1978887 => 'Topsfield, MA', - 1978897 => 'Maynard, MA', - 1978921 => 'Beverly, MA', - 1978922 => 'Beverly, MA', - 1978927 => 'Beverly, MA', - 1978928 => 'Hubbardston, MA', - 1978934 => 'Lowell, MA', - 1978937 => 'Lowell, MA', - 1978939 => 'Templeton, MA', - 1978948 => 'Rowley, MA', - 1978952 => 'Littleton, MA', - 1978957 => 'Dracut, MA', - 1978969 => 'Beverly, MA', - 1978970 => 'Lowell, MA', - 1978977 => 'Peabody, MA', - 1978988 => 'Wilmington, MA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1979.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1979.php deleted file mode 100644 index 20418e730..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1979.php +++ /dev/null @@ -1,71 +0,0 @@ - 'Texas', - 1979209 => 'Bryan, TX', - 1979233 => 'Freeport, TX', - 1979234 => 'Eagle Lake, TX', - 1979239 => 'Freeport, TX', - 1979242 => 'La Grange, TX', - 1979244 => 'Bay City, TX', - 1979245 => 'Bay City, TX', - 1979251 => 'Brenham, TX', - 1979265 => 'Clute, TX', - 1979272 => 'Caldwell, TX', - 1979277 => 'Brenham, TX', - 1979279 => 'Hearne, TX', - 1979282 => 'Wharton, TX', - 1979285 => 'Lake Jackson, TX', - 1979297 => 'Lake Jackson, TX', - 1979299 => 'Lake Jackson, TX', - 1979323 => 'Bay City, TX', - 1979335 => 'East Bernard, TX', - 1979345 => 'West Columbia, TX', - 1979421 => 'Brenham, TX', - 1979480 => 'Lake Jackson, TX', - 1979532 => 'Wharton, TX', - 1979542 => 'Giddings, TX', - 1979543 => 'El Campo, TX', - 1979548 => 'Sweeny, TX', - 1979567 => 'Caldwell, TX', - 1979578 => 'El Campo, TX', - 1979596 => 'Somerville, TX', - 1979690 => 'College Station, TX', - 1979691 => 'College Station, TX', - 1979693 => 'College Station, TX', - 1979694 => 'College Station, TX', - 1979695 => 'College Station, TX', - 1979696 => 'College Station, TX', - 1979703 => 'Bryan, TX', - 1979725 => 'Weimar, TX', - 1979731 => 'Bryan, TX', - 1979732 => 'Columbus, TX', - 1979733 => 'Columbus, TX', - 1979743 => 'Schulenburg, TX', - 1979764 => 'College Station, TX', - 1979773 => 'Lexington, TX', - 1979774 => 'Bryan, TX', - 1979775 => 'Bryan, TX', - 1979776 => 'Bryan, TX', - 1979778 => 'Bryan, TX', - 1979779 => 'Bryan, TX', - 1979793 => 'Needville, TX', - 1979798 => 'Brazoria, TX', - 1979822 => 'Bryan, TX', - 1979823 => 'Bryan, TX', - 1979826 => 'Hempstead, TX', - 1979828 => 'Franklin, TX', - 1979830 => 'Brenham, TX', - 1979836 => 'Brenham, TX', - 1979845 => 'College Station, TX', - 1979848 => 'Angleton, TX', - 1979849 => 'Angleton, TX', - 1979864 => 'Angleton, TX', - 1979865 => 'Bellville, TX', - 1979885 => 'Sealy, TX', - 1979968 => 'La Grange, TX', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1980.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1980.php deleted file mode 100644 index b9ff2fbb5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1980.php +++ /dev/null @@ -1,14 +0,0 @@ - 'North Carolina', - 1980207 => 'Charlotte, NC', - 1980224 => 'Charlotte, NC', - 1980343 => 'Charlotte, NC', - 1980487 => 'Shelby, NC', - 1980819 => 'Charlotte, NC', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1984.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1984.php deleted file mode 100644 index 0c572aa0b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1984.php +++ /dev/null @@ -1,9 +0,0 @@ - 'North Carolina', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1985.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1985.php deleted file mode 100644 index fa90db10f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1985.php +++ /dev/null @@ -1,93 +0,0 @@ - 'Louisiana', - 1985223 => 'Houma, LA', - 1985229 => 'Kentwood, LA', - 1985230 => 'Hammond, LA', - 1985246 => 'Covington, LA', - 1985249 => 'Covington, LA', - 1985252 => 'Pierre Part, LA', - 1985262 => 'Houma, LA', - 1985288 => 'Slidell, LA', - 1985325 => 'Cut Off, LA', - 1985327 => 'Covington, LA', - 1985331 => 'Luling, LA', - 1985340 => 'Hammond, LA', - 1985345 => 'Hammond, LA', - 1985359 => 'LaPlace, LA', - 1985369 => 'Napoleonville, LA', - 1985370 => 'Ponchatoula, LA', - 1985384 => 'Morgan City, LA', - 1985385 => 'Morgan City, LA', - 1985386 => 'Ponchatoula, LA', - 1985395 => 'Patterson, LA', - 1985396 => 'Golden Meadow, LA', - 1985419 => 'Hammond, LA', - 1985429 => 'Hammond, LA', - 1985446 => 'Thibodaux, LA', - 1985447 => 'Thibodaux, LA', - 1985448 => 'Thibodaux, LA', - 1985449 => 'Thibodaux, LA', - 1985475 => 'Golden Meadow, LA', - 1985493 => 'Thibodaux, LA', - 1985532 => 'Lockport, LA', - 1985536 => 'Reserve, LA', - 1985537 => 'Raceland, LA', - 1985542 => 'Hammond, LA', - 1985543 => 'Hammond, LA', - 1985580 => 'Houma, LA', - 1985624 => 'Mandeville, LA', - 1985626 => 'Mandeville, LA', - 1985632 => 'Cut Off, LA', - 1985639 => 'Slidell, LA', - 1985641 => 'Slidell, LA', - 1985643 => 'Slidell, LA', - 1985645 => 'Slidell, LA', - 1985646 => 'Slidell, LA', - 1985649 => 'Slidell, LA', - 1985651 => 'LaPlace, LA', - 1985652 => 'LaPlace, LA', - 1985662 => 'Hammond, LA', - 1985674 => 'Mandeville, LA', - 1985690 => 'Slidell, LA', - 1985693 => 'Larose, LA', - 1985727 => 'Mandeville, LA', - 1985732 => 'Bogalusa, LA', - 1985735 => 'Bogalusa, LA', - 1985747 => 'Amite City, LA', - 1985748 => 'Amite City, LA', - 1985764 => 'Destrehan, LA', - 1985778 => 'Mandeville, LA', - 1985781 => 'Slidell, LA', - 1985783 => 'Hahnville, LA', - 1985785 => 'Luling, LA', - 1985792 => 'Madisonville, LA', - 1985795 => 'Franklinton, LA', - 1985796 => 'Folsom, LA', - 1985809 => 'Covington, LA', - 1985839 => 'Franklinton, LA', - 1985845 => 'Madisonville, LA', - 1985847 => 'Slidell, LA', - 1985851 => 'Houma, LA', - 1985853 => 'Houma, LA', - 1985857 => 'Houma, LA', - 1985863 => 'Pearl River, LA', - 1985867 => 'Covington, LA', - 1985868 => 'Houma, LA', - 1985871 => 'Covington, LA', - 1985872 => 'Houma, LA', - 1985873 => 'Houma, LA', - 1985875 => 'Covington, LA', - 1985876 => 'Houma, LA', - 1985878 => 'Independence, LA', - 1985879 => 'Houma, LA', - 1985882 => 'Lacombe, LA', - 1985892 => 'Covington, LA', - 1985893 => 'Covington, LA', - 1985898 => 'Covington, LA', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1989.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1989.php deleted file mode 100644 index a3869c170..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/1989.php +++ /dev/null @@ -1,133 +0,0 @@ - 'Michigan', - 1989224 => 'St. Johns, MI', - 1989227 => 'St. Johns, MI', - 1989246 => 'Gladwin, MI', - 1989249 => 'Saginaw, MI', - 1989269 => 'Bad Axe, MI', - 1989275 => 'Roscommon, MI', - 1989288 => 'Durand, MI', - 1989317 => 'Mount Pleasant, MI', - 1989343 => 'West Branch, MI', - 1989345 => 'West Branch, MI', - 1989348 => 'Grayling, MI', - 1989352 => 'Lakeview, MI', - 1989354 => 'Alpena, MI', - 1989356 => 'Alpena, MI', - 1989358 => 'Alpena, MI', - 1989362 => 'Tawas City, MI', - 1989366 => 'Houghton Lake, MI', - 1989386 => 'Clare, MI', - 1989389 => 'Saint Helen, MI', - 1989401 => 'Saginaw, MI', - 1989422 => 'Houghton Lake, MI', - 1989426 => 'Gladwin, MI', - 1989427 => 'Edmore, MI', - 1989435 => 'Beaverton, MI', - 1989453 => 'Pigeon, MI', - 1989463 => 'Alma, MI', - 1989465 => 'Coleman, MI', - 1989466 => 'Alma, MI', - 1989471 => 'Ossineke, MI', - 1989479 => 'Harbor Beach, MI', - 1989486 => 'Midland, MI', - 1989496 => 'Midland, MI', - 1989497 => 'Saginaw, MI', - 1989539 => 'Harrison, MI', - 1989583 => 'Saginaw, MI', - 1989584 => 'Carson City, MI', - 1989588 => 'Farwell, MI', - 1989593 => 'Fowler, MI', - 1989624 => 'Birch Run, MI', - 1989631 => 'Midland, MI', - 1989633 => 'Midland, MI', - 1989635 => 'Marlette, MI', - 1989642 => 'Hemlock, MI', - 1989643 => 'Merrill, MI', - 1989644 => 'Weidman, MI', - 1989652 => 'Frankenmuth, MI', - 1989658 => 'Ubly, MI', - 1989662 => 'Auburn, MI', - 1989667 => 'Bay City, MI', - 1989671 => 'Bay City, MI', - 1989672 => 'Caro, MI', - 1989673 => 'Caro, MI', - 1989681 => 'St. Louis, MI', - 1989684 => 'Bay City, MI', - 1989685 => 'Rose City, MI', - 1989686 => 'Bay City, MI', - 1989687 => 'Sanford, MI', - 1989695 => 'Freeland, MI', - 1989697 => 'Linwood, MI', - 1989705 => 'Gaylord, MI', - 1989723 => 'Owosso, MI', - 1989724 => 'Harrisville, MI', - 1989725 => 'Owosso, MI', - 1989727 => 'Hubbard Lake, MI', - 1989728 => 'Hale, MI', - 1989729 => 'Owosso, MI', - 1989731 => 'Gaylord, MI', - 1989732 => 'Gaylord, MI', - 1989733 => 'Onaway, MI', - 1989734 => 'Rogers City, MI', - 1989736 => 'Lincoln, MI', - 1989738 => 'Port Austin, MI', - 1989739 => 'Oscoda, MI', - 1989742 => 'Hillman, MI', - 1989743 => 'Corunna, MI', - 1989752 => 'Saginaw, MI', - 1989753 => 'Saginaw, MI', - 1989754 => 'Saginaw, MI', - 1989755 => 'Saginaw, MI', - 1989759 => 'Saginaw, MI', - 1989772 => 'Mount Pleasant, MI', - 1989773 => 'Mount Pleasant, MI', - 1989775 => 'Mount Pleasant, MI', - 1989779 => 'Mount Pleasant, MI', - 1989781 => 'Saginaw, MI', - 1989785 => 'Atlanta, MI', - 1989786 => 'Lewiston, MI', - 1989790 => 'Saginaw, MI', - 1989791 => 'Saginaw, MI', - 1989792 => 'Saginaw, MI', - 1989793 => 'Saginaw, MI', - 1989797 => 'Saginaw, MI', - 1989799 => 'Saginaw, MI', - 1989821 => 'Roscommon, MI', - 1989823 => 'Vassar, MI', - 1989826 => 'Mio, MI', - 1989828 => 'Shepherd, MI', - 1989831 => 'Stanton, MI', - 1989832 => 'Midland, MI', - 1989834 => 'Ovid, MI', - 1989835 => 'Midland, MI', - 1989837 => 'Midland, MI', - 1989839 => 'Midland, MI', - 1989842 => 'Breckenridge, MI', - 1989843 => 'Mayville, MI', - 1989845 => 'Chesaning, MI', - 1989846 => 'Standish, MI', - 1989848 => 'Fairview, MI', - 1989856 => 'Caseville, MI', - 1989862 => 'Elsie, MI', - 1989865 => 'St. Charles, MI', - 1989868 => 'Reese, MI', - 1989871 => 'Millington, MI', - 1989872 => 'Cass City, MI', - 1989873 => 'Prescott, MI', - 1989875 => 'Ithaca, MI', - 1989876 => 'Au Gres, MI', - 1989879 => 'Pinconning, MI', - 1989883 => 'Sebewaing, MI', - 1989891 => 'Bay City, MI', - 1989892 => 'Bay City, MI', - 1989893 => 'Bay City, MI', - 1989894 => 'Bay City, MI', - 1989895 => 'Bay City, MI', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/56.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/56.php index e4e13bd16..510ea1787 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/56.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/56.php @@ -6,7 +6,7 @@ return array ( 5622 => 'Santiago, Metropolitan Region', - 56232 => 'Santiago, Metropolitan Region', + 5623 => 'Santiago, Metropolitan Region', 5632 => 'Valparaíso', 5633 => 'Quillota, Valparaíso', 5634 => 'San Felipe, Valparaíso', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/7.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/7.php index 5a4d41dd9..2845f38c1 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/7.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/7.php @@ -284,6 +284,7 @@ return array ( 772777 => 'Kegen', 772778 => 'Chundzha', 772779 => 'Narynkol', + 77279 => 'Almaty', 77282 => 'Taldykorgan', 772831 => 'Zharkent', 772832 => 'Zhansugurov', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86.php new file mode 100644 index 000000000..3319b2243 --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86.php @@ -0,0 +1,335 @@ + 'Guangzhou, Guangdong', + 8621 => 'Shanghai', + 8622 => 'Tianjin', + 8623 => 'Chongqing', + 8624 => 'Shenyang/Tieling/Fushun, Liaoning', + 8625 => 'Nanjing, Jiangsu', + 8627 => 'Wuhan, Hubei', + 8628 => 'Chengdu/Ziyang/Meishan, Sichuan', + 8629 => 'XiAn/Xianyang, Shaanxi', + 86310 => 'Handan, Hebei', + 86311 => 'Shijiazhuang, Hebei', + 86312 => 'Baoding, Hebei', + 86313 => 'Zhangjiakou, Hebei', + 86314 => 'Chengde, Hebei', + 86315 => 'Tangshan, Hebei', + 86316 => 'Langfang, Hebei', + 86317 => 'Cangzhou, Hebei', + 86318 => 'Hengshui, Hebei', + 86319 => 'Xingtai, Hebei', + 86335 => 'Qinhuangdao, Hebei', + 86349 => 'Shuozhou, Shanxi', + 86350 => 'Xinzhou, Shanxi', + 86351 => 'Taiyuan, Shanxi', + 86352 => 'Datong, Shanxi', + 86353 => 'Yangquan, Shanxi', + 86354 => 'Yuci, Shanxi', + 86355 => 'Changzhi, Shanxi', + 86356 => 'Jincheng, Shanxi', + 86357 => 'Linfen, Shanxi', + 86358 => 'Lishi, Shanxi', + 86359 => 'Yuncheng, Shanxi', + 86370 => 'Shangqiu, Henan', + 86371 => 'Zhengzhou, Henan', + 86372 => 'Anyang, Henan', + 86373 => 'Xinxiang, Henan', + 86374 => 'Xuchang, Henan', + 86375 => 'Pingdingshan, Henan', + 86376 => 'Xinyang, Henan', + 86377 => 'Nanyang, Henan', + 86378 => 'Kaifeng, Henan', + 86379 => 'Luoyang, Henan', + 86391 => 'Jiaozuo, Henan', + 86392 => 'Hebi, Henan', + 86393 => 'Puyang, Henan', + 86394 => 'Zhoukou, Henan', + 86395 => 'Luohe, Henan', + 86396 => 'Zhumadian, Henan', + 86398 => 'Sanmenxia, Henan', + 86410 => 'Tieling, Liaoning', + 86411 => 'Dalian, Liaoning', + 86412 => 'Anshan, Liaoning', + 86413 => 'Fushun, Liaoning', + 86414 => 'Benxi, Liaoning', + 86415 => 'Dandong, Liaoning', + 86416 => 'Jinzhou, Liaoning', + 86417 => 'Yingkou, Liaoning', + 86418 => 'Fuxin, Liaoning', + 86419 => 'Liaoyang, Liaoning', + 86421 => 'Chaoyang, Liaoning', + 86427 => 'Panjin, Liaoning', + 86429 => 'Huludao, Liaoning', + 86431 => 'Changchun, Jilin', + 86432 => 'Jilin, Jilin', + 86433 => 'Yanbian Zhou/Hunchun/Yanji, Jilin', + 86434 => 'Siping, Jilin', + 86435 => 'Tonghua/Meihekou, Jilin', + 86436 => 'Baicheng, Jilin', + 86437 => 'Liaoyuan, Jilin', + 86438 => 'Songyuan, Jilin', + 86439 => 'Baishan, Jilin', + 86451 => 'Harbin, Heilongjiang', + 86452 => 'Qiqihar, Heilongjiang', + 86453 => 'Mudanjiang, Heilongjiang', + 86454 => 'Jiamusi, Heilongjiang', + 86455 => 'Suihua, Heilongjiang', + 86456 => 'Heihe, Heilongjiang', + 86457 => 'Jiagedaqi, Heilongjiang', + 86458 => 'Yichun, Heilongjiang', + 86459 => 'Daqing, Heilongjiang', + 86464 => 'Qitaihe, Heilongjiang', + 86467 => 'Jixi, Heilongjiang', + 86468 => 'Hegang, Heilongjiang', + 86469 => 'Shuangyashan, Heilongjiang', + 86470 => 'Hailaer, Inner Mongolia', + 86471 => 'Huhehaote, Inner Mongolia', + 86472 => 'Baotou, Inner Mongolia', + 86473 => 'Wuhai, Inner Mongolia', + 86474 => 'Jining, Inner Mongolia', + 86475 => 'Tongliao, Inner Mongolia', + 86476 => 'Chifeng, Inner Mongolia', + 86477 => 'Dongsheng, Inner Mongolia', + 86478 => 'Linhe, Inner Mongolia', + 86479 => 'Xilinhaote, Inner Mongolia', + 86482 => 'Wulanhaote, Inner Mongolia', + 86483 => 'Alashanzuoqi, Inner Mongolia', + 86510 => 'Wuxi, Jiangsu', + 86511 => 'Zhenjiang, Jiangsu', + 86512 => 'Suzhou, Jiangsu', + 86513 => 'Nantong, Jiangsu', + 86514 => 'Yangzhou, Jiangsu', + 86515 => 'Yancheng, Jiangsu', + 86516 => 'Xuzhou, Jiangsu', + 86517 => 'Huaian, Jiangsu', + 86518 => 'Lianyungang, Jiangsu', + 86519 => 'Changzhou, Jiangsu', + 86523 => 'Taizhou, Jiangsu', + 86527 => 'Suqian, Jiangsu', + 86530 => 'Heze, Shandong', + 86531 => 'Jinan, Shandong', + 86532 => 'Qingdao, Shandong', + 86533 => 'Zibo, Shandong', + 86534 => 'Dezhou, Shandong', + 86535 => 'Yantai, Shandong', + 86536 => 'Weifang, Shandong', + 86537 => 'Jining, Shandong', + 86538 => 'TaiAn, Shandong', + 86539 => 'Linyi, Shandong', + 86543 => 'Binzhou, Shandong', + 86546 => 'Dongying, Shandong', + 86550 => 'Chuzhou, Anhui', + 86551 => 'Hefei/Chaohu, Anhui', + 86552 => 'Bengbu, Anhui', + 86553 => 'Wuhu, Anhui', + 86554 => 'Huainan, Anhui', + 86555 => 'MaAnshan, Anhui', + 86556 => 'Anqing, Anhui', + 86557 => 'Suzhou, Anhui', + 86558 => 'Fuyang, Anhui', + 86559 => 'Huangshan, Anhui', + 86561 => 'Huaibei, Anhui', + 86562 => 'Tongling, Anhui', + 86563 => 'Xuancheng, Anhui', + 86564 => 'LiuAn, Anhui', + 86566 => 'Chizhou, Anhui', + 86570 => 'Quzhou, Zhejiang', + 86571 => 'Hangzhou, Zhejiang', + 86572 => 'Huzhou, Zhejiang', + 86573 => 'Jiaxing, Zhejiang', + 86574 => 'Ningbo, Zhejiang', + 86575 => 'Shaoxing, Zhejiang', + 86576 => 'Taizhou, Zhejiang', + 86577 => 'Wenzhou, Zhejiang', + 86578 => 'Lishui, Zhejiang', + 86579 => 'Jinhua, Zhejiang', + 86580 => 'Zhoushan, Zhejiang', + 86591 => 'Fuzhou, Fujian', + 86592 => 'Xiamen, Fujian', + 86593 => 'Ningde, Fujian', + 86594 => 'Putian, Fujian', + 86595 => 'Quanzhou, Fujian', + 86596 => 'Zhangzhou, Fujian', + 86597 => 'Longyan, Fujian', + 86598 => 'Sanming, Fujian', + 86599 => 'Nanping, Fujian', + 86631 => 'Weihai, Shandong', + 86632 => 'Zaozhuang, Shandong', + 86633 => 'Rizhao, Shandong', + 86634 => 'Laiwu, Shandong', + 86635 => 'Liaocheng, Shandong', + 86660 => 'Shanwei, Guangdong', + 86662 => 'Yangjiang, Guangdong', + 86663 => 'Jieyang, Guangdong', + 86668 => 'Maoming, Guangdong', + 86691 => 'Jinghong, Yunnan', + 86692 => 'Luxi, Yunnan', + 86701 => 'Yingtan, Jiangxi', + 86710 => 'Xiangyang/Xiangfan, Hubei', + 86711 => 'Ezhou, Hubei', + 86712 => 'Xiaogan, Hubei', + 86713 => 'Huanggang, Hubei', + 86714 => 'Huangshi, Hubei', + 86715 => 'Xianning, Hubei', + 86716 => 'Jingzhou, Hubei', + 86717 => 'Yichang, Hubei', + 86718 => 'Enshi, Hubei', + 86719 => 'Shiyan, Hubei', + 86722 => 'Suizhou, Hubei', + 86724 => 'Jingmen, Hubei', + 86728 => 'Xiantao, Hubei', + 86730 => 'Yueyang, Hunan', + 86731 => 'Zhuzhou/Changsha/Xiangtan, Hunan', + 86734 => 'Hengyang, Hunan', + 86735 => 'Chenzhou, Hunan', + 86736 => 'Changde, Hunan', + 86737 => 'Yiyang, Hunan', + 86738 => 'Loudi, Hunan', + 86739 => 'Shaoyang, Hunan', + 86743 => 'Jishou, Hunan', + 86744 => 'Zhangjiajie, Hunan', + 86745 => 'Huaihua, Hunan', + 86746 => 'Yongzhou, Hunan', + 86750 => 'Jiangmen, Guangdong', + 86751 => 'Shaoguan, Guangdong', + 86752 => 'Huizhou, Guangdong', + 86753 => 'Meizhou, Guangdong', + 86754 => 'Shantou/Chaoyang, Guangdong', + 86755 => 'Shenzhen, Guangdong', + 86756 => 'Zhuhai, Guangdong', + 86757 => 'Shunde/Foshan, Guangdong', + 86758 => 'Zhaoqing, Guangdong', + 86759 => 'Zhanjiang, Guangdong', + 86760 => 'Zhongshan, Guangdong', + 86762 => 'Heyuan, Guangdong', + 86763 => 'Qingyuan, Guangdong', + 86766 => 'Yunfu, Guangdong', + 86768 => 'Chaozhou, Guangdong', + 86769 => 'Dongguan, Guangdong', + 86770 => 'Fangchenggang, Guangxi', + 86771 => 'Nanning, Guangxi', + 86772 => 'Liuzhou, Guangxi', + 86773 => 'Guilin, Guangxi', + 86774 => 'Wuzhou, Guangxi', + 86775 => 'Yulin, Guangxi', + 86776 => 'Baise, Guangxi', + 86777 => 'Qinzhou, Guangxi', + 86778 => 'Hechi, Guangxi', + 86779 => 'Beihai, Guangxi', + 86790 => 'Xinyu, Jiangxi', + 86791 => 'Nanchang, Jiangxi', + 86792 => 'Jiujiang, Jiangxi', + 86793 => 'Shangrao, Jiangxi', + 86794 => 'Fuzhou, Jiangxi', + 86795 => 'Yichun, Jiangxi', + 86796 => 'JiAn, Jiangxi', + 86797 => 'Ganzhou, Jiangxi', + 86798 => 'Jingdezhen, Jiangxi', + 86799 => 'Pingxiang, Jiangxi', + 868078 => 'Suoxian, Tibet', + 86812 => 'Panzhihua, Sichuan', + 86813 => 'Zigong, Sichuan', + 86816 => 'Mianyang, Sichuan', + 86817 => 'Nanchong, Sichuan', + 86818 => 'Dazhou, Sichuan', + 86825 => 'Suining, Sichuan', + 86826 => 'GuangAn, Sichuan', + 86827 => 'Bazhong, Sichuan', + 86830 => 'Luzhou, Sichuan', + 86831 => 'Yibin, Sichuan', + 86832 => 'Ziyang/Neijiang, Sichuan', + 86833 => 'Leshan, Sichuan', + 86834 => 'Xichang, Sichuan', + 86835 => 'YaAn, Sichuan', + 86836 => 'Kangding, Sichuan', + 86837 => 'MaErkang, Sichuan', + 86838 => 'Deyang, Sichuan', + 86839 => 'Guangyuan, Sichuan', + 86851 => 'Guiyang/Zunyi/Anshun, Guizhou', + 86852 => 'Zunyi, Guizhou', + 86853 => 'Anshun, Guizhou', + 86854 => 'Duyun, Guizhou', + 86855 => 'Kaili, Guizhou', + 86856 => 'Tongren, Guizhou', + 86857 => 'Bijie, Guizhou', + 86858 => 'Liupanshui, Guizhou', + 86859 => 'Xingyi, Guizhou', + 86870 => 'Zhaotong, Yunnan', + 86871 => 'Kunming, Yunnan', + 86872 => 'Dali, Yunnan', + 86873 => 'Gejiu, Yunnan', + 86874 => 'Qujing, Yunnan', + 86875 => 'Baoshan, Yunnan', + 86876 => 'Wenshan, Yunnan', + 86877 => 'Yuxi, Yunnan', + 86878 => 'Chuxiong, Yunnan', + 86879 => 'Simao, Yunnan', + 86883 => 'Lincang, Yunnan', + 86886 => 'Liuku, Yunnan', + 86887 => 'Zhongdian, Yunnan', + 86888 => 'Lijiang, Yunnan', + 86891 => 'Lhasa, Tibet', + 86892 => 'Rikaze/Zhongba, Tibet', + 86893 => 'Naidong, Tibet', + 86894 => 'Linzhi, Tibet', + 86895 => 'Changdu, Tibet', + 86896 => 'Naqu/Jiali/Nierong/Shenzha/Shuanghu/Bange/Nima, Tibet', + 86897 => 'GeEr/Pulan/Zhada, Tibet', + 86898 => 'Haikou, Hainan', + 86901 => 'Tacheng, Xinjiang', + 86902 => 'Hami, Xinjiang', + 86903 => 'Hetian, Xinjiang', + 86906 => 'Aletai, Xinjiang', + 86908 => 'Atushi, Xinjiang', + 86909 => 'Bole, Xinjiang', + 86911 => 'YanAn, Shaanxi', + 86912 => 'Yulin, Shaanxi', + 86913 => 'Weinan, Shaanxi', + 86914 => 'Shangzhou, Shaanxi', + 86915 => 'Ankang, Shaanxi', + 86916 => 'Hanzhong, Shaanxi', + 86917 => 'Baoji, Shaanxi', + 86919 => 'Tongchuan, Shaanxi', + 86930 => 'Linxia, Gansu', + 86931 => 'Lanzhou, Gansu', + 86932 => 'Dingxi, Gansu', + 86933 => 'Pingliang, Gansu', + 86934 => 'Xifeng, Gansu', + 86935 => 'Jinchang, Gansu', + 86936 => 'Zhangye, Gansu', + 86937 => 'Jiuquan, Gansu', + 86938 => 'Tianshui, Gansu', + 86939 => 'Wudu, Gansu', + 86941 => 'Hezuo, Gansu', + 86943 => 'Baiyin, Gansu', + 86951 => 'Yinchuan, Ningxia', + 86952 => 'Shizuishan, Ningxia', + 86953 => 'Wuzhong, Ningxia', + 86954 => 'Guyuan, Ningxia', + 86955 => 'Zhongwei, Ningxia', + 86970 => 'Haiyan, Qinghai', + 86971 => 'Xining, Qinghai', + 86972 => 'PingAn, Qinghai', + 86973 => 'Tongren, Qinghai', + 86974 => 'Gonghe, Qinghai', + 86975 => 'Maqin, Qinghai', + 86976 => 'Yushu, Qinghai', + 86977 => 'Delingha, Qinghai', + 86979 => 'GeErmu, Qinghai', + 86990 => 'Kalamayi, Xinjiang', + 86991 => 'Urumchi, Xinjiang', + 86992 => 'Kuitun, Xinjiang', + 86993 => 'Shihezi, Xinjiang', + 86994 => 'Changji, Xinjiang', + 86995 => 'Tulufan, Xinjiang', + 86996 => 'KuErle, Xinjiang', + 86997 => 'Akesu, Xinjiang', + 86998 => 'Kashi, Xinjiang', + 86999 => 'Yining, Xinjiang', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8620.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8620.php deleted file mode 100644 index b024080ca..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8620.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Guangzhou, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8621.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8621.php deleted file mode 100644 index d1d817342..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8621.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shanghai', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8622.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8622.php deleted file mode 100644 index 720b338dc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8622.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tianjin', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8623.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8623.php deleted file mode 100644 index 7101c603b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8623.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Chongqing', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8624.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8624.php deleted file mode 100644 index 1bbe78b73..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8624.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shenyang/Tieling/Fushun, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8625.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8625.php deleted file mode 100644 index 8501a3e94..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8625.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Nanjing, Jiangsu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8627.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8627.php deleted file mode 100644 index a3a2d61aa..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8627.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Wuhan, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8628.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8628.php deleted file mode 100644 index a63c4e451..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8628.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Chengdu/Ziyang/Meishan, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8629.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8629.php deleted file mode 100644 index b8aabad6d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/8629.php +++ /dev/null @@ -1,9 +0,0 @@ - 'XiAn/Xianyang, Shaanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86310.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86310.php deleted file mode 100644 index 559de5ab9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86310.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Handan, Hebei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86311.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86311.php deleted file mode 100644 index 97019068b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86311.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shijiazhuang, Hebei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86312.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86312.php deleted file mode 100644 index 39451f1e8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86312.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Baoding, Hebei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86313.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86313.php deleted file mode 100644 index 8a7540f57..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86313.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhangjiakou, Hebei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86314.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86314.php deleted file mode 100644 index 5a40b69cf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86314.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Chengde, Hebei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86315.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86315.php deleted file mode 100644 index f18aa15bd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86315.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tangshan, Hebei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86316.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86316.php deleted file mode 100644 index c17a13f93..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86316.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Langfang, Hebei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86317.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86317.php deleted file mode 100644 index deb3695c7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86317.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Cangzhou, Hebei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86318.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86318.php deleted file mode 100644 index a55a9a2b6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86318.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Hengshui, Hebei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86319.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86319.php deleted file mode 100644 index f176b6cbb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86319.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xingtai, Hebei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86335.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86335.php deleted file mode 100644 index 20466f969..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86335.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Qinhuangdao, Hebei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86349.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86349.php deleted file mode 100644 index 2cecd1179..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86349.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shuozhou, Shanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86350.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86350.php deleted file mode 100644 index 86e0cd03d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86350.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xinzhou, Shanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86351.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86351.php deleted file mode 100644 index 63c4f7512..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86351.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Taiyuan, Shanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86352.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86352.php deleted file mode 100644 index f5e4226a2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86352.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Datong, Shanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86353.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86353.php deleted file mode 100644 index 7b2ada6fc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86353.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yangquan, Shanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86354.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86354.php deleted file mode 100644 index 999d6ac2f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86354.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yuci, Shanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86355.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86355.php deleted file mode 100644 index dd125de87..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86355.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Changzhi, Shanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86356.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86356.php deleted file mode 100644 index 7c23712d5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86356.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jincheng, Shanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86357.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86357.php deleted file mode 100644 index b5139f4b2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86357.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Linfen, Shanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86358.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86358.php deleted file mode 100644 index be34cbe3e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86358.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Lishi, Shanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86359.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86359.php deleted file mode 100644 index 37481d77b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86359.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yuncheng, Shanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86370.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86370.php deleted file mode 100644 index 0ff6ee7bb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86370.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shangqiu, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86371.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86371.php deleted file mode 100644 index f2c165166..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86371.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhengzhou, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86372.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86372.php deleted file mode 100644 index d85129d71..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86372.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Anyang, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86373.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86373.php deleted file mode 100644 index 3f155692d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86373.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xinxiang, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86374.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86374.php deleted file mode 100644 index d05c2970b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86374.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xuchang, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86375.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86375.php deleted file mode 100644 index 4bcb59345..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86375.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Pingdingshan, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86376.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86376.php deleted file mode 100644 index b2afc31bf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86376.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xinyang, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86377.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86377.php deleted file mode 100644 index 5f922e4c7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86377.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Nanyang, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86378.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86378.php deleted file mode 100644 index 033d4d195..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86378.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Kaifeng, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86379.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86379.php deleted file mode 100644 index 6bbb9335d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86379.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Luoyang, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86391.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86391.php deleted file mode 100644 index 9cdfdea77..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86391.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jiaozuo, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86392.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86392.php deleted file mode 100644 index 1060348ad..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86392.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Hebi, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86393.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86393.php deleted file mode 100644 index 6bc9ec90b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86393.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Puyang, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86394.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86394.php deleted file mode 100644 index 9b8273e4d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86394.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhoukou, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86395.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86395.php deleted file mode 100644 index b706320c3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86395.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Luohe, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86396.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86396.php deleted file mode 100644 index 5fd73dec6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86396.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhumadian, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86398.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86398.php deleted file mode 100644 index b054dd688..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86398.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Sanmenxia, Henan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86410.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86410.php deleted file mode 100644 index 04012c031..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86410.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tieling, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86411.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86411.php deleted file mode 100644 index 1822c46d0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86411.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dalian, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86412.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86412.php deleted file mode 100644 index ba0bea52d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86412.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Anshan, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86413.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86413.php deleted file mode 100644 index 485c57195..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86413.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Fushun, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86414.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86414.php deleted file mode 100644 index e30d09cd2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86414.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Benxi, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86415.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86415.php deleted file mode 100644 index a75fc4b2f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86415.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dandong, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86416.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86416.php deleted file mode 100644 index 33e0aecea..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86416.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jinzhou, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86417.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86417.php deleted file mode 100644 index e407b4547..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86417.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yingkou, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86418.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86418.php deleted file mode 100644 index 7b41aaeed..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86418.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Fuxin, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86419.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86419.php deleted file mode 100644 index a713bcb75..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86419.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Liaoyang, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86421.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86421.php deleted file mode 100644 index c76477eee..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86421.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Chaoyang, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86427.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86427.php deleted file mode 100644 index 45ac3624f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86427.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Panjin, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86429.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86429.php deleted file mode 100644 index f332d29d7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86429.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Huludao, Liaoning', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86431.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86431.php deleted file mode 100644 index 96cb42bad..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86431.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Changchun, Jilin', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86432.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86432.php deleted file mode 100644 index c5957633b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86432.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jilin, Jilin', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86433.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86433.php deleted file mode 100644 index 5cc1fbce2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86433.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yanbian Zhou/Hunchun/Yanji, Jilin', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86434.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86434.php deleted file mode 100644 index 5f614dd30..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86434.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Siping, Jilin', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86435.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86435.php deleted file mode 100644 index 6f61551c2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86435.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tonghua/Meihekou, Jilin', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86436.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86436.php deleted file mode 100644 index f9d04fd43..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86436.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Baicheng, Jilin', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86437.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86437.php deleted file mode 100644 index 7b5e9349f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86437.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Liaoyuan, Jilin', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86438.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86438.php deleted file mode 100644 index 697e6850f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86438.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Songyuan, Jilin', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86439.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86439.php deleted file mode 100644 index e7299a44c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86439.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Baishan, Jilin', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86451.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86451.php deleted file mode 100644 index a7c51b629..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86451.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Harbin, Heilongjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86452.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86452.php deleted file mode 100644 index 21a60f4c9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86452.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Qiqihar, Heilongjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86453.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86453.php deleted file mode 100644 index 96c8e8028..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86453.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Mudanjiang, Heilongjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86454.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86454.php deleted file mode 100644 index da43990a3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86454.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jiamusi, Heilongjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86455.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86455.php deleted file mode 100644 index e5c21779e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86455.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Suihua, Heilongjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86456.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86456.php deleted file mode 100644 index 71c3fdd9d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86456.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Heihe, Heilongjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86457.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86457.php deleted file mode 100644 index f8111dfa1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86457.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jiagedaqi, Heilongjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86458.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86458.php deleted file mode 100644 index 66254e294..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86458.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yichun, Heilongjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86459.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86459.php deleted file mode 100644 index 638e2d92e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86459.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Daqing, Heilongjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86464.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86464.php deleted file mode 100644 index 51939ac23..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86464.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Qitaihe, Heilongjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86467.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86467.php deleted file mode 100644 index 8f80061e2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86467.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jixi, Heilongjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86468.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86468.php deleted file mode 100644 index 67a3c438b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86468.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Hegang, Heilongjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86469.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86469.php deleted file mode 100644 index b6b7bedd1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86469.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shuangyashan, Heilongjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86470.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86470.php deleted file mode 100644 index 8760bf3f8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86470.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Hailaer, Inner Mongolia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86471.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86471.php deleted file mode 100644 index 21ca891c3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86471.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Huhehaote, Inner Mongolia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86472.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86472.php deleted file mode 100644 index 447145089..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86472.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Baotou, Inner Mongolia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86473.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86473.php deleted file mode 100644 index 1a6173cbc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86473.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Wuhai, Inner Mongolia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86474.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86474.php deleted file mode 100644 index 430c55aec..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86474.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jining, Inner Mongolia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86475.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86475.php deleted file mode 100644 index f150021e9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86475.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tongliao, Inner Mongolia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86476.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86476.php deleted file mode 100644 index 0fc311fdd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86476.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Chifeng, Inner Mongolia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86477.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86477.php deleted file mode 100644 index e369399b2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86477.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dongsheng, Inner Mongolia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86478.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86478.php deleted file mode 100644 index 2b3bdf2d6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86478.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Linhe, Inner Mongolia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86479.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86479.php deleted file mode 100644 index fcb027b57..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86479.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xilinhaote, Inner Mongolia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86482.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86482.php deleted file mode 100644 index 9edd6f06d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86482.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Wulanhaote, Inner Mongolia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86483.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86483.php deleted file mode 100644 index 89610847b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86483.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Alashanzuoqi, Inner Mongolia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86510.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86510.php deleted file mode 100644 index 31a5efb4e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86510.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Wuxi, Jiangsu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86511.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86511.php deleted file mode 100644 index 79090c1bc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86511.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhenjiang, Jiangsu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86512.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86512.php deleted file mode 100644 index f6c995ff5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86512.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Suzhou, Jiangsu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86513.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86513.php deleted file mode 100644 index 331dd8aae..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86513.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Nantong, Jiangsu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86514.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86514.php deleted file mode 100644 index e904e1726..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86514.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yangzhou, Jiangsu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86515.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86515.php deleted file mode 100644 index 4f92f7577..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86515.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yancheng, Jiangsu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86516.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86516.php deleted file mode 100644 index 147ff0701..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86516.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xuzhou, Jiangsu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86517.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86517.php deleted file mode 100644 index 996b4d28c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86517.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Huaian, Jiangsu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86518.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86518.php deleted file mode 100644 index cf3306691..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86518.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Lianyungang, Jiangsu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86519.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86519.php deleted file mode 100644 index 769e09c43..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86519.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Changzhou, Jiangsu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86523.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86523.php deleted file mode 100644 index 664a02da8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86523.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Taizhou, Jiangsu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86527.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86527.php deleted file mode 100644 index 265716b49..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86527.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Suqian, Jiangsu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86530.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86530.php deleted file mode 100644 index f790ee5cd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86530.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Heze, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86531.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86531.php deleted file mode 100644 index fc5c23e1c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86531.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jinan, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86532.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86532.php deleted file mode 100644 index d6e1b1bea..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86532.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Qingdao, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86533.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86533.php deleted file mode 100644 index 3450c4ac1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86533.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zibo, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86534.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86534.php deleted file mode 100644 index 95b7ae2db..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86534.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dezhou, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86535.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86535.php deleted file mode 100644 index 28eac8b0e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86535.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yantai, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86536.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86536.php deleted file mode 100644 index a0dbf9b5f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86536.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Weifang, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86537.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86537.php deleted file mode 100644 index 5740a4ca3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86537.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jining, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86538.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86538.php deleted file mode 100644 index 9e8fcbd45..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86538.php +++ /dev/null @@ -1,9 +0,0 @@ - 'TaiAn, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86539.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86539.php deleted file mode 100644 index 133f2a506..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86539.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Linyi, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86543.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86543.php deleted file mode 100644 index 3d6904d43..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86543.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Binzhou, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86546.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86546.php deleted file mode 100644 index 6087fbe68..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86546.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dongying, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86550.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86550.php deleted file mode 100644 index 01e742be9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86550.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Chuzhou, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86551.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86551.php deleted file mode 100644 index b758bc26b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86551.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Hefei/Chaohu, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86552.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86552.php deleted file mode 100644 index 714d33893..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86552.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Bengbu, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86553.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86553.php deleted file mode 100644 index 7ff616a8a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86553.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Wuhu, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86554.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86554.php deleted file mode 100644 index 2ea640dfb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86554.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Huainan, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86555.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86555.php deleted file mode 100644 index 564c9277d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86555.php +++ /dev/null @@ -1,9 +0,0 @@ - 'MaAnshan, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86556.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86556.php deleted file mode 100644 index 4bf8de185..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86556.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Anqing, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86557.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86557.php deleted file mode 100644 index 0cf5aa073..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86557.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Suzhou, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86558.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86558.php deleted file mode 100644 index 8fe4aea84..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86558.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Fuyang, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86559.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86559.php deleted file mode 100644 index 99d355f13..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86559.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Huangshan, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86561.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86561.php deleted file mode 100644 index b2a9ed41b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86561.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Huaibei, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86562.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86562.php deleted file mode 100644 index 0799cf991..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86562.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tongling, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86563.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86563.php deleted file mode 100644 index 2e0be6c4d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86563.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xuancheng, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86564.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86564.php deleted file mode 100644 index f8c727ab7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86564.php +++ /dev/null @@ -1,9 +0,0 @@ - 'LiuAn, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86566.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86566.php deleted file mode 100644 index 0c5a156ad..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86566.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Chizhou, Anhui', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86570.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86570.php deleted file mode 100644 index 0378615ba..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86570.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Quzhou, Zhejiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86571.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86571.php deleted file mode 100644 index fef8b905c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86571.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Hangzhou, Zhejiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86572.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86572.php deleted file mode 100644 index 0d5cc0543..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86572.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Huzhou, Zhejiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86573.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86573.php deleted file mode 100644 index 0f9d388cf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86573.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jiaxing, Zhejiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86574.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86574.php deleted file mode 100644 index b28a7a9d4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86574.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ningbo, Zhejiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86575.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86575.php deleted file mode 100644 index f7c6ba28d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86575.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shaoxing, Zhejiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86576.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86576.php deleted file mode 100644 index d03c9f692..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86576.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Taizhou, Zhejiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86577.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86577.php deleted file mode 100644 index 1798b38d9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86577.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Wenzhou, Zhejiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86578.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86578.php deleted file mode 100644 index ad3850240..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86578.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Lishui, Zhejiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86579.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86579.php deleted file mode 100644 index 640f72776..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86579.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jinhua, Zhejiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86580.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86580.php deleted file mode 100644 index 50e1d1d65..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86580.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhoushan, Zhejiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86591.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86591.php deleted file mode 100644 index c2c041660..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86591.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Fuzhou, Fujian', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86592.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86592.php deleted file mode 100644 index d279c3967..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86592.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xiamen, Fujian', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86593.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86593.php deleted file mode 100644 index f3ec771c1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86593.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ningde, Fujian', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86594.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86594.php deleted file mode 100644 index 0a14cb49a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86594.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Putian, Fujian', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86595.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86595.php deleted file mode 100644 index 107fa564d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86595.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Quanzhou, Fujian', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86596.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86596.php deleted file mode 100644 index cf0e28b8a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86596.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhangzhou, Fujian', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86597.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86597.php deleted file mode 100644 index a1e44e89f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86597.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Longyan, Fujian', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86598.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86598.php deleted file mode 100644 index 9bfe20dad..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86598.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Sanming, Fujian', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86599.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86599.php deleted file mode 100644 index 471629afe..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86599.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Nanping, Fujian', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86631.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86631.php deleted file mode 100644 index a773fc2af..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86631.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Weihai, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86632.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86632.php deleted file mode 100644 index 09e2d5a16..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86632.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zaozhuang, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86633.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86633.php deleted file mode 100644 index ee8d034ec..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86633.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Rizhao, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86634.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86634.php deleted file mode 100644 index a09e9e507..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86634.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Laiwu, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86635.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86635.php deleted file mode 100644 index d11e5750a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86635.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Liaocheng, Shandong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86660.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86660.php deleted file mode 100644 index 2846b14b1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86660.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shanwei, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86662.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86662.php deleted file mode 100644 index 904f44151..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86662.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yangjiang, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86663.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86663.php deleted file mode 100644 index a52989547..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86663.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jieyang, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86668.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86668.php deleted file mode 100644 index 14d51ede8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86668.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Maoming, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86691.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86691.php deleted file mode 100644 index 14cad1902..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86691.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jinghong, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86692.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86692.php deleted file mode 100644 index 4f9d87a57..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86692.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Luxi, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86701.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86701.php deleted file mode 100644 index 4050209fb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86701.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yingtan, Jiangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86710.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86710.php deleted file mode 100644 index 8dbf0e972..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86710.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xiangyang/Xiangfan, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86711.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86711.php deleted file mode 100644 index 7dcaf9c2d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86711.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ezhou, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86712.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86712.php deleted file mode 100644 index d81d86700..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86712.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xiaogan, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86713.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86713.php deleted file mode 100644 index 7d1e44da4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86713.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Huanggang, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86714.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86714.php deleted file mode 100644 index cf751ee43..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86714.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Huangshi, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86715.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86715.php deleted file mode 100644 index 91e9ac401..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86715.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xianning, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86716.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86716.php deleted file mode 100644 index 081b8c932..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86716.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jingzhou, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86717.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86717.php deleted file mode 100644 index aaad7c701..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86717.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yichang, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86718.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86718.php deleted file mode 100644 index 88404e524..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86718.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Enshi, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86719.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86719.php deleted file mode 100644 index 9c12faebd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86719.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shiyan, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86722.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86722.php deleted file mode 100644 index a2e5bb3b7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86722.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Suizhou, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86724.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86724.php deleted file mode 100644 index 9c6dc2a48..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86724.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jingmen, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86728.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86728.php deleted file mode 100644 index b8676cdab..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86728.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xiantao, Hubei', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86730.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86730.php deleted file mode 100644 index c3e61c1dc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86730.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yueyang, Hunan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86731.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86731.php deleted file mode 100644 index 7b1479e16..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86731.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhuzhou/Changsha/Xiangtan, Hunan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86734.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86734.php deleted file mode 100644 index 4c2e2a40b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86734.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Hengyang, Hunan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86735.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86735.php deleted file mode 100644 index 2f0312fd5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86735.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Chenzhou, Hunan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86736.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86736.php deleted file mode 100644 index c3766b3f5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86736.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Changde, Hunan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86737.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86737.php deleted file mode 100644 index 23e8253ff..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86737.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yiyang, Hunan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86738.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86738.php deleted file mode 100644 index adc54c726..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86738.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Loudi, Hunan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86739.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86739.php deleted file mode 100644 index 8951f393d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86739.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shaoyang, Hunan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86743.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86743.php deleted file mode 100644 index bdc1cdc40..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86743.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jishou, Hunan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86744.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86744.php deleted file mode 100644 index c6dc43e0f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86744.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhangjiajie, Hunan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86745.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86745.php deleted file mode 100644 index cbe34380c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86745.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Huaihua, Hunan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86746.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86746.php deleted file mode 100644 index b9c1626ea..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86746.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yongzhou, Hunan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86750.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86750.php deleted file mode 100644 index f1b1f8d0b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86750.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jiangmen, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86751.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86751.php deleted file mode 100644 index 2e39d45de..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86751.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shaoguan, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86752.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86752.php deleted file mode 100644 index 86ff55559..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86752.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Huizhou, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86753.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86753.php deleted file mode 100644 index 8bad7d279..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86753.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Meizhou, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86754.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86754.php deleted file mode 100644 index 9c598fcd8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86754.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shantou/Chaoyang, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86755.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86755.php deleted file mode 100644 index 208c36051..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86755.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shenzhen, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86756.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86756.php deleted file mode 100644 index 256fd5401..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86756.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhuhai, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86757.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86757.php deleted file mode 100644 index 6d7da9b22..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86757.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shunde/Foshan, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86758.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86758.php deleted file mode 100644 index 847441a2d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86758.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhaoqing, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86759.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86759.php deleted file mode 100644 index 11cf941fe..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86759.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhanjiang, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86760.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86760.php deleted file mode 100644 index 04ec98203..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86760.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhongshan, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86762.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86762.php deleted file mode 100644 index 9733baea2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86762.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Heyuan, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86763.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86763.php deleted file mode 100644 index a9fcda076..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86763.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Qingyuan, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86766.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86766.php deleted file mode 100644 index 66c924b09..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86766.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yunfu, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86768.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86768.php deleted file mode 100644 index 0c0728f2d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86768.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Chaozhou, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86769.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86769.php deleted file mode 100644 index d66e280db..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86769.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dongguan, Guangdong', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86770.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86770.php deleted file mode 100644 index d3d8d6e40..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86770.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Fangchenggang, Guangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86771.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86771.php deleted file mode 100644 index 2155ea1a5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86771.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Nanning, Guangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86772.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86772.php deleted file mode 100644 index 95395fff6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86772.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Liuzhou, Guangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86773.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86773.php deleted file mode 100644 index 965ce253f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86773.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Guilin, Guangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86774.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86774.php deleted file mode 100644 index c984a2871..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86774.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Wuzhou, Guangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86775.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86775.php deleted file mode 100644 index 0cda62acc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86775.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yulin, Guangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86776.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86776.php deleted file mode 100644 index 67c1236b6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86776.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Baise, Guangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86777.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86777.php deleted file mode 100644 index e4fe254fb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86777.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Qinzhou, Guangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86778.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86778.php deleted file mode 100644 index 2eb4af667..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86778.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Hechi, Guangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86779.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86779.php deleted file mode 100644 index 183c2bcc2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86779.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Beihai, Guangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86790.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86790.php deleted file mode 100644 index 69b207d80..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86790.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xinyu, Jiangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86791.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86791.php deleted file mode 100644 index 13b7b7fa3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86791.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Nanchang, Jiangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86792.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86792.php deleted file mode 100644 index b22333f57..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86792.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jiujiang, Jiangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86793.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86793.php deleted file mode 100644 index e3bd9b018..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86793.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shangrao, Jiangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86794.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86794.php deleted file mode 100644 index a82625511..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86794.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Fuzhou, Jiangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86795.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86795.php deleted file mode 100644 index 3a94833fa..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86795.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yichun, Jiangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86796.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86796.php deleted file mode 100644 index 47b81fa79..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86796.php +++ /dev/null @@ -1,9 +0,0 @@ - 'JiAn, Jiangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86797.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86797.php deleted file mode 100644 index fa2cb75b6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86797.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ganzhou, Jiangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86798.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86798.php deleted file mode 100644 index a85af5577..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86798.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jingdezhen, Jiangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86799.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86799.php deleted file mode 100644 index f2efdd30f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86799.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Pingxiang, Jiangxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86807.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86807.php deleted file mode 100644 index e140aa547..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86807.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Suoxian, Tibet', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86812.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86812.php deleted file mode 100644 index a7d936199..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86812.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Panzhihua, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86813.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86813.php deleted file mode 100644 index 9f87eb85f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86813.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zigong, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86816.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86816.php deleted file mode 100644 index b6adc0490..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86816.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Mianyang, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86817.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86817.php deleted file mode 100644 index 90a9273e8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86817.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Nanchong, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86818.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86818.php deleted file mode 100644 index 9015b3db4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86818.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dazhou, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86825.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86825.php deleted file mode 100644 index 112932062..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86825.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Suining, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86826.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86826.php deleted file mode 100644 index 50ca07414..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86826.php +++ /dev/null @@ -1,9 +0,0 @@ - 'GuangAn, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86827.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86827.php deleted file mode 100644 index 92fce3594..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86827.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Bazhong, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86830.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86830.php deleted file mode 100644 index c7b30c8d0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86830.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Luzhou, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86831.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86831.php deleted file mode 100644 index e3d119034..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86831.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yibin, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86832.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86832.php deleted file mode 100644 index 23bb5959a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86832.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ziyang/Neijiang, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86833.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86833.php deleted file mode 100644 index 383412455..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86833.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Leshan, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86834.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86834.php deleted file mode 100644 index 89010f39f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86834.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xichang, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86835.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86835.php deleted file mode 100644 index 760b6e949..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86835.php +++ /dev/null @@ -1,9 +0,0 @@ - 'YaAn, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86836.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86836.php deleted file mode 100644 index 8869f150d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86836.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Kangding, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86837.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86837.php deleted file mode 100644 index 01b83814c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86837.php +++ /dev/null @@ -1,9 +0,0 @@ - 'MaErkang, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86838.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86838.php deleted file mode 100644 index 91e8e10b5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86838.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Deyang, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86839.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86839.php deleted file mode 100644 index ab762cb16..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86839.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Guangyuan, Sichuan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86851.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86851.php deleted file mode 100644 index e431b9490..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86851.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Guiyang/Zunyi/Anshun, Guizhou', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86852.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86852.php deleted file mode 100644 index f9a1147a3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86852.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zunyi, Guizhou', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86853.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86853.php deleted file mode 100644 index 50af51ff8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86853.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Anshun, Guizhou', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86854.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86854.php deleted file mode 100644 index 763aff2fd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86854.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Duyun, Guizhou', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86855.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86855.php deleted file mode 100644 index 3349d7433..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86855.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Kaili, Guizhou', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86856.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86856.php deleted file mode 100644 index e19c7a4ff..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86856.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tongren, Guizhou', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86857.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86857.php deleted file mode 100644 index 0f915fe0b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86857.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Bijie, Guizhou', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86858.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86858.php deleted file mode 100644 index 54d3b8c7b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86858.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Liupanshui, Guizhou', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86859.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86859.php deleted file mode 100644 index fa7d7e767..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86859.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xingyi, Guizhou', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86870.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86870.php deleted file mode 100644 index 5fd03d2c1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86870.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhaotong, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86871.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86871.php deleted file mode 100644 index 36bc6f6fa..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86871.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Kunming, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86872.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86872.php deleted file mode 100644 index 9475af305..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86872.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dali, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86873.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86873.php deleted file mode 100644 index e7990b7b7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86873.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Gejiu, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86874.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86874.php deleted file mode 100644 index 82afaaf70..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86874.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Qujing, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86875.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86875.php deleted file mode 100644 index 18f4f5694..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86875.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Baoshan, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86876.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86876.php deleted file mode 100644 index ba17a92e4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86876.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Wenshan, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86877.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86877.php deleted file mode 100644 index 9e09949f4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86877.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yuxi, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86878.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86878.php deleted file mode 100644 index 60473b38c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86878.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Chuxiong, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86879.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86879.php deleted file mode 100644 index 879be4f15..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86879.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Simao, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86883.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86883.php deleted file mode 100644 index 96333bdb9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86883.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Lincang, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86886.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86886.php deleted file mode 100644 index 17d21c26a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86886.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Liuku, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86887.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86887.php deleted file mode 100644 index f6f673d66..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86887.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhongdian, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86888.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86888.php deleted file mode 100644 index 2c531caa7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86888.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Lijiang, Yunnan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86891.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86891.php deleted file mode 100644 index 9b770c9ba..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86891.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Lhasa, Tibet', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86892.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86892.php deleted file mode 100644 index 95809a287..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86892.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Rikaze/Zhongba, Tibet', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86893.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86893.php deleted file mode 100644 index 4da994f81..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86893.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Naidong, Tibet', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86894.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86894.php deleted file mode 100644 index 67e3f6653..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86894.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Linzhi, Tibet', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86895.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86895.php deleted file mode 100644 index b7c942b78..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86895.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Changdu, Tibet', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86896.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86896.php deleted file mode 100644 index 6d339ad1d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86896.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Naqu/Jiali/Nierong/Shenzha/Shuanghu/Bange/Nima, Tibet', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86897.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86897.php deleted file mode 100644 index ccd31b4d6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86897.php +++ /dev/null @@ -1,9 +0,0 @@ - 'GeEr/Pulan/Zhada, Tibet', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86898.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86898.php deleted file mode 100644 index c79dda6e6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86898.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Haikou, Hainan', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86901.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86901.php deleted file mode 100644 index 83b7bfea9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86901.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tacheng, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86902.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86902.php deleted file mode 100644 index 82fd0830a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86902.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Hami, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86903.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86903.php deleted file mode 100644 index 2226f3e6f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86903.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Hetian, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86906.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86906.php deleted file mode 100644 index 963a652ef..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86906.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Aletai, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86908.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86908.php deleted file mode 100644 index 072b46639..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86908.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Atushi, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86909.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86909.php deleted file mode 100644 index 0d454cde9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86909.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Bole, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86911.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86911.php deleted file mode 100644 index 0de129aca..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86911.php +++ /dev/null @@ -1,9 +0,0 @@ - 'YanAn, Shaanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86912.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86912.php deleted file mode 100644 index d56d91974..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86912.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yulin, Shaanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86913.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86913.php deleted file mode 100644 index 3d0913720..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86913.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Weinan, Shaanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86914.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86914.php deleted file mode 100644 index 39b87bfe2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86914.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shangzhou, Shaanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86915.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86915.php deleted file mode 100644 index bf296309c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86915.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ankang, Shaanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86916.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86916.php deleted file mode 100644 index 9a0a24e1a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86916.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Hanzhong, Shaanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86917.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86917.php deleted file mode 100644 index a2df7e6ed..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86917.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Baoji, Shaanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86919.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86919.php deleted file mode 100644 index 4790bd01a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86919.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tongchuan, Shaanxi', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86930.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86930.php deleted file mode 100644 index ec8994f48..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86930.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Linxia, Gansu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86931.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86931.php deleted file mode 100644 index 5743f3991..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86931.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Lanzhou, Gansu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86932.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86932.php deleted file mode 100644 index 55729a105..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86932.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dingxi, Gansu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86933.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86933.php deleted file mode 100644 index c5099f190..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86933.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Pingliang, Gansu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86934.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86934.php deleted file mode 100644 index 9b4fa749c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86934.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xifeng, Gansu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86935.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86935.php deleted file mode 100644 index 922008e0a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86935.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jinchang, Gansu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86936.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86936.php deleted file mode 100644 index ec1180664..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86936.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhangye, Gansu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86937.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86937.php deleted file mode 100644 index 5fcd39b0e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86937.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jiuquan, Gansu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86938.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86938.php deleted file mode 100644 index 5084e26b9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86938.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tianshui, Gansu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86939.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86939.php deleted file mode 100644 index 34d89953c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86939.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Wudu, Gansu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86941.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86941.php deleted file mode 100644 index 17522c067..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86941.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Hezuo, Gansu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86943.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86943.php deleted file mode 100644 index 49380f61f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86943.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Baiyin, Gansu', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86951.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86951.php deleted file mode 100644 index bb08c1c25..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86951.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yinchuan, Ningxia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86952.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86952.php deleted file mode 100644 index 75a64c71e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86952.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shizuishan, Ningxia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86953.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86953.php deleted file mode 100644 index 58f282f88..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86953.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Wuzhong, Ningxia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86954.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86954.php deleted file mode 100644 index 01fdb37ab..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86954.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Guyuan, Ningxia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86955.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86955.php deleted file mode 100644 index 85cdbfa2d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86955.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Zhongwei, Ningxia', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86970.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86970.php deleted file mode 100644 index 356c63145..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86970.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Haiyan, Qinghai', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86971.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86971.php deleted file mode 100644 index 0ffb6e12b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86971.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Xining, Qinghai', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86972.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86972.php deleted file mode 100644 index 65d9ccd04..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86972.php +++ /dev/null @@ -1,9 +0,0 @@ - 'PingAn, Qinghai', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86973.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86973.php deleted file mode 100644 index 0308a3a4d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86973.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tongren, Qinghai', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86974.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86974.php deleted file mode 100644 index ed7434369..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86974.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Gonghe, Qinghai', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86975.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86975.php deleted file mode 100644 index 14abedee9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86975.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Maqin, Qinghai', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86976.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86976.php deleted file mode 100644 index b4f25bc30..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86976.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yushu, Qinghai', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86977.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86977.php deleted file mode 100644 index 84b325a33..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86977.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Delingha, Qinghai', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86979.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86979.php deleted file mode 100644 index f9e5e0545..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86979.php +++ /dev/null @@ -1,9 +0,0 @@ - 'GeErmu, Qinghai', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86990.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86990.php deleted file mode 100644 index d0d286ff8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86990.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Kalamayi, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86991.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86991.php deleted file mode 100644 index cb20301d7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86991.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Urumchi, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86992.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86992.php deleted file mode 100644 index b57318bf4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86992.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Kuitun, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86993.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86993.php deleted file mode 100644 index d182a9a29..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86993.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Shihezi, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86994.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86994.php deleted file mode 100644 index f9363f982..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86994.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Changji, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86995.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86995.php deleted file mode 100644 index 4931026da..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86995.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tulufan, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86996.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86996.php deleted file mode 100644 index 5d46eabc9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86996.php +++ /dev/null @@ -1,9 +0,0 @@ - 'KuErle, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86997.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86997.php deleted file mode 100644 index 7588af6cf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86997.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Akesu, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86998.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86998.php deleted file mode 100644 index f4c36ba10..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86998.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Kashi, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86999.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86999.php deleted file mode 100644 index a07fb038a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/en/86999.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Yining, Xinjiang', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/es/230.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/es/230.php index 40e18b677..54aa035c2 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/es/230.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/es/230.php @@ -8,7 +8,4 @@ return array ( 2302 => 'Región Norte', 2304 => 'Región Central', 2306 => 'Región Sur', - 230814 => 'Agalega', - 23083 => 'Rodrigues', - 23087 => 'Rodrigues', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/es/56.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/es/56.php index 60156bc62..312f24067 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/es/56.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/es/56.php @@ -6,7 +6,7 @@ return array ( 5622 => 'Santiago, Región Metropolitana', - 56232 => 'Santiago, Región Metropolitana', + 5623 => 'Santiago, Región Metropolitana', 5658 => 'Arica, Arica y Parinacota', 5661 => 'Punta Arenas, Magallanes', 5667 => 'Coihaique, Aysén', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/212.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/212.php index c08be9aae..a49f6afb4 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/212.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/212.php @@ -5,72 +5,26 @@ */ return array ( - 212520 => 'Casablanca', 212521 => 'Casablanca/Maroc Central', - 2125220 => 'Casablanca', - 2125222 => 'Casablanca', - 2125223 => 'Casablanca', - 2125224 => 'Casablanca', - 2125225 => 'Casablanca', - 2125226 => 'Casablanca', - 2125227 => 'Casablanca', - 2125228 => 'Casablanca', - 2125229 => 'Casablanca', - 2125232 => 'Mohammedia', 2125233 => 'Mohammedia/El Jadida', 2125234 => 'Settat', - 2125235 => 'Oued Zem', - 2125237 => 'Settat', - 2125242 => 'El Kelaa des Sraghna', - 2125243 => 'Marrakech', - 2125244 => 'Marrakech', 2125246 => 'Safi/El Youssoufia', - 2125247 => 'Essaouira', - 2125248 => 'Ouarzazate', 212525 => 'Maroc Sud', 2125282 => 'Agadir/Inezgane/Ait Melou', 2125283 => 'Inezgane/Taroudannt', 2125285 => 'Taroudannt/Oulad Teima', - 2125286 => 'Tiznit', - 2125287 => 'Guelmim/Tan Tan', 2125288 => 'Es-Semara/Agadir/Tarfaya', 2125289 => 'Laayoune/Dakhla', - 2125290 => 'Casablanca', 21252980 => 'Marrakech et alentours', 21252990 => 'Agadir et alentours', 212530 => 'Rabat/Kénitra', 212531 => 'Tanger/Tétouan/Larache/Al Hoceima/Cherfchaouen', 212532 => 'Fès/Oujda/Meknès/Taza/Nador/Errachidia', - 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 => 'Oujda/Figuig', 2125367 => 'Oujda/Bouarfa', - 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 et alentours', 21253880 => 'Tanger et alentours', 21253890 => 'Fès/Maknès et alentours', 2125393 => 'Tanger', - 2125394 => 'Asilah', - 2125395 => 'Larache', - 2125396 => 'Fnideq/Martil/Mdiq', - 2125397 => 'Tétouan', - 2125398 => 'Al Hoceima/Chefchaouen', 2125399 => 'Tanger/Larache/Al Hoceima', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/230.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/230.php index f1d5e5563..34b505bb6 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/230.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/230.php @@ -8,7 +8,4 @@ return array ( 2302 => 'Région Nord', 2304 => 'Région Centrale', 2306 => 'Région Sud', - 230814 => 'Agalega', - 23083 => 'Rodrigues', - 23087 => 'Rodrigues', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/242.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/242.php deleted file mode 100644 index 6943d1a35..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/242.php +++ /dev/null @@ -1,15 +0,0 @@ - 'Cuvette', - 2422222 => 'Likouala/Sangha', - 2422223 => 'Pool', - 2422224 => 'Plateaux', - 2422225 => 'Bouenza/Lekoumou/Niari', - 2422228 => 'Brazzaville', - 2422229 => 'Pointe-Noire', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/269.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/269.php deleted file mode 100644 index d2d8841af..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/269.php +++ /dev/null @@ -1,24 +0,0 @@ - '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', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/290.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/290.php index 1411c6799..176ea9ed9 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/290.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/fr/290.php @@ -5,10 +5,8 @@ */ return array ( - 29022 => 'Jamestown', 29023 => 'Sainte-Hélène', 29024 => 'Sainte-Hélène', 29026 => 'Sainte-Hélène', 29027 => 'Sainte-Hélène', - 2908 => 'Tristan da Cunha', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/pt/258.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/pt/258.php index c6f06b3bc..6a96ae4cd 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/pt/258.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/pt/258.php @@ -5,15 +5,5 @@ */ return array ( - 25821 => 'Maputo', - 25823 => 'Beira', - 25824 => 'Quelimane', - 258251 => 'Manica', - 258252 => 'Tete', - 25826 => 'Nampula', - 258271 => 'Lichinga', - 258272 => 'Pemba', 258281 => 'Chokwé', - 258282 => 'Xai-Xai', - 258293 => 'Inhambane', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/ru/7.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/ru/7.php index 8b0313292..5526e6206 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/ru/7.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/ru/7.php @@ -53,6 +53,7 @@ return array ( 772777 => 'Райымбекский район', 772778 => 'Уйгурский район', 772779 => 'Райымбекский район', + 77279 => 'Алматы', 7728 => 'Алматинская область', 77282 => 'Талдыкорган', 7728301 => 'Достык, Алакольский район', diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/sr/381.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/sr/381.php index 80018eacc..58be30041 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/sr/381.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/sr/381.php @@ -5,38 +5,17 @@ */ return array ( - 38110 => 'Pirot', 38111 => 'Beograd', 38112 => 'Požarevac', 38113 => 'Pančevo', - 38114 => 'Valjevo', 38115 => 'Šabac', - 38116 => 'Leskovac', - 38117 => 'Vranje', 38118 => 'Niš', 38119 => 'Zaječar', - 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 => 'Uroševac', - 38130 => 'Bor', 38131 => 'Užice', 38132 => 'Čačak', - 38133 => 'Prijepolje', - 38134 => 'Kragujevac', - 38135 => 'Jagodina', - 38136 => 'Kraljevo', 38137 => 'Kruševac', 38138 => 'Priština', 38139 => 'Peć', - 381390 => 'Dakovica', + 381390 => '', ); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/se/358.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/sv/358.php similarity index 100% rename from vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/se/358.php rename to vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/sv/358.php diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86.php new file mode 100644 index 000000000..f9a392b61 --- /dev/null +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86.php @@ -0,0 +1,335 @@ + '广东省广州市', + 8621 => '上海市', + 8622 => '天津市', + 8623 => '重庆市', + 8624 => '辽宁省沈阳市、铁岭市、抚顺市', + 8625 => '江苏省南京市', + 8627 => '湖北省武汉市', + 8628 => '四川省成都市、资阳市、眉山市', + 8629 => '陕西省西安市、咸阳市', + 86310 => '河北省邯郸市', + 86311 => '河北省石家庄市', + 86312 => '河北省保定市', + 86313 => '河北省张家口市', + 86314 => '河北省承德市', + 86315 => '河北省唐山市', + 86316 => '河北省廊坊市', + 86317 => '河北省沧州市', + 86318 => '河北省衡水市', + 86319 => '河北省邢台市', + 86335 => '河北省秦皇岛市', + 86349 => '山西省朔州市', + 86350 => '山西省忻州市', + 86351 => '山西省太原市', + 86352 => '山西省大同市', + 86353 => '山西省阳泉市', + 86354 => '山西省晋中市', + 86355 => '山西省长治市', + 86356 => '山西省晋城市', + 86357 => '山西省临汾市', + 86358 => '山西省吕梁市', + 86359 => '山西省运城市', + 86370 => '河南省商丘市', + 86371 => '河南省郑州市', + 86372 => '河南省安阳市', + 86373 => '河南省新乡市', + 86374 => '河南省许昌市', + 86375 => '河南省平顶山市', + 86376 => '河南省信阳市', + 86377 => '河南省南阳市', + 86378 => '河南省开封市', + 86379 => '河南省洛阳市', + 86391 => '河南省焦作市', + 86392 => '河南省鹤壁市', + 86393 => '河南省濮阳市', + 86394 => '河南省周口市', + 86395 => '河南省漯河市', + 86396 => '河南省驻马店市', + 86398 => '河南省三门峡市', + 86410 => '辽宁省铁岭市', + 86411 => '辽宁省大连市', + 86412 => '辽宁省鞍山市', + 86413 => '辽宁省抚顺市', + 86414 => '辽宁省本溪市', + 86415 => '辽宁省丹东市', + 86416 => '辽宁省锦州市', + 86417 => '辽宁省营口市', + 86418 => '辽宁省阜新市', + 86419 => '辽宁省辽阳市', + 86421 => '辽宁省朝阳市', + 86427 => '辽宁省盘锦市', + 86429 => '辽宁省葫芦岛市', + 86431 => '吉林省长春市', + 86432 => '吉林省吉林市', + 86433 => '吉林省延边朝鲜族自治州、珲春市、延吉市', + 86434 => '吉林省四平市', + 86435 => '吉林省通化市、梅河口市', + 86436 => '吉林省白城市', + 86437 => '吉林省辽源市', + 86438 => '吉林省松原市', + 86439 => '吉林省白山市', + 86451 => '黑龙江省哈尔滨市', + 86452 => '黑龙江省齐齐哈尔市', + 86453 => '黑龙江省牡丹江市', + 86454 => '黑龙江省佳木斯市', + 86455 => '黑龙江省绥化市', + 86456 => '黑龙江省黑河市', + 86457 => '黑龙江省大兴安岭地区', + 86458 => '黑龙江省伊春市', + 86459 => '黑龙江省大庆市', + 86464 => '黑龙江省七台河市', + 86467 => '黑龙江省鸡西市', + 86468 => '黑龙江省鹤岗市', + 86469 => '黑龙江省双鸭山市', + 86470 => '内蒙古呼伦贝尔市', + 86471 => '内蒙古呼和浩特市', + 86472 => '内蒙古包头市', + 86473 => '内蒙古乌海市', + 86474 => '内蒙古乌兰察布市', + 86475 => '内蒙古通辽市', + 86476 => '内蒙古赤峰市', + 86477 => '内蒙古鄂尔多斯市', + 86478 => '内蒙古巴彦淖尔市', + 86479 => '内蒙古锡林郭勒盟', + 86482 => '内蒙古兴安盟', + 86483 => '内蒙古阿拉善盟', + 86510 => '江苏省无锡市', + 86511 => '江苏省镇江市', + 86512 => '江苏省苏州市', + 86513 => '江苏省南通市', + 86514 => '江苏省扬州市', + 86515 => '江苏省盐城市', + 86516 => '江苏省徐州市', + 86517 => '江苏省淮安市', + 86518 => '江苏省连云港市', + 86519 => '江苏省常州市', + 86523 => '江苏省泰州市', + 86527 => '江苏省宿迁市', + 86530 => '山东省菏泽市', + 86531 => '山东省济南市', + 86532 => '山东省青岛市', + 86533 => '山东省淄博市', + 86534 => '山东省德州市', + 86535 => '山东省烟台市', + 86536 => '山东省潍坊市', + 86537 => '山东省济宁市', + 86538 => '山东省泰安市', + 86539 => '山东省临沂市', + 86543 => '山东省滨州市', + 86546 => '山东省东营市', + 86550 => '安徽省滁州市', + 86551 => '安徽省合肥市、巢湖市', + 86552 => '安徽省蚌埠市', + 86553 => '安徽省芜湖市', + 86554 => '安徽省淮南市', + 86555 => '安徽省马鞍山市', + 86556 => '安徽省安庆市', + 86557 => '安徽省宿州市', + 86558 => '安徽省阜阳市', + 86559 => '安徽省黄山市', + 86561 => '安徽省淮北市', + 86562 => '安徽省铜陵市', + 86563 => '安徽省宣城市', + 86564 => '安徽省六安市', + 86566 => '安徽省池州市', + 86570 => '浙江省衢州市', + 86571 => '浙江省杭州市', + 86572 => '浙江省湖州市', + 86573 => '浙江省嘉兴市', + 86574 => '浙江省宁波市', + 86575 => '浙江省绍兴市', + 86576 => '浙江省台州市', + 86577 => '浙江省温州市', + 86578 => '浙江省丽水市', + 86579 => '浙江省金华市', + 86580 => '浙江省舟山市', + 86591 => '福建省福州市', + 86592 => '福建省厦门市', + 86593 => '福建省宁德市', + 86594 => '福建省莆田市', + 86595 => '福建省泉州市', + 86596 => '福建省漳州市', + 86597 => '福建省龙岩市', + 86598 => '福建省三明市', + 86599 => '福建省南平市', + 86631 => '山东省威海市', + 86632 => '山东省枣庄市', + 86633 => '山东省日照市', + 86634 => '山东省莱芜市', + 86635 => '山东省聊城市', + 86660 => '广东省汕尾市', + 86662 => '广东省阳江市', + 86663 => '广东省揭阳市', + 86668 => '广东省茂名市', + 86691 => '云南省西双版纳傣族自治州', + 86692 => '云南省德宏傣族景颇族自治州', + 86701 => '江西省鹰潭市', + 86710 => '湖北省襄樊市、襄樊市', + 86711 => '湖北省鄂州市', + 86712 => '湖北省孝感市', + 86713 => '湖北省黄冈市', + 86714 => '湖北省黄石市', + 86715 => '湖北省咸宁市', + 86716 => '湖北省荆州市', + 86717 => '湖北省宜昌市', + 86718 => '湖北省恩施土家族苗族自治州', + 86719 => '湖北省十堰市', + 86722 => '湖北省随州市', + 86724 => '湖北省荆门市', + 86728 => '湖北省仙桃市', + 86730 => '湖南省岳阳市', + 86731 => '湖南省长沙市、湘潭市、株州市', + 86734 => '湖南省衡阳市', + 86735 => '湖南省郴州市', + 86736 => '湖南省常德市', + 86737 => '湖南省益阳市', + 86738 => '湖南省娄底市', + 86739 => '湖南省邵阳市', + 86743 => '湖南省湘西土家族苗族自治州', + 86744 => '湖南省张家界市', + 86745 => '湖南省怀化市', + 86746 => '湖南省永州市', + 86750 => '广东省江门市', + 86751 => '广东省韶关市', + 86752 => '广东省惠州市', + 86753 => '广东省梅州市', + 86754 => '广东省汕头市、潮阳市', + 86755 => '广东省深圳市', + 86756 => '广东省珠海市', + 86757 => '广东省佛山市、顺德市', + 86758 => '广东省肇庆市', + 86759 => '广东省湛江市', + 86760 => '广东省中山市', + 86762 => '广东省河源市', + 86763 => '广东省清远市', + 86766 => '广东省云浮市', + 86768 => '广东省潮州市', + 86769 => '广东省东莞市', + 86770 => '广西防城港市', + 86771 => '广西南宁市', + 86772 => '广西柳州市', + 86773 => '广西桂林市', + 86774 => '广西梧州市', + 86775 => '广西玉林市', + 86776 => '广西百色市', + 86777 => '广西钦州市', + 86778 => '广西河池市', + 86779 => '广西北海市', + 86790 => '江西省新余市', + 86791 => '江西省南昌市', + 86792 => '江西省九江市', + 86793 => '江西省上饶市', + 86794 => '江西省抚州市', + 86795 => '江西省宜春市', + 86796 => '江西省吉安市', + 86797 => '江西省赣州市', + 86798 => '江西省景德镇市', + 86799 => '江西省萍乡市', + 868078 => '西藏索县', + 86812 => '四川省攀枝花市', + 86813 => '四川省自贡市', + 86816 => '四川省绵阳市', + 86817 => '四川省南充市', + 86818 => '四川省达州市', + 86825 => '四川省遂宁市', + 86826 => '四川省广安市', + 86827 => '四川省巴中市', + 86830 => '四川省泸州市', + 86831 => '四川省宜宾市', + 86832 => '四川省内江市、资阳市', + 86833 => '四川省乐山市', + 86834 => '四川省凉山彝族自治州', + 86835 => '四川省雅安市', + 86836 => '四川省甘孜藏族自治州', + 86837 => '四川省阿坝藏族羌族自治州', + 86838 => '四川省德阳市', + 86839 => '四川省广元市', + 86851 => '贵州省贵阳市、遵义市、安顺市', + 86852 => '贵州省遵义市', + 86853 => '贵州省安顺市', + 86854 => '贵州省黔南布依族苗族自治州', + 86855 => '贵州省黔东南苗族侗族自治州', + 86856 => '贵州省铜仁地区', + 86857 => '贵州省毕节地区', + 86858 => '贵州省六盘水市', + 86859 => '贵州省黔西南布依族苗族自治州', + 86870 => '云南省昭通市', + 86871 => '云南省昆明市', + 86872 => '云南省大理白族自治州', + 86873 => '云南省红河哈尼族彝族自治州', + 86874 => '云南省曲靖市', + 86875 => '云南省保山市', + 86876 => '云南省文山壮族苗族自治州', + 86877 => '云南省玉溪市', + 86878 => '云南省楚雄彝族自治州', + 86879 => '云南省普洱市', + 86883 => '云南省临沧市', + 86886 => '云南省怒江傈僳族自治州', + 86887 => '云南省迪庆藏族自治州', + 86888 => '云南省丽江市', + 86891 => '西藏拉萨市', + 86892 => '西藏日喀则地区、仲巴县', + 86893 => '西藏山南地区', + 86894 => '西藏林芝地区', + 86895 => '西藏昌都地区', + 86896 => '西藏那曲地区、嘉黎县、聂荣县、申扎县、双湖、班戈县、尼玛县', + 86897 => '西藏阿里地区、普兰县、扎达县', + 86898 => '海南省海口市', + 86901 => '新疆塔城地区', + 86902 => '新疆哈密地区', + 86903 => '新疆和田地区', + 86906 => '新疆阿勒泰地区', + 86908 => '新疆克孜勒苏柯尔克孜自治州', + 86909 => '新疆博尔塔拉蒙古自治州', + 86911 => '陕西省延安市', + 86912 => '陕西省榆林市', + 86913 => '陕西省渭南市', + 86914 => '陕西省商洛市', + 86915 => '陕西省安康市', + 86916 => '陕西省汉中市', + 86917 => '陕西省宝鸡市', + 86919 => '陕西省铜川市', + 86930 => '甘肃省临夏回族自治州', + 86931 => '甘肃省兰州市', + 86932 => '甘肃省定西市', + 86933 => '甘肃省平凉市', + 86934 => '甘肃省庆阳市', + 86935 => '甘肃省武威市', + 86936 => '甘肃省张掖市', + 86937 => '甘肃省酒泉市', + 86938 => '甘肃省天水市', + 86939 => '甘肃省陇南市', + 86941 => '甘肃省甘南藏族自治州', + 86943 => '甘肃省白银市', + 86951 => '宁夏银川市', + 86952 => '宁夏石嘴山市', + 86953 => '宁夏吴忠市', + 86954 => '宁夏固原市', + 86955 => '宁夏中卫市', + 86970 => '青海省海北藏族自治州', + 86971 => '青海省西宁市', + 86972 => '青海省海东地区', + 86973 => '青海省黄南藏族自治州', + 86974 => '青海省海南藏族自治州', + 86975 => '青海省果洛藏族自治州', + 86976 => '青海省玉树藏族自治州', + 86977 => '青海省海西蒙古族藏族自治州', + 86979 => '青海省海西蒙古族藏族自治州', + 86990 => '新疆克拉玛依市', + 86991 => '新疆乌鲁木齐市', + 86992 => '新疆伊犁哈萨克自治州', + 86993 => '新疆石河子市', + 86994 => '新疆昌吉回族自治州', + 86995 => '新疆吐鲁番地区', + 86996 => '新疆巴音郭楞蒙古自治州', + 86997 => '新疆阿克苏地区', + 86998 => '新疆喀什地区', + 86999 => '新疆伊犁哈萨克自治州', +); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8620.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8620.php deleted file mode 100644 index a5f4ee8dd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8620.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省广州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8621.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8621.php deleted file mode 100644 index 5fe6d5544..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8621.php +++ /dev/null @@ -1,9 +0,0 @@ - '上海市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8622.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8622.php deleted file mode 100644 index 9e6391414..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8622.php +++ /dev/null @@ -1,9 +0,0 @@ - '天津市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8623.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8623.php deleted file mode 100644 index e9da82838..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8623.php +++ /dev/null @@ -1,9 +0,0 @@ - '重庆市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8624.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8624.php deleted file mode 100644 index e4017b415..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8624.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省沈阳市、铁岭市、抚顺市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8625.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8625.php deleted file mode 100644 index b6f0e36f9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8625.php +++ /dev/null @@ -1,9 +0,0 @@ - '江苏省南京市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8627.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8627.php deleted file mode 100644 index 5a5500b73..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8627.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省武汉市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8628.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8628.php deleted file mode 100644 index fa6b13708..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8628.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省成都市、资阳市、眉山市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8629.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8629.php deleted file mode 100644 index 035144265..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/8629.php +++ /dev/null @@ -1,9 +0,0 @@ - '陕西省西安市、咸阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86310.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86310.php deleted file mode 100644 index d46b433fd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86310.php +++ /dev/null @@ -1,9 +0,0 @@ - '河北省邯郸市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86311.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86311.php deleted file mode 100644 index 3edee0f10..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86311.php +++ /dev/null @@ -1,9 +0,0 @@ - '河北省石家庄市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86312.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86312.php deleted file mode 100644 index 2135d9a55..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86312.php +++ /dev/null @@ -1,9 +0,0 @@ - '河北省保定市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86313.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86313.php deleted file mode 100644 index bda1bf994..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86313.php +++ /dev/null @@ -1,9 +0,0 @@ - '河北省张家口市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86314.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86314.php deleted file mode 100644 index 0909a2135..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86314.php +++ /dev/null @@ -1,9 +0,0 @@ - '河北省承德市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86315.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86315.php deleted file mode 100644 index a9545f879..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86315.php +++ /dev/null @@ -1,9 +0,0 @@ - '河北省唐山市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86316.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86316.php deleted file mode 100644 index ac00773e8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86316.php +++ /dev/null @@ -1,9 +0,0 @@ - '河北省廊坊市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86317.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86317.php deleted file mode 100644 index ee142e6e2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86317.php +++ /dev/null @@ -1,9 +0,0 @@ - '河北省沧州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86318.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86318.php deleted file mode 100644 index 21ffc1d0c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86318.php +++ /dev/null @@ -1,9 +0,0 @@ - '河北省衡水市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86319.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86319.php deleted file mode 100644 index 62e443020..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86319.php +++ /dev/null @@ -1,9 +0,0 @@ - '河北省邢台市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86335.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86335.php deleted file mode 100644 index 5b911de05..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86335.php +++ /dev/null @@ -1,9 +0,0 @@ - '河北省秦皇岛市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86349.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86349.php deleted file mode 100644 index 5f023c0ad..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86349.php +++ /dev/null @@ -1,9 +0,0 @@ - '山西省朔州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86350.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86350.php deleted file mode 100644 index bdc148e3a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86350.php +++ /dev/null @@ -1,9 +0,0 @@ - '山西省忻州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86351.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86351.php deleted file mode 100644 index fe3cf80ab..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86351.php +++ /dev/null @@ -1,9 +0,0 @@ - '山西省太原市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86352.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86352.php deleted file mode 100644 index bd4d09bc5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86352.php +++ /dev/null @@ -1,9 +0,0 @@ - '山西省大同市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86353.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86353.php deleted file mode 100644 index 2942bc08e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86353.php +++ /dev/null @@ -1,9 +0,0 @@ - '山西省阳泉市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86354.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86354.php deleted file mode 100644 index 0171323fc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86354.php +++ /dev/null @@ -1,9 +0,0 @@ - '山西省晋中市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86355.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86355.php deleted file mode 100644 index cb09f848a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86355.php +++ /dev/null @@ -1,9 +0,0 @@ - '山西省长治市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86356.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86356.php deleted file mode 100644 index 299de32a9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86356.php +++ /dev/null @@ -1,9 +0,0 @@ - '山西省晋城市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86357.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86357.php deleted file mode 100644 index 2ee86b7d7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86357.php +++ /dev/null @@ -1,9 +0,0 @@ - '山西省临汾市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86358.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86358.php deleted file mode 100644 index d8420f834..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86358.php +++ /dev/null @@ -1,9 +0,0 @@ - '山西省吕梁市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86359.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86359.php deleted file mode 100644 index f7de580db..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86359.php +++ /dev/null @@ -1,9 +0,0 @@ - '山西省运城市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86370.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86370.php deleted file mode 100644 index 1ad552c1f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86370.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省商丘市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86371.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86371.php deleted file mode 100644 index 4bebdf7d8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86371.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省郑州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86372.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86372.php deleted file mode 100644 index 9369f5a8e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86372.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省安阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86373.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86373.php deleted file mode 100644 index b28e0fa54..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86373.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省新乡市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86374.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86374.php deleted file mode 100644 index 6ee33c19a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86374.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省许昌市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86375.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86375.php deleted file mode 100644 index 948aa4bf4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86375.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省平顶山市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86376.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86376.php deleted file mode 100644 index 34ffc49fc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86376.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省信阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86377.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86377.php deleted file mode 100644 index 9d392e63a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86377.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省南阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86378.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86378.php deleted file mode 100644 index c0111474d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86378.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省开封市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86379.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86379.php deleted file mode 100644 index c2fda1a03..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86379.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省洛阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86391.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86391.php deleted file mode 100644 index f54452359..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86391.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省焦作市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86392.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86392.php deleted file mode 100644 index 7d53312f0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86392.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省鹤壁市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86393.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86393.php deleted file mode 100644 index 8040303b4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86393.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省濮阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86394.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86394.php deleted file mode 100644 index 8682522ab..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86394.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省周口市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86395.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86395.php deleted file mode 100644 index 827a281f4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86395.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省漯河市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86396.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86396.php deleted file mode 100644 index 1fd7a7dcf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86396.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省驻马店市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86398.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86398.php deleted file mode 100644 index 67490e0df..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86398.php +++ /dev/null @@ -1,9 +0,0 @@ - '河南省三门峡市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86410.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86410.php deleted file mode 100644 index a28d18b2f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86410.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省铁岭市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86411.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86411.php deleted file mode 100644 index 2e13350ea..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86411.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省大连市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86412.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86412.php deleted file mode 100644 index 3c266df46..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86412.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省鞍山市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86413.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86413.php deleted file mode 100644 index 46285e9a0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86413.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省抚顺市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86414.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86414.php deleted file mode 100644 index 176136b25..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86414.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省本溪市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86415.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86415.php deleted file mode 100644 index 511f72b26..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86415.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省丹东市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86416.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86416.php deleted file mode 100644 index 66764bc85..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86416.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省锦州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86417.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86417.php deleted file mode 100644 index f8ae74d2f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86417.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省营口市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86418.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86418.php deleted file mode 100644 index ceca6b16c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86418.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省阜新市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86419.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86419.php deleted file mode 100644 index c1caede94..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86419.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省辽阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86421.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86421.php deleted file mode 100644 index 351afd88f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86421.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省朝阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86427.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86427.php deleted file mode 100644 index a16deee58..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86427.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省盘锦市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86429.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86429.php deleted file mode 100644 index c3941c22b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86429.php +++ /dev/null @@ -1,9 +0,0 @@ - '辽宁省葫芦岛市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86431.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86431.php deleted file mode 100644 index e48ed6d4a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86431.php +++ /dev/null @@ -1,9 +0,0 @@ - '吉林省长春市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86432.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86432.php deleted file mode 100644 index 17a98b6fd..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86432.php +++ /dev/null @@ -1,9 +0,0 @@ - '吉林省吉林市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86433.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86433.php deleted file mode 100644 index d2af42cc7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86433.php +++ /dev/null @@ -1,9 +0,0 @@ - '吉林省延边朝鲜族自治州、珲春市、延吉市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86434.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86434.php deleted file mode 100644 index 6c9331c51..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86434.php +++ /dev/null @@ -1,9 +0,0 @@ - '吉林省四平市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86435.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86435.php deleted file mode 100644 index 152d289a1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86435.php +++ /dev/null @@ -1,9 +0,0 @@ - '吉林省通化市、梅河口市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86436.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86436.php deleted file mode 100644 index 4ac88ac7a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86436.php +++ /dev/null @@ -1,9 +0,0 @@ - '吉林省白城市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86437.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86437.php deleted file mode 100644 index 2c1ad4c26..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86437.php +++ /dev/null @@ -1,9 +0,0 @@ - '吉林省辽源市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86438.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86438.php deleted file mode 100644 index 70fa79c3c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86438.php +++ /dev/null @@ -1,9 +0,0 @@ - '吉林省松原市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86439.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86439.php deleted file mode 100644 index d4253dbe7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86439.php +++ /dev/null @@ -1,9 +0,0 @@ - '吉林省白山市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86451.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86451.php deleted file mode 100644 index 4db191375..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86451.php +++ /dev/null @@ -1,9 +0,0 @@ - '黑龙江省哈尔滨市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86452.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86452.php deleted file mode 100644 index 9bf56044e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86452.php +++ /dev/null @@ -1,9 +0,0 @@ - '黑龙江省齐齐哈尔市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86453.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86453.php deleted file mode 100644 index 869325911..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86453.php +++ /dev/null @@ -1,9 +0,0 @@ - '黑龙江省牡丹江市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86454.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86454.php deleted file mode 100644 index 86c5abc7e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86454.php +++ /dev/null @@ -1,9 +0,0 @@ - '黑龙江省佳木斯市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86455.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86455.php deleted file mode 100644 index 56282f614..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86455.php +++ /dev/null @@ -1,9 +0,0 @@ - '黑龙江省绥化市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86456.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86456.php deleted file mode 100644 index a710772f0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86456.php +++ /dev/null @@ -1,9 +0,0 @@ - '黑龙江省黑河市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86457.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86457.php deleted file mode 100644 index c6dc7fac7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86457.php +++ /dev/null @@ -1,9 +0,0 @@ - '黑龙江省大兴安岭地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86458.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86458.php deleted file mode 100644 index 1a158a0bc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86458.php +++ /dev/null @@ -1,9 +0,0 @@ - '黑龙江省伊春市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86459.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86459.php deleted file mode 100644 index c734991ac..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86459.php +++ /dev/null @@ -1,9 +0,0 @@ - '黑龙江省大庆市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86464.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86464.php deleted file mode 100644 index 55da188f8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86464.php +++ /dev/null @@ -1,9 +0,0 @@ - '黑龙江省七台河市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86467.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86467.php deleted file mode 100644 index 7ac5a22de..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86467.php +++ /dev/null @@ -1,9 +0,0 @@ - '黑龙江省鸡西市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86468.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86468.php deleted file mode 100644 index 9c5bd9135..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86468.php +++ /dev/null @@ -1,9 +0,0 @@ - '黑龙江省鹤岗市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86469.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86469.php deleted file mode 100644 index 87a47ea05..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86469.php +++ /dev/null @@ -1,9 +0,0 @@ - '黑龙江省双鸭山市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86470.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86470.php deleted file mode 100644 index 8cd7b377b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86470.php +++ /dev/null @@ -1,9 +0,0 @@ - '内蒙古呼伦贝尔市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86471.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86471.php deleted file mode 100644 index 9ab1bf406..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86471.php +++ /dev/null @@ -1,9 +0,0 @@ - '内蒙古呼和浩特市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86472.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86472.php deleted file mode 100644 index 2f33af368..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86472.php +++ /dev/null @@ -1,9 +0,0 @@ - '内蒙古包头市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86473.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86473.php deleted file mode 100644 index 7c799f08d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86473.php +++ /dev/null @@ -1,9 +0,0 @@ - '内蒙古乌海市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86474.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86474.php deleted file mode 100644 index 6b598a74e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86474.php +++ /dev/null @@ -1,9 +0,0 @@ - '内蒙古乌兰察布市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86475.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86475.php deleted file mode 100644 index ffe867bd3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86475.php +++ /dev/null @@ -1,9 +0,0 @@ - '内蒙古通辽市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86476.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86476.php deleted file mode 100644 index ee376450c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86476.php +++ /dev/null @@ -1,9 +0,0 @@ - '内蒙古赤峰市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86477.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86477.php deleted file mode 100644 index a0b8fcc81..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86477.php +++ /dev/null @@ -1,9 +0,0 @@ - '内蒙古鄂尔多斯市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86478.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86478.php deleted file mode 100644 index 852f5db3b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86478.php +++ /dev/null @@ -1,9 +0,0 @@ - '内蒙古巴彦淖尔市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86479.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86479.php deleted file mode 100644 index 97633c299..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86479.php +++ /dev/null @@ -1,9 +0,0 @@ - '内蒙古锡林郭勒盟', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86482.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86482.php deleted file mode 100644 index 7ebd8ffcb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86482.php +++ /dev/null @@ -1,9 +0,0 @@ - '内蒙古兴安盟', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86483.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86483.php deleted file mode 100644 index b4e95d8e0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86483.php +++ /dev/null @@ -1,9 +0,0 @@ - '内蒙古阿拉善盟', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86510.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86510.php deleted file mode 100644 index 38c0e57ad..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86510.php +++ /dev/null @@ -1,9 +0,0 @@ - '江苏省无锡市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86511.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86511.php deleted file mode 100644 index 05147860c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86511.php +++ /dev/null @@ -1,9 +0,0 @@ - '江苏省镇江市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86512.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86512.php deleted file mode 100644 index b38eb8c87..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86512.php +++ /dev/null @@ -1,9 +0,0 @@ - '江苏省苏州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86513.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86513.php deleted file mode 100644 index 0274b80ce..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86513.php +++ /dev/null @@ -1,9 +0,0 @@ - '江苏省南通市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86514.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86514.php deleted file mode 100644 index d8e6a601e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86514.php +++ /dev/null @@ -1,9 +0,0 @@ - '江苏省扬州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86515.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86515.php deleted file mode 100644 index d9ab76f73..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86515.php +++ /dev/null @@ -1,9 +0,0 @@ - '江苏省盐城市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86516.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86516.php deleted file mode 100644 index 6f6804070..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86516.php +++ /dev/null @@ -1,9 +0,0 @@ - '江苏省徐州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86517.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86517.php deleted file mode 100644 index d296ae1ed..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86517.php +++ /dev/null @@ -1,9 +0,0 @@ - '江苏省淮安市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86518.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86518.php deleted file mode 100644 index 201d74ebe..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86518.php +++ /dev/null @@ -1,9 +0,0 @@ - '江苏省连云港市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86519.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86519.php deleted file mode 100644 index 6bdd9af6d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86519.php +++ /dev/null @@ -1,9 +0,0 @@ - '江苏省常州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86523.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86523.php deleted file mode 100644 index 3a9a9c74b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86523.php +++ /dev/null @@ -1,9 +0,0 @@ - '江苏省泰州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86527.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86527.php deleted file mode 100644 index a1c5c9ef2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86527.php +++ /dev/null @@ -1,9 +0,0 @@ - '江苏省宿迁市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86530.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86530.php deleted file mode 100644 index 6bd0156f7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86530.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省菏泽市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86531.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86531.php deleted file mode 100644 index a78e8c21f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86531.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省济南市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86532.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86532.php deleted file mode 100644 index c55321178..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86532.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省青岛市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86533.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86533.php deleted file mode 100644 index b0dceec10..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86533.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省淄博市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86534.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86534.php deleted file mode 100644 index b0e52b8e1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86534.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省德州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86535.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86535.php deleted file mode 100644 index 4e52e789a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86535.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省烟台市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86536.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86536.php deleted file mode 100644 index 3a4e67dec..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86536.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省潍坊市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86537.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86537.php deleted file mode 100644 index 72af40ded..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86537.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省济宁市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86538.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86538.php deleted file mode 100644 index af6f151fb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86538.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省泰安市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86539.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86539.php deleted file mode 100644 index fd62db64f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86539.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省临沂市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86543.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86543.php deleted file mode 100644 index af5c62556..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86543.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省滨州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86546.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86546.php deleted file mode 100644 index 2e91c0d91..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86546.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省东营市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86550.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86550.php deleted file mode 100644 index e47633701..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86550.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省滁州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86551.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86551.php deleted file mode 100644 index a0fdbf2b2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86551.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省合肥市、巢湖市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86552.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86552.php deleted file mode 100644 index 6a85766d1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86552.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省蚌埠市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86553.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86553.php deleted file mode 100644 index c80ca09f3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86553.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省芜湖市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86554.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86554.php deleted file mode 100644 index 1847ed68b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86554.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省淮南市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86555.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86555.php deleted file mode 100644 index 738caa22f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86555.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省马鞍山市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86556.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86556.php deleted file mode 100644 index 0259ff34e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86556.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省安庆市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86557.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86557.php deleted file mode 100644 index 652a6706b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86557.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省宿州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86558.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86558.php deleted file mode 100644 index f2923a060..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86558.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省阜阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86559.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86559.php deleted file mode 100644 index f5a54033a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86559.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省黄山市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86561.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86561.php deleted file mode 100644 index 7504fcef3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86561.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省淮北市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86562.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86562.php deleted file mode 100644 index 93246bea1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86562.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省铜陵市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86563.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86563.php deleted file mode 100644 index c2d20ab42..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86563.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省宣城市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86564.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86564.php deleted file mode 100644 index cab6807f5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86564.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省六安市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86566.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86566.php deleted file mode 100644 index a26bbdd99..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86566.php +++ /dev/null @@ -1,9 +0,0 @@ - '安徽省池州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86570.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86570.php deleted file mode 100644 index b891f1889..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86570.php +++ /dev/null @@ -1,9 +0,0 @@ - '浙江省衢州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86571.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86571.php deleted file mode 100644 index e2c40e026..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86571.php +++ /dev/null @@ -1,9 +0,0 @@ - '浙江省杭州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86572.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86572.php deleted file mode 100644 index 109b88637..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86572.php +++ /dev/null @@ -1,9 +0,0 @@ - '浙江省湖州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86573.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86573.php deleted file mode 100644 index 04f2c659f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86573.php +++ /dev/null @@ -1,9 +0,0 @@ - '浙江省嘉兴市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86574.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86574.php deleted file mode 100644 index 1d1392442..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86574.php +++ /dev/null @@ -1,9 +0,0 @@ - '浙江省宁波市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86575.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86575.php deleted file mode 100644 index 910e26b92..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86575.php +++ /dev/null @@ -1,9 +0,0 @@ - '浙江省绍兴市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86576.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86576.php deleted file mode 100644 index 24df3e160..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86576.php +++ /dev/null @@ -1,9 +0,0 @@ - '浙江省台州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86577.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86577.php deleted file mode 100644 index dca5f2794..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86577.php +++ /dev/null @@ -1,9 +0,0 @@ - '浙江省温州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86578.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86578.php deleted file mode 100644 index 27be6b043..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86578.php +++ /dev/null @@ -1,9 +0,0 @@ - '浙江省丽水市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86579.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86579.php deleted file mode 100644 index c3740846c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86579.php +++ /dev/null @@ -1,9 +0,0 @@ - '浙江省金华市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86580.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86580.php deleted file mode 100644 index df5debb2e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86580.php +++ /dev/null @@ -1,9 +0,0 @@ - '浙江省舟山市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86591.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86591.php deleted file mode 100644 index 4a4b55d83..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86591.php +++ /dev/null @@ -1,9 +0,0 @@ - '福建省福州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86592.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86592.php deleted file mode 100644 index 3705f1c40..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86592.php +++ /dev/null @@ -1,9 +0,0 @@ - '福建省厦门市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86593.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86593.php deleted file mode 100644 index 8bb3870c2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86593.php +++ /dev/null @@ -1,9 +0,0 @@ - '福建省宁德市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86594.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86594.php deleted file mode 100644 index 55213bc0e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86594.php +++ /dev/null @@ -1,9 +0,0 @@ - '福建省莆田市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86595.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86595.php deleted file mode 100644 index b12e3fdcf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86595.php +++ /dev/null @@ -1,9 +0,0 @@ - '福建省泉州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86596.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86596.php deleted file mode 100644 index 45c0fb4d2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86596.php +++ /dev/null @@ -1,9 +0,0 @@ - '福建省漳州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86597.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86597.php deleted file mode 100644 index b05c8be0b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86597.php +++ /dev/null @@ -1,9 +0,0 @@ - '福建省龙岩市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86598.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86598.php deleted file mode 100644 index 3bb0359c7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86598.php +++ /dev/null @@ -1,9 +0,0 @@ - '福建省三明市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86599.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86599.php deleted file mode 100644 index 91c10c858..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86599.php +++ /dev/null @@ -1,9 +0,0 @@ - '福建省南平市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86631.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86631.php deleted file mode 100644 index d0fd2bc33..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86631.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省威海市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86632.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86632.php deleted file mode 100644 index 66c17a09f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86632.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省枣庄市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86633.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86633.php deleted file mode 100644 index 95f0ed054..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86633.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省日照市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86634.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86634.php deleted file mode 100644 index aeb837d4a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86634.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省莱芜市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86635.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86635.php deleted file mode 100644 index 18a52d3ce..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86635.php +++ /dev/null @@ -1,9 +0,0 @@ - '山东省聊城市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86660.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86660.php deleted file mode 100644 index c255929f0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86660.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省汕尾市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86662.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86662.php deleted file mode 100644 index f0187b280..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86662.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省阳江市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86663.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86663.php deleted file mode 100644 index 834e282ee..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86663.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省揭阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86668.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86668.php deleted file mode 100644 index 59ae47457..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86668.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省茂名市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86691.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86691.php deleted file mode 100644 index 806785a4d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86691.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省西双版纳傣族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86692.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86692.php deleted file mode 100644 index f4bed36e1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86692.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省德宏傣族景颇族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86701.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86701.php deleted file mode 100644 index 6411a723f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86701.php +++ /dev/null @@ -1,9 +0,0 @@ - '江西省鹰潭市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86710.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86710.php deleted file mode 100644 index 580716ebe..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86710.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省襄樊市、襄樊市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86711.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86711.php deleted file mode 100644 index cfae0a0b2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86711.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省鄂州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86712.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86712.php deleted file mode 100644 index 07840cc33..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86712.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省孝感市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86713.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86713.php deleted file mode 100644 index 2a0065dd2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86713.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省黄冈市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86714.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86714.php deleted file mode 100644 index 398343530..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86714.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省黄石市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86715.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86715.php deleted file mode 100644 index 87ea88d6e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86715.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省咸宁市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86716.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86716.php deleted file mode 100644 index cff8bbb7f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86716.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省荆州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86717.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86717.php deleted file mode 100644 index 813527f58..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86717.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省宜昌市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86718.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86718.php deleted file mode 100644 index d8a0a6129..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86718.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省恩施土家族苗族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86719.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86719.php deleted file mode 100644 index 1f8a41c41..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86719.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省十堰市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86722.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86722.php deleted file mode 100644 index b20847674..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86722.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省随州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86724.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86724.php deleted file mode 100644 index cc5040fad..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86724.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省荆门市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86728.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86728.php deleted file mode 100644 index 2007aaf32..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86728.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖北省仙桃市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86730.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86730.php deleted file mode 100644 index a1a23d39d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86730.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖南省岳阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86731.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86731.php deleted file mode 100644 index 2c507c4b9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86731.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖南省长沙市、湘潭市、株州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86734.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86734.php deleted file mode 100644 index 1f8eaf48e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86734.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖南省衡阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86735.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86735.php deleted file mode 100644 index e04bd637a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86735.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖南省郴州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86736.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86736.php deleted file mode 100644 index 55a4eaf7d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86736.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖南省常德市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86737.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86737.php deleted file mode 100644 index 97434f76d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86737.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖南省益阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86738.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86738.php deleted file mode 100644 index 57eba56c0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86738.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖南省娄底市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86739.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86739.php deleted file mode 100644 index 3908eef3a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86739.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖南省邵阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86743.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86743.php deleted file mode 100644 index d4f245fa1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86743.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖南省湘西土家族苗族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86744.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86744.php deleted file mode 100644 index 6b983a188..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86744.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖南省张家界市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86745.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86745.php deleted file mode 100644 index 49072beef..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86745.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖南省怀化市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86746.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86746.php deleted file mode 100644 index 4ce6dd396..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86746.php +++ /dev/null @@ -1,9 +0,0 @@ - '湖南省永州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86750.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86750.php deleted file mode 100644 index d3eebd5f3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86750.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省江门市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86751.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86751.php deleted file mode 100644 index d15bb72f2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86751.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省韶关市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86752.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86752.php deleted file mode 100644 index fcb2e3552..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86752.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省惠州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86753.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86753.php deleted file mode 100644 index bd20476c2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86753.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省梅州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86754.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86754.php deleted file mode 100644 index f1fe72e82..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86754.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省汕头市、潮阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86755.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86755.php deleted file mode 100644 index d1e141d57..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86755.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省深圳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86756.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86756.php deleted file mode 100644 index 35f5f2bff..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86756.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省珠海市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86757.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86757.php deleted file mode 100644 index 130fd54ad..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86757.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省佛山市、顺德市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86758.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86758.php deleted file mode 100644 index a4a472b80..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86758.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省肇庆市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86759.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86759.php deleted file mode 100644 index 7d68af6f7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86759.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省湛江市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86760.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86760.php deleted file mode 100644 index c911e2859..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86760.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省中山市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86762.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86762.php deleted file mode 100644 index 7967ffe02..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86762.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省河源市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86763.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86763.php deleted file mode 100644 index 608eb1b5f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86763.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省清远市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86766.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86766.php deleted file mode 100644 index e77bd1904..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86766.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省云浮市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86768.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86768.php deleted file mode 100644 index 0a2a1e4db..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86768.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省潮州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86769.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86769.php deleted file mode 100644 index ec4139638..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86769.php +++ /dev/null @@ -1,9 +0,0 @@ - '广东省东莞市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86770.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86770.php deleted file mode 100644 index 830339925..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86770.php +++ /dev/null @@ -1,9 +0,0 @@ - '广西防城港市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86771.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86771.php deleted file mode 100644 index b6628ce98..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86771.php +++ /dev/null @@ -1,9 +0,0 @@ - '广西南宁市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86772.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86772.php deleted file mode 100644 index 0ab4e86f3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86772.php +++ /dev/null @@ -1,9 +0,0 @@ - '广西柳州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86773.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86773.php deleted file mode 100644 index 903820fe3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86773.php +++ /dev/null @@ -1,9 +0,0 @@ - '广西桂林市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86774.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86774.php deleted file mode 100644 index 276e4302c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86774.php +++ /dev/null @@ -1,9 +0,0 @@ - '广西梧州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86775.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86775.php deleted file mode 100644 index 58b3ba8f0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86775.php +++ /dev/null @@ -1,9 +0,0 @@ - '广西玉林市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86776.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86776.php deleted file mode 100644 index 364e01e50..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86776.php +++ /dev/null @@ -1,9 +0,0 @@ - '广西百色市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86777.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86777.php deleted file mode 100644 index d101cb92d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86777.php +++ /dev/null @@ -1,9 +0,0 @@ - '广西钦州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86778.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86778.php deleted file mode 100644 index 732f39828..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86778.php +++ /dev/null @@ -1,9 +0,0 @@ - '广西河池市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86779.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86779.php deleted file mode 100644 index 836b90803..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86779.php +++ /dev/null @@ -1,9 +0,0 @@ - '广西北海市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86790.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86790.php deleted file mode 100644 index 937ac808c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86790.php +++ /dev/null @@ -1,9 +0,0 @@ - '江西省新余市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86791.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86791.php deleted file mode 100644 index 5c9f0f828..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86791.php +++ /dev/null @@ -1,9 +0,0 @@ - '江西省南昌市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86792.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86792.php deleted file mode 100644 index 0634cb4f7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86792.php +++ /dev/null @@ -1,9 +0,0 @@ - '江西省九江市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86793.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86793.php deleted file mode 100644 index bc74fc851..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86793.php +++ /dev/null @@ -1,9 +0,0 @@ - '江西省上饶市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86794.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86794.php deleted file mode 100644 index ef99804d4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86794.php +++ /dev/null @@ -1,9 +0,0 @@ - '江西省抚州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86795.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86795.php deleted file mode 100644 index eec0c0aec..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86795.php +++ /dev/null @@ -1,9 +0,0 @@ - '江西省宜春市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86796.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86796.php deleted file mode 100644 index c15edb7ba..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86796.php +++ /dev/null @@ -1,9 +0,0 @@ - '江西省吉安市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86797.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86797.php deleted file mode 100644 index fc583af03..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86797.php +++ /dev/null @@ -1,9 +0,0 @@ - '江西省赣州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86798.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86798.php deleted file mode 100644 index 2b3748123..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86798.php +++ /dev/null @@ -1,9 +0,0 @@ - '江西省景德镇市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86799.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86799.php deleted file mode 100644 index 584bca706..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86799.php +++ /dev/null @@ -1,9 +0,0 @@ - '江西省萍乡市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86807.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86807.php deleted file mode 100644 index fb18698a5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86807.php +++ /dev/null @@ -1,9 +0,0 @@ - '西藏索县', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86812.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86812.php deleted file mode 100644 index cf7dbe361..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86812.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省攀枝花市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86813.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86813.php deleted file mode 100644 index e7f83dd9f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86813.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省自贡市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86816.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86816.php deleted file mode 100644 index 0d44c3bfb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86816.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省绵阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86817.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86817.php deleted file mode 100644 index 6f21ec01d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86817.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省南充市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86818.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86818.php deleted file mode 100644 index eece71a3a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86818.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省达州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86825.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86825.php deleted file mode 100644 index dd8e7097b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86825.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省遂宁市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86826.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86826.php deleted file mode 100644 index b3fb57617..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86826.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省广安市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86827.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86827.php deleted file mode 100644 index fa3ae3750..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86827.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省巴中市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86830.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86830.php deleted file mode 100644 index 50712a932..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86830.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省泸州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86831.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86831.php deleted file mode 100644 index e5ff96dda..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86831.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省宜宾市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86832.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86832.php deleted file mode 100644 index 1d182886f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86832.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省内江市、资阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86833.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86833.php deleted file mode 100644 index 8cc65904c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86833.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省乐山市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86834.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86834.php deleted file mode 100644 index b8a372441..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86834.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省凉山彝族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86835.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86835.php deleted file mode 100644 index afbfd0597..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86835.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省雅安市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86836.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86836.php deleted file mode 100644 index 05c433614..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86836.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省甘孜藏族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86837.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86837.php deleted file mode 100644 index e927cf828..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86837.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省阿坝藏族羌族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86838.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86838.php deleted file mode 100644 index a94947621..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86838.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省德阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86839.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86839.php deleted file mode 100644 index 5fc0da510..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86839.php +++ /dev/null @@ -1,9 +0,0 @@ - '四川省广元市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86851.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86851.php deleted file mode 100644 index 2ee48dd5a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86851.php +++ /dev/null @@ -1,9 +0,0 @@ - '贵州省贵阳市、遵义市、安顺市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86852.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86852.php deleted file mode 100644 index 4afcfc10d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86852.php +++ /dev/null @@ -1,9 +0,0 @@ - '贵州省遵义市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86853.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86853.php deleted file mode 100644 index 2d1d389a5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86853.php +++ /dev/null @@ -1,9 +0,0 @@ - '贵州省安顺市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86854.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86854.php deleted file mode 100644 index 36258ff40..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86854.php +++ /dev/null @@ -1,9 +0,0 @@ - '贵州省黔南布依族苗族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86855.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86855.php deleted file mode 100644 index 8259c57a3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86855.php +++ /dev/null @@ -1,9 +0,0 @@ - '贵州省黔东南苗族侗族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86856.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86856.php deleted file mode 100644 index 593c2ac7a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86856.php +++ /dev/null @@ -1,9 +0,0 @@ - '贵州省铜仁地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86857.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86857.php deleted file mode 100644 index e0ab82575..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86857.php +++ /dev/null @@ -1,9 +0,0 @@ - '贵州省毕节地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86858.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86858.php deleted file mode 100644 index 8bbc6aa8d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86858.php +++ /dev/null @@ -1,9 +0,0 @@ - '贵州省六盘水市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86859.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86859.php deleted file mode 100644 index 465d67117..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86859.php +++ /dev/null @@ -1,9 +0,0 @@ - '贵州省黔西南布依族苗族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86870.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86870.php deleted file mode 100644 index b30d00242..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86870.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省昭通市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86871.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86871.php deleted file mode 100644 index d54cc6d4a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86871.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省昆明市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86872.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86872.php deleted file mode 100644 index ab81fa068..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86872.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省大理白族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86873.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86873.php deleted file mode 100644 index a4efb7cda..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86873.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省红河哈尼族彝族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86874.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86874.php deleted file mode 100644 index 691785032..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86874.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省曲靖市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86875.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86875.php deleted file mode 100644 index b6ea48de3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86875.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省保山市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86876.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86876.php deleted file mode 100644 index 0fb1dbe5d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86876.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省文山壮族苗族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86877.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86877.php deleted file mode 100644 index c42374d04..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86877.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省玉溪市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86878.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86878.php deleted file mode 100644 index d0011d85c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86878.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省楚雄彝族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86879.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86879.php deleted file mode 100644 index aefd94f7f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86879.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省普洱市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86883.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86883.php deleted file mode 100644 index 10b5eac1a..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86883.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省临沧市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86886.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86886.php deleted file mode 100644 index fce509119..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86886.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省怒江傈僳族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86887.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86887.php deleted file mode 100644 index f184db5ad..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86887.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省迪庆藏族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86888.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86888.php deleted file mode 100644 index 81e889be9..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86888.php +++ /dev/null @@ -1,9 +0,0 @@ - '云南省丽江市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86891.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86891.php deleted file mode 100644 index f6f6a35d7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86891.php +++ /dev/null @@ -1,9 +0,0 @@ - '西藏拉萨市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86892.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86892.php deleted file mode 100644 index 6fb441654..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86892.php +++ /dev/null @@ -1,9 +0,0 @@ - '西藏日喀则地区、仲巴县', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86893.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86893.php deleted file mode 100644 index 97946d237..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86893.php +++ /dev/null @@ -1,9 +0,0 @@ - '西藏山南地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86894.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86894.php deleted file mode 100644 index 5bffa3d97..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86894.php +++ /dev/null @@ -1,9 +0,0 @@ - '西藏林芝地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86895.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86895.php deleted file mode 100644 index b55ad8b3e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86895.php +++ /dev/null @@ -1,9 +0,0 @@ - '西藏昌都地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86896.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86896.php deleted file mode 100644 index 98a297228..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86896.php +++ /dev/null @@ -1,9 +0,0 @@ - '西藏那曲地区、嘉黎县、聂荣县、申扎县、双湖、班戈县、尼玛县', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86897.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86897.php deleted file mode 100644 index bd359f0cf..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86897.php +++ /dev/null @@ -1,9 +0,0 @@ - '西藏阿里地区、普兰县、扎达县', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86898.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86898.php deleted file mode 100644 index 3f2cc736d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86898.php +++ /dev/null @@ -1,9 +0,0 @@ - '海南省海口市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86901.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86901.php deleted file mode 100644 index ab1dfc4b6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86901.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆塔城地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86902.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86902.php deleted file mode 100644 index 24abd3b68..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86902.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆哈密地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86903.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86903.php deleted file mode 100644 index 2dfa42bc0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86903.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆和田地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86906.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86906.php deleted file mode 100644 index e0b287423..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86906.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆阿勒泰地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86908.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86908.php deleted file mode 100644 index 96abbd7e3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86908.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆克孜勒苏柯尔克孜自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86909.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86909.php deleted file mode 100644 index 14f099a2d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86909.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆博尔塔拉蒙古自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86911.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86911.php deleted file mode 100644 index e464f5eaa..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86911.php +++ /dev/null @@ -1,9 +0,0 @@ - '陕西省延安市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86912.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86912.php deleted file mode 100644 index da8e47969..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86912.php +++ /dev/null @@ -1,9 +0,0 @@ - '陕西省榆林市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86913.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86913.php deleted file mode 100644 index 54a24f1dc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86913.php +++ /dev/null @@ -1,9 +0,0 @@ - '陕西省渭南市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86914.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86914.php deleted file mode 100644 index 8b77dece2..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86914.php +++ /dev/null @@ -1,9 +0,0 @@ - '陕西省商洛市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86915.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86915.php deleted file mode 100644 index 088723a69..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86915.php +++ /dev/null @@ -1,9 +0,0 @@ - '陕西省安康市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86916.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86916.php deleted file mode 100644 index 7e9378d0f..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86916.php +++ /dev/null @@ -1,9 +0,0 @@ - '陕西省汉中市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86917.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86917.php deleted file mode 100644 index ef41f8379..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86917.php +++ /dev/null @@ -1,9 +0,0 @@ - '陕西省宝鸡市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86919.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86919.php deleted file mode 100644 index 0e45a3a0d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86919.php +++ /dev/null @@ -1,9 +0,0 @@ - '陕西省铜川市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86930.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86930.php deleted file mode 100644 index 1c2e79762..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86930.php +++ /dev/null @@ -1,9 +0,0 @@ - '甘肃省临夏回族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86931.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86931.php deleted file mode 100644 index 500921c5e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86931.php +++ /dev/null @@ -1,9 +0,0 @@ - '甘肃省兰州市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86932.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86932.php deleted file mode 100644 index a3608c071..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86932.php +++ /dev/null @@ -1,9 +0,0 @@ - '甘肃省定西市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86933.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86933.php deleted file mode 100644 index 5778c1c5d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86933.php +++ /dev/null @@ -1,9 +0,0 @@ - '甘肃省平凉市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86934.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86934.php deleted file mode 100644 index 15816f799..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86934.php +++ /dev/null @@ -1,9 +0,0 @@ - '甘肃省庆阳市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86935.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86935.php deleted file mode 100644 index d1c3e2653..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86935.php +++ /dev/null @@ -1,9 +0,0 @@ - '甘肃省武威市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86936.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86936.php deleted file mode 100644 index 3bea6ded7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86936.php +++ /dev/null @@ -1,9 +0,0 @@ - '甘肃省张掖市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86937.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86937.php deleted file mode 100644 index ad3a0b714..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86937.php +++ /dev/null @@ -1,9 +0,0 @@ - '甘肃省酒泉市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86938.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86938.php deleted file mode 100644 index 485706b48..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86938.php +++ /dev/null @@ -1,9 +0,0 @@ - '甘肃省天水市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86939.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86939.php deleted file mode 100644 index 8f20865b4..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86939.php +++ /dev/null @@ -1,9 +0,0 @@ - '甘肃省陇南市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86941.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86941.php deleted file mode 100644 index 07c0a016b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86941.php +++ /dev/null @@ -1,9 +0,0 @@ - '甘肃省甘南藏族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86943.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86943.php deleted file mode 100644 index 7f2a320cb..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86943.php +++ /dev/null @@ -1,9 +0,0 @@ - '甘肃省白银市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86951.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86951.php deleted file mode 100644 index 8ba5b9964..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86951.php +++ /dev/null @@ -1,9 +0,0 @@ - '宁夏银川市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86952.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86952.php deleted file mode 100644 index 1feb9f743..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86952.php +++ /dev/null @@ -1,9 +0,0 @@ - '宁夏石嘴山市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86953.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86953.php deleted file mode 100644 index 24a16394c..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86953.php +++ /dev/null @@ -1,9 +0,0 @@ - '宁夏吴忠市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86954.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86954.php deleted file mode 100644 index b063d01e5..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86954.php +++ /dev/null @@ -1,9 +0,0 @@ - '宁夏固原市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86955.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86955.php deleted file mode 100644 index ce0d63cf8..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86955.php +++ /dev/null @@ -1,9 +0,0 @@ - '宁夏中卫市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86970.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86970.php deleted file mode 100644 index 04b4d6a6d..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86970.php +++ /dev/null @@ -1,9 +0,0 @@ - '青海省海北藏族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86971.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86971.php deleted file mode 100644 index 963056719..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86971.php +++ /dev/null @@ -1,9 +0,0 @@ - '青海省西宁市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86972.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86972.php deleted file mode 100644 index 6681070c0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86972.php +++ /dev/null @@ -1,9 +0,0 @@ - '青海省海东地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86973.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86973.php deleted file mode 100644 index f5e51b2d3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86973.php +++ /dev/null @@ -1,9 +0,0 @@ - '青海省黄南藏族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86974.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86974.php deleted file mode 100644 index 7a531cda3..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86974.php +++ /dev/null @@ -1,9 +0,0 @@ - '青海省海南藏族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86975.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86975.php deleted file mode 100644 index e08385b13..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86975.php +++ /dev/null @@ -1,9 +0,0 @@ - '青海省果洛藏族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86976.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86976.php deleted file mode 100644 index a0aff7b05..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86976.php +++ /dev/null @@ -1,9 +0,0 @@ - '青海省玉树藏族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86977.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86977.php deleted file mode 100644 index 7072fda16..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86977.php +++ /dev/null @@ -1,9 +0,0 @@ - '青海省海西蒙古族藏族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86979.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86979.php deleted file mode 100644 index 8620bf5ee..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86979.php +++ /dev/null @@ -1,9 +0,0 @@ - '青海省海西蒙古族藏族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86990.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86990.php deleted file mode 100644 index dfd0d249b..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86990.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆克拉玛依市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86991.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86991.php deleted file mode 100644 index 024fec8d6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86991.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆乌鲁木齐市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86992.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86992.php deleted file mode 100644 index 18fcf15fc..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86992.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆伊犁哈萨克自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86993.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86993.php deleted file mode 100644 index ff44fb3f6..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86993.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆石河子市', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86994.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86994.php deleted file mode 100644 index 5618de2e0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86994.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆昌吉回族自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86995.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86995.php deleted file mode 100644 index 50d416778..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86995.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆吐鲁番地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86996.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86996.php deleted file mode 100644 index 4382a0ff7..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86996.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆巴音郭楞蒙古自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86997.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86997.php deleted file mode 100644 index 17fc38ef1..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86997.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆阿克苏地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86998.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86998.php deleted file mode 100644 index 25539b64e..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86998.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆喀什地区', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86999.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86999.php deleted file mode 100644 index 6ad0154b0..000000000 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/geocoding/data/zh/86999.php +++ /dev/null @@ -1,9 +0,0 @@ - '新疆伊犁哈萨克自治州', -); diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/MappingFileProvider.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/MappingFileProvider.php index 04f43fd18..c315afb06 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/MappingFileProvider.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/MappingFileProvider.php @@ -29,10 +29,15 @@ class MappingFileProvider $language = 'zh_Hant'; } - if ($this->inMap($language, $countryCallingCode)) { - return $language . DIRECTORY_SEPARATOR . $countryCallingCode . '.php'; - } + // Loop through the $countryCallingCode and load the prefix + $prefixLength = strlen($countryCallingCode); + for ($i = $prefixLength; $i > 0; $i--) { + $prefix = substr($countryCallingCode, 0, $i); + if ($this->inMap($language, $prefix)) { + return $language . DIRECTORY_SEPARATOR . $prefix . '.php'; + } + } return ""; } diff --git a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/PrefixFileReader.php b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/PrefixFileReader.php index d4a9c126b..a04dd434c 100644 --- a/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/PrefixFileReader.php +++ b/vendor/giggsey/libphonenumber-for-php/src/libphonenumber/prefixmapper/PrefixFileReader.php @@ -3,6 +3,7 @@ namespace libphonenumber\prefixmapper; use libphonenumber\PhoneNumber; +use libphonenumber\PhoneNumberUtil; /** * A helper class doing file handling and lookup of phone number prefix mappings. @@ -100,18 +101,7 @@ class PrefixFileReader */ public function getDescriptionForNumber(PhoneNumber $number, $language, $script, $region) { - $countryCallingCode = $number->getCountryCode(); - // As the NANPA data is split into multiple files covering 3-digit areas, use a phone number - // prefix of 4 digits for NANPA instead, e.g. 1650. - if ($countryCallingCode === 1) { - $phonePrefix = (1000 + intval($number->getNationalNumber() / 10000000)); - } elseif ($countryCallingCode === 86) { - // Split China into multiple files to reduce PHP memory usage - // @see https://github.com/giggsey/libphonenumber-for-php/issues/44 - $phonePrefix = '86' . substr($number->getNationalNumber(), 0, 3); - } else { - $phonePrefix = $countryCallingCode; - } + $phonePrefix = $number->getCountryCode() . PhoneNumberUtil::getInstance()->getNationalSignificantNumber($number); $phonePrefixDescriptions = $this->getPhonePrefixDescriptions($phonePrefix, $language, $script, $region); diff --git a/vendor/giggsey/locale/.gitignore b/vendor/giggsey/locale/.gitignore index 8d1df4a98..b20401984 100644 --- a/vendor/giggsey/locale/.gitignore +++ b/vendor/giggsey/locale/.gitignore @@ -4,3 +4,4 @@ composer.lock build/logs/ cldr-localenames-full/ data-git/ +tests/testOutput/ diff --git a/vendor/giggsey/locale/.travis.yml b/vendor/giggsey/locale/.travis.yml index 55f674285..42ef23cbc 100644 --- a/vendor/giggsey/locale/.travis.yml +++ b/vendor/giggsey/locale/.travis.yml @@ -3,20 +3,28 @@ sudo: false language: php matrix: - allow_failures: - - php: nightly + fast_finish: true + allow_failures: + - php: nightly + include: + - php: 5.3 + env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" + - php: 5.4 + - php: 5.5 + - php: 5.6 + - php: 7.0 + - php: 7.1 + - php: nightly + - php: hhvm + # Use the newer stack for HHVM as HHVM does not support Precise + - php: hhvm + sudo: required + dist: trusty + group: edge -php: - - 5.3 - - 5.4 - - 5.5 - - 5.6 - - 7.0 - - hhvm - - nightly before_script: - - composer install --no-interaction + - travis_retry composer update --no-interaction $COMPOSER_FLAGS - mkdir -p build/logs script: diff --git a/vendor/giggsey/locale/CLDR-VERSION.txt b/vendor/giggsey/locale/CLDR-VERSION.txt index e5798d3c4..afc7224fd 100644 --- a/vendor/giggsey/locale/CLDR-VERSION.txt +++ b/vendor/giggsey/locale/CLDR-VERSION.txt @@ -4,4 +4,4 @@ # It can be a commit, branch or tag of https://github.com/unicode-cldr/cldr-localenames-full # # For more information, look at build.xml -29.0.0 +30.0.2 diff --git a/vendor/giggsey/locale/composer.json b/vendor/giggsey/locale/composer.json index 5fd83a51a..7f88a84c2 100644 --- a/vendor/giggsey/locale/composer.json +++ b/vendor/giggsey/locale/composer.json @@ -10,6 +10,9 @@ "homepage": "http://giggsey.com/" } ], + "require": { + "php": ">=5.3.2" + }, "require-dev": { "phpunit/phpunit": "^4.8|^5.0", "satooshi/php-coveralls": "^1.0", diff --git a/vendor/giggsey/locale/data/_list.php b/vendor/giggsey/locale/data/_list.php index 06f9f186c..b04223485 100644 --- a/vendor/giggsey/locale/data/_list.php +++ b/vendor/giggsey/locale/data/_list.php @@ -1,6 +1,6 @@ '', 'am' => '', 'ar' => '', + 'ar-ly' => '', + 'ar-sa' => '', 'as' => '', 'asa' => '', 'ast' => '', @@ -24,6 +26,7 @@ return array ( 'bg' => '', 'bm' => '', 'bn' => '', + 'bn-in' => '', 'bo' => '', 'br' => '', 'brx' => '', @@ -34,11 +37,13 @@ return array ( 'ce' => '', 'cgg' => '', 'chr' => '', + 'ckb' => '', 'cs' => '', 'cy' => '', 'da' => '', 'dav' => '', 'de' => '', + 'de-at' => '', 'de-ch' => '', 'dje' => '', 'dsb' => '', @@ -51,8 +56,27 @@ return array ( 'en' => '', 'eo' => '', 'es' => '', + 'es-ar' => '', + 'es-bo' => '', + 'es-br' => '', 'es-cl' => '', + 'es-co' => '', + 'es-cr' => '', + 'es-cu' => '', + 'es-do' => '', + 'es-ec' => '', + 'es-gt' => '', + 'es-hn' => '', 'es-mx' => '', + 'es-ni' => '', + 'es-pa' => '', + 'es-pe' => '', + 'es-pr' => '', + 'es-py' => '', + 'es-sv' => '', + 'es-us' => '', + 'es-uy' => '', + 'es-ve' => '', 'et' => '', 'eu' => '', 'ewo' => '', @@ -63,6 +87,7 @@ return array ( 'fil' => '', 'fo' => '', 'fr' => '', + 'fr-be' => '', 'fr-ca' => '', 'fur' => '', 'fy' => '', @@ -103,6 +128,7 @@ return array ( 'km' => '', 'kn' => '', 'ko' => '', + 'ko-kp' => '', 'kok' => '', 'ks' => '', 'ksb' => '', @@ -170,8 +196,10 @@ return array ( 'rm' => '', 'rn' => '', 'ro' => '', + 'ro-md' => '', 'rof' => '', 'ru' => '', + 'ru-ua' => '', 'rw' => '', 'rwk' => '', 'sah' => '', @@ -192,10 +220,17 @@ return array ( 'so' => '', 'sq' => '', 'sr' => '', + 'sr-cyrl-ba' => '', + 'sr-cyrl-me' => '', + 'sr-cyrl-xk' => '', 'sr-latn' => '', + 'sr-latn-ba' => '', + 'sr-latn-me' => '', + 'sr-latn-xk' => '', 'sv' => '', 'sw' => '', 'sw-cd' => '', + 'sw-ke' => '', 'ta' => '', 'te' => '', 'teo' => '', diff --git a/vendor/giggsey/locale/data/_version.php b/vendor/giggsey/locale/data/_version.php index bd75cd999..e09987696 100644 --- a/vendor/giggsey/locale/data/_version.php +++ b/vendor/giggsey/locale/data/_version.php @@ -1,9 +1,9 @@ 'አሴንሽን ደሴት', 'AD' => 'አንዶራ', - 'AE' => 'የተባበሩት አረብ ኤምሬትስ', + 'AE' => 'የተባበሩት ዓረብ ኤምሬትስ', 'AF' => 'አፍጋኒስታን', 'AG' => 'አንቲጓ እና ባሩዳ', 'AI' => 'አንጉኢላ', @@ -103,7 +103,7 @@ return array ( 'GU' => 'ጉዋም', 'GW' => 'ጊኒ ቢሳኦ', 'GY' => 'ጉያና', - 'HK' => 'ሆንግ ኮንግ SAR ቻይና', + 'HK' => 'ሆንግ ኮንግ ልዩ የአስተዳደር ክልል ቻይና', 'HN' => 'ሆንዱራስ', 'HR' => 'ክሮኤሽያ', 'HT' => 'ሀይቲ', diff --git a/vendor/giggsey/locale/data/ar-ly.php b/vendor/giggsey/locale/data/ar-ly.php new file mode 100644 index 000000000..eb51cc96c --- /dev/null +++ b/vendor/giggsey/locale/data/ar-ly.php @@ -0,0 +1,13 @@ + 'سبتة ومليلية', + 'MS' => 'مونتيسيرات', + 'UY' => 'أوروغواي', +); diff --git a/vendor/giggsey/locale/data/ar-sa.php b/vendor/giggsey/locale/data/ar-sa.php new file mode 100644 index 000000000..7af140293 --- /dev/null +++ b/vendor/giggsey/locale/data/ar-sa.php @@ -0,0 +1,15 @@ + 'جزر البهاما', + 'EA' => 'سبتة ومليلية', + 'MS' => 'مونتيسيرات', + 'PM' => 'سان بيير وميكولون', + 'UY' => 'أوروغواي', +); diff --git a/vendor/giggsey/locale/data/ar.php b/vendor/giggsey/locale/data/ar.php index d7feee763..605a7f288 100644 --- a/vendor/giggsey/locale/data/ar.php +++ b/vendor/giggsey/locale/data/ar.php @@ -1,6 +1,6 @@ 'أذربيجان', 'BA' => 'البوسنة والهرسك', 'BB' => 'بربادوس', - 'BD' => 'بنجلاديش', + 'BD' => 'بنغلاديش', 'BE' => 'بلجيكا', 'BF' => 'بوركينا فاسو', 'BG' => 'بلغاريا', @@ -68,7 +68,7 @@ return array ( 'DJ' => 'جيبوتي', 'DK' => 'الدانمرك', 'DM' => 'دومينيكا', - 'DO' => 'جمهورية الدومينيك', + 'DO' => 'جمهورية الدومينيكان', 'DZ' => 'الجزائر', 'EA' => 'سيوتا وميليلا', 'EC' => 'الإكوادور', @@ -84,7 +84,7 @@ return array ( 'FM' => 'ميكرونيزيا', 'FO' => 'جزر فارو', 'FR' => 'فرنسا', - 'GA' => 'الجابون', + 'GA' => 'الغابون', 'GB' => 'المملكة المتحدة', 'GD' => 'غرينادا', 'GE' => 'جورجيا', @@ -96,7 +96,7 @@ return array ( 'GM' => 'غامبيا', 'GN' => 'غينيا', 'GP' => 'غوادلوب', - 'GQ' => 'غينيا الإستوائية', + 'GQ' => 'غينيا الاستوائية', 'GR' => 'اليونان', 'GS' => 'جورجيا الجنوبية وجزر ساندويتش الجنوبية', 'GT' => 'غواتيمالا', @@ -124,7 +124,7 @@ return array ( 'JO' => 'الأردن', 'JP' => 'اليابان', 'KE' => 'كينيا', - 'KG' => 'قرغيزستان', + 'KG' => 'قيرغيزستان', 'KH' => 'كمبوديا', 'KI' => 'كيريباتي', 'KM' => 'جزر القمر', @@ -132,7 +132,7 @@ return array ( 'KP' => 'كوريا الشمالية', 'KR' => 'كوريا الجنوبية', 'KW' => 'الكويت', - 'KY' => 'جزر الكايمن', + 'KY' => 'جزر كايمان', 'KZ' => 'كازاخستان', 'LA' => 'لاوس', 'LB' => 'لبنان', @@ -147,18 +147,18 @@ return array ( 'LY' => 'ليبيا', 'MA' => 'المغرب', 'MC' => 'موناكو', - 'MD' => 'مولدافيا', + 'MD' => 'مولدوفا', 'ME' => 'الجبل الأسود', 'MF' => 'سانت مارتن', 'MG' => 'مدغشقر', - 'MH' => 'جزر المارشال', + 'MH' => 'جزر مارشال', 'MK' => 'مقدونيا', 'ML' => 'مالي', - 'MM' => 'ميانمار -بورما', + 'MM' => 'ميانمار (بورما)', 'MN' => 'منغوليا', 'MO' => 'مكاو الصينية (منطقة إدارية خاصة)', 'MP' => 'جزر ماريانا الشمالية', - 'MQ' => 'مارتينيك', + 'MQ' => 'جزر المارتينيك', 'MR' => 'موريتانيا', 'MS' => 'مونتسرات', 'MT' => 'مالطا', @@ -171,7 +171,7 @@ return array ( 'NA' => 'ناميبيا', 'NC' => 'كاليدونيا الجديدة', 'NE' => 'النيجر', - 'NF' => 'جزيرة نورفوك', + 'NF' => 'جزيرة نورفولك', 'NG' => 'نيجيريا', 'NI' => 'نيكاراغوا', 'NL' => 'هولندا', @@ -207,7 +207,7 @@ return array ( 'SD' => 'السودان', 'SE' => 'السويد', 'SG' => 'سنغافورة', - 'SH' => 'سانت هيلنا', + 'SH' => 'سانت هيلانة', 'SI' => 'سلوفينيا', 'SJ' => 'سفالبارد وجان مايان', 'SK' => 'سلوفاكيا', @@ -230,7 +230,7 @@ return array ( 'TH' => 'تايلاند', 'TJ' => 'طاجيكستان', 'TK' => 'توكيلو', - 'TL' => 'تيمور الشرقية', + 'TL' => 'تيمور- ليشتي', 'TM' => 'تركمانستان', 'TN' => 'تونس', 'TO' => 'تونغا', @@ -246,10 +246,10 @@ return array ( 'UY' => 'أورغواي', 'UZ' => 'أوزبكستان', 'VA' => 'الفاتيكان', - 'VC' => 'سانت فنسنت وغرنادين', + 'VC' => 'سانت فنسنت وجزر غرينادين', 'VE' => 'فنزويلا', - 'VG' => 'جزر فرجين البريطانية', - 'VI' => 'جزر فرجين الأمريكية', + 'VG' => 'جزر فيرجن البريطانية', + 'VI' => 'جزر فيرجن التابعة للولايات المتحدة', 'VN' => 'فيتنام', 'VU' => 'فانواتو', 'WF' => 'جزر والس وفوتونا', diff --git a/vendor/giggsey/locale/data/as.php b/vendor/giggsey/locale/data/as.php index f815114ac..027307b21 100644 --- a/vendor/giggsey/locale/data/as.php +++ b/vendor/giggsey/locale/data/as.php @@ -1,6 +1,6 @@ 'Аскенсон адасы', + 'AD' => 'Андорра', + 'AE' => 'Бирләшмиш Әрәб Әмирликләри', + 'AF' => 'Әфганыстан', + 'AG' => 'Антигуа вә Барбуда', + 'AI' => 'Анҝилја', + 'AL' => 'Албанија', + 'AM' => 'Ермәнистан', + 'AO' => 'Ангола', + 'AQ' => 'Антарктика', + 'AR' => 'Арҝентина', + 'AS' => 'Америка Самоасы', + 'AT' => 'Австрија', + 'AU' => 'Австралија', + 'AW' => 'Аруба', + 'AX' => 'Аланд адалары', 'AZ' => 'Азәрбајҹан', + 'BA' => 'Боснија вә Һерсеговина', + 'BB' => 'Барбадос', + 'BD' => 'Бангладеш', + 'BE' => 'Белчика', + 'BF' => 'Буркина Фасо', + 'BG' => 'Болгарыстан', + 'BH' => 'Бәһрејн', + 'BI' => 'Бурунди', + 'BJ' => 'Бенин', + 'BL' => 'Сент-Бартелеми', + 'BM' => 'Бермуд адалары', + 'BN' => 'Брунеј', + 'BO' => 'Боливија', 'BR' => 'Бразилија', + 'BS' => 'Баһам адалары', + 'BT' => 'Бутан', + 'BW' => 'Ботсвана', + 'BY' => 'Беларус', + 'BZ' => 'Белиз', + 'CA' => 'Канада', + 'CC' => 'Кокос (Килинг) адалары', + 'CD' => 'Конго-Киншаса', + 'CF' => 'Мәркәзи Африка Республикасы', + 'CG' => 'Конго-Браззавил', + 'CH' => 'Исвечрә', + 'CI' => 'Kотд’ивуар', + 'CK' => 'Кук адалары', + 'CL' => 'Чили', + 'CM' => 'Камерун', 'CN' => 'Чин', + 'CO' => 'Колумбија', + 'CR' => 'Коста Рика', + 'CU' => 'Куба', + 'CV' => 'Кабо-Верде', + 'CW' => 'Курасао', + 'CX' => 'Милад адасы', + 'CY' => 'Кипр', + 'CZ' => 'Чех Республикасы', 'DE' => 'Алманија', + 'DG' => 'Диего Гарсија', + 'DJ' => 'Ҹибути', + 'DK' => 'Данимарка', + 'DM' => 'Доминика', + 'DO' => 'Доминикан Республикасы', + 'DZ' => 'Әлҹәзаир', + 'EA' => 'Сеута вә Мелилја', + 'EC' => 'Еквадор', + 'EE' => 'Естонија', + 'EG' => 'Мисир', + 'ER' => 'Еритреја', + 'ES' => 'Испанија', + 'ET' => 'Ефиопија', + 'FI' => 'Финландија', + 'FJ' => 'Фиҹи', + 'FK' => 'Фолкленд адалары', + 'FM' => 'Микронезија', + 'FO' => 'Фарер адалары', 'FR' => 'Франса', + 'GA' => 'Габон', + 'GB' => 'Бирләшмиш Краллыг', + 'GD' => 'Гренада', + 'GE' => 'Ҝүрҹүстан', + 'GF' => 'Франса Гвианасы', + 'GG' => 'Ҝернси', + 'GH' => 'Гана', + 'GI' => 'Ҹәбәллүтариг', + 'GL' => 'Гренландија', + 'GM' => 'Гамбија', + 'GN' => 'Гвинеја', + 'GP' => 'Гваделупа', + 'GQ' => 'Екваториал Гвинеја', + 'GR' => 'Јунаныстан', + 'GS' => 'Ҹәнуби Ҹорҹија вә Ҹәнуби Сендвич адалары', + 'GT' => 'Гватемала', + 'GU' => 'Гуам', + 'GW' => 'Гвинеја-Бисау', + 'GY' => 'Гајана', + 'HK' => 'Һонк Конг Хүсуси Инзибати Әрази Чин', + 'HN' => 'Һондурас', + 'HR' => 'Хорватија', + 'HT' => 'Һаити', + 'HU' => 'Маҹарыстан', + 'IC' => 'Канар адалары', + 'ID' => 'Индонезија', + 'IE' => 'Ирландија', + 'IL' => 'Исраил', + 'IM' => 'Мен адасы', 'IN' => 'Һиндистан', + 'IO' => 'Британтјанын Һинд Океаны Әразиси', + 'IQ' => 'Ираг', + 'IR' => 'Иран', + 'IS' => 'Исландија', 'IT' => 'Италија', + 'JE' => 'Ҹерси', + 'JM' => 'Јамајка', + 'JO' => 'Иорданија', 'JP' => 'Јапонија', + 'KE' => 'Кенија', + 'KG' => 'Гырғызыстан', + 'KH' => 'Камбоҹа', + 'KI' => 'Кирибати', + 'KM' => 'Комор адалары', + 'KN' => 'Сент-Китс вә Невис', + 'KP' => 'Шимали Кореја', + 'KR' => 'Ҹәнуби Кореја', + 'KW' => 'Күвејт', + 'KY' => 'Кајман адалары', + 'KZ' => 'Газахыстан', + 'LA' => 'Лаос', + 'LB' => 'Ливан', + 'LC' => 'Сент-Лусија', + 'LI' => 'Лихтенштејн', + 'LK' => 'Шри-Ланка', + 'LR' => 'Либерија', + 'LS' => 'Лесото', + 'LT' => 'Литва', + 'LU' => 'Лүксембург', + 'LV' => 'Латвија', + 'LY' => 'Ливија', + 'MA' => 'Мәракеш', + 'MC' => 'Монако', + 'MD' => 'Молдова', + 'ME' => 'Монтенегро', + 'MF' => 'Сент Мартин', + 'MG' => 'Мадагаскар', + 'MH' => 'Маршал адалары', + 'ML' => 'Мали', + 'MM' => 'Мјанма', + 'MN' => 'Монголустан', + 'MO' => 'Макао Хүсуси Инзибати Әрази Чин', + 'MP' => 'Шимали Мариан адалары', + 'MQ' => 'Мартиник', + 'MR' => 'Мавританија', + 'MS' => 'Монсерат', + 'MT' => 'Малта', + 'MU' => 'Маврики', + 'MV' => 'Малдив адалары', + 'MW' => 'Малави', + 'MX' => 'Мексика', + 'MY' => 'Малајзија', + 'MZ' => 'Мозамбик', + 'NA' => 'Намибија', + 'NC' => 'Јени Каледонија', + 'NE' => 'Ниҝер', + 'NF' => 'Норфолк адасы', + 'NG' => 'Ниҝерија', + 'NI' => 'Никарагуа', + 'NL' => 'Нидерланд', + 'NO' => 'Норвеч', + 'NP' => 'Непал', + 'NR' => 'Науру', + 'NU' => 'Ниуе', + 'NZ' => 'Јени Зеландија', + 'OM' => 'Оман', + 'PA' => 'Панама', + 'PE' => 'Перу', + 'PF' => 'Франса Полинезијасы', + 'PG' => 'Папуа-Јени Гвинеја', + 'PH' => 'Филиппин', + 'PK' => 'Пакистан', + 'PL' => 'Полша', + 'PM' => 'Мүгәддәс Пјер вә Микелон', + 'PN' => 'Питкерн адалары', + 'PR' => 'Пуерто Рико', + 'PT' => 'Португалија', + 'PW' => 'Палау', + 'PY' => 'Парагвај', + 'QA' => 'Гәтәр', + 'RE' => 'Рејунјон', + 'RO' => 'Румынија', + 'RS' => 'Сербија', 'RU' => 'Русија', + 'RW' => 'Руанда', + 'SA' => 'Сәудијјә Әрәбистаны', + 'SB' => 'Соломон адалары', + 'SC' => 'Сејшел адалары', + 'SD' => 'Судан', + 'SE' => 'Исвеч', + 'SG' => 'Сингапур', + 'SH' => 'Мүгәддәс Јелена', + 'SI' => 'Словенија', + 'SJ' => 'Свалбард вә Јан-Мајен', + 'SK' => 'Словакија', + 'SL' => 'Сјерра-Леоне', + 'SM' => 'Сан-Марино', + 'SN' => 'Сенегал', + 'SO' => 'Сомали', + 'SR' => 'Суринам', + 'SS' => 'Ҹәнуби Судан', + 'ST' => 'Сан-Томе вә Принсипи', + 'SV' => 'Салвадор', + 'SX' => 'Синт-Мартен', + 'SY' => 'Сурија', + 'SZ' => 'Свазиленд', + 'TA' => 'Тристан да Кунја', + 'TC' => 'Төркс вә Кајкос адалары', + 'TD' => 'Чад', + 'TF' => 'Франсанын Ҹәнуб Әразиләри', + 'TG' => 'Того', + 'TH' => 'Таиланд', + 'TJ' => 'Таҹикистан', + 'TK' => 'Токелау', + 'TL' => 'Шәрги Тимор', + 'TM' => 'Түркмәнистан', + 'TN' => 'Тунис', + 'TO' => 'Тонга', + 'TR' => 'Түркијә', + 'TT' => 'Тринидад вә Тобаго', + 'TV' => 'Тувалу', + 'TW' => 'Тајван', + 'TZ' => 'Танзанија', + 'UA' => 'Украјна', + 'UG' => 'Уганда', + 'UM' => 'АБШ-а бағлы кичик адаҹыглар', 'US' => 'Америка Бирләшмиш Штатлары', + 'UY' => 'Уругвај', + 'UZ' => 'Өзбәкистан', + 'VA' => 'Ватикан', + 'VC' => 'Сент-Винсент вә Гренадинләр', + 'VE' => 'Венесуела', + 'VG' => 'Британијанын Вирҝин адалары', + 'VI' => 'АБШ Вирҝин адалары', + 'VN' => 'Вјетнам', + 'VU' => 'Вануату', + 'WF' => 'Уоллис вә Футуна', + 'WS' => 'Самоа', + 'XK' => 'Косово', + 'YE' => 'Јәмән', + 'YT' => 'Мајот', + 'ZA' => 'Ҹәнуб Африка', + 'ZM' => 'Замбија', + 'ZW' => 'Зимбабве', ); diff --git a/vendor/giggsey/locale/data/az.php b/vendor/giggsey/locale/data/az.php index 0c3a4162a..409a99ba0 100644 --- a/vendor/giggsey/locale/data/az.php +++ b/vendor/giggsey/locale/data/az.php @@ -1,18 +1,18 @@ 'Yüksəliş Adası', + 'AC' => 'Askenson adası', 'AD' => 'Andorra', 'AE' => 'Birləşmiş Ərəb Əmirlikləri', 'AF' => 'Əfqanıstan', 'AG' => 'Antiqua və Barbuda', - 'AI' => 'Angila', + 'AI' => 'Angilya', 'AL' => 'Albaniya', 'AM' => 'Ermənistan', 'AO' => 'Anqola', @@ -22,47 +22,47 @@ return array ( 'AT' => 'Avstriya', 'AU' => 'Avstraliya', 'AW' => 'Aruba', - 'AX' => 'Aland Adaları', + 'AX' => 'Aland adaları', 'AZ' => 'Azərbaycan', - 'BA' => 'Bosniya və Hersoqovina', + 'BA' => 'Bosniya və Herseqovina', 'BB' => 'Barbados', 'BD' => 'Banqladeş', 'BE' => 'Belçika', 'BF' => 'Burkina Faso', - 'BG' => 'Bolqariya', + 'BG' => 'Bolqarıstan', 'BH' => 'Bəhreyn', 'BI' => 'Burundi', 'BJ' => 'Benin', - 'BL' => 'San Bartolomey', - 'BM' => 'Bermuda', + 'BL' => 'Sent-Bartelemi', + 'BM' => 'Bermud adaları', 'BN' => 'Bruney', 'BO' => 'Boliviya', 'BQ' => 'Karib Niderlandı', 'BR' => 'Braziliya', - 'BS' => 'Baham Adaları', + 'BS' => 'Baham adaları', 'BT' => 'Butan', 'BW' => 'Botsvana', 'BY' => 'Belarus', 'BZ' => 'Beliz', 'CA' => 'Kanada', - 'CC' => 'Kokos Adaları', + 'CC' => 'Kokos (Kilinq) adaları', 'CD' => 'Konqo - Kinşasa', 'CF' => 'Mərkəzi Afrika Respublikası', 'CG' => 'Konqo - Brazzavil', 'CH' => 'İsveçrə', - 'CI' => 'Fil Dişi Sahili', - 'CK' => 'Kuk Adaları', + 'CI' => 'Kotd’ivuar', + 'CK' => 'Kuk adaları', 'CL' => 'Çili', 'CM' => 'Kamerun', 'CN' => 'Çin', 'CO' => 'Kolumbiya', 'CR' => 'Kosta Rika', 'CU' => 'Kuba', - 'CV' => 'Kape Verde', + 'CV' => 'Kabo-Verde', 'CW' => 'Kurasao', - 'CX' => 'Milad Adası', + 'CX' => 'Milad adası', 'CY' => 'Kipr', - 'CZ' => 'Çexiya', + 'CZ' => 'Çex Respublikası', 'DE' => 'Almaniya', 'DG' => 'Dieqo Qarsiya', 'DJ' => 'Cibuti', @@ -74,47 +74,47 @@ return array ( 'EC' => 'Ekvador', 'EE' => 'Estoniya', 'EG' => 'Misir', - 'EH' => 'Qərbi Sahara', + 'EH' => 'Qərbi Saxara', 'ER' => 'Eritreya', 'ES' => 'İspaniya', 'ET' => 'Efiopiya', 'FI' => 'Finlandiya', 'FJ' => 'Fici', - 'FK' => 'Folklend Adaları', + 'FK' => 'Folklend adaları', 'FM' => 'Mikroneziya', - 'FO' => 'Farer Adaları', + 'FO' => 'Farer adaları', 'FR' => 'Fransa', 'GA' => 'Qabon', 'GB' => 'Birləşmiş Krallıq', 'GD' => 'Qrenada', 'GE' => 'Gürcüstan', - 'GF' => 'Fransız Qviyanası', - 'GG' => 'Gernsey', + 'GF' => 'Fransa Qvianası', + 'GG' => 'Gernsi', 'GH' => 'Qana', - 'GI' => 'Gibraltar', + 'GI' => 'Cəbəllütariq', 'GL' => 'Qrenlandiya', 'GM' => 'Qambiya', 'GN' => 'Qvineya', 'GP' => 'Qvadelupa', 'GQ' => 'Ekvatorial Qvineya', 'GR' => 'Yunanıstan', - 'GS' => 'Cənubi Corciya və Cənubi Sendviç Adaları', + 'GS' => 'Cənubi Corciya və Cənubi Sendviç adaları', 'GT' => 'Qvatemala', 'GU' => 'Quam', 'GW' => 'Qvineya-Bisau', - 'GY' => 'Qviyana', + 'GY' => 'Qayana', 'HK' => 'Honq Konq Xüsusi İnzibati Ərazi Çin', 'HN' => 'Honduras', 'HR' => 'Xorvatiya', 'HT' => 'Haiti', 'HU' => 'Macarıstan', - 'IC' => 'Kanar Adaları', + 'IC' => 'Kanar adaları', 'ID' => 'İndoneziya', 'IE' => 'İrlandiya', 'IL' => 'İsrail', - 'IM' => 'Men Adası', + 'IM' => 'Men adası', 'IN' => 'Hindistan', - 'IO' => 'Britaniya Hind Okeanı Ərazisi', + 'IO' => 'Britaniyanın Hind Okeanı Ərazisi', 'IQ' => 'İraq', 'IR' => 'İran', 'IS' => 'İslandiya', @@ -127,18 +127,18 @@ return array ( 'KG' => 'Qırğızıstan', 'KH' => 'Kamboca', 'KI' => 'Kiribati', - 'KM' => 'Komor Adaları', - 'KN' => 'San Kits və Nevis', + 'KM' => 'Komor adaları', + 'KN' => 'Sent-Kits və Nevis', 'KP' => 'Şimali Koreya', 'KR' => 'Cənubi Koreya', 'KW' => 'Küveyt', - 'KY' => 'Kayman Adaları', + 'KY' => 'Kayman adaları', 'KZ' => 'Qazaxıstan', 'LA' => 'Laos', 'LB' => 'Livan', - 'LC' => 'San Lüsiya', + 'LC' => 'Sent-Lusiya', 'LI' => 'Lixtenşteyn', - 'LK' => 'Şri Lanka', + 'LK' => 'Şri-Lanka', 'LR' => 'Liberiya', 'LS' => 'Lesoto', 'LT' => 'Litva', @@ -149,21 +149,21 @@ return array ( 'MC' => 'Monako', 'MD' => 'Moldova', 'ME' => 'Monteneqro', - 'MF' => 'San Martin', + 'MF' => 'Sent Martin', 'MG' => 'Madaqaskar', - 'MH' => 'Marşal Adaları', + 'MH' => 'Marşal adaları', 'MK' => 'Makedoniya', 'ML' => 'Mali', 'MM' => 'Myanma', - 'MN' => 'Monqoliya', + 'MN' => 'Monqolustan', 'MO' => 'Makao Xüsusi İnzibati Ərazi Çin', - 'MP' => 'Şimali Mariana Adaları', + 'MP' => 'Şimali Marian adaları', 'MQ' => 'Martinik', 'MR' => 'Mavritaniya', 'MS' => 'Monserat', 'MT' => 'Malta', 'MU' => 'Mavriki', - 'MV' => 'Maldiv Adaları', + 'MV' => 'Maldiv adaları', 'MW' => 'Malavi', 'MX' => 'Meksika', 'MY' => 'Malayziya', @@ -171,7 +171,7 @@ return array ( 'NA' => 'Namibiya', 'NC' => 'Yeni Kaledoniya', 'NE' => 'Niger', - 'NF' => 'Norfolk Adası', + 'NF' => 'Norfolk adası', 'NG' => 'Nigeriya', 'NI' => 'Nikaraqua', 'NL' => 'Niderland', @@ -183,76 +183,76 @@ return array ( 'OM' => 'Oman', 'PA' => 'Panama', 'PE' => 'Peru', - 'PF' => 'Fransız Polineziyası', - 'PG' => 'Papua Yeni Qvineya', + 'PF' => 'Fransa Polineziyası', + 'PG' => 'Papua-Yeni Qvineya', 'PH' => 'Filippin', 'PK' => 'Pakistan', 'PL' => 'Polşa', - 'PM' => 'San Pier və Mikelon', - 'PN' => 'Pitkern Adaları', + 'PM' => 'Müqəddəs Pyer və Mikelon', + 'PN' => 'Pitkern adaları', 'PR' => 'Puerto Riko', 'PS' => 'Fələstin Əraziləri', - 'PT' => 'Portuqal', + 'PT' => 'Portuqaliya', 'PW' => 'Palau', 'PY' => 'Paraqvay', - 'QA' => 'Qatar', - 'RE' => 'Reunion', + 'QA' => 'Qətər', + 'RE' => 'Reyunyon', 'RO' => 'Rumıniya', 'RS' => 'Serbiya', 'RU' => 'Rusiya', 'RW' => 'Ruanda', 'SA' => 'Səudiyyə Ərəbistanı', - 'SB' => 'Solomon Adaları', - 'SC' => 'Seyşel Adaları', + 'SB' => 'Solomon adaları', + 'SC' => 'Seyşel adaları', 'SD' => 'Sudan', 'SE' => 'İsveç', 'SG' => 'Sinqapur', 'SH' => 'Müqəddəs Yelena', 'SI' => 'Sloveniya', - 'SJ' => 'Svalbard və Yan Mayen', + 'SJ' => 'Svalbard və Yan-Mayen', 'SK' => 'Slovakiya', - 'SL' => 'Siera Leon', - 'SM' => 'San Marino', + 'SL' => 'Syerra-Leone', + 'SM' => 'San-Marino', 'SN' => 'Seneqal', 'SO' => 'Somali', 'SR' => 'Surinam', 'SS' => 'Cənubi Sudan', - 'ST' => 'Sao Tome və Prinsip', + 'ST' => 'San-Tome və Prinsipi', 'SV' => 'Salvador', - 'SX' => 'Sint Maarten', + 'SX' => 'Sint-Marten', 'SY' => 'Suriya', 'SZ' => 'Svazilend', 'TA' => 'Tristan da Kunya', - 'TC' => 'Turks və Kaikos Adaları', + 'TC' => 'Törks və Kaykos adaları', 'TD' => 'Çad', - 'TF' => 'Fransa Cənub Əraziləri', + 'TF' => 'Fransanın Cənub Əraziləri', 'TG' => 'Toqo', - 'TH' => 'Tayland', + 'TH' => 'Tailand', 'TJ' => 'Tacikistan', 'TK' => 'Tokelau', 'TL' => 'Şərqi Timor', 'TM' => 'Türkmənistan', 'TN' => 'Tunis', 'TO' => 'Tonqa', - 'TR' => 'Türkiya', + 'TR' => 'Türkiyə', 'TT' => 'Trinidad və Tobaqo', 'TV' => 'Tuvalu', 'TW' => 'Tayvan', 'TZ' => 'Tanzaniya', 'UA' => 'Ukrayna', 'UG' => 'Uqanda', - 'UM' => 'Birləşmiş Ştatlar Uzaq Adalar', + 'UM' => 'ABŞ-a bağlı kiçik adacıqlar', 'US' => 'Amerika Birləşmiş Ştatları', 'UY' => 'Uruqvay', 'UZ' => 'Özbəkistan', 'VA' => 'Vatikan', - 'VC' => 'San Vinsent və Qrenada', + 'VC' => 'Sent-Vinsent və Qrenadinlər', 'VE' => 'Venesuela', - 'VG' => 'Britaniya Vircin Adaları', - 'VI' => 'ABŞ Vircin Adaları', + 'VG' => 'Britaniyanın Virgin adaları', + 'VI' => 'ABŞ Virgin adaları', 'VN' => 'Vyetnam', 'VU' => 'Vanuatu', - 'WF' => 'Uolis və Futuna', + 'WF' => 'Uollis və Futuna', 'WS' => 'Samoa', 'XK' => 'Kosovo', 'YE' => 'Yəmən', diff --git a/vendor/giggsey/locale/data/bas.php b/vendor/giggsey/locale/data/bas.php index ba4bdd0a9..a80254db5 100644 --- a/vendor/giggsey/locale/data/bas.php +++ b/vendor/giggsey/locale/data/bas.php @@ -1,6 +1,6 @@ 'Востраў Ушэсця', + 'AC' => 'Востраў Узнясення', 'AD' => 'Андора', 'AE' => 'Аб’яднаныя Арабскія Эміраты', 'AF' => 'Афганістан', @@ -45,10 +45,10 @@ return array ( 'BY' => 'Беларусь', 'BZ' => 'Беліз', 'CA' => 'Канада', - 'CC' => 'Какосавыя астравы', + 'CC' => 'Какосавыя (Кілінг) астравы', 'CD' => 'Конга (Кіншаса)', - 'CF' => 'Цэнтральна-Афрыканская Рэспубліка', - 'CG' => 'Конга (Бразавіль)', + 'CF' => 'Цэнтральнаафрыканская Рэспубліка', + 'CG' => 'Конга - Бразавіль', 'CH' => 'Швейцарыя', 'CI' => 'Кот-д’Івуар', 'CK' => 'Астравы Кука', @@ -59,8 +59,8 @@ return array ( 'CR' => 'Коста-Рыка', 'CU' => 'Куба', 'CV' => 'Каба-Вердэ', - 'CW' => 'Востраў Кюрасаа', - 'CX' => 'Востраў Раства', + 'CW' => 'Кюрасаа', + 'CX' => 'Востраў Каляд', 'CY' => 'Кіпр', 'CZ' => 'Чэхія', 'DE' => 'Германія', @@ -89,7 +89,7 @@ return array ( 'GD' => 'Грэнада', 'GE' => 'Грузія', 'GF' => 'Французская Гвіяна', - 'GG' => 'Востраў Гернсі', + 'GG' => 'Гернсі', 'GH' => 'Гана', 'GI' => 'Гібралтар', 'GL' => 'Грэнландыя', @@ -119,7 +119,7 @@ return array ( 'IR' => 'Іран', 'IS' => 'Ісландыя', 'IT' => 'Італія', - 'JE' => 'Востраў Джэрсі', + 'JE' => 'Джэрсі', 'JM' => 'Ямайка', 'JO' => 'Іарданія', 'JP' => 'Японія', @@ -184,14 +184,14 @@ return array ( 'PA' => 'Панама', 'PE' => 'Перу', 'PF' => 'Французская Палінезія', - 'PG' => 'Папуа — Новая Гвінея', + 'PG' => 'Папуа-Новая Гвінея', 'PH' => 'Філіпіны', 'PK' => 'Пакістан', 'PL' => 'Польшча', 'PM' => 'Сен-П’ер і Мікелон', 'PN' => 'Астравы Піткэрн', 'PR' => 'Пуэрта-Рыка', - 'PS' => 'Палестынскія тэрыторыі', + 'PS' => 'Палесцінскія Тэрыторыі', 'PT' => 'Партугалія', 'PW' => 'Палау', 'PY' => 'Парагвай', @@ -209,7 +209,7 @@ return array ( 'SG' => 'Сінгапур', 'SH' => 'Востраў Святой Алены', 'SI' => 'Славенія', - 'SJ' => 'Свальбард (Паўночна-Усходняя Зямля) і Ян-Маен', + 'SJ' => 'Шпіцберген і Ян-Маен', 'SK' => 'Славакія', 'SL' => 'Сьера-Леонэ', 'SM' => 'Сан-Марына', @@ -230,7 +230,7 @@ return array ( 'TH' => 'Тайланд', 'TJ' => 'Таджыкістан', 'TK' => 'Такелау', - 'TL' => 'Усходні Тымор', + 'TL' => 'Тымор-Лешці', 'TM' => 'Туркменістан', 'TN' => 'Туніс', 'TO' => 'Тонга', @@ -241,7 +241,7 @@ return array ( 'TZ' => 'Танзанія', 'UA' => 'Украіна', 'UG' => 'Уганда', - 'UM' => 'Знешнія малыя астравы ЗША', + 'UM' => 'Малыя Аддаленыя астравы ЗША', 'US' => 'Злучаныя Штаты Амерыкі', 'UY' => 'Уругвай', 'UZ' => 'Узбекістан', @@ -256,8 +256,8 @@ return array ( 'WS' => 'Самоа', 'XK' => 'Косава', 'YE' => 'Емен', - 'YT' => 'Востраў Маёта', - 'ZA' => 'Паўднёва-Афрыканская Рэспубліка', + 'YT' => 'Маёта', + 'ZA' => 'Паўднёваафрыканская Рэспубліка', 'ZM' => 'Замбія', 'ZW' => 'Зімбабвэ', ); diff --git a/vendor/giggsey/locale/data/bem.php b/vendor/giggsey/locale/data/bem.php index aafaa2f65..5d74a7a57 100644 --- a/vendor/giggsey/locale/data/bem.php +++ b/vendor/giggsey/locale/data/bem.php @@ -1,6 +1,6 @@ 'হন্ডুরাস', + 'MD' => 'মলডোভা', + 'UM' => 'মার্কিন যুক্তরাষ্ট্রের পার্শ্ববর্তী দ্বীপপুঞ্জ', +); diff --git a/vendor/giggsey/locale/data/bn.php b/vendor/giggsey/locale/data/bn.php index f9812c758..05b5f258a 100644 --- a/vendor/giggsey/locale/data/bn.php +++ b/vendor/giggsey/locale/data/bn.php @@ -1,6 +1,6 @@ 'অ্যাসসেনশন আইল্যান্ড', - 'AD' => 'এ্যান্ডোরা', + 'AD' => 'আন্ডোরা', 'AE' => 'সংযুক্ত আরব আমিরাত', 'AF' => 'আফগানিস্তান', 'AG' => 'এন্টিগুয়া ও বারবুডা', 'AI' => 'এ্যাঙ্গুইলা', - 'AL' => 'আলব্যানিয়া', + 'AL' => 'আলবেনিয়া', 'AM' => 'আর্মেনিয়া', 'AO' => 'অ্যাঙ্গোলা', 'AQ' => 'অ্যান্টার্কটিকা', @@ -36,16 +36,16 @@ return array ( 'BL' => 'সেন্ট বারথেলিমি', 'BM' => 'বারমুডা', 'BN' => 'ব্রুনেই', - 'BO' => 'বোলিভিয়া', + 'BO' => 'বলিভিয়া', 'BQ' => 'ক্যারিবিয়ান নেদারল্যান্ডস', 'BR' => 'ব্রাজিল', 'BS' => 'বাহামা দ্বীপপুঞ্জ', 'BT' => 'ভুটান', 'BW' => 'বতসোয়ানা', - 'BY' => 'বেলোরুশিয়া', + 'BY' => 'বেলারুশ', 'BZ' => 'বেলিজ', 'CA' => 'কানাডা', - 'CC' => 'কোকোস (কিলিং)দ্বীপপুঞ্জ', + 'CC' => 'কোকোস (কিলিং) দ্বীপপুঞ্জ', 'CD' => 'কঙ্গো-কিনশাসা', 'CF' => 'মধ্য আফ্রিকার প্রজাতন্ত্র', 'CG' => 'কঙ্গো - ব্রাজাভিল', @@ -55,7 +55,7 @@ return array ( 'CL' => 'চিলি', 'CM' => 'ক্যামেরুন', 'CN' => 'চীন', - 'CO' => 'কোলোম্বিয়া', + 'CO' => 'কলম্বিয়া', 'CR' => 'কোস্টারিকা', 'CU' => 'কিউবা', 'CV' => 'কেপভার্দে', @@ -86,7 +86,7 @@ return array ( 'FR' => 'ফ্রান্স', 'GA' => 'গ্যাবন', 'GB' => 'যুক্তরাজ্য', - 'GD' => 'গ্রেনেডা', + 'GD' => 'গ্রেনাডা', 'GE' => 'জর্জিয়া', 'GF' => 'ফরাসী গায়ানা', 'GG' => 'গ্রাঞ্জি', @@ -99,7 +99,7 @@ return array ( 'GQ' => 'নিরক্ষীয় গিনি', 'GR' => 'গ্রীস', 'GS' => 'দক্ষিণ জর্জিয়া ও দক্ষিণ স্যান্ডউইচ দ্বীপপুঞ্জ', - 'GT' => 'গোয়াতেমালা', + 'GT' => 'গুয়াতেমালা', 'GU' => 'গুয়াম', 'GW' => 'গিনি-বিসাউ', 'GY' => 'গিয়ানা', @@ -118,13 +118,13 @@ return array ( 'IQ' => 'ইরাক', 'IR' => 'ইরান', 'IS' => 'আইসল্যান্ড', - 'IT' => 'ইতালী', + 'IT' => 'ইতালি', 'JE' => 'জার্সি', 'JM' => 'জামাইকা', 'JO' => 'জর্ডন', 'JP' => 'জাপান', 'KE' => 'কেনিয়া', - 'KG' => 'কির্গিজিয়া', + 'KG' => 'কিরগিজিস্তান', 'KH' => 'কম্বোডিয়া', 'KI' => 'কিরিবাতি', 'KM' => 'কমোরোস', @@ -156,7 +156,7 @@ return array ( 'ML' => 'মালি', 'MM' => 'মায়ানমার (বার্মা)', 'MN' => 'মঙ্গোলিয়া', - 'MO' => 'ম্যাকাও এস এ আর চায়না', + 'MO' => 'ম্যাকাও এসএআর চীনা', 'MP' => 'উত্তরাঞ্চলীয় মারিয়ানা দ্বীপপুঞ্জ', 'MQ' => 'মার্টিনিক', 'MR' => 'মরিতানিয়া', @@ -182,7 +182,7 @@ return array ( 'NZ' => 'নিউজিল্যান্ড', 'OM' => 'ওমান', 'PA' => 'পানামা', - 'PE' => 'পিরু', + 'PE' => 'পেরু', 'PF' => 'ফরাসী পলিনেশিয়া', 'PG' => 'পাপুয়া নিউ গিনি', 'PH' => 'ফিলিপাইন', @@ -197,7 +197,7 @@ return array ( 'PY' => 'প্যারাগুয়ে', 'QA' => 'কাতার', 'RE' => 'রিইউনিয়ন', - 'RO' => 'রুমানিয়া', + 'RO' => 'রোমানিয়া', 'RS' => 'সার্বিয়া', 'RU' => 'রাশিয়া', 'RW' => 'রুয়ান্ডা', @@ -210,13 +210,13 @@ return array ( 'SH' => 'সেন্ট হেলেনা', 'SI' => 'স্লোভানিয়া', 'SJ' => 'স্বালবার্ড ও জান মেয়েন', - 'SK' => 'শ্লোভাকিয়া', + 'SK' => 'স্লোভাকিয়া', 'SL' => 'সিয়েরালিওন', 'SM' => 'সান মারিনো', 'SN' => 'সেনেগাল', 'SO' => 'সোমালিয়া', 'SR' => 'সুরিনাম', - 'SS' => 'দক্ষিন সুদান', + 'SS' => 'দক্ষিণ সুদান', 'ST' => 'সাওটোমা ও প্রিন্সিপি', 'SV' => 'এল সালভেদর', 'SX' => 'সিন্ট মার্টেন', @@ -232,14 +232,14 @@ return array ( 'TK' => 'টোকেলাউ', 'TL' => 'তিমুর-লেস্তে', 'TM' => 'তুর্কমেনিস্তান', - 'TN' => 'তিউনিশিয়া', + 'TN' => 'তিউনিসিয়া', 'TO' => 'টোঙ্গা', 'TR' => 'তুরস্ক', 'TT' => 'ত্রিনিনাদ ও টোব্যাগো', 'TV' => 'টুভালু', 'TW' => 'তাইওয়ান', 'TZ' => 'তাঞ্জানিয়া', - 'UA' => 'ইউক্রেইন', + 'UA' => 'ইউক্রেন', 'UG' => 'উগান্ডা', 'UM' => 'যুক্তরাষ্ট্রের পার্শ্ববর্তী দ্বীপপুঞ্জ', 'US' => 'মার্কিন যুক্তরাষ্ট্র', @@ -249,7 +249,7 @@ return array ( 'VC' => 'সেন্ট ভিনসেন্ট ও দ্যা গ্রেনাডিনস', 'VE' => 'ভেনেজুয়েলা', 'VG' => 'ব্রিটিশ ভার্জিন দ্বীপপুঞ্জ', - 'VI' => 'মার্কিন ভার্জিন দ্বীপপুঞ্জ', + 'VI' => 'মার্কিন যুক্তরাষ্ট্রের ভার্জিন দ্বীপপুঞ্জ', 'VN' => 'ভিয়েতনাম', 'VU' => 'ভানুয়াটু', 'WF' => 'ওয়ালিস ও ফুটুনা', diff --git a/vendor/giggsey/locale/data/bo.php b/vendor/giggsey/locale/data/bo.php index 8fd06bdb0..d2f8d3155 100644 --- a/vendor/giggsey/locale/data/bo.php +++ b/vendor/giggsey/locale/data/bo.php @@ -1,6 +1,6 @@ 'Antigva i Barbuda', 'AI' => 'Angvila', 'AL' => 'Albanija', - 'AM' => 'Jermenija', + 'AM' => 'Armenija', 'AO' => 'Angola', 'AQ' => 'Antarktika', 'AR' => 'Argentina', @@ -22,7 +22,7 @@ return array ( 'AT' => 'Austrija', 'AU' => 'Australija', 'AW' => 'Aruba', - 'AX' => 'Alandska Ostrva', + 'AX' => 'Olandska Ostrva', 'AZ' => 'Azerbejdžan', 'BA' => 'Bosna i Hercegovina', 'BB' => 'Barbados', @@ -45,7 +45,7 @@ return array ( 'BY' => 'Bjelorusija', 'BZ' => 'Belize', 'CA' => 'Kanada', - 'CC' => 'Kokosova (Kilingova) ostrva', + 'CC' => 'Kokosova (Kilingova) Ostrva', 'CD' => 'Demokratska Republika Kongo', 'CF' => 'Centralnoafrička Republika', 'CG' => 'Kongo', @@ -62,7 +62,7 @@ return array ( 'CW' => 'Kurasao', 'CX' => 'Božićna Ostrva', 'CY' => 'Kipar', - 'CZ' => 'Češka', + 'CZ' => 'Češka Republika', 'DE' => 'Njemačka', 'DG' => 'Dijego Garsija', 'DJ' => 'Džibuti', @@ -95,40 +95,40 @@ return array ( 'GL' => 'Grenland', 'GM' => 'Gambija', 'GN' => 'Gvineja', - 'GP' => 'Gvadelupe', + 'GP' => 'Gvadalupe', 'GQ' => 'Ekvatorijalna Gvineja', 'GR' => 'Grčka', - 'GS' => 'Južna Džordžija i Južna Sendvič Ostrva', + 'GS' => 'Južna Džordžija i Južna Sendvička Ostrva', 'GT' => 'Gvatemala', 'GU' => 'Guam', 'GW' => 'Gvineja-Bisao', 'GY' => 'Gvajana', - 'HK' => 'Hong Kong (S. A. R. Kina)', + 'HK' => 'Hong Kong (SAR Kina)', 'HN' => 'Honduras', 'HR' => 'Hrvatska', 'HT' => 'Haiti', 'HU' => 'Mađarska', - 'IC' => 'Kanarska ostrva', + 'IC' => 'Kanarska Ostrva', 'ID' => 'Indonezija', 'IE' => 'Irska', 'IL' => 'Izrael', 'IM' => 'Ostrvo Man', 'IN' => 'Indija', - 'IO' => 'Britanska Territorija u Indijskom Okeanu', + 'IO' => 'Britanska Teritorija u Indijskom Okeanu', 'IQ' => 'Irak', 'IR' => 'Iran', 'IS' => 'Island', 'IT' => 'Italija', - 'JE' => 'Džersi', + 'JE' => 'Džerzi', 'JM' => 'Jamajka', 'JO' => 'Jordan', 'JP' => 'Japan', 'KE' => 'Kenija', - 'KG' => 'Kirgizstan', + 'KG' => 'Kirgistan', 'KH' => 'Kambodža', 'KI' => 'Kiribati', 'KM' => 'Komorska Ostrva', - 'KN' => 'Sent Kits i Nevis', + 'KN' => 'Sveti Kits i Nevis', 'KP' => 'Sjeverna Koreja', 'KR' => 'Južna Koreja', 'KW' => 'Kuvajt', @@ -143,7 +143,7 @@ return array ( 'LS' => 'Lesoto', 'LT' => 'Litvanija', 'LU' => 'Luksemburg', - 'LV' => 'Letonija', + 'LV' => 'Latvija', 'LY' => 'Libija', 'MA' => 'Maroko', 'MC' => 'Monako', @@ -151,18 +151,18 @@ return array ( 'ME' => 'Crna Gora', 'MF' => 'Sv. Martin', 'MG' => 'Madagaskar', - 'MH' => 'Maršalska Ostrva', + 'MH' => 'Maršalova Ostrva', 'MK' => 'Makedonija', 'ML' => 'Mali', 'MM' => 'Mijanmar', 'MN' => 'Mongolija', - 'MO' => 'Makao (S. A. R. Kina)', + 'MO' => 'Makao (SAR Kina)', 'MP' => 'Sjeverna Marijanska Ostrva', 'MQ' => 'Martinik', 'MR' => 'Mauritanija', 'MS' => 'Monserat', 'MT' => 'Malta', - 'MU' => 'Mauricius', + 'MU' => 'Mauricijus', 'MV' => 'Maldivi', 'MW' => 'Malavi', 'MX' => 'Meksiko', @@ -171,7 +171,7 @@ return array ( 'NA' => 'Namibija', 'NC' => 'Nova Kaledonija', 'NE' => 'Niger', - 'NF' => 'Norfolk Ostrvo', + 'NF' => 'Ostrvo Norfolk', 'NG' => 'Nigerija', 'NI' => 'Nikaragva', 'NL' => 'Holandija', @@ -189,14 +189,14 @@ return array ( 'PK' => 'Pakistan', 'PL' => 'Poljska', 'PM' => 'Sveti Petar i Mikelon', - 'PN' => 'Pitkern', + 'PN' => 'Pitkernska Ostrva', 'PR' => 'Porto Riko', 'PS' => 'Palestinska Teritorija', 'PT' => 'Portugal', 'PW' => 'Palau', 'PY' => 'Paragvaj', 'QA' => 'Katar', - 'RE' => 'Rejunion', + 'RE' => 'Reunion', 'RO' => 'Rumunija', 'RS' => 'Srbija', 'RU' => 'Rusija', @@ -223,14 +223,14 @@ return array ( 'SY' => 'Sirija', 'SZ' => 'Svazilend', 'TA' => 'Tristan da Kunja', - 'TC' => 'Ostrva Turks i Caicos', + 'TC' => 'Ostrva Turks i Kaikos', 'TD' => 'Čad', 'TF' => 'Francuske Južne Teritorije', 'TG' => 'Togo', 'TH' => 'Tajland', 'TJ' => 'Tadžikistan', 'TK' => 'Tokelau', - 'TL' => 'Timor Leste', + 'TL' => 'Istočni Timor', 'TM' => 'Turkmenistan', 'TN' => 'Tunis', 'TO' => 'Tonga', @@ -241,18 +241,18 @@ return array ( 'TZ' => 'Tanzanija', 'UA' => 'Ukrajina', 'UG' => 'Uganda', - 'UM' => 'Udaljena ostrva SAD', + 'UM' => 'Američka Vanjska Ostrva', 'US' => 'Sjedinjene Američke Države', 'UY' => 'Urugvaj', 'UZ' => 'Uzbekistan', 'VA' => 'Vatikan', - 'VC' => 'Sveti Vincent i Grenadini', + 'VC' => 'Sveti Vinsent i Grenadin', 'VE' => 'Venecuela', 'VG' => 'Britanska Djevičanska Ostrva', - 'VI' => 'Djevičanska Ostrva SAD', + 'VI' => 'Američka Djevičanska Ostrva', 'VN' => 'Vijetnam', 'VU' => 'Vanuatu', - 'WF' => 'Wallis i Futuna', + 'WF' => 'Ostrva Valis i Futuna', 'WS' => 'Samoa', 'XK' => 'Kosovo', 'YE' => 'Jemen', diff --git a/vendor/giggsey/locale/data/ca-es-valencia.php b/vendor/giggsey/locale/data/ca-es-valencia.php index 42811a7e8..160e0065a 100644 --- a/vendor/giggsey/locale/data/ca-es-valencia.php +++ b/vendor/giggsey/locale/data/ca-es-valencia.php @@ -1,6 +1,6 @@ 'Saint-Pierre-et-Miquelon', 'PN' => 'Illes Pitcairn', 'PR' => 'Puerto Rico', - 'PS' => 'Palestina', + 'PS' => 'territoris palestins', 'PT' => 'Portugal', 'PW' => 'Palau', 'PY' => 'Paraguai', diff --git a/vendor/giggsey/locale/data/ca.php b/vendor/giggsey/locale/data/ca.php index 42811a7e8..160e0065a 100644 --- a/vendor/giggsey/locale/data/ca.php +++ b/vendor/giggsey/locale/data/ca.php @@ -1,6 +1,6 @@ 'Saint-Pierre-et-Miquelon', 'PN' => 'Illes Pitcairn', 'PR' => 'Puerto Rico', - 'PS' => 'Palestina', + 'PS' => 'territoris palestins', 'PT' => 'Portugal', 'PW' => 'Palau', 'PY' => 'Paraguai', diff --git a/vendor/giggsey/locale/data/ce.php b/vendor/giggsey/locale/data/ce.php index 6334fcb32..d967947fb 100644 --- a/vendor/giggsey/locale/data/ce.php +++ b/vendor/giggsey/locale/data/ce.php @@ -1,6 +1,6 @@ 'ᎤᎵᏌᎳᏓᏅ ᎤᎦᏚᏛᎢ', 'AD' => 'ᎠᏂᏙᎳ', 'AE' => 'ᏌᏊ ᎢᏳᎾᎵᏍᏔᏅ ᎡᎳᏈ ᎢᎹᎵᏘᏏ', 'AF' => 'ᎠᏫᎨᏂᏍᏖᏂ', @@ -22,7 +23,7 @@ return array ( 'AU' => 'ᎡᎳᏗᏜ', 'AW' => 'ᎠᎷᏆ', 'AX' => 'ᎣᎴᏅᏓ ᏚᎦᏚᏛᎢ', - 'AZ' => 'ᎠᏏᎵᏆᏌᏂ', + 'AZ' => 'ᎠᏎᏆᏣᏂ', 'BA' => 'ᏉᏏᏂᎠ ᎠᎴ ᎲᏤᎪᏫ', 'BB' => 'ᏆᏇᏙᏍ', 'BD' => 'ᏆᏂᎦᎵᏕᏍ', @@ -32,24 +33,25 @@ return array ( 'BH' => 'ᏆᎭᎴᎢᏂ', 'BI' => 'ᏋᎷᏂᏗ', 'BJ' => 'ᏆᏂᎢᏂ', - 'BL' => 'ᎠᏥᎸᏉᏗ ᏆᏕᎳᎻ', + 'BL' => 'ᎤᏓᏅᏘ ᏆᏕᎳᎻ', 'BM' => 'ᏆᏊᏓ', 'BN' => 'ᏊᎾᎢ', 'BO' => 'ᏉᎵᏫᎠ', - 'BR' => 'ᏆᏏᎵᎢ', + 'BQ' => 'ᎧᎵᏈᎢᏂᎯ ᎾᏍᎩᏁᏛᎳᏂ', + 'BR' => 'ᏆᏏᎵ', 'BS' => 'ᎾᏍᎩ ᏆᎭᎹᏍ', 'BT' => 'ᏊᏔᏂ', 'BW' => 'ᏆᏣᏩᎾ', 'BY' => 'ᏇᎳᎷᏍ', 'BZ' => 'ᏇᎵᏍ', 'CA' => 'ᎨᎾᏓ', - 'CC' => 'ᎪᎪᏍ (ᎩᎵᏂ) ᏚᎦᏚᏛ', - 'CD' => 'ᎧᏂᎪ', + 'CC' => 'ᎪᎪᏍ (ᎩᎵᏂ) ᏚᎦᏚᏛᎢ', + 'CD' => 'ᎧᏂᎪ - ᎨᏂᏝᏌ', 'CF' => 'ᎬᎿᎨᏍᏛ ᎠᏰᏟ ᏍᎦᏚᎩ', - 'CG' => 'ᎧᏂᎪ (ᏍᎦᏚᎩ)', + 'CG' => 'ᎧᏂᎪ - ᏆᏌᏩᎵ', 'CH' => 'ᏍᏫᏍ', 'CI' => 'ᎢᏬᎵ ᎾᎿ ᎠᎹᏳᎶᏗ', - 'CK' => 'ᎠᏓᏍᏓᏴᎲᏍᎩ ᎤᎦᏚᏛ', + 'CK' => 'ᎠᏓᏍᏓᏴᎲᏍᎩ ᏚᎦᏚᏛᎢ', 'CL' => 'ᏥᎵ', 'CM' => 'ᎧᎹᎷᏂ', 'CN' => 'ᏓᎶᏂᎨᏍᏛ', @@ -57,25 +59,29 @@ return array ( 'CR' => 'ᎪᏍᏓ ᎵᎧ', 'CU' => 'ᎫᏆ', 'CV' => 'ᎢᎬᎾᏕᎾ ᎢᏤᏳᏍᏗ', - 'CW' => 'ᏂᎦᏓ ᎤᏂᎲ ᎾᎿ ᎫᎳᎨᎣ', + 'CW' => 'ᎫᎳᎨᎣ', 'CX' => 'ᏓᏂᏍᏓᏲᎯᎲ ᎤᎦᏚᏛᎢ', 'CY' => 'ᏌᎢᏆᏍ', 'CZ' => 'ᏤᎩ ᏍᎦᏚᎩ', 'DE' => 'ᎠᏂᏛᏥ', + 'DG' => 'ᏗᏰᎪ ᎦᏏᏯ', 'DJ' => 'ᏥᏊᏗ', 'DK' => 'ᏗᏂᎹᎦ', 'DM' => 'ᏙᎻᏂᎧ', 'DO' => 'ᏙᎻᏂᎧᏂ ᏍᎦᏚᎩ', 'DZ' => 'ᎠᎵᏥᎵᏯ', + 'EA' => 'ᏑᏔ ᎠᎴ ᎺᎵᏯ', 'EC' => 'ᎡᏆᏙᎵ', 'EE' => 'ᎡᏍᏙᏂᏯ', 'EG' => 'ᎢᏥᏈᎢ', + 'EH' => 'ᏭᏕᎵᎬ ᏗᏜ ᏌᎮᎳ', 'ER' => 'ᎡᎵᏟᏯ', 'ES' => 'ᎠᏂᏍᏆᏂᏱ', + 'ET' => 'ᎢᏗᎣᏈᎠ', 'FI' => 'ᏫᏂᎦᏙᎯ', 'FJ' => 'ᏫᏥ', 'FK' => 'ᏩᎩ ᏚᎦᏚᏛᎢ', - 'FM' => 'ᎠᏰᏟ ᏧᎾᎵᎪᎯ ᎾᎿ ᎹᎢᏉᏂᏏᏯ', + 'FM' => 'ᎹᎢᏉᏂᏏᏯ', 'FO' => 'ᏪᎶ ᏚᎦᏚᏛᎢ', 'FR' => 'ᎦᎸᏥᏱ', 'GA' => 'ᎦᏉᏂ', @@ -88,21 +94,23 @@ return array ( 'GI' => 'ᏥᏆᎵᏓ', 'GL' => 'ᎢᏤᏍᏛᏱ', 'GM' => 'ᎦᎹᏈᎢᎠ', - 'GN' => 'ᎫᏇ', + 'GN' => 'ᎩᎢᏂ', 'GP' => 'ᏩᏓᎷᏇ', 'GQ' => 'ᎡᏆᏙᎵᎠᎵ ᎩᎢᏂ', 'GR' => 'ᎪᎢᎯ', - 'GS' => 'ᏧᎦᏃᏮ ᏣᏥᏱ ᎠᎴ ᎾᏍᎩ ᏧᎦᏃᏮ ᎠᏍᏛᎭᏟ ᏚᎦᏚᏛ', + 'GS' => 'ᏧᎦᏃᏮ ᏣᎠᏥᎢ ᎠᎴ ᎾᏍᎩ ᏧᎦᏃᏮ ᎠᏍᏛᎭᏟ ᏚᎦᏚᏛᎢ', 'GT' => 'ᏩᏔᎹᎳ', 'GU' => 'ᏆᎻ', - 'GW' => 'ᎫᏇ-ᏈᏌᎤᏫ', + 'GW' => 'ᎩᎢᏂ-ᏈᏌᎤᏫ', 'GY' => 'ᎦᏯᎾ', - 'HK' => 'ᎰᏂᎩ ᎪᏂᎩ', + 'HK' => 'ᎰᏂᎩ ᎪᏂᎩ ᎤᏓᏤᎵᏓ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎢᎬᎾᏕᎾ ᏓᎶᏂᎨᏍᏛ', + 'HN' => 'ᎭᏂᏚᎳᏍ', 'HR' => 'ᎧᎶᎡᏏᎠ', 'HT' => 'ᎮᎢᏘ', 'HU' => 'ᎲᏂᎦᎵ', + 'IC' => 'ᏥᏍᏆ ᏚᎦᏚᏛᎢ', 'ID' => 'ᎢᏂᏙᏂᏍᏯ', - 'IE' => 'ᎠᎢᎴᏂᏗ', + 'IE' => 'ᎠᏲᎳᏂ', 'IL' => 'ᎢᏏᎵᏱ', 'IM' => 'ᎤᏍᏗ ᎤᎦᏚᏛᎢ ᎾᎿ ᎠᏍᎦᏯ', 'IN' => 'ᎢᏅᏗᎾ', @@ -110,7 +118,7 @@ return array ( 'IQ' => 'ᎢᎳᎩ', 'IR' => 'ᎢᎴᏂ', 'IS' => 'ᏧᏁᏍᏓᎸᎯ', - 'IT' => 'ᏲᎶ', + 'IT' => 'ᎢᏔᎵ', 'JE' => 'ᏨᎵᏏ', 'JM' => 'ᏣᎺᎢᎧ', 'JO' => 'ᏦᏓᏂ', @@ -120,7 +128,7 @@ return array ( 'KH' => 'ᎧᎹᏉᏗᎠᏂ', 'KI' => 'ᎧᎵᏆᏘ', 'KM' => 'ᎪᎼᎳᏍ', - 'KN' => 'ᎠᏰᏟ ᎾᎿ ᎨᏥᎸᏉᏗ ᎠᏂᏪᏌ ᎠᎴ ᎠᏂᏁᏫᏍ', + 'KN' => 'ᎤᏓᏅᏘ ᎨᏘᏏ ᎠᎴ ᏁᏪᏏ', 'KP' => 'ᏧᏴᏢ ᎪᎵᎠ', 'KR' => 'ᏧᎦᏃᏮ ᎪᎵᎠ', 'KW' => 'ᎫᏪᎢᏘ', @@ -128,6 +136,7 @@ return array ( 'KZ' => 'ᎧᏎᎧᏍᏕᏂ', 'LA' => 'ᎴᎣᏍ', 'LB' => 'ᎴᏆᎾᏂ', + 'LC' => 'ᎤᏓᏅᏘ ᎷᏏᏯ', 'LI' => 'ᎵᎦᏗᏂᏍᏓᏂ', 'LK' => 'ᏍᎵ ᎳᏂᎧ', 'LR' => 'ᎳᏈᎵᏯ', @@ -140,15 +149,15 @@ return array ( 'MC' => 'ᎹᎾᎪ', 'MD' => 'ᎹᎵᏙᏫᎠ', 'ME' => 'ᎼᏂᏔᏁᎦᎶ', - 'MF' => 'ᎠᏥᎸᏉᏗ ᏡᏡ', + 'MF' => 'ᎤᏓᏅᏘ ᏡᏡ', 'MG' => 'ᎹᏓᎦᏍᎧᎵ', - 'MH' => 'ᎹᏌᎵ ᏚᎪᏚᏛ', - 'MK' => 'ᎹᏏᏙᏂᎢᎠ', + 'MH' => 'ᎹᏌᎵ ᏚᎦᏚᏛᎢ', + 'MK' => 'ᎹᏎᏙᏂᏯ', 'ML' => 'ᎹᎵ', 'MM' => 'ᎹᏯᎹᎵ', 'MN' => 'ᎹᏂᎪᎵᎠ', 'MO' => 'ᎹᎧᎣ (ᎤᏓᏤᎵᏓ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎢᎬᎾᏕᎾ) ᏣᎢ', - 'MP' => 'ᎾᏍᎩ ᎤᏴᏢ ᏗᏜ ᎹᎵᎠᎾ ᏚᎦᏚᏛ', + 'MP' => 'ᏧᏴᏢ ᏗᏜ ᎹᎵᎠᎾ ᏚᎦᏚᏛᎢ', 'MQ' => 'ᎹᏘᏂᎨ', 'MR' => 'ᎹᏘᎢᏯ', 'MS' => 'ᎹᏂᏘᏌᎳᏗ', @@ -156,11 +165,12 @@ return array ( 'MU' => 'ᎼᎵᏏᎥᏍ', 'MV' => 'ᎹᎵᏗᏫᏍ', 'MW' => 'ᎹᎳᏫ', - 'MX' => 'ᏍᏆᏂᏱ', + 'MX' => 'ᎠᏂᏍᏆᏂ', 'MY' => 'ᎹᎴᏏᎢᎠ', 'MZ' => 'ᎼᏎᎻᏇᎩ', 'NA' => 'ᎾᎻᏈᎢᏯ', 'NC' => 'ᎢᏤ ᎧᎵᏙᏂᎠᏂ', + 'NE' => 'ᎾᎢᏨ', 'NF' => 'ᏃᎵᏬᎵᎩ ᎤᎦᏚᏛᎢ', 'NG' => 'ᏂᏥᎵᏯ', 'NI' => 'ᏂᎧᎳᏆ', @@ -173,19 +183,20 @@ return array ( 'OM' => 'ᎣᎺᏂ', 'PA' => 'ᏆᎾᎹ', 'PE' => 'ᏇᎷ', - 'PF' => 'ᎠᏂᎦᎸᏣ ᏆᎵᏂᏏᎠ', - 'PG' => 'ᏆᏇ ᎢᏤ ᎩᏂ', + 'PF' => 'ᎠᏂᎦᎸᏥ ᏆᎵᏂᏏᎠ', + 'PG' => 'ᏆᏇ ᎢᏤ ᎩᎢᏂ', 'PH' => 'ᎠᏂᏈᎵᎩᏃ', 'PK' => 'ᏆᎩᏍᏖᏂ', 'PL' => 'ᏉᎳᏂ', - 'PM' => 'ᏎᏂᏘ ᏈᏓ ᎠᎴ ᎻᏇᎶᏂ', - 'PN' => 'ᏈᎧᎵᏂ ᎤᎦᏚᏛᎢ', + 'PM' => 'ᎤᏓᏅᏘ ᏈᏰ ᎠᎴ ᎻᏇᎶᏂ', + 'PN' => 'ᏈᎧᎵᏂ ᏚᎦᏚᏛᎢ', 'PR' => 'ᏇᎡᏙ ᎵᎢᎪ', 'PS' => 'ᏆᎴᏍᏗᏂᎠᏂ ᏄᎬᏫᏳᏌᏕᎩ', 'PT' => 'ᏉᏥᎦᎳ', 'PW' => 'ᏆᎴᎠᏫ', 'PY' => 'ᏆᎳᏇᎢᏯ', 'QA' => 'ᎧᏔᎵ', + 'RE' => 'ᎴᏳᏂᎠᏂ', 'RO' => 'ᎶᎹᏂᏯ', 'RS' => 'ᏒᏈᏯ', 'RU' => 'ᏲᏂᎢ', @@ -196,9 +207,57 @@ return array ( 'SD' => 'ᏑᏕᏂ', 'SE' => 'ᏍᏫᏕᏂ', 'SG' => 'ᏏᏂᎦᏉᎵ', - 'SH' => 'ᎠᏥᎸᏉᏗ ᎮᎵᎾ', + 'SH' => 'ᎤᏓᏅᏘ ᎮᎵᎾ', 'SI' => 'ᏍᎶᏫᏂᎠ', + 'SJ' => 'ᏍᏩᎵᏆᎵᏗ ᎠᎴ ᏤᏂ ᎹᏰᏂ', 'SK' => 'ᏍᎶᏩᎩᎠ', 'SL' => 'ᏏᎡᎳ ᎴᎣᏂ', - 'US' => 'ᎠᎹᏰᏟ', + 'SM' => 'ᎤᏓᏅᏘ ᎹᎵᎢᏃ', + 'SN' => 'ᏏᏂᎦᎵ', + 'SO' => 'ᏐᎹᎵ', + 'SR' => 'ᏒᎵᎾᎻ', + 'SS' => 'ᏧᎦᎾᏮ ᏑᏕᏂ', + 'ST' => 'ᏌᎣ ᏙᎺ ᎠᎴ ᏈᏂᏏᏇ', + 'SV' => 'ᎡᎵᏌᎵᏆᏙᎵ', + 'SX' => 'ᏏᏂᏘ ᎹᏘᏂ', + 'SY' => 'ᏏᎵᎠ', + 'SZ' => 'ᎠᏂᏍᏩᏏᎢ', + 'TA' => 'ᏟᏍᏛᏂ Ꮣ ᎫᎾᎭ', + 'TC' => 'ᎠᏂᏛᎵᎩ ᎠᎴ ᎨᎢᎪ ᏚᎦᏚᏛᎢ', + 'TD' => 'ᏣᏗ', + 'TF' => 'ᎠᏂᎦᎸᏥ ᏧᎦᎾᏮ ᎦᏙᎯ ᎤᎵᏍᏛᎢ', + 'TG' => 'ᏙᎪ', + 'TH' => 'ᏔᏯᎴᏂ', + 'TJ' => 'ᏔᏥᎩᏍᏕᏂ', + 'TK' => 'ᏙᎨᎳᏭ', + 'TL' => 'ᏘᎼᎵ-ᎴᏍᏖ', + 'TM' => 'ᏛᎵᎩᎺᏂᏍᏔᏂ', + 'TN' => 'ᏚᏂᏏᏍᎠ', + 'TO' => 'ᏙᏅᎦ', + 'TR' => 'ᎬᏃ', + 'TT' => 'ᏟᏂᏕᏗ ᎠᎴ ᏙᏆᎪ', + 'TV' => 'ᏚᏩᎷ', + 'TW' => 'ᏔᎢᏩᏂ', + 'TZ' => 'ᏖᏂᏏᏂᏯ', + 'UA' => 'ᏳᎧᎴᏂ', + 'UG' => 'ᏳᎦᏂᏓ', + 'UM' => 'U.S. ᎠᏍᏛ ᏚᎦᏚᏛᎢ', + 'US' => 'ᏌᏊ ᎢᏳᎾᎵᏍᏔᏅ ᏍᎦᏚᎩ', + 'UY' => 'ᏳᎷᏇ', + 'UZ' => 'ᎤᏍᏇᎩᏍᏖᏂ', + 'VA' => 'ᎠᏥᎳᏁᏠ ᎦᏚᎲ', + 'VC' => 'ᎤᏓᏅᏘ ᏫᏂᏏᏂᏗ ᎠᎴ ᎾᏍᎩ ᏇᎾᏗᏁᏍ', + 'VE' => 'ᏪᏁᏑᏪᎳ', + 'VG' => 'ᏈᏗᏍ ᎠᏒᏂᎸ ᏂᎨᏒᎾ ᏚᎦᏚᏛᎢ', + 'VI' => 'U.S. ᎠᏒᏂᎸ ᏂᎨᏒᎾ ᏚᎦᏚᏛᎢ', + 'VN' => 'ᏫᎡᏘᎾᎻ', + 'VU' => 'ᏩᏂᎤᏩᏚ', + 'WF' => 'ᏩᎵᏍ ᎠᎴ ᏊᏚᎾ', + 'WS' => 'ᏌᎼᎠ', + 'XK' => 'ᎪᏐᏉ', + 'YE' => 'ᏰᎺᏂ', + 'YT' => 'ᎺᏯᏖ', + 'ZA' => 'ᏧᎦᎾᏮ ᎬᎿᎨᏍᏛ', + 'ZM' => 'ᏌᎻᏈᏯ', + 'ZW' => 'ᏏᎻᏆᏇ', ); diff --git a/vendor/giggsey/locale/data/ckb.php b/vendor/giggsey/locale/data/ckb.php new file mode 100644 index 000000000..d4f39008a --- /dev/null +++ b/vendor/giggsey/locale/data/ckb.php @@ -0,0 +1,196 @@ + 'ئاندۆرا', + 'AE' => 'میرنشینە یەکگرتووە عەرەبییەکان', + 'AF' => 'ئەفغانستان', + 'AG' => 'ئانتیگوا و باربودا', + 'AL' => 'ئەڵبانیا', + 'AM' => 'ئەرمەنستان', + 'AO' => 'ئەنگۆلا', + 'AQ' => 'ئانتارکتیکا', + 'AR' => 'ئارجەنتینا', + 'AS' => 'ساموای ئەمەریکایی', + 'AT' => 'نەمسا', + 'AU' => 'ئۆسترالیا', + 'AW' => 'ئارووبا', + 'AZ' => 'ئازەربایجان', + 'BA' => 'بۆسنیا و ھەرزەگۆڤینا', + 'BB' => 'باربادۆس', + 'BD' => 'بەنگلادیش', + 'BE' => 'بەلژیک', + 'BF' => 'بورکینافاسۆ', + 'BG' => 'بولگاریا', + 'BH' => 'بەحرەین', + 'BI' => 'بوروندی', + 'BJ' => 'بنین', + 'BO' => 'بۆلیڤیا', + 'BR' => 'برازیل', + 'BS' => 'بەھاما', + 'BT' => 'بووتان', + 'BW' => 'بۆتسوانا', + 'BY' => 'بیلاڕووس', + 'BZ' => 'بەلیز', + 'CA' => 'کانەدا', + 'CD' => 'کۆنگۆ کینشاسا', + 'CF' => 'کۆماری ئەفریقای ناوەڕاست', + 'CH' => 'سویسرا', + 'CI' => 'کۆتدیڤوار', + 'CL' => 'شیلی', + 'CM' => 'کامیروون', + 'CN' => 'چین', + 'CO' => 'کۆلۆمبیا', + 'CR' => 'کۆستاریکا', + 'CU' => 'کووبا', + 'CV' => 'کەیپڤەرد', + 'CY' => 'قیبرس', + 'CZ' => 'کۆماری چیک', + 'DE' => 'ئەڵمانیا', + 'DJ' => 'جیبووتی', + 'DK' => 'دانمارک', + 'DM' => 'دۆمینیکا', + 'DZ' => 'ئەلجەزایر', + 'EC' => 'ئیکوادۆر', + 'EG' => 'میسر', + 'ER' => 'ئەریتریا', + 'ES' => 'ئیسپانیا', + 'ET' => 'ئەتیۆپیا', + 'FI' => 'فینلاند', + 'FJ' => 'فیجی', + 'FM' => 'مایکرۆنیزیا', + 'FR' => 'فەڕەنسا', + 'GA' => 'گابۆن', + 'GB' => 'شانشینی یەکگرتوو', + 'GD' => 'گرینادا', + 'GE' => 'گورجستان', + 'GH' => 'غەنا', + 'GL' => 'گرینلاند', + 'GM' => 'گامبیا', + 'GN' => 'گینێ', + 'GR' => 'یۆنان', + 'GT' => 'گواتیمالا', + 'GU' => 'گوام', + 'GW' => 'گینێ بیساو', + 'GY' => 'گویانا', + 'HN' => 'ھۆندووراس', + 'HR' => 'کرۆواتیا', + 'HT' => 'ھایتی', + 'HU' => 'مەجارستان', + 'ID' => 'ئیندۆنیزیا', + 'IE' => 'ئیرلەند', + 'IL' => 'ئیسرائیل', + 'IN' => 'ھیندستان', + 'IQ' => 'عێراق', + 'IR' => 'ئێران', + 'IS' => 'ئایسلەند', + 'IT' => 'ئیتاڵی', + 'JM' => 'جامایکا', + 'JO' => 'ئوردن', + 'JP' => 'ژاپۆن', + 'KG' => 'قرغیزستان', + 'KH' => 'کەمبۆدیا', + 'KI' => 'کیریباس', + 'KM' => 'دوورگەکانی قەمەر', + 'KN' => 'سەینت کیتس و نیڤیس', + 'KP' => 'کۆریای باکوور', + 'KW' => 'کوەیت', + 'KZ' => 'کازاخستان', + 'LA' => 'لاوس', + 'LB' => 'لوبنان', + 'LC' => 'سەینت لووسیا', + 'LI' => 'لیختنشتاین', + 'LK' => 'سریلانکا', + 'LR' => 'لیبەریا', + 'LS' => 'لەسۆتۆ', + 'LT' => 'لیتوانایا', + 'LU' => 'لوکسەمبورگ', + 'LV' => 'لاتڤیا', + 'LY' => 'لیبیا', + 'MA' => 'مەغریب', + 'MC' => 'مۆناکۆ', + 'MD' => 'مۆلدۆڤا', + 'ME' => 'مۆنتینیگرۆ', + 'MG' => 'ماداگاسکار', + 'MH' => 'دوورگەکانی مارشاڵ', + 'ML' => 'مالی', + 'MM' => 'میانمار', + 'MN' => 'مەنگۆلیا', + 'MR' => 'مۆریتانیا', + 'MT' => 'ماڵتا', + 'MV' => 'مالدیڤ', + 'MW' => 'مالاوی', + 'MX' => 'مەکسیک', + 'MY' => 'مالیزیا', + 'MZ' => 'مۆزامبیک', + 'NA' => 'نامیبیا', + 'NE' => 'نیجەر', + 'NI' => 'نیکاراگوا', + 'NL' => 'ھۆڵەندا', + 'NO' => 'نۆرویژ', + 'NP' => 'نیپال', + 'NR' => 'نائوروو', + 'NZ' => 'نیوزیلاند', + 'OM' => 'عومان', + 'PA' => 'پاناما', + 'PE' => 'پیروو', + 'PG' => 'پاپوا گینێی نوێ', + 'PH' => 'فلیپین', + 'PK' => 'پاکستان', + 'PL' => 'پۆڵەندا', + 'PT' => 'پورتوگال', + 'PW' => 'پالاو', + 'PY' => 'پاراگوای', + 'QA' => 'قەتەر', + 'RO' => 'ڕۆمانیا', + 'RS' => 'سربیا', + 'RU' => 'ڕووسیا', + 'RW' => 'ڕواندا', + 'SA' => 'عەرەبستانی سەعوودی', + 'SB' => 'دوورگەکانی سلێمان', + 'SC' => 'سیشێل', + 'SD' => 'سوودان', + 'SE' => 'سوید', + 'SG' => 'سینگاپور', + 'SI' => 'سلۆڤێنیا', + 'SK' => 'سلۆڤاکیا', + 'SL' => 'سیەرالیۆن', + 'SM' => 'سان مارینۆ', + 'SN' => 'سینیگال', + 'SO' => 'سۆمالیا', + 'SR' => 'سورینام', + 'ST' => 'ساوتۆمێ و پرینسیپی', + 'SV' => 'ئێلسالڤادۆر', + 'SY' => 'سووریا', + 'SZ' => 'سوازیلاند', + 'TD' => 'چاد', + 'TG' => 'تۆگۆ', + 'TH' => 'تایلەند', + 'TJ' => 'تاجیکستان', + 'TM' => 'تورکمانستان', + 'TN' => 'توونس', + 'TO' => 'تۆنگا', + 'TR' => 'تورکیا', + 'TT' => 'ترینیداد و تۆباگو', + 'TV' => 'تووڤالوو', + 'TW' => 'تایوان', + 'TZ' => 'تانزانیا', + 'UA' => 'ئۆکرانیا', + 'UG' => 'ئوگاندا', + 'UY' => 'ئوروگوای', + 'UZ' => 'ئوزبەکستان', + 'VA' => 'ڤاتیکان', + 'VC' => 'سەینت ڤینسەنت و گرینادینز', + 'VN' => 'ڤیەتنام', + 'VU' => 'ڤانوواتوو', + 'WS' => 'ساموا', + 'YE' => 'یەمەن', + 'ZA' => 'ئەفریقای باشوور', + 'ZM' => 'زامبیا', + 'ZW' => 'زیمبابوی', +); diff --git a/vendor/giggsey/locale/data/cs.php b/vendor/giggsey/locale/data/cs.php index a6a127576..e82e1d728 100644 --- a/vendor/giggsey/locale/data/cs.php +++ b/vendor/giggsey/locale/data/cs.php @@ -1,6 +1,6 @@ 'Faerské ostrovy', 'FR' => 'Francie', 'GA' => 'Gabon', - 'GB' => 'Velká Británie', + 'GB' => 'Spojené království', 'GD' => 'Grenada', 'GE' => 'Gruzie', 'GF' => 'Francouzská Guyana', diff --git a/vendor/giggsey/locale/data/cy.php b/vendor/giggsey/locale/data/cy.php index f86e3d83b..574d27beb 100644 --- a/vendor/giggsey/locale/data/cy.php +++ b/vendor/giggsey/locale/data/cy.php @@ -1,6 +1,6 @@ 'Bermuda', 'BN' => 'Brunei', 'BO' => 'Bolivia', - 'BQ' => 'De Nederlandske Antiller', + 'BQ' => 'De tidligere Nederlandske Antiller', 'BR' => 'Brasilien', 'BS' => 'Bahamas', 'BT' => 'Bhutan', @@ -98,12 +98,12 @@ return array ( 'GP' => 'Guadeloupe', 'GQ' => 'Ækvatorialguinea', 'GR' => 'Grækenland', - 'GS' => 'South Georgia og South Sandwich Islands', + 'GS' => 'South Georgia og De Sydlige Sandwichøer', 'GT' => 'Guatemala', 'GU' => 'Guam', 'GW' => 'Guinea-Bissau', 'GY' => 'Guyana', - 'HK' => 'Hongkong SAR', + 'HK' => 'SAR Hongkong', 'HN' => 'Honduras', 'HR' => 'Kroatien', 'HT' => 'Haiti', @@ -156,7 +156,7 @@ return array ( 'ML' => 'Mali', 'MM' => 'Myanmar (Burma)', 'MN' => 'Mongoliet', - 'MO' => 'Macao SAR', + 'MO' => 'SAR Macao', 'MP' => 'Nordmarianerne', 'MQ' => 'Martinique', 'MR' => 'Mauretanien', diff --git a/vendor/giggsey/locale/data/dav.php b/vendor/giggsey/locale/data/dav.php index e8cf4a316..7deaf0b93 100644 --- a/vendor/giggsey/locale/data/dav.php +++ b/vendor/giggsey/locale/data/dav.php @@ -1,6 +1,6 @@ 'Svalbard und Jan Mayen', +); diff --git a/vendor/giggsey/locale/data/de-ch.php b/vendor/giggsey/locale/data/de-ch.php index c063a9735..417c8ad99 100644 --- a/vendor/giggsey/locale/data/de-ch.php +++ b/vendor/giggsey/locale/data/de-ch.php @@ -1,18 +1,17 @@ 'Bangladesh', 'BN' => 'Brunei', 'BW' => 'Botswana', 'BY' => 'Weissrussland', + 'CV' => 'Kapverden', 'GB' => 'Grossbritannien', - 'MH' => 'Marshall-Inseln', 'SB' => 'Salomon-Inseln', 'ZW' => 'Zimbabwe', ); diff --git a/vendor/giggsey/locale/data/de.php b/vendor/giggsey/locale/data/de.php index 34bfa9bc1..30d919291 100644 --- a/vendor/giggsey/locale/data/de.php +++ b/vendor/giggsey/locale/data/de.php @@ -1,6 +1,6 @@ 'Kolumbien', 'CR' => 'Costa Rica', 'CU' => 'Kuba', - 'CV' => 'Kap Verde', + 'CV' => 'Cabo Verde', 'CW' => 'Curaçao', 'CX' => 'Weihnachtsinsel', 'CY' => 'Zypern', @@ -209,7 +209,7 @@ return array ( 'SG' => 'Singapur', 'SH' => 'St. Helena', 'SI' => 'Slowenien', - 'SJ' => 'Svalbard und Jan Mayen', + 'SJ' => 'Spitzbergen', 'SK' => 'Slowakei', 'SL' => 'Sierra Leone', 'SM' => 'San Marino', @@ -230,7 +230,7 @@ return array ( 'TH' => 'Thailand', 'TJ' => 'Tadschikistan', 'TK' => 'Tokelau', - 'TL' => 'Timor-Leste', + 'TL' => 'Osttimor', 'TM' => 'Turkmenistan', 'TN' => 'Tunesien', 'TO' => 'Tonga', diff --git a/vendor/giggsey/locale/data/dje.php b/vendor/giggsey/locale/data/dje.php index cc1e84f84..8b19567b5 100644 --- a/vendor/giggsey/locale/data/dje.php +++ b/vendor/giggsey/locale/data/dje.php @@ -1,6 +1,6 @@ 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', + 'IC' => 'Islas Canarias', +); diff --git a/vendor/giggsey/locale/data/es-bo.php b/vendor/giggsey/locale/data/es-bo.php new file mode 100644 index 000000000..3c57521b3 --- /dev/null +++ b/vendor/giggsey/locale/data/es-bo.php @@ -0,0 +1,13 @@ + 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', + 'IC' => 'Islas Canarias', +); diff --git a/vendor/giggsey/locale/data/es-br.php b/vendor/giggsey/locale/data/es-br.php new file mode 100644 index 000000000..dc5858a68 --- /dev/null +++ b/vendor/giggsey/locale/data/es-br.php @@ -0,0 +1,15 @@ + 'Costa de Marfil', + 'IC' => 'Islas Canarias', + 'TA' => 'Tristán da Cunha', + 'TL' => 'Timor Oriental', + 'UM' => 'Islas Ultramarinas de EE.UU.', +); diff --git a/vendor/giggsey/locale/data/es-cl.php b/vendor/giggsey/locale/data/es-cl.php index 6649f3973..10d81d3f5 100644 --- a/vendor/giggsey/locale/data/es-cl.php +++ b/vendor/giggsey/locale/data/es-cl.php @@ -1,11 +1,14 @@ 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', 'EH' => 'Sahara Occidental', + 'IC' => 'Islas Canarias', ); diff --git a/vendor/giggsey/locale/data/es-co.php b/vendor/giggsey/locale/data/es-co.php new file mode 100644 index 000000000..3c57521b3 --- /dev/null +++ b/vendor/giggsey/locale/data/es-co.php @@ -0,0 +1,13 @@ + 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', + 'IC' => 'Islas Canarias', +); diff --git a/vendor/giggsey/locale/data/es-cr.php b/vendor/giggsey/locale/data/es-cr.php new file mode 100644 index 000000000..3c57521b3 --- /dev/null +++ b/vendor/giggsey/locale/data/es-cr.php @@ -0,0 +1,13 @@ + 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', + 'IC' => 'Islas Canarias', +); diff --git a/vendor/giggsey/locale/data/es-cu.php b/vendor/giggsey/locale/data/es-cu.php new file mode 100644 index 000000000..dc5858a68 --- /dev/null +++ b/vendor/giggsey/locale/data/es-cu.php @@ -0,0 +1,15 @@ + 'Costa de Marfil', + 'IC' => 'Islas Canarias', + 'TA' => 'Tristán da Cunha', + 'TL' => 'Timor Oriental', + 'UM' => 'Islas Ultramarinas de EE.UU.', +); diff --git a/vendor/giggsey/locale/data/es-do.php b/vendor/giggsey/locale/data/es-do.php new file mode 100644 index 000000000..3c57521b3 --- /dev/null +++ b/vendor/giggsey/locale/data/es-do.php @@ -0,0 +1,13 @@ + 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', + 'IC' => 'Islas Canarias', +); diff --git a/vendor/giggsey/locale/data/es-ec.php b/vendor/giggsey/locale/data/es-ec.php new file mode 100644 index 000000000..3c57521b3 --- /dev/null +++ b/vendor/giggsey/locale/data/es-ec.php @@ -0,0 +1,13 @@ + 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', + 'IC' => 'Islas Canarias', +); diff --git a/vendor/giggsey/locale/data/es-gt.php b/vendor/giggsey/locale/data/es-gt.php new file mode 100644 index 000000000..3c57521b3 --- /dev/null +++ b/vendor/giggsey/locale/data/es-gt.php @@ -0,0 +1,13 @@ + 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', + 'IC' => 'Islas Canarias', +); diff --git a/vendor/giggsey/locale/data/es-hn.php b/vendor/giggsey/locale/data/es-hn.php new file mode 100644 index 000000000..3c57521b3 --- /dev/null +++ b/vendor/giggsey/locale/data/es-hn.php @@ -0,0 +1,13 @@ + 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', + 'IC' => 'Islas Canarias', +); diff --git a/vendor/giggsey/locale/data/es-mx.php b/vendor/giggsey/locale/data/es-mx.php index 45bcc88a1..9e67bf419 100644 --- a/vendor/giggsey/locale/data/es-mx.php +++ b/vendor/giggsey/locale/data/es-mx.php @@ -1,19 +1,14 @@ 'Bangladesh', - 'CC' => 'Islas Cocos (Keeling)', - 'GG' => 'Guernsey', - 'HK' => 'Región Administrativa Especial de Hong Kong de la República Popular China', + 'BA' => 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', 'IC' => 'Islas Canarias', - 'MO' => 'Región Administrativa Especial de Macao de la República Popular China', - 'TA' => 'Tristán de Acuña', 'UM' => 'Islas Ultramarinas Menores de Estados Unidos', - 'VI' => 'Islas Vírgenes de los Estados Unidos', ); diff --git a/vendor/giggsey/locale/data/es-ni.php b/vendor/giggsey/locale/data/es-ni.php new file mode 100644 index 000000000..3c57521b3 --- /dev/null +++ b/vendor/giggsey/locale/data/es-ni.php @@ -0,0 +1,13 @@ + 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', + 'IC' => 'Islas Canarias', +); diff --git a/vendor/giggsey/locale/data/es-pa.php b/vendor/giggsey/locale/data/es-pa.php new file mode 100644 index 000000000..3c57521b3 --- /dev/null +++ b/vendor/giggsey/locale/data/es-pa.php @@ -0,0 +1,13 @@ + 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', + 'IC' => 'Islas Canarias', +); diff --git a/vendor/giggsey/locale/data/es-pe.php b/vendor/giggsey/locale/data/es-pe.php new file mode 100644 index 000000000..3c57521b3 --- /dev/null +++ b/vendor/giggsey/locale/data/es-pe.php @@ -0,0 +1,13 @@ + 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', + 'IC' => 'Islas Canarias', +); diff --git a/vendor/giggsey/locale/data/es-pr.php b/vendor/giggsey/locale/data/es-pr.php new file mode 100644 index 000000000..1d296bc78 --- /dev/null +++ b/vendor/giggsey/locale/data/es-pr.php @@ -0,0 +1,14 @@ + 'Costa de Marfil', + 'IC' => 'Islas Canarias', + 'TA' => 'Tristán da Cunha', + 'TL' => 'Timor Oriental', +); diff --git a/vendor/giggsey/locale/data/es-py.php b/vendor/giggsey/locale/data/es-py.php new file mode 100644 index 000000000..3c57521b3 --- /dev/null +++ b/vendor/giggsey/locale/data/es-py.php @@ -0,0 +1,13 @@ + 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', + 'IC' => 'Islas Canarias', +); diff --git a/vendor/giggsey/locale/data/es-sv.php b/vendor/giggsey/locale/data/es-sv.php new file mode 100644 index 000000000..1d296bc78 --- /dev/null +++ b/vendor/giggsey/locale/data/es-sv.php @@ -0,0 +1,14 @@ + 'Costa de Marfil', + 'IC' => 'Islas Canarias', + 'TA' => 'Tristán da Cunha', + 'TL' => 'Timor Oriental', +); diff --git a/vendor/giggsey/locale/data/es-us.php b/vendor/giggsey/locale/data/es-us.php new file mode 100644 index 000000000..1d296bc78 --- /dev/null +++ b/vendor/giggsey/locale/data/es-us.php @@ -0,0 +1,14 @@ + 'Costa de Marfil', + 'IC' => 'Islas Canarias', + 'TA' => 'Tristán da Cunha', + 'TL' => 'Timor Oriental', +); diff --git a/vendor/giggsey/locale/data/es-uy.php b/vendor/giggsey/locale/data/es-uy.php new file mode 100644 index 000000000..dc5858a68 --- /dev/null +++ b/vendor/giggsey/locale/data/es-uy.php @@ -0,0 +1,15 @@ + 'Costa de Marfil', + 'IC' => 'Islas Canarias', + 'TA' => 'Tristán da Cunha', + 'TL' => 'Timor Oriental', + 'UM' => 'Islas Ultramarinas de EE.UU.', +); diff --git a/vendor/giggsey/locale/data/es-ve.php b/vendor/giggsey/locale/data/es-ve.php new file mode 100644 index 000000000..3c57521b3 --- /dev/null +++ b/vendor/giggsey/locale/data/es-ve.php @@ -0,0 +1,13 @@ + 'Bosnia y Herzegovina', + 'CI' => 'Costa de Marfil', + 'IC' => 'Islas Canarias', +); diff --git a/vendor/giggsey/locale/data/es.php b/vendor/giggsey/locale/data/es.php index 222fa4fe5..097b6907c 100644 --- a/vendor/giggsey/locale/data/es.php +++ b/vendor/giggsey/locale/data/es.php @@ -1,6 +1,6 @@ 'República Centroafricana', 'CG' => 'República del Congo', 'CH' => 'Suiza', - 'CI' => 'Costa de Marfil', + 'CI' => 'Côte d’Ivoire', 'CK' => 'Islas Cook', 'CL' => 'Chile', 'CM' => 'Camerún', @@ -222,7 +222,7 @@ return array ( 'SX' => 'Sint Maarten', 'SY' => 'Siria', 'SZ' => 'Suazilandia', - 'TA' => 'Tristán da Cunha', + 'TA' => 'Tristán de Acuña', 'TC' => 'Islas Turcas y Caicos', 'TD' => 'Chad', 'TF' => 'Territorios Australes Franceses', @@ -230,7 +230,7 @@ return array ( 'TH' => 'Tailandia', 'TJ' => 'Tayikistán', 'TK' => 'Tokelau', - 'TL' => 'Timor Oriental', + 'TL' => 'Timor-Leste', 'TM' => 'Turkmenistán', 'TN' => 'Túnez', 'TO' => 'Tonga', diff --git a/vendor/giggsey/locale/data/et.php b/vendor/giggsey/locale/data/et.php index f0d632c5a..ef2e7760d 100644 --- a/vendor/giggsey/locale/data/et.php +++ b/vendor/giggsey/locale/data/et.php @@ -1,6 +1,6 @@ 'Albaania', 'AM' => 'Armeenia', 'AO' => 'Angola', - 'AQ' => 'Antarktis', + 'AQ' => 'Antarktika', 'AR' => 'Argentina', 'AS' => 'Ameerika Samoa', 'AT' => 'Austria', diff --git a/vendor/giggsey/locale/data/eu.php b/vendor/giggsey/locale/data/eu.php index e51da9d33..838c1fd68 100644 --- a/vendor/giggsey/locale/data/eu.php +++ b/vendor/giggsey/locale/data/eu.php @@ -1,6 +1,6 @@ 'Monako', 'MD' => 'Moldavia', 'ME' => 'Montenegro', - 'MF' => 'Saint Martin', + 'MF' => 'San Martin', 'MG' => 'Madagaskar', 'MH' => 'Marshall uharteak', 'MK' => 'Mazedonia', 'ML' => 'Mali', - 'MM' => 'Myanmar', + 'MM' => 'Myanmar (Birmania)', 'MN' => 'Mongolia', 'MO' => 'Macau AEB Txina', 'MP' => 'Iparraldeko Mariana uharteak', @@ -207,7 +207,7 @@ return array ( 'SD' => 'Sudan', 'SE' => 'Suedia', 'SG' => 'Singapur', - 'SH' => 'Saint Helena', + 'SH' => 'Santa Helena', 'SI' => 'Eslovenia', 'SJ' => 'Svalbard eta Jan Mayen uharteak', 'SK' => 'Eslovakia', @@ -223,7 +223,7 @@ return array ( 'SY' => 'Siria', 'SZ' => 'Swazilandia', 'TA' => 'Tristan da Cunha', - 'TC' => 'Turk eta Caicos uharteak', + 'TC' => 'Turk eta Caico uharteak', 'TD' => 'Txad', 'TF' => 'Hegoaldeko lurralde frantsesak', 'TG' => 'Togo', diff --git a/vendor/giggsey/locale/data/ewo.php b/vendor/giggsey/locale/data/ewo.php index 206633a0e..9d2647044 100644 --- a/vendor/giggsey/locale/data/ewo.php +++ b/vendor/giggsey/locale/data/ewo.php @@ -1,6 +1,6 @@ 'انتیگوا و باربودا', 'AL' => 'البانیا', 'AO' => 'انگولا', + 'AQ' => 'انترکتیکا', 'AR' => 'ارجنتاین', 'AU' => 'آسترالیا', 'BA' => 'بوسنیا و هرزه‌گوینا', @@ -37,6 +38,7 @@ return array ( 'FI' => 'فنلند', 'FM' => 'میکرونزیا', 'GD' => 'گرینادا', + 'GH' => 'گانا', 'GN' => 'گینیا', 'GQ' => 'گینیا استوایی', 'GT' => 'گواتیمالا', @@ -66,6 +68,7 @@ return array ( 'MX' => 'مکسیکو', 'MY' => 'مالیزیا', 'MZ' => 'موزمبیق', + 'NE' => 'نایجر', 'NG' => 'نیجریا', 'NI' => 'نیکاراگوا', 'NL' => 'هالند', @@ -90,7 +93,10 @@ return array ( 'SV' => 'السلوادور', 'TJ' => 'تاجکستان', 'UA' => 'اکراین', + 'UG' => 'یوگاندا', 'UY' => 'یوروگوای', + 'VC' => 'سنت وینسنت و گرنادین‌ها', 'VE' => 'ونزویلا', + 'XK' => 'کوسوا', 'ZW' => 'زیمبابوی', ); diff --git a/vendor/giggsey/locale/data/fa.php b/vendor/giggsey/locale/data/fa.php index 4caa0d7a6..8cb1b7a14 100644 --- a/vendor/giggsey/locale/data/fa.php +++ b/vendor/giggsey/locale/data/fa.php @@ -1,6 +1,6 @@ 'گوادلوپ', 'GQ' => 'گینهٔ استوایی', 'GR' => 'یونان', - 'GS' => 'جورجیای جنوبی و جزایر ساندویچ جنوبی', + 'GS' => 'جزایر جورجیای جنوبی و ساندویچ جنوبی', 'GT' => 'گواتمالا', 'GU' => 'گوام', 'GW' => 'گینهٔ بیسائو', @@ -217,7 +217,7 @@ return array ( 'SO' => 'سومالی', 'SR' => 'سورینام', 'SS' => 'سودان جنوبی', - 'ST' => 'پرینسیپ و سائوتومه', + 'ST' => 'سائوتومه و پرینسیپ', 'SV' => 'السالوادور', 'SX' => 'سنت مارتن', 'SY' => 'سوریه', @@ -246,7 +246,7 @@ return array ( 'UY' => 'اروگوئه', 'UZ' => 'ازبکستان', 'VA' => 'واتیکان', - 'VC' => 'سنت وینسنت و گرنادین‌ها', + 'VC' => 'سنت وینسنت و گرنادین', 'VE' => 'ونزوئلا', 'VG' => 'جزایر ویرجین بریتانیا', 'VI' => 'جزایر ویرجین ایالات متحده', diff --git a/vendor/giggsey/locale/data/ff.php b/vendor/giggsey/locale/data/ff.php index d41411296..7752c5e20 100644 --- a/vendor/giggsey/locale/data/ff.php +++ b/vendor/giggsey/locale/data/ff.php @@ -1,6 +1,6 @@ 'San Marino', 'SN' => 'Senegal', 'SO' => 'Somalia', - 'SR' => 'Surinam', + 'SR' => 'Suriname', 'SS' => 'Etelä-Sudan', 'ST' => 'São Tomé ja Príncipe', 'SV' => 'El Salvador', diff --git a/vendor/giggsey/locale/data/fil.php b/vendor/giggsey/locale/data/fil.php index 40958c328..a0fd71671 100644 --- a/vendor/giggsey/locale/data/fil.php +++ b/vendor/giggsey/locale/data/fil.php @@ -1,6 +1,6 @@ 'Croatia', 'HT' => 'Haiti', 'HU' => 'Hungary', - 'IC' => 'Canary Island', + 'IC' => 'Canary Islands', 'ID' => 'Indonesia', 'IE' => 'Ireland', 'IL' => 'Israel', diff --git a/vendor/giggsey/locale/data/fo.php b/vendor/giggsey/locale/data/fo.php index 75694ee08..1b945c5fc 100644 --- a/vendor/giggsey/locale/data/fo.php +++ b/vendor/giggsey/locale/data/fo.php @@ -1,6 +1,6 @@ 'Brunei', + 'GS' => 'Îles Géorgie du Sud et Sandwich du Sud', +); diff --git a/vendor/giggsey/locale/data/fr-ca.php b/vendor/giggsey/locale/data/fr-ca.php index 546bdfaeb..2b9c2c7b5 100644 --- a/vendor/giggsey/locale/data/fr-ca.php +++ b/vendor/giggsey/locale/data/fr-ca.php @@ -1,18 +1,36 @@ 'île de l’Ascension', + 'AX' => 'îles d’Åland', + 'BN' => 'Brunei', 'BY' => 'Bélarus', - 'CC' => 'Îles Cocos (Keeling)', + 'CC' => 'îles Cocos (Keeling)', + 'CK' => 'îles Cook', + 'CX' => 'île Christmas', + 'FK' => 'îles Malouines', 'FM' => 'Micronésie', + 'FO' => 'îles Féroé', + 'IC' => 'îles Canaries', + 'IM' => 'île de Man', 'MF' => 'Saint-Martin (France)', 'MM' => 'Myanmar', + 'MP' => 'Mariannes du Nord', + 'NF' => 'île Norfolk', + 'PN' => 'îles Pitcairn', + 'RE' => 'la Réunion', 'SX' => 'Saint-Martin (Pays-Bas)', 'TK' => 'Tokelau', + 'TL' => 'Timor-Leste', + 'UM' => 'îles mineures éloignées des États-Unis', + 'VA' => 'Cité du Vatican', 'VC' => 'Saint-Vincent-et-les Grenadines', + 'VG' => 'îles Vierges britanniques', + 'VI' => 'îles Vierges américaines', ); diff --git a/vendor/giggsey/locale/data/fr.php b/vendor/giggsey/locale/data/fr.php index 33f31aeaf..96d8a3590 100644 --- a/vendor/giggsey/locale/data/fr.php +++ b/vendor/giggsey/locale/data/fr.php @@ -1,6 +1,6 @@ 'Na h-Iomaratan Arabach Aonaichte', 'AF' => 'Afghanastàn', 'AG' => 'Aintìoga is Barbuda', - 'AI' => 'Anguilla', + 'AI' => 'Anguillia', 'AL' => 'Albàinia', - 'AM' => 'Airmeinia', + 'AM' => 'Airmeinea', 'AO' => 'Angòla', 'AQ' => 'An Antartaig', 'AR' => 'An Argantain', @@ -45,7 +45,7 @@ return array ( 'BY' => 'A’ Bhealaruis', 'BZ' => 'A’ Bheilìs', 'CA' => 'Canada', - 'CC' => 'Na h-Eileanan Cocos (Keeling)', + 'CC' => 'Na h-Eileanan Chocos (Keeling)', 'CD' => 'Congo - Kinshasa', 'CF' => 'Poblachd Meadhan Afraga', 'CG' => 'A’ Chongo - Brazzaville', @@ -76,12 +76,12 @@ return array ( 'EG' => 'An Èiphit', 'EH' => 'Sathara an Iar', 'ER' => 'Eartra', - 'ES' => 'An Spàinn', + 'ES' => 'An Spàinnt', 'ET' => 'An Itiop', 'FI' => 'An Fhionnlann', 'FJ' => 'Fìdi', 'FK' => 'Na h-Eileanan Fàclannach', - 'FM' => 'Na Meanbh-Eileanan', + 'FM' => 'Na Meanbh-eileanan', 'FO' => 'Na h-Eileanan Fàro', 'FR' => 'An Fhraing', 'GA' => 'Gabon', @@ -98,7 +98,7 @@ return array ( 'GP' => 'Guadalup', 'GQ' => 'Gini Mheadhan-Chriosach', 'GR' => 'A’ Ghreug', - 'GS' => 'Seòrsea a Deas is na h-Eileanan Sandwich a Deas', + 'GS' => 'Seòirsea a Deas is na h-Eileanan Sandwich a Deas', 'GT' => 'Guatamala', 'GU' => 'Guam', 'GW' => 'Gini-Bioso', @@ -109,7 +109,7 @@ return array ( 'HT' => 'Haidhti', 'HU' => 'An Ungair', 'IC' => 'Na h-Eileanan Canàrach', - 'ID' => 'Na h-Innd Innse', + 'ID' => 'Na h-Innd-innse', 'IE' => 'Èirinn', 'IL' => 'Iosrael', 'IM' => 'Eilean Mhanainn', @@ -130,7 +130,7 @@ return array ( 'KM' => 'Comoros', 'KN' => 'Naomh Crìstean is Nibheis', 'KP' => 'Coirèa a Tuath', - 'KR' => 'Coirèa a Deas', + 'KR' => 'Coirèa', 'KW' => 'Cuibhèit', 'KY' => 'Na h-Eileanan Caimean', 'KZ' => 'Casachstàn', @@ -175,7 +175,7 @@ return array ( 'NG' => 'Nigèiria', 'NI' => 'Niocaragua', 'NL' => 'Na Tìrean Ìsle', - 'NO' => 'An Nirribhidh', + 'NO' => 'Nirribhidh', 'NP' => 'Neapàl', 'NR' => 'Nabhru', 'NU' => 'Niue', @@ -189,7 +189,7 @@ return array ( 'PK' => 'Pagastàn', 'PL' => 'A’ Phòlainn', 'PM' => 'Saint Pierre agus Miquelon', - 'PN' => 'Eilean Peit a’ Chàirn', + 'PN' => 'Eileanan Peit a’ Chàirn', 'PR' => 'Porto Rìceo', 'PS' => 'Na Ranntairean Palastaineach', 'PT' => 'A’ Phortagail', @@ -249,7 +249,7 @@ return array ( 'VC' => 'Naomh Bhionsant agus Eileanan Greanadach', 'VE' => 'A’ Bheiniseala', 'VG' => 'Eileanan Breatannach na Maighdinn', - 'VI' => 'Eileanan Aimeireagach na Maighdinn', + 'VI' => 'Eileanan na Maighdinn aig na SA', 'VN' => 'Bhiet-Nam', 'VU' => 'Vanuatu', 'WF' => 'Uallas agus Futuna', diff --git a/vendor/giggsey/locale/data/gl.php b/vendor/giggsey/locale/data/gl.php index 926407153..0bdb8ae41 100644 --- a/vendor/giggsey/locale/data/gl.php +++ b/vendor/giggsey/locale/data/gl.php @@ -1,6 +1,6 @@ 'Aruba', 'AX' => 'Illas Aland', 'AZ' => 'Acerbaixán', - 'BA' => 'Bosnia e Hercegovina', + 'BA' => 'Bosnia-Hercegovina', 'BB' => 'Barbados', - 'BD' => 'Bangladesh', + 'BD' => 'Bangladés', 'BE' => 'Bélxica', 'BF' => 'Burkina Faso', 'BG' => 'Bulgaria', - 'BH' => 'Bahrein', + 'BH' => 'Bahrain', 'BI' => 'Burundi', 'BJ' => 'Benin', - 'BL' => 'San Bartolomé', + 'BL' => 'Saint-Barthélemy', 'BM' => 'Bermudas', 'BN' => 'Brunei', 'BO' => 'Bolivia', - 'BQ' => 'Caribe neerlandés', + 'BQ' => 'Caribe Neerlandés', 'BR' => 'Brasil', 'BS' => 'Bahamas', 'BT' => 'Bután', @@ -48,19 +48,19 @@ return array ( 'CC' => 'Illas Cocos (Keeling)', 'CD' => 'República Democrática do Congo', 'CF' => 'República Centroafricana', - 'CG' => 'Congo', + 'CG' => 'República do Congo', 'CH' => 'Suíza', - 'CI' => 'Costa de Marfil', + 'CI' => 'Costa do Marfil', 'CK' => 'Illas Cook', 'CL' => 'Chile', 'CM' => 'Camerún', - 'CN' => 'China', + 'CN' => 'A China', 'CO' => 'Colombia', 'CR' => 'Costa Rica', 'CU' => 'Cuba', 'CV' => 'Cabo Verde', 'CW' => 'Curaçao', - 'CX' => 'Illa Christmas', + 'CX' => 'Illa de Nadal', 'CY' => 'Chipre', 'CZ' => 'República Checa', 'DE' => 'Alemaña', @@ -69,7 +69,7 @@ return array ( 'DK' => 'Dinamarca', 'DM' => 'Dominica', 'DO' => 'República Dominicana', - 'DZ' => 'Arxelia', + 'DZ' => 'Alxeria', 'EA' => 'Ceuta e Melilla', 'EC' => 'Ecuador', 'EE' => 'Estonia', @@ -79,7 +79,7 @@ return array ( 'ES' => 'España', 'ET' => 'Etiopía', 'FI' => 'Finlandia', - 'FJ' => 'Fixi', + 'FJ' => 'Fidxi', 'FK' => 'Illas Malvinas', 'FM' => 'Micronesia', 'FO' => 'Illas Feroe', @@ -90,18 +90,18 @@ return array ( 'GE' => 'Xeorxia', 'GF' => 'Güiana Francesa', 'GG' => 'Guernsey', - 'GH' => 'Gana', + 'GH' => 'Ghana', 'GI' => 'Xibraltar', - 'GL' => 'Grenlandia', + 'GL' => 'Groenlandia', 'GM' => 'Gambia', 'GN' => 'Guinea', 'GP' => 'Guadalupe', 'GQ' => 'Guinea Ecuatorial', 'GR' => 'Grecia', - 'GS' => 'Xeorxia do Sur e Illas Sandwich', + 'GS' => 'Illas Xeorxia do Sur e Sandwich do Sur', 'GT' => 'Guatemala', 'GU' => 'Guam', - 'GW' => 'Guinea-Bissau', + 'GW' => 'Guinea-Bisau', 'GY' => 'Güiana', 'HK' => 'Hong Kong RAE de China', 'HN' => 'Honduras', @@ -113,7 +113,7 @@ return array ( 'IE' => 'Irlanda', 'IL' => 'Israel', 'IM' => 'Illa de Man', - 'IN' => 'India', + 'IN' => 'A India', 'IO' => 'Territorio Británico do Océano Índico', 'IQ' => 'Iraq', 'IR' => 'Irán', @@ -122,42 +122,42 @@ return array ( 'JE' => 'Jersey', 'JM' => 'Xamaica', 'JO' => 'Xordania', - 'JP' => 'Xapón', + 'JP' => 'O Xapón', 'KE' => 'Kenya', 'KG' => 'Quirguicistán', - 'KH' => 'Cambodia', + 'KH' => 'Camboxa', 'KI' => 'Kiribati', 'KM' => 'Comores', - 'KN' => 'San Cristovo e Nevis', + 'KN' => 'Saint Kitts e Nevis', 'KP' => 'Corea do Norte', 'KR' => 'Corea do Sur', 'KW' => 'Kuwait', 'KY' => 'Illas Caimán', - 'KZ' => 'Kazakhstan', + 'KZ' => 'Casaquistán', 'LA' => 'Laos', 'LB' => 'Líbano', 'LC' => 'Santa Lucía', 'LI' => 'Liechtenstein', 'LK' => 'Sri Lanka', 'LR' => 'Liberia', - 'LS' => 'Lesotho', + 'LS' => 'Lesoto', 'LT' => 'Lituania', 'LU' => 'Luxemburgo', 'LV' => 'Letonia', 'LY' => 'Libia', 'MA' => 'Marrocos', 'MC' => 'Mónaco', - 'MD' => 'Moldova', + 'MD' => 'Moldavia', 'ME' => 'Montenegro', - 'MF' => 'San Martiño', + 'MF' => 'Saint-Martin', 'MG' => 'Madagascar', 'MH' => 'Illas Marshall', 'MK' => 'Macedonia', - 'ML' => 'Mali', + 'ML' => 'Malí', 'MM' => 'Myanmar (Birmania)', 'MN' => 'Mongolia', 'MO' => 'Macau RAE de China', - 'MP' => 'Illas Marianas do norte', + 'MP' => 'Illas Marianas do Norte', 'MQ' => 'Martinica', 'MR' => 'Mauritania', 'MS' => 'Montserrat', @@ -179,16 +179,16 @@ return array ( 'NP' => 'Nepal', 'NR' => 'Nauru', 'NU' => 'Niue', - 'NZ' => 'Nova Celandia', + 'NZ' => 'Nova Zelandia', 'OM' => 'Omán', 'PA' => 'Panamá', 'PE' => 'Perú', 'PF' => 'Polinesia Francesa', - 'PG' => 'Papúa Nova Guinea', + 'PG' => 'Papúa-Nova Guinea', 'PH' => 'Filipinas', 'PK' => 'Paquistán', 'PL' => 'Polonia', - 'PM' => 'San Pedro e Miguelón', + 'PM' => 'Saint Pierre e Miquelon', 'PN' => 'Illas Pitcairn', 'PR' => 'Porto Rico', 'PS' => 'Territorios palestinos', @@ -215,38 +215,38 @@ return array ( 'SM' => 'San Marino', 'SN' => 'Senegal', 'SO' => 'Somalia', - 'SR' => 'Surinam', + 'SR' => 'Suriname', 'SS' => 'Sudán do sur', 'ST' => 'San Tomé e Príncipe', - 'SV' => 'El Salvador', + 'SV' => 'O Salvador', 'SX' => 'Sint Maarten', 'SY' => 'Siria', 'SZ' => 'Suacilandia', 'TA' => 'Tristán da Cunha', 'TC' => 'Illas Turks e Caicos', 'TD' => 'Chad', - 'TF' => 'Territorios Franceses do Sul', + 'TF' => 'Territorios Austrais Franceses', 'TG' => 'Togo', 'TH' => 'Tailandia', 'TJ' => 'Taxiquistán', - 'TK' => 'Tokelau', + 'TK' => 'Toquelau', 'TL' => 'Timor Leste', - 'TM' => 'Turkmenistán', + 'TM' => 'Turcomenistán', 'TN' => 'Tunisia', 'TO' => 'Tonga', 'TR' => 'Turquía', - 'TT' => 'Trindade e Tobago', + 'TT' => 'Trinidad e Tobago', 'TV' => 'Tuvalu', 'TW' => 'Taiwán', 'TZ' => 'Tanzania', 'UA' => 'Ucraína', 'UG' => 'Uganda', - 'UM' => 'Illas Menores Distantes dos EUA.', + 'UM' => 'Illas Ultramarinas dos EUA', 'US' => 'Estados Unidos de América', 'UY' => 'Uruguai', 'UZ' => 'Uzbekistán', 'VA' => 'Cidade do Vaticano', - 'VC' => 'San Vicente e Granadinas', + 'VC' => 'San Vicente e as Granadinas', 'VE' => 'Venezuela', 'VG' => 'Illas Virxes Británicas', 'VI' => 'Illas Virxes Estadounidenses', @@ -257,7 +257,7 @@ return array ( 'XK' => 'Kosovo', 'YE' => 'Iemen', 'YT' => 'Mayotte', - 'ZA' => 'Sudáfrica', + 'ZA' => 'Suráfrica', 'ZM' => 'Zambia', 'ZW' => 'Cimbabue', ); diff --git a/vendor/giggsey/locale/data/gsw.php b/vendor/giggsey/locale/data/gsw.php index 9540d87cd..6bea251f8 100644 --- a/vendor/giggsey/locale/data/gsw.php +++ b/vendor/giggsey/locale/data/gsw.php @@ -1,6 +1,6 @@ 'કોસ્ટા રિકા', 'CU' => 'ક્યુબા', 'CV' => 'કૅપ વર્ડે', - 'CW' => 'કુરાકાઓ', + 'CW' => 'ક્યુરાસાઓ', 'CX' => 'ક્રિસમસ આઇલેન્ડ', 'CY' => 'સાયપ્રસ', 'CZ' => 'ચેક રીપબ્લિક', diff --git a/vendor/giggsey/locale/data/guz.php b/vendor/giggsey/locale/data/guz.php index e8cf4a316..7deaf0b93 100644 --- a/vendor/giggsey/locale/data/guz.php +++ b/vendor/giggsey/locale/data/guz.php @@ -1,6 +1,6 @@ 'ברזיל', 'BS' => 'איי בהאמה', 'BT' => 'בהוטן', - 'BW' => 'בוטסוואנה', + 'BW' => 'בוצוואנה', 'BY' => 'בלארוס', 'BZ' => 'בליז', 'CA' => 'קנדה', @@ -60,9 +60,9 @@ return array ( 'CU' => 'קובה', 'CV' => 'כף ורדה', 'CW' => 'קוראסאו', - 'CX' => 'אי חג המולד', + 'CX' => 'האי כריסטמס', 'CY' => 'קפריסין', - 'CZ' => 'צ׳כיה', + 'CZ' => 'הרפובליקה הצ׳כית', 'DE' => 'גרמניה', 'DG' => 'דייגו גרסיה', 'DJ' => 'ג׳יבוטי', @@ -84,7 +84,7 @@ return array ( 'FM' => 'מיקרונזיה', 'FO' => 'איי פארו', 'FR' => 'צרפת', - 'GA' => 'גאבון', + 'GA' => 'גבון', 'GB' => 'הממלכה המאוחדת', 'GD' => 'גרנדה', 'GE' => 'גאורגיה', @@ -94,16 +94,16 @@ return array ( 'GI' => 'גיברלטר', 'GL' => 'גרינלנד', 'GM' => 'גמביה', - 'GN' => 'גיניאה', + 'GN' => 'גינאה', 'GP' => 'גוואדלופ', - 'GQ' => 'גיניאה המשוונית', + 'GQ' => 'גינאה המשוונית', 'GR' => 'יוון', 'GS' => 'ג׳ורג׳יה הדרומית ואיי סנדוויץ׳ הדרומיים', 'GT' => 'גואטמלה', 'GU' => 'גואם', - 'GW' => 'גיניאה-ביסאו', + 'GW' => 'גינאה ביסאו', 'GY' => 'גיאנה', - 'HK' => 'הונג קונג - מחוז מנהלי מיוחד של סין', + 'HK' => 'הונג קונג (מחוז מנהלי מיוחד של סין)', 'HN' => 'הונדורס', 'HR' => 'קרואטיה', 'HT' => 'האיטי', @@ -154,9 +154,9 @@ return array ( 'MH' => 'איי מרשל', 'MK' => 'מקדוניה', 'ML' => 'מאלי', - 'MM' => 'מיאנמאר (בורמה)‎', + 'MM' => 'מיאנמר (בורמה)', 'MN' => 'מונגוליה', - 'MO' => 'מקאו - מחוז מנהלי מיוחד של סין', + 'MO' => 'מקאו (מחוז מנהלי מיוחד של סין)', 'MP' => 'איי מריאנה הצפוניים', 'MQ' => 'מרטיניק', 'MR' => 'מאוריטניה', @@ -184,8 +184,8 @@ return array ( 'PA' => 'פנמה', 'PE' => 'פרו', 'PF' => 'פולינזיה הצרפתית', - 'PG' => 'פפואה גיניאה החדשה', - 'PH' => 'פיליפינים', + 'PG' => 'פפואה גינאה החדשה', + 'PH' => 'הפיליפינים', 'PK' => 'פקיסטן', 'PL' => 'פולין', 'PM' => 'סנט פייר ומיקלון', @@ -193,7 +193,7 @@ return array ( 'PR' => 'פוארטו ריקו', 'PS' => 'השטחים הפלסטיניים', 'PT' => 'פורטוגל', - 'PW' => 'פאלאו', + 'PW' => 'פלאו', 'PY' => 'פרגוואי', 'QA' => 'קטאר', 'RE' => 'ראוניון', @@ -225,23 +225,23 @@ return array ( 'TA' => 'טריסטן דה קונה', 'TC' => 'איי טורקס וקאיקוס', 'TD' => 'צ׳אד', - 'TF' => 'טריטוריות דרומיות של צרפת', + 'TF' => 'הטריטוריות הדרומיות של צרפת', 'TG' => 'טוגו', 'TH' => 'תאילנד', 'TJ' => 'טג׳יקיסטן', 'TK' => 'טוקלאו', 'TL' => 'טימור לסטה', 'TM' => 'טורקמניסטן', - 'TN' => 'תוניסיה', + 'TN' => 'טוניסיה', 'TO' => 'טונגה', 'TR' => 'טורקיה', 'TT' => 'טרינידד וטובגו', - 'TV' => 'טובלו', + 'TV' => 'טובאלו', 'TW' => 'טייוואן', 'TZ' => 'טנזניה', 'UA' => 'אוקראינה', 'UG' => 'אוגנדה', - 'UM' => 'איים לחוף ארצות הברית', + 'UM' => 'האיים המרוחקים הקטנים של ארה״ב', 'US' => 'ארצות הברית', 'UY' => 'אורוגוואי', 'UZ' => 'אוזבקיסטן', @@ -259,5 +259,5 @@ return array ( 'YT' => 'מאיוט', 'ZA' => 'דרום אפריקה', 'ZM' => 'זמביה', - 'ZW' => 'זימבאבווה', + 'ZW' => 'זימבבואה', ); diff --git a/vendor/giggsey/locale/data/hi.php b/vendor/giggsey/locale/data/hi.php index 36d2b4db9..48ff533e5 100644 --- a/vendor/giggsey/locale/data/hi.php +++ b/vendor/giggsey/locale/data/hi.php @@ -1,6 +1,6 @@ 'कैनेरी द्वीपसमूह', 'ID' => 'इंडोनेशिया', 'IE' => 'आयरलैंड', - 'IL' => 'इसराइल', + 'IL' => 'इज़राइल', 'IM' => 'आइल ऑफ़ मैन', 'IN' => 'भारत', 'IO' => 'ब्रिटिश हिंद महासागरीय क्षेत्र', @@ -228,7 +228,7 @@ return array ( 'TF' => 'फ़्रांसीसी दक्षिणी क्षेत्र', 'TG' => 'टोगो', 'TH' => 'थाईलैंड', - 'TJ' => 'ताजिकिस्तान', + 'TJ' => 'ताज़िकिस्तान', 'TK' => 'तोकेलाउ', 'TL' => 'तिमोर-लेस्त', 'TM' => 'तुर्कमेनिस्तान', diff --git a/vendor/giggsey/locale/data/hr.php b/vendor/giggsey/locale/data/hr.php index 15b8d6b1a..4254ca146 100644 --- a/vendor/giggsey/locale/data/hr.php +++ b/vendor/giggsey/locale/data/hr.php @@ -1,6 +1,6 @@ 'Andora', 'AE' => 'Ujedinjeni Arapski Emirati', 'AF' => 'Afganistan', - 'AG' => 'Antigua i Barbuda', + 'AG' => 'Antigva i Barbuda', 'AI' => 'Angvila', 'AL' => 'Albanija', 'AM' => 'Armenija', @@ -22,7 +22,7 @@ return array ( 'AT' => 'Austrija', 'AU' => 'Australija', 'AW' => 'Aruba', - 'AX' => 'Otoci Aland', + 'AX' => 'Ålandski otoci', 'AZ' => 'Azerbajdžan', 'BA' => 'Bosna i Hercegovina', 'BB' => 'Barbados', @@ -33,8 +33,8 @@ return array ( 'BH' => 'Bahrein', 'BI' => 'Burundi', 'BJ' => 'Benin', - 'BL' => 'Sveti Bartolomej', - 'BM' => 'Bermuda', + 'BL' => 'Saint Barthélemy', + 'BM' => 'Bermudi', 'BN' => 'Brunej', 'BO' => 'Bolivija', 'BQ' => 'Karipski otoci Nizozemske', @@ -45,7 +45,7 @@ return array ( 'BY' => 'Bjelorusija', 'BZ' => 'Belize', 'CA' => 'Kanada', - 'CC' => 'Kokosovi (Keeling) Otoci', + 'CC' => 'Kokosovi (Keelingovi) otoci', 'CD' => 'Kongo - Kinshasa', 'CF' => 'Srednjoafrička Republika', 'CG' => 'Kongo - Brazzaville', @@ -60,7 +60,7 @@ return array ( 'CU' => 'Kuba', 'CV' => 'Zelenortska Republika', 'CW' => 'Curaçao', - 'CX' => 'Božićni Otok', + 'CX' => 'Božićni otok', 'CY' => 'Cipar', 'CZ' => 'Češka Republika', 'DE' => 'Njemačka', @@ -80,22 +80,22 @@ return array ( 'ET' => 'Etiopija', 'FI' => 'Finska', 'FJ' => 'Fidži', - 'FK' => 'Falklandski Otoci', + 'FK' => 'Falklandski otoci', 'FM' => 'Mikronezija', - 'FO' => 'Farski Otoci', + 'FO' => 'Farski otoci', 'FR' => 'Francuska', 'GA' => 'Gabon', - 'GB' => 'Velika Britanija', + 'GB' => 'Ujedinjeno Kraljevstvo', 'GD' => 'Grenada', 'GE' => 'Gruzija', - 'GF' => 'Francuska Gvajana', + 'GF' => 'Francuska Gijana', 'GG' => 'Guernsey', 'GH' => 'Gana', 'GI' => 'Gibraltar', 'GL' => 'Grenland', 'GM' => 'Gambija', 'GN' => 'Gvineja', - 'GP' => 'Guadalupa', + 'GP' => 'Guadalupe', 'GQ' => 'Ekvatorska Gvineja', 'GR' => 'Grčka', 'GS' => 'Južna Georgija i Južni Sendvički Otoci', @@ -103,18 +103,18 @@ return array ( 'GU' => 'Guam', 'GW' => 'Gvineja Bisau', 'GY' => 'Gvajana', - 'HK' => 'Hong Kong PUP Kina', + 'HK' => 'PUP Hong Kong Kina', 'HN' => 'Honduras', 'HR' => 'Hrvatska', 'HT' => 'Haiti', 'HU' => 'Mađarska', - 'IC' => 'Kanarski Otoci', + 'IC' => 'Kanarski otoci', 'ID' => 'Indonezija', 'IE' => 'Irska', 'IL' => 'Izrael', 'IM' => 'Otok Man', 'IN' => 'Indija', - 'IO' => 'Britanski Indijskooceanski Teritorij', + 'IO' => 'Britanski Indijskooceanski teritorij', 'IQ' => 'Irak', 'IR' => 'Iran', 'IS' => 'Island', @@ -132,7 +132,7 @@ return array ( 'KP' => 'Sjeverna Koreja', 'KR' => 'Južna Koreja', 'KW' => 'Kuvajt', - 'KY' => 'Kajmanski Otoci', + 'KY' => 'Kajmanski otoci', 'KZ' => 'Kazahstan', 'LA' => 'Laos', 'LB' => 'Libanon', @@ -149,17 +149,17 @@ return array ( 'MC' => 'Monako', 'MD' => 'Moldavija', 'ME' => 'Crna Gora', - 'MF' => 'Sveti Martin', + 'MF' => 'Saint Martin', 'MG' => 'Madagaskar', 'MH' => 'Maršalovi Otoci', 'MK' => 'Makedonija', 'ML' => 'Mali', - 'MM' => 'Mijanmar (Burma)', + 'MM' => 'Mjanmar (Burma)', 'MN' => 'Mongolija', - 'MO' => 'Makao PUP Kina', - 'MP' => 'Sjeverni Marijanski Otoci', + 'MO' => 'PUP Makao Kina', + 'MP' => 'Sjevernomarijanski otoci', 'MQ' => 'Martinique', - 'MR' => 'Mauritanija', + 'MR' => 'Mauretanija', 'MS' => 'Montserrat', 'MT' => 'Malta', 'MU' => 'Mauricijus', @@ -188,7 +188,7 @@ return array ( 'PH' => 'Filipini', 'PK' => 'Pakistan', 'PL' => 'Poljska', - 'PM' => 'Sveti Petar i Mikelon', + 'PM' => 'Saint-Pierre-et-Miquelon', 'PN' => 'Otoci Pitcairn', 'PR' => 'Portoriko', 'PS' => 'Palestinsko Područje', @@ -196,7 +196,7 @@ return array ( 'PW' => 'Palau', 'PY' => 'Paragvaj', 'QA' => 'Katar', - 'RE' => 'Reunion', + 'RE' => 'Réunion', 'RO' => 'Rumunjska', 'RS' => 'Srbija', 'RU' => 'Rusija', @@ -225,12 +225,12 @@ return array ( 'TA' => 'Tristan da Cunha', 'TC' => 'Otoci Turks i Caicos', 'TD' => 'Čad', - 'TF' => 'Francuske Južne i Antarktičke Zemlje', + 'TF' => 'Francuski južni i antarktički teritoriji', 'TG' => 'Togo', 'TH' => 'Tajland', 'TJ' => 'Tadžikistan', 'TK' => 'Tokelau', - 'TL' => 'Istočni Timor', + 'TL' => 'Timor-Leste', 'TM' => 'Turkmenistan', 'TN' => 'Tunis', 'TO' => 'Tonga', @@ -245,11 +245,11 @@ return array ( 'US' => 'Sjedinjene Američke Države', 'UY' => 'Urugvaj', 'UZ' => 'Uzbekistan', - 'VA' => 'Sveta Stolica', + 'VA' => 'Vatikanski Grad', 'VC' => 'Sveti Vincent i Grenadini', 'VE' => 'Venezuela', - 'VG' => 'Britanski Djevičanski Otoci', - 'VI' => 'Američki Djevičanski Otoci', + 'VG' => 'Britanski Djevičanski otoci', + 'VI' => 'Američki Djevičanski otoci', 'VN' => 'Vijetnam', 'VU' => 'Vanuatu', 'WF' => 'Wallis i Futuna', diff --git a/vendor/giggsey/locale/data/hsb.php b/vendor/giggsey/locale/data/hsb.php index 5db1681e0..a79638c0a 100644 --- a/vendor/giggsey/locale/data/hsb.php +++ b/vendor/giggsey/locale/data/hsb.php @@ -1,6 +1,6 @@ 'Bahama-szigetek', 'BT' => 'Bhután', 'BW' => 'Botswana', - 'BY' => 'Fehéroroszország', + 'BY' => 'Belarusz', 'BZ' => 'Belize', 'CA' => 'Kanada', - 'CC' => 'Kókusz-szigetek', + 'CC' => 'Kókusz (Keeling)-szigetek', 'CD' => 'Kongó - Kinshasa', 'CF' => 'Közép-afrikai Köztársaság', 'CG' => 'Kongó - Brazzaville', @@ -103,7 +103,7 @@ return array ( 'GU' => 'Guam', 'GW' => 'Bissau-Guinea', 'GY' => 'Guyana', - 'HK' => 'Hongkong SAR Kína', + 'HK' => 'Hongkong KKT', 'HN' => 'Honduras', 'HR' => 'Horvátország', 'HT' => 'Haiti', @@ -136,7 +136,7 @@ return array ( 'KZ' => 'Kazahsztán', 'LA' => 'Laosz', 'LB' => 'Libanon', - 'LC' => 'Santa Lucia', + 'LC' => 'Saint Lucia', 'LI' => 'Liechtenstein', 'LK' => 'Srí Lanka', 'LR' => 'Libéria', @@ -156,7 +156,7 @@ return array ( 'ML' => 'Mali', 'MM' => 'Mianmar (Burma)', 'MN' => 'Mongólia', - 'MO' => 'Makaó SAR Kína', + 'MO' => 'Makaó KKT', 'MP' => 'Északi Mariana-szigetek', 'MQ' => 'Martinique', 'MR' => 'Mauritánia', @@ -188,7 +188,7 @@ return array ( 'PH' => 'Fülöp-szigetek', 'PK' => 'Pakisztán', 'PL' => 'Lengyelország', - 'PM' => 'Saint Pierre és Miquelon', + 'PM' => 'Saint-Pierre és Miquelon', 'PN' => 'Pitcairn-szigetek', 'PR' => 'Puerto Rico', 'PS' => 'Palesztin Terület', @@ -196,7 +196,7 @@ return array ( 'PW' => 'Palau', 'PY' => 'Paraguay', 'QA' => 'Katar', - 'RE' => 'Reunion', + 'RE' => 'Réunion', 'RO' => 'Románia', 'RS' => 'Szerbia', 'RU' => 'Oroszország', @@ -209,7 +209,7 @@ return array ( 'SG' => 'Szingapúr', 'SH' => 'Szent Ilona', 'SI' => 'Szlovénia', - 'SJ' => 'Spitzbergák és Jan Mayen-szigetek', + 'SJ' => 'Svalbard és Jan Mayen', 'SK' => 'Szlovákia', 'SL' => 'Sierra Leone', 'SM' => 'San Marino', @@ -241,7 +241,7 @@ return array ( 'TZ' => 'Tanzánia', 'UA' => 'Ukrajna', 'UG' => 'Uganda', - 'UM' => 'Amerikai Csendes-óceáni Szigetek', + 'UM' => 'Az Amerikai Egyesült Államok lakatlan külbirtokai', 'US' => 'Egyesült Államok', 'UY' => 'Uruguay', 'UZ' => 'Üzbegisztán', @@ -252,7 +252,7 @@ return array ( 'VI' => 'Amerikai Virgin-szigetek', 'VN' => 'Vietnam', 'VU' => 'Vanuatu', - 'WF' => 'Wallis- és Futuna-szigetek', + 'WF' => 'Wallis és Futuna', 'WS' => 'Szamoa', 'XK' => 'Koszovó', 'YE' => 'Jemen', diff --git a/vendor/giggsey/locale/data/hy.php b/vendor/giggsey/locale/data/hy.php index 8c6d3e278..a4adba2f6 100644 --- a/vendor/giggsey/locale/data/hy.php +++ b/vendor/giggsey/locale/data/hy.php @@ -1,6 +1,6 @@ 'Արաբական Միացյալ Էմիրություններ', 'AF' => 'Աֆղանստան', 'AG' => 'Անտիգուա և Բարբուդա', - 'AI' => 'Անգիլյա', + 'AI' => 'Անգուիլա', 'AL' => 'Ալբանիա', 'AM' => 'Հայաստան', 'AO' => 'Անգոլա', @@ -33,13 +33,13 @@ return array ( 'BH' => 'Բահրեյն', 'BI' => 'Բուրունդի', 'BJ' => 'Բենին', - 'BL' => 'Սուրբ Բարդուղիմեոս', - 'BM' => 'Բերմուդյան կղզիներ', + 'BL' => 'Սեն Բարտելմի', + 'BM' => 'Բերմուդներ', 'BN' => 'Բրունեյ', 'BO' => 'Բոլիվիա', 'BQ' => 'Կարիբյան Նիդեռլանդներ', 'BR' => 'Բրազիլիա', - 'BS' => 'Բահամներ', + 'BS' => 'Բահամաներ', 'BT' => 'Բութան', 'BW' => 'Բոթսվանա', 'BY' => 'Բելառուս', @@ -50,7 +50,7 @@ return array ( 'CF' => 'Կենտրոնական Աֆրիկյան Հանրապետություն', 'CG' => 'Կոնգո - Բրազավիլ', 'CH' => 'Շվեյցարիա', - 'CI' => 'Կոտ Դ՛իվուար', + 'CI' => 'Կոտ դ’Իվուար', 'CK' => 'Կուկի կղզիներ', 'CL' => 'Չիլի', 'CM' => 'Կամերուն', @@ -60,12 +60,12 @@ return array ( 'CU' => 'Կուբա', 'CV' => 'Կաբո Վերդե', 'CW' => 'Կյուրասաո', - 'CX' => 'Ծննդյան կղզի', + 'CX' => 'Սուրբ Ծննդյան կղզի', 'CY' => 'Կիպրոս', 'CZ' => 'Չեխիա', 'DE' => 'Գերմանիա', 'DG' => 'Դիեգո Գարսիա', - 'DJ' => 'Ջիբուտի', + 'DJ' => 'Ջիբութի', 'DK' => 'Դանիա', 'DM' => 'Դոմինիկա', 'DO' => 'Դոմինիկյան Հանրապետություն', @@ -75,7 +75,7 @@ return array ( 'EE' => 'Էստոնիա', 'EG' => 'Եգիպտոս', 'EH' => 'Արևմտյան Սահարա', - 'ER' => 'Էրիտրեա', + 'ER' => 'Էրիթրեա', 'ES' => 'Իսպանիա', 'ET' => 'Եթովպիա', 'FI' => 'Ֆինլանդիա', @@ -85,7 +85,7 @@ return array ( 'FO' => 'Ֆարերյան կղզիներ', 'FR' => 'Ֆրանսիա', 'GA' => 'Գաբոն', - 'GB' => 'Մեծ Բրիտանիա', + 'GB' => 'Միացյալ Թագավորություն', 'GD' => 'Գրենադա', 'GE' => 'Վրաստան', 'GF' => 'Ֆրանսիական Գվիանա', @@ -101,12 +101,12 @@ return array ( 'GS' => 'Հարավային Ջորջիա և Հարավային Սենդվիչյան կղզիներ', 'GT' => 'Գվատեմալա', 'GU' => 'Գուամ', - 'GW' => 'Գվինեա-Բիսաու', + 'GW' => 'Գվինեա-Բիսսաու', 'GY' => 'Գայանա', 'HK' => 'Հոնկոնգի ՀՎՇ', 'HN' => 'Հոնդուրաս', 'HR' => 'Խորվաթիա', - 'HT' => 'Հաիթի', + 'HT' => 'Հայիթի', 'HU' => 'Հունգարիա', 'IC' => 'Կանարյան կղզիներ', 'ID' => 'Ինդոնեզիա', @@ -114,7 +114,7 @@ return array ( 'IL' => 'Իսրայել', 'IM' => 'Մեն կղզի', 'IN' => 'Հնդկաստան', - 'IO' => 'Հնդկական Օվկիանոսում Բրիտանական Տարածք', + 'IO' => 'Բրիտանական Տարածք Հնդկական Օվկիանոսում', 'IQ' => 'Իրաք', 'IR' => 'Իրան', 'IS' => 'Իսլանդիա', @@ -128,7 +128,7 @@ return array ( 'KH' => 'Կամբոջա', 'KI' => 'Կիրիբատի', 'KM' => 'Կոմորյան կղզիներ', - 'KN' => 'Սենթ Քիթս և Նեվիս', + 'KN' => 'Սենտ Քիտս և Նևիս', 'KP' => 'Հյուսիսային Կորեա', 'KR' => 'Հարավային Կորեա', 'KW' => 'Քուվեյթ', @@ -136,7 +136,7 @@ return array ( 'KZ' => 'Ղազախստան', 'LA' => 'Լաոս', 'LB' => 'Լիբանան', - 'LC' => 'Սենթ Լուսիա', + 'LC' => 'Սենթ Լյուսիա', 'LI' => 'Լիխտենշտեյն', 'LK' => 'Շրի Լանկա', 'LR' => 'Լիբերիա', @@ -160,7 +160,7 @@ return array ( 'MP' => 'Հյուսիսային Մարիանյան կղզիներ', 'MQ' => 'Մարտինիկա', 'MR' => 'Մավրիտանիա', - 'MS' => 'Մոնտսերատ', + 'MS' => 'Մոնսեռատ', 'MT' => 'Մալթա', 'MU' => 'Մավրիկիոս', 'MV' => 'Մալդիվներ', @@ -203,7 +203,7 @@ return array ( 'RW' => 'Ռուանդա', 'SA' => 'Սաուդյան Արաբիա', 'SB' => 'Սողոմոնյան կղզիներ', - 'SC' => 'Սեյշելյան կղզիներ', + 'SC' => 'Սեյշելներ', 'SD' => 'Սուդան', 'SE' => 'Շվեդիա', 'SG' => 'Սինգապուր', @@ -211,13 +211,13 @@ return array ( 'SI' => 'Սլովենիա', 'SJ' => 'Սվալբարդ և Յան Մայեն', 'SK' => 'Սլովակիա', - 'SL' => 'Սիերա Լեոնե', + 'SL' => 'Սիեռա Լեոնե', 'SM' => 'Սան Մարինո', 'SN' => 'Սենեգալ', 'SO' => 'Սոմալի', 'SR' => 'Սուրինամ', 'SS' => 'Հարավային Սուդան', - 'ST' => 'Սան Տոմե և Փրինսիփի', + 'ST' => 'Սան Տոմե և Փրինսիպի', 'SV' => 'Սալվադոր', 'SX' => 'Սինտ Մարտեն', 'SY' => 'Սիրիա', @@ -227,10 +227,10 @@ return array ( 'TD' => 'Չադ', 'TF' => 'Ֆրանսիական Հարավային Տարածքներ', 'TG' => 'Տոգո', - 'TH' => 'Թաիլանդ', + 'TH' => 'Թայլանդ', 'TJ' => 'Տաջիկստան', 'TK' => 'Տոկելաու', - 'TL' => 'Թիմոր-Լեստե', + 'TL' => 'Թիմոր Լեշտի', 'TM' => 'Թուրքմենստան', 'TN' => 'Թունիս', 'TO' => 'Տոնգա', @@ -238,18 +238,18 @@ return array ( 'TT' => 'Տրինիդադ և Տոբագո', 'TV' => 'Տուվալու', 'TW' => 'Թայվան', - 'TZ' => 'Թանզանիա', + 'TZ' => 'Տանզանիա', 'UA' => 'Ուկրաինա', 'UG' => 'Ուգանդա', 'UM' => 'Արտաքին կղզիներ (ԱՄՆ)', - 'US' => 'Ամերիկայի Միացյալ Նահանգներ', + 'US' => 'Միացյալ Նահանգներ', 'UY' => 'Ուրուգվայ', 'UZ' => 'Ուզբեկստան', - 'VA' => 'Վատիկան քաղաք-պետություն', + 'VA' => 'Վատիկան', 'VC' => 'Սենթ Վինսենթ և Գրենադիններ', 'VE' => 'Վենեսուելա', 'VG' => 'Բրիտանական Վիրջինյան կղզիներ', - 'VI' => 'Ամերիկյան Վիրջինյան կղզիներ', + 'VI' => 'ԱՄՆ Վիրջինյան կղզիներ', 'VN' => 'Վիետնամ', 'VU' => 'Վանուատու', 'WF' => 'Ուոլիս և Ֆուտունա', diff --git a/vendor/giggsey/locale/data/id.php b/vendor/giggsey/locale/data/id.php index 89bcf2dc7..1b40cdec4 100644 --- a/vendor/giggsey/locale/data/id.php +++ b/vendor/giggsey/locale/data/id.php @@ -1,6 +1,6 @@ 'Albania', 'AM' => 'Armenia', 'AO' => 'Angola', - 'AQ' => 'Antarktika', + 'AQ' => 'Antartika', 'AR' => 'Argentina', 'AS' => 'Samoa Amerika', 'AT' => 'Austria', @@ -33,7 +33,7 @@ return array ( 'BH' => 'Bahrain', 'BI' => 'Burundi', 'BJ' => 'Benin', - 'BL' => 'Saint Barthelemy', + 'BL' => 'Saint Barthélemy', 'BM' => 'Bermuda', 'BN' => 'Brunei', 'BO' => 'Bolivia', @@ -45,7 +45,7 @@ return array ( 'BY' => 'Belarus', 'BZ' => 'Belize', 'CA' => 'Kanada', - 'CC' => 'Kepulauan Cocos', + 'CC' => 'Kepulauan Cocos (Keeling)', 'CD' => 'Kongo - Kinshasa', 'CF' => 'Republik Afrika Tengah', 'CG' => 'Kongo - Brazzaville', @@ -85,7 +85,7 @@ return array ( 'FO' => 'Kepulauan Faroe', 'FR' => 'Prancis', 'GA' => 'Gabon', - 'GB' => 'Inggris', + 'GB' => 'Inggris Raya', 'GD' => 'Grenada', 'GE' => 'Georgia', 'GF' => 'Guyana Prancis', diff --git a/vendor/giggsey/locale/data/ig.php b/vendor/giggsey/locale/data/ig.php index 1400895b2..64b2e1bd9 100644 --- a/vendor/giggsey/locale/data/ig.php +++ b/vendor/giggsey/locale/data/ig.php @@ -1,6 +1,6 @@ 'Bermuda', 'BN' => 'Brunei', 'BO' => 'Bolivia', - 'BQ' => 'Caraibi Olandesi', + 'BQ' => 'Caraibi olandesi', 'BR' => 'Brasile', 'BS' => 'Bahamas', 'BT' => 'Bhutan', @@ -98,7 +98,7 @@ return array ( 'GP' => 'Guadalupa', 'GQ' => 'Guinea Equatoriale', 'GR' => 'Grecia', - 'GS' => 'Georgia del Sud e isole Sandwich australi', + 'GS' => 'Georgia del Sud e Sandwich australi', 'GT' => 'Guatemala', 'GU' => 'Guam', 'GW' => 'Guinea-Bissau', diff --git a/vendor/giggsey/locale/data/ja.php b/vendor/giggsey/locale/data/ja.php index 79704e0f3..5ebb87f27 100644 --- a/vendor/giggsey/locale/data/ja.php +++ b/vendor/giggsey/locale/data/ja.php @@ -1,6 +1,6 @@ 'カンボジア', 'KI' => 'キリバス', 'KM' => 'コモロ', - 'KN' => 'セントクリストファー・ネイビス', + 'KN' => 'セントクリストファー・ネーヴィス', 'KP' => '朝鮮民主主義人民共和国', 'KR' => '大韓民国', 'KW' => 'クウェート', @@ -142,7 +142,7 @@ return array ( 'LR' => 'リベリア', 'LS' => 'レソト', 'LT' => 'リトアニア', - 'LU' => 'ルクセンブルグ', + 'LU' => 'ルクセンブルク', 'LV' => 'ラトビア', 'LY' => 'リビア', 'MA' => 'モロッコ', @@ -178,7 +178,7 @@ return array ( 'NO' => 'ノルウェー', 'NP' => 'ネパール', 'NR' => 'ナウル', - 'NU' => 'ニウエ島', + 'NU' => 'ニウエ', 'NZ' => 'ニュージーランド', 'OM' => 'オマーン', 'PA' => 'パナマ', @@ -191,7 +191,7 @@ return array ( 'PM' => 'サンピエール島・ミクロン島', 'PN' => 'ピトケアン諸島', 'PR' => 'プエルトリコ', - 'PS' => 'パレスチナ', + 'PS' => 'パレスチナ自治区', 'PT' => 'ポルトガル', 'PW' => 'パラオ', 'PY' => 'パラグアイ', @@ -241,12 +241,12 @@ return array ( 'TZ' => 'タンザニア', 'UA' => 'ウクライナ', 'UG' => 'ウガンダ', - 'UM' => '米領太平洋諸島', + 'UM' => '合衆国領有小離島', 'US' => 'アメリカ合衆国', 'UY' => 'ウルグアイ', 'UZ' => 'ウズベキスタン', 'VA' => 'バチカン市国', - 'VC' => 'セントビンセント・グレナディーン諸島', + 'VC' => 'セントビンセント及びグレナディーン諸島', 'VE' => 'ベネズエラ', 'VG' => '英領ヴァージン諸島', 'VI' => '米領ヴァージン諸島', diff --git a/vendor/giggsey/locale/data/jgo.php b/vendor/giggsey/locale/data/jgo.php index 9f6d6ff2f..efbbf58a0 100644 --- a/vendor/giggsey/locale/data/jgo.php +++ b/vendor/giggsey/locale/data/jgo.php @@ -1,6 +1,6 @@ 'არაბთა გაერთიანებული საამიროები', 'AF' => 'ავღანეთი', 'AG' => 'ანტიგუა და ბარბუდა', - 'AI' => 'ანგილია', + 'AI' => 'ანგვილა', 'AL' => 'ალბანეთი', 'AM' => 'სომხეთი', 'AO' => 'ანგოლა', @@ -34,18 +34,18 @@ return array ( 'BI' => 'ბურუნდი', 'BJ' => 'ბენინი', 'BL' => 'სენ-ბართელმი', - 'BM' => 'ბერმუდი', + 'BM' => 'ბერმუდა', 'BN' => 'ბრუნეი', 'BO' => 'ბოლივია', 'BQ' => 'კარიბის ნიდერლანდები', 'BR' => 'ბრაზილია', 'BS' => 'ბაჰამის კუნძულები', - 'BT' => 'ბჰუტანი', + 'BT' => 'ბუტანი', 'BW' => 'ბოტსვანა', 'BY' => 'ბელარუსი', 'BZ' => 'ბელიზი', 'CA' => 'კანადა', - 'CC' => 'ქოქოსის კუნძულები', + 'CC' => 'ქოქოსის (კილინგის) კუნძულები', 'CD' => 'კონგო - კინშასა', 'CF' => 'ცენტრალური აფრიკის რესპუბლიკა', 'CG' => 'კონგო - ბრაზავილი', @@ -74,7 +74,7 @@ return array ( 'EC' => 'ეკვადორი', 'EE' => 'ესტონეთი', 'EG' => 'ეგვიპტე', - 'EH' => 'დასავლეთი საჰარა', + 'EH' => 'დასავლეთ საჰარა', 'ER' => 'ერიტრეა', 'ES' => 'ესპანეთი', 'ET' => 'ეთიოპია', @@ -85,7 +85,7 @@ return array ( 'FO' => 'ფარერის კუნძულები', 'FR' => 'საფრანგეთი', 'GA' => 'გაბონი', - 'GB' => 'დიდი ბრიტანეთი', + 'GB' => 'გაერთიანებული სამეფო', 'GD' => 'გრენადა', 'GE' => 'საქართველო', 'GF' => 'საფრანგეთის გვიანა', @@ -98,7 +98,7 @@ return array ( 'GP' => 'გვადელუპა', 'GQ' => 'ეკვატორული გვინეა', 'GR' => 'საბერძნეთი', - 'GS' => 'სამხრეთი გეორგია და სამხრეთ სენდვიჩის კუნძულები', + 'GS' => 'სამხრეთ ჯორჯია და სამხრეთ სენდვიჩის კუნძულები', 'GT' => 'გვატემალა', 'GU' => 'გუამი', 'GW' => 'გვინეა-ბისაუ', @@ -114,7 +114,7 @@ return array ( 'IL' => 'ისრაელი', 'IM' => 'მენის კუნძული', 'IN' => 'ინდოეთი', - 'IO' => 'ბრიტ. ტერიტ. ინდ. ოკეანეში', + 'IO' => 'ბრიტანეთის ტერიტორია ინდოეთის ოკეანეში', 'IQ' => 'ერაყი', 'IR' => 'ირანი', 'IS' => 'ისლანდია', @@ -129,8 +129,8 @@ return array ( 'KI' => 'კირიბატი', 'KM' => 'კომორის კუნძულები', 'KN' => 'სენტ-კიტსი და ნევისი', - 'KP' => 'ჩრდილოეთი კორეა', - 'KR' => 'სამხრეთი კორეა', + 'KP' => 'ჩრდილოეთ კორეა', + 'KR' => 'სამხრეთ კორეა', 'KW' => 'ქუვეითი', 'KY' => 'კაიმანის კუნძულები', 'KZ' => 'ყაზახეთი', @@ -163,7 +163,7 @@ return array ( 'MS' => 'მონსერატი', 'MT' => 'მალტა', 'MU' => 'მავრიკი', - 'MV' => 'მალდივის რესპუბლიკა', + 'MV' => 'მალდივები', 'MW' => 'მალავი', 'MX' => 'მექსიკა', 'MY' => 'მალაიზია', @@ -216,21 +216,21 @@ return array ( 'SN' => 'სენეგალი', 'SO' => 'სომალი', 'SR' => 'სურინამი', - 'SS' => 'სამხრეთი სუდანი', + 'SS' => 'სამხრეთ სუდანი', 'ST' => 'სან-ტომე და პრინსიპი', 'SV' => 'სალვადორი', 'SX' => 'სინტ-მარტენი', 'SY' => 'სირია', 'SZ' => 'სვაზილენდი', 'TA' => 'ტრისტან-და-კუნია', - 'TC' => 'ტერქსისა და კაიკოსის კუნძულები', + 'TC' => 'თერქს-ქაიქოსის კუნძულები', 'TD' => 'ჩადი', 'TF' => 'ფრანგული სამხრეთის ტერიტორიები', 'TG' => 'ტოგო', 'TH' => 'ტაილანდი', 'TJ' => 'ტაჯიკეთი', 'TK' => 'ტოკელაუ', - 'TL' => 'აღმოსავლეთი ტიმორი', + 'TL' => 'ტიმორ-ლესტე', 'TM' => 'თურქმენეთი', 'TN' => 'ტუნისი', 'TO' => 'ტონგა', diff --git a/vendor/giggsey/locale/data/kab.php b/vendor/giggsey/locale/data/kab.php index c300c2d8c..98ce308f3 100644 --- a/vendor/giggsey/locale/data/kab.php +++ b/vendor/giggsey/locale/data/kab.php @@ -1,6 +1,6 @@ 'Ilha di Asensãu', 'AD' => 'Andora', - 'AE' => 'Emiradus Arabi Unidu', + 'AE' => 'Emiradus Árabi Unidu', 'AF' => 'Afeganistãu', 'AG' => 'Antigua i Barbuda', 'AI' => 'Angila', - 'AL' => 'Albania', - 'AM' => 'Armenia', + 'AL' => 'Albánia', + 'AM' => 'Arménia', 'AO' => 'Angola', - 'AQ' => 'Antartika', + 'AQ' => 'Antártika', 'AR' => 'Arjentina', 'AS' => 'Samoa Merkanu', - 'AT' => 'Austria', - 'AU' => 'Australia', + 'AT' => 'Áustria', + 'AU' => 'Austrália', 'AW' => 'Aruba', 'AX' => 'Ilhas Åland', 'AZ' => 'Azerbaijãu', - 'BA' => 'Bosnia-Erzegovina', + 'BA' => 'Bósnia i Erzegovina', 'BB' => 'Barbadus', 'BD' => 'Bangladexi', 'BE' => 'Béljika', 'BF' => 'Burkina Fasu', - 'BG' => 'Bulgaria', + 'BG' => 'Bulgária', 'BH' => 'Barain', 'BI' => 'Burundi', 'BJ' => 'Benin', @@ -45,7 +45,7 @@ return array ( 'BY' => 'Belarus', 'BZ' => 'Belizi', 'CA' => 'Kanadá', - 'CC' => 'Ilhas Kokus', + 'CC' => 'Ilhas Kokus (Keeling)', 'CD' => 'Kongu - Kinxasa', 'CF' => 'Republika Sentru-Afrikanu', 'CG' => 'Kongu - Brazavili', @@ -62,69 +62,69 @@ return array ( 'CW' => 'Kurasau', 'CX' => 'Ilha di Natal', 'CY' => 'Xipri', - 'CZ' => 'Republika Txeka', + 'CZ' => 'Repúblika Txeka', 'DE' => 'Alimanha', 'DG' => 'Diegu Garsia', 'DJ' => 'Djibuti', 'DK' => 'Dinamarka', 'DM' => 'Dominika', 'DO' => 'Repúblika Dominikana', - 'DZ' => 'Arjelia', - 'EA' => 'Seuta i Melila', + 'DZ' => 'Arjélia', + 'EA' => 'Seuta i Melilha', 'EC' => 'Ekuador', - 'EE' => 'Stonia', + 'EE' => 'Stónia', 'EG' => 'Ejitu', 'EH' => 'Sara Osidental', 'ER' => 'Iritreia', 'ES' => 'Spanha', - 'ET' => 'Itiopia', - 'FI' => 'Finlandia', + 'ET' => 'Etiópia', + 'FI' => 'Finlándia', 'FJ' => 'Fidji', 'FK' => 'Ilhas Malvinas', - 'FM' => 'Mikronezia', + 'FM' => 'Mikronézia', 'FO' => 'Ilhas Faroe', 'FR' => 'Fransa', 'GA' => 'Gabãu', 'GB' => 'Reinu Unidu', 'GD' => 'Granada', - 'GE' => 'Jiorjia', + 'GE' => 'Jiórjia', 'GF' => 'Giana Franseza', 'GG' => 'Gernzi', 'GH' => 'Gana', 'GI' => 'Jibraltar', 'GL' => 'Gronelándia', - 'GM' => 'Gambia', + 'GM' => 'Gámbia', 'GN' => 'Gine', 'GP' => 'Guadalupi', 'GQ' => 'Gine Ekuatorial', - 'GR' => 'Gresia', - 'GS' => 'Jeórjia di Sul i Ilhas di Sanduixi di Sul', + 'GR' => 'Grésia', + 'GS' => 'Ilhas Jeórjia di Sul i Sanduixi di Sul', 'GT' => 'Guatimala', 'GU' => 'Guam', 'GW' => 'Gine-Bisau', 'GY' => 'Giana', - 'HK' => 'Rejiãu Administrativu Special di Hong Kong', + 'HK' => 'Rejiãu Administrativu Spesial di Hong Kong', 'HN' => 'Onduras', - 'HR' => 'Kroasia', + 'HR' => 'Kroásia', 'HT' => 'Aití', 'HU' => 'Ungria', 'IC' => 'Kanárias', - 'ID' => 'Indonezia', + 'ID' => 'Indonézia', 'IE' => 'Irlanda', 'IL' => 'Israel', 'IM' => 'Ilha di Man', - 'IN' => 'India', - 'IO' => 'Ilhas Britanika di Indiku', + 'IN' => 'Índia', + 'IO' => 'Ilhas Británikas di Índiku', 'IQ' => 'Iraki', - 'IR' => 'Iron', - 'IS' => 'Islandia', - 'IT' => 'Italia', + 'IR' => 'Irãu', + 'IS' => 'Islándia', + 'IT' => 'Itália', 'JE' => 'Jersi', 'JM' => 'Jamaika', - 'JO' => 'Jordania', + 'JO' => 'Jordánia', 'JP' => 'Japãu', - 'KE' => 'Kenia', - 'KG' => 'Kirgiston', + 'KE' => 'Kénia', + 'KG' => 'Kirgistãu', 'KH' => 'Kambodja', 'KI' => 'Kiribati', 'KM' => 'Kamoris', @@ -135,59 +135,59 @@ return array ( 'KY' => 'Ilhas Kaimãu', 'KZ' => 'Kazakistãu', 'LA' => 'Laus', - 'LB' => 'Libanu', + 'LB' => 'Líbanu', 'LC' => 'Santa Lúsia', 'LI' => 'Lixenstain', 'LK' => 'Sri Lanka', - 'LR' => 'Liberia', + 'LR' => 'Libéria', 'LS' => 'Lezotu', - 'LT' => 'Lituania', + 'LT' => 'Lituánia', 'LU' => 'Luxemburgu', - 'LV' => 'Letonia', - 'LY' => 'Libia', + 'LV' => 'Letónia', + 'LY' => 'Líbia', 'MA' => 'Marokus', - 'MC' => 'Monaku', - 'MD' => 'Moldavia', + 'MC' => 'Mónaku', + 'MD' => 'Moldávia', 'ME' => 'Montenegru', 'MF' => 'Sãu Martinhu di Fransa', 'MG' => 'Madagaskar', 'MH' => 'Ilhas Marxal', - 'MK' => 'Masidonia', + 'MK' => 'Masidónia', 'ML' => 'Mali', - 'MM' => 'Mianmar', - 'MN' => 'Mongolia', - 'MO' => 'Rejiãu Administrativu Special di Makau', + 'MM' => 'Mianmar (Birmánia)', + 'MN' => 'Mongólia', + 'MO' => 'Rejiãu Administrativu Spesial di Makau', 'MP' => 'Ilhas Marianas di Norti', 'MQ' => 'Martinika', - 'MR' => 'Mauritania', + 'MR' => 'Mauritánia', 'MS' => 'Monserat', 'MT' => 'Malta', - 'MU' => 'Ilhas Maurisia', + 'MU' => 'Maurísia', 'MV' => 'Maldivas', 'MW' => 'Malaui', 'MX' => 'Méxiku', - 'MY' => 'Malazia', + 'MY' => 'Malázia', 'MZ' => 'Musambiki', - 'NA' => 'Namibia', - 'NC' => 'Nova Kalidonia', + 'NA' => 'Namíbia', + 'NC' => 'Nova Kalidónia', 'NE' => 'Nijer', 'NF' => 'Ilhas Norfolk', - 'NG' => 'Nijeria', + 'NG' => 'Nijéria', 'NI' => 'Nikarágua', 'NL' => 'Olanda', 'NO' => 'Noruega', 'NP' => 'Nepal', 'NR' => 'Nauru', 'NU' => 'Niue', - 'NZ' => 'Nova Zilandia', + 'NZ' => 'Nova Zilándia', 'OM' => 'Oman', 'PA' => 'Panamá', 'PE' => 'Peru', - 'PF' => 'Polinezia Franseza', + 'PF' => 'Polinézia Franseza', 'PG' => 'Papua-Nova Gine', 'PH' => 'Filipinas', 'PK' => 'Pakistãu', - 'PL' => 'Pulonia', + 'PL' => 'Pulónia', 'PM' => 'San Piere i Mikelon', 'PN' => 'Pirkairn', 'PR' => 'Portu Riku', @@ -196,50 +196,50 @@ return array ( 'PW' => 'Palau', 'PY' => 'Paraguai', 'QA' => 'Katar', - 'RE' => 'Runion', - 'RO' => 'Romenia', - 'RS' => 'Servia', + 'RE' => 'Runiãu', + 'RO' => 'Ruménia', + 'RS' => 'Sérvia', 'RU' => 'Rúsia', 'RW' => 'Ruanda', - 'SA' => 'Arabia Saudita', - 'SB' => 'Ilhas Salumon', + 'SA' => 'Arábia Saudita', + 'SB' => 'Ilhas Salumãu', 'SC' => 'Seixelis', 'SD' => 'Sudãu', - 'SE' => 'Suesia', + 'SE' => 'Suésia', 'SG' => 'Singapura', 'SH' => 'Santa Ilena', - 'SI' => 'Slovenia', + 'SI' => 'Slovénia', 'SJ' => 'Svalbard i Jan Maien', - 'SK' => 'Slovakia', + 'SK' => 'Slovákia', 'SL' => 'Sera Lioa', 'SM' => 'San Marinu', 'SN' => 'Senegal', - 'SO' => 'Sumalia', + 'SO' => 'Sumália', 'SR' => 'Surinami', 'SS' => 'Sudãu di Sul', - 'ST' => 'Sãu Tume i Prinsipi', + 'ST' => 'Sãu Tume i Prínsipi', 'SV' => 'El Salvador', 'SX' => 'Sãu Martinhu di Olanda', - 'SY' => 'Siria', + 'SY' => 'Síria', 'SZ' => 'Suazilándia', 'TA' => 'Tristan da Kunha', 'TC' => 'Ilhas Turkas i Kaikus', 'TD' => 'Txadi', 'TF' => 'Terras Franses di Sul', 'TG' => 'Togu', - 'TH' => 'Tailandia', + 'TH' => 'Tailándia', 'TJ' => 'Tadjikistãu', 'TK' => 'Tokelau', 'TL' => 'Timor Lesti', 'TM' => 'Turkumenistãu', - 'TN' => 'Tunizia', + 'TN' => 'Tunízia', 'TO' => 'Tonga', 'TR' => 'Turkia', 'TT' => 'Trinidad i Tobagu', 'TV' => 'Tuvalu', 'TW' => 'Taiuan', - 'TZ' => 'Tanzania', - 'UA' => 'Ukrania', + 'TZ' => 'Tanzánia', + 'UA' => 'Ukránia', 'UG' => 'Uganda', 'UM' => 'Ilhas Minoris Distantis de Stadus Unidus', 'US' => 'Stadus Unidos di Merka', @@ -248,16 +248,16 @@ return array ( 'VA' => 'Vatikanu', 'VC' => 'Sãu Bisenti i Granadinas', 'VE' => 'Vinizuela', - 'VG' => 'Ilhas Virjens Britanikas', + 'VG' => 'Ilhas Virjens Británikas', 'VI' => 'Ilhas Virjens Merkanas', 'VN' => 'Vietnam', 'VU' => 'Vanuatu', 'WF' => 'Ualis i Futuna', 'WS' => 'Samoa', 'XK' => 'Kozovu', - 'YE' => 'Iemen', + 'YE' => 'Iémen', 'YT' => 'Maiote', - 'ZA' => 'Afrika di Sul', - 'ZM' => 'Zambia', - 'ZW' => 'Zimbabui', + 'ZA' => 'Áfrika di Sul', + 'ZM' => 'Zámbia', + 'ZW' => 'Zimbábui', ); diff --git a/vendor/giggsey/locale/data/khq.php b/vendor/giggsey/locale/data/khq.php index 29e9b8266..0d4907ea0 100644 --- a/vendor/giggsey/locale/data/khq.php +++ b/vendor/giggsey/locale/data/khq.php @@ -1,6 +1,6 @@ 'Андорра', 'AE' => 'Біріккен Араб Әмірліктері', 'AF' => 'Ауғанстан', - 'AG' => 'Антигуа мен Барбуда', + 'AG' => 'Антигуа және Барбуда', 'AI' => 'Ангилья', 'AL' => 'Албания', 'AM' => 'Армения', 'AO' => 'Ангола', - 'AQ' => 'Антарктика', + 'AQ' => 'Антарктида', 'AR' => 'Аргентина', - 'AS' => 'Американдық Самоа', + 'AS' => 'Америкалық Самоа', 'AT' => 'Австрия', 'AU' => 'Австралия', 'AW' => 'Аруба', @@ -60,7 +60,7 @@ return array ( 'CU' => 'Куба', 'CV' => 'Кабо-Верде', 'CW' => 'Кюрасао', - 'CX' => 'Кристмас аралы', + 'CX' => 'Рождество аралы', 'CY' => 'Кипр', 'CZ' => 'Чех Республикасы', 'DE' => 'Германия', @@ -70,7 +70,7 @@ return array ( 'DM' => 'Доминика', 'DO' => 'Доминикан Республикасы', 'DZ' => 'Алжир', - 'EA' => 'Сеута мен Мелилья', + 'EA' => 'Сеута және Мелилья', 'EC' => 'Эквадор', 'EE' => 'Эстония', 'EG' => 'Мысыр', @@ -85,7 +85,7 @@ return array ( 'FO' => 'Фарер аралдары', 'FR' => 'Франция', 'GA' => 'Габон', - 'GB' => 'Біріккен Корольдік', + 'GB' => 'Ұлыбритания', 'GD' => 'Гренада', 'GE' => 'Грузия', 'GF' => 'Француз Гвианасы', @@ -97,13 +97,13 @@ return array ( 'GN' => 'Гвинея', 'GP' => 'Гваделупа', 'GQ' => 'Экваторлық Гвинея', - 'GR' => 'Греция', + 'GR' => 'Грекия', 'GS' => 'Оңтүстік Георгия және Оңтүстік Сандвич аралдары', 'GT' => 'Гватемала', 'GU' => 'Гуам', 'GW' => 'Гвинея-Бисау', 'GY' => 'Гайана', - 'HK' => 'Қытай Халық Республикасының Гонг-Конг арнайы әкімшілік ауданы', + 'HK' => 'Қытай Халық Республикасының Гонконг арнайы әкімшілік ауданы', 'HN' => 'Гондурас', 'HR' => 'Хорватия', 'HT' => 'Гаити', @@ -127,7 +127,7 @@ return array ( 'KG' => 'Қырғызстан', 'KH' => 'Камбоджа', 'KI' => 'Кирибати', - 'KM' => 'Комор', + 'KM' => 'Комор аралдары', 'KN' => 'Сент-Китс және Невис', 'KP' => 'Солтүстік Корея', 'KR' => 'Оңтүстік Корея', @@ -145,7 +145,7 @@ return array ( 'LU' => 'Люксембург', 'LV' => 'Латвия', 'LY' => 'Ливия', - 'MA' => 'Морокко', + 'MA' => 'Марокко', 'MC' => 'Монако', 'MD' => 'Молдова', 'ME' => 'Черногория', @@ -157,13 +157,13 @@ return array ( 'MM' => 'Мьянма (Бирма)', 'MN' => 'Моңғолия', 'MO' => 'Қытай Халық Республикасының Макао арнайы әкімшілік ауданы', - 'MP' => 'Солтүстік Мариан аралдары', + 'MP' => 'Солтүстік Мариана аралдары', 'MQ' => 'Мартиника', 'MR' => 'Мавритания', 'MS' => 'Монтсеррат', 'MT' => 'Мальта', 'MU' => 'Маврикий', - 'MV' => 'Мальдив Республикасы', + 'MV' => 'Мальдив аралдары', 'MW' => 'Малави', 'MX' => 'Мексика', 'MY' => 'Малайзия', @@ -209,7 +209,7 @@ return array ( 'SG' => 'Сингапур', 'SH' => 'Әулие Елена аралы', 'SI' => 'Словения', - 'SJ' => 'Шпицберген мен Ян-Майен', + 'SJ' => 'Шпицберген және Ян-Майен', 'SK' => 'Словакия', 'SL' => 'Сьерра-Леоне', 'SM' => 'Сан-Марино', @@ -217,7 +217,7 @@ return array ( 'SO' => 'Сомали', 'SR' => 'Суринам', 'SS' => 'Оңтүстік Судан', - 'ST' => 'Сан-Томе мен Принсипи', + 'ST' => 'Сан-Томе және Принсипи', 'SV' => 'Сальвадор', 'SX' => 'Синт-Мартен', 'SY' => 'Сирия', @@ -235,14 +235,14 @@ return array ( 'TN' => 'Тунис', 'TO' => 'Тонга', 'TR' => 'Түркия', - 'TT' => 'Тринидад пен Тобаго', + 'TT' => 'Тринидад және Тобаго', 'TV' => 'Тувалу', 'TW' => 'Тайвань', 'TZ' => 'Танзания', 'UA' => 'Украина', 'UG' => 'Уганда', 'UM' => 'АҚШ-тың сыртқы кіші аралдары', - 'US' => 'АҚШ', + 'US' => 'Америка Құрама Штаттары', 'UY' => 'Уругвай', 'UZ' => 'Өзбекстан', 'VA' => 'Ватикан', @@ -252,7 +252,7 @@ return array ( 'VI' => 'АҚШ-тың Виргин аралдары', 'VN' => 'Вьетнам', 'VU' => 'Вануату', - 'WF' => 'Уоллис пен Футуна', + 'WF' => 'Уоллис және Футуна', 'WS' => 'Самоа', 'XK' => 'Косово', 'YE' => 'Йемен', diff --git a/vendor/giggsey/locale/data/kkj.php b/vendor/giggsey/locale/data/kkj.php index e0cbe3229..75e7ef158 100644 --- a/vendor/giggsey/locale/data/kkj.php +++ b/vendor/giggsey/locale/data/kkj.php @@ -1,6 +1,6 @@ 'អង់ដូរ៉ា', 'AE' => 'អារ៉ាប់រួម', 'AF' => 'អាហ្វហ្គានីស្ថាន', - 'AG' => 'អង់ទីគ័រ និង​បាបុយដា', - 'AI' => 'អង់កូឡា', + 'AG' => 'អង់ទីហ្គា និង បាប៊ុយដា', + 'AI' => 'អង់ហ្គីឡា', 'AL' => 'អាល់បានី', - 'AM' => 'អារមេនី', + 'AM' => 'អាមេនី', 'AO' => 'អង់ហ្គោឡា', 'AQ' => 'អង់តាក់ទិក', 'AR' => 'អាហ្សង់ទីន', - 'AS' => 'សាម៉ូអាអាមេរិក', + 'AS' => 'សាម័រ អាមេរិកាំង', 'AT' => 'អូទ្រីស', 'AU' => 'អូស្ត្រាលី', 'AW' => 'អារូបា', 'AX' => 'កោះ​អាឡាំង', - 'AZ' => 'អាហ៊្សែរបែហ្សង់', + 'AZ' => 'អាស៊ែបៃហ្សង់', 'BA' => 'បូស្នី និងហឺហ្សីហ្គូវីណា', - 'BB' => 'បារបាដូស', - 'BD' => 'បង់ក្លាដេស្ហ', - 'BE' => 'បែលហ្ស៉ិក', - 'BF' => 'ប៊ូរគីណាហ្វាសូ', + 'BB' => 'បាបាដុស', + 'BD' => 'បង់ក្លាដែស', + 'BE' => 'បែលហ្ស៊ិក', + 'BF' => 'បួគីណាហ្វាសូ', 'BG' => 'ប៊ុលហ្គារី', 'BH' => 'បារ៉ែន', 'BI' => 'ប៊ូរុនឌី', @@ -45,7 +45,7 @@ return array ( 'BY' => 'បេឡារុស្ស', 'BZ' => 'បេលីហ្ស', 'CA' => 'កាណាដា', - 'CC' => 'កោះ​កូកូស', + 'CC' => 'កោះ​កូកូស (គីលីង)', 'CD' => 'កុងហ្គោ- គីនស្ហាសា', 'CF' => 'សាធារណរដ្ឋអាហ្វ្រិកកណ្ដាល', 'CG' => 'កុងហ្គោ - ប្រាហ្សាវីល', @@ -61,14 +61,14 @@ return array ( 'CV' => 'កាបវែរ', 'CW' => 'កូរ៉ាកៅ', 'CX' => 'កោះ​គ្រីស្មាស', - 'CY' => 'ស៊ីពរ៍', + 'CY' => 'ស៊ីប', 'CZ' => 'សាធារណរដ្ឋឆេក', 'DE' => 'អាល្លឺម៉ង់', 'DG' => 'ឌៀហ្គោហ្គាស៊ី', - 'DJ' => 'ហ្ស៊ីបូទី', + 'DJ' => 'ជីប៊ូទី', 'DK' => 'ដាណឺម៉ាក', - 'DM' => 'ដូមីនីកា', - 'DO' => 'សាធារណរដ្ឋដូមីនីកែន', + 'DM' => 'ដូមីនីក', + 'DO' => 'សាធារណរដ្ឋ​ដូមីនីក', 'DZ' => 'អាល់ហ្សេរី', 'EA' => 'ជឺតា និង​ម៉េលីឡា', 'EC' => 'អេក្វាឌ័រ', @@ -81,13 +81,13 @@ return array ( 'FI' => 'ហ្វាំងឡង់', 'FJ' => 'ហ្វីជី', 'FK' => 'កោះ​ហ្វក់ឡែន', - 'FM' => 'មីក្រូនេស៊ី', + 'FM' => 'មីក្រូណេស៊ី', 'FO' => 'កោះ​ហ្វារ៉ូ', 'FR' => 'បារាំង', 'GA' => 'ហ្គាបុង', 'GB' => 'ចក្រភព​អង់គ្លេស', 'GD' => 'ហ្គ្រីណាដា', - 'GE' => 'ហ្សកហ្ស៉ី', + 'GE' => 'ហ្សកហ្ស៊ី', 'GF' => 'ហ្គៀណាបារាំង', 'GG' => 'ហ្គេនស៊ី', 'GH' => 'ហ្គាណា', @@ -97,14 +97,14 @@ return array ( 'GN' => 'ហ្គីណេ', 'GP' => 'ហ្គោដឺឡុប', 'GQ' => 'ហ្គីណេអេក្វាទ័រ', - 'GR' => 'ក្រិច', - 'GS' => 'កោះ​ហ្សកហ្ស៊ី​ខាង​ត្បូង និង​សាន់វិច​ខាង​ត្បូង', + 'GR' => 'ក្រិក', + 'GS' => 'កោះ​ហ្សកហ្ស៊ី​ខាង​ត្បូង និង សាន់វិច​ខាង​ត្បូង', 'GT' => 'ហ្គាតេម៉ាឡា', 'GU' => 'ហ្គាំ', 'GW' => 'ហ្គីណេប៊ីសូ', 'GY' => 'ហ្គីយ៉ាណា', 'HK' => 'ហុងកុង', - 'HN' => 'ហុងឌួរ៉ាស់', + 'HN' => 'ហុងឌូរ៉ាស', 'HR' => 'ក្រូអាត', 'HT' => 'ហៃទី', 'HU' => 'ហុងគ្រី', @@ -114,7 +114,7 @@ return array ( 'IL' => 'អ៊ីស្រាអែល', 'IM' => 'អែលអុហ្វមែន', 'IN' => 'ឥណ្ឌា', - 'IO' => 'ដែន​មហា​សមុទ្រ​ឥណ្ឌា ចក្រភព​អង់គ្លេស', + 'IO' => 'ដែនដី​អង់គ្លេស​នៅ​មហា​សមុទ្រ​ឥណ្ឌា', 'IQ' => 'អ៊ីរ៉ាក់', 'IR' => 'អ៊ីរ៉ង់', 'IS' => 'អ៊ីស្លង់', @@ -124,33 +124,33 @@ return array ( 'JO' => 'ហ៊្សកដានី', 'JP' => 'ជប៉ុន', 'KE' => 'កេនយ៉ា', - 'KG' => 'គៀរហ្គីស្តង់', + 'KG' => 'កៀហ្ស៊ីស៊ីស្ថាន', 'KH' => 'កម្ពុជា', 'KI' => 'គិរិបាទី', - 'KM' => 'កុំម៉ូរ៉ូស', + 'KM' => 'កូម័រ', 'KN' => 'សង់ឃីត និង​ណេវីស', 'KP' => 'កូរ៉េ​ខាង​ជើង', 'KR' => 'កូរ៉េ​ខាង​ត្បូង', 'KW' => 'គុយវ៉ែត', 'KY' => 'កោះ​កៃម៉ង់', - 'KZ' => 'កាហ្សាក់ស្តង់់', + 'KZ' => 'កាហ្សាក់ស្ថាន', 'LA' => 'ឡាវ', 'LB' => 'លីបង់', 'LC' => 'សង់​លូសៀ', 'LI' => 'លិចទេនស្តែន', 'LK' => 'ស្រីលង្កា', 'LR' => 'លីបេរីយ៉ា', - 'LS' => 'លើសូតូ', + 'LS' => 'ឡេសូតូ', 'LT' => 'លីទុយអានី', 'LU' => 'លុចហ្សំបួរ', 'LV' => 'ឡាតវីយ៉ា', 'LY' => 'លីប៊ី', 'MA' => 'ម៉ារ៉ុក', 'MC' => 'ម៉ូណាកូ', - 'MD' => 'សាធារណរដ្ឋម៉ុលដាវី', + 'MD' => 'ម៉ុលដាវី', 'ME' => 'ម៉ុងតេណេហ្គ្រោ', 'MF' => 'សង់​ម៉ាទីន', - 'MG' => 'ម៉ាដាហ្កាស្ការ', + 'MG' => 'ម៉ាដាហ្គាស្កា', 'MH' => 'កោះ​ម៉ាស់សល', 'MK' => 'ម៉ាសេដូនា', 'ML' => 'ម៉ាលី', @@ -162,10 +162,10 @@ return array ( 'MR' => 'ម៉ូរីតានី', 'MS' => 'ម៉ុង​សេរ៉ង់', 'MT' => 'ម៉ាល់តា', - 'MU' => 'ម៉ូរីទុស', + 'MU' => 'ម៉ូរីស', 'MV' => 'ម៉ាល់ឌីវ', 'MW' => 'ម៉ាឡាវី', - 'MX' => 'ម៉ិចសិក', + 'MX' => 'ម៉ិកស៊ិក', 'MY' => 'ម៉ាឡេស៊ី', 'MZ' => 'ម៉ូហ្សាំប៊ិក', 'NA' => 'ណាមីប៊ី', @@ -174,7 +174,7 @@ return array ( 'NF' => 'កោះ​ណ័រហ្វក់', 'NG' => 'នីហ្សេរីយ៉ា', 'NI' => 'នីការ៉ាហ្គ័រ', - 'NL' => 'ហុល្លង់', + 'NL' => 'ហូឡង់', 'NO' => 'ន័រវែស', 'NP' => 'នេប៉ាល់', 'NR' => 'ណូរូ', @@ -189,49 +189,49 @@ return array ( 'PK' => 'ប៉ាគីស្ថាន', 'PL' => 'ប៉ូឡូញ', 'PM' => 'សង់ព្យែរ និង​មីគីឡុង', - 'PN' => 'កោះ​ភីតខារិន', + 'PN' => 'កោះ​ភីតកាន', 'PR' => 'ព័រតូរីកូ', 'PS' => 'ដែន​ប៉ាលេស្ទីន', - 'PT' => 'ព័រទុយហ្កាល់', + 'PT' => 'ព័រទុយហ្គាល់', 'PW' => 'ផៅឡូ', 'PY' => 'ប៉ារ៉ាហ្គាយ', 'QA' => 'កាតា', - 'RE' => 'រ៉េអ៊ុយ៉ុង', + 'RE' => 'រេអុយញ៉ុង', 'RO' => 'រូម៉ានី', 'RS' => 'ស៊ែប', 'RU' => 'រុស្ស៊ី', 'RW' => 'រវ៉ាន់ដា', - 'SA' => 'អារ៉ាប៊ីសាអ៊ូឌីត', - 'SB' => 'កោះ​ស៊ូឡូម៉ុង', + 'SA' => 'អារ៉ាប៊ីសាអូឌីត', + 'SB' => 'កោះ​សូឡូម៉ុង', 'SC' => 'សីសែល', 'SD' => 'ស៊ូដង់', - 'SE' => 'ស៊ុយអែដ', + 'SE' => 'ស៊ុយអែត', 'SG' => 'សិង្ហបុរី', 'SH' => 'សង់​ហេឡេណា', 'SI' => 'ស្លូវេនី', - 'SJ' => 'ស្វាប៊ឺត និង​ហ្យង់ម៉ាយេន', + 'SJ' => 'ស្វាលបាដ និង ហ្សង់ម៉ាយេន', 'SK' => 'ស្លូវ៉ាគី', 'SL' => 'សេរ៉ាឡេអូន', 'SM' => 'សាន​ម៉ារីណូ', - 'SN' => 'សេនេហ្កាល់', + 'SN' => 'សេណេហ្គាល់', 'SO' => 'សូម៉ាលី', 'SR' => 'សូរីណាម', 'SS' => 'ស៊ូដង់​ខាង​ត្បូង', - 'ST' => 'សៅ​តូមេ និង​ព្រីនស៊ីប៉េ', + 'ST' => 'សៅតូម៉េ និង ប្រាំងស៊ីប', 'SV' => 'អែលសាល់វ៉ាឌ័រ', 'SX' => 'សីង​ម៉ាធីន', 'SY' => 'ស៊ីរី', 'SZ' => 'ស្វាហ្ស៊ីឡង់', 'TA' => 'ទ្រីស្តង់​ដា​ចូនហា', - 'TC' => 'កោះ​កៃកូស និងទូក', + 'TC' => 'កោះ​ទួគ និង កៃកូស', 'TD' => 'ឆាដ', - 'TF' => 'ដែន​បារាំង​ខាង​ត្បូង', + 'TF' => 'ដែនដី​បារាំង​នៅ​ភាគខាងត្បូង', 'TG' => 'តូហ្គោ', 'TH' => 'ថៃ', - 'TJ' => 'តាជីគីស្តង់', + 'TJ' => 'តាហ្ស៊ីគីស្ថាន', 'TK' => 'តូខេឡៅ', 'TL' => 'ទីម័រ', - 'TM' => 'ទួគមេនីស្តង់', + 'TM' => 'តួកម៉េនីស្ថាន', 'TN' => 'ទុយនេស៊ី', 'TO' => 'តុងហ្គា', 'TR' => 'ទួរគី', @@ -240,12 +240,12 @@ return array ( 'TW' => 'តៃវ៉ាន់', 'TZ' => 'តង់ហ្សានី', 'UA' => 'អ៊ុយក្រែន', - 'UG' => 'អ៊ូហ្កង់ដា', + 'UG' => 'អ៊ូហ្គង់ដា', 'UM' => 'កោះ​អៅឡាយីង​អាមេរិក', 'US' => 'សហរដ្ឋអាមេរិក', 'UY' => 'អ៊ុយរ៉ាហ្គាយ', - 'UZ' => 'អ៊ូហ្សបេគីស្តង់', - 'VA' => 'ទីក្រុងវ៉ាទីកង់', + 'UZ' => 'អ៊ូសបេគីស្ថាន', + 'VA' => 'បុរី​វ៉ាទីកង់', 'VC' => 'សាំង​វីនសេន និង​ឌឹ​ហ្គ្រីណាឌីនីស', 'VE' => 'វេនេហ្ស៊ុយឡា', 'VG' => 'កោះ​វឺជិន​ចក្រភព​អង់គ្លេស', @@ -253,7 +253,7 @@ return array ( 'VN' => 'វៀតណាម', 'VU' => 'វ៉ានូអាទូ', 'WF' => 'វ៉ាលីស និង​ហ្វូទូណា', - 'WS' => 'សា​ម៉ូអា', + 'WS' => 'សាម័រ', 'XK' => 'កូសូវ៉ូ', 'YE' => 'យេមែន', 'YT' => 'ម៉ាយុត', diff --git a/vendor/giggsey/locale/data/kn.php b/vendor/giggsey/locale/data/kn.php index 611b1566f..d1bcac979 100644 --- a/vendor/giggsey/locale/data/kn.php +++ b/vendor/giggsey/locale/data/kn.php @@ -1,6 +1,6 @@ 'ಸಂಯುಕ್ತ ಅರಬ್ ಎಮಿರೇಟಸ್', 'AF' => 'ಅಫಘಾನಿಸ್ಥಾನ್', 'AG' => 'ಆಂಟಿಗುವಾ ಮತ್ತು ಬರ್ಬುಡಾ', - 'AI' => 'ಆಂಗುಯಿಲ್ಲಾ', + 'AI' => 'ಆಂಗ್ವಿಲ್ಲಾ', 'AL' => 'ಅಲ್ಬೇನಿಯಾ', 'AM' => 'ಅರ್ಮೇನಿಯಾ', 'AO' => 'ಅಂಗೋಲಾ', @@ -30,7 +30,7 @@ return array ( 'BE' => 'ಬೆಲ್ಜಿಯಮ್', 'BF' => 'ಬುರ್ಕಿನಾ ಫಾಸೋ', 'BG' => 'ಬಲ್ಗೇರಿಯಾ', - 'BH' => 'ಬಹರೈನ್', + 'BH' => 'ಬಹ್ರೇನ್', 'BI' => 'ಬುರುಂಡಿ', 'BJ' => 'ಬೆನಿನ್', 'BL' => 'ಸೇಂಟ್ ಬಾರ್ಥೆಲೆಮಿ', @@ -62,7 +62,7 @@ return array ( 'CW' => 'ಕುರಾಕಾವ್', 'CX' => 'ಕ್ರಿಸ್ಮಸ್ ದ್ವೀಪ', 'CY' => 'ಸೈಪ್ರಸ್', - 'CZ' => 'ಚೆಕ್ ರಿಪಬ್ಲಿಕ್', + 'CZ' => 'ಝೆಕ್ ರಿಪಬ್ಲಿಕ್', 'DE' => 'ಜರ್ಮನಿ', 'DG' => 'ಡೈಗೋ ಗಾರ್ಸಿಯ', 'DJ' => 'ಜಿಬೋಟಿ', @@ -107,14 +107,14 @@ return array ( 'HN' => 'ಹೊಂಡುರಾಸ್', 'HR' => 'ಕ್ರೊಯೇಶಿಯಾ', 'HT' => 'ಹೈಟಿ', - 'HU' => 'ಹಂಗಾರಿ', + 'HU' => 'ಹಂಗೇರಿ', 'IC' => 'ಕ್ಯಾನರಿ ದ್ವೀಪಗಳು', 'ID' => 'ಇಂಡೋನೇಶಿಯಾ', 'IE' => 'ಐರ್ಲೆಂಡ್', 'IL' => 'ಇಸ್ರೇಲ್', 'IM' => 'ಐಲ್ ಆಫ್ ಮ್ಯಾನ್', 'IN' => 'ಭಾರತ', - 'IO' => 'ಬ್ರಿಟೀಶ್ ಇಂಡಿಯನ್ ಮಹಾಸಾಗರ ಪ್ರದೇಶ', + 'IO' => 'ಬ್ರಿಟೀಷ್ ಹಿಂದೂ ಮಹಾಸಾಗರದ ಪ್ರದೇಶ', 'IQ' => 'ಇರಾಕ್', 'IR' => 'ಇರಾನ್', 'IS' => 'ಐಸ್‌ಲ್ಯಾಂಡ್', @@ -156,13 +156,13 @@ return array ( 'ML' => 'ಮಾಲಿ', 'MM' => 'ಮಯನ್ಮಾರ್ (ಬರ್ಮಾ)', 'MN' => 'ಮೊಂಗೋಲಿಯಾ', - 'MO' => 'ಮಖಾವ್ (SAR) ಚೈನಾ', + 'MO' => 'ಮಖಾವು (SAR) ಚೈನಾ', 'MP' => 'ಉತ್ತರ ಮರಿಯಾನಾ ದ್ವೀಪಗಳು', 'MQ' => 'ಮಾರ್ಟಿನಿಕ್', 'MR' => 'ಮಾರಿಟೇನಿಯಾ', 'MS' => 'ಮಾಂಟ್‌ಸೆರೇಟ್', 'MT' => 'ಮಾಲ್ಟಾ', - 'MU' => 'ಮಾರಿಶಿಯಸ್', + 'MU' => 'ಮಾರಿಷಸ್', 'MV' => 'ಮಾಲ್ಡಿವ್ಸ್', 'MW' => 'ಮಲಾವಿ', 'MX' => 'ಮೆಕ್ಸಿಕೊ', @@ -191,7 +191,7 @@ return array ( 'PM' => 'ಸೇಂಟ್ ಪಿಯರೆ ಮತ್ತು ಮಿಕೆಲನ್', 'PN' => 'ಪಿಟ್‌ಕೈರ್ನ್ ದ್ವೀಪಗಳು', 'PR' => 'ಪ್ಯೂರ್ಟೋ ರಿಕೊ', - 'PS' => 'ಪ್ಯಾಲೇಸ್ಟೇನಿಯನ್ ಪ್ರದೇಶ', + 'PS' => 'ಪ್ಯಾಲೇಸ್ಟೇನಿಯನ್ ಪ್ರದೇಶಗಳು', 'PT' => 'ಪೋರ್ಚುಗಲ್', 'PW' => 'ಪಲಾವು', 'PY' => 'ಪರಾಗ್ವೇ', @@ -210,7 +210,7 @@ return array ( 'SH' => 'ಸೇಂಟ್ ಹೆಲೆನಾ', 'SI' => 'ಸ್ಲೋವೇನಿಯಾ', 'SJ' => 'ಸ್ವಾಲ್ಬಾರ್ಡ್ ಮತ್ತು ಜಾನ್ ಮೆಯನ್', - 'SK' => 'ಸ್ಲೋವೇಕಿಯಾ', + 'SK' => 'ಸ್ಲೋವಾಕಿಯಾ', 'SL' => 'ಸಿಯೆರ್ರಾ ಲಿಯೋನ್', 'SM' => 'ಸ್ಯಾನ್ ಮೆರಿನೋ', 'SN' => 'ಸೆನೆಗಲ್', @@ -228,10 +228,10 @@ return array ( 'TF' => 'ಫ್ರೆಂಚ್ ದಕ್ಷಿಣ ಪ್ರದೇಶಗಳು', 'TG' => 'ಟೋಗೋ', 'TH' => 'ಥೈಲ್ಯಾಂಡ್', - 'TJ' => 'ತಜಾಕಿಸ್ಥಾನ್', + 'TJ' => 'ತಜಿಕಿಸ್ತಾನ್', 'TK' => 'ಟೊಕೆಲಾವ್', 'TL' => 'ಪೂರ್ವ ತಿಮೋರ್', - 'TM' => 'ತುರ್ಕ್ಮೇನಿಸ್ಥಾನ್', + 'TM' => 'ತುರ್ಕಮೆನಿಸ್ತಾನ್', 'TN' => 'ಟುನಿಶಿಯಾ', 'TO' => 'ಟೊಂಗ', 'TR' => 'ಟರ್ಕಿ', diff --git a/vendor/giggsey/locale/data/ko-kp.php b/vendor/giggsey/locale/data/ko-kp.php new file mode 100644 index 000000000..2cb711721 --- /dev/null +++ b/vendor/giggsey/locale/data/ko-kp.php @@ -0,0 +1,11 @@ + '조선민주주의인민공화국', +); diff --git a/vendor/giggsey/locale/data/ko.php b/vendor/giggsey/locale/data/ko.php index 686ab8ae2..728755cdd 100644 --- a/vendor/giggsey/locale/data/ko.php +++ b/vendor/giggsey/locale/data/ko.php @@ -1,6 +1,6 @@ '코코스 제도', 'CD' => '콩고-킨샤사', 'CF' => '중앙 아프리카 공화국', - 'CG' => '콩고', + 'CG' => '콩고-브라자빌', 'CH' => '스위스', 'CI' => '코트디부아르', 'CK' => '쿡 제도', @@ -129,7 +129,7 @@ return array ( 'KI' => '키리바시', 'KM' => '코모로', 'KN' => '세인트키츠 네비스', - 'KP' => '조선민주주의인민공화국', + 'KP' => '북한', 'KR' => '대한민국', 'KW' => '쿠웨이트', 'KY' => '케이맨 제도', diff --git a/vendor/giggsey/locale/data/kok.php b/vendor/giggsey/locale/data/kok.php index 173d7f44f..ddac14cd3 100644 --- a/vendor/giggsey/locale/data/kok.php +++ b/vendor/giggsey/locale/data/kok.php @@ -1,6 +1,6 @@ 'Schiina', 'CO' => 'Kolumbije', 'CR' => 'Kostarika', - 'CU' => 'Kuba', + 'CU' => 'Kuhba', 'CV' => 'de kapvärdesche Enselle', 'CW' => 'Curaçao', 'CX' => 'de Weihnaachs-Ensel', @@ -86,7 +86,7 @@ return array ( 'FR' => 'Frankrisch', 'GA' => 'Jabuhn', 'GB' => 'Jruußbrettannije', - 'GD' => 'Jrenaada', + 'GD' => 'Jrenahda', 'GE' => 'Jeorrjije', 'GF' => 'Franzüüsesch Jujaana', 'GG' => 'Jöönsei', @@ -99,7 +99,7 @@ return array ( 'GQ' => 'Äquatorial Jineeja', 'GR' => 'Jriescheland', 'GS' => 'Söd-Jeorjie un de södlijje Botteramms-Enselle', - 'GT' => 'Juwatemaala', + 'GT' => 'Juwatemahla', 'GU' => 'Juham', 'GW' => 'Jinneha_Bißau', 'GY' => 'Jujaana', @@ -173,7 +173,7 @@ return array ( 'NE' => 'Nijer', 'NF' => 'de Noofok-Ensel', 'NG' => 'Nikaraagua', - 'NI' => 'Nikaraaguwa', + 'NI' => 'Nikarahguwa', 'NL' => 'de Nederläng', 'NO' => 'Norrweeje', 'NP' => 'Nepall', @@ -218,7 +218,7 @@ return array ( 'SR' => 'Sürinamm', 'SS' => 'Södsudahn', 'ST' => 'Zint Tommeh un Printschipe', - 'SV' => 'Äl Slavadoor', + 'SV' => 'Äl Slavadohr', 'SX' => 'Zint Maarten', 'SY' => 'Sürije', 'SZ' => 'ẞwaasiland', @@ -235,7 +235,7 @@ return array ( 'TN' => 'Tuneesije', 'TO' => 'Tongga', 'TR' => 'de Törkei', - 'TT' => 'Trinidad un Tobääjo', + 'TT' => 'Trinidad un Tobähjo', 'TV' => 'Tuvalu', 'TW' => 'Taiwan', 'TZ' => 'Tansanija', diff --git a/vendor/giggsey/locale/data/kw.php b/vendor/giggsey/locale/data/kw.php index 72b81bc86..a9bed973b 100644 --- a/vendor/giggsey/locale/data/kw.php +++ b/vendor/giggsey/locale/data/kw.php @@ -1,6 +1,6 @@ 'Кюрасао', 'CX' => 'Крисмас аралы', 'CY' => 'Кипр', - 'CZ' => 'Чехия', + 'CZ' => 'Чех Республикасы', 'DE' => 'Германия', 'DG' => 'Диего Гарсия', 'DJ' => 'Джибути', diff --git a/vendor/giggsey/locale/data/lag.php b/vendor/giggsey/locale/data/lag.php index bb3ed0f9f..7a9ac157e 100644 --- a/vendor/giggsey/locale/data/lag.php +++ b/vendor/giggsey/locale/data/lag.php @@ -1,6 +1,6 @@ 'Byelorisi', 'BZ' => 'Belizɛ', 'CA' => 'Kanada', - 'CD' => 'Repibiki demokratiki ya Kongó', + 'CD' => 'Republíki ya Kongó Demokratíki', 'CF' => 'Repibiki ya Afríka ya Káti', 'CG' => 'Kongo', 'CH' => 'Swisɛ', diff --git a/vendor/giggsey/locale/data/lo.php b/vendor/giggsey/locale/data/lo.php index 273387434..d1ea5127f 100644 --- a/vendor/giggsey/locale/data/lo.php +++ b/vendor/giggsey/locale/data/lo.php @@ -1,6 +1,6 @@ 'ເກາະອາເຊນຊັນ', 'AD' => 'ອັນດໍຣາ', 'AE' => 'ສະຫະລັດອາຣັບເອມິເຣດ', - 'AF' => 'ອາຟການິສຖານ', - 'AG' => 'ອາທິກົວ ບາບູດາ', + 'AF' => 'ອາຟການິດສະຖານ', + 'AG' => 'ແອນທິກົວ ແລະ ບາບູດາ', 'AI' => 'ແອນກຸຍລາ', 'AL' => 'ແອວເບເນຍ', 'AM' => 'ອາເມເນຍ', - 'AO' => 'ອັນໂກລາ', + 'AO' => 'ແອງໂກລາ', 'AQ' => 'ແອນຕາດຕິກາ', 'AR' => 'ອາເຈນທິນາ', 'AS' => 'ອາເມຣິກາ ຊາມົວ', - 'AT' => 'ໂອຕາລິກ', + 'AT' => 'ອອສເທຣຍ', 'AU' => 'ອອສເຕຣເລຍ', - 'AW' => 'ອໍຣູບາ', + 'AW' => 'ອາຣູບາ', 'AX' => 'ຫມູ່ເກາະໂອລັນ', 'AZ' => 'ອາເຊີໄບຈານ', 'BA' => 'ບອດສະເນຍ ແລະ ແຮສໂກວີນາ', 'BB' => 'ບາບາໂດສ', 'BD' => 'ບັງກະລາເທດ', - 'BE' => 'ແບລຊິກ', + 'BE' => 'ເບວຢຽມ', 'BF' => 'ເບີກິນາ ຟາໂຊ', - 'BG' => 'ບູລກາຣິ', + 'BG' => 'ບັງກາເຣຍ', 'BH' => 'ບາເຣນ', 'BI' => 'ບູຣຸນດິ', 'BJ' => 'ເບນິນ', @@ -44,7 +44,7 @@ return array ( 'BW' => 'ບອດສະວານາ', 'BY' => 'ເບວບາຣຸສ', 'BZ' => 'ເບລີຊ', - 'CA' => 'ການາດາ', + 'CA' => 'ແຄນາດາ', 'CC' => 'ຫມູ່ເກາະໂກໂກສ', 'CD' => 'ຄອງໂກ - ຄິນຊາຊາ', 'CF' => 'ສາທາລະນະລັດອາຟຣິກາກາງ', @@ -57,12 +57,12 @@ return array ( 'CN' => 'ຈີນ', 'CO' => 'ໂຄລົມເບຍ', 'CR' => 'ໂຄສຕາ ຣິກາ', - 'CU' => 'ກຸຍບາ', + 'CU' => 'ຄິວບາ', 'CV' => 'ເຄບ ເວີດ', 'CW' => 'ຄູຣາຊາວ', 'CX' => 'ເກາະຄຣິສມາດ', 'CY' => 'ໄຊປຣັສ', - 'CZ' => 'ສາທາລະນະລັດເຊກ', + 'CZ' => 'ສາທາລະນະລັດເຊັກ', 'DE' => 'ເຢຍລະມັນ', 'DG' => 'ດິເອໂກ ກາເຊຍ', 'DJ' => 'ຈິບູຕິ', @@ -78,7 +78,7 @@ return array ( 'ER' => 'ເອຣິເທຣຍ', 'ES' => 'ສະເປນ', 'ET' => 'ອີທິໂອເປຍ', - 'FI' => 'ຝຽກລັງ', + 'FI' => 'ຟິນແລນ', 'FJ' => 'ຟິຈິ', 'FK' => 'ຫມູ່ເກາະຟອກແລນ', 'FM' => 'ໄມໂຄຣນີເຊຍ', @@ -96,11 +96,11 @@ return array ( 'GM' => 'ສາທາລະນະລັດແກມເບຍ', 'GN' => 'ກິນີ', 'GP' => 'ກົວດາລູບ', - 'GQ' => 'ອີຄົວໂຕຣຽວ ກີນີ', + 'GQ' => 'ເອຄົວໂທຣຽວ ກີນີ', 'GR' => 'ກຣີຊ', 'GS' => 'ໝູ່ເກາະຈໍເຈຍ & ເຊົາ ແຊນວິດ', 'GT' => 'ກົວເທມາລາ', - 'GU' => 'ກວມ', + 'GU' => 'ກວາມ', 'GW' => 'ກິນີ-ບິສເຊົາ', 'GY' => 'ກາຍຢານາ', 'HK' => 'ຮອງກົງ ເຂດປົກຄອງພິເສດ ຈີນ', @@ -114,9 +114,9 @@ return array ( 'IL' => 'ອິສຣາເອວ', 'IM' => 'ເອວ ອອບ ແມນ', 'IN' => 'ອິນເດຍ', - 'IO' => 'ເຂດແດນບຣິທິສອິນດຽນໂອຊຽນ', + 'IO' => 'ເຂດແດນອັງກິດໃນມະຫາສະມຸດອິນເດຍ', 'IQ' => 'ອີຣັກ', - 'IR' => 'ອີຣ່ານ', + 'IR' => 'ອີຣານ', 'IS' => 'ໄອສແລນ', 'IT' => 'ອິຕາລີ', 'JE' => 'ເຈີຊີ', @@ -132,7 +132,7 @@ return array ( 'KP' => 'ເກົາຫລີເໜືອ', 'KR' => 'ເກົາຫລີໃຕ້', 'KW' => 'ກູເວດ', - 'KY' => 'ເຄແມນ ໄອແລນ', + 'KY' => 'ໝູ່ເກາະ ເຄແມນ', 'KZ' => 'ຄາຊັກສະຖານ', 'LA' => 'ລາວ', 'LB' => 'ເລບານອນ', @@ -153,9 +153,9 @@ return array ( 'MG' => 'ມາດາກາສກາ', 'MH' => 'ຫມູ່ເກາະມາແຊວ', 'MK' => 'ແມຊິໂດເນຍ', - 'ML' => 'ມາລິ', + 'ML' => 'ມາລີ', 'MM' => 'ມຽນມາ (ເບີມາ)', - 'MN' => 'ມົງໂກລີ', + 'MN' => 'ມອງໂກເລຍ', 'MO' => 'ມາເກົ້າ ເຂດປົກຄອງພິເສດ ຈີນ', 'MP' => 'ຫມູ່ເກາະມາແຊວຕອນເຫນືອ', 'MQ' => 'ມາຕິນີກ', @@ -165,7 +165,7 @@ return array ( 'MU' => 'ມົວຣິຊຽສ', 'MV' => 'ມັນດິຟ', 'MW' => 'ມາລາວີ', - 'MX' => 'ແມັກຊີໂກ', + 'MX' => 'ເມັກຊິໂກ', 'MY' => 'ມາເລເຊຍ', 'MZ' => 'ໂມແຊມບິກ', 'NA' => 'ນາມີເບຍ', @@ -175,7 +175,7 @@ return array ( 'NG' => 'ໄນຈີເຣຍ', 'NI' => 'ນິກຄາຣາກົວ', 'NL' => 'ເນເທີແລນ', - 'NO' => 'ນອກແວ໊', + 'NO' => 'ນໍເວ', 'NP' => 'ເນປານ', 'NR' => 'ນາອູຣູ', 'NU' => 'ນີອູເອ', @@ -183,21 +183,21 @@ return array ( 'OM' => 'ໂອມານ', 'PA' => 'ພານາມາ', 'PE' => 'ເປຣູ', - 'PF' => 'ເຟຣນຊ໌ ໂພລີນີເຊຍ', + 'PF' => 'ເຟຣນຊ໌ ໂພລິນີເຊຍ', 'PG' => 'ປາປົວນິວກີນີ', 'PH' => 'ຟິລິບປິນ', - 'PK' => 'ປາກິສຖານ', - 'PL' => 'ໂປໂລຍ', + 'PK' => 'ປາກິດສະຖານ', + 'PL' => 'ໂປແລນ', 'PM' => 'ເຊນ ປີແອ ມິເກວລອນ', 'PN' => 'ໝູ່ເກາະພິດແຄນ', 'PR' => 'ເພືອໂຕ ຣິໂກ', 'PS' => 'ດິນແດນ ປາເລສຕິນຽນ', 'PT' => 'ພອລທູໂກ', - 'PW' => 'ປາເລົາ', + 'PW' => 'ປາລາວ', 'PY' => 'ພາຣາກວຍ', 'QA' => 'ກາຕາ', 'RE' => 'ເຣອູນິຍົງ', - 'RO' => 'ໂຣມານີ', + 'RO' => 'ໂຣແມເນຍ', 'RS' => 'ເຊີເບຍ', 'RU' => 'ຣັດເຊຍ', 'RW' => 'ຣວັນດາ', @@ -228,10 +228,10 @@ return array ( 'TF' => 'ເຂດແດນທາງໃຕ້ຂອຝຮັ່ງ', 'TG' => 'ໂຕໂກ', 'TH' => 'ໄທ', - 'TJ' => 'ທາຈິກິສຖານ', + 'TJ' => 'ທາຈິກິດສະຖານ', 'TK' => 'ໂຕເກເລົາ', 'TL' => 'ທິມໍ-ເລສເຕ', - 'TM' => 'ເທີກເມນິສຖານ', + 'TM' => 'ເທີກເມນິສະຖານ', 'TN' => 'ຕູນິເຊຍ', 'TO' => 'ທອງກາ', 'TR' => 'ເທີຄີ', @@ -244,20 +244,20 @@ return array ( 'UM' => 'ໝູ່ເກາະຮອບນອກຂອງສະຫະລັດຯ', 'US' => 'ສະຫະລັດ', 'UY' => 'ອູຣຸກວຍ', - 'UZ' => 'ອຸສເບກິສຖານ', + 'UZ' => 'ອຸສເບກິສະຖານ', 'VA' => 'ນະຄອນ ວາຕິກັນ', - 'VC' => 'ເຊນ ວິນເຊນ & ເກຣເນດິນ', + 'VC' => 'ເຊນ ວິນເຊນ ແລະ ເກຣເນດິນ', 'VE' => 'ເວເນຊູເອລາ', 'VG' => 'ໝູ່ເກາະ ບຣິທິຊ ເວີຈິນ', 'VI' => 'ໝູ່ເກາະ ຢູເອສ ເວີຈິນ', 'VN' => 'ຫວຽດນາມ', 'VU' => 'ວານົວຕູ', - 'WF' => 'ວາລິສ ແລະ ຟຸຕູນາ', + 'WF' => 'ວາລລິສ ແລະ ຟູຕູນາ', 'WS' => 'ຊາມົວ', 'XK' => 'ໂຄໂຊໂວ', 'YE' => 'ເຢເມນ', 'YT' => 'ມາຢັອດ', - 'ZA' => 'ອາຟະລິກາໃຕ້', + 'ZA' => 'ອາຟຣິກາໃຕ້', 'ZM' => 'ແຊມເບຍ', 'ZW' => 'ຊິມບັບເວ', ); diff --git a/vendor/giggsey/locale/data/lrc.php b/vendor/giggsey/locale/data/lrc.php index 7bc05965f..8366162f2 100644 --- a/vendor/giggsey/locale/data/lrc.php +++ b/vendor/giggsey/locale/data/lrc.php @@ -1,6 +1,6 @@ 'Farerų Salos', 'FR' => 'Prancūzija', 'GA' => 'Gabonas', - 'GB' => 'Didžioji Britanija', + 'GB' => 'Jungtinė Karalystė', 'GD' => 'Grenada', 'GE' => 'Gruzija', 'GF' => 'Prancūzijos Gviana', @@ -136,7 +136,7 @@ return array ( 'KZ' => 'Kazachstanas', 'LA' => 'Laosas', 'LB' => 'Libanas', - 'LC' => 'Šventoji Liucija', + 'LC' => 'Sent Lusija', 'LI' => 'Lichtenšteinas', 'LK' => 'Šri Lanka', 'LR' => 'Liberija', @@ -183,13 +183,13 @@ return array ( 'OM' => 'Omanas', 'PA' => 'Panama', 'PE' => 'Peru', - 'PF' => 'Prancūzų Polinezija', + 'PF' => 'Prancūzijos Polinezija', 'PG' => 'Papua Naujoji Gvinėja', 'PH' => 'Filipinai', 'PK' => 'Pakistanas', 'PL' => 'Lenkija', 'PM' => 'Sen Pjeras ir Mikelonas', - 'PN' => 'Pitkernas', + 'PN' => 'Pitkerno salos', 'PR' => 'Puerto Rikas', 'PS' => 'Palestinos teritorija', 'PT' => 'Portugalija', @@ -252,7 +252,7 @@ return array ( 'VI' => 'Jungtinių Valstijų Mergelių Salos', 'VN' => 'Vietnamas', 'VU' => 'Vanuatu', - 'WF' => 'Volisas ir Futuna', + 'WF' => 'Volisas ir Futūna', 'WS' => 'Samoa', 'XK' => 'Kosovas', 'YE' => 'Jemenas', diff --git a/vendor/giggsey/locale/data/lu.php b/vendor/giggsey/locale/data/lu.php index e3911da78..dfeda16d2 100644 --- a/vendor/giggsey/locale/data/lu.php +++ b/vendor/giggsey/locale/data/lu.php @@ -1,6 +1,6 @@ 'Angola', 'AQ' => 'Antarktika', 'AR' => 'Argentīna', - 'AS' => 'Amerikāņu Samoa', + 'AS' => 'ASV Samoa', 'AT' => 'Austrija', 'AU' => 'Austrālija', 'AW' => 'Aruba', @@ -31,7 +31,7 @@ return array ( 'BF' => 'Burkinafaso', 'BG' => 'Bulgārija', 'BH' => 'Bahreina', - 'BI' => 'Burundi', + 'BI' => 'Burundija', 'BJ' => 'Benina', 'BL' => 'Senbartelmī', 'BM' => 'Bermudu salas', @@ -45,10 +45,10 @@ return array ( 'BY' => 'Baltkrievija', 'BZ' => 'Beliza', 'CA' => 'Kanāda', - 'CC' => 'Kokosu jeb Kīlinga salas', - 'CD' => 'Kongo-Kinšasa', + 'CC' => 'Kokosu (Kīlinga) salas', + 'CD' => 'Kongo (Kinšasa)', 'CF' => 'Centrālāfrikas Republika', - 'CG' => 'Kongo - Brazavila', + 'CG' => 'Kongo (Brazavila)', 'CH' => 'Šveice', 'CI' => 'Kotdivuāra', 'CK' => 'Kuka salas', @@ -62,7 +62,7 @@ return array ( 'CW' => 'Kirasao', 'CX' => 'Ziemsvētku sala', 'CY' => 'Kipra', - 'CZ' => 'Čehija', + 'CZ' => 'Čehijas Republika', 'DE' => 'Vācija', 'DG' => 'Djego Garsijas atols', 'DJ' => 'Džibutija', @@ -82,13 +82,13 @@ return array ( 'FJ' => 'Fidži', 'FK' => 'Folklenda salas', 'FM' => 'Mikronēzija', - 'FO' => 'Fēru Salas', + 'FO' => 'Fēru salas', 'FR' => 'Francija', 'GA' => 'Gabona', 'GB' => 'Lielbritānija', 'GD' => 'Grenāda', 'GE' => 'Gruzija', - 'GF' => 'Franču Gviāna', + 'GF' => 'Francijas Gviāna', 'GG' => 'Gērnsija', 'GH' => 'Gana', 'GI' => 'Gibraltārs', @@ -183,13 +183,13 @@ return array ( 'OM' => 'Omāna', 'PA' => 'Panama', 'PE' => 'Peru', - 'PF' => 'Franču Polinēzija', + 'PF' => 'Francijas Polinēzija', 'PG' => 'Papua-Jaungvineja', 'PH' => 'Filipīnas', 'PK' => 'Pakistāna', 'PL' => 'Polija', 'PM' => 'Senpjēra un Mikelona', - 'PN' => 'Pitkērna', + 'PN' => 'Pitkērnas salas', 'PR' => 'Puertoriko', 'PS' => 'Palestīna', 'PT' => 'Portugāle', @@ -203,7 +203,7 @@ return array ( 'RW' => 'Ruanda', 'SA' => 'Saūda Arābija', 'SB' => 'Zālamana salas', - 'SC' => 'Šeišelu salas', + 'SC' => 'Seišelu salas', 'SD' => 'Sudāna', 'SE' => 'Zviedrija', 'SG' => 'Singapūra', @@ -225,7 +225,7 @@ return array ( 'TA' => 'Tristana da Kuņas salas', 'TC' => 'Tērksas un Kaikosas salas', 'TD' => 'Čada', - 'TF' => 'Francijas Dienvidjūru Zemes', + 'TF' => 'Francijas Dienvidjūru teritorija', 'TG' => 'Togo', 'TH' => 'Taizeme', 'TJ' => 'Tadžikistāna', @@ -241,7 +241,7 @@ return array ( 'TZ' => 'Tanzānija', 'UA' => 'Ukraina', 'UG' => 'Uganda', - 'UM' => 'ASV Aizjūras salas', + 'UM' => 'ASV Mazās Aizjūras salas', 'US' => 'Amerikas Savienotās Valstis', 'UY' => 'Urugvaja', 'UZ' => 'Uzbekistāna', @@ -252,7 +252,7 @@ return array ( 'VI' => 'ASV Virdžīnas', 'VN' => 'Vjetnama', 'VU' => 'Vanuatu', - 'WF' => 'Volisa un Futuna', + 'WF' => 'Volisa un Futunas salas', 'WS' => 'Samoa', 'XK' => 'Kosova', 'YE' => 'Jemena', diff --git a/vendor/giggsey/locale/data/mas.php b/vendor/giggsey/locale/data/mas.php index be20ef3e6..afe4fbbae 100644 --- a/vendor/giggsey/locale/data/mas.php +++ b/vendor/giggsey/locale/data/mas.php @@ -1,6 +1,6 @@ 'Австрија', 'AU' => 'Австралија', 'AW' => 'Аруба', - 'AX' => 'Оландски острови', + 'AX' => 'Оландски Острови', 'AZ' => 'Азербејџан', 'BA' => 'Босна и Херцеговина', 'BB' => 'Барбадос', @@ -100,7 +100,7 @@ return array ( 'GR' => 'Грција', 'GS' => 'Јужна Џорџија и Јужни Сендвички Острови', 'GT' => 'Гватемала', - 'GU' => 'Гвам', + 'GU' => 'Гуам', 'GW' => 'Гвинеја-Бисау', 'GY' => 'Гвајана', 'HK' => 'Хонг Конг С.А.Р Кина', @@ -156,7 +156,7 @@ return array ( 'ML' => 'Мали', 'MM' => 'Мјанмар (Бурма)', 'MN' => 'Монголија', - 'MO' => 'Макао С.А.Р Кина', + 'MO' => 'Макао САР', 'MP' => 'Северни Маријански Острови', 'MQ' => 'Мартиник', 'MR' => 'Мавританија', @@ -178,7 +178,7 @@ return array ( 'NO' => 'Норвешка', 'NP' => 'Непал', 'NR' => 'Науру', - 'NU' => 'Ниуе', + 'NU' => 'Ниује', 'NZ' => 'Нов Зеланд', 'OM' => 'Оман', 'PA' => 'Панама', @@ -196,7 +196,7 @@ return array ( 'PW' => 'Палау', 'PY' => 'Парагвај', 'QA' => 'Катар', - 'RE' => 'Ријунион', + 'RE' => 'Реунион', 'RO' => 'Романија', 'RS' => 'Србија', 'RU' => 'Русија', @@ -223,9 +223,9 @@ return array ( 'SY' => 'Сирија', 'SZ' => 'Свазиленд', 'TA' => 'Тристан да Куња', - 'TC' => 'Острови Туркс и Кајкос', + 'TC' => 'Острови Туркс и Каикос', 'TD' => 'Чад', - 'TF' => 'Француски Јужни територии', + 'TF' => 'Француски Јужни Територии', 'TG' => 'Того', 'TH' => 'Тајланд', 'TJ' => 'Таџикистан', diff --git a/vendor/giggsey/locale/data/ml.php b/vendor/giggsey/locale/data/ml.php index 1d890ed61..19478e1fb 100644 --- a/vendor/giggsey/locale/data/ml.php +++ b/vendor/giggsey/locale/data/ml.php @@ -1,6 +1,6 @@ 'ബർമുഡ', 'BN' => 'ബ്രൂണൈ', 'BO' => 'ബൊളീവിയ', - 'BQ' => 'ബൊണെയ്ർ, സിന്റ് യുസ്റ്റേഷ്യസ്, സാബ എന്നിവ', + 'BQ' => 'കരീബിയൻ നെതർലാൻഡ്സ്', 'BR' => 'ബ്രസീൽ', 'BS' => 'ബഹാമാസ്', 'BT' => 'ഭൂട്ടാൻ', @@ -110,7 +110,7 @@ return array ( 'HU' => 'ഹംഗറി', 'IC' => 'കാനറി ദ്വീപുകൾ', 'ID' => 'ഇന്തോനേഷ്യ', - 'IE' => 'അയർലാൻഡ്', + 'IE' => 'അയർലൻഡ്', 'IL' => 'ഇസ്രായേൽ', 'IM' => 'ഐൽ ഓഫ് മാൻ', 'IN' => 'ഇന്ത്യ', @@ -169,7 +169,7 @@ return array ( 'MY' => 'മലേഷ്യ', 'MZ' => 'മൊസാംബിക്ക്', 'NA' => 'നമീബിയ', - 'NC' => 'പുതിയ കാലിഡോണിയ', + 'NC' => 'ന്യൂ കാലിഡോണിയ', 'NE' => 'നൈജർ', 'NF' => 'നോർഫോക് ദ്വീപ്', 'NG' => 'നൈജീരിയ', @@ -185,7 +185,7 @@ return array ( 'PE' => 'പെറു', 'PF' => 'ഫ്രഞ്ച് പോളിനേഷ്യ', 'PG' => 'പാപ്പുവ ന്യൂ ഗിനിയ', - 'PH' => 'ഫിലിപ്പൈൻസ്', + 'PH' => 'ഫിലിപ്പീൻസ്', 'PK' => 'പാക്കിസ്ഥാൻ', 'PL' => 'പോളണ്ട്', 'PM' => 'സെന്റ് പിയറിയും മിക്കലണും', @@ -203,7 +203,7 @@ return array ( 'RW' => 'റുവാണ്ട', 'SA' => 'സൗദി അറേബ്യ', 'SB' => 'സോളമൻ‍ ദ്വീപുകൾ', - 'SC' => 'സെയ്‌ഷെൽസ്', + 'SC' => 'സീഷെൽസ്', 'SD' => 'സുഡാൻ', 'SE' => 'സ്വീഡൻ', 'SG' => 'സിംഗപ്പുർ', @@ -215,7 +215,7 @@ return array ( 'SM' => 'സാൻ മറിനോ', 'SN' => 'സെനഗൽ', 'SO' => 'സോമാലിയ', - 'SR' => 'സുരിനെയിം', + 'SR' => 'സുരിനാം', 'SS' => 'ദക്ഷിണ സുഡാൻ', 'ST' => 'സാവോ ടോമും പ്രിൻസിപെയും', 'SV' => 'എൽ സാൽവദോർ', diff --git a/vendor/giggsey/locale/data/mn.php b/vendor/giggsey/locale/data/mn.php index 7b215dcd1..57b769bf6 100644 --- a/vendor/giggsey/locale/data/mn.php +++ b/vendor/giggsey/locale/data/mn.php @@ -1,20 +1,20 @@ 'Аскенсион Арал', + 'AC' => 'Аскенсион арал', 'AD' => 'Андорра', 'AE' => 'Арабын Нэгдсэн Эмират', 'AF' => 'Афганистан', 'AG' => 'Антигуа ба Барбуда', 'AI' => 'Ангила', 'AL' => 'Албани', - 'AM' => 'Армен', + 'AM' => 'Армени', 'AO' => 'Ангол', 'AQ' => 'Антарктик', 'AR' => 'Аргентин', @@ -24,7 +24,7 @@ return array ( 'AW' => 'Аруба', 'AX' => 'Аландын Арлууд', 'AZ' => 'Азербайжан', - 'BA' => 'Босни Херцеговин', + 'BA' => 'Босни Герцеговин', 'BB' => 'Барбадос', 'BD' => 'Бангладеш', 'BE' => 'Белги', @@ -42,16 +42,16 @@ return array ( 'BS' => 'Багам', 'BT' => 'Бутан', 'BW' => 'Ботсвана', - 'BY' => 'Беларус', + 'BY' => 'Беларусь', 'BZ' => 'Белиз', 'CA' => 'Канад', - 'CC' => 'Кокос (Кийлинг) Арлууд', + 'CC' => 'Кокос (Кийлинг) арлууд', 'CD' => 'Конго-Киншаса', 'CF' => 'Төв Африкийн Бүгд Найрамдах Улс', 'CG' => 'Конго Браззавиль', 'CH' => 'Швейцари', 'CI' => 'Кот д’Ивуар', - 'CK' => 'Күүкийн Арлууд', + 'CK' => 'Күүкийн арлууд', 'CL' => 'Чили', 'CM' => 'Камерун', 'CN' => 'Хятад', @@ -60,7 +60,7 @@ return array ( 'CU' => 'Куба', 'CV' => 'Капе Верде', 'CW' => 'Куракао', - 'CX' => 'Зул Сарын Арал', + 'CX' => 'Зул сарын арал', 'CY' => 'Кипр', 'CZ' => 'Бүгд Найрамдах Чех Улс', 'DE' => 'Герман', @@ -68,11 +68,11 @@ return array ( 'DJ' => 'Джибути', 'DK' => 'Дани', 'DM' => 'Доминик', - 'DO' => 'Бүгд Найрамдах Доминикан', + 'DO' => 'Бүгд Найрамдах Доминикан Улс', 'DZ' => 'Алжир', 'EA' => 'Сеута ба Мелилья', 'EC' => 'Эквадор', - 'EE' => 'Эстон', + 'EE' => 'Эстони', 'EG' => 'Египет', 'EH' => 'Баруун Сахар', 'ER' => 'Эритри', @@ -151,13 +151,13 @@ return array ( 'ME' => 'Монтенегро', 'MF' => 'Сент-Мартин', 'MG' => 'Мадагаскар', - 'MH' => 'Маршаллын Арлууд', + 'MH' => 'Маршаллын арлууд', 'MK' => 'Македон', 'ML' => 'Мали', 'MM' => 'Мьянмар (Бурма)', 'MN' => 'Монгол', 'MO' => 'БНХАУ-ын Тусгай захиргааны бүс Макао', - 'MP' => 'Хойд Марианы Арлууд', + 'MP' => 'Хойд Марианы арлууд', 'MQ' => 'Мартиник', 'MR' => 'Мавритани', 'MS' => 'Монтсеррат', @@ -171,7 +171,7 @@ return array ( 'NA' => 'Намиби', 'NC' => 'Шинэ Каледони', 'NE' => 'Нигер', - 'NF' => 'Норфолк Арлууд', + 'NF' => 'Норфолк арлууд', 'NG' => 'Нигери', 'NI' => 'Никарагуа', 'NL' => 'Нидерланд', @@ -189,10 +189,10 @@ return array ( 'PK' => 'Пакистан', 'PL' => 'Польш', 'PM' => 'Сэнт Пьер ба Микелон', - 'PN' => 'Питкэрн Арлууд', + 'PN' => 'Питкэрн арлууд', 'PR' => 'Пуэрто Рико', 'PS' => 'Палестины нутаг дэвсгэрүүд', - 'PT' => 'Португал', + 'PT' => 'Португаль', 'PW' => 'Палау', 'PY' => 'Парагвай', 'QA' => 'Катар', @@ -235,11 +235,11 @@ return array ( 'TN' => 'Тунис', 'TO' => 'Тонга', 'TR' => 'Турк', - 'TT' => 'Тринидад ба Тобаго', + 'TT' => 'Тринидад Тобаго', 'TV' => 'Тувалу', - 'TW' => 'Тайван', + 'TW' => 'Тайвань', 'TZ' => 'Танзани', - 'UA' => 'Украйн', + 'UA' => 'Украин', 'UG' => 'Уганда', 'UM' => 'АНУ-ын тойрсон арлууд', 'US' => 'Америкийн Нэгдсэн Улс', diff --git a/vendor/giggsey/locale/data/mr.php b/vendor/giggsey/locale/data/mr.php index aea5202c5..f3e55f27f 100644 --- a/vendor/giggsey/locale/data/mr.php +++ b/vendor/giggsey/locale/data/mr.php @@ -1,6 +1,6 @@ 'इंडोनेशिया', 'IE' => 'आयर्लंड', 'IL' => 'इस्त्राइल', - 'IM' => 'इस्ले ऑफ मॅन', + 'IM' => 'आयल ऑफ मॅन', 'IN' => 'भारत', 'IO' => 'ब्रिटिश हिंदी महासागर क्षेत्र', 'IQ' => 'इराक', @@ -230,7 +230,7 @@ return array ( 'TH' => 'थायलंड', 'TJ' => 'ताजिकिस्तान', 'TK' => 'तोकेलाउ', - 'TL' => 'पूर्व तिमोर', + 'TL' => 'तिमोर-लेस्ते', 'TM' => 'तुर्कमेनिस्तान', 'TN' => 'ट्यूनिशिया', 'TO' => 'टोंगा', diff --git a/vendor/giggsey/locale/data/ms.php b/vendor/giggsey/locale/data/ms.php index b37c94922..84cd6f95c 100644 --- a/vendor/giggsey/locale/data/ms.php +++ b/vendor/giggsey/locale/data/ms.php @@ -1,6 +1,6 @@ 'Ascension Island', 'AD' => 'Andorra', - 'AE' => 'Emirati Għarab Maqgħuda', - 'AF' => 'Afganistan', - 'AG' => 'Antigua and Barbuda', - 'AI' => 'Angwilla', - 'AL' => 'Albanija', - 'AM' => 'Armenja', - 'AO' => 'Angola', - 'AQ' => 'Antartika', - 'AR' => 'Arġentina', - 'AS' => 'Samoa Amerikana', - 'AT' => 'Awstrija', - 'AU' => 'Awstralja', + 'AE' => 'l-Emirati Għarab Magħquda', + 'AF' => 'l-Afganistan', + 'AG' => 'Antigua u Barbuda', + 'AI' => 'Anguilla', + 'AL' => 'l-Albanija', + 'AM' => 'l-Armenja', + 'AO' => 'l-Angola', + 'AQ' => 'l-Antartika', + 'AR' => 'l-Arġentina', + 'AS' => 'is-Samoa Amerikana', + 'AT' => 'l-Awstrija', + 'AU' => 'l-Awstralja', 'AW' => 'Aruba', - 'AX' => 'Gżejjer Aland', - 'AZ' => 'Ażerbajġan', - 'BA' => 'Bożnija Ħerżegovina', + 'AX' => 'il-Gżejjer Aland', + 'AZ' => 'l-Ażerbajġan', + 'BA' => 'il-Bożnija-Ħerzegovina', 'BB' => 'Barbados', - 'BD' => 'Bangladexx', - 'BE' => 'Belġju', - 'BF' => 'Burkina Faso', - 'BG' => 'Bulgarija', - 'BH' => 'Baħrajn', - 'BI' => 'Burundi', - 'BJ' => 'Benin', + 'BD' => 'il-Bangladesh', + 'BE' => 'il-Belġju', + 'BF' => 'il-Burkina Faso', + 'BG' => 'il-Bulgarija', + 'BH' => 'il-Bahrain', + 'BI' => 'il-Burundi', + 'BJ' => 'il-Benin', + 'BL' => 'Saint Barthélemy', 'BM' => 'Bermuda', - 'BN' => 'Brunej', - 'BO' => 'Bolivja', + 'BN' => 'il-Brunei', + 'BO' => 'il-Bolivja', + 'BQ' => 'in-Netherlands tal-Karibew', 'BR' => 'Il-Brażil', - 'BS' => 'Baħamas', - 'BT' => 'Butan', - 'BW' => 'Botswana', - 'BY' => 'Bjelorussja', - 'BZ' => 'Beliże', - 'CA' => 'Kanada', - 'CC' => 'Cocos (Keeling) Islands', - 'CD' => 'Democratic Republic of the Congo', - 'CF' => 'Repubblika Afrikana Ċentrali', - 'CG' => 'Kongo', - 'CH' => 'Svizzera', - 'CI' => 'Kosta ta’ l-Avorju', - 'CK' => 'Cook Islands', - 'CL' => 'Ċili', - 'CM' => 'Kamerun', - 'CN' => 'Iċ-Ċina', - 'CO' => 'Kolombja', - 'CR' => 'Kosta Rika', + 'BS' => 'il-Bahamas', + 'BT' => 'il-Bhutan', + 'BW' => 'il-Botswana', + 'BY' => 'il-Belarussja', + 'BZ' => 'il-Belize', + 'CA' => 'il-Kanada', + 'CC' => 'Gżejjer Cocos (Keeling)', + 'CD' => 'ir-Repubblika Demokratika tal-Kongo', + 'CF' => 'ir-Repubblika Ċentru-Afrikana', + 'CG' => 'il-Kongo - Brazzaville', + 'CH' => 'Żvizzera', + 'CI' => 'il-Kosta tal-Avorju', + 'CK' => 'Gżejjer Cook', + 'CL' => 'iċ-Ċili', + 'CM' => 'il-Kamerun', + 'CO' => 'il-Kolombja', + 'CR' => 'il-Costa Rica', 'CU' => 'Kuba', - 'CV' => 'Kape Verde', - 'CX' => 'Christmas Island', + 'CV' => 'Cape Verde', + 'CW' => 'Curaçao', + 'CX' => 'il-Gżira Christmas', 'CY' => 'Ċipru', - 'CZ' => 'Repubblika Ċeka', - 'DE' => 'Il-Ġermanja', - 'DJ' => 'Ġibuti', - 'DK' => 'Danimarka', - 'DM' => 'Dominika', - 'DO' => 'Republikka Domenikana', - 'DZ' => 'Alġerija', - 'EC' => 'Ekwador', - 'EE' => 'Estonja', - 'EG' => 'Eġittu', - 'EH' => 'Sahara tal-Punent', - 'ER' => 'Eritrea', + 'CZ' => 'ir-Repubblika Ċeka', + 'DE' => 'il-Ġermanja', + 'DG' => 'Diego Garcia', + 'DJ' => 'il-Djibouti', + 'DK' => 'id-Danimarka', + 'DM' => 'Dominica', + 'DO' => 'ir-Repubblika Dominicana', + 'DZ' => 'l-Alġerija', + 'EA' => 'Ceuta u Melilla', + 'EC' => 'l-Ekwador', + 'EE' => 'l-Estonja', + 'EG' => 'l-Eġittu', + 'EH' => 'is-Saħara tal-Punent', + 'ER' => 'l-Eritrea', 'ES' => 'Spanja', - 'ET' => 'Etijopja', - 'FI' => 'Finlandja', + 'ET' => 'l-Etjopja', + 'FI' => 'il-Finlandja', 'FJ' => 'Fiġi', - 'FK' => 'Falkland Islands', - 'FM' => 'Mikronesja', - 'FO' => 'Gżejjer Faroe', + 'FK' => 'il-Gżejjer Falkland', + 'FM' => 'Mikroneżja', + 'FO' => 'il-Gżejjer Faeroe', 'FR' => 'Franza', - 'GA' => 'Gabon', - 'GB' => 'L-Ingilterra', + 'GA' => 'il-Gabon', + 'GB' => 'ir-Renju Unit', 'GD' => 'Grenada', - 'GE' => 'Ġeorġja', - 'GF' => 'Gujana Franċiża', - 'GH' => 'Gana', - 'GI' => 'Gibraltar', - 'GL' => 'Grinlandja', - 'GM' => 'Gambja', - 'GN' => 'Ginea', - 'GP' => 'Gwadelupe', - 'GQ' => 'Ginea Ekwatorjali', - 'GR' => 'Greċja', - 'GS' => 'South Georgia and the South Sandwich Islands', - 'GT' => 'Gwatemala', - 'GU' => 'Gwam', - 'GW' => 'Ginea-Bissaw', - 'GY' => 'Gujana', - 'HK' => 'Ħong Kong S.A.R. Ċina', - 'HN' => 'Ħonduras', - 'HR' => 'Kroazja', - 'HT' => 'Ħaiti', - 'HU' => 'Ungerija', - 'ID' => 'Indoneżja', - 'IE' => 'Irlanda', + 'GE' => 'il-Georgia', + 'GF' => 'il-Guyana Franċiża', + 'GG' => 'Guernsey', + 'GH' => 'il-Ghana', + 'GI' => 'Ġibiltà', + 'GL' => 'Greenland', + 'GM' => 'il-Gambja', + 'GN' => 'il-Guinea', + 'GP' => 'Guadeloupe', + 'GQ' => 'il-Guinea Ekwatorjali', + 'GR' => 'il-Greċja', + 'GS' => 'il-Georgia tan-Nofsinhar u l-Gżejjer Sandwich tan-Nofsinhar', + 'GT' => 'il-Gwatemala', + 'GU' => 'Guam', + 'GW' => 'il-Guinea-Bissau', + 'GY' => 'il-Guyana', + 'HK' => 'ir-Reġjun Amministrattiv Speċjali ta’ Hong Kong tar-Repubblika tal-Poplu taċ-Ċina', + 'HN' => 'il-Honduras', + 'HR' => 'il-Kroazja', + 'HT' => 'il-Haiti', + 'HU' => 'l-Ungerija', + 'IC' => 'il-Gżejjer Canary', + 'ID' => 'l-Indoneżja', + 'IE' => 'l-Irlanda', 'IL' => 'Iżrael', 'IM' => 'Isle of Man', - 'IN' => 'L-Indja', - 'IO' => 'British Indian Ocean Territory', - 'IQ' => 'Iraq', - 'IR' => 'Iran', - 'IS' => 'Islanda', - 'IT' => 'L-Italja', - 'JM' => 'Ġamajka', - 'JO' => 'Ġordan', - 'JP' => 'Il-Ġappun', - 'KE' => 'Kenja', - 'KG' => 'Kirgistan', - 'KH' => 'Kambodja', + 'IN' => 'l-Indja', + 'IO' => 'Territorju Brittaniku tal-Oċean Indjan', + 'IQ' => 'l-Iraq', + 'IR' => 'l-Iran', + 'IS' => 'l-iżlanda', + 'IT' => 'l-Italja', + 'JE' => 'Jersey', + 'JM' => 'il-Ġamajka', + 'JO' => 'il-Ġordan', + 'JP' => 'il-Ġappun', + 'KE' => 'il-Kenja', + 'KG' => 'il-Kirgiżistan', + 'KH' => 'il-Kambodja', 'KI' => 'Kiribati', - 'KM' => 'Komoros', - 'KN' => 'Saint Kitts and Nevis', - 'KP' => 'Koreja ta’ Fuq', - 'KR' => 'Koreja t’Isfel', - 'KW' => 'Kuwajt', - 'KY' => 'Gżejjer Kajmani', - 'KZ' => 'Każakstan', - 'LA' => 'Laos', - 'LB' => 'Libanu', - 'LC' => 'Santa Luċija', - 'LI' => 'Liechtenstein', - 'LK' => 'Sri Lanka', - 'LR' => 'Liberja', - 'LS' => 'Lesoto', - 'LT' => 'Litwanja', - 'LU' => 'Lussemburgu', - 'LV' => 'Latvja', - 'LY' => 'Libja', - 'MA' => 'Marokk', - 'MC' => 'Monako', - 'MD' => 'Moldova', - 'MG' => 'Madagaskar', - 'MH' => 'Gżejjer ta’ Marshall', - 'MK' => 'Maċedonja', - 'ML' => 'Mali', - 'MM' => 'Mjanmar', - 'MN' => 'Mongolja', - 'MO' => 'Macao S.A.R., China', - 'MP' => 'Gżejjer Marjana ta’ Fuq', - 'MQ' => 'Martinik', - 'MR' => 'Mawritanja', + 'KM' => 'Comoros', + 'KN' => 'Saint Kitts u Nevis', + 'KP' => 'il-Korea ta’ Fuq', + 'KR' => 'il-Korea t’Isfel', + 'KW' => 'il-Kuwajt', + 'KY' => 'il-Gżejjer Cayman', + 'KZ' => 'il-Każakistan', + 'LA' => 'il-Laos', + 'LB' => 'il-Libanu', + 'LC' => 'Saint Lucia', + 'LI' => 'il-Liechtenstein', + 'LK' => 'is-Sri Lanka', + 'LR' => 'il-Liberja', + 'LS' => 'il-Lesoto', + 'LT' => 'il-Litwanja', + 'LU' => 'il-Lussemburgu', + 'LV' => 'il-Latvja', + 'LY' => 'il-Libja', + 'MA' => 'il-Marokk', + 'MC' => 'Monaco', + 'MD' => 'il-Moldova', + 'ME' => 'il-Montenegro', + 'MF' => 'Saint Martin', + 'MG' => 'Madagascar', + 'MH' => 'Gżejjer Marshall', + 'MK' => 'l-Eks-Repubblika Jugoslava tal-Maċedonia', + 'ML' => 'il-Mali', + 'MM' => 'il-Myanmar/Burma', + 'MN' => 'il-Mongolja', + 'MO' => 'ir-Reġjun Amministrattiv Speċjali tal-Macao tar-Repubblika tal-Poplu taċ-Ċina', + 'MP' => 'Ġżejjer Mariana tat-Tramuntana', + 'MQ' => 'Martinique', + 'MR' => 'il-Mauritania', 'MS' => 'Montserrat', 'MT' => 'Malta', - 'MU' => 'Mawrizju', - 'MV' => 'Maldives', - 'MW' => 'Malawi', - 'MX' => 'Messiku', - 'MY' => 'Malasja', - 'MZ' => 'Możambik', - 'NA' => 'Namibja', + 'MU' => 'Mauritius', + 'MV' => 'il-Maldivi', + 'MW' => 'il-Malawi', + 'MX' => 'il-Messiku', + 'MY' => 'il-Malasja', + 'MZ' => 'il-Mozambique', + 'NA' => 'in-Namibja', 'NC' => 'New Caledonia', - 'NE' => 'Niġer', - 'NF' => 'Norfolk Island', - 'NG' => 'Niġerja', - 'NI' => 'Nikaragwa', - 'NL' => 'Olanda', - 'NO' => 'Norveġja', - 'NP' => 'Nepal', + 'NE' => 'in-Niġer', + 'NF' => 'Gżira Norfolk', + 'NG' => 'in-Niġerja', + 'NI' => 'in-Nikaragwa', + 'NL' => 'in-Netherlands', + 'NO' => 'in-Norveġja', + 'NP' => 'in-Nepal', 'NR' => 'Nauru', 'NU' => 'Niue', 'NZ' => 'New Zealand', - 'OM' => 'Oman', - 'PA' => 'Panama', - 'PE' => 'Peru', - 'PF' => 'Polinesja Franċiża', - 'PG' => 'Papwa-Ginea Ġdida', - 'PH' => 'Filippini', - 'PK' => 'Pakistan', - 'PL' => 'Polonja', - 'PM' => 'Saint Pierre and Miquelon', - 'PN' => 'Pitcairn', + 'OM' => 'l-Oman', + 'PA' => 'il-Panama', + 'PE' => 'il-Perù', + 'PF' => 'Polineżja Franċiża', + 'PG' => 'Papua New Guinea', + 'PH' => 'il-Filippini', + 'PK' => 'il-Pakistan', + 'PL' => 'il-Polonja', + 'PM' => 'Saint Pierre u Miquelon', + 'PN' => 'Gżejjer Pitcairn', 'PR' => 'Puerto Rico', - 'PS' => 'Territorju Palestinjan', - 'PT' => 'Portugall', + 'PS' => 'it-Territorji Palestinjani', + 'PT' => 'il-Portugall', 'PW' => 'Palau', - 'PY' => 'Paragwaj', - 'QA' => 'Qatar', + 'PY' => 'il-Paragwaj', + 'QA' => 'il-Qatar', 'RE' => 'Réunion', - 'RO' => 'Rumanija', - 'RU' => 'Ir-Russja', - 'RW' => 'Rwanda', - 'SA' => 'Għarabja Sawdita', - 'SB' => 'Solomon Islands', - 'SC' => 'Seychelles', - 'SD' => 'Sudan', - 'SE' => 'Żvezja', - 'SG' => 'Singapor', + 'RO' => 'ir-Rumanija', + 'RS' => 'is-Serbja', + 'RU' => 'ir-Russja', + 'RW' => 'ir-Rwanda', + 'SA' => 'l-Arabia Sawdija', + 'SB' => 'il-Gżejjer Solomon', + 'SC' => 'is-Seychelles', + 'SD' => 'is-Sudan', + 'SE' => 'l-Iżvezja', + 'SG' => 'Singapore', 'SH' => 'Saint Helena', - 'SI' => 'Slovenja', - 'SJ' => 'Svalbard and Jan Mayen', - 'SK' => 'Slovakkja', + 'SI' => 'is-Slovenja', + 'SJ' => 'Svalbard u Jan Mayen', + 'SK' => 'is-Slovakkja', 'SL' => 'Sierra Leone', 'SM' => 'San Marino', - 'SN' => 'Senegal', - 'SO' => 'Somalja', - 'SR' => 'Surinam', - 'ST' => 'Sao Tome and Principe', + 'SN' => 'is-Senegal', + 'SO' => 'is-Somalja', + 'SR' => 'is-Suriname', + 'SS' => 'is-Sudan t’Isfel', + 'ST' => 'São Tomé u Príncipe', 'SV' => 'El Salvador', - 'SY' => 'Sirja', - 'SZ' => 'Sważiland', - 'TC' => 'Turks and Caicos Islands', - 'TD' => 'Ċad', - 'TF' => 'Territorji Franċiżi ta’ Nofsinhar', - 'TG' => 'Togo', - 'TH' => 'Tajlandja', - 'TJ' => 'Taġikistan', - 'TK' => 'Tokelaw', - 'TL' => 'Timor tal-Lvant', - 'TM' => 'Turkmenistan', - 'TN' => 'Tuneż', + 'SX' => 'Sint Maarten', + 'SY' => 'is-Sirja', + 'SZ' => 'is-Swaziland', + 'TA' => 'Tristan da Cunha', + 'TC' => 'il-Gżejjer Turks u Caicos', + 'TD' => 'iċ-Chad', + 'TF' => 'It-Territorji Franċiżi tan-Nofsinhar', + 'TG' => 'it-Togo', + 'TH' => 'it-Tajlandja', + 'TJ' => 'it-Taġikistan', + 'TK' => 'it-Tokelau', + 'TL' => 'Timor Leste', + 'TM' => 'it-Turkmenistan', + 'TN' => 'it-Tuneżija', 'TO' => 'Tonga', - 'TR' => 'Turkija', + 'TR' => 'it-Turkija', 'TT' => 'Trinidad u Tobago', 'TV' => 'Tuvalu', - 'TW' => 'Tajwan', - 'TZ' => 'Tanżanija', - 'UA' => 'Ukraina', - 'UG' => 'Uganda', - 'UM' => 'United States Minor Outlying Islands', - 'US' => 'L-Istati Uniti', - 'UY' => 'Urugwaj', - 'UZ' => 'Użbekistan', - 'VA' => 'Vatikan', - 'VC' => 'Saint Vincent and the Grenadines', - 'VE' => 'Venezwela', - 'VG' => 'British Virgin Islands', - 'VI' => 'U.S. Virgin Islands', - 'VN' => 'Vjetnam', - 'VU' => 'Vanwatu', - 'WF' => 'Wallis and Futuna', + 'TW' => 'it-Tajwan', + 'TZ' => 'it-Tanzanija', + 'UA' => 'l-Ukrajna', + 'UG' => 'l-Uganda', + 'UM' => 'Il-Gżejjer Minuri Mbiegħda tal-Istati Uniti', + 'US' => 'l-Istati Uniti', + 'UY' => 'l-Urugwaj', + 'UZ' => 'l-Użbekistan', + 'VA' => 'l-Istat tal-Belt tal-Vatikan', + 'VC' => 'Saint Vincent u l-Grenadini', + 'VE' => 'il-Venezwela', + 'VG' => 'il-Gżejjer Verġni Brittaniċi', + 'VI' => 'il-Gżejjer Verġni tal-Istati Uniti', + 'VN' => 'il-Vjetnam', + 'VU' => 'Vanuatu', + 'WF' => 'Wallis u Futuna', 'WS' => 'Samoa', - 'YE' => 'Jemen', - 'YT' => 'Majotte', - 'ZA' => 'Afrika t’Isfel', - 'ZM' => 'Żambja', - 'ZW' => 'Żimbabwe', + 'XK' => 'Kosovo', + 'YE' => 'il-Jemen', + 'YT' => 'Mayotte', + 'ZA' => 'l-Afrika t’Isfel', + 'ZM' => 'iż-Żambja', + 'ZW' => 'iż-Żimbabwe', ); diff --git a/vendor/giggsey/locale/data/mua.php b/vendor/giggsey/locale/data/mua.php index a650e9e14..70d86e03f 100644 --- a/vendor/giggsey/locale/data/mua.php +++ b/vendor/giggsey/locale/data/mua.php @@ -1,6 +1,6 @@ 'အက်စ်စင်ရှီအွန်ကျွန်း', - 'AD' => 'အန်ဒိုရာ', + 'AC' => 'တက်တော်မူကျွန်း', + 'AD' => 'အင်ဒိုရာ', 'AE' => 'ယူအေအီး', 'AF' => 'အာဖဂန်နစ္စတန်', - 'AG' => 'အန်တီဂုအာနှင့်ဘာဘုဒါ', - 'AI' => 'အန်ဂွီလာ', - 'AL' => 'အဲလ်ဘာနီအာ', - 'AM' => 'အာမေနီးယား', + 'AG' => 'အင်တီဂွါနှင့် ဘာဘူဒါ', + 'AI' => 'အန်ဂီလာ', + 'AL' => 'အယ်လ်ဘေးနီးယား', + 'AM' => 'အာမေးနီးယား', 'AO' => 'အင်ဂိုလာ', 'AQ' => 'အန္တာတိက', 'AR' => 'အာဂျင်တီးနား', - 'AS' => 'အမေရိကန် စမိုအ', + 'AS' => 'အမေရိကန် ဆမိုးအား', 'AT' => 'ဩစတြီးယား', 'AU' => 'ဩစတြေးလျ', - 'AW' => 'အာရုဘာ', + 'AW' => 'အာရူးဗား', 'AX' => 'အာလန်ကျွန်း', 'AZ' => 'အဇာဘိုင်ဂျန်', - 'BA' => 'ဘော့စနီးယား နှင့် ဟာဇီဂိုဘီးနား', - 'BB' => 'ဘာဘဒိုးစ်', + 'BA' => 'ဘော့စနီးယားနှင့် ဟာဇီဂိုဗီနား', + 'BB' => 'ဘာဘေးဒိုးစ်', 'BD' => 'ဘင်္ဂလားဒေ့ရှ်', 'BE' => 'ဘယ်လ်ဂျီယမ်', - 'BF' => 'ဘာကီနာ ဖာဆို', - 'BG' => 'ဘူဂေးရီးယား', + 'BF' => 'ဘာကီးနား ဖားဆို', + 'BG' => 'ဘူလ်ဂေးရီးယား', 'BH' => 'ဘာရိန်း', 'BI' => 'ဘူရွန်ဒီ', 'BJ' => 'ဘီနင်', - 'BL' => 'စိန့်ဘာသီလီမိုင်', - 'BM' => 'ဘာမူဒါ', + 'BL' => 'စိန့်ဘာသယ်လ်မီ', + 'BM' => 'ဘာမြူဒါ', 'BN' => 'ဘရူနိုင်း', - 'BO' => 'ဘိုလီးဘီးယား', - 'BQ' => 'ကာရီဘီယံနယ်သာလန်', + 'BO' => 'ဘိုလီးဗီးယား', + 'BQ' => 'ကာရစ်ဘီယံ နယ်သာလန်', 'BR' => 'ဘရာဇီး', 'BS' => 'ဘဟားမား', 'BT' => 'ဘူတန်', - 'BW' => 'ဘော့စ်ဝါနာ', - 'BY' => 'ဘီလာရုစ်', - 'BZ' => 'ဘေလီဇ်', + 'BW' => 'ဘော့ဆွာနာ', + 'BY' => 'ဘီလာရုဇ်', + 'BZ' => 'ဘလိဇ်', 'CA' => 'ကနေဒါ', - 'CC' => 'ကိုကိုး ကျွန်းစု', - 'CD' => 'ကွန်ဂို-ကင်ရှာစ', - 'CF' => 'အလယ်ပိုင်း အာဖရိက ပြည်ထောင်စု', - 'CG' => 'ကွန်ဂို-ဘရာဇာဗီလ်', - 'CH' => 'ဆွစ်ဇလန်', - 'CI' => 'အိုင်ဗရီကိုစ့်', + 'CC' => 'ကိုကိုးကျွန်း', + 'CD' => 'ကွန်ဂို', + 'CF' => 'ဗဟို အာဖရိက ပြည်ထောင်စု', + 'CG' => 'ကွန်ဂို-ဘရာဇာဗီးလ်', + 'CH' => 'ဆွစ်ဇာလန်', + 'CI' => 'ကို့တ် ဒီဗွာ', 'CK' => 'ကွတ် ကျွန်းစု', 'CL' => 'ချီလီ', 'CM' => 'ကင်မရွန်း', 'CN' => 'တရုတ်', 'CO' => 'ကိုလံဘီယာ', - 'CR' => 'ကော့စ်တာရီကာ', + 'CR' => 'ကို့စ်တာရီကာ', 'CU' => 'ကျူးဘား', - 'CV' => 'ခေ့ပ်ဗာဒူ', - 'CW' => 'ခူရာကာအို', + 'CV' => 'ကိတ်ဗာဒီ', + 'CW' => 'ကျူရေးကိုးစ်', 'CX' => 'ခရစ်စမတ် ကျွန်း', - 'CY' => 'ဆိုက်ပရက်စ်', + 'CY' => 'ဆိုက်ပရပ်စ်', 'CZ' => 'ချက် ပြည်ထောင်စု', 'DE' => 'ဂျာမဏီ', - 'DG' => 'ဒီအေဂိုဂရာစီအာ', + 'DG' => 'ဒီအဲဂိုဂါစီရာ', 'DJ' => 'ဂျီဘူတီ', 'DK' => 'ဒိန်းမတ်', 'DM' => 'ဒိုမီနီကာ', @@ -74,47 +74,47 @@ return array ( 'EC' => 'အီကွေဒေါ', 'EE' => 'အက်စတိုးနီးယား', 'EG' => 'အီဂျစ်', - 'EH' => 'အနောက်ပိုင်း ဆာဟာရ', - 'ER' => 'အီရီတရီအာ', + 'EH' => 'အနောက် ဆာဟာရ', + 'ER' => 'အီရီထရီးယား', 'ES' => 'စပိန်', 'ET' => 'အီသီယိုးပီးယား', 'FI' => 'ဖင်လန်', 'FJ' => 'ဖီဂျီ', - 'FK' => 'ဖောက်ကလန် ကျွန်းစု', + 'FK' => 'ဖော့ကလန် ကျွန်းစု', 'FM' => 'မိုင်ခရိုနီရှား', 'FO' => 'ဖာရိုး ကျွန်းစုများ', 'FR' => 'ပြင်သစ်', 'GA' => 'ဂါဘွန်', 'GB' => 'ယူနိုက်တက်ကင်းဒမ်း', - 'GD' => 'ဂရီနာဒါ', + 'GD' => 'ဂရီနေဒါ', 'GE' => 'ဂျော်ဂျီယာ', - 'GF' => 'ပြင်သစ် ဂီယာနာ', + 'GF' => 'ပြင်သစ် ဂိုင်ယာနာ', 'GG' => 'ဂွန်းဇီ', 'GH' => 'ဂါနာ', 'GI' => 'ဂျီဘရော်လ်တာ', 'GL' => 'ဂရင်းလန်း', - 'GM' => 'ဂန်ဘီရာ', - 'GN' => 'ဂီးနီ', - 'GP' => 'ဂူအာဒီလုပ်', - 'GQ' => 'အီကွေတာ ဂီရာနာ', + 'GM' => 'ဂမ်ဘီရာ', + 'GN' => 'ဂီနီ', + 'GP' => 'ဂွါဒီလု', + 'GQ' => 'အီကွေတာ ဂီနီ', 'GR' => 'ဂရိ', 'GS' => 'တောင် ဂျော်ဂျီယာ နှင့် တောင် ဆင်းဒဝစ်ဂျ် ကျွန်းစုများ', - 'GT' => 'ဂွာတီမာလာ', + 'GT' => 'ဂွါတီမာလာ', 'GU' => 'ဂူအမ်', - 'GW' => 'ဂီရာနာ-ဘီစ်စာဥ', - 'GY' => 'ဂူရာနာ', - 'HK' => 'တရုတ်၏ အထူးအုပ်ချုပ်ခွင့်ရ ဟောင်ကောင်', + 'GW' => 'ဂီနီ-ဘီစော', + 'GY' => 'ဂိုင်ယာနာ', + 'HK' => 'ဟောင်ကောင် (တရုတ်ပြည်)', 'HN' => 'ဟွန်ဒူးရပ်စ်', 'HR' => 'ခရိုအေးရှား', 'HT' => 'ဟေတီ', 'HU' => 'ဟန်ဂေရီ', - 'IC' => 'ကာနာရီကျွန်းစု', + 'IC' => 'ကနေရီ ကျွန်းစု', 'ID' => 'အင်ဒိုနီးရှား', 'IE' => 'အိုင်ယာလန်', 'IL' => 'အစ္စရေး', 'IM' => 'မန်ကျွန်း', 'IN' => 'အိန္ဒိယ', - 'IO' => 'ဗြိတိသျှ အိန္ဒြိယ သမုဒ္ဒရာ ပိုင်နက်', + 'IO' => 'ဗြိတိသျှပိုင် အိန္ဒိယသမုဒ္ဒရာကျွန်းများ', 'IQ' => 'အီရတ်', 'IR' => 'အီရန်', 'IS' => 'အိုက်စလန်', @@ -124,7 +124,7 @@ return array ( 'JO' => 'ဂျော်ဒန်', 'JP' => 'ဂျပန်', 'KE' => 'ကင်ညာ', - 'KG' => 'ခရူဂစ်စတန်', + 'KG' => 'ကာဂျစ္စတန်', 'KH' => 'ကမ္ဘောဒီးယား', 'KI' => 'ခီရီဘာတီ', 'KM' => 'ကိုမိုရိုစ်', @@ -136,127 +136,127 @@ return array ( 'KZ' => 'ကာဇက်စတန်', 'LA' => 'လာအို', 'LB' => 'လက်ဘနွန်', - 'LC' => 'စိန့်လူစီအာ', - 'LI' => 'လစ်ခ်ထင်စတိုင်', + 'LC' => 'စိန့်လူစီယာ', + 'LI' => 'လစ်တန်စတိန်း', 'LK' => 'သီရိလင်္ကာ', - 'LR' => 'လိုင်ဘေးရီးယား', + 'LR' => 'လိုက်ဘေးရီးယား', 'LS' => 'လီဆိုသို', 'LT' => 'လစ်သူယေးနီးယား', 'LU' => 'လူဇင်ဘတ်', 'LV' => 'လတ်ဗီးယား', - 'LY' => 'လီဗရာ', + 'LY' => 'လစ်ဗျား', 'MA' => 'မော်ရိုကို', 'MC' => 'မိုနာကို', 'MD' => 'မောလ်ဒိုဗာ', 'ME' => 'မွန်တီနိဂရိုး', 'MF' => 'စိန့်မာတင်', - 'MG' => 'မာဒါဂတ်စကာ', + 'MG' => 'မဒါဂတ်စကား', 'MH' => 'မာရှယ် ကျွန်းစု', - 'MK' => 'မာစီဒိုးနီးယား', + 'MK' => 'မက်စီဒိုးနီးယား', 'ML' => 'မာလီ', 'MM' => 'မြန်မာ', 'MN' => 'မွန်ဂိုးလီးယား', - 'MO' => 'တရုတ်၏ အထူးအုပ်ချုပ်ခွင့်ရ မကာအို', + 'MO' => 'မကာအို (တရုတ်ပြည်)', 'MP' => 'တောင်ပိုင်းမာရီအာနာကျွန်းစု', - 'MQ' => 'မာတီနီကီ', - 'MR' => 'မောရီတာနီအာ', + 'MQ' => 'မာတီနိခ်', + 'MR' => 'မော်ရီတေးနီးယား', 'MS' => 'မောင့်စဲရက်', 'MT' => 'မောလ်တာ', - 'MU' => 'မော်ရေရှားစ်', + 'MU' => 'မောရစ်ရှ', 'MV' => 'မော်လ်ဒိုက်', 'MW' => 'မာလာဝီ', 'MX' => 'မက္ကဆီကို', 'MY' => 'မလေးရှား', - 'MZ' => 'မိုဇန်ဘစ်', - 'NA' => 'နမ်မီးဘီးယား', + 'MZ' => 'မိုဇမ်ဘစ်', + 'NA' => 'နမီးဘီးယား', 'NC' => 'နယူး ကယ်လီဒိုနီးယား', 'NE' => 'နိုင်ဂျာ', - 'NF' => 'နောဖော့ခ်ကျွန်း', + 'NF' => 'နောဖုတ်ကျွန်း', 'NG' => 'နိုင်ဂျီးရီးယား', - 'NI' => 'နီကာရာဂွာ', + 'NI' => 'နီကာရာဂွါ', 'NL' => 'နယ်သာလန်', 'NO' => 'နော်ဝေ', 'NP' => 'နီပေါ', - 'NR' => 'နာဥူရူ', + 'NR' => 'နော်ရူး', 'NU' => 'နီဥူအေ', 'NZ' => 'နယူးဇီလန်', 'OM' => 'အိုမန်', 'PA' => 'ပနားမား', 'PE' => 'ပီရူး', - 'PF' => 'ပြင်သစ် ပေါ်လီနေးရှား', - 'PG' => 'ပါပူရာနယူးဂီနီ', + 'PF' => 'ပြင်သစ် ပေါ်လီနီးရှား', + 'PG' => 'ပါပူအာ နယူးဂီနီ', 'PH' => 'ဖိလစ်ပိုင်', 'PK' => 'ပါကစ္စတန်', 'PL' => 'ပိုလန်', - 'PM' => 'စိန့်ပီအဲရီနှင့်မီကွီလွန်', + 'PM' => 'စိန့်ပီအဲရ်နှင့် မီကွီလွန်', 'PN' => 'ပစ်တ်ကိန်းကျွန်းစု', - 'PR' => 'ပေါ်တူရီကို', + 'PR' => 'ပေါ်တိုရီကို', 'PS' => 'ပါလက်စတိုင်း ပိုင်နက်', 'PT' => 'ပေါ်တူဂီ', - 'PW' => 'ပလောင်', + 'PW' => 'ပလာအို', 'PY' => 'ပါရာဂွေး', 'QA' => 'ကာတာ', - 'RE' => 'ရဲအူနီရွန်', + 'RE' => 'ဟေညွန်', 'RO' => 'ရိုမေးနီးယား', 'RS' => 'ဆားဘီးယား', 'RU' => 'ရုရှ', 'RW' => 'ရဝန်ဒါ', - 'SA' => 'ဆော်ဒီအာရေးဗီးယား', + 'SA' => 'ဆော်ဒီအာရေးဘီးယား', 'SB' => 'ဆော်လမွန်ကျွန်းစု', - 'SC' => 'ဆေးရှလ်', + 'SC' => 'ဆေးရှဲ', 'SD' => 'ဆူဒန်', 'SE' => 'ဆွီဒင်', 'SG' => 'စင်္ကာပူ', - 'SH' => 'စိန့်ဟဲလီနာ', + 'SH' => 'စိန့်ဟယ်လယ်နာ', 'SI' => 'စလိုဗေးနီးယား', 'SJ' => 'စဗိုလ်ဘတ်နှင့်ဂျန်မေရန်', - 'SK' => 'စလိုဗေးကီးယား', - 'SL' => 'ဆီအဲရာ လီအိုနီ', - 'SM' => 'ဆော့န်မာရီနို', + 'SK' => 'ဆလိုဗက်ကီးယား', + 'SL' => 'ဆီယာရာ လီယွန်း', + 'SM' => 'ဆန်မာရီနို', 'SN' => 'ဆီနီဂေါ', 'SO' => 'ဆိုမာလီယာ', - 'SR' => 'ဆူရီနိမ်း', - 'SS' => 'မြောက်ဆူဒန်', - 'ST' => 'စိန့်တိုမီနှင့်ပရင်စီပ့်', + 'SR' => 'ဆူရာနမ်', + 'SS' => 'တောင် ဆူဒန်', + 'ST' => 'ဆောင်တူမေးနှင့် ပရင်စီပီ', 'SV' => 'အယ်လ်ဆာဗေးဒိုး', - 'SX' => 'ဆင့်မာအာတင်', + 'SX' => 'စင့်မာတင်', 'SY' => 'ဆီးရီးယား', - 'SZ' => 'စွာဇီလန်', - 'TA' => 'ထရစ်တန်ဒါကွန်ဟာ', + 'SZ' => 'ဆွာဇီလန်', + 'TA' => 'ထရစ္စတန် ဒါ ကွန်ဟာ', 'TC' => 'တခ်စ်နှင့်ကာအီကိုစ်ကျွန်းစု', 'TD' => 'ချဒ်', 'TF' => 'ပြင်သစ် တောင်ပိုင်း ပိုင်နက်များ', 'TG' => 'တိုဂို', 'TH' => 'ထိုင်း', 'TJ' => 'တာဂျီကစ္စတန်', - 'TK' => 'ထိုးခါလူ', + 'TK' => 'တိုကလောင်', 'TL' => 'အရှေ့တီမော', - 'TM' => 'တာခ်မီန့စ်တန်', + 'TM' => 'တာ့ခ်မင်နစ္စတန်', 'TN' => 'တူနီးရှား', 'TO' => 'တွန်ဂါ', 'TR' => 'တူရကီ', - 'TT' => 'ထရိုင်နီဒတ်နှင့်တိုဘာဂို', - 'TV' => 'ထူးဗလူ', + 'TT' => 'ထရီနီဒတ်နှင့် တိုဘက်ဂို', + 'TV' => 'တူဗားလူ', 'TW' => 'ထိုင်ဝမ်', 'TZ' => 'တန်ဇန်းနီးယား', 'UA' => 'ယူကရိန်း', - 'UG' => 'ယူဂန္ဓာ', - 'UM' => 'ယူနိုက်တက်စတိတ် အပြင်ထွက် နေသည့် သေးငယ်သောကျွန်းများ', + 'UG' => 'ယူဂန်းဒါး', + 'UM' => 'ယူနိုက်တက်စတိတ် ကျွန်းနိုင်ငံများ', 'US' => 'ယူနိုက်တက်စတိတ်', 'UY' => 'ဥရုဂွေး', - 'UZ' => 'ဥဘက်ကစ္စတန်', + 'UZ' => 'ဉဇဘက်ကစ္စတန်', 'VA' => 'ဗာတီကန်စီတီး', - 'VC' => 'စိန့်ဗင့်ဆင့်နှင့် သည်ဂရဲနာဒင်းစ်', + 'VC' => 'စိန့်ဗင်းဆင့်နှင့် ဂရိနေဒိုင်', 'VE' => 'ဗင်နီဇွဲလား', 'VG' => 'ဗြိတိသျှ ဗာဂျင်း ကျွန်းစု', 'VI' => 'ယူအက်စ် ဗာဂျင်း ကျွန်းစု', 'VN' => 'ဗီယက်နမ်', - 'VU' => 'ဗာနုအာတူ', - 'WF' => 'ဝေါလစ်နှင့်ဖူထူးနား', - 'WS' => 'ဆာမိုအာ', + 'VU' => 'ဗနွားတူ', + 'WF' => 'ဝေါလစ်နှင့် ဖူကျူးနား', + 'WS' => 'ဆမိုးအား', 'XK' => 'ကိုဆိုဗို', 'YE' => 'ယီမင်', - 'YT' => 'မေအိုတီ', + 'YT' => 'မာယိုတေး', 'ZA' => 'တောင်အာဖရိက', 'ZM' => 'ဇမ်ဘီယာ', 'ZW' => 'ဇင်ဘာဘွေ', diff --git a/vendor/giggsey/locale/data/mzn.php b/vendor/giggsey/locale/data/mzn.php index 81a6c2941..f8841e704 100644 --- a/vendor/giggsey/locale/data/mzn.php +++ b/vendor/giggsey/locale/data/mzn.php @@ -1,6 +1,6 @@ 'Curaçao', 'CX' => 'Christmasøya', 'CY' => 'Kypros', - 'CZ' => 'Tsjekkia', + 'CZ' => 'Den tsjekkiske republikk', 'DE' => 'Tyskland', 'DG' => 'Diego Garcia', 'DJ' => 'Djibouti', diff --git a/vendor/giggsey/locale/data/nd.php b/vendor/giggsey/locale/data/nd.php index dead3c863..b032129c3 100644 --- a/vendor/giggsey/locale/data/nd.php +++ b/vendor/giggsey/locale/data/nd.php @@ -1,6 +1,6 @@ 'अल्बानिया', 'AM' => 'आर्मेनिया', 'AO' => 'अङ्गोला', - 'AQ' => 'अन्टारतिका', + 'AQ' => 'अन्टारटिका', 'AR' => 'अर्जेन्टिना', 'AS' => 'अमेरिकी समोआ', 'AT' => 'अष्ट्रिया', @@ -50,7 +50,7 @@ return array ( 'CF' => 'केन्द्रीय अफ्रिकी गणतन्त्र', 'CG' => 'कोङ्गो - ब्राज्जाभिल्ले', 'CH' => 'स्विजरल्याण्ड', - 'CI' => 'आइभरी कोस्ट', + 'CI' => 'आइभोरी कोस्ट', 'CK' => 'कुक टापुहरु', 'CL' => 'चिली', 'CM' => 'क्यामरून', @@ -82,7 +82,7 @@ return array ( 'FJ' => 'फिजी', 'FK' => 'फकल्याण्ड टापुहरु', 'FM' => 'माइक्रोनेसिया', - 'FO' => 'फारोर टापुहरु', + 'FO' => 'फारो टापुहरू', 'FR' => 'फ्रान्स', 'GA' => 'गावोन', 'GB' => 'बेलायत', @@ -241,7 +241,7 @@ return array ( 'TZ' => 'तान्जानिया', 'UA' => 'युक्रेन', 'UG' => 'युगाण्डा', - 'UM' => 'संयुक्त राज्य बाह्य टापुहरु', + 'UM' => 'संयुक्त राज्यका बाह्य टापुहरु', 'US' => 'संयुक्त राज्य', 'UY' => 'उरूग्वे', 'UZ' => 'उज्बेकिस्तान', diff --git a/vendor/giggsey/locale/data/nl.php b/vendor/giggsey/locale/data/nl.php index 2cfcf0a16..1c9806d29 100644 --- a/vendor/giggsey/locale/data/nl.php +++ b/vendor/giggsey/locale/data/nl.php @@ -1,6 +1,6 @@ 'Benin', 'BL' => 'Saint Barthélemy', 'BM' => 'Bermuda', - 'BN' => 'Brunei Darussalam', + 'BN' => 'Brunei', 'BO' => 'Bolivia', 'BR' => 'Brasil', 'BS' => 'Bahamas', @@ -58,6 +58,7 @@ return array ( 'CR' => 'Costa Rica', 'CU' => 'Cuba', 'CV' => 'Kapp Verde', + 'CW' => 'Curaçao', 'CX' => 'Christmasøya', 'CY' => 'Kypros', 'CZ' => 'Tsjekkia', @@ -125,7 +126,7 @@ return array ( 'KG' => 'Kirgisistan', 'KH' => 'Kambodsja', 'KI' => 'Kiribati', - 'KM' => 'Komorene', + 'KM' => 'Komorane', 'KN' => 'St. Christopher og Nevis', 'KP' => 'Nord-Korea', 'KR' => 'Sør-Korea', @@ -152,7 +153,7 @@ return array ( 'MH' => 'Marshalløyane', 'MK' => 'Makedonia', 'ML' => 'Mali', - 'MM' => 'Myanmar', + 'MM' => 'Myanmar (Burma)', 'MN' => 'Mongolia', 'MO' => 'Macao S.A.R. Kina', 'MP' => 'Nord-Marianane', @@ -199,7 +200,7 @@ return array ( 'RS' => 'Serbia', 'RU' => 'Russland', 'RW' => 'Rwanda', - 'SA' => 'Saudi Arabia', + 'SA' => 'Saudi-Arabia', 'SB' => 'Salomonøyane', 'SC' => 'Seychellane', 'SD' => 'Sudan', @@ -214,19 +215,21 @@ return array ( 'SN' => 'Senegal', 'SO' => 'Somalia', 'SR' => 'Surinam', + 'SS' => 'Sør-Sudan', 'ST' => 'São Tomé og Príncipe', 'SV' => 'El Salvador', + 'SX' => 'Sint Maarten', 'SY' => 'Syria', 'SZ' => 'Swaziland', 'TA' => 'Tristan da Cunha', 'TC' => 'Turks- og Caicosøyane', - 'TD' => 'Tchad', + 'TD' => 'Tsjad', 'TF' => 'Franske sørområde', 'TG' => 'Togo', 'TH' => 'Thailand', 'TJ' => 'Tadsjikistan', 'TK' => 'Tokelau', - 'TL' => 'Aust-Timor', + 'TL' => 'Timor-Leste (Aust-Timor)', 'TM' => 'Turkmenistan', 'TN' => 'Tunisia', 'TO' => 'Tonga', @@ -250,7 +253,8 @@ return array ( 'VU' => 'Vanuatu', 'WF' => 'Wallis og Futuna', 'WS' => 'Samoa', - 'YE' => 'Yemen', + 'XK' => 'Kosovo', + 'YE' => 'Jemen', 'YT' => 'Mayotte', 'ZA' => 'Sør-Afrika', 'ZM' => 'Zambia', diff --git a/vendor/giggsey/locale/data/nnh.php b/vendor/giggsey/locale/data/nnh.php index f4413a767..3cda08785 100644 --- a/vendor/giggsey/locale/data/nnh.php +++ b/vendor/giggsey/locale/data/nnh.php @@ -1,6 +1,6 @@ 'پکستان', + 'PK' => 'پاکستان', ); diff --git a/vendor/giggsey/locale/data/pa.php b/vendor/giggsey/locale/data/pa.php index fe6f1293d..3e750e496 100644 --- a/vendor/giggsey/locale/data/pa.php +++ b/vendor/giggsey/locale/data/pa.php @@ -1,6 +1,6 @@ 'ਬ੍ਰਾਜ਼ੀਲ', 'BS' => 'ਬਹਾਮਾਸ', 'BT' => 'ਭੂਟਾਨ', - 'BW' => 'ਬੋਟਸਵਾਨਾ', + 'BW' => 'ਬੋਤਸਵਾਨਾ', 'BY' => 'ਬੇਲਾਰੂਸ', 'BZ' => 'ਬੇਲੀਜ਼', 'CA' => 'ਕੈਨੇਡਾ', @@ -62,7 +62,7 @@ return array ( 'CW' => 'ਕੁਰਾਕਾਓ', 'CX' => 'ਕ੍ਰਿਸਮਿਸ ਟਾਪੂ', 'CY' => 'ਸਾਇਪ੍ਰਸ', - 'CZ' => 'ਚੈਕ ਗਣਰਾਜ', + 'CZ' => 'ਚੈੱਕ ਗਣਰਾਜ', 'DE' => 'ਜਰਮਨੀ', 'DG' => 'ਡੀਇਗੋ ਗਾਰਸੀਆ', 'DJ' => 'ਜ਼ੀਬੂਤੀ', @@ -88,7 +88,7 @@ return array ( 'GB' => 'ਯੂਨਾਈਟਡ ਕਿੰਗਡਮ', 'GD' => 'ਗ੍ਰੇਨਾਡਾ', 'GE' => 'ਜਾਰਜੀਆ', - 'GF' => 'ਫ਼ਰੈਂਚ ਗੁਆਨਾ', + 'GF' => 'ਫਰੈਂਚ ਗੁਇਆਨਾ', 'GG' => 'ਗਰਨਜੀ', 'GH' => 'ਘਾਨਾ', 'GI' => 'ਜਿਬਰਾਲਟਰ', @@ -114,7 +114,7 @@ return array ( 'IL' => 'ਇਜ਼ਰਾਈਲ', 'IM' => 'ਆਇਲ ਆਫ ਮੈਨ', 'IN' => 'ਭਾਰਤ', - 'IO' => 'ਬਰਤਾਨਵੀ ਹਿੰਦ ਮਹਾਂਸਾਗਰ ਪ੍ਰਦੇਸ਼', + 'IO' => 'ਬਰਤਾਨਵੀ ਹਿੰਦ ਮਹਾਂਸਾਗਰ ਖਿੱਤਾ', 'IQ' => 'ਇਰਾਕ', 'IR' => 'ਈਰਾਨ', 'IS' => 'ਆਈਸਲੈਂਡ', @@ -128,9 +128,9 @@ return array ( 'KH' => 'ਕੰਬੋਡੀਆ', 'KI' => 'ਕਿਰਬਾਤੀ', 'KM' => 'ਕੋਮੋਰੋਸ', - 'KN' => 'ਸੈਂਟ ਕਿਟਸ ਐਂਡ ਨੇਵਿਸ', - 'KP' => 'ਉੱਤਰੀ ਕੋਰੀਆ', - 'KR' => 'ਦੱਖਣੀ ਕੋਰੀਆ', + 'KN' => 'ਸੇਂਟ ਕਿਟਸ ਐਂਡ ਨੇਵਿਸ', + 'KP' => 'ਉੱਤਰ ਕੋਰੀਆ', + 'KR' => 'ਦੱਖਣ ਕੋਰੀਆ', 'KW' => 'ਕੁਵੈਤ', 'KY' => 'ਕੇਮੈਨ ਟਾਪੂ', 'KZ' => 'ਕਜ਼ਾਖਸਤਾਨ', @@ -143,7 +143,7 @@ return array ( 'LS' => 'ਲੇਸੋਥੋ', 'LT' => 'ਲਿਥੁਆਨੀਆ', 'LU' => 'ਲਕਜ਼ਮਬਰਗ', - 'LV' => 'ਲਾਟਵੀਆ', + 'LV' => 'ਲਾਤਵੀਆ', 'LY' => 'ਲੀਬੀਆ', 'MA' => 'ਮੋਰੱਕੋ', 'MC' => 'ਮੋਨਾਕੋ', @@ -185,13 +185,13 @@ return array ( 'PE' => 'ਪੇਰੂ', 'PF' => 'ਫਰੈਂਚ ਪੋਲੀਨੇਸ਼ੀਆ', 'PG' => 'ਪਾਪੂਆ ਨਿਊ ਗਿਨੀ', - 'PH' => 'ਫਿਲੀਪੀਂਸ', + 'PH' => 'ਫਿਲੀਪੀਨਜ', 'PK' => 'ਪਾਕਿਸਤਾਨ', 'PL' => 'ਪੋਲੈਂਡ', - 'PM' => 'ਸੈਂਟ ਪੀਅਰੇ ਐਂਡ ਮਿਕੇਲਨ', + 'PM' => 'ਸੇਂਟ ਪੀਅਰੇ ਐਂਡ ਮਿਕੇਲਨ', 'PN' => 'ਪਿਟਕੇਰਨ ਟਾਪੂ', 'PR' => 'ਪਿਊਰਟੋ ਰਿਕੋ', - 'PS' => 'ਫਿਲੀਸਤੀਨੀ ਖੇਤਰ', + 'PS' => 'ਫਿਲੀਸਤੀਨੀ ਇਲਾਕਾ', 'PT' => 'ਪੁਰਤਗਾਲ', 'PW' => 'ਪਲਾਉ', 'PY' => 'ਪੈਰਾਗਵੇ', @@ -216,7 +216,7 @@ return array ( 'SN' => 'ਸੇਨੇਗਲ', 'SO' => 'ਸੋਮਾਲੀਆ', 'SR' => 'ਸੂਰੀਨਾਮ', - 'SS' => 'ਦੱਖਣੀ ਸੂਡਾਨ', + 'SS' => 'ਦੱਖਣ ਸੁਡਾਨ', 'ST' => 'ਸਾਓ ਟੋਮ ਅਤੇ ਪ੍ਰਿੰਸੀਪੇ', 'SV' => 'ਅਲ ਸਲਵਾਡੋਰ', 'SX' => 'ਸਿੰਟ ਮਾਰਟੀਨ', @@ -241,7 +241,7 @@ return array ( 'TZ' => 'ਤਨਜ਼ਾਨੀਆ', 'UA' => 'ਯੂਕਰੇਨ', 'UG' => 'ਯੂਗਾਂਡਾ', - 'UM' => 'ਯੂ.ਐਸ. ਦੂਰ-ਦੁਰਾਡੇ ਟਾਪੂ', + 'UM' => 'ਯੂ.ਐੱਸ. ਦੂਰ-ਦੁਰਾਡੇ ਟਾਪੂ', 'US' => 'ਸੰਯੁਕਤ ਰਾਜ', 'UY' => 'ਉਰੂਗਵੇ', 'UZ' => 'ਉਜ਼ਬੇਕਿਸਤਾਨ', @@ -249,7 +249,7 @@ return array ( 'VC' => 'ਸੇਂਟ ਵਿਨਸੈਂਟ ਐਂਡ ਗ੍ਰੇਨਾਡੀਨਸ', 'VE' => 'ਵੇਨੇਜ਼ੂਏਲਾ', 'VG' => 'ਬ੍ਰਿਟਿਸ਼ ਵਰਜਿਨ ਟਾਪੂ', - 'VI' => 'ਯੂ ਐਸ ਵਰਜਿਨ ਟਾਪੂ', + 'VI' => 'ਯੂ ਐੱਸ ਵਰਜਿਨ ਟਾਪੂ', 'VN' => 'ਵੀਅਤਨਾਮ', 'VU' => 'ਵਾਨੂਆਟੂ', 'WF' => 'ਵਾਲਿਸ ਅਤੇ ਫੂਟੂਨਾ', @@ -257,7 +257,7 @@ return array ( 'XK' => 'ਕੋਸੋਵੋ', 'YE' => 'ਯਮਨ', 'YT' => 'ਮਾਯੋਟੀ', - 'ZA' => 'ਦੱਖਣੀ ਅਫਰੀਕਾ', + 'ZA' => 'ਦੱਖਣ ਅਫਰੀਕਾ', 'ZM' => 'ਜ਼ਾਮਬੀਆ', 'ZW' => 'ਜ਼ਿੰਬਾਬਵੇ', ); diff --git a/vendor/giggsey/locale/data/pl.php b/vendor/giggsey/locale/data/pl.php index e45352f17..6a9c28957 100644 --- a/vendor/giggsey/locale/data/pl.php +++ b/vendor/giggsey/locale/data/pl.php @@ -1,6 +1,6 @@ 'Benin', 'BL' => 'Saint-Barthélemy', 'BM' => 'Bermudy', - 'BN' => 'Brunei Darussalam', + 'BN' => 'Brunei', 'BO' => 'Boliwia', 'BQ' => 'Niderlandy Karaibskie', 'BR' => 'Brazylia', diff --git a/vendor/giggsey/locale/data/ps.php b/vendor/giggsey/locale/data/ps.php index 5888b38a1..269b2dae8 100644 --- a/vendor/giggsey/locale/data/ps.php +++ b/vendor/giggsey/locale/data/ps.php @@ -1,6 +1,6 @@ 'نایجیریا', 'NI' => 'نکاراګوا', 'NL' => 'هالېنډ', - 'NO' => 'ناروې', + 'NO' => 'ناروۍ', 'NP' => 'نیپال', 'NZ' => 'نیوزیلنډ', 'PK' => 'پاکستان', diff --git a/vendor/giggsey/locale/data/pt-ao.php b/vendor/giggsey/locale/data/pt-ao.php index 0265d1640..20453a110 100644 --- a/vendor/giggsey/locale/data/pt-ao.php +++ b/vendor/giggsey/locale/data/pt-ao.php @@ -1,6 +1,6 @@ 'São Pedro e Miquelão', 'PS' => 'Territórios palestinianos', 'RO' => 'Roménia', - 'SC' => 'Seicheles', 'SG' => 'Singapura', 'SI' => 'Eslovénia', 'SM' => 'São Marinho', diff --git a/vendor/giggsey/locale/data/pt-ch.php b/vendor/giggsey/locale/data/pt-ch.php index 0265d1640..20453a110 100644 --- a/vendor/giggsey/locale/data/pt-ch.php +++ b/vendor/giggsey/locale/data/pt-ch.php @@ -1,6 +1,6 @@ 'São Pedro e Miquelão', 'PS' => 'Territórios palestinianos', 'RO' => 'Roménia', - 'SC' => 'Seicheles', 'SG' => 'Singapura', 'SI' => 'Eslovénia', 'SM' => 'São Marinho', diff --git a/vendor/giggsey/locale/data/pt-cv.php b/vendor/giggsey/locale/data/pt-cv.php index 0265d1640..20453a110 100644 --- a/vendor/giggsey/locale/data/pt-cv.php +++ b/vendor/giggsey/locale/data/pt-cv.php @@ -1,6 +1,6 @@ 'São Pedro e Miquelão', 'PS' => 'Territórios palestinianos', 'RO' => 'Roménia', - 'SC' => 'Seicheles', 'SG' => 'Singapura', 'SI' => 'Eslovénia', 'SM' => 'São Marinho', diff --git a/vendor/giggsey/locale/data/pt-gq.php b/vendor/giggsey/locale/data/pt-gq.php index 0265d1640..20453a110 100644 --- a/vendor/giggsey/locale/data/pt-gq.php +++ b/vendor/giggsey/locale/data/pt-gq.php @@ -1,6 +1,6 @@ 'São Pedro e Miquelão', 'PS' => 'Territórios palestinianos', 'RO' => 'Roménia', - 'SC' => 'Seicheles', 'SG' => 'Singapura', 'SI' => 'Eslovénia', 'SM' => 'São Marinho', diff --git a/vendor/giggsey/locale/data/pt-gw.php b/vendor/giggsey/locale/data/pt-gw.php index 0265d1640..20453a110 100644 --- a/vendor/giggsey/locale/data/pt-gw.php +++ b/vendor/giggsey/locale/data/pt-gw.php @@ -1,6 +1,6 @@ 'São Pedro e Miquelão', 'PS' => 'Territórios palestinianos', 'RO' => 'Roménia', - 'SC' => 'Seicheles', 'SG' => 'Singapura', 'SI' => 'Eslovénia', 'SM' => 'São Marinho', diff --git a/vendor/giggsey/locale/data/pt-lu.php b/vendor/giggsey/locale/data/pt-lu.php index 0265d1640..20453a110 100644 --- a/vendor/giggsey/locale/data/pt-lu.php +++ b/vendor/giggsey/locale/data/pt-lu.php @@ -1,6 +1,6 @@ 'São Pedro e Miquelão', 'PS' => 'Territórios palestinianos', 'RO' => 'Roménia', - 'SC' => 'Seicheles', 'SG' => 'Singapura', 'SI' => 'Eslovénia', 'SM' => 'São Marinho', diff --git a/vendor/giggsey/locale/data/pt-mo.php b/vendor/giggsey/locale/data/pt-mo.php index 0265d1640..20453a110 100644 --- a/vendor/giggsey/locale/data/pt-mo.php +++ b/vendor/giggsey/locale/data/pt-mo.php @@ -1,6 +1,6 @@ 'São Pedro e Miquelão', 'PS' => 'Territórios palestinianos', 'RO' => 'Roménia', - 'SC' => 'Seicheles', 'SG' => 'Singapura', 'SI' => 'Eslovénia', 'SM' => 'São Marinho', diff --git a/vendor/giggsey/locale/data/pt-mz.php b/vendor/giggsey/locale/data/pt-mz.php index 0265d1640..20453a110 100644 --- a/vendor/giggsey/locale/data/pt-mz.php +++ b/vendor/giggsey/locale/data/pt-mz.php @@ -1,6 +1,6 @@ 'São Pedro e Miquelão', 'PS' => 'Territórios palestinianos', 'RO' => 'Roménia', - 'SC' => 'Seicheles', 'SG' => 'Singapura', 'SI' => 'Eslovénia', 'SM' => 'São Marinho', diff --git a/vendor/giggsey/locale/data/pt-pt.php b/vendor/giggsey/locale/data/pt-pt.php index 0265d1640..20453a110 100644 --- a/vendor/giggsey/locale/data/pt-pt.php +++ b/vendor/giggsey/locale/data/pt-pt.php @@ -1,6 +1,6 @@ 'São Pedro e Miquelão', 'PS' => 'Territórios palestinianos', 'RO' => 'Roménia', - 'SC' => 'Seicheles', 'SG' => 'Singapura', 'SI' => 'Eslovénia', 'SM' => 'São Marinho', diff --git a/vendor/giggsey/locale/data/pt-st.php b/vendor/giggsey/locale/data/pt-st.php index 0265d1640..20453a110 100644 --- a/vendor/giggsey/locale/data/pt-st.php +++ b/vendor/giggsey/locale/data/pt-st.php @@ -1,6 +1,6 @@ 'São Pedro e Miquelão', 'PS' => 'Territórios palestinianos', 'RO' => 'Roménia', - 'SC' => 'Seicheles', 'SG' => 'Singapura', 'SI' => 'Eslovénia', 'SM' => 'São Marinho', diff --git a/vendor/giggsey/locale/data/pt-tl.php b/vendor/giggsey/locale/data/pt-tl.php index 0265d1640..20453a110 100644 --- a/vendor/giggsey/locale/data/pt-tl.php +++ b/vendor/giggsey/locale/data/pt-tl.php @@ -1,6 +1,6 @@ 'São Pedro e Miquelão', 'PS' => 'Territórios palestinianos', 'RO' => 'Roménia', - 'SC' => 'Seicheles', 'SG' => 'Singapura', 'SI' => 'Eslovénia', 'SM' => 'São Marinho', diff --git a/vendor/giggsey/locale/data/pt.php b/vendor/giggsey/locale/data/pt.php index b6f0760dd..cf4cff71d 100644 --- a/vendor/giggsey/locale/data/pt.php +++ b/vendor/giggsey/locale/data/pt.php @@ -1,6 +1,6 @@ 'Ruanda', 'SA' => 'Arábia Saudita', 'SB' => 'Ilhas Salomão', - 'SC' => 'Seychelles', + 'SC' => 'Seicheles', 'SD' => 'Sudão', 'SE' => 'Suécia', 'SG' => 'Cingapura', diff --git a/vendor/giggsey/locale/data/qu.php b/vendor/giggsey/locale/data/qu.php index 488f0fe8a..199306906 100644 --- a/vendor/giggsey/locale/data/qu.php +++ b/vendor/giggsey/locale/data/qu.php @@ -1,6 +1,6 @@ 'Myanmar', +); diff --git a/vendor/giggsey/locale/data/ro.php b/vendor/giggsey/locale/data/ro.php index 99bd6bb80..6702a7898 100644 --- a/vendor/giggsey/locale/data/ro.php +++ b/vendor/giggsey/locale/data/ro.php @@ -1,6 +1,6 @@ 'Sfântul Martin', 'MG' => 'Madagascar', 'MH' => 'Insulele Marshall', - 'MK' => 'Macedonia', + 'MK' => 'Republica Macedonia', 'ML' => 'Mali', 'MM' => 'Myanmar (Birmania)', 'MN' => 'Mongolia', @@ -217,7 +217,7 @@ return array ( 'SO' => 'Somalia', 'SR' => 'Suriname', 'SS' => 'Sudanul de Sud', - 'ST' => 'Sao Tome și Principe', + 'ST' => 'Sao Tomé și Príncipe', 'SV' => 'El Salvador', 'SX' => 'Sint-Maarten', 'SY' => 'Siria', @@ -249,7 +249,7 @@ return array ( 'VC' => 'Saint Vincent și Grenadinele', 'VE' => 'Venezuela', 'VG' => 'Insulele Virgine Britanice', - 'VI' => 'Insulele Virgine S.U.A.', + 'VI' => 'Insulele Virgine Americane', 'VN' => 'Vietnam', 'VU' => 'Vanuatu', 'WF' => 'Wallis și Futuna', diff --git a/vendor/giggsey/locale/data/rof.php b/vendor/giggsey/locale/data/rof.php index a86a7020a..50bed4082 100644 --- a/vendor/giggsey/locale/data/rof.php +++ b/vendor/giggsey/locale/data/rof.php @@ -1,6 +1,6 @@ 'О-в Вознесения', + 'AE' => 'Объединенные Арабские Эмираты', + 'CF' => 'Центрально-Африканская Республика', + 'CK' => 'О-ва Кука', + 'CX' => 'О-в Рождества', + 'NF' => 'О-в Норфолк', + 'TL' => 'Тимор-Лесте', + 'UM' => 'Малые Тихоокеанские Отдаленные Острова США', +); diff --git a/vendor/giggsey/locale/data/ru.php b/vendor/giggsey/locale/data/ru.php index 4659d0cfb..cd4608610 100644 --- a/vendor/giggsey/locale/data/ru.php +++ b/vendor/giggsey/locale/data/ru.php @@ -1,6 +1,6 @@ 'Бахрейн', 'BI' => 'Бурунди', 'BJ' => 'Бенин', - 'BL' => 'Сен-Бартельми', - 'BM' => 'Бермудские о-ва', + 'BL' => 'Сен-Бартелеми', + 'BM' => 'Бермуды', 'BN' => 'Бруней-Даруссалам', 'BO' => 'Боливия', 'BQ' => 'Бонэйр, Синт-Эстатиус и Саба', 'BR' => 'Бразилия', - 'BS' => 'Багамские о-ва', + 'BS' => 'Багамы', 'BT' => 'Бутан', 'BW' => 'Ботсвана', 'BY' => 'Беларусь', @@ -51,7 +51,7 @@ return array ( 'CG' => 'Конго - Браззавиль', 'CH' => 'Швейцария', 'CI' => 'Кот-д’Ивуар', - 'CK' => 'о-ва Кука', + 'CK' => 'Острова Кука', 'CL' => 'Чили', 'CM' => 'Камерун', 'CN' => 'Китай', @@ -127,7 +127,7 @@ return array ( 'KG' => 'Киргизия', 'KH' => 'Камбоджа', 'KI' => 'Кирибати', - 'KM' => 'Коморские о-ва', + 'KM' => 'Коморы', 'KN' => 'Сент-Китс и Невис', 'KP' => 'КНДР', 'KR' => 'Республика Корея', @@ -151,7 +151,7 @@ return array ( 'ME' => 'Черногория', 'MF' => 'Сен-Мартен', 'MG' => 'Мадагаскар', - 'MH' => 'Маршалловы о-ва', + 'MH' => 'Маршалловы Острова', 'MK' => 'Македония', 'ML' => 'Мали', 'MM' => 'Мьянма (Бирма)', @@ -202,8 +202,8 @@ return array ( 'RU' => 'Россия', 'RW' => 'Руанда', 'SA' => 'Саудовская Аравия', - 'SB' => 'Соломоновы о-ва', - 'SC' => 'Сейшельские о-ва', + 'SB' => 'Соломоновы Острова', + 'SC' => 'Сейшельские Острова', 'SD' => 'Судан', 'SE' => 'Швеция', 'SG' => 'Сингапур', @@ -225,7 +225,7 @@ return array ( 'TA' => 'Тристан-да-Кунья', 'TC' => 'о-ва Тёркс и Кайкос', 'TD' => 'Чад', - 'TF' => 'Французские Южные Территории', + 'TF' => 'Французские Южные территории', 'TG' => 'Того', 'TH' => 'Таиланд', 'TJ' => 'Таджикистан', diff --git a/vendor/giggsey/locale/data/rw.php b/vendor/giggsey/locale/data/rw.php index 7908e3d58..b542428dd 100644 --- a/vendor/giggsey/locale/data/rw.php +++ b/vendor/giggsey/locale/data/rw.php @@ -1,6 +1,6 @@ 'Бразилия', + 'CA' => 'Канаада', + 'CL' => 'Чиили', 'CN' => 'Кытай', + 'CU' => 'Кууба', + 'EE' => 'Эстония', + 'FI' => 'Финляндия', + 'GB' => 'Улуу Британия', + 'IE' => 'Ирландия', + 'IM' => 'Мэн арыы', + 'IS' => 'Исландия', + 'JM' => 'Дьамаайка', + 'LT' => 'Литва', + 'LV' => 'Латвия', + 'LY' => 'Лиибийэ', + 'MX' => 'Миэксикэ', + 'NO' => 'Норвегия', 'RU' => 'Арассыыйа', + 'SD' => 'Судаан', + 'SE' => 'Швеция', + 'US' => 'Америка Холбоһуктаах Штааттара', ); diff --git a/vendor/giggsey/locale/data/saq.php b/vendor/giggsey/locale/data/saq.php index e8cf4a316..7deaf0b93 100644 --- a/vendor/giggsey/locale/data/saq.php +++ b/vendor/giggsey/locale/data/saq.php @@ -1,6 +1,6 @@ 'ලැට්වියාව', 'LY' => 'ලිබියාව', 'MA' => 'මොරොක්කෝව', - 'MC' => 'මොනැකෝව', + 'MC' => 'මොනාකෝව', 'MD' => 'මොල්ඩෝවාව', 'ME' => 'මොන්ටෙනීග්‍රෝ', 'MF' => 'ශාන්ත මාර්ටින්', diff --git a/vendor/giggsey/locale/data/sk.php b/vendor/giggsey/locale/data/sk.php index cf0773b14..dfca6d036 100644 --- a/vendor/giggsey/locale/data/sk.php +++ b/vendor/giggsey/locale/data/sk.php @@ -1,13 +1,13 @@ 'Ascensión', + 'AC' => 'Ascension', 'AD' => 'Andorra', 'AE' => 'Spojené arabské emiráty', 'AF' => 'Afganistan', @@ -22,7 +22,7 @@ return array ( 'AT' => 'Rakúsko', 'AU' => 'Austrália', 'AW' => 'Aruba', - 'AX' => 'Ålandy', + 'AX' => 'Alandy', 'AZ' => 'Azerbajdžan', 'BA' => 'Bosna a Hercegovina', 'BB' => 'Barbados', @@ -46,9 +46,9 @@ return array ( 'BZ' => 'Belize', 'CA' => 'Kanada', 'CC' => 'Kokosové ostrovy', - 'CD' => 'Kongo - Kinshasa', + 'CD' => 'Konžská demokratická republika', 'CF' => 'Stredoafrická republika', - 'CG' => 'Kongo - Brazzaville', + 'CG' => 'Konžská republika', 'CH' => 'Švajčiarsko', 'CI' => 'Pobrežie Slonoviny', 'CK' => 'Cookove ostrovy', @@ -64,7 +64,7 @@ return array ( 'CY' => 'Cyprus', 'CZ' => 'Česká republika', 'DE' => 'Nemecko', - 'DG' => 'Diego García', + 'DG' => 'Diego Garcia', 'DJ' => 'Džibutsko', 'DK' => 'Dánsko', 'DM' => 'Dominika', @@ -149,7 +149,7 @@ return array ( 'MC' => 'Monako', 'MD' => 'Moldavsko', 'ME' => 'Čierna Hora', - 'MF' => 'Svätý Martin', + 'MF' => 'Svätý Martin (fr.)', 'MG' => 'Madagaskar', 'MH' => 'Marshallove ostrovy', 'MK' => 'Macedónsko', @@ -219,7 +219,7 @@ return array ( 'SS' => 'Južný Sudán', 'ST' => 'Svätý Tomáš a Princov ostrov', 'SV' => 'Salvádor', - 'SX' => 'Sint Maarten', + 'SX' => 'Svätý Martin (hol.)', 'SY' => 'Sýria', 'SZ' => 'Svazijsko', 'TA' => 'Tristan da Cunha', diff --git a/vendor/giggsey/locale/data/sl.php b/vendor/giggsey/locale/data/sl.php index 258b18e74..2e6ca193e 100644 --- a/vendor/giggsey/locale/data/sl.php +++ b/vendor/giggsey/locale/data/sl.php @@ -1,6 +1,6 @@ 'Guam', 'GW' => 'Gvineja Bissau', 'GY' => 'Gvajana', - 'HK' => 'Posebno administrativno območje LR Kitajske Hong Kong', + 'HK' => 'Posebno administrativno območje LR Kitajske Hongkong', 'HN' => 'Honduras', 'HR' => 'Hrvaška', 'HT' => 'Haiti', @@ -223,14 +223,14 @@ return array ( 'SY' => 'Sirija', 'SZ' => 'Svazi', 'TA' => 'Tristan da Cunha', - 'TC' => 'Otočji Turks in Caicos', + 'TC' => 'Otoki Turks in Caicos', 'TD' => 'Čad', 'TF' => 'Francosko južno ozemlje', 'TG' => 'Togo', 'TH' => 'Tajska', 'TJ' => 'Tadžikistan', 'TK' => 'Tokelau', - 'TL' => 'Vzhodni Timor', + 'TL' => 'Timor-Leste', 'TM' => 'Turkmenistan', 'TN' => 'Tunizija', 'TO' => 'Tonga', @@ -241,7 +241,7 @@ return array ( 'TZ' => 'Tanzanija', 'UA' => 'Ukrajina', 'UG' => 'Uganda', - 'UM' => 'Druga ameriška ozemlja v Tihem oceanu', + 'UM' => 'Stranski zunanji otoki Združenih držav', 'US' => 'Združene države Amerike', 'UY' => 'Urugvaj', 'UZ' => 'Uzbekistan', diff --git a/vendor/giggsey/locale/data/smn.php b/vendor/giggsey/locale/data/smn.php index 302004374..d0f102284 100644 --- a/vendor/giggsey/locale/data/smn.php +++ b/vendor/giggsey/locale/data/smn.php @@ -1,11 +1,257 @@ 'Ascension-suálui', + 'AD' => 'Andorra', + 'AE' => 'Arabiemirkodeh', + 'AF' => 'Afganistan', + 'AG' => 'Antigua já Barbuda', + 'AI' => 'Anguilla', + 'AL' => 'Albania', + 'AM' => 'Armenia', + 'AO' => 'Angola', + 'AQ' => 'Antarktis', + 'AR' => 'Argentina', + 'AS' => 'Amerika Samoa', + 'AT' => 'Nuorttâriijkâ', + 'AU' => 'Australia', + 'AW' => 'Aruba', + 'AX' => 'Vuáskueennâm', + 'AZ' => 'Azerbaidžan', + 'BA' => 'Bosnia já Herzegovina', + 'BB' => 'Barbados', + 'BD' => 'Bangladesh', + 'BE' => 'Belgia', + 'BF' => 'Burkina Faso', + 'BG' => 'Bulgaria', + 'BH' => 'Bahrain', + 'BI' => 'Burundi', + 'BJ' => 'Benin', + 'BL' => 'St. Barthélemy', + 'BM' => 'Bermuda', + 'BN' => 'Brunei', + 'BO' => 'Bolivia', + 'BR' => 'Brasilia', + 'BS' => 'Bahama', + 'BT' => 'Bhutan', + 'BW' => 'Botswana', + 'BY' => 'Vielgis-Ruoššâ', + 'BZ' => 'Belize', + 'CA' => 'Kanada', + 'CC' => 'Kookossuolluuh (Keelingsuolluuh)', + 'CF' => 'Koskâ-Afrika täsiväldi', + 'CH' => 'Sveitsi', + 'CI' => 'Côte d’Ivoire', + 'CK' => 'Cooksuolluuh', + 'CL' => 'Chile', + 'CM' => 'Kamerun', + 'CN' => 'Kiina', + 'CO' => 'Kolumbia', + 'CR' => 'Costa Rica', + 'CU' => 'Kuuba', + 'CV' => 'Cape Verde', + 'CW' => 'Curaçao', + 'CX' => 'Juovlâsuálui', + 'CY' => 'Kypros', + 'CZ' => 'Tšekki', + 'DE' => 'Saksa', + 'DG' => 'Diego Garcia', + 'DJ' => 'Djibouti', + 'DK' => 'Tanska', + 'DM' => 'Dominica', + 'DO' => 'Dominikaanisâš täsiväldi', + 'DZ' => 'Algeria', + 'EA' => 'Ceuta já Melilla', + 'EC' => 'Ecuador', + 'EE' => 'Eestieennâm', + 'EG' => 'Egypti', + 'ER' => 'Eritrea', + 'ES' => 'Espanja', + 'ET' => 'Etiopia', 'FI' => 'Suomâ', + 'FJ' => 'Fidži', + 'FK' => 'Falklandsuolluuh', + 'FM' => 'Mikronesia littoväldi', + 'FO' => 'Färsuolluuh', + 'FR' => 'Ranska', + 'GA' => 'Gabon', + 'GB' => 'Ovtâstum Kunâgâskodde', + 'GD' => 'Grenada', + 'GE' => 'Georgia', + 'GF' => 'Ranska Guyana', + 'GG' => 'Guernsey', + 'GH' => 'Ghana', + 'GI' => 'Gibraltar', + 'GL' => 'Grönland', + 'GM' => 'Gambia', + 'GN' => 'Guinea', + 'GP' => 'Guadeloupe', + 'GQ' => 'Peeivitäsideijee Guinea', + 'GR' => 'Kreikka', + 'GS' => 'Maadâ-Georgia já Máddááh Sandwichsuolluuh', + 'GT' => 'Guatemala', + 'GU' => 'Guam', + 'GW' => 'Guinea-Bissau', + 'GY' => 'Guyana', + 'HK' => 'Hongkong – Kiina e.h.k.', + 'HN' => 'Honduras', + 'HR' => 'Kroatia', + 'HT' => 'Haiti', + 'HU' => 'Uŋgar', + 'IC' => 'Kanariasuolluuh', + 'ID' => 'Indonesia', + 'IE' => 'Irland', + 'IL' => 'Israel', + 'IM' => 'Mansuálui', + 'IN' => 'India', + 'IO' => 'Brittilâš India väldimeerâ kuávlu', + 'IQ' => 'Irak', + 'IR' => 'Iran', + 'IS' => 'Island', + 'IT' => 'Italia', + 'JE' => 'Jersey', + 'JM' => 'Jamaika', + 'JO' => 'Jordan', + 'JP' => 'Jaapaan', + 'KE' => 'Kenia', + 'KG' => 'Kirgisia', + 'KH' => 'Kambodža', + 'KI' => 'Kiribati', + 'KM' => 'Komoreh', + 'KN' => 'St. Kitts já Nevis', + 'KP' => 'Tave-Korea', + 'KR' => 'Maadâ-Korea', + 'KW' => 'Kuwait', + 'KY' => 'Caymansuolluuh', + 'KZ' => 'Kazakstan', + 'LA' => 'Laos', + 'LB' => 'Libanon', + 'LC' => 'St. Lucia', + 'LI' => 'Liechtenstein', + 'LK' => 'Sri Lanka', + 'LR' => 'Liberia', + 'LS' => 'Lesotho', + 'LT' => 'Liettua', + 'LU' => 'Luxemburg', + 'LV' => 'Latvia', + 'LY' => 'Libya', + 'MA' => 'Marokko', + 'MC' => 'Monaco', + 'MD' => 'Moldova', + 'ME' => 'Montenegro', + 'MF' => 'St. Martin', + 'MG' => 'Madagaskar', + 'MH' => 'Marshallsuolluuh', + 'ML' => 'Mali', + 'MM' => 'Myanmar (Burma)', + 'MN' => 'Mongolia', + 'MO' => 'Macao - – Kiina e.h.k.', + 'MP' => 'Tave-Marianeh', + 'MQ' => 'Martinique', + 'MR' => 'Mauritania', + 'MS' => 'Montserrat', + 'MT' => 'Malta', + 'MU' => 'Mauritius', + 'MV' => 'Malediveh', + 'MW' => 'Malawi', + 'MX' => 'Meksiko', + 'MY' => 'Malaysia', + 'MZ' => 'Mosambik', + 'NA' => 'Namibia', + 'NC' => 'Uđđâ-Kaledonia', + 'NE' => 'Niger', + 'NF' => 'Norfolksuálui', + 'NG' => 'Nigeria', + 'NI' => 'Nicaragua', + 'NL' => 'Vuáládâhenâmeh', + 'NO' => 'Taažâ', + 'NP' => 'Nepal', + 'NR' => 'Nauru', + 'NU' => 'Niue', + 'NZ' => 'Uđđâ-Seeland', + 'OM' => 'Oman', + 'PA' => 'Panama', + 'PE' => 'Peru', + 'PF' => 'Ranska Polynesia', + 'PG' => 'Papua-Uđđâ-Guinea', + 'PH' => 'Filipineh', + 'PK' => 'Pakistan', + 'PL' => 'Puola', + 'PM' => 'St. Pierre já Miquelon', + 'PN' => 'Pitcairn', + 'PR' => 'Puerto Rico', + 'PT' => 'Portugal', + 'PW' => 'Palau', + 'PY' => 'Paraguay', + 'QA' => 'Qatar', + 'RE' => 'Réunion', + 'RO' => 'Romania', + 'RS' => 'Serbia', + 'RU' => 'Ruoššâ', + 'RW' => 'Ruanda', + 'SA' => 'Saudi Arabia', + 'SB' => 'Salomosuolluuh', + 'SC' => 'Seychelleh', + 'SD' => 'Sudan', + 'SE' => 'Ruotâ', + 'SG' => 'Singapore', + 'SH' => 'Saint Helena', + 'SI' => 'Slovenia', + 'SJ' => 'Čokkeväärih já Jan Mayen', + 'SK' => 'Slovakia', + 'SL' => 'Sierra Leone', + 'SM' => 'San Marino', + 'SN' => 'Senegal', + 'SO' => 'Somalia', + 'SR' => 'Surinam', + 'SS' => 'Maadâ-Sudan', + 'ST' => 'São Tomé já Príncipe', + 'SV' => 'El Salvador', + 'SX' => 'Sint Maarten', + 'SY' => 'Syria', + 'SZ' => 'Swazieennâm', + 'TA' => 'Tristan da Cunha', + 'TC' => 'Turks- já Caicossuolluuh', + 'TD' => 'Tšad', + 'TF' => 'Ranska máddááh kuávluh', + 'TG' => 'Togo', + 'TH' => 'Thaieennâm', + 'TJ' => 'Tadžikistan', + 'TK' => 'Tokelau', + 'TL' => 'Timor-Leste', + 'TM' => 'Turkmenistan', + 'TN' => 'Tunisia', + 'TO' => 'Tonga', + 'TR' => 'Turkki', + 'TT' => 'Trinidad já Tobago', + 'TV' => 'Tuvalu', + 'TW' => 'Taiwan', + 'TZ' => 'Tansania', + 'UA' => 'Ukraina', + 'UG' => 'Uganda', + 'UM' => 'Ovtâstum Staatâi sierânâssuolluuh', + 'US' => 'Ovtâstum Staatah', + 'UY' => 'Uruguay', + 'UZ' => 'Uzbekistan', + 'VA' => 'Vatikan', + 'VC' => 'St. Vincent já Grenadines', + 'VE' => 'Venezuela', + 'VG' => 'Brittiliih Nieidâsuolluuh', + 'VI' => 'Ovtâstum Staatâi Nieidâsuolluuh', + 'VN' => 'Vietnam', + 'VU' => 'Vanuatu', + 'WF' => 'Wallis já Futuna', + 'WS' => 'Samoa', + 'XK' => 'Kosovo', + 'YE' => 'Jemen', + 'YT' => 'Mayotte', + 'ZA' => 'Maadâ-Afrikka', + 'ZM' => 'Sambia', + 'ZW' => 'Zimbabwe', ); diff --git a/vendor/giggsey/locale/data/sn.php b/vendor/giggsey/locale/data/sn.php index 67caf9611..e6a614dba 100644 --- a/vendor/giggsey/locale/data/sn.php +++ b/vendor/giggsey/locale/data/sn.php @@ -1,6 +1,6 @@ 'Marshall Islands', 'MK' => 'Makadooniya', 'ML' => 'Maali', - 'MM' => 'Myanmar', + 'MM' => 'Miyanmar', 'MN' => 'Mongooliya', 'MP' => 'Northern Mariana Islands', 'MQ' => 'Martinique', diff --git a/vendor/giggsey/locale/data/sq.php b/vendor/giggsey/locale/data/sq.php index 48b618859..f28b52583 100644 --- a/vendor/giggsey/locale/data/sq.php +++ b/vendor/giggsey/locale/data/sq.php @@ -1,6 +1,6 @@ 'Belgjikë', 'BF' => 'Burkina-Faso', 'BG' => 'Bullgari', - 'BH' => 'Bahrein', - 'BI' => 'Burund', + 'BH' => 'Bahrejn', + 'BI' => 'Burundi', 'BJ' => 'Benin', - 'BL' => 'Shën-Bartolemeo', + 'BL' => 'Shën Bartolomeu', 'BM' => 'Bermudë', - 'BN' => 'Brunej', + 'BN' => 'Brunei', 'BO' => 'Bolivi', 'BQ' => 'Karaibet holandeze', 'BR' => 'Brazil', 'BS' => 'Bahamas', 'BT' => 'Butan', - 'BW' => 'Botsuanë', + 'BW' => 'Botsvanë', 'BY' => 'Bjellorusi', 'BZ' => 'Belizë', 'CA' => 'Kanada', - 'CC' => 'Ishujt Kokosë', + 'CC' => 'Ishujt Kokos', 'CD' => 'Kongo-Kinshasa', - 'CF' => 'Republika Afrikano-Qendrore', + 'CF' => 'Repubika e Afrikës Qendrore', 'CG' => 'Kongo-Brazavilë', 'CH' => 'Zvicër', - 'CI' => 'Bregu i Fildishtë', - 'CK' => 'Ishujt Kukë', + 'CI' => 'Côte d’Ivoire', + 'CK' => 'Ishujt Kuk', 'CL' => 'Kili', 'CM' => 'Kamerun', 'CN' => 'Kinë', @@ -65,7 +65,7 @@ return array ( 'CZ' => 'Republika Çeke', 'DE' => 'Gjermani', 'DG' => 'Diego-Garsia', - 'DJ' => 'Xhibut', + 'DJ' => 'Xhibuti', 'DK' => 'Danimarkë', 'DM' => 'Dominikë', 'DO' => 'Republika Dominikane', @@ -80,7 +80,7 @@ return array ( 'ET' => 'Etiopi', 'FI' => 'Finlandë', 'FJ' => 'Fixhi', - 'FK' => 'Ishujt Folklandë', + 'FK' => 'Ishujt Falkland', 'FM' => 'Mikronezi', 'FO' => 'Ishujt Faroe', 'FR' => 'Francë', @@ -89,11 +89,11 @@ return array ( 'GD' => 'Grenadë', 'GE' => 'Gjeorgji', 'GF' => 'Guajana Franceze', - 'GG' => 'Guernsej', + 'GG' => 'Gernsej', 'GH' => 'Ganë', 'GI' => 'Gjibraltar', 'GL' => 'Grenlandë', - 'GM' => 'Gambi', + 'GM' => 'Gambia', 'GN' => 'Guine', 'GP' => 'Guadalupe', 'GQ' => 'Guineja Ekuatoriale', @@ -126,18 +126,18 @@ return array ( 'KE' => 'Kenia', 'KG' => 'Kirgistan', 'KH' => 'Kamboxhia', - 'KI' => 'Qiribati', + 'KI' => 'Kiribati', 'KM' => 'Komore', - 'KN' => 'Shën-Kits dhe Nevis', + 'KN' => 'Shën Kits dhe Nevis', 'KP' => 'Koreja e Veriut', 'KR' => 'Koreja e Jugut', 'KW' => 'Kuvajt', - 'KY' => 'Ishujt Kajmanë', + 'KY' => 'Ishujt Kajman', 'KZ' => 'Kazakistan', 'LA' => 'Laos', 'LB' => 'Liban', 'LC' => 'Shën-Luçia', - 'LI' => 'Lihtënshtajn', + 'LI' => 'Lihtenshtajn', 'LK' => 'Sri-Lankë', 'LR' => 'Liberi', 'LS' => 'Lesoto', @@ -148,17 +148,17 @@ return array ( 'MA' => 'Marok', 'MC' => 'Monako', 'MD' => 'Moldavi', - 'ME' => 'Mali i Zi', + 'ME' => 'Mal i Zi', 'MF' => 'Shën-Martin', 'MG' => 'Madagaskar', - 'MH' => 'Ishujt Marshallë', + 'MH' => 'Ishujt Marshall', 'MK' => 'Maqedoni', 'ML' => 'Mali', 'MM' => 'Mianmar (Burma)', 'MN' => 'Mongoli', 'MO' => 'RVAK i Makaos', 'MP' => 'Ishujt e Marianës Veriore', - 'MQ' => 'Martinik', + 'MQ' => 'Martinikë', 'MR' => 'Mauritani', 'MS' => 'Montserat', 'MT' => 'Maltë', @@ -179,7 +179,7 @@ return array ( 'NP' => 'Nepal', 'NR' => 'Nauru', 'NU' => 'Niue', - 'NZ' => 'Zelanda e Re', + 'NZ' => 'Zelandë e Re', 'OM' => 'Oman', 'PA' => 'Panama', 'PE' => 'Peru', @@ -188,8 +188,8 @@ return array ( 'PH' => 'Filipine', 'PK' => 'Pakistan', 'PL' => 'Poloni', - 'PM' => 'Shën-Peir dhe Mikuelon', - 'PN' => 'Ishujt Pitkernë', + 'PM' => 'Shën Pier dhe Mikelon', + 'PN' => 'Ishujt Pitkern', 'PR' => 'Porto-Riko', 'PS' => 'Territoret Palestineze', 'PT' => 'Portugali', @@ -202,35 +202,35 @@ return array ( 'RU' => 'Rusi', 'RW' => 'Ruandë', 'SA' => 'Arabia Saudite', - 'SB' => 'Ishujt Solomonë', - 'SC' => 'Sishel', + 'SB' => 'Ishujt Solomon', + 'SC' => 'Sejshelle', 'SD' => 'Sudan', 'SE' => 'Suedi', 'SG' => 'Singapor', - 'SH' => 'Shën-Helena', + 'SH' => 'Shën-Helenë', 'SI' => 'Slloveni', - 'SJ' => 'Svalbard e Zhan-Majen', + 'SJ' => 'Svalbard e Jan-Majen', 'SK' => 'Sllovaki', 'SL' => 'Siera-Leone', 'SM' => 'San-Marino', - 'SN' => 'Senegali', + 'SN' => 'Senegal', 'SO' => 'Somali', 'SR' => 'Surinami', 'SS' => 'Sudani i Jugut', 'ST' => 'Sao-Tome e Prinsipe', - 'SV' => 'El Salvador', - 'SX' => 'Shën-Martin (Sint Maarten - pjesa e Mbretërisë së Holandës)', + 'SV' => 'Salvador', + 'SX' => 'Sint Marten', 'SY' => 'Siri', - 'SZ' => 'Suazilandë', + 'SZ' => 'Svazilandë', 'TA' => 'Tristan-da-Kuna', - 'TC' => 'Ishujt Turke dhe Kaike', + 'TC' => 'Ishujt Turks dhe Kaikos', 'TD' => 'Çad', - 'TF' => 'Territoret Australiane Franceze', + 'TF' => 'Territoret Jugore Franceze', 'TG' => 'Togo', 'TH' => 'Tajlandë', 'TJ' => 'Taxhikistan', 'TK' => 'Tokelau', - 'TL' => 'Timori Lindor', + 'TL' => 'Timor-Leste', 'TM' => 'Turkmenistan', 'TN' => 'Tunizi', 'TO' => 'Tonga', @@ -246,18 +246,18 @@ return array ( 'UY' => 'Uruguai', 'UZ' => 'Uzbekistan', 'VA' => 'Vatikan', - 'VC' => 'Shën-Vinsent dhe Grenadinet', + 'VC' => 'Shën Vincent dhe Grenadine', 'VE' => 'Venezuelë', 'VG' => 'Ishujt e Virgjër Britanikë', 'VI' => 'Ishujt e Virgjër Amerikanë', 'VN' => 'Vietnam', 'VU' => 'Vanuatu', - 'WF' => 'Uollis e Futina', + 'WF' => 'Uollis e Futuna', 'WS' => 'Samoa', 'XK' => 'Kosovë', 'YE' => 'Jemen', 'YT' => 'Majotë', 'ZA' => 'Afrika e Jugut', - 'ZM' => 'Zambi', + 'ZM' => 'Zambia', 'ZW' => 'Zimbabve', ); diff --git a/vendor/giggsey/locale/data/sr-cyrl-ba.php b/vendor/giggsey/locale/data/sr-cyrl-ba.php new file mode 100644 index 000000000..55ceb2995 --- /dev/null +++ b/vendor/giggsey/locale/data/sr-cyrl-ba.php @@ -0,0 +1,25 @@ + 'Бјелорусија', + 'CG' => 'Конго', + 'CI' => 'Обала Слоноваче (Кот д’Ивоар)', + 'CV' => 'Кабо Верде', + 'CZ' => 'Чешка Република', + 'DE' => 'Њемачка', + 'KN' => 'Свети Китс и Невис', + 'MO' => 'САР Макао', + 'PM' => 'Свети Пјер и Микелон', + 'RE' => 'Реунион', + 'TL' => 'Тимор-Лесте (Источни Тимор)', + 'UM' => 'Мања удаљена острва САД', + 'VC' => 'Свети Винсент и Гренадини', + 'VG' => 'Британска Дјевичанска Острва', + 'VI' => 'Америчка Дјевичанска Острва', +); diff --git a/vendor/giggsey/locale/data/sr-cyrl-me.php b/vendor/giggsey/locale/data/sr-cyrl-me.php new file mode 100644 index 000000000..9be060ff8 --- /dev/null +++ b/vendor/giggsey/locale/data/sr-cyrl-me.php @@ -0,0 +1,23 @@ + 'Бјелорусија', + 'CG' => 'Конго', + 'CI' => 'Обала Слоноваче (Кот д’Ивоар)', + 'CZ' => 'Чешка Република', + 'DE' => 'Њемачка', + 'KN' => 'Свети Китс и Невис', + 'PM' => 'Свети Пјер и Микелон', + 'RE' => 'Реунион', + 'TL' => 'Тимор-Лесте (Источни Тимор)', + 'UM' => 'Мања удаљена острва САД', + 'VC' => 'Свети Винсент и Гренадини', + 'VG' => 'Британска Дјевичанска Острва', + 'VI' => 'Америчка Дјевичанска Острва', +); diff --git a/vendor/giggsey/locale/data/sr-cyrl-xk.php b/vendor/giggsey/locale/data/sr-cyrl-xk.php new file mode 100644 index 000000000..4588646ba --- /dev/null +++ b/vendor/giggsey/locale/data/sr-cyrl-xk.php @@ -0,0 +1,22 @@ + 'Конго', + 'CI' => 'Обала Слоноваче (Кот д’Ивоар)', + 'CV' => 'Кабо Верде', + 'CZ' => 'Чешка Република', + 'HK' => 'САР Хонгконг', + 'KN' => 'Свети Китс и Невис', + 'MO' => 'САР Макао', + 'PM' => 'Свети Пјер и Микелон', + 'RE' => 'Реунион', + 'TL' => 'Тимор-Лесте (Источни Тимор)', + 'UM' => 'Мања удаљена острва САД', + 'VC' => 'Свети Винсент и Гренадини', +); diff --git a/vendor/giggsey/locale/data/sr-latn-ba.php b/vendor/giggsey/locale/data/sr-latn-ba.php new file mode 100644 index 000000000..927e99fac --- /dev/null +++ b/vendor/giggsey/locale/data/sr-latn-ba.php @@ -0,0 +1,25 @@ + 'Bjelorusija', + 'CG' => 'Kongo', + 'CI' => 'Obala Slonovače (Kot d’Ivoar)', + 'CV' => 'Kabo Verde', + 'CZ' => 'Češka Republika', + 'DE' => 'Njemačka', + 'KN' => 'Sveti Kits i Nevis', + 'MO' => 'SAR Makao', + 'PM' => 'Sveti Pjer i Mikelon', + 'RE' => 'Reunion', + 'TL' => 'Timor-Leste (Istočni Timor)', + 'UM' => 'Manja udaljena ostrva SAD', + 'VC' => 'Sveti Vinsent i Grenadini', + 'VG' => 'Britanska Djevičanska Ostrva', + 'VI' => 'Američka Djevičanska Ostrva', +); diff --git a/vendor/giggsey/locale/data/sr-latn-me.php b/vendor/giggsey/locale/data/sr-latn-me.php new file mode 100644 index 000000000..806d2f5ad --- /dev/null +++ b/vendor/giggsey/locale/data/sr-latn-me.php @@ -0,0 +1,23 @@ + 'Bjelorusija', + 'CG' => 'Kongo', + 'CI' => 'Obala Slonovače (Kot d’Ivoar)', + 'CZ' => 'Češka Republika', + 'DE' => 'Njemačka', + 'KN' => 'Sveti Kits i Nevis', + 'PM' => 'Sveti Pjer i Mikelon', + 'RE' => 'Reunion', + 'TL' => 'Timor-Leste (Istočni Timor)', + 'UM' => 'Manja udaljena ostrva SAD', + 'VC' => 'Sveti Vinsent i Grenadini', + 'VG' => 'Britanska Djevičanska Ostrva', + 'VI' => 'Američka Djevičanska Ostrva', +); diff --git a/vendor/giggsey/locale/data/sr-latn-xk.php b/vendor/giggsey/locale/data/sr-latn-xk.php new file mode 100644 index 000000000..15b3551d3 --- /dev/null +++ b/vendor/giggsey/locale/data/sr-latn-xk.php @@ -0,0 +1,22 @@ + 'Kongo', + 'CI' => 'Obala Slonovače (Kot d’Ivoar)', + 'CV' => 'Kabo Verde', + 'CZ' => 'Češka Republika', + 'HK' => 'SAR Hongkong', + 'KN' => 'Sveti Kits i Nevis', + 'MO' => 'SAR Makao', + 'PM' => 'Sveti Pjer i Mikelon', + 'RE' => 'Reunion', + 'TL' => 'Timor-Leste (Istočni Timor)', + 'UM' => 'Manja udaljena ostrva SAD', + 'VC' => 'Sveti Vinsent i Grenadini', +); diff --git a/vendor/giggsey/locale/data/sr-latn.php b/vendor/giggsey/locale/data/sr-latn.php index 2dfdcb188..e106f4522 100644 --- a/vendor/giggsey/locale/data/sr-latn.php +++ b/vendor/giggsey/locale/data/sr-latn.php @@ -1,6 +1,6 @@ 'Austrija', 'AU' => 'Australija', 'AW' => 'Aruba', - 'AX' => 'Olandska ostrva', + 'AX' => 'Olandska Ostrva', 'AZ' => 'Azerbejdžan', 'BA' => 'Bosna i Hercegovina', 'BB' => 'Barbados', @@ -33,7 +33,7 @@ return array ( 'BH' => 'Bahrein', 'BI' => 'Burundi', 'BJ' => 'Benin', - 'BL' => 'Sveti Bartolomej', + 'BL' => 'Sen Bartelemi', 'BM' => 'Bermuda', 'BN' => 'Brunej', 'BO' => 'Bolivija', @@ -60,7 +60,7 @@ return array ( 'CU' => 'Kuba', 'CV' => 'Zelenortska Ostrva', 'CW' => 'Kurasao', - 'CX' => 'Božićno ostrvo', + 'CX' => 'Božićno Ostrvo', 'CY' => 'Kipar', 'CZ' => 'Češka', 'DE' => 'Nemačka', @@ -80,25 +80,25 @@ return array ( 'ET' => 'Etiopija', 'FI' => 'Finska', 'FJ' => 'Fidži', - 'FK' => 'Foklandska ostrva', + 'FK' => 'Foklandska Ostrva', 'FM' => 'Mikronezija', 'FO' => 'Farska Ostrva', 'FR' => 'Francuska', 'GA' => 'Gabon', - 'GB' => 'Velika Britanija', + 'GB' => 'Ujedinjeno Kraljevstvo', 'GD' => 'Grenada', 'GE' => 'Gruzija', 'GF' => 'Francuska Gvajana', - 'GG' => 'Gurnsi', + 'GG' => 'Gernzi', 'GH' => 'Gana', 'GI' => 'Gibraltar', 'GL' => 'Grenland', 'GM' => 'Gambija', 'GN' => 'Gvineja', - 'GP' => 'Gvadelupe', + 'GP' => 'Gvadelup', 'GQ' => 'Ekvatorijalna Gvineja', 'GR' => 'Grčka', - 'GS' => 'Južna Džordžija i Južna Sendvič Ostrva', + 'GS' => 'Južna Džordžija i Južna Sendvička Ostrva', 'GT' => 'Gvatemala', 'GU' => 'Guam', 'GW' => 'Gvineja-Bisao', @@ -108,18 +108,18 @@ return array ( 'HR' => 'Hrvatska', 'HT' => 'Haiti', 'HU' => 'Mađarska', - 'IC' => 'Kanarska ostrva', + 'IC' => 'Kanarska Ostrva', 'ID' => 'Indonezija', 'IE' => 'Irska', 'IL' => 'Izrael', 'IM' => 'Ostrvo Man', 'IN' => 'Indija', - 'IO' => 'Britanska teritorija u Indijskom okeanu', + 'IO' => 'Britanska teritorija Indijskog okeana', 'IQ' => 'Irak', 'IR' => 'Iran', 'IS' => 'Island', 'IT' => 'Italija', - 'JE' => 'Džersi', + 'JE' => 'Džerzi', 'JM' => 'Jamajka', 'JO' => 'Jordan', 'JP' => 'Japan', @@ -149,7 +149,7 @@ return array ( 'MC' => 'Monako', 'MD' => 'Moldavija', 'ME' => 'Crna Gora', - 'MF' => 'Sent Martin', + 'MF' => 'Sveti Martin (Francuska)', 'MG' => 'Madagaskar', 'MH' => 'Maršalska Ostrva', 'MK' => 'Makedonija', @@ -192,7 +192,7 @@ return array ( 'PN' => 'Pitkern', 'PR' => 'Portoriko', 'PS' => 'Palestinske teritorije', - 'PT' => 'Portugal', + 'PT' => 'Portugalija', 'PW' => 'Palau', 'PY' => 'Paragvaj', 'QA' => 'Katar', @@ -219,7 +219,7 @@ return array ( 'SS' => 'Južni Sudan', 'ST' => 'Sao Tome i Principe', 'SV' => 'Salvador', - 'SX' => 'Sveti Martin', + 'SX' => 'Sveti Martin (Holandija)', 'SY' => 'Sirija', 'SZ' => 'Svazilend', 'TA' => 'Tristan da Kunja', @@ -242,7 +242,7 @@ return array ( 'UA' => 'Ukrajina', 'UG' => 'Uganda', 'UM' => 'Udaljena ostrva SAD', - 'US' => 'Sjedinjene Američke Države', + 'US' => 'Sjedinjene Države', 'UY' => 'Urugvaj', 'UZ' => 'Uzbekistan', 'VA' => 'Vatikan', diff --git a/vendor/giggsey/locale/data/sr.php b/vendor/giggsey/locale/data/sr.php index d234a9a06..c084013ea 100644 --- a/vendor/giggsey/locale/data/sr.php +++ b/vendor/giggsey/locale/data/sr.php @@ -1,6 +1,6 @@ 'Аустрија', 'AU' => 'Аустралија', 'AW' => 'Аруба', - 'AX' => 'Оландска острва', + 'AX' => 'Оландска Острва', 'AZ' => 'Азербејџан', 'BA' => 'Босна и Херцеговина', 'BB' => 'Барбадос', @@ -33,7 +33,7 @@ return array ( 'BH' => 'Бахреин', 'BI' => 'Бурунди', 'BJ' => 'Бенин', - 'BL' => 'Свети Бартоломеј', + 'BL' => 'Сен Бартелеми', 'BM' => 'Бермуда', 'BN' => 'Брунеј', 'BO' => 'Боливија', @@ -60,7 +60,7 @@ return array ( 'CU' => 'Куба', 'CV' => 'Зеленортска Острва', 'CW' => 'Курасао', - 'CX' => 'Божићно острво', + 'CX' => 'Божићно Острво', 'CY' => 'Кипар', 'CZ' => 'Чешка', 'DE' => 'Немачка', @@ -80,25 +80,25 @@ return array ( 'ET' => 'Етиопија', 'FI' => 'Финска', 'FJ' => 'Фиџи', - 'FK' => 'Фокландска острва', + 'FK' => 'Фокландска Острва', 'FM' => 'Микронезија', 'FO' => 'Фарска Острва', 'FR' => 'Француска', 'GA' => 'Габон', - 'GB' => 'Велика Британија', + 'GB' => 'Уједињено Краљевство', 'GD' => 'Гренада', 'GE' => 'Грузија', 'GF' => 'Француска Гвајана', - 'GG' => 'Гурнси', + 'GG' => 'Гернзи', 'GH' => 'Гана', 'GI' => 'Гибралтар', 'GL' => 'Гренланд', 'GM' => 'Гамбија', 'GN' => 'Гвинеја', - 'GP' => 'Гваделупе', + 'GP' => 'Гваделуп', 'GQ' => 'Екваторијална Гвинеја', 'GR' => 'Грчка', - 'GS' => 'Јужна Џорџија и Јужна Сендвич Острва', + 'GS' => 'Јужна Џорџија и Јужна Сендвичка Острва', 'GT' => 'Гватемала', 'GU' => 'Гуам', 'GW' => 'Гвинеја-Бисао', @@ -108,18 +108,18 @@ return array ( 'HR' => 'Хрватска', 'HT' => 'Хаити', 'HU' => 'Мађарска', - 'IC' => 'Канарска острва', + 'IC' => 'Канарска Острва', 'ID' => 'Индонезија', 'IE' => 'Ирска', 'IL' => 'Израел', 'IM' => 'Острво Ман', 'IN' => 'Индија', - 'IO' => 'Британска територија у Индијском океану', + 'IO' => 'Британска територија Индијског океана', 'IQ' => 'Ирак', 'IR' => 'Иран', 'IS' => 'Исланд', 'IT' => 'Италија', - 'JE' => 'Џерси', + 'JE' => 'Џерзи', 'JM' => 'Јамајка', 'JO' => 'Јордан', 'JP' => 'Јапан', @@ -149,7 +149,7 @@ return array ( 'MC' => 'Монако', 'MD' => 'Молдавија', 'ME' => 'Црна Гора', - 'MF' => 'Сент Мартин', + 'MF' => 'Свети Мартин (Француска)', 'MG' => 'Мадагаскар', 'MH' => 'Маршалска Острва', 'MK' => 'Македонија', @@ -192,7 +192,7 @@ return array ( 'PN' => 'Питкерн', 'PR' => 'Порторико', 'PS' => 'Палестинске територије', - 'PT' => 'Португал', + 'PT' => 'Португалија', 'PW' => 'Палау', 'PY' => 'Парагвај', 'QA' => 'Катар', @@ -219,7 +219,7 @@ return array ( 'SS' => 'Јужни Судан', 'ST' => 'Сао Томе и Принципе', 'SV' => 'Салвадор', - 'SX' => 'Свети Мартин', + 'SX' => 'Свети Мартин (Холандија)', 'SY' => 'Сирија', 'SZ' => 'Свазиленд', 'TA' => 'Тристан да Куња', @@ -242,7 +242,7 @@ return array ( 'UA' => 'Украјина', 'UG' => 'Уганда', 'UM' => 'Удаљена острва САД', - 'US' => 'Сједињене Америчке Државе', + 'US' => 'Сједињене Државе', 'UY' => 'Уругвај', 'UZ' => 'Узбекистан', 'VA' => 'Ватикан', diff --git a/vendor/giggsey/locale/data/sv.php b/vendor/giggsey/locale/data/sv.php index 2fafeca55..4d5d3cd43 100644 --- a/vendor/giggsey/locale/data/sv.php +++ b/vendor/giggsey/locale/data/sv.php @@ -1,6 +1,6 @@ 'Monaco', 'MD' => 'Moldavien', 'ME' => 'Montenegro', - 'MF' => 'S:t Martin', + 'MF' => 'Saint-Martin', 'MG' => 'Madagaskar', 'MH' => 'Marshallöarna', 'MK' => 'Makedonien', diff --git a/vendor/giggsey/locale/data/sw-cd.php b/vendor/giggsey/locale/data/sw-cd.php index 00701a934..95d2679d1 100644 --- a/vendor/giggsey/locale/data/sw-cd.php +++ b/vendor/giggsey/locale/data/sw-cd.php @@ -1,6 +1,6 @@ 'Afuganistani', + 'AZ' => 'Azabajani', 'BJ' => 'Benini', - 'CG' => 'Kongo', 'CI' => 'Kodivaa', - 'CY' => 'Kuprosi', - 'IR' => 'Uajemi', + 'CX' => 'Kisiwa cha Christmas', + 'CY' => 'Saiprasi', + 'DK' => 'Denmaki', + 'HR' => 'Kroeshia', + 'JO' => 'Yordani', + 'LB' => 'Lebanoni', 'LI' => 'Lishenteni', - 'MG' => 'Bukini', + 'LU' => 'Lasembagi', + 'LV' => 'Lativia', + 'MA' => 'Moroko', 'MM' => 'Myama', - 'NF' => 'Kisiwa cha Norfok', + 'MV' => 'Maldivi', + 'NE' => 'Nijeri', 'NG' => 'Nijeria', + 'NO' => 'Norwe', + 'NP' => 'Nepali', + 'OM' => 'Omani', + 'PR' => 'Puetoriko', + 'QA' => 'Katari', + 'SD' => 'Sudani', + 'ST' => 'Sao Tome na Prinsipe', + 'TD' => 'Chadi', 'TL' => 'Timori ya Mashariki', + 'VN' => 'Vietnamu', ); diff --git a/vendor/giggsey/locale/data/sw-ke.php b/vendor/giggsey/locale/data/sw-ke.php new file mode 100644 index 000000000..6d3d75584 --- /dev/null +++ b/vendor/giggsey/locale/data/sw-ke.php @@ -0,0 +1,33 @@ + 'Azabajani', + 'CI' => 'Ivorikosti', + 'CX' => 'Kisiwa cha Christmas', + 'CY' => 'Saiprasi', + 'GP' => 'Gwadelupe', + 'JO' => 'Yordani', + 'LB' => 'Lebanoni', + 'LI' => 'Lishtensteni', + 'LS' => 'Lesotho', + 'LU' => 'Lasembagi', + 'LV' => 'Lativia', + 'MV' => 'Maldivi', + 'NE' => 'Nijer', + 'NG' => 'Nijeria', + 'NO' => 'Norwe', + 'NP' => 'Nepali', + 'OM' => 'Omani', + 'PR' => 'Puetoriko', + 'QA' => 'Katari', + 'SR' => 'Suriname', + 'ST' => 'Sao Tome na Prinsipe', + 'TD' => 'Chadi', + 'VN' => 'Vietnamu', +); diff --git a/vendor/giggsey/locale/data/sw.php b/vendor/giggsey/locale/data/sw.php index 06e7af8ec..c194bb4a7 100644 --- a/vendor/giggsey/locale/data/sw.php +++ b/vendor/giggsey/locale/data/sw.php @@ -1,6 +1,6 @@ 'Australia', 'AW' => 'Aruba', 'AX' => 'Visiwa vya Alandi', - 'AZ' => 'Azabajani', + 'AZ' => 'Azerbaijan', 'BA' => 'Bosnia na Hezegovina', 'BB' => 'Babadosi', 'BD' => 'Bangladeshi', @@ -58,7 +58,7 @@ return array ( 'CO' => 'Kolombia', 'CR' => 'Kostarika', 'CU' => 'Kuba', - 'CV' => 'Kepuvede', + 'CV' => 'Cape Verde', 'CW' => 'Kurakao', 'CX' => 'Kisiwa cha Krismasi', 'CY' => 'Cyprus', @@ -77,7 +77,7 @@ return array ( 'EH' => 'Sahara Magharibi', 'ER' => 'Eritrea', 'ES' => 'Hispania', - 'ET' => 'Uhabeshi', + 'ET' => 'Ethiopia', 'FI' => 'Ufini', 'FJ' => 'Fiji', 'FK' => 'Visiwa vya Falkland', @@ -95,12 +95,12 @@ return array ( 'GL' => 'Grinlandi', 'GM' => 'Gambia', 'GN' => 'Gine', - 'GP' => 'Gwadelupe', + 'GP' => 'Guadeloupe', 'GQ' => 'Ginekweta', 'GR' => 'Ugiriki', 'GS' => 'Jojia Kusini na Visiwa vya Sandwich Kusini', - 'GT' => 'Gwatemala', - 'GU' => 'Gwam', + 'GT' => 'Guatemala', + 'GU' => 'Guam', 'GW' => 'Ginebisau', 'GY' => 'Guyana', 'HK' => 'Hong Kong SAR China', @@ -121,7 +121,7 @@ return array ( 'IT' => 'Italia', 'JE' => 'Jersey', 'JM' => 'Jamaika', - 'JO' => 'Yordani', + 'JO' => 'Jordan', 'JP' => 'Japani', 'KE' => 'Kenya', 'KG' => 'Kirigizistani', @@ -131,28 +131,28 @@ return array ( 'KN' => 'Santakitzi na Nevis', 'KP' => 'Korea Kaskazini', 'KR' => 'Korea Kusini', - 'KW' => 'Kuwaiti', + 'KW' => 'Kuwait', 'KY' => 'Visiwa vya Kayman', 'KZ' => 'Kazakistani', 'LA' => 'Laosi', - 'LB' => 'Lebanoni', + 'LB' => 'Lebanon', 'LC' => 'Santalusia', 'LI' => 'Liechtenstein', 'LK' => 'Sri Lanka', 'LR' => 'Liberia', 'LS' => 'Lesoto', - 'LT' => 'Litwania', + 'LT' => 'Lithuania', 'LU' => 'Luxembourg', - 'LV' => 'Lativia', + 'LV' => 'Latvia', 'LY' => 'Libya', - 'MA' => 'Moroko', + 'MA' => 'Morocco', 'MC' => 'Monako', 'MD' => 'Moldova', 'ME' => 'Montenegro', 'MF' => 'Saint Martin', 'MG' => 'Madagaska', 'MH' => 'Visiwa vya Marshall', - 'MK' => 'Masedonia', + 'MK' => 'Macedonia', 'ML' => 'Mali', 'MM' => 'Myanmar (Burma)', 'MN' => 'Mongolia', @@ -175,12 +175,12 @@ return array ( 'NG' => 'Nigeria', 'NI' => 'Nikaragwa', 'NL' => 'Uholanzi', - 'NO' => 'Norwe', + 'NO' => 'Norway', 'NP' => 'Nepal', 'NR' => 'Nauru', 'NU' => 'Niue', 'NZ' => 'Nyuzilandi', - 'OM' => 'Omani', + 'OM' => 'Oman', 'PA' => 'Panama', 'PE' => 'Peru', 'PF' => 'Polinesia ya Ufaransa', @@ -201,10 +201,10 @@ return array ( 'RS' => 'Serbia', 'RU' => 'Urusi', 'RW' => 'Rwanda', - 'SA' => 'Saudi', + 'SA' => 'Saudia', 'SB' => 'Visiwa vya Solomon', - 'SC' => 'Shelisheli', - 'SD' => 'Sudani', + 'SC' => 'Ushelisheli', + 'SD' => 'Sudan', 'SE' => 'Uswidi', 'SG' => 'Singapore', 'SH' => 'Santahelena', @@ -216,7 +216,7 @@ return array ( 'SN' => 'Senegali', 'SO' => 'Somalia', 'SR' => 'Surinamu', - 'SS' => 'Sudani Kusini', + 'SS' => 'Sudan Kusini', 'ST' => 'São Tomé na Príncipe', 'SV' => 'Elsavado', 'SX' => 'Sint Maarten', @@ -239,7 +239,7 @@ return array ( 'TV' => 'Tuvalu', 'TW' => 'Taiwan', 'TZ' => 'Tanzania', - 'UA' => 'Ukraini', + 'UA' => 'Ukraine', 'UG' => 'Uganda', 'UM' => 'Visiwa Vidogo vya Nje vya Marekani', 'US' => 'Marekani', diff --git a/vendor/giggsey/locale/data/ta.php b/vendor/giggsey/locale/data/ta.php index c1f810783..c3a072e99 100644 --- a/vendor/giggsey/locale/data/ta.php +++ b/vendor/giggsey/locale/data/ta.php @@ -1,6 +1,6 @@ 'பெனின்', 'BL' => 'செயின்ட் பார்தேலெமி', 'BM' => 'பெர்முடா', - 'BN' => 'புரூனேய்', + 'BN' => 'புருனே', 'BO' => 'பொலிவியா', 'BQ' => 'கரீபியன் நெதர்லாந்து', 'BR' => 'பிரேசில்', @@ -77,7 +77,7 @@ return array ( 'EH' => 'மேற்கு சஹாரா', 'ER' => 'எரிட்ரியா', 'ES' => 'ஸ்பெயின்', - 'ET' => 'எதியோப்பியா', + 'ET' => 'எத்தியோப்பியா', 'FI' => 'பின்லாந்து', 'FJ' => 'ஃபிஜி', 'FK' => 'ஃபாக்லாந்து தீவுகள்', @@ -85,7 +85,7 @@ return array ( 'FO' => 'ஃபாரோ தீவுகள்', 'FR' => 'பிரான்ஸ்', 'GA' => 'கேபான்', - 'GB' => 'ஐக்கிய பேரரசு', + 'GB' => 'யுனைடெட் கிங்டம்', 'GD' => 'கிரனெடா', 'GE' => 'ஜார்ஜியா', 'GF' => 'பிரெஞ்சு கயானா', @@ -98,7 +98,7 @@ return array ( 'GP' => 'க்வாதேலோப்', 'GQ' => 'ஈக்வடோரியல் கினியா', 'GR' => 'கிரீஸ்', - 'GS' => 'தென் ஜியார்ஜியா மற்றும் தென் சான்ட்விச் தீவுகள்', + 'GS' => 'தெற்கு ஜார்ஜியா மற்றும் தெற்கு சாண்ட்விச் தீவுகள்', 'GT' => 'கவுதமாலா', 'GU' => 'குவாம்', 'GW' => 'கினியா-பிஸ்ஸாவ்', @@ -126,7 +126,7 @@ return array ( 'KE' => 'கென்யா', 'KG' => 'கிர்கிஸ்தான்', 'KH' => 'கம்போடியா', - 'KI' => 'கிரிபடி', + 'KI' => 'கிரிபாட்டி', 'KM' => 'கோமரோஸ்', 'KN' => 'செயின்ட் கிட்ஸ் & நெவிஸ்', 'KP' => 'வட கொரியா', @@ -200,7 +200,7 @@ return array ( 'RO' => 'ருமேனியா', 'RS' => 'செர்பியா', 'RU' => 'ரஷ்யா', - 'RW' => 'ருவான்டா', + 'RW' => 'ருவாண்டா', 'SA' => 'சவூதி அரேபியா', 'SB' => 'சாலமன் தீவுகள்', 'SC' => 'சீஷெல்ஸ்', @@ -228,20 +228,20 @@ return array ( 'TF' => 'பிரெஞ்சு தெற்கு பிரதேசங்கள்', 'TG' => 'டோகோ', 'TH' => 'தாய்லாந்து', - 'TJ' => 'தாஜிகிஸ்தான்', + 'TJ' => 'தஜிகிஸ்தான்', 'TK' => 'டோகேலோ', 'TL' => 'தைமூர்-லெஸ்தே', 'TM' => 'துர்க்மெனிஸ்தான்', 'TN' => 'டுனிசியா', 'TO' => 'டோங்கா', 'TR' => 'துருக்கி', - 'TT' => 'ட்ரினிடாட் & டொபாகோ', + 'TT' => 'டிரினிடாட் & டொபாகோ', 'TV' => 'துவாலூ', 'TW' => 'தைவான்', 'TZ' => 'தான்சானியா', 'UA' => 'உக்ரைன்', 'UG' => 'உகாண்டா', - 'UM' => 'யூ.எஸ். வெளிப்புற தீவுகள்', + 'UM' => 'யூ.எஸ். வெளிப்புறத் தீவுகள்', 'US' => 'அமெரிக்கா', 'UY' => 'உருகுவே', 'UZ' => 'உஸ்பெகிஸ்தான்', diff --git a/vendor/giggsey/locale/data/te.php b/vendor/giggsey/locale/data/te.php index 2321ea099..1b5d35c11 100644 --- a/vendor/giggsey/locale/data/te.php +++ b/vendor/giggsey/locale/data/te.php @@ -1,6 +1,6 @@ 'సెంట్రల్ ఆఫ్రికన్ రిపబ్లిక్', 'CG' => 'కాంగో- బ్రాజావిల్లి', 'CH' => 'స్విట్జర్లాండ్', - 'CI' => 'ఐవరీ కోస్ట్', + 'CI' => 'కోటెడ్ ఐవోయిర్', 'CK' => 'కుక్ దీవులు', 'CL' => 'చిలీ', 'CM' => 'కామెరూన్', @@ -67,10 +67,10 @@ return array ( 'DG' => 'డియాగో గార్సియా', 'DJ' => 'జిబౌటి', 'DK' => 'డెన్మార్క్', - 'DM' => 'డోమెనిక', + 'DM' => 'డొమెనికా', 'DO' => 'డొమెనికన్ రిపబ్లిక్', 'DZ' => 'అల్జీరియా', - 'EA' => 'స్యూటా మరియు మెలిల్లా', + 'EA' => 'స్యూటా & మెలిల్లా', 'EC' => 'ఈక్వడార్', 'EE' => 'ఎస్టోనియా', 'EG' => 'ఈజిప్ట్', @@ -81,7 +81,7 @@ return array ( 'FI' => 'ఫిన్లాండ్', 'FJ' => 'ఫిజీ', 'FK' => 'ఫాక్‌ల్యాండ్ దీవులు', - 'FM' => 'మైక్రోనేశియ', + 'FM' => 'మైక్రోనేషియా', 'FO' => 'ఫారో దీవులు', 'FR' => 'ఫ్రాన్స్‌', 'GA' => 'గాబన్', @@ -145,7 +145,7 @@ return array ( 'LU' => 'లక్సంబర్గ్', 'LV' => 'లాత్వియా', 'LY' => 'లిబియా', - 'MA' => 'మొరాక్కో', + 'MA' => 'మొరాకో', 'MC' => 'మొనాకో', 'MD' => 'మోల్డోవా', 'ME' => 'మోంటేనేగ్రో', @@ -156,7 +156,7 @@ return array ( 'ML' => 'మాలి', 'MM' => 'మయన్మార్ (బర్మా)', 'MN' => 'మంగోలియా', - 'MO' => 'మాకావ్ ఎస్ఏఆర్ చైనా', + 'MO' => 'మకావు ఎస్ఏఆర్ చైనా', 'MP' => 'ఉత్తర మరియానా దీవులు', 'MQ' => 'మార్టినిక్', 'MR' => 'మౌరిటేనియా', @@ -171,7 +171,7 @@ return array ( 'NA' => 'నమీబియా', 'NC' => 'క్రొత్త కాలెడోనియా', 'NE' => 'నైజర్', - 'NF' => 'నార్ఫాక్ దీవి', + 'NF' => 'నార్ఫోక్ దీవి', 'NG' => 'నైజీరియా', 'NI' => 'నికరాగువా', 'NL' => 'నెదర్లాండ్స్', @@ -195,7 +195,7 @@ return array ( 'PT' => 'పోర్చుగల్', 'PW' => 'పలావు', 'PY' => 'పరాగ్వే', - 'QA' => 'కతర్', + 'QA' => 'ఖతర్', 'RE' => 'రియూనియన్', 'RO' => 'రోమానియా', 'RS' => 'సెర్బియా', @@ -207,7 +207,7 @@ return array ( 'SD' => 'సూడాన్', 'SE' => 'స్వీడన్', 'SG' => 'సింగపూర్', - 'SH' => 'సెంట్ హెలినా', + 'SH' => 'సెయింట్ హెలినా', 'SI' => 'స్లోవేనియా', 'SJ' => 'స్వాల్బార్డ్ మరియు యాన్ మాయేన్', 'SK' => 'స్లోవేకియా', @@ -215,9 +215,9 @@ return array ( 'SM' => 'సాన్ మారినో', 'SN' => 'సెనెగల్', 'SO' => 'సోమాలియా', - 'SR' => 'సురినామ్', + 'SR' => 'సూరినామ్', 'SS' => 'దక్షిణ సూడాన్', - 'ST' => 'సావోటోమ్ మరియు ప్రిన్సిపే', + 'ST' => 'సావోటోమ్ & ప్రిన్సిపే', 'SV' => 'ఎల్ సాల్వడోర్', 'SX' => 'సింట్ మార్టెన్', 'SY' => 'సిరియా', @@ -243,16 +243,16 @@ return array ( 'UG' => 'ఉగాండా', 'UM' => 'సంయుక్త రాజ్య అమెరికా బయట ఉన్న దీవులు', 'US' => 'అమెరికా సంయుక్త రాష్ట్రాలు', - 'UY' => 'ఉరుగువే', + 'UY' => 'ఊరుగ్వే', 'UZ' => 'ఉజ్బెకిస్తాన్', 'VA' => 'వాటికన్ నగరం', 'VC' => 'సెంట్ విన్సెంట్ మరియు గ్రెనడీన్స్', - 'VE' => 'వెనుజువేలా', + 'VE' => 'వెనుజులా', 'VG' => 'బ్రిటిష్ వర్జిన్ దీవులు', 'VI' => 'యు.ఎస్. వర్జిన్ దీవులు', 'VN' => 'వియత్నాం', 'VU' => 'వనాటు', - 'WF' => 'వాలిస్ మరియు ఫ్యుత్యునా', + 'WF' => 'వాలిస్ & ఫ్యుత్యునా', 'WS' => 'సమోవా', 'XK' => 'కొసోవో', 'YE' => 'యెమెన్', diff --git a/vendor/giggsey/locale/data/teo.php b/vendor/giggsey/locale/data/teo.php index 9143f8163..839425cb7 100644 --- a/vendor/giggsey/locale/data/teo.php +++ b/vendor/giggsey/locale/data/teo.php @@ -1,6 +1,6 @@ 'สาธารณรัฐแอฟริกากลาง', 'CG' => 'คองโก-บราซซาวิล', 'CH' => 'สวิตเซอร์แลนด์', - 'CI' => 'ไอวอรี่โคสต์', + 'CI' => 'โกตดิวัวร์', 'CK' => 'หมู่เกาะคุก', 'CL' => 'ชิลี', 'CM' => 'แคเมอรูน', @@ -70,7 +70,7 @@ return array ( 'DM' => 'โดมินิกา', 'DO' => 'สาธารณรัฐโดมินิกัน', 'DZ' => 'แอลจีเรีย', - 'EA' => 'ซีโอตาและเมลิลลา', + 'EA' => 'เซวตาและเมลียา', 'EC' => 'เอกวาดอร์', 'EE' => 'เอสโตเนีย', 'EG' => 'อียิปต์', @@ -154,7 +154,7 @@ return array ( 'MH' => 'หมู่เกาะมาร์แชลล์', 'MK' => 'มาซิโดเนีย', 'ML' => 'มาลี', - 'MM' => 'เมียนม่าร์ (พม่า)', + 'MM' => 'เมียนมาร์ (พม่า)', 'MN' => 'มองโกเลีย', 'MO' => 'เขตปกครองพิเศษมาเก๊าแห่งสาธารณรัฐประชาชนจีน', 'MP' => 'หมู่เกาะนอร์เทิร์นมาเรียนา', diff --git a/vendor/giggsey/locale/data/to.php b/vendor/giggsey/locale/data/to.php index 290e99e81..be9e26e6b 100644 --- a/vendor/giggsey/locale/data/to.php +++ b/vendor/giggsey/locale/data/to.php @@ -1,6 +1,6 @@ 'Polani', 'PM' => 'Sā Piea mo Mikeloni', 'PN' => 'ʻOtumotu Pitikeni', - 'PR' => 'Pueto Liko', + 'PR' => 'Puēto Liko', 'PS' => 'Potu Palesitaine', 'PT' => 'Potukali', 'PW' => 'Palau', @@ -222,7 +222,7 @@ return array ( 'SX' => 'Sā Mātini (fakahōlani)', 'SY' => 'Sīlia', 'SZ' => 'Suasilani', - 'TA' => 'Tulisiteni ta Kunuha', + 'TA' => 'Tulisitani ta Kunuha', 'TC' => 'ʻOtumotu Tuki mo Kaikosi', 'TD' => 'Sāti', 'TF' => 'Potu fonua tonga fakafalanisē', diff --git a/vendor/giggsey/locale/data/tr.php b/vendor/giggsey/locale/data/tr.php index c85822d4c..a472d77d9 100644 --- a/vendor/giggsey/locale/data/tr.php +++ b/vendor/giggsey/locale/data/tr.php @@ -1,6 +1,6 @@ 'Aruba', 'AX' => 'Åland Adaları', 'AZ' => 'Azerbaycan', - 'BA' => 'Bosna Hersek', + 'BA' => 'Bosna-Hersek', 'BB' => 'Barbados', 'BD' => 'Bangladeş', 'BE' => 'Belçika', @@ -42,7 +42,7 @@ return array ( 'BS' => 'Bahamalar', 'BT' => 'Butan', 'BW' => 'Botsvana', - 'BY' => 'Beyaz Rusya', + 'BY' => 'Belarus', 'BZ' => 'Belize', 'CA' => 'Kanada', 'CC' => 'Cocos (Keeling) Adaları', @@ -74,7 +74,7 @@ return array ( 'EC' => 'Ekvador', 'EE' => 'Estonya', 'EG' => 'Mısır', - 'EH' => 'Batı Sahara', + 'EH' => 'Batı Sahra', 'ER' => 'Eritre', 'ES' => 'İspanya', 'ET' => 'Etiyopya', @@ -103,7 +103,7 @@ return array ( 'GU' => 'Guam', 'GW' => 'Gine-Bissau', 'GY' => 'Guyana', - 'HK' => 'Çin Hong Kong ÖYB', + 'HK' => 'Çin Hong Kong ÖİB', 'HN' => 'Honduras', 'HR' => 'Hırvatistan', 'HT' => 'Haiti', @@ -140,7 +140,7 @@ return array ( 'LI' => 'Liechtenstein', 'LK' => 'Sri Lanka', 'LR' => 'Liberya', - 'LS' => 'Lesoto', + 'LS' => 'Lesotho', 'LT' => 'Litvanya', 'LU' => 'Lüksemburg', 'LV' => 'Letonya', @@ -156,7 +156,7 @@ return array ( 'ML' => 'Mali', 'MM' => 'Myanmar (Burma)', 'MN' => 'Moğolistan', - 'MO' => 'Çin Makao ÖYB', + 'MO' => 'Çin Makao ÖİB', 'MP' => 'Kuzey Mariana Adaları', 'MQ' => 'Martinik', 'MR' => 'Moritanya', @@ -209,7 +209,7 @@ return array ( 'SG' => 'Singapur', 'SH' => 'Saint Helena', 'SI' => 'Slovenya', - 'SJ' => 'Svalbard ve Jan Mayen Adaları', + 'SJ' => 'Svalbard ve Jan Mayen', 'SK' => 'Slovakya', 'SL' => 'Sierra Leone', 'SM' => 'San Marino', @@ -242,7 +242,7 @@ return array ( 'UA' => 'Ukrayna', 'UG' => 'Uganda', 'UM' => 'ABD Uzak Adaları', - 'US' => 'ABD', + 'US' => 'Amerika Birleşik Devletleri', 'UY' => 'Uruguay', 'UZ' => 'Özbekistan', 'VA' => 'Vatikan', @@ -252,7 +252,7 @@ return array ( 'VI' => 'ABD Virjin Adaları', 'VN' => 'Vietnam', 'VU' => 'Vanuatu', - 'WF' => 'Wallis ve Futuna Adaları', + 'WF' => 'Wallis ve Futuna', 'WS' => 'Samoa', 'XK' => 'Kosova', 'YE' => 'Yemen', diff --git a/vendor/giggsey/locale/data/twq.php b/vendor/giggsey/locale/data/twq.php index a4cf1979c..cf51fb95b 100644 --- a/vendor/giggsey/locale/data/twq.php +++ b/vendor/giggsey/locale/data/twq.php @@ -1,6 +1,6 @@ 'ئاندوررا', 'AE' => 'ئەرەب بىرلەشمە خەلىپىلىكى', 'AF' => 'ئافغانىستان', - 'AG' => 'ئانتىگۋا ۋە باربۇدا', + 'AG' => 'ئانتىگۇئا ۋە باربۇدا', 'AI' => 'ئانگۋىللا', 'AL' => 'ئالبانىيە', 'AM' => 'ئەرمېنىيە', 'AO' => 'ئانگولا', 'AQ' => 'ئانتاركتىكا', 'AR' => 'ئارگېنتىنا', - 'AS' => 'ئامېرىكا تەۋەلىكىدىكى ساموئا', - 'AT' => 'ئاۋسترىيە', + 'AS' => 'ئامېرىكا ساموئا', + 'AT' => 'ئاۋىستىرىيە', 'AU' => 'ئاۋسترالىيە', 'AW' => 'ئارۇبا', 'AX' => 'ئالاند ئاراللىرى', 'AZ' => 'ئەزەربەيجان', - 'BA' => 'بوسنىيە-گېرتسېگوۋىنا', + 'BA' => 'بوسىنىيە ۋە گېرتسېگوۋىنا', 'BB' => 'باربادوس', - 'BD' => 'باڭلادىش', + 'BD' => 'بېنگال', 'BE' => 'بېلگىيە', - 'BF' => 'بۇركىنا-فاسو', + 'BF' => 'بۇركىنا فاسو', 'BG' => 'بۇلغارىيە', 'BH' => 'بەھرەين', 'BI' => 'بۇرۇندى', 'BJ' => 'بېنىن', - 'BL' => 'ساينىت-بارتھېلەمي ئاراللىرى', + 'BL' => 'ساينت بارتېلېمى', 'BM' => 'بېرمۇدا', 'BN' => 'بىرۇنېي', 'BO' => 'بولىۋىيە', @@ -45,11 +45,11 @@ return array ( 'BY' => 'بېلارۇسىيە', 'BZ' => 'بېلىز', 'CA' => 'كانادا', - 'CC' => 'كەئەلىڭ كوكۇس ئاراللىرى', + 'CC' => 'كوكوس (كىلىڭ) ئاراللىرى', 'CD' => 'كونگو - كىنشاسا', 'CF' => 'ئوتتۇرا ئافرىقا جۇمھۇرىيىتى', 'CG' => 'كونگو - بىراززاۋىل', - 'CH' => 'شىۋىتسارىيە', + 'CH' => 'شىۋېتسارىيە', 'CI' => 'كوتې دې ئىۋوئىر', 'CK' => 'كۇك ئاراللىرى', 'CL' => 'چىلى', @@ -59,8 +59,8 @@ return array ( 'CR' => 'كوستارىكا', 'CU' => 'كۇبا', 'CV' => 'يېشىل تۇمشۇق', - 'CW' => 'كۇراسو', - 'CX' => 'روژدېستۋو ئارىلى', + 'CW' => 'كۇراچاۋ', + 'CX' => 'مىلاد ئارىلى', 'CY' => 'سىپرۇس', 'CZ' => 'چېخ جۇمھۇرىيىتى', 'DE' => 'گېرمانىيە', @@ -71,37 +71,37 @@ return array ( 'DO' => 'دومىنىكا جۇمھۇرىيىتى', 'DZ' => 'ئالجىرىيە', 'EA' => 'سېيتا ۋە مېلىلا', - 'EC' => 'ئېكۋادور', + 'EC' => 'ئېكۋاتور', 'EE' => 'ئېستونىيە', 'EG' => 'مىسىر', 'EH' => 'غەربىي ساخارا', - 'ER' => 'ئېرىترېيە', + 'ER' => 'ئېرىترىيە', 'ES' => 'ئىسپانىيە', 'ET' => 'ئېفىيوپىيە', 'FI' => 'فىنلاندىيە', 'FJ' => 'فىجى', 'FK' => 'فالكلاند ئاراللىرى', 'FM' => 'مىكرونېزىيە', - 'FO' => 'فائېرو ئاراللىرى', + 'FO' => 'فارو ئاراللىرى', 'FR' => 'فىرانسىيە', 'GA' => 'گابون', - 'GB' => 'ئەنگلىيە پادىشاھلىقى', + 'GB' => 'بىرلەشمە پادىشاھلىق', 'GD' => 'گىرېنادا', - 'GE' => 'گىروزىيە', + 'GE' => 'گىرۇزىيە', 'GF' => 'فىرانسىيەگە قاراشلىق گىۋىيانا', - 'GG' => 'گېرىنسى', + 'GG' => 'گۇرنسېي', 'GH' => 'گانا', 'GI' => 'جەبىلتارىق', - 'GL' => 'گىرېنلاند', + 'GL' => 'گىرېنلاندىيە', 'GM' => 'گامبىيە', - 'GN' => 'گىۋىنېيە', + 'GN' => 'گىۋىنىيە', 'GP' => 'گىۋادېلۇپ', - 'GQ' => 'ئېكۋاتور گىۋىنېيەسى', + 'GQ' => 'ئېكۋاتور گىۋىنىيەسى', 'GR' => 'گىرېتسىيە', - 'GS' => 'جەنۇبىي جورجىيە ۋە جەنۇبىي ساندىۋىچ ئاراللىرى', + 'GS' => 'جەنۇبىي جورجىيە ۋە جەنۇبىي ساندۋىچ ئاراللىرى', 'GT' => 'گىۋاتېمالا', 'GU' => 'گۇئام', - 'GW' => 'گىۋىنېيە-بىسسائۇ', + 'GW' => 'گىۋىنىيە بىسسائۇ', 'GY' => 'گىۋىيانا', 'HK' => 'شياڭگاڭ ئالاھىدە مەمۇرىي رايونى (جۇڭگو)', 'HN' => 'ھوندۇراس', @@ -112,9 +112,9 @@ return array ( 'ID' => 'ھىندونېزىيە', 'IE' => 'ئىرېلاندىيە', 'IL' => 'ئىسرائىلىيە', - 'IM' => 'مېن ئارىلى', + 'IM' => 'مان ئارىلى', 'IN' => 'ھىندىستان', - 'IO' => 'ئەنگلىيەنىڭ ھىندى ئوكياندىكى تەۋەلىكى', + 'IO' => 'ئەنگلىيەگە قاراشلىق ھىندى ئوكيان تېررىتورىيەسى', 'IQ' => 'ئىراق', 'IR' => 'ئىران', 'IS' => 'ئىسلاندىيە', @@ -128,16 +128,16 @@ return array ( 'KH' => 'كامبودژا', 'KI' => 'كىرىباتى', 'KM' => 'كومورو', - 'KN' => 'ساينىت-كىرىستوفېر ۋە نېۋىس', - 'KP' => 'شىمالىي كورىيە', - 'KR' => 'جەنۇبىي كورىيە', + 'KN' => 'ساينت كىتىس ۋە نېۋىس', + 'KP' => 'چاۋشيەن', + 'KR' => 'كورېيە', 'KW' => 'كۇۋەيت', 'KY' => 'كايمان ئاراللىرى', 'KZ' => 'قازاقىستان', 'LA' => 'لائوس', 'LB' => 'لىۋان', - 'LC' => 'ساينىت-لۇسىيە', - 'LI' => 'لىچتېنشتېين بەگلىكى', + 'LC' => 'ساينت لۇسىيە', + 'LI' => 'لىكتېنستېين', 'LK' => 'سىرىلانكا', 'LR' => 'لىبېرىيە', 'LS' => 'لېسوتو', @@ -148,29 +148,29 @@ return array ( 'MA' => 'ماراكەش', 'MC' => 'موناكو', 'MD' => 'مولدوۋا', - 'ME' => 'مونتېنېگرو', - 'MF' => 'ساينىت-مارتېن', + 'ME' => 'قارا تاغ', + 'MF' => 'ساينت مارتىن', 'MG' => 'ماداغاسقار', 'MH' => 'مارشال ئاراللىرى', 'MK' => 'ماكېدونىيە', 'ML' => 'مالى', 'MM' => 'بىرما', 'MN' => 'موڭغۇلىيە', - 'MO' => 'ئاۋمېن ئالاھىدە مەمۇرىي رايونى (جۇڭگو)', + 'MO' => 'ئاۋمېن ئالاھىدە مەمۇرىي رايونى', 'MP' => 'شىمالىي مارىيانا ئاراللىرى', 'MQ' => 'مارتىنىكا', 'MR' => 'ماۋرىتانىيە', 'MS' => 'مونتسېررات', 'MT' => 'مالتا', - 'MU' => 'ماۋرىتىئۇس', + 'MU' => 'ماۋرىتىيۇس', 'MV' => 'مالدىۋې', 'MW' => 'مالاۋى', 'MX' => 'مېكسىكا', - 'MY' => 'مالايشىيا', + 'MY' => 'مالايسىيا', 'MZ' => 'موزامبىك', 'NA' => 'نامىبىيە', 'NC' => 'يېڭى كالېدونىيە', - 'NE' => 'نېگىر', + 'NE' => 'نىگېر', 'NF' => 'نورفولك ئارىلى', 'NG' => 'نىگېرىيە', 'NI' => 'نىكاراگۇئا', @@ -178,30 +178,30 @@ return array ( 'NO' => 'نورۋېگىيە', 'NP' => 'نېپال', 'NR' => 'ناۋرۇ', - 'NU' => 'نىيۇئې', + 'NU' => 'نيۇئې', 'NZ' => 'يېڭى زېلاندىيە', 'OM' => 'ئومان', 'PA' => 'پاناما', 'PE' => 'پېرۇ', 'PF' => 'فىرانسىيەگە قاراشلىق پولىنېزىيە', - 'PG' => 'پاپۇئا يېڭى گىۋىنېيەسى', + 'PG' => 'پاپۇئا يېڭى گىۋىنىيەسى', 'PH' => 'فىلىپپىن', 'PK' => 'پاكىستان', 'PL' => 'پولشا', - 'PM' => 'ساينىت-پىئېر ۋە مىكېلون ئاراللىرى', - 'PN' => 'پىتكاير ئاراللىرى', - 'PR' => 'پۇئېرتو-رىكو', + 'PM' => 'ساينت پىيېر ۋە مىكېلون ئاراللىرى', + 'PN' => 'پىتكايرن ئاراللىرى', + 'PR' => 'پۇئېرتو رىكو', 'PS' => 'پەلەستىن زېمىنى', 'PT' => 'پورتۇگالىيە', - 'PW' => 'پالاۋ', + 'PW' => 'پالائۇ', 'PY' => 'پاراگۋاي', 'QA' => 'قاتار', - 'RE' => 'رېئونىيون', - 'RO' => 'رۇمىنىيە', + 'RE' => 'رېيۇنىيون', + 'RO' => 'رومىنىيە', 'RS' => 'سېربىيە', 'RU' => 'رۇسىيە', 'RW' => 'رىۋاندا', - 'SA' => 'سەئۇدى ئەرەبىستان', + 'SA' => 'سەئۇدىي ئەرەبىستان', 'SB' => 'سولومون ئاراللىرى', 'SC' => 'سېيشېل', 'SD' => 'سۇدان', @@ -209,23 +209,23 @@ return array ( 'SG' => 'سىنگاپور', 'SH' => 'ساينىت ھېلېنا', 'SI' => 'سىلوۋېنىيە', - 'SJ' => 'سىۋالبارد ۋە يان-مايېن ئارىلى', + 'SJ' => 'سىۋالبارد ۋە يان مايېن', 'SK' => 'سىلوۋاكىيە', 'SL' => 'سېررالېئون', - 'SM' => 'سان-مارىنو', + 'SM' => 'سان مارىنو', 'SN' => 'سېنېگال', 'SO' => 'سومالى', 'SR' => 'سۇرىنام', 'SS' => 'جەنۇبىي سۇدان', 'ST' => 'سان تومې ۋە پرىنسىپې', - 'SV' => 'ئەل سالۋادور', + 'SV' => 'سالۋادور', 'SX' => 'سىنت مارتېن', - 'SY' => 'سۈرىيە', + 'SY' => 'سۇرىيە', 'SZ' => 'سىۋېزىلاند', 'TA' => 'ترىستان داكۇنھا', 'TC' => 'تۇركس ۋە كايكوس ئاراللىرى', 'TD' => 'چاد', - 'TF' => 'فىرانسىيەگە قاراشلىق جەنۇبتىكى زېمىنلىرى', + 'TF' => 'فىرانسىيەنىڭ جەنۇبىي زېمىنى', 'TG' => 'توگو', 'TH' => 'تايلاند', 'TJ' => 'تاجىكىستان', @@ -241,22 +241,22 @@ return array ( 'TZ' => 'تانزانىيە', 'UA' => 'ئۇكرائىنا', 'UG' => 'ئۇگاندا', - 'UM' => 'ئامېرىكا تەۋەلىكىدىكى سىرتقى كىچىك ئاراللار', - 'US' => 'ئامېرىكا قوشما شتاتلىرى', + 'UM' => 'ئا ق ش تاشقى ئاراللىرى', + 'US' => 'ئامېرىكا قوشما ئىشتاتلىرى', 'UY' => 'ئۇرۇگۋاي', 'UZ' => 'ئۆزبېكىستان', - 'VA' => 'ۋاتىكان شەھىرى', - 'VC' => 'ساينىت-ۋىنسېنت ۋە گىرېنادىنېس', - 'VE' => 'ۋېنېزۇئېلا', - 'VG' => 'ئەنگلىيەگە قاراشلىق ۋىرجىن ئارىلى', - 'VI' => 'ئامېرىكا تەۋەلىكىدىكى ۋىرجىن تاقىم ئاراللىرى', + 'VA' => 'ۋاتىكان', + 'VC' => 'ساينت ۋىنسېنت ۋە گىرېنادىنېس', + 'VE' => 'ۋېنېسۇئېلا', + 'VG' => 'ئەنگلىيە ۋىرگىن ئاراللىرى', + 'VI' => 'ئا ق ش ۋىرگىن ئاراللىرى', 'VN' => 'ۋىيېتنام', 'VU' => 'ۋانۇئاتۇ', - 'WF' => 'ۋالىس ۋە فۇتۇنا', + 'WF' => 'ۋاللىس ۋە فۇتۇنا', 'WS' => 'ساموئا', 'XK' => 'كوسوۋو', 'YE' => 'يەمەن', - 'YT' => 'مايوتتې', + 'YT' => 'مايوتى', 'ZA' => 'جەنۇبىي ئافرىقا', 'ZM' => 'زامبىيە', 'ZW' => 'زىمبابۋې', diff --git a/vendor/giggsey/locale/data/uk.php b/vendor/giggsey/locale/data/uk.php index 76a6e58b9..2364c406a 100644 --- a/vendor/giggsey/locale/data/uk.php +++ b/vendor/giggsey/locale/data/uk.php @@ -1,6 +1,6 @@ 'Колумбія', 'CR' => 'Коста-Рика', 'CU' => 'Куба', - 'CV' => 'Кабо Верде', + 'CV' => 'Кабо-Верде', 'CW' => 'Кюрасао', 'CX' => 'Острів Різдва', 'CY' => 'Кіпр', - 'CZ' => 'Чехія', + 'CZ' => 'Чеська Республіка', 'DE' => 'Німеччина', 'DG' => 'Дієго-Гарсія', 'DJ' => 'Джибуті', @@ -82,7 +82,7 @@ return array ( 'FJ' => 'Фіджі', 'FK' => 'Фолклендські острови', 'FM' => 'Мікронезія', - 'FO' => 'Фарерські острови', + 'FO' => 'Фарерські Острови', 'FR' => 'Франція', 'GA' => 'Габон', 'GB' => 'Велика Британія', @@ -157,7 +157,7 @@ return array ( 'MM' => 'Мʼянма (Бірма)', 'MN' => 'Монголія', 'MO' => 'Макао, О.А.Р Китаю', - 'MP' => 'Північні Маріанські острови', + 'MP' => 'Північні Маріанські Острови', 'MQ' => 'Мартиніка', 'MR' => 'Мавританія', 'MS' => 'Монтсеррат', @@ -203,7 +203,7 @@ return array ( 'RW' => 'Руанда', 'SA' => 'Саудівська Аравія', 'SB' => 'Соломонові Острови', - 'SC' => 'Сейшельські острови', + 'SC' => 'Сейшельські Острови', 'SD' => 'Судан', 'SE' => 'Швеція', 'SG' => 'Сінгапур', diff --git a/vendor/giggsey/locale/data/ur-in.php b/vendor/giggsey/locale/data/ur-in.php index 956be1294..0a964680a 100644 --- a/vendor/giggsey/locale/data/ur-in.php +++ b/vendor/giggsey/locale/data/ur-in.php @@ -1,6 +1,6 @@ 'جزیرہ اسینشن', 'AX' => 'جزائر آلینڈ', 'CC' => 'جزائر (کیلنگ) کوکوس', - 'CI' => 'کوت داوواغ', 'CK' => 'جزائر کک', 'DG' => 'ڈیگو گارشیا', 'FK' => 'جزائر فاکلینڈ', diff --git a/vendor/giggsey/locale/data/ur.php b/vendor/giggsey/locale/data/ur.php index 6892b4896..0aa540977 100644 --- a/vendor/giggsey/locale/data/ur.php +++ b/vendor/giggsey/locale/data/ur.php @@ -1,6 +1,6 @@ 'آسٹریلیا', 'AW' => 'اروبا', 'AX' => 'آلینڈ آئلینڈز', - 'AZ' => 'آذربائجان', + 'AZ' => 'آذر بائیجان', 'BA' => 'بوسنیا اور ہرزیگووینا', 'BB' => 'بارباڈوس', 'BD' => 'بنگلہ دیش', @@ -35,7 +35,7 @@ return array ( 'BJ' => 'بینن', 'BL' => 'سینٹ برتھلیمی', 'BM' => 'برمودا', - 'BN' => 'برونئی', + 'BN' => 'برونائی', 'BO' => 'بولیویا', 'BQ' => 'کریبیائی نیدرلینڈز', 'BR' => 'برازیل', @@ -60,7 +60,7 @@ return array ( 'CU' => 'کیوبا', 'CV' => 'کیپ ورڈی', 'CW' => 'کیوراکاؤ', - 'CX' => 'کرسمس آئلینڈ', + 'CX' => 'جزیرہ کرسمس', 'CY' => 'قبرص', 'CZ' => 'چیک جمہوریہ', 'DE' => 'جرمنی', @@ -93,20 +93,20 @@ return array ( 'GH' => 'گھانا', 'GI' => 'جبل الطارق', 'GL' => 'گرین لینڈ', - 'GM' => 'گامبیا', + 'GM' => 'گیمبیا', 'GN' => 'گنی', 'GP' => 'گواڈیلوپ', 'GQ' => 'استوائی گیانا', 'GR' => 'یونان', 'GS' => 'جنوبی جارجیا اور جنوبی سینڈوچ جزائر', 'GT' => 'گواٹے مالا', - 'GU' => 'گوآم', + 'GU' => 'گوام', 'GW' => 'گنی بساؤ', 'GY' => 'گیانا', 'HK' => 'ہانگ کانگ SAR چین', 'HN' => 'ہونڈاروس', 'HR' => 'کروشیا', - 'HT' => 'ہیتی', + 'HT' => 'ہیٹی', 'HU' => 'ہنگری', 'IC' => 'کینری آئلینڈز', 'ID' => 'انڈونیشیا', @@ -114,7 +114,7 @@ return array ( 'IL' => 'اسرائیل', 'IM' => 'آئل آف مین', 'IN' => 'بھارت', - 'IO' => 'برطانوی ہندوستانی سمندری خطہ', + 'IO' => 'برطانوی بحر ہند کا علاقہ', 'IQ' => 'عراق', 'IR' => 'ایران', 'IS' => 'آئس لینڈ', @@ -133,7 +133,7 @@ return array ( 'KR' => 'جنوبی کوریا', 'KW' => 'کویت', 'KY' => 'کیمین آئلینڈز', - 'KZ' => 'قزاخستان', + 'KZ' => 'قازقستان', 'LA' => 'لاؤس', 'LB' => 'لبنان', 'LC' => 'سینٹ لوسیا', @@ -141,11 +141,11 @@ return array ( 'LK' => 'سری لنکا', 'LR' => 'لائبیریا', 'LS' => 'لیسوتھو', - 'LT' => 'لتھوانیا', - 'LU' => 'لگژمبرگ', + 'LT' => 'لیتھونیا', + 'LU' => 'لکسمبرگ', 'LV' => 'لٹویا', 'LY' => 'لیبیا', - 'MA' => 'مراقش', + 'MA' => 'مراکش', 'MC' => 'موناکو', 'MD' => 'مالدووا', 'ME' => 'مونٹے نیگرو', @@ -166,7 +166,7 @@ return array ( 'MV' => 'مالدیپ', 'MW' => 'ملاوی', 'MX' => 'میکسیکو', - 'MY' => 'ملیشیا', + 'MY' => 'ملائشیا', 'MZ' => 'موزمبیق', 'NA' => 'نامیبیا', 'NC' => 'نیو کلیڈونیا', @@ -179,13 +179,13 @@ return array ( 'NP' => 'نیپال', 'NR' => 'نؤرو', 'NU' => 'نیئو', - 'NZ' => 'نیوزی ینڈ', + 'NZ' => 'نیوزی لینڈ', 'OM' => 'عمان', - 'PA' => 'پنامہ', + 'PA' => 'پانامہ', 'PE' => 'پیرو', 'PF' => 'فرانسیسی پولینیشیا', 'PG' => 'پاپوآ نیو گنی', - 'PH' => 'فلپائنی', + 'PH' => 'فلپائن', 'PK' => 'پاکستان', 'PL' => 'پولینڈ', 'PM' => 'سینٹ پیئر اور میکلیئون', @@ -197,7 +197,7 @@ return array ( 'PY' => 'پیراگوئے', 'QA' => 'قطر', 'RE' => 'ری یونین', - 'RO' => 'رومانیا', + 'RO' => 'رومانیہ', 'RS' => 'سربیا', 'RU' => 'روس', 'RW' => 'روانڈا', @@ -232,7 +232,7 @@ return array ( 'TK' => 'ٹوکیلاؤ', 'TL' => 'تیمور لیسٹ', 'TM' => 'ترکمانستان', - 'TN' => 'تیونیسیا', + 'TN' => 'تونس', 'TO' => 'ٹونگا', 'TR' => 'ترکی', 'TT' => 'ترینیداد اور ٹوباگو', @@ -240,7 +240,7 @@ return array ( 'TW' => 'تائیوان', 'TZ' => 'تنزانیہ', 'UA' => 'یوکرین', - 'UG' => 'یوگانڈا', + 'UG' => 'یوگنڈا', 'UM' => 'امریکہ سے باہر کے چھوٹے جزائز', 'US' => 'ریاستہائے متحدہ', 'UY' => 'یوروگوئے', diff --git a/vendor/giggsey/locale/data/uz-arab.php b/vendor/giggsey/locale/data/uz-arab.php index 003fe69d2..d1033b40d 100644 --- a/vendor/giggsey/locale/data/uz-arab.php +++ b/vendor/giggsey/locale/data/uz-arab.php @@ -1,6 +1,6 @@ 'Вознесение ороли', + 'AC' => 'Меърож ороли', 'AD' => 'Андорра', 'AE' => 'Бирлашган Араб Амирликлари', 'AF' => 'Афғонистон', - 'AG' => 'Антигуа ва Барбадос', - 'AI' => 'Ангила', + 'AG' => 'Антигуа ва Барбуда', + 'AI' => 'Ангиля', 'AL' => 'Албания', 'AM' => 'Арманистон', 'AO' => 'Ангола', - 'AQ' => 'Антарктика', + 'AQ' => 'Антарктида', 'AR' => 'Аргентина', 'AS' => 'Америка Самоаси', 'AT' => 'Австрия', @@ -33,11 +33,11 @@ return array ( 'BH' => 'Баҳрайн', 'BI' => 'Бурунди', 'BJ' => 'Бенин', - 'BL' => 'Муқаддас Варфаломей', + 'BL' => 'Сен-Бартелеми', 'BM' => 'Бермуда', 'BN' => 'Бруней', 'BO' => 'Боливия', - 'BQ' => 'Кариб Нидерландияси', + 'BQ' => 'Бонейр, Синт-Эстатиус ва Саба', 'BR' => 'Бразилия', 'BS' => 'Багама ороллари', 'BT' => 'Бутан', @@ -50,7 +50,7 @@ return array ( 'CF' => 'Марказий Африка Республикаси', 'CG' => 'Конго Браззавиль', 'CH' => 'Швейцария', - 'CI' => 'Кот-д-Ивуар', + 'CI' => 'Кот-д’Ивуар', 'CK' => 'Кук ороллари', 'CL' => 'Чили', 'CM' => 'Камерун', @@ -59,18 +59,18 @@ return array ( 'CR' => 'Коста-Рика', 'CU' => 'Куба', 'CV' => 'Кабо-Верде', - 'CW' => 'Курасао', + 'CW' => 'Кюрасао', 'CX' => 'Рождество ороли', 'CY' => 'Кипр', 'CZ' => 'Чехия Республикаси', - 'DE' => 'Олмония', - 'DG' => 'Диего Гарсия', - 'DJ' => 'Джибути', + 'DE' => 'Германия', + 'DG' => 'Диего-Гарсия', + 'DJ' => 'Жибути', 'DK' => 'Дания', 'DM' => 'Доминика', 'DO' => 'Доминикан Республикаси', 'DZ' => 'Жазоир', - 'EA' => 'Сейта ва Мелилла', + 'EA' => 'Сэута ва Мелилла', 'EC' => 'Эквадор', 'EE' => 'Эстония', 'EG' => 'Миср', @@ -79,13 +79,13 @@ return array ( 'ES' => 'Испания', 'ET' => 'Эфиопия', 'FI' => 'Финляндия', - 'FJ' => 'Фижи ороллари', - 'FK' => 'Фолькленд ороллари', + 'FJ' => 'Фижи', + 'FK' => 'Фолкленд ороллари', 'FM' => 'Микронезия', 'FO' => 'Фарер ороллари', 'FR' => 'Франция', 'GA' => 'Габон', - 'GB' => 'Бирлашган Қироллик', + 'GB' => 'Буюк Британия', 'GD' => 'Гренада', 'GE' => 'Грузия', 'GF' => 'Француз Гвианаси', @@ -98,12 +98,12 @@ return array ( 'GP' => 'Гваделупе', 'GQ' => 'Экваториал Гвинея', 'GR' => 'Греция', - 'GS' => 'Жанубий Джорджия ва Жанубий Сендвич ороллари', + 'GS' => 'Жанубий Георгия ва Жанубий Сендвич ороллари', 'GT' => 'Гватемала', 'GU' => 'Гуам', 'GW' => 'Гвинея-Бисау', 'GY' => 'Гаяна', - 'HK' => 'Гонконг Хитой ММҲ', + 'HK' => 'Гонконг (Хитой ММҲ)', 'HN' => 'Гондурас', 'HR' => 'Хорватия', 'HT' => 'Гаити', @@ -114,12 +114,12 @@ return array ( 'IL' => 'Исроил', 'IM' => 'Мэн ороли', 'IN' => 'Ҳиндистон', - 'IO' => 'Британия Ҳинд океани ҳудуди', + 'IO' => 'Британиянинг Ҳинд океанидаги ҳудуди', 'IQ' => 'Ироқ', 'IR' => 'Эрон', 'IS' => 'Исландия', 'IT' => 'Италия', - 'JE' => 'Джерси', + 'JE' => 'Жерси', 'JM' => 'Ямайка', 'JO' => 'Иордания', 'JP' => 'Япония', @@ -131,7 +131,7 @@ return array ( 'KN' => 'Сент-Китс ва Невис', 'KP' => 'Шимолий Корея', 'KR' => 'Жанубий Корея', - 'KW' => 'Кувайт', + 'KW' => 'Қувайт', 'KY' => 'Кайман ороллари', 'KZ' => 'Қозоғистон', 'LA' => 'Лаос', @@ -155,8 +155,8 @@ return array ( 'MK' => 'Македония', 'ML' => 'Мали', 'MM' => 'Мьянма (Бирма)', - 'MN' => 'Муғулистон', - 'MO' => 'Макао Хитой ММҲ', + 'MN' => 'Монголия', + 'MO' => 'Макао (Хитой ММҲ)', 'MP' => 'Шимолий Марианна ороллари', 'MQ' => 'Мартиника', 'MR' => 'Мавритания', @@ -178,25 +178,25 @@ return array ( 'NO' => 'Норвегия', 'NP' => 'Непал', 'NR' => 'Науру', - 'NU' => 'Ниуе', + 'NU' => 'Ниуэ', 'NZ' => 'Янги Зеландия', 'OM' => 'Уммон', 'PA' => 'Панама', 'PE' => 'Перу', 'PF' => 'Француз Полинезияси', - 'PG' => 'Папуа Янги Гвинея', + 'PG' => 'Папуа - Янги Гвинея', 'PH' => 'Филиппин', 'PK' => 'Покистон', 'PL' => 'Польша', 'PM' => 'Сент-Пьер ва Микелон', - 'PN' => 'Питкарин ороллари', + 'PN' => 'Питкэрн ороллари', 'PR' => 'Пуэрто-Рико', 'PS' => 'Фаластин ҳудуди', 'PT' => 'Португалия', 'PW' => 'Палау', 'PY' => 'Парагвай', 'QA' => 'Қатар', - 'RE' => 'Реюньон', + 'RE' => 'Реюнион', 'RO' => 'Руминия', 'RS' => 'Сербия', 'RU' => 'Россия', @@ -207,9 +207,9 @@ return array ( 'SD' => 'Судан', 'SE' => 'Швеция', 'SG' => 'Сингапур', - 'SH' => 'Муқаддас Елена ороллари', + 'SH' => 'Муқаддас Елена ороли', 'SI' => 'Словения', - 'SJ' => 'Савльбард ва Жан Маен', + 'SJ' => 'Свалбард ва Ян-Майен', 'SK' => 'Словакия', 'SL' => 'Сьерра-Леоне', 'SM' => 'Сан-Марино', @@ -218,19 +218,19 @@ return array ( 'SR' => 'Суринам', 'SS' => 'Жанубий Судан', 'ST' => 'Сан-Томе ва Принсипи', - 'SV' => 'Эль-Сальвадор', - 'SX' => 'Синт-Маартен', + 'SV' => 'Салвадор', + 'SX' => 'Синт-Мартен', 'SY' => 'Сурия', 'SZ' => 'Свазиленд', - 'TA' => 'Тристан де Куна', + 'TA' => 'Тристан-да-Куня', 'TC' => 'Туркс ва Кайкос ороллари', 'TD' => 'Чад', - 'TF' => 'Франция жанубий худудлари', + 'TF' => 'Француз жанубий худудлари', 'TG' => 'Того', - 'TH' => 'Тайланд', + 'TH' => 'Таиланд', 'TJ' => 'Тожикистон', 'TK' => 'Токелау', - 'TL' => 'Шарқий-Тимор', + 'TL' => 'Тимор-Лесте', 'TM' => 'Туркманистон', 'TN' => 'Тунис', 'TO' => 'Тонга', @@ -242,22 +242,22 @@ return array ( 'UA' => 'Украина', 'UG' => 'Уганда', 'UM' => 'АҚШ ёндош ороллари', - 'US' => 'Қўшма Штатлар', + 'US' => 'Америка Қўшма Штатлари', 'UY' => 'Уругвай', 'UZ' => 'Ўзбекистон', 'VA' => 'Ватикан', 'VC' => 'Сент-Винсент ва Гренадин', 'VE' => 'Венесуэла', - 'VG' => 'Британия Вирджиния ороллари', - 'VI' => 'АҚШ Вирджиния ороллари', + 'VG' => 'Бртания Виргин ороллари', + 'VI' => 'АҚШ Виргин ороллари', 'VN' => 'Вьетнам', 'VU' => 'Вануату', - 'WF' => 'Уэллис ва Футуна', + 'WF' => 'Уоллис ва Футуна', 'WS' => 'Самоа', 'XK' => 'Косово', 'YE' => 'Яман', 'YT' => 'Майотта', - 'ZA' => 'Жанубий Африка', + 'ZA' => 'Жанубий Африка Республикаси', 'ZM' => 'Замбия', 'ZW' => 'Зимбабве', ); diff --git a/vendor/giggsey/locale/data/uz.php b/vendor/giggsey/locale/data/uz.php index 86b88be09..12c3668c7 100644 --- a/vendor/giggsey/locale/data/uz.php +++ b/vendor/giggsey/locale/data/uz.php @@ -1,6 +1,6 @@ 'Andorra', 'AE' => 'Birlashgan Arab Amirliklari', 'AF' => 'Afgʻoniston', - 'AG' => 'Antigua va Barbados', + 'AG' => 'Antigua va Barbuda', 'AI' => 'Angilya', 'AL' => 'Albaniya', 'AM' => 'Armaniston', @@ -85,7 +85,7 @@ return array ( 'FO' => 'Farer orollari', 'FR' => 'Fransiya', 'GA' => 'Gabon', - 'GB' => 'Birlashgan Qirollik', + 'GB' => 'Buyuk Britaniya', 'GD' => 'Grenada', 'GE' => 'Gruziya', 'GF' => 'Fransuz Gvianasi', @@ -188,7 +188,7 @@ return array ( 'PH' => 'Filippin', 'PK' => 'Pokiston', 'PL' => 'Polsha', - 'PM' => 'Sent-Pyer va Mikelon', + 'PM' => 'Sen-Pyer va Mikelon', 'PN' => 'Pitkern orollari', 'PR' => 'Puerto-Riko', 'PS' => 'Falastin hududi', @@ -230,7 +230,7 @@ return array ( 'TH' => 'Tailand', 'TJ' => 'Tojikiston', 'TK' => 'Tokelau', - 'TL' => 'Timor', + 'TL' => 'Timor-Leste', 'TM' => 'Turkmaniston', 'TN' => 'Tunis', 'TO' => 'Tonga', @@ -242,7 +242,7 @@ return array ( 'UA' => 'Ukraina', 'UG' => 'Uganda', 'UM' => 'AQSH yondosh orollari', - 'US' => 'Qoʻshma Shtatlar', + 'US' => 'Amerika Qo‘shma Shtatlari', 'UY' => 'Urugvay', 'UZ' => 'Oʻzbekiston', 'VA' => 'Vatikan', diff --git a/vendor/giggsey/locale/data/vai-latn.php b/vendor/giggsey/locale/data/vai-latn.php index bdfae2059..82d93ebd3 100644 --- a/vendor/giggsey/locale/data/vai-latn.php +++ b/vendor/giggsey/locale/data/vai-latn.php @@ -1,6 +1,6 @@ 'Đảo Ascension', 'AD' => 'Andorra', - 'AE' => 'Các Tiểu V.quốc Ả Rập T.nhất', + 'AE' => 'Các Tiểu Vương quốc Ả Rập Thống nhất', 'AF' => 'Afghanistan', 'AG' => 'Antigua và Barbuda', 'AI' => 'Anguilla', - 'AL' => 'Albani', + 'AL' => 'Albania', 'AM' => 'Armenia', 'AO' => 'Angola', 'AQ' => 'Nam Cực', 'AR' => 'Argentina', 'AS' => 'Đảo Somoa thuộc Mỹ', 'AT' => 'Áo', - 'AU' => 'Úc', + 'AU' => 'Australia', 'AW' => 'Aruba', 'AX' => 'Quần đảo Åland', 'AZ' => 'Azerbaijan', @@ -29,7 +29,7 @@ return array ( 'BD' => 'Bangladesh', 'BE' => 'Bỉ', 'BF' => 'Burkina Faso', - 'BG' => 'Bungari', + 'BG' => 'Bulgaria', 'BH' => 'Bahrain', 'BI' => 'Burundi', 'BJ' => 'Benin', @@ -50,7 +50,7 @@ return array ( 'CF' => 'Cộng hòa Trung Phi', 'CG' => 'Congo - Brazzaville', 'CH' => 'Thụy Sĩ', - 'CI' => 'Bờ Biển Ngà', + 'CI' => 'Côte d’Ivoire', 'CK' => 'Quần đảo Cook', 'CL' => 'Chile', 'CM' => 'Cameroon', @@ -87,7 +87,7 @@ return array ( 'GA' => 'Gabon', 'GB' => 'Vương quốc Anh', 'GD' => 'Grenada', - 'GE' => 'Georgia', + 'GE' => 'Gruzia', 'GF' => 'Guiana thuộc Pháp', 'GG' => 'Guernsey', 'GH' => 'Ghana', @@ -107,15 +107,15 @@ return array ( 'HN' => 'Honduras', 'HR' => 'Croatia', 'HT' => 'Haiti', - 'HU' => 'Hungari', + 'HU' => 'Hungary', 'IC' => 'Quần đảo Canary', 'ID' => 'Indonesia', - 'IE' => 'Ai-len', + 'IE' => 'Ireland', 'IL' => 'Israel', 'IM' => 'Đảo Man', 'IN' => 'Ấn Độ', - 'IO' => 'Thuộc địa Anh tại Ấn Độ Dương', - 'IQ' => 'I-rắc', + 'IO' => 'Lãnh thổ Anh tại Ấn Độ Dương', + 'IQ' => 'Iraq', 'IR' => 'Iran', 'IS' => 'Iceland', 'IT' => 'Ý', @@ -131,7 +131,7 @@ return array ( 'KN' => 'St. Kitts và Nevis', 'KP' => 'Triều Tiên', 'KR' => 'Hàn Quốc', - 'KW' => 'Cô-oét', + 'KW' => 'Kuwait', 'KY' => 'Quần đảo Cayman', 'KZ' => 'Kazakhstan', 'LA' => 'Lào', @@ -141,10 +141,10 @@ return array ( 'LK' => 'Sri Lanka', 'LR' => 'Liberia', 'LS' => 'Lesotho', - 'LT' => 'Lít-va', + 'LT' => 'Litva', 'LU' => 'Luxembourg', 'LV' => 'Latvia', - 'LY' => 'Li-bi', + 'LY' => 'Libya', 'MA' => 'Ma-rốc', 'MC' => 'Monaco', 'MD' => 'Moldova', @@ -185,7 +185,7 @@ return array ( 'PE' => 'Peru', 'PF' => 'Polynesia thuộc Pháp', 'PG' => 'Papua New Guinea', - 'PH' => 'Philippin', + 'PH' => 'Philippines', 'PK' => 'Pakistan', 'PL' => 'Ba Lan', 'PM' => 'Saint Pierre và Miquelon', @@ -214,7 +214,7 @@ return array ( 'SL' => 'Sierra Leone', 'SM' => 'San Marino', 'SN' => 'Senegal', - 'SO' => 'Somali', + 'SO' => 'Somalia', 'SR' => 'Suriname', 'SS' => 'Nam Sudan', 'ST' => 'São Tomé và Príncipe', @@ -225,12 +225,12 @@ return array ( 'TA' => 'Tristan da Cunha', 'TC' => 'Quần đảo Turk và Caicos', 'TD' => 'Chad', - 'TF' => 'Lãnh thổ miền nam nước Pháp', + 'TF' => 'Lãnh thổ phía Nam Thuộc Pháp', 'TG' => 'Togo', 'TH' => 'Thái Lan', 'TJ' => 'Tajikistan', 'TK' => 'Tokelau', - 'TL' => 'Đông Timor', + 'TL' => 'Timor-Leste', 'TM' => 'Turkmenistan', 'TN' => 'Tunisia', 'TO' => 'Tonga', @@ -241,7 +241,7 @@ return array ( 'TZ' => 'Tanzania', 'UA' => 'Ukraina', 'UG' => 'Uganda', - 'UM' => 'Các đảo nhỏ xa t.tâm thuộc Mỹ', + 'UM' => 'Các đảo xa thuộc Hoa Kỳ', 'US' => 'Hoa Kỳ', 'UY' => 'Uruguay', 'UZ' => 'Uzbekistan', diff --git a/vendor/giggsey/locale/data/vun.php b/vendor/giggsey/locale/data/vun.php index e8cf4a316..7deaf0b93 100644 --- a/vendor/giggsey/locale/data/vun.php +++ b/vendor/giggsey/locale/data/vun.php @@ -1,6 +1,6 @@ '博茨瓦納', 'BZ' => '伯利茲', 'CC' => '可可斯群島', - 'CD' => '剛果 - 金夏沙', - 'CG' => '剛果 - 布拉薩', 'CI' => '科特迪瓦', 'CR' => '哥斯達黎加', 'CV' => '佛得角', 'CY' => '塞浦路斯', 'DJ' => '吉布提', - 'DO' => '多米尼加共和國', 'EC' => '厄瓜多爾', 'ER' => '厄立特里亞', 'ET' => '埃塞俄比亞', @@ -43,7 +40,6 @@ return array ( 'HN' => '洪都拉斯', 'HR' => '克羅地亞', 'IM' => '馬恩島', - 'IO' => '英屬印度洋領土', 'IT' => '意大利', 'KE' => '肯雅', 'KM' => '科摩羅', @@ -69,9 +65,10 @@ return array ( 'PF' => '法屬波利尼西亞', 'PG' => '巴布亞新幾內亞', 'PN' => '皮特凱恩島', + 'PS' => '巴勒斯坦領土', 'QA' => '卡塔爾', 'RW' => '盧旺達', - 'SA' => '沙特阿拉伯', + 'SA' => '沙地阿拉伯', 'SB' => '所羅門群島', 'SC' => '塞舌爾', 'SI' => '斯洛文尼亞', @@ -80,10 +77,11 @@ return array ( 'SO' => '索馬里', 'SR' => '蘇里南', 'ST' => '聖多美和普林西比', + 'SY' => '敍利亞', 'SZ' => '斯威士蘭', 'TC' => '特克斯和凱科斯群島', 'TD' => '乍得', - 'TF' => '法屬南部地區', + 'TF' => '法屬南部領地', 'TG' => '多哥共和國', 'TO' => '湯加', 'TT' => '千里達和多巴哥', diff --git a/vendor/giggsey/locale/data/zh-hant-mo.php b/vendor/giggsey/locale/data/zh-hant-mo.php index 4293bcfc5..6b45cabc1 100644 --- a/vendor/giggsey/locale/data/zh-hant-mo.php +++ b/vendor/giggsey/locale/data/zh-hant-mo.php @@ -1,6 +1,6 @@ '博茨瓦納', 'BZ' => '伯利茲', 'CC' => '可可斯群島', - 'CD' => '剛果 - 金夏沙', - 'CG' => '剛果 - 布拉薩', 'CI' => '科特迪瓦', 'CR' => '哥斯達黎加', 'CV' => '佛得角', 'CY' => '塞浦路斯', 'DJ' => '吉布提', - 'DO' => '多米尼加共和國', 'EC' => '厄瓜多爾', 'ER' => '厄立特里亞', 'ET' => '埃塞俄比亞', @@ -43,7 +40,6 @@ return array ( 'HN' => '洪都拉斯', 'HR' => '克羅地亞', 'IM' => '馬恩島', - 'IO' => '英屬印度洋領土', 'IT' => '意大利', 'KE' => '肯雅', 'KM' => '科摩羅', @@ -69,9 +65,10 @@ return array ( 'PF' => '法屬波利尼西亞', 'PG' => '巴布亞新幾內亞', 'PN' => '皮特凱恩島', + 'PS' => '巴勒斯坦領土', 'QA' => '卡塔爾', 'RW' => '盧旺達', - 'SA' => '沙特阿拉伯', + 'SA' => '沙地阿拉伯', 'SB' => '所羅門群島', 'SC' => '塞舌爾', 'SI' => '斯洛文尼亞', @@ -80,10 +77,11 @@ return array ( 'SO' => '索馬里', 'SR' => '蘇里南', 'ST' => '聖多美和普林西比', + 'SY' => '敍利亞', 'SZ' => '斯威士蘭', 'TC' => '特克斯和凱科斯群島', 'TD' => '乍得', - 'TF' => '法屬南部地區', + 'TF' => '法屬南部領地', 'TG' => '多哥共和國', 'TO' => '湯加', 'TT' => '千里達和多巴哥', diff --git a/vendor/giggsey/locale/data/zh-hant.php b/vendor/giggsey/locale/data/zh-hant.php index ee8b84ac2..6a3c09069 100644 --- a/vendor/giggsey/locale/data/zh-hant.php +++ b/vendor/giggsey/locale/data/zh-hant.php @@ -1,6 +1,6 @@ '象牙海岸', 'CK' => '庫克群島', 'CM' => '喀麥隆', - 'CN' => '中華人民共和國', + 'CN' => '中國', 'CO' => '哥倫比亞', 'CR' => '哥斯大黎加', 'CV' => '維德角', @@ -72,9 +72,9 @@ return array ( 'GA' => '加彭', 'GB' => '英國', 'GD' => '格瑞那達', - 'GE' => '喬治亞共和國', + 'GE' => '喬治亞', 'GF' => '法屬圭亞那', - 'GG' => '根西島', + 'GG' => '根息', 'GH' => '迦納', 'GI' => '直布羅陀', 'GL' => '格陵蘭', @@ -88,7 +88,7 @@ return array ( 'GU' => '關島', 'GW' => '幾內亞比索', 'GY' => '蓋亞那', - 'HK' => '中華人民共和國香港特別行政區', + 'HK' => '中國香港特別行政區', 'HN' => '宏都拉斯', 'HR' => '克羅埃西亞', 'IC' => '加那利群島', @@ -128,7 +128,7 @@ return array ( 'MK' => '馬其頓', 'ML' => '馬利', 'MM' => '緬甸', - 'MO' => '中華人民共和國澳門特別行政區', + 'MO' => '中國澳門特別行政區', 'MP' => '北馬里亞納群島', 'MQ' => '馬丁尼克島', 'MR' => '茅利塔尼亞', @@ -172,7 +172,7 @@ return array ( 'SD' => '蘇丹', 'SH' => '聖赫勒拿島', 'SI' => '斯洛維尼亞', - 'SJ' => '冷岸及央麥恩群島', + 'SJ' => '冷岸及央棉', 'SL' => '獅子山', 'SM' => '聖馬利諾', 'SN' => '塞內加爾', @@ -211,7 +211,7 @@ return array ( 'VG' => '英屬維京群島', 'VI' => '美屬維京群島', 'VU' => '萬那杜', - 'WF' => '瓦利斯和富圖納群島', + 'WF' => '瓦利斯群島和富圖那群島', 'WS' => '薩摩亞', 'YE' => '葉門', 'YT' => '馬約特', diff --git a/vendor/giggsey/locale/data/zh.php b/vendor/giggsey/locale/data/zh.php index 259ff77dd..489f53a60 100644 --- a/vendor/giggsey/locale/data/zh.php +++ b/vendor/giggsey/locale/data/zh.php @@ -1,6 +1,6 @@ '百慕大', 'BN' => '文莱', 'BO' => '玻利维亚', - 'BQ' => '荷兰加勒比区', + 'BQ' => '荷属加勒比区', 'BR' => '巴西', 'BS' => '巴哈马', 'BT' => '不丹', @@ -89,7 +89,7 @@ return array ( 'GD' => '格林纳达', 'GE' => '格鲁吉亚', 'GF' => '法属圭亚那', - 'GG' => '根西岛', + 'GG' => '格恩西岛', 'GH' => '加纳', 'GI' => '直布罗陀', 'GL' => '格陵兰', @@ -98,7 +98,7 @@ return array ( 'GP' => '瓜德罗普', 'GQ' => '赤道几内亚', 'GR' => '希腊', - 'GS' => '南乔治亚岛和南桑威齐群岛', + 'GS' => '南乔治亚和南桑威奇群岛', 'GT' => '危地马拉', 'GU' => '关岛', 'GW' => '几内亚比绍', @@ -112,7 +112,7 @@ return array ( 'ID' => '印度尼西亚', 'IE' => '爱尔兰', 'IL' => '以色列', - 'IM' => '曼岛', + 'IM' => '马恩岛', 'IN' => '印度', 'IO' => '英属印度洋领地', 'IQ' => '伊拉克', @@ -149,7 +149,7 @@ return array ( 'MC' => '摩纳哥', 'MD' => '摩尔多瓦', 'ME' => '黑山', - 'MF' => '法属圣马丁', + 'MF' => '圣马丁岛', 'MG' => '马达加斯加', 'MH' => '马绍尔群岛', 'MK' => '马其顿', @@ -209,7 +209,7 @@ return array ( 'SG' => '新加坡', 'SH' => '圣赫勒拿', 'SI' => '斯洛文尼亚', - 'SJ' => '斯瓦尔巴特和扬马延', + 'SJ' => '斯瓦尔巴和扬马延', 'SK' => '斯洛伐克', 'SL' => '塞拉利昂', 'SM' => '圣马力诺', @@ -248,8 +248,8 @@ return array ( 'VA' => '梵蒂冈', 'VC' => '圣文森特和格林纳丁斯', 'VE' => '委内瑞拉', - 'VG' => '英属维京群岛', - 'VI' => '美属维京群岛', + 'VG' => '英属维尔京群岛', + 'VI' => '美属维尔京群岛', 'VN' => '越南', 'VU' => '瓦努阿图', 'WF' => '瓦利斯和富图纳', diff --git a/vendor/giggsey/locale/data/zu.php b/vendor/giggsey/locale/data/zu.php index 8769ef756..65076dde6 100644 --- a/vendor/giggsey/locale/data/zu.php +++ b/vendor/giggsey/locale/data/zu.php @@ -1,6 +1,6 @@ 'i-Andorra', 'AE' => 'i-United Arab Emirates', 'AF' => 'i-Afghanistan', - 'AG' => 'i-Antigua and Barbuda', + 'AG' => 'i-Antigua ne-Barbuda', 'AI' => 'i-Anguilla', 'AL' => 'i-Albania', 'AM' => 'i-Armenia', @@ -207,7 +207,7 @@ return array ( 'SD' => 'i-Sudan', 'SE' => 'i-Sweden', 'SG' => 'i-Singapore', - 'SH' => 'i-Saint Helena', + 'SH' => 'i-St. Helena', 'SI' => 'i-Slovenia', 'SJ' => 'i-Svalbard ne-Jan Mayen', 'SK' => 'i-Slovakia', @@ -223,7 +223,7 @@ return array ( 'SY' => 'i-Syria', 'SZ' => 'i-Swaziland', 'TA' => 'i-Tristan da Cunha', - 'TC' => 'i-Turks and Caicos Islands', + 'TC' => 'i-Turks ne-Caicos Islands', 'TD' => 'i-Chad', 'TF' => 'i-French Southern Territories', 'TG' => 'i-Togo', diff --git a/vendor/guzzlehttp/guzzle/.travis.yml b/vendor/guzzlehttp/guzzle/.travis.yml index a4cd64ccd..e2f4f7021 100644 --- a/vendor/guzzlehttp/guzzle/.travis.yml +++ b/vendor/guzzlehttp/guzzle/.travis.yml @@ -6,11 +6,11 @@ php: - 5.5 - 5.6 - 7.0 + - 7.1 - hhvm before_script: - curl --version - - composer self-update - composer install --no-interaction --prefer-source --dev - ~/.nvm/nvm.sh install v0.6.14 - ~/.nvm/nvm.sh run v0.6.14 diff --git a/vendor/guzzlehttp/guzzle/CHANGELOG.md b/vendor/guzzlehttp/guzzle/CHANGELOG.md index affddab49..b2edd2e33 100644 --- a/vendor/guzzlehttp/guzzle/CHANGELOG.md +++ b/vendor/guzzlehttp/guzzle/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## 6.2.2 - 2016-10-08 + +* Allow to pass nullable Response to delay callable +* Only add scheme when host is present +* Fix drain case where content-length is the literal string zero +* Obfuscate in-URL credentials in exceptions + ## 6.2.1 - 2016-07-18 * Address HTTP_PROXY security vulnerability, CVE-2016-5385: @@ -746,7 +753,7 @@ interfaces. * Deprecating Response::getRequest() and now using a shallow clone of a request object to remove a circular reference to help with refcount based garbage collection of resources created by sending a request * Deprecating ZF1 cache and log adapters. These will be removed in the next major version. -* Deprecating `Response::getPreviousResponse()` (method signature still exists, but it'sdeprecated). Use the +* Deprecating `Response::getPreviousResponse()` (method signature still exists, but it's deprecated). Use the HistoryPlugin for a history. * Added a `responseBody` alias for the `response_body` location * Refactored internals to no longer rely on Response::getRequest() diff --git a/vendor/guzzlehttp/guzzle/UPGRADING.md b/vendor/guzzlehttp/guzzle/UPGRADING.md index 9e31ddcce..91d1dcc99 100644 --- a/vendor/guzzlehttp/guzzle/UPGRADING.md +++ b/vendor/guzzlehttp/guzzle/UPGRADING.md @@ -132,7 +132,7 @@ $handler = GuzzleHttp\HandlerStack::create(); $handler->push(Middleware::mapRequest(function (RequestInterface $request) { // Notice that we have to return a request object return $request->withHeader('X-Foo', 'Bar'); -}); +})); // Inject the handler into the client $client = new GuzzleHttp\Client(['handler' => $handler]); ``` @@ -600,7 +600,7 @@ these if needed): The following plugins are not part of the core Guzzle package, but are provided in separate repositories: -- `Guzzle\Http\Plugin\BackoffPlugin` has been rewritten to be muchs simpler +- `Guzzle\Http\Plugin\BackoffPlugin` has been rewritten to be much simpler to build custom retry policies using simple functions rather than various chained classes. See: https://github.com/guzzle/retry-subscriber - `Guzzle\Http\Plugin\Cache\CachePlugin` has moved to @@ -664,8 +664,8 @@ that contain additional metadata accessible via `getMetadata()`. The entire concept of the StreamRequestFactory has been removed. The way this was used in Guzzle 3 broke the actual interface of sending streaming requests -(instead of getting back a Response, you got a StreamInterface). Streeaming -PHP requests are now implemented throught the `GuzzleHttp\Adapter\StreamAdapter`. +(instead of getting back a Response, you got a StreamInterface). Streaming +PHP requests are now implemented through the `GuzzleHttp\Adapter\StreamAdapter`. 3.6 to 3.7 ---------- diff --git a/vendor/guzzlehttp/guzzle/src/Client.php b/vendor/guzzlehttp/guzzle/src/Client.php index 6089c1869..b14574d44 100644 --- a/vendor/guzzlehttp/guzzle/src/Client.php +++ b/vendor/guzzlehttp/guzzle/src/Client.php @@ -9,18 +9,18 @@ use Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseInterface; /** - * @method ResponseInterface get($uri, array $options = []) - * @method ResponseInterface head($uri, array $options = []) - * @method ResponseInterface put($uri, array $options = []) - * @method ResponseInterface post($uri, array $options = []) - * @method ResponseInterface patch($uri, array $options = []) - * @method ResponseInterface delete($uri, array $options = []) - * @method Promise\PromiseInterface getAsync($uri, array $options = []) - * @method Promise\PromiseInterface headAsync($uri, array $options = []) - * @method Promise\PromiseInterface putAsync($uri, array $options = []) - * @method Promise\PromiseInterface postAsync($uri, array $options = []) - * @method Promise\PromiseInterface patchAsync($uri, array $options = []) - * @method Promise\PromiseInterface deleteAsync($uri, array $options = []) + * @method ResponseInterface get(string|UriInterface $uri, array $options = []) + * @method ResponseInterface head(string|UriInterface $uri, array $options = []) + * @method ResponseInterface put(string|UriInterface $uri, array $options = []) + * @method ResponseInterface post(string|UriInterface $uri, array $options = []) + * @method ResponseInterface patch(string|UriInterface $uri, array $options = []) + * @method ResponseInterface delete(string|UriInterface $uri, array $options = []) + * @method Promise\PromiseInterface getAsync(string|UriInterface $uri, array $options = []) + * @method Promise\PromiseInterface headAsync(string|UriInterface $uri, array $options = []) + * @method Promise\PromiseInterface putAsync(string|UriInterface $uri, array $options = []) + * @method Promise\PromiseInterface postAsync(string|UriInterface $uri, array $options = []) + * @method Promise\PromiseInterface patchAsync(string|UriInterface $uri, array $options = []) + * @method Promise\PromiseInterface deleteAsync(string|UriInterface $uri, array $options = []) */ class Client implements ClientInterface { @@ -145,7 +145,7 @@ class Client implements ClientInterface $uri = Psr7\Uri::resolve(Psr7\uri_for($config['base_uri']), $uri); } - return $uri->getScheme() === '' ? $uri->withScheme('http') : $uri; + return $uri->getScheme() === '' && $uri->getHost() !== '' ? $uri->withScheme('http') : $uri; } /** diff --git a/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php b/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php index f01f06d99..3fd72faa8 100644 --- a/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php +++ b/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php @@ -4,6 +4,7 @@ namespace GuzzleHttp\Exception; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseInterface; use GuzzleHttp\Promise\PromiseInterface; +use Psr\Http\Message\UriInterface; /** * HTTP Request exception @@ -89,12 +90,15 @@ class RequestException extends TransferException $className = __CLASS__; } + $uri = $request->getUri(); + $uri = static::obfuscateUri($uri); + // Server Error: `GET /` resulted in a `404 Not Found` response: // ... (truncated) $message = sprintf( '%s: `%s` resulted in a `%s` response', $label, - $request->getMethod() . ' ' . $request->getUri(), + $request->getMethod() . ' ' . $uri, $response->getStatusCode() . ' ' . $response->getReasonPhrase() ); @@ -141,6 +145,24 @@ class RequestException extends TransferException return $summary; } + /** + * Obfuscates URI if there is an username and a password present + * + * @param UriInterface $uri + * + * @return UriInterface + */ + private static function obfuscateUri($uri) + { + $userInfo = $uri->getUserInfo(); + + if (false !== ($pos = strpos($userInfo, ':'))) { + return $uri->withUserInfo(substr($userInfo, 0, $pos), '***'); + } + + return $uri; + } + /** * Get the request that caused the exception * diff --git a/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php b/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php index 30b602e2d..4972f54a4 100644 --- a/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php +++ b/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php @@ -210,7 +210,7 @@ class StreamHandler Psr7\copy_to_stream( $source, $sink, - strlen($contentLength) > 0 ? (int) $contentLength : -1 + (strlen($contentLength) > 0 && (int) $contentLength > 0) ? (int) $contentLength : -1 ); $sink->seek(0); diff --git a/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php b/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php index 4b95a1474..db0f22226 100644 --- a/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php +++ b/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php @@ -5,6 +5,7 @@ use GuzzleHttp\Promise\PromiseInterface; use GuzzleHttp\Promise\RejectedPromise; use GuzzleHttp\Psr7; use Psr\Http\Message\RequestInterface; +use Psr\Http\Message\ResponseInterface; /** * Middleware that retries requests based on the boolean result of @@ -25,8 +26,8 @@ class RetryMiddleware * retried. * @param callable $nextHandler Next handler to invoke. * @param callable $delay Function that accepts the number of retries - * and returns the number of milliseconds to - * delay. + * and [response] and returns the number of + * milliseconds to delay. */ public function __construct( callable $decider, @@ -82,7 +83,7 @@ class RetryMiddleware )) { return $value; } - return $this->doRetry($req, $options); + return $this->doRetry($req, $options, $value); }; } @@ -102,9 +103,9 @@ class RetryMiddleware }; } - private function doRetry(RequestInterface $request, array $options) + private function doRetry(RequestInterface $request, array $options, ResponseInterface $response = null) { - $options['delay'] = call_user_func($this->delay, ++$options['retries']); + $options['delay'] = call_user_func($this->delay, ++$options['retries'], $response); return $this($request, $options); } diff --git a/vendor/laravel/socialite/readme.md b/vendor/laravel/socialite/readme.md index 415d46805..e7c43b0aa 100644 --- a/vendor/laravel/socialite/readme.md +++ b/vendor/laravel/socialite/readme.md @@ -13,6 +13,8 @@ Laravel Socialite provides an expressive, fluent interface to OAuth authenticati **We are not accepting new adapters.** +Adapters for other platforms are listed at the community driven [Socialite Providers](https://socialiteproviders.github.io/) website. + ## License Laravel Socialite is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT) @@ -111,6 +113,15 @@ return Socialite::driver('google') When using the `with` method, be careful not to pass any reserved keywords such as `state` or `response_type`. +#### Stateless Authentication + +The `stateless` method may be used to disable session state verification. This is useful when adding social authentication to an API: + +```php +return Socialite::driver('google')->stateless()->user(); +``` + + #### Retrieving User Details Once you have a user instance, you can grab a few more details about the user: @@ -134,3 +145,11 @@ $user->getName(); $user->getEmail(); $user->getAvatar(); ``` + +#### Retrieving User Details From Token + +If you already have a valid access token for a user, you can retrieve their details using the `userFromToken` method: + +```php +$user = Socialite::driver('github')->userFromToken($token); +``` diff --git a/vendor/laravel/socialite/src/One/AbstractProvider.php b/vendor/laravel/socialite/src/One/AbstractProvider.php index 048db620e..5d6afa46e 100644 --- a/vendor/laravel/socialite/src/One/AbstractProvider.php +++ b/vendor/laravel/socialite/src/One/AbstractProvider.php @@ -4,6 +4,7 @@ namespace Laravel\Socialite\One; use Illuminate\Http\Request; use InvalidArgumentException; +use League\OAuth1\Client\Credentials\TokenCredentials; use League\OAuth1\Client\Server\Server; use Symfony\Component\HttpFoundation\RedirectResponse; use Laravel\Socialite\Contracts\Provider as ProviderContract; @@ -74,6 +75,31 @@ abstract class AbstractProvider implements ProviderContract ]); } + /** + * Get a Social User instance from a known access token and secret. + * + * @param string $token + * @param string $secret + * @return \Laravel\Socialite\One\User + */ + public function userFromTokenAndSecret($token, $secret) + { + $tokenCredentials = new TokenCredentials(); + + $tokenCredentials->setIdentifier($token); + $tokenCredentials->setSecret($secret); + + $user = $this->server->getUserDetails($tokenCredentials); + + $instance = (new User)->setRaw($user->extra) + ->setToken($tokenCredentials->getIdentifier(), $tokenCredentials->getSecret()); + + return $instance->map([ + 'id' => $user->uid, 'nickname' => $user->nickname, + 'name' => $user->name, 'email' => $user->email, 'avatar' => $user->imageUrl, + ]); + } + /** * Get the token credentials for the request. * diff --git a/vendor/laravel/socialite/src/Two/AbstractProvider.php b/vendor/laravel/socialite/src/Two/AbstractProvider.php index e93ba747e..1eecb6936 100644 --- a/vendor/laravel/socialite/src/Two/AbstractProvider.php +++ b/vendor/laravel/socialite/src/Two/AbstractProvider.php @@ -140,7 +140,7 @@ abstract class AbstractProvider implements ProviderContract $state = null; if ($this->usesState()) { - $this->request->session()->set('state', $state = Str::random(40)); + $this->request->session()->set('state', $state = $this->getState()); } return new RedirectResponse($this->getAuthUrl($state)); @@ -168,7 +168,7 @@ abstract class AbstractProvider implements ProviderContract { $fields = [ 'client_id' => $this->clientId, 'redirect_uri' => $this->redirectUrl, - 'scope' => $this->formatScopes($this->scopes, $this->scopeSeparator), + 'scope' => $this->formatScopes($this->getScopes(), $this->scopeSeparator), 'response_type' => 'code', ]; @@ -234,10 +234,8 @@ abstract class AbstractProvider implements ProviderContract if ($this->isStateless()) { return false; } - //dd($this->request->all()); - $state = $this->request->input('state'); - \Session::put('state', $state); - //$state = $this->request->session()->pull('state'); + + $state = $this->request->session()->pull('state'); return ! (strlen($state) > 0 && $this->request->input('state') === $state); } @@ -392,6 +390,16 @@ abstract class AbstractProvider implements ProviderContract return $this; } + /** + * Get the string used for session state. + * + * @return string + */ + protected function getState() + { + return Str::random(40); + } + /** * Set the custom parameters of the request. * diff --git a/vendor/laravel/socialite/src/Two/FacebookProvider.php b/vendor/laravel/socialite/src/Two/FacebookProvider.php index 0c19b05e0..94915a6ff 100644 --- a/vendor/laravel/socialite/src/Two/FacebookProvider.php +++ b/vendor/laravel/socialite/src/Two/FacebookProvider.php @@ -19,14 +19,14 @@ class FacebookProvider extends AbstractProvider implements ProviderInterface * * @var string */ - protected $version = 'v2.6'; + protected $version = 'v2.8'; /** * The user fields being requested. * * @var array */ - protected $fields = ['name', 'email', 'gender', 'verified']; + protected $fields = ['name', 'email', 'gender', 'verified', 'link']; /** * The scopes being requested. @@ -116,6 +116,7 @@ class FacebookProvider extends AbstractProvider implements ProviderInterface 'id' => $user['id'], 'nickname' => null, 'name' => isset($user['name']) ? $user['name'] : null, 'email' => isset($user['email']) ? $user['email'] : null, 'avatar' => $avatarUrl.'?type=normal', 'avatar_original' => $avatarUrl.'?width=1920', + 'profileUrl' => isset($user['link']) ? $user['link'] : null, ]); } @@ -170,5 +171,7 @@ class FacebookProvider extends AbstractProvider implements ProviderInterface public function reRequest() { $this->reRequest = true; + + return $this; } } diff --git a/vendor/laravel/socialite/src/Two/GoogleProvider.php b/vendor/laravel/socialite/src/Two/GoogleProvider.php index 373634906..d1185685d 100644 --- a/vendor/laravel/socialite/src/Two/GoogleProvider.php +++ b/vendor/laravel/socialite/src/Two/GoogleProvider.php @@ -79,6 +79,7 @@ class GoogleProvider extends AbstractProvider implements ProviderInterface return (new User)->setRaw($user)->map([ 'id' => $user['id'], 'nickname' => Arr::get($user, 'nickname'), 'name' => $user['displayName'], 'email' => $user['emails'][0]['value'], 'avatar' => Arr::get($user, 'image')['url'], + 'avatar_original' => preg_replace('/\?sz=([0-9]+)/', '', Arr::get($user, 'image')['url']), ]); } } diff --git a/vendor/laravel/socialite/src/Two/LinkedInProvider.php b/vendor/laravel/socialite/src/Two/LinkedInProvider.php index 20a3d18ab..526cc050b 100644 --- a/vendor/laravel/socialite/src/Two/LinkedInProvider.php +++ b/vendor/laravel/socialite/src/Two/LinkedInProvider.php @@ -12,7 +12,7 @@ class LinkedInProvider extends AbstractProvider implements ProviderInterface * @var array */ protected $scopes = ['r_basicprofile', 'r_emailaddress']; - + /** * The separating character for the requested scopes. * diff --git a/vendor/league/flysystem/build/osx_install_composer.sh b/vendor/league/flysystem/build/osx_install_composer.sh index 2e798dcc4..382a6a2b9 100644 --- a/vendor/league/flysystem/build/osx_install_composer.sh +++ b/vendor/league/flysystem/build/osx_install_composer.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" sudo php composer-setup.php --install-dir=/usr/local/bin/ --filename=composer -php -r "unlink('composer-setup.php');" +rm composer-setup.php diff --git a/vendor/league/flysystem/composer.json b/vendor/league/flysystem/composer.json index 62bce3c15..0ef45359b 100644 --- a/vendor/league/flysystem/composer.json +++ b/vendor/league/flysystem/composer.json @@ -14,7 +14,7 @@ } ], "require": { - "php": ">=5.4.0" + "php": ">=5.5.9" }, "require-dev": { "ext-fileinfo": "*", diff --git a/vendor/league/flysystem/src/Adapter/AbstractFtpAdapter.php b/vendor/league/flysystem/src/Adapter/AbstractFtpAdapter.php index 312cd9c8e..290d627b4 100644 --- a/vendor/league/flysystem/src/Adapter/AbstractFtpAdapter.php +++ b/vendor/league/flysystem/src/Adapter/AbstractFtpAdapter.php @@ -6,6 +6,7 @@ use DateTime; use League\Flysystem\AdapterInterface; use League\Flysystem\Config; use League\Flysystem\NotSupportedException; +use League\Flysystem\SafeStorage; use RuntimeException; abstract class AbstractFtpAdapter extends AbstractAdapter @@ -25,16 +26,6 @@ abstract class AbstractFtpAdapter extends AbstractAdapter */ protected $port = 21; - /** - * @var string|null - */ - protected $username; - - /** - * @var string|null - */ - protected $password; - /** * @var bool */ @@ -85,6 +76,11 @@ abstract class AbstractFtpAdapter extends AbstractAdapter */ protected $alternativeRecursion = false; + /** + * @var SafeStorage + */ + protected $safeStorage; + /** * Constructor. * @@ -92,6 +88,7 @@ abstract class AbstractFtpAdapter extends AbstractAdapter */ public function __construct(array $config) { + $this->safeStorage = new SafeStorage(); $this->setConfig($config); } @@ -226,7 +223,7 @@ abstract class AbstractFtpAdapter extends AbstractAdapter */ public function getUsername() { - return empty($this->username) ? 'anonymous' : $this->username; + return $this->safeStorage->retrieveSafely('username') ?: 'anonymous'; } /** @@ -238,7 +235,7 @@ abstract class AbstractFtpAdapter extends AbstractAdapter */ public function setUsername($username) { - $this->username = $username; + $this->safeStorage->storeSafely('username', $username); return $this; } @@ -250,7 +247,7 @@ abstract class AbstractFtpAdapter extends AbstractAdapter */ public function getPassword() { - return $this->password; + return $this->safeStorage->retrieveSafely('password'); } /** @@ -262,7 +259,7 @@ abstract class AbstractFtpAdapter extends AbstractAdapter */ public function setPassword($password) { - $this->password = $password; + $this->safeStorage->storeSafely('password', $password); return $this; } diff --git a/vendor/league/flysystem/src/Adapter/Local.php b/vendor/league/flysystem/src/Adapter/Local.php index fc6081e06..715677625 100644 --- a/vendor/league/flysystem/src/Adapter/Local.php +++ b/vendor/league/flysystem/src/Adapter/Local.php @@ -73,13 +73,13 @@ class Local extends AbstractAdapter { $root = is_link($root) ? realpath($root) : $root; $this->permissionMap = array_replace_recursive(static::$permissions, $permissions); - $realRoot = $this->ensureDirectory($root); + $this->ensureDirectory($root); - if ( ! is_dir($realRoot) || ! is_readable($realRoot)) { + if ( ! is_dir($root) || ! is_readable($root)) { throw new LogicException('The root path ' . $root . ' is not readable.'); } - $this->setPathPrefix($realRoot); + $this->setPathPrefix($root); $this->writeFlags = $writeFlags; $this->linkHandling = $linkHandling; } @@ -89,7 +89,7 @@ class Local extends AbstractAdapter * * @param string $root root directory path * - * @return string real path to root + * @return void * * @throws Exception in case the root directory can not be created */ @@ -104,8 +104,6 @@ class Local extends AbstractAdapter throw new Exception(sprintf('Impossible to create the root directory "%s".', $root)); } } - - return realpath($root); } /** @@ -258,7 +256,7 @@ class Local extends AbstractAdapter public function listContents($directory = '', $recursive = false) { $result = []; - $location = $this->applyPathPrefix($directory) . $this->pathSeparator; + $location = $this->applyPathPrefix($directory); if ( ! is_dir($location)) { return []; diff --git a/vendor/league/flysystem/src/Config.php b/vendor/league/flysystem/src/Config.php index e50794a87..60f64d9b4 100644 --- a/vendor/league/flysystem/src/Config.php +++ b/vendor/league/flysystem/src/Config.php @@ -50,7 +50,13 @@ class Config */ public function has($key) { - return array_key_exists($key, $this->settings); + if (array_key_exists($key, $this->settings)) { + return true; + } + + return $this->fallback instanceof Config + ? $this->fallback->has($key) + : false; } /** diff --git a/vendor/league/flysystem/src/SafeStorage.php b/vendor/league/flysystem/src/SafeStorage.php new file mode 100644 index 000000000..5397f580e --- /dev/null +++ b/vendor/league/flysystem/src/SafeStorage.php @@ -0,0 +1,39 @@ +hash = spl_object_hash($this); + static::$safeStorage[$this->hash] = []; + } + + public function storeSafely($key, $value) + { + static::$safeStorage[$this->hash][$key] = $value; + } + + public function retrieveSafely($key) + { + if (array_key_exists($key, static::$safeStorage[$this->hash])) { + return static::$safeStorage[$this->hash][$key]; + } + } + + public function __destruct() + { + unset(static::$safeStorage[$this->hash]); + } +} diff --git a/vendor/league/flysystem/src/Util.php b/vendor/league/flysystem/src/Util.php index 977ffa9f9..afe7f2440 100644 --- a/vendor/league/flysystem/src/Util.php +++ b/vendor/league/flysystem/src/Util.php @@ -85,7 +85,7 @@ class Util $normalized = preg_replace('#\p{C}+|^\./#u', '', $path); $normalized = static::normalizeRelativePath($normalized); - if (preg_match('#/\.{2}|^\.{2}/|^\.{2}$#', $normalized)) { + if (preg_match('#(^|/)\.{2}(/|$)#', $normalized)) { throw new LogicException( 'Path is outside of the defined root, path: [' . $path . '], resolved: [' . $normalized . ']' ); @@ -110,7 +110,7 @@ class Util $path = preg_replace('#/\.(?=/)|^\./|(/|^)\./?$#', '', $path); // Regex for resolving relative paths - $regex = '#/*[^/\.]+/\.\.#Uu'; + $regex = '#/*[^/\.]+/\.\.(?=/|$)#Uu'; while (preg_match($regex, $path)) { $path = preg_replace($regex, '', $path); diff --git a/vendor/maatwebsite/excel/.github/CONTRIBUTING.md b/vendor/maatwebsite/excel/.github/CONTRIBUTING.md deleted file mode 100644 index 399077a77..000000000 --- a/vendor/maatwebsite/excel/.github/CONTRIBUTING.md +++ /dev/null @@ -1,22 +0,0 @@ -# Contribution Guide - -### Bug fixes - -**ALL** bug fixes should be made to appropriate branch (e.g. `1.1` for 1.1.* bug fixes). Bug fixes should never be sent to the `master` branch. - -### Pull Requests - -Every pull request should pass the unit tests. If you include new functionality, make sure you include a test. Pull requests will be evaluated and possibly added to the next stable release. - -### Feature Requests - -If you have an idea for a new feature you would like to see added to Laravel Excel, you may create an issue on GitHub with `[PROPOSAL]` in the title. The feature request will then be reviewed by @Maatwebsite. - -### Coding Guidelines - -Laravel, and therefore Maatwebsite's Laravel Excel follows the [PSR-0](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md) and [PSR-1](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md) coding standards. In addition to these standards, below is a list of other coding standards that should be followed: - -- Namespace declarations should be on the same line as ` [ - // ... - Collective\Bus\BusServiceProvider::class, - // ... - ], -``` - After updating composer, add the ServiceProvider to the providers array in `config/app.php` ```php diff --git a/vendor/maatwebsite/excel/docs/blade.md b/vendor/maatwebsite/excel/docs/blade.md deleted file mode 100644 index 9de2a139b..000000000 --- a/vendor/maatwebsite/excel/docs/blade.md +++ /dev/null @@ -1,3 +0,0 @@ -@include:Loading a view|load-view -@include:Passing variables|vars -@include:Styling sheets|styling \ No newline at end of file diff --git a/vendor/maatwebsite/excel/docs/blade/load-view.md b/vendor/maatwebsite/excel/docs/blade/load-view.md deleted file mode 100644 index 697e8747b..000000000 --- a/vendor/maatwebsite/excel/docs/blade/load-view.md +++ /dev/null @@ -1,45 +0,0 @@ -# @Blade to Excel - -We can utilise the magic of Laravel's Blade engine to power our Excel export. Sharing a view, loading a view per sheet, creating a html table inside a view, basic CSS styling, ... - -# Loading a view for a single sheet - -We can load a view for every sheet we create with `->loadView()`. - - Excel::create('New file', function($excel) { - - $excel->sheet('New sheet', function($sheet) { - - $sheet->loadView('folder.view'); - - }); - - }); - -# Using different views for different sheets - - Excel::create('New file', function($excel) { - - $excel->sheet('First sheet', function($sheet) { - - $sheet->loadView('view_first'); - }); - - $excel->sheet('Second sheet', function($sheet) { - - $sheet->loadView('view_second'); - }); - - }); - -# Sharing a view for all sheets - -We can share a view for all sheets with `shareView()`. - - Excel::shareView('folder.view')->create(); - -# Unsetting a view for a sheet - -When we are using a shared view, but we don't want to use a view for the current sheet, we can use `->unsetView()`. - - $sheet->unsetView(); \ No newline at end of file diff --git a/vendor/maatwebsite/excel/docs/blade/styling.md b/vendor/maatwebsite/excel/docs/blade/styling.md deleted file mode 100644 index b257d3924..000000000 --- a/vendor/maatwebsite/excel/docs/blade/styling.md +++ /dev/null @@ -1,133 +0,0 @@ -# Styling sheets - -### General styling - -If you want to change the general styling of your sheet (not cell or range specific), you can use the `->setStyle()` method or any of the other setters which can be found inside the export documentation. - - // Font family - $sheet->setFontFamily('Comic Sans MS'); - - // Set font with ->setStyle()` - $sheet->setStyle(array( - 'font' => array( - 'name' => 'Calibri', - 'size' => 12, - 'bold' => true - ) - )); - -### Styling with PHPExcel methods - -It's possible to style the sheets and specific cells with help of PHPExcel methods. This package includes a lot of shortcuts (see export documentation), but also always the use of the native methods. - - // Set background color for a specific cell - $sheet->getStyle('A1')->applyFromArray(array( - 'fill' => array( - 'type' => PHPExcel_Style_Fill::FILL_SOLID, - 'color' => array('rgb' => 'FF0000') - ) - )); - -### Using HTML tags - -Most of the HTML tags are supported. - - - - -

    Big title

    - - - Bold cell - Bold cell - - - Italic cell - - - - - - -> Inside the `view.php` config you can change how these tags will be interpreted by Excel by default. - -### Using HTML attributes - -Some of the basic styling can be done with HTML attributes. - - - - - Big title - - - Bold cell - - - Bold cell - - - Italic cell - - - Cell with width of 100 - - - Cell with height of 100 - - - -### Styling through inline-styles - -It's possible to use inline styles inside your view files. Most of the general styles are supported. - - - - - Cell - - - -> Inside the reference guide you can find a list of supported styles. - -### Styling through external CSS file - -Styling can be done through an external CSS file. - -External css file: - - #cell { - background-color: #000000; - color: #ffffff; - } - - .cell { - background-color: #000000; - color: #ffffff; - } - - tr td { - background-color: #ffffff; - } - - tr > td { - border-bottom: 1px solid #000000; - } - -Table: - - - - {{ HTML::style('css/table.css') }} - - - Cell - - - Cell - - - -> Inside the reference guide you can find a list of supported styles. - -> It's advised to include `` into the view to fix problems with UTF-8 encoding. \ No newline at end of file diff --git a/vendor/maatwebsite/excel/docs/blade/vars.md b/vendor/maatwebsite/excel/docs/blade/vars.md deleted file mode 100644 index ed5400121..000000000 --- a/vendor/maatwebsite/excel/docs/blade/vars.md +++ /dev/null @@ -1,19 +0,0 @@ -# Passing variables to the view - -### As parameter - -We can pass variables to the view by using the second parameter inside the `loadView()` method. - - $sheet->loadView('view', array('key' => 'value')); - -### With with() - -Alternatively you can use the `with()` method which works the same as with Laravel views. - - // Using normal with() - $sheet->loadView('view') - ->with('key', 'value'); - - // using dynamic with() - $sheet->loadView('view') - ->withKey('value'); \ No newline at end of file diff --git a/vendor/maatwebsite/excel/docs/borders.md b/vendor/maatwebsite/excel/docs/borders.md deleted file mode 100644 index 6207ac117..000000000 --- a/vendor/maatwebsite/excel/docs/borders.md +++ /dev/null @@ -1,14 +0,0 @@ -PHPExcel_Style_Border::BORDER_NONE = 'none' -PHPExcel_Style_Border::BORDER_DASHDOT = 'dashDot' -PHPExcel_Style_Border::BORDER_DASHDOTDOT = 'dashDotDot' -PHPExcel_Style_Border::BORDER_DASHED = 'dashed' -PHPExcel_Style_Border::BORDER_DOTTED = 'dotted' -PHPExcel_Style_Border::BORDER_DOUBLE = 'double' -PHPExcel_Style_Border::BORDER_HAIR = 'hair' -PHPExcel_Style_Border::BORDER_MEDIUM = 'medium' -PHPExcel_Style_Border::BORDER_MEDIUMDASHDOT = 'mediumDashDot' -PHPExcel_Style_Border::BORDER_MEDIUMDASHDOTDOT = 'mediumDashDotDot' -PHPExcel_Style_Border::BORDER_MEDIUMDASHED = 'mediumDashed' -PHPExcel_Style_Border::BORDER_SLANTDASHDOT = 'slantDashDot' -PHPExcel_Style_Border::BORDER_THICK = 'thick' -PHPExcel_Style_Border::BORDER_THIN = 'thin' \ No newline at end of file diff --git a/vendor/maatwebsite/excel/docs/changelog.md b/vendor/maatwebsite/excel/docs/changelog.md deleted file mode 100644 index 0994c3950..000000000 --- a/vendor/maatwebsite/excel/docs/changelog.md +++ /dev/null @@ -1,2 +0,0 @@ -@include:Version 1|version-1 -@include:Version 2|version-2 diff --git a/vendor/maatwebsite/excel/docs/changelog/version-1.md b/vendor/maatwebsite/excel/docs/changelog/version-1.md deleted file mode 100644 index b80c89f6c..000000000 --- a/vendor/maatwebsite/excel/docs/changelog/version-1.md +++ /dev/null @@ -1,209 +0,0 @@ -# Version 1 - -### 1.3.5 -- PHPExcel 1.8.1 compatibility -- Clean-up ServiceProvider -- Fix short array syntax for PHP5.3 - -### 1.3.4 -- Fix usage of sheet callback when modifying an existing file -- Modifying existing files improvements (support style overriding) -- Add text-indent support to HtmlReader -- Add simple sheet password protection -- Add support for exporting multiple pdf pages -- Add inline cell formatting to blade - -### 1.3.3 -- Fix issue with different start row in chunk filter - -### 1.3.2 -- Custom value binders -- Html reader update - -### 1.3.1 -- Fix short array syntax - -### 1.3.0 -- Additional headers with export() -- Float, integer, string, timestamps problems -- Cell content ending by zeros -- Images in html -- Font family bug -- Setting row number of row with headings - -### 1.2.3 -- PDF writer -- Include charts config -- Chunk filter with selected sheet -- Compatibility fix with new PHPExcel release -- setDateColumns fix -- Optional dependencies to require-dev -- Several bugfixes - -### 1.2.2 -- Chunk filter fixes -- Isset() CellCollection fixes -- PHP 5.3 support -- Missing border styles -- Add CSV settings (delimiter, enclosure, lineEnding) to ExcelFile objects - -### 1.2.1 -- Fix with() method parameters - -### 1.2.0 -- Filters -- Chunk filter (with chunked importer) -- ExcelFile (method) injections -- NewExcelFile (method) injections -- Edit existing worksheets -- Converting existing worksheet -- Laravel 4.* + 5.0 support - -### 1.1.9 -- PHP 5.3 fixes - -### 1.1.8 -- PHP 5.3 support -- fromArray bugfix - -### 1.1.7 -- Fix heading generation for export with `->fromArray()` -- Bugfix for non-Unix kernels -- Enhanced CSS parser (thanks to `tijsverkoyen/CssToInlineStyles`) -- Support for nested CSS styles -- Support for multiple css attributes per class -- Support for internal and external CSS files -- Support for inline style blocks (`