1<?php
2/**
3 * Zend Framework (http://framework.zend.com/)
4 *
5 * @link      http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license   http://framework.zend.com/license/new-bsd New BSD License
8 */
9
10return array(
11    'code' => '592',
12    'patterns' => array(
13        'national' => array(
14            'general' => '/^[2-4679]\\d{6}$/',
15            'fixed' => '/^(?:2(?:1[6-9]|2[0-35-9]|3[1-4]|5[3-9]|6\\d|7[0-24-79])|3(?:2[25-9]|3\\d)|4(?:4[0-24]|5[56])|77[1-57])\\d{4}$/',
16            'mobile' => '/^6\\d{6}$/',
17            'tollfree' => '/^(?:289|862)\\d{4}$/',
18            'premium' => '/^9008\\d{3}$/',
19            'shortcode' => '/^0(?:02|171|444|7[67]7|801|9(?:0[78]|[2-47]))$/',
20            'emergency' => '/^91[123]$/',
21        ),
22        'possible' => array(
23            'general' => '/^\\d{7}$/',
24            'shortcode' => '/^\\d{3,4}$/',
25            'emergency' => '/^\\d{3}$/',
26        ),
27    ),
28);
29