line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# automatically generated file, don't edit |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
# Copyright 2023 David Cantrell, derived from data from libphonenumber |
6
|
|
|
|
|
|
|
# http://code.google.com/p/libphonenumber/ |
7
|
|
|
|
|
|
|
# |
8
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
9
|
|
|
|
|
|
|
# you may not use this file except in compliance with the License. |
10
|
|
|
|
|
|
|
# You may obtain a copy of the License at |
11
|
|
|
|
|
|
|
# |
12
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0 |
13
|
|
|
|
|
|
|
# |
14
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software |
15
|
|
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, |
16
|
|
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
17
|
|
|
|
|
|
|
# See the License for the specific language governing permissions and |
18
|
|
|
|
|
|
|
# limitations under the License. |
19
|
|
|
|
|
|
|
package Number::Phone::StubCountry::AD; |
20
|
2
|
|
|
2
|
|
1124
|
use base qw(Number::Phone::StubCountry); |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
240
|
|
21
|
|
|
|
|
|
|
|
22
|
2
|
|
|
2
|
|
15
|
use strict; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
70
|
|
23
|
2
|
|
|
2
|
|
17
|
use warnings; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
65
|
|
24
|
2
|
|
|
2
|
|
14
|
use utf8; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
12
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230614174400; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = [ |
28
|
|
|
|
|
|
|
{ |
29
|
|
|
|
|
|
|
'format' => '$1 $2', |
30
|
|
|
|
|
|
|
'leading_digits' => '[135-9]', |
31
|
|
|
|
|
|
|
'pattern' => '(\\d{3})(\\d{3})' |
32
|
|
|
|
|
|
|
}, |
33
|
|
|
|
|
|
|
{ |
34
|
|
|
|
|
|
|
'format' => '$1 $2', |
35
|
|
|
|
|
|
|
'leading_digits' => '1', |
36
|
|
|
|
|
|
|
'pattern' => '(\\d{4})(\\d{4})' |
37
|
|
|
|
|
|
|
}, |
38
|
|
|
|
|
|
|
{ |
39
|
|
|
|
|
|
|
'format' => '$1 $2 $3', |
40
|
|
|
|
|
|
|
'leading_digits' => '6', |
41
|
|
|
|
|
|
|
'pattern' => '(\\d{3})(\\d{3})(\\d{3})' |
42
|
|
|
|
|
|
|
} |
43
|
|
|
|
|
|
|
]; |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
my $validators = { |
46
|
|
|
|
|
|
|
'fixed_line' => '[78]\\d{5}', |
47
|
|
|
|
|
|
|
'geographic' => '[78]\\d{5}', |
48
|
|
|
|
|
|
|
'mobile' => ' |
49
|
|
|
|
|
|
|
690\\d{6}| |
50
|
|
|
|
|
|
|
[356]\\d{5} |
51
|
|
|
|
|
|
|
', |
52
|
|
|
|
|
|
|
'pager' => '', |
53
|
|
|
|
|
|
|
'personal_number' => '', |
54
|
|
|
|
|
|
|
'specialrate' => '([19]\\d{5})', |
55
|
|
|
|
|
|
|
'toll_free' => '180[02]\\d{4}', |
56
|
|
|
|
|
|
|
'voip' => '' |
57
|
|
|
|
|
|
|
}; |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
sub new { |
60
|
13
|
|
|
13
|
1
|
31
|
my $class = shift; |
61
|
13
|
|
|
|
|
25
|
my $number = shift; |
62
|
13
|
|
|
|
|
72
|
$number =~ s/(^\+376|\D)//g; |
63
|
13
|
|
|
|
|
59
|
my $self = bless({ country_code => '376', number => $number, formatters => $formatters, validators => $validators, }, $class); |
64
|
13
|
100
|
|
|
|
62
|
return $self->is_valid() ? $self : undef; |
65
|
|
|
|
|
|
|
} |
66
|
|
|
|
|
|
|
1; |