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::SC; |
20
|
2
|
|
|
2
|
|
1191
|
use base qw(Number::Phone::StubCountry); |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
265
|
|
21
|
|
|
|
|
|
|
|
22
|
2
|
|
|
2
|
|
17
|
use strict; |
|
2
|
|
|
|
|
9
|
|
|
2
|
|
|
|
|
49
|
|
23
|
2
|
|
|
2
|
|
15
|
use warnings; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
52
|
|
24
|
2
|
|
|
2
|
|
14
|
use utf8; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
15
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230903131448; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = [ |
28
|
|
|
|
|
|
|
{ |
29
|
|
|
|
|
|
|
'format' => '$1 $2 $3', |
30
|
|
|
|
|
|
|
'leading_digits' => ' |
31
|
|
|
|
|
|
|
[246]| |
32
|
|
|
|
|
|
|
9[57] |
33
|
|
|
|
|
|
|
', |
34
|
|
|
|
|
|
|
'pattern' => '(\\d)(\\d{3})(\\d{3})' |
35
|
|
|
|
|
|
|
} |
36
|
|
|
|
|
|
|
]; |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
my $validators = { |
39
|
|
|
|
|
|
|
'fixed_line' => '4[2-46]\\d{5}', |
40
|
|
|
|
|
|
|
'geographic' => '4[2-46]\\d{5}', |
41
|
|
|
|
|
|
|
'mobile' => '2[125-8]\\d{5}', |
42
|
|
|
|
|
|
|
'pager' => '', |
43
|
|
|
|
|
|
|
'personal_number' => '', |
44
|
|
|
|
|
|
|
'specialrate' => '', |
45
|
|
|
|
|
|
|
'toll_free' => '800[08]\\d{3}', |
46
|
|
|
|
|
|
|
'voip' => ' |
47
|
|
|
|
|
|
|
971\\d{4}| |
48
|
|
|
|
|
|
|
(?: |
49
|
|
|
|
|
|
|
64| |
50
|
|
|
|
|
|
|
95 |
51
|
|
|
|
|
|
|
)\\d{5} |
52
|
|
|
|
|
|
|
' |
53
|
|
|
|
|
|
|
}; |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
sub new { |
56
|
13
|
|
|
13
|
1
|
29
|
my $class = shift; |
57
|
13
|
|
|
|
|
22
|
my $number = shift; |
58
|
13
|
|
|
|
|
81
|
$number =~ s/(^\+248|\D)//g; |
59
|
13
|
|
|
|
|
67
|
my $self = bless({ country_code => '248', number => $number, formatters => $formatters, validators => $validators, }, $class); |
60
|
13
|
100
|
|
|
|
73
|
return $self->is_valid() ? $self : undef; |
61
|
|
|
|
|
|
|
} |
62
|
|
|
|
|
|
|
1; |