The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# automatically generated file, don't edit



# Copyright 2011 David Cantrell, derived from data from libphonenumber
# http://code.google.com/p/libphonenumber/
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
package Number::Phone::StubCountry::IL;
use base qw(Number::Phone::StubCountry);

use strict;
use warnings;
use utf8;
our $VERSION = 1.20160605144712;

my $formatters = [
                {
                  'leading_digits' => '[2-489]',
                  'pattern' => '([2-489])(\\d{3})(\\d{4})'
                },
                {
                  'pattern' => '([57]\\d)(\\d{3})(\\d{4})',
                  'leading_digits' => '[57]'
                },
                {
                  'pattern' => '(1)([7-9]\\d{2})(\\d{3})(\\d{3})',
                  'leading_digits' => '1[7-9]'
                },
                {
                  'pattern' => '(1255)(\\d{3})',
                  'leading_digits' => '125'
                },
                {
                  'leading_digits' => '120',
                  'pattern' => '(1200)(\\d{3})(\\d{3})'
                },
                {
                  'pattern' => '(1212)(\\d{2})(\\d{2})',
                  'leading_digits' => '121'
                },
                {
                  'pattern' => '(1599)(\\d{6})',
                  'leading_digits' => '15'
                },
                {
                  'pattern' => '(\\d{4})',
                  'leading_digits' => '[2-689]'
                }
              ];

my $validators = {
                'mobile' => '
          5(?:
            [02-47-9]\\d{2}|
            5(?:
              01|
              2[23]|
              3[2-4]|
              4[45]|
              5[5689]|
              6[67]|
              7[0178]|
              8[6-9]|
              9[4-9]
            )|
            6[2-9]\\d
          )\\d{5}
        ',
                'fixed_line' => '[2-489]\\d{7}',
                'personal_number' => '',
                'geographic' => '[2-489]\\d{7}',
                'pager' => '',
                'toll_free' => '
          1(?:
            80[019]\\d{3}|
            255
          )\\d{3}
        ',
                'specialrate' => '(1700\\d{6})|(
          1(?:
            212|
            (?:
              9(?:
                0[01]|
                19
              )|
              200
            )\\d{2}
          )\\d{4}
        )|(
          [2-689]\\d{3}|
          1599\\d{6}
        )',
                'voip' => '
          7(?:
            18\\d|
            2[23]\\d|
            3[237]\\d|
            47\\d|
            6(?:
              5\\d|
              8[0168]
            )|
            7\\d{2}|
            8(?:
              2\\d|
              33|
              55|
              77|
              81
            )|
            9[29]\\d
          )\\d{5}
        '
              };
sub areaname { my $self = shift; my $number = $self->{number}; my %map = (
  9722 => "Jerusalem",
  9723 => "Tel\ Aviv",
  9724 => "Haifa\ and\ North\ Regions",
  9728 => "Hashfela\ and\ South\ Regions",
  9729 => "Hasharon",
);
      foreach my $prefix (map { substr($number, 0, $_) } reverse(1..length($number))) {
        return $map{"972$prefix"} if exists($map{"972$prefix"});
      }
      return undef;
    }
sub new {
  my $class = shift;
  my $number = shift;
  $number =~ s/(^\+972|\D)//g;
  my $self = bless({ number => $number, formatters => $formatters, validators => $validators }, $class);
  return $self if ($self->is_valid());
  $number =~ s/(^0)//g;
  $self = bless({ number => $number, formatters => $formatters, validators => $validators }, $class);
  return $self->is_valid() ? $self : undef;
}

1;