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::BI; |
20
|
2
|
|
|
2
|
|
1138
|
use base qw(Number::Phone::StubCountry); |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
213
|
|
21
|
|
|
|
|
|
|
|
22
|
2
|
|
|
2
|
|
17
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
40
|
|
23
|
2
|
|
|
2
|
|
11
|
use warnings; |
|
2
|
|
|
|
|
11
|
|
|
2
|
|
|
|
|
46
|
|
24
|
2
|
|
|
2
|
|
12
|
use utf8; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
11
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230903131442; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = [ |
28
|
|
|
|
|
|
|
{ |
29
|
|
|
|
|
|
|
'format' => '$1 $2 $3 $4', |
30
|
|
|
|
|
|
|
'leading_digits' => '[2367]', |
31
|
|
|
|
|
|
|
'pattern' => '(\\d{2})(\\d{2})(\\d{2})(\\d{2})' |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
]; |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
my $validators = { |
36
|
|
|
|
|
|
|
'fixed_line' => ' |
37
|
|
|
|
|
|
|
(?: |
38
|
|
|
|
|
|
|
22| |
39
|
|
|
|
|
|
|
31 |
40
|
|
|
|
|
|
|
)\\d{6} |
41
|
|
|
|
|
|
|
', |
42
|
|
|
|
|
|
|
'geographic' => ' |
43
|
|
|
|
|
|
|
(?: |
44
|
|
|
|
|
|
|
22| |
45
|
|
|
|
|
|
|
31 |
46
|
|
|
|
|
|
|
)\\d{6} |
47
|
|
|
|
|
|
|
', |
48
|
|
|
|
|
|
|
'mobile' => ' |
49
|
|
|
|
|
|
|
(?: |
50
|
|
|
|
|
|
|
29| |
51
|
|
|
|
|
|
|
[67][125-9] |
52
|
|
|
|
|
|
|
)\\d{6} |
53
|
|
|
|
|
|
|
', |
54
|
|
|
|
|
|
|
'pager' => '', |
55
|
|
|
|
|
|
|
'personal_number' => '', |
56
|
|
|
|
|
|
|
'specialrate' => '', |
57
|
|
|
|
|
|
|
'toll_free' => '', |
58
|
|
|
|
|
|
|
'voip' => '' |
59
|
|
|
|
|
|
|
}; |
60
|
|
|
|
|
|
|
my %areanames = (); |
61
|
|
|
|
|
|
|
$areanames{en} = {"2572230", "North\ zone", |
62
|
|
|
|
|
|
|
"2572220", "Bujumbura", |
63
|
|
|
|
|
|
|
"2572240", "Central\ east\ zone", |
64
|
|
|
|
|
|
|
"2572225", "Bujumbura", |
65
|
|
|
|
|
|
|
"2572226", "West\ zone", |
66
|
|
|
|
|
|
|
"2572223", "Bujumbura", |
67
|
|
|
|
|
|
|
"2572221", "Bujumbura", |
68
|
|
|
|
|
|
|
"2572224", "Bujumbura", |
69
|
|
|
|
|
|
|
"2572227", "Rural\ areas", |
70
|
|
|
|
|
|
|
"2572222", "Bujumbura", |
71
|
|
|
|
|
|
|
"2572250", "South\ zone",}; |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
sub new { |
74
|
7
|
|
|
7
|
1
|
25
|
my $class = shift; |
75
|
7
|
|
|
|
|
12
|
my $number = shift; |
76
|
7
|
|
|
|
|
40
|
$number =~ s/(^\+257|\D)//g; |
77
|
7
|
|
|
|
|
39
|
my $self = bless({ country_code => '257', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class); |
78
|
7
|
100
|
|
|
|
34
|
return $self->is_valid() ? $self : undef; |
79
|
|
|
|
|
|
|
} |
80
|
|
|
|
|
|
|
1; |