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::GN;
use base qw(Number::Phone::StubCountry);

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

my $formatters = [
                {
                  'pattern' => '(\\d{2})(\\d{2})(\\d{2})(\\d{2})',
                  'leading_digits' => '3',
                  'format' => '$1 $2 $3 $4'
                },
                {
                  'pattern' => '(\\d{3})(\\d{2})(\\d{2})(\\d{2})',
                  'leading_digits' => '[67]',
                  'format' => '$1 $2 $3 $4'
                }
              ];

my $validators = {
                'voip' => '722\\d{6}',
                'pager' => '',
                'geographic' => '
          30(?:
            24|
            3[12]|
            4[1-35-7]|
            5[13]|
            6[189]|
            [78]1|
            9[1478]
          )\\d{4}
        ',
                'specialrate' => '',
                'fixed_line' => '
          30(?:
            24|
            3[12]|
            4[1-35-7]|
            5[13]|
            6[189]|
            [78]1|
            9[1478]
          )\\d{4}
        ',
                'toll_free' => '',
                'mobile' => '6[02356]\\d{7}',
                'personal_number' => ''
              };
my %areanames = (
  2243024 => "Fria",
  2243031 => "Boké",
  2243032 => "Kamsar",
  2243041 => "Conakry",
  2243042 => "Conakry",
  2243043 => "Conakry",
  2243045 => "Conakry",
  2243046 => "Boussoura",
  2243047 => "Conakry",
  2243051 => "Labé",
  2243053 => "Pita",
  2243061 => "Kindia",
  22430613 => "Télimélé",
  2243068 => "Mamou",
  2243069 => "Dalaba",
  2243071 => "Kankan",
  2243081 => "Faranah",
  2243091 => "N\'Zérékoré",
  2243094 => "Macenta",
  2243097 => "Guéckédou",
  2243098 => "Kissidougou",
);
    sub new {
      my $class = shift;
      my $number = shift;
      $number =~ s/(^\+224|\D)//g;
      my $self = bless({ number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
  return $self->is_valid() ? $self : undef;
}
1;