From Code to Community: Sponsoring The Perl and Raku Conference 2025 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.20250323211831;
my $formatters = [
{
'format' => '$1 $2 $3',
'leading_digits' => '52[0-7]',
'national_rule' => '(0-$1)',
'pattern' => '(\\d)(\\d{3})(\\d{4})'
},
{
'format' => '$1 $2 $3',
'leading_digits' => '[7-9]',
'national_rule' => '0 $1',
'pattern' => '(\\d{3})(\\d{2})(\\d{3})'
},
{
'format' => '$1 $2',
'leading_digits' => '
37|
4(?:
[15]|
6[1-8]
)
',
'national_rule' => '(0-$1)',
'pattern' => '(\\d{2})(\\d{6})'
},
{
'format' => '$1 $2',
'leading_digits' => '[3-6]',
'national_rule' => '(0-$1)',
'pattern' => '(\\d{3})(\\d{5})'
}
];
my $validators = {
'fixed_line' => '
(?:
3[1478]|
4[124-6]|
52
)\\d{6}
',
'geographic' => '
(?:
3[1478]|
4[124-6]|
52
)\\d{6}
',
'mobile' => '6\\d{7}',
'pager' => '',
'personal_number' => '70[05]\\d{5}',
'specialrate' => '(808\\d{5})|(
9(?:
0[0239]|
10
)\\d{5}
)|(70[67]\\d{5})',
'toll_free' => '80[02]\\d{5}',
'voip' => '[89]01\\d{5}'
};
my %areanames = ();
$areanames{en} = {"370386", "Ignalina\/Visaginas",
"370451", "Pasvalys",
"370389", "Utena",
"370381", "Anykščiai",
"370528", "Trakai",
"370459", "Kupiškis",
"370443", "Mažeikiai",
"370342", "Vilkaviškis",
"370524", "Vilnius",
"370440", "Skuodas",
"370428", "Raseiniai",
"370458", "Rokiškis",
"370345", "Šakiai",
"370426", "Joniškis",
"370526", "Vilnius",
"370421", "Pakruojis",
"370521", "Vilnius",
"370387", "Švenčionys",
"370343", "Marijampolė",
"370340", "Ukmergė",
"370318", "Lazdijai",
"370460", "Palanga",
"37045", "Panevėžys",
"370427", "Kelmė",
"370319", "Birštonas\/Prienai",
"370527", "Vilnius",
"370445", "Kretinga",
"37041", "Šiauliai",
"370441", "Šilutė",
"370347", "Kėdainiai",
"370383", "Molėtai",
"370315", "Alytus",
"370380", "Šalčininkai",
"370450", "Biržai",
"37046", "Klaipėda",
"370446", "Tauragė",
"370449", "Šilalė",
"370520", "Vilnius",
"370444", "Telšiai",
"370523", "Vilnius",
"370448", "Plungė",
"370425", "Akmenė",
"370346", "Kaišiadorys",
"370349", "Jonava",
"370525", "Vilnius",
"37037", "Kaunas",
"370469", "Neringa",
"370447", "Jurbarkas",
"370382", "Širvintos",
"370310", "Varėna",
"370385", "Zarasai",
"370313", "Druskininkai",
"370522", "Vilnius",
"370422", "Radviliškis",};
my $timezones = {
'' => [
'Europe/Bucharest'
]
};
sub new {
my $class = shift;
my $number = shift;
$number =~ s/(^\+370|\D)//g;
my $self = bless({ country_code => '370', number => $number, formatters => $formatters, validators => $validators, timezones => $timezones, areanames => \%areanames}, $class);
return $self if ($self->is_valid());
$number =~ s/^(?:[08])//;
$self = bless({ country_code => '370', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
return $self->is_valid() ? $self : undef;
}
1;