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::SL; |
20
|
2
|
|
|
2
|
|
1263
|
use base qw(Number::Phone::StubCountry); |
|
2
|
|
|
|
|
13
|
|
|
2
|
|
|
|
|
229
|
|
21
|
|
|
|
|
|
|
|
22
|
2
|
|
|
2
|
|
23
|
use strict; |
|
2
|
|
|
|
|
12
|
|
|
2
|
|
|
|
|
50
|
|
23
|
2
|
|
|
2
|
|
21
|
use warnings; |
|
2
|
|
|
|
|
9
|
|
|
2
|
|
|
|
|
58
|
|
24
|
2
|
|
|
2
|
|
12
|
use utf8; |
|
2
|
|
|
|
|
9
|
|
|
2
|
|
|
|
|
34
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230903131448; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = [ |
28
|
|
|
|
|
|
|
{ |
29
|
|
|
|
|
|
|
'format' => '$1 $2', |
30
|
|
|
|
|
|
|
'leading_digits' => '[236-9]', |
31
|
|
|
|
|
|
|
'national_rule' => '(0$1)', |
32
|
|
|
|
|
|
|
'pattern' => '(\\d{2})(\\d{6})' |
33
|
|
|
|
|
|
|
} |
34
|
|
|
|
|
|
|
]; |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
my $validators = { |
37
|
|
|
|
|
|
|
'fixed_line' => '22[2-4][2-9]\\d{4}', |
38
|
|
|
|
|
|
|
'geographic' => '22[2-4][2-9]\\d{4}', |
39
|
|
|
|
|
|
|
'mobile' => ' |
40
|
|
|
|
|
|
|
(?: |
41
|
|
|
|
|
|
|
25| |
42
|
|
|
|
|
|
|
3[0-5]| |
43
|
|
|
|
|
|
|
66| |
44
|
|
|
|
|
|
|
7[2-9]| |
45
|
|
|
|
|
|
|
8[08]| |
46
|
|
|
|
|
|
|
9[09] |
47
|
|
|
|
|
|
|
)\\d{6} |
48
|
|
|
|
|
|
|
', |
49
|
|
|
|
|
|
|
'pager' => '', |
50
|
|
|
|
|
|
|
'personal_number' => '', |
51
|
|
|
|
|
|
|
'specialrate' => '', |
52
|
|
|
|
|
|
|
'toll_free' => '', |
53
|
|
|
|
|
|
|
'voip' => '' |
54
|
|
|
|
|
|
|
}; |
55
|
|
|
|
|
|
|
my %areanames = (); |
56
|
|
|
|
|
|
|
$areanames{en} = {"23222", "Freetown",}; |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
sub new { |
59
|
7
|
|
|
7
|
1
|
28
|
my $class = shift; |
60
|
7
|
|
|
|
|
32
|
my $number = shift; |
61
|
7
|
|
|
|
|
47
|
$number =~ s/(^\+232|\D)//g; |
62
|
7
|
|
|
|
|
46
|
my $self = bless({ country_code => '232', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class); |
63
|
7
|
100
|
|
|
|
40
|
return $self if ($self->is_valid()); |
64
|
1
|
|
|
|
|
3
|
$number =~ s/^(?:0)//; |
65
|
1
|
|
|
|
|
20
|
$self = bless({ country_code => '232', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class); |
66
|
1
|
50
|
|
|
|
8
|
return $self->is_valid() ? $self : undef; |
67
|
|
|
|
|
|
|
} |
68
|
|
|
|
|
|
|
1; |