The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# automatically generated file, don't edit



# Copyright 2011 David Cantrell, derived from data from libphonenumber
# http://code.google.com/p/libphonenumber/
#
# 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.
package Number::Phone::StubCountry::UG;
use base qw(Number::Phone::StubCountry);

use strict;
use warnings;
use utf8;
our $VERSION = 1.20170314173054;

my $formatters = [
                {
                  'pattern' => '(\\d{3})(\\d{6})',
                  'leading_digits' => '
            [7-9]|
            20(?:
              [013-8]|
              2[5-9]
            )|
            4(?:
              6[45]|
              [7-9]
            )
          '
                },
                {
                  'pattern' => '(\\d{2})(\\d{7})',
                  'leading_digits' => '
            3|
            4(?:
              [1-5]|
              6[0-36-9]
            )
          '
                },
                {
                  'pattern' => '(2024)(\\d{5})',
                  'leading_digits' => '2024'
                }
              ];

my $validators = {
                'fixed_line' => '
          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}
        ',
                'pager' => '',
                'voip' => '',
                'toll_free' => '800[123]\\d{5}',
                'geographic' => '
          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}
        ',
                'personal_number' => '',
                'mobile' => '
          7(?:
            (?:
              0[0-7]|
              [15789]\\d|
              30|
              4[0-4]
            )\\d|
            2(?:
              [03]\\d|
              60
            )
          )\\d{5}
        ',
                'specialrate' => '(90[123]\\d{6})'
              };
my %areanames = (
  25641 => "Kampala",
  25643 => "Jinja",
  25645 => "Mbale",
  25646 => "Mityana",
  256464 => "Mubende",
  256465 => "Masindi",
  256471 => "Gulu",
  256473 => "Lira",
  256476 => "Arua",
  256481 => "Masaka",
  256483 => "Fort\ Portal",
  256485 => "Mbarara",
  256486 => "Kabale\/Rukungiri\/Kisoro",
);
    sub new {
      my $class = shift;
      my $number = shift;
      $number =~ s/(^\+256|\D)//g;
      my $self = bless({ number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
  
      return $self if ($self->is_valid());
      $number =~ s/(^0)//g;
      $self = bless({ number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
    return $self->is_valid() ? $self : undef;
}
1;