The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# automatically generated file, don't edit
# Copyright 2024 David Cantrell, derived from data from 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
#
#
# 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.
use strict;
use utf8;
our $VERSION = 1.20250323211828;
my $formatters = [
{
'format' => '$1 $2',
'leading_digits' => '40',
'pattern' => '(\\d{3})(\\d{4})'
},
{
'format' => '$1 $2 $3',
'leading_digits' => '[49]',
'pattern' => '(\\d{3})(\\d{3})(\\d{3})'
}
];
my $validators = {
'fixed_line' => '443\\d{6}',
'geographic' => '443\\d{6}',
'mobile' => '
9(?:
5\\d|
6[569]|
77
)\\d{6}
',
'pager' => '',
'personal_number' => '',
'specialrate' => '',
'toll_free' => '',
'voip' => '40\\d{5}'
};
my %areanames = ();
$areanames{en} = {"24544322", "St\.\ Luzia",
"24544331", "Mansôa",
"24544370", "Buba",
"24544354", "Pitche",
"24544334", "Mansaba",
"24544342", "Bambadinca",
"24544351", "Gabu",
"24544321", "Bissau",
"24544332", "Bissora",
"24544393", "S\.\ Domingos",
"24544341", "Bafatá",
"24544352", "Sonaco",
"24544396", "Ingoré",
"24544391", "Canchungo",
"24544320", "Bissau",
"24544335", "Farim",
"24544394", "Bula",
"24544353", "Pirada",
"24544392", "Cacheu",
"24544397", "Bigene",
"24544325", "Brá",};
$areanames{pt} = {"245332", "Bigene\/Bissorã",
"245342", "Bambadinca",
"245351", "Gabú",
"245393", "S\.\ Domingos",
"245396", "Ingoré",
"245352", "Sonaco",
"245325", "Brá",
"245341", "Bafatá",
"245331", "Mansôa",
"245392", "Cacheu",
"245370", "Buba",
"245353", "Pirada",
"245391", "Canchungo",
"245320", "Bissau",
"245354", "Pitche",
"245334", "Mansaba",
"245322", "Sta\.\ Luzia",
"245335", "Farim",
"245394", "Bula",
"245321", "Bissau",};
my $timezones = {
'' => [
'Atlantic/Reykjavik'
]
};
sub new {
my $class = shift;
my $number = shift;
$number =~ s/(^\+245|\D)//g;
my $self = bless({ country_code => '245', number => $number, formatters => $formatters, validators => $validators, timezones => $timezones, areanames => \%areanames}, $class);
return $self->is_valid() ? $self : undef;
}
1;