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::MW; |
20
|
2
|
|
|
2
|
|
1287
|
use base qw(Number::Phone::StubCountry); |
|
2
|
|
|
|
|
10
|
|
|
2
|
|
|
|
|
281
|
|
21
|
|
|
|
|
|
|
|
22
|
2
|
|
|
2
|
|
16
|
use strict; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
49
|
|
23
|
2
|
|
|
2
|
|
11
|
use warnings; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
54
|
|
24
|
2
|
|
|
2
|
|
13
|
use utf8; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
23
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230614174404; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = [ |
28
|
|
|
|
|
|
|
{ |
29
|
|
|
|
|
|
|
'format' => '$1 $2 $3', |
30
|
|
|
|
|
|
|
'leading_digits' => '1[2-9]', |
31
|
|
|
|
|
|
|
'national_rule' => '0$1', |
32
|
|
|
|
|
|
|
'pattern' => '(\\d)(\\d{3})(\\d{3})' |
33
|
|
|
|
|
|
|
}, |
34
|
|
|
|
|
|
|
{ |
35
|
|
|
|
|
|
|
'format' => '$1 $2 $3', |
36
|
|
|
|
|
|
|
'leading_digits' => '2', |
37
|
|
|
|
|
|
|
'national_rule' => '0$1', |
38
|
|
|
|
|
|
|
'pattern' => '(\\d{3})(\\d{3})(\\d{3})' |
39
|
|
|
|
|
|
|
}, |
40
|
|
|
|
|
|
|
{ |
41
|
|
|
|
|
|
|
'format' => '$1 $2 $3 $4', |
42
|
|
|
|
|
|
|
'leading_digits' => '[137-9]', |
43
|
|
|
|
|
|
|
'national_rule' => '0$1', |
44
|
|
|
|
|
|
|
'pattern' => '(\\d{3})(\\d{2})(\\d{2})(\\d{2})' |
45
|
|
|
|
|
|
|
} |
46
|
|
|
|
|
|
|
]; |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
my $validators = { |
49
|
|
|
|
|
|
|
'fixed_line' => ' |
50
|
|
|
|
|
|
|
(?: |
51
|
|
|
|
|
|
|
1[2-9]| |
52
|
|
|
|
|
|
|
2[12]\\d\\d |
53
|
|
|
|
|
|
|
)\\d{5} |
54
|
|
|
|
|
|
|
', |
55
|
|
|
|
|
|
|
'geographic' => ' |
56
|
|
|
|
|
|
|
(?: |
57
|
|
|
|
|
|
|
1[2-9]| |
58
|
|
|
|
|
|
|
2[12]\\d\\d |
59
|
|
|
|
|
|
|
)\\d{5} |
60
|
|
|
|
|
|
|
', |
61
|
|
|
|
|
|
|
'mobile' => ' |
62
|
|
|
|
|
|
|
111\\d{6}| |
63
|
|
|
|
|
|
|
(?: |
64
|
|
|
|
|
|
|
31| |
65
|
|
|
|
|
|
|
77| |
66
|
|
|
|
|
|
|
[89][89] |
67
|
|
|
|
|
|
|
)\\d{7} |
68
|
|
|
|
|
|
|
', |
69
|
|
|
|
|
|
|
'pager' => '', |
70
|
|
|
|
|
|
|
'personal_number' => '', |
71
|
|
|
|
|
|
|
'specialrate' => '', |
72
|
|
|
|
|
|
|
'toll_free' => '', |
73
|
|
|
|
|
|
|
'voip' => '' |
74
|
|
|
|
|
|
|
}; |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
sub new { |
77
|
7
|
|
|
7
|
1
|
29
|
my $class = shift; |
78
|
7
|
|
|
|
|
20
|
my $number = shift; |
79
|
7
|
|
|
|
|
44
|
$number =~ s/(^\+265|\D)//g; |
80
|
7
|
|
|
|
|
35
|
my $self = bless({ country_code => '265', number => $number, formatters => $formatters, validators => $validators, }, $class); |
81
|
7
|
100
|
|
|
|
45
|
return $self if ($self->is_valid()); |
82
|
1
|
|
|
|
|
3
|
$number =~ s/^(?:0)//; |
83
|
1
|
|
|
|
|
10
|
$self = bless({ country_code => '265', number => $number, formatters => $formatters, validators => $validators, }, $class); |
84
|
1
|
50
|
|
|
|
13
|
return $self->is_valid() ? $self : undef; |
85
|
|
|
|
|
|
|
} |
86
|
|
|
|
|
|
|
1; |