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::LK;
use base qw(Number::Phone::StubCountry);
  
use strict;
use warnings;
our $VERSION = 1.20121122000027;

my $formatters = [{'pattern' => '(\\d{2})(\\d{1})(\\d{6})','leading_digits' => '[1-689]'},{'pattern' => '(\\d{2})(\\d{3})(\\d{4})','leading_digits' => '7'}];
my $validators = {'personal_number' => '','toll_free' => '','pager' => '','mobile' => '7[125-8]\\d{7}','voip' => '','fixed_line' => '(?:[189]1|2[13-7]|3[1-8]|4[157]|5[12457]|6[35-7])[2-57]\\d{6}','special_rate' => '()|()|()'};sub areaname { my $self = shift; my $number = $self->{number}; my %map = (9411 => "Colombo",9421 => "Jaffna",9423 => "Mannar",9424 => "Vavuniya",9425 => "Anuradhapura",9426 => "Trincomalee",9427 => "Polonnaruwa",9431 => "Negombo\,\ Gampaha",9432 => "Chilaw\,\ Puttalam",9433 => "Gampaha",9434 => "Kalutara",9435 => "Kegalle",9436 => "Avissawella\,\ Colombo",9437 => "Kurunegala",9438 => "Panadura\,\ Kalutara",9441 => "Matara",9445 => "Ratnapura",9447 => "Hambantota",9451 => "Hatton\,\ Nuwara\ Eliya",9452 => "Nuwara\ Eliya",9454 => "Nawalapitiya\,\ Kandy",9455 => "Badulla",9457 => "Bandarawela\,\ Badulla",9463 => "Ampara",9465 => "Batticaloa",9466 => "Matale",9467 => "Kalmunai\,\ Ampara",9481 => "Kandy",9491 => "Galle",);
      foreach my $prefix (map { substr($number, 0, $_) } reverse(1..length($number))) {
        return $map{"94$prefix"} if exists($map{"94$prefix"});
      }
      return undef;
    }
sub new {
  my $class = shift;
  my $number = shift;
  $number =~ s/(^\+94|\D)//g;
  my $self = bless({ number => $number, formatters => $formatters, validators => $validators }, $class);
  return $self->is_valid() ? $self : undef;
}

1;